/* Created by John Henry Muller : johnhenrymuller.com */

/*////////// COLORS \\\\\\\\\\*\
Color: #HEXHEX (usage)
Color: #HEXHEX (usage)
Color: #HEXHEX (usage)
\*\\\\\\\\\\ COLORS //////////*/

/*********** TABLE OF CONTENTS START ***********\

1. Interface Styles
2. Shared Content Styles
3. Unique Content Styles

\*********** TABLE OF CONTENTS END *************/

/* ////////// 1. Interface Start ////////// */

	/* hide from ie on mac \*/
	html {
		height: 100%;
		overflow: hidden;
	}
	
	#flashcontent {
		height: 100%;
	}
	/* end hide */

	body {
		height: 100%;
		margin: 0;
		padding: 0;
		background-color: #FFFFFF;
	}


/* Set to Zero */
* {
	vertical-align: top;
	margin: 0px;
	padding: 0px;
	border: 0px;
	}
/* No Dotted Lines */
a {
	outline: none;
	}
:focus {
	-moz-outline-style: none;
	}
/* Background */
body {
	background-color:#FFFFFF;
	}
/* Global Text */
body, p {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
color:#666666;
}
/* Global Links */
a, a:link,a:active, a:visited {
		color: #999999;
		text-decoration: underline;
		}
		a:hover, a:visited:hover {
			color: #333333;
			text-decoration: underline;
			}

#container {
	margin : 0px auto;
	}
#header {
	}

/* Logo */
#header h1 {
	width: 100px;
	height: 100px;
	display: block;
	float: left;
	}
	#header h1 a, #header h1 a:link, #header h1 a:active, #header h1 a:visited {
		text-indent: -9999px;
		overflow: hidden;
		width: 100px;
		height: 100px;
		background-image: url(../../images/interface/logo.jpg);
		display: block;
		background-repeat: no-repeat;
		}

/* Layout */
#content {
	}

#footer {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 110%;
	color: #999999;
	padding-bottom: 20px;
	}
	#footer a, #footer a:link, #footer a:active, #footer a:visited {
			color: #999999;
			text-decoration: none;
			}
			#footer a:hover, #footer a:visited:hover {
				color: #00FFFF;
				text-decoration: underline;
				}

/* NAV */
#nav {
	}
	#nav li {
		list-style-type: none;
		display: block;
		float: left;
		width: 100px;
		}
	#nav a, #nav a:link, #nav a:active, #nav a:visited {
		}
		#nav a:hover, #nav a:visited:hover {
			}
/* FOR GRAPHIC NAV */
		#nav #NAVNAME a { background-image:url(../../images/interface/navigation/NAVNAME.jpg); }

/* \\\\\\\\\\\ 1. Interface End \\\\\\\\\\\ */







/* ////////// 2. Shared Conent Styles Start ////////// */

/* Global Links */

/* Lists */
#content ul {
	margin-left: 40px;
	margin-bottom: 20px;
	}
#content li {
	margin-bottom: 5px;
	}

/* Title */
h2 {
	font-size: 16px;
	font-weight: normal;
	color: #666666;
	margin: 10px;
	font-family: "Century Gothic", "Avant Guard", Verdana, Arial, Helvetica, sans-serif;
	}

/* Header */
h3 {
	font-size: 25px;
	font-weight: normal;
	color: #666666;
	margin: 10px;
	font-family: "Century Gothic", "Avant Guard", Verdana, Arial, Helvetica, sans-serif;
	}


/* Sub-Header */
h4 {
	font-size: 16px;
	font-weight: normal;
	color: #666666;
	margin: 10px;
	font-family: "Century Gothic", "Avant Guard", Verdana, Arial, Helvetica, sans-serif;
	padding-left: 20px;
	}

/* Paragraph Text */
p {
	line-height: 150%;
	color: #666666;
	padding-bottom: 10px;
	margin: 10px;
	padding-left: 20px;
	}

/* Form Styles */

#form {
	width: 400px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	}
	input, select, textarea {
	clear: none;
	background-color: #F3F3F3;
	padding: 2px;
	border: 1px solid #CCCCCC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	width: 320px;
	float: left;
	display: block;
	line-height: 30px;
		}
	input:focus, textarea:focus, select:focus {
	background-color:#FFFFFF;	
	}
	#form div {
		clear: both;
		margin-bottom:10px;
		height: 40px;
		}
	#form label {
		width: 70px;
		display: block;
		float: left;
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 12px;
		color: #666666;
		}
	
	/* Form - City, State, Zip*/
		div#form-city {
			float: left;
			}
		#form-city input {
			width: 50px;
			}
		
		div#form-state {
			clear: none;
			float: left;
			}
		#form-state label {
			width: 50px;
			padding-left: 15px;
			}
		div#form-state select {
			width: 100px;
			}
		
		div#form-zip {
			clear: none;
			float: right;
			width: 90px;
			}
		#form-zip label {
			width: 30px;
			}
		#form-zip input {
			width: 50px;
			}
		
		/* Form - message*/
		div#form-message {
			height: auto;
			}
		#form-message textarea {
			height: 78px;
			}
		
		/* Form - submit*/
		div#form-submit {
			margin-right: auto;
			margin-left: auto;
			width: 150px;
			}
		#form-submit input {
			width: 80px;
			float: right;
			}

/* Content Classes */
.floatleft { float: left; }
.floatright { float: right; }
.gap { padding-bottom: 20px; }
.nogap { padding-bottom: 0px; }
.textsmall { font-size: 9px; }
.textwhite { color: #FFFFFF; }
.brclear { clear: both; height: 1px;}


/* \\\\\\\\\\\ 2. Shared Content Styles End \\\\\\\\\\\ */








/* ////////// 3. Unique Content Styles Start ////////// */

#upgradeflashplayer div {
	width: 400px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000000;
	background-color: #EEEEEE;
	border-width: 1px;
	border-style: solid;
	border-color: #CCCCCC;
	padding: 2px;
	margin-left: auto;
	margin-right: auto;
}
a#getflash {
	background-image: url(http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif);
	height: 31px;
	width: 88px;
	background-repeat: no-repeat;
	margin-right: auto;
	margin-left: auto;
	display: block;
	text-indent: -9999px;
	overflow: hidden;
}
#upgradeflashplayer {
	position: absolute;
	top: 50px;
	width: 100%;
	left: 0px;
	z-index: 1;
	visibility: visible;
}
#x {
	font-family: "Century Gothic", "Avant Guard", Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	color: #999999;
	display: block;
	text-align: right;
	background-color: #DEDEDE;
	padding: 2px;
}

/* \\\\\\\\\\\ 3. Unique Content Styles End \\\\\\\\\\\ */
h1 {
	color: #FFFFFF;
	margin: 10px;
	font-family: "Century Gothic", "Avant Guard", Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 50px;
}
