﻿#menuContainer{	width: 100%;	background-color: #265e2b;	float: left;		clear:both;}#menuContainer a {		color:#FFF;		text-decoration:none;		}#regions { width:100px; float:right; text-align:right; margin-right:3px; }.region {  display:block; width:44%; float:left; padding:3px; }#selected_region { background-color:#7c9637; }/*Top level UL properties*/ul.makeMenu {

  list-style: none;

  width: 625px;                

  background-color: #265e2b;      

  padding-left: 20px;         

  cursor: default;          

  margin-left: 0px;           

  margin-top: 0px;

  margin-bottom: 0px;

  float: left;

  z-index: 1;

}



/*Second level UL properties*/

ul.makeMenu li ul{  list-style: none;   width: 1px;     background-color: #fff;       padding-left: 0px;             margin-left: -79px;              border-left: 1px solid #fff;  border-bottom: 1px solid #fff;  font-size: .8em;  font-weight: normal;  margin-top: 20px;  z-index: 2;}/*Third level UL properties*/ul.makeMenu li ul li ul{  list-style: none;     background-color: #265e2b;       padding-left: 0px;             margin-left: 77px;        font-weight: normal;  margin-top: -3px;  z-index: -3;}/*Top level LI properties, not links*/ul.makeMenu li {               margin: 0px;                 position: relative;                                      color: #fff;              text-align: left;  float: left;  background-color: #265e2b;  padding: 2px 11px 3px 11px;  font-size: .8em;  font-weight: normal;  border-right: 1px solid #fff;  }/*Top level special LI properties, not links*/ul.makeMenu li.onHome {  margin: 0px;                   position: relative;           color: #fff;                float: left;  padding: 2px 11px 3px 11px;  border-right: 1px solid #FFF;  border-left: 1px solid #FFF;  background-color: #7C9637;  text-align: left;}ul.makeMenu li.onTabMenu {  margin: 0px;                   position: relative;           color: #fff;                float: left;  padding: 2px 11px 3px 11px;  border-right: 1px solid #FFF;  background-color: #7C9637;  text-align: left;}ul.makeMenu li.offHome {  margin: 0px;                   position: relative;           color: #fff;                float: left;  padding: 2px 11px 3px 11px;  border-right: 1px solid #FFF;  border-left: 1px solid #FFF;  background-color: #265e2b;  text-align: left;}/*Second level LI properties, not links*/ul.makeMenu li ul li{               width: 135px;  margin: 0px;               position: relative;          color: #FFFFFF;                   text-align: left;  float: left;  background-color: #7C9637;  padding: 1px 5px 2px 15px;  font-size: 1.2em;  font-weight: normal;  border-top: 1px solid #fff;  border-bottom: 1px solid #fff;  /*border-left:1px solid #fff;*/}/*Third level LI properties, not links*/ul.makeMenu li ul li ul li {             width: 125px;  margin: 0px;                  position: relative;            color: #FFFFFF;                  text-align: left;  float: left;  background-color: #A2B36A;  padding: 0px 5px 3px 15px;  font-size: 1.3em;  font-weight: normal;  border-top: 1px solid #fff;  z-index: -10;}/*Second level UL properties that will make menus work in Firefox and Netscape*/ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */  display: none;                position: absolute;            top: 2px;                     left: 78px;                }/*Top level LI properties, not links.  The hover properties for bg color and text color*/ul.makeMenu li:hover, ul.makeMenu li.onHome:hover, ul.makeMenu li.CSStoHighlight {  background-color: #7C9637;        color: #fff;      z-index:2020;             }/*Second level LI properties, not links.  The hover properties for bg color and text color*/ul.makeMenu li ul li:hover, ul.makeMenu li ul li.CSStoHighlight {  background-color: #A2B36A;      /* gives the active menu items a yellow background */  color: #fff;                 /* makes the active menu item text black */ }/*Third level LI properties, not links.  The hover properties for bg color and text color*//*There are not any third level line items that are not links in this menu*/ul.makeMenu li ul li ul li:hover, ul.makeMenu li ul li ul li.CSStoHighlight {  background-color: #c8d09a;      /* gives the active menu items a yellow background */  color: #fff;                 /* makes the active menu item text black */ }ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */  display: block;              /* specially to go with the className changes in the behavior file */}ul.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements                                  the > targets only the child ul, not any child uls of that child ul */  display: block;              /* makes the child block visible - one of the most important declarations */}/*Link Styles *//*Top level LI Link properties for link text color*/ul.makeMenu li a, ul.makeMenu li.onHome a {   color: #fff;   text-decoration: none;   font-size: 12px;  font-family: Helvetica,Geneva,Arial,SunSans-Regular,sans-serif;}/*Second and Third level LI link properties for link text color*/ul.makeMenu li ul li a {   color: #fff;   width: 100%;   text-decoration: none;   font-size: 11px;  font-family: Helvetica,Geneva,Arial,SunSans-Regular,sans-serif;}/*Second and Third level LI link properties for link text color*/ul.makeMenu li ul li ul li a {   color: #fff;   width: 100%;   text-decoration: none;  font-size: 11px;  font-family: Helvetica,Geneva,Arial,SunSans-Regular,sans-serif; }/*LI link hover properties*/ul.makeMenu li a:hover, ul.makeMenu li a:visited, ul.makeMenu li a.CSStoHighLink {   color: #fff;  text-decoration: none;  }/*second level LI link hover properties*/ul.makeMenu li ul li a:hover, ul.makeMenu li ul li a.CSStoHighLink {   color: #fff;   text-decoration: none; }/*third level LI link hover properties*/ul.makeMenu li ul li ul li a:hover, ul.makeMenu li ul li ul li a.CSStoHighLink {   color: #fff;   text-decoration: none; }/*ul.makeMenu li:hover > a {   color: #689DD1; 			/* supports links in branch headings - must not be display: block;   text-decoration: none;} */