	body{
		background: #c1c1c1;
		font-size: 12px; 
	}
	#menu, #menu ul{
		margin: 0;
		padding: 0;
		list-style: none;
	}
	#menu{
		width: 100%;
		margin:  1px auto;
		background-color: #E04818;
		border-radius:  4px;
	}
	#menu:before,
	#menu:after{	
		content: '';
		display: table;
	}
	#menu:after{
		clear: both;
	}
	#menu li{
		float: left;
		box-shadow: 1px 0 0 #444;
		position: relative;
	}
	#menu a{
		float: left;
		padding: 8px 18px;
		text-transform: uppercase;
		font-family: Arial;
		text-decoration: none;
		color: #fff;
	}
	#menu li:hover > a{
		color: #fafafa;
		background: #262626;
	}
	#menu ul{
		margin: 20px 0 0 0;
		opacity: 0;
		visibility: hidden;
		position: absolute;
		top: 46px;
		left: 0;
		z-index: 1;
		background: #262626;
		border-radius: 3px;
		transition: all .3s ease-in-out;
	}
	#menu li:hover > ul{	
		opacity: 1;
		visibility: visible;
		margin: 0;
	}
	#menu ul ul{
		top: 0;
		left:150px;
		margin: 0 0 0 20px;
	}
	#menu ul li{
		float: none;
		display: block;
		border: 0;
		box-shadow: 0 1px 0 #111, 0 2px 0 #666;
	}
	#menu ul li:last-child{
		box-shadow: none;
	}
	#menu ul a{
		padding: 10px;
		with: 130px;
		display: block;
		white-space: nowrap;
		float: none;
		text-transform: uppercase;
	}
	#menu ul a:hover{
		background-color: #E04818;
	}
	#menu ul li:first-child > a{
		border-radius: 3px 3px 0 0;
	}
	#menu ul li:first-child > a:after{
		content: '';
		position: absolute;
		left: 40px;
		top: -6px;
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		border-bottom: 6px solid #fff;
	}
	#menu ul ul li:first-child a:after{
		boder-bottom: 6px solid transparent;
		boder-top: 6px solid transparent;
		boder-right: 6px solid #fff;
		left: -6px;
		top: 50%;
		margin-top: -6px;
		border-left: 0;	
	}
	#menu ul li:first-child a:hover:after{
		border-bottom-color: #fff;	
	}
	#menu ul ul li:first-child a:hover:after{
		border-right-color: #fff;	
		border-bottom-color: transparent;	
	}
	#menu ul li:last-child > a{
		border-radius: 0 0 3px 3px;
	}








