
.sf-menu
{
	/*display:table;
	border-collapse:collapse;*/
	/*table-layout:fixed;*/
	
	width: 100%;
	margin: 0;
	padding:0 !important;
	list-style: none;  
	background: #111;
	background: -moz-linear-gradient(#444, #111); 
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #111),color-stop(1, #444));	
	background: -webkit-linear-gradient(#444, #111);	
	background: -o-linear-gradient(#444, #111);
	background: -ms-linear-gradient(#444, #111);
	background: linear-gradient(#444, #111);
}

.sf-menu li
{
	/*display:table-cell !important;
	text-align:center !important;
	border-right:1px solid #fff;*/
	
	float: left;
	padding: 10px 0;
	/*padding: 10px 0 10px 0;*/
	position: relative;
	line-height: 0;
}


.sf-menu>li.active
{
	background:rgba(255,255,255,.25);
	position: relative;
	margin:0;
	padding:10px 0;
}

.sf-menu a 
{
	
	float: left;
	height: 25px;
	padding: 0 25px;
	color: #999;
	text-transform: uppercase;
	font: bold 12px/25px Arial, Helvetica;
	text-decoration: none;
}


.sf-menu li:hover > a
{
	color: #fafafa;
}

*html .sf-menu li a:hover /* IE6 */
{
	color: #fafafa;
}

.sf-menu li:hover > ul
{
	display: block;
	margin-top:10px;
}
.sf-menu li:hover > ul ul {margin-top:0}
/* Sub-menu */
.sf-menu li.active:hover ul
{
	margin:10px 0 0 0;
}
.sf-menu li.active:hover ul ul {margin-top:0}
.sf-menu ul
{
    list-style: none;
    margin: 0;
    padding: 0;    
    display: none;
    position: absolute;
    top: 35px;
    /*left: 0;*/
    z-index: 99999;    
    background: #444;
    background: -moz-linear-gradient(#444, #111);
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #111),color-stop(1, #444));
    background: -webkit-linear-gradient(#444, #111);    
    background: -o-linear-gradient(#444, #111);	
    background: -ms-linear-gradient(#444, #111);	
    background: linear-gradient(#444, #111);
    -moz-box-shadow: 0 0 2px rgba(255,255,255,.5);
    -webkit-box-shadow: 0 0 2px rgba(255,255,255,.5);
    box-shadow: 0 0 2px rgba(255,255,255,.5);	
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.sf-menu ul ul
{
  top: 0;
  left: 180px;
}

.sf-menu ul li
{
    float: none;
    margin: 0;
    padding: 0;
    display: block;  
    /*-moz-box-shadow: 0 1px 0 #111111, 0 2px 0 #777777;
    -webkit-box-shadow: 0 1px 0 #111111, 0 2px 0 #777777;
    box-shadow: 0 1px 0 #111111, 0 2px 0 #777777;*/
	-moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.sf-menu ul li:last-child
{   
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;    
}

.sf-menu ul a
{    
    padding: 13px;
	height: 13px;
	min-width: 190px;
	height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
	text-transform: none;
}

*html .sf-menu ul a /* IE6 */
{    
	height: 10px;
}

*:first-child+html .sf-menu ul a /* IE7 */
{    
	height: 10px;
}

.sf-menu ul a:hover
{
    background: #0186ba;
	background: -moz-linear-gradient(#04acec,  #0186ba);	
	background: -webkit-gradient(linear, left top, left bottom, from(#04acec), to(#0186ba));
	background: -webkit-linear-gradient(#04acec,  #0186ba);
	background: -o-linear-gradient(#04acec,  #0186ba);
	background: -ms-linear-gradient(#04acec,  #0186ba);
	background: linear-gradient(#04acec,  #0186ba);
    -moz-border-radius: 0px !important;
    border-radius: 0px !important;
}


.sf-menu ul li:first-child > a, .sf-menu ul li > a.firsta
{
    /*-moz-border-radius: 5px 5px 0 0 !important;
    border-radius: 5px 5px 0 0 !important;*/
	-moz-border-radius-topleft: 5px !important;
	-moz-border-radius-topright: 5px !important;
	border-top-left-radius: 5px !important;
	border-top-right-radius: 5px !important;
}
.sf-menu ul li:last-child > a, .sf-menu ul li > a.lasta
{
    /*-moz-border-radius:0 0 5px 5px !important;
    border-radius:0 0 5px 5px !important;*/
	-moz-border-radius-bottomleft: 5px !important;
	-moz-border-radius-bottomright: 5px !important;
	border-bottom-left-radius: 5px !important;
	border-bottom-right-radius: 5px !important;	
}



.sf-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 #444;
}

.sf-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 #444;
}

.sf-menu ul li:first-child a:hover:after
{
    border-bottom-color: #04acec; 
}

.sf-menu ul ul li:first-child a:hover:after
{
    border-right-color: #04acec; 
    border-bottom-color: transparent; 	
}


/* Clear floated elements */
.sf-menu:after 
{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .sf-menu             { zoom: 1; } /* IE6 */
*:first-child+html .sf-menu { zoom: 1; } /* IE7 */

.sf-menu li a span { position:relative; z-index:10;}
/*.sf-menu li a strong {
	display:block; background:#000; position: absolute;left:50%;top:50%;width:0;height:0;
	-webkit-transition: all .2s linear; -moz-transition: all .2s linear; -o-transition: all .2s linear; transition: all .2s linear;
}*/
.sf-menu li>a:hover strong,.sf-menu>li.current>a strong,.sf-menu>li.sfHover>a strong{left:0;top:0;width:100%;height:100%;}


	
	
	
	



/*--------DARK-------*/

.sf-menu-dark
{
	/*display:table;
	border-collapse:collapse;*/
	/*table-layout:fixed;*/
	
	width: 100%;
	margin: 0;
	padding:0 !important;
	list-style: none;  
	background: #111;
	background: -moz-linear-gradient(#444, #111); 
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #111),color-stop(1, #444));	
	background: -webkit-linear-gradient(#444, #111);	
	background: -o-linear-gradient(#444, #111);
	background: -ms-linear-gradient(#444, #111);
	background: linear-gradient(#444, #111);
}

.sf-menu-dark li
{
	/*display:table-cell !important;
	text-align:center !important;
	border-right:1px solid #fff;*/
	
	float: left;
	padding: 10px 0;
	/*padding: 10px 0 10px 0;*/
	position: relative;
	line-height: 0;
}


.sf-menu-dark>li.active
{
	background:rgba(255,255,255,.25);
	position: relative;
	margin:0;
	padding:10px 0;
}

.sf-menu-dark a 
{
	
	float: left;
	height: 25px;
	padding: 0 25px;
	color: #999;
	text-transform: uppercase;
	font: bold 12px/25px Arial, Helvetica;
	text-decoration: none;
}


.sf-menu-dark li:hover > a
{
	color: #fafafa;
}

*html .sf-menu-dark li a:hover /* IE6 */
{
	color: #fafafa;
}

.sf-menu-dark li:hover > ul
{
	display: block;
	margin-top:10px;
}
.sf-menu-dark li:hover > ul ul {margin-top:0}
/* Sub-menu */
.sf-menu-dark li.active:hover ul
{
	margin:10px 0 0 0;
}
.sf-menu-dark li.active:hover ul ul {margin-top:0}
.sf-menu-dark ul
{
    list-style: none;
    margin: 0;
    padding: 0;    
    display: none;
    position: absolute;
    top: 35px;
    /*left: 0;*/
    z-index: 99999;    
    background: #444;
    background: -moz-linear-gradient(#444, #111);
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #111),color-stop(1, #444));
    background: -webkit-linear-gradient(#444, #111);    
    background: -o-linear-gradient(#444, #111);	
    background: -ms-linear-gradient(#444, #111);	
    background: linear-gradient(#444, #111);
    -moz-box-shadow: 0 0 2px rgba(255,255,255,.5);
    -webkit-box-shadow: 0 0 2px rgba(255,255,255,.5);
    box-shadow: 0 0 2px rgba(255,255,255,.5);	
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.sf-menu-dark ul ul
{
  top: 0;
  left: 180px;
}

.sf-menu-dark ul li
{
    float: none;
    margin: 0;
    padding: 0;
    display: block;  
    /*-moz-box-shadow: 0 1px 0 #111111, 0 2px 0 #777777;
    -webkit-box-shadow: 0 1px 0 #111111, 0 2px 0 #777777;
    box-shadow: 0 1px 0 #111111, 0 2px 0 #777777;*/
	-moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.sf-menu-dark ul li:last-child
{   
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;    
}

.sf-menu-dark ul a
{    
    padding: 13px;
	height: 13px;
	width: 160px;
	height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
	text-transform: none;
}

*html .sf-menu-dark ul a /* IE6 */
{    
	height: 10px;
}

*:first-child+html .sf-menu-dark ul a /* IE7 */
{    
	height: 10px;
}

.sf-menu-dark ul a:hover
{
    background: #0186ba;
	background: -moz-linear-gradient(#04acec,  #0186ba);	
	background: -webkit-gradient(linear, left top, left bottom, from(#04acec), to(#0186ba));
	background: -webkit-linear-gradient(#04acec,  #0186ba);
	background: -o-linear-gradient(#04acec,  #0186ba);
	background: -ms-linear-gradient(#04acec,  #0186ba);
	background: linear-gradient(#04acec,  #0186ba);
    -moz-border-radius: 0px !important;
    border-radius: 0px !important;
}


.sf-menu-dark ul li:first-child > a, .sf-menu-dark ul li > a.firsta
{
    /*-moz-border-radius: 5px 5px 0 0 !important;
    border-radius: 5px 5px 0 0 !important;*/
	-moz-border-radius-topleft: 5px !important;
	-moz-border-radius-topright: 5px !important;
	border-top-left-radius: 5px !important;
	border-top-right-radius: 5px !important;
}
.sf-menu-dark ul li:last-child > a, .sf-menu-dark ul li > a.lasta
{
    /*-moz-border-radius:0 0 5px 5px !important;
    border-radius:0 0 5px 5px !important;*/
	-moz-border-radius-bottomleft: 5px !important;
	-moz-border-radius-bottomright: 5px !important;
	border-bottom-left-radius: 5px !important;
	border-bottom-right-radius: 5px !important;	
}



.sf-menu-dark 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 #444;
}

.sf-menu-dark 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 #444;
}

.sf-menu-dark ul li:first-child a:hover:after
{
    border-bottom-color: #04acec; 
}

.sf-menu-dark ul ul li:first-child a:hover:after
{
    border-right-color: #04acec; 
    border-bottom-color: transparent; 	
}


/* Clear floated elements */
.sf-menu-dark:after 
{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html .sf-menu-dark             { zoom: 1; } /* IE6 */
*:first-child+html .sf-menu-dark { zoom: 1; } /* IE7 */

.sf-menu-dark li a span { position:relative; z-index:10;}
/*.sf-menu-dark li a strong {
	display:block; background:#000; position: absolute;left:50%;top:50%;width:0;height:0;
	-webkit-transition: all .2s linear; -moz-transition: all .2s linear; -o-transition: all .2s linear; transition: all .2s linear;
}*/
.sf-menu-dark li>a:hover strong,.sf-menu-dark>li.current>a strong,.sf-menu-dark>li.sfHover>a strong{left:0;top:0;width:100%;height:100%;}


	
	
	