

/* MENU */

.top_nav_box{
	display: block;
	margin:0 auto;
	text-align: center;
	width: 1000px;
	clear:both;
	height:42px;
background: #2da8d0; /* Old browsers */
background: -moz-linear-gradient(top,  #2da8d0 0%, #2daad2 50%, #2794b7 51%, #2792b4 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2da8d0), color-stop(50%,#2daad2), color-stop(51%,#2794b7), color-stop(100%,#2792b4)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #2da8d0 0%,#2daad2 50%,#2794b7 51%,#2792b4 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #2da8d0 0%,#2daad2 50%,#2794b7 51%,#2792b4 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #2da8d0 0%,#2daad2 50%,#2794b7 51%,#2792b4 100%); /* IE10+ */
background: linear-gradient(to bottom,  #2da8d0 0%,#2daad2 50%,#2794b7 51%,#2792b4 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2da8d0', endColorstr='#2792b4',GradientType=0 ); /* IE6-9 */

	
}



#nav {
 margin: 0; padding: 0;

 border-bottom: none;
}

#nav li a, #nav li {
 float: left;
}

#nav li {
 list-style: none;
 position: relative;
 z-index:999;
}

#nav li a {
 padding:11px 11px;
 text-decoration: none;
 color: white;
 border-right: 1px solid #3bb0d5;


background: #2da8d0; /* Old browsers */
background: -moz-linear-gradient(top,  #2da8d0 0%, #2daad2 50%, #2794b7 51%, #2792b4 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2da8d0), color-stop(50%,#2daad2), color-stop(51%,#2794b7), color-stop(100%,#2792b4)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #2da8d0 0%,#2daad2 50%,#2794b7 51%,#2792b4 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #2da8d0 0%,#2daad2 50%,#2794b7 51%,#2792b4 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #2da8d0 0%,#2daad2 50%,#2794b7 51%,#2792b4 100%); /* IE10+ */
background: linear-gradient(to bottom,  #2da8d0 0%,#2daad2 50%,#2794b7 51%,#2792b4 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2da8d0', endColorstr='#2792b4',GradientType=0 ); /* IE6-9 */

	-moz-transition:0.25s all;
	-webkit-transition:0.25s all;
	-o-transition:0.25s all;
	transition:0.25s all;
}

#nav li a:hover {
background: -moz-radial-gradient(center, ellipse cover,  rgba(58,175,213,0.44) 0%, rgba(18,17,79,1) 100%); /* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(58,175,213,0.44)), color-stop(100%,rgba(18,17,79,1))); /* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover,  rgba(58,175,213,0.44) 0%,rgba(18,17,79,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover,  rgba(58,175,213,0.44) 0%,rgba(18,17,79,1) 100%); /* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover,  rgba(58,175,213,0.44) 0%,rgba(18,17,79,1) 100%); /* IE10+ */
background: radial-gradient(ellipse at center,  rgba(58,175,213,0.44) 0%,rgba(18,17,79,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#703aafd5', endColorstr='#12114f',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

	-moz-transition:0.25s all;
	-webkit-transition:0.25s all;
	-o-transition:0.25s all;
	transition:0.25s all;
 
 
 
}


/* Submenu */

.hasChildren {
	position: absolute;
	width: 5px; height: 5px;
	background: black;
	right : 0;
	bottom: 0;
}

#nav li ul {
 display: none;
 position: absolute;
 left: 0;
 top: 100%;
 padding: 0; margin: 0;
}

#nav li:hover > ul {
 display: block;
}

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

#nav li ul li {
 _display: inline; /* for IE6 */
}

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

/* SUBSUB Menu */

#nav li ul li ul {
 display: none;
}

#nav li ul li:hover ul {
 left: 100%;
 top: 0;
}


#nav li ul 