.ddsmoothmenu{
	width:1204px;
height:48px;
margin: 0 auto;
}
.ddsmoothmenu ul{
width: 100%;
margin: 0;
padding: 0;
list-style: none;
}

/*Top level list items*/
.ddsmoothmenu ul li{
position: relative;
display: inline;
float: left;
height:48px;
background: url(../images/menu-spe.png) right center no-repeat;
}
.ddsmoothmenu ul li:hover,.ddsmoothmenu ul li a.selected{
	background-color:#2da34a;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
/*Top level menu link items style*/
.ddsmoothmenu ul li a{
display: block;
padding: 0 20px;
height:48px;
line-height:48px;
color:#FFFFFF;
font-family: 'swiss_condensed';
font-size: 1.2rem;
font-weight: normal;
text-transform:uppercase;
}
.ddsmoothmenu ul li .showhide-subul {
    display: none;
    position: absolute;
    top: 0;
    right: 10px;
    width: 28px;
    height: 40px;
    line-height: 1;
    padding: 0 15px;
    margin-top: 0;
    cursor: pointer;
    z-index: 2;
}
.ddsmoothmenu ul li .showhide-subul i {
    height: auto;
    width: auto;
    position: absolute;
    top: 8px;
    bottom: 0;
    right: 0;
    left: 50%;
    margin: auto;
    font-size: 1.8rem;
    color: #fff;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
* html .ddsmoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}

.ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited{
color: #FFFFFF;
}

.ddsmoothmenu ul li a:hover, .ddsmoothmenu ul li a.active, .ddsmoothmenu ul li a.selected{
color: #ffffff;
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
width: 240px;
position: absolute;
left: 0;
margin:0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
background-color:#2da34a;
}
/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
float: left;
text-align:left;
display: inline;
height:auto;
line-height:normal;
margin:0;
background: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul{
margin: 0 0 0 1px;
}

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{
display:block;
width: 240px;
padding: 8px;
height: auto;
line-height:normal;
margin: 0;
color:#FFFFFF;
text-align:left;
text-transform:none;
border-bottom:1px solid #289938;
}

.ddsmoothmenu ul li ul li a:hover {background-color:#2483c5;}

/* 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: 16px;
right: 8px;
display:none;
}
.rightarrowclass{
position: absolute;
top: 10px;
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*/
filter:alpha(opacity=0);
-moz-opacity:0.0;
-khtml-opacity: 0.0;
opacity: 0.0;
}