/* Variables */
/* 
  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 {
  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 
 */
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: 'UniversLTW01-47LightCn', Verdana, sans-serif, Arial, sans-serif;
  font-size: 14px;
  line-height: 17px;
  font-size-adjust: 0.5;
}
/* 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: normal;
  font-family: 'UniversLTW01-57Condense 723821', Verdana, sans-serif;
  margin-bottom: 30px;
}
/* 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 {
  color: #9b9c9e;
  text-decoration: none;
}
a:hover {
  color: #58595a;
}
ul,
ol {
  margin-left: 1.8em;
}
ol {
  list-style-type: decimal;
}
/* Remove margins for navigation lists */
nav ul,
nav li,
ul.unstyled {
  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;
}
/* thnx ivannikolic! 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],
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: #9b9c9e;
  color: #000;
  text-shadow: none;
}
::selection {
  background: #9b9c9e;
  color: #000;
  text-shadow: none;
}
/*  j.mp/webkit-tap-highlight-color */
a:link {
  -webkit-tap-highlight-color: #9b9c9e;
}
/* 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 {
  /* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  visibility: hidden;
}
.clearfix:after {
  clear: both;
}
.clear {
  clear: both;
}
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
.row {
  margin-left: -30px;
  /* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
  zoom: 1;
}
.row:before,
.row:after {
  content: "\0020";
  display: block;
  height: 0;
  visibility: hidden;
}
.row:after {
  clear: both;
}
.span1 {
  margin-left: 30px;
  float: left;
  width: 160px;
}
.span2 {
  margin-left: 30px;
  float: left;
  width: 350px;
}
.span3 {
  margin-left: 30px;
  float: left;
  width: 540px;
}
.span4 {
  margin-left: 30px;
  float: left;
  width: 730px;
}
.span5 {
  margin-left: 30px;
  float: left;
  width: 920px;
}
.off1 {
  margin-left: 190px;
}
.off2 {
  margin-left: 380px;
}
.off3 {
  margin-left: 570px;
}
.off4 {
  margin-left: 760px;
}
button,
.btn {
  border: 1px solid #58595a;
  font-family: 'UniversLTW01-47LightCn', Verdana, sans-serif;
  background: #fff;
  color: #000;
  text-align: center;
  padding: 5px 3px;
  width: 152px;
}
.btn {
  display: block;
}
.checkout button,
.checkout .btn,
#order_form button {
  background: #58585a;
  color: #fff;
}
select,
input {
  border: 0;
  border-bottom: 1px solid #58595a;
}
fieldset {
  margin-bottom: 17px;
  padding-top: 17px;
}
fieldset legend {
  display: block;
  padding-left: 150px;
  line-height: 1;
  color: #000;
  *padding: 0 0 5px 145px;
  /* IE6-7 */
  *line-height: 1.5;
  /* IE6-7 */
}
form .clearfix {
  margin-bottom: 17px;
  /* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
  zoom: 1;
}
form .clearfix:before,
form .clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  visibility: hidden;
}
form .clearfix:after {
  clear: both;
}
label {
  padding-top: 2px;
  line-height: 17px;
  float: left;
  width: 130px;
  text-align: left;
}
form .input {
  margin-left: 130px;
}
input[type=checkbox],
input[type=radio] {
  cursor: pointer;
}
input,
textarea,
select,
.uneditable-input {
  display: inline-block;
  width: 220px;
  height: 17px;
  line-height: 17px;
  color: #000;
  border: 0;
  padding: 1px 0;
  border-bottom: 1px solid #58595a;
}
select {
  padding: initial;
}
input[type=checkbox],
input[type=radio] {
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 0;
  *margin-top: 0;
  /* IE6-7 */
  line-height: normal;
  border: none;
}
input[type=file] {
  background-color: white;
  padding: initial;
  border: initial;
  line-height: initial;
}
input[type=button],
input[type=reset],
input[type=submit] {
  width: auto;
  height: auto;
}
select,
input[type=file] {
  height: 20.4px;
  *height: auto;
  line-height: 20.4px;
  *margin-top: 4px;
  /* For IE7, add top margin to align select with labels */
}
select[multiple] {
  height: inherit;
  background-color: white;
}
textarea {
  height: auto;
}
.uneditable-input {
  background-color: white;
  display: block;
  border-color: #eee;
  cursor: not-allowed;
}
:-moz-placeholder {
  color: #9b9c9e;
}
::-webkit-input-placeholder {
  color: #9b9c9e;
}
input .placeholder,
textarea .placeholder {
  color: #9b9c9e;
}
input:focus,
textarea:focus {
  outline: 0;
  border-color: #9b9c9e;
}
input[type=file]:focus,
input[type=checkbox]:focus,
select:focus {
  outline: 1px dotted #666;
}
form .clearfix.error > label,
form .clearfix.error .help-block,
form .clearfix.error .help-inline {
  color: #b94a48;
}
form .clearfix.error input,
form .clearfix.error textarea {
  color: #b94a48;
  border-color: #ee5f5b;
}
form .clearfix.error input:focus,
form .clearfix.error textarea:focus {
  border-color: #e9322d;
}
form .clearfix.error .input-prepend .add-on,
form .clearfix.error .input-append .add-on {
  color: #b94a48;
  background-color: #fce6e6;
  border-color: #b94a48;
}
form .clearfix.warning > label,
form .clearfix.warning .help-block,
form .clearfix.warning .help-inline {
  color: #c09853;
}
form .clearfix.warning input,
form .clearfix.warning textarea {
  color: #c09853;
  border-color: #ccae64;
}
form .clearfix.warning input:focus,
form .clearfix.warning textarea:focus {
  border-color: #be9a3f;
}
form .clearfix.warning .input-prepend .add-on,
form .clearfix.warning .input-append .add-on {
  color: #c09853;
  background-color: #d2b877;
  border-color: #c09853;
}
form .clearfix.success > label,
form .clearfix.success .help-block,
form .clearfix.success .help-inline {
  color: #468847;
}
form .clearfix.success input,
form .clearfix.success textarea {
  color: #468847;
  border-color: #57a957;
}
form .clearfix.success input:focus,
form .clearfix.success textarea:focus {
  border-color: #458845;
}
form .clearfix.success .input-prepend .add-on,
form .clearfix.success .input-append .add-on {
  color: #468847;
  background-color: #bcddbc;
  border-color: #468847;
}
div.error {
  color: #b94a48;
}
input.span1,
textarea.span1 {
  display: inline-block;
  float: none;
  width: 160px;
  margin-left: 0;
}
input.span2,
textarea.span2 {
  display: inline-block;
  float: none;
  width: 350px;
  margin-left: 0;
}
input.span3,
textarea.span3 {
  display: inline-block;
  float: none;
  width: 540px;
  margin-left: 0;
}
input.span4,
textarea.span4 {
  display: inline-block;
  float: none;
  width: 730px;
  margin-left: 0;
}
input.span5,
textarea.span5 {
  display: inline-block;
  float: none;
  width: 920px;
  margin-left: 0;
}
input.span6,
textarea.span6 {
  display: inline-block;
  float: none;
  width: 1110px;
  margin-left: 0;
}
input.span7,
textarea.span7 {
  display: inline-block;
  float: none;
  width: 1300px;
  margin-left: 0;
}
input.span8,
textarea.span8 {
  display: inline-block;
  float: none;
  width: 1490px;
  margin-left: 0;
}
input.span9,
textarea.span9 {
  display: inline-block;
  float: none;
  width: 1680px;
  margin-left: 0;
}
input.span10,
textarea.span10 {
  display: inline-block;
  float: none;
  width: 1870px;
  margin-left: 0;
}
input.span11,
textarea.span11 {
  display: inline-block;
  float: none;
  width: 2060px;
  margin-left: 0;
}
input.span12,
textarea.span12 {
  display: inline-block;
  float: none;
  width: 2250px;
  margin-left: 0;
}
input.span13,
textarea.span13 {
  display: inline-block;
  float: none;
  width: 2440px;
  margin-left: 0;
}
input.span14,
textarea.span14 {
  display: inline-block;
  float: none;
  width: 2630px;
  margin-left: 0;
}
input.span15,
textarea.span15 {
  display: inline-block;
  float: none;
  width: 2820px;
  margin-left: 0;
}
input.span16,
textarea.span16 {
  display: inline-block;
  float: none;
  width: 3010px;
  margin-left: 0;
}
input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  background-color: #f5f5f5;
  border-color: #ddd;
  cursor: not-allowed;
}
.actions {
  background: #f5f5f5;
  margin-top: 17px;
  margin-bottom: 17px;
  padding: 16px 20px 17px 150px;
  border-top: 1px solid #ddd;
}
.actions .secondary-action {
  float: right;
}
.actions .secondary-action a {
  line-height: 30px;
}
.actions .secondary-action a:hover {
  text-decoration: underline;
}
.help-inline,
.help-block {
  line-height: 17px;
  color: #9b9c9e;
}
.help-inline {
  padding-left: 5px;
  *position: relative;
  /* IE6-7 */
  *top: -5px;
  /* IE6-7 */
}
.help-block {
  display: block;
  max-width: 600px;
}
.inline-inputs {
  color: #000;
}
.inline-inputs span {
  padding: 0 2px 0 1px;
}
.inputs-list {
  margin: 0 0;
  width: 100%;
}
.inputs-list li {
  display: block;
  padding: 0;
  width: 100%;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  margin-left: 20px;
  line-height: 17px;
  text-align: left;
  white-space: normal;
}
.inputs-list label strong {
  color: #000;
}
.inputs-list label small {
  font-size: 12px;
  font-weight: normal;
}
.inputs-list .inputs-list {
  margin-left: 25px;
  margin-bottom: 10px;
  padding-top: 0;
}
.inputs-list li + li {
  padding-top: 2px;
}
.inputs-list input[type=radio],
.inputs-list input[type=checkbox] {
  margin-bottom: 0;
  margin-left: -20px;
  float: left;
}
.form-stacked fieldset {
  padding-top: 8px;
}
.form-stacked legend {
  padding-left: 0;
}
.form-stacked label {
  display: block;
  float: none;
  width: auto;
  font-weight: normal;
  text-align: left;
  padding-top: 0;
}
.form-stacked .clearfix {
  margin-bottom: 8.5px;
}
.form-stacked .clearfix div.input {
  margin-left: 0;
}
.form-stacked .inputs-list {
  margin-bottom: 0;
}
.form-stacked .inputs-list li {
  padding-top: 0;
}
.form-stacked .inputs-list li label {
  font-weight: normal;
  padding-top: 0;
}
.form-stacked div.clearfix.error {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  margin-top: 0;
  margin-left: -10px;
}
.form-stacked .actions {
  margin-left: -20px;
  padding-left: 20px;
}
footer label,
footer input {
  line-height: normal;
}
aside#sidebar {
  position: absolute;
  position: fixed;
  top: 150px;
  left: 70px;
  width: 140px;
  height: 480px;
  z-index: 99;
}
aside#sidebar form {
  margin: 0 0 10px 0;
}
aside#sidebar form input {
  width: 95px;
  padding: 0;
}
aside#sidebar form button {
  font-family: 'UniversLTW01-47LightCn', Verdana, sans-serif;
  border: 0;
  width: 40px;
  float: right;
  background: 0;
  color: #58595a;
  text-align: right;
  padding: 0;
}
aside#sidebar .back {
  height: 20px;
  margin-top: 50px;
  display: block;
  text-align: right;
}
aside#sidebar #cart_top {
  font-family: 'UniversLTW01-47LightCn', Verdana, sans-serif;
  color: #58595a;
  text-transform: lowercase;
}
aside#sidebar #cart_top span {
  display: block;
  float: right;
  text-align: right;
}
aside#sidebar .filter {
  list-style: none;
  margin: 70px 0 0 0;
  line-height: 21px;
}
aside#sidebar .filter li {
  margin: 10px 0 0 0;
}
aside#sidebar .filter li a {
  border-left: 1px solid #58595a;
  padding: 0 0 0 6px;
  color: #58595a;
}
aside#sidebar .filter li a:hover {
  color: #9b9c9e;
}
aside#sidebar .filter li ul {
  list-style: none;
  margin: 0 0 0 6px;
  line-height: 21px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: height 1s linear 0.5s,opacity 0.5s linear;
  -webkit-transition: height 1s linear 0.5s,opacity 0.5s linear;
  -moz-transition: height 1s linear 0.5s,opacity 0.5s linear;
}
aside#sidebar .filter li ul li {
  display: inline;
}
aside#sidebar .filter li ul li a {
  border: 0;
  padding: 0 3px 0 0;
  font-family: 'UniversLTW01-47LightCn', Verdana, sans-serif;
}
aside#sidebar .filter li ul li.open a {
  color: #9b9c9e;
}
aside#sidebar .filter li ul.color li a {
  float: left;
  display: block;
  width: 24px;
  height: 12px;
  margin: 2px 4px 2px 0;
  border: 1px solid transparent;
}
aside#sidebar .filter li ul.color li.open a {
  border: 1px solid #000;
}
aside#sidebar .filter li:hover ul,
aside#sidebar .filter .open ul {
  opacity: 1;
  height: auto;
}
a.A2 {
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  width: 30px;
  height: 20px;
  margin: 10px 0;
  background: url(/media/A2_filter.png) no-repeat;
}
.open > a.A2 {
  background-position: -35px 0;
  width: 30px;
}
header#top nav,
footer nav {
  width: 920px;
  height: 70px;
  margin: 80px 0 0 0;
  text-transform: lowercase;
  font-family: 'UniversLTW01-47LightCn', Verdana, sans-serif;
  font-size: 14px;
}
header#top nav ul,
footer nav ul {
  margin-left: -30px;
  /* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
  zoom: 1;
}
header#top nav ul:before,
footer nav ul:before,
header#top nav ul:after,
footer nav ul:after {
  content: "\0020";
  display: block;
  height: 0;
  visibility: hidden;
}
header#top nav ul:after,
footer nav ul:after {
  clear: both;
}
header#top nav ul li,
footer nav ul li {
  margin-left: 30px;
  float: left;
  width: 160px;
  overflow: visible;
}
header#top nav ul li h2:nth-child(n+2),
footer nav ul li h2:nth-child(n+2),
header#top nav ul li h3:nth-child(n+2),
footer nav ul li h3:nth-child(n+2) {
  margin-top: 60px;
}
header#top nav ul li a,
footer nav ul li a,
header#top nav ul li a:visited,
footer nav ul li a:visited,
header#top nav ul li a:active,
footer nav ul li a:active {
  border-left: 1px solid #9b9c9e;
  padding: 0 6px;
  color: #58595a;
}
header#top nav ul li a:hover,
footer nav ul li a:hover,
header#top nav ul li a:visited:hover,
footer nav ul li a:visited:hover,
header#top nav ul li a:active:hover,
footer nav ul li a:active:hover {
  color: #9b9c9e;
}
header#top nav ul li ul,
footer nav ul li ul {
  margin: 0 0 0 -1px;
  width: 240px;
}
header#top nav ul li li,
footer nav ul li li {
  width: auto;
  display: inline;
  margin: 0;
}
header#top nav ul li li a,
footer nav ul li li a {
  padding: 0 6px 0 4px;
}
header#top nav ul li li ul,
footer nav ul li li ul {
  /*width: 160px;*/
}
header#top nav ul li li ul li,
footer nav ul li li ul li {
  width: auto;
}
header#top nav ul li.span2,
footer nav ul li.span2 {
  width: 349px;
  border-left: 1px solid #9b9c9e;
}
header#top nav ul address a,
footer nav ul address a {
  padding: 0;
  border: 0;
}
header#top nav ul,
header#top nav ul ul,
header#top nav ul ul ul {
  list-style-type: none;
  list-style-image: none;
  list-style-position: outside;
  line-height: 1;
}
header#top nav ul a {
  display: block;
}
header#top nav ul li.sfhover > a,
header#top nav ul li.active > a {
  color: #9b9c9e;
}
header#top nav ul li {
  position: relative;
  /*added this because
        absolute must be in relation to a relatively 
        positioned block*/
  float: left;
}
header#top nav ul li ul {
  position: absolute;
  left: -999em;
  /*positions the dropdown horizontally 
        off the page using absolute positioning until hovered - 
        added a bottom:1em; to the :hover state below*/
  opacity: 0;
  transition: opacity 0.5s linear;
  -moz-transition: opacity 0.5s linear;
  -webkit-transition: opacity 0.5s linear;
  padding: 0 0 6px 0;
  margin: 0 0 -1px 0px;
  border-left: 1px solid #9b9c9e;
}
header#top nav ul li ul li ul,
header#top nav ul li:hover ul li ul,
header#top nav ul li.sfhover ul li ul {
  position: absolute;
  left: -999em;
  /*positions the dropdown horizontally 
        off the page using absolute positioning until hovered - 
        added a bottom:1em; to the :hover state below*/
  opacity: 0;
  padding: 0 0 6px 0;
  margin: 0;
}
header#top ul li ul li {
  padding: 0 0 3px 0;
  margin: 0 0 0 -1px;
}
header#top ul ul ul li {
  padding: 0 0 6px 0;
}
header#top nav ul li:hover ul,
header#top nav ul li.sfhover ul,
header#top nav ul ul li:hover ul,
header#top nav ul li:hover ul li:hover ul,
header#top nav ul ul li.sfhover ul,
header#top nav ul li.sfhover ul li.sfhover ul {
  left: auto;
  bottom: 1em;
  opacity: 1;
}
address {
  font-style: normal;
}
.pagination {
  width: 825px;
}
.pagination ul {
  list-style: none;
}
.pagination .prev {
  float: left;
}
.pagination .next {
  float: right;
}
.pagination a {
  color: #58595a;
}
.pagination .pos a {
  border-left: 1px solid #9b9c9e;
  padding: 0 6px;
}
.pagination .pos.off2 {
  margin-left: 410px;
}
li.next a,
li.prev a {
  font-family: 'UniversLTW01-57Condense 723821', Verdana, sans-serif;
  font-size: 21px;
  line-height: 17px;
}
.cart .art_name {
  margin: 113px 0 0 0;
}
.cart .fn {
  font-family: 'UniversLTW01-47LightCn', Verdana, sans-serif;
}
.cart span {
  font-family: 'UniversLTW01-57Condense 723821', Verdana, sans-serif;
}
.cart .product h3 {
  display: inline;
  margin: 0 3px 0 0;
  font-family: 'UniversLTW01-47LightCn', Verdana, sans-serif;
}
.cart .product {
  margin-bottom: 30px;
}
.cart .product .bt {
  height: 213px;
  position: relative;
}
.cart .bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}
.cart a.remove {
  border-left: 1px solid #9B9C9E;
  padding: 0 6px;
  color: #58595A;
  font-family: 'UniversLTW01-47LightCn', Verdana, sans-serif;
}
.cart span.pull-right,
.cart_grand span.pull-right {
  width: 60px;
  text-align: right;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
.cart h3.pull-left,
.cart_grand h2.pull-left {
  display: block;
  width: 100px;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}
.cart_grand {
  border-top: 1px solid #9B9C9E;
  margin-top: 15px;
  padding-top: 45px;
  margin-bottom: 60px;
}
.cart_grand h2 {
  display: inline;
  margin: 0 3px 0 0;
  font-family: 'UniversLTW01-47LightCn', Verdana, sans-serif;
}
.cart_grand span {
  font-family: 'UniversLTW01-57Condense 723821', Verdana, sans-serif;
}
form.cart label {
  display: none;
}
.conf_grand {
  border-top: 1px solid #58595a;
  padding-top: 30px;
}
.conf_grand .cart_grand {
  margin-left: 30px;
  float: left;
  width: 160px;
  border: 0;
  margin-top: 0;
  padding-top: 0;
}
.conf_grand .cart_grand h2:nth-child(n+2),
.conf_grand .cart_grand h3:nth-child(n+2) {
  margin-top: 60px;
}
.conf_grand .cart_grand h2,
.conf_grand .cart_grand h3,
.conf_grand .cart_grand h2:nth-child(n+2),
.conf_grand .cart_grand h3:nth-child(n+2) {
  margin-top: 0;
}
a.change {
  border-left: 1px solid #9B9C9E;
  padding: 0 6px;
  margin-top: 3px;
  font-family: 'UniversLTW01-47LightCn', Verdana, sans-serif;
}
.confirm h3 {
  margin: 30px 0 0 0;
}
.confirm h2.terms {
  margin-top: 60px;
}
form#order_form label {
  border-bottom: 1px solid #58595a;
}
form#order_form .no-border label,
form#order_form .inputs-list label {
  border: 0;
}
form#order_form textarea {
  border-top: 1px solid #58595a;
}
form#order_form .mtop {
  margin-top: 30px;
}
form#order_form button {
  margin-top: 30px;
}
.news {
  margin-left: -30px;
  /* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
  zoom: 1;
}
.news .item {
  margin-left: -30px;
  /* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
  zoom: 1;
  margin-left: 30px;
  float: left;
  width: 730px;
  margin-bottom: 42px;
}
.news .item:before,
.news .item:after {
  content: "\0020";
  display: block;
  height: 0;
  visibility: hidden;
}
.news .item:after {
  clear: both;
}
.news .item img {
  margin-bottom: 12px;
}
.news:before,
.news:after {
  content: "\0020";
  display: block;
  height: 0;
  visibility: hidden;
}
.news:after {
  clear: both;
}
.news h2 {
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 30px;
}
.news h2 small {
  font-size: 14px;
  display: block;
}
.products {
  /* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
  margin-left: -30px;
  /* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
  zoom: 1;
}
.products:before,
.products:after {
  content: "\0020";
  display: block;
  height: 0;
  visibility: hidden;
}
.products:after {
  clear: both;
}
.products:before,
.products:after {
  content: "\0020";
  display: block;
  height: 0;
  visibility: hidden;
}
.products:after {
  clear: both;
}
.products article {
  position: relative;
  width: 255px;
  height: 340px;
  margin: 0 0 30px 30px;
}
.products article a .desc {
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  position: absolute;
  top: -999em;
  left: -999em;
  width: 225px;
  height: 93px;
  color: #fff;
  padding: 247px 0 0 30px;
}
.products article a:hover .desc {
  top: 0;
  left: 0;
  text-indent: 0;
  background: #ccc;
  background: rgba(0, 0, 0, 0.4);
}
.products article a:hover .dbl {
  padding-top: 20px;
}
.products article a:hover .A2 {
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  width: 30px;
  height: 20px;
  padding: 0;
  margin-bottom: 5px;
  background: url(/media/A2_Produkt.png) no-repeat;
}
.products article span {
  font-size: 14px;
  line-height: 17px;
}
.products article .brand,
.products article .price {
  font-family: 'UniversLTW01-57Condense 723821', Verdana, sans-serif;
}
.products article .fn,
.products article .material {
  font-family: 'UniversLTW01-47LightCn', Verdana, sans-serif;
}
.products .line {
  position: absolute;
  z-index: 3;
}
article.hproduct aside.gallery {
  width: 540px;
  float: left;
}
article.hproduct aside.gallery ul {
  /* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
  zoom: 1;
  margin: 30px 0;
  list-style: none;
  text-align: center;
}
article.hproduct aside.gallery ul:before,
article.hproduct aside.gallery ul:after {
  content: "\0020";
  display: block;
  height: 0;
  visibility: hidden;
}
article.hproduct aside.gallery ul:after {
  clear: both;
}
article.hproduct aside.gallery ul li,
article.hproduct aside.gallery ul a {
  display: inline;
  font-family: 'UniversLTW01-57Condense 723821', Verdana, sans-serif;
  color: #58595a;
}
article.hproduct .details {
  margin-left: 30px;
  float: left;
  width: 350px;
}
article.hproduct .details h2:nth-child(n+2),
article.hproduct .details h3:nth-child(n+2) {
  margin-top: 60px;
}
article.hproduct .details h1,
article.hproduct .details .material {
  height: 70px;
  height: 40px;
  font-size: 18px;
  line-height: 19px;
}
article.hproduct .details .material {
  font-size: 14px;
  line-height: 17px;
}
article.hproduct .details .fn {
  font-family: 'UniversLTW01-47LightCn', Verdana, sans-serif;
}
article.hproduct .details .description {
  height: 255px;
}
article.hproduct .details .form {
  height: 85px;
  /* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
  zoom: 1;
}
article.hproduct .details .form:before,
article.hproduct .details .form:after {
  content: "\0020";
  display: block;
  height: 0;
  visibility: hidden;
}
article.hproduct .details .form:after {
  clear: both;
}
article.hproduct .details label {
  display: none;
}
article.hproduct .details .price {
  font-size: 18px;
  line-height: 19px;
  vertical-align: middle;
  height: 30px;
  padding: 5px 0;
}
article.hproduct .details span.A2 {
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  width: 30px;
  height: 20px;
  margin: 0 0 10px 0;
  background: url(/media/A2_black.png) no-repeat;
}
article.hproduct .details small {
  font-size: 14px;
}
article.hproduct .details div.more {
  margin: 60px 0 0 0;
}
article.hproduct .madein {
  margin-bottom: 17px;
}
article.hproduct select {
  width: 138px;
}
article.hproduct button {
  width: 138px;
  height: 30px;
}
a.remind {
  color: #ab78c2;
  background: #efefef;
  padding: 2px 6px;
}
li.next {
  float: right;
}
li.prev {
  float: left;
}
div.sindex h2 {
  font-family: 'UniversLTW01-57Condense 723821', Verdana, sans-serif;
  font-size: 18px;
  line-height: 19px;
  height: 60px;
  margin: 0;
}
div.sindex h3 {
  font-family: 'UniversLTW01-57Condense 723821', Verdana, sans-serif;
  font-size: 14px;
  line-height: 17px;
  height: 45px;
  margin: 0;
}
div.sindex .span1 {
  width: 160px;
  height: 248px;
}
div.sindex .row {
  margin-bottom: 60px;
}
div.sindex img {
  margin: 0 0 1px 0;
}
div.history article {
  height: 169px;
}
div.history article a .desc {
  padding: 129px 0 0 30px;
  height: 40px;
}
div.history article a:hover .desc {
  height: 40px;
}
div.history article h2 {
  margin-left: 85px;
}
div.history article .det {
  margin-top: -17px;
}
div.history article figure {
  margin-bottom: 30px;
}
div.collections {
  height: 730px;
  overflow: hidden;
  margin-bottom: 30px;
}
div.collections figure {
  margin-bottom: 30px;
}
.coldesc {
  margin: -17px 0 0 85px;
  width: 729px;
}
.coldesc .off1 {
  margin-left: 220px;
}
#lbOverlay {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  cursor: pointer;
}
#lbCenter,
#lbBottomContainer {
  position: absolute;
  z-index: 9998;
  overflow: hidden;
  background-color: transparent;
}
.lbLoading {
  background: transparent url(img/ajax-loader.gif) no-repeat center;
}
#lbImage {
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  margin-bottom: 10px;
}
#lbPrevLink,
#lbNextLink,
#lbBottom,
#lbCaption,
#lbNumber,
#lbCaption {
  display: none;
}
#lbCloseLink {
  position: absolute;
  z-index: 9999;
  width: 100%;
  height: 100%;
}
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
#cboxOverlay {
  background: #fff;
}
#cboxContent {
  background: #fff;
  overflow: hidden;
}
.cboxIframe {
  background: #fff;
}
#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}
#cboxLoadedContent {
  margin-bottom: 20px;
}
#cboxTitle {
  position: absolute;
  bottom: 0px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #999;
}
#cboxCurrent {
  position: absolute;
  bottom: 0px;
  left: 100px;
  color: #999;
}
#cboxSlideshow {
  position: absolute;
  bottom: 0px;
  right: 42px;
  color: #444;
}
#cboxPrevious {
  position: absolute;
  bottom: 0px;
  left: 0;
  color: #444;
}
#cboxNext {
  position: absolute;
  bottom: 0px;
  left: 63px;
  color: #444;
}
#cboxLoadingOverlay {
  background: #ffffff url(images/loading.gif) no-repeat 5px 5px;
}
#cboxClose {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  color: #444;
}
/* Primary Styles
    Author: clemens krack
*/
.green {
  color: #2c7850;
}
#container {
  margin: 0 0 0 280px;
}
#content {
  margin: 0 0 60px 0;
}
.home #content {
  margin: 0 0 60px -115px;
}
.home aside#sidebar {
  height: 35px;
  /*#cart_top, */
}
.home aside#sidebar ul,
.home aside#sidebar form {
  display: none;
}
.index #footer {
  display: none;
}
.popup #container {
  margin: 0 0 50px 10px;
}
.popup #content {
  margin: 10px 0 0 10px;
  padding: 0;
}
.popup a#logo {
  left: 5px;
  bottom: 5px;
}
.popup a[rel=popup] {
  display: none;
}
header#top {
  position: fixed;
  z-index: 600;
}
#content {
  padding-top: 150px;
  z-index: 2;
  max-width: 1395px;
  min-height: 400px;
  color: #000;
}
footer {
  height: 100px;
}
footer address {
  padding: 0 6px;
}
a#logo {
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  background: url('/media/airbag_web_logo.gif') no-repeat;
  width: 140px;
  height: 30px;
  display: block;
  position: absolute;
  position: fixed;
  z-index: 100;
  left: 70px;
}
.stores address a {
  color: #58595a;
}
h1.bread {
  display: none;
  visibility: hidden;
}
.span2 h2:nth-child(n+2),
.span1 h2:nth-child(n+2),
.cms h2:nth-child(n+2),
.span2 h3:nth-child(n+2),
.span1 h3:nth-child(n+2),
.cms h3:nth-child(n+2) {
  margin-top: 60px;
}
.stores address {
  margin-bottom: 17px;
}
.stores h3,
.stores h3:nth-child(1) {
  color: #9b9c9e;
  font-family: 'UniversLTW01-47LightCn', Verdana, sans-serif;
  margin-top: 30px;
  margin-bottom: 17px;
}
/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override.
 */
@media all and (min-width: 1390px) {
  .pagination {
    width: 1110px;
  }
  body.home .pagination {
    width: 1100px;
  }
  .coldesc {
    width: 919px;
  }
  .coldesc .off1 {
    margin-left: 410px;
  }
}
@media all and (max-width: 1389px) {
  .index #news_cyclist img {
    max-width: 900px;
    max-height: 450px;
    height: auto;
  }
}
@media all and (max-width: 1179px) {
  .collections img,
  .history figure img {
    max-width: 825px;
    max-height: 552px;
    height: auto;
  }
  div.collections {
    height: 555px;
  }
  aside#sidebar,
  a#logo {
    left: 50px;
  }
  #container {
    margin-left: 260px;
  }
}
@media all and (max-width: 1079px) {
  .index #news_cyclist img {
    max-width: 700px;
    max-height: 350px;
    height: auto;
  }
  aside#sidebar,
  a#logo {
    left: 25px;
  }
  #container {
    margin-left: 245px;
  }
}
/*
@media all and (min-width: 1675px) {
  .pagination {
    width: 1395px;
  }
}
*/
@media all and (max-height: 1030px) {
  a#logo {
    bottom: 270px;
  }
  footer {
    height: 300px;
  }
}
@media all and (max-height: 830px) {
  a#logo {
    bottom: 170px;
  }
  footer {
    height: 200px;
  }
}
@media all and (max-height: 630px) {
  a#logo {
    bottom: 70px;
  }
  footer {
    height: 100px;
  }
}
@media all and (min-height: 1030px) {
  a#logo {
    top: 600px;
  }
  footer {
    height: 100px;
  }
}
@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, iPhone Safari, Android Chrome)
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
/*@media screen and (max-device-width: 480px) {*/
@media all and (max-width: 480px) {
  a#logo {
    bottom: 20%;
    left: 5px;
    position: absolute;
  }
  #container {
    margin: 0 auto;
    padding: 10px;
    width: 300px;
  }
  header#top {
    position: absolute;
  }
  .home aside#sidebar form,
  .home aside#sidebar #cart_top {
    display: block;
  }
  aside#sidebar {
    position: absolute;
    top: 35px;
    left: auto;
    width: 300px;
    height: 20px;
  }
  aside#sidebar #cart_top {
    width: 145px;
    float: right;
  }
  aside#sidebar #cart_top span {
    float: none;
    display: inline;
  }
  aside#sidebar form {
    width: 135px;
    float: left;
  }
  aside#sidebar form input {
    width: 90px;
  }
  aside#sidebar img,
  aside#sidebar ul.filter {
    display: none;
  }
  header#top,
  footer,
  footer nav,
  header#top nav {
    height: 15px;
    width: 300px;
  }
  header#top nav {
    margin: 0;
  }
  header#top nav ul,
  footer nav ul {
    margin-left: -10px;
  }
  header#top nav ul li,
  footer nav ul li {
    margin: 0 0 0 10px;
    width: 50px;
    height: 15px;
    overflow: hidden;
  }
  header#top nav li:nth-child(3) {
    width: 55px;
  }
  header#top nav li:nth-child(2) {
    width: 45px;
  }
  #content,
  .home #content {
    padding: 60px 0 0 0;
    margin: 0;
    max-width: 300px;
  }
  .pagination {
    width: 300px;
  }
  .span1,
  .span2,
  .span3,
  .span4,
  img {
    max-width: 300px;
  }
  #news_cyclist img,
  .collections img,
  .history figure img {
    max-width: 300px;
    height: auto;
  }
  article.hproduct aside.gallery,
  article.hproduct aside img {
    width: 300px;
  }
  article.hproduct aside.gallery ul {
    display: none;
    visibility: hidden;
  }
  article.hproduct .details {
    margin-left: 0px;
    width: 300px;
  }
  article.hproduct .details .description {
    height: auto;
  }
  .products article a .desc {
    top: 0;
    left: 0;
    text-indent: 0;
    background: #ccc;
    background: rgba(0, 0, 0, 0.4);
  }
  footer nav ul li.span2 {
    width: 109px;
    height: 30px;
    margin: 0;
    border-left: 1px solid #9B9C9E;
  }
  article form button.span1 {
    float: right;
  }
  article div.price.span1 {
    width: 60px;
  }
  article small {
    font-size: 60%;
  }
  div.collections {
    height: 200px;
    overflow: hidden;
  }
  /* 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: #444 !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after {
    content: " (" attr(href) ")";
  }
  abbr:after {
    content: " (" attr(title) ")";
  }
  .ir a:after {
    content: "";
  }
  /* Don't show links for images */
  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;
  }
}
