/********************************************************************
* style.css link defintions
* 
*     .left_column - menu area, defined at cell level
* .left_column_alt - "special" menu link, defined at link level
* 
*    .default_pink - content area, defined at cell level
*        .std_link - standard link in content, defined at link level
*    .biu_std_link - Bold, Italic, Underlink link in content, defined at link level
*      .visit_link - alternate content link to show visited, defined at link level
* .visit_link_bold - alternate content link to show visited, defined at link level
*         .bc_link - breadcrumb link, defined at link level
*        .std_cell - cell areas needing a standard link definition, defined at cell level
*         .infobox - info box area, defined at cell level
*   
*     .header_cell - site title area, defined at cell level
*     .footer_cell - footer area, defined at cell level
*    .feature_cell - feature resource box area, defined at cell level
*
*  .caption        - define caption line settings
*  .indent         - define indented line settings
*  .center         - define centered line settings
*  .top_row        - define blue strip along top of window
*  .top_text       - define text definition in site description bar area
*  .middle_column  - define text definition in site description bar area
*  .right_column   - define text definition in site description bar area
*  .footer         - define text definition in site description bar area
*          
********************************************************************/

/********************************************************************
                             DEFINITIONS
*********************************************************************/
p { 
    margin: 0;
} 

body, td {
	font-family: Verdana, Arial, Helvetica, sans-serif;  
	color: #000000;
	font-size: 13px;
	margin: 0;  
}

body {
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px; 
    margin-bottom: 0px; 
    padding: 0px; 
    border: 0px;	
/* 	 background: #FFFFFF;  */    
}

/* 00009D = RGB 00,00,157 */
H1 { color: #00009D; font-size:24px}
H2 { color: #00009D; font-size:18px}
H3 { color: #00009D; font-size:16px}
H4 { color: #00009D; font-size:13px}
H5 { color: #00009D; font-size:9px}
H6 { color: #00009D; font-size:6px}


/********************************************************************
                          LEFT COLUMN (MENU) LINKS
*********************************************************************/

/********************************************************************
* .left_column - default cell setting for menu area in left column
*              - text and links will be created standard as 10pt, bold
*                white with link as blue with red hover and no color
*                change on visited 
*              - must be assigned specifically to cell via
*                cell properties, style, class drop-down list
* 
*              - link:white  visited:white  active:white  hover:red
* 57BEB9 
*********************************************************************/
.left_column {
	font-size: 13px;
	font-weight: bold; 
	padding-left: 12px;
	padding-right: 12px;
	color: #00009D;
}

/* switched text-decoration from underline to none */
.left_column a:link    {color: #00009D; text-decoration:none} 
.left_column a:visited {color: #00009D; text-decoration:none} 
.left_column a:active  {color: #00009D; text-decoration:none} 
.left_column a:hover   {color: #66CCFF; text-decoration:none}

/********************************************************************
* .left_column_alt - specific link setting for alternate link type in
*                    menu area in left column
*                  - links will be created as yellow with red hover 
*                    and change to white on visited
*                  - must be assigned specifically to link via
*                    hyperlink properties, style, class drop-down list
* 
*                  - link:yellow  visited:yellow  active:yellow  hover:red 
*********************************************************************/
a:link.left_column_alt    {color: #FFFF00; text-decoration:underline} 
a:visited.left_column_alt {color: #FFFF00; text-decoration:underline} 
a:active.left_column_alt  {color: #FFFF00; text-decoration:underline} 
a:hover.left_column_alt   {color: #FF0000; text-decoration:underline}


/********************************************************************
                             BODY LINKS
*********************************************************************/

/*******************************************************************
* .default_pink - default cell settings for page content and footer area so 
*                 unassigned links can be identified easily; acts as a 
*                 reminder to check targer frame = new window setting 
*               - must be assigned specifically to cell via
*                 cell properties, style, class drop-down list
* 
*              - link:pink  visited:pink  active:pink  hover:red 
*********************************************************************/
.default_pink a:link    {color:#FF00FF; text-decoration:underline} 
.default_pink a:visited {color:#FF00FF; text-decoration:underline} 
.default_pink a:active  {color:#FF00FF; text-decoration:underline} 
.default_pink a:hover   {color:#FF0000; text-decoration:underline}

/********************************************************************
* .std_link - standard link definition as blue with red hover and no
*             color change on visited 
*           - must be assigned specifically to link via
*             hyperlink properties, style, class drop-down list
* 
*           - link:blue  visited:blue  active:blue  hover:red 
*********************************************************************/
a:link.std_link    {color:#0000FF; text-decoration:underline} 
a:visited.std_link {color:#0000FF; text-decoration:underline} 
a:active.std_link  {color:#0000FF; text-decoration:underline} 
a:hover.std_link   {color:#66CCFF; text-decoration:underline}

/********************************************************************
* .bui_std_link - Bold, Italic, Underline standard link definition as 
*                 blue with red hover and no color change on visited 
*               - must be assigned specifically to link via
*                 hyperlink properties, style, class drop-down list
* 
*               - link:blue  visited:blue  active:blue  hover:red 
*********************************************************************/
.bui_std_link {
	font-weight: bold;
	font-style:  italic;
}

a:link.bui_std_link    {color:#0000FF; text-decoration:underline} 
a:visited.bui_std_link {color:#0000FF; text-decoration:underline} 
a:active.bui_std_link  {color:#0000FF; text-decoration:underline} 
a:hover.bui_std_link   {color:#66CCFF; text-decoration:underline}

/********************************************************************
* .visit_link - visited link definition as blue with red hover and 
*               change to purple on visited 
*             - must be assigned specifically to link via
*               hyperlink properties, style, class drop-down list
* 
*             - link:blue  visited:purple  active:purple  hover:red 
*********************************************************************/
a:link.visit_link    {color:#0000FF; text-decoration:underline} 
a:visited.visit_link {color:#800080; text-decoration:underline} 
a:active.visit_link  {color:#800080; text-decoration:underline} 
a:hover.visit_link   {color:#66CCFF; text-decoration:underline}



/********************************************************************
* .visit_link_bold - visited link definition as blue with red hover and 
*                    change to purple on visited 
*                  - must be assigned specifically to link via
*                    hyperlink properties, style, class drop-down list
* 
*                  - link:blue  visited:purple  active:purple  hover:red 
*********************************************************************/
.visit_link_bold {
	font-weight: bold;
	font-size: 16px;	
}
a:link.visit_link_bold    {color:#0000FF; text-decoration:underline} 
a:visited.visit_link_bold {color:#800080; text-decoration:underline} 
a:active.visit_link_bold  {color:#800080; text-decoration:underline} 
a:hover.visit_link_bold   {color:#66CCFF; text-decoration:underline}


/********************************************************************
* .bc_link  - breadcrumb link definition as blue with red hover and
*             color change on visited 
*           - must be assigned specifically to link via
*             hyperlink properties, style, class drop-down list
* 
*           - link:blue  visited:purple  active:purple  hover:red 
*********************************************************************/
.bc_link {
	font-size:11px;
}

a:link.bc_link    {color:#0000FF; text-decoration:underline} 
a:visited.bc_link {color:#800080; text-decoration:underline} 
a:active.bc_link  {color:#800080; text-decoration:underline} 
a:hover.bc_link   {color:#66CCFF; text-decoration:underline}

/********************************************************************
* .std_cell - default cell setting for footer/link areas area 
*           - text and link created as 8pt with link as blue with red
*             hover and no color change on visited 
*           - must be assigned specifically to rhs cell area area via
*             cell properties, style, class drop-down list
* 
*           - link:blue  visited:blue  active:blue  hover:red 
*********************************************************************/
.std_cell {
	font-size: 13px;
}

.std_cell a:link    {color:#0000FF; text-decoration:underline} 
.std_cell a:visited {color:#0000FF; text-decoration:underline} 
.std_cell a:active  {color:#0000FF; text-decoration:underline} 
.std_cell a:hover   {color:#66CCFF; text-decoration:underline}

/********************************************************************
* .infobox - default cell setting for info box area 
*          - text and link created as 8pt with link as blue with red
*            hover and no color change on visited 
*          - must be assigned specifically to rhs cell area area via
*            cell properties, style, class drop-down list
* 
*          - link:blue  visited:blue  active:blue  hover:red 
*          
*    <del> .infobox { font-size: 8pt; }
*********************************************************************/
.infobox a:link    {color:#0000FF; text-decoration:underline} 
.infobox a:visited {color:#0000FF; text-decoration:underline} 
.infobox a:active  {color:#0000FF; text-decoration:underline} 
.infobox a:hover   {color:#66CCFF; text-decoration:underline}




/********************************************************************
                        HEADER & FOOTER LINKS
*********************************************************************/

/********************************************************************
* .header_cell - default cell setting for header area 
*              - text and link created as 24pt with link as dark blue
*                and no changes on hover or visited
*              - must be assigned specifically to the cell via
*                cell properties, style, class drop-down list
*
* changed font color to white and background color to blue
* 
*              - link:d blue  visited:d blue  active:d blue  hover:d blue 
*********************************************************************/
.header_cell {
	font-style:  italic;
	font-weight: bold;
/*	padding-left: 30px; */
	padding-right: 60px;
	text-align: center;
	color:#00009D;
	font-size:32px;
}

.header_cell a:link     {color:#00009D; text-decoration:none} 
.header_cell a:visited  {color:#00009D; text-decoration:none} 
.header_cell a:active   {color:#00009D; text-decoration:none} 
.header_cell a:hover    {color:#00009D; text-decoration:none}


/********************************************************************
* .header_cell_text
*              - default cell setting for header area 
*              - must be assigned specifically to the cell via
*                cell properties, style, class drop-down list
*
*********************************************************************/
.header_cell_text {
	font-style:  italic;
	font-weight: bold;
	padding-left: 30px; 
	padding-right: 60px; 
/*	text-align: center; */
	color:#00009D;
	font-size:32px;
}


/********************************************************************
* .footer_cell - default cell setting for footer area 
*              - text and link created as 8pt with link as blue
*                and no changes on visited
*              - must be assigned specifically to the cell via
*                cell properties, style, class drop-down list
* 
*              - link:blue  visited:purple  active:purple  hover:red
*********************************************************************/
.footer_cell {
	text-align: center;
	font-size:11px;
	line-height:150%; 
}

.footer_cell a:link     {color:#0000FF; text-decoration:underline} 
.footer_cell a:visited  {color:#800080; text-decoration:underline} 
.footer_cell a:active   {color:#800080; text-decoration:underline} 
.footer_cell a:hover    {color:#66CCFF; text-decoration:underline}


/********************************************************************
* .feature_cell 
* 
*              - link:blue  visited:purple  active:purple  hover:red
*********************************************************************/
.feature_cell {
	font-size:13px;
	padding-left: 20px;
	padding-right: 40px;
}

.feature_cell a:link     {color:#0000FF; text-decoration:underline} 
.feature_cell a:visited  {color:#800080; text-decoration:underline} 
.feature_cell a:active   {color:#800080; text-decoration:underline} 
.feature_cell a:hover    {color:#66CCFF; text-decoration:underline}



/********************************************************************
                            MISCELLANEOUS
*********************************************************************/

.caption  {
   text-align: left;
   font-weight: bold;
   font-size: 13px;
}

.indent  {
   padding-left: 40px;
   padding-right: 60px;
}

.center  {
   text-align: center;
}


/**** blue strip across top just above content area  ***/

.top_row {
	background: #000093
}

/*** text definition in site description bar area  ***/

.top_text {
	font-size: 11px;
	font-weight: bold;
	text-align: right; 
	white-space: nowrap;	
}


.middle_column {
	padding-left: 17px;
	padding-right: 17px;
}

.right_column {
	padding-left: 7px;
	padding-right: 7px;
	font-size: 12px;
}

.footer {
	font-size: 11px;
	padding: 11px;
}