﻿/* Jquery Menu */

.hide {
display: none;
}
.ddsmoothmenu{
width: auto;
color: #fff;
margin-left: 20px;
}

.ddsmoothmenu ul
{
    z-index: 1000;
    padding: 0;
    margin:0;
    list-style-type: none;
}

/*Top level list items*/
.ddsmoothmenu ul li{
position: relative;
display: inline;
float: left;
margin: 0px;
min-height: 24px;
line-height: 28px;
padding-left: 10px;
padding-right: 10px;
border-right: 1px solid #fff;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a
{
    display: block; /*background: #dee9f3; background of menu items (default state)*/
    color: #fff;
    text-decoration: none;
}

* html .ddsmoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
color: #fff;
}


.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
color: #fff;
}

.ddsmoothmenu ul li a:hover{
color: #fff;
}

    .ddsmoothmenu ul li ul li:hover {
    background-color: whitesmoke;
    }

.ddsmoothmenu ul li ul li a:hover {
    color: #FF0000;
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
background-color: #fff;
border-right: solid 1px #000;
border-left: solid 1px #000;
color: #000;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
display: list-item;
float: none;/*line-height:20px;*/
border-bottom: 1px solid #808080;
}

/*All 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{
min-width: 150px; /*width of sub menus*/
/*padding: 5px;*/
margin: 0;
border-top-width: 0;
color: #000;
}

/* Holly Hack for IE \*/
* html .ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 10px;
right: 5px;
}

.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{ /*shadow for NON CSS3 capable browsers*/
display: none;
}

.toplevelshadow{ /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
display: none;
}

.ddsmoothmenu ul li .submenu ul li a{
display: block;
background: #dee9f3; /*background of menu items (default state)*/
color: #030400;
text-decoration: none;
}
.ddsmoothmenu ul li .submenu a:link, .ddsmoothmenu ul li .submenu a:visited{
background: #dee9f3; 
color: #030400;
}

.ddsmoothmenu ul li .submenu a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background: #dee9f3; 
color: #030400;
}
.ddsmoothmenu ul li .submenu a:hover{
background:#dee9f3; /*background of menu items during onmouseover (hover state)*/
color: #3366FF;
}
