/* CSS Document */
#smoothmenu1{
width: 799px;
}

#smoothmenu1 ul{
z-index:100;
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
#smoothmenu1 ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
#smoothmenu1 ul li a{
display: block;
background:none; /*background of menu items (default state)*/
padding:12px 35px 10px 35px;
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size:17px;
text-decoration:none;
font-weight:normal;
color:#973393;
border-left:1px solid #25212b;
}

* html #smoothmenu1 ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}

#smoothmenu1 ul li a:hover{
background:url(../images/bullet_1.jpg) no-repeat;
background-position:center top;
color:#ffffff;
}
#smoothmenu1 ul li a.current {
background:url(../images/bullet_1.jpg) no-repeat;
background-position:center top;
color:#ffffff;
}
	
/*1st sub level menu*/
#smoothmenu1 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)*/
#smoothmenu1 ul li ul li{
display: list-item;
float: none;
opacity: 1.0;
background:none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
#smoothmenu1 ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
#smoothmenu1 ul li ul li a{
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size:12px;
text-decoration:none;
font-weight:normal;
color:#ffffff;
width:105px; /*width of sub menus*/
padding: 5px;
margin: 0;
border-left:none;
border-top:none;
border-right:none;
border-bottom: 1px solid #963292;
background:#792a76;
opacity: 1.0;
}

#smoothmenu1 ul li ul li a:hover{
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size:12px;
text-decoration:none;
font-weight:normal;
color:#ffffff;
width:105px; /*width of sub menus*/
padding: 5px;
margin: 0;
border-left:none;
border-top:none;
border-right:none;
border-bottom: 1px solid #963292;
background:#000000;
opacity: 1.0;
}

#smoothmenu1 ul li ul li a.current {
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size:12px;
text-decoration:none;
font-weight:normal;
color:#ffffff;
width:105px; /*width of sub menus*/
padding: 5px;
margin: 0;
border-left:none;
border-top:none;
border-right:none;
border-bottom: 1px solid #963292;
background:#000000;
opacity: 1.0;
}


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 0px;
right: 0px;
}

.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: 1.0;
}
