@charset "UTF-8";
/* CSS Document */
.displayNone {
display: none;
}
.accordion li {
border-bottom: 1px solid #ccc;
padding: 10px;
}
.accordion a {
display: block;
}
.contentWrap {
margin: 40px 10px;
}
.switch {
cursor:pointer;
padding:10px 40px 10px 10px;
font-size: 14px;
background: #eee;
border-bottom: 1px solid #ccc;
position: relative;
}
.switch:after {
content: ">";
position: absolute;
right: 15px;
top: -100%;
bottom: -100%;
margin: auto;
font-size: 20px;
font-weight: bold;
height: 16px;
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
font-family: sans-serif;
}
.switch.open:after {
content: "x";
}
