ol, ul {list-style: none;}
li {display: list-item;}
a{list-style: none; text-decoration: none;}
a:active{outline: none;}
a:focus{ outline: none;}
:focus {outline: 0;}
.clearfix{clear: both;}




@font-face {
    font-family: 'roboto_condensedlight';
    src: url('../../fonts/RobotoCondensed-Light-webfont.eot');
    src: url('../../fonts/RobotoCondensed-Light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../../fonts/RobotoCondensed-Light-webfont.woff') format('woff'),
         url('../../fonts/RobotoCondensed-Light-webfont.ttf') format('truetype'),
         url('../../fonts/RobotoCondensed-Light-webfont.svg#roboto_condensedlight') format('svg');
    font-weight: normal;
    font-style: normal;

}



@font-face {
    font-family: 'roboto_condensedregular';
    src: url('../../fonts/RobotoCondensed-Regular-webfont.eot');
    src: url('../../fonts/RobotoCondensed-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../../fonts/RobotoCondensed-Regular-webfont.woff') format('woff'),
         url('../../fonts/RobotoCondensed-Regular-webfont.ttf') format('truetype'),
         url('../../fonts/RobotoCondensed-Regular-webfont.svg#roboto_condensedregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'robotolight';
    src: url('../../fonts/Roboto-Light-webfont.eot');
    src: url('../../fonts/Roboto-Light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../../fonts/Roboto-Light-webfont.woff') format('woff'),
         url('../../fonts/Roboto-Light-webfont.ttf') format('truetype'),
         url('../../fonts/Roboto-Light-webfont.svg#robotolight') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'robotoregular';
    src: url('../../fonts/Roboto-Regular-webfont.eot');
    src: url('../../fonts/Roboto-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../../fonts/Roboto-Regular-webfont.woff') format('woff'),
         url('../../fonts/Roboto-Regular-webfont.ttf') format('truetype'),
         url('../../fonts/Roboto-Regular-webfont.svg#robotoregular') format('svg');
    font-weight: normal;
    font-style: normal;

}





/* MAIN NAVIGATION 
----------------------------------------------------------------------------- */
#nav-container{
    width: 100%;
    height: 53px;
    margin-top: 30px;
	margin-bottom:20px;
    z-index: 900;
    position: relative; 
    float: left;
}

#nav{
    height: 100%;
    padding: 19px 0;
    list-style: none;
    float: right;

}

#nav > ul{
    display: block !important;
}

#nav li{
    float: left;
    position: relative;
    cursor: pointer;
}

#nav li > a{
    width: 100%;
    height: 100%;
    font: 12px Arial, sans-serif;
}

#nav > ul > li > a{  
    text-transform: uppercase;
}
#nav li > a span.has-sub{
    background: #333;
    color: #fff;
    padding: 0 3px;
    font-size: 11px;
    line-height: 10px;
    margin-left: 5px;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

#nav > ul > li{
    padding-right: 30px;
    height: 23px;

    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
}

#nav li a{
    float: none;
    display: block;
   font-family: 'roboto_condensedlight';
   font-size: 16px;
    color: #333;  
}


/* MAIN NAVIGATION SECOND LEVEL
----------------------------------------------------------------------------- */
#nav li ul{
    display: none;
    position: absolute;	
    padding-top: 15px;
    margin: 0;
    top: 100%;
    left: 0;
    z-index: 100;
}

#nav li ul li{
  
    background: #f8f8f8;    

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

#nav li ul li:first-child{
   
}

#nav li ul li:hover > a{
    text-indent: 3px;
}

#nav li ul li:hover{
    background: #fff;
}

#nav li ul li a{
    text-transform: none !important;
    font: 13px 'Droid Sans', sans-serif;
    line-height: 15px;
    color: #333 !important;
    padding: 12px 20px !important; 

    transition-property: text-indent;
    transition-duration: 0.2s;
    -webkit-transition-property: text-indent;
    -webkit-transition-duration: 0.2s;
    -moz-transition-property: text-indent;
    -moz-transition-duration: 0.2s;
    -o-transition-property: text-indent;
    -o-transition-duration: 0.2s;
}

#nav li ul li, #nav li ul li a{
    float: none;
}

#nav li ul li a {
    width: 150px;
    display: block;
}

/* MAIN NAVIGATION THIRD LEVEL
----------------------------------------------------------------------------- */
#nav li ul li ul {
    display: none;
}

#nav li ul li:hover ul {
    left: 100%;
    top: -1px;
    padding-top: 0 !important;
    padding-left: 5px;
    position: absolute;
    display: block !important;
}

#nav li.current-menu-item ul li.current-menu-item{
    background: #fff;
}




