/*
 * content.css
 *
 * Definicie stylov pre obsah, ktory je editovany cez TinyMCE. Vdaka tomuto suboru
 * sa text pocas editovania a po ulozeni bude zobrazovat uplne rovnako.
 *
 * Vsetky styly je potrebne nadefinovat ako vnorene elementy tychto rodicov:
 *  - div.content-text (text stranky z modulu Content)
 *  - body.mceContentBody (text v editore TinyMCE)
 *
 */



/*** Body ***/

body, td, th, textarea, input, select {
    font-family: Lucida Grande, Lucida Sans Unicode, Arial, Verdana, Helvetica, sans-serif;
    font-size: 12px;
}

body {
    color: #4c4c4c;
}

body.mceContentBody {
}

div.clear {
    float: none;
    clear: both;
    font-size: 0px;
    /*height: 0px;*/
    overflow: hidden;
}



/*** Headers ***/

h2, h3, h4, h5, h6 {
    font-weight: normal;
    padding: 0px 0px 0px 0px;
    margin: 2px 0px;
    color: #4C4C4C;
}

h2 {
    font-size: 14px;
}

h3 {
    font-size: 14px;
}

h4 {
    font-size: 1.6em;
}

h5 {
    font-size: 1.3em;
    font-weight: bold;
}

h6 {
    font-size: 1em;
    font-weight: bold;
}

h1, h2.subtitle, div.h1 {
    color: #C7050D;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;

    margin: 5px 0px 8px 0px;
    letter-spacing: -1px;
}

h1.center, h2.center, .text-center {
    text-align: center;
}

h1.left-label, h2.left-label {
    text-align: left;
    margin-left: 138px;
}

h1.no-caps {
    text-transform: none;
}

h1.no-top-margin {
    margin-top: 0px;
}

h1.no-bottom-margin, h2.no-bottom-margin {
    margin-bottom: 0px;
}

h1.large-top-margin {
    margin-top: 30px;
}

h1 a {
    color: #C7050D;
}

h1.subtitle, h2.subtitle, div.h1-subtitle, .text-light-grey {
    /*color: #4c4c4c;*/
    color: #989898;
}

h1.subtitle strong, h2.subtitle strong, div.h1-subtitle strong {
    color: #C7050D;
}

h1.green, h2.green, .text-green {
    /*color: #9ec342;*/
    color: #86b42c;
}

h1.grey, h2.grey, .text-grey {
    color: #6d6d6d;
}

h1.red, h2.red, .text-red {
    color: #C7050D;
}

h1.orange, h2.orange, .text-orange {
    color: #FE9F16;
}

div.subtitle-small-note {
    margin: -10px 0px 8px 0px;
    font-weight: bold;
}

h1.huge, h1 span.huge, h2 span.huge {
    text-transform: none;
    font-size: 36px;
}

h1.huge2, h1 span.huge2, h2 span.huge2 {
    text-transform: none;
    font-size: 30px;
}

h1 span.small, h2 span.small {
    text-transform: none;
    font-size: 12px;
}



/*** Links ***/

a, body.mceContentBody a {
    color: #4C4C4C;
    text-decoration: underline;
}

a:hover, body.mceContentBody a:hover {
    text-decoration: none;
}



/*** Paragraphs, etc. ***/

p {
    padding: 0px;
    margin: 0px 0px 5px 0px;
}

pre {
    padding: 0px 0px 0px 12px;
    margin: 0px 0px 5px 0px;
}



/*** Lists ***/

div.content-text ul, div.content-text ol,
body.mceContentBody ul, body.mceContentBody ol
{
    padding-left: 30px;
    margin: 0px 0px 5px 0px;
}

div.content-text ul ul, div.content-text ul ol, div.content-text ol ol, div.content-text ol ul,
body.mceContentBody ul ul, body.mceContentBody ul ol, body.mceContentBody ol ol, body.mceContentBody ol ul
{
    padding-left: 23px;
    margin-bottom: 0px;
}

div.content-text li,
body.mceContentBody li
{
}

ul.red-ticks {
    margin: 15px 12px 0px 12px;
    padding: 0px;
    list-style: none;
}

ul.red-ticks li {
    background: url("images/tick-red.gif") no-repeat left top;
    list-style: none;
    padding: 0px 0px 6px 28px;
}

ul.red-ticks li strong {
    color: #C7050D;
    font-weight: bold;  
}



