#navbox{
	width:702px;
	margin:0 auto;
	text-align: left;
	height:40px;
}

 /* This is the part for the CSS menu - these settings are for a horizontal menu */
 #dmenu{                         /* menu list container */
     list-style-type: none;      /* disable the display of the list item bullets */
     margin: 0px;                /* space around the list container */
     padding: 0px;               /* space within the list container */
     position: static;           /* need this so that the z-index stuff works correctly */
     background-color: #fff;     /* the default background color within the main menu container */
     color: #000;                /* the default font color (not links) within the main menu container */
     z-index: 120; 
    
               /* push the menu up in the layer order a bit so it isn't hidden behind anything */
         /* Browser plug-ins like Flash or Quicktime may not allow you to overlap then with this menu! */
 }
 #dmenu li{                      /* top-level menu element */
     list-style-type: none;      /* disable the display of the list item bullets */
     float: left;                /* this is to allow for the horizontal main menu */
     color: #000;                /* main menu item font color (not links) */
     margin: 0px;                /* spacing between main menu items */
     padding: 0px;               /* padding within main menu items */
     display: block;
 }

 #dmenu ul {                     /* third-level (or greater) menu element list elements */
     position: absolute;         /* this is so that it doesn't push that page content around on hover */
     margin: 0px 0 0 16px;                /* space around the list container */
     padding: 0px;               /* space within the list container */
     list-style-type: none;      /* disable the display of the list item bullets */
     display:none;
     width: 150px;               /* should be the same as #dmenu li width */
     z-index: 99;   
               /* want to be sure this is above the rest of the menu */
 }

 #dmenu ul li{                   /* second-level or greater menu element links */
    border: 1px solid #353535; /*THEME CHANGE HERE*/
     margin: 0px;                /* spacing between sub-menu containers */
     display:block;         
     width: 184px;               /* (padding*2) must be subtracted from #dmenu li width and set for this one, or borders won't display properly. */
 }

 #dmenu li a{                    /* top-level menu element links */
    color:#FFFFFF;
   	font-weight:bold;
   	display:block;         
   	text-transform:uppercase;
   	font-size:80%;
   	text-decoration:none;
   	font-family:Tahoma, Verdana, sans-serif;
   	padding:2px 0 2px 18px ;
 }
 #dmenu li a:hover {color:#E8E8E8;}
 #dmenu ul.contact-dropdown {margin:0 0px 0 -120px;}
 #dmenu ul#benefits {margin:-16px 0px 0 -216px;}
 #dmenu ul#benefits li {width:216px;}

 #dmenu ul a {                   /* all the other level menu link elements */
     text-decoration: none;
    	font-size:80%;
     font-weight: bold;
     text-transform:none;
     padding:2px 9px;
     background-color: #8286A9;
     text-align: left;
 }

 
           /* higher level hovering properties */
 #dmenu ul li a:hover{
     color:#000000!important;
     background-color: #fdfddb;
 }

 #dmenu ul ul{                   /* higher-level list containers */
     display: none;              /* don't display by default */
     position: absolute;
     margin-left: 114px;         /* this should be the width of #dmenu ul li */
     margin-top: -2em;           /* this will push the sub-menu up to the level of it's parent */
 }

 /* only non-MSIE browsers use this */
 #dmenu ul li>ul,
 #dmenu ul ul li>ul{
     margin-top: -2em;           /* should be set to the same as #dmenu ul ul margin-top */
 }

 /* additional sub-menu levels in the next 2 blocks. (For up to 5 levels of drop menus) */
 #dmenu li:hover ul ul,              
 #dmenu li:hover ul ul ul,
 #dmenu li:hover ul ul ul ul,
 #dmenu li:hover ul ul ul ul ul{
     display:none;
 }

 #dmenu li:hover ul,
 #dmenu ul li:hover ul,
 #dmenu ul ul li:hover ul,
 #dmenu ul ul ul li:hover ul,
 #dmenu ul ul ul ul li:hover ul{
     display:block;
 }

 li>ul {
     top: auto;
     left: auto;
 }

/*.navmenustyle ul li a[rel]:after{ /*HTML to indicate drop down link*/
/*content: " v";
/*content: " " url(downimage.gif); /*uncomment this line to use an image instead*/
/*}  */


