/* Horizontal Menu */
.ddsmoothmenu{ font: bold 12px Verdana; background: #414141; width: 100%; }
.ddsmoothmenu ul{ z-index:100; margin: 0; padding: 0; list-style-type: none; }
/*Top level list items*/
.ddsmoothmenu ul li{ position: relative; display: inline; float: left; }
/*Top level menu link items style*/
.ddsmoothmenu ul li a{ display: block; background: #414141; color: white; padding: 8px 10px; border-right: 1px solid #778; color: #2d2b2b; text-decoration: none; }
/*IE6 hack to get sub menu links to behave correctly */
* html .ddsmoothmenu ul li a{ display: inline-block; }
.ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited{ color: white; }
/* class added to the currently active menu items LI A element*/
.ddsmoothmenu ul li a.selected { background: black !important; color: white; }
/*background of menu during onmouseover (hover)*/
.ddsmoothmenu ul li a:hover{ background: black; color: white; }
/* sub menus, collapsed to start with */
.ddsmoothmenu ul li ul{ position: absolute; left: -3000px; display: none; visibility: hidden; }
/*sub level menu list items (alters style from Top level List Items)*/
.ddsmoothmenu ul li ul li{ display: list-item; float: none; }
/*subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul{ top: 0; }
/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{ font: normal 13px Verdana; width: 160px; padding: 5px; margin: 0; border-top-width: 0; border-bottom: 1px solid gray; }
/* Holly Hack for IE7 and below \*/
* html .ddsmoothmenu{height: 1%;}

/* Vertical Menu  */
.ddsmoothmenu-v ul{ margin: 0; padding: 0; width: 182px; list-style-type: none; /* font: bold 12px Verdana; */ }
.ddsmoothmenu-v ul li{ position: relative; float: none; }
/* Top level menu links */
.ddsmoothmenu-v ul li a{ display: block; overflow: auto; /*color: white; */ text-decoration: none; padding: 4px 0px 4px 8px; /*border-bottom: 1px solid #E8E8E8; */ /*border-right: 1px solid #e8e8e8; */ }
/* below disabled because they're currently being inherited from the menu box */
/* .ddsmoothmenu-v ul li a:link, .ddsmoothmenu-v ul li a:visited, .ddsmoothmenu-v ul li a:active{ background:#D8D8D8; background: #1c5a80; color: white; } */
/* class dynamically added to the active menu items' LI A element*/
.ddsmoothmenu-v ul li a.selected{ background: lightgrey !important; color: navy; }
/* menu items during onmouseover (hover)*/
.ddsmoothmenu-v ul li a:hover{ background: #B8B8B8; color: navy; }
/*Sub level menu items */
.ddsmoothmenu-v ul li ul{position: absolute; width: 180px; font-weight: normal; visibility: hidden; background:#D8D8D8; border-left: 1px solid #FFFFFF; padding: 4px 0px 3px 8px; }
/* Holly Hack for IE7 and below \*/
* html .ddsmoothmenu-v ul li { float: left; height: 1%; }
* html .ddsmoothmenu-v ul li a { height: 1%; }
/* Down and right arrow images */
.downarrowclass{ position: absolute; top: 12px; right: 7px; }
.rightarrowclass{ position: absolute; top: 6px; right: 5px; }
/* Shadow added to sub menus  */
.ddshadow{ position: absolute; left: 0; top: 0; width: 0; height: 0; background-color: #ccc; }
.toplevelshadow{ margin: 5px 0 0 5px; opacity: 0.8; }
.ddcss3support .ddshadow.toplevelshadow { margin: 0; /* opacity: 1; */ /* uncomment to remove partial opacity for browsers supporting a box-shadow property */ }
.ddcss3support .ddshadow { background-color: transparent; box-shadow: 5px 5px 5px #aaa; -moz-box-shadow: 5px 5px 5px #aaa; -webkit-box-shadow: 5px 5px 5px #aaa; }