@charset "utf-8";
@import url("anythingslider.css");
@import url("uniform.css");

/*
* - Reset
* - Typography
* - Forms
* - Common
* - Pages
    * - Header
    * - Footer
    * - Main
    * - Contacts
    * - Search results
    * - Lexicon
    * - News
    * - Products/receipts
* - Brand
* - Popups
* - End
* - Responsive
* - Print
*/

/* - - - - - - - - - - - - - Reset - - - - - - - - - - - - - */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline: 0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {
    line-height:1;
    background: #fff url("../img/bg.png") no-repeat 50% 0;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display:block;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content:'';
    content:none;
}
ins {
    text-decoration:none;
}
mark {
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
audio, canvas, video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}
audio:not([controls]), [hidden] {
    display: none;
}
[hidden] {
    display: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
td {
    vertical-align: top;
}

hr, legend {
    display:none;
}

input, select, button {
    overflow: visible;
    vertical-align: middle;
}

/* - - - - - - - - - - - - - Typography - - - - - - - - - - - - - */

html {
    font-size: 100%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body, button, input, select, textarea {
    font-size: 14px; /*62.5%*/
    font-family: Arial, Helvetica, sans-serif;
    color: #444;
    line-height: 1;
}
button, input, select, textarea {
    font-size: 1em;
    outline: none;
}

input, select, textarea {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: #00e;
    text-decoration: none;
}
a:focus {
    outline: thin dotted;
}

b, strong {
    font-weight: bold;
}
hr {
    display: none;
}
ins {
    background: #ff9;
    color: #000;
    text-decoration: none;
}
mark {
    background: #ff0;
    color: #000;
    font-style: italic;
    font-weight: bold;
}
pre, code, kbd, samp {
    font-family: monospace, monospace;
    _font-family: 'courier new', monospace;
    font-size: 1em;
}
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%;
}
big {
    font-size: 115%;
}
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}
svg:not(:root) {
    overflow: hidden;
}
figure {
    margin: 0;
}

/* - - - - - - - - - - - - - Forms - - - - - - - - - - - - - */

label {
    cursor: pointer;
}
legend {
    border: 0;
    *margin-left: -7px;
    padding: 0;
}
button, input, select, textarea {
    margin: 0;
    vertical-align: baseline;
    *vertical-align: middle;
}
button, input {
    line-height: normal;
    *overflow: visible;
}
table button, table input {
    *overflow: auto;
}
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;
}
textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
    min-height: 128px;
    padding: 10px;
}
input:invalid, textarea:invalid {
    border: 1px solid red;
    color: red;
    background: red;
}
.error label {
    color: red;
}
textarea, input, select {
    border: 1px solid #666;
}
textarea:focus, textarea:active, input[type="text"]:focus, input[type="text"]:active, input[type="password"]:focus, input[type="password"]:active, select:focus, select:active {
    border: 1px solid #999;
    color: #222;
}

input[type="text"], textarea, select {
    background: #fff;
    border: 1px solid #ddd;
    border-top: 1px solid #8f989e;
    border-radius: 3px;
    box-shadow: 0 1px 0 #c9d5dd inset;
    color: #666;
}

input[type="text"] {
    height: 32px;
    padding: 0 10px;
}

.lt-ie9 input[type="text"] {
    line-height: 32px;
}

select {
    padding: 0 0 0 5px;
}

/* - - - - - - - - - - - - - Common - - - - - - - - - - - - - */

.align-right {
    text-align: right;
}
.align-left {
    text-align: left;
}
.align-center {
    text-align: center;
}
.left {
    float: left;
}
.right {
    float: right;
}
.sprite {
    background-image: url("../img/bg-sprite.png");
    background-position: 0 0;
    background-repeat: no-repeat;
}

.header, .footer, #main {
    width: 960px;
    margin: 0 auto;
    position: relative;
    display: block;
}

.font, .button {
    font-family: "PT Sans", "Trebuchet MS";
}

.font-narrow {
    font-family: "PT Sans narrow", "Trebuchet MS";
}


.button {
    color: #fff;
    border: 1px solid #004081;
    border-radius: 3px;
    font-size: 20px;
    text-align: center;
    text-shadow: 0 1px 0 rgba(0,0,0,.5);
    line-height: 38px;
    min-height: 38px;
    padding: 0 20px;
    display: inline-block;
    box-shadow: 0 1px 1px rgba(0,0,0,.2);
    background: #007dbe; /* Old browsers */
    background: -moz-linear-gradient(top,  #007dbe 0%, #004081 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#007dbe), color-stop(100%,#004081)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #007dbe 0%,#004081 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #007dbe 0%,#004081 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #007dbe 0%,#004081 100%); /* IE10+ */
    background: linear-gradient(top,  #007dbe 0%,#004081 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007dbe', endColorstr='#004081',GradientType=0 ); /* IE6-9 */
}

    .button:hover, .button:focus {
        border: 1px solid #005cb3;
        background: #0086c8; /* Old browsers */
        background: -moz-linear-gradient(top,  #0086c8 0%, #005cb3 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0086c8), color-stop(100%,#005cb3)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top,  #0086c8 0%,#005cb3 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top,  #0086c8 0%,#005cb3 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top,  #0086c8 0%,#005cb3 100%); /* IE10+ */
        background: linear-gradient(top,  #0086c8 0%,#005cb3 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0086c8', endColorstr='#005cb3',GradientType=0 ); /* IE6-9 */
    }

    .button:active {
        border: 1px solid #0083cc;
        background: #0061b3; /* Old browsers */
        background: -moz-linear-gradient(top,  #0061b3 0%, #0083cc 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0061b3), color-stop(100%,#0083cc)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top,  #0061b3 0%,#0083cc 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top,  #0061b3 0%,#0083cc 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top,  #0061b3 0%,#0083cc 100%); /* IE10+ */
        background: linear-gradient(top,  #0061b3 0%,#0083cc 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0061b3', endColorstr='#0083cc',GradientType=0 ); /* IE6-9 */
    }
	
/* ICONS */

@font-face {
	font-family: 'Icons';
	src: url('../mobile/font/fontawesome-webfont.eot?') format('embedded-opentype'),
		 url('../mobile/font/fontawesome-webfont.woff') format('woff'),
		 url('../mobile/font/fontawesome-webfont.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
.icon {
	font-family: Icons;
	font-style: normal;
	font-weight: normal;
	line-height: normal;
	text-decoration: none;
	vertical-align: baseline;
	width: auto;
	height: auto;
	display: inline;
}
.icon:before {
	display: inline-block;
}
.icon-angle-right:before {
	content: "\f105";
}


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - Pages - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */


/* - - - - - - - - - - - - Header - - - - - - - - - - - - - */


#header {
    z-index: 100;
    background: url("../img/bg-header.png") no-repeat 50% 100%;
    padding: 0 0 80px;
    position: relative;
}
    #header.frontpage {
        background: none;
        padding: 0;
    }

.menu-toggle, .search-toggle, .submenu-toggle {
    display: none;
}

.branding {
    float: left;
    padding: 25px 0 0 25px;
}

.site-tools {
    float: right;
    font-size: 14px;
}

    .site-tools > ul {
        float: right;
    }

    .site-tools > ul > li {
        float: left;
    }

    .site-tools .youtube, .site-tools .facebook {
        display: block;
        width: 30px;
        height: 37px;
        margin-left: 30px;
        margin-bottom: 3px;
        background-position: 0 -3px;
    }

    .site-tools .facebook {
        margin-left: 4px;
    }

        .site-tools .facebook:hover, .site-tools .facebook:focus {
            background-position: 0 0;
            height: 40px;
            margin-bottom: 0;
        }

    .site-tools .youtube {
        background-position: -32px -3px;
    }

        .site-tools .youtube:hover, .site-tools .youtube:focus {
            background-position: -32px 0;
            height: 40px;
            margin-bottom: 0;
        }

    .site-tools a {
        color: #3d669a;
    }

    .site-tools .sep {
        background: url("../img/bg-tools-sep.png") no-repeat 0 50%;
        padding: 0 0 0 15px;
        margin: 12px 0 0 10px;
        line-height: 25px;
    }

    .site-tools .sep a:hover, .site-tools .sep a:focus {
        text-decoration: underline;
    }

.search {
    clear: both;
    display: block;
    padding: 30px 0 0;
    float: right;
}

    .search input[type="text"] {
        width: 200px;
        background: #e6f4fd;
        border-right: 1px solid #c9d5dd;
        border-left: 1px solid #c9d5dd;
        border-bottom: 1px solid #e6f4fd;
        border-top: 1px solid #8f989e;
        padding: 0 40px 0 8px;
        float: left;
        color: #888;
    }

        .search input::-webkit-input-placeholder {
            color: #74c0f4;
        }
        .search input:-moz-placeholder {
            color: #74c0f4;
        }

        .search input[type="text"]:focus {
            color: #333;
        }

    .search input[type="submit"], .receipts .content-search .s {
        border: none;
        background-position: -64px 0;
        background-color: transparent;
        width: 30px;
        display: inline-block;
        height: 32px;
        margin: 0 0 0 -32px;
    }

    .search input[type="submit"]:hover, .search input[type="submit"]:focus, .search input[type="text"]:focus + input {
        background-position: -103px 0;
    }


nav {
    font-size: 0;
    padding: 20px 0 0;
    clear: both;
    width: 100%;
}

nav ol > li {
    display: inline-block;
    position: relative;
}

    nav a {
        color: #003479;
    }

    nav ol > li > a {
        font-size: 20px;
        background-image: url("../img/bg-nav-sep.png");
        background-repeat: no-repeat;
        background-position: 0 50%;
        padding: 0 18px;
        display: block;
        min-height: 50px;
        line-height: 50px;
        border-radius: 3px;
        overflow: hidden;
    }

    nav ol > li:first-child a {
        background: url("../img/bg-home.png") no-repeat 50% 0;
        text-indent: -100em;
        width: 20px;
    }

        nav ol > li:first-child a:hover, nav ol > li:first-child a:focus {
            background-position: 50% -50px;
        }

    nav ol > li a:hover, nav ol > li a:focus {
        color: #009ddb;
    }

    nav ol > li.active > a {
        color: #fff;
        background: #007ebf; /* Old browsers */
        background: -moz-linear-gradient(top,  #007ebf 0%, #004081 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#007ebf), color-stop(100%,#004081)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top,  #007ebf 0%,#004081 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top,  #007ebf 0%,#004081 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top,  #007ebf 0%,#004081 100%); /* IE10+ */
        background: linear-gradient(top,  #007ebf 0%,#004081 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007ebf', endColorstr='#004081',GradientType=0 ); /* IE6-9 */
    }

        nav ol > li:first-child.active a {
            background: #007ebf url("../img/bg-home-act.png") no-repeat 50% 50%; /* Old browsers */
            background: url("../img/bg-home-act.png") no-repeat 50% 50%, -moz-linear-gradient(top,  #007ebf 0%, #004081 100%); /* FF3.6+ */
            background: url("../img/bg-home-act.png") no-repeat 50% 50%, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#007ebf), color-stop(100%,#004081)); /* Chrome,Safari4+ */
            background: url("../img/bg-home-act.png") no-repeat 50% 50%, -webkit-linear-gradient(top,  #007ebf 0%,#004081 100%); /* Chrome10+,Safari5.1+ */
            background: url("../img/bg-home-act.png") no-repeat 50% 50%, -o-linear-gradient(top,  #007ebf 0%,#004081 100%); /* Opera 11.10+ */
            background: url("../img/bg-home-act.png") no-repeat 50% 50%, -ms-linear-gradient(top,  #007ebf 0%,#004081 100%); /* IE10+ */
            background: url("../img/bg-home-act.png") no-repeat 50% 50%, linear-gradient(top,  #007ebf 0%,#004081 100%); /* W3C */
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007ebf', endColorstr='#004081',GradientType=0 ); /* IE6-9 */
        }

        .lt-ie9 nav ol > li:first-child.active a {
            position: relative;
            z-index: -1;
        }

            .lt-ie9 nav ol > li:first-child.active a:after {
                content: ".";
                display: block;
                position: absolute;
                left: 0;
                top: 0;
                height: 50px;
                width: 55px;
                background: url("../img/bg-home-act.png") no-repeat 50% 50%;
                z-index: 1;
            }

        nav ol > li.active + li > a {
            background-image: none;
        }

    nav ul {
        display: none;
        background: #e6f4fd;
        box-shadow: 0 0 10px rgba(0,0,0,.3);
        border-radius: 5px;
        padding: 14px 40px 14px 25px;
        position: absolute;
        left: 18px;
        top: 50px;
        z-index: 2;
    }

        nav ol > li:hover ul {
            display: block;
        }
        
        nav ol > li.active:hover ul {
            display: none;
        }

        nav ul:after {
            content: ".";
            display: block;
            position: absolute;
            left: 14px;
            top: -13px;
            height: 13px;
            width: 20px;
            background: url("../img/bg-nav-arrow.png") no-repeat 0 0;
        }

        nav ul li {
            display: block;
            clear: both;
            font-size: 14px;
            font-weight: 700;
            padding: 8px 0 8px 12px;
            background: url("../img/bg-nav-bullet.png") no-repeat 0 12px;
        }

        nav ul li {
            white-space: nowrap;
        }

        nav ul a {
            background: none;
        }

.lang {
    position: relative;
    line-height: 29px;
    margin: 10px 0 0;
    background-position: 101% -243px;
}

    .lang a {
        display: block;
        width: 90px;
        padding: 0 25px 0 35px;
    }

    .lang a:hover, .lang a:focus {
        color: #000;
    }

    .lang:hover {
        background-color: #e6f4fd;
        border-radius: 4px 4px 0 0;
        box-shadow: 0 0 2px rgba(0,0,0,.3);
        background-position: 101% -280px;
    }

    .lang ul {
        display: none;
        position: absolute;
        left: 0;
        top: 29px;
        padding: 5px 0;
        border-top: 1px solid #fff;
        background: #e6f4fd;
        border-radius: 0 0 4px 4px;
        box-shadow: 0 1px 2px rgba(0,0,0,.3);
    }

    .lang:hover ul, .lang > a:hover + ul {
        display: block;
    }

    .lang .lv {
        background-position: 6px -340px;
    }

    .lang .en {
        background-position: 6px -371px;
    }

    .lang .ru {
        background-position: 6px -406px;
    }

/* - - - - - - - - - - - - - Footer - - - - - - - - - - - - - */

#footer {
    background: url("../img/bg-footer.png") no-repeat 50% 0;
    min-height: 230px;
    padding: 49px 0 0;
    font-size: 14px;
    color: #666;
    margin-top: 50px;
}

.footer .logoroll {
    text-align: center;
    min-height: 145px;
}

    .footer .logoroll li {
        display: inline-block;
        padding: 0 20px;
    }
    
    .footer .logoroll img {
        width: auto;
        height: auto;
        max-width: 120px;
        max-height: 120px;
    }

.footer .vcard {
    text-align: center;
}

    .footer .vcard li {
        background: url("../img/bg-footer-sep.png") no-repeat 0 50%;
        display: inline-block;
        padding: 6px 20px;
        margin: 0;
    }

        .footer .vcard li:first-child {
            background: none;
            font-weight: 700;
        }

        .footer .vcard a {
            color: #3d669a;
        }

        .footer .vcard a:hover, footer .vcard a:active {
            text-decoration: underline;
        }

        .footer abbr[title] {
            border: none;
            cursor: default;
        }

/* - - - - - - - - - - - - - Main - - - - - - - - - - - - - */

#main {
    z-index: 1;
}

#main.with-sidebar {
    background: url("../img/bg-content.png") repeat-y 50% 0;
    margin-top: -50px;
}

.content {
    line-height: 1.5;
}

.with-sidebar .content {
    padding-top: 50px;
}

.content a, .content h1, .content h2 {
    color: #003479;
}
    .content a:hover, .content a:active {
        text-decoration: underline;
    }

.content h1, .content h2 {
    line-height: 1.2;
}

.mainbanner {
    margin: 30px 0 0;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    line-height: 0;
    font-size: 0;
    background: #fff;
    clear: both;
    }

    .mainbanner img {
        border-radius: 3px;
    }

.intro {
    padding: 30px 0 0;
}

    .intro .item {
        position: relative;
        text-align: center;
        float: left;
        width: 33.333%;
    }

    .intro .mask {
        position: relative;
        width: 250px;
        height: 165px;
        margin: 0 auto;
        z-index: 1;
    }

    .intro .mask img {
        position: relative;
        z-index: -1;
        display: block;
    }

        .intro .mask:after {
            content: ".";
            text-indent: -1000em;
            overflow: hidden;
            background: url("../img/mask-intro.png") no-repeat 0 0;
            display: block;
            height: 165px;
            width: 250px;
            position: absolute;
            left: 0;
            top: 0;
            z-index: 2;
        }

    .intro h2 {
        font-size: 20px;
        margin: 20px 0 0;
    }

    .intro p {
        margin: .5em 0;
    }

    .intro h2, .intro p {
        padding: 0 15px;
    }

    .intro .ext {
        background: url("../img/bg-ext.png") no-repeat 100% 70%;
        padding: 0 25px 0 0;
    }


.intro .label {
    text-align: center;
    display: table;
    position: relative;
    z-index: 2;
}

.intro .label {
    background-position: -151px 0;
    height: 74px;
    width: 106px;
    font-size: 21px;
    margin-bottom: -55px;
    z-index: 3;
}

    .label span, .label h1 {
        display: table-cell;
        vertical-align: middle;
        color: #fff;
        font-weight: normal;
        line-height: 1;
    }

    .label .facebook {
        background-position: -301px -16px;
        display: inline-block;
        width: 24px;
        height: 40px;
        margin: 15px 0 0;
    }

    .label .draugiem {
	    background-position: -280px -538px;
	    display: inline-block;
	    height: 46px;
	    margin: 12px 0 0 -5px;
	    width: 60px;
    }

    /*WTF facebook*/

    .fb-like > div {
        width: auto;
        padding: 0 0 0 130px;
    }

    .fb_iframe_widget span {
        display: block !important;
    }

.intro .fb-like-box {
    margin-top: 40px;
}

.sidebar {
    float: left;
    width: 240px;
}

    .submenu {
        font-weight: 700;
        background: #e6f4fd;
        border-radius: 3px;
        padding: 50px 0 40px;
        margin: 0 0 20px;
    }

        .submenu li {
            display: block;
            clear: both;
        }

        .submenu a {
            color: #003479;
            display: block;
            padding: 8px 10px 8px 30px;
            background: url("../img/bg-nav-bullet.png") no-repeat 18px 11px;
        }

            .submenu a:hover, .submenu a:focus {
                color: #009ddb;
            }

        .submenu > li > .active {
            background: url("../img/bg-sidebar-active.png") no-repeat 100% 50%;
            margin-right: -5px;
            padding-left: 20px;
            color: #fff;
        }

        .submenu ul {
            background: #fafdff url("../img/bg-submenu.png") no-repeat 0 100%;
            padding: 10px 0 18px 18px;
        }
            .submenu ul li {
                font-weight: normal;
            }

            .submenu ul li a {
                padding: 6px 10px 6px 12px;
                background-position: 0 9px;
            }

            .submenu ul li a.active {
                background-image: url("../img/bg-nav-bullet-active.png");
                color: #005fa0;
                font-weight: 700;
            }

    .sidebanners li {
        clear: both;
        position: relative;
    }

    .sidebanners .get-in-touch  {
        border-radius: 3px;
        display: block;
        line-height: 50px;
        min-height: 50px;
        background-position: -360px -74px;
        color: #fff;
        font-size: 20px;
        text-align: center;
        text-shadow: 1px 1px 1px rgba(0,0,0,.3);
    }

        .sidebanners .get-in-touch:hover, .sidebanners .get-in-touch:focus  {
            background-position: -360px -124px;
        }

.with-sidebar .content {
    float: right;
    width: 680px;
}

.content header {
    padding: 0 0 30px;
}

    .content article h1, .brand .about h1 {
        color: #003479;
        font-size: 30px;
        font-weight: 700;
        line-height: 1.1;
    }

    .content article h2 {
        color: #222;
        font-size: 22px;
        font-weight: 700;
        line-height: 1.1;
    }

    .content article > footer {
        position: relative;
    }

    .content .aside {
        border: 1px solid #ddd;
        border-radius: 3px;
        background: #fff;
        padding: 15px 20px;
        margin-bottom: 1em;
    }

    .content aside.right {
        margin-left: 2em !important;
    }

        .content .aside h3 {
            margin: 0 0 10px;
            color: #666;
            font-size: 16px;
            line-height: 1.1;
        }

        .content .aside ol, .content .aside ul {
            margin-left: 1em;
            margin-bottom: 0;
        }

.content footer {
    border-top: 1px solid #ddd;
    margin: 50px 0 0 0;
    padding: 5px 0 0;
    clear: both;
}

    .content footer .pages {
        margin: 6px 0 0;
    }

    .content footer ul {
        list-style: none;
        margin: 0;
    }

    .content footer .page-tools {
        text-align: center;
    }

    .content footer .page-tools li {
        display: inline-block;
        background: url("../img/bg-page-tools-sep.png") no-repeat 0 50%;
        padding: 6px 8px 6px 10px;
    }

    .content footer .page-tools li.left, .content footer .page-tools li.right {
        background: none;
        padding: 6px 0;
    }

    .content footer .page-tools li.left + li {
       background: none;
    }

    .content footer .back {
       background-position: 0 -72px;
       padding: 0 0 0 15px;
    }

        .content footer .back:hover, .content footer .back:focus {
           background-position: 0 -92px;
        }

    .content footer .top {
       background-position: 100% -70px;
       padding: 0 18px 0 0;
    }

        .content footer .top:hover, .content footer .top:focus {
           background-position: 100% -88px;
        }

.freetext p, .freetext ul, .freetext ol, .freetext h2, .freetext h3, .freetext table, .default-table {
    margin-bottom: 20px;
}

.freetext h2, .freetext h3 {
    margin-top: 25px;
}

.freetext ul, .freetext ol {
    margin-left: 2em;
}

.freetext ul, .bullet-list {
    list-style-image: url("../img/bg-bullet.png");
}

.freetext ul.nobullet {
    list-style: none;
    margin-left: 0;
}

.freetext table, .default-table {
    clear: both;
    width: 100%;
    border-bottom: 1px solid #9d9d9d;
    border-collapse: collapse;
}

    .default-table {
        border-top: 1px solid #ddd;
    }

    .freetext table thead th {
        background: #d3e8f6;
        color: #000;
        border-right: 1px solid #fff;
        text-align: left;
    }

    .freetext th, .freetext td, .default-table td {
        padding: 8px 15px;
    }

    .freetext td, .default-table td {
        border-bottom: 1px solid #ddd;
    }

    .freetext .lead {
        font-weight: 700;
    }

    .freetext img.right {
        margin: 5px 0 20px 2em;
    }

    .freetext img.left {
        margin: 5px 2em 20px 0;
    }

    .freetext .date {
        color: #999;
        margin: 5px 0 0;
    }

.pages {
    text-align: center;
}

    .pages li {
        display: inline-block;
    }

    .pages li a {
        padding: 2px 7px;
    }

    .pages .active {
        background: #003479;
        border-radius: 3px;
        color: #fff;
    }

    .pages .prev {
        background-position: 0 -72px;
        padding: 0 0 0 15px;
        margin: 0 30px 0 0;
    }

        .pages .prev:hover, .pages .prev:focus {
            background-position: 0 -92px;
        }

    .pages .next {
        background-position: 100% -115px;
        padding: 0 15px 0 0;
        margin: 0 0 0 30px;
    }

        .pages .next:hover, .pages .next:focus {
            background-position: 100% -135px;
        }

.hilite {
    color: #009ddb;
}

.right-area {
    float: right;
    width: 242px;
    padding: 0 0 50px;
}

.left-area {
    float: left;
    width: 398px;
    padding: 0 40px 50px 0;
}

.related, .product-view {
    border: 1px solid #ddd;
    border-radius: 3px;
    position: relative;
}

    .product-view {
        text-align: center;
    }

    .related {
        padding: 15px 10px 15px 15px;
        margin: 30px 0 0;
    }


    .content .related h2 {
        color: #666;
        font-size: 18px;
        padding: 0 0 20px !important;
    }

    .related li {
        position: relative;
        min-height: 60px;
        clear: both;
        padding: 0 0 10px 70px;
    }

    .related .visual {
        position: absolute;
        left: 0;
        top: 0;
        border: 1px solid #ddd;
        border-radius: 3px;
        display: block;
    }

    .related div {
        height: 60px;
        line-height: 1.2;
        position: relative;
        display: table;
    }

    .related div a {
        display: table-cell;
        vertical-align: middle;
        width: 100%;
    }

.labels {
    position: absolute;
    left: 0;
    top: -18px;
}

    .labels li {
        background: url("../img/bg-labels.png") no-repeat 0 0;
        width: 52px;
        height: 36px;
        display: block;
        float: left;
        margin: 0 2px;
    }

.labels li.en {
    background: url("../img/bg-labels-eng.png") no-repeat 0 0;
    width: 52px;
    height: 36px;
    display: block;
    float: left;
    margin: 0 2px;
}

.labels li.ru {
    background: url("../img/bg-labels-rus.png") no-repeat 0 0;
    width: 52px;
    height: 36px;
    display: block;
    float: left;
    margin: 0 2px;
}

    .labels .no-fat {
        background-position: -63px 0;
    }

    .labels .no-lac {
        background-position: -120px 0;
    }

    .labels .no-con {
        background-position: -176px 0;
    }

    .labels .clean {
        width: 54px;
        background-position: -233px 0;
    }

    .labels .no-fat.en {
        background: url("../img/bg-labels-eng.png") no-repeat 0 0;
        background-position: -63px 0;
    }

    .labels .no-lac.en {
        background: url("../img/bg-labels-eng.png") no-repeat 0 0;
        background-position: -120px 0;
    }

    .labels .no-con.en {
        background: url("../img/bg-labels-eng.png") no-repeat 0 0;
        background-position: -176px 0;
    }

    .labels .clean.en {
        width: 54px;
        background: url("../img/bg-labels-eng.png") no-repeat 0 0;
        background-position: -233px 0;
    }

.labels .no-fat.ru {
    background: url("../img/bg-labels-rus.png") no-repeat 0 0;
    background-position: -63px 0;
}

.labels .no-lac.ru {
    background: url("../img/bg-labels-rus.png") no-repeat 0 0;
    background-position: -120px 0;
}

.labels .no-con.ru {
    background: url("../img/bg-labels-rus.png") no-repeat 0 0;
    background-position: -176px 0;
}

.labels .clean.ru {
    width: 54px;
    background: url("../img/bg-labels-rus.png") no-repeat 0 0;
    background-position: -233px 0;
}

/* - - - - - - - - - - - - - Contacts - - - - - - - - - - - - - */

.contacts h2 {    
    border-bottom: 1px solid #ddd;
    padding: 0 0 10px;
    clear: both;
    width: 100%;
}

.contacts .contact {
    background: #fff url("../img/bg-location.png") no-repeat 100% 0;
    height: 238px;
    /*border: 1px solid #ddd;*/
    border-top: none;
    border-radius: 0 0 3px 3px;
    float: right;
    padding: 0 220px 0 0;
    position: relative;
}
    .contacts .contact .details {
        padding: 20px 0 0 20px;
        width: 210px;
    }

    .contacts .contact .details p {
        margin: 0 0 15px;
    }

    .contacts .contact .open-map {
        position: absolute;
        bottom: 0;
        right: -16px;
        width: 237px;
        background: url("../img/bg-contact-arrow.png") no-repeat 100% 50%;
        border-radius: 0 0 0 3px;
    }

    .contacts .contact .open-map p {
        border-top: 1px solid #ddd;
        padding: 15px 0 15px 20px;
        width: 210px;
    }

.first-contacts {
    width: 100%;
    padding: 0 0 30px;
}

    .first-contacts ul {
        padding: 20px 0 0;
        float: left;
    }

    .first-contacts .item {
        padding: 0 0 25px;
    }

.contacts-list {
    width: 100%;
    padding: 20px 0 30px;
}
    .contacts-list .item {
        float: left;
        width: 33.33%;
        min-height: 144px;
    }
    .contacts h3 {
        font-size: 18px;
        color: #009ddb;
        font-weight: normal;
        padding: 0 0 5px;
    }
    .contacts .position {
        font-weight: 700;
        color: #000;
        margin: -8px 0 5px 0;
    }
    .contacts .phone, .contacts .mobile, .contacts .fax, .contacts .email {
        padding: 0 0 0 20px;
    }
        .contacts .phone {
            background-position: -607px -74px;
        }
        .contacts .mobile {
            background-position: -607px -95px;
        }
        .contacts .fax {
            background-position: -607px -116px;
        }
        .contacts .email {
            background-position: -607px -137px;
        }

/* - - - - - - - - - - - - - Search results - - - - - - - - - - - - - */

.results {
    margin: 0 120px 0 -170px;
}

.search-results {
    border-top: 1px solid #ddd;
    clear: both;
    margin: 5px 0 0;
}

    .search-results li {
        padding: 40px 0 0;
    }

    .content .search-results h2 {
        font-size: 16px;
    }

    .search-results p {
        margin: 10px 0 0;
    }

    .results-top {
        width: 100%;
    }

    .results-top .label {
        display: inline-block;
        line-height: 33px;
        padding: 0 15px 0 0;
    }

    .results-top .selector {
        width: 60px;
        float: right;
    }

    .results-top .selector span {
        width: 20px;
    }

    .results-top select {
        width: 65px;
    }

    .results .pages {
        float: left;
    }

    .results-top .pages {
        padding: 5px 0 0;
    }

/* - - - - - - - - - - - - - Lexicon - - - - - - - - - - - - - */

.content .lexicon h2 {
    border-top: 1px solid #ddd;
    position: relative;
    color: #bcbcbc;
    font-size: 20px;
    padding: 12px 0 0 15px;
    height: 1px;
    margin: 40px 0 10px;
}

    .lexicon h2 span {
        display: inline-block;
        position: relative;
        top: -26px;
        background: #fff;
        padding: 0 5px;
    }

    .lexicon .desc {
        display: none;
        padding: 2px 0 15px;
    }

    .lexicon ul ul {
        margin: 0 0 0 2.7em;
    }

    .lexicon ul ul li {
        padding: 3px 0;
    }

    .lexicon li > a {
        background-position: 1000px 0;
    }

    .lexicon li.active > a {
        background-position: 0 -175px;
        padding: 0 0 0 15px;
        margin: 0 0 0 -17px;
        font-weight: 700;
        color: #444;
        position: relative;
    }

    .lexicon .active .desc {
        display: block;
    }

    .lexicon-top .aside {
        width: 42.5%;
    }

/* - - - - - - - - - - - - - News - - - - - - - - - - - - - */

.content .news h2 {
    font-size: 16px;
}

    .content .news p {
        margin: 5px 0 0 0;
    }

    .news li {
        padding: 0 0 40px;
    }

    .news li:last-child {
        padding: 0;
    }

    .news .date {
        color: #999;
    }

/* - - - - - - - - - - - - - Products/receipts - - - - - - - - - - - - - */

.products .item, .receipts .item {
    float: left;
    width: 202px;
    margin: 0 12px;
    min-height: 250px;
    position: relative;
}
.products .item {
	padding-bottom: 40px;
}

    .products .item:nth-child(3n+1), .receipts .item:nth-child(3n+1) {
        margin: 0;
    }

    .products .item:nth-child(3n+2), .receipts .item:nth-child(3n+2) {
        margin: 0 37px;
    }

    .products .item:nth-child(3n+3), .receipts .item:nth-child(3n+3) {
        margin: 0;
    }

    .products .item > a, .receipts .item > a {
        font-size: 0;
        line-height: 0;
    }

    .products img, .receipts img {
        border: 1px solid #ddd;
        border-radius: 3px;
        display: block;
        font-size: 14px;
    }

    .content .products h2 {
        margin: 10px 0 0;
        width: 200px;
        font-size: 14px;
		min-height: 60px;
    }

.content .product h2 {
    color: #444;
    font-size: 16px;
    padding: 30px 0 10px;
}

.product .accordion {
    border-bottom: 1px solid #ddd;
    clear: both;
    display: block;
    padding: 30px 0 0;
}

    .product .accordion li {
        border-top: 1px solid #ddd;
        padding: 10px 10px;
    }

    .product .accordion h3 {
        font-size: 16px;
    }

        .product .accordion h3 a {
            background-position: -948px -186px;
            padding: 0 0 0 20px;
        }

        .product .accordion h3 a:hover, .product .accordion h3 a:focus {
            background-position: -948px -168px;
        }

    .product .accordion p {
        padding: 10px 0 10px 20px;
        display: none;
    }

    .product .accordion .active {
        background: #f8f8f8;
    }

    .product .accordion .active h3 a {
        background-position: -948px -70px;
    }

        .product .accordion .active h3 a:hover, .product .accordion .active h3 a:focus {
            background-position: -948px -88px;
        }

    .product .accordion .active p {
        display: block;
    }

.product .count {
    font-weight: 700;
    padding: 0 15px 20px;
}

.product .watch {
    text-align: center;
    border-top: 1px solid #ddd;
    background: url("../img/bg-watch.png") no-repeat 100% 100%;
    padding: 12px 0 12px 10px;
}

    .product .watch a {
        font-size: 16px;
        font-weight: 700;
        display: block;
        line-height: 1.2;
        position: relative;
        padding: 0 70px 0 50px;
    }

    .product .watch a:after {
        content: ".";
        text-indent: -100em;
        overflow: hidden;
        display: block;
        background: url("../img/bg-sprite.png") no-repeat -360px -197px;
        height: 40px;
        width: 40px;
        position: absolute;
        left: 0;
        top: 50%;
        margin: -20px 0 0 0;
    }

    .product .watch a:hover:after, .product .watch a:focus:after {
        background-position: -412px -197px;
    }

.product .zoom {
    display: block;
    background-position: 0 -254px;
    height: 36px;
    width: 40px;
    position: absolute;
    right: 0;
    top: 185px;
    border-radius: 3px 0 0 3px;
    box-shadow: 0 0 2px rgba(0,0,0,.3);
}

    .product .zoom:hover, .product .zoom:focus {
        background-position: 0 -291px;
    }

.receipts .content-search {
    border-radius: 3px;
    border: 1px solid #ddd;
    margin: 0 0 40px;
    position: relative;
}

    .receipts fieldset {
        padding: 15px;
        float: left;
        min-height: 34px;
    }

    .receipts .content-search input[type="text"] {
        width: 420px;
        float: left;
        padding-right: 40px;
    }

    .receipts .content-search .s {
        background-position: -64px -39px;
    }

    .receipts .content-search input::-webkit-input-placeholder {
        color: #666;
    }
    .receipts .content-search input:-moz-placeholder {
        color: #666;
    }

    .receipts .content-search input[type="text"]:focus {
        color: #333;
    }

    .receipts .content-search .s:hover, .receipts .content-search .s:focus, .receipts .content-search input[type="text"]:focus + input {
        background-position: -103px -39px;
    }

    .receipts .extended-search {
        border-left: 1px solid #ddd;
        border-right: none;
        margin: 0 0 0 -1px;
        float: right;
    }

        .receipts .extended-search.active {
            background: #eee;
        }

        .receipts .extended-search.active .extended-form {
            display: block;
        }

    .receipts .extended-search > a {
        background-position: -948px -185px;
        display: inline-block;
        padding: 0 20px 0 20px;
        margin: 5px 0;
        line-height: 22px;
    }

        .receipts .extended-search > a:hover, .receipts .extended-search > a:focus {
            background-position: -948px -167px;
        }

    .receipts .extended-search.active > a {
        background-position: -358px -249px;
    }

        .receipts .extended-search.active > a:hover, .receipts .extended-search.active > a:focus {
            background-position: -358px -282px;
        }

    .receipts .extended-search label {
       clear: both;
    }

    .receipts .extended-search label > span, .receipts .extended-search .label {
       font-weight: 700;
       display: block;
       clear: both;
       padding: 0 0 5px;
    }

    .receipts .extended-search .selector {
       width: 215px;
    }
    .receipts .extended-search .selector span {
        width: 175px;
    }

    .receipts .extended-search select {
       font-weight: 700;
       display: block;
       clear: both;
       padding: 0 0 5px;
       width: 225px;
    }

    .extended-form {
        background: #eee;
        position: absolute;
        right: -1px;
        top: 64px;
        z-index: 2;
        padding: 15px 29px 29px;
        min-width: 220px;
        border-radius: 0 0 3px 3px;
        border: 1px solid #ddd;
        border-top: none;
        display: none;
    }

    .extended-form li {
        clear: both;
        padding: 0 0 18px;
    }

.receipts .title {
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 3px 3px;
    padding: 12px 10px;
    width: 180px;
    position: absolute;
    left: 0;
    bottom: 45px;
    background: #fff;
}

    .content .receipts h2 {
        float: left;
        width: 80%;
        font-size: 18px;
    }

    .receipts .count {
        font-weight: normal;
        color: #888;
        float: right;
        display: inline-block;
        width: 20%;
        text-align: right;
        line-height: 1.1;
        font-size: 18px;
    }

    .receipts .video {
        display: block;
        position: relative;
    }

    .receipts .video:after {
        content: "tere";
        position: absolute;
        top: 1px;
        right: 1px;
        border-radius: 3px;
        display: block;
        height: 35px;
        width: 35px;
        background: url("../img/bg-sprite.png") no-repeat -735px -254px;
    }

    .receipts img {
        border-radius: 3px 3px 0 0;
    }

    .receipts.list h2 {
        font-size: 16px;
        width: 100%;
    }

    .receipts.list .item {
        min-height: 160px;
        margin-bottom: 40px;
    }

    .receipts.list .title {
        left: 0;
        bottom: 0;
    }

    .receipts.list img {
        border-radius: 3px;
    }
	
	
	/* metadata */
	.content .product .recipe-metadata h2 {
		padding: 25px 0 5px;
	}
	.rating {
		padding-top: 5px;
	}
		.rating li, .rating a {
			display: inline-block;
		}
		.rating a {
			background: url("../img/bg-rating.png") no-repeat 0 0;
			width: 24px;
			height: 17px;
			margin-right: 2px;
		}
		.rating a.full {
			background-position: 0 0;
		}
		.rating a.half {
			background-position: 0 -50px;
		}
		.rating a.empty {
			background-position: 0 -100px;
		}
		
	/* sorting */
	.sorting .active.desc .icon:before {
		content: "\f103";
	}
	.sorting .active.asc .icon:before {
		content: "\f102";
	}
	
	/* more recipes link */
	.related .more-link {
		border-top: 1px solid #ccc;
		display: block;
		margin: 10px 5px 0 0;
		padding: 5px 0 0;
	}
	
	
	

/* - - - - - - - - - - - - - Brand - - - - - - - - - - - - - */

.brand {
    background: #fff url("../img/alma-bg.png") no-repeat 50% 0;
}

.brand #header {
    clear: both;
}

.brand header nav {
    float: right;
    width: auto;
    clear: right;
    padding-top: 45px;
}

.brand .intro {
    float: right;
    width: 300px;
}

    .brand .intro .item {
        width: 100%;
        float: none;
    }

.brand .about {
    float: left;
    width: 500px;
    padding: 30px 0 0 60px;
}

    .brand .about header {
        padding: 0 0 20px;
    }

    .brand .about h1 {
        font-weight: 700;
    }

    .brand .about p {
        margin: 0 0 1.5em;
    }

.brand #footer {
    background: url("../img/alma-bg-footer.png") no-repeat 50% 0;
}


/* - - - - - - - - - - - - - Popups - - - - - - - - - - - - - */

.popup {
    position: absolute;
    border-radius: 3px;
    z-index: 10;
    padding: 36px 0 0;
}

    .view-content {        
        box-shadow: 0 0 10px rgba(0,0,0,.5);
        line-height: 0;
        font-size: 0;
    }

    .simplemodal-overlay {
        background: #000;
    }

    .popup img {
        border-radius: 3px;
        display: block;
    }

    .popup header {
        padding: 0 0 30px;
    }

    .popup h1 {
        color: #222;
        font-size: 24px;
        line-height: 1.1;
    }

    .popup label {
        display: block;
        clear: both;
    }

    .popup label span, .popup .label {
        font-weight: 700;
        display: inline-block;
        text-align: left;
    }

    .popup label input[type="radio"], .popup label input[type="checkbox"] {
        margin: 0 10px 0 0;
    }

    .popup p {
        margin: 10px 0;
    }

    .simplemodal-close {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        height: 36px;
        width: 36px;
        background-image: url("../img/bg-sprite.png");
        background-repeat: 0 0;
        background-position: -360px -388px;
        z-index: 100;
        cursor: pointer;
    }

        .simplemodal-close:hover, .simplemodal-close:focus {
            background-position: -397px -388px;
        }

    .feedback .close {
        display: block;
        position: absolute;
        height: 18px;
        width: 18px;
        background-position: 100% 0;
        right: 10px;
        top: 10px;
    }

        .feedback .close:hover, .feedback .close:focus {
            background-position: 100% -21px;
        }

.feedback {
    background: #e6f4fd;
    border: 1px solid #b0dcfa;
    color: #444;
    left: 260px;
    top: -130px;
    padding: 30px 50px 50px 30px;
    box-shadow: 0 0 5px rgba(0,0,0,.3);
}

    .feedback:after {
        content: ".";
        text-indent: -100em;
        overflow: hidden;
        display: block;
        position: absolute;
        left: -19px;
        top: 135px;
        height: 28px;
        width: 19px;
        background: url("../img/bg-feedback-arrow.png") no-repeat 0 0;
    }

    .feedback label span {
        width: 100px;
        padding: 0 15px 0 0;
    }

    .feedback textarea {
        width: 530px;
        min-height: 280px;
    }

    .feedback input[type="text"] {
        width: 410px
    }

    .feedback li {
        padding: 3px 0;
    }

    .feedback ul {
        padding: 0 0 10px;
    }

    .feedback .label {
        padding: 10px 30px 0 0;
        float: left;
    }

    .feedback .button {
        margin: 10px 0 0;
    }

.s2f:after {
    background: url("../img/bg-s2f-arrow.png") no-repeat scroll 0 0 transparent;
    content: ".";
    display: block;
    height: 9px;
    overflow: hidden;
    position: absolute; left: 251px; bottom: -9px;
    text-indent: -100em;
    width: 16px;
}
    .s2f {
        background: none repeat scroll 0 0 #E6F4FD;
        border: 1px solid #B0DCFA;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
        color: #444444;
        left: 35px;
        padding: 20px 20px 30px;
        top: -245px;
        width: 480px;
    }

    .s2f li {
        float: left;
        margin: 0 18px 10px 0;
        width: 230px;
    }
        .s2f .last {
            margin-right: 0;
        }
        .s2f .submit {
            clear: both;
            float: none;
            margin: 0;
            padding-top: 10px;
            text-align: center;
            width: 100%;
        }
        .s2f input[type="text"] {
            width: 210px;
        }

    .s2f .close {
        background-position: 100% 0;
        display: block;
        height: 18px;
        position: absolute;
        right: 10px;
        top: 10px;
        width: 18px;
    }
    .s2f .close:hover, .s2f .close:focus {
        background-position: 100% -21px;
    }

    .content article .s2f h1 {
        font-size: 24px;
        text-align: center;
    }

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - End - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.ir {
    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;
}
.hidden {
    display: none !important;
    visibility: hidden;
}
.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}
.invisible {
    visibility: hidden;
}
.clear:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.clear {
    /*display: inline-block;*/
    zoom: 1;
}
html[xmlns] .clear {
    display: block;
}
* html .clear {
    height: 1%;
}
.fake {
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    text-indent: -1000px;
    height: 0;
    width: 0;
}
#skip {
    text-align: left;
    overflow: hidden;
}
    #skip a, #skip a:hover, #skip a:visited {
        position:absolute;
        left:0px;
        top:-500px;
        width:1px;
        height:1px;
        overflow:hidden;
        display: block;
        z-index: 100;
    }
    #skip a:focus, #skip a:active {
        position:absolute;
        top: 10px;
        left: 10px;
        width:auto;
        height:auto;
        background: #333;
        color: #fff;
        font-weight: 700;
        padding: 5px 10px;
    }
/* - - - - - - - - - - - - -  Responsive - - - - - - - - - - - - - */

@media only screen and (max-width: 800px) {
    body {
        padding: 0;
    }

    #header.frontpage {
        background: url("../img/bg-header.png") no-repeat scroll 50% 100% rgba(0, 0, 0, 0);
        padding: 0 0 80px;
        position: relative;
        z-index: 100;
    }

    #main {
        background: url("../img/bg-content.png") repeat-y scroll 50% 0 rgba(0, 0, 0, 0);
    }

    .menu-toggle, .search-toggle {
        padding-left: 1.25em;
        background: transparent;
        border: none;
        height: auto;
        width: 40px;
        height: 35px;
        padding: 5px;
        line-height: 0;
        display: block;
        z-index: 10;
        margin-top: 5px;
        border: none;
        border-radius: 3px;
    }
    .search-toggle {
    }
    .search-toggle span {
        display: inline-block;
        vertical-align: top;
        width: 32px;
        height: 25px;
        background-position: -62px -5px;
    }

    .search-toggle.active span {
        background-position: -101px -5px;
    }

    .menu-toggle.active {
        padding: 2px;
    }

    .menu-toggle span {
        width: 100%;
        display: inline-block;
        vertical-align: top;
        height: 3px;
        margin: 2px 0;
        background: #fff;
    }

    .menu-toggle.active span {
        height: 3px;
        margin: 3px 0;
    }

    .header, .footer, #main {
        padding: 0 20px;
        width: auto;
    }
    .branding {
        float: none;
        padding: 70px 0 0;
        text-align: center;
    }
    .site-tools {
        float: none;
        color: #fff;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        padding: 0 20px 5px;


        background: #007ebf;
        background: -moz-linear-gradient(top,  #007ebf 0%, #004081 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#007ebf), color-stop(100%,#004081));
        background: -webkit-linear-gradient(top,  #007ebf 0%,#004081 100%);
        background: -o-linear-gradient(top,  #007ebf 0%,#004081 100%);
        background: -ms-linear-gradient(top,  #007ebf 0%,#004081 100%);
        background: linear-gradient(top,  #007ebf 0%,#004081 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#007ebf', endColorstr='#004081',GradientType=0 );
    }
    .site-tools > ul {
        float: none;
        color: #fff;        
        padding: 0;
    }
    .site-tools > ul > li {
        float: right;
    }
    .site-tools > ul a {
        color: #fff;
    }
    .lang a {
        font-size: 0;
        overflow: hidden;
        padding: 0 0 0 60px;
        text-align: left;
        text-indent: 100%;
        width: 0px;
    }
    .site-tools .lang ul {
        display: none;
    }
    .site-tools .lang ul a {
        color: #000;
    }

    .lang:hover ul, .lang > a:hover + ul {
        display: none;
    }
    .site-tools > ul .sep {
        float: left;
        background: none;
        border-left: 1px solid #fff;
    }
    .site-tools > ul .lang {
        float: left;
        width: 60px;
    }

/*    .site-tools .sep {
        display: none;
    }*/

    .brand .site-tools .sep {
        display: block;
        background: none;
        padding: 0;
        border: none;
        margin-left: 0;
    }

    .site-tools .yt {
        position: absolute;
        top: 45px;
        right: 20px;
        z-index: 1;
    }

    .site-tools .fb {
        position: absolute;
        top: 46px;
        right: 55px;
        z-index: 1;
    }

    .site-tools .youtube, .site-tools .facebook {
        margin-left: 10px;
    }

    .sidebar, .mainbanner {
        display: none;
    }

    .submenu-toggle {
        display: block;
        background: transparent;
        border: none;
        border-left: 1px solid #ddd;
        color: #fff;
        font-size: 0;
        line-height: 0;
        margin: 0;
        overflow: hidden;
        padding: 0 15px;
        position: absolute;
        right: 0;
        text-indent: 100%;
        top: 10px;
        min-height: 30px;
        height: 30px;
        vertical-align: middle;
        z-index: 2;
    }

    .submenu-toggle span {
        background: url("../img/toggle.png") no-repeat scroll 50% 0;
        display: block;
        font-size: 0;
        height: 8px;
        line-height: 0;
        overflow: hidden;
        text-indent: 100%;
        vertical-align: middle;
        width: 14px;
    }

    .sub-menu.active .submenu-toggle{
        top: 5px;
        border-left-color: #fff;
    }

    .sub-menu.active .submenu-toggle span {
        background-position: 50% 0;
    }

    .submenu-toggle.open span, .sub-menu.active .submenu-toggle.open span {
        background-position: 50% -8px;
    }

    .active .submenu-toggle {
        border-left: 1px solid #fff;
    }
    .active .submenu-toggle span {
        background-position: 50% -16px;
    }

    .active .submenu-toggle.open span {
        background-position: 50% -24px;
    }
    

    .brand header nav, nav {
        display: none;
        padding: 30px 0 0;
        float: none;
    }

    .brand header nav ol > li, nav ol > li {
        display: block;
        position: relative;
        border-top: 1px solid #ddd;
    }

    nav ol > li > a {
        background-image: none;
        text-align: center;
    }

    nav ol > li:first-child a {
        width: auto;
        text-align: left;
    }

    nav ul:after {
       display: none;
    }

    nav ul li {
        white-space: normal;
    }
    nav .sub-menu {
        border-radius: 0;
        box-shadow: none;
        display: none;
        left: 0;
        padding: 0;
        position: relative;
        top: 0;
        text-align: center;
    }
    nav .sub-menu ul {
        background: #00498A;
        color: #fff;
    }
    nav .sub-menu ul a {
        color: #fff;
    }

    nav .sub-menu.active{
        display: block !important;
    }

    nav ol > li:hover ul {
        display: none;
    }
    nav ul li {
        background: none;
        padding: 0;
        border-top: 1px solid #fff;
        position:relative;
    }

    nav ul a {
        display: block;
        padding: 12px 18px;
    }

    .site-tools {
        float: none;
    }

    .search {
        float: none;
        padding: 10px 20px 10px;
        display: none;
        margin: 0 -20px -5px;
        background: #0060A1;
        position: relative;
        z-index: 10;

    }

    .search input[type="text"] {
        width: 100%;
    }

    img {
        max-width: 100%;
        display: inline-block;
        vertical-align: top;
    }
   .intro .item {
        float: none;
        width: 100%;
        clear: both;
        padding: 0 0 30px;
    }

    .with-sidebar .content {
        float: none;
        min-width: 100%;
        max-width: 100%;
    }

    .products .item, .receipts .item {
        margin: 0 1.5%;
        min-height: 250px;
        width: 30%;
    }

    .products .item {
        padding-bottom: 30px;
    }

    .products .item:nth-child(3n+1), .receipts .item:nth-child(3n+1) {
        margin: 0 1.5%;
    }

    .products .item:nth-child(3n+2), .receipts .item:nth-child(3n+2) {
        margin: 0 1.5%;
    }

    .products .item:nth-child(3n+3), .receipts .item:nth-child(3n+3) {
        margin: 0 1.5%;
    }

    .brands h3 {
        text-align: center;
        padding: 0 0 10px;
    }
    .brands img {
        margin: 0 auto 10px;
        float: none;
        clear: both;
        display: block;
    }
    .receipts .content-search input[type="text"] {
        width: 100%;
    }
    .receipts fieldset {
        float: none;
        position: relative;
    }
    .receipts .extended-search {
        border: none;
        float: none;
        margin: 0;
        clear: both;
        text-align: center;
        border-top: 1px solid #ddd;
    }

    .extended-form {
        top: 64px;
        z-index: 2;
        right: -1px;
        left: -1px;
        text-align: left;
    }
    .receipts .title {        
        bottom: 0;
        left: 0;
        margin-right: -2px;
        width: auto;
        position: relative;
    }

    .receipts.list .item {
        min-height: 250px;
    }

    .receipts .item img {
        width: 100%;
    }
    .sitemap {
        line-height: 24px;
        margin-left: 0;
    }

    .results {
        margin: 0;
    }

    .contacts-list .item {
        float: left;
        min-height: 144px;
        width: 48%;
        margin: 0 1%;
    }
    .contacts .contact {
        float: none;
        height: auto;
    }
    
    .content .products h2 {
        width: auto;
    }
    
    .first-contacts ul {
        float: none;
        padding: 40px 0 0;
    }
    .first-contacts .item .sprite {
        width: 45%;
    }
    .contacts .contact .details {
        padding: 0;
        width: 100%;
    }

    .freetext img {
        margin-left: auto !important;
        margin-right: auto !important;
        margin-bottom: 1em;
        display: block;
        float: none !important;
        height: auto !important;
    }

    .right-area {
        width: 35%;
    }
    .left-area {
        width: 55%;
    }

    .product .right-area, .product .left-area {
        float: none;
        width: 100%;
        padding: 0;
        margin-top: 30px;
    }      

    .popup img {
        width: 100%;
    }

    #footer, .brand #footer {
        margin-top: 0;
        background: #fff url("../img/bg-footer-sm.png") no-repeat 50% 0;
    }
    .footer .vcard {
        display: block;
        margin-top: 15px;
        padding-top: 15px;
        padding-bottom: 15px;
        border-top: 1px solid #ccc;
    }
    .footer .logoroll {
        min-height: auto;
    }
    .footer .logoroll li {
        padding: 10px 0;
        width: 12%;
        margin: 0 2%;
    }
    .footer .logoroll li img {
       width: 100%;
    }
    .footer .vcard li {
        display: block;
        background: none;
    }
    
    .content footer {
        margin-top: 20px;
    }

    .brand .about {
        float: none;
        width: 100%;
        padding: 30px 0 0 0;
    }

    .brand .intro {
        float: none;
        width: 100%;
    }
    .fb-like > div {
        padding: 0;
    }


    .newsletter-form {
        text-align: center;
        padding: 30px 0 0;
        margin: 20px 0 -40px;
        background: url("../img/newsletter_top.png") no-repeat 50% 0;
    }

    .newsletter-form .form-title {
        padding: 0;
    }

    .newsletter-form form span {
        display: block;
        width: 100%;
        clear: both;
        margin: 7px 0;
    }

}

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

    .product .right-area, .product .left-area {
        clear: both;
        float: none;
    }

    .products .item, .receipts .item {
        margin: 0 2%;
        width: 46%;
        min-height: 200px;
    }

    .products .item:nth-child(3n+1), .receipts .item:nth-child(3n+1) {
        margin: 0 2%;
    }

    .products .item:nth-child(3n+2), .receipts .item:nth-child(3n+2) {
        margin: 0 2%;
    }

    .products .item:nth-child(3n+3), .receipts .item:nth-child(3n+3) {
        margin: 0 2%;
    }

    .receipts .item:nth-child(3n+1), .receipts .item:nth-child(3n+2), .receipts .item:nth-child(3n+3) {
        margin: 0;
    }

    .left-area {
        float: none;
        padding: 0 0 50px 0;
        width: 100%;
    }
    .right-area {
        float: none;
        padding: 0;
        width: 100%;
    }

    .receipts .item {
        padding: 0 0 20px;
        clear: both;
        float: none;
        width: 100%;
    }

    .contacts .contact {
        float: none;
        height: auto;
        padding: 250px 0 0 0;
        background-position: 0 0;
    }

    .contacts-list .item {
        float: none;
        width: 55%;
    }
    .contacts .contact .open-map {
        position: relative;
        right: 0;
        width: 100%;
    }

    .s2f {
        left: 0;
        right: 0;
    }
    .s2f li {
        float: none;
        margin: 0 0 10px;
        width: 100%;
    }

    .s2f input[type="text"] {
        width: 100%;
    }
    .footer .logoroll li {
        width: 28%;
        margin: 0 1.5%;
        padding: 10px 0;
    }

}

/* - - - - - - - - - - - - - Print - - - - - - - - - - - - - */
 
@media print {
* {
    background: transparent !important;
    color: #000 !important;
    text-shadow: none !important;
    filter:none !important;
    -ms-filter: none !important;
} /* Black prints faster: h5bp.com/s */
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: "";
}  /* Don't show links for images, or javascript/internal links */
pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
}
thead {
    display: table-header-group;
} /* h5bp.com/t */
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;
}
#footer, nav, .site-tools, .sidebar, article footer, .product .zoom, .pages, .results-top, .watch {
    display: none;
}
.content { width: 100% !important; font-size: 16px;}
.branding {padding: 25px 0 0;}
.branding img {height: 55px !important}
#main {margin-top: 0;}
.header, #main {width: 100%;}
.freetext ul, .bullet-list {
    list-style: disc;
    list-style-image: none;
}
table thead th {
    border-bottom: 1px solid #ddd;
}
.results {
    margin: 0;
}
.left-area {
    width: 60%;
    padding: 0;
}
.right-area {
    padding: 0;
}

.product .accordion h3 a, .product .accordion p {
    padding-left: 0;
}
}

/* --------- COOKIES --------- */

.cookies {
    height: 100px;
    width: 100%;
    display: block;
    position: fixed;
    bottom: 0;
    background-color: #003479;
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    border-radius: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    max-width: 900px;
    padding-left: 30px;
    padding-right: 30px;
}
.cookies-wrap {
    margin-top: 36px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.cookies-text {
    font-size: 120%;
    display: inline-block;
    color: #fff;
    margin: 0 20px;
}
.cookies-text a {
    color: #fff;
    text-decoration: underline;
}
.cookies-button {
    display: inline-block;
    margin: 0 20px;
    font-size: 120%;
}
.cookies-button .btn {
    cursor: pointer;
    font-size: 16px;
    height: 32px;
    border: none;
    font-weight: 400;
    padding: 0 15px;
    border-radius: 6px 0 6px 0;
    color: #fff;
    background: #0081c2; /* Old browsers */
    background: -moz-linear-gradient(top,  #0081c2 0%, #003f80 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0081c2), color-stop(100%,#003f80)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #0081c2 0%,#003f80 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #0081c2 0%,#003f80 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #0081c2 0%,#003f80 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #0081c2 0%,#003f80 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0081c2', endColorstr='#003f80',GradientType=0 ); /* IE6-9 */
    margin: 0 5px;
}
.cookies-close {
    cursor: pointer;
    position: absolute;
    top: 2px;
    right: 7px;
    font-size: 30px;
    color: #b0dcfa;
}
@media only screen and (max-width: 960px) {
    .cookies {
        padding-left: 0;
        padding-right: 0;
    }
    .cookies-wrap {
        display: block;
        margin-top: 20px;
    }
    .cookies-button {
        margin-top: 10px;
    }
}