#nav_bar ul
{

	/* This disables the list bullets,indentation etc. to make the list look like "normal" text */
	list-style: none;
	
	margin: 0;
	padding: 0;
}

#nav_bar ul li
{
	/*list-style-image:url(../images/point_red.gif);
	background-color:#CCCCCC;*/
	margin: 0;
	margin: 0.1em 0;
}

#nav_bar ul li a
{
	display:block;
	line-height: 0.6em;	
	
	background-color:#F5F5F5;
	
	margin:0;
	padding: 0.5em 1.5em;
	
	background-image:url(../images/point_red.gif);
	background-repeat:no-repeat;
	background-position: 0.25em 0.45em;	
}

/* The list elements in the menus don't stack well in IE6, so the following
 * code fixes it by floating them. The height of 1% is required as well, because
 * floating the list elements produces another bug in IE, and a non-zero height 
 * value is needed to properly display them as block elements. 
 *  
 * This hack, as well as other similar hacks, is based on "star html hack"
 * mechanism, which exploits a parsing bug in IE6.  Does NOT work in IE7 !!!
 * (but is apparently not needed, either...) For better description, look at 
 *  
 * http://alistapart.com/articles/horizdropdowns
 * 
 */

/* * html li a { background: #000099; } */
* html #nav_bar ul li { float: left; }
* html #nav_bar ul li a { height: 1%; }

p.category_separator 
{
	
	border-bottom: 2px solid #808080;
	
	font-family: Verdana, Arial, Helvetica, sans-serif;
	
	font-size: 12px;
	color: #5C5C5C;
	letter-spacing: 5px;
		
}

a.home_link
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	
	font-size: 12px;
	color: #5C5C5C;
	letter-spacing: 5px;
	
	margin-bottom: 2em;
	
}

a.home_link:visited, a.home_link:active
{
	color: #5C5C5C;
}



