/*#accordion-container 
{
    width:220px;
	font-size: 13px;
	background: #ffffff;
	padding: 8px 10px 8px 10px;
	border: 1px solid #cccccc;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;	
	border-radius: 5px;
	-moz-box-shadow: 0 5px 15px #cccccc;
	-webkit-box-shadow: 0 5px 15px #cccccc;
	box-shadow: 0 5px 15px #cccccc;
}

.accordion-header {
	
	background: #68B8E4;
	margin: 1px 0 0 0;
	padding: 5px 3px;
	border: 1px solid #cccccc;
	cursor: pointer;
	color: White;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 3px;
    font: bold 18px/12px;
    font-size: small;
    text-decoration: none;
    vertical-align: middle;
	
}

.active-header {
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;	
	border-radius: 5px 5px 0 0;
	background: url(../Images/active-header.gif) #68B8E4;
	background-repeat: no-repeat;
	background-position: right 50%;
	color:White;
	 font: bold 18px/12px;
    font-size: small;
    text-decoration: none;
    vertical-align: middle;
}

.active-header:hover {
	background: url(../Images/active-header.gif) #68B8E4;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header {
	background: url(../Images/inactive-header.gif) #68B8E4;
	background-repeat: no-repeat;
	background-position: right 50%;	
	color:White;
}

.inactive-header:hover {
	background: url(../Images/inactive-header.gif) #68B8E4 ;
	background-repeat: no-repeat;
	background-position: right 50%;
}

    */
.accordion-content {
	display: none;
	padding: 5px 0 5px 5px;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-top: 0;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;	
	border-radius: 0 0 5px 5px;
	width:300px;

}