/*******************************************************************************
  základní nadpisy
*******************************************************************************/
h1
{
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 10px 0;
    padding-bottom: 4px;
}
.h1
{
    font-size: 20px;
    font-weight: bold;
    //margin: 10px 0 10px 0;
    //padding-bottom: 4px;
    margin-top: 10px;
}
h2
{
    font-size: 18px;
    font-weight: bold;
    margin: 10px 12px 6px 0;
}
.h2
{
    font-size: 18px;
    font-weight: bold;
    vertical-align: baseline;
}
h3
{
    font-size: 16px;
    font-weight: bold;
    margin: 8px 12px 2px 0;
}
h4
{
    font-size: 14px;
    font-weight: bold;
    margin: 4px 12px 2px 0;
}
/*******************************************************************************
  odstavec
*******************************************************************************/
p
{
    margin: 4px 12px 4px 0;
}
/*******************************************************************************
  citace
*******************************************************************************/
cite
{
    font-style: italic;
    color: green;
}
/*******************************************************************************
  link
*******************************************************************************/
a
{
    color: #700;
    cursor: pointer;
    text-decoration: none;
}
a:hover
{
    color: #096;
}
/*******************************************************************************
  tlacitko
*******************************************************************************/
button 
{
    border-color: butonface;
    cursor: pointer;
}
button:hover:enabled
{
    background-color: antiquewhite;
    cursor: pointer;
}
button:disabled
{
    color: gray;
    background-color: darkgray;
    border-color: butonface;
    cursor: default;
}
button:focus
{
    background-color: antiquewhite;
    border-style: solid;
}
/*******************************************************************************
  input, textarea
*******************************************************************************/
input, textarea, select
{
    font-family: Arial, Verdana, Tahoma;
    font-size: 14px;
    padding: 2px 0px 2px 2px;
    margin: 4px 0;
    vertical-align: middle;
    width: auto;
}
input {
    line-height: 16px;
}
textarea {
    resize: vertical;
}
select {
    height: 22px;
}
input.file {
    line-height: 18px;
    padding: 0;
}
/*******************************************************************************
  tabulka
*******************************************************************************/
td
{
    margin: 0px;
    padding: 2px 0px 2px 0px;
}
/*******************************************************************************
  obecné
*******************************************************************************/
.hidden
{
    display: none;
}
.grey
{
    color: grey;
}
.pointer                               /* nastavení packy po odstranění href  */
{
    cursor: pointer;
}
.normal
{
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    vertical-align: baseline;
}
.small
{
    font-size: 10px;
    //font-style:normal;
    vertical-align: baseline;
}
.space
{
    height: 6px;
}
/*******************************************************************************
  ramecek skupiny prvku
*******************************************************************************/
fieldset
{
    margin: 4px 8px 4px -8px;
    padding: 6px 0px 4px 10px;
    border: solid 1px olive;
    background: cornsilk;
}
/*******************************************************************************
  šedá linka v pravém sloupci
*******************************************************************************/
hr.right
{
    margin: 8px 12px 8px -4px;
    border: 1px solid olive;
    border-top: 0;
}

button.administration
{
    background-color: #d7d7bb;
    padding: 0px 10px;
    margin-top: 8px;
    margin-bottom: 6px;
    margin-right: 6px;
    border: 1px solid #d7d7bb;
    position: relative;
    top: -14px;
    left: 707px;
    height: 30px;
    //display: none;
    color: #d7d7bb;

}
button.administration:hover
{
    border: 1px solid olive;
    background-color: antiquewhite;
    color: black;
}