/* 
========================================================================================================================
Title:				Crusty Signup Page
--
Description:		Sets layout and presentation for all media
--
Updated:			02.07.2009
========================================================================================================================
COLOURS
--
Dark Grey: 			#333333
--
Brown:				#7e765f
Paler: 				#d3c7a6
======================================================================================================================== */

/* 
========================================================================================================================
RESET & BASIC SETUP - LEVELS PLAYING FIELD ACROSS BROWSERS
========================================================================================================================
*/
html, body, form, fieldset { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6, p, pre, blockquote, ul, ol, dl, address { margin: 1em 0; padding: 0; }
li, dd, blockquote { margin-left: 1.8em; }
a, button, label { cursor: pointer; }
img { vertical-align: middle; }
input, select, textarea, th, td { font-size: 1em; font-family: inherit; }
fieldset { border: none; }
q:before, q:after { content:''; }

/* 
========================================================================================================================
TOOLBOX - USEFUL CLASSES 
========================================================================================================================
*/
/* GENERIC */
.hide { display:none; }
.show { display:block; }
.float-left { float: left; }
.float-right { float: right; }
.float-none { float: none; }
.align-left { text-align: left; }
.align-center { text-align: center; }
.align-right { text-align: right; }
.clear { clear: both; }

/* CLEARFIX */
.clearfix:after {content: " "; display: block; height: 0; clear: both; visibility: hidden; line-height: 0; font-size: 0; }
.clearfix {display: inline-block;}
/* Start Holly Hack \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End Holly Hack */

/* 
========================================================================================================================
BASIC ELEMENTS 
========================================================================================================================
*/

*{ 
}

html{
	height: 100%;
}

body{
	margin: 0;
	padding: 0;
	height: 100%;
	color: #FFFFFF;
	background-color: #d7d3cc;
	background-image: url(../img/bg.jpg);
	background-repeat: repeat;
	font-family: "Trebuchet MS", Arial, Helvetica, Verdana, sans-serif;
	font-size: 75%;					/* Font sizing in ems beyond this point. If you want to change anything, just change this. Default 76%. 62.5%: 1em=10px / 75%: 1em=12px / 87.5%: 1em=14px / 100%=16px */
	line-height: 1.429em; 			/* 14x1.429=18px */
	text-align: center;
}

/*
------------------------------------------------------------------------------------------------------------------------
LINKS
------------------------------------------------------------------------------------------------------------------------
*/
a {
	color: #F90;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:visited {
}
a:active {
}
a:focus {
	outline: none;
}

/*
------------------------------------------------------------------------------------------------------------------------
HEADINGS
------------------------------------------------------------------------------------------------------------------------
*/
h1 {
	font-size: 1.4em; 		/* 14x2em=24px */
	margin: 0 0 1em 0;
	padding: 0;
	font-weight: normal;
	line-height: 1em;
	color:#F90;
}
h2 {
	font-size: 1.286em;	 	/* 14x1.286em=18px */
	margin: 0.5em 0;
	padding: 0;
}
h3 {
	font-size: 1em;	 	/* 14x1.167em=14px */	
	margin: 0.5em 0;
	padding: 0;
}
h4, h5, h6 {
	font-size: 1em;
	font-weight: bold;
	margin: 0.5em 0;
	padding: 0;
}

h2 a{
	text-decoration:none;
}

/*
------------------------------------------------------------------------------------------------------------------------
PARAGRAPHS, QUOTES & TEXT
------------------------------------------------------------------------------------------------------------------------
*/
p {
	margin: 0.5em 0 1em 0;
}
blockquote {
}
cite {
}
blockquote cite {
}
q {
}
address {
	font-style: normal;
}
strong {
	color: #FFFFFF;
}
em {
}
b {
}
i {
}
ins {
	text-decoration: none;
	background-color: #333333;
}
del {
	text-decoration: line-through;
}

/*
------------------------------------------------------------------------------------------------------------------------
LISTS
------------------------------------------------------------------------------------------------------------------------
*/
ol {
}
ul {
}
ol li {
}
ul li {
}
ul ul, ul ol, ol ol, ol ul { margin: 0; }
dl {
}
dt {
	color: #d3c7a6;
}
dd {
}

/*
------------------------------------------------------------------------------------------------------------------------
IMAGES
------------------------------------------------------------------------------------------------------------------------
*/
img {
	border: none;
	vertical-align: middle;
}
a img {
	border: none;
}

/*
------------------------------------------------------------------------------------------------------------------------
OTHER ELEMENTS
------------------------------------------------------------------------------------------------------------------------
*/
/* HR */
hr {
	border: none;
	height: 1px;
	border-top: 1px solid #333333;
	clear: both;
}

/* CODE */
pre, code, samp, kbd {
	font-size: 1.2em;
	border: 1px solid #333333;
	padding: 2px;
}

/*
------------------------------------------------------------------------------------------------------------------------
TABLES
------------------------------------------------------------------------------------------------------------------------
*/
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px solid #333333;
	font-size: 1em;
	text-align: left;
}
caption {
	font-style: italic;
}
/* ------------------------------------ */
/* tbody */
tbody {
}
tr {
}
tr.alt {
}
th {
	padding: 0.5em;
	vertical-align: top;
	color: #d3c7a6;
}
td {
	padding: 0.5em;
	vertical-align: top;
}
/* ------------------------------------ */
/* thead */
thead {
	text-align: left;
}
thead tr {
}
thead th, thead td {
}
/* ------------------------------------ */
/* tfoot */
tfoot {
	text-align: left;
}
tfoot tr {
}
tfoot th, tfoot td {
}

/*
------------------------------------------------------------------------------------------------------------------------
FORMS
------------------------------------------------------------------------------------------------------------------------
*/
form {
}
fieldset {
	padding: 0;
	border-bottom: 1px solid #3e392b;
}
legend {
	margin-left: 0;
	padding-left: 0;
	font-weight: bold;
	color:#F90;
	font-size: 1.4em; 		/* 14x2em=24px */
	margin: 0 0 1em 0;
	padding: 0;
	font-weight: normal;
	line-height: 1em;
	
}
label {
	font-weight: bold;
	margin-right: 5px;
}
input {
}
textarea {
}
input, textarea {
}
select {
}
optgroup {
}
option {
}
a { text-decoration:underline;	
}



/* 
========================================================================================================================
LAYOUT 
========================================================================================================================
*/

/*
------------------------------------------------------------------------------------------------------------------------
MAIN CONTAINER
------------------------------------------------------------------------------------------------------------------------
*/
#container {
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: left;
	
}

/*
------------------------------------------------------------------------------------------------------------------------
MASTHEAD
------------------------------------------------------------------------------------------------------------------------
*/
#masthead {
	display: block;
	width: 100%;
	height: 117px;
	line-height: 195px;
	overflow: hidden;
	background-color: #333;
	background-image: url(../img/hdr_bg.jpg);
	background-repeat: repeat-x;
}

#masthead img {
	float:left;
	top:0px;
	padding:0;
	margin:0;
}
/*
------------------------------------------------------------------------------------------------------------------------
CONTENT
------------------------------------------------------------------------------------------------------------------------
*/
#content {
	width: 998px;
	margin: 0 auto;
	padding-top: 20px;
}

/* Columns */
#content .main {
	position: relative;
	float: left;
	width: 100%;
	overflow: hidden;
	display: inline;		/* fix IE6 double float margin */
	border:3px solid white; background-color:#333;
	padding:20px;
	min-height:600px;	
	
}


#content .left {
	position: relative;
	float: left;
	background-color:#333;
	width: 580px;
	overflow: hidden;
	display: inline;		/* fix IE6 double float margin */
	top:12px;
	border:3px white solid;
	padding:10px;
	min-height:440px;	
	background: transparent url(../img/panel_plain.gif) 0 0 repeat;	
}
#content .right {
	position: relative;
	float: right;
	width: 360px;
	margin-right: 15px;
	overflow: hidden;
	display: inline;		/* fix IE6 double float margin */
}

/* Panels */
#content .panel {
	position: relative;
	margin: 0 0 0 0;	
}
#content .panel .panel_header {
	position: relative;
	text-align: center;
	height:35px;
	overflow: hidden;
	background: transparent url(../img/panel_header.gif) 0 5px no-repeat;
}
#content .panel .panel_header h2 {
	font-size: 12px;
	text-transform: uppercase;
	font-weight: bold;
	color: #3e392b;
	width: 240px;
	height: 30px;
	line-height: 30px;
	margin: 0 auto;
	overflow: hidden;
	background: transparent url(../img/panel_masthead.gif) 0 0 no-repeat;
}
#content .panel .panel_body {
	position: relative;
	padding: 2px 30px;
	background: transparent url(../img/panel_tile.gif) 0 0 repeat-y;
}
#content .panel .panel_body h2 {
	font-size: 12px;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	margin-top: 0;
	border-bottom: 1px solid #3e392b;
}
#content .panel .panel_footer {
	height:40px;
	text-align: center;
	font-size: 10px;
	padding: 0 30px;
	overflow: hidden;
	background: transparent url(../img/panel_footer.gif) bottom left no-repeat;
}

/* Video panel exceptions*/
#content .panel.video {
}
#content .panel.video .panel_body {
	padding: 10px 20px;
}





#content .main_panel {
	text-align:left;
	margin-top:10px;
}


/* Prizes image */
div.prizes {
	position: relative;
	top: -70px;
	left: 20px;
}

/* Graphic headers (I know, I know...) */
h1.welcome {
	width: 300px;
	height: 90px;
	line-height: 90px;
	font-size: 1px;
	text-indent: 3000px;
	overflow: hidden;
	margin: 0 0 1em 0;
	background: transparent url(../img/header_welcome.jpg) 0 0 no-repeat;
}

/* Forms */
form#register_form {		/* see forms css above */
}
form p {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 5px 0;
	margin: 0;
}
form label {
	display: block;
	float: left;
	width: 120px;
}
form input.text,
form select.text {
	display: block;
	float: left;
	width: 180px;
	border: 1px solid #3e392b;
	background: #fffde9;
}
form input.text:focus,
form select.text:focus,
form input.text:active,
form select.text:active  {
	background-image: none;
	background-color: #fffde9;
}
form .label_check, form .label_radio {
	font-weight: normal;
	color: #FFFFFF;
	width: auto;
	display: inline;
	float: none;
}
form div.error {
	text-align: center;
	font-weight: bold;
	color: #FFFFFF;
	padding: 0 10px;
	margin: 10px 0;
	font-style: italic;
	border: 1px solid #333333;
	background: #CCC url(../img/panel_error.gif) 0 0 repeat;
}
a.fp_toggle {
	display: block;
	padding: 5px 0 0 0;
	text-align: center;
	border-top: 1px solid #3e392b;
}

/* ------------------------------------ */
/* GENERAL FOCUS */
input.text:focus, textarea:focus {
	border: 1px solid #FFF;
	background-image: none;
}

/* ------------------------------------ */
/* BUTTONS */
.submit,
.login_submit,
.fp_submit {
	display: block;
	width: 40%;
	height: 38px;
	line-height: 38px;
	overflow: hidden;
	font-size: 1px;
	text-indent: 3000px;
	background: transparent url(../img/button_submit.gif) center top no-repeat;
	cursor: pointer;
	border: none;
}
.submit:hover,
.login_submit:hover, .login_submit:focus,
.fp_submit:hover, .fp_submit:focus 
.share:hover,
.email_a_friend:hover{
	outline: none;
	text-decoration: none;
	background-position: center -38px; 
}

.submit,
.login_submit,
.fp_submit {
	display: block;
	width: 100%;
	height: 38px;
	line-height: 38px;
	overflow: hidden;
	font-size: 1px;
	text-indent: 3000px;
	background: transparent url(../img/button_submit.gif) center top no-repeat;
	cursor: pointer;
	border: none;
}


.email_a_friend {
	display: inline-block;
	padding:0;
	margin:0;
	width: 128px;
	text-align:left;
	height: 38px;
	line-height: 38px;
	overflow: hidden;
	font-size: 1px;
	text-indent: 3000px;
	background: transparent url(../img/button_email.gif) center top no-repeat;
	cursor: pointer;
	border: none;
}

.share {
	display: inline-block;
	width: 100px;
	height: 38px;
	line-height: 38px;
	overflow: hidden;
	font-size: 1px;
	text-indent: 3000px;
	background: transparent url(../img/button_share.gif) center top no-repeat;
	cursor: pointer;
	border: none;
}

.login_submit {
	background: transparent url(../img/button_login.gif) center top no-repeat;
}


/*
------------------------------------------------------------------------------------------------------------------------
FOOTER
------------------------------------------------------------------------------------------------------------------------
*/
#footer {
	position: relative;
	clear: both;
	text-align: center;
	font-size: 0.833em;			/* 12x0.714=10px */
	width: 100%;
	height: 2px;
	/*background: transparent url(../img/footer.gif) center top no-repeat;*/
}


/* 
========================================================================================================================
POPUP WINDOW - TERMS & CONDITIONS
========================================================================================================================
*/
body#terms {
}
body#terms #container {
	width: 90%;
}
body#terms #content {
	background-image: none;
	background-color: #FFFFFF;
	border: 3px solid #e3e9ef;
	padding: 10px;
	width: auto;
}
body#terms #footer {
	background-image: none;
	padding: 10px;
}

.instruction {
	margin-left: 125px;
	color:#FFF;
	display: inline-block;
}


ul.registration_reasons {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.registration_reasons li {
	margin: 0;
	padding: 5px 0px;
	padding-left:10px;
	width: 100%;
	overflow: hidden;
	background: transparent url(../img/bullet_arrow_grey.gif) 0 0.7em no-repeat;
		
}
