@CHARSET "UTF-8";
/*******************************************************************************
 * subnav.css
 *
 * This file contains styles for the sub-navigation bar. It is a vertical list
 * of menu items, similar to the main navigation bar (see sidebar.css) that
 * floats to the right of the page content.
 *
 * Author: William Madden
 *
 * Copyright (c) JB Interactive, 2008
 ******************************************************************************/
 
/*******************************************************************************
 * THE SUBNAV DIV
 ******************************************************************************/
#subnav {
	background: url('../../img/subnav_top.png') #efefe0 no-repeat;
	color: #cb6f2a;
	float: right;	
	position: relative;
	z-index: 999; /* Make it always on top */
	margin-bottom: 18px;
	margin-left: 18px;
}

/*******************************************************************************
 * LIST
 ******************************************************************************/
#subnav ul {
	background: url('../../img/subnav_bottom.png') no-repeat 0 100%;
	list-style: none;
	width: 132px;
	padding: 10px 0;
	margin-bottom: 0;
}

#subnav li {
	margin-bottom: 0;
}

#subnav li:first-child a {
	border-top: 1px solid #e1dfca;
}

/*******************************************************************************
 * LINKS
 ******************************************************************************/
#subnav a {
	color: inherit;
	border-bottom: 1px solid #e1dfca;
	line-height: 18px;
	display: block;
	padding: 0 12px 0 28px;
}

#subnav a.current {
	background: url('../../img/subnav_bullet_black.png') no-repeat 13px 50%;
	color: #000000 !important;
}

#subnav a:hover {
	color: inherit;
	background-color: #E1DFCA;
	text-decoration: none;
}
