/* for this stylesheet to work in IE/Win, use a DOCTYPE that puts IE into standards mode */



/* remove margins & padding from all elements by default
   (removing borders can adversely affect form elements in Opera 8+) */
*	{
	margin: 0;
	padding: 0;
	}

html,
body	{
	margin: 0;
	padding: 0;
	}



/* - - - - - - - - - - - - - - -
   LAYOUT PAGE STRUCTURE - DONE
   - - - - - - - - - - - - - - - */
#container	{				/* wraps everything within the body element */
	margin: 0 auto;			/* centers #container */
	width: 750px;			/* width of all page content */
	}

#content	{				/* wraps primary content (outer container) */
	float: right;
	width: 550px;
	min-height: 350px;		/* for browsers that support it - keep menu/footer from looking funky */
	}
#nav	{				/* wraps secondary content (outer container) */
	float: left;
	width: 200px;
	}
#footer	{					/* wraps footer content */
	clear: both;			/* push footer to bottom of screen under #content and #sidebar */
	}			
/* Wrap the contents of #content and #sidebar to allow flexible
   formatting and display of material within #content and #sidebar
   (eliminates goofy border, margin, padding, width issues) */
#content .wrapper	{
	margin: 0 0;			/* space from top and bottom of layout */
	padding: 0 15px;		/* left and right padding on either side of content in #content .wrapper (leaves a working width of 520px) */
	}
/* - - - - - - - - - - - - - - -
   SKIP NAVIGATION LINKS - DONE
   - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - -
   GENERAL LINK STYLES - DONE
   - - - - - - - - - - - - - - */
.skipnav {
	padding: .3em .5em;
	list-style: none;
	}
.skipnav li {
	display: inline;
	}
.skipnav a:link,
.skipnav a:visited {
	padding-right: 15px;	/* make room for graphic */
	color: black;
	background: url(../img/link_skip.gif) no-repeat right bottom;
	}
.skipnav a:focus,
.skipnav a:active,
.skipnav a:hover {
	color: black;
	background: yellow url(../img/link_skip.gif) no-repeat right bottom;
	text-decoration: underline;
	}



/* - - - - - - -
   HEADER - DONE
   - - - - - - - */
#header h1	{
	line-height: 1.1;
/*	text-indent: -2em;
	padding-left: 2em;*/
	}
#header h1 a	{
	display: block;
	padding: .5em 0 .2em 180px;
	text-decoration: none;
	color: white;
	}
#header p	{
	color: #004080;
	background: white;
	background: #dbe6f5;
	font-weight: bold;
	padding: .25em 0 .25em 180px;
	}
#header img	{
	float: left;
	clear: both;
	padding: 5px 0 0 30px;
	}
#header hr	{
	color: #004080;		/* same color as background to work around IE Win always displaying border; set border to same color as background, "hiding it" */
	background-color: #004080;
	height: 1.7em;
	border-style: none;	/* turn off border */
	/*margin-bottom: .5em;*/
	}
#header hr.light	{
	color: #dbe6f5;		/* same color as background to work around IE Win always displaying border; set border to same color as background, "hiding it" */
	background-color: #dbe6f5;
	height: .5em;
	border-style: none;	/* turn off border */
	/*margin-bottom: .5em;*/
	}

/* - - - - - - - - - - - 
   MAIN NAVIGATION - DONE
   - - - - - - - - - - -  */

#nav, #nav ul, #nav ul li	{
	margin: 0;
	padding: 0;
	}
/*	
#nav	{
	float: left;
	width: 200px;
	}
*/
#nav ul	{
	list-style: none;
	border-top: .15em solid #004080;
	border-bottom: .15em solid #004080;
	}
/*
#nav ul	{
	border-bottom: 1px solid silver;
	}
#nav li	{
	border-top: 1px solid silver;
	}
*/
#nav li a	{
	display: block;
	height: 1%;
	margin: 0;
	padding: 0 1em;
	padding-left: 2em;	/* this and next line create hanging indent */
	text-indent: -1em;
	text-decoration: none;
	background: transparent;
	color: #004080;
	/*width: 200px;
	width: 100%;		  insure display is correct in IE/Win */
	}
/* html>body #nav li a 	{width: auto;}		insure display correct in all other browsers */
/* highlighted element */
#nav li a:hover, #nav li#active a:hover,
#nav li a:hover span, #nav li#active a:hover span	{
	background: #004080;
	color: white;
	}
#nav li a span	{			/* this is for highlighting the word "updated" in menu items */
	color: yellow;
	}
#nav li a span span	{		/* this is for menu items which don't yet have a page containing content */
	color: gray;
	}
#nav .seperator	{
	border-bottom: .15em solid #004080;
	}


/* - - - - - - -
   FOOTER - DONE
   - - - - - - - */
#footer p	{
	padding: 1em 1em 0;
	line-height: 1.3;
	}
#footer p strong	{
	font-weight: bold;
	}
#footer p em	{
	font-weight: bold;
	font-style: normal;
	}
/*
#footer a	{
	color: yellow;
	}
*/
#footer p.contact	{
	float: left;
	padding: 0 0 1em 1em;
	}
#footer ul	{
	padding: 1em 1em 1em 0;
	list-style: none;
	text-align: right;
	}
#footer li	{
	display: inline;
	padding: 0 0 0 .2em;
	}
/* put bullets in front of each item in list */
#footer li:before	{content: "\2022\00A0";}	/* OR "\00B7\00A0" OR "\95\00A0" */
#footer li:first-child:before	{content: "";}	/* nothing in front of first list item */



/* - - - - - - - - - - - - - - - - -
   GENERAL COLOR ASSIGNMENTS - DONE
   - - - - - - - - - - - - - - - - - */
body	{
	color: black;
	background: gray url(../img/page_bg.jpg);
	}
#container	{				/* provides background color for nav & footer */
	color: #333;
	background: white;
	}
.skipnav {
	background: silver;
	}
#header	{
	color: black;
	background: #004080;
	padding-bottom: 1.7em;
	border-bottom: .5em solid #dbe6f5;
    }
#nav	{
	/*color: white;
    background: green;*/
    color: #004080;
    background: #fffdcd url(../img/menu_bg.jpg) bottom left repeat-x;
    }
#content	{
    color: #333;
    background: white;
    }
#content .wrapper	{
    color: #333;
    background: white;
	}
#footer	{
	/*color: black;
	background: #333;*/
	color: #004080;
	background: #e0ebf2;
	background: #dbe6f5;
	border-top: .15em solid #004080;
    }



/* - - - - - - - - - - - - - - - - - - -
   GENERAL TYPOGRAPHY ASSIGNMENTS - DONE
   - - - - - - - - - - - - - - - - - - - */
html,
body	{
	font-family: Verdana, Arial, "Bitstream Vera Sans", serif;
	font-size: small;
	}

#container{
	font-size: 95%;
	line-height: 1.5em;
	}

#header,
#nav	{
	font-family: Verdana, Arial, "Bitstream Vera Sans", serif;
	font-size: 100%;
	}

h1,
h2,
h3,
h4,
h5,
h6	{
    color: #004080;
	font-family: Georgia, "Times New Roman", Times, serif;
	padding: .25em 0 .1em 0;
	}
h4,
h5,
h6	{
    color: #004080;
	font-family: Verdana, Arial, "Bitstream Vera Sans", serif;
	padding: .25em 0 .1em 0;
	}

#content p	{
	margin: 0 0 1em 0;
	}
/* Define how images are displayed in various contexts */
/* default presentataion of images:
   light tan background, no border, bottom margin and left aligned */
#content img	{
	border: 0;			/* or none */
	margin: 0 0 1em 0;
	/*background: silver;*/
	}
/* add this class to an image that has transparency so that it will display properly */
#content img.transBG	{
	background: none;
	}
/* Use this style to position images on the right side of the content area */
#content img.imgRight	{
	float: right;
	clear: right;
	/*padding-left: 1em;*/
	}
#content .imgCenter	{
	padding: 0;
	vertical-align: top;
	text-align: center;
	}

#content hr	{
	color: #004080;		/* same color as background to work around IE/Win always displaying border; set border to same color as background, "hiding it" */
	background-color: #004080;
	height: 2px;
	border-style: none;
	margin: 0 0 1em;
	}




h1			{ font-size: 200%;}
h2			{ font-size: 150%; text-indent: -1em; margin-left: 1em; padding-bottom: .5em; }
h3	 		{ font-size: 120%;}
/*#nav		{ font-size: 120%;}*/
h5			{ font-size: 100%;}
h6			{ font-size: 100%;}
h4			{ font-size: 100%;}

#footer,
.skipnav li	{
	font-size: 90%;
	}

#footer	{
	text-align: left;
	}


#content ul, ol	{
	margin: 0 0 1em 1em;		/* set margins/indentions for list */
	}
#content ul li	{
	padding: 0;					/* hack: to get li to line up where it should */
	list-style: disc;
	}

#content ul.nobullets li	{
	list-style: none;
	list-style-image: none;	/* IE/Win will display custom bullets (even though it shouldn't) unless this rule is here */
	padding-left: 1em;		/* this and the next rule create a hanging indent */
	text-indent: -1em;
	}
	
#content ol li	{
	/*margin:.5em;*/
	margin-left: .5em;
	}






#content .question	{
	font-weight: bold;
	margin-bottom: 0;
	padding-bottom: 0;
	}



#regions	{
	float: left;
	width: 520px;
	padding: 0;
	}
#regions dl	{
	float: left;
	width: 520px;			/* fixes width problem in IE/Mac */
	margin: 0 0 2em 0;		/* spacing between each region group */
	padding: 0;
	display: inline;		/* fixes IE/Win double margin bug */
	}
#regions dt	{
	float: right;
	width: 220px;
	margin: 0;
	padding: 0 0 0.75em 0;
	font-weight: bold;
	}
#regions dd	{
	margin: 0 0 0 300px;	/* ensure left margin for all <dd> TEXT doesn't wrap under image */
	padding: 0 0 1.5em 0;
	}
#regions dl dd.img	{
	border: 0;
	margin: 0;				/* reset margins for images within <dd> elements */
	padding: 0;
	}
#regions dd.img img	{
	float: left;
	margin: 0 0 0 0;		/* a bit of right margin to push text away (doesn't seem to work) */
	}





/* - - - - - - - - - -
   EMAIL FORM - 
   - - - - - - - - - - */
#sendMail {
	border: 2px solid #9c9;
	/*background: #a9ccab;*/
	border: 0;
	/*background: #ece5c3;*/
	/*padding: .5em .5em 0;*/
	padding: .5em;
	}
#sendMail label {
	float: left;
	/*width: 6em;*/
	width: 30%;
	}
.contact #sendMail label {
	float: none;
	display: block;
	width: 65%;
	}
#sendMail input.box,
#sendMail textarea.box {
	/*width: 26.5em;
	border: 2px solid;
	border-color: #666 #ddd #ddd #666;*/
	width: 65%;
	border: 1px dotted #36604e;
	margin-bottom: .5em;
	background: #ddd;
	}
.contact #sendMail textarea.box {
	width: 95%;
	}
.empConfRegister #sendMail #frmAccommodations {
	width: 95%;
	}
#sendMail input.box:focus,
#sendMail textarea.box:focus,
#sendMail input.box.sffocus,
#sendMail textarea.box.sffocus {
	background: #cfc;
	border-color: #090;
	background: white;
	border-color: #36604e;	
	}
#sendMail .submit	{
	width: 20%;
	/*margin-left: 30%;*/
	background: #f0f0f0;
	}
#sendMail span	{
	color: red;
	}

#content .submitHide { display: none; }










/* - - - - - - - - - - - - - - -
   ACRONYMS/ABBREVIATIONS - DONE
   - - - - - - - - - - - - - - - */
acronym, abbr	{
	text-decoration: none;
	border-bottom: 1px dotted;
	cursor: help;
	}


.copyright	{
	font-size: 90%;
	}






.clearBoth	{
	clear: both;
	}




/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */


/* All hacks and browser specific hacks */

html,
body	{
	/* centers div#container within the browser window;
	   hack for IE/Win so that div#container will actually appear centered */
	text-align: center;
	}
#container, #nav	{
	/* and this "cancels" the effect of the "text-align: center;" hack
	   on the body and html elements above */
	text-align: left;
	}
#footer	{
	/* and IE4/Win needs this because apparently only #content inherets the correct text-align ment */
	text-align: left;
	}


	
/* Hack: IE5/Win gets keywords wrong: it displays each keyword one size too big */
* html body	{
	font-size: x-small;			/* use one size smaller just for IE5/Win */
	f\ont-size: small;			/* for other IE versions (IE5/Win ignores this while other browsers read it just fine) */
	}




/* Hack:  IE5&6/Win only; csshover2.htc behavior enables creating hover
   effects for elements other than just the a element just as in other browsers */
/*
body	{
	behavior:url(csshover2.htc);
	}
*/


/* Hack: clear the floated image to prevent problems with wide displays */
dl.feature:after	{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	}
/* Hack: force IE5/Mac to correctly clear the float */
dl.feature	{display: inline-table;}
/* Hack: force IE/Win to correctly display floated image;
   IE/Win needs a clearing element to have a specified dimension;
   second line of hack resets IE5/Mac display override from above */			
/* Hide this hack from IE5/Mac \*/
* html dl.feature	{height: 1%;}
dl.feature	{display:block;}
/* End hiding this hack from IE5/Mac */
/* End browser-specific hacks */



/* Hack: force footer to display correctly in IE/Win;
   IE/Win needs a clearing element to have a specified dimension */			
/* Hide this hack from IE5/Mac \*/
* html #footer	{height: 1%;}
/* End hiding this hack from IE5/Mac */


