@charset "utf-8";
/* CSS Document */

#gallery {
/* The pics container */
position: absolute;
width: 920px;
height: 340px;
margin: 50px 0;
}

.pic, .pic a {
/* Each picture and the hyperlink inside it */
width: 100px;
height: 100px;
overflow: hidden;
outline: none;
}

.pic {
/* Styles specific to the pic class */
position: absolute;
border: 5px solid #eee;
border-bottom: 18px solid #eee;

/* CSS3 Box Shadow */
-moz-box-shadow: 2px 2px 3px #2d2d2d;
-webkit-box-shadow: 2px 2px 3px #2d2d2d;
box-shadow: 2px 2px 3px #2d2d2d;
}

.pic a {
/* Specific styles for the hyperlinks */
text-indent: -999px;
display: block;
/* Setting display to block enables advanced styling for links */
}
