﻿ /* Pure CSS3 Multi Level Drop Down Navigation Menu */
/*             By www.Bloggermint.com            */


#nav {
	float: left;
	font: 13px roboto_slablight, Arial, Helvetica, Sans-serif;
	overflow: hidden;
}

#nav ul {
	margin:0;
	padding:0;
	list-style:none;
}

#nav ul li {
	float:left;
}
#nav li ul li {
	border-bottom: 1px solid #2dbfc0;
}

#nav ul li a {
   	float: left;
	color:#FFF;
	padding: 10px 30px;
	text-decoration:none;
	text-transform: uppercase;
}

#nav ul li a:hover,
#nav ul li:hover > a,
#nav ul li.active a {
	color: #333;
	background:#36e4e5;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
    border-radius: 25px;
}
#nav ul li.parent:hover > a {
	color: #333;
	background:#36e4e5 url(../img/arrow-down.png) right 15px center no-repeat;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
    border-radius: 25px;
}
#nav ul li.parent a:hover, #nav ul li.parent.hovered a {
	-webkit-border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-bottomright: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

#nav li ul a:hover, 
#nav ul li li:hover > a  {
    color: #FFF;
  	background: #032835;
	border-radius: 0;
}
#nav ul li li.parent:hover > a  {
    color: #FFF;
  	background: #032835 url(../img/arrow-right-w.png) right 15px center no-repeat;
	border-radius: 0;
}
#nav li ul {
	background:#36e4e5;
	left: -999em;
	margin: 35px 0 0;
    position: absolute;
    width: 300px;
    z-index: 9999;
}

#nav li:hover ul {
    	left: auto;
}

#nav li ul a {
	color: #333;
	background: none;
    border: 0 none;
    margin-right: 0;
    width: 240px;
    text-transform: none;
   	font-size: 14px;
}

#nav li li ul {
	margin: -1px 0 0 300px;
    visibility:hidden;
}

#nav li li:hover ul {
	visibility:visible;
}

#nav ul ul li:last-child > a {
	
}

#nav ul ul ul li:first-child > a {
	
}
li.parent {
	background: url(../img/arrow-down-w.png) right 15px center no-repeat;
}
#nav li ul li.parent {
	background: url(../img/arrow-right.png) right 15px center no-repeat;
}
#nav li ul li.parent:hover > a {
	
}
#nav li.parent:hover a {
	
}