/*******************************************************************************

*                                                                              *

*  Author  - Nathaniel Rushton                                                 *

*  Date    - 24 June 2006                                                      *

*  Purpose - Defines the styles of a contents page loaded in a frame           *

*                                                                              *

*******************************************************************************/

a:link, a:visited, a:active, p { 

   text-decoration   : none; 

   color             : Black;

   font-size         : 9pt;      /* Also known as size 1 in a browser */

   font-family       : Arial;

   font-weight       : bold; 

}

a:hover{ 

   text-decoration   : underline; 

   color             : red; 

}

p {

   margin-left       : 4pt;      /* Indents the text from the image 'bevel' */

}

body {

   background-color  : #c0c0c0;

}



/*******************************************************************************

*                                                                              *

*  These are the specifications for the table cells                            *

*                                                                              *

*  The standard table cell is redefined for single line main menu options.     *

*                                                                              *

*  4 additional classes are defined.                                           *

*    Double          - used when the option takes up 2 text lines              *

*    SingleDropDown  - used for a single line sub menu option                  *

*    DoubleDropDown  - used for a two line sub menu option                     *

*    Bookend         - used at the top and bottom of the list as an aesthetic  *

*                                                                              *

*******************************************************************************/

table {

   border            : 0px none;

   width             : 176

}

td {

   width             : 100%;     /* Gif width in pixels */

   height            : 32;       /* Gif height in pixels */

   background-image  : url('../Images/ButtonSingleSilver.gif');

   background-repeat : no-repeat;

   background-color  : #c0c0c0; /* Needed if the image is missing */

}

td.Double {

   height            : 36;

   background-image  : url('../Images/ButtonDoubleSilver.gif')

}