@charset "utf-8";

@import url(http://fonts.googleapis.com/css?family=Open+Sans:300,400,800&subset=latin,latin-ext);


* {
    margin: 0;
    padding: 0;
    border: 0 none;
    outline: 0 none;
    z-index: 1;
}

html,
body {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    width: 100%;
    height: 100%;
    cursor: default;
}

body {
	font-size: 80%;
	padding-top: 80px;
	background-attachment: fixed;
	background: #a3c94a;
	background: -moz-linear-gradient(top, #a3c94a 0%, #136e00 100%);
	background: -webkit-linear-gradient(top, #a3c94a 0%,#136e00 100%);
	background: linear-gradient(to bottom, #a3c94a 0%,#136e00 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a3c94a', endColorstr='#136e00',GradientType=0 );
}

::selection {
    color: #fff;
    background-color: #1a6470;
}

::-moz-selection {
    color: #fff;
    background-color: #1a6470;
}

.clearfix {
    *zoom: 1;
}

.clearfix:before,
.clearfix:after {
    display: table;
    line-height: 0;
    content: "";
}

.clearfix:after {
    clear: both;
}

h1 {
	margin-top: 0;
	line-height: 1.2;
	/*word-break: break-all;*/
}

a,
a:hover,
a:active,
a:visited {
	color: #136E00;
	text-decoration: underline;
}

a:hover {
	color: #A3C94A;
}

.border-box {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.container {
	width: 90%;
	margin: 0 auto 40px auto;
	padding: 20px;
	background: #fff;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	-moz-box-shadow: 0 12px 40px rgba(0,0,0,.25);
	-webkit-box-shadow: 0 12px 40px rgba(0,0,0,.25);
	box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

.container * {
	max-width: 90%;
}

img {
	width: 80%;
	max-width: 300px;
}

.btn {
	text-decoration: none;
	display: block;
	word-break: break-all;
	height: auto;
	line-height: 30px;
	margin: 8px 0;
	padding: 0 40px;
	color: #fff !important;
	background: #A3C94A;
}

.btn:hover {
	color: #fff;
	background: #136E00;
	text-decoration: none;
}

@media only screen and (min-width : 321px) {
	body {
		font-size: 90%;
	}

	.container {
		width: 80%;
		padding: 30px;
	}

	.container * {
		max-width: 85%;
	}

	img {
		width: 50%;
		max-width: 200px !important;
	}


	.btn {
		line-height: 40px;
	}
}

@media only screen and (min-width : 768px) {
	body {
		font-size: 100%;
	}

	.container {
		width: 60%;
		padding: 40px;
	}

	.container * {
		max-width: 85%;
	}

	.btn {
		max-width: 65%;
		line-height: 60px;
	}
}