﻿.ddsmoothmenutop
{
    margin-top: 17px;
    font: bold 11px Sans-Serif;
    background: #FFF; /*background of menu bar (default state)*/
    width: 220px;
}

.ddsmoothmenutop ul
{
    z-index:100;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/*Top level list items*/
.ddsmoothmenutop ul li{
    position: relative;
    display: inline;
    float: left;
}

/*Top level menu link items style*/
.ddsmoothmenutop ul li a{
    display: block;
    background: #FFF; /*background of menu items (default state)*/
    padding: 3px 9px;
    border-right: 1px solid #778;
    color: #5d5d5d;
    text-decoration: none;
    text-transform: uppercase;
}
.ddsmoothmenutop ul li a.mid{
    display: block;
    background: #FFF; /*background of menu items (default state)*/
    padding: 3px 7px;
    border-right: 1px solid #778;
    color: #5d5d5d;
    text-decoration: none;
    text-transform: uppercase;
    width: 55px;
}
.ddsmoothmenutop ul li a.last{
    display: block;
    background: #FFF; /*background of menu items (default state)*/
    padding: 3px 9px;
    border-right: 0px solid #778;
    color: #5d5d5d;
    text-decoration: none;
    text-transform: uppercase;
}

* html .ddsmoothmenutop ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
    display: inline-block;
}

.ddsmoothmenutop ul li a:link, .ddsmoothmenutop ul li a:visited{
    color: #5d5d5d;
}

.ddsmoothmenutop ul li a.selected { /*CSS class that's dynamically added to the currently active menu items' LI A element*/
    /*background: black !important; */
    color: #3e97cd;
}

.ddsmoothmenutop ul li a:hover{
    /*background: black;*/ /*background of menu items during onmouseover (hover state)*/
    color: #3e97cd;
}

.ddsmoothmenutop ul li a.last:link, .ddsmoothmenutop ul li a.last:visited{
    color: #5d5d5d;
}

.ddsmoothmenutop ul li a.last.selected { /*CSS class that's dynamically added to the currently active menu items' LI A element*/
    /*background: black !important; */
    color: #3e97cd;
}

.ddsmoothmenutop ul li a.last:hover{
    /*background: black;*/ /*background of menu items during onmouseover (hover state)*/
    color: #3e97cd;
}
	
/* sub menus */
.ddsmoothmenutop ul li ul{
    position: absolute;
    left: -3000px;
    display: none; /*collapse all sub menus to begin with*/
    visibility: hidden;
}

/*Sub level menu list items (alters style from Top level List Items)*/
.ddsmoothmenutop ul li ul li{
    display: list-item;
    float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenutop ul li ul li ul{
    top: 0;
}

/* Sub level menu links style */
.ddsmoothmenutop ul li ul li a{
    font: normal 13px tahoma !important;
    text-transform: capitalize !important;
    width: 140px; /*width of sub menus*/
    padding: 5px;
    margin: 0;
    border-top-width: 0;
    border-bottom: 0px solid gray;
    border-right: 0px solid gray !important;
}

/* Holly Hack for IE \*/
* html .ddsmoothmenutop{height: 1%;} /*Holly Hack for IE7 and below*/



/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
    position: absolute;
    top: 5px !important;
    right: 3px;
}

.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-color: #ccc; /* generally should be just a little lighter than the box-shadow color for CSS3 capable browsers */
}

.toplevelshadow{
    margin: 5px 0 0 5px; /* in NON CSS3 capable browsers gives the offset of the shadow */
    opacity: 0.8; /* shadow opacity mostly for NON CSS3 capable browsers. Doesn't work in IE */
}

.ddcss3support .ddshadow.toplevelshadow {
    margin: 0; /* in CSS3 capable browsers overrides offset from NON CSS3 capable browsers, allowing the box-shadow values in the next selector to govern that */
    /* opacity: 1; */ /* optionally uncomment this to remove partial opacity for browsers supporting a box-shadow property which has its own slight gradient opacity */
}

.ddcss3support .ddshadow {
    background-color: transparent;
    box-shadow: 5px 5px 5px #aaa; /* box-shadow color generally should be a little darker than that for the NON CSS3 capable browsers background-color */
    -moz-box-shadow: 5px 5px 5px #aaa;
    -webkit-box-shadow: 5px 5px 5px #aaa;
}