@charset "utf-8";
/* CSS Document */

.photogallery{ /*CSS for TABLE containing a photo album*/
padding: 0 0 0 150px;
}
.photogallery td
{
width: 25%;
font-size: 0.9em;
text-align: center;
}

.photogallery img{ /*CSS for images within an album*/
border: 1px solid green;
}

.photonavlinks{ /*CSS for pagination DIV*/
font-weight: bold;
font-size: 1.2em;
text-align: right;
}

.photonavlinks a{ /*CSS for each navigational link*/
margin-right: 2px;
margin-bottom: 3px;
padding: 1px 5px;
text-decoration: none;
background-color: #E9B501;
color: #091551;
}

.photonavlinks a.current{ /*CSS for currently selected navigational link*/
background-color: #091551;
color: #ffffff;
}