/* GLOBALS: specialty containers for forms, (floating on top of main site)  */
                                                              /* top of css */


#fshadow {                      /* properties on form shadow */
     width: 200px;
     height: 220px;
     position: absolute;
     left: 50%;
     margin-left: -190px;
     top: 100px;
     background-color: #cdcdcd;
}

#fbox {                        /* properties on form container */
     width: 200px;
     height: 220px;
     position: absolute;
     left: 50%;
     margin-left: -200px;
     top: 90px;
     border-top: 2px solid #262837;
     border-left: 2px solid #262837;
     border-right: 2px solid #535878;
     border-bottom: 2px solid #535878;
     color: #262837;
     background-color: #FFFFFF;
     font-weight: bold;
     text-align: center;
}
#fnot {                        /* properties on form container */
     width: 200px;
     height: 220px;
     position: absolute;
     left: 50%;
     margin-left: -200px;
     top: 90px;
     color: #0000B0;
     background-color: #FFFFFF;
     font-weight: bold;
     text-align: center;
}
.fcont {                           /* standard text content cell */
     width: 170px;                 /* as used in 400px wide form */
     font-size: 13px;
     font-weight: normal;
     margin-left: auto;
     margin-right: auto;
     margin-top: 10px;
     text-align: left;
}
