/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	width: 300px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #333;
	border-right-color: #333;
	border-bottom-color: #333;
	border-left-color: #333;
	font-family: arial;
	font-size: 14px;
	font-weight: bold;
	background-position: 0 0;
}

/* accordion header */
#accordion h2 {
	font-size:14px;
	font-weight:bold;
	cursor:pointer;
	font-family: arial;
	color: #0086A8;
	height: 33px;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #fff;
	border-right-color: #fff;
	border-bottom-color: #ddd;
	border-left-color: #fff;
	background-image: url(../acc/images/inact.png);
	background-repeat: no-repeat;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}

/* currently active header */
#accordion h2.current {
	cursor:default;
	background-image: url(../acc/images/top.png);
	background-repeat: no-repeat;
	margin: 0px;
}

/* accordion pane */
#accordion div.pane {
	display:none;
	height:auto;
	color:#666;
	font-size:12px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #fff;
	border-right-color: #fff;
	border-bottom-color: #DADADA;
	border-left-color: #fff;
	background-image: url(../acc/images/pane.png);
	background-repeat: repeat-y;
	margin-bottom: 5px;
	border-bottom-width: 1px;
	padding-top: 25px;
	padding-right: 15px;
	padding-bottom: 25px;
	padding-left: 15px;
}

/* a title inside pane */
#accordion div.pane h3 {
	font-weight:normal;
	margin:0 0 -5px 0;
	font-size:16px;
	color:#999;
}
#accordion div.pane li {
	font-weight:bold;
	font-size:13px;
	color:#999;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 10;
	display: list-item;
	font-family: arial;
	list-style-type: none;
}
#accordion div.pane ul {
	font-weight:bold;
	font-size:12px;
	color:#999;
	padding: 5px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
	display: block;
	font-family: arial;
	list-style-type: none;
}
#accordion div.pane li a {
	font-weight:bold;
	font-size:12px;
	color:#999;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
	display: list-item;
	font-family: arial;
	list-style-type: none;
	background-image: url(../acc/images/li.gif);
	background-repeat: no-repeat;
	background-position: left center;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #EDEDED;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 10px;
	text-decoration: none;
}
#accordion div.pane li a:hover {
	font-weight:bold;
	font-size:12px;
	color:#999;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
	display: list-item;
	font-family: arial;
	list-style-type: none;
	background-image: url(../acc/images/lihover.gif);
	background-repeat: no-repeat;
	background-position: left center;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #EDEDED;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 10px;
	text-decoration: none;
}
#accordion div.pane li span {
	font-weight:bold;
	font-size:12px;
	color:#333;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
	display: list-item;
	font-family: arial;
	list-style-type: none;
	background-image: url(../acc/images/lihover.gif);
	background-repeat: no-repeat;
	background-position: left center;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #EDEDED;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 10px;
	text-decoration: none;
}

