﻿.navbar-brand {
	float: left;
	height: 60px;
	padding: 5px 5px;
	font-size: 18px;
	line-height: 20px;
}

body {
    padding-top: 80px;
    padding-bottom: 20px;
}

.thumbnail{
    position: relative;
    z-index: 0;
}

.thumbnail:hover{
    background-color: transparent;
    z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
    position: absolute;
    background-color: lightyellow;
    padding: 5px;
    left: -1000px;
    border: 1px dashed gray;
    visibility: hidden;
    color: black;
    text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
    border-width: 0;
    padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
    visibility: visible;
    top: 0;
    left: 60px; /*position where enlarged image should offset horizontally */
}

.img-thumbnail0 {
    display: inline-block;
    max-width: 100%;
    height: auto;
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.thumbnail0 {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    position: relative;
    z-index: 0;
}

.thumbnail0:hover {
    background-color: transparent;
    z-index: 50;
}

.thumbnail0 span { /*CSS for enlarged image*/
    position: absolute;
    background-color: lightyellow;
    padding: 5px;
    right: -1000px;
    border: 1px dashed gray;
    visibility: hidden;
    color: black;
    text-decoration: none;
}

.thumbnail0 span img { /*CSS for enlarged image*/
    border-width: 0;
    padding: 2px;
}

.thumbnail0:hover span { /*CSS for enlarged image on hover*/
    visibility: visible;
    top: 0;
    right: 60px; /*position where enlarged image should offset horizontally */
}