body {
  background: #d6dbd2;
  color: #3c3c3c;
  font-family: Verdana;
  font-size: 0.68em;
  margin: 0px;
  padding: 0px;
}

/* formátování textu */
/* odkazy*/
a {
  color: #E51B24;
  text-decoration: none;
}
  a:hover {
    color: #e51b24;
    text-decoration: underline;
  }
/*b {
  background: #0F0;
  font-weight: normal;
}*/
/* nadpisy */
h1 {
  margin: 0px;
  padding: 0 0 5px;
  font-size: 200%;
  font-family: Arial;
}
h2 {
  margin: 0px;
  padding: 0 0 7px;
  font-size: 170%;
  font-family: Arial;
}
h3 {
  margin: 0px;
  padding: 0 0 7px;
  font-size: 130%;
  font-family: Arial;
}
h4 {
  margin: 0px;
  padding: 0 0 7px;
  font-family: Arial;
  font-size: 110%;
}

/* odstavec*/
p {
  margin: 0px;
  padding: 0 0 12px;
}

/* obecná tabulka */
table {

}
  table th, td{
    vertical-align: top;
  }

/* seznamy */
ul {
  margin: 0px;
  padding: 0 0 10px 0;
}
  ul li {
    margin: 0 0 0 15px;
    padding: 0 0 0 0px;
    list-style-type: square;
    background: url(../images/li_button.gif) left 3px no-repeat;
  }
ol {
  margin: 0px;
  padding: 0 0 10px 10px;
}
  ol li {
    margin: 0px;
    padding: 0px;
  }
  
/* ostatní obecné elementy*/
hr {
  color: #000;
  height: 1px;
  border: none;
  margin: 0 0 0px;
  background: #000;
}
img {
  border: none;
}
form {
  padding: 0px;
  margin: 0px;
}
fieldset {
  text-align: right;
  background: #EBEBEB;
  padding: 5px 10px 5px 10px;
  border: 0px solid #737373;
  margin: 0px 0 5px -15px;
  width: 455px;
}
legend {
  border: 0px solid #BE121E;
  background: #737373;
  color: #FFF;
  padding: 5px;
  font-weight: bold;
}
fieldset input {
  margin: 1px 0;
}

/* OBECNÉ TŘÍDY */
/* barvy */
.red {
  color: #E51B24;
}
.dark {
  background: #EBEBEB;
}  

/* styly písem*/
.small {
  font-size: 80%;
}
.medium {
  font-size: 130%;
  font-family: Arial;
}
.big {
  font-size: 180%;
  font-family: Arial;
}
.strong {
  font-weight: bold;
}
.italic {
  font-style: italic;
}

/* zarovnávání textu*/
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.justify {
  text-align: justify;
}
.center {
  text-align: center;
}
.top {
  vertical-align: top;
}
.bottom {
  vertical-align: bottom;
}
.middle {
  vertical-align: middle;
}

/* floatování */
.fleft {
  float: left;
}
  img.fleft {
    margin: 0 15px 15px 0;
  }
.fright {
  float: right;
}
  img.fright {
    margin: 0 0 15px 15px;
  }
.clearer {
  clear: both;
}
.nowrap {
  white-space: nowrap;
}

/* tlačítka */
.button {
  display: inline-block;
  width: 71px;
  height: 20px;
  padding: 0px;
  text-align: center;
  margin: 0px;
  line-height: 20px;
  background: #CA1820 url(../images/button_bg.gif);
  border: none;
  color: #FFF;
  font-size: 100%;
}
  .button:hover {
    color: #FFF;
    background: #E51B24;
  }
.button_medium {
  display: inline-block;
  width: 130px;
  height: 20px;
  padding: 0px;
  text-align: center;
  margin: 0px;
  line-height: 20px;
  background: #CA1820 url(../images/button_bg.gif);
  border: none;
  color: #FFF;
  font-size: 100%;
}
  .button_medium:hover {
    color: #FFF;
    background: #E51B24;
  }
.button_large {
  display: inline-block;
  width: 180px;
  height: 20px;
  padding: 0px;
  text-align: center;  
  margin: 0px;
  line-height: 20px;
  background: #CA1820 url(../images/button_bg.gif);
  border: none;
  color: #FFF;
  font-size: 100%;
}
  .button_large:hover {
    color: #FFF;
    background: #E51B24;  
  }
  
.input_text_medium {
  width: 194px;
  height: 20px;
  line-height: 20px;
  background: url(../images/input_text_medium_bg.gif);          
  padding: 0 3px;
  margin: 0 5px 0 0;
  border: none;
}
  
/* šířky elementů */
.width_100p {
  width: 100%;
}

.width_100 {
  width: 100px;
}
.width_150 {
  width: 150px;
}
.width_175 {
  width: 175px;
}
.width_190 {
  width: 190px;
}
.width_200 {
  width: 200px;
}
.width_250 {
  width: 250px;
}
.width_300 {
  width: 300px;
}
.width_400 {
  width: 400px;
}
/* LAYOUT STRÁNEK*/
#page {
  position: relative;
  width: 965px;
  margin: 0px auto;
  background: #EEE;
}

  #header {
    position: relative;
    height: 128px;
    background: url(../images/header_bg.gif) left top no-repeat;
  }
  #header a#header_nadpis {
    color: #FFF;
    font-size: 12px;
    font-family: Verdana;
    font-weight: normal;
    position: absolute;
    top: 48px;
    left: 80px;
  }
  #header h1 a {
    color: #FFF;
  }
    #logo {
      position: absolute;
      left: 0px;
      top: 0px;
    }
    #main_navigation {
      position: absolute;
      bottom: 0px;
      width: 100%;
    }
      #main_navigation a {
        display: inline-block;
        height: 40px;
        color: #3E3E3E;
        line-height: 40px;
        padding: 0 10px;
      }
      #main_navigation a.active {
        background: #FFF;
      }
      #main_navigation a:hover {
        
      }

    #lang_navigation {
      position: absolute;
      bottom: 40px;
      right: 15px;
      text-transform: capitalize;
      font-size: 95%;
    }
      #lang_navigation a.lang_navigation {
        display: block;
        height: 32px;
        float: left;
        margin: 0 0 0 2px;
        line-height: 32px;
        text-decoration: none;
        color: #3E3E3E;
      }
      #lang_navigation span {
        cursor: pointer;
        float: left;
        display: block;
        height: 32px;
        line-height: 32px;
      }
        /* normální stav */
        a.lang_navigation span.left{
          width: 0px;
          background: #FFF/* url(../images/lang_nav_left.gif)*/;
        }
        a.lang_navigation span.text{
          padding: 0 8px;
          background: #FFF url(../images/lang_nav_text.gif);
        }
        a.lang_navigation span.right{
          width: 0px;
          background: #FFF /*url(../images/lang_nav_right.gif)*/;
        }
        /* aktivní */
        a.lang_navigation span.left_active {
          width: 0px;
          background: #FFF /*url(../images/lang_nav_left_active.gif)*/;
        }
        a.lang_navigation span.text_active {
          padding: 0 8px;
          background: #FFF url(../images/lang_nav_text_active.gif);
        }
        a.lang_navigation span.right_active {
          width: 0px;
          background: #FFF /*url(../images/lang_nav_right_active.gif)*/;
        }
        
      #search_form {
        position: absolute;
        right: 15px;
        bottom: 10px;
        z-index: 1;
      }
        .search_string, .input_text {
          width: 131px;
          height: 20px;
          line-height: 20px;
          background: url(../images/search_string_bg.gif);
          float: left;          
          padding: 0 3px;
          margin: 0 5px 0 0;
          border: none;
        }

      #switch_currency {
        position: absolute;
        right: 15px;
      }
        #switch_currency a, #switch_currency label {
          color: #FFF;
          margin: 0 5px;
        }

      #support_navigation {
        position: absolute;
        right: 5px;
        top: 0px;
        color: #FFF;
        padding: 3px 10px;
        font-size: 90%;
      } 
        #support_navigation a {
          color: #FFF;
        } 
        
  #kukurice {
    position: absolute;
    right: 240px;
    top: 125px;
    width: 235px;
    height: 256px;
    z-index: 100;
    background: url(../images/kukurice.gif) no-repeat;
  }

  #main {
    background: #FFF;
    padding: 0 0 5px 0;
    position: relative;
    float: left;
  }

    #content_3_cols {
      background: url(../images/content_3_cols_bg.gif) 5px repeat-y;
      position: relative;
      float: left;
    }

    /* HOMEPAGE */

      /* home top */
      tr.top_teaser_table {
        color: #2e3b44;
      }
        tr.top_teaser_table td h2 {
          color: #2e3b44;
        }
          tr.top_teaser_table td h2 a{
            color: #2e3b44;
          }
        tr.top_teaser_table td h3 { 
          bottom: 0px;
          font-size: 100%;
        }
          tr.top_teaser_table td h3 a{ 
            color: #2e3b44;
          }
        tr.top_teaser_table td {
  
        }
        tr.top_teaser_table td.td_first_column {
          width: 205px;
          padding: 15px 15px 15px;
        }
        tr.top_teaser_table td.td_second_column {
          width: 475px;
          padding: 0;
          background: url(../images/top_teaser_1_bg.gif) repeat-y;
        }
          .top_teaser_1 {
            border-bottom: 5px solid #FFF;
            padding: 15px 15px 10px 15px;
            width: 205px;
            vertical-align: middle!important;
          }
          .top_teaser_2 {
            border-bottom: 5px solid #FFF;
            padding: 15px 15px 10px 15px;
            width: 205px;
            vertical-align: middle!important;
          }
          .top_teaser_3 {
            padding: 15px 15px 10px 15px;
            width: 205px;
            vertical-align: middle!important;
          }
          
        tr.top_teaser_table td.td_third_column {
          width: 205px;
          padding: 15px 15px 0 15px;
        }
          #kosik {
            vertical-align: bottom;
            margin: 0 0 -10px;
            width: 205px!important;
          }

      /* home bottom */
      tr.bottom_teaser_table {

      }
      tr.bottom_teaser_table th {
        background: #d6dbd2;/* url(../images/teaser_table_th_bg.gif) no-repeat;*/
        width: 205px;
        height: 50px;
        padding: 15px 15px 10px;
        text-align: left;
      }
        tr.bottom_teaser_table th h2 {
          color: #2e3b44;
          padding: 0 0 10px;
        }
          tr.bottom_teaser_table th h2 a{
            color: #2e3b44;
          }
        tr.bottom_teaser_table th h3 { 
          bottom: 0px;
          font-size: 100%;
        }
          tr.bottom_teaser_table th h3 a { 
            color: #2e3b44;
          }
        tr.bottom_teaser_table td h4 { 
          bottom: 0px;
          font-size: 120%;
        }
          tr.bottom_teaser_table td a { 
            color: #FFF;
          }
      tr.bottom_teaser_table td {
        background: #e51b24;
        padding: 15px;
        color: #FFF;
      }
      tr.image td {
        background: #e51b24;
        padding: 0px;
        color: #FFF;
      }
        tr.bottom_teaser_table td.zrniny_td {
          background: #E51B24  url(../uploads/images/zrniny.jpg) bottom no-repeat;
        }
        tr.bottom_teaser_table td.kejda_td {
          background: #E51B24 url(../uploads/images/kejda.jpg) bottom no-repeat;
        }
/* třísloupcový layout na podstránkách */
    #first_column {
      position: relative;
      float: left;
      width: 205px;
      overflow: hidden;
      padding: 15px;
      margin: 0 0 0 5px;
    }
      #side_navigation {
        width: 235px;
        margin: 0 0 0 -15px;
        padding: 0;
        overflow: hidden;
      }
        #side_navigation ul {
          list-style-type: none;
          padding: 0;
          margin: 0;
        }
        #side_navigation ul.selected {
            background: #8C8C8C;
        }
        #side_navigation ul.level_1 a {
          margin: 0 0 0 15px;
        }
        #side_navigation ul.level_2 a {
          margin: 0 0 0 30px;
        }
        #side_navigation ul.level_3 a {
          margin: 0 0 0 45px;
        }
        #side_navigation ul.level_4 a {
          margin: 0 0 0 60px;
        }

          #side_navigation ul li {
            display: block;
            padding: 0 0 0 0px;
            margin: 0 0 0 0px;
                      list-style-type: none;
          }
          #side_navigation ul li.selected {

          }

            #side_navigation ul li a {
              display: block;
              color: #FFF;
              padding: 5px 10px 5px 20px;
              background: url(../images/side_navigation_bullet.gif) 9px 9px no-repeat;
            }          
            #side_navigation ul li a.plus {
              background: url(../images/side_navigation_plus.gif) 7px 7px no-repeat;
            }
            #side_navigation ul li a.minus {
              background: url(../images/side_navigation_minus.gif) 7px 7px no-repeat;
            }
            #side_navigation ul li a.selected {
              background-color: #FFF;
              color: #e51b24;
            }
    #second_column {
      position: relative;
      float: left;
      width: 445px;
      padding: 15px 15px 0 15px;
      margin: 0 0 0 5px;
      overflow: hidden;
    }
    #second_column img{
      max-width: 445px; 
    }
      h1.nadpis {
        margin: -15px 0 5px -15px;
        padding: 15px;
        background: #FFF;
        width: 100%;
        font-size: 200%;
        color: #E51B24;
      }
      h2.nadpis {
        margin: -15px 0 5px -15px;
        padding: 15px;
        background: #FFF url(../images/h2_nadpis_bg.gif) bottom no-repeat;
        width: 100%;
        height: 30px;
        border-bottom: 5px solid #FFF;
      }
      .page_image {
        margin: -15px 0 5px -15px;
        width: 235px;
      }
        .page_image img {
          width: 100%;
          border-bottom: 5px solid #FFF;
        }
      .breadcrumbs {
        border: 1px solid #eaeaea;
        width: 443px;
        padding: 11px 15px;
        margin: 0 0 15px -15px;
        background: #eaeaea;
      }
        .breadcrumbs a {
          color: #3E3E3E;
          display: inline-block;
        }

    #third_column {
          position: relative;

      float: left;
      width: 205px;
      margin: 0 0 0 5px;
      padding: 15px;
    }

    #loga {
      position: relative;
      float: left;
      width: 925px;
      padding: 15px 20px;
    }
      #loga img.fleft {
        margin: 0 15px 0 0;
        float: none;
        vertical-align: middle;
      }
        
  #footer {
    position: relative;
    width: 955px;
    background: #D6DBD2 url(../images/footer_bg.gif) no-repeat;
    font-size: 90%;
    padding: 30px 5px;
    color: #515250;
  }
    #footer a {
      color: #515250;
    }
    #kategorie_links {
      width: 780px;
    }
    #kategorie_links a {
      display: inline-block;
      width: 175px;
    }
    
    #slider {
    position: relative;
    clear: both; 
      padding: 0 5px;
      background: #FFF;
      width: 955px;
    }
      #slider form {
        padding: 5px 15px;
        background: #d6dcd2;
      }
        #slider label {
          line-height: 20px;
          margin: 0 5px 0 0;
        }
    #slider_link {
      position: absolute;
      right: 25px;
      top: 0px;
      display: table;
      width: 150px;
      height: 48px;
      padding: 0px;
      vertical-align: middle;
      overflow: hidden;
      background: url(../images/slide_button_bg.gif) bottom no-repeat;
    }
      #slider_link span.row {

      }
      #slider_link span.cell {
        display: table-cell;
        width: 150px;
        padding: 0 40px 5px 10px;
        height: 43px;
        vertical-align: middle;     
      }

  #footer hr {
    height: 1px;
    border: none;
    background: url(../images/footer_hr_bg.jpg) no-repeat;
  }
  
#inFooter {
  margin: 0px auto;
  width: 950px;
}
  #inFooter a {
    color: #515250;
    display: inline-block;
    margin: 0 5px 0 0;
  }
    #inFooter a:hover {
      color: #e51b24;
    }


  /* kategorie */
  .category_image {
    position: relative;
    float: left;  
    width: 205px;
    padding: 0px 15px 15px 0;
  }
    .category_image img {
      width: 100%;
    }
  .short_kategorie , .short_kategorie_last {
    position: relative;
    float: left;  
    width: 205px;
    padding: 15px;
  }
  .short_kategorie .kratky_popis, .short_kategorie_last .kratky_popis {
    margin: 0 0 10px 0;
  }
    .short_kategorie img, .short_kategorie_last img {
      width: 100%;
    }
  .short_kategorie {
    margin: 0 5px 5px -15px;
  }
  .short_kategorie_last {
    margin: 0 -15px 5px 0;
  }
  
  /* zbozi / produkt */
  .product_short , .product_short_last {
    position: relative;
    float: left;  
    width: 188px;
    height: 300px;
    border: 1px dotted;
    padding: 15px;
  }
  .product_short {   
    margin: 0 5px 5px 0;
  }
  .product_short_last {
    margin: 0 0 5px 0;
  }
    .product_short div.image, .product_short_last div.image {
      display: block;
      width: 100%;
      padding: 15px;
      margin: 0 0 10px -15px;
      height: 140px;
      background: #EBEBEB;
      overflow: hidden;
    }
      .product_short a.image, .product_short_last a.image {
        display: block;
        width: 100%;
        height: 140px;
        background: #EBEBEB;
        overflow: hidden;
      }
        .product_short a.image img, .product_short_last a.image img {
          height: 140px;
        }

    .product_short h4, .product_short_last h4 {
      display: block;
      margin: -15px 0 0 -15px;
      font-size: 130%;
      padding: 15px;
      color: #FFF;
      background: #E51B24;
      height: 35px;
      width: 100%;
    }
      .product_short h4 a, .product_short_last h4 a{
        color: #FFF;
      }    
    .product_short p, .product_short_last p {

    }
    .product_short .add_to_cart_button, .product_short_last .add_to_cart_button {
      position: absolute;
      bottom: 97px;
      right: 5px;
      text-align: center;
    }
    .product_short .show_button, .product_short_last .show_button {
      position: absolute;
      display: block;
      width: 150px;
      color: #E51B24;
      background: none;
      bottom: 10px;
      left: 15px;
      text-align: left;
    }  
  
  .product_full {
    width: 445px;
    float: left;
    padding: 0 15px;
    margin: 0 5px 5px -15px;
  }
    .product_full .product_galery, .product_galery {
      width: 445px;
      float: left;
      padding: 15px;
      margin: 0 5px 5px -15px;
      background: #EEE;
    }
      .product_full .product_galery img, .product_galery img {
        float: left;
        margin: 0 5px 5px 0; 
      }
    .product_full .product_cart {
      position: relative;
      width: 445px;
      float: left;
      padding: 15px;
      margin: 0 5px 5px -15px;
      background: #EBEBEB;
    }
      .product_full .product_cart hr {
        background: #c9c9c9;
        border: 0px solid #c9c9c9;
        margin: 0 0 10px;
        height: 1px;
      }
      .product_full .product_cart .switchCurrency {
        margin: 0 0 4px;
      }

      .product_full .product_cart #add_to_cart {
        position: absolute;
        display: block;
        border: none;
        color: #CA1820;
        font-weight: bold;
        font-size: 100%;
        text-align: left;
        padding: 10px 0 0 10px;
        width: 115px;
        cursor: pointer;
        height: 62px;
        right: 15px;
        bottom: 40px;
        background: url(../images/add_to_cart.gif) left top no-repeat;
        
      }
      
    .product_related {
      width: 445px;
      float: left;
      padding: 15px;
      margin: 0 5px 0px -15px;
      background: #EBEBEB;
    }
      .product_related .related_item{
        width: 81px;
        padding: 2px;
        overflow: hidden;
        background: #FFF;
        float: left;
        margin: 0 5px 2px 0;
      }
        .product_related .related_item h4 {
          height: 25px;
          font-size: 90%;
        }
        .product_related .related_item .image {
          display: block;
          height: 75px;
          overflow: hidden;
        }
        .product_related .related_item .image img {
          width: 100%;
        }
      .product_related .last{
        width: 81px;
        margin: 0 0 5px;
      }

    .product_dotaz {
      width: 445px;
      padding: 15px;
      margin: 0 5px 5px -15px;
      background: #EBEBEB;
    }
  /* kontaktní formulář */
  #kontaktForm {
    float: left;
  }
  #kontaktForm fieldset {
    margin: 0px;
    width: 445px;
    padding: 0px;
  }
    #kontaktForm .text {
      width: 250px;
    }
    #kontaktForm .textarea {
      width: 250px;
    }
  /* košík */
  .kosik_table {
    width: 475px;
    margin: 0 0 0 -15px;
  }
    .kosik_table tr.dark {
      background: #EBEBEB;
    }  
    .kosik_table tr.line_top {
      border-top: 2px solid;
    }  
      .kosik_table th {
        background: #737373;
        padding: 5px 2px;
        color: #FFF;
      }
      .kosik_table td {
        padding: 5px 2px;
      }
      .kosik_table td.price {
        color: #E51B24;
        font-size: 130%;
      }
      .kosik_table td.first {
        padding: 5px 0 0px 15px;
      }
      .kosik_table td.first_2 {
        padding: 0px 0 5px 15px;
      }      
      .kosik_table td.last {
        padding: 5px 15px 0px 0;
      }
      .kosik_table td.last_2 {
        padding: 0px 15px 5px 0;
      }      
      .kosik_table td.large, .kosik_table td .large {
        font-size: 140%;
        font-weight: bold;
        font-family: Arial;
      }
      .link_remove {
        padding: 0 0 0 12px;
        margin: 0 5px;
        background: url(../images/remove.gif) no-repeat;
      }
  /* kosik small */
  #small_cart {
    
  }
    #small_cart .cart_item {
      width: 235px;
      padding: 2px 0;
      margin: 0 0 1px -15px;
      /*border-bottom: 1px solid #737373; */
      background: #E4E4E4;
    }
      #small_cart .count {
        display: block;
        float: left;
        width: 25px;
        padding: 0 0 0 15px;
        font-size: 100%;
      }
      #small_cart .name {
        display: block;
        float: left;
        width: 110px;
        padding: 0 0 0 5px;
      }
      #small_cart .price {
        display: block;
        float: left;
        width: 60px;
        padding: 0 0 0 5px;
      }
    
    
    #small_cart tr.dark {
      background: #EEE;
    }  

      #small_cart table tr td{
        padding: 2px;
      }

    
  /* order steps */
  .order_steps {
    margin: 0 0 50px -15px;
    width: 475px;
    text-align: center;
  }
    .order_steps th {
      padding:  20px 20px 0 20px;
      font-size: 110%;
      color: #E51B24;
    }
    .order_steps td {
      padding:  20px 0 0 0;
      font-size: 110%;
      color: #E51B24;
    }
    
  .fakturace {
    width: 215px;
    float: left;
    margin: 0 5px 5px -15px;
  }
  .doruceni {
    width: 215px;
    float: left;
    margin: 0 -15px 5px 0;
  }

  /* clanky*/
  #aktuality {

  }
  
  .clanky_short_titul {
    margin: 0 0 25px;
  }
    .clanky_short_titul a {
      color: #E51B24!important;
    }
    .clanek_nadpis {
      width: 365px;
      float: left;
    }

    .clanky_short_titul h3 {
      font-size: 100%;
      padding: 0px;
    }

  .clanky_short {
    margin: 0 0 20px;
  }
    .clanky_short .datum {
      width: 80px;
      float: left;
    }
    .clanky_short .obsah {
      width: 365px;
      float: left;
    }
    .clanky_short a {
      color: #E51B24
    }
    .clanky_short h3 {

    }
    .clanky_short .datum {
      color: #AAA;
    }
 /* dotaz */

  #close_dotaz {
    float: right;
    display: block;
    width: 26px;
    height: 26px;
    background: url(../images/close.gif) no-repeat;
  }

  /* sitemapa / mapa stranek */
  .sitemap {
    
  }
    .sitemap ul {
      padding: 0px;
    }

/* kontakty */
.kontakt_person {
  position: relative;
  padding: 0 180px 0 0;
  width: 270px;
}
  .kontakt_person p {
    padding: 0 0 5px;
  }
  .kontakt_mapa {
    position: absolute;
    right: 0px;
    top: 0px;
  }


/* vyhodnocení formuláře*/
#over {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 100;
  background:  url(../images/blackdot.gif);
}
  #ok {
    line-height: 16px;
    position: absolute;
    left: 50%;
    top: 50px;
    margin-left: -80px;
    width: 160px;
    color: #FFF;
    text-align: center;
    padding: 160px 20px 20px;
    z-index: 200;
    background: #38943b url(../images/info.gif) 50% 15% no-repeat;
  }
    #ok p {
      line-height: 16px;
    }
  #false {
    position: absolute;
    left: 50%;
    top: 50px;
    margin-left: -80px;
    width: 160px;
    color: #FFF;
    text-align: center;
    padding: 160px 20px 20px;
    z-index: 200;
    background: #C73337 url(../images/alert.gif) 50% 15% no-repeat;
  }
    #false p {
      line-height: 16px;
    }

/* zprávy, hlášní atp... */
.message {
  display: block;
  padding: 15px;
  width: 445px;
  margin: 0 0 5px -15px;
  background: #38943b;
  color: #FFF;
  font-weight: bold;
}
.message_red {
  display: block;
  padding: 15px;
  width: 445px;
  margin: 0 0 5px -15px;
  background: #C73337;
  color: #FFF;
  font-weight: bold;
}