/* CSS KEY */
/* ---- Note 1 - Commented Headers represent blocks of CSS code. ---- */
/* ---- Note 2 - Commented Headers are sorted alphabetcally (minus those prefixed with "HTML"), as are the CSS Properties within them. ---- */
/* ---- Note 3 - Classes come before IDs under Commented Headers. ---- */
/* ---- Note 4 - There may be extraneous CSS references that don't sync up with markup. These are general IDs and Classes to be used, some may not apply depending on the project. ---- */
/* ---- Note 5 - Selectors and Pseudo Classes will not appear in the HTML markup. They are dynamically written into every element by the JS called "offspring.js". ---- */
/* ---- Note 6 - Usable Pseudo Classes : "first-child", "last-child", "nth-child-#", "nth-child-odd", "nth-child-even", and "only-child". ---- */


/* HTML - ELEMENTS */
* {
	margin: 0;
	padding: 0;
	}
	
a {
	color: #AF0400;
	text-decoration: underline;
	}
	
a:hover {
	color: #510200;
	text-decoration: underline;
	}

a:focus {
	outline: none;
	}
	
acronym {
	background: #FFFBCF;
	border: 0;
	cursor: help;
	}

body { 
	background: #000 url(../images/bg_radial.jpg) 50% 0 no-repeat;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	width: 100%;
	}

h2, h3, h4, h5 {
	font-weight: normal;
	}
	
img {
	border: 0;
	}

p, ul, ol, dl, table {
	margin-bottom: 10px;
	} 

table { 
	border-collapse: collapse; 
	border-spacing: 0;
	}

table tr td { 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: left;
	vertical-align: top; 
	}	

ul, ol {
	padding-left: 22px;
	}
	
ul li, ol li {
	padding-bottom: 5px;
	}





/* HTML - PAGE STRUCTURE */
.page-tag {
	display: none;
	}
	
#page-background {
	background-position: 0 0;
	background-repeat: no-repeat;
	margin-top: 30px;
	position: relative;
	z-index: 1;
	}
	
#page-container {
	margin: 0 auto;
	position: relative;
	width: 704px;
	z-index: 1;
	}
	
#page-content {
	background: #8A8A8A url(../images/bg_cars.jpg) no-repeat;
	height: 418px;
	}
#page-content-reg, #page-content-driver {
	background: #8A8A8A url(../images/bg_reg.jpg) no-repeat;
	height: 418px;
	}	

#page-footer {
	background: #262626 url(../images/bg_footer.jpg) no-repeat;
	height: 68px;
	margin-bottom: 10px;
	padding: 0 20px;
	}
	
#page-header {
	background: #4E4E4E url(../images/bg_header.jpg) no-repeat;
	height: 42px;
	}
	
#page-legal {
	color: #C8B5B5;
	font-size: 9px;
	}

#page-legal a {
	color: #C8B5B5;
	text-decoartion:underline;
	}
#logos-legal{
	margin-top:10px;
}
#page-legal a:hover {
	color: #B79C9C;
	}
	
#page-logo {
	left: -30px;
	position: absolute;
	top: -18px;
	z-index: 3;
	}
	
#page-title {
	}
	





/* ALIGNMENT */
.align-center {
	text-align: center !important;
	}
	
.align-left {
	text-align: left !important;
	}

.align-right {
	text-align: right !important;
	}
	
.valign-bottom {
	vertical-align: top !important;
	}

.valign-middle {
	vertical-align: top !important;
	}
	
.valign-top {
	vertical-align: top !important;
	}





/* BROWSER HACKS */
*html #form-geezeo-login, *html #form-about-yourself {
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="images/bg_overlay.png", sizingMethod="scale");
	}





/* BUTTONS */
.button {
	background-color: transparent;
	background-position: 0 0;
	background-repeat: no-repeat;
	border: 0;
	cursor: pointer;
	display: block;
	height: 33px;
	}
	
.button span {
	display: none;
	}
	
#buttons {
	padding: 15px 0;
	}
	
#buttons a, #buttons button {
	float: left;
	margin-right: 10px;
	}
	
#btn-back {
	background-image: url(../images/btn_back.png);
	width: 66px;
	margin-top:25px;
	}
	
#btn-backtohome {
	background-image: url(../images/btn_backtohome.png);
	width: 148px;
	margin-top:25px;
	}
#btn-gotohome {
	background-image: url(../images/btn_gotohp.png);
	width: 135px;
	margin-top:33px;
	}	
	
#btn-close {
	background-image: url(../images/btn_close.gif);
	height: 21px;
	width: 45px;
	}
	
#btn-go {
	background-image: url(../images/btn_go.png);
	margin-top: -26px;
	margin-left: 278px;
	width: 40px;
	}
	
#btn-submit {
	background-image: url(../images/btn_submit.png);
	width: 82px;
	}
	
#btn-tryagain {
	background-image: url(../images/btn_tryagain.png);
	width: 104px;
	margin-top:25px;
	}





/* COLORS */
.color-black, color-black:hover {
	color: #666 !important;
	}
	
.color-gray, color-gray:hover {
	color: #666 !important;
	}
	
.color-green, color-green:hover {
	color: #738468 !important;
	}
	
.color-green-light, color-green-light:hover {
	color: #C5D6B9 !important;
	}
	
.color-orange, color-orange:hover {
	color: #FF8800 !important;
	}
	
.color-white, color-white:hover {
	color: #fff !important;
	}
	
.color-yellow, color-yellow:hover {
	color: #E7E918 !important;
	}





/* COLUMNS */
.column-left {
	float: left;
	}
	
.column-left-half {
	float: left;
	width: 50%;
	*width: 49.5%;
	}

.column-right {
	float: right;
	}

.column-right-half {
	float: right;
	width: 50%;
	*width: 49.5%;
	}

.column-tri-left {
	float: left;
	margin-right: 1.8%;
	width: 32%;
	}
	
.column-tri-middle {
	float: left;
	margin-right: 1.8%;
	width: 32%;
	}

.column-tri-right {
	float: left;
	width: 32%;
	}





/* CUSTOM STYLES */
/*.asterik {
	color: #FF4343;
	}
*/	
.content-wrapper {
	padding-left: 50px;
	padding-top: 55px;
	}
.content-wrapper-front {
	padding-left: 50px;
	padding-top: 50px;
	}	

.note {
	font-size: 12px;
	}
	
.no-margin {
	margin-bottom: 0;
	}
	
.lowercase {
	text-transform: lowercase;
	}
	
.text-emphasize {
	color: #616161;
	font-size: 11px;
	font-style: italic;
	font-weight: bold;
	text-transform: uppercase;
	}
	
.page-front .flag {
	left: 370px;
	}

.page-over .flag {
	left: 460px;
	}

.page-invalid-code .flag, .page-error-captcha .flag,
.page-error .flag, .page-error-general .flag {
	left: 400px;
	}
	
.page-limit .flag, .page-limit-reg .flag {
	left: 380px;
	}
	
.page-ineligible .flag {
	left: 455px;
	}
	
.page-success .flag {
	left: 305px;
	}



.page-reg .flag {
	left: 364px;
	top: 64px;
	}
.page-driver .flag {
	left: 364px;
	top: 64px;
	}
.page-reg .content-wrapper {
	padding-top: 50px;
	}

.page-driver .content-wrapper {
	padding-top: 68px;
	}
	
.page-upc .column-left {
	width: 180px;
	}
	
.page-upc .column-right {
	width: 180px;
	}

.flag {
	background-color: transparent;
	background-position: 0 0;
	background-repeat: no-repeat;
	height: 89px;
	position: absolute;
	top: 60px;
	z-index: 3;
	}
	
#flag-checkered {
	background-image: url(../images/flag_checkered.png);
	width: 126px;
	}
	
#flag-green {
	background-image: url(../images/flag_green.png);
	width: 116px;
	}
	
#flag-red {
	background-image: url(../images/flag_red.png);
	width: 118px;
	}
	
#flag-white {
	background-image: url(../images/flag_white.png);
	width: 129px;
	}
	
#flag-x {
	background-image: url(../images/flag_x.png);
	width: 122px;
	}
	
#flag-yellow {
	background-image: url(../images/flag_yellow.png);
	width: 117px;
	}
	
.cars {
	background-color: transparent;
	background-position: 0 0;
	background-repeat: no-repeat;
	position: absolute;
	right: 9px;
	z-index: 2;
	}
	
#drivers {
	width:673px;
	margin:14px auto 0px auto;
	color: #353535;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	}
#drivers p{display:none; visibilty:hidden;}	
.driver{
	float: left;
}
.driver-stewart {
	margin-right: 4px;
	width: 336px; height:226px;
	background: url(../images/stewart.jpg) top left no-repeat;
	
	}
	
.driver-newman {
	width: 333px;height:226px;
	background: url(../images/newman.jpg) top left no-repeat;
	}
	
#btn-driver-stewart {
	background-image: url(../images/btn_stewart.gif);
	height: 43px;
	width: 336px;
	}
	
#btn-driver-newman {
	background-image: url(../images/btn_newman.gif);
	height: 43px;
	width: 333px;
	}	


.page-splash{width:811px !important;}
#flash {
	height:570px;
	margin:5px auto 0px;
	width:811px;
}
.page-splash #page-legal{width:704px; margin:0 auto;}
	




/* FLOATS / CLEARS */
.clear {
	clear: both;
	}

.float-left {
	float: left;
	}

.float-right {
	float: right;
	}





/* FONT - FAMILY */
.font-arial {
	font-family: Arial, Helvetica, sans-serif;
	}
	
.font-georgia {
	font-family: Georgia, "Times New Roman", Times, serif;
	}
	
.font-lucida {
	font-family: "Lucida Sans", Georgia, serif;
	}
	
.font-verdana {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	}





/* FONT - SIZES */
.font-size-large {
	font-size: 16px;
	}
	
.font-size-larger {
	font-size: 22px;
	}

.font-size-largest {
	font-size: 23px;
	}
	
.font-size-medium {
	font-size: 14px;
	}
	
.font-size-normal {
	font-size: 12px;
	}
	
.font-size-small {
	font-size: 10px;
	}





/* FORMs */
#form-optins {
	position: absolute;
	top: 390px;
	left: 355px;
	width: 210px;
	}
	
#form-optins .table-select tr td {
	color: #616161;
	font-size: 10px;
	font-style: italic;
	font-weight: bold;
	}
	

	
#form-fields {
	color: #616161;
	}
	
#form-fields #buttons {
	left: 562px;
	position: absolute;
	top: 390px;
	z-index: 2;
	}
	
#form-fields .required {
	color: #616161;
	font-size: 10px;
	font-style: italic;
	font-weight: bold;
	margin: -10px 0 5px 385px;
	text-transform: uppercase;
	}
	
.form-row {
	float: left;
	height:48px;
	}
	
.form-column {
	float: left;
	margin-right: 25px;
	width:227px;
	}

/* FORM - FIELDS */
#field-fname, #field-lname, #field-address, #field-address2, #field-city{
	background:url(../images/reg_bg.gif) 0 0 no-repeat;
	width:227px;
	height:24px;
}
.regInput { 
	background:none;
	border:0;
	color: #808080;
	font-size: 12px;
	width:219px; height:19px; padding:5px 4px 0px 4px;
	*padding-top:4px;
}

.col-state{float:left; width:114px; margin-right:15px; position:relative; z-index:15;}		
#field-state {width:114px; position:relative; *margin-top:-1px; }

.col-zip{float:left; width:96px;}
#field-zip {width:96px; height:24px; background:url(../images/reg_bg_zip.gif) 0 0 no-repeat;}
.zipInput { 
	background:none;
	border:0;
	color: #808080;
	font-size: 12px;
	width:88px; height:19px; padding:5px 4px 0px 4px;
	*padding-top:4px;
	}
	
#field-phone-1, #field-phone-2 {width:47px; height:24px; background:url(../images/reg_bg_phone1.gif) 0 0 no-repeat; float:left; margin-right:3px;}

* html #field-phone-1{margin-right:1px;}
* html #field-phone-2{margin-right:1px;}

#field-phone-3 {width:60px; height:24px; background:url(../images/reg_bg_phone3.gif) 0 0 no-repeat; float:left;}
.phoneInput { 
	background:none;
	border:0;
	color: #808080;
	font-size: 12px;
	width:39px; height:19px; padding:5px 4px 0px 4px;
	*padding-top:4px;
	}
.phoneInput3 { 
	background:none;
	border:0;
	color: #808080;
	font-size: 12px;
	width:52px; height:19px; padding:5px 4px 0px 4px;
	*padding-top:4px;
	}	
.phoneTxt{font-size:9px; color:#808080; float:left; margin:6px 0px 0px 4px; font-style:normal;}

.selBox{float:left; position:relative; z-index:3; }

#field-captcha {width:165px; height:24px; background:url(../images/reg_bg_captcha.gif) 0 0 no-repeat; float:left;
	margin-top:2px;
}
.capInput { 
	background:none;
	border:0;
	color: #808080;
	font-size: 12px;
	width:157px; height:19px; padding:5px 4px 0px 4px;
	margin-bottom:3px;
	*padding-top:4px;
	}


#form-captcha {
	font-size: 10px;
	margin-right: 5px;
	}
	
#form-captcha .column-left {
	margin-right: 5px;
	}
	
#form-captcha p {
	margin-bottom: 5px;
	}
	
#form-captcha .field-text {
	margin-bottom: 5px;
	width: 150px;
	}












	
.field-check, .field-radio {	
	}
	
.field-label {
	color: #616161;
	display: block;
	font-size: 11px;
	font-style: italic;
	font-weight: bold;
	margin-bottom: 2px;
	text-transform: uppercase;
	}

.field-select {
	height: 23px;
	}

.field-select-multiple {
	height: 170px;
	overflow: visible;
	padding: 2px;
	}
	
.field-text {
	padding: 3px 2px 4px 2px;
	}
	
.field-textarea {
	height: 115px;
	padding: 1px 2px 3px 2px;
	}
	
#field-email{
	width:247px; height:24px; background:url(../images/bg_email.gif) no-repeat;
}
.email-text{	
	border:0;
	color:#000;
	font-size:12px;
	font-weight:normal;
	margin:4px 0px 0px 3px;
	padding:3px 2px 0px 3px;
	width:233px;
	*padding-top:1px;
}


#field-upc {
	width:197px; height:24px; background:url(../images/bg_upc.gif) no-repeat; float:left;
}
.upc-text{	
	border:0;
	color:#000;
	font-size:12px;
	font-weight:normal;
	margin:4px 0px 0px 3px;
	padding:3px 2px 0px 3px;
	width:183px;
	*padding-top:1px;
}
.frontBtn{float:left; margin-left:12px;}





/* HEADSs (page header) */
.head-graphic {
	background-color: transparent;
	background-position: 0 0;
	background-repeat: no-repeat;
	height: 35px;
	width: 100%;
	}

.head-graphic span {
	display: none;
	}
	
#head-dontstartengines {
	background-image: url(../images/head_dontstartengines.png);
	height: 70px;
	}	
#head-nascar {
	background-image: url(../images/head_nascar.png);
	height: 31px;
	}		
	
#head-onelaptogo {
	background-image: url(../images/head_onelaptogo.png);
	}
	
#head-startyourengines {
	background-image: url(../images/head_startyourengines.png);
	}
	
#head-thisraceisstopped {
	background-image: url(../images/head_thisraceisstopped.png);
	}
	
#head-wereundercaution {
	background-image: url(../images/head_wereundercaution.png);
	}
	
#head-wherestheupccode {
	background-image: url(../images/head_wherestheupccode.png);
	}
	
#head-whosyourdriver {
	background-image: url(../images/head_whosyourdriver.png);
	padding-top:20px;
	}

#head-whydoineedtotype {
	background-image: url(../images/head_whydoineedtotype.png);
	height: 62px;
	}
		
#head-youvebeendqed {
	background-image: url(../images/head_youvebeendqed.png);
	}
	
#head-youvebeenredflagged {
	background-image: url(../images/head_youvebeenredflagged.png);
	}
	
#head-youvecrossedtheline {
	background-image: url(../images/head_youvecrossedtheline.png);
	height: 62px;
	}





/* LINKS */
.link-graphic {
	background-color: transparent;
	background-position: 0 0;
	background-repeat: no-repeat;
	display: block;
	height: 10px;
	}
	
.link-graphic span {
	display: none;
	}
	
#links-footer {
	float: left;
	padding-top: 25px;
	}
	
#link-faqs {
	background-image: url(../images/link_faqs.png);
	width: 20px;
	}
	
#link-privacy {
	background-image: url(../images/link_privacy.png);
	width: 63px;
	}
	
#link-prize {
	background-image: url(../images/link_prize.png);
	width: 56px;
	}
	
#link-rules {
	background-image: url(../images/link_rules.png);
	width: 61px;
	}





/* LISTS */
.list-bullets {
	margin-left: 0;
	padding: 0;
	}
	
.list-bullets li {
	background: url(../images/icon_bullet_red.gif) 0 0 no-repeat;
	float: left;
	list-style: none;
	margin: 0 10px 0 0;
	padding: 3px 0 5px 20px;
	}
	
.list-no-style {
	margin-left: 0;
	padding: 0;
	}
	
.list-no-style li {
	list-style: none;
	margin: 0;
	padding: 0;
	}
	




/* LOGOS */
.logo {
	background-color: transparent;
	background-position: 0 0;
	background-repeat: no-repeat;
	display: block;
	height: 31px;
	}

.logo span {
	display: none;
	}
	
#logos-footer {
	float: right;
	padding-top: 15px;
	}
	
#logos-footer img {
	margin-right: 5px;
	}
	
#logos-legal .text-graphic {
	margin-top: 10px;
	}
	
#logos-legal img {
	margin-right: 5px;
	position: relative;
	top: 0px;
	}
	
#logo-chicken {
	background-image: url(../images/logo_chicken.gif);
	width: 31px;
	}
	
#logo-doublestufforeo {
	background-image: url(../images/logo_doublestufforeo.gif);
	width: 52px;
	}
	
#logo-fordracing {
	background-image: url(../images/logo_fordracing.gif);
	width: 83px;
	}
	
#logo-mininilla {
	background-image: url(../images/logo_mininilla.gif);
	width: 30px;
	}
	
#logo-nascar {
	background-image: url(../images/logo_nascar.gif);
	width: 94px;
	}
	
#logo-nutterbutter {
	background-image: url(../images/logo_nutterbutter.gif);
	width: 37px;
	}
	
#logo-racetowin {
	background: url(../images/logo_racetowin10.png) no-repeat;
	height:108px;
	width: 190px;
	}

#logo-ritz {
	background-image: url(../images/logo_ritz.gif);
	width: 27px;
	}
	
#logo-roushracing {
	background-image: url(../images/logo_roushracing.gif);
	width: 90px;
	}





/* POPUP */
#pop-body {
	background: #D20601 url(../images/bg_gradient_red.gif) repeat-x;
	color: #777;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	}
	
#pop-background {
	}
	
#pop-buttons {
	float: right;
	padding: 12px 15px 0 0;
	}

#pop-container {
	margin: 25px auto 0 auto;
	position: relative;
	width: 541px;
	z-index: 1;
	}

#pop-content {
	background: #F7F7F7;
	height: 414px;
	padding: 20px;
	}
	
#pop-content h2 {
	color: #AF1E1B;
	font-size: 12px;
	font-style: italic;
	font-weight: bold;
	margin-bottom: 15px;
	text-transform: uppercase;
	}
	
#pop-content #pop-content-wrapper {
	height: 375px;
	overflow: auto;
	padding-top:40px;
position:relative;
}	
	
			
	
#pop-content.dark {
	background: url(../images/bg_pop_upc.jpg) no-repeat;
	height: 357px;
	padding: 0;
	width: 541px;
	}
	
#pop-content.dark #pop-content-wrapper {
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	padding: 50px 50px 0 50px;
	height:305px;
	}
	
#pop-footer {
	}
	
#pop-header {
	background: #282828 url(../images/bg_header_pop.gif) repeat-x;
	height: 41px;
	}
	
#pop-logo {
	left: 0px;
	position: absolute;
	top: -18px;
	z-index: 1;
	}
	
#pop-subhead {
	}
	
#pop-title {
	}
	




/* TABLE - DATA DISPLAY */
.table-data-display {
	border-left: 1px solid #ccc;
	border-top: 1px solid #ccc;
	}

.table-data-display tr th {
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	padding: 3px;
	text-align: left;
	}

.table-data-display tr td {
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	padding: 3px;
	}





/* TABLE - DATA INPUT */
.table-data-input {
	margin-bottom: 15px;
	}

.table-data-input tr td {
	padding-bottom: 10px;
	padding-right: 5px;
	vertical-align: middle;
	}
	
.table-data-input tr td.col-label {
	font-size: 12px;
	text-align: right;
	}
	
.table-data-input tr td.col-field {
	}





/* TABLE - SELECT */
.table-select tr td {
	padding-bottom: 8px;
	padding-right: 7px;
	vertical-align: top;
	}





/* TEXT - GRAPHIC */
.text-graphic, .text-graphic a {
	background-color: transparent;
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 100%;
	}
	
.text-graphic span {
	display: none;
	}
	
#text-early {
	background-image: url(../images/text_early.png);
	height: 31px;
	}
	
#text-entercode {
	background-image: url(../images/text_enter_code.png);
	height: 45px;
	}
	
#text-error {
	background-image: url(../images/text_error.png);
	height: 14px;
	}
	
#text-error-captcha {
	background-image: url(../images/text_error_captcha.png);
	height: 33px;
	}
	
#text-error-code {
	background-image: url(../images/text_error_code.png);
	height: 28px;
	}
	
#text-error-general-01 {
	background-image: url(../images/text_error_general_01.png);
	float: left;
	height: 14px;
	margin-right: 5px;
	width: 156px;
	}
	
#text-error-general-02 {
	background-image: url(../images/text_error_general_02.png);
	float: left;
	height: 14px;
	width: 125px;
	}
	
#text-error-code {
	background-image: url(../images/text_error_code.png);
	height: 28px;
	}
	
#text-ineligible a {
	background-image: url(../images/text_ineligible.png);
	display: block;
	height: 31px;
	}
	
#text-limit {
	background-image: url(../images/text_limit.png);
	height: 35px;
	}
	
#text-limit-reg {
	background-image: url(../images/text_limit_reg.png);
	height: 30px;
	}
	
#text-officiallogos {
	background-image: url(../images/text_officiallogos.gif);
	height: 15px;
	width: 188px;
	}

#text-over {
	background-image: url(../images/text_over.png);
	height: 15px;
	}
	
#text-reg {
	background-image: url(../images/text_reg.png);
	height: 28px;
	}
#text-required {
	height: 9px;
	width:480px;
	text-align:right;
	margin-top:-10px;
	margin-bottom:15px;
	}	
	
#text-driver {
	background-image: url(../images/text_driver.png);
	height: 49px;
	margin-bottom: 2px;
	}

#text-success {
	background-image: url(../images/text_success.png);
	height: 32px;
	}
	











