/* CSS Document */

* {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
}

body {
	background:#FFF;
	font-size:14px;
	margin: 0;
	padding: 0;
}

a:link {
	color:#000;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

a:visited {
	color:#006699;
	text-decoration: underline;
}

a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

.category {
	width: 94%;
}

	

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	/*border: 0px solid #668; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 0px; /* this creates the space between the navigation on the content below */
	margin-top:0px;
}

ul.nav li {
	/*border: 0px solid #668; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited  /* grouping these selectors makes sure that your links retain their button look even after being visited */
{
	padding-left:15px;
	padding-top:5px;
	padding-bottom:5px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 224px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background:#F5F5F5;
	float:right;
	border: 1px solid #CCC;
	margin-bottom:3px;
}

ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background:#036; /* nav buttons bacground color */
	color:#FFF; /* nav buttons hover color of text */
}
