/* 
Document   : formcss
Created on : Sep 24, 2009, 11:08:10 PM
Author     : admin
Description:
Purpose of the stylesheet follows.
*/

/* 
TODO customize this sample style
Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root { 
    display: block;
}

body{
    font-family:verdana;
}
.formTitle{
    color:#2b6799;
    font-size:20px;
	font-weight:bold;
}
.formTitle img{
    width:100%;
    height:3px;
}
.formTable{
    border-collapse:collapse;
    background-color:#dee0e5;
    width:100%;
}
.formTable tbody{
    font-size:12px;
    color:#202f5b;
}

.formTable tbody select{
    font-size:11px;
    color:#013e89;
}

.formtable tfoot td{
    padding-top:10px;
}
.formTable tfoot img{
    width:24px;
    height:24px;
}
.formTable td{
    padding:5px;
}
.formTable img{
    cursor:pointer;
    cursor:hand;
}
.textField input{
    height:18px;
    width:130px;
    font-size:11px;
    color:#013e89;
}
.textField200px input{
    height:18px;
    width:200px;
    font-size:11px;
    color:#013e89;
}
.textFieldMid input{
    height:18px;
    width:250px;
    font-size:11px;
    color:#013e89;
}
.textFieldSmall input{
    height:18px;
    width:30px;
    font-size:11px;
    color:#013e89;
}
.textFieldDate input{
    height:18px;
    width:65px;
    font-size:11px;
    color:#013e89;
}
.textFieldDateTime input{
    height:18px;
    width:110px;
    font-size:11px;
    color:#013e89;
}
.textFieldBig input{
    height:18px;
    width:400px;
    font-size:11px;
    color:#013e89;
}
.txtValue{
    color:#26286a;
    font-weight:bold;
}
.btnSubmit{ 
    cursor:hand;
    cursor:pointer;
    background: url('../images/save.png') no-repeat;
    width:24px;
    height:24px;
    border:none;
}
.btnReset{ 
    cursor:hand;
    cursor:pointer;
    background: url('../images/undo.png') no-repeat;
    width:24px;
    height:24px;
    border:none;
}
.btnCancel{ 
    cursor:hand;
    cursor:pointer;
    background: url('../images/cancel.png') no-repeat;
    width:24px;
    height:24px;
    border:none;
}
.btnYes{ 
    cursor:hand;
    cursor:pointer;
    width:24px;
    height:24px;
    border:none;
    background: url(../images/check.png);
}