/* 
 * HTML5 ✰ Boilerplate
 *
 * What follows is the result of much research on cross-browser styling. 
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 *
 * Detailed information about this CSS: h5bp.com/css
 * 
 * ==|== normalize ==========================================================
 */


/* =============================================================================
   HTML5 display definitions
   ========================================================================== */

/*article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }*/

/* =============================================================================
   Base
   ========================================================================== */

/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 * 2. Force vertical scrollbar in non-IE
 * 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 */

html {
    font-size: 100%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-size: 13px;
    line-height: 1.231;
}

body, button, input, select, textarea {
    font-family: sans-serif;
    color: #222;
}

/* 
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate
 * Also: hot pink! (or customize the background color to match your design)
 */

::-moz-selection {
    background: #888;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #888;
    color: #fff;
    text-shadow: none;
}


/* =============================================================================
   Links
   ========================================================================== */

a {
    color: #00e;
    text-decoration: none
}

a:visited {
    color: #551a8b;
}

a:hover {
    color: #06e;
}

a:focus {
    outline: thin dotted;
}

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


/* =============================================================================
   Typography
   ========================================================================== */

abbr[title] {
    border-bottom: 1px dotted;
}

b, strong {
    font-weight: bold;
}

blockquote {
    margin: 1em 40px;
}

dfn {
    font-style: italic;
}

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

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

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

/* Redeclare monospace font family: h5bp.com/j */
pre, code, kbd, samp {
    font-family: monospace, monospace;
    _font-family: 'courier new', monospace;
    font-size: 1em;
}

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

q {
    quotes: none;
}

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

small {
    font-size: 85%;
}

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}


/* =============================================================================
   Lists
   ========================================================================== */

ul, ol {
    margin: 1em 0;
    padding: 0 0 0 40px;
}

dd {
    margin: 0 0 0 40px;
}

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


/* =============================================================================
   Embedded content
   ========================================================================== */

/*
 * 1. Improve image quality when scaled in IE7: h5bp.com/d
 * 2. Remove the gap between images and borders on image containers: h5bp.com/e 
 */

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

/*
 * Correct overflow not hidden in IE9 
 */

svg:not(:root) {
    overflow: hidden;
}


/* =============================================================================
   Figures
   ========================================================================== */

figure {
    margin: 0;
}


/* =============================================================================
   Forms
   ========================================================================== */

form {
    margin: 0;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/* Indicate that 'label' will shift focus to the associated form element */
label {
    cursor: pointer;
}

/* 
 * 1. Correct color not inheriting in IE6/7/8/9 
 * 2. Correct alignment displayed oddly in IE6/7 
 */

legend {
    border: 0;
    *margin-left: -7px;
    padding: 0;
}

/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */

button, input, select, textarea {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
    *vertical-align: middle;
}

/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 * 2. Correct inner spacing displayed oddly in IE6/7
 */

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

/*
 * Reintroduce inner spacing in 'table' to avoid overlap and whitespace issues in IE6/7
 */

table button, table input {
    *overflow: auto;
}

/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 */

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

/*
 * Consistent box sizing and appearance
 */

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

/* 
 * Remove inner padding and border in FF3/4: h5bp.com/l 
 */

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

/* 
 * 1. Remove default vertical scrollbar in IE6/7/8/9 
 * 2. Allow only vertical resizing
 */

textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

/* Colors for form validity */
input:valid, textarea:valid {
}

input:invalid, textarea:invalid {
    background-color: #f0dddd;
}


/* =============================================================================
   Tables
   ========================================================================== */

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

td {
    vertical-align: top;
}


/* ==|== primary styles =====================================================
   Author: Adam Chwedyk, @achwedyk
   ========================================================================== */

a, a:hover, a:visited {
    color: #000;
    font-weight: normal;
    text-decoration: none;
}

p a, p a:hover, p a:visited {
    font-weight: bold;
}

body {
    /*background: url(../img/top.png) repeat-x top;*/
    background: url(../img/lines.png) 0 -319px repeat-x;
    color: #000;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Sans", Lucida, Arial, sans-serif;
}

.container {
    margin: 0 auto;
    width: 915px;
}


p {
    margin: 0 0 30px;
}

.image-showcase {
    position: relative;
    background: url(../img/main_bk.png) 205px 0 no-repeat;
    width: 100%;
    height: 670px;
}

.nav ul {
    float: right;
    font-size: 12px;
    font-weight: normal;
    list-style: none;
    list-style-image: none;
    margin: 53px 0 0;
    text-transform: uppercase;
}

.nav li {
    float: left;
}

.nav a {
    display: block;
    padding: 0 14px;
}

.nav li:last-child a {
    padding-right: 0;
}

.nav em {
    font-style: normal;
    display: block;
    padding: 13px 0 17px;
}

.nav a, .nav a:hover, .nav a:visited {
    font-weight: normal;
    text-decoration: none;
}

.nav li:hover em, .nav .selected em {
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
    padding: 12px 0 16px;
}

.nav .selected {
    text-shadow: 1px 1px 1px #bbb;
    filter: shadow(color=#bbbbbb, direction=135, strength=1);
}

.main {
    clear: both;
    overflow: hidden;
    width: 946px;
}

.main p, .main form, .main label, .main input {
    font-family: Verdana, Arial, Tahoma, sans-serif;
    font-size: 12px;
}

.main .main-photo {
    float: right;
    margin: 0 0 40px 60px;
    width: 250px;
    height: 250px;
}

.small-image-container {
    float: left;
    margin: 8px 0 0;
    width: 148px;
}

.recommendations .small-image-container {
    width: 115px;
    margin-top: 13px;
}

.small-image-container.first-in-row {
    clear: both;
}

.right {
    float: right;
}

.photo {
    width: 200px;
    height: 200px;
    position: relative;
    float: left;
}

.large-image-container .photo {
    width: 250px;
    height: 250px;
}

.small-image-container .photo {
    width: 115px;
    height: 115px;
}

.authors-page .photo {
    margin-left: 25px;
}

.photo img, .photo .rounded {
    max-height: 100%;
    max-width: 100%;
    position: relative;
    z-index: 0;
}

.selection {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 10px;
    left: 10px;
    background-color: #231f20;
    visibility: hidden;
}

.small-image-container .selection {
    top: 7px;
    left: 7px;
}

.modern .photo:hover .selection {
    visibility: visible;
}

.photo img, .photo .selection, .round-image, .rounded {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.rounded {
    overflow: hidden;
    -moz-background-size: contain;
    background-size: contain;
    display: block;
    width: 100%;
    height: 100%;
}

.oldie .photo img, .oldie .photo .rounded, .oldie .photo .selection, .oldie .round-image {
    behavior: url('PIE.htc');
}

.oldie .photo img {
    visibility: hidden;
}

.oldie img.pie_first-child {
    visibility: visible;
}


/* rounded images with selection */
/* image solution */
/* .main .image-link {
	cursor: pointer;
	display: inline-block;
	position: relative;
}
.main .selection {
	display: block;
	height: 210px;
	left: 0;
	position: absolute;
	top: 0;
	width: 210px;
}
.main a:hover .selection {
	background: url(../img/hover.png) no-repeat 0 0;
}
.small-image-container .selection {
	height: 120px;
	width: 119px;
}
.small-image-container a:hover .selection {
	background: url(../img/small_hover.png) no-repeat 0 0;
}
.large-image-container .selection {
	height: 262px;
	width: 262px;
	z-index: -1;
}
.large-image-container a:hover .selection {
	background: url(../img/hover_large.png) no-repeat 0 0;
}*/


/* border-radius solution */
.image-sample {
    position: absolute;
}

.shadow {
    display: block;
    position: absolute;
    z-index: 0;
}

.image-sample img, .image-sample .rounded {
    z-index: 1;
}

.image-sample img:hover, .image-sample .rounded:hover {
    opacity: 0.8;
}

.image-sample .image-description {
    position: relative;
    z-index: 2;
}

.left-image-container {
    top: 0;
    left: 62px;
}

.left-image-container .photo {
    width: 278px;
    height: 278px;
}

.left-image-container .shadow {
    background: url(../img/shadow_left.png) no-repeat;
    width: 309px;
    height: 312px;
}

.left-image-container .image-description {
    left: -53px;
    top: -60px;
}

.middle-image-container {
    top: 150px;
    left: 285px;
}

.middle-image-container .photo {
    width: 376px;
    height: 376px;
}

.middle-image-container .shadow {
    background: url(../img/shadow_middle.png) no-repeat;
    width: 429px;
    height: 429px;
}

.middle-image-container .image-description {
    left: 47px;
    top: -10px;
}

.right-image-container {
    right: 130px;
}

.right-image-container .photo {
    width: 228px;
    height: 228px;
}

.right-image-container .shadow {
    background: url(../img/shadow_right.png) no-repeat;
    width: 253px;
    height: 265px;
}

.right-image-container .image-description {
    left: 227px;
    top: -222px;
}


.main .image-description {
    clear: both;
    color: #4e4e4e;
    font-size: 11px;
    padding: 12px 0 28px;
    text-transform: uppercase;
    line-height: 1.1;
}

.grid-1 .image-description:last-child {
    padding-bottom: 2px;
}

.authors-photos {
    background: url(../img/authors_bk.png) no-repeat 0 50%;
    margin: 15px 0 0;
}

.authors-photos .image-description {
    font-size: 13px;
    padding: 16px 0 0 5px;
    margin-bottom: 40px;
}

.author-overview {
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 35px;
    overflow: auto;
    padding-bottom: 15px;
    width: 100%;
}

/* forms, filter, order */
.filter {
    margin-top: 50px;
}

form ul {
    padding: 0;
    margin: 0;
    list-style: none;
    list-style-image: none;
}

form li {
    display: block;
    padding: 2px 0;
}

.filter li {
    height: 24px;
}

.price-filter li {
    /* background: url("../img/filter.png") repeat-x scroll 0 8px transparent; */
    background: url("../img/lines.png") repeat-x scroll 0 -100px transparent;
    width: 100%;
    clear: both;
}

li.filter-category {
    background: none;
}

.order-page form {
    margin: 0 0 0 15px;
}

.order-page input, .order-page span {
    width: 320px;
    padding: 6px 4px 7px;
}

.order-page input.error {
    background: none repeat scroll 0 0 #870909;
}

.order-page label.error {
    width: 0px;
    height: 0px;
}

.order-page span {
    padding-left: 0;
}

.oldie .order-page input {
    vertical-align: middle;
}

.filter label {
    display: block;
    float: left;
    padding: 0 13px;
    width: auto;
    font-style: normal;
}

.order-page label, .group-label {
    float: none;
    display: inline-block;
    font-style: normal;
    height: 20px;
    width: 240px;
}

.filter input {
    float: left;
}

.price-filter label {
    width: auto;
    margin: 0;
    background: white;
}

.price-filter input {
    margin: 0;
    background-color: white;
}

form input {
    background: #000;
    color: #fff;
    border: none;
}

form textarea {
    background: #000;
    color: #fff;
    border: none;
}

form input[type=checkbox], form input[type=radio] {
    background: #fff;
    width: auto;
}

.order-page input[type=checkbox], .order-page input[type=radio] {
    margin-right: 5px;
    height: auto;
}

form .short {
    width: 90px;
}

form .shorter {
    width: 60px;
}

form span {
    padding-right: 8px;
    cursor: default;
    font-weight: bold;
    text-transform: uppercase;
}

form .price {
    font-size: 14px;
    text-transform: none;
}

.purchase-data {
    padding: 35px 0;
    margin: 25px 0;
    border-bottom: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
}

.accept-terms {
    height: 80px;
    margin-top: 70px;
    position: relative;
}

.accept-terms label {
    width: 400px;
}

.order {
    position: absolute;
    bottom: 5px;
    right: 0;
}

/*.order_en {*/
/*    magin-top: 20px;*/
/*    background: url(../img/order_en.png) no-repeat;*/
/*}*/

.radio-group {
    margin-top: 5px;
}

.radio-group label {
    width: auto;
    margin-right: 15px;
}

input.order {
    float: right;
    background-position: -188px 0;
    width: 124px;
    height: 124px;
}

.filter-categories {
    border-bottom: 4px solid #000;
    padding-bottom: 9px;
    overflow: auto;
    width: 100%;
}

.price-filter {
    margin-top: 13px;
}

.filter-categories li {
    width: 49.9%; /* 50% doesn't work in IE7 */
    float: left;
    display: block;
}

.filter-categories, .filter-category {
    font-weight: bold;
}


.grid-container {
    overflow: hidden;
    width: 100%;
}

.grid-1, .grid-2 {
    display: block;
    float: left;
    margin: 0 31px;
    position: relative;
}

.category-overlay {
    position: absolute;
    z-index: 2;
}

.grid-1 {
    width: 251px;
}

.grid-2 {
    margin-left: 0;
    width: 595px;
}

/* make equal height columns */
.news .grid-1 {
    padding-bottom: 500px;
    margin-bottom: -500px;
}

/* except for ie7 where it doesn't work */
.ie7 .news .grid-1 {
    padding-bottom: 0;
    margin-bottom: 0;
}

.category-page .content {
    background: url(../img/photography_bk.png) no-repeat 80% 18%;
    overflow: auto;
    margin-bottom: 30px;
}

.category-page .first-column, .grid-1.first, .grid-1.middle {
    border-right: 1px solid #a7a5a5;
    margin-right: 0;
    padding-right: 30px;
}

.recommendations, .news {
    margin-bottom: 30px;
}

.product-info {
    margin-bottom: 50px;
}

.product-info p {
    margin-right: 10px;
}

.news p {
    margin-bottom: 0;
}

.large-preview {
    border: 1px solid #e2e1e1;
    position: relative;
}

.large-preview img {
    display: block;
    margin: 60px auto;
    text-align: center;
}

.footer {
    /* background: url(../img/footer.png) repeat-x top; */
    background: url(../img/lines.png) 0 -210px repeat-x;
    color: #666;
    font-size: 10px;
    margin: 20px 0 0 30px;
    padding: 25px 0 15px;
    text-shadow: 0 0 1px #bbb;
    text-transform: uppercase;
}

.footer strong {
    color: #000;
}

/* hide buttons if JS is disabled */
button.ir {
    display: none;
}

.js button.ir {
    display: block;
}

/* ==|=======================================================================
   Colorbox
   ========================================================================== */

/*  ColorBox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#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%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
    cursor: pointer;
}

.cboxPhoto {
    float: left;
    margin: auto;
    border: 0;
    display: block;
}

.cboxIframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* 
    User Style:
    Change the following styles to modify the appearance of ColorBox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
    background: #fff;
}

#colorbox {
    overflow: none;
}

#cboxContent {
    overflow: none;
    padding-right: 50px
}

#cboxError, #cboxLoadedContent {
    background: #fff;
    padding: 30px;
}

#cboxLoadedContent {
    border: 1px solid #d9d9d9;
}

#cboxTitle, #cboxCurrent, #cboxSlideshow, #cboxPrevious, #cboxNext {
    position: absolute;
    bottom: 0;
    color: #444;
}

#cboxTitle {
    left: 0;
    text-align: center;
    width: 100%;
    color: #999;
}

#cboxCurrent {
    left: 100px;
    color: #999;
}

#cboxSlideshow {
    right: 42px;
}

#cboxPrevious {
    left: 0;
}

#cboxNext {
    left: 63px;
}

#cboxLoadingOverlay {
    background: #fff url(../img/loading.gif) no-repeat 50% 50%;
}

#cboxClose {
    position: absolute;
    background: url(../img/sprite.png) no-repeat -647px 0 transparent;
    top: 5px;
    right: 0;
    display: block;
    width: 32px;
    height: 32px;
    color: #444;
    text-indent: -999em;
    direction: ltr;
}

/* ==|=======================================================================
   Checkboxes
   ========================================================================== */

.ui-helper-hidden-accessible {
    left: -999em;
    position: absolute;
}

.ui-radio-state-disabled,
.ui-radio-state-checked-disabled,
.ui-radio-state-disabled-hover,
.ui-radio-state-checked-disabled-hover {
    color: #999;
}

span.ui-checkbox,
span.ui-radio {
    background: url(../img/sprite.png) -707px 0 no-repeat;
    display: inline-block;
    float: left;
    height: 18px;
    width: 18px;
    padding: 0;
}

.order-page span.ui-checkbox,
.order-page span.ui-radio {
    float: none;
    padding-right: 5px;
    margin-top: -3px;
    vertical-align: middle;
}

.order-page span.ui-checkbox {
    margin-top: -13px;
}

span.ui-helper-hidden {
    display: none;
}

span.ui-checkbox-checked,
span.ui-radio-checked {
    background-position: -684px 0;
}

span.ui-radio-hover,
span.ui-checkbox-hover {
    filter: alpha(opacity=65);
    opacity: 0.65;
}

span.ui-radio-disabled, label.ui-radio-disabled,
span.ui-checkbox-disabled, label.ui-checkbox-disabled {
    filter: alpha(opacity=40);
    opacity: 0.4;
}

/* ==|== non-semantic helper classes ========================================
   Please define your styles before this section.
   ========================================================================== */

/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden {
    display: none !important;
    visibility: hidden;
}

/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/* Hide visually and from screenreaders, but maintain layout */
.invisible {
    visibility: hidden;
}

.visible {
    visibility: visible;
}

/* Contain floats: h5bp.com/q */
.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

@media screen and (max-width: 1100px) {

    .nav ul {
        background-color: yellow;
        float: none;
        font-size: 2.4vw;
        line-height: 0.4;
    }

    .main .image-description {
        font-size: 1.6vw;
    }

    .main p, .main form, .main label, .main input {
        font-size: 2.0vw;
    }

    .authors-photos .image-description {
        font-size: 1.6vw
    }
}
.header {
  background: url("/img/logo.png") no-repeat left;
  float: left;
  height: 72px;
  margin: 35px 30px 52px 0;
  width: 150px;
}

.header_int {
  background: url("/img/eas_logo_small.png") no-repeat left;
  float: left;
  height: 89px;
  margin: 35px 30px 52px 0;
  width: 176px;
}

.main-page .header {
  margin-bottom: 40px;
}

.logo-link {
  display: block;
}

.header > a,
.header_int > a {
  display: block;
  width: 100%;
  height: 100%;
}

h1,
h2,
h3,
h4 {
  font-weight: normal;
  line-height: 1;
  margin: 0;
  text-shadow: 0 1px 1px #aaa;
  text-transform: uppercase;
}

h1 {
  border: 0;
  direction: ltr;
  display: block;
  overflow: hidden;
  text-align: left;
  text-indent: -999em;
}

h2 {
  background: url("/img/lines.png") no-repeat scroll 0 89px transparent;
  font-size: 44px;
  margin: 0 0 33px;
  padding: 0 0 55px;
}

h3 {
  font-size: 23px;
  margin-bottom: 35px;
}

h4 {
  font-size: 16px;
  margin-bottom: 20px;
  text-shadow: 0 1px 1px #ccc;
}

.filter h3,
.product-page h3 {
  font-size: 33px;
  margin-bottom: 30px;
}

.main-page h2 {
  background-position: 0 226px;
  font-size: 31px;
  text-shadow: 0 1px 1px #ccc;
  height: 180px;
  margin-top: 10px;
}

.main-page h2 em {
  display: block;
  color: #a7a5a6;
  font-style: normal;
  text-shadow: none;
}

.ir {
  background: url("/img/sprite.png") no-repeat top left;
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}

.ir br {
  display: none;
}

.buy_en {
  background: url("/img/buy_en.png") no-repeat;
  height: 124px;
  width: 124px;
  margin-left: 50px;
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}

.buy_en br {
  display: none;
}

.back {
  background-position: 0 0;
  height: 53px;
  width: 54px;
}

.buy {
  background-position: -59px 0;
  height: 124px;
  width: 124px;
  margin-left: 50px;
}

.buy,
.buy_en {
  border-radius: 50%;
}

.buy-link {
  position: relative;
  display: inline-block;
  padding-left: 50px;
}

.buy-link .buy-shadow {
  display: block;
  position: absolute;
  top: 7px;
  left: 57px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background-color: #231f20;
  visibility: hidden;
  z-index: 0;
}

.buy-link .buy,
.buy-link .buy_en {
  margin-left: 0;
  position: relative;
  z-index: 1;
}

.buy-link:hover .buy-shadow {
  visibility: visible;
}

.buy-link:hover .buy.ir {
  filter: none;
  opacity: 1;
}

.scroll-left,
.scroll-right {
  position: absolute;
  z-index: 3;
}

.scroll-left {
  background-position: -317px 0;
  height: 147px;
  width: 147px;
  left: 49px;
  top: 337px;
}

.scroll-right {
  background-position: -469px 0;
  height: 173px;
  width: 173px;
  right: 48px;
  top: 324px;
}

.oldie .scroll-left:hover,
.oldie .scroll-right:hover {
  filter: none;
}

a:hover .ir,
.ir:hover,
input[type="submit"]:hover,
#cboxClose:hover {
  filter: alpha(opacity=65);
  opacity: 0.65;
}

input.order_en {
  margin-top: 20px;
  background: url("/img/buy_en.png") no-repeat 0 0;
  height: 124px;
  width: 124px;
  display: block;
  float: right;
}

span.askwarning {
  color: red;
  display: none;
  text-transform: none;
}

div#askform {
  display: none;
}

div.scale {
  display: none;
}

h2.news {
  height: auto;
  padding: 0;
  background: none;
  margin-top: 20px;
}

h4.unavailable {
  color: #870909;
}

img.miniature {
  position: relative;
  top: -110px;
  left: 115px;
  opacity: 0.7;
}
:root {
  --page-max-width: 915px;
  --font-sans-base: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Sans", Lucida, Arial, sans-serif;
  --font-ui: Verdana, Arial, Tahoma, sans-serif;
  --text-color-default: #000;
}

a,
a:hover,
a:visited {
  color: #000;
  font-weight: normal;
  text-decoration: none;
}

p a,
p a:hover,
p a:visited {
  font-weight: bold;
}

.hidden {
  display: none !important;
  visibility: hidden;
}
.container {
  margin: 0 auto;
  width: var(--page-max-width);
}

body {
  background: url("/img/lines.png") 0 -319px repeat-x;
  color: var(--text-color-default);
  font-family: var(--font-sans-base);
}
