body{
	/* Setting default text color, background and a font stack */
	font-size:0.5em;
	text-align: center;
	color:#666;
	background-color:#686463;
	font-family:Arial, Helvetica, sans-serif;
	background-image: url(img/backgroundgrad.jpg);
	background-repeat: repeat-x;
}

.sponsorListHolder{
	margin-bottom:30px;
}

.sponsor{
	width:180px;
	height:180px;
	float:left;
	margin:4px;
	
	/* 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-color: #f9f9f9;
	background-image: url(img/background.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}

.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;
}

*{
	/* Resetting the default styles of the page */
	margin:0;
	padding:0;
}
.sponsorFlip img{
	/* Centering the logo image in the middle of the sponsorFlip div */
	
	position:absolute;
	top:50%;
	left:50%;
	margin:-70px 0 0 -70px;
}

.sponsorData{
	/* Hiding the .sponsorData div */
	display:none;
}

.sponsorDescription{
	font-size:11px;
	padding:50px 20px 20px 20px;
	font-style:italic;
}

.sponsorURL{
	font-size:10px;
	font-weight:bold;
	padding-left:0px;
}


/* The styles below are only necessary for the styling of the demo page: */

#main{
	position:relative;
	margin-left: auto;
	margin-right: auto;
	width:940px;
	text-align:center;
}

#headercontainer {
	color: e6e0e0;
	text-align:center;
	height: 106px;
	margin-bottom: 12px;
	background-color: e6e0e0;
}

h1,h2{
	font-family:"Myriad Pro",Arial,Helvetica,sans-serif;
}

.note{
	font-size:12px;
	font-style:italic;
	padding-bottom:0px;
	text-align:center;
}

a, a:visited {
	color:#0196e3;
	text-decoration:none;
	outline:none;
}

a:hover{
	text-decoration:underline;
}

a img{
	border:none;
}
img.floatLeft {
	float: left;
	margin: 0px 8px 0px 0px;
}

