h3 {
    font-size:14px;
    font-weight:bolder;
    font-family: Arial,Helvetica,sans-serif;
    color: #626262;
}

/* == Style the input boxes == */
input[type="text"] {
    border:1px solid #606060;
}

.table {
    width:90%;
}

th {
    text-align:left;
}

.align_left {
    float:left;
    text-align:left;
    width:200px;
    margin-bottom:20px;
}

.align_right {
    float:right;
    text-align:right;
    width:200px;
    margin-right:20px;
    margin-bottom:20px;
}

/* == Style the checkboxes == */
/*
input[type="checkbox"] {
    display:none;
}

input[type="checkbox"] + label span {
    display:inline-block;
    width:19px;
    height:19px;
    margin:-1px 4px 0 0;
    vertical-align:middle;
    background:url('../images/radio_sprites.png') left top no-repeat;
    cursor:pointer;
}

input[type="checkbox"]:checked + label span {
    background:url('../images/radio_sprites.png') -19px top no-repeat;
}
*/

/* == Style the radio buttons == */
/*
input[type="radio"] {
    display:none;
}

input[type="radio"] + label span {
    display:inline-block;
    width:19px;
    height:19px;
    margin:-1px 4px 0 0;
    vertical-align:middle;
    background:url('../images/radio_sprites.png') -38px top no-repeat;
    cursor:pointer;
}

input[type="radio"]:checked + label span {
    background:url('../images/radio_sprites.png') -57px top no-repeat;
}
*/