/* CSS Document */

#gallery{ /* MUST BE SAME WIDTH AS THE CONTENT DIV */
    width: 980px;
    overflow: hidden;
}

/* GALLERY CATEGORIES */

#gallery table#categories_thumbnails{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#gallery td.categories_thumbnails {
    margin: 0;
    float: left;
}

/* CATEGORIES THUMBNAILS IMG */
#gallery img.categories_thumbnails{
    margin: 5px;
    border: 5px solid #FFFFFF;
    width: 225px;
    height: 169px;
    box-shadow: 0 5px 5px 0 #666666;
}

/* CATEGORY TITLE */

#gallery div.category_name{
    margin: 5px 5px 10px 5px;
    width: 225px; /* SAME WIDTH AS CATEGORY THUMBNAIL WITHOUT THE BORDER */
    padding: 0px;
	border: 5px Solid #FFFFFF;
    box-shadow: 0 5px 5px 0 #666666;
    text-align: center;
}

/* CATEGORIES TITLE LINK */
.category_name a {
    color: #2B6B9D;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
	font-weight: bold;
    text-decoration: none;
}

category_name a:hover {
    color: #000000;
	text-decoration: none;
}

/* THUMBNAILS OF THE CHOSEN CATEGORY */

#gallery td.category_thumbnails img.category_thumbnails {
    border: 5px solid #FFFFFF;
    margin: 5px;
    width: 143px;
    height: 107px;
    box-shadow: 0 5px 5px 0 #666666;
}

/* FINAL PHOTO */

#gallery img.final_photo {
    border: 5px solid #FFFFFF;
    margin: 5px;
    max-width: 800px;
    max-height: 600px;
    box-shadow: 0 5px 5px 0 #666666;
}

#gallery div#photo_caption {
    width: 800px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

/* TOP GALLERY NAVIGATION */
#gallery div#gallery_navigation {
    width: 100%;
    text-align: left;
    font-size: 16px;
}

/* PAGING */
#gallery div#paging {
    width: 100%;
    text-align: center;
    margin-top: 40px;
}