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

* {
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	position: relative;
	outline: none;
}

body, html {
    font-family: 'OpenSansRegular', sans-serif;
    font-size: 18px;
    color: #505050;
}

form {
    margin-top: 20px;
    margin-left: 20px;
    max-width: 1000px;
    margin: 15px auto;
}

h1 {
    font-size: 1.6rem;
	text-align: center;
	color: 707070;
    margin: 5px;
}

h2 {
    font-size: 1.2rem;
	text-align: center;
	color: 707070;
    margin: 5px;
}

h3 {
    font-size: 1rem;
	text-align: center;
	color: 707070;
    margin: 5px;
}

a:link {
	text-decoration: none;
    color: #46ADAD;
}

a:hover {
	color: #D37E4B;
}


