@CHARSET "ISO-8859-1";

/********************************************
AUTHOR: 		Tom Conder
DESCRIPTION:	Styles specifically for the Accordion 
*******************************************/ 
 
.accordion_toggle {
    display: block;
    height: 30px;
    background: url(../images/accordion/accord_off.png) no-repeat top left #a9d06a;
    line-height: 30px;
    outline: none;
    border-top: 1px solid #cde99f;
    cursor: pointer;
}
   
.accordion_header {
	font-family:'Trebuchet MS',sans-serif;
	font-weight: bold;
	text-decoration: none;
	font-size: 1.3em;
	margin: 10px 15px;
	padding-left: 30px;
}

.accordion_toggle_active {
	background: url(../images/accordion/accord_on.png) no-repeat top left #AA6A0B;
	color: #ffffff;
}

.accordion_content {
	background-color: #DDFFEE;
	padding: 0 10px 0 10px;
	color: #444444;
	border: 1px solid #cde99f;
	overflow: hidden;
}
   	
.accordion_content h2 {
	margin: 15px 0 5px 10px;
	color: #0099FF;
}

.accordion_content p {
	line-height: 150%;
	padding: 5px 10px 15px 10px;
}
