/**
 *  css/styles.css
 *
 *  @name   styles
 *  @author DIVI Grupa
 */

/* GENERIC HTML ELEMENTS
/* ----------------------------------------- */

body {
    background: #FFF;
    background-image: url(../img/body_bg.jpg);
    font-family: arial, sans-serif;
    font-size: 12px;
    color: #333;
    min-width: 500px;
    padding: 80px;
    }

/* TEXTOGRAPHY */

h1, h2 {
    border-bottom: 1px dotted #555;
    margin-bottom: 20px;
    padding-bottom: 20px;
    }

h1 { font-size: 40px; }
h2 { font-size: 17px; }

/* HYPERLINKS */

a {
    color: #0080C0;
    text-decoration: none;
    }

a:hover {
    color: #0080C0;
    text-decoration: underline;
    }

/* FORM */

.input {
    margin-bottom: 20px;
    overflow: hidden;
    }

.text label {
    display: block;
    margin-bottom: 10px;
    }

.text input {
    border: 1px solid #CCC;
    font-size: 20px;
    padding: 5px 10px;
    width: 400px;
    }

.submit input {
    background: #004080;
    color: #FFF;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    padding: 8px 20px;
    }

/* RESULTS */

.result {
    padding-left: 290px;
    overflow: hidden;
    }

.result img {
    display: block;
    float: left;
    
    margin-left: -290px;
    height: 200px;
    width: 270px;
    }

.result span {
    display: block;
    margin-bottom: 10px;
    }

/* MISC */

.error {
    color: #FF0000;
    }