/* 
    Frontend
    Created on : 27.11.2014, 00:51:50
    Author     : AnBit
*/

/** HTML ELEMENTS **/
body {
    font-size: 12px;
    font-family: Verdana,Arial,Helvetica,sans-serif;
    line-height: 18px;
    background: white url(../images/bg_body.jpg) repeat-y;
    background-size: 100%;
    color: #333;
    font-family: sans-serif;
    letter-spacing: 0.07em;
}

h1, h2, h3 {
    color: #a30206;
    line-height: 20px;
    margin: 0 0 10px;
}
h1 {
    font-size: 16px;
    margin: 15px 0 25px;
}
h2 {
    font-size: 14px;
}
h3 {
    font-size: 13px;
}
a  {
    color: #a30206;
}
a:link  {
    color: #a30206;
}
a:visited {
    color: #a30206;
}
a:hover {
    color: #a30206;
    text-decoration: none;
}

ul {
    list-style-type: disc;
    margin-top: -5px;
    margin-bottom: 15px;
}

li {
    margin: 0 0 5px 25px;
    line-height: 16px;
}

ol {
    list-style-type: decimal;
    margin-bottom: 15px;
}

p {
    line-height: 16px;
    margin: 0 0 16px;
}

strong {
    color: black;
}

/*---------------- table ----------------------*/
table {
    padding: 5px;
    border: none;
}
table td, table th {
    padding: 1px 5px;
}
table thead {
    font: normal 12px Helvetica Neue,Helvetica,sans-serif;
    color: #000;
}
table th {
    text-align: left;
    vertical-align: central;
    /*border-bottom: 1px solid #333;*/
}
table td {
    font-size: 12px;
    vertical-align: top;
}
table td:hover {
    /*background-color: #cecece;*/
}
td img {
    margin: 5px;
    border: 4px solid #999;
}
td a {
    text-decoration: underline;
}

/*------------ formulare -------------------------*/

form ul {
    list-style-type: none;
}

form ul, form ul li {
    padding: 0;
    margin: 0;
}

label, input, textarea, select {
    margin: 5px;
    padding: 3px;
    font-size: 12px;
    color: #333;
    font-family: Verdana,Arial,Helvetica,sans-serif;
    line-height: 18px;    
}

input, textarea, select {
    border: 1px solid #FFCAA8;
    background: #FFEED3;
}

input[disabled=disabled], textarea[disabled=disabled], select[disabled=disabled] {
    background: #FFBD5B;
}

label {
    display: block; 
    float: left;
    clear: left;    
    width: 150px;
}

input {
    width: 250px;
}

textarea {
    width: 400px;
    height: 100px;
}

input:focus, textarea:focus {
    background-color: #FFE0B2;
}

input[type=submit] {
    display: block;
    width: auto;
    background: #c1121c;
    border: 1px solid #c1121c;    
    padding: 5px 30px;
    color: white;
    cursor: pointer;
}

