/* Vertical style flyout navigation
 * Requires: 	js/flyouts.js 
 * 				styles/base.css 
 */

#nav, #nav ul, #nav li{ margin: 0; padding: 0; border: 0; }

#nav, #nav ul {										/* overall styles for lists */
	list-style: none;								/* DO NOT REMOVE */
	font-family: arial, helvetica, sans;			/* change as required */
	width: 190px;									/* = width of #nav li */
	font-size: 1.0em;								/* change as required */
	padding-top: 38px;
}

#nav li { 											/* Main Nav items */
	position: relative;								/* DO NOT REMOVE */								
	float: left;									/* DO NOT REMOVE */	
	width: 190px;									/* width of main nav items */									
	height: 12px;									/* = desiredHeight - padding-top */
	padding : 0;							/* for positioning text within the element */
	color: #3b3932;									/* text color for main nav items */
	margin-bottom: 16px;
	font-size: 1.2em;
	text-align: right;
	font-weight: bold;
}

#nav li a {											/* Link properties */
	display: block;									/* DO NOT REMOVE */
	background-color : transparent;					/* DO NOT REMOVE */
	color: inherit;									/* DO NOT REMOVE */
	text-decoration: none;							/* DO NOT REMOVE */
	padding-right: 2px;
	color: #ffffff;									/* Color of the text for your nav items */	
	border-right: 3px solid #db4e78;
	border-bottom: 0;
}

#nav li a:hover{
	border-right: 3px solid #79c8bb;
}
