.ddTopNav{
    font-family: 'EurostileX', 'Helvetica', 'Arial', 'Verdana', 'sans-serif';
    font-size: 13px;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
/*    font-weight: bold; */
    color: white;
    background-color: #203D83; 
/*    margin: 0 7px 0 6px; */
    margin: 0 0px 0 0px;
    text-align:left; 
/*    width:801px; */
    width:1001px;
}

.ddTopNav ul{
z-index:100;
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.ddTopNav ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
.ddTopNav ul li a{
display: block;
background: #203D83; /*background of menu items (default state)*/
color: white;
/* padding: 8px 15px 7px; */
/* padding: 7px 25px; */
padding: 8px 25px 6px;
    margin: 0 0px 0 0px;

/* border-left: 1px solid white; */
text-decoration: none;
    font-family: 'EurostileX', 'Helvetica', 'Arial', 'Verdana', 'sans-serif';
    font-size: 13px;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
/*    font-weight: bold; */

}

* html .ddTopNav ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}

.ddTopNav ul li a:link, .ddTopNav ul li a:visited{
color: white;
background: #203D83; /*background of menu items (default state)*/
}

.ddTopNav ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
background: #2669BF; 
color: white;
}

.ddTopNav ul li a:hover{
background: #2669BF; /*background of menu items during onmouseover (hover state)*/
color: white;
}
	
/*1st sub level menu*/
.ddTopNav ul li ul{
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddTopNav ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddTopNav ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
.ddTopNav ul li ul li a{
    font-family: 'Helvetica', 'Arial', 'Verdana', 'sans-serif';
    font-size: 13px;
    font-style: normal;
    font-variant: normal;

/* width: 160px; */ /*width of sub menus*/
width: 150px; /*width of sub menus*/
/* padding: 5px; */
padding: 4px 8px;
margin: 0;
/*border-top-width: 0;*/
/* border-top: 1px solid white; */
border-top: 1px solid #2669BF;
border-left: 1px solid #2669BF; 
}

/* Holly Hack for IE \*/
* html .ddTopNav{height: 1%;} /*Holly Hack for IE7 and below*/


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
/* top: 12px; */
top: 8px;
/* right: 7px; */
right: 0px;
}

.rightarrowclass{
position: absolute;
top: 7px;
right: 5px;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{
position: absolute;
z-index:100;
left: 0;
top: 0;
width: 0;
height: 0;
background: #000000;
}

.toplevelshadow{ /*shadow opacity. filter:alpha required for IE*/
opacity: 0.25;filter:alpha(opacity=25)
}