/* GLOBALS: definitions used by and affecting the BASS COMPANY PUBLIC site
                                        defines global containers and the main menu  */

#outer {                                /* defines and displays the "outer box" */
     border-top: 3px solid #6565F3;
     border-left: 3px solid #6565F3;
     border-right: 3px solid #000080;
     border-bottom: 3px solid #000080;
     width: 760px;
     height: 490px;
     margin: auto;                      /* centers it in viewers screen */
}

#content {                              /* the container for page content */
     height: 394px;
     width: 760px;
     text-align: center;
}

#spacer {                               /* eliminates problems when first content <div> */
     width: 470px;                      /* uses a margin for downward location */
     height: 20px;                      /* also assures uniformity of location */
     margin: auto;
}

.subcont {                              /* standard text content cell */
     width: 700px;
     margin-left: auto;
     margin-right: auto;
     margin-top: 5px;
}

#footer {                               /* contains the copyright */
     height: 30px;
     width: 700px;
     margin: auto;
     font-size: 10px;                    /* fixed size for copyright */
     font-weight: normal;
     color: #0000B0;
     text-align: center;
}


