
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#EEE url(../images/tile_silver_gradient.png) 0 0;
	background-repeat:repeat-y;
	width: 100%;
	border:0px solid #333;	
	-background:#666;
	margin-top:10px;
	margin-bottom:5px;
}

/* accordion header */
#accordion h2
{
	background-image: url(../images/tile_link_hover_bg.png);
	background-repeat: repeat-x;
	background-color: #BFD27B;
	border-top: 1px solid #96B03C;
	border-bottom: 1px solid #96B03C;
	margin: 0;
	padding: 5px 15px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	font-family: arial, Helvetica, sans-serif;
	text-decoration:underline;
}
#accordion h2:hover
{
	color: #336600;
}

/* currently active header */
#accordion h2.current {
	cursor:default;
	background-color:#fff;
}

/* accordion pane */
#accordion .pane
{
	border: 1px solid #fff;
	border-width: 0 2px;
	display: none; 
  /*height:180px;*/
	
	padding: 15px;
	color: #000;
	font-size: 14px;
	line-height:20px;
	
}

/* a title inside pane */
#accordion .pane h3
{
	font-weight: bold;
	margin: 0 0 4px 0;
	font-size: 16px;
	color: #000;
}
