body #nav ul	{
	position: relative;
	list-style:none;
	height: 70px;
	margin: 0;
	padding: 0;	
}

body #nav ul li	{
	position: relative;
	float:left;
	margin-left:13px;
	margin-top:15px;
}

body #nav ul li a	{
	display:block;
	text-align:center;
	position:relative;
	padding: 6px 15px;
	
	border:none;
	background-color: #ff9101;
	border-radius: 20px;
	box-shadow: 2px 2px 2px #000;
	color: #000;
	text-decoration: none;
	font-family: arial;
	font-size: 16pt;
	font-weight: bold;
	
	background-image: linear-gradient(bottom, rgb(255,93,5) 25%, rgb(255,145,1) 61%);
	background-image: -o-linear-gradient(bottom, rgb(255,93,5) 25%, rgb(255,145,1) 61%);
	background-image: -moz-linear-gradient(bottom, rgb(255,93,5) 25%, rgb(255,145,1) 61%);
	background-image: -webkit-linear-gradient(bottom, rgb(255,93,5) 25%, rgb(255,145,1) 61%);
	background-image: -ms-linear-gradient(bottom, rgb(255,93,5) 25%, rgb(255,145,1) 61%);
	
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.25, rgb(255,93,5)),
		color-stop(0.61, rgb(255,145,1))
	);
	
}

body #nav ul li:hover a	{
	background-color: #ff4900;
	color: #fff;
}

body #nav ul li:hover a.drop	{
	padding-bottom: 20px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}

.dropdown_menu_1, .dropdown_menu_2 	{
	position: absolute;
	top: 45px;
	left: 0;
	/*background-color: #fff;
	border-radius: 20px;
	border-top-left-radius: 0;
	border: 2px solid #ff4900;
	box-shadow: 3px 3px 20px #000;*/
	visibility: hidden;
	z-index: 15;
}

body #nav ul li:hover .dropdown_menu_1, body #nav ul li:hover .dropdown_menu_2	{
	visibility: visible;
}

.dropdown_menu_1	{
	width: 220px;
	height: auto;
}

.dropdown_menu_2	{
	width: 400px;
	height: auto;
}



body #nav ul li .dropdown_menu_1 ul li, body #nav ul li .dropdown_menu_2 ul li	{
	float: none;
	margin: 0;
}

body #nav ul li .dropdown_menu_1 ul li a, body #nav ul li .dropdown_menu_2 ul li a	{
	padding: 6px 15px;
	background-color: #fff;
	color: #000;
	border-radius: 0px;
	box-shadow: 0 0 0;
	text-align: left;
	font-size: 12pt;
	border-left: 2px solid #ff4900;
	border-right: 2px solid #ff4900;
	border-bottom: 1px solid #ccc;
	
	background-image: linear-gradient(bottom, rgb(255,255,255) 25%, rgb(255,255,255) 61%);
	background-image: -o-linear-gradient(bottom, rgb(255,255,255) 25%, rgb(255,255,255) 61%);
	background-image: -moz-linear-gradient(bottom, rgb(255,255,255) 25%, rgb(255,255,255) 61%);
	background-image: -webkit-linear-gradient(bottom, rgb(255,255,255) 25%, rgb(255,255,255) 61%);
	background-image: -ms-linear-gradient(bottom, rgb(255,255,255) 25%, rgb(255,255,255) 61%);
	
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.25, rgb(255,255,255)),
		color-stop(0.61, rgb(255,255,255))
	);
}

body #nav ul li .dropdown_menu_1 ul li a:hover, body #nav ul li .dropdown_menu_2 ul li a:hover	{
	background-color: #dadbdd;
	background-image: linear-gradient(bottom, rgb(218,219,221) 25%, rgb(218,223,232) 61%);
	background-image: -o-linear-gradient(bottom, rgb(218,219,221) 25%, rgb(218,223,232) 61%);
	background-image: -moz-linear-gradient(bottom, rgb(218,219,221) 25%, rgb(218,223,232) 61%);
	background-image: -webkit-linear-gradient(bottom, rgb(218,219,221) 25%, rgb(218,223,232) 61%);
	background-image: -ms-linear-gradient(bottom, rgb(218,219,221) 25%, rgb(218,223,232) 61%);
	
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.25, rgb(218,219,221)),
		color-stop(0.61, rgb(218,223,232))
	);
}

body #nav ul li .dropdown_menu_1 ul li:first-child a, body #nav ul li .dropdown_menu_2 ul li:first-child a	{
	border-top: 2px solid #ff4900;
	border-top-right-radius: 20px;
}

body #nav ul li .dropdown_menu_1 ul li:last-child a, body #nav ul li .dropdown_menu_2 ul li:last-child a	{
	border-bottom: 2px solid #ff4900;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}