/* 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
{
	font-size: #11;
	font-weight: normal;
	color: #000;
	font-family: Verdana, Arial, sans-serif;
	font-size: 11px;
	margin-top: 0;
	margin-left: 0;
	margin-right:0;
	margin-bottom: 0;
}
a:link
{
	color: #fff;
	text-decoration: none;
}

a:visited
{
	color: #C1C1C1;
	text-decoration: none;
}

a:hover
{
	color: #fff;
	text-decoration: underline;
}

a:active
{
	color: #fff;
	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: 27px;
	/*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: #000;
	/*Text color. Hex values with 3 sets of doubles like #33aa99 can be
	abreviated to # #3a9*/
	
	background: #c1c1c1;
	/*This color will fill the whole cell because we set the link
	tag to block level*/
}

#nav td a:visited

{
	color: #000;
	background: #c1c1c1;
}

#nav td a:hover
{
	color: #000;
	background: #aaa;
}

#nav td a:active
{
	color: #000;
	background: #c1c1c1;
}


/****** Navigation ******/

table#nav td
{
	width: 10%;
	text-align: center;
	vertical-align: middle;
	border-right: 1px solid #fff;
	/*Sets up the white border between the cells*/
}

#nav td#navbegin
{
	border-left: 0;
}

#nav td#navend
{
	border-right: 0;
}

/****** Mezco Copyright ******/
h1
{
	font-size: 9px;
	color: #4B3333;
	font-weight: normal;
	margin: 0;
	padding: 0;
}

/****** Now Showing Search Results Text ******/
h2
{
	font-size: 11px;
	font-weight: normal;
	color: #9A9A9A;
	margin: 0;
	padding: 0;
}

/****** Search Results Page Text ******/
h3
{
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	margin: 0;
	padding: 0;
}

h4
{
	font-size: 10px;
	font-weight: normal;
	color: #CC7D7D;
	margin: 0;
	padding: 0;
}

/****** Preview Page Text ******/

h5
{
	font-size: 18px;
	font-weight: bold;
	color: #ED1C24;
	margin: 0;
	padding: 0;
}

h6
{
	font-size: 11px;
	font-weight: bold;
	color: #ED1C24;
	margin: 0;
	padding: 0;
}

/****** Show All Text ******/

#showall td a:link, #showall td a:visited
{
	font-size: 10px;
	font-weight: bold;
	color: #CC7D7D;
}

/****** Preview Text ******/

#previewtext td
{
	font-size: 11px;
	font-weight: normal;
	color: #b4b4b4;
}


#mtheader td a:hover
{
	color: #fff;
	background: #ce972c;
}

/****** Left Side Bar ******/

#leftsidebar a
{
	color: #fff;
}

#leftsidebar a:hover
{
	color: #b4b4b4;
}


#leftsidebar ul
{
	color: #fff;
	list-style: none;
	margin: 0;
	padding: 0;
	text-indent: 0 -1em;
}
