@charset "iso-8859-1";

/*******************************************************************************
*  base set of stylesheet rules needed to form the layout, and layout only.
*  color and fonts and such are not handled here.
*******************************************************************************/

#pageWrapper
{
	margin: 0 auto;
	width: auto;
						/* the page width will be between 750px and 100px. */
	min-width: 772px;
	max-width: 1000px;
	width:expression(document.body.clientWidth > 750? (document.body.clientWidth >= 1000 ? "1000px" : 'auto'): "772px" );
	position: relative;
}
#outerColumnContainer
{
	z-index: 1;
	border-color: #fff;	/* set default color to white. set the real
				   color inside colors.css */
	border-style: solid;
	border-width: 0 20.5em;	/* sets the width of the borders used to create
				   the left and right columns' background 
				   color. */
}
#innerColumnContainer
{
	z-index: 2;
	width: 100%;
}
* html #innerColumnContainer
{
	position: relative;	/* fix a render bug in IE under certain
				   conditions */
}
#contentColumn
{
	margin: 0 -1px;		/* without this, boxes stop floating next to 
				   each other */
	width: 99%;
}
#leftColumn, #rightColumn, #contentColumn
{
	float: left;
	position: relative;	/* IE has a display/render bug with non-floated 
				   block elements inside floated block elements. 
				   setting position:relative on the floating
				   element seems to resolve this. */
	z-index: 10;
	overflow: visible;	/* fix for IE italics bug */
}
#rightColumn
{
	float: right;		/* floating this right allows for the right
				   column block to appear before the content
				   column in the flow of the document. doing
				   this allows for any easy 3 column layout
				   in NN4.

				   There is certainly a lot, in terms of layout
				   'theory' about how the flow of the document
				   should be. I won't get into it here. */
	width: 20.5em;
	margin: 0 -20.5em 0 1px;	/* same as in the #leftColumn selector up 
				   above. */
}
#leftColumn
{
	width: 20.5em;
	margin: 0 1px 0 -20.5em;	/* like in the #contentColumn selector, without
				   the 1px margin on the opposite side of the 
				   box, boxes stop floating next to each 
				   other */
}
#footer
{
	position: relative;
}
#masthead
{
	height:146px;
}
#logoimage
{
	z-index: 10;
	position: absolute;
	top: 0;
	left: 4px;
}
#logoimage img
{
	border-style:none;
}
#masthead h1
{
	z-index: 30;
	position: absolute;
	top: 0;
	left:111px;
	line-height:80px;
	/* height:74px; */
	width: 193px;
	display: block;
	text-indent: -1000px;
	background-position: 40px -1px;
}
#masthead h1 a
{
        display: block;
        width: 100%;
}
#masthead p
{
	z-index:20;
	position: absolute;
	top: 62px;
	left: 158px;
}
.hnav
{
	position: absolute;
	top:0;
	right:0px;
	width: 442px;
	border: 1px solid yellow;
	z-index: 40;
}
.hnav li
{
	width: 98px;
	height: 146px;
}
.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.hide, #oldBrowserNotice, .ieSixCharDupBug
{
	/* hide elements that CSS-targeted browsers shouldn't show */
	display: none !important;
}
#contentColumn
{
	border-width: 0;	/* reset value from that in the version 4 
				   stylesheet. this isn't in borders.css because
				   were you to create a print.css and not 
				   include borders.css, then the v4 border would
				   still remain when you print. */
}
/*
	The below block of CSS is invalid, and will invalidate this stylesheet.
	So it is up to you to decide how you want to handle this. The below CSS
	is a fix for IE/Win to help it better handle text that is wider than 
	the available area. It does not handle this as expected, and forces the
	floated elements to start stacking. This is a very undesirable thing.
	Until a CSS-compliant way is devised, this CSS block will have to do.
*/
* html #pageWrapper
{
	word-wrap: break-word;
}

/*******************************************************************************
*  gutters:
*  handles the whitespace between and within elements; such as margins and 
*  padding.
*******************************************************************************/

body
{
	margin: 0;
	padding: 0;
}
p, h1, h2, h3, h4, h5, h6
{
	margin: 1em 0;		/* specifically define this for Opera's sake,
				   and also for better consistency across 
				   all platforms  */
}
.inside
{
	padding: 0 1.5em;	/* this padding is applied to every major box 
				   within the layout for a uniform gutter 
				   between borders 

				   _NOTE_: a small glitch in IE seems to appear
				   if this class has vertical padding applied
				   to it. so in cases where you want to add 
				   vert padding, use the parent element. margin
				   values here don't work because .inside has
				   a key role in border generation */
}
#leftColumn, #centerColumn, #rightColumn, #masthead
{
	padding-top: 0.5em;
	padding-bottom: 0.5em;	/* this is the vert padding talked about in the
				   previous selector. */
}
#searchbox
{
	position: relative;	
	display: block;
	width: 14em;
	height: 3em;
	background-image: url(icon_search.png);
	background-position: 0% 0%;
	background-repeat: no-repeat;
}
#searchbox label
{
	display: block;
	color: #555753;
	text-transform: capitalize;
	font-size: 120%;
	font-weight: bold;
	position: absolute;
	left: 28px;
	top: 0px;
}
#searchbox input
{
	border: 1px solid #babdb6;
	background-color: white;
	font-size: 100%;
	font-weight: bold;
	color: #555753;
}
#searchbox #search_q
{
	display: block;
	background-image: url(icon_search_bg.png);
	background-repeat: no-repeat;
	position: absolute;
	top: 16px;
	left: 20px;
	width: 9em;
	height: 1.5em;
	padding-left: .4em;
}
#searchbox #search_go
{
	position: absolute;
	top: 16px;
	left: 11.5em;
	text-align: center;
	width: 3em;
	height: 1.75em;
}
#masthead, #footer
{
	padding: .1em;
}
.vnav
{
	margin: 1em 0;
}
html>body #footer
{
	padding-bottom: 1.01em;	/* this is to fix a bug in mozilla that results
				   in a 1px line of white below the footer when
				   the document gets very long. extremely long
				   documents may generate the bug again. if
				   you experience that, increasing this value
				   may help. i think this is related to moz's
				   off-by-one troubles as the bug does not
				   occur in any other browser */

}


/*******************************************************************************
*  this stylesheet defines any and all borders that are rendered on the layou.
*  this includes the left and right-hand borders of the #outerColumnContainer
*  element which are used as the backgrounds for the left and right columns.
*******************************************************************************/

#pageWrapper
{
	border-style: solid;	/* explicitly defined within eact selector in 
				   case you want change border styles (to mix 
				   it up) between elements */
	border-width: 0 1px;	/* puts a border on the left and right sides of
				   the page. #masthead and #footer will handle 
				   the top and bottom borders */
}
#outerColumnContainer
{
	/* the borders used to create/reserve space for the side columns are
	   now defined in base.css because they are an integral part of
	   the layout. */
}
#innerColumnContainer
{
	border-style: solid;
	border-width: 0 1px;	/* puts borders between center and the side 
				   columns. */
	margin: 0 -1px;		/* compensation for the borders because of
				   100% width declaration on this object */
}
* html #outercolumncontainer
{
	/* IE5.0/Win fix for 1px whitespace between masthead and body. */
	margin-top: -1px;
	border-top: solid 1px #000;
}
#masthead
{
	border-style: solid;
	border-width: 1px 0;	/* handles the top of the layout's border and the
				   bottom of the masthead section */
}
.hnav
{
	border-style: solid;
	border-width: 0;
}
#footer
{
	border-style: solid;
	border-width: 1px 0;	/* handles the top of the footer section and 
				   the bottom of the entire layout */
}

