@charset "utf-8";
/* CSS Document */
.bannerHolder{
	/* The main banner unordered list */

	height:0px;
	width:0px;
	
	float:left;
/*	margin:20px 15px;*/
	/*padding:10px;*/
	background:#f7f7f7;
	border:1px solid #eee;
	margin-left:-30px;

	/* CSS3 rounded corners */

	-moz-border-radius:12px;
	-webkit-border-radius:12px;
	border-radius:12px;
}

.bannerHolder ul{
	padding-left:0px;
	margin-left:0px;
	padding-top:0px;
	margin-top:0px;
}

.bannerHolder li{
	/* Disabling the bullet of the li elements: */
	list-style:none;
	display:inline;
	padding-left:0px;
	margin-left:-20px;
}

.banner{
	/* The banner divs */
	position:relative;
	width:125px;
	height:125px;
	overflow:hidden;
	float:left;
	margin:0px;
}

.banner img{
	/* The banner divs */
	display:block;
	border:none;
}

.banner div{
	/* The dark animated divs */
	
	position:absolute;
	z-index:100;
	background-color:#222;
	width:60px;
	height:60px;
	cursor:pointer;
	
	/*	Setting a really big value for border-radius
		will make the divs perfect circles */
		
	-moz-border-radius:100px;
	-webkit-border-radius:100px;
	border-radius:100px;
}

/*	Positioning the animated divs outside the
	corners of the visible banner area: */

.banner .cornerTL{ left:-63px;top:-63px; }
.banner .cornerTR{ right:-63px;top:-63px; }
.banner .cornerBL{ left:-63px;bottom:-63px; }
.banner .cornerBR{ right:-63px;bottom:-63px; }

.banner p{
	/* The "Visit Company" text */
	
	display:none;	/* hidden by default */
	
	left:0;
	top:57px;
	width:100%;
	z-index:200;
	position:absolute;
	
	font-family:Tahoma, Arial, Helvetica, sans-serif;
	color:white;
	font-size:16px;
	font-weight:bold;
	text-align:center;
	
	cursor:pointer;
}




