/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* GE Inspira "Pitch" */
@font-face {
  /*    font-family: 'geinspirapitch-n4';*/
  font-family: 'geinspirapitch';
  src: url('../fonts/geinspirapitch-webfont.eot');
  src: url('../fonts/geinspirapitch-webfont.eot?#iefix') format("embedded-opentype"), url('../fonts/geinspirapitch-webfont.woff') format("woff"), url('../fonts/geinspirapitch-webfont.ttf') format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  /*    font-family: 'geinspirapitch-i4';*/
  font-family: 'geinspirapitch';
  src: url('../fonts/geinspirapitchitalic-webfont.eot');
  src: url('../fonts/geinspirapitchitalic-webfont.eot?#iefix') format("embedded-opentype"), url('../fonts/geinspirapitchitalic-webfont.woff') format("woff"), url('../fonts/geinspirapitchitalic-webfont.ttf') format("truetype");
  font-style: italic;
  font-weight: normal;
}

@font-face {
  /*    font-family: 'geinspirapitch-n7';*/
  font-family: 'geinspirapitch';
  src: url('../fonts/geinspirapitchbold-webfont.eot');
  src: url('../fonts/geinspirapitchbold-webfont.eot?#iefix') format("embedded-opentype"), url('../fonts/geinspirapitchbold-webfont.woff') format("woff"), url('../fonts/geinspirapitchbold-webfont.ttf') format("truetype");
  font-style: normal;
  font-weight: bold;
}

/* GE Inspira */
@font-face {
  /*    font-family: 'geinspira-n4';*/
  font-family: 'geinspira';
  src: url('../fonts/geinsprg-webfont.eot');
  src: url('../fonts/geinsprg-webfont.eot?#iefix') format("embedded-opentype"), url('../fonts/geinsprg-webfont.woff') format("woff"), url('../fonts/geinsprg-webfont.ttf') format("truetype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  /*    font-family: 'geinspira-i4';*/
  font-family: 'geinspira';
  src: url('../fonts/geinspit-webfont.eot');
  src: url('../fonts/geinspit-webfont.eot?#iefix') format("embedded-opentype"), url('../fonts/geinspit-webfont.woff') format("woff"), url('../fonts/geinspit-webfont.ttf') format("truetype");
  font-style: italic;
  font-weight: normal;
}

@font-face {
  /*    font-family: 'geinspira-n7';*/
  font-family: 'geinspira';
  src: url('../fonts/geinspbd-webfont.eot');
  src: url('../fonts/geinspbd-webfont.eot?#iefix') format("embedded-opentype"), url('../fonts/geinspbd-webfont.woff') format("woff"), url('../fonts/geinspbd-webfont.ttf') format("truetype");
  font-style: normal;
  font-weight: bold;
}

@font-face {
  /*    font-family: 'geinspira-i7';*/
  font-family: 'geinspira';
  src: url('../fonts/geinspbi-webfont.eot');
  src: url('../fonts/geinspbi-webfont.eot?#iefix') format("embedded-opentype"), url('../fonts/geinspbi-webfont.woff') format("woff"), url('../fonts/geinspbi-webfont.ttf') format("truetype");
  font-style: italic;
  font-weight: bold;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

audio[controls], canvas, video {
  display: inline-block;
  *display: inline-block;
  *display: inline;
  zoom: 1;
}

command, datalist, keygen, mark, meter, progress, rp, rt, ruby, time, wbr {
  display: inline;
}

a:focus {
  outline: thin dotted;
}

a img {
  border: 0;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

b, strong, dt, th {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

body {
  font: normal 100% "geinspira", Arial, sans-serif;
}

cite, dfn, em, i {
  font-style: italic;
}

del {
  text-decoration: line-through;
}

h1, .h1 {
  font-size: 2.33333em;
}

h2, .h2 {
  font-size: 2em;
}

h3, .h3 {
  font-size: 1.75em;
}

h4, .h4 {
  font-size: 1.5em;
}

h5, .h5 {
  font-size: 1.33333em;
}

h6, .h6 {
  font-size: 1.16667em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
}

html {
  cursor: default;
  overflow-y: scroll;
  -webkit-tap-highlight-color: transparent;
}

img {
  -ms-interpolation-mode: bicubic;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

pre, code, kbd, samp {
  font-family: monospace, sans-serif;
  font-family: 'Courier New', monospace, sans-serif;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

small {
  font-size: 1em;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

th, td {
  padding: 0;
  text-align: left;
  vertical-align: middle;
}

p, dl, ol, ul {
  margin: 0 0 1em;
}

ol, ul {
  padding: 0 0 0 40px;
}

ol {
  list-style-type: decimal;
}

ul {
  list-style-type: disc;
}

nav ol, nav ul, nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

dd, dt, li {
  margin: 0 0 .5em;
}

dd {
  margin: 0 0 .5em 40px;
}

hr {
  display: block;
  padding: 0;
  height: 1px;
  border: 0;
  border-top: 1px solid #ddd;
  margin: 1em 0;
}

.hr {
  border-top: 1px solid #ddd;
  overflow: hidden;
}

div.hr {
  margin: 1em 0;
}

p.hr {
  padding-top: 1em;
}

p.hr-bottom {
  border-top: none;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1em;
}

.sep {
  font-weight: normal;
  margin: 0 .25em;
}

div.success, p.success, span.success {
  font-weight: bold;
  color: #090;
}

div.error, div.required, p.error, p.required, span.error, span.required {
  font-weight: bold;
  color: #c00;
}

label {
  cursor: pointer;
}

legend {
  *margin-left: -7px;
}

button, input, select, textarea {
  vertical-align: baseline;
  *vertical-align: middle;
}

button, input {
  line-height: normal;
  *overflow: visible;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

select[multiple], textarea {
  overflow: auto;
  vertical-align: top;
}

fieldset.super > div, fieldset.super > fieldset > div {
  margin: 1em 0;
}

.large {
  font-size: 1.5em;
}

.small {
  font-size: 10px;
}

.nowrap {
  white-space: nowrap;
}

.block {
  display: block;
}

.textcenter {
  text-align: center;
}

.textright {
  text-align: right;
}

.textleft {
  text-align: left;
}

.right, .alignright {
  display: inline;
  margin: 0 0 1em 1em;
  float: right;
}

.left, .alignleft {
  display: inline;
  margin: 0 1em 1em 0;
  float: left;
}

.center, .aligncenter {
  display: block;
  margin: 0 auto;
  clear: both;
}

.col {
  float: left;
}

.clear-right {
  clear: right;
}

.clear-left {
  clear: left;
}

.clearfix:before, .clearfix:after, .group:before, .group:after, .row:before, .row:after {
  content: "";
  display: table;
}

.clear, .clearfix:after, .group:after, .row:after {
  clear: both;
}

.clearfix, .group, .row {
  *zoom: 1;
}

.reduced-top {
  margin-top: 0;
}

.reduced {
  padding: 0;
  border: none;
  margin: 0;
  list-style: none;
}

.ir, .hid {
  display: block;
  background-repeat: no-repeat;
  direction: ltr;
  text-align: left;
  text-indent: -999em;
  overflow: hidden;
}

.hidden, .hide, .print, .hr hr {
  display: none;
  visibility: hidden;
}

.assistive-text, .skip-link {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}

a.assistive-text:active, a.assistive-text:focus {
  position: absolute;
  top: 0;
  left: 7.6%;
  background: #eee;
  border-bottom: 1px solid #ddd;
  color: #1982d1;
  font-size: 12px;
  text-decoration: underline;
  clip: auto !important;
}

.lte8 .relative {
  position: relative;
}

.lte8 .static {
  position: static;
}

.ie7 .inline {
  display: inline-block;
  *display: inline-block;
  *display: inline;
  zoom: 1;
}

@media only screen and (min-width: 480px) and (min-width: 768px) {
  html {
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
  }
}
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  body {
    font-size: 90%;
  }

  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  a[href*="images/"]:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
}

  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  h2, h3 {
    page-break-after: avoid;
  }

  .no-print {
    display: none;
  }

  .print {
    display: block !important;
    visibility: visible !important;
  }

  .select-products,
  .btn-print {
    display: none !important;
  }

  .results .scroll {
    height: auto !important;
    overflow: auto !important;
  }

  tbody tr td {
    border-bottom: 1px solid #c2dde6;
  }

  .footnote, .legal {
    font-size: 9px;
  }
}
.span1 {
  width: 5.801104972%;
}

/* 4.85%;  } */
.span2 {
  width: 14.364640883%;
}

/* 13.45%; } */
.span3 {
  width: 22.928176794%;
}

/* 22.05%; } */
.span4 {
  width: 31.491712705%;
}

/* 30.75%; } */
.span5 {
  width: 40.055248616%;
}

/* 39.45%; } */
.span6 {
  width: 48.618784527%;
}

/* 48%;   }  */
.span7 {
  width: 57.182320438000005%;
}

/* 56.75%; } */
.span8 {
  width: 65.74585634900001%;
}

/* 65.4%;  } */
.span9 {
  width: 74.30939226%;
}

/* 74.05%; } */
.span10 {
  width: 82.87292817100001%;
}

/* 82.7%;  } */
.span11 {
  width: 91.436464082%;
}

/* 91.35%; } */
.span12 {
  width: 99.999999993%;
}

/* 100%;   } */
.span1, .span2, .span3, .span4, .span5, .span6, .span7, .span8, .span9, .span10, .span11, .span12 {
  position: relative;
  float: left;
  margin-left: 2.762430939%;
}

.first {
  margin-left: 0;
}

.last {
  float: right;
}

.row {
  padding: 1em 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #239ee0;
  line-height: 1.2;
  font-family: "geinspira", Arial, sans-serif;
  font-weight: normal;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  color: #666666;
  font-size: 0.75em;
  margin-left: 0.33em;
  font-weight: 400;
}

h1 {
  font-size: 32px;
}

h2, .h2 {
  font-size: 16px;
  color: #333333;
  font-weight: 700;
  line-height: 0;
  padding-bottom: 1em;
}
h2 small, .h2 small {
  color: #666666;
  font-size: 0.75em;
  margin-left: 0.33em;
  font-weight: 400;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 16px;
  margin: 0 0 .4em;
}

h6 {
  font-size: 14px;
}

p {
  line-height: 1.4;
}

em, strong {
  color: inherit;
  font-weight: bold;
}

a {
  color: #00afe1;
}

a:hover {
  color: #02c0f6;
}

.footnote, .legal {
  font-size: 10px;
  color: #333;
}

@media print {
  .footnote, .legal {
    font-size: 9px;
    color: #666;
  }

  .legal h5 {
    font-size: 14px;
    color: #666;
  }
}
.code {
  font-family: monospace;
  font-size: 1.2em;
  font-weight: bold;
}

nav ul {
  list-style: none li;
  list-style-float: left;
}

nav.header {
  display: inline-block ul;
}

nav.main {
  clear: both;
}

.btn {
  text-decoration: none;
}
.btn .icon {
  display: inline-block;
  height: 16px;
  width: 16px;
  margin-right: 4px;
  position: relative;
  top: 2px;
}

.ir {
  text-indent: -9999px;
  display: block;
}

.ie7 .ir {
  text-indent: 0px;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.sprite {
  background-image: img-url("sprite-main.png");
  background-position: 0px 0px;
}

.logo {
  margin-top: 50px;
  background-image: url("/img/sprite-main.png");
  height: 25px;
  width: 25px;
  background-position: 0, 0;
}

.org {
  margin-bottom: 10px;
  background-image: url("/img/sprite-main.png");
  height: 25px;
  width: 25px;
  background-position: 0, 0;
}

.icon-facebook {
  background-image: url("/img/sprite-main.png");
  height: 25px;
  width: 25px;
  background-position: 0, 0;
}

.icon-twitter {
  background-image: url("/img/sprite-main.png");
  height: 25px;
  width: 25px;
  background-position: 0, 0;
}

.icon-linkedIn {
  background-image: url("/img/sprite-main.png");
  height: 25px;
  width: 25px;
  background-position: 0, 0;
}

.icon-youtube {
  background-image: url("/img/sprite-main.png");
  height: 25px;
  width: 25px;
  background-position: 0, 0;
}

.icon-pinterest {
  background-image: url("/img/sprite-main.png");
  height: 25px;
  width: 25px;
  background-position: 0, 0;
}

.icon-yelp {
  background-image: url("/img/sprite-main.png");
  height: 25px;
  width: 25px;
  background-position: 0, 0;
}

.icon-email {
  background-image: url("/img/sprite-main.png");
  height: 25px;
  width: 25px;
  background-position: 0, 0;
}

.icon-print {
  background-image: url("/img/sprite-main.png");
  height: 25px;
  width: 25px;
  background-position: 0, 0;
}

fieldset legend {
  color: #000;
}
fieldset label {
  display: block;
  color: #000;
}

textarea {
  width: 98%;
}

input:focus {
  inset-border: 0;
}

input[type='checkbox'] ~ label {
  display: inline-block;
}

select {
  width: 100%;
  height: 225px;
  border: 1px solid #efefef;
  font-size: .875em;
  padding: .5em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  background-color: white;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f2f2f2));
  background-image: -webkit-linear-gradient(top, white, #f2f2f2);
  background-image: -moz-linear-gradient(top, white, #f2f2f2);
  background-image: -ms-linear-gradient(top, white, #f2f2f2);
  background-image: -o-linear-gradient(top, white, #f2f2f2);
  background-image: linear-gradient(top, #ffffff, #f2f2f2);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=white, EndColorStr=#f2f2f2);
}

select + .selector-modifier-tray {
  text-align: left;
  padding-top: 8px;
}
select + .selector-modifier-tray input[type='checkbox'] {
  margin-right: 6px;
  margin-top: 4px;
  float: left;
}
select + .selector-modifier-tray span.toggle-common-disinfectants-label {
  float: left;
  width: 90%;
}

form.form-search {
  width: 300px;
  padding-right: 6px;
  margin: 4px 0 0 0;
}
form.form-search label {
  display: none;
}

table {
  width: 100%;
}

table caption,
table th,
table td {
  padding: .5em 1em;
}

table caption {
  font-weight: bold;
  border-bottom: none;
}

table th {
  font-weight: bold;
  font-size: .875em;
}

table td {
  background-color: white;
  font-size: .875em;
}

tbody tr:nth-child(odd) td {
  background-color: #c8eaf9;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#c8eaf9), to(#c2e4f4));
  background-image: -webkit-linear-gradient(top, #c8eaf9, #c2e4f4);
  background-image: -moz-linear-gradient(top, #c8eaf9, #c2e4f4);
  background-image: -ms-linear-gradient(top, #c8eaf9, #c2e4f4);
  background-image: -o-linear-gradient(top, #c8eaf9, #c2e4f4);
  background-image: linear-gradient(top, #c8eaf9, #c2e4f4);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#c8eaf9, EndColorStr=#c2e4f4);
  border-bottom: 1px solid #c2dde6;
}

.ie8 table td {
  border: 1px solid #efefef;
}

thead {
  position: absolute;
  left: -9999px;
}

ul {
  list-style-type: disc;
  list-style-position: inside;
}

ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding: 0;
}
ol li {
  margin-left: 1.3em;
  margin-bottom: 0;
}

html, body {
  color: #333;
  text-align: center;
}

#container {
  position: relative;
  max-width: 954px;
  width: 98%;
  margin: 0 auto;
  padding: 0 1%;
  text-align: left;
}

header {
  width: 100%;
}

section {
  width: 100%;
}

.select-products {
  position: relative;
}

.instructions {
  padding: 0;
  margin: 0;
}
.instructions li {
  position: relative;
  margin-bottom: 2em;
  font-weight: 700;
}
.instructions li + li {
  margin-bottom: .85em;
}
.instructions span {
  position: absolute;
  left: -21px;
  top: 25px;
  font-weight: 400;
}

.help {
  position: relative;
  font-size: 0.75em;
}
.help .instructions li {
  margin-bottom: 1em;
}
.help .instructions span {
  left: 0px;
  top: 49px;
}
.help .help-trigger {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 0;
  top: -22px;
  background: url("../images/sprite_transducer_app.png") no-repeat;
}
.help .help-trigger:hover {
  background-position: 0 -16px;
}
.help .help-content {
  position: absolute;
  right: 0;
  min-height: 225px;
  padding: .75em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0, 3px, 6px, rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0, 3px, 6px, rgba(0, 0, 0, 0.2);
  box-shadow: 0, 3px, 6px, rgba(0, 0, 0, 0.2);
  background-color: #c8eaf9;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#c8eaf9), to(#c2e4f4));
  background-image: -webkit-linear-gradient(top, #c8eaf9, #c2e4f4);
  background-image: -moz-linear-gradient(top, #c8eaf9, #c2e4f4);
  background-image: -ms-linear-gradient(top, #c8eaf9, #c2e4f4);
  background-image: -o-linear-gradient(top, #c8eaf9, #c2e4f4);
  background-image: linear-gradient(top, #c8eaf9, #c2e4f4);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=#c8eaf9, EndColorStr=#c2e4f4);
  border-bottom: 1px solid #c2dde6;
  display: none;
  z-index: 1000;
}

.help-inline {
  border-bottom: 1px dotted;
  cursor: pointer;
}

.results {
  display: none;
  position: relative;
}
.results header {
  border-bottom: 3px solid #e2e2e2;
  margin-bottom: 0.65em;
}
.results header p {
  margin-bottom: 0.5em;
}
.results header .btn {
  font-size: .9em;
  float: right;
  margin: 6px 0 0 12px;
}
.results header .description {
  color: #333333;
  font-size: 21px;
  margin-left: 4px;
}
.results .scroll {
  width: 100%;
  height: 494px;
  overflow-y: scroll;
  clear: both;
  border: 1px solid #efefef;
  background-color: white;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#f2f2f2));
  background-image: -webkit-linear-gradient(top, white, #f2f2f2);
  background-image: -moz-linear-gradient(top, white, #f2f2f2);
  background-image: -ms-linear-gradient(top, white, #f2f2f2);
  background-image: -o-linear-gradient(top, white, #f2f2f2);
  background-image: linear-gradient(top, #ffffff, #f2f2f2);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=white, EndColorStr=#f2f2f2);
}
.results .scroll tr:last-child td {
  border-bottom: 1px solid #efefef;
}

.legal p, .legal li {
  font-size: 1.3em;
}

.table-head li {
  float: left;
  font-weight: bold;
  font-size: 1em;
  padding: 0 .3em;
  cursor: pointer;
}
.table-head li.col-1 {
  width: 15%;
}
.table-head li.col-2 {
  width: 30%;
}
.table-head li.col-3 {
  width: 30%;
}
.table-head li.col-4 {
  width: 25%;
}
.table-head span {
  display: inline-block;
  width: 12px;
  height: 14px;
  background: url("../images/sprite_transducer_app.png") no-repeat 0 -189px;
}
.table-head li.asc span {
  background-position: 0 -203px;
}
.table-head li.dsc span {
  background-position: 0 -217px;
}

.col-transducer {
  width: 15%;
}

.col-disinfectant {
  width: 30%;
}

.col-manufacturer {
  width: 30%;
}

.col-method {
  width: 25%;
}

.icon {
  background-image: url("../images/sprite_transducer_app.png");
  background-position: 0px 0px;
  width: 16px;
  height: 16px;
  top: 3px !important;
}
.icon.icon-print {
  background-position: 0 -36px;
}
.btn:hover .icon.icon-print {
  background-position: 0 -52px;
}
.icon.icon-reset {
  background-position: 0 -112px;
}
.btn:hover .icon.icon-reset {
  background-position: 0 -128px;
}

label.h2 {
  display: block;
}

@media print {
  .print-logo {
    display: block !important;
    visibility: visible !important;
    margin: 1.4em 0 2.4em;
  }

  header, footer, nav {
    display: none;
  }

  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  a, a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
}

  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  h2, h3 {
    page-break-after: avoid;
  }

  h1 {
    font-size: 20px;
  }
}

 @media (max-width:500px){
.span6{

width:95%;
padding-top:20px;
margin-left:0 !important;
}


}