/*gallery styles*/
/* The navigation bar */
.navbar {
    overflow: hidden;
    background-color: #333;
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
	z-index:10;
	padding-bottom: 10px;
}

/* Links inside the navbar */
.navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Main content */
.main {
    margin-top: 65px; /* Add a top margin to avoid content overlay */
}

div.gallery {
    margin: 5px;
    border: 1px solid #ccc;
    float: left;
    width: 48%;
	height: 480pt;
}

div.gallery:hover {
    border: 1px solid #777;
}

div.gallery img {
    max-width: 90%;
    height: auto;
}

div.desc {
	font-size: 12px;
    font-size: 1.5vw;
    padding: 15px;
    text-align: center;
	width: 95%;
	position: relative;
}
