/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#AECCE6;
	border:3px solid #5A9CCE;
	margin:10px;
}

/* accordion header */
#accordion h2 {
	background:#ccc url(/img/global/gradient/h30.png);
	margin:0;
	padding:5px 15px;
	font-size:14px;
	font-weight:normal;
	border:1px solid #fff;
	border-bottom:1px solid #ddd;
	cursor:pointer;
	font-weight: bold;
	text-transform: uppercase;
}

/* currently active header */
#accordion h3.current {
	cursor:default;
	background-color:#fff;
}

#accordion h2:hover {
	//text-decoration:underline;
	}

#accordion h2.active:hover {
	text-decoration:underline;		
	}

#accordion h2.active {
	font-size:18px;
	color:#2188af;
	display:block;	
	background-position:right 5px;
	cursor:pointer;
	border-bottom:none;
}

#accordion h3{
	padding: 5px;
}

#accordion h3:hover {
	cursor: pointer;
}

#accordion h3.active:hover {
	text-decoration:underline;		
}

.accordion h3.active {
	font-size:18px;
	color:#2188af;
	display:block;	
	background-position:right 5px;
	cursor:pointer;
	border-bottom:none;
}

/* accordion pane */
#accordion .pane {
	border:2px solid #fff;
	display:none;
	/*height:180px;*/
	padding:10px;
	color:#000;
	font-size:12px;
}

#accordion .pane p{

}

#accordion .pane ul{
	padding-left:0px;
}

#accordion .pane ul li{
	list-style:square;
}

/* a title inside pane */
#accordion .pane h3 {
	font-weight:normal;
	margin:0 0 -5px 0;
	font-size:16px;
	color:#999;
}

