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

.gallerycontainer{
	position: relative;
	width: 1020px;
	margin: 0 auto;
	text-align: center;
	padding: 1em 1em 1em 0px;
	height: 300px;/*Add a height attribute and set to largest image's height to prevent overlaying*/
	left: auto;
	right: auto;	
}

.thumbnail img{
border: 1px solid white;
margin: 0 5px 5px 0;
}

.thumbnail:hover{
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: left center;
	text-indent: 10px;
	
}

.thumbnail:hover img{
border: 1px solid blue;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #F00;
	padding: 5px;
	left: -1000px;
	border: 1px dashed #000;
	visibility: hidden;
	color: black;
	text-decoration: none;
	top: 500px;
}

.thumbnail span img{ /*CSS for enlarged image*/
	border-width: 0;
	padding: 2px;
	float: left;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
	visibility: visible;
	top: 220px;
	left: auto; /*position where enlarged image should offset horizontally */
	z-index: 50;
	right: auto;	
}


.logodesign ul {
	width:300px;
	float: left;
	margin-left:0px;
	margin-right:10px;
	background-color: #FFF;
	padding: 5px;
}

.logodesign li {
	font-size: 100%;
	list-style-type: none;	
}
.logodesign ul li a:link {
	font-weight: bold;
	color: #0Cc;
	text-decoration: none;	
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 20px;
}
.logodesign ul li a:visited {
	
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 20px;
	color: #0Cc;
	text-decoration: none;
}
.logodesign ul li a:hover {
	background-image: url(../logo-design-images/extra-logo.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 20px;
	color: #000;
	text-decoration: none;
}


.logodesign ul li a:active {
	background-image: url(../logo-design-images/elite-logo.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 20px;
	color: #000;
	font-variant: small-caps;
	text-decoration: underline;	
	
}