/*
*************************************************
** File Name: colors_adhcc.css
** Author: Steve Davies
** Create Date:  6/4/2006
** Desc: color styles common to all ADHCC pages and documents
**
** Change Log:
**
**  2007- 11-30 S. Davies: Restyled the menuButton link class to appear
**                      and behave more like a traditional link.
**
**  2008-05-12 J. Bouchard: added styling for footer_header div
**
** 2008-09-11  S. Davies: provide default colors for psuedo-classes for
**                      left-side Nav - Type I.  For inner left-side containers,
**                      may need to increase specificity for link pseudo-classes
**                      by using their container DIV's ID, to override these new
**                     #leftOuter ID-selected defaults.
**
** 2009-02-18 S. Davies: "Mid" sidebar re-org -qualified the 'div.sbMenu' class
**                    declaration with containing div name and ID as an 'ID selector', 
**                    to avoid unintentional overrides.
**
** 2009-02-23  S. Davies: Assign a specific background ("white") to "rightOuter" div
**                    "rightHeader" div, and  mainContent div.
**                            
** 2009-04-01  S. Davies: for re-org'd Login Form inputs, assign a specific foreground
**                      color to the class "logInLabel".
**
** 2009-05-13 S. Davies: removed all color rules for all links in mainContent (Type I) 
**                     and mainContentRight (Type II) DIVs, if any.
**                     Also factored out any link styles for the Records Pager.
**
**  YYYY-MM-DD X. XXXXX: xxxxxxxxxxxxxxxxxxxxxxxxx
**
**
*************************************************
**  begin style sheet file for "colors"
*/



/*  ------------ classes listed first  ----------------  */

span.redText { 
/*    color: #CC0033;   dark redblue */
    color: #C00;  /* dark red */	
/* border: 1px dashed green; */
}


span.silverText { 
/*    color: #CC0033;   dark redblue */
    color: #767;  /* dark red */	
/* border: 1px dashed green; */
}



/*  ************* Type II pages **************** */
div#topOuter {
    color: #147; 
    background: #FFF;
}


div#mainOuter {
    color: #147; 
    background: #FFF;
}



/*  ************* Type I pages *****************  */
div#leftOuter {
    color: #FFFFFF;
/*    background: #943163;  eggplant */
/*    background: #F43163;  heavy fuscia */
    /* background: #A00;   */        /* darker red */

/*
	background: #745D57;
	background: #467;
	background: #369;
   background: #356; dark gray-blue
   background: #257;
*/

	background: #753068;  /* deep purple */
}



/*  note: for Type II pages, need an explicit foreground-color to override topOuter, plus its own bgrd color  */
div#sbLeftUpperNav {
    color: #FFFFFF;
	background: #753068;  /* deep purple */
}


/*  --------------------------------------  */


div#sbLeftNavLowerImg {
    background: inherit;
    border-color: #F00;
}



/*  ************** psuedo-classes for Nav left ***************  */

/* ----  provide default colors for psuedo-classes for left-side Nav - Type I  -----  */
/* ----  2008-09-11  S. Davies   ---  */

  div#leftOuter a:link
, div#leftOuter a:visited {
    color: white; 

    -moz-outline: none;  /*  Mozilla-specific attribute disabled */
    outline-style: none;  /*  IE-specific attribute disabled */
    -moz-user-focus: none;  /*  Mozilla-specific attribute disabled */
}


div#leftOuter a:hover {
    color: #FFBFAA;
    text-decoration: underline;
}

/* ----  END:  2008-09-11  S. Davies   ---  */

/* ----   potential overrides here   ---  */

  div#sbLeftUpperNav a:link
, div#sbLeftUpperNav a:visited {
    color: #FFF;
}


div#sbLeftUpperNav a:hover {
    color: #FFBFAA;
/*    color: #0F0;  */
    text-decoration: underline; 
}


/* 
9/11/2008 - do not set any styles for the 'focus' and 'active' states -ignore them 
- they don't lend any value to links (like 'menu items') that nav away to other 'pages'.
*/

/* 2008-09-11 S, Davies - commented out

  div#sbLeftUpperNav a:focus
, div#sbLeftUpperNav a:active {
   color: #AAA;
}
*/

/*  ------------------------- more  left-side inner areas ------------------- */


/*  ------------ sbLeftContent -------------- */

div#sbLeftContent {
/*   background: #257;  dark gray-blue */
   background: transparent;
}


  div#sbLeftContent a:link
, div#sbLeftContent a:visited {
    color: #FFF;
    background: transparent; 
}

div#sbLeftContent a:hover {
    color: #FBB;
	text-decoration: underline;
}

/*  -------------- */

div#sbLeftContent div#hdrLogIn
, div#sbLeftContent div#hdrLogOut {
   color: silver;
}


/* 2009-04-01  S. Davies: for re-org'd Login Form inputs */
div#sbLeftContent *.logInLabel { 
    color:silver; 
}


div#sbLeftContent  a#linkLoginAssist {
    color: silver;
}


div#sbLeftContent  a#linkLoginAssist:hover {
    color: pink;
}


div#sbLeftContent  a#linkPswdChg {
    color: silver;
}


div#sbLeftContent  a#linkPswdChg:hover {
    color: pink;
}


/*  ------------ end: sbLeftContent -------------- */


/*   ------------ colors for the Left  Middle Sidebar (sb) dyn Menu classes  ------------   */



/* 2009-02-19 : set defaults for the "submenu/fly-out" container */
div#sbLeftMidNav div.sbMenu {
    color: #036; /* darker blue-green */
    background: #E1ECFB;  /* light powder blue */
}


/*  ------------ colors for the the Left Middle Sidebar (sb) "Menu Button" psuedo classes  ------------ */
   div#sbLeftMidNav a.sbMenuButton:link
,  div#sbLeftMidNav a.sbMenuButton:visited {
    color: inherit; /* the default */
    background: transparent;  /* the default */
}


div#sbLeftMidNav a.sbMenuButton:hover {
    color: #FFBFAA;
    color: #036; /* darker blue-green */
    background: #E1ECFB;  /* light powder blue */
    text-decoration: underline; 
    border: 1px solid silver;
}


/* 
9/11/2008 - Again, do not set any styles for the 'focus' and 'active' states -ignore them 
- they don't lend any value to links (like 'menu items') that nav away to other 'pages'.
*/



/*  ------------ color for the Left Middle Sidebar (sb) dyn fly-out "Menu Item" psuedo classes   ------------   */

/* 
2008-09-10  S. Davies:  increased specificity, 
                         using the container DIV's ID instead of the "div.sbMenu" class , 
                         to override new #leftOuter pseudo-class defaults 
*/


  div#sbLeftMidNav a.sbMenuItem:link
, div#sbLeftMidNav a.sbMenuItem:visited {
    color: #036; /* darker blue-green */
    background: transparent;
}


div#sbLeftMidNav a.sbMenuItem:hover {
   color: #047; /* medium blue-green */
   text-decoration: underline;
   background: #F9E9E9;
   /*   font-family: trebucet MS, Arial, Helvetica, sans-serif;*/
   font-weight: bold;
}


/* 
9/11/2008 - Again, do not set any styles for the 'focus' and 'active' states -ignore them 
- they don't lend any value to links (like 'menu items') that nav away to other 'pages'.
*/


/*  ------------ END: color for the Left Middle Sidebar (sb) dyn fly-out "Menu Item" psuedo classes   ------------   */

/* ----------------- more 'specific' details ------------------------- */

div#sbLeftMidNavBoxMemberProjects span {
    color: #A00;
}

/*  ------------ END: colors for the Left Nav Middle Sidebar   ------------   */

/*  ---------------------------- END: colors for Left Side   -----------------------   */


/*  ----------------------------------------------------------------- */
/*  --------------------   Right Side   ---------------------------- */
/*  ----------------------------------------------------------------- */

div#rightOuter {
    color: #147;
    background: #FFF;
}

/* -------------------- */

div#rightHeader {
    color: inherit;
    background: #FFF;
}


div#rightHeaderAcronym {
	color: #753068;  /* deep purple */
    background: transparent;
}


div#rightHeaderBizName {
    color: inherit;
    background: transparent;
}


/* note:  override earlier #rightSubHeader with specific biz section colors */

div#rightSubHeader {
    color: #FFF;
/*    background: #864179;   medium purple */
    background: #97528A;  /* medium-light purple */
    border-top: 1px solid  silver;
}



/*    ************ main NavBar color styles ***********  */
div#rightNavBar {
    color: #036;
/* 
    background: #CFE;
    background:#EFE5C2;    light beige 
*/

	background: #E1ECFB;  /* light powder blue  */
    border-top: 1px solid silver;
}


div#navBarMenuDDdyn {
    color: #FFF;
/*    background: #066;  dark green */
    /* background: #036; */    /* dark blue */ 

/*    background: #344C7C;  steel darkish blue   */
/*     background: #745D57;  dark brown */
    background: #257;
}


/*    ******** color for the navBarTop link psuedo classes  **************  */

 div#navBarTopRight a:link
 , div#navBarTopRight a:visited {
    color: #036;
}

div#navBarTopRight a:hover {
   color: #F60; 
}

div#navBarTopRight a:focus
 , div#navBarTopRight a:active {
    color: #669966;  
}


/*   ********** color for the navBarBreadcrumb psuedo classes  **************  */
 div#navBarBreadcrumb a:link
 , div#navBarBreadcrumb a:visited {
    color: #036;
}

div#navBarBreadcrumb a:hover {
   color: #F60; 
}

div#navBarBreadcrumb a:focus
 , div#navBreadcrumb a:active {
    color: #669966;  
}



/*  ********** colors for the main dyn Menu classes  *************  */
div.menuBar {
    border-right: 1px solid white ;  
}

div.menuBar a {
    background: transparent;
}

div.menu {
    background: #E1ECFB;  /* light powder blue */
}

a.menuItem {
    background: transparent;
}


/*   ********** color for the main dyn "Menu Button" psuedo classes  *************  */
   div.menuBar a.menuButton:link
,  div.menuBar a.menuButton:visited {
    color: #FFF;
    text-decoration: none;   
}

div.menuBar a.menuButton:hover {
    color: #F0F;
    text-decoration: underline;   
}



/*   ********** color for the main dyn "Menu Item" psuedo classes  **************  */
 div.menu a.menuItem:link
,  div.menu a.menuItem:visited {
    color: #036;
}

div.menu a.menuItem:hover {
      color: #F60; 
}


div#navBarMenuDDdynPublicationsData {
   border-style: none;
}



/*    ************* Main Content styles *********   */

div#mainContent {
    color: #000;
    background: #FFF;
}


div#mainContent  th {
/*    background: #6CC; greenblue-ish hue, used for Services */
/*     background: #D6FA83; greenish hue, used for FLTC*/
/*    background: #BCAD86;   medium brown*/
/*    background: #E8DBE8;   light purple */
    background: #CC9CBD;  /* medium-light reddish-purple */
}


div#mainContentLeft {
    color: #036;
    background: transparent;
    border-right: 1px solid #036;
}

div#mainContentRight {
    color: inherit;
    background: transparent;
}



/*   *************** Footer area  *************   */

div#rightFooter, div#footer {
    color: #036;
    background: #FFF;
}

div#footer_header {
   /* this should match rightNavBar */
   background: #E1ECFB;  /* light powder blue  */
}

div#footerAdverts {
/*    background: #FFBFAA; */
    background: #FFF;
}

div#footerNav {
    color: inherit;
    background: transparent;
}

div#footerNavLeft {
    color: inherit;
    background: transparent;
}

div#footerNavRight {
    color: inherit;
    background: inherit;
}

div#footerNavBottom {
    color: inherit;
    background: transparent;
}

/*  ********  footer - Right Nav *************   */
  div#footerNavRight a:link
, div#footerNavRight a:visited {
    color: #036;
}

div#footerNavRight a:hover {
   color: #F00;
}

  div#footerNavRight a:focus
, div#footerNavRight a:active {
    color: #669966;  
}

/*   ********  footer - Left Nav ***************  */
  div#leftFooter a:link
, div#leftFooter a:visited {
    color: #036;
}

div#leftFooter a:hover {
   color: #F00;
}

  div#leftFooter a:focus
, div#leftFooter a:active {
    color: #669966;  
}



/*  end of style sheet file */

