/* Boilerplate Reset ========================START=========================== */

/*
  HTML5 âœ° Boilerplate

  style.css contains a reset, font normalization and some base styles.

  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/*
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/


html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */


select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }


/*
 * minimal base styles
 */

/* PIE */
.page, .nav-container, .footer-container  {

   behavior: url('../PIE/PIE.php')
}

body, select, input, textarea {
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  color: #444;
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE */
html { overflow-y: scroll; }


/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited {  }
a:hover {  }

ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; }

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; }

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre {
  padding: 15px;

  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

textarea { overflow: auto; } /* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

    .ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* Align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
/*input[type="radio"] { vertical-align: text-bottom; }*/
/*input[type="checkbox"] { vertical-align: bottom; }*/
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* Hand cursor on clickable input elements */
label, input[type="button"], input[type="submit"], input[type="image"], button { cursor: pointer; }

/* webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid {
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red;
 -webkit-box-shadow: 0px 0px 5px red;
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid,
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301
   Also: hot pink. */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; }

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; }

/* make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }

/* bicubic resizing for non-native sized IMG:
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/*
 * Non-semantic helper classes
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; }

/* Hide only visually, but have it available for screenreaders
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;
}

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }


/* Magento Boilerplate styling  - END */


/**
 * Magento Enterprise Edition
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Magento Enterprise Edition License
 * that is bundled with this package in the file LICENSE_EE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.magentocommerce.com/license/enterprise-edition
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    design
 * @package     enterprise_default
 * @copyright   Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://www.magentocommerce.com/license/enterprise-edition
 */
/* Reset ================================================================================= */
* { margin:0; padding:0; }

/*body          { background:#fff; font:11px/1.35 Arial, Helvetica, sans-serif; color:#444; text-align:center; }
*/
/*img           { border:0; vertical-align:top; }

a             { color:#444; text-decoration:underline; }*/
a:hover       { text-decoration:none; }
:focus        { outline:0; }

/* Headings */
/*h1            { font-size:18px; font-weight:normal; }
h2            { font-size:16px; font-weight:normal; color:#000; }
h3            { font-size:14px; font-weight:bold; }
h4            { font-size:13px; font-weight:bold; }
h5            { font-size:12px; font-weight:bold; }
h6            { font-size:11px; font-weight:bold; }*/

/* Forms */
/*form          { display:inline; }*/
fieldset      { border:0; }
legend        { display:none; }

/* Table */
table         { border:0; border-collapse:collapse; border-spacing:0; empty-cells:show; font-size:100%; }
caption,th,td { vertical-align:top; text-align:left; font-weight:normal; }

/* Content */
address       { font-style:normal; }
cite          { font-style:normal; }
q,
blockquote    { quotes:none; }
q:before,
q:after       { content:''; }
small         { font-size:10px; }
big           { font-size:1.2em; }
/*sup           { font-size:1em; vertical-align:top; }/*/

/* Lists */
/*ul,*/ol         { list-style:none; }

/* Tools */
.hidden       { display:block !important; border:0 !important; margin:0 !important; padding:0 !important; font-size:0 !important; line-height:0 !important; width:0 !important; height:0 !important; overflow:hidden !important; }
.nobr         { white-space:nowrap !important; }
.wrap         { white-space:normal !important; }
.a-left       { text-align:left !important; }
.a-center     { text-align:center !important; }
.a-right      { text-align:right !important; }
.v-top        { vertical-align:top; }
.v-middle     { vertical-align:middle; }
.f-left,
.left         { float:left !important; }
.f-right,
.right        { float:right !important; }
.f-none       { float:none !important; }
.f-fix        { float:left; width:100%; }
.no-display   { display:none; }
.no-margin    { margin:0 !important; }
.no-padding   { padding:0 !important; }
.no-bg        { background:none !important; }
/* ======================================================================================= */

/* Layout ================================================================================ */
/*.wrapper { background:#fff; padding-bottom:20px; }*/
.page { width:940px; margin:0 auto; text-align:center; }
.page-print { background:#fff; padding:20px; text-align:left; }
.page-popup { padding:20px; text-align:left; }
.page-empty { background:#fff; padding:20px; text-align:left; }
.main { margin:0 0 14px; min-height:350px; background-image:url(../images/bkg_cols.gif); background-color:#fff; background-repeat:repeat-y; border:1px solid #cfcfcf; text-align:left; }
.sidebar { min-height:350px; }

/* Base Columns */
.col-left { float:left; width:182px; padding:0 0 0; margin:0 0 -1px; }
.col-main { float:left; width:715px; padding:0 20px 20px; }
.col-right { float:right; width:182px; padding:0 0 0; margin:0 0 -1px; }

/* 1 Column Layout */
.col1-layout { background-position:-1000px 0; }
.col1-layout .col-main { float:none; width:auto; padding-top:20px; }
.col1-layout .breadcrumbs { margin-bottom:0 !important; }

/* 2 Columns Layout */
.col2-left-layout { background-position:-573px 0; }
.col2-left-layout .col-main { float:right; }
.col2-right-layout { background-position:573px 0; }
.col2-right-layout .col-main {}

/* 3 Columns Layout */
.col3-layout { background-position:0 0; }
.col3-layout .col-main { width:532px; margin-left:1px; display:inline; }
.col3-layout .col-wrapper { float:left; width:755px; }
.col3-layout .col-wrapper .col-main { float:right; }

/* Content Columns */
.col2-set .col-1 { float:left; width:40%; }
.col2-set .col-2 { float:right; width:50%; border: 1px solid #c6c6c6; padding: 5px; border-radius: 5px; }
.col2-set .narrow { width:33%; }
.col2-set .wide { width:65%; }

.col3-set .col-1 { float:left; width:32%; }
.col3-set .col-2 { float:left; width:32%; margin-left:2%; }
.col3-set .col-3 { float:right; width:32%; }

.col4-set .col-1 { float:left; width:23.5%; }
.col4-set .col-2 { float:left; width:23.5%; margin:0 2%; }
.col4-set .col-3 { float:left; width:23.5%; }
.col4-set .col-4 { float:right; width:23.5%; }
/* ======================================================================================= */




/* Global Styles ========================================================================= */

/* Form Elements */
input,select,textarea,button { font:12px Arial, Helvetica, sans-serif; vertical-align:middle; /*color:#444;*/ }
input.input-text,select,textarea { background-color:#fff; border:1px solid #c7c7c7; background:#fff url(../images/bkg_input.gif) 0 0 repeat-x; }
input.input-text,textarea { padding:2px 2px; background:#fff url(../images/bkg_input.gif) 0 0 repeat-x; }
select { padding:1px; }
select option { padding-right:10px; }
select.multiselect option { padding:2px 2px; border-bottom:1px solid #bbb; }
select.multiselect option:last-child { border-top:0; }
textarea { overflow:auto; }
input.radio,
input.checkbox { margin-right:3px; font-size:11px !important; /*margin-top:2px;*/ /*vertical-align:top;*/ }
input.radio { font-size:10px !important; }
input.qty { width:2.5em !important; }
button.button::-moz-focus-inner { padding:0; border:0; } /* FF Fix */
button.button { -webkit-border-fit:lines; } /* <- Safari & Google Chrome Fix */

button.button { border:0; padding:0; margin:0; background:transparent; /* line-height:21px; */ overflow:visible; cursor:pointer; vertical-align:middle; }

a.button,
button.button span,
a.button span,
button.button span span { background-color:transparent; background-image:url(../images/bkg_btn.gif); background-repeat:no-repeat; }

button.button span span { height:19px;
	border:1px solid #84c178;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#64915b), to(#4e7045));
	background: -webkit-linear-gradient(#64915b, #4e7045);
	background: -moz-linear-gradient(#64915b, #4e7045);
	background: -ms-linear-gradient(#64915b, #4e7045);
	background: -o-linear-gradient(#64915b, #4e7045);
	background: linear-gradient(#64915b, #4e7045);
	-pie-background: linear-gradient(#64915b, #4e7045);
	-moz-border-radius:4px;/* Firefox */
	-webkit-border-radius:4px;/* Safari and Chrome */
	border-radius:4px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
	background-color:#4e7045;
	padding:0 10px 0 10px;
	margin:0;
	text-shadow:none;
	font:bold 12px/19px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#fff;
	text-transform:capitalize;
	text-decoration:none; }

a.button,
button.button span { border:0; padding:0 0 0 10px; margin:0; cursor:pointer; background-position:0 0; display:-moz-inline-stack; display:inline-block; /*color:#c73615;*/ height:21px; text-decoration:none; }
a.button span,
button.button span span {  /*color:#c73615;*/ background-position:100% 0; display:-moz-inline-block; display:inline-block; white-space:nowrap; font:bold 11px/20px Arial, Helvetica, sans-serif; height:20px; }
a.button { line-height:21px; }
a.button { line-height:20px; }
/*.button:active { bottom:-1px; right:-1px; position:relative; z-index:2; }*/
button.button:active span span { margin:0; }
button.btn-small span { font-size:11px; line-height:14px; padding:1px 9px 0; }
button.disabled {}
button.disabled span {}

/* Form Highlight */
/*input.input-text:focus,select:focus,textarea:focus {}*/
/*.highlight { background:#eee; }*/

/* Form Validation */
.validation-advice { clear:both; font-size:11px !important; padding:3px 0 0 !important; color:#d91a00 !important; }
.product-options .validation-error .options-list,
.validation-failed { border:1px solid #f47d4e !important; background:#fff7f5 !important; }
input.input-text.validation-failed,
textarea.validation-failed { background:#FFF7F5 url(../images/bkg_input-failed.gif) 0 0 repeat-x !important; }
span.validation-passed,
div.validation-passed { background:url(../images/icon_ok.gif) 100% 2px no-repeat; padding-right:20px; }
span.validation-error,
div.validation-error { background:url(../images/icon_error.gif) 100% 2px no-repeat; padding-right:20px; }
.required em { color:#f15c22; margin-right:4px; }
p.required { margin:0; padding:0 0 7px; text-align:right; width:auto; font-size:11px; color:#f02800; }
.form-list .validation-advice { width:250px; margin-right:-250px; }
/* Expiration date and CVV number validation fix */
.v-fix { float:left; margin-bottom:5px; }
.v-fix .validation-advice { display:block; width:12em; margin-right:-12em; position:relative; }

/* Fieldset */
.fieldset { font-size:12px; margin:0 0 16px; }
.fieldset p { margin:0 0 1.5em; }
.fieldset h2.legend { margin:0 0 1.5em; color:#000; }

/* Form lists */
.form-list {}

.form-list li { margin:0 0 9px; vertical-align:top; }
.form-list label { float:left; width:225px; padding:2px 15px 0 0; font-size:12px; font-weight:bold; color:#444; text-align:right; }
.form-list .value { float:left; padding:2px 0 0; }
.form-list .note { clear:both; font-size:11px; width:380px; margin:0; padding:3px 0 0 240px; }
.form-list span.label { font-weight:normal; }
.form-list .input-box { float:left; /* width:256px; */ }
.form-list .input-box a { font-size:11px; margin-top:4px; }
.form-list input.input-text,
.form-list textarea { float:left; width:374px; /*vertical-align:top;*/ }
.form-list textarea { width:374px; height:13em; border:1px solid #cfcfcf; }
.form-list select { float:left; width:256px; height:23px; /*vertical-align:top;*/ }
.form-list p { margin:0; padding:0 0 0 240px; }
ul.add-row,
.form-list li.add-row { background:url(../images/bkg_dots.gif) repeat-x 0 0; margin-top:15px; }
ul.add-row .btn-remove,
.form-list li.add-row .btn-remove { font-size:0; line-height:0; padding:5px 5px 0 0; margin:0; text-align:right; }
.form-list .range input.input-text { float:none; width:64px; vertical-align:middle; }

.form-list .add-field .input-box { margin-left:240px }
.form-list .control { position:relative; vertical-align:top; z-index:1; } /* row with checkbox or radio button */
.form-list .control label { line-height:16px; }
.form-list .control .input-box { position:absolute; left:0; margin-left:240px; line-height:16px; padding-top:1px; }
/*.form-list .control input.radio { margin-top:3px; }*/

.form-alt label { float:none; display:inline; width:auto; }
.form-alt li { margin:0 0 5px; line-height:16px; }
.form-alt select { width:496px; }
.form-alt .input-box { width:496px; margin-top:5px; padding-bottom:11px; }
.form-alt .input-text { width:480px; }

.inner-form { margin:10px 0 5px; padding:10px 0 0; border:1px dashed #d1d1d1; border-width:1px; background:#f7f7f7; }
.inner-form .form-alt label { padding-left:5px; }

/* Date Of Birth */
.form-list .customer-dob label { float:none; width:auto; padding:0; font-size:11px; font-weight:normal; color:#777; }
.form-list .customer-dob .input-box { float:left; width:auto; margin-right:8px; }
.form-list .customer-dob .input-box .validation-advice { display:none !important; }
.form-list .customer-dob input.input-text { float:none; display:block; margin-bottom:2px; }
.form-list .customer-dob .dob-day,
.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-year { float:left; margin-right:8px; padding-right:0 !important; background:none !important; }
.form-list .customer-dob .dob-day .validation-advice,
.form-list .customer-dob .dob-month .validation-advice,
.form-list .customer-dob .dob-year .validation-advice { display:none; }
.form-list .customer-dob .dob-day input.input-text { width:104px; }
.form-list .customer-dob .dob-month input.input-text { width:104px; }
.form-list .customer-dob .dob-year { margin-right:0; }
.form-list .customer-dob .dob-year input.input-text { width:138px; }

/* Combination of fields */
.form-list li { list-style: none !important; }
.form-list li.fields { margin:0; list-style: none; }
.form-list li.fields .field { clear:left; padding:0 0 9px; }

/* Buttons */
.buttons-set { clear:both; margin-bottom: 15px; } /* general for button containing block */
.buttons-set p.back-link { float:left; padding:2px 15px 0 0; text-align:right; margin:0; }
a.back-link { color:#999; }
.buttons-set p.back-link a { color:#999; }
.buttons-set a.button,
.buttons-set button.button { float:right; margin-left:7px; }
.buttons-set2 { /*clear:both;  padding:5px;*/ margin:5px 0 0; background-color:#ededed; text-align:right; }

.form-buttons { margin:0; width:620px; } /* for button containing block under the general form */
.form-buttons .button { float:right; }
.form-buttons .button { margin-left:15px; }
.form-buttons p.back-link { float:left; width:225px; padding:2px 15px 0 0; text-align:right; }
.btn-only { /* padding-left:240px; */ }

/* Overrides for 3columns */
.col3-layout .form-list .note { padding-left:165px; width:280px; }
.col3-layout .form-buttons p.back-link,
.col3-layout .form-list label { width:150px; }
.col3-layout .form-list input.input-text,
.col3-layout .form-list textarea { width:274px; }
.col3-layout .form-list select { width:280px; }
.col3-layout .form-list .control .input-box { margin-left:165px; }
.col3-layout .form-list .customer-dob .dob-day input.input-text { width:74px; }
.col3-layout .form-list .customer-dob .dob-month input.input-text { width:74px; }
.col3-layout .form-list .customer-dob .dob-year { margin-right:0; }
.col3-layout .form-list .customer-dob .dob-year input.input-text { width:98px; }
.col3-layout p.required,
.col3-layout .form-buttons { width:445px; }

/* Global Messages */
.messages { width:100%; overflow:hidden; text-align:left; margin-top:10px; }
.messages li { margin:0 0 10px; padding:0; }
.messages ul { padding:10px 17px ; /*margin:0 0 -11px;*/  background-position:35px 100%; background-repeat:no-repeat; position:relative; }
.messages ul li { margin:0; padding:0 0 3px; }
.messages a { text-decoration:underline; }
.messages a:hover { text-decoration:none; }
.messages li.error-msg,
.messages li.success-msg,
.messages li.note-msg,
.messages li.notice-msg { border-style:solid !important; border-width:1px !important; font-size:12px !important; }
p.error-msg { border-style:solid !important; padding:10px; border-width:1px !important; font-size:12px !important; margin:10px 0; }
/* Error Message */
.messages li.error-msg { border-color:#e9581f; background-color:#fff5f3; color:#d91a00; }
.messages li.error-msg a { color:#d91a00; }
.messages li.error-msg ul { /* background-image:url(../images/bkg_msg-error.gif); */ }
p.error-msg { border-color:#e9581f; background-color:#fff5f3; color:#d91a00; }
/* Success Message */
.messages li.success-msg { border-color:#446423; background-color:#eff5ea; color:#3d6611; margin-bottom:10px !important; }
.messages li.success-msg a { color:#3d6611; }
.messages li.success-msg ul { /* background-image:url(../images/bkg_msg-success.gif); */ }
/* Notification Message */
.messages li.note-msg,
.messages li.notice-msg { border-color:#fcd344; background-color:#fafaec; color:#3d6611; }
.messages li.note-msg a,
.messages li.notice-msg a { color:#3d6611; }
.messages li.note-msg ul,
.messages li.notice-msg ul { /* background-image:url(../images/bkg_msg-note.gif); */ }

/* std class reset */
.std .messages { margin-top:0; }
.std .messages { width:auto; list-style:none !important; padding:0 !important; margin-bottom:0 !important; }
.std .messages ul { list-style:none !important; padding-left:17px !important; margin:0 0 -11px !important; }

/* BreadCrumbs */
/*.breadcrumbs { margin:0; padding:7px 20px 5px; background:#ededed url(../images/bkg_crumbs.gif) no-repeat 0 0; text-align:left; }*/
.breadcrumbs li { display:inline; }
.breadcrumbs li span,
.breadcrumbs a { color:#888; text-decoration:none; }
.breadcrumbs a:hover { text-decoration:underline; }

/* Page Heading */
.page-title { margin-bottom:20px; padding:23px 20px 11px; background:#f6f6f6 url(../images/bkg_page-title.gif) repeat-x 0 0; border-bottom:1px solid #cfcfcf; }
.page-title .link-rss { float:right; margin-top:8px; }
.page-title h1,
.page-title h2 { font:normal 22px/27px Arial, Helvetica, sans-serif; color:#d12c01; }

.title-buttons { text-align:right; }
.title-buttons h1,
.title-buttons h2,
.title-buttons h3,
.title-buttons h4,
.title-buttons h5,
.title-buttons h6 { /*float:left;*/ text-align:left; }
.title-buttons .link-print { float:right; /*margin-left:5px;*/ padding-top:2px; }

.subtitle { clear:both; padding:10px 0; font-size:18px; color:#d12c01; }

.page-popup .page-title,

.col1-layout .col-main .page-title { margin-top:-20px; }

.sub-title { font-size:16px; font-weight:normal; color:#000; line-height:19px; margin:0 0 10px; }
.sub-title .separator { font-weight:normal; }
.sub-title a { font-size:11px; font-weight:normal; text-transform:lowercase; }
.section-title { font-size:14px; font-weight:normal; color:#151515; margin:0 0 5px; }

/* Pager */

.my-account .pager { margin:15px 0; font-size:11px; padding:4px 12px 3px 8px; background:#eaeaea url(../images/bkg_pager.gif) repeat-x 0 0; border:1px solid #ddd; color:#333; height:19px; }
.pager { margin:15px 0; font-size:11px; padding:3px 12px 3px 8px; background:#eaeaea url(../images/bkg_pager.gif) repeat-x 0 0; border:1px solid #ddd; color:#333; }
.pager p { margin:0 !important; }
.pager select { padding:0; margin-bottom:4px; width:40px; height:19px; border:1px solid #c4c4c4; }
.pager .amount { float:left; line-height:20px; font:bold 12px Tahoma, Arial, "Cambria Math", "Palatino Linotype"; color:#3c3c3c; padding-top:2px; }
.pager .amount strong { font-weight:normal; }
.pager .limiter { float:right; line-height:normal; }
.pager .pages { margin:0 135px; text-align:center; color:#333; line-height:normal; float:left;  }
.pager .pages a { color:#3c3c3c; text-decoration:underline; }
.pager .pages a:hover { color:#8c8c8c; text-decoration:none; }
.pager .pages ol,
.pager .pages li { display:inline; padding:0 2px; }
.pager .pages .current { font-weight:bold; }
.pager .pages .i-previous,
.pager .pages .i-next { text-decoration:none !important; vertical-align:middle; }
.pager-only { clear:both; }
.pager-only .pages { margin:0; }

/* Sorter */
.sorter { font-size:11px; margin:0 0 0; /*padding:4px 12px 3px 8px;*/ background:#fff url(../images/bkg_pager.gif) repeat-x 0 0; border-bottom:1px solid #ddd; color:#333; }
.sorter p { margin:0; }
.sorter select { padding:0; margin-bottom:1px; }
.sorter .view-mode { float:left; line-height:20px; white-space:nowrap; margin:5px 0 5px 8px; }
.sorter .view-mode label { float:left; margin:0 5px 0 0; font:bold 12px Tahoma, Arial, "Cambria Math", "Palatino Linotype"; color:#3c3c3c; padding-top:3px; }
.sorter .view-mode a.list-fix,
.sorter .view-mode a.list,
.sorter .view-mode strong.list-fix,
.sorter .view-mode strong.list,
.sorter .view-mode a.grid-fix,
.sorter .view-mode a.grid,
.sorter .view-mode strong.grid-fix,
.sorter .view-mode strong.grid { background:url(../images/bkg_viewmode.gif) no-repeat 0 0; float:left; width:24px; height:17px; text-align:left; text-indent:-999em; overflow:hidden; margin:2px 0 0; }
.sorter .view-mode a.list { background-position:-24px 0; }
.sorter .view-mode strong.list { background-position:-24px -29px; }
.sorter .view-mode a.grid { background-position:0 0; }
.sorter .view-mode strong.grid { background-position:0 -29px; }

.sorter .view-mode a.list-fix { background-position:0 -58px; }
.sorter .view-mode strong.list-fix { background-position:0 -87px; }
.sorter .view-mode a.grid-fix { background-position:-24px -58px; }
.sorter .view-mode strong.grid-fix { background-position:-24px -87px;; }

.sorter .sort-by { float:right; line-height:20px; margin:4px 0 0 0; }
.sorter .link-feed {}

/* Toolbar */
.toolbar { margin-top:-1px; }
.toolbar .pager { margin:0 0 0; border-width:1px 0; height:20px;}
.toolbar-bottom { display:none; }

/* Data Table */
.table-caption { /*border:1px solid #ddd;*/ border-bottom:0; margin:-1px 0 0; background:#fff url(../images/bkg_block-title.gif) 0 100% repeat-x; font:14px/1.25 Arial, Helvetica, sans-serif; padding:3px 7px 4px; color:#444; }
.table-caption a { font-size:11px; text-transform:lowercase; }
/*.data-table { border:1px solid #d9d9d9; border-bottom:0; width:100%; border-collapse:separate; }*/
.data-table { width:100%;}
.data-table th { padding:5px 12px; color:#2d2d2d; font:bold 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype"; border-bottom:1px solid #d9d9d9; text-transform:uppercase; white-space:nowrap; background-color:#d9d9d9; }
.data-table td { padding:5px 12px; border-bottom:1px solid #d9d9d9; }
.data-table thead { background:#d9d9d9; font-size:11px; }
.data-table tbody {}
.data-table tfoot tr td {background:#ededed;}
.data-table tfoot td { padding:5px 12px; }
.data-table tfoot th { border:none; text-transform:none; }
.data-table tr.first {}
.data-table tr.last {}
.data-table tr.last th,
.data-table tr.last td { border-bottom:1px solid #d9d9d9; }
.data-table tr.odd { background-color:#fff; }
.data-table tr.even { background-color:#fafafa; }
.data-table tbody.odd {}
.data-table tbody.odd td { border-width:0 1px; }
.data-table tbody.even { background-color:#f5f5f5; }
.data-table tbody.even td { border-width:0 1px; }
.data-table tbody.odd tr.border td,
.data-table tbody.even tr.border td { border-bottom-width:1px; }
.data-table th .tax-flag { white-space:nowrap; font-weight:normal; }
.data-table td.label,
.data-table th.label { font-weight:bold; text-transform:none; border-color:#fff; background-color:#f7f7f7; }
.data-table td.value { float:none !important; }
.data-table .link-rss { display:block; }

.page-popup .data-table td,
.page-popup .data-table th { border-bottom:1px solid #d9d9d9; }
.page-popup .buttons-set .button { float:right; }

/* Shopping cart total summary row expandable to details */
tr.summary-total { cursor:pointer; }
tr.summary-total td {}
tr.summary-total .summary-collapse { float:right; text-align:right; padding-left:20px; background:url(../images/bkg_collapse.gif) 0 4px no-repeat; cursor:pointer; }
tr.show-details .summary-collapse { background-position:0 -53px; }
tr.show-details td {}
tr.summary-details td { background-color:#ede9e6; font-size:12px; padding:5px !important; }
tr.summary-details-first td {}
tr.summary-details-excluded { font-style:italic; }

/* Shopping cart tax info */
.cart-tax-info,
.cart-tax-info .cart-price { display:block; padding-right:20px; }
.cart-tax-total { display:block; padding-right:20px; background:url(../images/bkg_collapse.gif) 100% 3px no-repeat; cursor:pointer; }
.cart-tax-total-expanded { background-position:100% -54px; }

/* Links */
ul.links,
ul.links li { display:inline; }
ul.links li .separator { margin:0 2px 0 5px; font-size:10px; color:#8f8f8f; }
ul.links li.last .separator { display:none; }

/* Reward Points */
.rewards { margin:-10px 0 20px; }
.reward-message { display:block; margin:5px -15px 5px -15px; background:#d55721 url(../images/bkg_rewards.gif) 5px 3px no-repeat; padding:3px 5px 3px 32px; font:normal 12px/20px Arial, Helvetica, sans-serif; color:#fff; }
.reward-message p { display:inline; margin:0 !important; }
.reward-message .limit { display:block; font-size:11px; line-height:1.15; }
.reward-message a { color:#ffe6dc; text-decoration:underline; }
.reward-message a:hover { color:#ffe6dc; text-decoration:none; }
.reward-message .price { font-size:1em; font-weight:normal; }
/* Reward Points types rewrites */
.reward-review,
.reward-tag,
.reward-checkout { margin:0; }

/* Class: std - styles for admin-controlled content */
.std ul,
.std ol,
.std dl,
.std p,
.std address,
.std blockquote,
.std table { margin-bottom:1em; }
.std ul { list-style:disc outside; padding-left:1.5em; }
.std ol { list-style:decimal outside; padding-left:1.5em; }
.std ul ul { list-style-type:circle; }
.std ul ul,
.std ol ol,
.std ul ol,
.std ol ul { margin:.5em 0; }
.std dt { font-weight:bold; }
.std dd { padding:0 0 0 1.5em; }
.std blockquote { font-style:italic; padding:0 0 0 1.5em; }
.std address { font-style:normal; }
.std b,
.std strong { font-weight:bold; }
.std i,
.std em { font-style:italic; }
.std hr { margin:1.5em 0; color:#d9d9d9; }
.std table { width:100%; }
.std table thead { background:#e8e8e8; }
.std table th { background:#e8e8e8; font-weight:bold; }
.std table th,
.std table td { padding:5px 10px; border:1px solid #d9d9d9; }

ul.disc li { padding-left:10px; background:url(../images/bkg_bulletsm.gif) no-repeat 0 0.5em; }
.std ul.disc li { padding-left:0; background:none; }

/* Misc */
.link-rss { background:url(../images/icon_rss.gif) 100% 1px no-repeat; padding-right:18px; white-space:nowrap; }
.link-rss:hover { color:#f58550; }
.link-print { /*background:url(../images/icon_printer.gif) 0 0px no-repeat;*/ padding:0px 0 2px 5px; white-space:nowrap; }
.link-cart { font-size:11px; font-weight:bold; color:#c73615; text-decoration:underline; }
.link-cart:hover { color:#c73615; text-decoration:none; }

.data-table .btn-remove { display:block; margin:0 auto; width:13px; height:12px; font-size:0; line-height:0; background:url(../images/btn_remove.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
.data-table .btn-remove2 {}

.divider { margin:16px 0; background:#e7e7e7; font-size:0; line-height:0; height:1px; overflow:hidden; }

/* Noscript Notice */
.noscript { border:1px solid #cfcfcf; border-width:0 0 1px; background:#ffff90; font-size:12px; line-height:1.25; text-align:center; color:#2f2f2f; }
.noscript .noscript-inner { width:940px; margin:0 auto; padding:12px 0 12px; background:url(../images/i_notice.gif) 20px 50% no-repeat; }
.noscript p { margin:0; }

/* Demo Notice */
.demo-notice { margin:0; padding:6px 10px; background:#d75f07; font-size:12px; line-height:1.15; text-align:center; color:#fff; }
/* ======================================================================================= */


/* Header ================================================================================ */
.branding { position:absolute; left:0; margin:-29px 0 0; top:50%; height:56px; }
.logo { float:left; }
.free-shipping { float:left; margin:15px 0 0 10px; display:inline; }

.header-container { margin:0 0 13px; text-align:left; }
/*.header { padding:8px 0 9px; min-height:56px; position:relative; z-index:5; width:940px; }*/
.header .logo { text-decoration:none !important; }
.header .logo strong { position:absolute; top:-999em; left:-999em; width:0; height:0; font-size:0; line-height:0; text-indent:-999em; overflow:hidden; }
.header h1.logo {}
.header .quick-access { width:410px; float:right; padding:10px 0 0; }
.header .quick-access .links { float:right; line-height:18px; white-space:nowrap; }
.header .quick-access .links li { /* float:left; line-height:18px; */ padding:0 7px 0 4px; background:url(../images/bkg_sep.gif) no-repeat 100% 4px; }
.header .quick-access .links li a { color:#1e75b4; text-transform:uppercase; text-decoration:none; }
.header .quick-access .links li a:hover { color:#d33911; }
.header .quick-access .checkout-link li { font-weight:bold; padding:0 0 0 12px; background-position:6px 4px; }
.header .quick-access .cart-link li { font-weight:bold; padding:0 0 0 0px; background:none; }


#invitation-send-link { background:url(../images/bkg_sep.gif) no-repeat 100% 50%; padding:0 6px 0 0; margin:0 4px 0 0; font-weight:bold; }
#invitation-send-link a { background:url(../images/bkg_invitation-link.gif) no-repeat 3px 6px; padding-left:23px; display:inline-block; }

#invitation-send-link a, x:-moz-any-link { background-position:3px -2px; }/* FireFox 2 fix */
#invitation-send-link a, x:-moz-any-link, x:default { background-position:3px 6px; }/* FireFox 3 restore */

.header-panel { text-align:center; z-index:994; background:#fff url(../images/bkg_header-panel-bg.gif) repeat-x 0 100%; /* border-bottom:1px solid #c8c8c8; */ /* height:28px; */ line-height:28px; padding:0 0 0 11px; }
.header-panel .welcome-msg { font-weight:bold; display:inline; float:left; line-height:28px; margin-right:5px; }
.header-panel .links { float:left; line-height:28px; margin-right:11px; white-space:nowrap; }
.header-panel .links li a { color:#1e75b4; }
.header-panel .links li a:hover { color:#d33911; }

.switches { float:right; background:#fff url(../images/bkg_header-panel-bg.gif) repeat-x 0 100%; padding:0 0 1px 0; }

.switch { line-height:28px; margin-left:-1px; margin-right:0; display:inline; float:left; background:url(../images/bkg_header-panel.gif) no-repeat 0 -29px; padding-left:13px; }
.switch label { font-weight:normal; margin-right:0; float:left; }
.switch .switch-wrapper { float:left; position:relative; z-index:1; padding-left:7px; padding-right:11px; }
.switch strong.current { font-weight:normal; }
.switch .separator { margin:0 2px; font-size:10px; color:#8f8f8f; }
.switch .switcher { color:#1e75b4; cursor:pointer; background:url(../images/bkg_header-panel.gif) no-repeat 100% -73px; padding:0 10px 0 0; margin:0 3px 0 1px; }
.switch ul { position:absolute; min-width:100%; text-align:left; top:0; left:0; float:left; line-height:16px; padding:0 0 0 0; border-top:0; }
.switch ul li { vertical-align:top; display:block; white-space:nowrap; border:1px solid #c8c8c8; border-top:0; }
.switch ul li a { white-space:nowrap; display:block; background:#f2f2f2; padding:4px 6px; color:#1e75b4; text-decoration:none; }
.switch ul li a:hover { color:#d33911; background:#f8f8f8; }
.switch ul .current { line-height:28px; border:0; cursor:default; padding:0 7px; visibility:hidden; /* background:url(../images/bkg_header-panel.gif) repeat-x 0 0; */ }
.switch ul .current span { padding-right:20px; background:url(../images/bkg_close.gif) no-repeat 100% 1px; }
.switch .faded { color:#8f8f8f; }
.switch .faded li { border-color:#e6e6e6; background-color:#f6f6f6; }
.switch .faded a { color:#9ac1dd; }

.switch ul, x:-moz-any-link { width:100%; }/* FireFox 2 fix */
.switch ul, x:-moz-any-link, x:default { width:auto; }/* FireFox 3 restore */

.list-opened { background-position:100% -129px !important; color:#d33911 !important; }

.header .form-search { float:right; clear:right; padding:5px 0 0; white-space:nowrap; }
.header .form-search label { display:none; }
.header .form-search input.input-text { background:#fff url(../images/bkg_search-input.gif) no-repeat 0 0; padding-left:23px; width:185px; }
.header .form-search a { display:none; }
.header .form-search button.button { margin:0 0 0 2px; }
.header .form-search .search-autocomplete { z-index:999; position:relative!important; top:0 !important; left:0 !important; height:0 !important; overflow:visible !important; }
.header .form-search .search-autocomplete ul { border:1px solid #c7c7c7; border-top:0; padding-left:0; width:210px; background-color:#fcf8f4; position:absolute; top:-1px; }
.header .form-search .search-autocomplete li { padding:4px 6px 4px 24px; border-bottom:1px solid #fff; font-size:12px; cursor:pointer; }
.header .form-search .search-autocomplete li .amount { float:right; font-weight:bold; }
.header .form-search .search-autocomplete li.selected {}
.header .form-search .search-autocomplete li.last { border-bottom:0; }

/********** < Navigation */
.nav-container { background:url(../images/bkg_nav.gif) 0 100% no-repeat; padding-bottom:3px; margin-bottom:-1px; position:relative; z-index:4; }

#nav { width:932px; min-height:28px; background:#dedede url(../images/bkg_nav.gif) 0 0 no-repeat; text-align:left; padding:0 4px 0; }

/* All Levels */
#nav li.over { z-index:990; }
#nav li.parent { position:relative; }
#nav li a span { cursor:pointer; }

/* 1st Level (Top Level) */
#nav li.level-top { float:left; height:28px; position:relative; z-index:1; }
#nav a.level-top { float:left; height:28px; background:url(../images/bkg_nav-item-border.gif) 100% 0 no-repeat; font-weight:bold; font-size:13px; line-height:28px; padding:0 0 0 17px; border-top:1px solid #c0c0c0; text-decoration:none !important; color:#333; }
#nav a.level-top span { float:left; background:url(../images/bkg_nav-item-border.gif) 100% 0 no-repeat; padding:0 19px 0 0; white-space:nowrap; }

#nav li.over a.level-top,
#nav li.active a.level-top { height:29px; background-position:0 -60px; margin-left:-1px; border:0; padding:0 0 0 18px; }
#nav li.over a.level-top { height:31px; line-height:30px; position:relative; z-index:2; }

#nav li.over a.level-top span,
#nav li.active a.level-top span { background-position:100% -60px; padding:1px 19px 0 0; }

/* 2nd Level */
#nav ul,
#nav div { position:absolute; width:13.5em; top:30px; left:-10000px; background:#fbfbfb; padding:5px 11px 10px; border:1px solid #aeaeae; border-top:0; }
#nav div ul { position:static; width:auto; background:none; padding:0; border:0 !important; }

#nav ul li { float:none; height:auto; display:block; border-bottom:1px solid #e2e2e2; }
#nav ul li.last { border-bottom:0; }
#nav ul li.parent { background:url(../images/bkg_parent.gif) 100% 50% no-repeat; }
#nav ul li a { display:block; font-size:12px; line-height:1.2; padding:5px 4px; text-decoration:none !important; color:#444; }
#nav ul li.last > a { padding-bottom:0; }
#nav ul li a:hover { color:#d02600; }
#nav ul li a span {}
#nav ul li.over a.over { color:#d02600; }
#nav ul li.active > a { color:#d02600; }

/* 3rd+ Level */
#nav ul ul,
#nav ul div { top:7px; border-top:1px solid #aeaeae; }

/* Show Menu */
#nav li .shown-sub { left:-1px; z-index:991; }
#nav li .shown-sub .shown-sub { left:100px; }
/********** Navigation > */
/* ======================================================================================= */


/* Block: Events */
.event { background-color:#fbf4de; border-bottom:1px solid #e2d4c7; width:182px; position:static; height:144px; text-align:center; }
.event .status { font-weight:normal; font-size:16px; display:block; padding:19px 0 0; margin:0 0 0; text-align:center; color:#cf3a00; }
.event .event-ticker { color:#cf3a00; height:55px; }
.event .event-ticker span { font-size:32px; line-height:40px; height:40px; padding-bottom:10px; background-image:url(../images/bkg_ticker.gif); background-repeat:no-repeat; display:inline-block; }

.event .event-ticker span, x:-moz-any-link { padding-bottom:13px; }/* FireFox 2 fix */
.event .event-ticker span, x:-moz-any-link, x:default { padding-bottom:10px; }/* FireFox 3 restore */

.event .event-ticker span.days { background-position:50% 3px; }
.event .event-ticker span.hour { background-position:50% -56px; }
.event .event-ticker span.minute { background-position:50% -115px; }
.event .event-ticker span.second { background-position:50% -174px; }
.event .event-ticker span.delimiter { background:none; }
.event .event-dates { font-size:14px; color:#555; height:51px; padding-top:4px; }
.event .event-dates .date-part { font-weight:bold; }
.event .event-dates .time-part { font-size:12px; }

.col-main .event .event-button { background:url(../images/bkg_btn-co.gif) 0 50% no-repeat; line-height:27px !important; height:27px !important; padding:0 0 0 13px !important; vertical-align:middle; }
.col-main .event .event-button span { width:121px; text-align:center; background:url(../images/bkg_btn-co.gif) 100% 50% no-repeat; padding:0 13px 0 0 !important; color:#fff; font:bold 15px/27px Arial, Helvetica, sans-serif !important; height:27px !important; text-transform:none; }

.event p a { color:#666; font-size:11px; }

.event .event-bottom { background:url(../images/bkg_slider-events.gif) no-repeat 50% 0; position:absolute; z-index:2; height:12px; width:23px; left:50%; margin-left:-11px; bottom:-12px; }

.open .event-button span {}

.upcoming { background:#f6f6f6; }
.upcoming .status { color:#333; }
.closed .event-button,
.col-main .closed .event-button,
.col-main .upcoming .event-button,
.upcoming .event-button,
.closed .event-button span,
.col-main .closed .event-button span,
.col-main .upcoming .event-button span,
.upcoming .event-button span { line-height:27px !important; font-size:12px !important; /*color:#7c7b7b*/ !important; background:none !important; padding:0 !important; width:auto !important; display:inline !important; text-transform:capitalize; }
.upcoming .event-button { text-decoration:underline !important; }
.upcoming .event-button:hover { text-decoration:none !important; }
.upcoming p a { color:#666; }
.upcoming .event-bottom { background-position:50% -187px; }

.closed { background:#494949; }
.closed .status,
.closed .event-dates { color:#e2d4c7 }
.closed .event-button {}

.event-container { clear:both; border:1px solid #d0af83; position:relative; z-index:2; border-width:1px 1px; margin-top:7px; margin-bottom:-5px; height:59px; }
.event-container .event { background-color:transparent; background-repeat:no-repeat; background-position:50% 100%; padding-bottom:18px; margin-bottom:-18px; padding-top:5px; height:52px; line-height:50px; text-align:center; width:auto; position:relative; z-index:2; border-bottom:0 !important; }
.event-container .container { display:inline; margin:0; padding:0; background:none; }
.event-container .status { display:inline; margin:0 10px 0 0; background:none; font-size:22px; }
.event-container .event-ticker { display:inline; font-size:28px; height:auto; }
.event-container .event-ticker span { line-height:50px; height:50px; padding:0; }

.event-container .event-ticker span , x:-moz-any-link { padding:5px 0 5px; }/* FireFox 2 fix */
.event-container .event-ticker span , x:-moz-any-link, x:default { padding:0; }/* FireFox 3 restore */

.event-container .event .event-ticker span.days { background-position:50% 4px; }
.event-container .event .event-ticker span.hour { background-position:50% -55px; }
.event-container .event .event-ticker span.minute { background-position:50% -114px; }
.event-container .event .event-ticker span.second { background-position:50% -173px; }

.event-container .event-dates { display:inline; font-size:22px; height:auto; }
.event-container .event-dates .time-part { font-size:14px; }
.event-container .event-dates div,
.event-container .event-dates p { display:inline; }

.container-open { background:#f7d4b6 url(../images/bkg_event-container-open.gif) repeat-x 0 0; }
.container-open .open { background-image:url(../images/bkg_event-container-open.gif); padding-top:3px; height:54px; }

.container-upcoming { border-color:#d0d0d0; background:#eeeeee url(../images/bkg_event-container-upcoming.gif) repeat-x 0 0; }
.container-upcoming .upcoming { background-image:url(../images/bkg_event-container-upcoming.gif); }

.container-closed { background:#9f958c }

/* Block: Events Lister */
.col3-layout .col-main .widget-events { margin:0 -20px 1px; position:relative; z-index:1; }
.widget-events { padding:11px; background:#f0eae3; }
.col1-layout .col-main .widget-events { padding:12px; }
.events-slider { position:relative; clear:both; margin:0 0 0; border:1px solid #d0c2b6; z-index:2; }
.events-slider .slider-panel,
.events-slider ul.slider li.slider-item,
.events-slider .slide-button { float:left; display:inline; }
.events-slider .event { position:relative; z-index:1; }

.events-slider .slider-panel { position:relative; overflow:hidden; background:#d0c2b6; z-index:1; width:0; }
.events-slider ul.slider { width:200000px; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=1)" !important; }
.events-slider ul.slider li.slider-item { overflow:hidden; width:182px; height:386px; border-right:1px solid #d0c2b6; background:#f5f5f5 url(../images/bkg_block.gif) repeat-x 0 0; padding-left:0; }
.events-slider ul.slider li.slider-item .category-name { font-size:16px; font-weight:normal; color:#454343; display:block; padding:80px 10px 0; }
.events-slider ul.slider li.slider-item .category-show { width:182px; height:241px; background:#fff url(../images/bkg_category-info.gif) repeat-x 0 100%; overflow:hidden; text-align:center; display:block; text-decoration:none; }
.events-slider ul.slider li.slider-item .no-event { height:401px; }

.events-slider .slide-button { background:url(../images/bkg_slide-button.gif) no-repeat 0 0; position:absolute; text-indent:-999em; cursor:pointer; top:17px; width:28px; height:28px; z-index:2; overflow:hidden; }
.events-slider .backward { left:-11px; }
.events-slider .forward { right:-11px; background-position:0 -40px; }
.events-slider .inactive { cursor:default; display:none; }

.sidebar .widget-events { background:none; padding:0; }
.sidebar .events-slider { border:1px solid #cfcfcf; margin:-1px -1px 0; background:#fff; padding:0; }
.sidebar .events-slider .event { height:115px; }
.sidebar .events-slider ul.slider li.slider-item { width:182px; height:300px; margin:0; border-color:#cfcfcf; border-width:0 1px 0 0; }
.sidebar .events-slider ul.slider .status { padding-top:10px; padding-bottom:5px; }
.sidebar .events-slider ul.slider .event-dates { height:40px; }
.sidebar .events-slider ul.slider li.slider-item .category-name { font-size:16px; font-weight:normal; color:#454343; display:block; padding:50px 10px 0; }
.sidebar .events-slider ul.slider li.slider-item .category-show { height:241px; background:#fff url(../images/bkg_category-info.gif) repeat-x 0 100%; }

.sidebar .events-slider { margin-top:-1px; }
.sidebar .events-slider .backward { left:3px; top:6px; }
.sidebar .events-slider .forward { right:3px; top:6px; }

.sidebar .events-slider .event-ticker { height:45px; }
.sidebar .events-slider .event-ticker span { font-size:22px; line-height:28px; height:28px; padding-bottom:10px; background-image:url(../images/bkg_ticker1.gif); background-repeat:no-repeat; display:inline-block; }
.sidebar .events-slider .event-ticker span.days { background-position:50% -10px; }
.sidebar .events-slider .event-ticker span.hour { background-position:50% -69px; }
.sidebar .events-slider .event-ticker span.minute { background-position:50% -128px; }
.sidebar .events-slider .event-ticker span.second { background-position:50% -185px; }

/* Sidebar =============================================================================== */
.sidebar .callout { display:block; margin:10px 0; }

/* Generic Block */
.sidebar .block { border-bottom:1px solid #cfcfcf; background:#f5f5f5 url(../images/bkg_block.gif) repeat-x 0 0; }
.sidebar .block .block-title { padding:17px 17px 0 17px; }
.sidebar .block .block-title strong { display:block; font:14px/1.25 Arial, Helvetica, sans-serif; padding:0; color:#222; }
.sidebar .block .block-title strong span {}
.sidebar .block .block-title strong small { font-size:12px; color:#777; }
.sidebar .block .block-subtitle,
.sidebar .block h3 { font-size:1em; font-weight:bold; color:#555; }
.sidebar .block .block-content { padding:10px 17px 17px; color:#555; }
.sidebar .block .btn-remove { color:#222; margin-right:3px; }
.sidebar .block .btn-remove a { color:#222 !important; text-decoration:none !important; }
.sidebar .block .actions { margin:8px 0 0; text-align:right; }
.sidebar .block .actions a { float:left; color:#999; margin-top:3px; }
.sidebar .block .actions button.button { float:right; }

.sidebar .block li a.btn-remove { float:right; width:13px; height:0; padding-top:12px; margin-top:3px; overflow:hidden; background:url(../images/btn_remove.gif) no-repeat 0 0; }

.col-main .block { background:#fff; }
.col-main .block .block-title { background:#e7e7e7 url(../images/bkg_block-title.gif) repeat-x 0 0; border:1px solid #e1e1e1; padding:5px 20px 5px; margin:0 -1px; }
.col-main .block .block-title h2,
.col-main .block .block-title h3 { font-size:14px; line-height:1.2; color:#000333; font-weight:bold; }
.col-main .block .block-content { padding:20px; }

/* Generic box */
.info-box { border:1px solid #cfcfcf; margin-top:-1px; background:#f5f5f5 url(../images/bkg_block.gif) repeat-x 0 0; position:relative; z-index:1; }
.info-box .box-title { margin:17px 17px 0 17px; font:14px/1.25 Arial, Helvetica, sans-serif; padding:0; color:#222; }
.info-box .box-title a { font-size:11px; text-transform:lowercase; }
.info-box .box-content { padding:10px 17px 17px; color:#555; }

.info-table th { font-weight:bold; padding:2px 15px 2px 0; }
.info-table td { padding:2px 0; }

/* Block: Account */
.sidebar .block-account { background:#f5f5f5 url(../images/bkg_block.gif) repeat-x 0 0; }
.sidebar .block-account .block-title { padding:26px 17px 12px; border-bottom:1px solid #d1d1d1; }
.sidebar .block-account .block-title strong { font-size:18px; line-height:23px; color:#111; }
.sidebar .block-account .block-content { padding:0; }
.sidebar .block-account li { background:url(../images/bkg_dots.gif) repeat-x 0 100%; font-size:12px; padding-bottom:1px; }
.sidebar .block-account li a { color:#666; text-decoration:none; display:block; padding:5px 13px 4px; }
.sidebar .block-account li a:hover { color:#d63200; background-color:#f7eedb; color:#000; text-decoration:none; }
.sidebar .block-account li.current { font-weight:bold; background:#fff; border:1px solid #d1d1d1; border-width:1px 0; color:#000; padding:5px 13px 4px 14px; margin:-1px -1px 0 0; }
.sidebar .block-account li.last { border-bottom:0; background-image:none; }

/* Block: Layered Navigation */
.sidebar .block-layered-nav { background:none; }
.sidebar .block-layered-nav .block-title { padding:26px 17px 12px; /* border-bottom:1px solid #d1d1d1; */ }
.sidebar .block-layered-nav .block-title h2 { font-size:18px; color:#111; }
.sidebar .block-layered-nav .block-subtitle { display:none; }
.sidebar .block-layered-nav dt { margin:2px 0 0; font-weight:bold; font-size:12px; color:#222; }
.sidebar .block-layered-nav dd { margin:0 0 13px; color:#666; }
.sidebar .block-layered-nav dd.last { margin:0; }
.sidebar .block-layered-nav dd li { margin:2px 0; }
.sidebar .block-layered-nav dd a { color:#222; text-decoration:none; }
.sidebar .block-layered-nav dd a:hover { text-decoration:underline; }
.sidebar .block-layered-nav .currently { border:1px solid #d1d1d1; border-width:1px 0; padding:10px 10px 10px 17px; margin-bottom:-1px; background:#f4f4f4 url(../images/bkg_currently.gif) repeat-x 0 -20px; }
.sidebar .block-layered-nav .currently .block-subtitle { display:block; }
.sidebar .block-layered-nav .currently li { padding:5px 0; color:#444; }
.sidebar .block-layered-nav .currently .label { font-weight:bold; color:#d33911; font-size:12px; }
.sidebar .block-layered-nav .actions { text-align:left; padding-right:7px; display:none; }

/* Block: Cart */
.sidebar .block-cart .block-title { background:#363636; padding:7px 17px; }
.sidebar .block-cart .block-title strong { font-weight:bold; color:#fff; }
.sidebar .block-cart .summary { margin:0 -17px; padding:0 12px 5px; background:#363636; color:#fff; text-align:center; position:relative; z-index:1; }
.sidebar .block-cart .summary a { font-weight:bold; color:#fff; }
.sidebar .block-cart .summary .subtotal { margin:3px 0 0; }
.sidebar .block-cart .summary .subtotal .price { font-weight:bold; }
.sidebar .block-cart .actions { margin:8px 0 13px; text-align:center; }
.sidebar .block-cart .actions button.button { float:none; }
.sidebar .block-cart .block-content { padding-top:0; }
.sidebar .block-cart .block-content table { margin:5px 0 0 0; }
.sidebar .block-cart .block-content table th { padding:1px 5px 1px 0; color:#8f8f8f; text-align:right; }
.sidebar .block-cart .block-content table td { text-align:left; padding:1px 0; }
.sidebar .block-cart  li a.btn-remove { float:none; background:none; margin:0; padding:0; width:auto; height:auto; overflow:visible; }

.mini-products-list li.item { padding:5px 0; border-bottom:1px solid #cfcfcf; }
.mini-products-list li.last { border:none; }
.mini-products-list .product-image { float:left; width:50px; margin-right:-50px; }
.mini-products-list .product-details { margin-left:65px; }
.sidebar .mini-products-list .product-details { margin-left:57px; }
.mini-products-list .product-details .product-name { font-size:11px; }
.mini-products-list .product-details .price-box { margin:5px 0; }
.mini-products-list .product-details h4 {}
.mini-products-list .product-details .btn-remove { font-size:11px; }

.sidebar .mini-products-images-list li.item { float:left; padding:5px; text-align:center; }

.block-products .mini-products-list .product-details { margin-left:65px; }

/* Top Shopping Cart */
.top-cart { float:right; /* width:360px; */ position:relative; padding-left:7px; }
.top-cart .block-title { white-space:nowrap; /* _width:242px; min-width:242px; */ cursor:pointer; background:#fff url(../images/bkg_topcart.gif) 0 3px no-repeat; color:#1e75b4; font-weight:bold; font-size:11px; text-transform:uppercase; padding:0 0 0 18px; line-height:18px; height:18px; }
.top-cart .block-title strong { display:block; padding-right:10px; background:url(../images/bkg_header-panel.gif) 100% -71px no-repeat; font-size:11px; color:#1e75b4; font-weight:bold; text-decoration:none; }
.top-cart .block-title.expanded { background-position:0 3px !important; }
.top-cart .block-title.expanded strong { background-position:100% -126px !important; color:#d33911; }
/* .top-cart .no-items { cursor:default; }
.top-cart .no-items h3 { background:none; } */
.top-cart .block-content { position:absolute; right:0; top:20px; width:267px; background:#fdfdfd; }
.top-cart .inner-wrapper { border:1px solid #c1c1c1; }

.top-cart .block-content .block-subtitle { font-size:10px; color:#d12c01; font-weight:bold; text-transform:uppercase; background:url(../images/bkg_header-panel.gif) repeat-x 0 -8px; line-height:12px; padding:3px 10px 4px; }
.top-cart .block-content .block-subtitle .close-btn { float:right; width:13px; height:0; padding-top:12px; text-align:left; overflow:hidden; cursor:pointer; background:url(../images/bkg_close.gif) no-repeat 0 0; position:relative; z-index:1; }
.top-cart .cart-empty .close-btn { float:right; width:13px; height:0; padding-top:12px; text-align:left; overflow:hidden; cursor:pointer; background:url(../images/bkg_close.gif) no-repeat 0 0; position:relative; z-index:1; }
.top-cart .cart-empty { padding:10px 10px 10px 20px; }
.top-cart .block-content ol { padding-bottom:7px; }
.top-cart .block-content .item { padding:8px 5px 8px 11px; }
.top-cart .block-content .item .product-name { font-size:11px; line-height:14px; }
.top-cart .block-content .item .product-name a { font-size:11px; text-decoration:none; color:#444; }
.top-cart .block-content table { margin:5px 0 0 0; }
.top-cart .block-content table th { padding:1px 8px; color:#8f8f8f; text-align:right; }
.top-cart .block-content table td { text-align:left; padding:1px 0; }
.top-cart .block-content .subtotal { background:#fff url(../images/bkg_dots.gif) repeat-x 0 0; padding:2px 5px; text-align:center; }

.top-cart .actions { background:#e3e3e3 url(../images/bkg_dots.gif) repeat-x 0 -1px; text-align:center; padding:5px 11px; text-align:right; }
.top-cart .actions a { float:left; line-height:23px; }
.top-cart .actions button { float:none; }
.top-cart .actions button.button span,
.top-cart .actions button.button span span { background-image:url(../images/bkg_btn-onbg.gif); background-repeat:no-repeat; }
.top-cart .paypal-logo a { float:right; }
.top-cart .paypal-logo .paypal-or { clear:both; display:block; margin: 5px 33px 5px 0px; }

/* Block: Wishlist */
.block-wishlist {}

/* Block: Compare Products */
.block-compare li {}

/* Block: List */
.block-list .block-content ol { margin:-5px -13px; }
.block-list li.item { padding:5px 10px 5px 13px; }
.block-list .actions { padding:5px 0 0; }
.sidebar .block-list .product-name { font:normal 11px/1.25 Arial, Helvetica, sans-serif; color:#444; }
.sidebar .block-list .product-name a { color:#444; }

/* Block: Poll */
.block-poll li { margin:5px 0; }
.block-poll input.radio { float:left; margin:1px -18px 0 0; /*vertical-align:top;*/ }
.block-poll .label { display:block; margin-left:18px; }
.block-poll .answer {}
.block-poll .votes { float:right; font-weight:bold; margin-left:10px; }

/* Block: Tags */
.block-tags ul,
.block-tags li { display:inline; }

/* Block: Subscribe */
.block-subscribe {}

/* Block: Reorder */
.block-reorder li { padding:5px 0; }
.block-reorder input.checkbox { float:left; margin:3px -20px 0 0; }
.block-reorder .product-name { margin-left:20px; font-size:11px; font-weight:normal; }

/* Block: Banner */
.block-banner { border:0; margin:10px 0; }
.block-banner .block-content { border-top:0; padding:0; background:#cbcbcb; text-align:center; }
.top-container .block-banner { background:#d0d0d0; margin:0; }

/* Paypal */
.sidebar .paypal-logo { display:block; margin:10px 0; text-align:center; }
/* ======================================================================================= */


/* Category Page ========================================================================= */
/*.category-view { margin:0 -20px -20px; }*/

.category-title { margin-bottom:0; border:none; text-align:left; }
.category-title .rss-feed { float:right; margin:7px 0 0; padding-left:17px; line-height:12px; background:url(../images/icon_rss.gif) 0 0 no-repeat; white-space:nowrap; text-decoration:none; }
.category-title .rss-feed:hover { text-decoration:underline; }

.category-view .note-msg,
.category-description { padding:20px; }

.results-view { margin:0 -20px -20px; }
.results-view .recommendations { padding:20px 20px 0; }
.catalogsearch-result-index .page-title { margin-bottom:0; }
.catalogsearch-result-index .note-msg { margin:20px 0; }

.sidebar .category-title { margin:0; }
.category-image { text-align:center; margin:0 0 0px 0px; }
.category-image img { display:block; margin:0 auto; }

.category-products { padding:25px 8px 0 8px; }
.category-products .price-box { font-size:12px; }

/* View Type: Grid */
/*.products-grid { padding:0 0 0 20px; margin:0 0 40px 0; }*/
.products-grid li.item { float:left; width:160px; margin-right:20px; overflow:hidden; }
.products-grid li.last { margin-right:0; }
.products-grid .actions {}
.products-grid .product-image { display:block; text-decoration:none !important; margin:0 auto 10px; /*position:relative;*/ width:135px; }
.products-grid .product-name { margin-bottom:7px; }
.products-grid .ratings { text-align:left; line-height:13px; }
.products-grid .rating-links { display:block; padding:2px 0 0; clear:both; }
.products-grid .price-box { /*margin:5px 0 0px;*/ clear:both; }

/* View Type: List */
.products-list li.item { margin:0 0 20px 0; padding:0 20px 20px 20px; background:url(../images/bkg_dots.gif) repeat-x 0 100%; }
.products-list li.last { background-image:none; }
.products-list .product-image { float:left; margin-right:-186px; text-decoration:none !important; position:relative; }
.products-list .product-shop { margin-left:186px; }
.products-list .product-name { margin-bottom:5px; }
.products-list .price-box { margin:5px 0 10px; }
.products-list .desc { margin:5px 0 10px; font-size:12px; }
.products-list .desc .link-learn { white-space:nowrap; }

.products-grid .special-price,
.products-list .special-price { font-size:12px; }
/* ======================================================================================= */


/* Product View ========================================================================== */
.catalog-product-view .col1-layout .col-main { padding-top:0; }

.col2-left-layout .product-view,
.col2-right-layout .product-view { background:none; width:755px; }
.col2-left-layout .product-view .product-shop,
.col2-left-layout .product-view .product-collateral,
.col2-right-layout .product-view .product-shop,
.col2-right-layout .product-view .product-collateral { float:none; width:695px; }
.col2-left-layout .product-view .product-img-box,
.col2-right-layout .product-view .product-img-box { float:none; width:auto; }
.col2-left-layout .product-view .product-img-box .product-image,
.col2-right-layout .product-view .product-img-box .product-image { margin:0 auto; }

.col3-layout .product-view { background:none; width:572px; }
.col3-layout .product-view .product-shop,
.col3-layout .product-view .product-collateral { float:none; width:512px; }
.col3-layout .product-view .product-img-box { float:none; width:auto; }
.col3-layout .product-view .product-img-box .product-image { margin:0 auto; }

/*.product-view { background:#fff url(../images/bkg_cols.gif) repeat-y 279px 0; border-top:1px solid #cfcfcf; margin:-1px -20px -20px; float:left; width:938px; }*/
#messages_product_view { position:relative; z-index:1; }
#messages_product_view .messages { margin:0 0 1px; }
#messages_product_view .messages li { margin:0; position:relative; z-index:1; }

.product-essential {}

/*.product-collateral { float:right; clear:right; width:416px; padding:30px; }*/
.product-collateral .emailto-link { font-size:11px; margin:0; background:url(../images/bkg_arrow-bullet.gif) no-repeat 0 4px; padding-left:12px; }

.box-collateral { background:#fff; }
/*.box-collateral .box-title { background:#fff url(../images/bkg_block-title.gif) repeat-x 0 0; border:1px solid #e1e1e1; padding:5px 20px 5px; margin:0 -1px; }*/
.box-collateral .box-title h2 { font-size:14px; line-height:1.2; color:#000333; font-weight:bold; }
.box-collateral .box-content { padding:20px; }

.tab-list { position:relative; }
.tab-list .tab { float:left; cursor:pointer; }
.tab-list .last {}
.tab-list .active { cursor:default }
.tab-list .tab-container { position:absolute; left:0; width:100%; }
.tab-list .tab-content {}

.collateral-tabs { padding-bottom:20px; margin:0; }
.collateral-tabs .tab { position:relative; z-index:2; margin-right:3px; background:#dedede url(../images/bkg_collateral-tabs.gif) no-repeat 0 -39px; color:#222; padding:0 0 0 17px; font-size:12px; }
.collateral-tabs .tab span { background:url(../images/bkg_collateral-tabs.gif) no-repeat 100% -39px; padding:0 17px 0 0; line-height:24px; float:left; }
.collateral-tabs .last {}
.collateral-tabs .active { color:#000; font-weight:bold; z-index:3; border-bottom:0; background:#fff url(../images/bkg_collateral-tabs.gif) 0 0 no-repeat; }
.collateral-tabs .active span { background-position:100% 0; padding-bottom:1px; }
.collateral-tabs .tab-container { z-index:1; top:24px; background:#fff; }
.collateral-tabs .tab-content { padding:30px 25px; background:#fff; border:1px solid #c4c4c4; font-size:12px; }
.collateral-tabs .tab-content object,
.collateral-tabs .tab-content embed { width:100% !important; height:auto !important; }

/* Product Images */
/*.product-view .product-img-box { float:left; width:370px; padding:26px 46px 26px 45px; }*/
.product-view .product-img-box .product-image img { background:#fff; } /*IE8 PNG Fix */
.product-view .product-img-box p.notice { text-align:center; padding:5px 0; font-size:11px; }
.product-view .product-img-box .product-image { /*position:relative;*/ width:295px; height:260px; overflow:hidden; z-index:3; text-align:center; }
.product-view .product-img-box .product-image-zoom { position:relative; width:370px; height:370px; overflow:hidden; z-index:3; }
.product-view .product-img-box .product-image-zoom img { position:absolute; left:0; top:0; cursor:move; }
.product-view .product-img-box .zoom-notice { text-align:center; }
.product-view .product-img-box .zoom { position:relative; z-index:9; height:18px; margin:0 auto 13px; padding:0 28px; background:url(../images/slider_bg.gif) 50% 50% no-repeat; cursor:pointer; }
.product-view .product-img-box .zoom #track { position:relative; height:18px; }
.product-view .product-img-box .zoom #handle { position:absolute; left:0; top:-1px; width:9px; height:22px; background:url(../images/magnifier_handle.gif) 0 0 no-repeat; }
.product-view .product-img-box .zoom .btn-zoom-out { position:absolute; left:2px; top:0; }
.product-view .product-img-box .zoom .btn-zoom-in { position:absolute; right:2px; top:0; }
.product-view .product-img-box .more-views { margin:10px 0 0; padding:0 0 0; }
.product-view .product-img-box .more-views h2 { display:none; }
.product-view .product-img-box .more-views ul {}
.product-view .product-img-box .more-views li { float:left; border:1px solid #ddd; margin:0 6px 6px 0; list-style: none; }

.product-image-popup { margin:0 auto; }
.product-image-popup .buttons-set { clear:none; line-height:28px; margin:0 0 10px; float:right; width:150px; text-align:right; }
.product-image-popup .buttons-set .button { vertical-align:middle; float:none; }
.product-image-popup .image { display:block; clear:both; margin:15px auto 15px; }
.product-image-popup .image-label { font-size:14px; text-align:left; clear:both; font-weight:normal; color:#000; line-height:19px; margin:0 0 10px; }

.product-image-popup .nav { text-align:center; margin:0 auto; width:120px; }
.product-image-popup .nav .prev,
.product-image-popup .nav .next { margin:0 15px; display:inline; background:url(../images/bkg_slide-button.gif) no-repeat 0 0; text-indent:-999em; cursor:pointer; width:28px; height:28px; z-index:2; overflow:hidden; float:left; }
.product-image-popup .nav .prev { left:-19px; float:left; }
.product-image-popup .nav .next { right:-19px; float:right; background-position:0 -40px; }


/* jQzoom */
div.jqZoomTitle { z-index:5000; text-align:center; position:absolute; top:0; left:0; width:100%; color:#fff; background:#999; }
.jqZoomPup { overflow:hidden; background-color:#fff; z-index:10; border-color:#fff; border-style:solid; cursor:crosshair !important; /* -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; -moz-opacity:0.6; opacity:0.6; */ }
a.product-image { cursor:pointer !important; }
p.product-image { cursor:default !important; }
.zoom-activated {}
.jqZoomPup img { border:0; }
.preload { text-decoration:none; border:1px solid #ccc; padding:8px; text-align:center; background:#fff url(../images/zoomloader.gif) no-repeat 43px 30px; width:90px; height:43px; z-index:10; position:absolute; top:3px; left:3px; -moz-opacity:0.8; opacity:0.8; filter:alpha(opacity=80); }
.jqZoomWindow { border:1px solid #ccc; background-color:#fff; }

/* Product Shop */
/*.product-view .product-shop { float:right; width:416px; padding:0 30px; }*/
.product-view .product-shop .product-main-info { margin:0 0px 0px; padding:0; background:#fff url(../images/bkg_page-title.gif) repeat-x 0 0; border-bottom:1px solid #cfcfcf; }
.product-view .product-shop p,
.product-view .product-shop .ratings { margin:10px; }
.product-view .product-shop p { margin:0;}
.product-view .product-shop .ratings p { margin:0; }
.product-view .product-shop .product-ids { margin:4px 0 10px; color:#999; display:none; }
.product-view .product-shop .availability { font-size:12px; }
.product-view .product-shop .price-box { margin:8px 0 14px 0; }
.product-view .product-shop .price-box .price-label { font-size:11px; }
.product-view .product-shop .price-box .price-as-configured .price-label { font-size:12px; }
.product-view .product-shop .price-box .price-as-configured .price { color:#e55100; font-size:14px; }
.product-view .product-shop .price-box .price-including-tax .price,
.product-view .product-shop .price-box .regular-price .price { color:#111; font-size:14px; }
.product-view .product-shop .price-box .special-price .price-label,
.product-view .product-shop .price-box .special-price .price { font-size:14px; color:#c73615; }
.product-view .product-shop .price-box .price-as-configured .price-including-tax .price { color:#e55100; }
.product-view .product-shop .price-box .price-as-configured .price-excluding-tax .price { color:#222; font-size:11px; }
.product-view .product-shop .price-box p { margin:0px 0; }
.product-view .product-shop .add-to-links { margin:10px 0; }

.product-view .product-name h1 { font:bold 24px Tahoma, Arial, "Cambria Math", "Palatino Linotype"; color:#6d2e9e; padding-bottom:5px; text-transform:capitalize; }
.product-view .product-ids { text-transform:uppercase; }
.product-view .short-description { padding:10px 0; clear:both; font-size:12px; display:none; }
.product-view .short-description h2 { margin:0 0 5px; font-size:13px; }
.product-view .product-shop .add-to-cart { float:left; padding:0; }

/* Rating */
.rating-box { width:65px; height:13px; font-size:0; line-height:0; background:url(../images/bkg_rating.gif) 0 100% repeat-x; overflow:hidden; }
.rating-box .rating { float:left; height:13px; background:url(../images/bkg_rating.gif) 0 0 repeat-x; }
.ratings { margin:5px 0; }
.ratings .rating-box { float:left; margin-right:5px; }
.ratings .amount { font-size:12px; }
.ratings .rating-links { margin:0; font-size:11px; }
.ratings .rating-links a { text-decoration:underline; }
.ratings .rating-links a:hover { text-decoration:none; }
.ratings .rating-links .separator { margin:0 3px; }
.ratings dt {}
.ratings dd {}

/* Availability */
.availability { font-weight:bold; }
.availability.in-stock { color:#1b6800; }
.availability.out-of-stock { color:#cf3a00; }

.availability-only { margin:10px 0 7px; line-height:16px; background:url(../images/i_availability_only.gif) 0 50% no-repeat; padding-left:15px; }
.availability-only span,
.availability-only a { border-bottom:1px dashed #751d02; color:#000; }
.availability-only a { background:url(../images/i_availability_only_arrow.gif) 100% 0 no-repeat ; cursor:pointer; padding-right:15px; text-decoration:none; }
.availability-only .expanded { background-position:100% -15px; }
.availability-only strong { color:#d12c01; }

.availability-only-details { margin:0 0 7px; border:1px solid #d9d9d9; }
.availability-only-details thead { background:url(../images/bkg_thead.gif) repeat-x scroll 0 0 #e8e8e8; }
.availability-only-details th,
.availability-only-details td { padding:2px 8px; }
.availability-only-details th { border-bottom:1px solid #d9d9d9; font-size:10px; text-transform:uppercase; }
.availability-only-details td { background:#fff; font-size:11px; }
.availability-only-details tr.odd td.last { color:#d95e00; font-weight:bold; }

/********** < Product Prices */
.price { /*white-space:nowrap;*/ }

.price-box {}
.price-box .price { font-weight:bold; }

.price-box-bundle {}

/* Regular price */
.regular-price {}
.regular-price .price { font:bold 12px Tahoma, Arial, "Cambria Math", "Palatino Linotype"; color:#dc8700; }

/* Old price */
.old-price { text-decoration:line-through; color:#989696; margin:0 0 3px 0; }
.old-price .price-label { white-space:nowrap; color:#989696;}
.old-price .price { font-weight:normal; text-decoration:line-through; color:#565656; font:normal 12px Tahoma, Arial, "Cambria Math", "Palatino Linotype"; }
.sidebar .old-price .price-label { display:none !important; }
.saving-text{ font:normal 12px Tahoma, Arial, "Cambria Math", "Palatino Linotype"; color:#659a00; font-style:italic; text-transform:capitalize; display:inline;}
/* Special price */
.special-price {}
.special-price .price-label { white-space:nowrap; color:#dc8700; font-weight:bold; }
.special-price .price { font-weight:bold; color:#dc8700; display:inline; font:bold 12px Tahoma, Arial, "Cambria Math", "Palatino Linotype"; display:inline; }
.sidebar .special-price .price-label { display:none !important; }
/* Minimal price (as low as) */
.minimal-price {}
.minimal-price .price-label { white-space:nowrap; }

.minimal-price-link { display:block; margin:5px 0; text-decoration:none; }
a.minimal-price-link:hover { text-decoration:underline; }
.minimal-price-link .label { font-weight:bold; }
.minimal-price-link .price { font-weight:bold; }

/* Excluding tax */
.price-excluding-tax { display:block; }
.price-excluding-tax .label { white-space:nowrap; }
.price-excluding-tax .price { font-weight:normal; }

/* Including tax */
.price-including-tax { display:block; }
.price-including-tax .label { white-space:nowrap; }
.price-including-tax .price { font-weight:bold; }

/* FPT */
.weee { display:block; font-size:11px; }
.weee .price { font-size:11px; font-weight:bold; }

/* Excl tax (for order tables) */
.price-excl-tax { display:block; }
.price-excl-tax .label { display:block; white-space:nowrap; }
.price-excl-tax .price { display:block; }

/* Incl tax (for order tables) */
.price-incl-tax { display:block; }
.price-incl-tax .label { display:block; white-space:nowrap; }
.price-incl-tax .price { display:block; font-weight:bold; }

/* Price range */
.price-from {}
.price-from .price-label { white-space:nowrap; }
.price-from .price { white-space:nowrap; }
.price-to {}
.price-to .price { white-space:nowrap; }
.price-to .price-label { white-space:nowrap; }

/* Price as configured */
.price-as-configured {}
.price-as-configured .price-label {white-space:nowrap; }
.price-as-configured .price { font-size:14px; color:#e55100; }

/* Price notice next to the options */
.price-notice { padding-left:10px; }
.price-notice .price { font-weight:bold; }
/********** Product Prices > */

/* Tier Prices */
.product-pricing { background:#fbf4de; border:1px solid #e2d4c7; padding:8px; margin:20px 0; }
.product-pricing li { line-height:1.35; margin:2px 0; }
.product-pricing li .price { font-weight:bold; }
.product-pricing li .benefit { font-weight:bold; }

/* Add to Links */
.add-to-links { margin:5px 0 0; font-size:11px; }
.add-to-links li { margin:2px 0; }
.add-to-links a { color:#999; }
.add-to-links a:hover {}
.add-to-links .separator { display:none; }

/* Add to Cart */
.add-to-cart {}
.add-to-cart label { font-size:12px; vertical-align:middle; font-weight:bold; margin-right:5px; text-transform:capitalize; }
.add-to-cart .qty { vertical-align:middle; margin-right:10px; width:60px; }
.add-to-cart .paypal-logo { clear:left; text-align:right; }
.add-to-cart .paypal-logo .paypal-or { clear:both; display:block; margin:5px 60px 5px 0; }

button.btn-cart span {}

/* On product view */
.product-view .product-essential button.btn-cart span,
.add-to-cart button.btn-cart span { background-image:url(../images/bkg_btn-co.gif); padding:0 0 0 13px !important; height:27px!important; }
.product-view .product-essential button.btn-cart span span,
.add-to-cart button.btn-cart span span { border:0; background-image:url(../images/bkg_btn-co.gif); padding:1px 32px 0 19px !important; color:#fff; font:bold 15px/26px Arial, Helvetica, sans-serif !important; height:26px; text-transform:none; }
.product-view .product-essential button.btn-gr span span,
.add-to-cart button.btn-gr span span { font-size:14px !important; padding:1px 18px 0 10px !important; }
.product-view .add-to-cart .paypal-logo { margin:0; }

/* Add to Links + Add to Cart */
.add-to-box {}
.add-to-box .add-to-cart {}
.add-to-box .add-to-links { margin:0 !important; }
.add-to-box .add-to-links li { margin:0 0 2px; }

/* Product Options */
.product-options { margin:10px 0 0; }
.product-options dt label { font-weight:bold; font-size:12px; }
.product-options dt .qty-holder { float:right; }
.product-options dt .qty-holder label { vertical-align:middle; }
.product-options dt .qty-disabled { background:none; border:0; padding:3px; color:#000; }
.product-options dd { margin:5px 0 15px; padding:0 0 12px; border-bottom:1px solid #e7e7e7; }
.product-options dl.last dd.last {}
.product-options dd .input-box { display:block; padding-right:20px; }
.product-options dd input.input-text { width:98%; }
.product-options dd input.datetime-picker { width:150px; }
.product-options dd .time-picker { display:-moz-inline-box; display:inline-block; padding:2px 0; vertical-align:middle; }
.product-options dd .time-picker select { vertical-align:middle; }
.product-options dd textarea { width:98%; height:8em; }
.product-options dd select { width:100%; }
.product-options .options-list {}
.product-options .options-list li { vertical-align:middle; margin:0; padding:2px 0; line-height:1.315; }
.product-options .options-list input.radio { float:left; margin:2px -18px 0 0; }
.product-options .options-list input.checkbox { float:left; margin:2px -20px 0 0; }
.product-options .options-list .label { display:block; margin-left:20px; }
.product-options .validation-error .options-list,
.product-options ul.validation-failed { padding:2px 1px !important; position:relative; z-index:2; top:-3px; left:-2px; margin-right:-2px; }
.options-container-small .product-options .validation-error .options-list,
.options-container-small .product-options ul.validation-failed { padding:0 1px !important; position:relative; z-index:2; top:-1px; left:-2px; margin-right:-2px; }
.product-options li { margin:3px 0; }

.product-view .product-options-bottom .product-pricing { clear:both; }
.product-view .product-options-bottom { padding:0; margin:0 0 5px; }
.product-view .product-options-bottom .add-to-cart { float:left; padding-bottom:20px; }
.product-view .product-options-bottom .price-box { margin:0 !important; float:right; }
.product-view .product-options-bottom p.required { padding:5px 0 0; clear:both; text-align:right; width:auto; }

/* Options in product info column */
.options-container-small { margin:20px 0 0; }
.options-container-small .product-options-bottom { float:left; }
.options-container-small .product-pricing { display:none; }
.options-container-small .price-box { display:none; }
.options-container-small .add-to-cart { padding:13px 15px 0 0 !important; }
.options-container-small .product-options-bottom p.required { padding:0 0 0 90px; width:auto; float:left; clear:left; text-align:left; }
.options-container-small dt { clear:left; float:left; line-height:1.2; width:10em; padding:3px 5px 3px 0; margin:0 0 8px; }
.options-container-small dd { float:left; width:275px; border-bottom:0; padding:0; margin:0 0 8px; }
.options-container-small .product-options { margin:0 0 0; }

/* Options after product info column */
.options-container-big { clear:both; background:#fff; padding:20px; border-top:1px solid #cfcfcf; border-width:1px 0; }

/* Bundle product - alternative view */
#customizeTitle { margin:0; }
.bundleProduct {}
.product-options .bundle-summary { font-size:11px; }
.bundleProduct .product-options { font-size:12px; margin-top:0; }
.bundleProduct .product-options-bottom { padding:0; font-size:12px; margin:0 0 5px; line-height:27px; }
.bundleProduct .product-options-bottom .add-to-cart { float:right; margin:0 0 0 20px; }
.bundleProduct .product-options-bottom .price-box { margin:0; float:right; }
.bundleProduct .product-options-bottom p.required { padding:5px 0 0; width:auto; clear:both; text-align:right; }
.with-bundle { position:relative; z-index:1; background:#fff url(../images/bkg_cols.gif) 460px 0 repeat-y; }

/**/
#bundle-product-wrapper { margin:-1px -20px -20px; border-top:1px solid #cfcfcf; float:left; width:938px; overflow:hidden; position:relative; z-index:1; }
#bundleProduct { width:1877px; background:#fff url(../images/bkg_cols.gif) repeat-y 279px 0; z-index:1; position:relative; }
#productView { margin:0; position:static; border:0; }
#options-container { min-height:510px; width:938px; position:relative; z-index:2; float:right; border-left:1px solid #cfcfcf; background:#fff url(../images/bkg_cols.gif) repeat-y 460px 0; left:-1px; }
#options-container h1 { text-align:left; }

/* Bundle Product 2 column design */
.col2-left-layout  #bundle-product-wrapper,
.col2-right-layout #bundle-product-wrapper { width:755px; }
.col2-left-layout  #bundleProduct,
.col2-right-layout #bundleProduct { background-position:574px 0; width:1511px; }
.col2-left-layout  #options-container,
.col2-right-layout #options-container { background-position:277px 0; left:-1px; width:755px; }

.col2-left-layout  #options-container .product-options,
.col2-left-layout  #options-container .product-options-bottom,
.col2-right-layout #options-container .product-options,
.col2-right-layout #options-container .product-options-bottom { width:420px; }

.col2-left-layout  .bundle-summary,
.col2-right-layout .bundle-summary { left:460px; }

/* Bundle Product 3 column design */
.col3-layout #bundle-product-wrapper,
.col3-layout #options-container { width:572px; }
.col3-layout #bundleProduct { background-position:390px 0; width:1144px; }
.col3-layout #options-container { background-position:94px 0; }
.col3-layout #productView { margin-right:-10px; }

.col3-layout #options-container .product-options,
.col3-layout #options-container .product-options-bottom { width:237px; }
.col3-layout #options-container .product-options-bottom .price-box { float:none; }

.col3-layout .bundle-summary { left:277px; }

#options-container .product-options { font-size:12px; margin-top:0; font-size:11px; z-index:1; margin:0; width:600px; padding:20px 20px 0; clear:both; position:relative; z-index:1; }
#options-container .product-options-bottom { padding:0 20px 20px; width:600px; font-size:12px; margin:0 0 5px; line-height:27px; }
#options-container .product-options-bottom .add-to-cart { float:right; margin:0 0 0 20px; }
#options-container .product-options-bottom .price-box { margin:0; float:right; }
#options-container .product-options-bottom p.required { padding:5px 0 0; width:auto; clear:both; text-align:right; }
.moving-now {}

.bundle-summary { position:absolute; z-index:2; left:643px; margin-top:-1px; background:#fff; width:296px; }
.bundle-summary .product { background:#f6f6f6 url(../images/bkg_page-title.gif) repeat-x 0 0; border-bottom:1px solid #ddd; padding:14px 20px; }
.bundle-summary .product-image { border:1px solid #d6d6d6; float:left; margin:0 -60px 0 0; }
.bundle-summary .product-details {margin-left:60px; padding:0 0 0 13px; }
.bundle-summary .product-details p.availability { margin:5px 0; font-weight:bold; font-size:12px; }
.bundle-summary .product-name { font-size:16px; color:#111; }
.bundle-summary .summary h4 { font-size:14px; color:#333; }
.bundle-summary .summary ul { margin:6px 0 10px; }
.bundle-summary .summary li { background:url(../images/bkg_dots.gif) repeat-x 0 1px; margin:0; padding:11px 0 7px; }

/* Grouped Product */
.groped-product-type { position:relative; z-index:2; margin:20px -30px -20px; background:#fff; border-top:1px solid #cfcfcf; padding:20px 30px 0; }
.grouped-items td { vertical-align:middle; padding:5px 10px; }

/* Gift Card product */
.giftcard-form {}
.giftcard-amount-form { margin:0 0 10px; }
.giftcard-amount-form label { width:120px; text-align:left; padding-right:5px; }
.giftcard-amount-form .form-list .input-text { width:70px; }
.giftcard-amount-form .form-list select { width:150px; }
.giftcard-amount-form .form-list .input-box { padding-right:20px; margin-right:9px; }
.giftcard-amount-form .form-list .input-box .v-fix { white-space:nowrap; }
.giftcard-amount-form .form-list .input-box p.notice { float:left; padding:0; clear:left; width:55px; margin:5px -100px 0 0; white-space:nowrap; font-size:11px; position:relative; z-index:1; }
.giftcard-amount-form .form-list .input-box p.notice span { margin-right:5px; display:block; }
.giftcard-send-form { background:#fff; z-index:2; position:relative; border-top:1px solid #ddd; padding:30px 30px 10px; margin:0 -30px -30px; }
.giftcard-send-form label { width:120px; text-align:left; padding-right:5px; padding-bottom:5px; }
.giftcard-send-form .field label { padding-bottom:0; }
.giftcard-send-form .field .input-text { width:249px !important; }

/* Block: Related */
.product-view .box-related { font-size:11px; }
.product-view .box-related p { margin:0; }
.product-view .box-related .product-name { font-size:12px; }
.product-view .box-related .price-box { margin:8px 0; }
.product-view .box-related .note { padding:5px 20px; margin:0; font-size:12px; background:#f7edda; }
.product-view .box-related .note,
.product-view .box-related .note a { color:#d02600; }
.product-view .box-related input.checkbox { position:absolute; margin:3px 0 0 105px; }
.product-view .box-related ol { padding:20px 0 20px 20px !important; }
.product-view .box-related li.item .item-info { margin-right:20px; }
.product-view .box-related li.item { width:31.5%; float:left; margin-right:1%; }
.product-view .box-related li.item p a { color:#999; }
.product-view .box-related li.item .product-image { float:left; margin-right:-100px; width:100px; }
.product-view .box-related li.item .product-details { margin-left:125px; }

/* 3 Column Block: Related */
.col3-layout .product-view .box-related li.item .product-image { display:block; float:none; margin:0 auto; }
.col3-layout .product-view .box-related li.item .product-details { margin-left:0; }
.col3-layout .product-view .box-related input.checkbox { margin-left:135px; }

/* Block: Upsell */
/*.product-view .box-up-sell .products-grid { padding:30px 0 10px 61px; margin:0; }*/
.product-view .box-up-sell .products-grid li { width:176px; margin-right:20px; display:inline; }

/* 2 Column Block: Upsell */
.col2-left-layout  .product-view .box-up-sell .products-grid,
.col2-right-layout .product-view .box-up-sell .products-grid { padding:30px 0 10px 30px; margin-right:0; }
.col2-left-layout  .product-view .box-up-sell .products-grid li,
.col2-right-layout .product-view .box-up-sell .products-grid li { display:inline; width:140px; }

/* 3 Column Block: Upsell */
.col3-layout .product-view .box-up-sell .products-grid { padding:30px 0 10px 15px; margin:0; }
.col3-layout .product-view .box-up-sell .products-grid li { width:135px; margin-right:2px; display:inline; }

/* Block: Tags */
.product-view .box-tags {}
.product-view .box-tags h3 { font-size:12px; font-weight:normal; }
.product-view .box-tags .form-add-tags { padding:5px 0 0 0; }
.product-view .box-tags .form-add-tags label { margin:0; font-weight:bold; font-size:12px; padding:2px 15px 0 0; height:4em; float:left; }
.product-view .box-tags .form-add-tags .input-box { margin:0; display:inline-block; }
.product-view .box-tags .form-add-tags div.validation-passed,
.product-view .box-tags .form-add-tags div.validation-error { padding-right:17px; }
.product-view .box-tags .form-add-tags input.input-text { width:300px; }
.product-view .box-tags .form-add-tags button.button { margin-left:5px; vertical-align:top; }
.product-view .box-tags .form-add-tags p { padding:5px 0; font-size:11px; }
.product-view .box-tags .tags-list { margin:15px 0; line-height:1.5em; }
.product-view .box-tags .tags-list li { display:inline; font-size:10px; margin:0 5px 0 0; }
.product-view .box-tags .tags-list li a { text-decoration:none; font-size:12px; margin:0; padding:3px; background:#fffcf0; }
.product-view .box-tags .tags-list li a:hover { text-decoration:underline; }

.product-view .box-tags .form-add-tags .input-box , x:-moz-any-link { float:left; }/* FireFox 2 fix */
.product-view .box-tags .form-add-tags .button , x:-moz-any-link { margin-bottom:15px; }/* FireFox 2 fix */
.product-view .box-tags .form-add-tags .input-box , x:-moz-any-link, x:default { float:none; }/* FireFox 3 restore */
.product-view .box-tags .form-add-tags .button , x:-moz-any-link, x:default { margin-bottom:0; }/* FireFox 3 restore */

/* Block: Reviews */
.product-view .product-main-info .review-summary-table { margin:10px 0; }
.review-summary-table { border:0; margin:0 0 10px; }
.review-summary-table th,
.review-summary-table td { padding:2px 5px; }
.review-summary-table tr.last td { border:0; }
.review-summary-table th.label,
.review-summary-table td.label { width:1px; white-space:nowrap; padding-left:0; background:none; }

.product-view .box-reviews .pager { border-width:1px 0; margin:0; }
.product-view .box-reviews dt { margin:10px 0; font-style:italic; }
.product-view .box-reviews dt a { font-weight:bold; font-style:normal; margin-right:10px; }
.product-view .box-reviews dd { margin:10px 0 20px; padding:0 0 10px; background:url(../images/bkg_dots.gif) repeat-x 0 100%; }
.product-view .box-reviews dd p { margin:0 0 10px; }
.product-view .box-reviews dd .date { margin:0 0 10px; font-style:italic; }
.product-view .box-reviews dd.last { background:none; margin-bottom:0; }
/* Add Review Form */
.product-view .box-reviews .product-name { font-weight:normal; margin-bottom:20px; }
.product-view .box-reviews .product-name span { font-weight:bold; }
.product-view .box-reviews .form-list { margin:15px 0; }
.product-view .box-reviews .form-list .input-box {}

.product-view .box-reviews .form-list .review-summary-table thead { background:none; }
.product-view .box-reviews .form-list .review-summary-table thead th { background:none; border:0; }
.product-view .box-reviews .form-list .review-summary-table .value { text-align:center; }
/* ======================================================================================= */


/* Product Review ======================================================================== */
.review-product-list .col-main { padding-top:0; }

.product-review {}
.product-review .product-img-box { float:left; width:285px; }
.product-review .product-img-box .product-image { display:block; margin:0 0 15px; }
.product-review .details { float:right; width:400px; }

.product-review .details .product-name { font-size:15px; font-weight:bold; color:#151515; line-height:19px; margin:0 0 10px; }
.product-review .details p.date { font-size:12px; font-style:italic; }
.product-review .details p { margin:10px 0; }
.product-review .details .review-summary-table { margin:10px 0; }
.product-review .buttons-set { clear:both; padding:25px 0 0; }

.review-product-view .col-main { background:#fff url(../images/bkg_cols.gif) repeat-y -430px 0; padding:0; }
.review-product-view .col-main .page-title { margin-left:0; margin-right:0; }
.review-product-view .product-review .product-img-box { padding:0 0 20px 20px; }
.review-product-view .product-review .details { width:570px; padding:0 20px 20px 0; }
.review-product-view .product-review .buttons-set { border-top:1px solid #d1d1d1; background:#fff; margin:0; padding:15px 20px; }
/* ======================================================================================= */


/* CMS ============================================================================= */
.cms-home .col1-layout,
.cms-index-index .col1-layout { border:0; }
.cms-home .top-callout,
.cms-index-index .top-callout { margin-bottom:6px; }
.cms-home .col1-layout .col-main,
.cms-index-index .col1-layout .col-main { padding:0; }

.cms-index-index .col2-set {}
.cms-home .col2-set .col-1,
.cms-index-index .col2-set .col-1 { width:705px; }
.cms-home .col2-set .col-2,
.cms-index-index .col2-set .col-2 { width:244px; border:1px solid #d9d7ca; border-left:0; margin-left:-244px; }
.cms-home .col2-set .col-2 img,
.cms-index-index .col2-set .col-2 img { display:block; margin:6px auto; }

.cms-home .col1-layout .category-view,
.cms-index-index .col1-layout .category-view { margin:0 0 20px; }
.cms-home .col1-layout .page-title,
.cms-index-index .col1-layout .page-title { margin:3px 0 0; }
.cms-home .col1-layout .products-grid,
.cms-index-index .col1-layout .products-grid { margin:0; border:1px solid #cbc0b2; padding-top:20px; padding-bottom:20px; }
.cms-home .col1-layout .products-list,
.cms-index-index .col1-layout .products-list { margin:0; border:1px solid #cbc0b2; padding-top:20px; }

.cms-hp-touchsmart-iq506-has-arrived .col-main { padding:0; }
.cms-hp-touchsmart-iq506-has-arrived .main { margin-top:0; }
.cms-hp-touchsmart-iq506-has-arrived .breadcrumbs { display:none; }
.new-product-spotlight { border:1px solid #cfcfcf; border-top:0; background:url(../images/callouts/electronics/new_computer_bg.jpg) no-repeat; height:519px; position:relative; }
.new-product-spotlight .link { position:absolute; top:95px; left:318px; }
.new-product-spotlight .more-new-positioning { position:absolute; top:42px; right:70px; width:207px; }
.new-product-spotlight .more-new-positioning h3 { margin-bottom:5px; font-size:11px; text-transform:uppercase; font-weight:bold; }
.new-product-spotlight .more-new { position:relative; height:335px; }
.new-product-spotlight .more-new .arrow-up { position:absolute; top:0; left:0; height:20px; width:207px; background:url(../images/callouts/electronics/more_new_arrow.gif) no-repeat; text-indent:-999em; }
.new-product-spotlight .more-new .arrow-down { position:absolute; bottom:0; left:0; height:20px; width:207px; background:url(../images/callouts/electronics/more_new_arrow.gif) no-repeat 0 100%; text-indent:-999em; }
.new-product-spotlight .more-new .content { position:absolute; top:20px; left:0; width:205px; height:295px; border-width:0 1px; border-style:solid; border-color:#dcdcdc; background:#fff; }
.new-product-spotlight .more-new ol { margin:10px 15px; padding-left:0; list-style-type:none; }
.new-product-spotlight .more-new .item { padding:10px 0 10px 85px; border-bottom:1px solid #d2d2d2; }
.new-product-spotlight .more-new .item.top {padding-top:0; }
.new-product-spotlight .more-new .item.last { border-bottom:0; padding-bottom:0; }
.new-product-spotlight .more-new .item img { float:left; margin-left:-85px; position:relative; }
.new-product-spotlight .more-new a { font-weight:bold; }

.cms-menu { padding:15px; border-bottom:1px solid #d1d1d1; background:#fff url(../images/bkg_cms-menu.gif) 0 0 repeat-x; font-size:12px; list-style-position:inside; }
.col-main .cms-menu { float:left; width:240px; border:1px solid #d1d1d1; margin:0 10px 5px 0; }
.cms-menu li { color:#999; margin:3px 0; }
/*.cms-menu li span { color:#444; }*/
.cms-menu li.parent > a,
.cms-menu li.parent > strong { background:url(../images/bkg_cms-menu-arrow-down.gif) 100% 50% no-repeat; padding-right:13px; }
.cms-menu li strong { font-size:13px; font-weight:bold; color:#333; }
.cms-menu li ul,
.cms-menu li ol { padding-left:15px; margin-bottom:7px; list-style-position:inside; }
/* CMS Menu Types */
ol.cms-menu.type-1 { list-style-type:decimal; }
ol.cms-menu.type-1 ol { list-style-type:decimal; }
ol.cms-menu.type-a { list-style-type:lower-alpha; }
ol.cms-menu.type-a ol { list-style-type:lower-alpha; }
ol.cms-menu.type-A { list-style-type:upper-alpha; }
ol.cms-menu.type-A ol { list-style-type:upper-alpha; }
ol.cms-menu.type-i { list-style-type:lower-roman; }
ol.cms-menu.type-i ol { list-style-type:lower-roman; }
ol.cms-menu.type-I { list-style-type:upper-roman; }
ol.cms-menu.type-I ol { list-style-type:upper-roman; }

ul.cms-menu.type-circle { list-style-type:circle; }
ul.cms-menu.type-circle ul { list-style-type:circle; }
ul.cms-menu.type-disc { list-style-type:disc; }
ul.cms-menu.type-disc ul { list-style-type:disc; }
ul.cms-menu.type-square { list-style-type:square; }
ul.cms-menu.type-square ul { list-style-type:square; }
/* ======================================================================================= */


/* Content Styles ================================================================= */
.product-name { font-size:12px; font-weight:bold; color:#333; text-transform:capitalize; text-align: left;}
.product-name a { color:#6d2e9e; font:bold 12px Tahoma, Arial, "Cambria Math", "Palatino Linotype"; text-transform:capitalize; display:block;  }
.product-name a:hover { color:#666;}

/* Product Tags */
.tags-list { margin:5px 0; }
.tags-list li { display:inline; font-size:12px; }
.tags-list li a { text-decoration:none; margin:0 2px 0 0; }
.tags-list li a:hover { text-decoration:underline; }

/* Advanced Search */
.search-summary { padding:10px 10px 0; margin:10px 0 0; font-size:12px; background:url(../images/bkg_dots.gif) repeat-x 0 0; }
.search-summary li { margin:2px 0; }

/* Sitemap */
.page-sitemap .links { display:block; text-align:right; margin:0 20px -36px 0; }
.page-sitemap .links a { position:relative; }
.page-sitemap .sitemap { padding:0 20px; margin:15px 0; font-size:12px; }
.page-sitemap .sitemap li { margin:3px 0; }
/* ======================================================================================= */


/* Shopping Cart ========================================================================= */
.checkout-cart-index .col-main { padding:0; }
.checkout-cart-index .col-main .page-title { margin:0; }
.cart-empty { background:#fff; }
.cart { background:url(../images/bkg_cart.gif) repeat-y 100% 0; }
.cart .title-buttons { padding-right:15px; }
.cart .messages,
.cart .messages li { margin:0; }
.cart .checkout-types { float:right; text-align:center; }
.cart .checkout-types .paypal-or { margin:0 8px; line-height:2.3; }
.cart .checkout-types fieldset { display:inline; }
/*.cart .checkout-types .btn-proceed-checkout span { background-image:url(../images/bkg_btn-co.gif); height:27px !important; padding:0 0 0 13px !important; }*/
.cart .checkout-types .btn-proceed-checkout span span {
 border:1px solid #ffa800;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#f59600), to(#b46a00));
	background: -webkit-linear-gradient(#f59600, #b46a00);
	background: -moz-linear-gradient(#f59600, #b46a00);
	background: -ms-linear-gradient(#f59600, #b46a00);
	background: -o-linear-gradient(#f59600, #b46a00);
	background: linear-gradient(#f59600, #b46a00);
	-pie-background: linear-gradient(#f59600, #b46a00);
	-moz-border-radius:3px;/* Firefox */
	-webkit-border-radius:3px;/* Safari and Chrome */
	border-radius:3px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	height:22px !important;
	padding:0 10px 0 10px !important;
	text-shadow:none;
	position:relative;
	background-color:#b46a00;;
  }




.cart .title-buttons .checkout-types li { float:left; list-style-type: none;/*margin:0 0 5px 5px;*/ }

/* Shopping Cart Table */
.cart-table { /*border-width:1px 0;*/ }
.cart-table .item-msg { font-size:10px; }
.cart-table thead th { vertical-align:bottom; }
.cart-table tbody td { padding:12px; }
.cart-table .btn-continue { float:left; background:none; border:none; }
.cart-table .btn-continue span { background:none; border:none; text-transform:none; color:#444; text-decoration:underline; font-weight:normal; padding:0; }
.cart-table .btn-update { float:right; }

/* Shopping Cart Collateral boxes */
.cart .cart-collaterals { width:685px; padding:20px 0 10px; }
.cart .cart-collaterals .coupon-block{ width:278px; padding:0 19px 0 19px; float:right;}
.cart .cross-inside { background:url(../images/bkg_crosssell.gif) repeat-y 0 0; float:left; }
.cart .cart-collaterals h2 { color:#000; font-weight:normal; margin:0 0 4px; }
.cart .deals { display:inline; margin:0 0 0 0; font-size:12px; }
.cart .deals p,
.cart .deals label { margin:0 0 7px; display:block; }
.cart .deals .input-text { width:190px; margin:0 5px 3px 0; float:left; }
.cart .giftcard { position:relative; z-index:1; }
/*.cart .giftcard button.check-gc-status { clear:both; }*/
/*.cart .giftcard button.check-gc-status span { padding:0 !important; background:none !important; line-height:1.3 !important; color:#444 !important; height:auto !important; font-weight:normal !important; text-transform:none !important; }*/
.cart .giftcard button.check-gc-status span span {  font-size:12px !important; }
.cart .giftcard,
.cart .discount { margin:0 0 10px 0; }
.cart .cancel-btn { margin:5px 30px 0 0; clear:left; }
.cart .shipping { float:left; margin:0 0 0 0; display:inline; font-size:12px;}
.cart .shipping select { width:256px; }
.cart .shipping .input-text { width:250px; }
.cart .shipping p { margin:0 0 15px; }
.cart .shipping .buttons-set { width:256px; }
.cart .shipping .form-list label { float:none; width:auto; text-align:left; padding:0; }
.cart .shipping .form-list .input-text,
.cart .shipping .form-list select { display:block; float:none; }

.cart .crosssell {
	float:left;
	width:344px;
	padding:0;
	border:1px solid #d9d9d9;
	border-width:0 1px 0 0;
	background:#fbf3f0;
}

.cart .crosssell h2 {
	font:bold 16px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#fff;
	border-bottom:1px solid #c6c6c6;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#6a1f8b), to(#461559));
	background: -webkit-linear-gradient(#6a1f8b, #461559);
	background: -moz-linear-gradient(#6a1f8b, #461559);
	background: -ms-linear-gradient(#6a1f8b, #461559);
	background: -o-linear-gradient(#6a1f8b, #461559);
	background: linear-gradient(#6a1f8b, #461559);
	-pie-background: linear-gradient(#6a1f8b, #461559);
	-moz-border-radius:5px 5px 0px 0px;/* Firefox */
	-webkit-border-radius:5px 5px 0px 0px;/* Safari and Chrome */
	border-radius:5px 5px 0px 0px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
	height:25px;
	padding:5px 0 0 12px;
	margin:0;
}

.cart .crosssell .item { padding:17px 0 0 ; }
/*.cart .crosssell .product-image { float:left; margin:3px -90px 0 0; }*/
/*.cart .crosssell .product-shop { margin-left:90px; }*/
/*.cart .crosssell .product-name,
.cart .crosssell .price-box,
.cart .crosssell p,
.cart .crosssell .add-to-links { margin:0 0 5px; }*/
.cart .crosssell .add-to-links li { margin:0; }

/* Shopping Cart Totals */
.cart .totals {
	float:right;
	width:208px;
	padding:18px 15px 0 15px;
	font-size:14px;
	background:#f2f2f2;
	-moz-border-radius: 5px;/* Firefox */
	-webkit-border-radius: 5px;/* Safari and Chrome */
	border-radius: 5px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
	border:1px solid #c6c6c6;
	margin-top:18px;
}

#discount-coupon-form label { display: block; }

#giftcard-form .v-fix { float: none;width: 227px; }
#giftcard-form .v-fix #giftcard_code { width: 227px; }
#giftcard-form label { display: block; }
#giftcard-form button { margin: 5px 0px; }
#giftcard-form .button check-gc-status { float: right; }


.col-2 .estimate-shipping-middbg { width: 348px; float: left; }

.cart .totals table { width:100%; }
.cart .totals table th,
.cart .totals table td { padding:0 5px 5px; }
.cart .totals table tfoot strong { font:bold 10px Arial, Tahoma, "Cambria Math", "Palatino Linotype"; color:#353535; text-transform:uppercase; }
.cart .totals table tfoot .summary-total td { padding:0 0 20px; }
.cart .totals table tfoot th strong { margin:0; }
.cart .totals table tfoot td .price { font-weight:bold; }
.cart .totals .btn-remove { vertical-align:middle; }
.cart .totals .btn-remove img { vertical-align:baseline; }
.cart .totals .checkout-types li { margin:0 0 15px; list-style-type: none; }
.cart .totals .checkout-types .paypal-or { clear:both; display:block; padding-top:8px; line-height:1.0; font-size:11px; }

/* Options Tool Tip */
.item-options p { font-size:11px; font-weight:bold; text-transform:uppercase; padding:10px 12px 0 12px; }
.item-options dt { font-weight:bold; padding:7px 0 7px ; }
.item-options dd { padding-bottom:5px; }
.truncated { cursor:help; margin:5px 0 0; position:relative; z-index:1; }
.truncated a.dots { cursor:help; }
.truncated a.details { cursor:help; text-decoration:none; background:url(../images/bkg_dots.gif) repeat-x 0 100%; color:#514f4f; }
.truncated .truncated_full_value {}
.truncated .truncated_full_value .item-options { position:absolute; top:-99999em; left:-99999em; z-index:999; padding:0; width:190px; border:1px solid #c8c8c8; border-bottom:1px solid #919191; background-color:#fff; }
.truncated .truncated_full_value .item-options dl { margin-right:-9px; position:relative; z-index:9999; padding:0px 21px 10px 12px; background:url(../images/bkg_truncated.gif) no-repeat 100% 38px; }
.truncated .show .item-options { top:-20px; left:50%; }
.col-left .truncated .show .item-options { left:30px; top:7px; }
.col-right .truncated .show .item-options { left:-240px; top:7px; }
.top-cart .truncated .show .item-options { top:-60px; left:-206px; }
.block-cart .truncated .show .item-options { top:-60px; left:-206px; }

/* Item options in the cart */
.data-table .item-options dt { padding:3px 0 0 10px; background:url(../images/bkg_bulletsm.gif) 0 .8em no-repeat; }
.data-table .item-options dd { padding:0 0 3px 10px; }
.data-table .item-options dd .price { font-weight:bold; margin-left:5px; }
/* ======================================================================================= */


/* Checkout ============================================================================== */
/* One Page */
.checkout-onepage-index .col-main { padding:20px 0 0; }

.opc-wrapper { background:url(../images/bkg_cols.gif) repeat-y -573px 0; }
.opc-wrapper .page-title { margin:0; position:relative; z-index:1; }
.opc-wrapper .page-title .callout { position:absolute; top:7px; right:20px; z-index:1; }

/* Block: Checkout Progress */
.opc-progress-container { float:left; width:182px; }
.opc-progress-container .opc-block-progress { background:#fff; }
.opc-progress-container .opc-block-progress .block-title { padding:17px 11px 10px 17px; background:none; border:0; border-bottom:1px solid #cfcfcf; }
.opc-progress-container .opc-block-progress .block-title strong { font:18px/1.1 Arial, Helvetica, sans-serif; padding:0; color:#111; }
.opc-progress-container .opc-block-progress .block-content { padding:17px 11px 17px 17px; }
.opc-progress-container .opc-block-progress dt { font-weight:bold; margin:2px 0 8px; }
.opc-progress-container .opc-block-progress dt.complete { font-weight:bold; margin:2px 0 4px; }
.opc-progress-container .opc-block-progress dt.complete a { font-weight:normal; text-transform:lowercase; }
.opc-progress-container .opc-block-progress dd.complete { margin:5px 0 8px; padding:5px; }

/*.opc { float:right; width:755px; }*/
.opc li.section { /*position:relative;*/ margin:0 0 1px 0; }
.opc li.section.allow { /*position:relative;*/ margin:0 0 0px 0; }
.opc .step-title { /*margin:0 0 1px;*/ }
.opc .step-title .number { display:block; float:left; background:#fff; width:17px; height:18px; padding:3px 0 0 8px; color:#4d5fab;}

.opc .section.allow.active .step-title .number{ background:#ac8db9; width:17px; height:18px; padding:3px 0 0 8px;}
.opc .section.allow .step-title .number{ background:#aec3aa; width:17px; height:18px; color:#323232;}


.opc-block-progress .block-content dt.complete{ background:#2d2d2d; border:1px solid #b4b4b4; height:21px; font:bold 13px Tahoma, Arial, "Cambria Math", "Palatino Linotype"; color:#fff; padding-left:12px; padding-top:4px;}
.opc-block-progress .block-content dt.active{  background:#591a73; border:1px solid #b4b4b4; height:21px; font:bold 13px Tahoma, Arial, "Cambria Math", "Palatino Linotype"; color:#fff; padding-left:12px; padding-top:4px;}
.opc-block-progress .block-content dt{ background:url(../images/right-sec-deactive-bg.jpg) repeat-x; border:1px solid #b4b4b4; height:21px; font:bold 13px Tahoma, Arial, "Cambria Math", "Palatino Linotype"; color:#555555; padding-left:12px; padding-top:4px;}
.opc-block-progress .block-content dt{ margin-bottom:5px;}

.opc .step-title h2 { font:bold 13px Tahoma, Arial, "Cambria Math", "Palatino Linotype"; color:#242424; text-transform:capitalize; float:left; padding-left:7px; padding-top:2px;}
.opc .active .step-title { margin:0 0 0; padding:0 0 0 0; }
.opc .active .step-title h2 { font:bold 13px Tahoma, Arial, "Cambria Math", "Palatino Linotype"; color:#fff; text-transform:capitalize; padding-left:7px; float:left; padding-top:2px;}

.opc .step { padding:15px 30px 15px 35px; /*min-height:150px;*/ font-size:12px; background:#fff; border:1px solid #bfbfbf; }
.opclast .step { padding:15px 30px 7px 35px; /*min-height:150px;*/ font-size:12px; background:#fff; border:0px; }
.opc .step .tool-tip { right:10px; }
.opc .order-review {}

/* Steps */
.opc .form-alt .input-box { width:695px; }
.opc .form-alt .input-box select { width:695px; }

#checkout-step-login { height:auto !important; min-height:0 !important; padding:0; }
#checkout-step-login .col2-set { padding:20px 20px 10px 20px; background:#fcfcfc /*url(../images/bkg_cols.gif) repeat-y 195px 0;*/ height:auto !important; min-height:0 !important; }
#checkout-step-login .login-only { background-image:none; }
#checkout-step-login h4 { font-size:16px; color:#565656;  margin:9px 0 6px; font:bold 12px Arial, Georgia, Tahoma; }
#checkout-step-login .col2-set .col-1 {}
#checkout-step-login .col2-set .col-2 { width:48%; }
#checkout-step-login .col2-set .col-2 .radio { margin-right:5px; }
#checkout-step-login .col2-set .col-2 li { padding-left:10px; background:url(../images/bkg_bulletsm.gif) no-repeat 0 0.5em; }
#checkout-step-login .col2-set .col-2 .form-list li { background:none; padding-left:0; }

#checkout-step-login .btn-only { padding:0 0 0 105px; text-align:left; width:214px; }
#checkout-step-login .btn-only .button { float:right; }
#checkout-step-login p { margin:0 0 5px; }
#checkout-step-login .form-list p { padding-left:105px; margin:0; }
#checkout-step-login .form-list .input-text { width:210px; }

.opc .buttons-set
.opc .form-buttons { width:auto; text-align:right; }
.opc .buttons-set p.back-link { text-align:left; }
.opc .form-buttons { width:auto; text-align:right; }
.opc .buttons-set .button,
.opc .form-buttons .button { float:right; margin:0; }
.opc p.required { text-align:right; width:auto; padding-left:0; }

.checkout-onepage-payment-additional-customerbalance { margin-bottom:5px; }
.checkout-onepage-payment-additional-customerbalance .checkbox { margin-left:0; }

/*
#checkout-step-shipping_method .buttons-set,
#opc-payment .buttons-set { width:521px; margin-top:10px; margin-bottom:0; }
#checkout-step-shipping_method .buttons-set .back-link,
#opc-payment .buttons-set .back-link { width:245px; padding-right:15px; float:left; text-align:right; }
#checkout-step-shipping_method .buttons-set .back-link a,
#opc-payment .buttons-set .back-link a { display:inline; float:none; }
#checkout-step-shipping_method p.required,
#opc-payment p.required { padding:0 0 0 260px; }
#opc-payment p.note { padding:10px 0; font-size:11px; }
*/

#checkout-step-review { padding:0; }
#checkout-step-review .data-table { border:1px solid #cfcfcf; font-size:12px; }
#checkout-step-review .data-table .item-options { font-size:11px; }
#checkout-step-review .data-table thead th { vertical-align:bottom; font-size:11px; }
#checkout-step-review .data-table .product-name { font-size:12px; }
#checkout-step-review .data-table tfoot tr.last strong { font-size:14px; }
#checkout-step-review .data-table .btn-remove { display:-moz-inline-stack; display:inline-block; vertical-align:middle; }

#checkout-step-review .buttons-set { padding:15px 20px; margin:0; }

.opc .checkout-agreements { margin:20px; }

/* Multiple Addresses Checkout */
.checkout-progress,
.checkout-progress li.first span,
.checkout-progress li.last span { background-image:url(../images/bkg_crumbs.gif); background-repeat:no-repeat; }
.checkout-progress { padding:0 0 0 0; border-bottom:1px solid #cfcfcf; background-color:#ededed; text-align:center; margin:-21px -21px 5px; font-size:11px; font-weight:bold; text-transform:uppercase; width:940px; position:relative; z-index:2; }
.checkout-progress li { float:left; width:20%; text-align:center; color:#888; line-height:20px; }
.checkout-progress li span { display:block; text-align:center; border-right:1px solid #cfcfcf; }
.checkout-progress li.first span { background-position:0 0; }
.checkout-progress li.last span { background-position:100% 0; border:0; }
.checkout-progress li.active span { color:#fff; background-color:#d12c01; }

.multiple-checkout { position:relative; z-index:1; }
.multiple-checkout .data-table thead th { vertical-align:bottom; }
.multiple-checkout .col3-set .actions { border:1px solid #e4e4e4; padding:3px 9px 4px; float:left; }
.multiple-checkout .col3-set address { padding:10px; clear:both; }
.multiple-checkout .col3-set,
.multiple-checkout .col2-set { margin:0 0 15px; }
.multiple-checkout .buttons-set { padding:15px 0; clear:both; width:auto; }
.multiple-checkout .buttons-set .button { float:right; }
.multiple-checkout .tool-tip { top:50%; margin-top:-120px; right:10px; }
.multiple-checkout .grand-total { font-weight:normal; font-size:18px; color:#cd3800; text-align:right; display:block; margin:10px 0 15px; }
.multiple-checkout .grand-total .price-label { font-weight:normal; }
.multiple-checkout .grand-total .price { font-weight:bold; }
.multiple-checkout .sp-methods { font-size:12px; }
.multiple-checkout .checkout-multishipping-payment-customerbalance { font-size:12px; margin-bottom:7px; }

/* Step 4 */
.checkout-multishipping-overview .data-table .btn-remove { display:-moz-inline-stack; display:inline-block; vertical-align:middle; }

/********** < Common Checkout Styles */
/* Shipping and Payment methods */
.sp-methods dt { font-weight:bold; margin-bottom:5px; }
.sp-methods dd { margin:0 0 7px; }
.sp-methods dd li { margin:5px 0; }
.sp-methods .price { font-weight:bold; }
.sp-methods .form-list { padding-left:20px; margin:15px 0; }
.sp-methods .form-list .input-text { width:250px; }
.sp-methods .form-list select { width:256px; }
.sp-methods .form-list label { width:155px; }

.sp-methods select.month { width:150px; margin-right:10px; }
.sp-methods select.year { width:96px; }
.sp-methods input.cvv { width:3em !important; }
.sp-methods .input-box { line-height:21px; }
.sp-methods .radio,
.sp-methods .checkbox {}
.sp-methods .v-fix .validation-advice { margin-right:-250px; position:relative; z-index:1; width:250px; }
.sp-methods .adv-container { padding-left:170px; }
.sp-methods .centinel-logos a { margin-right:3px; }
.sp-methods .centinel-logos img { vertical-align:middle; }

.checkmo-list li { margin:0 0 4px; }
.checkmo-list label { padding-top:0; }
.checkmo-list address { float:left; }

.please-wait { position:absolute; z-index:99; top:50%; left:50%; margin:-34px 0 0 -90px; border:5px solid #f3b66f; font-size:12px; color:#f18200; font-weight:bold; background:#fff; padding:20px; white-space:nowrap; }
.cvv-what-is-this { cursor:help; margin-left:5px; }

/* Payment Bridge */
.pbridge-reload { display:block; text-align:right; }
.pbridge-reload a { color:#1e75b4; font-size:11px; }

/* Tooltip */
.tool-tip { border:1px solid #ddd; background-color:#f6f6f6; padding:5px;  z-index:9999; }
.tool-tip .btn-close { text-align:right; }
.tool-tip .tool-tip-content { padding:5px; }

/* Gift Messages */
.add-gift-message { padding:20px 0; }
.add-gift-message h3 { font-size:16px; font-weight:normal; color:#000; line-height:19px; margin:0 0 10px; }
.add-gift-message p { margin:10px 0; }

.gift-message-form { border:1px solid #d1d1d1; background:#f5f5f5 url(../images/bkg_block.gif) repeat-x 0 0; }
.gift-message-form .fieldset { padding:10px 0 10px; }
.gift-message-form .fieldset .input-text,
.gift-message-form .fieldset textarea { width:200px; }
.gift-message-form .fieldset textarea { width:200px; height:8em; }
.gift-message-form .inner-box { padding:0; height:300px; overflow:auto; }
.gift-message-form .inner-box h5,
.gift-message-form .inner-box h4 { font:14px/1.25 Arial, Helvetica, sans-serif; padding:0 20px; color:#222; margin:17px 0; }
.gift-message-form .inner-box p { margin:10px 0; padding:0 20px; }
.gift-message-form .gift-item { padding:5px 0 0; background:url(../images/bkg_dots.gif) repeat-x 0 100%; }
.gift-message-form .gift-item .number { padding:5px 20px 5px; margin-bottom:0; background:url(../images/bkg_dots.gif) repeat-x 0 100%; color:#adadad; font-weight:bold; }
.gift-message-form .gift-item .product-img-box { float:left; width:150px; margin-right:15px; }
.gift-message-form .gift-item .product-image { text-align:center; margin:20px; }
.gift-message-form .gift-item .product-name { font-size:12px; margin:20px 0 5px; text-align:center; }
.gift-message-form .gift-item .fieldset { float:left; background:url(../images/bkg_dots.gif) repeat-y 0 0; padding:20px 0 10px 10px; margin:0; }
.gift-message-form .gift-item .fieldset label { width:80px; }

.gift-message-link { display:block; background:url(../images/bkg_collapse.gif) 0 4px no-repeat; padding-left:20px; }
.gift-message-link.expanded { background-position:0 -53px; }
.gift-message-row {}
.gift-message-row .btn-close { float:right; width:13px; height:12px; background:url(../images/gift-message-close.gif) 0 0 no-repeat; text-indent:-999em; overflow:hidden; }
.gift-message dt strong { font-weight:bold; }

/* Checkout Agreements */
.checkout-agreements {}
.checkout-agreements li { margin:10px 0; }
.checkout-agreements .agreement-content { border:1px solid #d8cea8; font-size:11px; background-color:#fffdef; padding:15px; height:10em; overflow:auto; }
.checkout-agreements .agree { padding:10px 0; font-size:12px; font-weight:bold; }
.checkout-agreements .agree .checkbox { margin-right:5px; }

/* Centinel */
.centinel { margin:10px 0; }
.centinel p { margin:0 0 10px; }
.centinel .authentication { border:1px solid #ddd; background:#fff; }
.centinel .authentication iframe { width:99%; height:400px; background:transparent !important; margin:0 !important; padding:0 !important; border:0 !important; }

.opc .centinel { margin:0; padding:20px; }

/* Checkout Success */
.checkout-onepage-success .col-main { font-size:12px; }
.checkout-onepage-success .col-main p { margin:0 0 10px; }
/********** Common Checkout Styles > */
/* ======================================================================================= */


/* Invitation page ======================================================================= */
#invitationForm p.required { padding-bottom:20px; }


/* Compare popup ========================================================================= */
.catalog-product-compare-index tr.last a,
.catalog-product-compare-index tr.first a { color:#999; }
.catalog-product-compare-index tr.last p,
.catalog-product-compare-index tr.first p { margin:10px 0; }
.catalog-product-compare-index tr.first .product-name a { color:#333; }


/* Account Login/Create Pages ============================================================ */
.my-account {}

.account-login { position:relative; font-size:12px; background:url(../images/bkg_cols.gif) repeat-y 266px 0; min-height:350px; }

.login-only { background:none; }
.login-only .registered-users { float:none; margin:0 auto; }

.account-login .new-users,
.account-login .registered-users { width:381px; padding:30px 32px 30px; }
/*.account-login .registered-users p { margin-bottom:1.5em; }*/
.account-login .spacer { position:absolute; top:100%; left:447px; margin-top:-1px; width:16px; height:3px; font-size:0; line-height:0; background:#fff; overflow:hidden; }
.account-login .fieldset { margin:0; }
.account-login .fieldset h2 { margin-bottom:.5em; }
.account-login .form-list label,
.account-login .form-list span.label { width:98px; }
.account-login p.required,
.account-login .btn-only { float: right; width:auto; text-align:right; }
.account-login .btn-only a { float:left; white-space:nowrap; }
.account-login .form-list input.input-text { width:224px; float:none; }
.account-login .form-list p { padding:0 0 0 110px; }

.account-create {}


/* My Account ============================================================================= */
/********** < Dashboard */
.dashboard {}

.dashboard .welcome-msg,
.dashboard .col2-set,
.dashboard .recent-orders { margin:0 0 20px 0;}

/* Block: Tags */
.dashboard .tags { padding:0 0 20px; }
.dashboard .tags p { display:inline; }
.dashboard .tags .product-name { margin:0 0 3px; font-size:11px; line-height:17px; }
.dashboard .tags li { margin:0 0 8px; }
.dashboard .tags .number { float:left; border:1px solid #ddd; text-align:center; line-height:17px; width:15px; margin-right:-20px; }
.dashboard .tags .details { margin-left:25px; }

/* Block: Reviews */
.dashboard .reviews { padding:0 0 20px; }
.dashboard .reviews .product-name { margin:0 0 3px; font-size:11px; line-height:17px; }
.dashboard .reviews p { float:left; margin-right:5px; }
.dashboard .reviews li { margin:0 0 5px; }
.dashboard .reviews .number { float:left; border:1px solid #ddd; text-align:center; line-height:17px; width:15px; margin-right:-20px; }
.dashboard .reviews .details { margin-left:25px; }

/********** Dashboard > */

/* Adress Book */
.addresses-list .box-content { font-size:12px; }
.addresses-list .col-2 li { padding:0 0 10px; }
.addresses-list .col-2 li .actions { border:1px solid #e4e4e4; padding:3px 9px 4px; float:left; }
.addresses-list .col-2 li address { padding:10px; clear:both; }

/* Order View */
.order-page {}
.order-page .order-date { margin:0 0 20px; color:#6c6c6c; font-size:11px; }
.order-page .col2-set { padding-bottom:20px; }

.order-details .link-print { background:none; padding:0; }
.order-details .order-additional,
.order-details .data-table { margin-bottom:20px; }
.order-details .order-additional dt { font-weight:bold; background:url(../images/bkg_dots.gif) repeat-x 0 100%; padding:0 0 5px; margin:0 0 5px; }
.order-details .order-additional dd { padding:10px; margin:0 0 10px; }

.order-details dl.gift-message { margin:0 20px; }
.order-details .gift-message dt { margin:1px 0; padding:2px 10px; background:#e6e6e6; }
.order-details .gift-message dd { border:1px solid #c7c7c7; background:#fff; padding:10px; margin:0 0 10px; }

.order-links { margin:0 0 10px; text-align:right; padding-bottom:5px; background:url(../images/bkg_dots.gif) repeat-x 0 100%; text-align:right; }
.order-info { margin-bottom:5px; border-bottom:1px solid #c4c4c4; }
.order-info dt { padding:6px 20px 0 10px; color:#6c6c6c; float:left; }
.order-info dd { float:left;/* padding-top:2px; */}
.order-info ul { float:left; }
.order-info li { float:left; position:relative; z-index:2; margin-right:3px; background:#dedede url(../images/bkg_collateral-tabs.gif) no-repeat 0 -39px; color:#222; padding:0 0 0 17px; font-size:12px; }
.order-info li strong,
.order-info li a { text-decoration:none; background:url(../images/bkg_collateral-tabs.gif) no-repeat 100% -39px; /*padding:0 17px 0 0; line-height:24px;*/ float:left; }
.order-info li.current { margin-bottom:-1px; color:#000; font-weight:bold; z-index:3; border-bottom:0; background:#fff url(../images/bkg_collateral-tabs.gif) 0 0 no-repeat; }
.order-info li.current strong { background-position:100% 0; padding-bottom:1px; }
.order-info dt { font-weight:bold; }

/* Manage Newsletter Subscription */
.newsletter-manage-index .form-buttons .button { float:left; margin:0; }

/* Wishlist */
.my-wishlist textarea { width:100%; height:10em; }
#wishlist-table .price-box { margin:3px 0; }
#wishlist-table button.btn-cart { margin:3px 0; }

/* Store credit */
.storecredit .account-balance { margin:0 0 20px; padding:0 0 10px; font-size:12px; background:url(../images/bkg_dots.gif) repeat-x 0 100%; }
.storecredit .account-balance .price { font-weight:bold; }
.giftcard-redeem { padding-bottom:20px; }
.giftcard-redeem .input-box { margin-right:5px; }

/* Gift card */
.giftcardaccount { position:relative; z-index:1; padding-top:1px; }
.giftcard-status .messages,
.giftcardaccount .messages { margin-bottom:10px; }
.giftcardaccount p { margin:15px 0; font-size:12px; }
.giftcardaccount .fieldset { margin:0; }
.giftcardaccount .btn-only { margin:0 0 15px; }

/* Gift Card Status Check */
.giftcard-status .gift-card-info,
.giftcard-status p.error-msg,
.giftcardaccount #giftcard_balance_lookup .gift-card-info,
.giftcardaccount #giftcard_balance_lookup p.error-msg { margin:10px 0 20px; }
.gift-card-info { margin:10px 0; padding:10px 10px 5px; border:1px dashed #d9d9d9; background:#fcf7f5; }
.gift-card-info p { font-size:12px; margin:0 0 5px; }
.gift-card-info .giftcard-number { font-weight:bold; }
.gift-card-info .form-list label {}
.gift-card-info .btn-only { padding-left:0; }

#gc-please-wait { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; -moz-opacity:0.8; opacity:0.8; }

/* Print Pages */
.page-print .print-head {}
.page-print .print-head img { float:left; }
.page-print .print-head address { float:left; margin-left:15px; }
.page-print h2.h2 { /* margin:15px 0 10px; */ }
.page-print .col2-set { margin:10px 0 20px; }

/* Price Rewrites */
.page-print .gift-message-link { display:none; }
.page-print .price-excl-tax,
.page-print .price-incl-tax { display:block; white-space:nowrap; }
.page-print .cart-price,
.page-print .price-excl-tax .label,
.page-print .price-incl-tax .label,
.page-print .price-excl-tax .price,
.page-print .price-incl-tax .price { display:inline; }

/* Tagged products */
.my-tag-edit { float:left; }
.my-tag-edit .btn-remove { float:right; margin:-3px 0 0 5px; position:relative; }
#my-tags-table .price-box { margin:5px 0; }
#my-tags-table .last { text-align:center; }
#my-tags-table .last p { margin:10px 0; }

/* Reward Points */
.my-rewards .box { margin:0 0 30px; }
.my-rewards .info-box .box-title { margin:10px 10px; }
.my-rewards .info-box .box-content { padding:0 10px 10px; }
.my-rewards p.error { display:inline; color:#d91a00; }
.my-rewards dl { font-size:12px; }
.my-rewards dl dt { font-weight:bold; font-size:13px; margin-top:10px; }
.my-rewards dl dt span { color:#d12c01; }
.my-rewards dl dd.last { margin:7px 0 0; }
.my-rewards .form-list label { width:auto; }
.my-rewards .form-list .control .input-box { position:static; margin:0 5px 0 0; }
.my-rewards .data-table small { display:block; font-size:1em; color:#808080; }

/* Billing Agreements */
.billing-agreements .info-box { margin:15px 0; }
.billing-agreements .info-box p { margin:0 0 9px; }
.billing-agreements .form-list li button.button { float:left; margin-left:10px; }

/* Gift Registry Functionality */
.btn-gift-registry { background:url(../images/i_gift-registry3.gif) 0 0 no-repeat; padding:3px 0 0 33px; text-align:left; }
.btn-gift-registry .input-box { margin:0 0 7px; }
.btn-gift-registry select { width:100%; }
.gift-registry-name { background:url(../images/i_gift-registry2.gif) 0 0 no-repeat; margin:3px 0 0; padding:0 0 0 20px; line-height:18px; }
/* Block: Gift Registry Search */
.sidebar .block-gr-search .form-alt .input-box { width:148px; margin:3px 0 0; padding:0; }
.sidebar .block-gr-search .form-alt input.input-text { width:142px; }
.sidebar .block-gr-search .form-alt select { width:148px; }
.block-gr-search p.note { margin:0 0 3px; text-align:right; color:#f15c22; }
/* ======================================================================================= */


/* Footer ================================================================================ */
/*.footer-before-container { margin:0 0 3px; text-align:center; }

.form-subscribe { float:left; width:183px; padding:12px 17px 0 0; background:url(../images/bkg_newsletter.gif) no-repeat 0 3px; }
.form-subscribe label { display:block; margin:6px 0; }
.form-subscribe input.input-text { width:177px; display:block; }
.form-subscribe button.button { margin:6px 0 0; float:right; }
.form-subscribe .validation-advice { width:180px; }
.form-subscribe .v-fix { text-align:left; padding-right:5px; }
.form-subscribe a { color:#777; }

.footer-container { margin:0 0 20px; text-align:left; background:#f8f8f8; border:1px solid #cfcfcf; padding:14px 17px 12px; }
.footer { background:url(../images/bkg_footer.gif) repeat-y 200px 0; }
.footer a {}
.footer a:hover { text-decoration:none; }
.footer ul,
.footer ul.links { display:block; float:left; width:150px; margin:0 0 0 19px; padding:0; }
.footer ul.links li,
.footer ul li { display:block; vertical-align:top; margin:0 0 5px; padding:0; }

address.copyright { margin-top:6px; }

.footer .switcher-store { float:right; width:184px; background:url(../images/bkg_store-switch.gif) no-repeat 0 3px; padding-top:21px; }
.footer .switcher-store label { display:none; }
.footer .switcher-store select { padding:0; margin-bottom:1px; }
.footer .switcher-store ul { float:none; width:auto; padding-left:0; margin-left:0; }
.footer .switcher-store ul .current { display:none; }*/
/* ======================================================================================= */


/* Some sample data cms styles ================================================================================ */
.page-head-alt {}
.page-head,
.page-head-alt { margin-bottom:20px; padding:23px 20px 11px; background:#f6f6f6 url(../images/bkg_page-title.gif) repeat-x 0 0; border-bottom:1px solid #cfcfcf; }
.col-main .page-head,
.col-main .page-head-alt { margin:0 -20px 20px; }
.page-head-alt .link-rss { float:right; margin-top:8px; }
.page-head h2,
.page-head h3,
.page-head-alt h3,
.page-head-alt h2 { font:normal 22px/27px Arial, Helvetica, sans-serif; color:#d12c01; }


/* Restricted ================================================================================ */
.restriction-index-stub .page { width:652px; padding-bottom:3px; }
.restriction-index-stub .main { margin-top:100px; min-height:0; height:auto !important; padding:13px; text-align:center; margin-bottom:0; }
.restriction-index-stub .col-main { color:#dedede; height:auto !important; min-height:230px; height:230px; font-size:16px; background:#4a4a4a url(../images/logo-offline.gif) no-repeat 50% 95px; padding:170px 60px 40px; }
.restriction-index-stub .page-title { margin:0 0 15px !important; padding:0 !important; border:0 !important; background:none; }
.restriction-index-stub .col-main h1,
.restriction-index-stub .col-main h2 { font:italic 35px Georgia, "Times New Roman", Times, serif; color:#fff; }
.restriction-index-stub .header-container,
.restriction-index-stub .footer-container { display:none; }
.restriction-index-stub .copyright { background:url(../images/bkg_shadow-offline.gif) 50% 0 no-repeat; padding:15px 0 0; margin:0; }


/* Old private sales index ================================================================================ */
.private-sales-index { background:#2b2b2b; margin:110px 0 60px; padding:40px 0; }
.private-sales-index .box { border:1px solid #e2ded0; background:#fff url(../images/bkg_ps.gif) no-repeat 50% 13px; padding:50px 13px 0; width:657px; margin:0 auto; }
.private-sales-index .box .content { padding:0 60px 70px; background:url(../images/bkg_ps.gif) no-repeat 50% 100%; font-size:14px; }
.private-sales-index .box .content p { text-align:center; }
.private-sales-index .box .content a { color:#444444; }
.private-sales-index .box .content h1 { background:url(../images/bkg_ps-logo.gif) no-repeat 50% 0; padding:60px 0 5px; font-size:29px; font-weight:normal; color:#ec4e00; }
.private-sales-index .box .content .description { background:url(../images/bkg_ps-descr.gif) no-repeat 50% 0; margin:40px auto 0; width:433px; padding:30px 50px 30px; font:normal 20px Georgia, "Times New Roman", Times, serif; font-style:italic; color:#817268; }

.col1-layout .private-sales-index { margin:0 -20px -31px; height:auto !important; height:350px; min-height:350px; }

/* Private sales index ================================================================================
.private-sales-index { background:#fffdf9 url(../images/bkg_ps-home.jpg) no-repeat 50% 88px; padding-top:90px; }
.private-sales-index .box {}
.private-sales-index .box .content {}
.private-sales-index .box .content p { padding-top:475px; text-align:center; color:#444444; font-size:18px; }
.private-sales-index .box .content a { color:#c12900; }
.private-sales-index .box .content h1 { display:none; }
.private-sales-index .box .content .description { display:none; }

.col1-layout .private-sales-index { margin:0 -20px -31px; background-position:0 20px; padding-top:20px; height:auto !important; height:550px; min-height:550px; } */

/* Private sales demo ==================================================================== */
.cms-private-sales-home { background-color:#fffdf9; }
.private-sales-demo { background:#fffdf9 url(../images/bkg_ps-home.jpg) no-repeat 50% 88px; padding-top:90px; }
.private-sales-demo h1 { display:none; }
.private-sales-demo p { padding-top:475px; text-align:center; color:#444444; font-size:18px; }
.private-sales-demo a { color:#c12900; }

.col1-layout .private-sales-demo { margin:0 -20px -31px; background-position:0 20px; padding-top:20px; height:auto !important; height:550px; min-height:550px; }
/* ======================================================================================= */


/* Clears ================================================================================ */
.product-options dt:after,
#bundleProduct:after,
.events-slider:after,
.product-image-popup .nav:after,
.gift-item:after,
.block-content:after,
.block-list li.item:after,
.block-poll li:after,
.currently li:after,
.order-info:after,
.top-cart .actions:after,
.header .quick-access:after,
.product-view .box-related li.item:after,
.bundle-summary .product:after,
.collateral-tabs:after,
.block-cart .block-content .item:after,
.clearer:after,
.header-container:after,
.header-container .top-container:after,
.header:after,
.header-panel:after,
#nav:after,
.main:after,
.footer-before-container:after,
.footer-container:after,
.footer:after,
.col-main:after,
.col2-set:after,
.col3-set:after,
.col4-set:after,
.search-autocomplete li:after,
.block li.item:after,
.block .actions:after,
.mini-products-list li:after,
.cms-index-index .block-featured li.item:after,
.title-buttons:after,
.pager:after,
.sorter:after,
.ratings:after,
.add-to-box:after,
.add-to-cart:after,
.products-grid:after,
.products-list li.item:after,
.product-view:after,
.product-view .product-img-box .more-views ul:after,
.product-view .box-tags .form-add-tags:after,
.product-options .options-list li:after,
.options-container-small .product-options:after,
.product-options-bottom:after,
.product-review:after,
.box-collateral:after,
.box-collateral .box-content:after,
.collateral-tabs .tab-content:after,
.account-login:after,
.cart .cart-collaterals:after,
.cart:after,
.opc .step-title:after,
.checkout-progress:after,
.form-list li:after,
.form-list li.fields .field:after,
.clearfix:after,
.buttons-set:after,
.buttons-set2:after,
.page-print .print-head:after,
.new-product-spotlight .more-new .item:after,
.addresses-list .col-2 li:after,
.product-view .product-shop:after { display:block; content:"."; clear:both; font-size:0; line-height:0; height:0; overflow:hidden; }
/* ======================================================================================= */


/* ==|== non-semantic helper classes ========================================
   Please define your styles before this section.
   ========================================================================== */

/* For image replacement */
.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; }
.ir br { display: none; }

/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* Contain floats: h5bp.com/q */
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }



/* ==|== media queries ======================================================
   PLACEHOLDER Media Queries for Responsive Design.
   These override the primary ('mobile first') styles
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 480px) {
  /* Style adjustments for viewports 480px and over go here */

}

@media only screen and (min-width: 768px) {
  /* Style adjustments for viewports 768px and over go here */

}



/* ==|== print styles =======================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */
  a, a:visited { text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* h5bp.com/t */
  tr, img { page-break-inside: avoid; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }
}





/********************************** custom css start ************************************/
.box-up-sell h2 { background: #7d37b3;  color: #fff; font: bold 14px "HelveticaNeueCondensed",Tahoma,sans-serif;  border-radius: 5px 5px 0px 0px; padding: 5px 10px; width: 145px; }
.box-up-sell #carousel  { border: 1px solid #dfdfdf;  width: 300px; border-radius: 0px 0px 5px 5px; margin: 0px;}
.box-up-sell #carousel li { width: 100px; float: left;  text-align: center; margin: 15px; list-style-type: none;}
.box-up-sell #carousel li .product-name { text-align: center; }

body{
	background:#f6edc2;
	margin:0;
	padding:0;
	font:normal 12px Tahoma, Arial, Georgia;
	color:#565656;
}

h1, h2, h3, h4, h5, p, span, form, html, a {
	margin:0px;
	padding:0px;
}

ul {
	margin:0px;
	padding:0px;
	list-style:none;
}

li {
	margin:0px;
	padding:0px;
	list-style:none;
}

img {
	border:0px;
}

.clear {
	clear:both;
	height:0px;
	overflow:hidden;
}

a {
	outline:none;
	text-decoration:none;
	margin:0px;
	padding:0px;
}

.wrapper {
	width:1008px;
	margin:0 auto;
}

.fleft{
	float:left;
}

.fright{
	float:right;
}
.dline{
	display:inline;
}
@font-face {
    font-family: 'BitstreamVeraSerifRoman';
    src: url('veraserif-webfont.eot');
    src: url('veraserif-webfont.eot?#iefix') format('embedded-opentype'),
         url('veraserif-webfont.woff') format('woff'),
         url('veraserif-webfont.ttf') format('truetype'),
         url('veraserif-webfont.svg#BitstreamVeraSerifRoman') format('svg');
    font-weight: normal;
    font-style: normal;

}
.top-greysec {
	background:url(../images/top_greybg.jpg) repeat-x left top;
	height:53px;
}
.sub-logo-sec {
	float:left;
}
.sub-logo-sec ul {
	background:url(../images/sub_logodivider_03.jpg) no-repeat left top;
	height:53px;
	padding:0 0 0 3px;
}
.sub-logo-sec ul li {
	height:53px;
	float:left;
}
.sub-logo-sec ul li a.elephant {
	background:url(../images/elephant_logo_04_05.jpg) no-repeat left top;
	width:160px;
	height:53px;
	display:block;
}
.sub-logo-sec ul li a.elephant:hover, .sub-logo-sec ul li.active a.elephant {
	background:url(../images/active_elephant_logo_04.jpg) no-repeat left top;
}
.sub-logo-sec ul li a.complimed {
	background:url(../images/complimed_logo_05.jpg) no-repeat left top;
	height:53px;
	width:83px;
	display:block;
}
.sub-logo-sec ul li a.complimed:hover, .sub-logo-sec ul li.active a.complimed {
	background:url(../images/active_complimed_logo_05.jpg) no-repeat left top;
}
.sub-logo-sec ul li a.allvia {
	background:url(../images/allvia_logo_06.jpg) no-repeat left top;
	width:82px;
	height:53px;
	display:block;
}
.sub-logo-sec ul li a.allvia:hover, .sub-logo-sec ul li.active a.allvia {
	background:url(../images/active_allvia_logo_06.jpg) no-repeat left top;
}
.sub-logo-sec ul li a.oakmont {
	background:url(../images/oakmont_logo_07.jpg) no-repeat left top;
	height:53px;
	width:85px;
	display:block;
}
.sub-logo-sec ul li a.oakmont:hover, .sub-logo-sec ul li.active a.oakmont {
	background:url(../images/active_oakmont_logo_07.jpg) no-repeat left top;
}
.sub-logo-sec ul li a.bioallers {
	background:url(../images/bioallers-logo_08.jpg) no-repeat left top;
	height:53px;
	width:82px;
	display:block;
}
.sub-logo-sec ul li a.bioallers:hover, .sub-logo-sec ul li.active a.bioallers {
	background:url(../images/active-bioallers-logo_08.jpg) no-repeat left top;
}
.sub-logo-sec ul li a.herbs {
	background:url(../images/herbs-for-kids-logo_08.jpg) no-repeat left top;
	height:54px;
	width:88px;
	display:block;
}
.sub-logo-sec ul li a.herbs:hover, .sub-logo-sec ul li.active a.herbs {
	background:url(../images/hover-herbs-for-kids-logo_08.jpg) no-repeat left top;
}

.sub-logo-sec ul li a.natrabio {
	background:url(../images/natura-bio-active.jpg) no-repeat;
	height:55px;
	width:82px;
	display:block;
}
.sub-logo-sec ul li a.naturalcare {
    background: url("../images/natura-care.jpg") no-repeat scroll 0 0 transparent;
    display: block;
    height: 53px;
    width: 82px;
}
.sub-logo-sec ul li a.naturalcare:hover {
    background: url("../images/natura-care-hover.jpg") no-repeat scroll 0 0 transparent;
    display: block;
    height: 53px;
    width: 82px;
}

.my-cart-checkout-section {
	float:right;
	text-align:right;
	/*margin:22px 0 0 0;*/
	height:52px;
}
.my-cart-checkout-section p {
	/*float:left;*/
	padding:7px 0px 6px 0;
}
.my-cart-checkout-section p a {
	 font: bold 12px "Segoe UI","Segoe UI Semibold",Arial,sans-serif;
	color:#4B4B4B;
	text-transform:capitalize;
	background:url(../images/my-cart-secbg.png) no-repeat left top;
	padding:0 0 0 27px;
}
.my-cart-checkout-section p a:hover {
	color:#666;
}

.my-cart-checkout-section button.header-checkout-btn{
	background:none ;
	behavior:none;
    border: 0 none;
    cursor: pointer;
    margin: 0;
    overflow: visible;
    padding: 0;
    width: auto;
}

.my-cart-checkout-section button.header-checkout-btn span{
	background:#a19d9d ;
	behavior:none;
	border:none ;
    color: #FFFFFF;
    display: block;
    font: bold 12px/15px "Myriad Pro", Tahoma, "Century Gothic";
    height:18px;
    white-space: nowrap;
	-moz-border-radius: 2px;/* Firefox */
	-webkit-border-radius: 2px;/* Safari and Chrome */
	border-radius: 2px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative ;
	text-shadow:none;
	margin:0;
}

.my-cart-checkout-section button.header-checkout-btn span span{
	background:none ;
	behavior:none;
	border:none;
	padding:0px 10px;
	margin:0;
}

/*Headre-start*/

.header-bg{
	background:url(../images/header-bg.jpg) repeat-x;
}

.logo-sec{
	width:191px;
	margin:15px 0 0 13px;
	float:left;
	height:98px;
}

.welcome-sec{
	float:right;
	min-width:290px;
	text-align:right;
}

.account-sec-link ul{
    float:left;
	margin: 20px 20px 10px;
	padding-bottom:14px;
}

.account-sec-link ul li{
	float:right;
	margin-right:23px;
}

.account-sec-link ul li.last{
	float:right;
	margin:0;
}


.account-sec-link ul li a{
	font:normal 11px Arial, Tahoma, Georgia;
	color:#2e2e2e;
}


.account-sec-link ul li a:hover{
	font:normal 11px Arial, Tahoma, Georgia;
	color:#fff;
}

.welcome-sec p.wel-guest-txt{
	font:bold 17px Georgia, Tahoma, Arial;
	color:#fff;
	text-align:right;
}

.register-sec-ac ul li{
	background:url(../images/link-sep.png) no-repeat right;
	float:right;
	margin:0 10px 0 0;
	padding:0 10px 0 0;
}

.register-sec-ac ul li.last{
	background:none;
	float:right;
	margin:0;
	padding:0;
}

.register-sec-ac ul li a{
	font:normal 11px Arial, Tahoma, Georgia;
	color:#2e2e2e;
}

.register-sec-ac ul li a:hover{
	font:normal 11px Arial, Tahoma, Georgia;
	color:#fff;
}

.welcome-sec p.call-num{
	font:bold 18px Helvetica, Arial, sans-serif;
	color:#242424;
}

.navi-main-sec{
	height:44px;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#79a264), to(#638751));
	background: -webkit-linear-gradient(#79a264, #638751);
	background: -moz-linear-gradient(#79a264, #638751);
	background: -ms-linear-gradient(#79a264, #638751);
	background: -o-linear-gradient(#79a264, #638751);
	background: linear-gradient(#79a264, #638751);
	-pie-background: linear-gradient(#79a264, #638751);
	behavior: url('../PIE/PIE.php');
	position:relative;
	background-color:#638751;
	z-index:1;
}

.navi-main .main-menu ul li{
	float:left;
	background:url(../images/navi-sep.jpg) no-repeat left center;
	text-align:center;
	padding-left:1px;
	height:40px;
}
.navi-main .main-menu ul li .pro-cat ul.pro-nav li {
	background:none;
}

.navi-main .main-menu ul li a{
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#66945d), to(#4a6a42));
	background: -webkit-linear-gradient(#66945d, #4a6a42);
	background: -moz-linear-gradient(#66945d, #4a6a42);
	background: -ms-linear-gradient(#66945d, #4a6a42);
	background: -o-linear-gradient(#66945d, #4a6a42);
	background: linear-gradient(#66945d, #4a6a42);
	-pie-background: linear-gradient(#66945d, #4a6a42);
	behavior: url('../PIE/PIE.php');
	width:136px;
	height:33px;
	display:block;
	font:normal 19px Georgia, Tahoma, Arial;
	color:#fff;
	padding:7px 0 0 0;
	position:relative;
	background-color:#4a6a42;
	z-index:1000;
}

.navi-main .main-menu ul li a:hover, .navi-main .main-menu ul li.active a{
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#79a264), to(#638751));
	background: -webkit-linear-gradient(#79a264, #638751);
	background: -moz-linear-gradient(#79a264, #638751);
	background: -ms-linear-gradient(#79a264, #638751);
	background: -o-linear-gradient(#79a264, #638751);
	background: linear-gradient(#79a264, #638751);
	-pie-background: linear-gradient(#79a264, #638751);
	behavior: url('../PIE/PIE.php');
	width:136px;
	height:33px;
	display:block;
	font:normal 19px Georgia, Tahoma, Arial;
	color:#fff;
	padding:7px 0 0 0;
	position:relative;
	background-color:#638751;
	z-index:1000;
}

.orange-belt{
	background:#eb8f00;
	height:4px;
}

/*Header-Over*/


/*Index-start*/

.main-sec{
	padding-bottom:22px;
	width:auto;
}

.cont-left-panel{
	float:left;
	margin:0 14px 0 0;
	width:218px;
}

.shop-by-cat{
	padding-bottom:12px;
}

.cont-right-panel{
	float:left;
	width:775px;
}

.search-box{
	margin:1px 0 13px 0;
}

.search-box button.button{
	background: none repeat scroll 0 0 transparent;
    border: 0 none;
    cursor: pointer;
    margin: 0;
    overflow: visible;
    padding: 0;
    width: auto;
}

.search-box button.button span{
	-moz-border-radius:2px;/* Firefox */
	-webkit-border-radius:2px;/* Safari and Chrome */
	border-radius:2px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#f3a703), to(#c58600));
	background: -webkit-linear-gradient(#f3a703, #c58600);
	background: -moz-linear-gradient(#f3a703, #c58600);
	background: -ms-linear-gradient(#f3a703, #c58600);
	background: -o-linear-gradient(#f3a703, #c58600);
	background: linear-gradient(#f3a703, #c58600);
	-pie-background: linear-gradient(#f3a703, #c58600);
	behavior: url('../PIE/PIE.php');
	background-color:#c58600;
	position:relative;
	z-index:-1;
    display: block;
	width:32px;
	height:20px;
	padding:0;
}

.search-box button.button span span{
	background:none;
	font: bold 14px/19px Arial,Tahoma,Georgia;
	color: #FFFFFF;
	text-shadow:none;
	padding:0;
}

.search-box p.search-txt{
	float:left;
	font:bold 13px Tahoma, Arial, Georgia;
	color:#4d6e45;
	padding:0 4px 0 0;
}

.search-box p.search-field{
	float:left;
	background:url(../images/search-field.png) no-repeat;
	width:125px;
	height:20px;
	padding-top:1px;
	padding-left:1px;
}
.search-box p.search-field input{
	height:16px;
	width:121px;
	border:none;
	padding-left:2px;
	padding-right:2px;
	font:normal 11px Tahoma, Arial, Georgia;
	color:#4d6e45;
}

.search-box a p.gobtn{
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#f3a703), to(#c58600));
	background: -webkit-linear-gradient(#f3a703, #c58600);
	background: -moz-linear-gradient(#f3a703, #c58600);
	background: -ms-linear-gradient(#f3a703, #c58600);
	background: -o-linear-gradient(#f3a703, #c58600);
	background: linear-gradient(#f3a703, #c58600);
	-pie-background: linear-gradient(#f3a703, #c58600);
	-moz-border-radius: 2px;/* Firefox */
	-webkit-border-radius: 2px;/* Safari and Chrome */
	border-radius: 2px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	background-color:#c58600;
	float:left;
	width:32px;
	height:18px;
	font:bold 14px Arial, Tahoma, Georgia;
	color:#fff;
	text-transform:uppercase;
	text-align:center;
	padding-top:1px;
}

.shop-by-txt p{
	float:left;
}

.shop-by-txt p.shop-by-title-txt{
	font:normal 24px Georgia, Tahoma, Arial;
	color:#4d6e45;
}

.shop-by-txt p.shop-by-icon{
	margin:4px 7px 0 0;
}

.shop-by-txt{
	border-bottom:1px solid #48473b;
	width:185px;
	padding-bottom:3px;
}

.category ul li{
	background:url(../images/cate-icon.png) no-repeat 6px 12px;
	padding:10px 0 0 30px;
}

.category ul li a{
	font:normal 14px Arial, Tahoma, Georgia;
	color:#7a7145;
	text-decoration:none;
}

.category ul li.current{
	font:normal 14px Arial, Tahoma, Georgia;
	color:#eb8f00;
	text-decoration:none;
}


.category ul li a:hover{
	font:normal 14px Arial, Tahoma, Georgia;
	color:#eb8f00;
	text-decoration:none;
}

.category ul li.active a{
	font:normal 14px Arial, Tahoma, Georgia;
	color:#eb8f00;
	text-decoration:none;
}


.cont-right-main{
	background:#d6d0a1;
	padding:11px;
	margin:0 0 0 0;
}

.cont-right-white{
	background:#fff;
	padding:8px;
	min-height: 500px;
}

.cont-right-white div ul {
	margin-left: 15px;
}

.cont-right-white div ul li {
	padding: 3px 0;
	list-style: disc;
}

.featured-pro-sec h2{
	font:normal 23px Georgia, Tahoma, Arial;
	color:#4d6e45;
	border-bottom:1px solid #b9b9b9;
	padding:8px 0 0 0;
	text-align:left;
}

.featured-pro-sec{
	padding:0 10px 0 10px;
	text-align:center;
}

.featured-pro-sec ul li{
	float:left;
	width:160px;
	margin:0px 20px 0 0;
	list-style: none !important;
}

.featured-pro-sec ul li.last{
	float:left;
	width:160px;
	margin: 0;
}

.fea-pro-img, .fea-pro-name{
	text-align:center;
}

.fea-pro-name {  }
p.pro-name-title {
	margin:0 0 3px 0;
}
p.pro-name-title a{
	font-family: Tahoma,Arial,"Cambria Math","Palatino Linotype";
	font-size: 12px;
	font-weight: bold;
	color:#6d2e9e;
	text-transform:capitalize;
	display:block;
}

p.pro-name-title a:hover{
	color:#666;
}

p.pro-sub-title{
	font:normal 12px Tahoma, Arial, Georgia;
	color:#565656;
	margin:0;
}

.data-table .price-box{
	margin:0;
}

.price-box{
	padding:0 0 0px 0;
	margin:3px 0 5px 0;
}

.featured-pro-sec .price-box { /* height:34px; */ }

.price-box p.special-price{
	display:inline;
}

.cms-index-index .price-box p.old-price span.price-label{
	display:none;
}

.cms-index-index .price-box p.special-price span.price-label{
	display:none;
}

.price-box p.seving-text{
	display:inline;
}

button.add-to-cart{
	background: none repeat scroll 0 0 transparent;
    border: 0 none;
    cursor: pointer;
    margin: 0 0 0 0;
    overflow: visible;
    padding: 0;
    width: auto;
}

button.add-to-cart span{
	border:1px solid #ffa800;
	-moz-border-radius:4px;/* Firefox */
	-webkit-border-radius:4px;/* Safari and Chrome */
	border-radius:4px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#f59600), to(#b46a00));
	background: -webkit-linear-gradient(#f59600, #b46a00);
	background: -moz-linear-gradient(#f59600, #b46a00);
	background: -ms-linear-gradient(#f59600, #b46a00);
	background: -o-linear-gradient(#f59600, #b46a00);
	background: linear-gradient(#f59600, #b46a00);
	-pie-background: linear-gradient(#f59600, #b46a00);
	behavior: url('../PIE/PIE.php');
	position:relative;
	background-color:#b46a00;
	height:25px;
	display:block;
	padding:0;
	white-space:nowrap;
}

button.add-to-cart span span{
	background:none;
	border:none;
	font:bold 14px/24px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#fff;
	text-shadow:none;
	padding:0 8px 0 8px;
}

.small-banner-sec{
	padding:10px 0 0 0;
	width:208px;
}

.freeshipping-banner-sec{
	margin:0 0 12px 0;
	background:#bab27c;
	-moz-border-radius: 2px;/* Firefox */
	-webkit-border-radius: 2px;/* Safari and Chrome */
	border-radius: 2px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	padding:4px;
	height:120px;
	width:200px;
}

.need-to-banner{
	background:#b7879d;
	-moz-border-radius: 2px;/* Firefox */
	-webkit-border-radius: 2px;/* Safari and Chrome */
	border-radius: 2px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	padding:4px;
	margin-bottom:12px;
	width:200px;
	position:relative;
}
.need-to-banner .need-to-cont{
	background:url(../images/need-to-banner-img.png) no-repeat #fff;
	height:96px;
}

.need-to-cont p.access-txt{
	font:normal 12px Arial, Tahoma, Georgia;
	color:#387e01;
	text-decoration:none;
	width:75px;
	padding:57px 0 0 8px;
}

.need-to-cont p.access-txt a {
	font:normal 12px Arial, Tahoma, Georgia;
	color:#387e01;
	text-decoration:underline;
}

.need-to-cont p.access-txt a:hover {
	font:normal 12px Arial, Tahoma, Georgia;
	color:#eb8f00;
	text-decoration:underline;
}

.newslatter-banner{
	background:#a6b373;
	-moz-border-radius: 2px;/* Firefox */
	-webkit-border-radius: 2px;/* Safari and Chrome */
	border-radius: 2px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	padding:4px;
	width:200px;
	margin-bottom:12px;
	position:relative;
}


.news-cont{
	background:#fff;
}

.news-txt-img{
	padding:8px 0 0 8px;
}

.special-txt{
	font:normal 12px Arial, Tahoma, Georgia;
	color:#000000;
	padding-left:8px;
}

.news-text-field p{
	float:left;
}

.news-text-field p.news-field{
	padding-left:8px;
}

.news-text-field p.go-btn-news button.button{
	 background: none repeat scroll 0 0 transparent;
    border: 0 none;
    cursor: pointer;
    margin: 0;
    overflow: visible;
    padding: 0;
    width: auto;
}

.news-text-field p.go-btn-news button.button span{
	-moz-border-radius: 2px;/* Firefox */
	-webkit-border-radius: 2px;/* Safari and Chrome */
	border-radius: 2px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#a6c900), to(#7b9500));
	background: -webkit-linear-gradient(#a6c900, #7b9500);
	background: -moz-linear-gradient(#a6c900, #7b9500);
	background: -ms-linear-gradient(#a6c900, #7b9500);
	background: -o-linear-gradient(#a6c900, #7b9500);
	background: linear-gradient(#a6c900, #7b9500);
	-pie-background: linear-gradient(#a6c900, #7b9500);
	behavior: url('../PIE/PIE.php');
	position:relative;
	background-color:#7b9500;
    display: block;
    height:20px;
	width:32px;
	padding:0;
	margin:0;
}

.news-text-field p.go-btn-news button.button span span{
	background:none;
	text-shadow:none;
	color:#fff;
	font:bold 14px/19px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	padding:0;
	margin:0;
}

.news-text-field p.news-field input{
	border:1px solid #b2bc80;
	height:19px;
	padding:0;
	margin:10px 0 10px 0px;
	position:relative;
	-moz-border-radius: 2px;/* Firefox */
	-webkit-border-radius: 2px;/* Safari and Chrome */
	border-radius: 2px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	width:143px;
}

.go-btn-news{
	margin-left:2px;
	margin-top:9px;
}

.go-btn-news a{
	width:27px;
	height:18px;
	padding:1px 0 0 4px;
	display:block;
	font:bold 14px Arial, Tahoma, Georgia;
	color:#fff;
	text-shadow:-2px 2px #6a8800;
	position:relative;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#a6c900), to(#7b9500));
	background: -webkit-linear-gradient(#a6c900, #7b9500);
	background: -moz-linear-gradient(#a6c900, #7b9500);
	background: -ms-linear-gradient(#a6c900, #7b9500);
	background: -o-linear-gradient(#a6c900, #7b9500);
	background: linear-gradient(#a6c900, #7b9500);
	-pie-background: linear-gradient(#a6c900, #7b9500);
	-moz-border-radius: 2px;/* Firefox */
	-webkit-border-radius: 2px;/* Safari and Chrome */
	border-radius: 2px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	background-color:#7b9500;

}

/*Index-Over*/

/*Footer-Start*/

.footer-link-sec{
	text-align:center;
}

.footer-sec{
	background:url(../images/footer-bg.jpg) repeat-x #3b3b38;
	min-height:295px;
	padding:20px 0 0 0;
}

.monn-green-belt{
	background:#91b87d;
	height:11px;
}

.footer-link-sec ul li{
	width:167px;
	padding-right:41px;
	padding-left:12px;
	float:left;
	text-align:left;
}

.footer-link-sec ul li.products {
	width: 310px;
}

.footer-link-sec ul li.products ul { width: 150px; }
.footer-link-sec ul li.products ul.left{ float: left; margin-right: 10px; }
.footer-link-sec ul li.products ul.right { float: right; }

.footer-link-sec ul li.last{
	width:auto;
	padding-right:0px;
	float:left;
	text-align:left;
}

.footer-link-sec li h3{
	font:bold 12px Arial, Tahoma, Georgia;
	color:#98c083;
}

.footer-link-sec li ul li a{
	font:normal 12px  Arial, Tahoma, Georgia;
	color:#f8f7e6;
	text-decoration:none;
}

.footer-link-sec li ul li{
	padding:3px 0 0px 0;
	float:none;
	width:auto;
}

.footer-link-sec li ul li a:hover{
	font:normal 12px Arial, Tahoma, Georgia;
	color:#f8f7e6;
	text-decoration:underline;
}

.copyright-sec{
	text-align:center;
	padding-top:20px;
}

.copyright-sec p{
	font:normal 10px Arial, Tahoma, Georgia;
	color:#f8f7e6;
}

.copyright-sec ul li{
	display:inline;
	padding-right:15px;
}

.copyright-sec ul li.last{
	display:inline;
	padding-right:0px;
}

.copyright-sec ul li a{
	font:normal 10px Arial, Tahoma, Georgia;
	color:#f8f7e6;
	text-decoration:none;
}

.copyright-sec ul li a:hover{
	font:normal 10px Arial, Tahoma, Georgia;
	color:#f8f7e6;
	text-decoration:underline;
}



/************ devang css ***************/
.product-essential {
    float: left;
    width: 296px;
	margin-left:10px;
}
.product-collateral {
    float: right;
	width:402px;
	margin-left:14px;
	padding-top:30px;
	margin-right:15px;

}
/*************devang css over ***********/

/*Footer-Over*/
/********************************** end of custom css ************************************/


/********************************Mayur css **********************************************/

.featured-pro-sec ul li .price-box p.saving-text{
	font:normal 12px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	font-style:italic;
	color:#659a00;
	display:inline;
	text-transform:capitalize;
}

.product-des .pro-description-sec .pro-dea-title{
	float:left;
	height:24px;
	width:118px;
	border:1px solid #DCDFE0;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#64905b), to(#4d6e44));
	background: -webkit-linear-gradient(#64905b, #4d6e44);
	background: -moz-linear-gradient(#64905b, #4d6e44);
	background: -ms-linear-gradient(#64905b, #4d6e44);
	background: -o-linear-gradient(#64905b, #4d6e44);
	background: linear-gradient(#64905b, #4d6e44);
	-pie-background: linear-gradient(#64905b, #4d6e44);
	-moz-border-radius:5px 5px 0px 0px;/* Firefox */
	-webkit-border-radius:5px 5px 0px 0px;/* Safari and Chrome */
	border-radius:5px 5px 0px 0px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	font:bold 14px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#fff;
	padding-left:10px;
	background-color:#4d6e44;
	padding-top:5px;
	position:relative;
}

.product-des .pro-description-sec .view-label{
	float:right;
	background:url(../images/view-lable-icon.jpg) no-repeat left center;
	padding-left:30px;
	padding-top:7px;
	height:15px;
	margin-left:1px;
}

.product-des .pro-description-sec .view-label a{
	font:normal 12px "Myriad Pro", Tahoma, "Century Gothic";
	color:#202020;
	text-decoration:underline;
}

.product-des .pro-description-sec .view-label a:hover{
	font:normal 12px "Myriad Pro", Tahoma, "Century Gothic";
	color:#dc8700;
	text-decoration:underline;
}

.product-des .pro-content{
	border:1px solid #dcdfe0;
	-moz-border-radius: 3px;/* Firefox */
	-webkit-border-radius: 3px;/* Safari and Chrome */
	border-radius: 3px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	margin:-1px 0 0 0;
	position:relative;
}

.box-collateral .box-title h2{
	height:24px;
	width:150px;
	border:1px solid #DCDFE0;
	font:bold 14px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#fff;
	padding:5px 0 0 10px;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#7f38b6), to(#612c8b));
	background: -webkit-linear-gradient(#7f38b6, #612c8b);
	background: -moz-linear-gradient(#7f38b6, #612c8b);
	background: -ms-linear-gradient(#7f38b6, #612c8b);
	background: -o-linear-gradient(#7f38b6, #612c8b);
	background: linear-gradient(#7f38b6, #612c8b);
	-pie-background: linear-gradient(#7f38b6, #612c8b);
	-moz-border-radius:5px 5px 0px 0px;/* Firefox */
	-webkit-border-radius:5px 5px 0px 0px;/* Safari and Chrome */
	border-radius:5px 5px 0px 0px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');	position:relative;
	background-color:#612c8b;
}

.product-essential .box-collateral ul.products-grid{
	border:1px solid #DCDFE0;
	margin:-1px 0 0 0 !important;
	padding:15px 0 15px 12px;
	-moz-border-radius:3px;/* Firefox */
	-webkit-border-radius:3px;/* Safari and Chrome */
	border-radius:3px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
}

.product-essential .box-collateral ul.products-grid li{
	width:125px !important;
	text-align:center;
}

.product-essential .box-collateral ul.products-grid li a img{
	width:125px !important;
	height:125px !important;
}

.product-essential .box-collateral ul.products-grid li.last{
	width:125px !important;
	margin:0;
}

.product-essential .box-collateral ul.products-grid li .price-box p.saving-text{
	font:normal 12px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#659a00;
	display:inline;
	font-style:italic;
}

.product-essential .box-collateral .products-grid li .price-box p.old-price span.price-label, .product-essential .box-collateral .products-grid li .price-box p.special-price span.price-label{
	display:none;
}

.product-des .pro-content p{
	padding:10px;
}

.cont-right-panel .breadcrumbs ul li{
	font:bold 10px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#202020;
}

.cont-right-panel .breadcrumbs ul li a{
	font:bold 10px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#202020;
	text-decoration:underline;
}

.cont-right-panel .breadcrumbs ul li span{
	font:bold 10px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#202020;
	text-decoration:none;
}

.cont-right-panel .breadcrumbs{
	text-align:right;
}

.cont-right-panel .breadcrumbs ul li a:hover{
	font:bold 10px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#202020;
	text-decoration:none;
}

.product-collateral .product-main-info .price-box p.old-price span{
	font:bold 16px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#565656;
	text-decoration:none !important;
}

.product-collateral .product-main-info .price-box p.special-price span{
	font:bold 20px Tahoma, Arial, "Cambria Math", "Palatino Linotype" !important;
	color:#dc8700 !important;

}

.product-collateral .product-main-info .price-box p.saving-text{
	font:normal 16px Tahoma, Arial, "Cambria Math", "Palatino Linotype" !important;
	color:#659a00 !important;
	font-style:italic !important;
}

.product-collateral .product-main-info .price-box p.old-price span.price{
	text-decoration:line-through !important;
}

.product-collateral .product-main-info .price-box .old-price{
	text-decoration:none !important;
}

.product-collateral .product-shop .add-to-box{
	border:1px solid #ccc;
	background:#ececec;
	-moz-border-radius:2px;/* Firefox */
	-webkit-border-radius:2px;/* Safari and Chrome */
	border-radius:2px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	margin-bottom:79px;
	padding:10px;
	position:relative;
}

.product-collateral .product-shop .product-main-info{
	border:none;
}

.product-collateral .product-shop .add-to-box .addtocart{
	width:105px;
	float:left;
}

.product-collateral .product-shop .add-to-box .addtocart .input-qty{
	background:url(../images/qty-field-bg.jpg) no-repeat;
	width:41px;
	height:23px;
	float:left;
	padding:2px 0 0 1px;
}

.product-collateral .product-shop .add-to-box .addtocart .input-qty input{
	width:38px !important;
	height:20px;
	border:none;
}

.product-collateral .product-shop .add-to-box .addtocart button{
	margin-top:8px;
}

.product-collateral .product-shop .add-to-box .addtocart label{
	font:bold 13px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#202020;
	padding-left:8px;
	padding-top:2px;
	float:right;
}

.product-collateral .product-shop .add-to-box ul.add-to-links{
	float:left;
	padding-top:31px;
	padding-left:5px;
}

.product-collateral .product-shop .add-to-box ul.add-to-links li{
	margin:0 !important;
	padding: 0 !important;
	list-style: none;
}

.product-collateral .product-shop .add-to-box ul.add-to-links li a{
	font:normal 10px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#202020;
	text-decoration:underline;

}

.product-collateral .product-shop .add-to-box ul.add-to-links li a:hover{
	font:normal 10px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
	text-decoration:underline;
}

.product-essential .more-views ul li{
	border:none !important;
}

.product-essential .box-collateral {
	padding-top:25px;
}

.options-container-big .product-options-bottom .price-box{
	display:none;
}

.options-container-big .product-options p.required{
	display:none;
}

.options-container-big{
	background: none repeat scroll 0 0 #ececec;
	border:1px solid #ccc;
    clear: both;
    padding: 10px;
	-moz-border-radius:2px;/* Firefox */
	-webkit-border-radius:2px;/* Safari and Chrome */
	border-radius:2px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
	margin-bottom:20px;
}

.product-collateral .product-main-info p.pro-code{
	font:bold 12px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#565656;
	text-decoration:none;
	display:inline;
}

.product-collateral .product-main-info p.pro-code span, .product-collateral .product-main-info p.upc-code{
	font:normal 12px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#565656;
	text-decoration:none;
}

.cont-right-panel .cont-right-white #messages_product_view{
	width:739px;
/*	margin:10px 0 10px 0 !important;*/
}

.product-collateral .options-container-big .product-options-bottom .addtocart{
	width:105px;
}

.product-collateral .options-container-big .product-options-bottom .addtocart .input-qty{
	float:left;
}

.product-collateral .options-container-big .product-options-bottom{
	float:left;
}

.product-collateral .options-container-big ul.add-to-links{
	float:left;
	margin-top:31px;
}

.product-collateral .options-container-big ul.add-to-links li{
	margin:0;
}

.options-container-big .product-options-bottom label{
	 color: #202020;
    font: bold 13px Arial,Tahoma,"Cambria Math","Palatino Linotype";
    padding-left: 8px;
    padding-top: 2px;
}

.options-container-big .product-options dl dd .input-box select{
	width:180px;
}

.product-collateral .options-container-big ul.add-to-links li a{
	color: #202020;
    font: 10px Arial,Tahoma,"Cambria Math","Palatino Linotype";
    text-decoration: underline;
}

.product-collateral .options-container-big ul.add-to-links li a:hover{
	color: #dc8700;
    font: 10px Arial,Tahoma,"Cambria Math","Palatino Linotype";
    text-decoration: underline;
}

.options-container-big .product-options dl dt label{
	display:none;
}

.options-container-big .product-options dl dd{
	border:none;
	margin:0;
}

.options-container-big .product-options{
	margin:0;
}

.options-container-big .product-options-bottom .addtocart .input-qty{
	background: url(../images/qty-field-bg.jpg) no-repeat scroll 0 0 transparent;
    float: left;
    height: 23px;
    padding: 2px 0 0 1px;
    width: 41px;
}

.options-container-big .product-options-bottom .addtocart .input-qty input{
	border: medium none;
    height: 20px;
    width: 38px !important;
}

.options-container-big .product-options-bottom .addtocart button{
	padding:8px 0 0 0;
}

.category-view .page-title{
	background:#393936;
	padding:0 0px 0 0px;
	margin:0 8px 0 8px;
}

.catalog-category-view .toolbar{
	padding:0 8px 0 8px;
}

.catalog-category-view .toolbar-bottom .toolbar{
	padding:0;
}

.category-view .page-title h1{
	text-transform:uppercase;
	color:#fff;
	padding:10px 0 10px 10px;
}

.category-view .category-products ul li{
	margin-bottom:30px;
	text-align:center;
}

.category-view .category-products ul li .price-box p.old-price span.price-label{
	display:none;
}

.category-view .category-products ul li .price-box p.special-price span.price-label{
	display:none;
}

.category-view .category-products ul li .price-box p.saving-text{
	display:inline;
	font:normal 12px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#659a00;
	font-style:italic;
	text-transform:capitalize;
}

.category-view .category-products ul li h2{
	margin-bottom:3px;  text-align: center;
}

.checkout-cart-index .cont-right-white{
	padding:21px;
}

.category-view .toolbar-bottom{
	display:block;
}

.toolbar-bottom .toolbar .sorter{
	display:none;
}

.category-products ol li .product-shop .f-fix .price-box p.old-price span.price-label {
	display:none;
}

.category-products ol li .product-shop .f-fix .price-box p.special-price span.price-label{
	display:none;
}

.category-view .pager .limiter select{
	width:40px;
	height:19px;
	border:1px solid #c6c6c6;
}

.category-view .sorter .sort-by select{
	width:69px;
	height:20px;
	border:1px solid #c6c6c6;
}

.catalogsearch-result-index .category-products ul li{
	text-align:center;
	margin-bottom:30px;
}

.catalogsearch-result-index .cont-right-white .page-title{
	padding:0;
}

.catalogsearch-result-index .cont-right-white .page-title h1{
	padding:10px 0 10px 10px;
}

.catalogsearch-result-index .pager .limiter select{
	width:40px;
	height:18px;
	border:1px solid #c6c6c6;
}

.catalogsearch-result-index .sorter .sort-by select{
	width:69px;
	height:19px;
	border:1px solid #c6c6c6;
}

.product-collateral .product-shop .price-box p.special-price{
	display:block;
}

.cart .data-table thead{
	background-image:none;
	background-color:#dbdbdb;
}

.cart .data-table th{
	font:bold 11px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#393939;
	border-right:1px solid #d9d9d9;
	background-color:#DBDBDB;
}

.cart .cart-table tbody td, .cart .cart-table tbody td.pro-subtot{
	border-left:1px solid #cdcdcd;
	border-bottom:1px solid #cdcdcd;
}

.cart .cart-table tbody td.pro-img{
	border-left:1px solid #cdcdcd;
	border-bottom:1px solid #cdcdcd;
}


.data-table tbody tr.last td{
	border-bottom:0px;
}


.cart .data-table tr.even{
	background:#fff;
}

.cart .cart-table tbody td span.cart-price-subtot span{
	font:normal 12px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#5c8000;
	text-align:center;
}

.cart .a-right{
	text-align:center !important;
}

.cart .crosssell{
	width:342px;
	border:1px solid #c6c6c6;
	background:none;
	margin-right:22px;
	-moz-border-radius:5px;/* Firefox */
	-webkit-border-radius:5px;/* Safari and Chrome */
	border-radius:5px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
}

.cart .cart-collaterals .coupon-block{
	border:1px solid #c6c6c6;
	-moz-border-radius:5px;/* Firefox */
	-webkit-border-radius:5px;/* Safari and Chrome */
	border-radius:5px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
	padding-bottom:15px;
}

.cart .cart-collaterals .crosssell ul li{
	width:86px;
	float:left;
	text-align:center;
	padding:0;
	margin:9px 20px 15px 0;
}

.cart .cart-collaterals .crosssell ul{
	padding-left:22px;
}

.cart .cart-collaterals .crosssell ul li .product-shop .price-box p.old-price span.price-label{
	display:none;
}

.cart .cart-collaterals .crosssell ul li .product-shop .product-name a{
	font:bold 11px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#6d2e9e;
	text-decoration:underline;
}

.cart .cart-collaterals .crosssell ul li .product-shop .product-name a:hover{
	font:bold 11px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#6d7300;
	text-decoration:underline;
}

.cart .cart-collaterals .crosssell ul li .product-shop .price-box p.old-price span.price{
	font:normal 10px Tahoma, Arial, "Cambria Math", "Palatino Linotype" !important;
	color:#565656 !important;
	text-decoration:line-through !important;
}

.cart .cart-collaterals .crosssell ul li .product-shop .price-box p.special-price span.price{
	font:bold 10px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
	text-decoration:none;
}

.cart .cart-collaterals .crosssell ul li .product-shop .price-box p.saving-text{
	font:normal 10px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#659a00;
	font-style:italic;
}


.cart .cart-collaterals .crosssell ul li .product-shop .price-box p.special-price span.price-label{
	display:none;
}

.cart .cart-collaterals .crosssell ul li .product-shop p.cross-btn button.button{
	background: none repeat scroll 0 0 transparent;
    border: 0 none;
    cursor: pointer;
    margin: 0;
    overflow: visible;
    padding: 0;
    width: auto;
}

.cart .cart-collaterals .crosssell ul li .product-shop p.cross-btn button.button span{
	border:1px solid #ffa800;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#f59600), to(#b46a00));
	background: -webkit-linear-gradient(#f59600, #b46a00);
	background: -moz-linear-gradient(#f59600, #b46a00);
	background: -ms-linear-gradient(#f59600, #b46a00);
	background: -o-linear-gradient(#f59600, #b46a00);
	background: linear-gradient(#f59600, #b46a00);
	-pie-background: linear-gradient(#f59600, #b46a00);
	-moz-border-radius:4px;/* Firefox */
	-webkit-border-radius:4px;/* Safari and Chrome */
	border-radius:4px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
	height:18px;
	padding:0 10px 0 10px;
	background-color:#b46a00;
	margin:0;
	font:bold 11px/16px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#fff;
	text-transform:none;
	text-shadow:none;
}


.cart .cart-collaterals .crosssell ul li .product-shop p.cross-btn button.button span span{
	background-position: 100% 0;
	background:none;
	behavior:none;
	filter:none;
    padding:0px 0 0 0;
	border:0;
}

.cart .cart-collaterals .coupon-block .deals .discount h2{
	font:bold 17px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#2c2c2c;
	padding-top:11px;
}

.cart .cart-collaterals .coupon-block .deals .discount .discount-form label{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#2c2c2c;
}

.cart .cart-collaterals .coupon-block .deals .discount .discount-form .input-box input{
	width:176px;
	height:21px;
	border:1px solid #a1a1a1;
	margin:0;
	padding:0;
}

.cart .cart-total .totals .checkout-types button.button{
	background: none repeat scroll 0 0 transparent !important;
    border: 0 none;
    cursor: pointer;
    margin: 0;
    overflow: visible;
    padding: 0;
    width: auto;
}

.cart .cart-total .totals .checkout-types button.button span{
	border:1px solid #ffa800;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#f59600), to(#b46a00));
	background: -webkit-linear-gradient(#f59600, #b46a00);
	background: -moz-linear-gradient(#f59600, #b46a00);
	background: -ms-linear-gradient(#f59600, #b46a00);
	background: -o-linear-gradient(#f59600, #b46a00);
	background: linear-gradient(#f59600, #b46a00);
	-pie-background: linear-gradient(#f59600, #b46a00);
	-moz-border-radius:4px;/* Firefox */
	-webkit-border-radius:4px;/* Safari and Chrome */
	border-radius:4px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
	height:23px;
	background-color:#b46a00;
	padding:0 10px 0 10px;
	margin:0;
	font:bold 11px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#fff;
	text-transform:none;
	text-shadow:none;
}

.cart .cart-total .totals .checkout-types button.button span span{
    background-position: 100% 0;
	background:none;
	behavior:none;
	filter:none;
	margin:0;
    padding:0px !important;
	border:none;
}

.cart .totals table th, .cart .totals table td{
	text-align:right !important;
	text-transform:uppercase;
}

.cart .page-title .checkout-types li button.button{
	background: none repeat scroll 0 0 transparent;
    border: 0 none;
    cursor: pointer;
    margin: 0;
    overflow: visible;
    padding: 0;
    width: auto;
}

.cart .page-title .checkout-types li button.button span{
	border:1px solid #ffa800;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#f59600), to(#b46a00));
	background: -webkit-linear-gradient(#f59600, #b46a00);
	background: -moz-linear-gradient(#f59600, #b46a00);
	background: -ms-linear-gradient(#f59600, #b46a00);
	background: -o-linear-gradient(#f59600, #b46a00);
	background: linear-gradient(#f59600, #b46a00);
	-pie-background: linear-gradient(#f59600, #b46a00);
	-moz-border-radius:3px;/* Firefox */
	-webkit-border-radius:3px;/* Safari and Chrome */
	border-radius:3px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	height:22px !important;
	padding:0 10px 0 10px !important;
	text-shadow:none;
	position:relative;
	background-color:#b46a00;
}

.cart .page-title .checkout-types li button.button span span{
	background:none !important;
	behavior:none;
	padding:0 !important;
	border:none !important;
}

.cart .page-title{
	margin:0;
	padding:6px 6px 6px 14px;
	border:none;
	background:none;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#65935c), to(#4c6d43));
	background: -webkit-linear-gradient(#65935c, #4c6d43);
	background: -moz-linear-gradient(#65935c, #4c6d43);
	background: -ms-linear-gradient(#65935c, #4c6d43);
	background: -o-linear-gradient(#65935c, #4c6d43);
	background: linear-gradient(#65935c, #4c6d43);
	-pie-background: linear-gradient(#65935c, #4c6d43);
	-moz-border-radius:5px 5px 0px 0px;/* Firefox */
	-webkit-border-radius:5px 5px 0px 0px;/* Safari and Chrome */
	border-radius:5px 5px 0px 0px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
	background:#4c6d43;
}

.cart .page-title h1{
	font:bold 18px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#fff;
	padding:0;
}


.cart .data-table tfoot tr td{
	padding-right:238px;
	border-bottom:0px;
}

.cart .data-table tfoot tr td button.button{
	background: none repeat scroll 0 0 transparent;
    border: 0 none;
    cursor: pointer;
    margin: 0;
    overflow: visible;
    padding: 0;
    width: auto;
}

.cart .data-table thead {
	border-left:1px solid #cdcdcd;
	border-collapse:separate;
}

.cart .data-table tfoot tr td button.button span{
	height:19px;
	border:1px solid #84c178;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#64915b), to(#4e7045));
	background: -webkit-linear-gradient(#64915b, #4e7045);
	background: -moz-linear-gradient(#64915b, #4e7045);
	background: -ms-linear-gradient(#64915b, #4e7045);
	background: -o-linear-gradient(#64915b, #4e7045);
	background: linear-gradient(#64915b, #4e7045);
	-pie-background: linear-gradient(#64915b, #4e7045);
	-moz-border-radius:4px;/* Firefox */
	-webkit-border-radius:4px;/* Safari and Chrome */
	border-radius:4px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
	background-color:#4e7045;
	padding:0 10px 0 10px;
	margin:0;
	text-shadow:none;
	font:bold 12px/19px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#fff;
	text-transform:capitalize;
	text-decoration:none;
}

.cart .data-table tfoot tr td button.button span span{
	border:none;
	background:none;
	padding:0px 0 0 0;
	behavior:none;
}

.cart .cart-collaterals .coupon-block .discount .discount-form .buttons-set{
	margin:0;
	float:right;
	clear:none;
	width:65px;
	padding-right:10px;
}

.cart .cart-collaterals .coupon-block .discount #discount-coupon-form button.button{
	background: none repeat scroll 0 0 transparent;
    border: 0 none;
    cursor: pointer;
    margin: 0;
    overflow: visible;
    padding: 0;
    width: auto;
}

.cart .cart-collaterals .coupon-block .discount #discount-coupon-form button.button span{
	height:19px;
	border:1px solid #89c47d;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#638f5a), to(#4f7146));
	background: -webkit-linear-gradient(#638f5a, #4f7146);
	background: -moz-linear-gradient(#638f5a, #4f7146);
	background: -ms-linear-gradient(#638f5a, #4f7146);
	background: -o-linear-gradient(#638f5a, #4f7146);
	background: linear-gradient(#638f5a, #4f7146);
	-pie-background: linear-gradient(#638f5a, #4f7146);
	-moz-border-radius:4px;/* Firefox */
	-webkit-border-radius:4px;/* Safari and Chrome */
	border-radius:4px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
	background-color:#4f7146;
	padding:0 10px 0 10px;
	font:bold 12px/19px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#fff;
	text-shadow:none;
	text-transform:capitalize;
}

.cart .cart-collaterals .coupon-block .discount #discount-coupon-form button.button span span{
	background:none;
	behavior:none;
	padding:0px 0 0 0;
	border:none;
	border:none;
}

.cart .cart-collaterals .coupon-block .shipping h2{
	font:bold 17px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#2c2c2c;
	padding-top:6px;
}

.cart .cart-collaterals .coupon-block .shipping .shipping-form p{
	font:normal 12px/18px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#2c2c2c;
	width:200px;
}

.cart .cart-collaterals .coupon-block .shipping .shipping-form  ul.form-list li label{
	font:bold 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#5b5959;
	padding-bottom:3px;
}

.cart .cart-collaterals .coupon-block .shipping .shipping-form  ul.form-list li .required em{
	color: #F15C22;
    float: right;
    margin-right: 204px;
}

.cart .cart-collaterals .coupon-block .shipping .shipping-form  ul.form-list li .input-box select{
	width:253px;
	height:24px;
	border:1px solid #a1a1a1;
	/*padding:3px;*/
	margin:0px 0 0 0;
}

.cart .cart-total{
	float:right;
	width:240px;
}

.cart .cart-total .mcafee-logo{
	float:right;
	margin-top:10px;
}

.cart .cart-collaterals .coupon-block .shipping .shipping-form  ul.form-list li .input-box input.input-text{
	width:253px;
	/*height:21px;*/
	border:1px solid #a1a1a1;
}

/*.shipping-form .form-list li{
	margin:0;
}*/

.cart .cart-collaterals .coupon-block .shipping-form .buttons-set{
	clear:none;
	margin:0;
}

.cart .cart-collaterals .coupon-block .shipping-form .buttons-set button.button{
	background: none repeat scroll 0 0 transparent;
    border: 0 none;
    cursor: pointer;
    margin: 0;
    overflow: visible;
    padding: 0;
    width: auto;
	float:left;
}

.cart .cart-collaterals .coupon-block .shipping-form .buttons-set button.button span{
	height:21px;
	border:1px solid #89c47d;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#638f5a), to(#4f7146));
	background: -webkit-linear-gradient(#638f5a, #4f7146);
	background: -moz-linear-gradient(#638f5a, #4f7146);
	background: -ms-linear-gradient(#638f5a, #4f7146);
	background: -o-linear-gradient(#638f5a, #4f7146);
	background: linear-gradient(#638f5a, #4f7146);
	-pie-background: linear-gradient(#638f5a, #4f7146);
	-moz-border-radius:4px;/* Firefox */
	-webkit-border-radius:4px;/* Safari and Chrome */
	border-radius:4px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
	background-color:#4f7146;
	padding:0 10px 0 10px;
	font:bold 12px/19px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#fff;
	text-shadow:none;
	text-transform:capitalize;
}

.cart .cart-collaterals .coupon-block .shipping-form .buttons-set button.button span span{
	background: none repeat scroll 0 0 transparent;
	background:none;
	behavior:none;
	filter:none;
    border: medium none;
    padding: 0px 0 0;
}

.cart .cart-collaterals .coupon-block .giftcard h2{
	font:bold 17px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#2c2c2c;
}

.cart .cart-collaterals .coupon-block .giftcard #giftcard-form button.check-gc-status{
	margin:0 0 0 4px !important;
}

.cart .cart-collaterals .coupon-block .giftcard #giftcard-form button.button{
	background: none repeat scroll 0 0 transparent;
    border: 0 none;
    cursor: pointer;
    margin: 0 0px 0 0;
    overflow: visible;
    padding: 0;
    width: auto;
	float:left;
}

.cart .cart-collaterals .coupon-block .giftcard #giftcard-form button.button span{
	height:19px;
	border:1px solid #89c47d;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#638f5a), to(#4f7146));
	background: -webkit-linear-gradient(#638f5a, #4f7146);
	background: -moz-linear-gradient(#638f5a, #4f7146);
	background: -ms-linear-gradient(#638f5a, #4f7146);
	background: -o-linear-gradient(#638f5a, #4f7146);
	background: linear-gradient(#638f5a, #4f7146);
	-pie-background: linear-gradient(#638f5a, #4f7146);
	-moz-border-radius:4px;/* Firefox */
	-webkit-border-radius:4px;/* Safari and Chrome */
	border-radius:4px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
	padding:0px 5px 0 5px;
	background-color:#4f7146;
	margin:0px;
	font:bold 12px/18px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#fff;
	text-shadow:none;
	text-transform:capitalize;
	text-decoration:none;
}

.cart .cart-collaterals .coupon-block .giftcard #giftcard-form button.button span span{
	background: none repeat scroll 0 0 transparent;
    border: medium none;
	behavior:none;
    padding:0px;
	margin:0px;
}
.cart .cart-collaterals .coupon-block .shipping #co-shipping-method-form dl.sp-methods dt{
	color:#4f7146;
}

.cart #shopping-cart-table tbody tr td.pro-img{
	width:105px;
}

.cart #shopping-cart-table tbody tr td.pro-name{
	width:365px;
	text-align:left;
	vertical-align:middle;
}

.cart #shopping-cart-table tbody tr td.pro-price{
	width:74px;
	vertical-align:middle;
}

.cart #shopping-cart-table tbody tr td.pro-qty{
	width:67px;
}

.cart #shopping-cart-table tbody tr td.pro-remove{
	width:80px;
	vertical-align:middle;
}

.cart #shopping-cart-table tbody tr td.pro-subtot{
	width:101px;
	vertical-align:middle;
}

.cart #shopping-cart-table tbody tr .cart-price .price-box p.saving-text{
	display:block;
}

.cart #shopping-cart-table tbody tr td.pro-qty{
	vertical-align:middle;
}

.cart #shopping-cart-table tbody tr td.pro-qty input{
	width:32x !important;
	height:13px;
	border:1px solid #cbcbcb;
	margin:0;
	padding:3px;
	font:normal 12px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#5c8000;
}

.cart #shopping-cart-table tbody tr td.pro-remove a{
	font:normal 12px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#595958;
	text-decoration:underline;
	text-transform:lowercase;

}

.cart #shopping-cart-table tbody tr td.pro-remove a:hover{
	font:normal 12px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
	text-decoration:underline;
	text-transform:lowercase;

}

/*---- checkout -----*/

.checkout-onepage-index .cont-right-white .main-con-sec{
	float:left;
	width:635px;
}

.checkout-onepage-index .cont-right-white .main-right-sec{
	float:right;
	width:280px;
}

.checkout-onepage-index .cont-right-white{
	padding:22px 28px 22px 22px;
}

.checkout-onepage-index .form-list input.input-text{
	width:231px;
	/*height:23px;*/
	border:1px solid #acacac;
	margin:0;
	float:none;
}

ul.form-list li.control input{
	height:auto !important;
}

/*---- Account page ----*/

.catalog-product-compare-index .page-title a.link-print{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#659a00;
}

.catalog-product-compare-index .page-title a.link-print:hover{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
}


.catalog-product-compare-index .page-title{
	background:none;
    border-bottom: 1px solid #CFCFCF;
    margin-bottom: 10px;
	padding:20px 0 0 0;
}

.catalog-product-compare-index .page-title h1{
	font:normal 26px/28px "Cambria Math", Arial, Tahoma, "Palatino Linotype";
	color:#659A00;
	padding-bottom:5px;
}

.my-account .page-title, .cont-right-white .page-title, .customer-account-login .page-title, .customer-account-logoutsuccess .page-title, .customer-account-create .page-title, .customer-account-forgotpassword .page-title, .checkout-onepage-index .page-title, .checkout-onepage-success .page-title, .cms-page-view .page-title, .cms-no-route .page-head-alt, .catalog-seo-sitemap-category .page-title, .catalog-seo-sitemap-product .page-title, .checkout-cart-index .empty-page-title{
	background:none;
    border-bottom: 1px solid #CFCFCF;
    margin-bottom: 10px;
	padding:0;
}

.my-account .page-title h1,  .cont-right-white .page-title h1, .customer-account-login .page-title h1, .customer-account-logoutsuccess .page-title h1, .customer-account-create .page-title h1, .customer-account-forgotpassword .page-title h1, .checkout-onepage-index .page-title h1, .checkout-onepage-success .page-title h1, .cms-page-view .page-title h1, .cms-no-route .page-head-alt h3, .catalog-seo-sitemap-category .page-title h1, .catalog-seo-sitemap-product .page-title h1, .checkout-cart-index .empty-page-title h1{
	font:bold 24px/28px Tahoma, "Cambria Math", "Palatino Linotype";
	color:#352f25;
	padding-bottom:8px;
}

.cms-no-route a{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#659a00;
}

.cms-no-route a:hover{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
}

.customer-account-index .cont-right-white{
	padding:10px;
}

.my-account table.data-table{
	border:1px solid #dbdbdb;
}

.customer-account-index .welcome-msg p{
	font:normal 13px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#565656;
}

.customer-account-index .box-head{
	border-bottom:1px solid #d9d9d9;
	margin-bottom:10px;

}

.customer-account-index .box-recent .box-head h2{
	font:bold 16px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#6D2E9E;
	float:left;
}

.customer-account-index .box-recent .box-head a{
	padding-top:14px;
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#659A00;
}

.customer-account-index .box-recent .box-head a:hover{
	padding-top:14px;
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
}

.customer-account-index .box-head h2{
	font:bold 16px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#6D2E9E;
	float:left;
	padding:10px 0 0 0;
	border:none;
	margin:0 0 0 0;
}

.my-account h2{
	font:bold 16px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#6D2E9E;
	border-bottom:1px solid #cfcfcf;
	padding:0 0 7px 0;
	margin:0 0 7px 0;
}

.customer-account-index .box-recent .box-head a{
	float:right;
}

.customer-account-index h3, .customer-account-index h4{
	font:bold 13px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#2d2d2d;
	padding-bottom:3px;
}
.customer-account-index h3{
	float:none;
}

.my-account h3{
	font:bold 13px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#2d2d2d;
	padding-bottom:3px;
float:left

}

.customer-account-index .box-title a{
	float:right;
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#659A00;
}

.customer-account-index .box-title a:hover{
	float:right;
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
}

.customer-account-index .dashboard .box-info .box-content a{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#659A00;
	text-decoration:none;
}

.customer-account-index .dashboard .box-info .box-content a:hover{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
	text-decoration:none;
}

.data-table tbody tr td{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#565656;
	text-align:center;
}

.data-table tbody tr td.short_description{
	text-align:left;
}

.data-table tbody tr td.a-left{
	text-align:left;
}

.data-table tbody tr td span.price{
	text-align:center;
}

.data-table tbody tr.even, .data-table tbody tr{
	background:#fff;
}

.data-table td{
	border-right:1px solid #d9d9d9;
}

.customer-account-index .my-account .box-recent table tbody tr td span.nobr a{
	color:#659A00;
}

.customer-account-index .my-account .box-recent table tbody tr td span.nobr a:hover{
	color:#dc8700;
}

.box-info .col2-set .box h2{
	color: #6D2E9E;
    float: left;
    font: bold 16px Arial,Tahoma,"Cambria Math","Palatino Linotype";
}

.box-info .col2-set .box .box-head a{
	padding-top:13px;
}

.customer-account-index .box-account.box-info{
	padding-top:20px;
}

.cont-main-sec .cont-left-panel .shop-by-cat{
	margin-top:20px;
}

#giftcard-form .buttons-set{
	margin:0;
	width:739px;
}

#giftcard-form .buttons-set button{
	margin-left:5px !important;
}

.page-print .buttons-set{
	margin-top:5px;
}

form#form-validate button, .customer-address-index .my-account .title-buttons button, .my-account .my-wishlist button, #giftcard-form .buttons-set button, #contactForm .buttons-set button{
	background: none repeat scroll 0 0 transparent;
    border: 0 none;
    cursor: pointer;
    margin: 0;
    overflow: visible;
    padding: 0;
    width: auto;
}

form#form-validate button span, .customer-address-index .my-account .title-buttons button span, .my-account .my-wishlist button span, #giftcard-form .buttons-set button span, #contactForm .buttons-set button span, .customer-account-login button span{
	border:1px solid #ffa800;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#f59600), to(#b46a00));
	background: -webkit-linear-gradient(#f59600, #b46a00);
	background: -moz-linear-gradient(#f59600, #b46a00);
	background: -ms-linear-gradient(#f59600, #b46a00);
	background: -o-linear-gradient(#f59600, #b46a00);
	background: linear-gradient(#f59600, #b46a00);
	-pie-background: linear-gradient(#f59600, #b46a00);
	-moz-border-radius:4px;/* Firefox */
	-webkit-border-radius:4px;/* Safari and Chrome */
	border-radius:4px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
	padding:0;
	height:25px;
	background-color:#b46a00;
}

form#form-validate button span span, .customer-address-index .my-account .title-buttons button span span, .my-account .my-wishlist button span span, #giftcard-form .buttons-set button span span, #contactForm .buttons-set button span span, .customer-account-login button span span, #contactForm .buttons-set button span span{
	background:none;
	border:none;
	font:bold 14px/23px Arial, Tahoma, "Cambria Math", "Palatino Linotype" ;
	color:#fff;
	text-transform:capitalize;
	text-shadow:none;
	padding:0 10px 0 10px;
}

.buttons-set p{
	width:auto;
}

form#form-validate h2.legend{
	color: #6D2E9E;
    font: bold 16px Arial,Tahoma,"Cambria Math","Palatino Linotype";
	border-bottom:1px solid #cfcfcf;
	padding-bottom:3px;
	margin-bottom:10px;
}

ul.form-list .field{
	clear: none !important;
    float: left;
    width: 262px;
}

ul.form-list li label{
	color: #565656;
    display: inline-block;
    float: none;
    font: bold 12px Arial,Helvetica,sans-serif;
    padding: 0 0 2px;
    text-align: left;
    width: auto;
}

ul.form-list li .input-box{
	clear: both;
    display: block;
    float: none;
/*    width: 260px;
	height:30px;*/
}

ul.form-list input.input-text{
	width: 248px;
	padding:2px 3px;
}



ul.form-list li input{
	background: none repeat scroll 0 0 #FFFFFF;
    border-color: #cfcfcf;
    color: #565656;
    font: 12px Arial,Helvetica,sans-serif;
/*    height: 17px;*/
}


.my-account .buttons-set p{
	width:auto;
}

.my-account .buttons-set p.back-link{
	padding-top:11px;
	padding-left:10px;
}

.my-account .buttons-set p.back-link a{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#659A00;
	text-decoration:none;
}

.my-account .buttons-set p.back-link a:hover{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
	text-decoration:none;
}


.customer-address-index .my-account .col-1.addresses-primary, .customer-address-index .my-account .col-2.addresses-additional{
	width:100%;
}

.customer-address-index .my-account .col-1.addresses-primary{
	margin-bottom:20px;
}

.customer-address-index .my-account .col-1.addresses-primary ol li{
	float: left;
    width: 49%;
}

.customer-address-index .my-account .col-2.addresses-additional ol li address{
	padding:0;
}

.customer-address-index a{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#659A00;
}

.customer-address-index a:hover{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
}

.my-account .nobr a{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#659A00;
}

.my-account .nobr a:hover{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
}

.my-account .my-wishlist table tbody tr td{
	vertical-align: middle;
}

.my-account .my-wishlist button{
	margin:5px 10px 5px 0px;
}

.my-account .my-wishlist table tbody tr td textarea{
	margin:0;
	border:1px solid #cfcfcf;
}

.sales-order-view h2.table-caption{
	border-bottom:1px solid #cfcfcf;
	border-top:0px;
	border-left:0px;
	border-right:0px;
}

.sales-order-view .col2-set.order-info-box{
	margin-bottom:20px;
}

.sales-order-view .order-info, .sales-order-invoice .order-info, .sales-order-creditmemo .order-info, .sales-order-shipment .order-info{
	border:none;
}

.sales-order-view .order-info ul li, .sales-order-invoice .order-info ul li, .sales-order-creditmemo .order-info ul li, .sales-order-shipment .order-info ul li{
	padding:0 10px 0 0px !important;
	margin:0 !important;
}

.sales-order-view .order-info dt, .sales-order-invoice .order-info dt, .sales-order-creditmemo .order-info dt, .sales-order-shipment .order-info dt{
	padding:0 10px 0 0;
}

.sales-order-view p.order-date{
	padding:0 0 5px 0;
}

.sales-order-view .my-account a.link-reorder, .sales-order-view .my-account a.link-print{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#659A00;
	text-decoration:none;
}

.sales-order-view .my-account a.link-reorder:hover, .sales-order-view .my-account a.link-print:hover{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
	text-decoration:none;
}

table tfoot tr td{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#565656;
}

.data-table tbody tr td.last span{
	color:#5C8000;
}

/*.data-table tbody tr td span span{
	font:bold 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
}*/

.page-print h1{
	font:bold 24px Tahoma, "Cambria Math", "Palatino Linotype";
	color:#202020;
	padding-top:10px;
}

.page-print h2{
	 border-bottom: 1px solid #CFCFCF;
    color: #6D2E9E;
    font: bold 16px Arial,Tahoma,"Cambria Math","Palatino Linotype";
    margin: 0 0 7px;
    padding: 0 0 7px 0;
}

.page-print table{
   border: 1px solid #DBDBDB;
}

.my-account form#form-validate ul li.wide input{
	width:529px;
}

ul.form-list li select{
	background-color:#FFFFFF;
    border-color: #cfcfcf;
    color: #565656;
    font: 12px Arial,Helvetica,sans-serif;
    height: 21px;
}


.checkout-onepage-index ul.form-list li select{
	background-color:#FFFFFF;
	border:1px solid #acacac;
    color: #565656;
    font: 12px Arial,Helvetica,sans-serif;
    height: 23px;
	float:none;
}



.my-account form#form-validate select{
	width:260px;
}


.customer-address-form .my-account form#form-validate select{
	width:248px;
}


.sales-order-view .order-info li, .sales-order-invoice .order-info li, .sales-order-creditmemo .order-info li, .sales-order-shipment .order-info li{
	background:none;
	padding:0;
}

.sales-order-view .order-info li strong, .sales-order-view .order-info li a, .sales-order-invoice .order-info li a, .sales-order-creditmemo .order-info li a, .sales-order-shipment .order-info li a{
	background:none;
	line-height:normal;
	padding:0;
}

.sales-order-view .order-info-tabs li, .sales-order-invoice .order-info-tabs li, .sales-order-creditmemo .order-info-tabs li, .sales-order-shipment .order-info-tabs li{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#565656;
}

.sales-order-view .order-info li a, .sales-order-invoice .order-info li a, .sales-order-creditmemo .order-info li a, .sales-order-shipment .order-info li a{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#565656;
}

.sales-order-view .order-info li a:hover, .sales-order-invoice .order-info li a:hover, .sales-order-creditmemo .order-info li a:hover, .sales-order-shipment .order-info li a:hover{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
}

.sales-order-view .order-info-tabs li.current, .sales-order-invoice .order-info-tabs li.current, .sales-order-creditmemo .order-info-tabs li.current, .sales-order-shipment .order-info-tabs li.current{
	font:bold 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype" !important;
	color:#202020 !important;
}

.my-account .page-title a.link-print, .my-account .page-title a.link-reorder{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#659A00;
	float:none;
}

.my-account .page-title a.link-print:hover, .my-account .page-title a.link-reorder:hover{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
}

.sales-order-creditmemo h2.sub-title a, .sales-order-creditmemo p.order-links a, .sales-order-invoice h2.sub-title a, .sales-order-invoice p.order-links a, .sales-order-shipment p.order-links a, .sales-order-shipment h2.sub-title a{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#659A00;
}

.sales-order-creditmemo h2.sub-title a:hover, .sales-order-creditmemo p.order-links a:hover, .sales-order-invoice h2.sub-title a:hover, .sales-order-invoice p.order-links a:hover, .sales-order-shipment p.order-links a:hover, .sales-order-shipment h2.sub-title a:hover{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
}


.page-print h3{
	 border-bottom: 1px solid #CFCFCF;
    color: #6D2E9E;
    font: bold 16px Arial,Tahoma,"Cambria Math","Palatino Linotype";
    margin: 0 0 10px;
    padding: 0 0 6px 0;
}

.page-print h2.h2 {
	 color: #202020;
    font: bold 18px Arial,Tahoma,"Cambria Math","Palatino Linotype";
    padding-top: 10px;
	border:none;
}

.page-print table tbody tr td h3{
	border:none;
	font:bold 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#565656;
}

#contactForm ul.form-list li .input-box textarea{
	width:374px;
	border:1px solid #cfcfcf;
}

.customer-account-login .col-1.new-users{
	height:220px;
	border:1px solid #cfcfcf;
	margin:5px 0 20px 0px;
	padding:10px;
	width:47%;
}

.customer-account-login .col-2.registered-users{
	height:220px;
	border:1px solid #cfcfcf;
	margin:5px 0px 20px 0;
	padding:10px;
	width:47%;
}
.customer-account-login .col-2.registered-users p.required {
	/* margin-top:15px; */
}
.customer-account-login #login-form h2{
	border-bottom:1px solid #cfcfcf;
    color: #6D2E9E;
    font: bold 16px Arial,Tahoma,"Cambria Math","Palatino Linotype";
    margin: 0 0 10px 0;
	padding:0 0 3px 0;
}

.customer-account-login .buttons-set a{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#659A00;
	padding-top:15px;
}

.customer-account-login .buttons-set a:hover{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
	padding-top:15px;
}

.customer-account-login .col-1.new-users .buttons-set{
	margin-top:115px;
}

.customer-account-create .form-list .control .input-box{
	margin:0;
}

.customer-account-create .form-list .control label {
	margin-left:20px;
}

.customer-account-create p.back-link{
	margin-top:10px;
}

.customer-account-create p.back-link a, .customer-account-forgotpassword p.back-link a{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#659A00;
}

.customer-account-create p.back-link a:hover, .customer-account-forgotpassword p.back-link a:hover{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
}

.checkout-onepage-index .main-right-sec .block-title{
	font:bold 17px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#323232;
	padding-bottom:7px;
}

.opc .first .step-title{
	-moz-border-radius:4px 4px 0px 0px;/* Firefox */
	-webkit-border-radius:4px 4px 0px 0px;/* Safari and Chrome */
	border-radius:4px 4px 0px 0px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative !important;
}

.opc .opclast .step-title{
	-moz-border-radius:0px 0px 4px 4px;/* Firefox */
	-webkit-border-radius:0px 0px 4px 4px;/* Safari and Chrome */
	border-radius:0px 0px 4px 4px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
}

.opc .section.opclast.allow.active .step-title{
	-moz-border-radius:0px;/* Firefox */
	-webkit-border-radius:0px;/* Safari and Chrome */
	border-radius:0px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
}



.opc .active .step-title{
	background:#591a73 !important;
	font:bold 13px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#323232;
	padding:5px;
}

.opc .section.allow .step-title{
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#65935c), to(#4c6d43));
	background: -webkit-linear-gradient(#65935c, #4c6d43);
	background: -moz-linear-gradient(#65935c, #4c6d43);
	background: -ms-linear-gradient(#65935c, #4c6d43);
	background: -o-linear-gradient(#65935c, #4c6d43);
	background: linear-gradient(#65935c, #4c6d43);
	-pie-background: linear-gradient(#65935c, #4c6d43);
	behavior: url('../PIE/PIE.php');
	position:static;
	font:bold 13px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#fff;
	background-color:#4c6d43;
}

.opc .step-title{
	background:#e1e1e1;
	padding:5px 5px;
	font:bold 13px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	height:21px;
}

opc .section .step-title h2{
	color:#242424;
}

.opc .section.allow.active .step-title h2{
	color:#fff;
}

.opc .section.allow .step-title h2{
	color:#fff;
}

.opc-block-progress .block-content dd.complete{
	color: #323232;
	font: 12px/17px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	margin-bottom: 10px;
	padding: 8px 14px 0px;
}

.opc .buttons-set{
	border-top:1px solid #cfcfcf;
}


.catalog-product-compare-index .buttons-set {
	margin-top:10px;
}

.opc .buttons-set .button, .checkout-onepage-success .cont-right-white .buttons-set button, .catalog-product-compare-index .buttons-set button{
	background: none repeat scroll 0 0 transparent;
    border: 0 none;
    cursor: pointer;
    margin: 0;
    overflow: visible;
    padding: 0;
    width: auto;
}

.opc .buttons-set .button span, .checkout-onepage-success .cont-right-white .buttons-set button span, .catalog-product-compare-index .buttons-set button span{
	border:1px solid #ffa800;
	-moz-border-radius:4px;/* Firefox */
	-webkit-border-radius:4px;/* Safari and Chrome */
	border-radius:4px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#f59600), to(#b46a00));
	background: -webkit-linear-gradient(#f59600, #b46a00);
	background: -moz-linear-gradient(#f59600, #b46a00);
	background: -ms-linear-gradient(#f59600, #b46a00);
	background: -o-linear-gradient(#f59600, #b46a00);
	background: linear-gradient(#f59600, #b46a00);
	-pie-background: linear-gradient(#f59600, #b46a00);
	behavior: url('../PIE/PIE.php');
	position:relative;
	padding:0;
	height:25px;
	background-color:#b46a00;
}

.opc .buttons-set .button span span, .checkout-onepage-success .cont-right-white .buttons-set button span span, .catalog-product-compare-index .buttons-set button span span{
	background:none;
	border:none;
	text-shadow:none;
	text-transform:capitalize;
	font:bold 14px/22px Arial, Tahoma, "Cambria Math", "Palatino Linotype" ;
	color:#fff;
	padding:0 10px 0 10px;
}

.form-list li.wide select{
	width:522px;
}

.form-list li.control{
	margin:0;
}

.form-list li.wide{
	margin-bottom:9px;
}

.form-list li.wide input{
	width:518px !important;

}

.customer-address-form .form-list li.wide input{
	width:510px !important;

}


.opc .buttons-set p.back-link{
	padding-top:10px;
}

.buttons-set p.back-link a{
	color: #659A00;
    font: 12px Arial,Tahoma,"Cambria Math","Palatino Linotype";
    text-decoration: none;
}

.buttons-set p.back-link a:hover{
	color: #dc8700;
    font: 12px Arial,Tahoma,"Cambria Math","Palatino Linotype";
    text-decoration: none;
}

ol#checkoutSteps li .buttons-set{
	padding:10px;
	margin-top:5px;
}

.opc-block-progress .block-content dt.complete a{
	font:bold 13px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#fff;
}

.opc-block-progress .block-content dt.complete a:hover{
	font:bold 13px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
}

.opc li.section.last.allow.active .step{
	border:none;
}

.opc li.section.last.allow.active .step #checkout-review-submit .buttons-set{
	border-top:1px solid #cfcfcf;
	margin-top:10px;
}

.checkout-onepage-index .page-title h1{
	font:bold 20px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#63905a;
}

.checkout-onepage-index .page-title{
	border:none;
	margin:0;
	padding:0;
}

li#opc-review #checkout-review-submit p a{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#659A00;
}

li#opc-review #checkout-review-submit p a:hover{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
}

.checkout-onepage-success .cont-right-white p a{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#659A00;
}

.checkout-onepage-success .cont-right-white p a:hover{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
}

.checkout-onepage-success .cont-right-white{
	background: none repeat scroll 0 0 #FFFFFF;
    padding: 21px;
}

.cont-left-panel .block-compare{
	width:180px;
	background:#fff;
	border:4px solid #679e93;
	-moz-border-radius:2px;/* Firefox */
	-webkit-border-radius:2px;/* Safari and Chrome */
	border-radius:2px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
	padding:10px;
	margin:0;

}

.cont-left-panel .block-compare .block-content ol li a.btn-remove{
	background:url(../images/bkg_close.gif) no-repeat left 2px;
	width:13px;
	height:15px;
	display:block;
	float:left;
}

.cont-left-panel .block-compare .block-content ol li p{
	float:left;
	width:150px;
	padding-left:10px;
}

.cont-left-panel .block-compare .block-title{
	margin-bottom:10px;
	font:bold 14px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#4D6E45;
}

.cont-left-panel .block-compare .block-content .actions button, .catalog-product-compare-index table.compare-table button{
	background: none repeat scroll 0 0 transparent;
    border: 0 none;
    cursor: pointer;
    margin: 0 0 0 10px;
    overflow: visible;
    padding: 0;
    width: auto;
}

.cont-left-panel .block-compare .block-content .actions button span, .catalog-product-compare-index table.compare-table button span{
	border:1px solid #ffa800;
	-moz-border-radius:4px;/* Firefox */
	-webkit-border-radius:4px;/* Safari and Chrome */
	border-radius:4px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#f59600), to(#b46a00));
	background: -webkit-linear-gradient(#f59600, #b46a00);
	background: -moz-linear-gradient(#f59600, #b46a00);
	background: -ms-linear-gradient(#f59600, #b46a00);
	background: -o-linear-gradient(#f59600, #b46a00);
	background: linear-gradient(#f59600, #b46a00);
	-pie-background: linear-gradient(#f59600, #b46a00);
	behavior: url('../PIE/PIE.php');
	position:relative;
	padding:0 10px 0 10px;
	height:25px;
	background-color:#b46a00;
}

.cont-left-panel .block-compare .block-content .actions button span span, .catalog-product-compare-index table.compare-table button span span{
	background:none;
	border:none;
	font:bold 14px/22px Arial, Tahoma, "Cambria Math", "Palatino Linotype" ;
	color:#fff;
	text-shadow:none;
	padding:0;
	text-transform:capitalize;
}

.cont-left-panel .block-compare .block-content .actions a{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#659A00;
}

.cont-left-panel .block-compare .block-content .actions a:hover{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
}

table.compare-table .add-to-links a.link-wishlist{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#659a00;
}

table.compare-table .add-to-links a.link-wishlist:hover{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
}

.catalog-product-compare-index .data-table td{
	border-left:1px solid #cfcfcf;
}

.catalogsearch-result-index .toolbar-bottom{
	display:block;
}

.catalog-seo-sitemap-category .page-sitemap ul.sitemap li, .catalog-seo-sitemap-product .page-sitemap ul.sitemap li{
	margin-bottom:5px;
}

.catalog-seo-sitemap-category .page-sitemap ul.sitemap li a, .catalog-seo-sitemap-category .page-sitemap ul.links li a, .catalog-seo-sitemap-product .page-sitemap ul.links li a, .catalog-seo-sitemap-product .page-sitemap ul.sitemap li a{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#565656;
}

.catalog-seo-sitemap-category .page-sitemap ul.sitemap li a:hover, .catalog-seo-sitemap-category .page-sitemap ul.links li a:hover, .catalog-seo-sitemap-product .page-sitemap ul.links li a:hover,  .catalog-seo-sitemap-product .page-sitemap ul.sitemap li a:hover{
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
}

.cms-page-view p.we-can-reach{
	color: #383838;
	font: bold 18px/18px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	padding: 0 0 10px;
}

.cms-customer-service .cont-right-white p.con-head, .cms-customer-service .cont-right-white p span.con-head{
	padding:16px 0 0 0;
	display:block;
}

.cms-page-view p.con-head, .cms-page-view p span.con-head{
	color: #383838;
	font: bold 16px/18px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
}

.cms-page-view .cms-customer-service .page-title p.con-head, .cms-page-view .cms-customer-service .page-title p{
	color: #565656;
	font: 12px/18px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
}

.checkout-onepage-index .col2-set .col-1{
	width:48%;
}

.wishlist-index-share .my-account #form-validate .form-buttons{
	width:auto;
}


/*.cart .cart-table thead tr{
	border-right:1px solid #cdcdcd;
}
*/
.cart .cart-table tfoot{
	border-left:1px solid #cdcdcd;
	border-right:1px solid #cdcdcd;
	border-bottom:0px;
	border-top:0px;
}

.cart .cart-table tfoot tr td .cart-footer{
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#706862), to(#5f5953));
	background: -webkit-linear-gradient(#706862, #5f5953);
	background: -moz-linear-gradient(#706862, #5f5953);
	background: -ms-linear-gradient(#706862, #5f5953);
	background: -o-linear-gradient(#706862, #5f5953);
	background: linear-gradient(#706862, #5f5953);
	-pie-background: linear-gradient(#706862, #5f5953);
	-moz-border-radius:0px 0px 5px 5px;/* Firefox */
	-webkit-border-radius:0px 0px 5px 5px;/* Safari and Chrome */
	border-radius:0px 0px 5px 5px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
	width:693px;
	height:27px;
	padding:7px 238px 0 12px;
	background-color:#5f5953;
}

.cart .cart-table tfoot tr td{
	padding:0;
	margin:0;
}

.catalog-product-compare-index td.last p.old-price span{
	color:#565656;
}

.catalog-product-compare-index td p.old-price span{
	color:#565656;
}

.cont-main-sec {
	padding-top:17px;
}
/*.sub-logo-sec ul li a.zand {
    background: url("../images/zand-active_02.jpg") no-repeat scroll 0 0 transparent;
    display: block;
    height: 53px;
    width: 82px;
}
.sub-logo-sec ul li a.zand:hover {
    background: url("../images/Zandlogo.png") no-repeat scroll 0 0 transparent;
    display: block;
    height: 53px;
    width: 82px;
}
.sub-logo-sec ul li a.natrabio:hover {
    background: url("../images/natura-bio-none-1.jpg") no-repeat scroll 0 0 transparent;
    display: block;
    height: 53px;
    width: 82px;
}

.main-menu ul li .pro-cat ul li a{
	background-color:#000;
}
.navi-main .main-menu ul li .pro-cat ul.pro-nav li a:hover{
	background-color:none;
}*/



.sub-logo-sec ul li a.zand {
	background: url("../images/zand-active_02.jpg") no-repeat scroll 0 0 transparent;
	display: block;
	height: 51px;
	width: 82px;
}
.sub-logo-sec ul li a.zand:hover {
	background: url("../images/zand.jpg") no-repeat scroll 0 0 transparent;
	height:53px;
}
.sub-logo-sec ul li.active a.natrabio {
	background:url(../images/natura-bio-active.jpg) no-repeat;
	display:block;
	width:82px;
	height:53px;
}
.sub-logo-sec ul li a.natrabio {
	background: url("../images/natura-bio-none-1.jpg") no-repeat scroll 0 0 transparent;
	display: block;
	height: 52px;
	width: 82px;
}

.checkout-cart-index .messages{
	width:944px !important ;
}

.customer-account-login .buttons-set button.button{
	 background: none repeat scroll 0 0 transparent !important;
    border: 0 none;
    cursor: pointer;
    margin: 0;
    overflow: visible;
    padding: 0;
    width: auto;
}

.customer-account-login .buttons-set button.button span{
	border:1px solid #ffa800;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#f59600), to(#b46a00));
	background: -webkit-linear-gradient(#f59600, #b46a00);
	background: -moz-linear-gradient(#f59600, #b46a00);
	background: -ms-linear-gradient(#f59600, #b46a00);
	background: -o-linear-gradient(#f59600, #b46a00);
	background: linear-gradient(#f59600, #b46a00);
	-pie-background: linear-gradient(#f59600, #b46a00);
	-moz-border-radius:4px;/* Firefox */
	-webkit-border-radius:4px;/* Safari and Chrome */
	border-radius:4px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url('../PIE/PIE.php');
	position:relative;
	padding:0 10px 0 10px;
	color:#fff;
	text-shadow:none;
	text-transform:capitalize;
	background-color:#b46a00;
}

.customer-account-login .buttons-set button.button span span{
	background: none repeat scroll 0 0 transparent;
    border: medium none;
    margin:0;
	behavior:none;
    padding:0;
font: bold 14px Arial,Tahoma,"Cambria Math","Palatino Linotype";
padding:4px 0 0 0;
}
#co-payment-form a{
color:#414141;
}
#co-payment-form a:hover{
text-decoration: underline;

}
.addresses-primary li h3{
float:none;
}
p.order-date{
	padding:0 0 7px 0;
}
.order-info-box{
/*	padding:0 0 10px 0;*/
margin-bottom:20px;
}
.order-info #order-info-tabs li a{
    color: #565656;
    font: 12px Arial,Tahoma,"Cambria Math","Palatino Linotype";
}

.customer-account-login .cont-right-white , .customer-account-forgotpassword .cont-right-white{
min-height: 300px;}

.catalog-category-view .cont-right-white{
	padding:8px 0 0 0;
}

.checkout-cart-index .product-name a{
	font:bold 12px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#414141;
	text-decoration:none;
}

.checkout-cart-index .product-name a:hover{
	color:#6d7300;
}

.checkout-onepage-index .buttons-set a.f-left{
	padding-top:10px;
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#659A00;
}

.checkout-onepage-index .buttons-set a.f-left:hover{
	padding-top:10px;
	font:normal 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#dc8700;
}

#checkout-step-login .col-1 ul.ul li{
	list-style:disc;
	margin-left:15px;
}

#form-validate ul.form-list li{
	font:bold 12px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#565656;
}

#wishlist-table .price-box p.special-price span.price-label, #wishlist-table .price-box p.old-price span.price-label{
	display:none;
}

#wishlist-table h2{
	border-bottom:0px;
}

.cart .page-title h1{ padding-bottom: 5px; float: left;}

#co-shipping-method-form .sp-methods{
	margin-top:15px;
}
.crosssell .price-box p {
	font:10px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	margin:0;
}
.crosssell p.pro-sub-title {
	font-size:10px;
}
#checkout-step-login .col-1 .buttons-set{
	margin:26px 0 0 0;
}
#checkout-step-login .col-2 h4{
	font-weight:normal;
	margin:0px;
}
#checkout-step-login .col-2 .form-list{
	padding-top:19px;
}
/*.checkout-onepage-index .form-list li.fields .field{
	padding:0 0 3px 0;
}*/
.checkout-onepage-index .buttons-set {
	margin:0px 0 0 0;
	padding:0 0 0 0;
}
.checkout-onepage-index .data-table tbody tr td span.price{
	color:#5C8000;
}
.data-table tfoot td{
	border-bottom:0px;
}
.checkout-onepage-index .form-list li.wide input{
	width:493px !important;
}
.checkout-onepage-index .form-list select{
	width:231px;
}
.checkout-onepage-index .sp-methods select.month{
	width:140px;
}
.checkout-onepage-index .sp-methods select.year{
	width:80px;
	float:none;
}
.data-table tfoot tr td.last {
	border-right:0;
}
.checkout-onepage-success .sub-title{
	font:Arial, Tahoma, "Cambria Math", "Palatino Linotype";
}
.cms-page-view p{
	font:normal 12px Tahoma, Arial, "Cambria Math", "Palatino Linotype";
	color:#383838;
}

.cms-page-view p.required { font-size: 11px; color: #F02800}

.my-account .page-title h1{
	float:left;
}
.title-buttons .printcls a{
	padding:7px 0 0 5px;
	display:inline-block;
}

#checkout-step-login #login-form .form-list li{
	padding:0 0 0px 0;
	margin:0;
	height:50px;
}

.customer-account-login ul.form-list li .input-box{
	height:30px;
}

.opclast .step #checkout-review-submit .buttons-set{
	border:none !important;
}

.product-shop .product-main-info span{
	margin-bottom:2px;
	display:inline;
}

.page-print .buttons-set button.button{
	background: none repeat scroll 0 0 transparent;
    border: 0 none;
    cursor: pointer;
    margin: 0;
    overflow: visible;
    padding: 0;
    width: auto;
}

.page-print .buttons-set button.button span{
	border:1px solid #ffa800;
	-moz-border-radius:4px;/* Firefox */
	-webkit-border-radius:4px;/* Safari and Chrome */
	border-radius:4px;/* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#f59600), to(#b46a00));
	background: -webkit-linear-gradient(#f59600, #b46a00);
	background: -moz-linear-gradient(#f59600, #b46a00);
	background: -ms-linear-gradient(#f59600, #b46a00);
	background: -o-linear-gradient(#f59600, #b46a00);
	background: linear-gradient(#f59600, #b46a00);
	-pie-background: linear-gradient(#f59600, #b46a00);
	behavior: url(http://www.unleadeddev.com/svn/nutracorp/trunk/skin/frontend/natrabio/default/css/../PIE/PIE.php);
	position:relative;
	background-color:#b46a00;
	height:25px;
	display:block;
	padding:0;
	white-space:nowrap;
}

.page-print .buttons-set button.button span span{
	background:none;
	border:none;
	font:bold 14px/24px Arial, Tahoma, "Cambria Math", "Palatino Linotype";
	color:#fff;
	text-shadow:none;
	padding:0 8px 0 8px;
}
.sub-logo-sec ul li a.pioneernutritionals {
    background: url("../images/pioneer-logo_08.jpg") no-repeat scroll 0 0 transparent;
    display: block;
    height:52px;
    width:85px;
}
.sub-logo-sec ul li a.pioneernutritionals:hover {
    background: url("../images/active-pioneer-logo_08.jpg") no-repeat scroll 0 0 transparent;
    display: block;
    height:53px;
    width:85px;
}
#onestepcheckout-form ul li{list-style:none;}
#onestepcheckout-form p.required{padding-left:0;}
#onestepcheckout-form ul{margin-left:0;}
 /* ============================================ */
.search-autocomplete {
  left: 0 !important;
  overflow: visible !important;
  position: relative !important;
  top: 15px !important;
  width: 100% !important;
  z-index: 9999;
}
.search-autocomplete ul {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  border: 1px solid #4d6e45;
  left: 0;
  padding-left: 0;
  position: absolute;
  top: -8px;
  width: 100%;
  z-index: 9999;
}
.search-autocomplete ul li {
  border-bottom: 1px solid #4d6e45;
  color: #4d6e45;
  cursor: pointer;
  font-size: 12px;
  padding: 4px ;
  text-align: left;
  width:95% !important;
}
.search-autocomplete ul li:hover {
  color: #4d6e45;
}
.search-autocomplete ul li.selected {
  background-color: #4d6e45;
  color: white;
}
.search-autocomplete ul li .amount {
    padding: 0 !important;
  float: right;
  font-weight: bold;
}
.search-autocomplete ul li:last-child {
  border-bottom: none;
}
.search-autocomplete:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #4d6e45;
  border-top: none;
  left: 50%;
  top: -15px;	
}

