
	#nav, #nav ul {
		padding: 0;
		margin: 0;
		list-style: none;
		float : left;
		font-family: Arial;
		font-weight: bold;
	}
	
	#nav li { /* all list items */
		position : relative;
		text-align:left;
	}

	#nav li ul { /* second-level lists */
		width: 250px;

		padding-top: 5px;
		padding-bottom: 5px;
		position : absolute;
		left: -999em;
		margin-left : 196px;
		margin-top : -30px;
		background-color: #EFEFEF;
	}

	#nav li a {
		width: 190px;
		font-family: Arial;
		font-size: 13px;
		display : block;
		color : #C5333E;
		text-decoration : none;
		border-bottom-width: 1px;
		border-bottom-style: solid;
		border-bottom-color: #C5333E;
		padding-top: 7px;
		padding-left: 5px;
		padding-bottom: 8px;
		margin-right: 5px;
		text-align:left;
	}
	
	#nav li a:hover {
		font-family: Arial;
		font-size: 13px;
		color : #4B4B4B;
	}

	#nav #second a {
		line-height: 12px;
		width: 250px;
		font-family: Arial;
		font-size: 11px;
		display : block;
		color : #C5333E;
		border-bottom-width: 0px;
		text-decoration : none;
		padding-top: 1px;
		padding-left: 7px;
		padding-bottom: 1px;
		height:16px;
		margin-right: 5px;
		text-align:left;
	}
	
	#nav #second a:hover {
		font-family: Arial;
		font-size: 11px;
		height:16px;
		text-decoration: underline;
	}


	#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul					    { /* lists nested under hovered list items */
		left: auto;
	}

