@charset "utf-8";
/* CSS Document */


	/* -- [ layout elements ] -- */
	
		.page {width:100%}
			.top-content {width:100%; margin: 10px auto 10px auto}
			.bottom-content {width:100%; margin: 10px auto 10px auto}
	
	/* -- [ look ] -- */
	
	body { background: #E1E1E1}
		.content {background: #666}
	
	
	/* -- [typography] -- */
	
	body { font-family: 'Muli', arial ,sans-serif; font-weight:none; color:#464646; text-align:center; margin: 0px}
	
		/* --- [text shadow] --- */
		h1,h2,h3,h4,h5,h6,p,li,ul {text-shadow: 1px 2px 0px rgba(255, 255, 255, 1);}
		h1,h2,h3,h4,h5,h6,p,li,ul {margin: 5px 0 5px 0}
		
		/* --- [responsiveness] ---*/
		h1 {font-size: 2vmax;}
		h2 {font-size: 1.5vmax;}
		p {font-size: .8vmax;}
		
	
	.button {
		background-color:#44c767;
		-moz-border-radius:10px;
		-webkit-border-radius:10px;
		border-radius:10px;
		border:1px solid #18ab29;
		display:inline-block;
		cursor:pointer;
		color:#ffffff;
		font-family:'Muli', arial ,sans-serif;
		font-size:17px;
		padding:18px 31px;
		text-decoration:none;
		text-shadow:0px 1px 0px #2f6627;
	}
	.button:hover {
		background-color:#18AB29;
	}
	.button:active {
		position:relative;
		top:1px;
	}
	
