/**
 * 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: 24px; }
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; margin-right: 3px;}
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;
}
a:hover {
	color: #232323;
}

/* 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 {background-color: #fafafa;}
body, select, input, textarea {
  /* Set your base font here, to apply evenly */
  font-family: "Lato", "Lucida Grande", Tahoma, sans-serif;
}

ul li img {whitespace: none-between;}

/* Headings (h1, h2, etc) have no default font-size or margin; define those yourself */
h1, h2, h3, h4, h5, h6 { font-weight: bold; }

a, a:active, a:visited {
	-webkit-transition: all 0.2s ease-in-out;
 	-moz-transition: all 0.2s ease-in-out;
 	-o-transition: all 0.2s ease-in-out;
 	-ms-transition: all 0.2s ease-in-out;
 	transition: all 0.2s ease-in-out;
 	text-decoration: none;
	border-bottom: 1px dotted;
	color: #555;
}
a:hover { color: #232323; }
a:active { border-bottom: none; }
/*.sub-nav {display: none;}*/

/* basic structures */
.wrapper, #header, #footer {margin: 0 auto; width: 940px;}
.main-content{min-height: 500px;}
.header {
	width: 100%;
	padding: 16px 0;
	margin-bottom: 12px;
	background-color: #42a8e5;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#42a8e5), to(#3b92bd));
	background-image: -webkit-linear-gradient(top, #42a8e5, #3b92bd);
	background-image: -moz-linear-gradient(top, #42a8e5, #3b92bd);
	background-image: -o-linear-gradient(top, #42a8e5, #3b92bd);
	background-image: -ms-linear-gradient(top, #42a8e5, #3b92bd);
	background-image: linear-gradient(top, #42a8e5, #3b92bd);
	-webkit-box-shadow: rgba(0,0,0,0.35) 0 1px 3px;
}

.logo {
	background: url(../images/logo.png) no-repeat left center;
	display: block;
	float: left;
	height: 48px;
	width: 260px;
	text-indent: -9999px;
	overflow: hidden;
	border: none;
}
.nav {
	display: block;
	float: right;
	width: auto;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	margin-top: 4px;
}
.nav a {
	display: block;
	color: #fff; 
	text-shadow: rgba(0, 0, 0, 0.5) 0 1px 1px;
	text-decoration: none;
	border-radius: 3px;
}
.nav a.active,
.nav a:hover {
	color: #fff; 
	text-shadow: rgba(0, 0, 0, 0.5) 0 1px 1px;
	background-color: #2c7197;
}
.nav a.active {border-radius: 3px 3px 0 0;}
.nav a:active {
	color: #fff; 
	text-shadow: rgba(0, 0, 0, 0.5) 0 1px 1px;
	background-color: #2c7197;
}
.nav ul {list-style: none; width: auto;}
.nav ul li {float: left; position: relative; margin-right: 12px;}
.nav ul li a {
	padding-right: 12px;
	padding-left: 36px;
	line-height: 38px;
	border: none;
}
.nav ul li a.menu-btn span {padding-right: 24px; background: url(../images/arrow-down.png) no-repeat right center;}
.nav ul li.last {content: ""; background: none;}
.nav ul li:last-child {margin-right: 0;}
.nav ul li a.btn-cart {
	color: #222;
	padding: 0 16px;
	background: #a7d14f;
	text-shadow: rgba(255, 255, 255, 0.5) 0 1px 1px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 2px;
	-moz-box-shadow: rgba(0, 0, 0, 0.3) 0 1px 2px;
	box-shadow: rgba(0, 0, 0, 0.3) 0 1px 2px;
	margin: 0;
}
.ie7 .nav ul li a.btn-cart,
.ie8 .nav ul li a.btn-cart {border-bottom: 2px solid #555;}
.nav ul li a.btn-cart:active {
	text-shadow: rgba(255, 255, 255, 1.0) 0 1px 2px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.5) 0 -1px 1px;
	-moz-box-shadow: rgba(0, 0, 0, 0.5) 0 -1px 1px;
	box-shadow: rgba(0, 0, 0, 0.5) 0 -1px 1px;
}
.nav ul li a.btn-cart:hover {
	background: #a7d14f;
	-webkit-box-shadow: rgba(0, 0, 0, 0.35) 0 1px 6px;
	-moz-box-shadow: rgba(0, 0, 0, 0.35) 0 1px 6px;
	box-shadow: rgba(0, 0, 0, 0.35) 0 1px 6px;
}
.nav ul li ul.sub-nav {
	background-color: #2c7197;
	border-radius: 0 0 3px 3px;
	left: 0;
	margin: 0;
	position: absolute;
	top: 38px;
	z-index: 8000;
	min-width: 100%;
}
.nav ul li ul#help-nav {
	width: 125%;
	border-radius: 0 3px 3px 3px;
}
.nav ul li ul.sub-nav li {float: none; margin: 0;}
.nav ul li ul.sub-nav li a {padding: 6px 10px; line-height: 16px; margin: 0;}
.nav ul li ul.sub-nav li a:hover {box-shadow: none; background-color: #333;}
.nav ul li ul.sub-nav li a:active {background-color: #333;}

/* icons */
.icon {background-position: 8px 11px; background-repeat: no-repeat; vertical-align: text-bottom;}
.uploader {background-image: url(../images/icons/icon-uploader.png);}
.account {background-image: url(../images/icons/icon-account.png);}
.cart {background-image: url(../images/icons/icon-cart.png);}
.help {background-image: url(../images/icons/icon-help.png);}

/* sub-header bar that holds info and search box */
.top-bar {clear: both; padding: 6px 0 20px;}
.top-bar ul.promo {list-style: none; margin-left: 0;}
.top-bar ul.promo li {float: left; height: 42px; width: 180px}
.top-bar ul.promo li.icon-promo {
	opacity: 0.6; 
	padding-left: 60px; 
	background-position: 0 -6px; 
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	cursor: default;
}
.top-bar ul.promo li.icon-promo:hover {opacity: 1.0;}
.top-bar ul.promo li.return {background-image: url(../images/icons/icon-return.png);}
.top-bar ul.promo li.secure {background-image: url(../images/icons/icon-secure.png);}
.top-bar ul.promo li.phone {background-image: url(../images/icons/icon-support.png);}
.top-bar ul.promo li span.line {display: block; font-size: 1.231em;}
.top-bar ul.promo li span.bold {font-weight: bold;}
.top-bar ul.promo li.search {float: right; width: 210px; position: relative; text-align: right; line-height: 3em;}
.top-bar ul.promo li.search #search-text {
	width: 138px;
	height: 18px;
	padding: 6px 4px;
	border-bottom: 1px solid #eaeaea;
	border-top: 1px solid #c4c4c4;
	border-left: 1px solid #e1e1e1;
	border-right: 1px solid #e1e1e1;
	background: #fff url(../images/search-bg.png) repeat-x 0 0;
	z-index: 100;
}

/* sidebar */
.left {float: left;}
.right {float: right;}
.sidebar {width: 220px; margin-bottom: 15px;}
.sidebar .block {display: block; margin-bottom: 1em;}
.sidebar .block .title h2 {
	font-size: 1.231em; 
	margin-bottom: 6px; 
	padding-bottom: 6px; 
	border-bottom: 2px solid #aaaaaa;
}
.sidebar .block .content {margin-bottom: 10px;}

/* fixes for index.php */
#index .sidebar {float:left;}
#index .main-column {float:right;}

/* main column */
.main-column {width: 700px; margin-bottom:36px;}

/* slider definitions starts here */
.main-column #slider {
	display: block;
	background: #fff; 
	border: 1px solid #e9e9e9; 
	-webkit-box-shadow: 0 0 5px #DDDDDD;
	-moz-box-shadow: 0 0 5px #DDDDDD;
	box-shadow: 0 0 5px #DDDDDD;
}
.main-column #slider ul {list-style: none; height: 350px; margin: 0; position: relative; overflow: hidden;}
.main-column #slider ul li {display: block; float: left; width: 700px; height: 350px; overflow: hidden;}
.main-column #slider ul li img {width: 100%; height: 100%;}

/* special section */
.special {clear: both;}
.special .banner {
	background: url(../images/featured-bg.png) no-repeat 0 0;
	width: 176px; 
	height: 464px; 
	padding: 22px;
	margin: 0 10px; 
	float: left;
	opacity: 0.75;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.special .banner a {border-bottom: none;}
.special .banner:hover,
.special #featured {opacity: 1.0;}
.special div:first-child {margin-left: 0;}
.special div:last-child {margin-right: 0;}
.special .banner h2 {font-size: 1.385em; font-weight: bold; text-align: center; margin-bottom: 15px; height: 38px;}
.special .banner h2 a {color: #626262; text-decoration: none; border-bottom: none;}
.special .banner h2 a:hover {color: #222; text-decoration: none; rgba(255, 255, 255, 0.5) 0 1px 1px;}
.special .banner ul, .special .banner .description {margin: 15px 0; list-style:none;}
.special .banner ul li {padding-left: 26px; margin-bottom: 3px; background: url(../images/icons/list-tick.png) no-repeat left center;}
.special .banner .price {text-align: center; font-weight: bold; font-size: 1.385em; margin-bottom: 20px;}
.special .banner .price .small {font-size: 0.722em; font-weight: normal; margin-right: 5px;}
a.cta {
	display: block;
	width: 176px;
	height: 40px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	line-height: 38px;
	font-size: 1.385em;
	font-weight: bold;
	text-shadow: rgba(0, 0, 0, 0.5) 0 1px 1px;
	background: url(../images/featured-btn-blue.png) no-repeat 0 0;
	box-shadow: #6a8ba8 0 1px 2px;
}
#green {
	background: url(../images/featured-btn-green.png) no-repeat 0 0; 
	color: #222; 
	text-shadow: rgba(255, 255, 255, 0.75) 0 1px 1px; 
	box-shadow: #8da060 0 1px 2px;
}
a.cta:hover {color: #000; text-shadow: rgba(255, 255, 255, 0.75) 0 1px 1px;}

/* brands */
.brands {margin-bottom: 25px; position: relative;}
.brands h3 {font-size: 1.231em; font-weight: bold; margin-bottom: 20px;}
.brands ul {list-style: none; margin: 0;}
.brands ul li {
	width: 220px; 
	height: 52px; 
	margin: 0 10px;
	float: left; 
	text-indent: -9999px; 
	overflow: hidden; 
	opacity: 0.5;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.brands ul li:hover {opacity: 1.0;}
.brands ul li.first {margin-left: 0}
.brands ul li.last {margin-right: 0}
.brands ul li#sony {background: url(../images/brands/sony.png) no-repeat center center;}
.brands ul li#microsoft {background: url(../images/brands/microsoft.png) no-repeat center center;}
.brands ul li#lexmark {background: url(../images/brands/lexmark.png) no-repeat center 8px;}
.brands ul li#bbc_banner {background: url(../images/brands/bbc.png) no-repeat center center;}
.brands ul li#thq {background: url(../images/brands/thq.png) no-repeat right center;}

/* footer styles */
.footer {
	background: url(../images/footer-bg.png) repeat-x 0 0;
	background-color: #42a8e5;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#42a8e5), to(#3b92bd));
	background-image: -webkit-linear-gradient(top, #42a8e5, #3b92bd);
	background-image: -moz-linear-gradient(top, #42a8e5, #3b92bd);
	background-image: -o-linear-gradient(top, #42a8e5, #3b92bd);
	background-image: -ms-linear-gradient(top, #42a8e5, #3b92bd);
	background-image: linear-gradient(top, #42a8e5, #3b92bd);
	border-top: 12px solid rgba(255,255,255,0.4);
	width: 100%;
	padding-bottom: 12px;
	box-shadow: rgba(0,0,0,0.2) 0 1px 3px inset;
}
#footer {position: relative; padding-top: 20px; height: 250px;}
.footer .top {
	position: absolute;
	right: 0;
	top: 0;
	background: #3B92BD;
	border: 1px solid #2882B5;
	box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0px;
}
.footer .top a {
	display: block;
	background: url(../images/arrow-up.png) no-repeat 90% 55%;
	width: 64px;
	padding: 3px 8px;
	padding-right: 10px;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	text-shadow: rgba(0, 0, 0, 0.5) 0 1px 1px;
	border-bottom: none;
}
.footer .top a:hover {
	color: #232323;
	text-shadow: rgba(255, 255, 255, 0.15) 0 1px 0px;
}
.footer .block {
	display: block;
	float: left;
	padding-top: 12px;
}
.footer .block h4 {font-size: 1.231em; font-weight: bold; color: #fff; text-shadow: rgba(0, 0, 0, 0.5) 0 1px 1px; margin-bottom: 10px; text-transform: lowercase;}
.footer .block ul {list-style: none; margin: 0;}
.footer .block ul li {margin-bottom: 0.25em;}
.footer .block,
.footer .block a {color: #fff; text-decoration: none; text-shadow: rgba(255, 255, 255, 0.1) 0 1px 1px; border: none;}
.footer .block a:hover {color: #000; text-shadow: rgba(255, 255, 255, 0.5) 0 1px 1px; }
.footer .address .address-line {
	display: block;
	margin-bottom: 0.25em;
}

/* block-specific settings */
.footer .location {width: 80px; margin-top: 60px;}
.ie7 .footer .location {width: 80px; height: 54px;}
.footer .location a {
	padding-top: 54px; 
	text-transform: uppercase; 
	font-weight: bold; 
	text-shadow: rgba(0, 0, 0, 0.5) 0 1px 1px; 
	background: url(../images/marker.png) no-repeat 0 0;
	border-bottom: none;
}
.footer .location a:hover {color: #000; text-shadow: rgba(255, 255, 255, 0.5) 0 1px 1px; text-decoration: none;}
.footer .address, .footer .links {width: 160px;}
.ie7 .footer .address, .ie7 .footer .links,
.ie8 .footer .address, .ie8 .footer .links {width: 155px;}
.footer .maker {position: absolute; left: 0; bottom: 20px;}
.footer .maker a {
	display: block;
	width: 168px;
	height: 25px;
	text-indent: -9999px;
	overflow: hidden;
	background: url(../images/matthewmorek.png) no-repeat 0 0;
}
.footer .social {position: absolute; left: 240px; bottom: 20px;}
.footer .social ul li {float: left; margin-right: 24px;}
.footer .social ul li a {display: block; text-indent: -9999px; overflow: hidden; width: 32px; height: 32px;}
.footer .social ul li#twitter a {background: url(../images/icons/twitter.png) no-repeat left top;}
.footer .social ul li#twitter a:hover {background: url(../images/icons/twitter.png) no-repeat left bottom;}
.footer .social ul li#facebook a {background: url(../images/icons/facebook.png) no-repeat left top;}
.footer .social ul li#facebook a:hover {background: url(../images/icons/facebook.png) no-repeat left bottom;}
.footer .social ul li#youtube a {background: url(../images/icons/youtube.png) no-repeat left top;}
.footer .social ul li#youtube a:hover {background: url(../images/icons/youtube.png) no-repeat left bottom;}
.footer .social ul li#instagram a {background: url(../images/icons/instagram.png) no-repeat left top;}
.footer .social ul li#instagram a:hover {background: url(../images/icons/instagram.png) no-repeat left bottom;}
.footer .secure {position: absolute; right:0; bottom: 20px;}
.footer .secure ul li {
	float: left; 
	margin-right: 20px; 
	text-indent: -9999px; 
	overflow: hidden; 
	height: 32px; 
	width: 50px; 
	opacity: 0.7;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.footer .secure ul li:hover {opacity: 1;}
.footer .secure ul li#gcheckout {background: url(../images/icons/google-checkout.png) no-repeat center center; width: 32px;}
.footer .secure ul li#visa {background: url(../images/icons/visa.png) no-repeat center center;}
.footer .secure ul li#mastercard {background: url(../images/icons/mastercard.png) no-repeat center center;}
.footer .secure ul li#maestro {background: url(../images/icons/maestro.png) no-repeat center center;}
.footer .secure ul li#amex {background: url(../images/icons/amex.png) no-repeat center center; margin-right: 0;}
.footer .secure ul li#paypal {background: url(../images/icons/paypal.png) no-repeat center center;}

/* breadcrumbs */
.breadcrumbs {margin-bottom: 10px; padding-top: 3px;}
.breadcrumbs a {text-decoration: none; color: #222; border: none;}
.breadcrumbs a:hover {text-decoration: underline; color: #222;}
.breadcrumbs .navigation-pipe {margin: 0 2px;}

/* generic form controls and buttons */
input[type=text], input[type=password]{
	-moz-transition: all 0.3s ease-in-out 0s; 
    background: url("../images/search-bg.png") repeat-x scroll 0 0 #FFFFFF;
    border-color: #C4C4C4 #E1E1E1 #EAEAEA #E1E1E1;
    border-style: solid;
    border-width: 1px;
    border-radius: 2px;
    height: 26px;
    padding: 0 5px;
}
.ie7 input[type=text], .ie7 input[type=password],
.ie8 input[type=text], .ie8 input[type=password] {
	line-height: 26px;
}
textarea {
	-moz-transition: all 0.3s ease-in-out 0s; 
    background: url("../images/search-bg.png") repeat-x scroll 0 0 #FFFFFF;
    border-color: #C4C4C4 #E1E1E1 #EAEAEA #E1E1E1;
    border-style: solid;
    border-width: 1px;
    border-radius: 2px;
    font-weight: bold;
    padding: 6px;
}
select {
	padding: 2px;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
}
button, input[type=submit], input[type=button], .btn-generic, .btn-generic:visited {
	display: inline-block;
    padding: 6px;
	border-radius: 2px;
	border: 1px solid #bfbfbf;
	border-bottom: 1px solid #999999;
	background: url(../images/gtn-generic-bg.png) repeat-x 0 0;
	/*background: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);*/
	color: #222;
	text-decoration: none;
	text-shadow: rgba(255, 255, 255, 0.75) 0 1px 1px;
	box-shadow: rgba(219, 219, 219, 1) 0 1px 1px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
button:hover, input[type=submit]:hover, input[type=button]:hover, .btn-generic:hover, .btn-generic-large:hover {
	border: 1px solid #777;
	color: #000;
}

.btn-generic-large, .btn-generic-large:visited {
	display: inline-block;
    padding: 12px;
	border-radius: 3px;
	font-weight: bold;
	border: 1px solid #bfbfbf;
	border-bottom: 1px solid #999999;
	background: url(../images/btn-large-orange.png) repeat-x 0 0;
	color: #222;
	text-decoration: none;
	text-shadow: rgba(255, 255, 255, 0.75) 0 1px 1px;
	box-shadow: rgba(219, 219, 219, 1) 0 1px 1px;
}
.btn-generic-large:hover {
	border: 1px solid #999;
	border-bottom: 1px solid #555;
}

.disabled {color: #888;}
input[type=submit].small,
a.btn-generic.small {padding: 4px 6px;}

button.orange, input[type=submit].orange, input[type=button].orange,
.orange, .orange:visited {
	background: url(../images/btn-generic-orange.png) repeat-x 0 0;
	border-color: #D69D00;
	color: #222;
	text-shadow: rgba(255,255,255,0.5) 0 1px 1px;
	-webkit-box-shadow: 0 1px 1px #DBDBDB;
	box-shadow: 0 1px 1px #DBDBDB;
	font-weight:bold;
}
button.orange:hover, input[type=submit].orange:hover, input[type=button].orange:hover,
.orange:hover {
	border-color: #c86c00;
	-webkit-box-shadow: rgba(0,0,0,0.5) 0 0 3px;
	box-shadow: rgba(0,0,0,0.5) 0 0 3px;
}

/* part of order-confirmation page */
.sidebar .action {
	margin: 50px 0;
}
.sidebar .details {
	text-align: right;
}
.sidebar .payment-details dt {
	font-size: 18px;
	color: #6c6c6c;
	line-height: 1;
}
.sidebar .payment-details dd {
	font-size: 36px;
	font-weight: bold;
	color: #000;
	margin-bottom: 0.5em;
	line-height: 1;
}
.sidebar .payment-details dd.smaller {
	font-size: 24px;
}

input.btn-special,
a.btn-special {
	background: #fff url(../images/btn-special-bg.png) repeat-x left top;
	height: 36px;
	line-height: 36px;
	text-align: center;
	display: block;
	border-top: 1px solid #da910d;
	border-bottom: 1px solid #905206;
	border-left: 1px solid #b7730a;
	border-right: 1px solid #b7730a;
	color: #593408;
	border-radius: 3px;
	box-shadow: rgba(0,0,0,0.3) 0 1px 3px;
	text-shadow: rgba(255,255,255,0.7) 0 1px 1px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
}
input.btn-special:hover,
a.btn-special:hover {
	background: #fff url(../images/btn-special-bg.png) repeat-x left top;
	opacity: 0.8;
}


/* rte styles for content */
.rte p, .rte ul {margin-bottom: 1em; line-height: 1.562em;}
.rte ul li {}

.align-left {text-align: left;}
.align-right {text-align: right;}
.align-center {text-align: center;}

/* product availability */
.availability {padding: 8px; width: 100px; text-align: center; font-weight: bold; color: #222; text-transform: uppercase;}
.instock {background: #eaeff9;}
.outofstock {background: #e9b6b6;}

/* product related */
.price {font-weight: bold;}
.new {
	background-color: #AEE202;
    color: #FFFFFF;
    font-size: 0.813em;
    margin-right: 3px;
    padding: 2px 4px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5); 
}

/* global site styles */
.head {position: relative; padding-bottom: 3px; border-bottom: 1px solid #DCDCDC; box-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); margin-bottom: 12px;}
.head h1, .rte h1 {display: block; color: #000000; font-size: 1.846em; margin-top: 18px;}
.head h2, .rte h2 {display: block; color: #000000; font-size: 1.538em; margin-top: 18px;}
.head h3, .rte h3 {display: block; color: #000000; font-size: 1.385em; margin-top: 18px;}
#fancybox-content .head h1, #fancybox-content .rte h1 {margin-top: 0px;}
#fancybox-content .head h2, #fancybox-content .rte h2 {margin-top: 0px;}
#fancybox-content .head h3, #fancybox-content .rte h3 {margin-top: 0px;}
.head .subtitle {display: block; font-size: 0.923em; color: #666; }
.head .controls {position: absolute; top: 3px; right: 0;}
.head .quick-link {
	display: inline-block;
    padding: 3px 6px;
	border-radius: 2px;
	border: 1px solid #bfbfbf;
	border-bottom: 1px solid #999999;
	background: url(../images/gtn-generic-bg.png) repeat-x 0 0;
	/*background: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);*/
	color: #222;
	font-size: 0.923em;
	text-decoration: none;
	text-transform: uppercase;
	text-shadow: rgba(255, 255, 255, 0.75) 0 1px 1px;
	box-shadow: rgba(219, 219, 219, 1) 0 1px 1px;
}
.head .quick-link:hover {border: 1px solid #888;}

/* contectual help controls */
.head .help-link,
.head .redirect {
	display: inline-block;
    padding: 3px 0px 3px 6px;
	/*background: url(../images/gtn-generic-bg.png) repeat-x 0 0;
	background: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);*/
	color: #555;
	font-size: 0.923em;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
	text-shadow: rgba(255, 255, 255, 0.75) 0 1px 1px;
	border-bottom: none;
}
.head .help-link:hover,
.head .redirect:hover {color: #222;}

.body {margin-bottom: 12px;}
#order-opc .body {margin-bottom: 24px;}
.foot {
	margin-top: 12px;
	padding-top: 3px;
	border-top: 1px solid #dcdcdc;
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.75);
}
.success,
.error {
	border: 1px solid #DF7B7B;
	background: #EC9B9B;
	padding: 6px 10px;
	color: #333;
	margin-bottom: 18px;
}
.success {border: 1px solid #aacf58; background: #cdeb8b;}
.success ol,
.error ol {margin: 0; list-style: none;}
.success ol li,
.error ol li {}

.notice {
	border: 2px solid #efaf37;
	background: #ffe28c;
	padding: 6px 10px;
	color: #333;
	margin-bottom: 18px;
	font-size: 14px;
	max-width: 740px;
}

/* standard table definitions */
div.table_block {
    clear: both;
    margin: 0 auto 2em;
    padding-bottom: 6px;
    width: 100%;
}
table.std {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}
table.std .price {
    color: black;
    font-size: 1em;
    font-weight: bold;
}
table.std td, table.std th {
    padding: 0.4em 0.5em;
    vertical-align: middle;
}
table.std th {
    white-space: nowrap;
}
table.std tbody tr td, table.std tfoot tr td {
    border-top: 1px solid #F1F1F1;
}
table.std thead th {
    background-color: transparent;
    color: #222;
    font-weight: bold;
    height: 24px;
    text-align: left;
    white-space: nowrap;
}
table.std tfoot td {
    color: #222;
    text-align: right;
    white-space: nowrap;
}
table.std tr.last_item {
    border-bottom: 1px solid #f1f1f1;
}
table.std tr td.cart_description a {
	text-decoration: none;
	color: #555;
	border-bottom: 1px dotted;
}
table.std tr td.cart_total {
    text-align: right;
}

table#cart_summary thead th.last {
    text-align: right;
}
table#cart_summary td, table#cart_summary th {
    padding: 0.4em 0;
}
table#cart_summary td#total_price {width: 90px;}

td.carrier_price {width: 65px;}
td.cart_product a {border-bottom: none;}
td.cart_quantity {
    text-align: right;
    width: 5.5em;
    overflow: hidden;
}
td.cart_quantity .quantity {
    position: relative;
    width: 50px;
}
td.cart_quantity .quantity a {
	border-bottom: none;
}
td.cart_quantity .quantity .incr {
    background: url("../images/qty-controls-mini.png") no-repeat scroll 0 0 transparent;
    height: 14px;
    left: 49px;
    overflow: hidden;
    position: absolute;
    text-indent: 9999px;
    top: 0;
    width: 19px;
    border-bottom: none;
}
td.cart_quantity .quantity .decr {
    background: url("../images/qty-controls-mini.png") no-repeat scroll 0 -12px transparent;
    bottom: 0;
    height: 15px;
    left: 49px;
    overflow: hidden;
    position: absolute;
    text-indent: 9999px;
    width: 19px;
    border-bottom: none;
}

/* forms */
.account-form p {margin-bottom: 3px;}
.account-form .undefined {margin-right: 3px;}
.account-form #email,
.account-form #passwd,
.account-form #old_passwd,
.account-form #password,
.account-form #confirmation,
.account-form #company,
.account-form #company_invoice,
.account-form #address1,
.account-form #address1_invoice,
.account-form #address2,
.account-form #address2_invoice,
.account-form #alias,
.account-form #alias_invoice,
.account-form #dni {width: 317px;}
.account-form #other,
.account-form #other_invoice {width: 315px;}
.account-form #postcode,
.account-form #postcode_invoice {width: 86px;}
.account-form #id_state,
.account-form #id_state_invoice {width: 127px;}
.account-form #id_country,
.account-form #id_country_invoice {width: 200px;}
.account-form #city,
.account-form #city_invoice {width: 217px;}
.account-form .checker {margin-top: 9px;}

.account-form #submitAddress,
.account-form #submitIdentity {width: 329px;}

.account-form #firstname_invoice,
.account-form #lastname_invoice,
.account-form #customer_firstname,
.account-form #customer_lastname,
.account-form #firstname,
.account-form #lastname,
.account-form #phone_invoice,
.account-form #phone_mobile_invoice,
.account-form #phone,
.account-form #phone_mobile,
.account-form .expiry {width: 151px;}

.account-form .cvc {margin-left: 1em;}

.login-form label {width: 190px; display: inline-block;}
.login-form input[type=text], .login-form input[type=password] {width: 200px;}
.login-form p.submit {margin: 12px 0; text-align: center;}

.watermark {color: #aaa;}
#seo-click {position: absolute; top:0; right:0; text-decoration: none; color: #333; border-bottom: none;}
#seo-content ul {list-style: none; margin: 0;}

.f-left {float:left}
.f-right{float:right}

#order .head,
#order .body,
#submit .head,
#submit .body {margin: 12px 0;}

.cart-navigation {display: block; margin: 18px 0;}
ul.payment {list-style: none; margin: 0;}
ul.payment li {float: left; margin-right: 46px;}
ul.payment li a {border-bottom: none;}
ul.payment li.last,
ul.payment li:last-child {margin-right: 0;}

.ie7 ul.payment li.last,
.ie8 ul.payment li.last {margin-right:0 !important;}

.payment_module img {
	border-radius: 5px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.payment_module img:hover {
	-moz-box-shadow: rgba(0,0,0, 0.5) 0 0 5px;
	-webkit-box-shadow: rgba(0,0,0, 0.5) 0 0 5px;
	-ms-box-shadow: rgba(0,0,0, 0.5) 0 0 5px;
	-o-box-shadow: rgba(0,0,0, 0.5) 0 0 5px; 
	box-shadow: rgba(0,0,0, 0.5) 0 0 5px;
}

/* order-confirmation.tpl */
dl.order-details {display: block;}
dl.order-details dt {
	display: inline-block;
	width: 200px;
	margin-bottom: 8px;
}
dl.order-details dd {
	display: inline-block;
	width: 450px;
	margin-bottom: 8px;
	font-weight: bold;
}

.home-panel {
	display: inline-block;
	width: 468px;
	position: relative;
	margin-bottom: 2em;
	vertical-align: top;
}
.rss-block {
	display: block;
	position: relative;
	margin: 1em 0;
}
.home-panel h3,
.rss-block h3 {font-size: 1.231em; font-weight: bold; margin-bottom: 8px;}

.rss-feed {
	display: block;
	min-height: 72px;
	vertical-align: middle;
	margin-bottom: 1em;
}
.rss-feed ul {list-style:none; margin: 0;}

.rss-feed ul li {
	display: block;
	margin-bottom: 8px;
}
.rss-feed ul li p {
	position:relative;
	max-width: 88%;
}
.rss-feed ul li small {color: #aaa; font-style: italic;}
.rss-feed ul li a.rss-link {
	text-decoration: none;
	border-bottom: 1px solid transparent;
	color: #555;
}
.rss-feed ul li a.rss-link:hover {
	color: #232323;
	border-bottom: 1px solid #aaa;
}
.rss-feed ul li a.rss-read {
	position: absolute;
	display: block;
	right: -10%;
	text-decoration: none;
	color: #555555;
	padding: 3px 6px;
	background: #dedede;
	text-shadow: rgba(255,255,255,0.75) 0 1px 1px;
	box-shadow: rgba(0,0,0,0.3) 0 1px 1px;
	border: 1px solid #CCCCCC;
	border-radius: 2px;
	z-index: 10;
	top: 3px;
	font-size: 11px;
	text-transform: uppercase;
}
.rss-feed ul li a.rss-read:hover {
	color: #232323;
}

/* various styles for payment forms */
.payment-form .total {
	display: block;
	margin: 2em 0;
	text-align: right;
	width: 410px;
}
.payment-form .total .total-to-pay {}
.payment-form .total .amount {
	font-weight: bold;
	font-size: 2em;
	width:100px;
}
.payment-form .col_name {
	display: block;
	width: 170px;
	float: left;
}
.payment-form .col_card {
	display: block;
	width: 240px;
	float: left;
}
.payment-form .card_expiry {float: left; width: 140px;}
.payment-form .card_cvc {float: left; width: 100px; text-align: right;}
.payment-form #firstname,
.payment-form #lastname,
.payment-form #creditcard {
	padding: 3px 6px;
	font-weight: bold;
	font-size: 1.231em;
}
.payment-form #firstname,
.payment-form #lastname {width: 144px;}
.payment-form #creditcard {width: 228px;}
.payment-form p.text {margin-bottom: 2px;}
.payment-form p.text:nth-child(2n) {margin-bottom: 6px;}
.payment-form p.info {margin-top: 2em; width: 410px;}
.payment-form input.btn-special {display: inline; line-height: 28px; padding: 4px 10px;}
.payment-form input.btn-special:disabled{
	background: #f0f0f0;
	border: 1px solid #e1e1e1;
	box-shadow: none;
	color: #888;
	text-shadow: 0 1px 0 rgba(255,255,255,0.3);
}
.payment-method {
	cursor: pointer;
}

/* sidebar search */
.sidebar .search {padding: 0px;}
.sidebar .search #search_query {width: 146px;}

/* IE fixes */
.ie7 a.cart_quantity_delete,
.ie8 a.cart_quantity_delete {float: left;}
.ie7 .cart_quantity_input,
.ie8 .cart_quantity_input {width: 24px;}






/**
 * 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; }

/*
	Styles for the TinyMCE Editor
*/
#tinymce ul,
#tinymce p,
#tinymce h1,
#tinymce h2,
#tinymce h3,
#tinymce h4,
#tinymce h5,
#tinymce h6 {
	margin-bottom: 12px;
}

.google-local-reviews {background-color: #fff;}
.google-local-reviews .widget-title,
.google-local-reviews .widget-body,
.google-local-reviews .widget-cta {padding: 24px; border: 1px solid #ebebeb;}
.google-local-reviews .widget-title h3 {font-size: 18px; font-weight: normal; margin-bottom: 0;}
.google-local-reviews .widget-title h3 .g_plus {color: #D03E2D; font-weight: bold;}
.google-local-reviews .widget-title h5 {text-transform: uppercase; color: #747474; font-weight: normal;}
.google-local-reviews .widget-title .score {
	position: absolute;
	top: 28px;
	right: 24px;
	width: 92px;
	height: 48px;
	color: #E7711B;
	font-size: 24px;
	/*background-color: #79CF19;
	border-radius: 3px;*/
	line-height: 18px;
	text-align: center;
}
.google-local-reviews .widget-title .score-star {
	display: inline-block;
	margin: 0;
	height: 12px;
	width: 13px;
	background: no-repeat url(//ssl.gstatic.com/s2/oz/images/sprites/local_five_stars-d0679c8bfc6516fc0a26404524ecec37.png) -126px 0;
}
.google-local-reviews .widget-body {
	border-top: 0;
	border-bottom: 0;
	padding: 16px 24px;
	max-height: 96px;
	overflow: scroll;
}
.google-local-reviews .widget-body h4 {margin-bottom: 0.25em;}
.google-local-reviews .widget-cta {padding: 16px 24px; text-align: center;}

.google-local-reviews.side-panel .widget-title {position: relative;}
.google-local-reviews.side-panel .widget-title,
.google-local-reviews.side-panel .widget-body,
.google-local-reviews.side-panel .widget-cta {padding: 16px;}
.google-local-reviews.side-panel .widget-body {max-height: 156px;}
.google-local-reviews.side-panel .widget-title .score {
	top: 12px;
	right: 12px;
	width: 72px;
	height: 32px;
	font-size: 18px;
	text-align: right;
	line-height: 30px;
	background-color: #fff;
}


/**
 * 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; }
}

