/* CSS Document */

p, td, li, ul, ol, h1, h2, h3, h4, h5, h6
{
	font-family: Verdana, Arial, sans-serif;
	font-size: 11px;
}

/* General Document Settings */

body
{
	background: #666;
	margin: 0;0;0;0;
	
}
a:link
{
	color: #8F191C;
	text-decoration: none;
}

a:visited
{
	color: #631113;
	text-decoration: none;
}

a:hover
{
	color: #631113;
	text-decoration: none;
}

a:active
{
	color: #000000;
	text-decoration: none;
}

table#nav td a
/*This selects the link tag 'a' inside the cell thats part of the
table with the ID of "nav"*/
{
	line-height: 19px;
	/*Use this to control the height of the table cells*/
	
	font-size: 9px;
	font-weight: bold;
	
	text-decoration: none;
	/*removes underlines from links*/
	
	display: block;
	/*Changes link from inline (<em></ em> is an example of an inline tag)
	to block (<p></ p> and <h1></h1 > are examples of block level elements).
	In this case it makes the link occupy the whole table cell.*/
	
	margin: 0;
	padding: 0;
	/*Both of these eliminate empty space around links*/
}

#nav td a:link
/*These are pseudo classes.
a:link    - the link in its natural state
a:visited - a visited link
a:hover   - mouse over state
a:active  - clicked link
*/
{
	color: #CDCDCD;
	/*Text color. Hex values with 3 sets of doubles like #33aa99 can be
	abreviated to # #3a9*/
	
	background: #212121;
	/*This color will fill the whole cell because we set the link
	tag to block level*/
}

#nav td a:visited

{
	color: #CDCDCD;
	background: #212121;
}

#nav td a:hover
{
	color: #CDCDCD;
	background: #000;
}

#nav td a:active
{
	color: #fff;
	background: #212121;
}


/****** Navigation ******/

table#nav td
{
	width: 10%;
	text-align: center;
	vertical-align: middle;
	border-right: 1px solid #666;
	/*Sets up the white border between the cells*/
}

#nav td#navbegin
{
	border-left: 0;
}

#nav td#navend
{
	border-right: 0;
}

/****** Text ******/
h1
{
	font-size: 11px;
	font-weight: bold;
	color: #000;
	margin: 0;
	padding: 0;
}

h2
{
	font-size: 13px;
	font-weight: bold;
	color: #000;
	margin: 0;
	padding: 0;
}

h3
{
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	margin: 0;
	padding: 0;
}
/****** News Header Link Text ******/
h4
{
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	margin: 0;
	padding: 0;
}
/****** Mezco Copyright ******/
h5
{
	font-size: 9px;
	color: #4b4b4b;
	font-weight: normal;
	margin: 0;
	padding: 0;
}
