/*MEDIA QUERY GUIDE 
xs = @media (max-width: 749px) { ... }
sm = @media (min-width: 750px) and (max-width: 969px) { ... }
md = @media (min-width: 970px) and (max-width: 1169px) { ... }
lg = @media (min-width: 1170px) { ... }
*/

	/* RESPONSIVE SIZE GUIDE */
	.sizeGuide div {position: fixed; top: 0; left: 0; background: #ccc; text-align:center; padding:5px; width: 30px; height: 30px;}
	
/*******************************
OVERALL STYLES
*/
body {
background: #545d66;
font-family: "Roboto", "Helvetica", Arial, sans-serif;
font-weight: 400;
font-size: 18px;
color: #FFFFFF;
-webkit-font-smoothing: antialiased !important;
text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
padding-bottom: 60px;
}

span.fname {font-family: "Roboto"; font-weight: 100;}
span.lname {font-family: "Roboto"; font-weight: 300;}


.siteHeader {}

.siteBody {}

.siteFooter {}



/*******************************
BOOTSTRAP OVERRIDES / ADDITIONS
*/

/* BUTTONS */
.btn-dark {
	color: #fff;
	background-color: #5cb85c;
	border-color: #4cae4c;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
	color: #fff;
	background-color: #449d44;
	border-color: #398439;
}
