@font-face {
    font-family: 'myriadProRegular';
    src: url('/fonts/myriadpro-regular_0-webfont.eot');
    src: url('/fonts/myriadpro-regular_0-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/myriadpro-regular_0-webfont.woff') format('woff'),
         url('/fonts/myriadpro-regular_0-webfont.ttf') format('truetype'),
         url('/fonts/myriadpro-regular_0-webfont.svg#MyriadProRegular') format('svg');
    font-weight: normal;
    font-style: normal;
	font-smooth:always;
}

@font-face {
    font-family: 'TimesRegular';
    src: url('/fonts/times-webfont.eot');
    src: url('/fonts/times-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/times-webfont.woff') format('woff'),
         url('/fonts/times-webfont.ttf') format('truetype'),
         url('/fonts/times-webfont.svg#TimesRegular') format('svg');
    font-weight: normal;
    font-style: normal;
	font-smooth:always;
}

@font-face {
    font-family: 'GothamBookRegular';
    src: url('/fonts/gotham-book-webfont.eot');
    src: url('/fonts/gotham-book-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/gotham-book-webfont.woff') format('woff'),
         url('/fonts/gotham-book-webfont.ttf') format('truetype'),
         url('/fonts/gotham-book-webfont.svg#GothamBookRegular') format('svg');
    font-weight: normal;
    font-style: normal;
	font-smooth:always;
}


/**
 * 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.6.1 2010-09-17 | 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q { quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after { content: ""; content: none; }

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; }

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; }


/**
 * Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/
 */

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.
 */

/* 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; }

ul, ol { margin-left: 2em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; list-style:none; list-style-image: none; }

small { font-size: 85%; }
strong, th { font-weight: bold; }

td { vertical-align: top; }

/* Set sub, sup without affecting line-height: gist.github.com/413930 */
sub, sup { font-size: 75%; line-height: 0; position: relative; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

pre {
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; white-space: pre-wrap; word-wrap: break-word;
  padding: 15px;
}

textarea { overflow: auto; } /* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } 

/* 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; }

/**
 * You might tweak these..
 */

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; define those yourself */
h1, h2, h3, h4, h5, h6, p { font-weight: normal; font-family:Arial, sans-serif; font-style:normal; font-smooth:always; }

h1 { /* font-family:TimesRegular; */ font-size:26px; color:#000000; line-height:30px; }

h3 { /* font-family:TimesRegular; */ text-transform: uppercase; font-size:12px; color:#000000; line-height:16px; margin:0 0 20px 0; padding:0 0 10px 0; width:100%; border-bottom:1px solid #dadada; }

h4 { font-family: times new roman; font-size:16px; line-height:16px; color:#333333; text-transform:uppercase; font-style:italic; margin:5px 0 0 0px; }

h5 { /* font-family:TimesRegular; */ font-size:14px; color:#333333; line-height:14px; margin:0 0 5px 0; text-transform:uppercase; }

h6 { /* font-family: times new roman; */ font-size:15px; line-height:15px; color:#333333; font-style:italic; margin:0; }

#breadcrumb { color:#666666; font-size:9px; line-height:9px; float:left; display:block; clear:none; margin:0; padding:0; }
#breadcrumb a { color:inherit; text-decoration:none; }
#breadcrumb a:hover { color:#000000; text-decoration:underline; }

#size_guide { float:left; border-bottom:1px solid #999999; margin:0; padding:0; }
#size_guide a { font-family:arial; font-size:10px; line-height:8px; color:#333333; margin:0; padding:0; text-decoration:none; }
#size_guide a:hover {color:#000000;}

.large_italic_text { font-family:times; font-style:italic; font-size:15px; line-height:15px; color:#333333; }
.large_italic_text a { color:#666666; text-decoration:none; }
.large_italic_text a:hover { color:#333333; text-decoration:underline; }

a, a:active, a:visited { }
/*a:hover { color: #036; }*/

em {font-style:italic;}

/*Styled input elements*/

.checkbox, .radio {
	width: 19px;
	height: 25px;
	padding: 0 5px 0 0;
	background: url(/img/checkbox.png) no-repeat;
	display: block;
	clear: left;
	float: left;
}

.select {
font-family:Arial, sans-serif; font-size:10px; line-height:21px;
	width: 119px; /* With the padding included, the width is 190 pixels: the actual width of the image. */
	height: 21px;
	padding: 0 24px 0 8px;
	color: #333333;
	background: url(/img/select.png) no-repeat;
	overflow: hidden;
position:absolute;
text-transform:lowercase;
}


/**
 * Primary styles
 *
 * Author: 
 */
 
body, html { width:100%; height:100%; } 


#container { position:relative; display:block; clear:both; margin:0 auto; width:954px; height:auto; font-family:Arial, sans-serif; }

#header_top { width:954px; height: 26px; float:left; display:block; clear:both; }
#header_note { float:left; height:26px; width:280px; color:#22221a; font-size:10px; line-height:26px; font-weight:bold; text-align:left; text-transform:uppercase; }
#header_nav { float:right; height:26px; width:480px; color:#999999; font-size:10px; line-height:26px; font-weight:bold; text-align:right; text-transform:uppercase; }
#header_nav a { color:inherit; text-decoration:none; }
#header_nav a:hover {color:#333333;}

#header_message { float:left; width:280px; height:85px; overflow:hidden; color:#22221a; font-size:10px; line-height:10px; font-weight:bold; text-align:left; text-transform:uppercase; }
#header_message a { color:#22221a; font-size:10px; line-height:10px; font-weight:bold; text-align:left; text-transform:uppercase; text-decoration:none; }
#header_message a:hover { text-decoration:underline; color:#000; }

#logo { float:left; margin:40px 0 0 10px; width:350px; height:42px; background:url(/img/store_logo.jpg) no-repeat; cursor:pointer; }

#header_search { float:right; margin:5px 10px; position:relative; width:175px; }
#header_search_input { width:175px; height:10px; border:1px #8f8f8f solid; border-right:#cfcfcf; border-left:#cfcfcf; border-bottom:#e4e4e4; -webkit-box-shadow: inset 0px 1px 4px #cecece; box-shadow: inset 0px 1px 4px #cecece; -moz-box-shadow: inset 0px 1px 4px #cecece; color:#999999; padding: 5px; font-size:10px; line-height:10px; background:url(/img/eyeglass.jpg) no-repeat right; background-position: 166px 2px; }
#header_search_bt { position:absolute; height:16px; width:20px; right:-5px; top:2px; border:0px; background:transparent; }

#footer_area { float:left; width:914px; padding:0 20px; height:36px; background:#f0f0f0; font-family:Arial, sans-serif;}
#footer_area p { float:left; display:block; clear:none; font-size:10px; line-height:36px; color:#333333; /* font-family:TimesRegular, sans-serif; */ text-transform: uppercase; }
#footer_area span {font-style:italic;}
#footer_area input.field { float:left; width:170px; height:10px; padding:5px; border:0; font-size:10px; line-height:10px; margin:8px 5px 0 10px; background:#ffffff; }

input.field { float:left; width:170px; height:10px; padding:5px; border:0; font-size:10px; line-height:10px; margin:8px 5px 0 10px; background:#ffffff; }

.bt_submit { float:left; font-family:arial; font-weight:bold; border:1px #e4e4e4 solid; cursor:pointer; width:51px; height:22px; padding:0 5px; margin:7px 0; color:#666666; font-size:10px; line-height:22px; text-align:center; background:#ffffff; text-transform:uppercase; }
.bt_submit:hover {color:#000000;}

.bt_atc { cursor:pointer; float:left; display:block; clear:both; border:1px #cccccc solid; width:140px; height:21px; padding:0 5px; margin:0 0 10px 0; color:#ffffff; text-align:center; font-family:arial; font-weight:bold; font-size:10px; line-height:21px; background:#333333; text-transform:uppercase; }
.bt_atc:hover { color:#f0f0f0; border:#333333 1px solid; }

.bt_pv { cursor:pointer; float:left; display:block; clear:none; border:1px #f0f0f0 solid; width:auto; margin:0 0 10px 2px; height:21px; padding:0 10px; color:#333333; text-align:center; font-family:arial; font-weight:bold; font-size:10px; line-height:21px; background:#f0f0f0; text-transform:uppercase; }
.bt_pv:hover { border:#e3e3e3 1px solid; color:#000000; }

#footer_nav { float:right; height:36px; color:#999999; font-size:9px; line-height:36px; font-weight:bold; text-align:right; text-transform:uppercase; }
#footer_nav a { color:inherit; text-decoration:none; }
#footer_nav a:hover {color:#22221a;}

#social { float:right; text-align:right; text-transform:uppercase; font-weight:bold; font-size:10px; line-height:18px; color:#666666; margin:7px 0; }
#social img { float:right; margin-left:4px; }

#copy { float:left; font-style:normal; text-transform:uppercase; font-size:10px; line-height:18px; color:#999999; margin:10px 6px 0 0;  }

#main { float:left; display:block; clear:both; width:952px; min-height:250px; margin:13px 0 10px 0; }
#main_sub { float:left; display:block; clear:both; width:920px; min-height:218px; padding:15px; margin:0; border:1px solid #e1e1e1; }

#main1 { float:left; display:block; clear:both; width:952px; margin:0px 0 10px 0; border:#f8f8f8 solid 1px; border-top:0px; }
#main_sub1 { float:left; display:block; clear:both; width:920px; padding:15px; margin:0; border:1px solid #e1e1e1; border-top:0px; }

#nav_area { float:left; width:158px; margin:0 5px 0 0; }

#topper { float:left; width:920px; display:block; clear:both; }

#sub_nav_area { float:left; width:225px; }
#sub_nav_area h1 { /* font-family:myriadProRegular; */ font-style:normal; font-weight:normal; font-smooth:always; margin:20px 0 5px 0; color:#FFF; }
#sub_nav { float:left; width:195px; background:#f0f0f0; padding:15px; min-height:750px; }

#shop_by_area { float:left; border:1px solid #dadada; border-left:0; border-right:0; width:100%; margin:40px 0 15px -5px; padding:0; }
#shop_by_area h1 { font-family:TimesRegular; font-style:italic; font-size:12px; line-height:30px; color:#333333; text-transform:uppercase; margin:0; padding:0 5px; }

.sba_sub { float:left; border-top:1px solid #dadada; width:100%; }
.sba_sub h2.closed { text-transform:uppercase; cursor:pointer; font-family:arial; font-size:10px; line-height:30px; color:#999999; padding:0 5px; margin:0; }
.sba_sub h2.open { text-transform:uppercase; cursor:pointer; font-family:arial; font-size:10px; line-height:30px; color:#333333; padding:0 5px; margin:0; }
.sba_sub:hover h2 {color:#000000;}

.sb_sub { float:left; margin:0 0px 0 5px; width:100%; }
.sb_sub label { color:#999999; font-size:10px; line-height:22px; font-family:arial; text-transform:uppercase; margin:0 0 0 -6px; }
.sb_sub label:hover {color:#333333;}
.sb_sub_input { float:left; display:block; clear:none; margin:0 0px 0 0px; width:25%; }
.sb_sub_input1 { float:left; display:block; clear:none; margin:0 0px 0 -3px; width:50%; }
.sb_sub_input3 { float:left; display:block; clear:none; margin:0 0px 0 2px; width:90%; }

#sub_product_list { float:left; width:650px; margin:0 0 0 45px; }

#sub_product_list_spacer { float:left; width:650px; height:29px; display:block; clear:both; }

#pagination_area { float:right; margin:5px 0 5px 5px; height:15px; }
#pagination_area span, #pagination_area a { font-family: arial; font-size:10px; line-height:10px; color:#333333; text-decoration:none; text-transform:uppercase; }
#pagination_area a:hover { text-decoration:underline; color:#000000; }

.product_item { float:left; width:200px; height:320px; margin:0 0 0px 10px; /*font-family:TimesRegular; */ position:relative; overflow:hidden; cursor:pointer; }
.product_item h1 { font-size:11px; line-height:18px; color:#333333; text-transform:uppercase; }
.product_item span { font-size:11px; line-height:16px; color:#333333; }
.product_item span.sale { font-size:11px; line-height:18px; color:#ff0000; }
.product_item img { width:145px; position:relative; margin:0 auto; }

.product_item_deets { position:relative; width:150px; margin:0 auto; }

#main_large_graphic { float:left; width:518px; height:518px; margin:0 9px 0 0; border:1px solid #efefef; }
.callout_graphic { float:left; width:258px; height:253px; border:1px solid #efefef; }

.clear { float:left; width:100%; display:block; clear:both; height:1px; }

/*Product Detail Items*/

#thumbs_area { float:left; width: 55px; height:auto; margin:25px 150px 0 5px; }

#thumbs_up, #thumbs_down { background:#f0f0f0; width:55px; height:14px; float:left; text-align:center; margin:0 0 10px 0; cursor:pointer; }
#thumbs_up img, #thumbs_down img { position:relative; width:13px; height:7px; margin:0px auto; padding:2px 0; }

.thumbsClass  { float:left; width:55px; height:434px; overflow:hidden; }
.thumbsClass ul, .thumbsClass li { margin:0; padding:0; list-style:none; }

#sub_product_detail_image { float:left; margin:5px 0 0 0; width:275px; }
#sub_product_detail_image img { float:left; margin:0 0 8px 0; }

#sub_product_detail_deets { float:left; margin:25px 0 0 95px; color:#333333; }

.spdd_box { border-bottom:1px solid #cccccc; padding: 0 5px 15px 5px; width:305px; }
.spdd_box h1 { /*font-family:myriadProRegular; font-smooth:always; */ color:#333333; font-size:12px; line-height:18px; margin:0 0 4px 0; text-transform:uppercase; }
.spdd_box span { /*font-family:myriadProRegular; font-smooth:always; */ font-style:normal; font-weight:normal; font-size:11px; line-height:22px; color:#333333; }
.spdd_box span.sale { /* font-family:myriadProRegular; font-smooth:always; */ font-style:normal; font-weight:normal; font-size:11px; line-height:22px; color:#ff0000; }
.spdd_box p { /*font-family:myriadProRegular;*/ font-smooth:always; font-weight:normal; font-style:normal; font-size:11px; line-height:19px; margin:15px 0 0 0; padding:0; }

.spdd_box1 { float:left; border-bottom:1px solid #cccccc; padding: 15px 5px 5px 5px; width:305px; }
.spdd_box1 div { float:left; margin:0px 0 10px 0; }
.spdd_box1 select { width:151px; font-family:arial; font-size:10px; line-height:12px; color:#333333; }

div.mm {
position:relative;
display:block;
clear:both;
}

div.sm {
display:block;
clear:both;
padding-top:15px;
padding-bottom:15px;
}

#sm_area { position:relative;
display:block;
clear:both;
margin:0 0 15px 0;
}

#sm_areaJ { position:relative;
display:block;
clear:both;
margin:0 0 15px 0;
}

.menu {
	font-family:Arial, sans-serif;
	font-size:10px;
	font-style:normal;
	font-weight:normal;
	text-transform: uppercase;
	line-height:20px;
	text-decoration:none;
	padding:0;
color:#999999;
display:block; clear:both; float;left;
}

.menu:hover {color:#000000;}

.menu_top {
	font-family:Arial, sans-serif;
	font-size:10px;
	font-style:normal;
	font-weight:normal;
	text-transform: uppercase;
	line-height:10px;
	text-decoration:none;
	padding:0;
color:#999999;
margin-bottom:5px;
display:block; clear:both; float;left;
}

.menu_top:hover {color:#000000;}

.menu_sm {
	font-family:Arial, sans-serif;
	font-size:10px;
	font-style:normal;
	font-weight:normal;
	text-transform: uppercase;
	line-height:18px;
	text-decoration:none;
	padding:0;
color:#999999;
display:block; clear:both; float;left;
}

.menu_sm:hover {color:#000000;}

.menu_sel {color:#000000;}

#sort_by_area { float:right; display:block; clear:none; margin:0; padding:0; color:#333333; }
#sort_by_area div { font-family: TimesRegular; font-size:12px; line-height:14px; font-style:italic; padding:3px 0; display:block; clear:none; float:left; margin:0 5px 0 0; }
#sort_by_area a { font-family: arial; font-size:9px; line-height:9px; margin:0; padding:0; float:right; display:block; clear:none; text-transform:uppercase; text-decoration:none; color:#333333; }
#sort_by_area a:hover { text-decoration:underline; color:#000000; }
#sort_by_area select { width:151px; font-family:arial; font-size:10px; line-height:12px; }

#progress_area { float:left; display:block; clear:none;font-family: arial; font-weight:bold; font-size:10px; line-height:10px; margin:0; padding:0; text-transform:uppercase; text-decoration:none; color:#cccccc; }
#progress_area a { color:#333333; text-decoration:none; }
#progress_area a:hover {color:#000000;}

#video_area { position:absolute; width:401px; height:446px; border:1px solid #dadada; top:154px; right:17px; z-index:999; background:#ffffff; }

/* Pop Up Cart Stuff */

#puc_area { position:absolute; z-index:900; width:196px; height:auto; overflow:visible; top:20px; right:25px; }
#puc_header { float:left; display:block; clear:both; background:url(/img/pu_cart_header.png) no-repeat; width:196px; height:19px; }
#puc_repeater { float:left; text-align:left; text-transform:none; display:block; clear:both; background:url(/img/pu_cart_repeater.png) repeat-y; width:178px; padding:2px 9px; font-family:arial; font-size:10px; line-height:14px; color:#333333; }
#puc_footer { float:left; display:block; clear:both; background:url(/img/pu_cart_footer.png) no-repeat; width:196px; height:7px; }

/*tell a friend*/

#taf_button { float:left; width:100px; display:block; clear:none; margin:13px 5px 0 0; overflow:hidden; cursor:pointer; }
#taf_button img:hover { opacity:.7; filter: alpha(opacity=70); }

#taf_area { z-index:999; display:block; position:absolute; width:764px; height:540px; overflow:hidden; top:115px; left:50%; margin:0px 0 0 -382px; border:1px solid #efefef; background:#ffffff;
padding:10px 10px 0 20px;
-webkit-box-shadow: 1px 1px 13px 4px #d1d1d1;
-moz-box-shadow: 1px 1px 13px 4px #d1d1d1;
box-shadow: 1px 1px 13px 4px #d1d1d1; }

#taf_area h1 { font-family: TimesRegular; font-size: 14px; font-style: italic; text-transform:uppercase; }
#taf_area p { font-family:arial; font-size:10px; line-height:16px; text-transform:uppercase; color:#666666; }
#taf_area input { color:#333333; float:left; display:block; clear:both; font-family:arial; font-size:11px; line-height:21px; padding:0 5px; width:205px; border:#dadada solid 1px; background:#ffffff; height:21px; }
#taf_area textarea { color:#333333; float:left; display:block; clear:both; font-family:arial; font-size:11px; line-height:16px; width:430px; height:250px; border:#dadada solid 1px; padding:5px; background:#ffffff; }

#taf_area input:hover { border:#999999 solid 1px; background:#f9f9f9; }
#taf_area textarea:hover { border:#999999 solid 1px; background:#f9f9f9; }
#taf_area .bt_submit:hover { border:#999999 solid 1px; background:#f9f9f9; }


/*Checkout Area*/
#checkout_area { border:1px solid #dadada; width:100%; min-height:100px; float:left; margin:15px 0 0 0; }
#ca_header { width:100%; float:left; font-family:arial; font-weight:bold; font-size:10px; line-height:25px; color:#333333; text-transform:uppercase; }
#ca_bb { text-align:left; float:left; width:310px; padding:0 0 0 40px; }
.ca_sb { text-align:center; float:left; width:114px; }
.ca_row { float:left; display:block; clear:both; width:100%; border-top:1px solid #dadada; text-transform:lowercase; font-family:TimesRegular; font-smooth:always; font-size:13px; line-height:13px; color:#333333; font-weight:normal; font-style:normal; }

.cat_bb { text-align:left; width:55px; padding:0; display:table-cell; vertical-align:middle; height:95px; }
.cat_sb { text-align:center; width:114px; display:table-cell; vertical-align:middle; height:95px; }
.cat_sb input { color:#333333; float:left; display:block; clear:none; font-family:TimesRegular; font-smooth:always; font-size:13px; line-height:21px; padding:0 5px;
text-align:center; -webkit-box-shadow: inset 0px 1px 4px #cecece; box-shadow: inset 0px 1px 4px #cecece; -moz-box-shadow: inset 0px 1px 4px #cecece; border:1px #8f8f8f solid; border-right:#cfcfcf; border-left:#cfcfcf; border-bottom:#e4e4e4; width:15px; background:#ffffff; height:21px; }

#ca_subtotal { float:left; display:block; clear:both; width:100%; background:#f0f0f0; margin-top:15px; }
#ca_subtotal_area { float:right; margin:20px; text-align:right; }

#final_subtotal_area { float:right; margin:20px; text-align:right; }
#final_subtotal_area span { font-family:times; font-size:14px; color:#333333; line-height:14px; margin:0 0 0px 0; text-transform:uppercase; float:left; display:block; clear:none; text-align:right; width:100px; padding: 0 0 5px 0; }
#final_subtotal_area div { float:right; display:block; clear:both; }

#final_subtotal_area1 { padding:20px 30px; margin:0; float:left; text-align:left; width:870px; }
#final_subtotal_area1 span { font-family:times; font-size:14px; color:#333333; line-height:14px; margin:0 0 0px 0; text-transform:uppercase; float:left; display:block; clear:none; text-align:right; width:100px; padding: 0 0 5px 0; }

#ship_method_area { float:left; display:block; clear:none; text-align:left; width:400px; padding:0; margin:0 50px 0 0; }
#ship_method_area p { font-family:TimesRegular; font-size:14px; color:#333333; font-style:normal; }
#ship_method_area em {font-style:italic;}
#ship_method_area textarea { color:#333333; float:left; display:block; margin:20px 0 0 0; clear:both; font-family:arial; font-size:11px; line-height:16px; width:286px; height:194px; border:#dadada solid 1px; padding:5px; background:#ffffff; }

#ship_method_location { float:left; display:block; clear:none; text-align:left; width:300px; padding:0; margin:0; }
#ship_method_location a { font-family:TimesRegular; font-size:14px; color:#333333; line-height:14px; margin:0 0 5px 0; text-transform:uppercase; text-decoration:underline; }
#ship_method_location a:hover { text-decoration:none; color:#000000; }
#ship_method_location p { font-family:TimesRegular; font-size:14px; color:#333333; line-height:18px; margin:0 0 10px 0; font-smooth:always; }


.ship_method_location { float:left; display:block; clear:none; text-align:left; width:300px; padding:0; margin:0; }
.ship_method_location a { font-family:TimesRegular; font-size:14px; color:#333333; line-height:14px; margin:0 0 5px 0; text-transform:uppercase; text-decoration:underline; }
.ship_method_location a:hover { text-decoration:none; color:#000000; }
.ship_method_location p { font-family:TimesRegular; font-size:14px; color:#333333; line-height:18px; margin:0 0 5px 0; font-smooth:always; }

.thank_you_block { float:left; display:block; clear:none; background:#f0f0f0; margin:15px 2px 0 0; width:179px; height:154px; padding:15px 25px; }
.thank_you_block p { font-family:times; font-size:14px; color:#333333; line-height:18px; margin:0 0 5px 0; }

#ty_subtotal_area { float:right; text-align:right; }
#ty_subtotal_area span { font-family:times; font-size:14px; color:#333333; line-height:14px; margin:0 0 5px 0; text-transform:uppercase; float:left; display:block; clear:none; text-align:right; width:80px; }

.bt_pm { cursor:pointer; float:left; display:block; clear:none; width:13px; border:1px solid #cccccc; height:13px; margin:4px 7px; text-align:center; line-height:12px; padding:0; }
.bt_pm:hover { border:#999999 solid 1px; background:#f9f9f9 }

/* Login Area */

#login_area { float:left; width:458px; margin:10px 10px 0 0; }
.login_item { float:left; width:412px; background:#f0f0f0; padding:23px; height:250px; }
.login_contents { float:left; width:100%; }

.login_contents p { font-family:arial; font-size:10px; line-height:16px; text-transform:uppercase; color:#333333; }
.login_contents a { font-family:arial; font-size:11px; line-height:16px; color:#333333; text-decoration:none; }
.login_contents a:hover { text-decoration:underline; color:#000000; }
.login_contents .login_field { margin:0 0 5px 0; color:#333333; float:left; display:block; clear:both; font-family:arial; font-size:11px; line-height:21px; padding:0 5px; width:402px; border:#dadada solid 1px; background:#ffffff; height:21px; }
.login_contents h4 { font-size:15px; line-height:15px; margin:0 0 15px 0; text-transform:none; }

#disclaimer p { font-family:times; font-style:italic; font-weight:normal; font-size:15px; line-height:26px; color:#000000; }
#disclaimer a { font-style:normal; color:inherit; }
#disclaimer a:hover {text-decoration:none;}

#payment_area input {margin-bottom:20px;}

/*Service Area*/

#service_area { float:left; width:470px; padding:0 40px; display:block; clear:none; }
#service_area h1 { font-family:TimesRegular; font-style:italic; color:#333333; font-size: 16px; margin:0 0 28px 0; text-transform: uppercase; }
#service_area h5 { border:1px solid #dadada; border-right:0; font-size: 12px; border-left:0; padding:10px 5px; width:460px; margin:0; float:left; display:block; clear:both; }

.service_area .menu {
	font-family:Arial, sans-serif;
	font-size:10px;
	font-style:normal;
	font-weight:normal;
	text-transform: uppercase;
	line-height:24px;
	text-decoration:none;
	padding:0;
color:#999999;
display:block; clear:both; float;left;
}

.service_area {height:800px;}

#service_area p { float:left; display:block; clear:none; margin:15px 10px 15px 5px; /*font-family:times;*/ font-size:11px; line-height:24px; color:#333333; }
#service_area a {color:#333333;}
#service_area a:hover { text-decoration:none; color:#000000; }
#service_area img {margin-top:6px;}

#service_area hr { color:#dadada; height:1px; width:100%; float:left; display:block; clear:both; margin-top:15px; }

#service_area ol { list-style-type:decimal; color:#333333; /* font-family:times; */ font-size:11px; line-height:24px; padding:0 0 0 20px; margin:0; display:block; clear:both; }
#service_area ul { list-style-type:square; color:#333333; /* font-family:times; */ font-size:11px; line-height:24px; padding:0 0 0 15px; margin: 0; display:block; clear:both; }
#service_area li { margin:0 0 10px 0; padding: 0 0 0 5px; }

#time_widget { float:left; display:block; clear:both; padding:8px 0 0 0; width:112px; border:1px solid #dadada; text-align:center; }
#time_widget span { text-transform:uppercase; font-family:GothamBookRegular; font-weight:normal; font-style:normal; font-smooth:always; font-size:10px; color:#666666; line-height:16px; }

#service_shipping p { color:#333333; border-top:1px solid #dadada; width:100%; padding:15px 0 0 0; margin:0 0 15px 0; }

#service_international h1 { border-bottom:1px solid #dadada; width:100%; padding-bottom:25px; }
#service_international p { margin:0 0 10px 0; width:100%; }
#service_international h5 { margin: 10px 0 15px 0; }

.guide_box { width:470px; border:1px solid #dadada; text-align:center; font-family:arial; color:#666666; font-size:10px; line-height:12px; text-transform:uppercase; margin-top:20px; }
.guide_box th, .guide_box td { padding:7px 5px; vertical-align:middle }
.guide_box th {font-weight:bold;}

.guide_box caption { font-family:TimesRegular; font-smooth:always; font-size:14px; line-height:28px; color:#333333; border:1px solid #dadada; border-bottom:0; }


/* Thank You Page */

.thank_you_page { position:relative; border:1px solid #f8f8f8; background:url(/img/thank_you.jpg) no-repeat; height:692px; }

.thank_you_page h1 { font-family: times new roman; font-size:44px; line-height:50px; color:#333333; text-transform:none; font-style:italic; margin:0px 0 30px 0px; }
.thank_you_page p { font-family:arial; font-size:10px; line-height:18px; color:#333333; font-weight:bold; text-transform:uppercase; }

#thank_you_text { position:absolute; top:195px; width:540px; left:385px; text-align:center; }

/**
 * Non-semantic helper classes: please define your styles before this section.
 */

/* 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: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.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: drupal.org/node/897638 */
.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; }

/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }



/**
 * Media queries for responsive design.
 *
 * These follow after primary styles so they will successfully override.
 */

@media all and (orientation:portrait) {
  /* Style adjustments for portrait mode goes here */

}

@media all and (orientation:landscape) {
  /* Style adjustments for landscape mode goes here */

}

/* Grade-A Mobile Browsers (Opera Mobile, Mobile Safari, Android Chrome)
   consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {


  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you: j.mp/textsizeadjust */
  /* html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}


/**
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 */
@media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important;
  -ms-filter: none !important; } /* Black prints faster: sanbeiji.com/archives/953 */
  a, a:visited { color: #444 !important; 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; } /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}


