@charset "UTF-8";
.Accordion {
	overflow: hidden;
	width: 356px;
}

/* 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;
	color:#4A483F;
	background-color: #D6D0B6;
}

/* 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;
	height: 100px;
	background-color: #FFFFFF;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left:3px;
	border: 1px solid #555555;
	color:#333333;
	padding-right: 2px;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.AccordionPanelTabHover{
	color: #000000;
}

.link_arrow {
	display:none;
	
}
.AccordionPanelTabHover .link_arrow {
	display:inline;
	position:absolute;
	left: 180px;	
}


.AccordionPanelOpen .AccordionPanelTabHover {
	color: #FFFFFF; 
}
.AccordionPanelTab {
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	padding-left: 5px;
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: #FFFFFF;	/*border-top-color: #79913D;*/
}


.TabFirst .AccordionPanelTab/*
*This adds a top border to the top tab. The bottm borders are specified in AccordionPanelTab and AccordionPanelTab2. Specifing top borders there cause double borders on all but the top and bottom tabs.
*/
{
	border-top-style: solid;
	border-top-width: 3px;
	border-top-color: #A6A18E;	/*border-bottom-color: #79913D;*/
}

.TabLast .AccordionPanelTab/*
*This adds a bottom border to the bottom tab. The bottm borders are specified in AccordionPanelTab and AccordionPanelTab2. Specifing top borders there cause double borders on all but the top and bottom tabs.
*/
{
	border-bottom-style: solid;
	border-bottom-width: 3px;
	border-bottom-color: #A6A18E;
	/*border-bottom-color: #79913D;*/
}

/* 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: #555555;
	color: #FFFFEA;
	font-weight: normal;
	border-bottom-style: solid;
	border-bottom-width: 0px;
	border-bottom-color: #FFFFFF;
}

.TabLast .AccordionPanelOpen .AccordionPanelTab {
	background-color: #555555;
	color: #FFFFEA;
	font-weight: normal;
}


/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
 */
.AccordionFocused .AccordionPanelTab {
	background-color: #D7D1B7;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #555555;
}







/*******************************************************************
********************** !!!! For List Items !!!!************************
********************************************************************/
ul {
	margin-left: 0;
	padding-left: 2em;
}
.fine_print {
	font-size: 8px;
}

