﻿
/* #region GENERAL SETTINGS ============================================================= */

@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,400italic,600,700,900,200&subset=latin,latin-ext);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=latin,latin-ext);
/*
font-family: 'Open Sans', sans-serif;
*/

html, body
{
	background: white;
    color: #353e3e;
	font-size: 26px;
	font-family: 'Source Sans Pro', sans-serif;
    overflow-x: hidden;
}

body
{
    padding: 70px 0 0 0;
}

body.hideContent header,
body.hideContent footer,
body.hideContent section
{
    display: none !important;
}

input, textarea
{
    font-family: 'Source Sans Pro', sans-serif;
}

*
{
	margin: 0;
	padding: 0;
    border: none;
    outline: none;

    -webkit-box-sizing: border-box; /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */
    -moz-box-sizing: border-box;    /* Firefox 1 - 28 */
    box-sizing: border-box;         /* Safari 5.1+, Chrome 10+, Firefox 29+, Opera 7+, IE 8+, Android 4.0+, iOS any */
}

a
{
    color: #30a7ff;
	text-decoration: underline;
}

a:hover
{
	text-decoration: none;
}

a, label, input[type=button], input[type=submit]
{
	cursor: pointer;
}

.clear 
{
	width: 100%;
	height: 1px;
	display: block;
	overflow: hidden;
	clear: both;
}

.clear hr
{
	display: none;
}

.floatleft
{
	float: left;
}

.floatright
{
	float: right;
}

.hidden
{
	display: none;
}

/* #endregion */

/* #region HEADER ======================================================================= */

header
{
    width: 100%;
    height: 70px;
    padding: 17px 34px 0 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 500;
    border-top: 5px solid #353e3e;
    border-bottom: 1px solid #e8e8e8;
    background: white;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    text-align: right;
}

/*****************************************/

header .logo
{
    width: 298px;
    height: 64px;
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    background: url(images/logo-cenovamapa.png) no-repeat 34px 13px;
    border-right: 1px solid #e8e8e8;
    text-decoration: none;
}

header .logo strong
{
    display: none;
}

@media screen and (max-width: 450px)
{
    header .logo
    {
        width: 64px;
        background: url(images/logo-small.png) no-repeat center center;
    }
}

/*****************************************/

header a.mobileMenu
{
    display: none;
}

#menu
{
    height: 48px;
    position: absolute;
    left: 298px;
    top: 17px;
    display: inline-block;
    text-align: right;
}

#menu li
{
    height: 48px;
    padding: 0 28px 0 23px;
    position: relative;
    display: inline-block;
    background: url(images/menu-separator.png) no-repeat right 0;
}

#menu li:last-of-type
{
    background: none;
}

#menu li a
{
    color: #353e3e;
    line-height: 28px;
    text-decoration: none;
    vertical-align: top;
}

#menu li a:hover,
#menu li.current-menu-item a,
#menu li.current-menu-ancestor a
{
    text-decoration: underline;
}

#menu li.current-menu-item ul li a,
#menu li.current-menu-ancestor ul li a
{
    text-decoration: none;
}

#menu li ul
{
    width: 220px;
    padding: 10px 16px 10px 16px;
    position: absolute;
    left: 0;
    top: 48px;
    display: none;
    background: #353e3e;
    text-align: left;
}

#menu li:hover ul
{
    display: block;
}

#menu li ul:before
{
    content: " ";

    width: 100%;
    height: 30px;
    position: absolute;
    left: 0;
    top: -30px;
    display: block;
    background: url(images/submenu-arrow.png) no-repeat 24px bottom;
}

#menu li ul li
{
    height: auto;
    padding: 10px 10px 10px 10px;
    display: block;
    background: none;
    border-bottom: 1px solid #515151;
    line-height: 16px;
}

#menu li ul li:last-of-type
{
    border-bottom: none;
}

#menu li ul li a
{
    color: white;
    text-decoration: none;
    line-height: 16px;
}

#menu li ul li a:hover,
#menu li ul li.current-menu-item a
{
    font-weight: bold;
    text-decoration: none;
}

@media screen and (max-width: 1300px)
{
    header a.mobileMenu
    {
        width: 33px;
        height: 40px;
        margin: 0 0 0 20px;
        position: relative;
        top: -6px;
        display: inline-block;
        background: url(images/mobilemenu.png) no-repeat 0 center;
        text-decoration: none;
        vertical-align: top;
    }

    #menu { display: none; }
    header.withMenu #menu { display: block; }

    #menu
    {
        width: 100%;
        height: auto;
        padding: 15px 30px 0 30px;
        position: absolute;
        left: 0;
        top: 65px;
        background: white;
        border-bottom: 1px solid #e8e8e8;
        text-align: left;
    }

    #menu li,
    #menu li:last-of-type
    {
        width: 100%;
        height: auto;
        padding: 10px 30px;
        display: block;
        background: none;
        border: none;
        border-bottom: 1px solid #e8e8e8;
    }

    #menu li:last-of-type
    {
        border: none;
    }

    #menu li ul
    {
        width: auto;
        padding: 0;
        position: static;
        display: block;
        background: none;
    }

    #menu li ul:before
    {
        display: none;
    }

    #menu li ul li,
    #menu li ul li:last-of-type
    {
        padding: 15px 0 15px 20px;
        border: none;
    }

    #menu li ul li a
    {
        color: #353e3e;
    }
}

/*****************************************/

header .account
{
    padding: 6px 0 0 20px;
    display: inline-block;
    color: #353e3e;
    line-height: 16px;
    vertical-align: top;
}

header .account span.user
{
    padding: 0 0 0 24px;
    display: inline-block;
    background: url(images/header-user.png) no-repeat 0 0;
}

header .account em
{
    width: 14px;
    display: inline-block;
    font-style: normal;
    vertical-align: top;
    text-align: center;
}

header .account a
{
    color: #353e3e;
    text-decoration: underline;
}

header .account a:hover
{
    text-decoration: none;
}

/*****************************************/

header a.enter,
header a.video
{
    width: 200px;
    height: 40px;
    padding: 0 0 0 46px;
    margin: 0 0 0 10px;
    position: relative;
    top: -6px;
    display: inline-block;
    background: #30a7ff url(images/header-enter.png) no-repeat 21px 12px;
    color: white;
    font-size: 14px;
    line-height: 40px;
    text-decoration: none;
    text-align: left;
    vertical-align: top;

    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

header a.video
{
    width: auto;
    padding: 0 25px;
    background: #30a7ff;
}

header a.enter:hover,
header a.video:hover
{
    background-color: #353e3e;
    text-decoration: none;
}

@media screen and (max-width: 800px)
{
    header a.video
    {
        display: none;
    }
}

@media screen and (max-width: 650px)
{
    header a.enter
    {
        width: 40px;
        padding: 0;
        overflow: hidden;
        text-indent: 80px;
        background-position: center center;
    }
}

/* #endregion */

/* #region NEWS LINE ==================================================================== */

section#newsLine
{
    width: 100%;
    height: 78px;
    padding: 0 55px;
    display: table;
    table-layout: fixed;
    background: #30a7ff;
}

section#newsLine *
{
    font-size: 25px;
    line-height: 25px;
}

/*****************************************/

section#newsLine div.title,
section#newsLine div.article,
section#newsLine div.all
{
    display: table-cell;
    text-align: left;
    vertical-align: middle;
}

section#newsLine div.title
{
    width: 120px;
}

section#newsLine div.article
{
    
}
section#newsLine div.article div
{
    /*width: 100%;
    display: table;
    table-layout: fixed;*/
    width: 100%;
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis;
}
section#newsLine div.article div.hidden
{
    display: none;
}

section#newsLine div.more
{
    
}
section#newsLine div.all
{
    width: 206px;
}

section#newsLine h3
{
    display: inline-block;
    color: #e8e6ec;
    font-weight: 600;
}

section#newsLine div.article a
{
    max-width: 75%;
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: top;
    /*display: table-cell;*/
}

section#newsLine div.article a.title
{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #e8e6ec;
    font-weight: 300;
    text-decoration: none;
}

section#newsLine div.article a.more
{
    width: 345px;
    padding: 0 0 0 10px;
    color: #e8e6ec;
    font-weight: 600;
    text-decoration: underline;
}

section#newsLine div.article a.more:after
{
    content: " ";

    width: 13px;
    height: 22px;
    position: relative;
    left: 10px;
    top: -2px;
    display: inline-block;
    background: url(images/newsline-more.png) no-repeat center center;
    vertical-align: middle;
}

section#newsLine div.article a.more:hover
{
    text-decoration: none;
}

section#newsLine a.all
{
    width: 206px;
    height: 56px;
    display: inline-block;
    border: 2px solid white;
    color: white;
    font-size: 19px;
    line-height: 52px;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;

    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    border-radius: 28px;
}

section#newsLine a.all:hover
{
    background-color: #353e3e;
}

@media screen and (max-width: 1200px)
{
    section#newsLine
    {
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
        display: block;
    }

    section#newsLine div.title,
    section#newsLine div.article,
    section#newsLine div.all
    {
        width: 100%;
        display: block;
    }

    section#newsLine div.title
    {
        padding-bottom: 20px;
        text-align: center;
    }

    section#newsLine div.all
    {
        padding-top: 20px;
        text-align: center;
    }

    section#newsLine div.article div,
    section#newsLine div.article div a
    {
        max-width: initial;
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    section#newsLine div.article a.more
    {
        width: 280px;
    }
}

@media screen and (max-width: 1100px)
{
    section#newsLine div.title *,
    section#newsLine div.article *
    {
        font-size: 25px;
        line-height: 25px;
    }

    section#newsLine div.article a.more
    {
        width: 190px;
    }
}

@media screen and (max-width: 620px)
{
    section#newsLine
    {
        padding-left: 20px;
        padding-right: 20px;
    }

    section#newsLine div.article div
    {
        display: block;
    }

    section#newsLine div.article div a
    {
        width: auto;
        max-width: initial;
        display: block;
        text-align: center;
    }

    section#newsLine div.article div a.more
    {
        margin: 10px auto 0 auto;
    }
}

/* #endregion */

/* #region ICONS ======================================================================== */

section#icons
{
    padding: 30px 0 5px 0;
    text-align: center;
}

section#icons .clear
{
    display: none;
}

section#icons div,
section#icons a
{
    width: 400px;
    max-width: 100%;
    padding: 78px 15px 40px 15px;
    display: inline-block;
    background-position: center 5px;
    background-repeat: no-repeat;
    color: #353e3e;
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
    text-decoration: none;
    text-align: center;
    vertical-align: top;
}

section#icons div:nth-of-type(1) { background-image: url(images/icons-icon1.png); }
section#icons div:nth-of-type(2) { background-image: url(images/icons-icon2.png); }
section#icons div:nth-of-type(3) { background-image: url(images/icons-icon3.png); }
section#icons div:nth-of-type(4) { background-image: url(images/icons-icon4.png); }
section#icons div:nth-of-type(5) { background-image: url(images/icons-icon5.png); background-position: center 0; }

section#icons a:nth-of-type(1) { background-image: url(images/icons-icon1.png); }
section#icons a:nth-of-type(2) { background-image: url(images/icons-icon2.png); }
section#icons a:nth-of-type(3) { background-image: url(images/icons-icon3.png); }
section#icons a:nth-of-type(4) { background-image: url(images/icons-icon4.png); }
section#icons a:nth-of-type(5) { background-image: url(images/icons-icon5.png); background-position: center 0; }

@media screen and (max-width: 1640px)
{
    section#icons .clear
    {
        display: block;
    }
}

/* #endregion */

/* #region FOOTER ======================================================================= */

footer
{
    background: #353e3e;
}

/*****************************************/

footer .menus
{
    width: 1198px;
    padding: 65px 3px 25px 3px;
    margin: 0 auto;
}

footer .menus ul
{
    float: left;
    list-style: none;
}

footer .menus ul:nth-of-type(1)
{
    width: 455px;
}
footer .menus ul:nth-of-type(2)
{
    width: 355px;
}
footer .menus ul:nth-of-type(3)
{
    width: 380px;
}

footer .menus ul li
{
    padding: 0 0 6px 27px;
    background: url(images/footer-menus-arrow.png) no-repeat 0 11px;
}

footer .menus ul li a
{
    color: #fafafa;
    font-size: 18px;
    line-height: 20px;
    font-weight: 300;
    text-decoration: underline;
}

footer .menus ul li a:hover
{
    text-decoration: none;
}

@media screen and (max-width: 1230px)
{
    footer .menus
    {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    footer .menus ul
    {
        width: 33.3% !important;
        padding-right: 15px;
    }
}

@media screen and (max-width: 800px)
{
    footer .menus ul
    {
        width: 100% !important;
        padding-right: 0;
        padding-bottom: 40px;
    }
}

/*****************************************/

footer .footer
{
    width: 1198px;
    padding: 34px 3px 58px 3px;
    margin: 0 auto;
    border-top: 1px solid #656868;
}

footer .footer p.copyright,
footer .footer ul,
footer .footer p.contact
{
    width: 33.3%;
    float: left;
}

footer .footer p
{
    font-size: 17px;
    line-height: 27px;
    font-weight: 300;
}

footer .footer p.copyright
{
    color: #757575;
}

footer .footer ul
{
    display: block;
    text-align: center;
}

footer .footer ul li
{
    display: inline-block;
    vertical-align: top;
}

footer .footer ul li a
{
    width: 62px;
    height: 62px;
    margin: 0 8px 8px 8px;
    display: inline-block;
    text-decoration: none;
    vertical-align: top;
}

footer .footer ul li a span
{
    display: none;
}

footer .footer ul li a.facebook
{
    background: url(images/footer-social-facebook.png) no-repeat 0 0;
}

footer .footer ul li a.googleplus
{
    background: url(images/footer-social-googleplus.png) no-repeat 0 0;
}

footer .footer ul li a:hover
{

}

footer .footer p.contact
{
    color: #fafafa;
    text-align: right;
}

footer .footer p.contact a,
footer .footer p.contact strong
{
    color: #fafafa;
    font-weight: 600;
    text-decoration: none;
}

footer .footer p.contact a:hover
{
    text-decoration: underline;
}

footer .footer p.contact strong
{

}

@media screen and (max-width: 1230px)
{
    footer .footer
    {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (max-width: 930px)
{
    footer .footer
    {
        padding-top: 120px;
        position: relative;
    }

    footer .footer ul
    {
        width: 100%;
        position: absolute;
        left: 0;
        top: 30px;
        float: none;
    }

    footer .footer p.copyright,
    footer .footer p.contact
    {
        width: 50%;
    }
}

@media screen and (max-width: 670px)
{
    footer .footer p.copyright,
    footer .footer p.contact
    {
        width: 100%;
        padding-bottom: 20px;
        float: none;
        text-align: center;
    }
}

/* #endregion */