/*  horizontalnav START  //  http://alistapart.com/articles/slidingdoors/  */
#horizontalnav {
	float:right;;
	height:100px;
	font-size:93%;
	line-height:normal;
	font-family:Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
}
#horizontalnav ul {
	float:right;
	margin:0px;
    padding:60px 20px 0px;  /*  Placement of the entire nav  */
	list-style:none;
}
#horizontalnav li {
	float:left;
	background:url("../images/nav_right.jpg") no-repeat right top;  /*  BG & right rounded corner  */
	margin:0px 3px 0px 0px;
    padding:0;
}
#horizontalnav a {
	display:block;
	background:url("../images/nav_left.jpg") no-repeat left top;  /*  Left rounded corner (lays on top of li image)  */
    padding:5px 15px 4px; /* Decrease the padding on the 3rd value (bottom) (5px - 1px = 4px) to show the BG image line on the bottom of the btn  */
	text-decoration:none;
	font-weight:bold;
	color:#ae624a;
}
#horizontalnav #current {
	background-image:url("../images/nav_right_on.jpg");
}
#horizontalnav #current a {
	background-image:url("../images/nav_left_on.jpg");	
	padding-bottom:5px;  /*  Set the bottom padding to 5px so it hides the BG line and "bleeds" into the bottom  */
	color:#000;  /*  Text color  */
}
#horizontalnav a:hover {
	color:#333;
}
/*  horizontalnav END  */

