UL{
	/* A universal page reset */
	margin:0;
	padding:0;
}


.bannerHolder{
	float:left;
	margin:0px 0px;
	width:88px;

}

.bannerHolder li{
	/* Disabling the bullet of the li elements: */
	list-style:none;
	display:inline;
	width:88px;
}

.banner{
	/* The banner divs */
	position:relative;
	width:90px;
	height:90px;
	overflow:hidden;
	float:left;
	margin:5px;
}

.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;
	
}

/*	Positioning the animated divs outside the
	corners of the visible banner area: */

.banner .cornerTL{ left:-100px;top:-100px; }
.banner .cornerTR{ right:-100px;top:-100px; }
.banner .cornerBL{ left:-100px;bottom:-100px; }
.banner .cornerBR{ right:-100px;bottom:-100px; }

.banner p{
	/* The "Visit Company" text */
	
	display:none;	/* hidden by default */
	top:20px;
	left:0;
	width:100%;
	z-index:200;
	position:absolute;
	
	font-family:Tahoma, Arial, Helvetica, sans-serif;
	color:white;
	font-size:11px;
	text-align:center;
	
	cursor:pointer;
}

/* The styles below are only necessary for the styling of the demonstration page: */

#main{
	position:relative;	
	width:100%;
}


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

a:hover{
	text-decoration:underline;
}