.body {
/*note: this overrides/adds the body css for a background on just this page... may end up adding to all pages...*/
	background-image: url("../_images/blueprint-pattern2.jpg");
    background-position: right top;
    background-attachment: fixed;
}





/********************/
/*START COLUMN SETUP*/
/********************/
/*  SECTIONS  */
.section {
	clear: both;
	padding: 0px;
	padding-top: 20px;
	margin: 0px;
}

/*  COLUMN SETUP  */
.col {
	display: block;
	float:left;
	margin: 1% 0 1% 5%;
}
.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: 40%;
	min-width: 325px;
}
.span_1_of_3 {
	width: 25%;
	padding-top: 40px;
	padding-bottom: 20px;
}

/*  GO FULL WIDTH BELOW 650 PIXELS */
@media only screen and (max-width: 650px) {
	.col {  margin: 1% 0 1% 0%; }
	.span_3_of_3, .span_2_of_3, .span_1_of_3 {
		width: 100%;
		padding-top: 0px;
	}
	.card_contact { margin: 0 0 0 0 !important; }
	.card_sidebar { margin: 0 0 0 0 !important; }
}

/********************/
/*END COLUMN SETUP*/
/********************/






/*START COLUMN 1 - CONTACT*/
.card_contact {
    position:relative;
	margin: 0 0 0 15px;
	background-color: #dcdfe5;
	box-shadow: 4px 4px 8px 2px rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius:  10px;
}
.title_contact {
	text-align: center;
	background: #F5B520;
	font-size: 20px;
	font-weight: bold;
    border-radius: 10px 10px 0 0;
}
.byline1_contact {
	text-align: center;
	padding: 10 20 10 20;
	font-size: 15px;
}
.byline2_contact {
	padding: 10 20 10 20;
	font-size: 15px;
}



/*START COLUMN 3 - SIDEBAR INFO*/
.card_sidebar {
    position:relative;
	margin: 0 15px 0 0;
	background-color: #dcdfe5;
    box-shadow: 4px 4px 8px 2px rgba(0,0,0,0.2);
    transition: 0.3s;
    border-radius: 10px;
}
.title_sidebar {
	text-align: center;
	background: #F5B520;
	font-size: 20px;
	font-weight: bold;
    border-radius: 10px 10px 0 0;
}
.byline_sidebar {
	padding: 10 20 10 20;
	font-size: 15px;
}





/*START MAIN BANNER*/
.card_main_banner {
    position:relative;
	text-align: center;
	background-color: #F5B520;
    box-shadow: 4px 4px 8px 2px rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 100%;
    border-radius: 10px;
}

.title_main_banner {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}



/*START MAIN CARDS*/
.card_spacer_sm {
	height: 15px;
}
.card_spacer_LG {
	height: 20px;
}

.card_main_header {
    position:relative;
	text-align: center;
	background-color: #F5B520;
    box-shadow: 4px 4px 8px 2px rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 100%;
    border-radius: 10px;
}

.title_main_header {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}

.title_main_cards {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}
.contactimage {
	height: 100px;
	padding-top: 5px;
}

.card {
    position:relative;
	text-align: center;
	background-color: #ffffff;
    box-shadow: 4px 4px 8px 2px rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 100%;
    border-radius: 10px;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

/*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*/
.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 */
}

.listofservicesgroup {
	text-align: left;
	padding: 0 0 0 10px;
	font-weight: bold;
}
.listofservices {
	text-align: left;
	padding: 0 0 10px 10px;
}
