/* Drop menu by http://namkna.blogspot.com/ */
/* ddsmoothmenu */
.ddsmoothmenu {
    height: 42px;
    margin-bottom: 10px;
    background: url(../images/bg_menu_top.png) repeat-x;
}

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

/*Top level list items*/
.ddsmoothmenu ul li {

    min-width: 140px;
   /* max-width: 140px; */
    border-right:1px solid #bccada;
    position: relative;
    display: inline;
    height: 42px;
    float: left;
}
.ddsmoothmenu ul li:first-child, .ddsmoothmenu ul li:last-child {
    border-right: none;
    min-width: 0;
}
.ddsmoothmenu ul li:first-child:hover {
    background: none;
}

.ddsmoothmenu ul li:hover {
    background: url(../images/bg_menu_top_hover.png) repeat-x;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a {
    color: #345579;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    line-height: 21px;
    text-transform: uppercase;
    padding: 0;

    text-decoration: none;
}
.ddsmoothmenu ul li a:hover {
    color: #fff;
}
.ddsmoothmenu ul li a span{
    padding-left: 10px;
}

.ddsmoothmenu ul li img {
    
    margin: 5px;
    float: left;
}
.ddsmoothmenu ul li:first-child img {
    height: 42px;
    margin-top: 0;
    float: left;
}

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

/*1st sub level menu*/
.ddsmoothmenu ul li ul {
    position: absolute;
    top: 0;
    opacity: 0.6;
    filter: alpha(opacity=60);
    border-bottom: none;
    font-size: 12px;
    line-height: 30px;
    z-index: 100;
    background-color: #01447b;
    width: 180px;
    visibility: hidden;
}

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

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

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a {
    width: auto;
    display: block;
    line-height: normal;
    border-top: 1px dotted #CCC;
    text-align: left;
    margin-left: 7px;
    margin-right: 7px;
    padding: 12px 0;
    font-size: 12px;
    text-decoration: none;
    color: #FFF;
}

/* Holly Hack for IE \*/
* html .ddsmoothmenu {
    height: 1%;
}

/*Holly Hack for IE7 and below*/
/* ######### CSS classes applied to down and right arrow images  ######### */
/* ddsmoothmenu-v */
.ddsmoothmenu-v ul {
    margin: 0;
    padding: 0;
    width: 170px; /* Main Menu Item widths */
    list-style-type: none;
    font: bold 12px Verdana;
    border-bottom: 1px solid #ccc;
}

.ddsmoothmenu-v ul li {
    position: relative;
}

/* Top level menu links style */
.ddsmoothmenu-v ul li a {
    display: block;
    overflow: auto; /*force hasLayout in IE7 */
    color: white;
    text-decoration: none;
    padding: 6px;
    border-bottom: 1px solid #778;
    border-right: 1px solid #778;
}

.ddsmoothmenu-v ul li a:link, .ddsmoothmenu-v ul li a:visited, .ddsmoothmenu-v ul li a:active {
    color: #F30
}

/*Sub level menu items */
.ddsmoothmenu-v ul li ul {
    position: absolute;
    width: 170px; /*Sub Menu Items width */
    top: 0;
    font-weight: normal;
    visibility: hidden;
}

/* Holly Hack for IE \*/
* html .ddsmoothmenu-v ul li {
    float: left;
    height: 1%;
}

* html .ddsmoothmenu-v ul li a {
    height: 1%;
}

/* End */