
/* COMMON ELEMENTS */

*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
 	*behavior: url(/shim/boxsizing.htc);
}

html, body {
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: rgb(102,102,102);
	margin: 0px;
	padding: 0px;
}

body {
	background-image: url(../images/page%20background_mountains-01.png);
	background-repeat: no-repeat;
	background-position: center top;
}

p {
	margin: 0px;
	padding: 0px;
}

.hidden {
	display: none;
}

a {
	color: rgb(102,102,102);
	text-decoration: underline;
}

a:hover {
	color: rgb(102,102,102);
	text-decoration: none;
}

img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

/* FOOTER */

#footer {
	position: absolute;
	clear: both;
	width: 100%;
	top: 620px;
	font-size: 11px;
	color: rgb(153,153,153);
	font-weight: normal;
}

#links {
	width: 780px;
	float: left;
	margin-left: 10px;
	margin-bottom: 10px;
	font-size: 13px;
	line-height: 25px;
	font-weight: normal;
	color: rgb(102,102,102);
}

.link_btn {
	margin-top: -2px;
	margin-right: 12px;
	vertical-align: text-top;
}

#terms {
	width: 780px;
	float: left;
	margin-left: 10px;
}

#controls {
	font-size: 13px;
	position: absolute;
	width: 180px;
	text-align: right;
	cursor: pointer;
	top: 0px;
	right: 10px;
}

/* MAIN GAME ETC */

#container {
	position: relative;
	width: 1012px;
	margin-top: 0px;
	margin-left: auto;
	margin-right: auto;
}

#logo_holder {
	position: absolute;
	width: 171px;
	height: 41px;
	top: 20px;
	right: 10px;
}

#game_holder {
	position: absolute;
	width: 1012px;
	height: 542px;
	top: 70px;
	background-color: rgb(255,255,255);
	padding: 4px;
	border: 2px solid rgb(136,184,83);
	overflow: hidden;
}

#game_holder iframe {
	position: absolute;
}

#swiffycontainer {
	position: absolute;
	z-index: 0;
}

/* SIGNUP FORM */

#signup_form_holder {
	width: 450px;
	height: auto;
	outline: 0px solid rgba(204,204,204,.6);
	position: absolute;
	left: 530px;
	bottom: 30px;
	padding: 0px;
	color: rgb(102,102,102);
	font-size: 15px;
	z-index: 100;
	font-weight: bold;
}

#signup_form {
}

fieldset {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.form_row {
	width: 100%;
	min-height: 40px;
	margin-bottom: 20px;
}

.text_field {
	padding-top: 4px;
	padding-right: 8px;
	padding-bottom: 4px;
	padding-left: 8px;
	width: 260px;
	height: 40px;
}

label {
	display: inline-block;
	line-height: 1.8;
	vertical-align: top;
	cursor: hand;
	width: 120px;
}

input {
	border: 1px solid rgb(204,204,204);
	color: rgb(102,102,102);
	border-radius: 6px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
}

input.checkbox {
	border: none;
	vertical-align: middle;
}

input:focus {
	border: 1px solid rgb(153,153,153);
}

input.error {
	border: 2px solid #99C13A;
}

label.error {
	width: 266px;
	margin-left: 124px;
	color: #99C13A;
}

input.submit {
	font-family: Arial, Helvetica, sans-serif;
	margin-left: 0px;
	width: 241px;
	height: 40px;
	background: #88B953;
	background-image: -webkit-linear-gradient(top, #88B953, #396428);
	background-image: -moz-linear-gradient(top, #88B953, #396428);
	background-image: -ms-linear-gradient(top, #88B953, #396428);
	background-image: -o-linear-gradient(top, #88B953, #396428);
	background-image: linear-gradient(to bottom, #88B953, #396428);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 2px 2px 9px rgba(0,0,0,.2);
	-moz-box-shadow: 2px 2px 9px rgba(0,0,0,.2);
	box-shadow: 2px 2px 9px rgba(0,0,0,.2);
	font-size: 20px;
	color: #FFFFFF;
	font-weight: normal;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	cursor: pointer;
	text-align: left;
	padding-left: 18px;
}

input.submit:hover {
	background: #759a5c;
	background-image: -webkit-linear-gradient(top, #9ec672, #759a5c);
	background-image: -moz-linear-gradient(top, #9ec672, #759a5c);
	background-image: -ms-linear-gradient(top, #9ec672, #759a5c);
	background-image: -o-linear-gradient(top, #9ec672, #759a5c);
	background-image: linear-gradient(to bottom, #9ec672, #759a5c);
}

#submit_btn {
}

#signup_form_holder h2 {
	font-size: 25px;
	line-height: 32px;
	font-weight: lighter;
	color: rgb(102,102,102);
	margin-bottom: 30px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	padding: 0px;
}

/* DEBUG */

#cookie_btn {
	position: absolute;
	left: 20px;
	top: 40px;
	font-size: 12px;
	color: #99C13A;
	cursor: pointer;
	min-width:20px;
}

#cookie_btn:hover {
	color: #FF9900;
}

/* HIGH SCORES */

#highscores_holder {
	position: relative;
	width: 1000px;
	height: 530px;
	margin-left: auto;
	margin-right: auto;
	background-color: rgb(255,51,204);
}
