/*************************************************
* File: gbl.css 
* Date Created: 5/20/2009
* Last Updated: 5/20/2009
* Author: Adam F.
* Copyright ShotBong.com
**************************************************
* About: This is the Global cascading style sheet
*************************************************/



/* ******** Import Styles ******** */
/*@import url("/path/to/css/file.css");*/



/* ******** Clear Fix Styles ******** */
.clear {
	clear: both;
	width: 100%;
	height: 0;
	line-height: 0;
	font-size: 0px;
	display: block;
}
* html .clear { /* can't apply to .clear, safari2 has issues */
	overflow: hidden;
} 
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */



/* ******** Helper Styles ******** */
.hide {
	display: none;
}
img {
	border: none 0px;
}
em {
	font-style: italic;
}
.float-left {
	float: left;
}
.float-right {
	float: right;
}
.z-index-minus {
	z-index: -1;
}



/* ******** Body and Links ******** */
body, html {
	margin: 0;
	padding: 0;
	height: 100%;
	background: #333 url(/images/body_bg.jpg) top repeat-x;
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
}
a:link, a:visited {
	color: #09c;
	text-decoration: none;
}
a:hover, a:active {
	color: #09c;
	text-decoration: underline;
}



/* ******** Form Styles ******** */
form {
	margin: 0;
	padding: 0;
}


/* State selection form */
.stateform {
	padding: 0;
	border: 0;
	margin: 0 0 32px 0;
}
.stateform select {
	color: #666;
	font-size: 24px;
	width: 400px;
	background-color: #f2f2f2;
	border: 1px solid #ccc;
}


/* General form layout structure */
.gbl_formlayout {
	display: block;
	position: relative;
	margin: 0 0 32px 0;
	padding: 10px 0 10px 0;
	background: #f1f1f1;
	/*overflow: hidden; /* fix for IE7 */
}
.gbl_formlayout a {
}
.gbl_formlayout_fieldset {
	position: relative; /* fix for IE7 */
	/*overflow: hidden; /* fix for IE7 */
	margin-bottom: 15px;
}
.gbl_formlayout_row {
	position: relative; /* fix for IE7 */
	display: block;
	/*overflow: hidden; /* fix for IE7 */
	line-height: 21px; /* fix for IE7 (to trigger hasLayout) */
	position: relative;
	margin-bottom: 5px;
}
.gbl_formlayout_label {
	float: left;
	width: 130px;
	height: 21px;
	color: #666;
	font-size: 13px;
	margin-right: 14px;
	padding-top: 4px;
	text-align: right;
}
.gbl_formlayout_label sup { /* superscript for required fields */
	color: #f60;
	font-size: 80%;
}
.gbl_formlayout_input {
	float: left;
	width: 400px;
	/*height: 21px;*/ /* cannot set the height of the input block because textarea must be taller */
	min-height: 21px;
	color: #666;
	font-size: 13px;
}
.gbl_formlayout_input_info { /* small text extra helper info for forms */
	color: #999;
	font-size: 9px;
	margin-left: 4px;
	vertical-align: bottom;
}



/* Contact form input styles */
/* Colors and fonts */
#contactform {
	padding: 0;
	border: 0;
	margin: 0;
}
#contactform fieldset {
}
#contactform input, 
#contactform select, 
#contactform textarea { /* font styles */
	color: #666;
	font-family: Arial;
	font-size: 13px;
	padding-left: 4px;
	vertical-align: top;
}
#contactform input, 
#contactform select { /* set height for input and select types only */
	height: 21px;
}
#contactform input.text {
	border: 1px solid #e1e1e1;
	padding-right: 4px;
}
#contactform input.password {
	border: 1px solid #e1e1e1;
	padding-right: 4px;
}
#contactform input.radio {
	margin-bottom: -4px;
	margin-right: 4px;
}
#contactform input.checkbox {
	margin-bottom: -4px;
	margin-right: 4px;
}
#contactform textarea.textarea {
	border: 1px solid #e1e1e1;
}
#contactform select.select {
	border: 1px solid #e1e1e1;
}
#contactform .error { /* this class gets added via jQuery when there are input errors */
	background-color: #ffe6e6;
}
/* Input field widths */
#contactform_name, 
#contactform_email, 
#contactform_phone {
	width: 282px;
}
#contactform_subject {
}
#contactform_message {
	width: 382px;
}




/* ******** Global Wrapper Inner (Fixed Page Width) ******** */
#gbl_wrap {
	position: relative;
	height: auto;
	margin: 0 auto;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
	/*border: 1px dashed red; /* debug */
}
#gbl_wrap { /* Box Hack Model - http://tantek.com/CSS/Examples/boxmodelhack.html */
	width: 950px; /* the actual width + padding */
	voice-family: "\"}\""; 
	voice-family: inherit;
	width: 950px; /* the usable content area width between the left and right borders */
} 
html>body #gbl_wrap { /* be nice to Opera rule */
  width: 950px;
}



/* ******** Global Body Area ******** */
#gbl_body {
	position: relative;
	margin: 0;
	padding: 15px 0 0 0;
	background: #fff url(/image/gbl_body_bg.jpg) top repeat-x;
}


/* ******** Global 2 Column Layout ******** */
.gbl_layout_wrap {
	position: relative;
	margin: 0;
	padding: 0;
}
.gbl_layout_2col_left { /* Left column */
	float: left;
	position: relative;
	margin: 0;
	padding: 0 0 0 20px;
	height: auto;
	min-height: 100px;
}
/*\*/
* html .gbl_layout_2col_left { /* Min-Height for Internet Explorer http://www.cssplay.co.uk/boxes/minheight.html */
	height: 100px;
}
/**/
.gbl_layout_2col_left { /* Box Hack Model - http://tantek.com/CSS/Examples/boxmodelhack.html */
	width: 610px; /* the actual width + padding */
	voice-family: "\"}\""; 
	voice-family: inherit;
	width: 590px; /* the usable content area width between the left and right borders */
} 
html>body .gbl_layout_2col_left { /* be nice to Opera rule */
  width: 590px;
} 

.gbl_layout_2col_right { /* Right column */
	float: right;
	position: relative;
	margin: 0;
	padding: 0 20px 0 0;
} 
.gbl_layout_2col_right { /* Box Hack Model - http://tantek.com/CSS/Examples/boxmodelhack.html */
	width: 324px; /* the actual width + padding */
	voice-family: "\"}\""; 
	voice-family: inherit;
	width: 304px; /* the usable content area width between the left and right borders */
} 
html>body .gbl_layout_2col_right { /* be nice to Opera rule */
  width: 304px;
} 



/* ******** Global Header ******** */
#gbl_head {
	position: relative;
	height: 123px;
	background: #000 url(/images/gbl_head_bg.jpg) top repeat-x;
}
#gbl_head_inner {
	position: relative;
	background: transparent url(/images/gbl_head_inner_bg.jpg) top center no-repeat;
	height: 118px;
	margin: 0 auto;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
	/*border: 1px dashed yellow; /* debug */
}
#gbl_head_inner { /* Box Hack Model - http://tantek.com/CSS/Examples/boxmodelhack.html */
	width: 950px; /* the actual width + padding */
	voice-family: "\"}\""; 
	voice-family: inherit;
	width: 950px; /* the usable content area width between the left and right borders */
} 
html>body #gbl_head_inner { /* be nice to Opera rule */
  width: 950px;
}
#gbl_head_homelink {
	display: block;
	position: absolute;
	width: 315px;
	height: 110px;
	left: 10px;
	top: 3px;
}
#gbl_head_tabs {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 645px;
}
#gbl_head_tabs ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#gbl_head_tabs ul li {
	display: inline;
	float: left;
	margin-right: 2px;
	text-align: center;
}
#gbl_head_tabs ul li.last {
	margin-right: 0;
}
#gbl_head_tabs ul li a:link, #gbl_head_tabs ul li a:visited {
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	margin: 0;
	width: 90px;
	height: 29px;
	display: block;
	background: transparent url(/images/gbl_head_tabs_off.png) top center no-repeat;
	line-height: 29px;
}
#gbl_head_tabs ul li a:hover, #gbl_head_tabs ul li a:active {
	background: transparent url(/images/gbl_head_tabs_hover.png) top center no-repeat;
}
/* tab highlights */
#gbl_body_home #gbl_head_tabs_home, 
#gbl_body_how #gbl_head_tabs_how, 
#gbl_body_where #gbl_head_tabs_where, 
#gbl_body_order #gbl_head_tabs_order, 
#gbl_body_promos #gbl_head_tabs_promos, 
#gbl_body_reps #gbl_head_tabs_reps, 
#gbl_body_contact #gbl_head_tabs_contact
{
	background: transparent url(/images/gbl_head_tabs_on.png) top center no-repeat;
}



/* ******** Global Footer ******** */
#gbl_foot {
	position: relative;
	background: #666 url(/images/gbl_foot_bg.gif) top repeat-x;
	padding-top: 5px;
	min-height: 80px;
	color: #fff;
	font-size: 14px;
	text-align: center;
}
/*\*/
* html #gbl_foot { /* Min-Height for Internet Explorer http://www.cssplay.co.uk/boxes/minheight.html */
	height: 80px;
}
/**/

#gbl_foot a:link, #gbl_foot a:visited {
	color: #fff;
	text-decoration: none;
}
#gbl_foot a:hover, #gbl_foot a:active {
	color: #fff;
	text-decoration: underline;
}


#gbl_foot_nav {
	position: relative;
	margin-top: 20px;
	margin-bottom: 10px;
}
#gbl_foot_nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#gbl_foot_nav ul li {
	display: inline;
	border-right: 1px solid #fff;
	margin-right: 10px;
	padding-right: 10px;
}
#gbl_foot_nav ul li.last {
	border-right: 0;
	margin-right: 0;
	padding-right: 0;
}
#gbl_foot_nav ul li a:link, #gbl_foot_nav ul li a:visited {
	color: #fff;
	text-decoration: none;
}
#gbl_foot_nav ul li a:hover, #gbl_foot_nav ul li a:active {
	color: #fff;
	text-decoration: underline;
}
#gbl_foot_copyright {
	position: relative;
	margin-bottom: 10px;
}
#gbl_foot_circles {
	position: absolute;
	top: 5px;
	left: 0;
	width: 47px;
	height: 59px;
}
#gbl_foot_circles img {
	width: 47px;
	height: 59px;
	border: 0;
}



/* ******** Page Contents ******** */
h1 {
	display: block;
	padding: 0;
	margin: 0 0 24px 0;
	color: #c00;
	font-weight: normal;
	font-size: 40px;
}
h2 {
	display: block;
	padding: 0 0 8px 0;
	margin: 0 0 18px 0;
	color: #666;
	font-weight: normal;
	font-size: 32px;
	border-bottom: 2px solid #e1e1e1;
}
h3 {
	display: block;
	padding: 0;
	margin: 0;
	color: #690;
	font-weight: bold;
	font-size: 22px;
}
p {
	font-size: 24px;
	margin: 0 0 28px 0;
	padding: 0;
}
sup {
	font-size: 50%;
}

#gbl_breadcrumb {
	position: relative;
	margin: 0 0 12px 0;
	font-size: 12px;
}


#gbl_splash {
	position: relative;
	height: 300px;
	margin: 0 0 24px 0;
	padding: 0;
}
#gbl_splash img {
	margin: 0;
	padding: 0;
	display: block;
}
#gbl_splash_flash_left {
	position: absolute;
	width: 400px;
	height: 300px;
	top: 0;
	left: 0;
}
#gbl_splash_flash_right {
	position: absolute;
	width: 550px;
	height: 300px;
	top: 0;
	right: 0;
}


#gbl_body_interstitial {
	background-color: #000;
	background-image: none;
}
#gbl_interstitial_flash {
	width: 640px;
	height: 480px;
	top: 30px;
	margin: 0 auto;
}
#gbl_interstitial_skip {
	text-align: center;
}
#gbl_interstitial_skip a {
	color: #fff;
	size: 14px;
	font-weight: bold;
	text-decoration: underline;
}


/*#gbl_cartoon {
	position: relative;
	margin: 0 0 32px 0;
	padding: 0;
}
#gbl_cartoon img {
	margin: 0;
	padding: 0;
	display: block;
}*/

.gbl_howitworks {
	background-color: transparent;
	margin-bottom: 20px;
}
.gbl_howitworks img {
	margin: 0;
	padding: 0;
	display: block;
	width: 590px;
	height: 365px;
}

/*.gbl_howitworks img {
	float: right;
	display: block;
	width: 276px;
	height: 310px;
	margin-left: 2px;
	padding: 0;
	border: 0;
}*/

#gbl_collegereps {
	position: relative;
	margin: 0 0 32px 0;
	padding: 0;
}
#gbl_collegereps img {
	margin: 0;
	padding: 0;
	display: block;
}



#gbl_promolink {
	position: relative;
	font-size: 18px;
	margin-bottom: 18px;
}

#gbl_btn_orderonline {
	position: relative;
	padding-top: 12px;
	margin-bottom: 30px;
	text-align: center;
}
#gbl_btn_orderonline img {
	width: 366px;
	height: 91px;
	border: 0;
}



.gbl_state {
	position: relative;
	margin-bottom: 32px;
	background-color: #e4f4fd;
}
.gbl_state .gbl_liststruct_head {
}
.gbl_state .gbl_liststruct_head h3 {
	margin: 0 0 10px 0;
	padding: 8px 0 10px 8px;
	border-bottom: 1px solid #e1e1e1;
}
.gbl_state .gbl_liststruct_body {

}
.gbl_state .gbl_liststruct_body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.gbl_state .gbl_liststruct_body ul li {
	margin: 0 0 12px 0;
	padding: 0 0 12px 8px;
	border-bottom: 1px solid #e1e1e1;
}
.gbl_state .gbl_liststruct_body ul li p {
	font-size: 14px;
	line-height: 18px;
	margin: 0;
	padding: 0;
}
.gbl_state .gbl_liststruct_foot {
	padding-bottom: 8px;
	margin-left: 8px;
	font-size: 12px;
}



.gbl_promos {
	position: relative;
	background-color: #e4f4fd;
	margin-bottom: 32px;
}
.gbl_promos .gbl_liststruct_body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.gbl_promos .gbl_liststruct_body ul li {
	margin: 0 0 12px 0;
	padding: 0 0 12px 8px;
	border-bottom: 1px solid #e1e1e1;
}
.gbl_promos .gbl_liststruct_body ul li h3 {
	margin: 0 0 2px 0;
	padding: 8px 0 0 0;
}
.gbl_promos .gbl_liststruct_body ul li p {
	font-size: 14px;
	line-height: 18px;
	margin: 0;
	padding: 0;
}


#gbl_distrib_table {
	position: relative;
	background-color: #f2f2f2;
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #666;
}
#gbl_distrib_table th {
	font-size: 12px;
	font-weight: bold;
	border: 1px solid #666;
	background-color: #ccc;
	text-align: left;
	padding: 4px;
}
#gbl_distrib_table td {
	font-size: 12px;
	font-weight: normal;
	border: 1px solid #666;
	text-align: left;
	padding: 4px;
}
#gbl_distrib_table .gbl_distrib_col6 {
	width: 20%;
}
#gbl_distrib_table .gbl_distrib_col1, 
#gbl_distrib_table .gbl_distrib_col2, 
#gbl_distrib_table .gbl_distrib_col3, 
#gbl_distrib_table .gbl_distrib_col4, 
#gbl_distrib_table .gbl_distrib_col5 {
	width: 16%;
}


#gbl_flashgallery {
	position: relative;
	margin-bottom: 20px;
}


/* ******** Page Contents (Right Side Modules) ******** */

#gbl_rsm_quotes {
	position: relative;
}
#gbl_rsm_quotes .gbl_liststruct_head {
	margin-bottom: 8px;
}

#gbl_rsm_quotes .gbl_liststruct_body {
	position: relative;

}
#gbl_rsm_quotes .gbl_liststruct_body ul {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}
#gbl_rsm_quotes .gbl_liststruct_body li {
	display: block;
	color: #fff;
	padding: 0;
	margin-bottom: 10px;
	background: #09c url(/images/gbl_rsm_quotes_bg.gif) repeat;
}
#gbl_rsm_quotes .gbl_simplestruct {
	position: relative;
	background: transparent url(/images/gbl_rsm_quotes_bubble.png) 12px 12px no-repeat;
	padding: 12px 4px 12px 52px;
	margin: 0;
}
#gbl_rsm_quotes .gbl_simplestruct .gbl_simplestruct_box1 {
	position: relative;
	font-style: italic;
	font-size: 16px;
	margin-bottom: 6px;
}
#gbl_rsm_quotes .gbl_simplestruct .gbl_simplestruct_box2 {
	position: relative;
	font-style: italic;
	font-size: 12px;
}
#gbl_rsm_quotes .gbl_liststruct_foot {
	text-align: right;
	font-size: 14px;
}



#gbl_rsm_btn_orderonline {
	position: relative;
	margin-bottom: 14px;
}
#gbl_rsm_btn_orderonline img {
	width: 304px;
	height: 76px;
	border: 0;
}




.gbl_rsm_box {
	position: relative;
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 2px solid #e1e1e1;
}
.gbl_rsm_box p {
	font-size: 14px;
	font-weight: normal;
	line-height: 20px;
	margin: 0;
	padding: 0;
}
/*.gbl_rsm_box p sup {
	font-size: 8px;
}*/
.gbl_rsm_box .gbl_simplestruct_box1 {
	margin-bottom: 8px;
}
.gbl_rsm_box .gbl_simplestruct_box2 {
	background-color: #eee;
	margin-bottom: 8px;
	padding: 8px;
}
.gbl_rsm_box .gbl_simplestruct_box3 {
	text-align: right;
}


/* these ID's use .gbl_rsm_box class */
/* class overrides below */
#gbl_rsm_videodemo {

}
#gbl_rsm_contactinfo {

}
#gbl_rsm_videodemo .gbl_simplestruct_box2 {
	padding: 0;
}
#gbl_rsm_promosuggest {

}
#gbl_rsm_promoquotes .gbl_simplestruct_box2 {
	padding: 0;
}
#gbl_rsm_promoquotes_flash {
	width: 304px;
	height: 228px;
}
#gbl_rsm_eventpics .gbl_simplestruct_box2 ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#gbl_rsm_eventpics .gbl_simplestruct_box2 ul li {
	margin-bottom: 8px;
}
#gbl_rsm_applytoday {

}




#gbl_rsm_selectretailers {
	position: relative;
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 2px solid #e1e1e1;
}
#gbl_rsm_selectretailers .gbl_liststruct_head {
	margin-bottom: 8px;
}
#gbl_rsm_selectretailers .gbl_liststruct_head p {
	font-size: 12px;
	font-weight: normal;
	line-height: 14px;
	margin: 0;
	padding: 0;
}
/*#gbl_rsm_selectretailers .gbl_liststruct_head p sup {
	font-size: 8px;
}*/

#gbl_rsm_selectretailers .gbl_liststruct_body {
	background-color: #eee;
	padding-top: 12px;
}
#gbl_rsm_selectretailers .gbl_liststruct_body ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
#gbl_rsm_selectretailers .gbl_liststruct_body ul li {
	margin-bottom: 18px;
}
#gbl_rsm_selectretailers .gbl_liststruct_body ul li a {
	font-size: 12px;
}
#gbl_rsm_selectretailers .gbl_liststruct_body ul li img {
	display: block;
	border: 0;
	margin: 0 auto;
	padding: 0;
}

