/**
 * CSS File for Navigation Bar in the header
 *
 * Created By - Akshay Vaze (akshayvaze@gmail.com)
 * Created Date: 03/11/2014
 *
 * Code got from: Travis Clark
 *
 * Modified By -
 * Modified Date:
 */

/* Main menu */

#menu {
    width: 100%;
    margin: 0;
    padding: 10px 0 0 0;
    list-style: none;
}
#menu li {
    float: left;
    padding: 0 0 10px 0;
    position: relative;
    line-height: 0;
}
#menu a {
    float: left;
    padding: 0 25px;
    color: #1e202c;
    /*font: bold 15px Arial, Helvetica;*/
    text-decoration: none;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
}

#menu li:hover > a {
    color: #aaa;
}
*html #menu li a:hover /* IE6 */ {
    color: #aaa;
}
#menu li:hover > ul {
    display: block;
}
.right-arrow {
    font-size:75%;
    vertical-align:15%;
    color:#555;
}
.down-arrow {
    font-size:80%;
    color:#333;
}
/* Sub-menu */

#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 99999;
    background: #ddd;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
#menu ul ul {
    top: 0;
    left: 103px;
}
#menu ul ul.long_name {
    top: 0;
    left: 144px;
}
#menu ul li {
    float: none;
    margin: 0;
    padding: 0;
    display: block;
}
#menu ul li:last-child {
}
#menu ul a {
    padding: 10px;
    height: 10px;
    /*width: 190px;*/
    width: auto;
    min-width: 85px;
    height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;
    font-size: 13px;
}
#menu ul ul {
    background-color: #CFCFCF;
}
*html #menu ul a /* IE6 */ {
    height: 10px;
}
*:first-child+html #menu ul a /* IE7 */ {
    height: 10px;
}
#menu ul a:hover {
    background: #aaa;
    color: #fff;
}
#menu ul li:first-child > a {
    -moz-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}
#menu ul li:first-child > a:after {
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #ddd;
}
#menu ul ul li:first-child a:after {
    left: -8px;
    top: 12px;
    width: 0;
    height: 0;
    border-left: 0;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-right: 8px solid #bbb;
}
#menu ul li:first-child a:hover:after {
    border-bottom-color: #aaa;
}
#menu ul ul li:first-child a:hover:after {
    border-right-color: #bbb;
    border-bottom-color: transparent;
}
#menu ul li:last-child > a {
    -moz-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}
/* Clear floated elements */
#menu:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
* html #menu {
    zoom: 1;
} /* IE6 */
*:first-child+html #menu {
    zoom: 1;
} /* IE7 */
.right-arrow {
    font-size:75%;
    vertical-align:15%;
    color:#555;
}
.down-arrow {
    font-size:80%;
    color:#333;
}
.slash {
    padding-top: 11px;
    position:absolute;
}

.button:hover {
    background-color: #e1e1e8;
}