body,h1,h2,h3,p,quote,small,form,input,ul,li,ol,label,fieldset{
	/* A simple page reset */
	margin:0px;
	padding:0px;
}

body{
	/* Styling the body */
	background: #222222;
	 font: notmal bold 35px Times; color: white; Font-variant: Small-caps; 
                   
}

#gallery{
	/* The pics container */
	width:850px;
	height:500px;
	position:relative;
}

.pic, .pic a{
	/* Each picture and the hyperlink inside it */
	width:200px;
	height:150px;
	overflow:hidden;
}

.pic{
	/* Styles specific to the pic class */
	position:absolute;
	border:7px solid #ffffff;
	border-bottom:25px solid #ffffff;
	
	/* CSS3 Box Shadow */
	-moz-box-shadow:2px 2px 30px #333333;
	-webkit-box-shadow:2px 2px 30px #333333;
	box-shadow:2px 2px 30px #333333;
}

.pic a{
	/* Specific styles for the hyperlinks */
	text-indent:-999px;
	display:block;
	/* Setting display to block enables advanced styling for links */
}

.clear{
	/* The clearfix hack */
	clear:both;
}

#main{
	/* The main container */
	width:780px;
	margin:30px auto;
}

a img{
	border:none;
}

a, a:visited {
	color:#333333;
	text-decoration:none;
	outline:none;
}

a:hover{
	text-decoration:none;
}

