.navhor {
    width: 100%;
}

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

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

.navhor ul li:last-child, .navhor ul li li {
    background: none;
}

@font-face {
    font-family: "OpenSans-Regular";
    src: url('../font/OpenSans-Regular.ttf') format('truetype');
}

/*Top level menu link items style*/
.navhor ul li a {
    display: block;
    padding: 11px 18px;
    color: #1c1c1c;
    text-decoration: none;
    font-size: 16px;
    font-family: "OpenSans-Regular";
    text-transform: uppercase;
}
.navhor ul li:last-child a{padding-right: 0;}

.navhor ul li a .icmn {
    text-align: center;
    padding: 10px 0 0 0;
}

.navhor ul li a .icmn i {
    font-size: 25px;
}

.navhor ul li:last-child a .icmn i {
    font-size: 21px;
}

.navhor ul li i {
    margin-left: 3px;
    font-size: 22px;
    margin-top: -2px;
    color: #9f9f9f;
}

.navhor ul li li a {
    text-transform: none;
}

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

.navhor ul li a:link, .navhor ul li a:visited {
    color: #1c1c1c;
}

.navhor ul li a.selected, .navhor ul li a:selected i { /*CSS class that's dynamically added to the currently active menu items' LI A element*/
    color: #005bcd;
}

.navhor ul li a:hover, .navhor ul li a:hover i {
    color: #005bcd;
}

.navhor ul li ul li a:link, .navhor ul li ul li a:visited {
    color: #fff;
}

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

.navhor ul li ul li a:hover {
    color: #000;
}

/*1st sub level menu*/
.navhor ul li ul {
    position: absolute;
    margin-left: 22px;
    display: none; /*collapse all sub menus to begin with*/
    visibility: hidden;
    background: #0c62e4;
}

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

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

/* Sub level menu links style */
.navhor ul li ul li a {
    min-width: 180px; /*width of sub menus*/
    white-space: nowrap;
    padding: 5px;
    margin: 0;
    margin-left: 1px;
    border-top-width: 0;
    border-bottom: 1px solid #0244a8;
    background: #0c62e4;
    font-size: 14px;
    text-transform: inherit !important;
}

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

/*Holly Hack for IE7 and below*/

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

.downarrowclass {
    display: none;
}

.rightarrowclass {
    display: none;
}

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

.ddshadow { /*shadow for NON CSS3 capable browsers*/
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    background: silver;
}

.toplevelshadow { /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
    opacity: 0.8;
}