* {margin: 0; padding: 0; border: 0;}

body {
	text-align: center; 
	background: #999999;
	background-image: url(../template-pics/background.gif);
	background-repeat: repeat-x;
	background-position: top;
	padding: 5px;
	font-family: verdana, tahoma, arial, sans-serif;
	font-size: 100%;
	line-height: 1.5;
}

table {
	font-size: 100%;
	line-height: 1.5;
}

a {
	color: #FF0000;
	padding: 0 2px;
}

#center a { color: #E2001A; text-decoration:none; }
#center a:hover { background: #E2001A; color: #FFFFFF; }

#footer a { color: #E2001A; text-decoration:none; }
#footer a:hover { background: #E2001A; color: #FFFFFF; }

h1, h2, h3, h4, p { margin: 12px 0; }
h1 { font-size: 170%; }
h2 { font-size: 140%; }
h3 { font-size: 120%; }
ul {margin: 1em 2em;}

/***************************************************************/
/**************** Layout CSS begins ****************************/

#wrapper { /* also holds the left "sliding" tab */
	background: #FFFFFF;
	text-align: left;
	width: 990px;
	margin: 0 auto; /* NN will put content out of scrollable reach if auto is used unless there's a min-width on body too*/
	padding-left: 5px;
	padding-right: 5px;
	font-size: 80%;
	border: 1px solid #E2001A;
}

#header, #subnav, #footer {
	clear: both; 
	width: 100%;
}

#header {
	float: left;
	margin-top: 5px;
	margin-bottom: 5px;
	width: 990px;
	clear: both;
	/*background-color: #FFFFFF;*/
}

#logo {
	float: left;
	width: 250px;
	height: 100px;
	background-image: url(../template-pics/logo.jpg);
	background-repeat: no-repeat;
	background-color: #FFFFFF;
	/*border: 1px solid #000000;*/
}

#navigation {
	float: right;
	width: 735px;
	height: 50px;
	/*border: 1px solid #000000;*/
}

#subnavigation {
	float: right;
	width: 735px;
	height: 48px;
	/*border: 1px solid #000000;*/
}

#footer {
	margin-bottom: 5px;
	text-align: center;
	font-size: 10px;
	width: 990px;
	/*border: 1px solid #000000;*/
}

#contentfloatholder {
	/* also makes the right "sliding" tab */
	float: left;
	margin-bottom: 5px;
	width: 990px;
}

#contentfloatholder:after {
 /* this is for NN6 to clear floats */
	content: "."; 
	display: block; 
	height: 0px;
	clear: both; 
	visibility: hidden;
}

#centerpad {
	margin-right: 250px;
	background: #FFFFFF;
	display: inline-block; /* TRIP haslayout for safety */
}

#centerpad {
	display: block; /* SWITCH back the display */
}

#center {
	float:left;
  width: 100%; 
  margin-right: -95%; 
	/* this needs to be less than 100% for Moz/Mac which thinks 
         it's empty otherwise. The difference is made up by putting a 
         negative left margin on the left float:
	   Note IE/Mac doesn't like this method ~ it wants the 100% so it can 
	   be fed in using IE only CSS below becasue IE/Win also works with the 100% method.  
	*/
}

#right {
  float: right;
  width: 250px;
	/*border: 1px solid #000000;*/
}


/*************       For IE Mac           **************/
/* IE/Win is also using these rules, but it doesn't mind */
* html div#center { margin-right: -100%; }

#left h3, #left p, #right h3, #right p {
	padding: 0 5px;
}


/* Navigation */
/* ========== */
ul.menu {
	list-style: none;
	margin: 8px 0;
	padding: 0;
}

ul.menu a {
  display: block;
  padding: 5px 8px 5px 8px;
  font-weight: bold;
	font-size: 14px;
	color: #000000;
	text-decoration: none;
}

ul.menu a:hover {
	color: #FFFFFF;
}

ul.menu li {
    padding: 0;
    margin: 0;
    background-image: none;
    background-color: #E2001A;
    float: left;
		border-top: 1px solid #000000;
		border-bottom: 1px solid #000000;
}

ul.menu li.active {
    padding: 0;
    margin: 0;
    background-image: none;
    background-color: #E2001A;
    float: left;
}

ul.submenu {
	list-style: none;
	margin: 4px 0;
	padding: 0;
}

ul.submenu a {
  display: block;
  padding: 5px 10px 5px 10px;
  font-weight: bold;
	font-size: 12px;
	color: #000000;
	text-decoration: none;
}

ul.submenu a:hover {
	color: #FFFFFF;
}

ul.submenu li {
    padding: 0;
    margin: 0;
    background-image: none;
    background-color: #CCCCCC;
    float: left;
		border-top: 1px solid #000000;
		border-bottom: 1px solid #000000;
}

ul.submenu li.active{
    padding: 0;
    margin: 0;
    background-image: none;
    background-color: #CCCCCC;
    float: left;
}


