/* --------------------------------------------
	Conditional Browser Rules
----------------------------------------------- */

/*
	Usage: Apply each of these "hacks" after the initial incorrect value has been set.

	Child Selector for FF, IE7, Opera, Safari:
		html > body element {rule}
	
	Child Selector + Comment Hack, which IE7 ignores:
		html >/^^/ body element {rule}
	
	Comment Hack to hide from IE5x:
		element {selector /^^/:/^^/ value;}
	
	Replace ^ with *
*/




/* --------------------------------------------
	Colour Glossary
----------------------------------------------- */

/*
	Swatch - #000000
*/




/* --------------------------------------------
	Top-level Elements
----------------------------------------------- */

/* Top-level Elements

    * HTML - HTML document
          o BODY - Document body
*/

* {
	margin: 0;
	padding: 0;
}


body {
	background-color: #fff;
	color: #111;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 62.5%;
}

body * {
	font-family: inherit;
	font-size: 100%;
}




/* --------------------------------------------
	Generic Classes
----------------------------------------------- */

.align_centre {
	text-align: center;
}

.align_justify {
	text-align: justify;
}

.align_left {
	text-align: left;
}

.align_right {
	text-align: right;
}

.centre_object {
	display: block;
	margin: 0 auto 1.4em auto;
}

.clear {
	clear: both;
	font-size: 0;
	line-height: 0px;
}

.float_left {
	float: left;
}

.float_right {
	float: right;
}

img.float_left {
	margin: 0.5em 1em 0.5em 0;
}

img.float_left_border {
	border: 1px solid #a1a8ce;
	float: left;
	margin: 0.5em 1em 0.5em 0;
}

img.float_right {
	margin: 0.5em 0 0.5em 1em;
}

img.float_right_border {
	border: 1px solid #a1a8ce;
	float: right;
	margin: 0.5em 0 0.5em 1em;
}

.glossary {
	display: none;	/* For use in conjunction with AddGlossary script */
}

.hidden {
	left: -999px;
	position: absolute;
	width: 1px;
}

.normal {
	color: #444;
	font-weight: normal;
}

.important {
	font-size: 120%;
}

.invisible {
	visibility: hidden;
}





/* --------------------------------------------
	Specific Miscellaneous Classes
----------------------------------------------- */

div.store {
	float: left;
	margin-bottom: 10px;
	width: 50%;
}

#wrapper_content h3.img_heading {
	margin-bottom: 8px;
}



/* --------------------------------------------
	Generic Special Inline Elements
----------------------------------------------- */

/* Special Inline Elements

    * A - Anchor
    * BR - Line break
    * IFRAME - Inline frame
    * IMG - Inline image
    * MAP - Image map
          o AREA - Image map region
    * Q - Short quotation
    * SPAN - Generic inline container
    * SUB - Subscript
    * SUP - Superscript
*/

a img {
	border: none;
}

a.anchor {
	background-color: inherit;
	border: inherit;
	color: inherit;
	display: inline;
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	line-height: inherit;
	text-align: inherit;
	text-decoration: inherit;
	text-indent: inherit;
	text-transform: inherit;
	white-space: inherit;
	word-spacing: inherit;
}

a.izilla {
	color: #00814f;
}

a.cognition {
	color: #237eb8;
}

a {
	color: #29398d;
	text-decoration: none;
}

q:before, q:after { 
    content: ""; /* With IE's lack of support, remove quotes on all good browsers. Add them manually in the markup */
}




/* --------------------------------------------
	Generic Block-level Elements
----------------------------------------------- */

/* Generic Block-level Elements

    * ADDRESS - Address
    * BLOCKQUOTE - Block quotation
    * DEL - Deleted text
    * DIV - Generic block-level container
    * H1 - Level-one heading
    * H2 - Level-two heading
    * H3 - Level-three heading
    * H4 - Level-four heading
    * H5 - Level-five heading
    * H6 - Level-six heading
    * HR - Horizontal rule
    * INS - Inserted text
    * P - Paragraph
    * PRE - Preformatted text
*/

address {
	font-style: normal;
}

/* Main Structural Divs ------------------------------ */

#wrapper_content {
	font-size: 110%;
}

body#home #wrapper_content, body#product #wrapper_content {
	padding-left: 0;
}

#content {
	margin-top: 12px;
}


/* Headings ----------------------------------- */

#content h1 {
	border-bottom: 1px solid #e3e5f1;
	color: #25358e;
	font-size: 150%;
	margin-bottom: 0.92em;
	padding-bottom: 5px;
}

html >/**/ body #content h1 {
	padding-bottom: 4px;
}

#content h2 {
	color: #606bad;
	font-size: 140%;
	margin-bottom: 0.96em;
}

#content h3 {
	color: #25358e;
	font-size: 130%;
	margin-bottom: 1.05em;
}

#content h4 {
	color: #606bad;
	font-size: 120%;
	margin-bottom: 1.15em;
}

#content h5 {
	color:#25358e;
	font-size: 110%;
	margin-bottom: 1.25em;
}

#content h6 {
	color: #606bad;
	font-size: 110%;
	margin-bottom: 1.27em;
}

/* Horizontal Rules ---------------------------- */

hr {
	background-color: #e3e5f1;
	border: none;
	color: #e3e5f1;
	height: 1px;
	margin-bottom: 3px;
	margin-top: -6px;
}

html >/**/ body hr {
	margin-bottom: 11px;
	margin-top: auto;
}

/* Paragraphs ---------------------------- */

#content p {
	line-height: 150%;
	margin-bottom: 1.36em;
}

/* --------------------------------------------
	Generic Forms
----------------------------------------------- */

/* Forms

    * FORM - Interactive form
          o BUTTON - Button
          o FIELDSET - Form control group
                + LEGEND - Fieldset caption
          o INPUT - Form input
          o LABEL - Form field label
          o SELECT - Option selector
                + OPTGROUP - Option group
                      # OPTION - Menu option
          o TEXTAREA - Multi-line text input
*/

fieldset {
	border: none;
	clear: both;
}

legend {
	display: none;
}

input.submit {			/* Ensure buttons behave the same across all browsers */	
	padding: 0 .25em;
    width: 0;  			/* IE width fix */
   	overflow: visible;
}

input.submit[class] {	/* IE ignores [class] (attribute selectors) */
   	width: auto;  		/* Cancel IE width fix for other browsers */
}


input.text:focus, select:focus, textarea:focus {
	background-color: #ffc;	/* Set accessibility :focus. Give text boxes a class of "text" in markup or dynamically */
}

option {
	padding: 0 4px;
}




/* --------------------------------------------
	Generic Phrase Elements
----------------------------------------------- */

/* Phrase Elements

    * ABBR - Abbreviation
    * ACRONYM - Acronym
    * CITE - Citation
    * CODE - Computer code
    * DFN - Defined term
    * EM - Emphasis
    * INS - Inserted text
    * KBD - Text to be input
    * SAMP - Sample output
    * STRONG - Strong emphasis
    * VAR - Variable
*/

acronym {
	border-bottom: 1px solid;
	cursor: help;
}



/* --------------------------------------------
	Generic Font Style Elements
----------------------------------------------- */

/* Font Style Elements

    * SMALL - Small text
    * TT - Teletype text
*/


/* --------------------------------------------
	Specific Lists
----------------------------------------------- */

/* Lists

    * DIR - Directory list
    * DL - Definition list
          o DT - Definition term
          o DD - Definition description
    * LI - List item
    * OL - Ordered list
    * UL - Unordered list
*/

/*  Content Lists --------------------------- */

#content ul {
	list-style-type: none;
	margin-bottom: 1.4em;
	padding-left: 15px;
}

#content ul li {
	background: #fff url(../images/bg_content_list_arrow.gif) no-repeat 1px 4px;
	height: 1%;
	margin-bottom: 0.82em;
	padding-left: 23px;
}

html >/**/ body #content ul {
	padding-left: 20px;
}

html >/**/ body #content ul li {
	padding-left: 18px;
}

#content ol {
	list-style-type: decimal;
	margin-bottom: 1.4em;
	margin-left: 5px;
	padding-left: 3em;
}

#content ol.lower_aplha {list-style-type: lower-alpha;}
#content ol.upper_alpha {list-style-type: upper-alpha;}
#content ol.lower_roman {list-style-type: lower-roman;}
#content ol.upper_roman {list-style-type: upper-roman;}

html body #content ul ol li {
	background: none;
	padding-left: 0;
}

#content li ul, #content li ol {margin-top: 9px;}

#content ol li {
	display: list-item;
	margin-bottom: 9px;
}	

/*  Main Navigation --------------------------- */

#wrapper_nav_main {
	display: none;
}


/* Sub Navigation ----------------------------- */

#wrapper_nav_sub {
	display: none;
}

/* Store Lists -------------------------------- */

#wrapper_store_list {
	clear: both;
	font-size: 110%;
	margin: auto;
	overflow: auto;
	padding-top: 15px;
	text-align: left;
}

#wrapper_store_list ul {
	display: inline;
	float: left;
	list-style-type: none;
}

#wrapper_store_list ul#affiliate_list {
	display: none;
}

#wrapper_store_list ul li {
	display: inline;
	float: left;
	margin-bottom: 2px;
	width: 33%;
}

#wrapper_store_list a {
	color: #a1a8ce;
}

#wrapper_store_list a strong {
	color: #29398d;
	text-transform: uppercase;
}

/* Footer Lists ------------------------------- */

/* Footer Divs */

#wrapper_footer {
	display: none;
}

/* Product Pagination ------------------------- */

#wrapper_product_pagination ol {
	display: none;
}

/* --------------------------------------------
	Specific Tables Styles
----------------------------------------------- */

/* Tables

    * TABLE - Table
          o CAPTION - Table caption
          o COLGROUP - Table column group
                + COL - Table column
          o THEAD - Table head
          o TFOOT - Table foot
          o TBODY - Table body
          o TR - Table row
                + TD - Table data cell
                + TH - Table header cell
*/

table.data th, table.data td.th {	/* Due to Rad's not supporting THs, users should apply a TH class to TDs */
}

table.data, table#extras {
	border: none;
	border-collapse: collapse;
	margin-bottom: 1.3em;
}

table.data {
	margin-left: auto;
	margin-right: auto;
}

table#extras {
	margin-top: -13px;
	width: 100%;
}

table.data caption {
	font-weight: bold;
	line-height: 200%;
	margin: auto;
	text-align: center;
}

table.data td, table#extras tr.extras td, table.data tr th, table.data tr td.th {
	border: 1px solid #e8e8f5;
	padding: 3px 5px;
	text-align: left;
	vertical-align: middle;
}

table#extras tr td {
	border: none;
	padding: 0;
}

table.data tr th, table.data tr td.th {
	background-color: #e8e8f5;
	border-color: #d6d9ea;
	color: #394798;
	font-weight: bold;
	padding: 5px;
}

table#extras tr th {
	white-space: nowrap;
}

table.data tr.even td {
	background-color: #f7f7fc;
}

table#extras img {
	border: 1px solid #a1a8ce;
	margin-bottom: 10px;
}

table.data td#proceed {
	text-align: right;
}

table.data td#proceed input {
	margin-top: 24px;
}

#content table#extras h4 {
	margin-bottom: 5px;
	margin-top: 20px;
}




/* --------------------------------------------
	Specific Sections
----------------------------------------------- */

/* Header ------------------------------------- */

#header h1 {
	display: none;
}

#header h2#seal {
	color: #606bad;
	font-size: 140%;
	margin: 0.96em 0;
}

#header p#logo_phone {
	color: #25358e;
	font-size: 130%;
	margin-bottom: 1.05em;
}

/* Home Page Puff ----------------------------- */

#hp_puff {
	color: #000;
}

#hp_puff div#puff_top {
	display: none;
}

#hp_puff div#puff_bottom {
	display: none;
}


/* Home Page Featured Item -------------------- */

#hp_featured {
	display: none;
}

/* Featured Items ----------------------------- */

#wrapper_featured_items {
	overflow: auto;
	width: 100%;
}

div.featured_item {
	display: inline;
	float: left;
	margin-top: 11px;
	width: 33%;
}

div.featured_item div.curve {
	display: none;
}	


div.featured_item div {
	background-color: #fff;
	border: 1px solid #C4C4E6;
	margin: auto;
	text-align: center;
	width: 152px;
	width/**/:/**/ 150px;
}

#content div.featured_item p {
	line-height: normal;
	margin-bottom: 0;
	padding: 7px 18px;
	text-align: left;
}
div.featured_item a.product_name {
	color: #25358e;
}

div.featured_item a:hover.product_name {
	text-decoration: underline;
}

div.featured_item img {
	display: block;
	margin: auto;
}

div.featured_item span a {
	display: none;
}

/* Product Category --------------------------- */

#category {
	background: #e3e5f1 url(../images/bg_category.gif) no-repeat right bottom;
	color: #25358e;
	display: inline;
	float: left;
	font-size: 110%;
	overflow: auto;
	padding: 2px 17px 4px 15px;
	width: 305px;
	width/**/:/**/ 290px;
}

#category h2 {
	font-size: 100%;
	margin-bottom: 0;
	margin-right: 8px;
}

#category span {
	display: none;
}

/* Product List ------------------------------- */

#wrapper_product_list {
	clear: both;
}

/* Product Detail ----------------------------- */

#wrapper_product_detail {
	clear: both;
}

#product_detail {
	display: inline;
	float: left;
	margin: 9px 0 0 0;
}

#product_image {
	float: left;
	margin: 6px 0 15px 0;
	overflow: hidden;
	width: 200px;
	text-align: center;
}

#product_image p {
	display: none;
}

#product_image p a {
	background: url(../images/bg_view_larger.gif) no-repeat 0 0;
	color: #969696;
	padding: 0 0 0 20px;
}

#product_desc {
	margin: 3px 0 15px 220px;
}

#content #product_desc h1 {
	border-bottom: none;
	color: #25358e;
	font-size: 110%;
	padding-bottom: 0;
	margin-bottom: 10px;
}

#product_desc p {
	line-height: 150%;
	margin-bottom: 10px;
}

#product_desc_overflow {
	overflow: auto;
	scrollbar-3dlight-color: #f5f6fa;
	scrollbar-arrow-color: #25358e;
	scrollbar-base-color: #ff6347;
	scrollbar-darkshadow-color: #fff;
	scrollbar-face-color: #e3e5f1;
	scrollbar-highlight-color: #fff;
	scrollbar-shadow-color: #9ea0a8;
	text-align: justify;
}

#content h3#product_sold_out {
	background-color: #c00;
	color: #fff;
	font-size: 100%;
	margin: 0; 
	margin-bottom: 13px;
	padding: 2px;
}

#content ul#nav_prev_next_items {
	display: none;
}	

#specific_details {
	clear: both;
	line-height: 150%;
}

#specific_details div.field_container {
	display: none;
}

#specific_details div#options.field_container {
	display: block;
}

input.radio_btn {
	margin: 1px 3px -1px 0;
}

div.field_container input#txtOfferCode {
	margin-top: 15px;
	width: 80px;
}

p#currency_converter {
	float: right;
	margin: 3px 30px 0 0;
}

p#currency_converter a {
	text-decoration: underline;
}

p#currency_converter a:hover {
	text-decoration: none;
}

p.please_note {
	clear: both;
	color: #888;
	font-size: 90%;
	margin-top: 10px;
}

/* Portfolio Styles --------------------------- */

#portfolio {
	clear: both; 
	padding-top: 14px;
}

div.portfolio_thumb {
	display: inline;
	float: left;
	margin-bottom: 10px;
	text-align: center;
	width: 33%;
}

div.portfolio_thumb a {
	border: 1px solid #a1a8ce;
	display: block;
	height: 152px;
	height/**/:/**/ 150px;
	margin-bottom: 5px;
	overflow: hidden;
	width: 129px;
	width/**/:/**/ 127px;
}

#content div.portfolio_thumb p {
	line-height: normal;
}

div.portfolio_thumb p a {
	border: none;
	height: auto;
}

#portfolio_item {
	text-align: center;
}

#portfolio_item img {
	/*border: 1px solid #a1a8ce;*/ /* Images are badly cropped so borders look weird */
	display: block;
	margin: 0 auto 1em auto;
}

/* --------------------------------------------
	Miscellaneous Styles
----------------------------------------------- */

p#phone {
	/*background-color: #f6f6fb;*/
	display: none; /* Now display none - will remove other styles and markup when finalalised /
	margin-top: 20px;
	/*padding: 5px 0;*/
	text-align: center;
}

p#phone strong {
	color: #29398d;
	display: block;
	font-size: 110%;
	font-weight: bold;
	margin-top: 3px;
	/*text-transform: uppercase;*/
}

