/*=============Mainmenu====================*/
#nav {
	width:100%;
	margin:0px auto;
	padding: 7px 6px 0;
	background:#0B6121 url(../images/bg/orange-bg-box.png) repeat-x ;
	line-height: 100%;
     -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
	/*border-radius: 2em;
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;*/
/* box shadow */
    -moz-box-shadow: 0px 3px 3px #cecece;
    -webkit-box-shadow: 0px 3px 3px #cecece;
    box-shadow: 0 6px 7px   #666666;
}
#nav li {
	
	margin: 0 10px;
	padding: 0 0 8px;
	float: left;
	position: relative;
	list-style: none;
	
}


/* main level link */
#nav a { font-family: "Lucida Sans Unicode",Verdana,Arial,sans-serif;
	font-weight: normal;
	color: #000;
	text-decoration: none;
	display: block;
	padding:  8px 20px;
	margin: 0;
	text-align:center;
	text-transform:uppercase;
	/*-webkit-border-radius: 1.6em;
	-moz-border-radius: 1.6em;
	
	text-shadow: 0 1px 1px rgba(0,0,0, .3);*/
}
#nav a:hover {
	background: #000;
	color: #fff;
}


/* keyframes #animation */
@-webkit-keyframes animation {
    0% {
        -webkit-transform: scale(1);
    }
    30% {
        -webkit-transform: scale(1.3);
    }
    100% {
        -webkit-transform: scale(1);
    }
}
@-moz-keyframes animation {
    0% {
        -moz-transform: scale(1);
    }
    30% {
        -moz-transform: scale(1.2);
    }
    100% {
        -moz-transform: scale(1.1);
    }
}
/* main level link hover */
#nav .current a{color: #fff;
	background:#071918;}

#nav li:hover > a {
	color: #fff;
	background:#071918;
	text-decoration: none;
    -webkit-animation-name: animation;
    -webkit-animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    -webkit-animation-delay: 0;
    -webkit-animation-play-state: running;
    -webkit-animation-fill-mode: forwards;

    -moz-animation-name: animation;
    -moz-animation-duration: 0.3s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: 1;
    -moz-animation-direction: normal;
    -moz-animation-delay: 0;
    -moz-animation-play-state: running;
    -moz-animation-fill-mode: forwards;
	
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	/*border-top: solid 1px #f8f8f8;*******************/
	
	

	-webkit-box-shadow: 0 1px 1px rgba(0,0,0, .2);
	-moz-box-shadow: 0 1px 1px rgba(0,0,0, .2);
	box-shadow: 0 1px 1px rgba(0,0,0, .2);

	text-shadow: 0 1px 0 rgba(255,255,255, 1);
}




/* sub levels link hover */
#nav ul li:hover a, #nav li:hover li a {
	background: none;
	border: none;
	color: #000;
	margin-top:8px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}
#nav ul a:hover {
	background: #071918 url(img/gradient.png) repeat-x 0 -100px !important;
	color: #fff !important;
     
	-webkit-border-radius: 0;
	-moz-border-radius: 0;

	text-shadow: 0 1px 1px rgba(0,0,0, .1);
}

/* dropdown */
#nav li:hover > ul {
	display: block;
}

/* level 2 list */
#nav ul {
	display: none;
	 margin: 0;
	padding: 0;
	width: 240px;
	position: absolute;
	top: 32px;
	left: -5px;
	background: #FFD5BF;
	border: solid 1px #b4b4b4;

	/*-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;*/

	-webkit-box-shadow: 0 1px 3px rgba(0,0,0, .3);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0, .3);
	box-shadow: 0 1px 3px rgba(0,0,0, .3);
}
#nav ul li {
	float: none;
	margin: 0 10px;
	padding: 0 0 8px;
}

#nav ul a {
	font-weight: normal;
	font-size:13px;
	text-shadow: 0 1px 0 #fff;
	text-transform:uppercase;
}

/* level 3+ list */
#nav ul ul {
	left: 225px;
	top: -2px;
}

/* rounded corners of first and last link 
#nav ul li:first-child > a {
	-webkit-border-top-left-radius: 9px;
	-moz-border-radius-topleft: 9px;

	-webkit-border-top-right-radius: 9px;
	-moz-border-radius-topright: 9px;
}
#nav ul li:last-child > a {
	-webkit-border-bottom-left-radius: 9px;
	-moz-border-radius-bottomleft: 9px;

	-webkit-border-bottom-right-radius: 9px;
	-moz-border-radius-bottomright: 9px;
}*/

/* clearfix */
#nav:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#nav {
	display: inline-block;
} 
html[xmlns] #nav {
	display: block;
}
 
* html #nav {
	height: 1%;
}
/*=============Menu Close====================*/
