/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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;
}/**
* Forms
*/
.formTable 
{
    table-layout: fixed;
    margin-bottom: 15px;
    margin-left: 20px;
    min-width: 300px;
}
.formTable .inputBlock
{
    width: 650px;
    height: 35px;
    display: block;
    margin-top: 3px;
}
.formTable .inputBlock.required
{

}
.formTable .inputBlock .description
{
    width: 230px;
    text-align: right;
    color: #555555;
    line-height: 35px;
    display: inline;
    display: inline-block;
    font-style: italic;
}
.formTable .inputBlock .icoRequired
{
    margin-right: 5px;
    vertical-align: baseline;
    margin-bottom: 5px;
}
.formTable .inputNote
{
    color: #969696;
    display: inline;
}
.formTable .imageHolder
{
    margin-left: 140px;
    margin-top: 5px;
    display: block;
}
.formTable .imageHolder img
{
    vertical-align: middle;
    margin-right: 10px;
}

.formTable .inputBlock .input
{
    background: url(images/background-form-input.png) no-repeat left top;
    width: 170px;
    height: 30px;
    margin-left: 15px;
    _display: inline;
    _zoom: 1;
    display: inline-block;
}
.formTable .inputBlock .input.active
{
    background: url(images/background-form-input-act.png) no-repeat left top;
    
}
.formTable .inputBlock .input input
{
    background: transparent;
    border: 0px;
    width: 160px;
    height: 30px;
    color: #e76d8d;
    padding-left: 5px;
    padding-right: 5px;
}
.formTable .inputBlock .input input:focus
{
    background: #ffff00;
    background: rgba(255,255,0, 0.1);
}
.formTable .inputBlock.select .select 
{
    background: url(images/background-form-input.png) no-repeat left top;    
    display: inline-block;
    margin-left: 15px;
}
.formTable .inputBlock.select .select.active
{
    background: url(images/background-form-input-act.png) no-repeat left top;    
}
.formTable .inputBlock.select .select select
{
    background: transparent;
    border: 0px;
    width: 170px;
    height: 30px;
    color: #e76d8d;
}
.formTable .inputBlock.select .select select:focus
{
    background: #ffff00;
    background: rgba(255,255,0, 0.1);
}

.formTable .inputBlock.textarea
{
    background: transparent;
    width: 400px;
    height: auto;
    display: inline-block;
}
.formTable .inputBlock.textarea .textarea
{
    background: url(images/background-form-textarea.png) no-repeat left top;
    width: 400px;
    height: 141px;
    display: block;
}
.formTable .inputBlock.textarea .textarea textarea
{
    background: transparent;
    border: 0px;
    width: 390px;
    height: 136px;
    margin-left: 5px;
    margin-top: 3px;
    resize: none;
}
.formTable .inputBlock.checkbox
{
    background: transparent;
    border: 0px;
    width: auto;
}
.formTable .inputBlock.checkbox input
{
    display: none;
}
.formTable .inputBlock.checkbox label span
{
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #e7e7e7;
    vertical-align: middle;
    margin-right: 10px;
    cursor: pointer;
    cursor: hand;    
}
.formTable .inputBlock.checkbox input:checked + label span {
    
    background: url(images/background-form-checkbox-act.png) no-repeat center center;
}

.oldie .formTable .inputBlock.checkbox input
{
    display: inline-block;
}
.oldie .formTable .inputBlock.checkbox label span
{
    display: none;
}
.formTable .verifyImage
{
    margin-bottom: 5px;
}
.formTable .inputBlock.readonly
{
    background: transparent;
    height: auto;
}
.formTable .inputBlock.readonly .input
{
    background: transparent;
    color: #db587a;
    font-size: 1.33em;
    width: 240px;
}

.formTable .inputBlock.textarea.readonly .textarea
{
    background: transparent;
    height: auto;
}



.formSubmit
{
    text-align: center;
}
.formSubmit .submit
{
    background: url(images/background-form-submit.png) repeat-x left top;
    min-width: 170px;
    height: 30px;
    border: 0px;
    color: #ffffff;
    cursor: pointer;
    cursor: hand;
    font-size: 1.5em;
}
.formSubmit .submit.active
{
    background: url(images/background-form-submit-act.png) repeat-x left top;
}
.formSubmit a.submit
{
    display:inline-block;
    line-height: 30px;
    text-decoration: none;
    color: #ffffff !important;
}

.formSubmit .submit.small
{
    background: url(images/background-form-submit.png) no-repeat left top;
    background-size: 100% 100%;
    min-width: 132px;
    height: 31px;
}
.formSubmit .submit.small.active
{
    background: url(images/background-form-submit-act.png) no-repeat left top;
    background-size: 100% 100%;
}

.formSubmit a.submit.small
{
    line-height: 31px;
    font-size: 1.16em;
    padding-left: 10px;
    padding-right: 10px;
}



.formTable .inputError
{
    padding-top: 5px;
    padding-bottom: 5px;
    color: #ff0000;
    display: block;
    margin-left: 140px
}

h2 .small
{
    font-size: 0.7em;
}
.formMessage
{
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.formLinks
{
    display: block;
    margin-left: 250px;
}

#fg_textcontainer {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 20001;
  min-width: 200px;
  min-height: 100px;
  background: #ffffff;
}
#fg_content {
  border: 1px solid #ffffff;
  padding: 10px;
  color: #000000;
}
#fg_closetextbutton {
  background: url('images/ico-fg-close.png') no-repeat left top;
  width: 29px;
  height: 29px;
  margin-bottom: 10px;
  overflow: hidden;
}
#fg_closetextbutton a {
  display: block;
  width: -11px;
  height: 29px;
  padding-left: 40px;
  line-height: 29px;
  color: #ffffff;
  text-decoration: none;
}
#fg_loader {
  position: absolute;
  z-index: 20002;
  background: url('images/ico-fg-loader.gif') no-repeat center center #ffffff;
  border: 1px solid #ffffff;
  padding: 3px 3px 3px 3px;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
#fg_background {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 20000;
  background: #000000;
  filter: alpha(opacity=80);
  -moz-opacity: .80;
  opacity: .80;
}
#fg_photocontainer {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 20001;
  background: #ffffff;
}
#fg_photocontainer .fg_inner {
  border: 1px solid #ffffff;
  padding: 10px;
}
#fg_imagetext {
  position: absolute;
  margin-left: 10px;
  margin-top: 10px;
  color: #000000;
}
#fg_closebutton {
  background: url('images/ico-fg-close.png') no-repeat left top;
  width: 29px;
  height: 29px;
  margin-bottom: 10px;
  overflow: hidden;
}
#fg_closebutton a {
  display: block;
  width: 29px;
  height: 29px;
  color: #ffffff;
  text-decoration: none;
}
#fg_closebutton a span {
  padding-left: 50px;
  line-height: 29px;
  display: block;
}
#fg_nextbutton {
  position: absolute;
  background: url('images/ico-fg-next.png') no-repeat left top;
  width: 80px;
  height: 29px;
}
#fg_nextbutton a {
  display: block;
  padding-right: 22px;
  text-align: right;
  line-height: 29px;
  color: #ffffff;
  text-decoration: none;
}
#fg_prevbutton {
  position: absolute;
  background: url('images/ico-fg-prev.png') no-repeat left top;
  width: 80px;
  height: 29px;
}
#fg_prevbutton a {
  display: block;
  padding-left: 22px;
  text-align: left;
  line-height: 29px;
  color: #ffffff;
  text-decoration: none;
}
body {
  background: url(images/background-body.jpg) repeat-x center top;
  font-family: open_sansregular;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  font-size: 14px;
  color: #000000;
}
td,
th,
input,
select {
  font-family: open_sansregular;
  font-size: 14px;
  color: #000000;
}
.submit,
.button {
  cursor: pointer;
  cursor: hand;
}
#container {
  text-align: left;
  width: 936px;
  margin: 0px auto;
  padding: 0px;
  padding-bottom: 5px;
}
#top {
  height: 33px;
}
#top .logosmall {
  display: none;
}
#top .boxPhone,
#top .boxEmail {
  background: url(images/background-top-contact.png) no-repeat left top;
  width: 225px;
  height: 33px;
  line-height: 31px;
  float: left;
  display: inline;
  color: #ffffff;
}
#top .boxPhone.active,
#top .boxEmail.active {
  background: url(images/background-top-email-act.png) no-repeat left top;
}
#top .boxPhone img,
#top .boxEmail img {
  vertical-align: middle;
  margin-left: 10px;
  margin-right: 10px;
}
#top .boxPhone a,
#top .boxEmail a {
  color: #ffffff;
}
#top .boxPhone a:hover,
#top .boxEmail a:hover {
  color: #ffffff;
}
#top .boxEmail {
  background: url(images/background-top-email.png) no-repeat left top;
  margin-left: 12px;
}
#top .topMenuOpener {
  background: url(images/ico-topmenu.png) no-repeat center center #000000;
  width: 33px;
  height: 33px;
  display: none;
  float: right;
}
#top .topMenuOpener a {
  display: block;
  width: 33px;
  height: 33px;
}
#top .topMenu {
  background: url(images/background-top-menu.png) no-repeat left top;
  width: 462px;
  height: 33px;
  line-height: 33px;
  float: left;
  margin-left: 12px;
  color: #ffffff;
  overflow: hidden;
  font-size: 0.786em;
  text-align: right;
}
#top .topMenu ul {
  padding-right: 10px;
}
#top .topMenu ul li {
  display: inline;
}
#top .topMenu a {
  color: #ebebeb;
  text-decoration: none;
}
#top .topMenu a:hover {
  color: #fa3434;
  text-decoration: underline;
}
#content {
  background: url(images/banner-menu.png) no-repeat left bottom;
  clear: both;
  overflow: hidden;
}
#content #rightPane {
  float: right;
  display: inline;
  width: 699px;
}
#content #rightPane .bannerArea {
  margin-top: 12px;
  clear: both;
  overflow: hidden;
}
#content #rightPane .bannerArea .cartLogin {
  background: url(images/background-logincart.png) no-repeat left top;
  float: left;
  display: inline;
  width: 225px;
  height: 175px;
  margin-left: 12px;
  font-size: 0.786em;
}
#content #rightPane .bannerArea .cartLogin .login {
  height: 88px;
}
#content #rightPane .bannerArea .cartLogin .login .icon {
  float: left;
  display: inline;
  margin-left: 10px;
  margin-top: 10px;
  height: 60px;
}
#content #rightPane .bannerArea .cartLogin .login .loginForm {
  padding-top: 7px;
  margin-left: 10px;
  width: 185px;
  max-height: 80px;
  float: left;
  display: inline;
  color: #ffffff;
  overflow: hidden;
}
#content #rightPane .bannerArea .cartLogin .login .loginForm .input {
  background: #ffffff;
  color: #000000;
  width: 102px;
  height: 23px;
  border: 0px;
  margin-top: 3px;
  padding: 0px;
  font-size: 1em;
}
#content #rightPane .bannerArea .cartLogin .login .loginForm .input.active {
  background: url(images/background-login-input-act.png) no-repeat left top;
}
.oldie #content #rightPane .bannerArea .cartLogin .login .loginForm .input.active {
  background: #eeeeee;
}
#content #rightPane .bannerArea .cartLogin .login .loginForm .submit {
  background: url(images/background-login-button.png) no-repeat 68px center #ffffff;
  color: #6f6f6f;
  width: 80px;
  height: 23px;
  border: 0px;
  font-size: 1em;
}
#content #rightPane .bannerArea .cartLogin .login .loginForm .submit.active {
  background: url(images/background-login-button-act.png) no-repeat 68px center #000000;
  color: #ffffff;
}
#content #rightPane .bannerArea .cartLogin .login .buttons {
  padding-top: 5px;
  display: block;
}
#content #rightPane .bannerArea .cartLogin .login .buttons .button {
  background: url(images/background-login-button-act.png) no-repeat left center;
  color: #ffffff;
  text-decoration: none;
  display: inline;
  display: inline-block;
  padding-left: 8px;
  margin-right: 5px;
}
#content #rightPane .bannerArea .cartLogin .login .buttons .button:hover {
  background: url(images/background-login-button-black.png) no-repeat left center;
  color: #000000;
  text-decoration: underline;
}
#content #rightPane .bannerArea .cartLogin .topCart {
  height: 87px;
  color: #ffffff;
}
#content #rightPane .bannerArea .cartLogin .topCart .icon {
  float: left;
  display: inline;
  margin-left: 10px;
  margin-top: 10px;
  height: 60px;
}
#content #rightPane .bannerArea .cartLogin .topCart .cartInfo {
  margin-left: 10px;
  padding-top: 10px;
  float: left;
  display: inline;
  width: 180px;
}
#content #rightPane .bannerArea .cartLogin .topCart .cartInfo .info {
  height: 38px;
  display: block;
}
#content #rightPane .bannerArea .cartLogin .topCart .cartInfo .info .gold {
  font-size: 1.5em;
}
#content #rightPane .bannerArea .cartLogin .topCart .cartInfo .button {
  background: url(images/background-cart-button.png) no-repeat 68px center #ffffff;
  color: #6f6f6f;
  width: 80px;
  height: 23px;
  border: 0px;
  font-size: 1em;
  display: block;
  text-align: center;
  line-height: 23px;
  text-decoration: none;
  margin-left: 101px;
}
#content #rightPane .bannerArea .cartLogin .topCart .cartInfo .button:hover {
  background: url(images/background-login-button-act.png) no-repeat 68px center #000000;
  color: #ffffff;
}
#content #rightPane .bannerArea.small {
  height: 72px;
}
#content #rightPane .bannerArea.small .cartLogin {
  background: transparent;
  float: none;
  display: block;
  height: auto;
  width: 100%;
  margin-left: 0px;
}
#content #rightPane .bannerArea.small .cartLogin .login {
  background: url(images/background-login-small.png) no-repeat left top;
  float: left;
  display: inline;
  height: 72px;
  width: 383px;
}
#content #rightPane .bannerArea.small .cartLogin .login .loginForm {
  width: 344px;
}
#content #rightPane .bannerArea.small .cartLogin .login .loginForm .input {
  width: 163px;
}
#content #rightPane .bannerArea.small .cartLogin .login .loginForm .input.active {
  background-size: 100% 100%;
}
#content #rightPane .bannerArea.small .cartLogin .login .loginForm .submit {
  float: right;
  margin-top: 10px;
}
#content #rightPane .bannerArea.small .cartLogin .topCart {
  background: url(images/background-cart-small.png) no-repeat left top;
  float: left;
  display: inline;
  width: 304px;
  height: 72px;
  margin-left: 12px;
}
#content #rightPane .bannerArea.small .cartLogin .topCart .cartInfo {
  width: 260px;
}
#content #rightPane .bannerArea.small .cartLogin .topCart .cartInfo .info {
  height: 30px;
}
#content #rightPane .bannerArea.small .cartLogin .topCart .cartInfo .button {
  margin-left: 180px;
}
#content #rightPane #banner {
  width: 462px;
  height: 175px;
  float: left;
  display: inline;
}
#content #rightPane #banner .bannerSlide {
  position: absolute;
}
#content #rightPane .path {
  background: #ff2323;
  clear: both;
  height: 32px;
  line-height: 32px;
  margin-top: 3px;
  padding-left: 10px;
  overflow: hidden;
}
#content #rightPane .path a {
  color: #ffffff !important;
  text-decoration: none;
}
#content #rightPane .path a:hover {
  color: #000000 !important;
}
#content #rightPane .moduleContent {
  clear: both;
}
#content #rightPane .moduleContent h1 {
  background: url(images/background-h1.png) repeat-x left top;
  height: 32px;
  line-height: 32px;
  font-size: 1.14em;
  padding-left: 10px;
  margin-top: 12px;
  color: #ffffff;
}
#content #rightPane .moduleContent h1.black {
  background: url(images/background-h2.png) repeat-x left top;
}
#content #rightPane .moduleContent h2 {
  height: 30px;
  line-height: 30px;
  font-size: 1.19em;
  padding-left: 10px;
  margin-top: 12px;
  color: #3b8a00;
}
#content #rightPane .moduleContent h3 {
  height: 25px;
  line-height: 25px;
  font-size: 1.09em;
  padding-left: 10px;
  margin-top: 6px;
  color: #000000;
}
#content #rightPane .moduleContent .pageText {
  background: #ffffff;
  padding: 20px;
  font-size: 0.86em;
  line-height: 1.3em;
}
#content #rightPane .moduleContent p {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 12px;
  margin-right: 12px;
}
#content #rightPane .moduleContent a {
  color: #ff2323;
}
#content #rightPane .moduleContent a:hover {
  color: #fe9191;
}
#content #rightPane .moduleContent strong,
#content #rightPane .moduleContent b {
  font-weight: bold;
}
#content #rightPane .moduleContent ol {
  list-style: decimal;
  padding: 10px 0px 10px 30px;
}
#content #rightPane .moduleContent ol li {
  padding-top: 2px;
  padding-bottom: 2px;
}
#content #rightPane .moduleContent ul {
  list-style-image: url(images/ico-ul.png);
  padding: 10px 0px 10px 30px;
}
#content #rightPane .moduleContent ul li {
  padding-top: 2px;
  padding-bottom: 2px;
}
#content #rightPane .moduleContent table td {
  font-size: 1em;
}
#content #rightPane .moduleContent .columns2 {
  float: left;
  display: inline;
  width: 50%;
  margin-left: calc(12px);
  width: calc(50% - 6px);
}
#content #rightPane .moduleContent .columns2.first {
  margin-left: 0px;
}
#content #rightPane .moduleContent .galleryImages .galleryItem {
  float: left;
  display: inline;
  margin-left: 18px;
  margin-bottom: 20px;
}
#content #rightPane .moduleContent .galleryImages .galleryItem.first {
  margin-left: 0px;
}
#content #rightPane .productList .productItem {
  background: url(images/background-product-item.png) no-repeat left top;
  width: 225px;
  height: 290px;
  float: left;
  display: inline;
  margin-left: 12px;
  margin-top: 12px;
}
#content #rightPane .productList .productItem.first {
  margin-left: 0px;
}
#content #rightPane .productList .productItem .icons {
  position: absolute;
}
#content #rightPane .productList .productItem .productImageHolder {
  width: 213px;
  height: 170px;
  margin-left: 6px;
  margin-top: 6px;
}
#content #rightPane .productList .productItem .productName {
  margin: 10px 10px 0px 10px;
  height: 30px;
  overflow: hidden;
}
#content #rightPane .productList .productItem .productName a {
  color: #000000;
  text-decoration: none;
}
#content #rightPane .productList .productItem .productCode {
  margin: 6px 10px 0px 10px;
  font-size: 0.86em;
  float: left;
  display: inline;
}
#content #rightPane .productList .productItem .productCode span {
  color: #878787;
}
#content #rightPane .productList .productItem .productWarehouse {
  margin: 6px 10px 0px 10px;
  font-size: 0.86em;
  color: #878787;
  padding-bottom: 6px;
  float: right;
  display: inline;
}
#content #rightPane .productList .productItem .productWarehouse span {
  color: #000000;
}
#content #rightPane .productList .productItem .productWarehouse span.onstock {
  color: #009900;
  font-weight: bold;
}
#content #rightPane .productList .productItem .productLine {
  height: 1px;
  border-bottom: 1px solid #ffffff;
  margin: 0px 10px;
  clear: both;
}
#content #rightPane .productList .productItem .productPrice {
  font-size: 1.29em;
  margin-left: 12px;
  margin-top: 16px;
  float: left;
  display: inline;
}
#content #rightPane .productList .productItem .productPrice .info {
  font-size: 0.55em;
  color: #646464;
}
#content #rightPane .productList .productItem .productCart {
  margin-right: 12px;
  margin-top: 12px;
  float: right;
  display: inline;
}
#content #rightPane .productList .productItem .productPackages {
  background: #ffffff;
  color: #000000;
  border: 1px solid #3B8A00;
  position: absolute;
  width: 180px;
  padding: 10px;
  z-index: 10000;
  display: none;
  vertical-align: middle;
}
#content #rightPane .productList .productItem .productPackages .fullname {
  width: 100px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
}
#content #rightPane .productList .productItem .productInfo {
  margin-left: 12px;
  margin-right: 12px;
  margin-top: 12px;
  font-size: 0.86em;
}
#content #rightPane .productList .productItem .ajaxCartForm .input.short {
  width: 30px;
  height: 22px;
}
#content #rightPane .productList .productItem .ajaxCartForm .submit {
  border: 0px;
  background: url(images/ico-cart.png) no-repeat center center;
  width: 24px;
  height: 22px;
}
#content #rightPane .productDetail {
  background: #ffffff;
}
#content #rightPane .productDetail .productLeft {
  float: left;
  display: inline;
  width: 410px;
  margin-left: 10px;
  margin-top: 10px;
}
#content #rightPane .productDetail .productLeft .icons {
  position: absolute;
}
#content #rightPane .productDetail .productLeft .productImageSmall {
  float: left;
  display: inline;
  margin-left: 15px;
}
#content #rightPane .productDetail .productLeft .productImageSmall.first {
  margin-left: 0px;
}
#content #rightPane .productDetail .productRight {
  float: right;
  display: inline;
  width: 255px;
  margin-left: 10px;
}
#content #rightPane .productDetail .productRight .text {
  margin-top: 10px;
  margin-left: 10px;
}
#content #rightPane .productDetail .productRight .attributes {
  margin-left: 20px;
  margin-top: 100px;
}
#content #rightPane .productDetail .productRight .attributes td {
  padding-top: 3px;
  padding-bottom: 3px;
}
#content #rightPane .productDetail .productRight .attributes .label {
  color: #878787;
  text-align: right;
  padding-right: 10px;
}
#content #rightPane .productDetail .productRight .attributes .onstock {
  color: #3b8a00;
  font-weight: bold;
}
#content #rightPane .productDetail .productRight .price {
  margin-top: 25px;
  margin-left: 50px;
}
#content #rightPane .productDetail .productRight .price .value {
  font-size: 1.714em;
  font-weight: bold;
}
#content #rightPane .productDetail .productRight .price .info {
  font-weight: normal;
  font-size: 0.5em;
}
#content #rightPane .productDetail .productRight .addCartForm {
  margin-top: 15px;
}
#content #rightPane .productDetail .productRight .addCartForm .button {
  background: transparent;
  width: 38px;
  height: 38px;
  font-weight: bold;
  border: 0px;
  font-size: 1.5em;
  text-align: center;
  color: #000000;
  vertical-align: bottom;
}
#content #rightPane .productDetail .productRight .addCartForm .button.active {
  color: #ff2323;
}
#content #rightPane .productDetail .productRight .addCartForm .input {
  background: url(images/background-cart-input2.png);
  width: 67px;
  height: 38px;
  text-align: center;
  border: 0px;
  padding: 0px;
  font-size: 1.28em;
  vertical-align: bottom;
}
#content #rightPane .productDetail .productRight .addCartForm .input.active {
  background: url(images/background-cart-input2-act.png);
}
#content #rightPane .productDetail .productRight .addCartForm.tooManyItems .input {
  border: 1px solid #ff0000;
}
#content #rightPane .productDetail .productRight .addCartForm.tooManyItems .error {
  display: block;
}
#content #rightPane .productDetail .productRight .addCartForm .submit {
  background: url(images/ico-add2cart.png) no-repeat center center;
  width: 40px;
  height: 38px;
  border: 0px;
  font-size: 0em;
  vertical-align: bottom;
}
#content #rightPane .productDetail .productRight .addCartForm .submit.active {
  background: url(images/ico-add2cart-act.png) no-repeat center center;
}
#content #rightPane .productDetail .productRight .addCartForm .remarkHolder {
  padding-top: 10px;
  display: block;
}
#content #rightPane .productDetail .productRight .addCartForm .remarkHolder label {
  color: #878787;
  line-height: 1.5em;
}
#content #rightPane .productDetail .productRight .addCartForm .remarkHolder .remark {
  background: url(images/background-form-textarea.png);
  background-size: 100% 100%;
  width: 200px;
  height: 40px;
  text-align: left;
  border: 0px;
  padding: 3px;
  resize: none;
}
#content #rightPane .productDetail .productRight .addCartForm .remarkHolder .remark.active {
  background: url(images/background-form-textarea-act.png);
  background-size: 100% 100%;
}
#content #rightPane .productDetail .productPackages {
  margin-left: 10px;
  margin-right: 10px;
  width: 90%;
  width: calc(100% - 20px);
}
#content #rightPane .productDetail .productPackages th {
  background: #d2d2d2;
  height: 20px;
  vertical-align: middle;
  border-bottom: 1px solid #ffffff;
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}
#content #rightPane .productDetail .productPackages td {
  background: #f4f4f4;
  padding-left: 10px;
  vertical-align: middle;
  border-bottom: 1px solid #ffffff;
  height: 25px;
}
#content #rightPane .productDetail .productPackages .addCartForm {
  vertical-align: middle;
}
#content #rightPane .productDetail .productPackages .addCartForm .button {
  background: transparent;
  width: 23px;
  height: 23px;
  border: 0px;
  font-size: 1em;
  text-align: center;
  color: #000000;
  vertical-align: middle;
}
#content #rightPane .productDetail .productPackages .addCartForm .button.active {
  color: #ff2323;
}
#content #rightPane .productDetail .productPackages .addCartForm .input {
  background: url(images/background-cart-input.png);
  width: 47px;
  height: 23px;
  text-align: center;
  border: 0px;
  padding: 0px;
  font-size: 1em;
  vertical-align: middle;
}
#content #rightPane .productDetail .productPackages .addCartForm .input.active {
  background: url(images/background-cart-input-act.png);
}
#content #rightPane .productDetail .productPackages .addCartForm .submit {
  background: url(images/ico-cart.png) no-repeat center center;
  width: 26px;
  height: 23px;
  border: 0px;
  font-size: 0em;
  vertical-align: middle;
}
#content #rightPane .productDetail .productPackages .addCartForm .submit.active {
  background: url(images/ico-cart-act.png) no-repeat center center;
}
#content #rightPane .cartContent {
  background: #ffffff;
}
#content #rightPane .cartContent .cartTable {
  margin-left: 10px;
  margin-right: 10px;
  width: 90%;
  width: calc(100% - 20px);
}
#content #rightPane .cartContent .cartTable th {
  background: #d2d2d2;
  height: 20px;
  vertical-align: middle;
  border-bottom: 1px solid #ffffff;
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}
#content #rightPane .cartContent .cartTable td {
  background: #f4f4f4;
  padding-left: 10px;
  padding-top: 2px;
  padding-bottom: 2px;
  vertical-align: middle;
  border-bottom: 1px solid #ffffff;
  height: 25px;
}
#content #rightPane .cartContent .cartTable .remark {
  font-size: 0.9em;
  color: #999999;
}
#content #rightPane .cartContent .cartTable .count {
  white-space: nowrap;
  text-align: center;
}
#content #rightPane .cartContent .cartTable .price {
  white-space: nowrap;
}
#content #rightPane .cartContent .cartTable .button {
  background: transparent;
  width: 23px;
  height: 23px;
  border: 0px;
  font-size: 1em;
  text-align: center;
  color: #000000;
  vertical-align: middle;
}
#content #rightPane .cartContent .cartTable .button.active {
  color: #ff2323;
}
#content #rightPane .cartContent .cartTable .short {
  background: url(images/background-cart-input.png);
  width: 47px;
  height: 23px;
  text-align: center;
  border: 0px;
  padding: 0px;
  font-size: 1em;
  vertical-align: middle;
}
#content #rightPane .cartContent .cartTable .short.active {
  background: url(images/background-cart-input-act.png);
}
#content #rightPane .cartContent .cartTable .deleteButton {
  padding: 0px 5px;
}
#content #rightPane .cartContent .cartOptions {
  list-style: none;
  padding: 0px;
}
#content #rightPane .cartContent .cartOptions li {
  padding-top: 5px;
  padding-bottom: 5px;
  color: #555555;
  vertical-align: middle;
  list-style: none;
}
#content #rightPane .cartContent .cartOptions li input {
  display: none;
}
#content #rightPane .cartContent .cartOptions li input:checked + label {
  background: url(images/background-form-radio-act.png) no-repeat left center;
}
#content #rightPane .cartContent .cartOptions li input:disabled + label {
  background: transparent;
}
.oldie #content #rightPane .cartContent .cartOptions li input {
  display: inline;
}
#content #rightPane .cartContent .cartOptions li label {
  background: url(images/background-form-radio.png) no-repeat left center;
  padding-left: 30px;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 3px;
  padding-bottom: 3px;
  cursor: pointer;
  cursor: hand;
}
.oldie #content #rightPane .cartContent .cartOptions li label {
  background: transparent;
}
#content #rightPane .cartContent .cartInfoPanel {
  padding-left: 10px;
  color: red;
}
#content #rightPane .cartContent .cartButtons {
  margin: 10px 12px;
}
#content #rightPane .cartContent .cartButtons .submit {
  background: url(images/background-form-submit.png) repeat-x left top;
  width: 170px;
  height: 30px;
  color: #ffffff;
  border: 0px;
  font-size: 1.28em;
}
#content #rightPane .cartContent .cartButtons .submit.active {
  background: url(images/background-form-submit-act.png) repeat-x left top;
}
#content #rightPane .cartContent .cartButtons .buttonNext {
  float: right;
  display: inline;
}
#content #rightPane .cartContent .cartButtons .buttonPrevious {
  float: left;
  display: inline;
}
#content #rightPane .cartContent .cartButtons .buttonPrevious .submit {
  background: #cccccc;
}
#content #rightPane .cartContent .cartButtons.cartReload .submit {
  font-size: 1.14em;
}
#content #rightPane .cartContent .cartSum {
  font-size: 1.083em;
  line-height: 2em;
  color: #484848;
  margin-top: 20px;
  text-align: center;
}
#content #rightPane .cartContent .cartSum .count,
#content #rightPane .cartContent .cartSum .price {
  font-size: 1.5em;
  color: #000000;
  font-weight: bold;
}
#content #rightPane .navigation {
  height: 40px;
  font-size: 0.95em;
}
#content #rightPane .navigation .right {
  line-height: 40px;
  margin-right: 10px;
  float: right;
  display: inline;
}
#content #rightPane .navigation .left {
  line-height: 40px;
  margin-left: 10px;
  float: left;
  display: inline;
}
#content #rightPane .navigation a {
  color: #000000;
}
#content #rightPane .navigation a:hover,
#content #rightPane .navigation a.active {
  color: #3b8a00;
}
#content #rightPane .navigation .item {
  line-height: 15px;
  text-decoration: none;
}
#content #rightPane .navigation .item span {
  padding-left: 3px;
  padding-right: 3px;
  vertical-align: middle;
}
#content #rightPane .navigation .item img {
  vertical-align: middle;
}
#content #rightPane .navigation .item.active {
  font-weight: bold;
}
#content #leftPane {
  float: left;
  display: inline;
  width: 225px;
  margin-bottom: 190px;
}
#content #leftPane #logo {
  margin-top: 12px;
  height: 118px;
  overflow: hidden;
}
#content #leftPane #logo a img {
  border: 0px;
}
#content #leftPane .topSearch {
  margin-top: 12px;
  background: url(images/background-search.png) no-repeat left top #ebebeb;
  width: 225px;
  height: 45px;
}
#content #leftPane .topSearch #searchForm {
  margin-left: 10px;
  padding-top: 5px;
}
#content #leftPane .topSearch .input {
  border: 1px solid #000000;
  background: #ffffff;
  width: 159px;
  height: 33px;
  padding-left: 5px;
  padding-right: 5px;
  vertical-align: bottom;
}
#content #leftPane .topSearch .input.active {
  background: url(images/background-search-input-act.png) no-repeat left top;
}
#content #leftPane .topSearch .submit {
  background: url(images/background-search-submit.png) no-repeat center center;
  width: 33px;
  height: 33px;
  border: 0px;
  vertical-align: bottom;
}
#content #leftPane .topSearch .submit.active {
  background: url(images/background-search-submit-act.png) no-repeat center center;
}
#content #leftPane .leftMenu,
#content #leftPane .popupSubmenu {
  background: url(images/background-leftmenu.png) repeat-y left top;
  margin-top: 12px;
}
#content #leftPane .leftMenu .menuItem,
#content #leftPane .popupSubmenu .menuItem {
  list-style: none;
}
#content #leftPane .leftMenu .menuItem a,
#content #leftPane .popupSubmenu .menuItem a {
  background: url(images/ico-menu-item.png) no-repeat 20px center;
  padding: 10px 10px 10px 35px;
  display: block;
  color: #000000;
  text-decoration: none;
}
#content #leftPane .leftMenu .menuItem.active,
#content #leftPane .leftMenu .menuItem.hover,
#content #leftPane .popupSubmenu .menuItem.active,
#content #leftPane .popupSubmenu .menuItem.hover {
  background: #ff2323;
}
#content #leftPane .leftMenu .menuItem.active a,
#content #leftPane .leftMenu .menuItem.hover a,
#content #leftPane .popupSubmenu .menuItem.active a,
#content #leftPane .popupSubmenu .menuItem.hover a {
  background: url(images/ico-menu-item-act.png) no-repeat 20px center;
}
#content #leftPane .leftMenu .submenuItem,
#content #leftPane .popupSubmenu .submenuItem {
  list-style: none;
}
#content #leftPane .leftMenu .submenuItem a,
#content #leftPane .popupSubmenu .submenuItem a {
  background: url(images/ico-submenu-item.png) no-repeat 40px center;
  padding: 10px 10px 10px 55px;
  display: block;
  color: #000000;
  text-decoration: none;
  font-size: 0.929em;
}
#content #leftPane .leftMenu .submenuItem.active,
#content #leftPane .leftMenu .submenuItem.hover,
#content #leftPane .popupSubmenu .submenuItem.active,
#content #leftPane .popupSubmenu .submenuItem.hover {
  background: #ff2323;
}
#content #leftPane .leftMenu .submenuItem.active a,
#content #leftPane .leftMenu .submenuItem.hover a,
#content #leftPane .popupSubmenu .submenuItem.active a,
#content #leftPane .popupSubmenu .submenuItem.hover a {
  background: url(images/ico-submenu-item-act.png) no-repeat 20px center;
  color: #ffffff;
}
#content #leftPane .popupSubmenu {
  position: absolute;
  width: inherit;
}
#bottom {
  margin-top: 10px;
}
#bottom #bottomMenu {
  height: 34px;
  line-height: 34px;
  border-top: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
  text-align: center;
  font-size: 0.79em;
}
#bottom #bottomMenu ul {
  display: inline;
}
#bottom #bottomMenu ul .menuItem {
  display: inline;
}
#bottom #bottomMenu ul .menuSeparator {
  display: inline;
  display: inline-block;
  background: url(images/background-bottommenu-separator.png) no-repeat center center;
  width: 4px;
  height: 10px;
}
#bottom #bottomMenu a {
  color: #6e6e6e;
  text-decoration: none;
}
#bottom #bottomMenu a:hover,
#bottom #bottomMenu a.active {
  color: #e60300;
}
#bottom .copyright {
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}
.clearer {
  clear: both;
}
.topper {
  width: 1px;
  height: 1px;
  font-size: 1px;
  overflow: hidden;
}
.hidden {
  display: none;
}
.error {
  border: 1px solid #990000;
  color: #990000;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
}
.message {
  border: 1px solid #009900;
  color: #009900;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
}
#fg_content {
  clear: both;
}
#fg_content h1 {
  background: url(images/background-h1.png) repeat-x left top;
  height: 32px;
  line-height: 32px;
  font-size: 1.14em;
  padding-left: 10px;
  margin-top: 12px;
  color: #ffffff;
}
#fg_content h1.black {
  background: url(images/background-h2.png) repeat-x left top;
}
#fg_content h2 {
  height: 30px;
  line-height: 30px;
  font-size: 1.19em;
  padding-left: 10px;
  margin-top: 12px;
  color: #3b8a00;
}
#fg_content h3 {
  height: 25px;
  line-height: 25px;
  font-size: 1.09em;
  padding-left: 10px;
  margin-top: 6px;
  color: #000000;
}
#fg_content .pageText {
  background: #ffffff;
  padding: 20px;
  font-size: 0.86em;
  line-height: 1.3em;
}
#fg_content p {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 12px;
  margin-right: 12px;
}
#fg_content a {
  color: #ff2323;
}
#fg_content a:hover {
  color: #fe9191;
}
#fg_content strong,
#fg_content b {
  font-weight: bold;
}
#fg_content ol {
  list-style: decimal;
  padding: 10px 0px 10px 30px;
}
#fg_content ol li {
  padding-top: 2px;
  padding-bottom: 2px;
}
#fg_content ul {
  list-style-image: url(images/ico-ul.png);
  padding: 10px 0px 10px 30px;
}
#fg_content ul li {
  padding-top: 2px;
  padding-bottom: 2px;
}
#fg_content table td {
  font-size: 1em;
}
#fg_content .columns2 {
  float: left;
  display: inline;
  width: 50%;
  margin-left: calc(12px);
  width: calc(50% - 6px);
}
#fg_content .columns2.first {
  margin-left: 0px;
}
#fg_content .galleryImages .galleryItem {
  float: left;
  display: inline;
  margin-left: 18px;
  margin-bottom: 20px;
}
#fg_content .galleryImages .galleryItem.first {
  margin-left: 0px;
}
@media (max-width: 936px) {
  #container {
    margin-left: 2%;
    width: 96%;
  }
  #top .logosmall {
    float: left;
    display: inline;
  }
  #top .boxPhone,
  #top .boxEmail {
    display: inline-block;
    width: auto;
    padding-right: 10px;
    margin-left: 12px;
  }
  #top .topMenuOpener {
    display: inline;
  }
  #top .topMenu {
    display: none;
    width: 80%;
    height: auto;
    background: #000000;
    text-align: center;
    position: absolute;
    margin-top: 33px;
    margin-left: 10%;
  }
  #top .topMenu ul {
    padding: 0px;
  }
  #top .topMenu ul li {
    display: block;
  }
  #top .topMenu ul li a {
    display: block;
  }
  #top .topMenu ul li a:hover {
    background: #333333;
  }
  #top .topMenu ul li.menuSeparator {
    display: none;
  }
  #content #rightPane {
    float: none;
    display: block;
    width: 100%;
  }
  #content #rightPane .productList .productItem.first {
    margin-left: 12px;
  }
  #content #rightPane .bannerArea.small .cartLogin .login {
    background-size: cover;
    width: calc(50% - 6px);
  }
  #content #rightPane .bannerArea.small .cartLogin .login .loginForm {
    width: calc(100% - 40px);
  }
  #content #rightPane .bannerArea.small .cartLogin .login .loginForm .input {
    width: 45%;
  }
  #content #rightPane .bannerArea.small .cartLogin .topCart {
    background-size: cover;
    width: calc(50% - 6px);
    margin: 0px;
    margin-left: calc(12px);
  }
  #content #rightPane .bannerArea.small .cartLogin .topCart .cartInfo {
    width: calc(100% - 45px);
  }
  #content #rightPane .bannerArea.small .cartLogin .topCart .cartInfo .info {
    height: auto;
  }
  #content #rightPane .bannerArea.small .cartLogin .topCart .cartInfo .button {
    margin-left: 0px;
  }
  #content #leftPane {
    display: block;
    width: 100%;
  }
  #content #leftPane #logo {
    display: none;
  }
  #content #leftPane .topSearch {
    width: auto;
  }
  #content #leftPane .topSearch .input {
    width: calc(100% - 45px);
  }
  #content #leftPane .leftMenu {
    background-size: cover;
  }
}
@media (max-width: 730px) {
  #content #rightPane .bannerArea .cartLogin {
    background: transparent;
    float: none;
    display: block;
    height: auto;
    width: 100%;
    margin-left: 0px;
  }
  #content #rightPane .bannerArea .cartLogin .login {
    background: url(images/background-login-small.png) no-repeat left top;
    background-size: cover;
    float: left;
    display: inline;
    width: 50%;
    width: calc(50% - 6px);
    height: 72px;
  }
  #content #rightPane .bannerArea .cartLogin .login .loginForm {
    width: calc(100% - 40px);
  }
  #content #rightPane .bannerArea .cartLogin .login .loginForm .input {
    width: 45%;
  }
  #content #rightPane .bannerArea .cartLogin .login .loginForm .input.active {
    background-size: 100% 100%;
  }
  #content #rightPane .bannerArea .cartLogin .login .loginForm .submit {
    float: right;
    margin-top: 10px;
  }
  #content #rightPane .bannerArea .cartLogin .topCart {
    background: url(images/background-cart-small.png) no-repeat left top;
    background-size: cover;
    float: left;
    display: inline;
    width: 50%;
    width: calc(50% - 6px);
    height: 72px;
    margin-left: 0px;
    margin-left: calc(12px);
  }
  #content #rightPane .bannerArea .cartLogin .topCart .cartInfo {
    width: auto;
    width: calc(100% - 45px);
  }
  #content #rightPane .bannerArea .cartLogin .topCart .cartInfo .info {
    height: auto;
  }
  #content #rightPane .bannerArea .cartLogin .topCart .cartInfo .button {
    margin-left: 180px;
  }
  #content #rightPane .productDetail .productLeft {
    float: none;
    display: block;
    width: auto;
  }
  #content #rightPane .productDetail .productLeft .popupImage img {
    max-width: 100%;
  }
  #content #rightPane .productDetail .productRight {
    float: none;
    display: block;
    width: auto;
  }
  #content #rightPane .productDetail .productRight .attributes {
    margin-top: 0px;
  }
}
@media (max-width: 500px) {
  #top .boxPhone,
  #top .boxEmail {
    margin-left: 0px;
    padding-left: 10px;
  }
  #top .boxPhone img,
  #top .boxEmail img {
    display: none;
  }
  #content {
    font-size: 0.9em;
  }
  #content #rightPane .bannerArea #banner {
    width: 100%;
    height: auto;
  }
  #content #rightPane .bannerArea #banner img {
    width: 100% !important;
    height: auto !important;
  }
  #content #rightPane .bannerArea .cartLogin .login .loginForm .submit {
    width: 20px;
    font-size: 0.001em;
    background-position: center center;
  }
  .formTable {
    width: 100%;
    margin-left: 0px;
  }
  .formTable .inputBlock,
  .formTable .inputBlock.select {
    width: auto;
    height: auto;
  }
  .formTable .inputBlock .description,
  .formTable .inputBlock .input,
  .formTable .inputBlock .select,
  .formTable .inputBlock.select .description,
  .formTable .inputBlock.select .input,
  .formTable .inputBlock.select .select {
    text-align: left;
    display: block;
    width: auto;
    margin-left: 0px;
  }
  .formTable .inputBlock.textarea {
    width: 100%;
    height: auto;
  }
  .formTable .inputBlock.textarea .textarea {
    background-size: 100% 100%;
    width: 100%;
    height: auto;
  }
  .formTable .inputBlock.textarea .textarea textarea {
    width: 100%;
  }
  .formTable .imageHolder {
    margin-left: 0px;
  }
  .formTable .inputNote {
    margin-left: 0px;
  }
  .formLinks {
    margin-left: 0px;
  }
}
@font-face {
    font-family: 'open_sansregular';
    src: url('images/font/OpenSans-Regular-webfont.eot');
    src: url('images/font/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('images/font/OpenSans-Regular-webfont.woff') format('woff'),
         url('images/font/OpenSans-Regular-webfont.ttf') format('truetype'),
         url('images/font/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sansitalic';
    src: url('images/font/OpenSans-Italic-webfont.eot');
    src: url('images/font/OpenSans-Italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('images/font/OpenSans-Italic-webfont.woff') format('woff'),
         url('images/font/OpenSans-Italic-webfont.ttf') format('truetype'),
         url('images/font/OpenSans-Italic-webfont.svg#open_sansitalic') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'open_sansbold';
    src: url('images/font/OpenSans-Bold-webfont.eot');
    src: url('images/font/OpenSans-Bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('images/font/OpenSans-Bold-webfont.woff') format('woff'),
         url('images/font/OpenSans-Bold-webfont.ttf') format('truetype'),
         url('images/font/OpenSans-Bold-webfont.svg#open_sansbold') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'open_sansbold_italic';
    src: url('images/font/OpenSans-BoldItalic-webfont.eot');
    src: url('images/font/OpenSans-BoldItalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('images/font/OpenSans-BoldItalic-webfont.woff') format('woff'),
         url('images/font/OpenSans-BoldItalic-webfont.ttf') format('truetype'),
         url('images/font/OpenSans-BoldItalic-webfont.svg#open_sansbold_italic') format('svg');
    font-weight: normal;
    font-style: normal;

}