.col-menuitem {
    position:relative;
	margin-top: 20px;
	width: 300px;
	background-color: #33b5e5;
	padding-top: 25px;
	padding-bottom: 25px;
    box-shadow: 4px 4px 8px 2px rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 10px;
	text-align: center;
	font-family: "trebuchet MS",Verdana,sans-serif;
	font-size: 20px;
	color: #ffffff;
}
.col-menuitem:hover {
    background-color: #0099cc;
}

/*This makes the entire div of each menu item a clickable link*/
/*requires the parent div the <a> tag is in to be have 'position:relative;' added*/
.col-menuitem 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 */
}

/*START SECTION FOR RESPONSIVE LAYOUT*/
.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 TWO  */
.span_2_of_2 {
	width: 100%;
}
.span_1_of_2 {
	width: 49.2%;
}
.xcol1 {
	text-align: right;
}
.xcol2 {
	text-align: left;
}

/*  GO FULL WIDTH AT LESS THAN 650 PIXELS */
@media only screen and (max-width: 650px) {
	.col { 
		margin: 1% 0 1% 0%;
	}
	.span_2_of_2, .span_1_of_2 { width: 100%; }
	.xcol1 {
		text-align: center;
	}
	.xcol2 {
		text-align: center;
	}
	.col-menuitem {
		display: table;
		margin: 0 auto;
	}
}
/*END SECTION FOR RESPONSIVE LAYOUT*/