* {
	margin: 0;
	padding: 0;
}

#containerEx5 {
	background: #333;
	padding: 50px;
	margin-top: 50px;
}

#ex5 {
	width: 1024px;
	margin: 0 auto;
	min-height: 300px;
}

#ex5 img {
	margin: 25px 10px 25px 10px;
	opacity: 0.8;
	border: 10px solid #eee;
	width:20.5%;
	
	/*Transition*/
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	
	/*Reflection*/
	-webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(.7, transparent), to(rgba(0,0,0,0.1)));
}


#ex5 img:hover {  
   opacity: 1;
   
   /*Reflection*/
  -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(.7, transparent), to(rgba(0,0,0,0.4)));
 
   /*Glow*/
  -webkit-box-shadow: 0px 0px 20px rgba(255,255,255,0.8);
  -moz-box-shadow: 0px 0px 20px rgba(255,255,255,0.8);
  box-shadow: 0px 0px 20px rgba(255,255,255,0.8);
}  


/*Header*/
header {
	font: 30px/70px Helvetica, sans-serif;
	height: 70px;
	background: #aaa;
	color: white;
	text-align: center;
	margin: 0 0 15px 0;
}

header a {
	color: white;
	text-decoration: none;
}

header a:hover {
	text-decoration: underline;
}

body {
	background: #333 none repeat scroll 0 0;
}


