

.bot_home a { display: block; text-decoration: none; color: white; }

.sponsorListHolder{
	margin-bottom:30px;
	margin-top: -23px;
}

.sponsor{
	width:180px;
	height:148px;
	float:left;
	margin:10px 15px;
	box-shadow: 2px 2px 4px black;
	
	/* 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("img/background.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:-79px 0 0 -88px;
}

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

.sponsorDescription{
	font-size:14px;
	 padding: 20px 18px 9px 19px;
	color: black;
}

.sponsorURL span{
	font-size:14px;
}

.sponsorURL{
	font-size:10px;
	font-weight:bold;
	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;
	width:853px;
	margin-left: 20px;
	margin-top: 36px;
}


.note{
	font-size:12px;
	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;
}

.title_ { position: absolute; top: 130px; left: 5px; color: black; font-size: 15.2px; text-shadow: 1px 1px 0px white; }