*{
	/* Resetting the default styles of the page */
	margin:0;
	padding:0;
}

body{
	/* Setting default text color, background and a font stack */
	font-size:0.825em;
	color:#666;
	background-color:#fff;
	font-family:Arial, Helvetica, sans-serif;
}

.sponsorListHolder{
	margin-bottom:30px;
	  z-index: 1; 
}

.sponsor{
	width:230px;
	height:230px;
	float:left;
	margin:2px;
	
	/* 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 #ffffff;
}

.sponsorFlip:hover{
	border:1px solid #c7c7c7;
	
	/* CSS3 inset shadow: */
	-moz-box-shadow:0 0 30px #c7c7c7 inset;
	-webkit-box-shadow:0 0 30px #c7c7c7 inset;
	box-shadow:0 0 30px #c7c7c7 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:11px;
	padding:10px 10px 10px 10px;
}

.sponsorURL{
	font-size:10px;
	font-weight:bold;
	padding-left:20px;
}

.clear{
	/* This class clears the floats */
	clear:both;
}

#main{
	position:relative;
	margin:0 auto;
	width:960px;
}

a.hideDisplay{
  position: relative; /* This makes everything work.*/
  /* Allows you to layer overlapping elements. */
  z-index: 2; 
  color: #5f5f5f;
  text-decoration: none
}
  
a.hideDisplay:hover{
  /* Allows you to layer overlapping elements. */
  z-index: 1; 
}

a.hideDisplay span.showDisplayOnHover{
  display: none
}

/* This will only display itself when the
 * user hovers the mouse over the anchor. */
a.hideDisplay:hover span.showDisplayOnHover{ 
  display: block;
  position: absolute;
  font-size: 11px;
  z-index: 4; 
  
  /* This sets the height of a line of text in the box. */
  line-height: 14px;
  
  /* These position the box where it needs to go. */
  top: 5px; 
  left: 20px; 
  
  /* These adjust the size of the box when it appears. */
  width: 400px;
  padding: 10px;
  
  border: 1px solid #c7c7c7;
  background-color: #ffffff; 
  
  /* text color */
  color: #666;
  text-align: left;
}

span.showBodyOfDisplayOnHover {
  font-size: 16px; 
  font-weight: normal;
  color: #444;
  line-height: 18px; 
}