﻿body {
       /*background: url("images/background.jpg");*/
       background-color:#656565;
       font-size: 62.5%;
       font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
       margin: 0 auto;
       padding: 0;
       text-align: center;
       }

#WrapperDiv {
	padding: 0px;
	margin: 0px;
	width: 100%;
	min-height: 100%;
	height: auto;
	/* position: absolute; */
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

#UtilDiv {
	padding: 5px;
	text-align: right;
}

.SingleColumnDiv {
	position: relative;
	width: 62%;
	height: auto;
	top: 0;
	right: 19%;
	bottom: 0;
	left: 19%;
	background-color: #ffe;
	margin: 20px 0 20px 0;
	border: 2px solid #fff;
}

.MultiColumnDiv {
	position: relative;
	width: 88%;
	height: auto;
	top: 0;
	right: 6%;
	bottom: 0;
	left: 6%;
	background-color: #ffe;
	margin: 20px 0 20px 0;
	border: 2px solid #fff;
}

#NavDiv {
	width: 100%;
	height: 24px;
	background-color: #456 !important;
	color: #eee;
	font-weight: bold;
	text-align: right;
}

#BodyDiv {
	padding: 10px;
	margin: 0px;
	font-family: Verdana, Tahoma, sans-serif;
	font-size: 1em;
	clear: both;
}

.ColumnPane {
	float: left;
	margin: 0;
	border: 0;
	padding: 5px;
	width: auto;
	min-width: 24%;
	max-width: 49%;
	height: auto;
}

.ContentPane {
	clear: both;
	margin: 0px;
	padding: 10px;
	height: auto;
}

.Head {
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1px;
}

.Normal, p, div, td {
	font-family: Verdana;
	font-size: 12px;
	line-height: 18px;
}



table.ActivityTable {
	margin: 0;
	border: solid 1px #999;
	padding: 0;
	width: 96%;
}

table.ActivityTable th {
	margin: 0;
	padding: 2px;
	vertical-align: bottom;
	font-weight: bold;
	border-bottom: solid 2px #000;
	color: #fff;
	background-color: #666666;
	text-align: center;
}

table.ActivityTable td {
	margin: 0;
	padding: 2px;
	vertical-align: top;
}


/* ==============================
    CSS STYLES FOR Avastone Menu
   ==============================
*/

/***********************************************************
 Structural CSS for the structure and behavior of the menu 
                   USE EXTREME CAUTION!
   Modifying the CSS here will most likely break the menu!
************************************************************/

/* root-level menu list (UL) */
ul.AvastoneCssMenu {
    position: relative;
	margin: 0;
	border: 0;
	padding: 0;
    display: block;
	
    list-style: none;
}

/* submenu lists (ULs) */
ul.AvastoneCssMenu ul {
    position: absolute;
	margin: 0;
	border: 0;
	padding: 0;
    display: block;
    _display: none;
	white-space: nowrap;
    list-style: none;
    visibility: hidden;
}

/* menu items */
ul.AvastoneCssMenu li {
    position: relative;
    list-style: none;
    float: left;
	/* display: inline;  */
	width: auto;
	_width: 1%;
	_height: 1%;
	margin: 0;
	border: 0;
	padding: 0;
}

ul.AvastoneCssMenu li li {
	width: 100%;
	white-space: normal;
}

/* menu item links */
ul.AvastoneCssMenu a,  
ul.AvastoneCssMenu span {
    display: block;
    text-decoration: none;
	margin: 0;
	border: 0;
	padding: 0;
}

/* Add more rules here if your menus have more than four (4) tiers */
ul.AvastoneCssMenu li:hover ul ul,
ul.AvastoneCssMenu li:hover ul ul ul,
ul.AvastoneCssMenu li:hover ul ul ul ul,
ul.AvastoneCssMenu li.iehover ul ul,
ul.AvastoneCssMenu li.iehover ul ul ul,
ul.AvastoneCssMenu li.iehover ul ul ul ul {
	left: -9999px;
    visibility: hidden;
    _display: none;
}

/* Add more rules here if your menus have more than four (4) tiers */
ul.AvastoneCssMenu li:hover ul,
ul.AvastoneCssMenu li li:hover ul,
ul.AvastoneCssMenu li li li:hover ul,
ul.AvastoneCssMenu li li li li:hover ul,
ul.AvastoneCssMenu li.iehover ul,
ul.AvastoneCssMenu li li.iehover ul,
ul.AvastoneCssMenu li li li.iehover ul,
ul.AvastoneCssMenu li li li li.iehover ul {
	left: auto;
    visibility: visible;
    _display: block;
}

.ArrowPointer {
	cursor: default;
}


/******************************************************
 Presentation CSS for customizing the look of the menu
*******************************************************/

/* root-level menu */
ul#MainMenu { 
	text-align: left;
}

/* nested menu lists/submenus */
/* Typically set borders, background colors here. */
ul#MainMenu ul {
	border: solid 1px #456;
	background-color: #789;
}

/* menu items */
/* Typically set menu item borders here. */
ul#MainMenu li {
}

/* nested menu items */
ul#MainMenu li li {
}

/* menu item links */
/* Typically set padding, colors, text attributes here. */
ul#MainMenu a,  
ul#MainMenu span {
	padding: 5px;
	height: 100%;
	color: #fff;
	font-family: Verdana;
	font-size: 11px;
	line-height: 13px;
}

/* nested menu item links */
ul#MainMenu ul a,  
ul#MainMenu ul span {
}

/* hovered menu item links */
ul#MainMenu li a:hover {
	background-color: #abc;
}

/* hovered nested menu item links */
ul#MainMenu li li a:hover {
}

/* Applied to the submenu list immediately under the menu item hovered over */
/* Second-level menu lists only */
ul#MainMenu li:hover ul,
ul#MainMenu li.iehover ul {
	width: 160px; /* width of submenu, must be set so third-level list can get shifted over properly */
}

/* Applied to the submenu list immediately under the menu item hovered over */
/* Add more rules here if your menus have more than three (4) tiers */
ul#MainMenu li li:hover ul,
ul#MainMenu li li li:hover ul,
ul#MainMenu li li li li:hover ul,
ul#MainMenu li li.iehover ul,
ul#MainMenu li li li.iehover ul,
ul#MainMenu li li li li.iehover ul {
	left: 160px;
	top: 0;
}

ul#MainMenu a.MenuRootBranch {
}

ul#MainMenu a.MenuItemBranch {
}

ul#MainMenu li a.MenuItemCurrent {
	background-color: #999;
}

ul#MainMenu a.MenuItemBreadcrumb {
}

ul#MainMenu li.rootSeparator {
}

ul#MainMenu li.subSeparator {
}

ul#MainMenu li.leftCap {
}

ul#MainMenu li.rightCap {
}


/* Vertical Menu */
#houseMenuV, #houseMenuV ul { /* all lists */
	margin: 0;
	padding: 0;
	border: solid 0px #999;
	list-style: none;
	float: left;
	width: 203px;
	font-family: Verdana, Arial, Helvetica, Sans-Serif;
	font-size: 11px;
	color: white;
}

#houseMenuV li { /* all list items */
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	position: relative;
	float: left;
	width: 203px;
	/* hack for MacIE5 to ignore, while other browsers use \*/
	/* end hack */
	line-height : 21px;
	border-bottom:dotted 1px #CECECE;

}

#houseMenuV li ul { /* second-level lists */
	width: 203px;
	position: absolute;
	left: -9999px;
	margin-left: 203px;
	margin-top: -21px;
	border: solid 0px #999;
}

#houseMenuV li ul ul { /* third-and-above-level lists */
	left: -9999px;
	width: 203px;
}

#houseMenuV a {
	display: block;
	/* hack for MacIE5 to ignore, while other browsers use \*/

	/* width recognized by IE only to handle box model issues */
	/* end hack */
	color: #000080;
	font-weight: bold;
	text-decoration: none;
	background-image: url(opt1.gif);
	line-height : 21px;
	padding: 0px 0px 0px 8px;
	opacity: .9;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
}

#houseMenuV li a:hover 
{       
	width: 174px;	
	line-height : 21px;
	color: #9fd6f2;
	padding-left: 29px;
	background-image: url(opt2.gif);
	width: "203px";	
}

#houseMenuV li:hover ul ul, 
#houseMenuV li:hover ul ul ul, 
#houseMenuV li.sfhover ul ul, 
#houseMenuV li.sfhover ul ul ul {
	left: -9999px;
}

#houseMenuV li:hover ul, 
#houseMenuV li li:hover ul, 
#houseMenuV li li li:hover ul, 
#houseMenuV li.sfhover ul, 
#houseMenuV li li.sfhover ul, 
#houseMenuV li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#houseMenuV iframe {
	position: absolute;
	left: 0;
	top: 0;
	filter: progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0);
	display: block;
}


/* Applied to the parent item, if displayed, in either vertical or horizontal
   orientation. Must follow other styles. */
#houseMenuParentItem a
{ /* all links under the parent item (li) */
	color: #eeeeee;
	background-color: #666;
	text-decoration: none;
}

a#houseMenuParentLink
{ /* parent link itself */
	color: #eeeeee;
	background-color: #333;
	text-decoration: none;
}

a#houseMenuCurrentLink
{ /* current link itself */
	width: 203px;
	color: #ffffff;
	background-image: url(opt2.gif);
	text-decoration: none;
}
/*========================================================*/
/*  Horizontal Menu1 Style                                */
/*========================================================*/

.HMA						{ width:100%;margin:0 auto;background:url(menus/m1bg.gif) left top repeat-x; clear:both}
.HMA .Box					{ background:url(menus/m1r.gif) right top no-repeat;  padding-right:13px;}
.HM1						{ white-space:nowrap;height:41px;font-family: Tahoma, Arial, Helvetica, sans-serif; width:100%; background:url(menus/m1l.gif) left top no-repeat}
.HM1 ul 					{ padding:0 0 0 10px; margin:0px;}
.HM1 ul li					{ margin:0px; float:left;list-style: none none outside;position: relative;}
.HM1 ul .current 			{ background:url(menus/menu1.gif) left -79px no-repeat; margin:0px}
.HM1 ul .current a			{ background:url(menus/menu1.gif) right -120px no-repeat; color:#f88109;}
.HM1 ul .current span		{  color:#f88109; padding:0 20px}
.HM1 ul .current .slide span{ background:transparent;}
.HM1 ul span 				{ padding:0 10px; font-size:8pt; font-weight:bold;}
.HM1 ul .slide 				{ display:none; float: left; overflow:hidden; position:absolute;}
.HM1 ul a.link 				{ display:block; cursor: pointer}
.HM1 ul a:link, 
.HM1 ul a:active, 
.HM1 ul a:visited			{ width:auto;color:#fff; text-decoration:none; line-height:41px}
.HM1 ul a:hover 			{ color: #f88109; float:left}
.HM1 ul a:hover span 		{ color:#f88109; float:left}
.HM1 .Group					{ padding:0px; margin:0px; display:none; position:absolute; left:0px; float:left; z-index:1000;background:#5675ae; border:1px #dfdfdf dotted;}
.HM1 .Group li 				{ background:transparent; font-weight:normal; height:24px; float:left;clear: both; }
.HM1 .Group li span 		{ background:transparent; padding:0 18px 0 14px; display:block; font-size:8pt; font-weight: bold}
.HM1 .Group li img 			{ margin-right:5px}
.HM1 .Group a:link,
.HM1 .Group a:active,
.HM1 .Group a:visited		{ text-align:left;line-height:24px; background:transparent; color:#fff}
.HM1 .Group a:hover 		{ color:#fff; text-decoration:none; background:#6e91d1}
.HM1 .Group a:hover span 	{ color: #fff;padding:0 18px 0 14px;background:transparent}
.HM1 .Group .subcurrent		{ background:#6e91d1}
.HM1 .Group .rightarrow 	{ background:url(menus/right.gif) right center no-repeat;}
.HM1 .current .slide span	{ color:#fff}