@charset "utf-8";
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;
	background-color: #FFF;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 85%;
}
#container {
	width: 990px; /* 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. */
	background-color: #FFFFFF;
	background-image: url(../Images/NavBar.jpg);
	background-repeat: repeat-y;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-color: #FFF;
	height: 197px;
} 
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 175px;
	background-color: #080808;
	color: #FFF;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 15px;
	padding-left: 5px;
}
#mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 210px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 30px;
	padding-left: 15px;
} 
#footer {
	padding: 0 10px 0 20px;
	background-color: #080808;
	color: #FFF;
} 
#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 */
	text-align: center;
	font-size: 11px;
}

#footer a {color:#FFF}

#footer a:link, #footer a:visited {color: #FFF;}


#navcontainer {
	width: 180px;
	font-size: 13px;
}

#navcontainer ul
{
	margin-left: 0;
	padding-left: 0;
	list-style-type: none;
}

#navcontainer a
{
	display: block;
	padding: 3px;
	width: 170px;
	background-color: #080808;
	color: #FFF;
}

#navcontainer a:link, #navlist a:visited
{
	color: #FFF;
	text-decoration: none;
}

#navcontainer a:hover
{
	background-color: #BA5134;
	color: #fff;
}
#program {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #080808;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #080808;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #080808;
}

.program_day{
	text-align:center;
	background-color: #080808;
	color: #FFF;
	font-weight: bold;
	line-height: 30px;
	text-transform: uppercase;
	font-size: 18px;
}

.program_heading {
	text-align:center;
	background-color: #080808;
	color: #FFF;
	font-weight: bold;
	line-height: 25px;
}

.program_time {
	font-size:10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #080808;
	vertical-align: top;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 3px;
}

.program_timeBottom {
	font-size:10px;
	vertical-align: top;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 3px;
}


.program_plenary {
	padding-left:5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #080808;
	padding-top: 5px;
	padding-bottom: 5px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #080808;
}

.program_break {
	background-color:#C76F58;
	padding-left: 5px;
	font-weight: bold;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #080808;
}

.program_concurrent {
	text-align:center;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #080808;
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #080808;
}

#sponsorship {
	width:740px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #080808;
	border-right-color: #080808;
	border-left-color: #080808;
}
#sponsorship p {
	padding-left:5px;
	padding-right: 5px;
}


.sponsorship_border {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #080808;
}
.sponsorship_border_left {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #080808;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #080808;
}

.sponsorship_price {
	text-align: right;
	font-weight: bold;
}
.sponsorship_price_small {
	font-size: 10px;
	text-align: right;
}

.sponsorship_heading {
	background-color:#080808;
	color: #FFF;
	font-weight: bold;
}

.image {text-decoration:none}

.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;
}
.small_text {
	font-size: 11px;
}


.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;
}
p {
	padding: 0px;
	margin: 0px;
}

h2 {
	padding: 0px;
	margin: 0px;
	color: #BB4F33;
}
.small {
	font-size: 70%;
}

