@charset "UTF-8";
/* CSS Document */



body  {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background: #CCC url(/images/bkgd_pages.jpg);
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	line-height: 1.25em;
}

.twoColHybLtHdr #container { 
	width: 900px;
	background: #FFF url(/images/bkgd_mainContent.gif);
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#mainContent span.jobs_coname  {
	font-size: 80%;
	font-style: italic;
	margin-left: 0.75em;
}


/* ============= PAGE HEADER STYLES ================= */


.twoColHybLtHdr #header {
	padding: 0px;
	background: #FFF url(/images/bkgd_header.gif) repeat-x;
	height: 146px;
	overflow: hidden;
	
} 
.twoColHybLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse */
	padding: 7% 0 0 20px;
	font-family: Verdana, Geneva, sans-serif;
	color: #FFF;
	font-size: 1.5em;
	line-height: 1em;
}


/* ============= JOIN MAILING LIST STYLE ================= */


#mailListBox {
	position: relative;
	float: right;
	top: -4px;
	color: #FFF;
	background: #000;
	padding: 10px 10px;
	margin: 0px 0px 20px 20px;
}

#mailListBox a:link {
	color: #FFF;
	text-decoration: none;
}

#mailListBox a:visited {
	color: #FFF;
	text-decoration: none;
}

#mailListBox a:hover {
	color: #FFF;
	text-decoration: underline;
}

#joinNowBox {
	top: 0;
	float: right;
	color: #C30;
	background: #FFF;
	border: #996 thin solid;
	padding: 5px;
	margin:5px 5px 5px 0px;
}

#joinNowBox a:link {
	color: #C30;
	text-decoration: none;
}

#joinNowBox a:hover {
	color: #000;
	text-decoration: underline;
}


/* ============= MENU STYLES ================= */

.twoColHybLtHdr #sidebar {
	float: left;
	width: 150px; /* since this element is floated, a width must be given */
	background: #996 url(/images/bkgd_leftNav.gif); /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px 0px 20px 0px; /* top and bottom padding create visual space within this div  */
	background-repeat: no-repeat;
	min-height: 550px;
	font-size: 1em;
}

.twoColHybLtHdr #sidebar ul { /* Using a list format for menu items retains the list element style when using a browser that does not display CSS styles, or has them turned off */
	display: block;
	list-style: none;
	margin-left: -15px;
}

.twoColHybLtHdr #sidebar ul li {
	line-height: 225%;
	font-weight: bold;
}

.twoColHybLtHdr #sidebar ul li a:link {
	text-decoration: none;
	color: #FFF;
}

.twoColHybLtHdr #sidebar ul li a:visited {
	text-decoration: none;
	color: #FFF;
}

.twoColHybLtHdr #sidebar ul li a:hover {
	text-decoration: none;
	color: #000;	
}


/* ============= MAIN PAGE CONTENT STYLES ================= */


/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div. No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a flexible-width layout, it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation.
*/
.twoColHybLtHdr #mainContent { 
	margin: 40px 20px 0 15em; /* the margin can be given in percentages or pixels. It creates the space down the right and left sides of the page. */
} 

.twoColHybLtHdr #mainContent h1 {
	font-size: 130%;

}

.twoColHybLtHdr #mainContent h2 {
	font-size: 110%;
	padding-top: 1.25em;
}

.twoColHybLtHdr #mainContent h3 {
	font-size: 100%;
	padding-top: 1.25em;
	margin-bottom: 0.35em;
}
.twoColHybLtHdr #mainContent .speaker {
	font-size: 16px;
	font-weight: bold;
	line-height: 170%;
}
.twoColHybLtHdr #mainContent .affiliation {
	font-size: 10px;
	line-height: 120%;
}
.twoColHybLtHdr #mainContent p .talkTitle {
	font-size: 16px;
	font-style: italic;
	line-height: 110%;
}

.twoColHybLtHdr #mainContent a:link {
	color: #C30;
	text-decoration: none;
}

.twoColHybLtHdr #mainContent a:visited {
	color: #C30;
	text-decoration: none;
}

.twoColHybLtHdr #mainContent a:hover {
	color: #C30;
	text-decoration: underline;
}

.twoColHybLtHdr #mainContent a:active {
	color: #996;
	text-decoration: underline;
}

.twoColHybLtHdr #mainContent .eventPhoto { 
/* Photos should be sized 180 x135 for events, though this class will work for any size image */
	font-size: 80%;
	font-style: italic;
	margin: 5px 3px;
	padding: 3px;
	float: left;
	border: 1px solid #666;
}



/* Miscellaneous classes for reuse */
.floatRight { /* this class can be used to float an element to the right side of the page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
	margin-bottom: 8px;
}
.floatLeft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	margin-bottom: 8px;
}
.clearFloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}





/* ============= FOOTER STYLES ================= */


.twoColHybLtHdr #footer {
	padding: 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFF url(/images/bkgd_pageFooter.gif) repeat-x;
} 
.twoColHybLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: .7em;
	color: #FFF;
}

.twoColHybLtHdr #footer a:link {
	color: #FFF;
	text-decoration: none;
}

.twoColHybLtHdr #footer a:visited {
	color: #FFF;
	text-decoration: none;
}
.twoColHybLtHdr #footer a:hover {
	color: #FFF;
	text-decoration: underline;
}
.twoColHybLtHdr #footer a:active {
	color: #FFF;
	text-decoration: underline;
}

