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

#galleryItem {
	color: #182f58; /* #797478 gray */
	font: 10px/1.5 Verdana, Helvetica, sans-serif;
	float: left;
	width: 45%; /* 16% */
	margin:  2% 3% 50px 2%;	
}
 
#galleryItem h3 {
	text-transform: uppercase;
	text-align: center;
}

#galleryItem p {
	color: #182f58; /* blue */
}
 
#galleryItem img {
	max-width: 100%;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

/******* responsive design options for tablet in portrait layout & phone in landscape layout *******/
@media only screen and (max-width: 768px) {
	#galleryItem {
		color: #182f58; /* #797478 gray */
		font: 10px/1.5 Verdana, Helvetica, sans-serif;
		float: left;
		width: 48%; /* 20% 16% */
		margin:  1%;	/* 2% 3% 50px 2% */
	}
}

/******* responsive design options for phone in portrait layout  *******/
@media only screen and (max-width: 320px) {
	#galleryItem {
		color: #182f58; /* #797478 gray */
		font: 10px/1.5 Verdana, Helvetica, sans-serif;
		float: left;
		width: 98%; /* 20% 16% */
		margin:  1%;	/* 2% 3% 50px 2% */
	}
}