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

.sponsor{
	width:180px;
	height:180px;
	float:left;
	/* Giving the sponsor div a relative positioning: */
	position:relative;
	cursor:pointer;
	margin-top: 4px;
	margin-right: 12px;
	margin-bottom: 4px;
	margin-left: 12px;
}

.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("http://lug.ly/site/images/background.jpg") no-repeat center center #f9f9f9;
}

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

.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:12px;
	padding:20px 20px 20px 20px;
	font-style:normal;
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: bold;
	text-align: center;
}

.sponsorURL{
	font-size:12px;
	font-weight:bold;

	text-align: center;
}

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


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

a:hover{
	text-decoration:underline;
}

a img{
	border:none;
}
