@charset "UTF-8";

/* SpryA.css - version 0.4 - Spry Pre-Release 1.6 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main A container. For our default style,
 * we draw borders on the left, right, and bottom. The top border of the A
 * will be rendered by the first APanelTab which never moves.
 *
 * If you want to constrain the width of the A widget, set a width on
 * the A container. By default, our accordion expands horizontally to fill
 * up available space.
 *
 * The name of the class ("A") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * A container.
 */
.Acc {
	overflow: hidden;
	padding-left: 0px;
		
	
}



/* This is the selector for the APanel 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 ("APanel") 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.
*/
.APanel {
	margin: 0px;
	padding: 0px;
	
	
	
}

/* This is the selector for the APanelTab. 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 ("APanelTab") 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 APanelTab. 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 APanelTab,
 * you can safely remove those properties without affecting the functionality of the widget.
 */
.APanelTab {
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	padding-top: 1px;
	padding-right: 0px;
	padding-bottom: 1px;
	padding-left: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-align: left;
	display: block;
}



/* 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 As 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 A *MUST* specify a height on the A Panel
 * Content container.
 *
 * The name of the class ("APanelContent") 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.
 */
.APanelContent {
	margin: 0px;
	padding-left: 0px;
	font-size: 10px;
	overflow:hidden;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
}


/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "APanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the A.
 */
.APanelOpen .APanelTab {
}
APanelTabHover/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "APanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
 {
	background-color: #999999;

	display: block;
}
.APanelOpen .APanelTabHover {


}

/* This is an example of how to change the appearance of all the panel tabs when the
 * A has focus. The "AFocused" class is programatically added and removed
 * whenever the A gains or loses keyboard focus.
 */
.AFocused .APanelTab {

outline: none;

}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the A has focus.
 */
.AFocused .APanelOpen .APanelTab {
	background-color: #999999;
	outline: none;
}




a:link {
	color: #000000;
	text-decoration: none;
}
a:visited {
	color: #666666;
	text-decoration: none;
}
a:hover {
	color: #59190D;
	text-decoration: none;
}
a:active{
	color: #FFFFFF;
		text-decoration: none;}


	
	
.APanel   ul   li {
	list-style-position: outside;
	list-style-type: none;
	display:block;
	margin-left: -40px;
	height: 18px;
}



.APanel  ul  li  a:link {
	list-style-position: outside;
	list-style-type: none;
	color: #FFFFFF;
	padding-left: 24px;
	display: block;
	height: 18px;
}

.APanel  ul  li  a:visited {
	list-style-position: outside;
	list-style-type: none;
	margin-left: 0px;
	color: #CCCCCC;
	padding-left: 24px;
	display: block;
	height: 18px;
}

.APanel  ul  li  a:hover {
	list-style-position: outside;
	list-style-type: none;
	margin-left: 0px;
	color: #59190D;
	display: block;
	background-image: url(assets/images/nav_li_bk.jpg);
	padding-left: 24px;
	background-repeat: repeat-x;
	height: 18px;
}

.APanel  ul  li  a:active {
	list-style-position: outside;
	list-style-type: none;
	margin-left: 0px;
	color: #CCCCCC;
	padding-left: 24px;
	display: block;
	height: 18px;
	outline-style: none;
}
.APanelTab a:link {
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 2px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-align: left;

	display: block;
}

.APanelTab a:visited {
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 2px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-align: left;

	display: block;
}
.APanelTab a:hover {
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 2px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-align: left;

	background-color: #999999;
	display: block;
}
.APanelTab a:active {
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 2px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #59190D;
	text-align: left;
	outline-style: none;
	background-color: #999999;
	display: block;
}
.APanel .APanelContent ul {
	margin-top: 2px;
	margin-bottom: 2px;
}
.APanelTab a {
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	padding-top: 1px;
	padding-right: 0px;
	padding-bottom: 1px;
	padding-left: 12px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-align: left;
	display: block;
}

 
.APanelDirect {
	margin: 0px;
	padding: 0px;
}

.styleRed  {
	color: #59190D;
}



.navLink a {
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	padding-top: 1px;
	padding-right: 0px;
	padding-bottom: 1px;
	padding-left: 12px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-align: left;
}
.APanelTabby  {
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	padding-top: 1px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-align: left;
	height: 20px;
	display: block;
}
.APanelTabby a:link {
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	padding-top: 1px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 12px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-align: left;
	display: block;
}

.APanelTabby a:visited {
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	padding-top: 1px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 12px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-align: left;
	display: block;
}
.APanelTabby a:hover {
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	padding-top: 1px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 12px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-align: left;
	background-color: #999999;
	display: block;
}
.APanelTabby a:active {
	margin: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	padding-top: 1px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 12px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #59190D;
	text-align: left;
	outline-style: none;
	display: block;
	
	}
