@charset "UTF-8";
.FixedMenu {
	overflow: hidden;
	font-family: "Courier New", Courier, monospace;
	width: 180px;
	position: absolute;
	left: 32px;
	top: 576px;
	z-index: 10;
}
.FixedMenuTab a {
	border-top: dashed 1px black;
	border-bottom: dashed 1px black;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	margin-top: -1px;
	background-image: url(../assets/50-50white.png);
	background-repeat: repeat;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 4px;
	padding-right: 2px;
	padding-bottom: 4px;
	padding-left: 4px;
	display: block;
	font-weight: normal;
}
.FixedMenuTab a:link, .FixedMenuTab a:visited {
	color: #000;
	text-decoration: none;
}
.FixedMenuTab a:hover, .FixedMenuTab a:active {
	color: #F00;
	text-decoration: none;
	background-color: #FFF;
}
.Accordion {
	overflow: hidden;
	font-family: "Courier New", Courier, monospace;
	width: 180px;
	position: absolute;
	left: 32px;
	top: 100px;
	z-index: 10;
	text-align: left;
}
.Accordion:focus {
	outline: none;
	}
/* 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 {
	/* [disabled]margin: 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 {
	border-top: dashed 1px black;
	border-bottom: dashed 1px black;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	margin-top: -1px;
	background-image: url(../assets/50-50white.png);
	background-repeat: repeat;
	font-weight: bold;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 4px;
	padding-right: 2px;
	padding-bottom: 4px;
	padding-left: 4px;
}

/* 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: 290px;
	overflow: hidden !important;
  }

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #FFF;
}
.AccordionPanelContent ul   {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}
.AccordionPanelContent ul li a{
	margin-top: -1px;
	background-image: url(../assets/TransWhite33.png);
	background-repeat: repeat;
	border-top-style: dashed;
	border-bottom-style: dashed;
	border-top-color: #000;
	border-bottom-color: #000;
	border-top-width: thin;
	border-bottom-width: thin;
	padding-left: 4px;
	padding-top: 6px;
	padding-bottom: 4px;
}
.AccordionPanelContent ul li a:link , .AccordionPanelContent ul li a:visited{
	text-decoration: none;
	color: #000;
	display: block;
}
.AccordionPanelContent ul li a:active     {
	color: #F00;
	background-color: #FFF;
}
.AccordionPanelContent ul li a:hover {
	color: #F00;
	background-color: #FFFFFF;
}

.AccordionPanelTabHover {
	color: #FF0000;
	background-color: #FFF;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #000;
	cursor: default;
}
