/* HOMPAGE OVERRIDES */
#Home #wrapper {
	background-color: #000;
	background-image: none;
	width: 558px;
	padding: 40px 81px 120px;
	border-bottom: 8px solid #E39D4B;
	margin-bottom: 150px;
	position: relative;
}
#homepageLogo {
	position: absolute;
	width: 365px;
	top: 134px;
	right: 0px;
	height: 261px;
}
#Home #navigation {
	top: 385px;
	right: -80px;
}

#Home #footer {
	position: absolute;
	left: 130px;
	top: 805px;
}

#Home #picHolderLeft {
	left: -120px;
	top: 100px;
	width: 323px;
}
#homepageCarving {
	position: absolute;
	width: 232px;
	height: 322px;
	left: 38px;
	bottom: 0px;
}
#hompageCarvingTxt {
	position: absolute;
	width: 208px;
	left: 270px;
	bottom: 10px;
}
#hompageCarvingTxt p {
	font-size: 9px;
	color: #F0CA9E;
	line-height: 1.5em;
	margin: 0px;
	padding: 0px;
}

#hompageCarvingTxt p a{
	color: #F0CA9E;
	text-decoration: none;
}

#hompageCarvingTxt p a:hover{
	color: #FFF;
}

#IE6warning{
	font-size: 14px;
	font-weight: bold;
	color: #F00;
	overflow: visible;
	position: absolute;
	visibility: visible;
	z-index: 200;
	height: 100px;
	width: 250px;
	left: 0px;
	top: 0px;
	background-color: #FFF;
	padding: 5px;
	border: 2px solid #900;
	font-family: Arial, Helvetica, sans-serif;
	margin: 15px;
	

}
#newsFlash {
	background-image: url(../img/Niwot-Home-NewsFlash.png);
	background-repeat: no-repeat;
	background-position: left top;
	position: absolute;
	height: 118px;
	width: 210px;
	left: 574px;
	top: 11px;
	padding-left: 33px;
	padding-top: 50px;
	padding-right: 50px;
}

#emailCaptureHolder {
	background-image: url(../img/Niwot-Homepage-Email-sm.png);
	background-repeat: no-repeat;
	background-position: left top;
	position: absolute;
	height: 118px;
	width: 250px;
	left: 434px;
	top: 564px;
	padding-left: 33px;
	padding-top: 50px;
}

#emailCaptureHolder p {
	font-size: 7pt;
	color: #F0CA9E;
	margin: 0px 0px 4px;
	padding: 0px;
	line-height: 1.35em;
}

#newsFlash p{
	font-size: 7pt;
	color: #761F01;
	margin: 0px 0px 4px;
	padding: 0px;
	line-height: 1.35em;
}
#newsFlash p a {
	color: #8D0E11;
}


#newsFlash p a:hover {
	color: #FFF;
}


a#video_link {
	display: block;
	margin: 0px;
	padding: 0px;
	height: 25px;
	width: 25px;
	position: absolute;
	left: 21px;
	top: 367px;
	background-image: url(../img/play_btn.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	z-index: 150;
	
}

a#video_link:hover {
	background-position: 0px -26px;
	
}

a#video_link span{
	display: none;
	
}



/* These are the classes applied on the error messages
 * which prevent them from being displayed by default.
 */ 
.textfieldRequiredMsg, 
.textfieldInvalidFormatMsg, 
.textfieldMinValueMsg,
.textfieldMaxValueMsg,
.textfieldMinCharsMsg,
.textfieldMaxCharsMsg,
.textfieldValidMsg {
	display: none;
}

/* These selectors change the way messages look when the widget is in one of the error states.
 * These classes set a default red border and color for the error text.
 * The state class (e.g. .textfieldRequiredState) is applied on the top-level container for the widget,
 * and this way only the specific error message can be shown by setting the display property to "inline".
 */
.textfieldRequiredState .textfieldRequiredMsg, 
.textfieldInvalidFormatState .textfieldInvalidFormatMsg, 
.textfieldMinValueState .textfieldMinValueMsg,
.textfieldMaxValueState .textfieldMaxValueMsg,
.textfieldMinCharsState .textfieldMinCharsMsg,
.textfieldMaxCharsState .textfieldMaxCharsMsg
{
	display: block;
	color: #CC3333;
	border: 1px solid #CC3333;
	background-color: #FFF;
	padding: 3px;
	width: 120px;
}



/* The next three group selectors control the way the core element (INPUT) looks like when the widget is in one of the states: * focus, required / invalid / minValue / maxValue / minChars / maxChars , valid 
 * There are two selectors for each state, to cover the two main usecases for the widget:
 * - the widget id is placed on the top level container for the INPUT
 * - the widget id is placed on the INPUT element itself (there are no error messages)
 */
 
 /* When the widget is in the valid state the INPUT has a green background applied on it. */
.textfieldValidState input, input.textfieldValidState {
	background-color: #B8F5B1;
}

/* When the widget is in an invalid state the INPUT has a red background applied on it. */
input.textfieldRequiredState, .textfieldRequiredState input, 
input.textfieldInvalidFormatState, .textfieldInvalidFormatState input, 
input.textfieldMinValueState, .textfieldMinValueState input, 
input.textfieldMaxValueState, .textfieldMaxValueState input, 
input.textfieldMinCharsState, .textfieldMinCharsState input, 
input.textfieldMaxCharsState, .textfieldMaxCharsState input {
	background-color: #FF9F9F;
}

/* When the widget has received focus, the INPUT has a yellow background applied on it. */
.textfieldFocusState input, input.textfieldFocusState {
	background-color: #FFFFCC;
}

/* This class applies only for a short period of time and changes the way the text in the textbox looks like.
 * It applies only when the widget has character masking enabled and the user tries to type in an invalid character.
 */
.textfieldFlashText input, input.textfieldFlashText {
	color: red !important;
}

/* When the widget has the hint message on, the hint text can be styled differently than the user typed text. */
.textfieldHintState input, input.textfieldHintState {
	/*color: red !important;*/
}

h2.formSubmit {
	display: block;
	color: #FFF;
	background-color: #761F01;
	position: absolute;
	height: 59px;
	width: 209px;
	left: 29px;
	top: 52px;
	font-size: 18px;
	padding-top: 5px;
	padding-left: 3px;
	
}

