@charset "utf-8";
/* CSS Document */

.accordion_header { 
	cursor: hand;
	cursor: pointer;
	margin: 6px 0;
	font-size: 1.2em;
	color: #cccccc;
	border-top: #4a4a4e dotted 1px;
	border-bottom: #4a4a4e dotted 1px;
	padding: 2px 2px 2px 20px;
}
.accordion_header:hover { 
	background: #3f3f44 url(../_images/accordian-red-over.gif) left center no-repeat;
}
.accordion_content { 
	padding: 10px 0 33px 49px;
	font-size: 1.2em;
	color: #cccccc;
}
.accordion_open {
	background: #3f3f44 url(../_images/accordian-red-on.gif) left center no-repeat;
}
.accordion_open:hover {
	background: #3f3f44 url(../_images/accordian-red-on.gif) left center no-repeat;
}

.accordion_closed {
	background: url(../_images/accordian-red-off.gif) left center no-repeat;
}
.accordion_header span {
	color: #ff7a7c;
	font-weight: bold;
	padding: 0 5px 0 0;
	font-size: 1.2em;
}

