.Accordion {
	border:0px;
	overflow: hidden;
	width:213px;
	position: relative;
	top: 0px;
	/*height:auto;*/
}

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.
 *
 * The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/
.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.
 *
 * The name of the class ("AccordionPanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel tab container.
 *
 * NOTE:
 * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
 * user from selecting the text in the AccordionPanelTab. These are proprietary browser
 * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
 * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
 * validate, and don't care if the user can select the text within an AccordionPanelTab,
 * you can safely remove those properties without affecting the functionality of the widget.
 */
.AccordionPanelTab {
	background-image:url(images/I/lev1.jpg);
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	height: auto;
	background-position: left center;
	background-repeat: no-repeat;
	border-bottom-color: #333333;
	border-bottom-style: dotted;
	border-bottom-width: 1px;
}
.AccordionPanelTab:hover {
	background-image: url(images/I/lev1_on.jpg);
	background-position: left center;
	background-repeat: no-repeat;
}
.AccordionPanelTab h2 {
	color: #FFFFFF;
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	margin:0px;
	padding-left:15px;
	padding-top:0px;
	letter-spacing: 0.0em;
	padding-bottom: 1px;
	text-align: left;
}
.AccordionPanelTab a:link	{ color: #006699; text-decoration: none; }
.AccordionPanelTab a:visited	{ color: #0072A8; text-decoration: none; }
.AccordionPanelTab a:hover	{	color: #006699;	text-decoration: underline;}
.AccordionPanelTab a:active	{ color: #006699; text-decoration: none;}
/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	height: auto;
	margin-left: 20px;
	/*border:#0000FF solid 1px;*/
}

ul{
	margin-left: 3px;
	margin-top: 5px;
	margin-bottom:5px;
	padding-bottom:0px;
	/*border:#000000 solid 1px;*/
	padding-left:3px;
}
.AccordionPanelContent ul li{
	margin:0px;
	padding:0px;
	list-style-image:url(images/I/lev2.jpg);
	list-style-type:none;
	margin-left: 10px;
	/*border:#FF0000 solid 1px;*/
}
.AccordionPanelContent ul li:hover{
	background-color:#F8F8F8;
	margin:0px;
	padding:0px;
	list-style-image:url(images/I/lev2.jpg);
	list-style-type:none;
	margin-left: 10px;
	/*border:#FF0000 solid 1px;*/
}
/*.AccordionPanelContent>ul>li {
	margin-left: -20px;
}*/
.AccordionPanelContent a:link	{ color: #003853; text-decoration: none; }
.AccordionPanelContent a:visited	{ color: #003853; text-decoration: none; }
.AccordionPanelContent a:hover	{ color: #F07D1E; text-decoration: underline;  }
.AccordionPanelContent a:active	{ color: #003853; text-decoration: none;}
