
body {
    margin: 0 auto;
    width:900px;
    font: normal 15px/1.5 Arial;
}
h1, h2 { margin: 0; line-height: 1.1em; }
h1 { font-size: 50px; letter-spacing: -1px; }
h2 {
    color: #666;
    font-size: 24px;
    margin-bottom: 30px;
}


/* ----------------------------

    jq-quickvalidate 
    
---------------------------- */

#my-form p {
    float: left;
    clear: both;
    position: relative;
    margin: .5em 0;
}
#my-form label, 
#my-form input { display: inline-block; }
#my-form label { width: 100px; }
#my-form label span { color: red; }
#my-form input {
    padding: 0 .3em;
    height: 24px;
    line-height: 24px;
    width: 200px;
    border: 1px solid #ccc;
}
#my-form input.invalid {
    background: #FFFAC4;
}
#my-form .error-icon {
    position: absolute;
    top: 0;
    right: -32px;
    height: 24px;
    width: 24px;
    background: url(../img/info.png) no-repeat;
    cursor: pointer;
}
#my-form .error {
    display: none;
    position: absolute;
    top: 10px;
    right: -195px;
    z-index: 999;
    padding: 10px;
    width: 120px;
    font-size: 12px;
    background: #222;
    color: white;
}
#my-form .error:after { /* Popup arrow */
    content: "";
    position: absolute;
    top: 0;
    left: -20px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent #222 transparent transparent;
}
#my-form button {border:1px solid #ccc; padding:5px 10px;}