/* CSS Sections/Flags (use the FIND function and substitute the equals symbol for the dash in the following):
-Banner
-Structure (containers, tables, and corresponding classes)
-Navigation  (all components)
-Headings (and section title classes)
-Lists
-Links
MISC
	-General (body, paragraph, etc.)
	-Images (containers and classes)
	-Classes (not div specific)
	*/	
@charset "utf-8";


/* =Banner
----------------------------------------------- */
#headerHBC {
	height:265px;
	width: 800px;
	background-image: url(../images/HBC10_header.gif);
	background-repeat: no-repeat;
}

#headerHBC h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	display:none;
	background-image: none;
	}

/* =Structure
----------------------------------------------- */
 #containerHBC {
	width: 800px;
	margin: 1em auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../images/HBC10_background.jpg);
} 

#mainContentHBC {
	/*	margin: .6em 1.5em 0 13em;*/ /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	margin-left: 13em;
	background-image: none;
	background-color: #FFFFFF;
	margin-right: 4em;
	padding-top: 0.6em;
	padding-right: 1.5em;
	padding-bottom: 0;
	padding-left: 0.5em;
} 

#dataTable {
	border:none;
	padding: 6px;
	margin:0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

#dataTable .header {
	/*	background-color:#F8935C;*/
	background-color: #003366;
	color:#FFFFFF;
	font-size: 14px;
	padding: 8px 6px;
	font-weight:bold;
	text-align:center;
	}

#dataTable .header_columnMiddle {
	/*	background-color:#F8935C;*/
	background-color: #003366;
	color:#FFFFFF;
	font-size: 14px;
	padding: 8px 6px;
	font-weight:bold;
	text-align:center;
	}	
	
#dataTable .header_columnEnd {
	/*	background-color:#F8935C;*/
	background-color: #003366;
	color:#FFFFFF;
	font-size: 14px;
	padding: 8px 6px;
	font-weight:bold;
	text-align:center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	}
#dataTable .content_column1 {
	border-left: thin #45252F dotted;
	border-bottom: thin #45252F dotted;
	border-right: thin #45252F dotted;
	padding: 8px 6px;
	background-color: #FFFFFF;
	color:#000000;
	font-size: 0.8em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	}

#dataTable .content_columnMiddle {
	border-bottom: thin #45252F dotted;
	border-right: thin #45252F dotted;
	padding: 8px 6px;
	background-color: #FFFFFF;
	color:#000000;
	font-size: 0.8em;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	}
	
#dataTable .content_columnEnd {
	border-right: thin #45252F dotted;
	border-bottom: thin #45252F dotted;
	padding: 8px 6px;
	font-weight: normal;
	background-color: #FFFFFF;
	color:#000000;
	font-size: 0.8em;
	text-align:center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	}
	
#scheduleHBC {
	font-size: 0.8em;
	border: 1px solid #931017;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
	

/* =Navigation
----------------------------------------------- */
#navHBC {
	float: left;
	width: 150px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0.6em; /* top and bottom padding create visual space within this div */
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	background-color: #FFFFFF;
	margin-left: 30px;
	background-repeat: repeat;
	/*height: 500px;*/
	margin-top: 0px;
}

#navHBC  h3 {
	font-size: 0.8em;
	color: #003366;
	margin-top: .4em;
	margin-right: 0;
	margin-bottom: 0.2em;
	margin-left: 0;
}
#navHBC  ul {
	font-size: 0.7em;
	margin:.4em;
	padding:0;
	color: #0066CC;
	}

#navHBC  ul li {
	list-style:none;
	line-height: 1.6em;
	margin-left: .4em;
	color: #0066CC;
	}

#navHBC a {
	text-decoration:none;
	color: #0066CC;
	}
	
#navHBC a:hover {
	/*color: #F8935C;*/
	/*color: #BD5220;*/
	color: #E58320;
	}
	
#presentationNav {
	margin: 1em 0;
	padding:0;
}	
#presentationNav li{
	display: inline;
	padding: .4em .8em;
	margin: 0 1em 0 0;
	background-color: #FE7400;
	color:#FFFFFF;
	font-weight: bold;
}	

#presentationNav li a{
	text-decoration: none;
	color:#FFFFFF;
}
/* =Headings
----------------------------------------------- */
#mainContentHBC h1{
	color: #FE7400;
	font-size:1.2em;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px;
}

#mainContentHBC h2{
	color: #003366;
	font-size:1.1em;
	margin-top:.2em;
	font-family: Arial, Helvetica, sans-serif;
}

#mainContentHBC h3{
	color: #003366;
	font-size:0.9em;
	margin-top:1.6em;
	font-family: Arial, Helvetica, sans-serif;
}

#mainContentHBC h4{
	color: #FF6600;
	font-size:0.8em;
	margin-top:1.6em;
	margin-bottom: 0;
	line-height: normal;
}

#dataTable h3{
	margin:0 0 1em 0;
	color: #003366;
	font-size:1em;
	}	

/* =Lists
----------------------------------------------- */

#mainContentHBC ul{
		margin-top: 1em;
	}
	
#mainContentHBC ul li{
	font-size: .8em;
	line-height: 1.4em;}	

#mainContentHBC ul li ul{
		margin-bottom: 1em;
}
#mainContentHBC ul li ul li{
	font-size: 1em;
	margin-top: 1em;
	line-height: 1em;
	list-style:square;
}

/* =Links
----------------------------------------------- */
#mainContentHBC a {
	text-decoration: underline;
	color: #E58320;
}

#footerHBC {
	padding: 0 10px 0 20px;
	height: 80px;
	background-image: url(../images/footer.jpg);
	background-repeat: repeat;
	font-family: Arial, Helvetica, sans-serif;
} 

#footerHBC a{
	color:#FFFFFF;
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	text-decoration:underline;
	}

/* MISC =General
----------------------------------------------- */
body  {
	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-image: none;
	background-repeat: repeat;
	background-color: #FFFFFF;
}

#mainContentHBC p{
	font-size: 0.8em;
	margin-top: 1em;
	line-height: 1.2em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

#footerHBC 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 0 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color:#FFFFFF;
	font-family:Verdana, Arial, Helvetica, sans-serif; 
	font-size:10px;
	text-align:center;
}

/* MISC =Images
----------------------------------------------- */
#image_with_caption_floatright_200px {
	float: right;
	width: 200px;
	font-size: .6em;
	line-height: 1.2em;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	margin: .5em 0 .5em 1em;
	border: thin none #003366;
	padding: .5em;
	font-weight: 300;
	color:#45252F;
}

#image_with_caption_floatleft_200px {
	width: 200px;
	float:left;
	font-size: .6em;
	line-height: 1.2em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin: .5em 1em .5em 0;	
	border: thin #F8935C solid;
	padding: .5em;
	font-weight: 300;
	color:#45252F;
}

/* MISC =Classes
----------------------------------------------- */

#footerHBC .savor{
	float: left;
	width: 60px;
	margin-top: 3px;
	padding: 5px;
	}	
	
#footerHBC .ba{
	float: right;
	width: 60px;
	margin-top: 3px;
	padding: 5px;
	clear: right;
	}	
	
/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 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;
}

.show {
	display: block;
	}

.hide{ /* This class was created so that it is possible to have a header graphic for printed media.  For the "screen" media the header graphic for print will not be displayed.  But, for "print" media the graphic will be set to diplay within the print style sheet.*/
	display: none;
}
	
.small_text_gray {
	font-size: 0.7em;
	color:#666666;
}

.seminar_title {
	font-size:1em;
	font-style:italic;
	font-weight:bold;
	margin-bottom: .5em;
	color: #003366;
}

#scheduleHBC .date{
	color: #FFFFFF;
	font-weight: bold;
	padding: 1em 0;
	background-color: #003366;
	font-size: 1.2em;
	text-align:center;
}

#scheduleHBC .time{
	font-weight: bold;
	padding: 1em;
	font-size: 0.8em;
	width: 25%;
	color: #003366;
}

#scheduleHBC .seminars {
	background-color: #FFCC99;
	padding: 1em;
	font-size: 0.8em;
	color: #003366;
	}

#scheduleHBC .speakers {
	font-weight:normal;
	font-style:italic;
	}

#scheduleHBC .event_titles{
	padding: 1em;
	font-size: 0.8em;
	font-weight:bold;
	color: #000000;
}
	
.sold_out {
	width: 20px;
	border: dotted 2px #E58320;
	color: #E58320;
	padding: 4px;
	text-transform: uppercase;
}	
