/*
 * 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: Arial, Verdana, Helvetica, sans-serif;
    font-size: 13px;
}

body {
    color: #000000;
}

body.mceContentBody {
}

div.clear {
    float: none;
    clear: both;
    font-size: 0px;
}



/*** Headers ***/

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

h2 {
    font-size: 2.0em;
}

h3 {
    font-size: 1.8em;
}

h4 {
    font-size: 1.6em;
}

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

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

.yellow-title, h4 {
    margin: 0px;
    padding: 2px 5px 2px 5px;
    font-weight: bold;
    font-size: 13px;
    background: url("images/yellow-title.gif") no-repeat left top;
    height: 15px;
    overflow: hidden;
    color: #b33b94;
}

h4 {
    margin: 0px 0px 10px 0px;
    display: inline-block;
    min-width: 300px;
}

.purple-title {
    margin: 0px;
    padding: 5px 0px 0px 20px;
    font-weight: bold;
    font-size: 22px;
    background: url("images/purple-title.gif") no-repeat left top;
    height: 35px;
    overflow: hidden;
    color: white;
}

.pink-title {
    margin: 0px;
    padding: 4px 5px 2px 5px;
    font-weight: bold;
    font-size: 22px;
    color: #d0129f;
}

.white-on-pink-title {
    margin: 0px;
    padding: 4px 5px 2px 5px;
    font-weight: normal;
    font-size: 16px;
    background-color: #d0129f;
    color: white;
}

div.first-column, div.second-column {
    float: left;
    width: 300px;
    margin: 0px 30px 0px 0px;
}

div.third-column {
    float: right;
    width: 300px;
    margin: 0px 0px 0px 0px;
}

.double-lines {
    line-height: 130%;
}



/*** Links ***/

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

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

a.pink {
    padding: 0px 3px;
    color: #d0129f;
    text-decoration: underline;
}

a.pink:hover {
    background-color: #d0129f;
    color: white;
    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
{
}
