.main_container {
    max-width: 500px;
	margin:0 auto;
	font-family: "Lucida Sans", sans-serif;
	font-size: 15px;
}

.title {
	text-align: center;
}



.card {
    position:relative;
	text-align: center;
    box-shadow: 4px 4px 8px 2px rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 100%;
	height: 225px;
    border-radius: 5px;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

/*This makes the entire div of each card a clickable link*/
/*requires the parent div the <a> tag is in to be have 'position:relative;' added*/
.card a {
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    text-decoration:none; /* Makes sure the link doesn't get underlined */
    z-index:10; /* raises anchor tag above everything else in div */
    background-color:white; /*workaround to make clickable in IE */
    opacity: 0; /*workaround to make clickable in IE */
    filter: alpha(opacity=1); /*workaround to make clickable in IE */
}

img {
    border-radius: 5px 5px 0 0;
}

.container {
	text-align: center;
    padding: 2px 16px;
}

.contactimage {
	height: 100px;
	padding-top: 5px;
}


*  SECTIONS  */
.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}

/*  COLUMN SETUP  */
.col {
	display: block;
	float:left;
	margin: 1% 0 1% 1.6%;
}
.col:first-child { margin-left: 0; }

/*  GROUPING  */
.group:before,
.group:after { content:""; display:table; }
.group:after { clear:both;}
.group { zoom:1; /* For IE 6/7 */ }

/*  GRID OF THREE  */
.span_3_of_3 { width: 100%; }
.span_2_of_3 { width: 66.13%; }
.span_1_of_3 { width: 32.26%; }

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 480px) {
	.col {  margin: 1% 0 1% 0%; }
	.span_3_of_3, .span_2_of_3, .span_1_of_3 { width: 100%; }
}