﻿/* Start: gallery */
	/* Start: general */
		#gallery

		{
			margin-left: 25px;
		}

		.projectBox 

		{
			background-color: blue;

			width: 250px;
			height: 200px;

			float: left;
			margin-right: 25px;
			margin-bottom: 35px;

		}

	/* End: general */
	
	

	/* Start: hover image */
		.fontPos
		{
			position: absolute; 
			margin-top: 30px;
			margin-left: 20px;
			margin-right: 20px;
			
			color: #000;
			font-weight: 9000;
			font-size: 25px;
		}
	
		.imageEmphasis
		{
			cursor: pointer; 
			position: absolute;
			opacity: 0;
			filter: Alpha(opacity=0); /* IE8 and earlier */
		}

		.imageEmphasis:hover
		{
			opacity: .5;
			filter: Alpha(opacity=50); /* IE8 and earlier */
		}
	/* End: hover image */
/* End: gallery */