@charset "utf-8";
/* CSS Document */



/*** Navigation starts here ***/


/*** Layout styling ***/


#navigation li {
	margin-right: 30px; 
	position: relative;
}
	

/*** Hover and active state styling ***/
#navigation li a:hover, #navigation li a.active, #navigation li.current_page_item a {
	border-bottom:solid 1px #97271b;
}



/*** Styling for the dropdown link list ***/
#navigation li ul {
	background: rgba(254,252,238,.8);
	position: absolute;
	padding-left: 15px;
	line-height: 20px;
	top: 24px;
	left: 10px;
	display: none;
	width: 150px;   /*** change this if you want a longer dropdown ***/
	padding-top: 3px;
}

#navigation li:hover>ul {
	display: block;
	list-style-image: none;

}

#navigation li ul li {
	position: relative;
	display: list-item;
	line-height: 20px;
	width: 100%;
	font-size: .95em;
	list-style-type: none;
}

#navigation li ul li:last-child {
	/*border-bottom: none;*/     /*** uncomment this if you don't want last child underline styling ***/
}

#navigation li ul li:hover {
	background-color: rgba(254,252,238,.4);
	-webkit-transition: all 0.2s ease 0s;
	-moz-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
}

#navigation li ul li a {
	line-height: 20px;
	width: 100%;
	padding-left: 0px;
}

#navigation li ul li a:hover {
	border-bottom: none;
}

#navigation li ul ul {
	display: none;
	top: 10px;
	left: 150px;
	width: 175px;
}
