/*================================================================
BASE stylesheet (probably best to leave as is)

- Resets browser defaults
- Provides some basic extra classes
    - .clear
    - .clearfix
    - .hide
    - .block
- Corrects centering problem in IE 5
  
================================================================*/


/* RESET BROWSER DEFAULTS
----------------------------------------------------------------*/
html {
  height: 101%;
}


html,body,form,h1,h2,h3,h4,h5,h6,pre,form,p,blockquote,fieldset,input,a { 
  margin: 0; 
  padding: 0;
}

a img,:link img,:visited img { 
  border: none;
}

address { 
  font-style: normal;
}


/* EXTRA CLASSES EVERY CSS HACKER NEEDS
----------------------------------------------------------------*/
.clear { 
  clear: both; 
}

.clearfix:after {
  /* What's this? --> http://www.positioniseverything.net/easyclearing.html */
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}

* html>body .clearfix {
	display: inline-block; 
	width: 100%;
}

* html .clearfix {
	/* Hides from IE-mac \*/
	height: 1%;
	/* End hide from IE-mac */
}

.hide {
  display: none; 
}

.block {
  display: block;
}


/* IE 5 Fix
----------------------------------------------------------------*/
body { 
  text-align: center; /* Hack for stoopid IE 5 */
}

div#wrapper {
  text-align: left; /* Undo stoopid IE 5 hack */
}


/*================================================================
LAYOUT stylesheet for the website.

Define layout and backgrounds for:
  - Body
  - Wrapper
  - Header
  - Sidebar
  - Content
  - Footer
  ( Navigation is defined in nav.css )
  
  ***  NO TYPOGRAPHY STYLES HERE PLEASE  ***
  
================================================================*/


/* BODY 
----------------------------------------------------------------*/
body {  
  background: #fff url('25_bg_body.gif') repeat-x;
}


/* WRAPPER
----------------------------------------------------------------*/
#wrapper {
  clear: both; 
  width: 1040px;
  margin: 0 auto;
}


/* HEADER
----------------------------------------------------------------*/
#header {
  background: url('25_bg_header.gif') no-repeat right top;
  height: 200px;
}

#logo {
  height: 115px;
}


/* SIDEBAR
----------------------------------------------------------------*/
#sidebar {
  float: left;
  width: 190px;
  padding: 0;
  margin: 2px 20px 0 0;
}


/* NAV CONTAINER
----------------------------------------------------------------*/
#navcontainer {
  width: 190px;
  margin: 0 0 2px 0;
  padding: 0;
}

#navcontainer ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
}

#navcontainer a {
  display: block;
  padding: 2px 2px 1px 7px;
  background-color: #333;
  border-bottom: 1px solid #000;
}

#navcontainer a:link, #navcontainer a:visited {
  color: #fff;
  text-decoration: none;
}

#navcontainer a:hover {
  background-color: #666;
  color: #f90;
}

.sideimg {
  margin-bottom: 2px;
  float: left;
}


/* CONTENT
----------------------------------------------------------------*/
#content {
  float: left;
  width: 830px;
  margin: 10px 0 20px 0;
  padding: 0;
}


/* FOOTER
----------------------------------------------------------------*/
#footer {
  clear: both;
  background: #BBB;
  height: 60px;
}


/*================================================================
NAV stylesheet for the website.

Define all aspects (layout AND typography) of:
  - Nav (ul)
  - Nav List Items (li)
  - Nav Links
  - Current Page Definitions
  
================================================================*/


/* NAV
----------------------------------------------------------------*/
#nav ul {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
}

#nav li {
  margin: 11px 0 0 0;
  padding: 0;
  display: block;
  float: left;
  position: relative;
}

#nav a {  
  width: 94px;
  height: 32px;
  display: block;
}

#nav a span {
  display:none;
}


/* TAB BUTTONS - 1 Proline Skates
----------------------------------------------------------------*/
#nav a.tab_proline {
  background: url('25_tab_prolineskates_l.gif') no-repeat;
}

#nav a.tab_proline_active {
  background: url('25_tab_prolineskates_a.gif') no-repeat;
}

/* TAB BUTTONS - 2 Aggresive Skates
----------------------------------------------------------------*/
#nav a.tab_aggresive {
  background: url('25_tab_aggresiveskates_l.gif') no-repeat;
}

#nav a.tab_aggresive_active {
  background: url('25_tab_aggresiveskates_a.gif') no-repeat;
}

/* TAB BUTTONS - 3 Recreational Skates
----------------------------------------------------------------*/
#nav a.tab_recreational {
  background: url('25_tab_recreationalskates_l.gif') no-repeat;
}

#nav a.tab_recreational_active {
  background: url('25_tab_recreationalskates_a.gif') no-repeat;
}

/* TAB BUTTONS - 4 Roller Skates
----------------------------------------------------------------*/
#nav a.tab_rollers {
  background: url('25_tab_rollerskates_l.gif') no-repeat;
}

#nav a.tab_rollers_active {
  background: url('25_tab_rollerskates_a.gif') no-repeat;
}

/* TAB BUTTONS - 5 Ice Skates
----------------------------------------------------------------*/
#nav a.tab_ice {
  background: url('25_tab_iceskates_l.gif') no-repeat;
}

#nav a.tab_ice_active {
  background: url('25_tab_iceskates_a.gif') no-repeat;
}

/* TAB BUTTONS - 6 Roller Hockey
----------------------------------------------------------------*/
#nav a.tab_rollerh {
  background: url('25_tab_rollerhockey_l.gif') no-repeat;
}

#nav a.tab_rollerh_active {
  background: url('25_tab_rollerhockey_a.gif') no-repeat;
}

/* TAB BUTTONS - 7 Hockey Equipment
----------------------------------------------------------------*/
#nav a.tab_hockey {
  background: url('25_tab_hockeyequipment_l.gif') no-repeat;
}

#nav a.tab_hockey_active {
  background: url('25_tab_hockeyequipment_a.gif') no-repeat;
}

/* TAB BUTTONS - 8 Heelys
----------------------------------------------------------------*/
#nav a.tab_heelys {
  background: url('25_tab_heelys_l.gif') no-repeat;
}

#nav a.tab_heelys_active {
  background: url('25_tab_heelys_a.gif') no-repeat;
}

/* TAB BUTTONS - 9 Other Products
----------------------------------------------------------------*/
#nav a.tab_other {
  background: url('25_tab_otherproducts_l.gif') no-repeat;
}

#nav a.tab_other_active {
  background: url('25_tab_otherproducts_a.gif') no-repeat;
}

/* TAB BUTTONS - 10 Scooters
----------------------------------------------------------------*/
#nav a.tab_scooter {
  background: url('25_tab_scooters_l.gif') no-repeat;
}

#nav a.tab_scooter_active {
  background: url('25_tab_scooters_a.gif') no-repeat;
}

/* SUBNAV
----------------------------------------------------------------*/
#subnav {
  clear: left;
  margin-top: 12px;
}

#subnav input.textarea{
  float: left;
}

#subnav input.go_button{
  float: left;
}

#subnav ul {
  list-style: none;
  display: block;
  margin: 0 0 0 392px;
  padding: 0;
}

#subnav li {
  margin: 3px 0 0 0;
  padding: 0 12px;
  border-right: 1px solid #fff;
  display: block;
  float: left;
  position: relative;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
}

#subnav li.noborder {
  border: 0;
}

#subnav li.padding {
  padding-left: 20px;
}

#subnav a {
  display: block;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
}

#subnav a:hover {
  color: #ff0;
}


/* PRODUCTS
----------------------------------------------------------------*/
div.fullpageProdContainer {
  margin: 0 0 100px 0;
  padding: 0;
  width: 810px;
  overflow: hidden;
}

div.fullpageProdImage {
  margin: 0 20px 0 0;
  padding: 0;
  width: 380px;
  float: left;
  text-align: center;
}

div.fullpageProdInfo {
  margin: 0;
  padding: 0;
  width: 410px;
  float: left;
}

h1.fullpageProdName {
  font-size: 18px;
}

div.fullpageProdPrice {
  margin: 0;
  padding: 0;
  width: 110px;
  float: left;
}

p.fullpageGBP {
  margin-top: 8px;
  font: bold 24px arial;
  color: #f30;
}

p.fullpageEUR {
  margin-top: -4px;
  font: 11px arial;
}

div.fullpageProdAddtoCart {
  margin: 12px 0 0 0;
  padding: 0;
  float: left;
}

div.fullpageProdDesc {
  margin: 8px 0 0 0;
  padding: 6px 0 0 0;
  border-top: #00C 1px solid;
}


/* PRODUCTS 25_HockeySticks LAYOUT
----------------------------------------------------------------*/

div.25_HockeySticks_Image {
  width: 800px;
  margin: 0 50%;
}

div.25_HockeySticks_Details {
  float: left;
  width: 260px;
}

div.25_HockeySticks_Choices {
  float: left;
  width: 240px;
}

div.25_HockeySticks_Price {
  float: left;
  width: 120px;
}

div.25_HockeySticks_AddCart {
  float: left;
  width: 100px;
}

p.stickpageGBP {
  margin-top: -4px;
  font: bold 24px arial;
  color: #f30;
}

p.stickpageEUR {
  margin-top: -4px;
  font: 11px arial;
}


/*================================================================
The MAIN stylesheet for the website.

Define SITE-WIDE styles:
  - General Typography
  - Header Content
  - Sidebar Content
  - Forms
  - Tables
  - Footer
  - Sitewide Custom Definitions
  
================================================================*/


/* GENERAL TYPOGRAPHY (Standard HTML tags)
----------------------------------------------------------------*/

h4 {
  font-family: Arial;
  font-weight: bold;
  font-size: 18px;
  color: #F00;
  margin: 0;
  padding: 0;
}

a.SectionNameLarge {
		font-size: 14px;
		font-weight: bold;
		}


/*================================================================
JUST SEARCH stylesheet for splash page.

================================================================*/

/* JUST SEARCH
----------------------------------------------------------------*/

#optext {
  width:700px;
  height:120px;
  overflow:auto;
  text-align:left;
}

#optext a {
  text-decoration:none;
  color:#000;
  font-weight:normal;
  font-size:12px;
}


