body
{
    margin: 0;
    padding: 0;
    text-align: left; /* background: #E5E5E5; */
    font-family: Tahoma, Verdana, Georgia, 'Times New Roman' , Times, serif;
    font-size: 12px;
    color: #333333;
}
#wholepage
{
    position: relative;
    width: 95%;
    height: 100%;
    z-index: 10;
}
#toppageside
{
    position: relative;
    width: 90%;
    background-color: #E4EDED;
    z-index: 20;
}
#leftpageside
{
    position: relative;
    width: 21%;
    height: 100%;
    float: left;
    z-index: 20;
}
#logo
{
    position: relative;
    height: 190px;
    text-align: center;
    vertical-align: middle;
    z-index: 30;
}
#datepane
{
    position: relative;
    height: 25px;
    text-align: left;
    padding-left: 0px;
    padding-top: 5px;
    z-index: 30;
    background-color: #DFEFFF;
}
#leftpanel
{
    position: relative;
    height: 100%;
    z-index: 30;
    background-color: #DFEFFF;
    padding-left: 10px;
}
#rightpageside
{
    position: relative;
    width: 79%;
    float: right;
    z-index: 20;
}
#loginsearch
{
    position: relative;
    width: 100%;
    height: 25px;
    float: left;
    z-index: 30;
}
#loginpanel
{
    text-align: left;
    float: left;
    padding-left: 5px;
    padding-top: 3px;
    font-family: Verdana;
    font-size: small;
    z-index: 999999;
}
#searchpanel
{
    text-align: right;
    float: right;
    padding-right: 10px;
    z-index: 40;
}
#banner
{
    position: relative;
    height: 141px;
    z-index: 30;
    width: 100%;
}
#menu
{
    position: relative;
    width: 100%;
    height: 24px;
    background-color: #6699FF;
    color: #FFFFFF;
    font-weight: bold;
    text-align: right;
    float: left;
    z-index: 999999;
}
#breadpanel
{
    position: relative;
    width: 100%;
    text-align: left;
    height: 25px;
    float: left;
    padding-top: 5px;
    z-index: 30;
}
#panepanels
{
    position: relative;
    width: 100%;
    float: left;
    z-index: 30;
}
#toppanel
{
    padding: 5px;
    z-index: 40;
}
#contentpanel
{
    width: 48%;
    float: left;
    padding: 5px 0px 5px 5px;
    z-index: 40;
}
#rightpanel
{
    width: 48%;
    float: right;
    padding: 5px 5px 5px 0px;
    z-index: 40;
}
#bottompageside
{
    position: relative;
    width: 100%;
    height: 20px;
    background-color: #99FF99;
    z-index: -10;
}


/* ==============================
    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;
	white-space: nowrap;
    list-style: none;
    z-index: 999999;
}

/* submenu lists (ULs) */
ul.AvastoneCssMenu ul {
    position: absolute;
	z-index: 999999;
	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: 1px solid #009900;
    background-color: #6699FF;
    color: #FFFFFF;
}

/* 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 10px 5px 10px;
    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: #6666FF;
}

/* 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: #00CC66;
}

ul#MainMenu a.MenuItemBreadcrumb {
}

ul#MainMenu li.rootSeparator {
}

ul#MainMenu li.subSeparator {
}

ul#MainMenu li.leftCap {
}

ul#MainMenu li.rightCap {
}







