/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	margin-bottom: 20px;
	background-color:#fff4e2;
	width: 250px;
	border:1px solid #cec6ba;
}

/* accordion header */
#accordion h2, #accordion h3 {
	font-family: verdana;
	background-color:#fff4e2;
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: bold;
	color: #8a8360;
	border: 1px solid #fff;
	border-bottom: 1px solid #ddd;
	cursor: pointer;		
}

/* currently active header */
#accordion h2.current {
	cursor: default;
	background-color: #eba83f;
	color: #ffffff;
}

/* accordion pane */
#accordion div.pane {
	padding:10px 0;
	border: 1px solid #fff;
	border-width:0 2px;
	display: none;
	height: 70px;
	color: #fff;
	font-size: 12px;
}

#accordion.large_box div.pane {
	padding:10px 0;
	border: 1px solid #fff;
	border-width: 0 2px;
	display: none;
	height: 260px;
	color: #fff;
	font-size: 12px;
}

#accordion div.pane a {
	text-decoration: #ffffff;
	background: none;
	padding: 0px;
}

/* a title inside pane */
#accordion div.pane h3 {
	font-weight:normal;
	margin:0 0 -5px 0;
	font-size:16px;
	color:#999;
}

#accordion div.pane ul {
	margin: 0 20px 20px;
	padding: 0;
}

#accordion div.pane ul li {
	color: #8a8360;;
	list-style: none;
	padding: 2px 0px 4px 0px;
}

#accordion div.pane ul li a{
	color: #8a8360;
	text-decoration: none;
}

#accordion div.pane ul li a:hover{
	color: #8a8360;
	text-decoration: underline;
}

#accordion li {
	font-family: verdana;
	list-style-image: url(../images/bullet.gif);
	font-size: 10pt;
}

#accordion h2 a, #accordion h3 a {
	display: block;
	padding: 5px 15px 5px 35px;
	text-decoration: none;
	color: #8a8360;
	background: url(../images/arrow.png) 15px 5px no-repeat;
}

#accordion h2 a.current, #accordion h3 a.current {
	background-color: #eba83f;
	color: #ffffff;
}

#accordion a:hover {
	text-decoration: underline;
	background-color: #eba83f;
	color: #ffffff;
}

.top_accord{
	width: 250px; height: 32px;
	padding:7px 10px 0;
	font-family: Times New Roman;
	font-size: 13px;
	font-weight: bold;
	color: #8a8360;
	border: 0px;
	background: url(../images/accord-top.png) no-repeat top left;
}

