	#menu:before,
	#menu:after {
		content: "";
		display: table;
	}
	
	#menu:after {
		clear: both;
	}
	
	#menu {
		zoom:1;
	}
	
	#menu li:hover > a {
		color: #fafafa;
		background:#d53331 url(../images/menu-bg.png) no-repeat right;
	}
	
	*html #menu li a:hover { /* IE6 only */
		color: #fafafa;
	}
	
	#menu ul {
		margin: 37px 0 0 0;
		_margin: 0; /*IE6 only*/
		opacity: 0;
		display:none;
		position: absolute;
		top: 68px;
		left: 0;
		z-index: 1;    
		background: #d63432;
		-webkit-transition: all .2s ease-in-out;
		-moz-transition: all .2s ease-in-out;
		-ms-transition: all .2s ease-in-out;
		-o-transition: all .2s ease-in-out;
		transition: all .2s ease-in-out;  
	}

	#menu li:hover > ul {
		opacity: 1;
		display:block;
		margin: 0;
	}
	
	#menu ul ul {
		top: 0;
		left: 190px;
		margin: 0 0 0 20px;
		_margin: 0; /*IE6 only*/
	}
	
	#menu ul li {
		float: none;
		display: block;
		border: 0;
		_line-height: 0; /*IE6 only*/
		padding:0;
	}
	
	#menu ul li:last-child {   
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none;    
	}
	
	#menu ul a {    
		padding:8px 20px;
		width: 150px;
		_height: 10px; /*IE6 only*/
		display: block;
		white-space: nowrap;
		float: none;
		text-transform: none;
		background:#d63432;
		background-image:none !important;
		font-size:13px;
	}
	
	#menu ul a:hover {
		background-color: #b31d1b;
	}
	
	#menu ul li:hover > a {
		color: #fafafa;
		background:#b31d1b;
	}
	
	#menu ul li:first-child > a {
		-moz-border-radius: 3px 3px 0 0;
		-webkit-border-radius: 3px 3px 0 0;
		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 #d63432;
	}
	
	#menu ul ul li:first-child a:after {
		left: -6px;
		top: 50%;
		margin-top: -6px;
		border-left: 0;	
		border-bottom: 6px solid transparent;
		border-top: 6px solid transparent;
		border-right: 6px solid #d63432;
	}
	
	#menu ul li:first-child a:hover:after {
		border-bottom-color: #d63432; 
	}
	
	#menu ul ul li:first-child a:hover:after {
		border-right-color: #d63432; 
		border-bottom-color: transparent; 	
	}
	
	#menu ul li:last-child > a {
		-moz-border-radius: 0 0 3px 3px;
		-webkit-border-radius: 0 0 3px 3px;
		border-radius: 0 0 3px 3px;
	}
	
	#menu ul ul li a {
		color: #fafafa;
		background:#b31d1b;
	}
	
	#menu ul ul li:hover > a {
		color: #fafafa;
		background:#921413;
	}
	
	/* Mobile */
	#menu-trigger {
		display: none;
	}

	/* iPad */
	.no-transition {
		-webkit-transition: none;
		-moz-transition: none;
		-ms-transition: none;
		-o-transition: none;
		transition: none;
		opacity: 1;
		visibility: visible;
		display: none;  		
	}

	#menu li:hover > .no-transition {
		display: block;
	}