/*Accordion effect*/

/*------------------------------
			GLOBAL
-------------------------------*/

html {
	height: 100%;
}

#bottom_container {
clear: both;
width: 440px;
}

h1 {
color: #000;
font-size: 20px;
font-weight: normal;
margin: 5px 0 5px 0;
text-align: left;
}

h1 span {
color: #ffffff;
font-size: 20px;
font-weight: normal;
margin: 5px 5px 5px 0;
text-align: left;
}

.description {
font-size: 12px;
line-height: 18px;
color: #333;
padding: 5px 0 15px 0;
}	



		
pre {
font-size: 11px;
padding: 10px;
background: #000000;
overflow: auto;
margin: 10px 0 10px 0;
}

code {
color: #ffffff;
background: #000000;
font-family: Monaco, Courier, monotype;
}
			
		/*
			Vertical Accordions
		*/
		
.accordion_toggle {
display: block;
height: 30px;
width: 440px;
background: url(../XXimages/click-here.gif) no-repeat top left #6b3703;
padding: 0 10px 0 10px;
line-height: 30px;
color: #ffffff;
font-weight: normal;
text-decoration: none;
outline: none;
font-size: 13px;
color: #fff;
border-bottom: 1px solid #000;
cursor: pointer;
margin: 0 0 0 0;
}
		
.accordion_toggle_active {
background: url(../XXimages/click-here.gif) no-repeat top left #95012f;
color: #ffffff;
border-bottom: 1px solid #000;
}
		
.accordion_content {
background-color: #ffffff;
color: #444444;
overflow: hidden;
}
			
.accordion_content h2 {
margin: 15px 0 5px 10px;
color: #0099FF;
}
			
.accordion_content p {
line-height: 150%;
padding: 5px 10px 15px 10px;
}
			
		