/*
*
*    Author:    Michael Raffaele <michael@mraffaele.com>
*    Date:    25th October 2011
*    Info:     http://www.mraffaele.com/blog/2011/10/25/css-accordion-no-javascript/
*
*/

#content {
    height: auto;
}

.container {
    position: absolute;
    top:150px;
    width:960px;
    height: auto;
    margin:0 auto;
    border-radius:10px;
    -webkit-border-top-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    padding:10px;
    background:#fff;
}

#content div.footer {
    margin: 0; padding: 0;
    position: absolute;
    top:2200px;
}

.search_ad{ float:right; width:160px; background-color:#FFF; height:600px; margin: 0 0 0 10px; }
.top_ad{ float:left; width:730px; background-color:#FFF; height:100px; margin: 0 0 0 10px; }


/* Shared for all accordion types */
.accordion {
    font-family:Arial, Helvetica, sans-serif;
    margin:0 auto;
    font-size:14px;
    width:740px;
    height: auto;
    float: left;
    padding:10px;
    background:#fff;
}
.accordion ul {
    list-style:none;
    margin:0;
    padding:0;
}
.accordion li {
    margin:0;
    padding:0;
}

.accordion li p a {
    color: #5ba7d2;
    text-decoration: none;
    cursor: pointer;
}
.accordion li p a:hover { text-decoration: none;}

.accordion [type=radio], .accordion [type=checkbox] {
    display:none;
}
.accordion label {
    display:block;
    font-size:16px;
    line-height:16px;
    background: #cacaca;
    color: #002d61;
    text-shadow:1px 1px 1px rgba(255,255,255,0.3);
    font-weight:700;
    cursor:pointer;
    text-transform:uppercase;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
}
.accordion ul li label:hover, .accordion [type=radio]:checked ~ label, .accordion [type=checkbox]:checked ~ label {
    background: #002d61;
    color:#FFF;
    text-shadow:1px 1px 1px rgba(221, 221, 221, 0.49)
}
.accordion .content {
    padding:0 10px;
    overflow:hidden;
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
}
.accordion p {
    color:#333;
    width:700px;
    margin:0 0 10px;
    margin-left: 40px;
}
.accordion h3 {
    color: #002d61;
    padding:0;
    margin:10px 0;
    margin-left: 20px;
}


/* Vertical */
.vertical ul li {
    overflow:hidden;
    margin:0 0 1px;
}
.vertical ol li {
    overflow:visible;
    width:750px;
}
.vertical ul li label {
    padding:10px;
}
.vertical [type=radio]:checked ~ label, .vertical [type=checkbox]:checked ~ label {
    border-bottom:0;
}
.vertical ul li label:hover {
    border:1px solid #002d61; /* We don't want the border to disappear on hover */
}
.vertical ul li .content {
    height:0px;
    border-top:0;
}
.vertical [type=radio]:checked ~ label ~ .content, .vertical [type=checkbox]:checked ~ label ~ .content {
    height:auto;
    width:750px;
}

.faq_container {
	float:left; 
	width:765px;	
}