html {
	height:100%;
}

body {
	text-align:center;
	font-family: "Verdana", "arial", "helvetica", "sans-serif";
	font-size: .7em;
	background-color: #333333;
	height:100%;
	padding: 0px;
	margin: 5px;
}

input {
	font-family: "Verdana", "arial", "helvetica", "sans-serif";
	font-size: 1em;
	border: 1px solid #777;
}	

input[type="text"] {
	background-color: #ffffff !important;
}

input[type="checkbox"], input[type="radio"]{
   background: transparent;
   border: 0;
}

select {
	font-family: "Verdana", "arial", "helvetica", "sans-serif";
	font-size: 1em;
	background-color: #ffffff !important;
}

textarea {
	font-family: "Verdana", "arial", "helvetica", "sans-serif";
	font-size: 1em;
	border: 1px solid #777;
}


H1 {
	font-size: 1.8em;
}

H2 {
	font-size: 1.2em;
}

H3 {
	font-size: 1.2em;
	color: #E2144A;
}

H4 {
}

H5 {
}

H6 {
}

TH {

}


a:link {
	color: #777;
	text-decoration: none;
	font-weight: bold;
}
a:visited {
	color: #777;
	text-decoration: none;
	font-weight: bold;
}
a:hover {
	color: #E2144A;
	text-decoration: underline;
	font-weight: bold;
}


.divPageContent a:link {
	color: #E2144A;
	text-decoration: none;
	font-weight: bold;
}
.divPageContent a:visited {
	color: #E2144A;
	text-decoration: none;
	font-weight: bold;
}
.divPageContent a:hover {
	color: #E2144A;
	text-decoration: underline;
	font-weight: bold;
}

.iconNav td {
	text-align: center;
	vertical-align: top;
}
.iconNav a {
	color: #777;
	text-decoration: none;
	font-weight: bold;
}
.iconNav a:hover {
	color: #E2144A;
	font-weight: bold;
}

img {
	border: 0px;
}

img.floatLeft {
    float: left; 
    margin: 5px;
}

img.floatRight {
    float: right; 
    margin: 5px;
}

img.withMargin5px {
    margin: 5px;
}


.divPageContent ul {
	float: none;
	list-style-type: disc;
}

.divPageContent li {
	display: list-item;
	margin: 0;
	padding: 0;
	float: none;
	list-style-position: outside;
}

.snazzy {
	font-size: 2em;
	
}


/* horizontal pop up menu /////////////*/

	#nav, #nav ul { /* all lists */
	margin: 0;
	padding: 0;
	list-style: none;
	width: 150px; /* Width of Menu Items */
	border-bottom: 1px solid #ccc;
	}
	
	#nav li { /* all list items */
		position : relative;
		float : left;
		line-height : 1.25em;
		margin-bottom : -1px;
		width: 150px;
	}
	
	#nav li ul { /* second-level lists */
		position : absolute;
		left: -999em;
		margin-left : 149px;
		margin-top : -25px;
	}
	
	#nav li ul ul { /* third-and-above-level lists */
		left: -999em;
	}
	
	#nav li a {
		display: block;
		text-decoration: none;
		color: #777;
		background: #fff; /* IE6 Bug */
		padding: 5px;
		border: 1px solid #ccc;
		font-weight: bold;
	}
	
	#nav li a:hover {
		color : #E2144A;
		background-color: #f9f9f9;
	}
	
	#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 { /* lists nested under hovered list items */
		left: auto;
	}