.ddsmoothmenu{
	width:1000px;
	position:relative;
}

.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;
	color: #FFF;
	text-decoration: none;
	text-align:center;
	/*font-weight:bold;*/
   /* padding-left: 11px;*/
   /* background:url(../images/mainMenu_bgL.png) left no-repeat;*/
}

.ddsmoothmenu ul li a span{
	display: block;
	color: #FFF;
	padding: 8px 11px 9px 0px;
	text-decoration: none;
	font-weight:700;
	text-align:left;
   /* background:url(../images/mainMenu_bgR.png) right no-repeat;*/
}

.ddsmoothmenu ul li a:hover{
	display: block;
	color: #2e2577;
	text-decoration: none;
	text-align:center;
    /*background:url(../images/mainMenu_bgL_over.png) left no-repeat;*/
}

.ddsmoothmenu ul li a:hover span{
	display: block;
	color:#2e2577;
	text-decoration: none;
    background:url(../images/mainMenu_bgR_over.png) right no-repeat;
}

.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
    background:url(../images/mainMenu_bgL_over.png) left no-repeat; 
    color: #2e2577;
}
.ddsmoothmenu ul li a.selected span{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
    background:url(../images/mainMenu_bgR_over.png) right no-repeat; 
    color: #FF0;
}

* html .ddsmoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
	text-decoration: none;
}

.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
/*background: #009187;*/ 
color: #000;
background: #78c8ff;
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
	position: absolute;
	left: 0;
	/*background: transparent url(../images/bgMenuTop.png); /*background of menu items (default state)*/
	background-color:#008ae3;
	border-top:none;
	padding:0px;
   /* padding-top: 10px;*/
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	width: 200px; /*width of sub menus*/
	
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
	display: list-item;
	float: none;
    padding: 0px;
    margin: 0px;
	width: 200px; 
	border-bottom:1px  dotted #8CD8F0;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul{
	top: 0;
	background: transparent url(../images/bgMenuTopsub.png); /*background of menu items (default state)*/
	padding:0px;
}
.ddsmoothmenu ul li ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
    background: none; 
    color: #FF0;
	
}

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{
	display:block;
	padding-left:12px;
	text-transform:none;
	font-weight:normal;
	border-bottom:1px   dotted  #8CD8F0;
	color:#fff;
    background: #008ae3;
	text-align:left;
}

.ddsmoothmenu ul li ul li a:hover{
	display:block;
	text-transform:none;
	color:#000;
    background: #78c8ff;
	text-align:left
}

/* Holly Hack for IE \*/
* html .ddsmoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
	/*display:none;*/
	position: absolute;
	top: 10px;
	right: 10px;
    display:none;
}

.rightarrowclass{
	position: absolute;
	top: 8px;
	right: 5px;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	/*background:#EBEBEB;*/
	display:none;
}

.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/
opacity: 0.8;
}