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

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

/*** some people may not like to clear all of their padding and margin spacing but I do, I want to have full control ****/

*{
	margin:0px;
	padding:0px;
}

body{
	background:url(images/bg.jpg);
	font-family:Helvetica, Arial, sans-serif;
}

h1 span, h2 span, h3 span{
	display:none;
}

.clear{
	clear:both;
}		

/*** I usually do center aligned designs so I am going to set the container to sit in the middle of the page ****/

#container{
	width:920px;
	margin:0px auto; /**** learn css shortcuts, it will make your life easier ****/
	background:url(images/content-bg.jpg) repeat-y;
	padding-left:10px;
}

#header{
	background:url(images/header.jpg) no-repeat;
	width:900px;
	height:113px;
}

	#homelink{
		display:block;
		width:309px;
		height:113px;
	}
	
#banner{
	background:url(images/banner.jpg) no-repeat;
	width:900px;
	height:239px;
}

#nav{
	background:url(images/nav.jpg) no-repeat;
	width:900px;
	height:43px;
	padding-top:34px;
	font-size:12px;
	font-weight:bold;
	padding-left:20px;
}

	#nav li{
		display:inline;
		margin-left:30px;
	}
	
	#nav a:link, #nav a:visited{
		color:#000;
		text-decoration:none;
	}


	#nav a:hover, #nav a:active{
		color:#FFF;
		text-decoration:none;
	}	
	
#boxcontainer{
	width:859px;
	margin-left:20px;
}
	
.infobox{
	width:261px;
	background:url(images/infobox-bottom.jpg) bottom no-repeat;
	padding-bottom:34px;
}

	.infobox a:link, .infobox a:visited{
		color:#56CFD2;
		text-decoration:none;
	}
	
	.infobox a:hover, .infobox a:active{
		color:#000;
		text-decoration:none;
	}
	
	.infobox h2{
		background:url(images/infobox-top.jpg) no-repeat;
		padding:24px 0px 0px 16px;
		width:245px;
		height:62px;
	}
	
	.infobox p{
		background:url(images/infobox-bg.jpg) repeat-y;
		padding:26px 29px 36px 29px;
		font-size:14px;
		line-height:22px;
	}
	
#info-companies{
	float:left;
}

#info-speakers{
	margin-left:300px;
}

#info-directory p{
	padding-bottom:14px;
}

#info-directory{
	float:right;
}

#sub-content{
	width:900px;
	background:url(images/sub-content-bg.jpg) repeat-y;
}

#leftcol{
	width:630px;
	float:left;
	background:url(images/leftcol-bg.jpg) no-repeat;
}

	#leftcol h2#pageheading{
		margin:22px 35px 35px 35px;
		color:#000;
	}
	
	#leftcol h2{
		margin:0px 35px 10px 50px;
		font-size:22px;
		color:#56CFD2;
	}
	
	#leftcol p{
		margin:0px 35px 13px 50px;
		font-size:14px;
		line-height:26px;
	}
	
	#leftcol ul, #leftcol ol{
		margin:0px 35px 13px 50px;
		font-size:14px;
		line-height:26px;
	}	
	
		#leftcol li{
			margin:0px 35px 4px 35px;
		}	

#rightcol{
	width:270px;
	float:left;
	background:url(images/rightcol-top.jpg) no-repeat;
}

	#rightcol a#workbook{
		display:block;
		height:66px;
	}

#sub-content .clear{
	height:51px;
	background:url(images/rightcol-clear.jpg) no-repeat;
	clear:both; /*** this stops the floating ***/
}

#footer{
	border-top:solid 3px #000;
	width:859px;
	margin:20px 0px 0px 20px;
	padding:20px 0px
}

	#footer p{
		font-size:12px;
	}
	
	#footer a:link, #footer a:visited{
		color:#56CFD2;
		text-decoration:none;
	}
	
	#footer a:hover, #footer a:active{
		color:#000;
		text-decoration:none;
	}