/* ******************************************************************************************** */
/* Force Martial Arts LLC, CSS                                                                  */
/* Author: Aaron Knapp,                                                                         */
/* ******************************************************************************************** */

/* base CSS */
* {
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

html, body {
	padding: 0;
	margin: 0;
}

body {
	color: #325050;
	background: #fff;
	font-family: 'Arial', sans-serif;
	font-size: 70%;
}