@charset "UTF-8";
body  {
	font: 100% Arial, Helvetica, sans-serif;
	background-color: #ecd9cf;
	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:#333333;
	background-image:url(images/body_bg.gif);
	background-repeat:no-repeat;
	background-position:center top;
}
.twoColFixRtHdr #container { 
	width: 955px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #8ea4ca;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top:20px;
	margin-bottom:20px;
	background-image:url(images/maincontent_bg.gif);
	background-repeat:no-repeat;
	background-position:right bottom;
} 
.twoColFixRtHdr #header {
	background-image:url(images/header.jpg);
	background-position:bottom;
	height:150px;
	border-bottom:1px solid #a5d2a7;
	padding-right:40px;
	/*padding: 0 10px 0 20px;   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. */
} 
.twoColFixRtHdr #nav {
	border-bottom:1px solid #a5d2a7;
	background-color:#f0b278;
	background-image:url(images/nav_bg.gif);
	background-repeat:repeat-x;
	background-position:bottom;
	height:52px;
	font-weight:bold;
	text-align:center;
	/*padding: 0 10px 0 20px;   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. */
} 
.twoColFixRtHdr #header 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 */
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 220px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	/*background: #EBEBEB;  the background color will be displayed for the length of the content in the column, but no further */
	padding: 25px 20px;
	font-size:12px;
}
.twoColFixRtHdr #sidebar1 h3 {
	padding:0;
	margin:5px;
	font-size:13px;
	text-align:center;
	}
.twoColFixRtHdr #mainContent { 
	margin: 0 270px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 10px 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size:14px;
} 
.twoColFixRtHdr #mainContent 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: 1px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size:20px;
	text-transform:uppercase;
	color:#b2573e;
}
.twoColFixRtHdr #mainContent h2 {
	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 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size:16px;
}
.twoColFixRtHdr #mainContent p {
	margin-top:10px;
	}

.twoColFixRtHdr #mainContent_attendees { 
	margin: 0 0px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 10px 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size:14px;
} 
.twoColFixRtHdr #mainContent_attendees 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: 1px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size:20px;
	text-transform:uppercase;
	color:#b2573e;
}
.twoColFixRtHdr #mainContent_attendees h2 {
	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 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size:16px;
}
.twoColFixRtHdr #mainContent_attendees p {
	margin-top:10px;
}

.twoColFixRtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#dbecf1; 
} 
.twoColFixRtHdr #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:10px;
	text-align:center;
}
.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;
}
.toplinks {
	float:right; padding:5px 10px; font-size:12px; color:#FFFFFF;
	}
.toplinks a {
	color:#FFFFFF;
}
img.sponsors {
	margin-top:4px;
	margin-bottom:4px;
	}
.sponsortables {
border:1px solid #CCCCCC; 
width:100%;
margin-bottom:20px;
}
.sponsortables td {
	background-color:#FFFFFF;
	padding-bottom:5px;
	}
.sponsortables td.title {
	background-color:#8ca2c8;
	padding-bottom:0px;
	}
	
/*centered horizontal menu*/	

#navcontainer ul {
	padding: .2em 0;
	margin: 0;
	list-style-type: none;
	border-bottom:1px solid #a5d2a7;
	background-color:#f0b278;
	background-image:url(images/nav_bg.gif);
	background-repeat:repeat-x;
	background-position:bottom;
	width: 100%;
	text-align: center;
	font-size:13px;
}

#navcontainer li { 
	display: inline;
	}

#navcontainer li a {
	background:none;
	padding: 2px 5px;
	margin:0px 5px;
	color: #333;
	text-decoration: none;
	text-align:center;
	font-weight:bold;
}

#navcontainer li a:hover {
background-color: #fbdbbd;
	color: #000;
}
/* center hoirzontal menu end */


.registerlist ul {

	}
.registerlist li {
list-style-type:square;
}

table.register {
	border-top:1px solid #999999;
	font-size:13px;
	margin-top:15px;
}
table.register td {
	border-bottom:1px solid #CCCCCC;
	padding:5px 5px;
}	
.tabletitle {
	background-color:#df9f8d;
	padding-left:5px;
	}
table.program {
		width: 100%;
		margin: 0;
		padding: 0px 8px 0px 8px;
		border-collapse: collapse;
		}
table.program td {
		padding: 4px 12px 4px 6px;
		border-bottom:1px dashed #CCCCCC;
		vertical-align:top;
		}
		
		.sponsorfull {
		width: 100%;
		margin: 10px 0;
		border-collapse: collapse;
		border: 1px solid #cccccc;
		text-align:center;
		}
		
.sponsorfull td#image{
		padding: 0;
		}

.sponsorfull td {
		padding: 5px;
		background-color:#ffffff;
		}


.sponsorfull th {
		
		padding: 4px 12px 4px 6px;
		font: 12px Tahoma;
		font-weight: 900;
		background-color:#df9f8d;
		text-align: left;
		}

.sponsorfull td#name {
		font: 11px Tahoma;
		font-weight: 700;
		color: #333333;
		}

.sponsorfull strong	{
		font: 11px Tahoma;
		font-weight: 900;
		}		

.sponsorfull img {
position: relative;
margin: auto;
max-height: 250px;
}


.sponsor_titles {
	font-size: 14px;
	font-weight: bold;
	color: #333333;
	}
.sponsorpage {
	padding: 15px;
	border:0;
	}

.gray {
	background: #dbecf1;
}

