/*
 * This sheet determines the layout of the 'contact'
 * and thankyou pages.
 * It is mutually exclusive to all other style sheets
 * other than 'main.css'
 */


/*
 * The main area of the contact page is split into
 * two pains: 
 *    info - basic address and telephone number
 *    data_table - a list of data entry fields and their titles
 */
div.info {
/*border-style: solid; border-width: 2px;*/
    position: absolute;
    top: 120px;
    left: 225px;
    width: 200px;
    height: 200px;
}    
    
div.info p {
    font-size: 0.7em;
    line-height: 1.50;
}


div.datatable {
/*border-style: solid; border-width: 1px;*/
    position: absolute;
    top: 120px;
    left: 480px;
    width: 360px;
    height: 300px;
    padding-right: 15px;
}    

div.datatable td {
    font-size: 0.7em;
    text-align: left;
    line-height: 1.5;
    align: top;
}


div.thankyou {
/*border-style: solid; border-width: 4px;*/
    position: absolute;
    top: 150px;
    left: 260px;
    width: 40em;
}    
    
div.thankyou h1 {
    text-align: center;
}

div.thankyou p {
    font-size: 0.8em;
    text-align: center;
}

