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



/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.gallerycontainer{
	position: relative;
	background-color: #FEFDE7;
	padding: 10px;
	-moz-border-radius-topright:  30px;
	-webkit-border-top-right-radius:  30px;
	-moz-border-radius-bottomleft:  30px;
	-webkit-border-bottom-left-radius:  30px;
	border: 1px solid #050044;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}
.gallerycontainer h2 {
	font-size: 150%;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #89ACFF;
	border-left-width: 25px;
	border-left-style: solid;
	border-left-color: #89ACFF;
	padding-left: 20px;
	-moz-border-radius-topright:  30px;
	-webkit-border-top-right-radius:  30px;
	-moz-border-radius-bottomleft:  30px;
	-webkit-border-bottom-left-radius:  30px;  
}

.thumbnail img{
border: 1px solid white;
margin: 0 5px 5px 0;
}
.gallerycontainer p .portfolioLink {
	color: #000040;
}


.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
	border: 1px solid #42487A;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: #FEFDE7;
	padding: 5px;
	left: -600px;
	border: 1px solid #42487A;
	visibility: hidden;
	color: #42487A;
	text-decoration: none;
	text-align: center;
	float: right;
}

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

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

