*{
	/* A universal page reset */
	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:Helvetica, sans-serif;
}

.bannerHolder{
	/* The main banner unordered list */

	height:250px;
	width:220px;
	
	float:left;
	margin:10px;
	padding:5px;
	background-color:#000;
	background-image: url('img/bground.png');
	
	border:1px solid #eee; -moz-border-radius:12px; -webkit-border-radius:12px; border-radius:12px; background-image:url('image/bground.png')/* CSS3 rounded corners */

	
}

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

.banner{
	/* The banner divs */
	position:relative;
	width:100px;
	height:115px;
	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;
	
	/*	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:30px;
	width:100%;
	z-index:200;
	position:absolute;
	
	font-family: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;
}

h1{
	padding:30px 0;
	text-align:center;
	text-shadow:0 1px 1px white;
	margin-bottom:30px;
	background-color:#f8f8f8;
}

h2{
	font-size:14px;
	font-weight:normal;
	text-align:center;
	
	position:absolute;
	right:40px;
	top:40px;
}

h1, h2{
	font-family:"Myriad Pro",Arial,Helvetica,sans-serif;
}

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

a:hover{
	text-decoration:underline;
}