/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background: #86c118 url(../images/siteBodyBG.jpg) top no-repeat;
  color: #000;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #000;
  font-family: Times New Roman, Times, serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #000;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #000;
  text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 770px;
}
#outerWrapper #header {
  font-size: 18px;
  font-weight: bold;
  line-height: 15px;
  height: 163px;
}

#outerWrapper #contentWrapper #leftColumn {
  float: left;
  /*padding: 10px 0 10px 13px;*/ /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0;
  width: 100px;
}

#outerWrapper #contentWrapper #leftColumn #cartItems {
	margin: 20px 0 0 20px;
	width: 140px;
}



#contentWrapper {
	width: 746px;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  background: url(../images/siteContentBG.jpg) no-repeat;
}
#contentWrapperBG {
	width: 746px;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */

  background: url(../images/siteContentBGrepeater.jpg) repeat-y;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  margin: 10px 0 0 170px !important; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  margin: -20px 0 0 170px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #contentWrapper #content img {
	border: 0px;
}

#outerWrapper #contentWrapper #contentHome {
  margin: 10px 0 0 170px !important; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  margin: -20px 0 0 170px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#outerWrapper #contentWrapper #contentHome table {
	margin: 10px 0 0 5px !important; 
	margin: 20px 0 0 0;
}

#outerWrapper #contentWrapper #homeHilite {
/*	background-image: url(../images/homehilite.jpg);
	background-repeat: no-repeat;
	background-position: right;*/
	margin-top: 8px !important;
	margin-top: -20px;
	float: right;
}




/*----------------- ZIP CODE SEARCH FORM ----------------------*/
#zipFinder {
	margin: 0 1px 2px 300px !important;
	margin: 0 1px 2px 320px;
	height: 30px;
}
form#zipForm { 
 text-align: right; 
}

#zipForm .button { 
 margin: 8px 6px 0 0;
}

#zipFinder .zipField { 
 background-color: #eee; 
 border: 1px solid #000;
 margin-top: 5px;
}


#zipFinder .txtBold {
	font-weight: bold;
}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footerWrapper {
	width: 746px;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	background: url(../images/siteContentBGrepeater.jpg) repeat-y;
}
#footer {
	background: url(../images/siteFooterBG.jpg) no-repeat center;
}
#footerWrapper p {
	margin: 0 5px 5px 200px;
}

#outerWrapper #footerLinks {
	width: 746px;
	margin: 10px auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
}

#footerLinks p.copyright {
	text-align: center;
	color:#666666;
}

/*--------------- FOOTER NAVIGATION STYLES --------------------*/
#pipe {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: inline;
}

#pipe ul {
	display: inline;
}

#pipe li {
	padding: 0 3px 0 6px;
	display: inline;
	border-left: 1px solid #666666;
}

#pipe li.first {
	margin-left: 0;
	border-left: none;
	list-style: none;
	display: inline;
	}

#pipe a:link, #pipe a:visited, #pipe a:active {
	color: #666666;
	font-size: 11px;
	text-decoration: none;
	font-weight: normal;
}
#pipe a:hover {
	color: #fff;
	text-decoration: underline;
	font-weight: normal;
}


/*------------------------- MAIN NAV STYLES -----------------------*/

#outerWrapper #contentWrapper #nav {
	list-style-type: none;
	margin-top: 40px;
}
#outerWrapper #contentWrapper #nav li {
	width: 133px;
	margin-top: 4px;
}
#outerWrapper #contentWrapper #nav a:link, #outerWrapper #contentWrapper #nav a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666666;
	text-decoration: none;
	display: block;
	padding: 7px 8px 0 0;
	text-align: right;
	height: 25px;
}

#outerWrapper #contentWrapper #nav a:active {
	color: #0780bd;
}

#outerWrapper #contentWrapper #nav a:hover, body#home #t-home a, body#contact #t-contact a, body#exxon #t-exxon a, body#work #t-work a, body#about #t-about a, body#locations #t-locations a, body#customerclub #t-customerclub a, body#products #t-products a, body#speedpass #t-speedpass a {
	background-image: url(../images/siteBtnOn.jpg);
	background-repeat: no-repeat;
	color: #fff;
}

/*-------------------- MULTI COLUMN LIST -----------------------*/

/* allow room for 3 columns */
  div.listwrap ul
  {
    width: 42em;
	text-align: left;
	list-style: disc outside;
  }

  /* float & allow room for the widest item */
  div.listwrap ul li
  {
    float: left;
    width: 20em;
  }
  
/*  ul li a {
  	list-style-type: circle;
  }*/

  /* stop the float */
  div.listwrap br
  {
    clear: left;
  }

  /* separate the list from subsequent markup */
  div.listwrap
  {
    margin-bottom: 1em;
  }

/*-------------------- Floated Product LIST -----------------------*/

#outerWrapper #contentWrapper #content #products {
	 float: left;
	 width: 480px;
}

#outerWrapper #contentWrapper #content #products dl {
	 float: left;
	 width: 480px;
	 margin: 10px 20px;
	 padding: 0;
	 display: inline; /* fixes IE/Win double margin bug */
}

#outerWrapper #contentWrapper #content #products dt {
	 float: right;
	 width: 150px;
	 margin: 0;
	 padding: 0;
	 font-size: 130%;
	 letter-spacing: 1px;
	 color: #009900;	 
}

#outerWrapper #contentWrapper #content #products dd {
	 margin: 0;
	 padding: 0;
	 font-size: 130%;
	 font-weight: bold; 
}
#outerWrapper #contentWrapper #content #products dd.img img {
	 float: left;
	 margin: 0 8px 0 0;
	 padding: 4px;
}
#outerWrapper #contentWrapper #content #products dd.text {
	 margin-top: 30px;
}
#outerWrapper #contentWrapper #content #products .alt dt {
	 float: left
}
#outerWrapper #contentWrapper #content #products .alt dd.img img {
	 float: right;
	 margin: 0 0 0 8px;
}

/* /////////////// SOCIAL MEDIA ICONS //////////////////// */
.icon {
  background: left 5px no-repeat;
  margin-left: 250px;
  margin-top: 5px;
}
 
div.icon {
  vertical-align: middle;
}
 
div.icon a {
  display: block;
  padding: 5px 0px 0px 20px;
  text-align: left;
}
 
.digg { background-image:url(http://digg.com/favicon.ico);}
.delicious{ background-image:url(http://delicious.com/favicon.ico);}
.flickr{background-image:url(http://flickr.com/favicon.ico);}
.facebook{background-image:url(http://facebook.com/favicon.ico);}
.technorati{background-image:url(http://technorati.com/favicon.ico);}
.twitter{background-image:url(http://twitter.com/favicon.ico);}
.stumbleupon{background-image:url(http://stumbleupon.com/favicon.ico);}