/* Styl pro strany deniku */

/* globalni vlastnsti hypertextovych linku */
a:link {
   color: #800000;
   background-color: transparent;
   text-decoration: none;
}

a:visited {
   color: #000080;
   background-color: transparent;
   text-decoration: none;
}

a:hover {
   color: #ff0000;
   background-color: transparent;
   text-decoration: none;
}

a:active {
   color: #ff0000;
   background-color: transparent;
   text-decoration: none;
}

/* Globalne zvetsene vertikalni odstupy seznamovych polozek */
dd {
   margin-bottom: 1ex;
}

li {
   margin-bottom: 1ex;
}

/* Standardni styl pro bezne denikove stranky (default) */
body {
   width: 500px;                 /* M$ crap ignores this */
   margin: 0px auto auto 30px;   /* like a clock, from the top */
   padding: 0px;
   border: none 0px;
   background-image: url(images/pozadi.jpg);
   font-family: "Times New Roman", Times, serif;
   font-style: italic;
}

div { 
   width: 500px;   /* M$ crap does not inherit properly */ 
}

/* Navigace na hornim a dolnim okraji textovych stran */
div.navigator {         /* M$ crap does not respect div margins */
   text-align: center;  /* at the bottom of the page */
}

div.navigator img {
   width: 99px;
   height: 20px;
   margin: 25px 15px 25px 15px; /* ... so we put them here */
   padding: 0px;
   border: none 0px;
   vertical-align: middle;
}

/* Poznamky pod carou */
p.poznamky {
   text-align: left;
   font-family: "Times New Roman", Times, serif;
   font-style: normal;
}

/* Cislovani stran */
p.cislo-str {
   margin-top: 4ex;
   font-weight: bold;
   text-align: center;
   clear: both;
}

/* Obalka, index.html */
body.obalka {
   width: auto;
   margin: 50px auto auto auto;   /* like a clock, from the top */
   padding: 0px;
   border: none 0px;
   background-image: none;
   color: white;
   background-color: #333333;
   text-align: center;
}

body.obalka img {
   width: 600px; 
   height: 433px; 
   border: 0px;
}

/* Styl pro obsah */
body.obsah {
   font-family: Arial, Helvetica, sans-serif;
   font-style: normal;
}

body.obsah div {
   text-align: center;
}

body.obsah table.obsah1 { /* vlastni obsah */
   width: 100%; 
}

table.obsah1 h3.nadpis {
   text-align: left;
}

table.obsah1 h4.nadpis {
   margin-left: 1em;
   text-align: left;
}

table.obsah1 h3.strana {
   text-align: right;
}

table.obsah1 h4.strana {
   text-align: right;
}

body.obsah table.obsah2 { /* tabulky stranek a casu */
   border: thin solid black;
   color: black;
   background-color: #ffcc99; 
   width: 90%; 
   padding: 5px;
   margin: auto;
   text-align: center;
}

table.obsah2 hr {
   border-width: 1px 0px 0px 0px; 
   height: 0px;
}

/* Styl pro uvodni partie (predmluva, zivotopis) */
body.uvod {
   font-family: Arial, Helvetica, sans-serif;
   font-style: italic;
}

/* Textove prilohy */
body.txtpriloha {
   font-style: normal;
}

/* Obrazove prilohy */
body.obrpriloha {
   width: 700px;
   font-style: normal;
}

body.obrpriloha div { 
   width: 700px;   /* M$ crap does not inherit properly */ 
}

body.obrpriloha h3 {
   text-align: center;
}
 
body.obrpriloha table.obrazky {
   width: 100%; 
   padding: 0px;        /* M$ crap would not respect space here */
   text-align: center;
   color: black;
   background-color: #333333;
}

table.obrazky img {
   margin: 15px 15px 15px 15px;   /* ... so we put spacing here */
   padding: 0px;
   border: none 0px; /* M$ crap would not inherit this properly */
   vertical-align: middle;
}

body.obrpriloha table.popisky {
   width: 100%; 
   padding: 0px;            /* M$ crap does not respect it here */
   vertical-align: top;  /* does not work for M$ crap -> valign */
}

table.popisky p {
   padding: 15px 15px 15px 15px;  /* ... so we put spacing here */
}


