body {
    background: #FFF;
    margin: 0 auto;
    padding: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.42857;
    font-weight: 200;
}


body.mceContentBody {
    background: #FFF;
}

b, strong {
    font-weight: 700;
}

h1  {
    font-size: 2.2em;
    color: #CB0044;
    font-weight: 200;
    margin-bottom: 10px;
}


h2, h2 a {
    color: #555;
    font-weight: 600;
    margin: 30px 0 5px;
    text-decoration: none;
}

h2  {
     font-size: 1.4em;
}

h2 a:hover {
 text-decoration: underline;
}

h3 {
    font-size: 1.2em;
    margin: 25px 0 5px;
    color: #CB0044;
}

h4 {
    font-size: 1em;
    margin: 10px 0 5px;
    color: #CB0044;
}

p {
    line-height: 1.5em;
    font-size: 1em;
    margin:0 0 15px;
 }


.bg-red .text {
    color: #FFFFFF;
}

h3.text.underline {
    border-bottom: 1px solid #e0e0e0;
    padding: 30px 0;
    margin-bottom: 40px;
    position: relative;
}


a:not(.button) {
    color: #CB0044;
    display: inline-block;
    outline: medium none;
    position: relative;
    text-decoration: underline;
    vertical-align: bottom;
    z-index: 1;
    transition:color 0.3s ease 0s;
    cursor: pointer;
}

 a:not(.button):hover {
    color: #fff;
    text-decoration: none;
}


a:not(.button):hover::before {
    width: calc(100% + 10px);
}

a:not(.button)::before{
    background: #CB0044 none repeat scroll 0 0;
    content: " ";
    height: 100%;
    left: 0;
    margin-left: -5px;
    position: absolute;
    top: 0px;
    transition: width 0.3s ease 0s;
    width: 0;
    z-index: -1;
}


/***********************************************************/
/**** tabulka ***/

table {
    border-collapse: collapse;
}

table TD, table TH {
    padding: 5px 10px;
    border: 1px solid #e2e4e6;
}

table TD:first-child {
    border-left: none;
}

table TD:last-child {
    border-right: none;
}

table TR:last-child TD {
    border-bottom: none;
}

table TR:first-child TD,
table TH,
table thead TD {
   background: #F1F1F1;
}


