/* GAllERY - ALL IN ONE NAVIGATION CODE */
.gallery-container {
        display: table;
        border-collapse: collapse;
}

#gallery-container {
    width: 100%;
}

.gallery-menu {
        /* Width of the gallery menu */
        width: 200px;
        /* Whether the gallery menu should be on left or right */
        float: right;
        /* Change it to "none" to hide the menu */
        display: table-cell;
		/* If you want scroll gallery menu, set maximum height here */
		max-height: 100px;
		/* These two control scroll bars and should be left alone */
		overflow-y: auto;
		overflow-x: hidden;
}

.gallery-menu ul {
        list-style-type: none;
        list-style-image: none;
        /* Space on the left of vertical menu */
        padding-left: 10px;

}

.gallery-list {
        /* Width of the gallery thumbnails area */
        width: 100%;
        text-align: center;
        display: table-cell;
}

.gallery-entry {
        vertical-align: bottom;
        text-align: center;
        display:inline;
        float: left;
        overflow: hidden;
        /* Size of a single gallery thumbnail */
        width: 150px;
        height: 200px;
        /* Color of gallery thumbnail caption */
        color: #849CAC;
}

/* This code controls what menu text looks like */
.menu-nav               {
                background-color: #ffffff;
                font-family: "Trebuchet MS", arial,  helvetica, sans-serif;
                font-size: 14px;
                height: 30px;
                cursor:hand;
                font-weight: normal;
                text-indent: 6px;
                line-height: 29px;
                text-align: left;
                display: block;
                padding-left: 5px;
                padding-right: 5px;
                }
