
@charset "utf-8";
/* CSS Document */


#faq{
	width: 800px;
	margin-left: 100px;
	margin-top: 50px;
}


#faq h2{
	background-color: #00B5F0;
	color: #FFF;
	font-weight:bold;
	margin: 25px 0px 10px  0px;
	border-radius: 5px;
	text-align: center;
	padding: 5px 0px;
	font-size: 16px;
}





label {
    display: block;
	font-size: 95%;
	padding: 5px;
	font-weight: bold;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #666;
	margin-top: 15px;
}

input[type="checkbox"].on-off{
    display: none;
}

input[type="checkbox"].on-off02{
    display: none;
}

input[type="checkbox"].on-off03{
    display: none;
}


.menu ul {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu li {
	font-size: 80%;
	margin-left: 25px;
	margin-bottom: 10px;
	margin-top: 2px;
}

input[type="checkbox"].on-off + ul{
    height: 0;
    overflow: hidden;
}

input[type="checkbox"].on-off:checked + ul{
    height: 55px;
}

input[type="checkbox"].on-off02 + ul{
    height: 0;
    overflow: hidden;
}


input[type="checkbox"].on-off02:checked + ul{
    height: 80px;
}

input[type="checkbox"].on-off03 + ul{
    height: 0;
    overflow: hidden;
}


input[type="checkbox"].on-off03:checked + ul{
    height: 100px;
}

