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

/* -------- sidebar specific menue -------- */

#wrapper #side_bar{
	/* we apply a specific width for the sidebar */
	width: 210px;
	float: left;
	margin-left: 5px;
	/*border-color:#000000;
	border-right:solid;
	border-right-width: 1px;*/
	margin-top: 5px;
	margin-bottom: 5px;
}

#wrapper #side_bar ul{
	padding: 0px;
	padding-left: 5px;
	margin: 0px;
	list-style: none;
}

/* here we apply a background image to the list element tags, futher below at the <a> tags  we apply a padding to not overlap with the image */
#wrapper #side_bar li{
	background-image: url(../images/bullet_01_style_11x13.gif);
	background-repeat: no-repeat;
	background-position: left center;
}


/* u have to style the links in THIS order: link, visited, hover, active otherwise they might override each other love-hate */
#wrapper #side_bar li a:link, #wrapper #side_bar li a:visited{	
	font-family: Verdana, Arial, Helvetica, sans-serif;	
	color: #5b5b5b;
	font-size: 11px;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	/* here we apply a padding to the LINKS (<a> tags) as this will push the links right to the bg image we applied above*/
	padding-left: 0px;
	line-height: 200%;
}

#wrapper #side_bar li a:hover, #wrapper #side_bar li a:active{
	color: #CC9900;
}

/* here we create a CLASS selector (.current) for the CURRENT section viewed by the user, we have to group this section together with the active & hover behavior so that the CURRENT state will not be overridden by the above rules */
#wrapper #side_bar li a.current, #wrapper #side_bar li a.current:hover, #wrapper #side_bar li a.current:active{
	color: #CC9900;
	/*cursor: default;*/
}

#sb_header{
	padding-top: 5px;
	padding-bottom: 8px;
}

