/* Some stylesheet reset */
ul.nav, .nav>li, .nav>li>a {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;

}

ul.nav {
	line-height: 1;
}

/* Basic layout & positioning */
.nav, .nav ul {
	position: relative;
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 180px;
}

	/* The list elements containing the links */
	.nav li, .nav ul li {
		display: block;
		position: relative;
		padding: 0;
		margin: 0;
	}

	/* The navigation links */
	.nav>li>a {
		/* Layout */
		position: relative;
		display: block;
		width:215px;
		float:left;
		padding: 0px 0px 0px 15px;
		border-top: 1px solid #86B13E;
		border-left: 1px solid #86B13E;
		border-right: 1px solid #86B13E;

		/* Text */
		font-family: Arial, Helvetica, sans-serif;
		font-weight: bold;
		font-size: 14px;
		text-decoration: none;
		color: #FFF;
		

	/* Background & effects */
		background: #86B13E; /* Background for old browsers */
		background: -webkit-linear-gradient(bottom, #86B13E, #B7D255); /* Background for Chrome & Safari */
		background: -ms-linear-gradient(bottom,  #86B13E, #B7D255); /* Background for Internet Explorer 10 */
		background: -moz-linear-gradient(bottom,  #86B13E, #B7D255); /* Background for Firefox */
		background: -o-linear-gradient(bottom, #86B13E, #B7D255); /* Background for Opera */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#86B13E', endColorstr='#B7D255',GradientType=0); /* Background for Internet Explorer 8-9 */
		box-shadow: inset 0 1px 0 #fff; /* Subtle white inner shadow */
	}

	/* The arrow indicating a dropdown menu */
	.dropdown1>a::after {
		 content: "";
		 position: absolute;
		 top: 16px;
		 right: 10px;
		 width: 0px;
		 height: 0px;

		 /* Creating the triangle using borders */
		 border-top: 5px solid #b2b2b2;
		 border-left: 4px solid transparent;
		 border-right: 4px solid transparent;
		 border-bottom: 5px solid transparent;
		}

	/* The hover state of the links */
	.nav>li>a:hover, .nav>li:hover>a {
		color: #333333;
		

	/* Background & effects */
		background: #86B13E; /* Background for old browsers */
		background: -webkit-linear-gradient(bottom, #86B13E, #B7D255); /* Background for Chrome & Safari */
		background: -ms-linear-gradient(bottom,  #86B13E, #B7D255); /* Background for Internet Explorer 10 */
		background: -moz-linear-gradient(bottom,  #86B13E, #B7D255); /* Background for Firefox */
		background: -o-linear-gradient(bottom, #86B13E, #B7D255); /* Background for Opera */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#86B13E', endColorstr='#B7D255',GradientType=0); /* Background for Internet Explorer 8-9 */
		box-shadow: inset 0 1px 0 #fff;
	}

	/* Subtle drop shadow for the last navigation link */
	.nav>li:last-child>a {
		border-bottom: 1px solid #cfcfcf;
		box-shadow: inset 0px 1px 0px #fff,
					0px 1px 1px rgba(60, 60, 60, .1);
	}

	/* The dropdown list elements containing the sub-links */
	.nav ul li {
		position: absolute;
		height: 0px;
		top: -9999px;
line-height:inherit;
		/* Creating the slide effect using transitions */
		-webkit-transition: height .3s ease-out;
		-ms-transition: height .3s ease-out;
		-moz-transition: height .3s ease-out;
		-o-transition: height .3s ease-out;
	}

	.nav li:hover li {
		/* Expanding the list elements */
		height: 30px;
		position: relative;
		top: auto;
		font-weight:bold;
	}

	/* The dropdown menu's links */
	.nav ul li a {
		/* Layout & positioning */
		position: relative;
		display: block;
		width: 215px;
		padding: 0px 0px 0px 15px;
		border-top: 1px solid #e1e1e1;
font-weight:bold;
		/* Text */
		font-family: Arial, Helvetica, sans-serif;
		
		font-size: 13px;
		text-decoration: none;
		border-left: 1px solid #cfcfcf;
		border-right: 1px solid #cfcfcf;
		background: white;
		 color: #0E5183;	
	}

	/* The hover state of the dropdown menu links */
	.nav ul li a:hover {
		color: #333333;
	}

	.nav .dropdown1:hover li:first-child a {
		box-shadow: inset 0px 1px 1px rgba(0, 0, 0, .12);
	
	}

	.nav li:last-child ul li:last-child a {
		border-bottom: 1px solid #cfcfcf;
		box-shadow: 0px 1px 1px rgba(60, 60, 60, .1);
	}