/******************************************************************************
 * Renegade Energy Group main stylesheet.
 * Note: Internet Explorer hacks are in a separate file (all_ie.css)
 * Author: Neal Krouse (krousen@comcast.net)
 *
 * Table of Contents for navigation:
 * _general
 *
 * _wrapper
 *
 * _branding
 *
 * _navigation
 *
 * _content
 *
 * _primary content
 *
 * _secondary content
 *
 * _ternary content
 *
 * _footer
 *
 ******************************************************************************/
 
 
/*-----------------------------------------------------------------------------
 *	SITE COLORS:
 *
 *----------------------------------------------------------------------------*/
 
 
/* _general
------------------------------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* no list-markers by default, since lists are used more often for semantics */
ul,ol { list-style:none }

/* link underlines tend to make hypertext less readable, 
   because underlines obscure the shapes of the lower halves of words */
:link,:visited { text-decoration:none }

/* whoever thought blue linked image borders were a good idea? */
a img,:link img,:visited img { border:none }

/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clear:after, .container:after, #content:after
{
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
.clear, .container, #content { height: 1%; }
.clear, .container, #content { display: block; }

html 
{ 
	/* Rule removes Page Shift by
	 * adding vertical scrollbars to every page */
	min-height: 100%; 
	margin-bottom: 1px; 
}

body
{
	font-family: arial, sans-serif;
	line-height: 1.5;
	/* Unitless for proper inheritance */
	background-color: white;
	background-image: url(bodytile.jpg);
	background-repeat: repeat;
	background-position: left;
}

/* This is where you set your desired font size. The line-height 
   and vertical margins are automatically calculated from this. 
   
   You have to add an extra calculation here because of IE, so that 
   all users may resize text manually in their browsers.
   
   The top one is for IE: The percentage is of 16px (default IE text size)
   10px is 62.5%, 12px is 75%, 13px is 81.25%, and so forth).
   The second value is what all other browsers see (the wanted font size). */
   
body   { font-size: 12px; }  /* Compliant browsers */

h1,h2,h3,h4,h5,h6 { 
	font-family: arial, sans-serif;
	font-weight: bold;
	clear: both; 
	line-height: 1.1;
 }

h1 { font-size: 2em; }
h2 { font-size: 1.5em; margin-bottom: 1em; }
h3 { font-size: 1.3em; margin-bottom: 1em; }
h4 { font-size: 1.1em; }
h5 { font-size: 1em; }
h6 { font-size: 1em; }


strong { font-weight: bold; }
em { font-style: italic; }
p { margin-bottom: 1em; }
p.small { font-size: .8em; }
p.large { font-size: 1.2em; }
a, a:link, a:visited
{
	text-decoration: underline;
}
a:hover { text-decoration: underline; }

/* _wrapper
------------------------------------------------------------------------------*/
#wrapper
{
	width: 835px;
	margin: 20px auto 0;
	background-image: url(wrapper.gif);
	background-repeat: repeat-y;
	background-position: left top;
	position: relative;
}

#top
{
	position: absolute;
	top: 0;
	left: 0;
	width:1%;
	z-index: 100;
}

#skipnav
{
	position: relative;
	text-indent: -9000em;
	overflow: hidden;
}
 

/* _branding
------------------------------------------------------------------------------*/
#branding
{
	position: relative;
	width: 835px;
	height: 161px;
	background-image: url(header.gif);
	background-repeat: no-repeat;
	background-position: left top;
}

#branding h1
{
	position: relative;
}


#branding h1 a
{
	width: 236px;
	height: 139px;
	display: block;
	position: absolute;
	top: 20px;
	left: 36px;
	text-indent: -9999em;
	overflow: hidden;
	outline: 0;
	text-decoration: none;
}





/* _navigation
------------------------------------------------------------------------------*/
#nav 
{
	position: absolute;
	left: 281px;
	top: 130px;
}

#nav, #nav ul, #nav li li { z-index: 1000; }

#nav li
{
	width: 84px;
	height: 25px;
	float: left;
	display: inline;
	margin-right: 4px;
	background-color: #CEC9C9;
	text-align: center;	
}

#nav li:hover, #nav li.hover
{
	background-color: black;
}

#nav li:hover a, #nav li.hover a
{
	color: white;
}


#nav li a
{
	font-size: .9em;
	display: block;
	line-height: 25px;
	color: black;
	font-weight: bold;
	text-decoration: none;
}

#nav li ul
{
	position: absolute;
	width: 184px;
	left: -9999em;
	top: 0;
	margin-top: 25px;
	text-align: left;
	border: 1px solid #B3AAAA;
	float: left;
	background-image: url(10x10transp80.png);
	background-repeat: repeat;
	background-position: left top;
	z-index: 100;
}

#nav li:hover ul, #nav li.hover ul
{
	left: auto;
}

#nav li li
{
	width: 184px;
	height: auto;
	background-color: transparent;
}

#nav li:hover li a, #nav li.hover li a
{
	text-indent: 0;
	padding: .1em 1em;
	color: black;
}

#nav li li:hover, #nav li li.hover
{
	background-color: black;
}

#nav li li:hover a, #nav li li.hover a
{
	color: white;
}

/* You-are-here nav */
#home_page #home,
#opportunity_page #opportunity,
/* sub-nav */
#lsv300_page #products,
#lsvsb2_page #products,
#snackmate_page #products,
#crackheads_page #products,
/* --- */
#qanda_page #qanda,
#about_page #about,
#contact_page #contact
{
	background-color: black;
}

#home_page #home a,
#opportunity_page #opportunity a,
#lsv300_page #products a,
#lsvsb2_page #products a,
#snackmate_page #products a,
#crackheads_page #products a,
#qanda_page #qanda a,
#about_page #about a,
#contact_page #contact a
{
	color: white;
}


#lsv300_page #products:hover li a, #lsv300_page #products.hover li a,
#lsvsb2_page #products:hover li a, #lsvsb2_page #products.hover li a,
#snackmate_page #products:hover li a, #snackmate_page #products.hover li a,
#crackheads_page #products:hover li a, #crackheads_page #products.hover li a
{
	color: #2B388F;
}

#lsv300_page #products li a:hover,
#lsvsb2_page #products li a:hover,
#snackmate_page #products li a:hover,
#crackheads_page #products li a:hover
{
	color: white;
}




/* _content
------------------------------------------------------------------------------*/
#content
{
	background-image: url(secondarytile.gif);
	background-repeat: repeat-y;
	background-position: 37px top;
}



/* _primary content
------------------------------------------------------------------------------*/
#primary
{
	width: 526px;
	float: right;
	display: inline;
	margin-right: 29px;
}

#primary.three-col
{
	width: 274px;
	margin-left: 0px;
}



#primary.gray
{
	background-color: #B3AAAA;
	padding: 12px 0;
}

#primary.gray p, #primary.gray h4
{
	padding: 0 12px;
}

#primary.gray h4
{
	padding-bottom: 1em;
	border-bottom: 1px dashed black;
	margin-bottom: 1em;
}

sup
{
	font-size: 80%;
	vertical-align: top;
}

/* add icons to links */
a[href ^="mailto:"]
{
	padding-right: 20px;
	background-image: url(icon_mailto.gif);
	background-repeat: no-repeat;
	background-position: right center;
}

a[href ^='http://'], a[href ^='https://']
{
	padding-right: 18px;
	background-image: url(icon_external.gif);
	background-repeat: no-repeat;
	background-position: right center;
}

a[href $='.pdf']
{
	padding-right: 18px;
	background-image: url(icon_pdf.gif);
	background-repeat: no-repeat;
	background-position: right center;
}

/* contact form */

label
{
	display: block;
}

input, textarea
{
	width: 100%;
}


/* _secondary content
------------------------------------------------------------------------------*/
#secondary
{
	width: 235px;
	padding-top: 346px;
	float: left;
	display: inline;
	background-image: url(secondarybkgn.gif);
	background-repeat: no-repeat;
	background-position: left top;
	margin-left: 37px;
}

#secondary p
{
	text-indent: -9999em;
	overflow: hidden;
	outline: 0;	
}

#secondary .fancy
{
	padding: 0 10%;
	margin: 1em 0;
	text-align: center;
}

#secondary h4.fancy
{
	font-size: 2em;
}

#secondary .fancy a
{
	padding: .5em 0;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
	color: white;
	text-decoration: none;
	font-family: impact;
	font-weight: normal;
	display: block;
	background-color: #020202;
}

#secondary .fancy a:hover
{
	color: #DB0022;
}

/* _ternary
------------------------------------------------------------------------------*/
#ternary
{
	width: 220px;
	float: right;
	display: inline;
	margin-right: 29px;
}


/* _footer
------------------------------------------------------------------------------*/
#footer
{
	clear: both;
	padding-bottom: 20px;
	padding-top: 10px;
	background-image: url(footer.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
}

#footer p
{
	text-align: right;
	padding-right: 29px;
}

#footer p a
{

}

#footer p a:hover
{

}