@import url('fonts.css');
@import url('font-awesome.css');

/*--------------------------------------------------------------*/
/* LAYOUT ------------------------------------------------------*/
/*--------------------------------------------------------------*/

html, body {
	margin: 0;
	padding: 0;
	background-color: #fafafa;
	font-family: 'Arial', 'Microsoft Jhenghei';
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a, a:hover, a:active {
	-webkit-transition: all 0.3s ease-in-out;
       -moz-transition: all 0.3s ease-in-out;
	     -o-transition: all 0.3s ease-in-out;
	    -ms-transition: all 0.3s ease-in-out;
	        transition: all 0.3s ease-in-out;
}
header, main, footer {
	width: 100%;
}
main {
	margin-top: 85px;
	position: relative;
	overflow: hidden;
}