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

@import url(http://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700);
@import url(http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:400,200,300,700);

body {
	margin: 0;
	background-color:#DDDDDD;
	font-family: 'Roboto Slab', serif;
	/*font-family: 'Yanone Kaffeesatz', sans-serif;*/
	font-weight:400;
}

h1, h2, h3, h4, h5, h6 {
	font-weight:700;
	color:#a2e000;
	}

p {line-height:150%}

a {/*color:#95c500;*/ color:#a2e000; text-decoration:none; font-weight:700}

.grid {
	max-width:900px;
	margin:auto;
}
	
.header {
	position:fixed;
	height: 100px;
	vertical-align: middle;
	line-height:100px;
	width:100%;
background: #4d4d4d;
background: -moz-linear-gradient(top, #4d4d4d 0%, #141414 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, #4d4d4d), color-stop(100%, #141414));
background: -webkit-linear-gradient(top, #4d4d4d 0%, #141414 100%);
background: -o-linear-gradient(top, #4d4d4d 0%, #141414 100%);
background: -ms-linear-gradient(top, #4d4d4d 0%, #141414 100%);
background: linear-gradient(to bottom, #4d4d4d 0%, #141414 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d4d4d', endColorstr='#141414', GradientType=0 );
	z-index:1000;
}

.header > .grid > img {
 vertical-align: middle;
}

.button {
	padding: 0px 15px;
	margin: 40px 0px 20px 10px;
	width:auto;
	max-width: 300px;
	line-height:40px;
	float:right;
	color:#FFFFFF;
	font-weight:700;
	background-color: #a2e000;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 0px solid #000000;
	-webkit-box-shadow: inset 0px 2px 3px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: inset 0px 2px 3px 0px rgba(0,0,0,0.75);
	box-shadow: inset 0px 2px 3px 0px rgba(0,0,0,0.75);
}

.button:hover {
	background-color:#95c500;
/*	text-shadow: -1px -1px 1px rgba(0,0,0,0.5);*/
	transition: 1s;
	-moz-transition: 1s;
	-webkit-transition: 1s;
}

.button:active {
	background-color:#bbbbbb;
/*	text-shadow: -1px -1px 1px rgba(0,0,0,0.5);*/
	transition: 1s;
	-moz-transition: 1s;
	-webkit-transition: 1s;
}
.button a {color:#FFFFFF; text-decoration:none}

.content {
	position:relative;
	top:100px;
	overflow:auto;
	width:auto;
	padding:15px 20px 30px;
background: rgba(255,255,255,1);
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(237,237,237,1)));
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%);
background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%);
background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%);
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=0 );
}

.footer {
	position:relative;
	top:100px;
	height: 30px;
	width:auto;
	line-height:30px;
	text-align:center;
	padding:0 20px;
	font-size:80%;
	color:#666666;
}