/*
 * 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: Verdana, Arial, Helvetica, sans-serif;
    font-size: 10px;
}

body {
    color: #333333;
}

body.mceContentBody {
}

div.clear {
    float: none;
    clear: both;
    font-size: 0px;
}



/*** Headers ***/

h2, h3, h4, h5, h6, .o2k7Skin .mceMenu .mceMenuItem .mce_h2 span.mceText, .o2k7Skin .mceMenu .mceMenuItem .mce_h3 span.mceText, .o2k7Skin .mceMenu .mceMenuItem .mce_h4 span.mceText, .o2k7Skin .mceMenu .mceMenuItem .mce_h5 span.mceText, .o2k7Skin .mceMenu .mceMenuItem .mce_h6 span.mceText {
    font-family: Trebuchet MS, Trebuchet, Arial, Helvetica, sans-serif;
}

h2, h3, h4, h5, h6 {
    padding: 0px 0px 0px 0px;
    margin: 2px 0px;
    color: #333333;
}

h2, .o2k7Skin .mceMenu .mceMenuItem .mce_h2 span.mceText {
    font-weight: normal;
    font-size: 1.9em;
}

h3, .o2k7Skin .mceMenu .mceMenuItem .mce_h3 span.mceText {
    font-weight: normal;
    font-size: 1.7em;
}

h4, .o2k7Skin .mceMenu .mceMenuItem .mce_h4 span.mceText {
    font-weight: normal;
    font-size: 1.5em;
}

h5, .o2k7Skin .mceMenu .mceMenuItem .mce_h5 span.mceText {
    font-weight: bold;
    font-size: 1.3em;
}

h6, .o2k7Skin .mceMenu .mceMenuItem .mce_h6 span.mceText {
    font-weight: normal;
    font-size: 1.3em;
}


h1, .with-arrow {
    /*background: url("images/title-icon.gif") no-repeat center left;*/
    color: #7f7f7f;
    font-weight: bold;
    font-size: 18px;
    margin: 5px 0px 8px 0px;
    padding: 0px 0px 4px 24px;
    /*padding: 0px 0px 4px 24px;*/
    padding: 0px 0px 4px 0px;
    font-family: Trebuchet MS, Trebuchet, Arial, Helvetica, sans-serif;
}

h1 a {
    color: #C62828;
}

.with-arrow a {
    color: #7f7f7f;
    text-decoration: none;
}

.red-title, .red-title a{
    color: #C62828;
}

.red-title a {
    text-decoration: none;
}

.right-arrow {
    color: #C62828;
    background: url("images/right-arrow.gif") no-repeat center right;
    text-align: right;
    margin: 5px 0px 8px 0px;
    padding: 0px 20px 0px 0px;
    font-size: 12px;
    font-weight: bold;
}

.right-arrow a {
    color: #C62828;
    text-decoration: none;
}

.right-arrow a:hover {
    text-decoration: underline;
}

.upper-case {
    text-transform: uppercase;
}

a.bold-link {
    font-size: 12px;
    font-weight: bold;
    color: #C62828;
    text-decoration: none;
}

a.bold-link:hover {
    text-decoration: underline;
}



/*** Links ***/

a, body.mceContentBody a {
    color: #5f5f5f;
    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
{ 
}



/*** Specialne zajazdy ***/

div.special-tours {
    margin: 0px 0px 20px 0px;
}

div.special-tours div.image {
    width: 214px;
    float: left;
}

div.special-tours div.image img {
    padding: 4px;
    border: 1px solid #7f7f7f;
}

div.special-tours div.text {
    float: right;
    width: 225px;
}




