*{
	/* Resetting the default styles of the page */
	margin:0;
	padding:0; border:0;
}

body{
	/* Setting default text color, background and a font stack */
	font-size:12px;
	color:#666;
	background-color:#fff;
	font-family:Arial, Helvetica, sans-serif;
}

.sponsorListHolder{
	margin:0; padding:0; border:0;
}

.sponsor{
	width:247px;
	height:180px;
	float:left;
	margin:0; padding:0; border:0;
	
	/* Giving the sponsor div a relative positioning: */
	position:relative;
	cursor:pointer;
}

.sponsorFlip{
	/*  The sponsor div will be positioned absolutely with respect
		to its parent .sponsor div and fill it in entirely */

	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	border:1px solid #ddd;	
	background:url("speakers/bg.jpg") no-repeat center center #f9f9f9;
}

.sponsorFlip:hover{
	border:1px solid #999;
	
	/* CSS3 inset shadow: */
	-moz-box-shadow:0 0 30px #999 inset;
	-webkit-box-shadow:0 0 30px #999 inset;
	box-shadow:0 0 30px #999 inset;
}

.sponsorFlip img{
	/* Centering the logo image in the middle of the sponsorFlip div */
	
	position:absolute;
	top:50%;
	left:50%;
	margin:-89px 0 0 -123px; width:246px; height:178px;
}

.sponsorData{
	/* Hiding the .sponsorData div */
	display:none;
}

.sponsorDescription{
	font-size:12px;
	padding:25px 10px 15px 20px;
	font-style:italic;
}

.sponsorURL{
	font-size:12px;
	font-weight:normal; font-style:italic;
	padding-left:20px;
}

.clear{
	/* This class clears the floats */
	clear:both;
}


/* The styles below are only necessary for the styling of the demo page: */

#main{
	position:relative;
	margin:0 auto;
	width:990px;
}

h1{
	background-color: #F8F8F8;
	font-size: 32px;
	line-height: 16px;
	margin-bottom: 30px;
	padding: 30px 0 60px;
	text-align: center;
	text-shadow: 0 1px 1px white;
}

h2{
	font-size: 15px;
	font-weight: normal;
	position: relative;
	text-align: center;
	top: -73px;
}

h1,h2{
	font-family:"Myriad Pro",Arial,Helvetica,sans-serif;
}

.note{
	font-size:12px;
	font-style:italic;
	padding-bottom:20px;
	text-align:center;
}

a, a:visited {
	color:#0196e3;
	text-decoration:none;
	outline:none;
}

a:hover{
	text-decoration:underline;
}

a img{
	border:none; 
}