/*
***************************************************************
** File Name: vert_layout_right.css
** Author: Steve Davies
** Create Date: 6/29/2005
**
** Change Log:
**    11/22/2005 S. Davies: removed the font-size setting for
**                        the mainContent DIV.
**
**    03/30/2006 S. Davies: lessened the width of rightHeader
**                        from 100% to 99.75%
**
**    04/03/2006 S. Davies: several adjustments to the nested
**                        containers in "navBarTop", to improve display
**                        in SVGA mode.   Also, expanded the width of
**                        footerNavLeft and pushed footerNavRight over.
**
**                        
**    05/07/2007 S. Davies: for paragraph element with id="result_pager_bottom, 
**                     added styles for new classes for the links and spans, to allow styles
**					 to manage the positioning within the line.
**
**    05/20/2008 S. Davies: changed the font-family for div#navBarTop and
**                       div#navBarBreadcrumb to Verdana.  Also added a text-decoration
**                       of 'underline' for the hover of div#navBarTopRight's links.
**
**    05/21/2008 S. Davies: finally moved all styles for rightNavBar's 'internals' up to 
**                        'global.css', as they were found to be common with 'horiz_layout.css'.
**                        (diid the same for 'horiz_layout.css' as well)
**                        
****************************************************************
**  begin style sheet file
*/


/* ---------------- Primary container ---------------- */

div#rightOuter {
    position: absolute;
    top: 0;
    left: 20%;
    width: 80%;
    height: 100%;
    z-index: 2;
    font-size: .85em;
    visibility: visible;
}


/* ---------------- BEGIN: primary subcontainers --------------- */

div#rightHeader {
    position: absolute;
    top: 0;
    left: 0;
    width: 99.75%;
    height: 10%;
    z-index: 50;
	overflow: visible;
/* debug */
/*	border: 1px dashed aqua; */
}


div#rightNavBar {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%; /* of its parent container  */
    height: 12.5%;
    z-index: 100;  /* must maintain highest Z index within its parent container  */
    visibility: visible;
	display: block;
    overflow: visible;
}


div#mainContent {
    position: absolute;
    top: 23%;
    left: 0;
    width: 100%;
    height: 66.5%;
    z-index: auto;
/*	font-size: 1.1em; -this rule was too dominant at this high level of "container" */
}


/* --------- Note: there is no DIV in Type I ("vert") pages named "footer" -------  */
/* --------- i.e., the name "footer" is defined in Type II pages only ----------------  */
div#rightFooter {
    position: absolute;
    top: 90%;
    left: 0;
    width: 100%; 
    height: 8.5%;
    border-top: 1px solid silver;
    z-index: auto;
}


/* ---------------- END: primary subcontainers ----------------  */


/* ----------------------------- BEGIN: secondary containers -----------------------------  */



/* ---------------- BEGIN - rightHeader internals - primary  ----------------  */

div#rightHeader01 {
    position: absolute;
	top: 0;
	left: 0;	
	z-index: auto;
}


/* ---------------- END - rightHeader internals - primary  ----------------  */



/* 2008-05-21 S. Davies: note that rightNavBar internals were moved up to global.css  */


/* ---------------- BEGIN:  Main Content contextual rules ---------------- */


/*  
note:  by styling the "mainContent " ID, the CSS hierarchy will not effect any "Doc" content : 
the "Doc" template hierarchy ("Type II" templates) does not include a DIV with an ID of  "mainContent " .
*/


div#mainContent  table {
    border-bottom: 1px solid silver;

/*  the following are from the class ".fontSzLnHt01", XGA version  */
     /* font-size: .9em;  */
     /* line-height: 2.5;  */
}


div#mainContent  table-cell {
    overflow: hidden;
}


div#mainContent  th, strong {
	font-size: 1.1em;
	text-align: left;
}


div#mainContent  p.statusMsg {
	margin: 1.1em 0 0 1.1em;
}


/*  ----  styles for the record-set pager ("Page Records") custom tag contents ----  */
div#result_pager {
	margin-left: 1.1em;
}


div#result_pager p {
	margin: 0.5em;
	padding-bottom: 0.25em;
}


   p#result_pager_bottom span 
,  p#result_pager_bottom a {
	padding-right: 0.3em;
}

/*  more specific rules to override the above */
p#result_pager_bottom *.recs_pager_prev {
	padding: 0;
	margin-right: 1.2em;
}

p#result_pager_bottom *.recs_pager_next {
	padding: 0;
	margin-left: 1.2em;
}

  p#result_pager_bottom a.recs_pager_prev
, p#result_pager_bottom a.recs_pager_next {
   font-weight: bold;
}


/*  ----  END: styles for the record-set pager ("Page Records") custom tag contents ----  */


/* 6/7/05 - resolved to use sans-serif font for all browser display
div#mainContent {
    font-family: "Times New Roman", TimesNR, serif;
}
*/

/* ---------------- END:  Main Content contextual rules ---------------- */


/* ---------------- BEGIN:   rightFooter - secondary containers  ---------------- */

div#footerNav {
    position: relative;
    height: 100%;
    width: 100%;
    z-index: 1;  /*  establish a new stacking context  for footer "bottom"  */
}

/* ----------------------- */

div#footerNavLeft {
    position: absolute;
    top: 3%;  /*  in lieu of a top margin */
	left: 1%;  /*  in lieu of a left margin */
    height: 90%;
    width: 40%;
    font-size: 0.9em;
    line-height: 1.3;
}

div#footerNavRight {
    position: absolute;
    top: 0;
    left: 45%;   /* add 4%, in lieu of a left margin */
    height: 83%;
    width: 50%;
    font-size: .9em;
	line-height: 1.3;
}

div#footerNavBottom {
    position: absolute;
    top: 73%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: right;
    font-size: 0.75em;
	z-index: 10;
}

/* ---------------- END:  secondary containers for the Footer ---------------- */

/*  end of stylesheet file */

