/*

	CSS Spice

*/


/* Set all margins, paddings and borders to 0, helps uniformly apply lists cross-browser */

* {
	margin: 0;
	padding: 0;
	border: 0;
}

/* Clear floating elements - Not really needed any more except for when you can't apply a width and overflow */

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* Clearfix IE hack - A width must be applied in IE */

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
/* End hide from IE-mac */

/*****************************************************

	COLOUR & TYPOGRAPHY

*****************************************************/

body {
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 72.5%; /* reset 1em to equal 10px */
	color: #666;
	background: #000;
	behavior: url("htc/csshover.htc");
}

h1, h2, h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: lighter;
	color: #3C98E5;
}

h2 {
	font-size: 1.75em;
}

h3 {
	font-size: 1.25em;
}

a {
	color: #999;
	text-decoration: none;
}

a:hover {
	color: #666;
	text-decoration: underline;
}

hr {
	height: 1px;
	color: #CCC;
	background: #CCC;
	margin: 10px 0 10px 0;
}

p {
	padding: 10px;
}

table {
	width: 95%;
	margin: 10px;
}

th {
	padding: 5px;
}

td {
	padding: 5px;
}

.border {
	border: 1px solid #CCC;
}

img {
    padding: 2px;
}
/*****************************************************

	STRUCTURE

*****************************************************/

#wrapper {
	margin: 0 auto;
	width: 800px;
	text-align: left;
}

/* Header */

#header {
	color: #FFF;
	overflow: auto;
	padding: 5px;
}

#header p {
	padding: 10px;
}

#header a {
	color: #FFF;
}

/* Main Body */

#body {
	width: 100%;
	overflow: auto;
	padding: 0 0 10px 0;
}

/*******************************************************
			NAVIGATION
*******************************************************/

ul#menu {
	height: auto;
	_height: 1%; /* Required to make IE6 get overflow - IE7 doesn't mind this */
	margin: 8px 0 0 0;
	border-top: 1px solid #E0E0E0;
	border-bottom: 1px solid #E0E0E0;
	background: #484747 ;
	overflow: auto;
	clear: both;
}

ul#menu li {
	display: inline;
}

ul#menu a {
	display: block;
	padding: 7px 30px;
	float: left;
	border-left: 1px solid #000;
	border-right: 1px solid #828181;
	color: #FFF;
	text-decoration: none;
}

ul#menu a:hover {
	background: #9C9B9B;
}

ul#menu .navSelected {
	background: #2CB8E3;
}

ul#menu a.last {
	border: 0;
}

/* Useful Classes */

.left {
	float: left;
}

.right {
	float: right;
}

.center {
	text-align: center;
}

.hidden {
	display: none;
}

.spicetext {
    font-family: Times New Roman, Arial Black, Verdana;
    font-size: 150%;
    color: #FFF;
    font-style: italic;
}