﻿/* This CSS file should be included on every page and should only contain CSS for elements that are 
   intended to be consistent across the entire website */
   
/* Generic Properties	*/

* {
	margin: 0px;
	padding: 0px;
}

a {
	outline: none;
}

a img {
	border: none;
}

p {
	margin: 0px;
	padding: 0px;
}

body {
	margin: 0px;
	background: url('../images/masterMenuBack_blue.jpg') repeat-x top left;
	font-family: Arial, Helvetica, sans-serif;
}

/* ID Properties */

div#masterMenu {
	position: relative;
	min-width: 950px;
	height: 32px;
	/*background: url('../images/masterMenuBack_blue.jpg') repeat-x; */
	background-color: gray;
	z-index: 99;
}


/* Standard "Sons of Suckerfish" CSS drop down menu */
/* Original Code can be found here:
	http://www.htmldog.com/articles/suckerfish/dropdowns/
   With the example page here:
   	http://www.htmldog.com/articles/suckerfish/dropdowns/example/ */

#nav, #nav ul {
	font-weight:bold;
	line-height:1;
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
	margin: 0em;
	padding: 0em;
	float: right;
	width: 39em;
	font-size: small;
	z-index: 99;
}
#nav a {
	color:#FFFFFF;
	display:block;
	padding:0.5em 0.5em;
	text-decoration:none;
}
#nav li {
	float:left;
	padding:0pt;
	line-height: 1.35em;
}
#nav li ul {
	border-width:0.25em;
	font-weight:normal;
	height:auto;
	left:-999em;
	margin:0pt;
	position:absolute;
	width:9.9em;
	background-color: black;
}
#nav li li {
	padding-right:1em;
	width:9em;
}
#nav li ul a {
	width:10em;
}
#nav li ul ul {
	margin:-2.37em 0pt 0pt 9.9em;
	z-index: 99;
}
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left:-999em;
}
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
	left:auto;
}
#nav li:hover, #nav li.sfhover {
	/*background:#4076FF none repeat scroll 0%; */
	background: #666666 none repeat scroll 0%;
}

/* End of Menu CSS */


div#loginArea {
	float: right;
	width: 725px;
	padding-top: 0.25em;
	text-align: right;
}

div#content {
	position: relative;
	min-width: 950px;
	padding-top: 1px;
	z-index: 0;
	top: 0px;
	left: 0px;
}

div#footer {
	position: relative;
	margin: 1.5em 0em 0em 0em;
	padding: 0.5em 0em 0em 0em;
	min-width: 950px;
	height: 2em;
	text-align: center;
	font-size: small;
	background-color: gray;
	color: white;
}

/* Class Properties */

div.pageArea {
	position: relative;
	width: 950px;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}

div.clear {
	clear: both;
}

.centered {
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.justify {
	text-align: justify;
}

.smallFont {
	font-size: small;
}

.extrasmallFont {
	font-size: x-small;
}

.mediumFont {
	font-size: medium;
}

.bold {
	font-weight: bold;
}

.underline {
	text-decoration: underline;
}

.black {
	color: black;
}

.white {
	color: #FFFFFF;
}

.noListStyle {
	list-style: none;
}

.register table{
	width: auto !important;
}

/* This is a special CSS class that applies to links (<a> tags).
   Any link with this class applied to it will open in a new window.
   This allows us to produce clean code that still allows opening in
   new windows with the Strict doctype which does not allow the 
   "target" attribute. */
a.external {
	
}
