﻿div.ddsmoothmenu{
background: #FFF url(../img/2dezone.jpg) top left no-repeat;
height: 42px;
clear: both;
position: relative;
padding-left: 19px;
padding-right: 19px;
font-weight: bold;
z-index: 9000;
}
.corners {
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
}

div.ddsmoothmenu ul{
z-index:9000;
margin: 0;
padding: 0;
list-style-type: none;
}
/*Top level list items*/
div.ddsmoothmenu ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
div.ddsmoothmenu ul li a{
display: block;
background: none; /*background of menu items (default state)*/
color: white;
margin: 12px 0 4px 0;
padding: 0 30px;
/*border-right: 1px solid #778;*/
color: #222;
text-decoration: none;
}
div.ddsmoothmenu ui li.parent a{
padding: 10px 10px 4px 10px;
}
div.ddsmoothmenu ul li.parent a.navig{
height: 26px;
}
* html div.ddsmoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}

div.ddsmoothmenu ul li.parent a:link, div.ddsmoothmenu ul li.parent a:visited{
color: #003743;
}

div.ddsmoothmenu ul li a:link, div.ddsmoothmenu ul li a:visited{
color: #003473;
}
div.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background: red; 
color: white;
}

div.ddsmoothmenu ul li a:hover{
background: red; /*background of menu items during onmouseover (hover state)*/
color: white;
}

div.ddsmoothmenu ul li.parent a.selected{
/*background: green; /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background: url(../img/arrowdownON.gif) no-repeat center bottom;
color: #003473;
}
div.ddsmoothmenu ul li.parent a:hover{
/*background: pink; //background of menu items during onmouseover (hover state)*/
background: url(../img/arrowdown.gif) no-repeat center bottom;
color: #003473;
}
div.ddsmoothmenu ul li.enfant {
margin: 4px;
}
div.ddsmoothmenu ul li.enfant a.selected{
background: #052c4b; /*CSS class that's dynamically added to the currently active menu items' LI A element*/
color: white;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
div.ddsmoothmenu ul li.enfant a:hover{
background: #08518a; /*background of menu items during onmouseover (hover state)*/
color: white;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
/*1st sub level menu*/
div.ddsmoothmenu ul li ul{
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;

border: 1px solid #aaaaaa;
background: #f0efea url(../img/ui-bg_highlight-soft_100_f0efea_1x100.png) 50% top repeat-x;
color: #222222;

}

/*Sub level menu list items (undo style from Top level List Items)*/
div.ddsmoothmenu ul li ul li{
display: list-item;
float: none;
color: red;

}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
div.ddsmoothmenu ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
div.ddsmoothmenu ul li ul li a{
font: normal 13px Verdana;
width: 180px; /*width of sub menus*/
padding: 5px;
margin: 0;
border-top-width: 0;
/*border-bottom: 1px solid gray;*/
}

/* Holly Hack for IE \*/
* html div.ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 12px;
right: 7px;
}

.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{
position: absolute;
left: 0;
top: 0;
width: 0;
height: 0;
background: silver;
}

.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/
opacity: 0.8;
}