/*
	Wuit.com
	Copyright (C) Fred Wu
*/

/*------------------------------------------------------------
	Structure
------------------------------------------------------------*/

* {
	padding: 0;
	margin: 0 auto;
}

html, body {
	height: 100%;
	overflow: hidden;
}

body {
	font-family: Tahoma, 'Lucida Grande', Arial, Helvetica, sans-serif;
	font-size: 14px;
	background: #f8f7d9 url("../images/bg-repeat.jpg") top repeat-x;
}

#wrapper {
	position: relative;
	width: 1000px;
	height: 100%;
	background: url(../images/bg-master.jpg) top no-repeat;
}

#content {
	position: relative;
	float: right;
	top: 200px;
	width: 700px;
}

	#container {
		margin-top: 50px;
	}

/*------------------------------------------------------------
	Elements
------------------------------------------------------------*/

a { text-decoration: none; outline: none; }
a:hover { text-decoration: underline; }
div, p { color: #352e2c; }
sup { font-size: 8px; }
div.clear { clear: both; }

#top-bar {
	height: 10px;
	background: #362f2d;
}

#top-button {
	position: absolute;
	right: 80px;
	width: 120px;
	height: 22px;
	text-align: center;
	background: url(../images/elm-top_button.png) bottom;
}

	#top-button a {
		font-size: 11px;
		color: #f7f6d9;
	}

#content h1 {
	position: absolute;
	top: -15px;
	left: -200px;
	
	text-indent: -9999px;
	width: 162px;
	height: 51px;
	background: url(../images/logo.png);
}

#content h2 {
	position: absolute;
	
	text-indent: -9999px;
	width: 613px;
	height: 28px;
	background: url(../images/txt-slogan.png);
}

#content p {
	margin: 10px 0;
}

#footer {
	position: absolute;
	bottom: 20px;
	width: 100%;
	text-align: center;
	font-size: 11px;
	color: #aeac60;
}

/*------------------------------------------------------------
	Form
------------------------------------------------------------*/

form label {
	display: none;
}

input#user_email {
	float: left;
	border: none;
	width: 204px;
	height: 22px;
	padding: 6px 10px;
	background: url(../images/frm-input.png);
	font-size: 18px;
	color: #d6d47f;
/*	color: #8c8a43;*/
}

a#btn-notify {
	float: left;
	display: block;
	margin: 0 0 0 10px;
	width: 104px;
	height: 27px;
	padding-top: 7px;
	text-align: center;
	background: url(../images/btn-notify.png);
	color: #f7f6d9;
}

a#btn-notify:hover {
	text-decoration: none;
	background-position: bottom;
}

div#notify-me {
	margin-top: 25px;
}

	.notify-msg {
		position: absolute;
		display: none;
		
		height: 22px;
		padding: 2px 0 0 30px;
		margin-top: 15px;
	}

	#notify-success { background: url(../images/ico-check.png) no-repeat; }
	#notify-warning { background: url(../images/ico-notice.png) no-repeat; }
	#notify-failed,
	#notify-error { background: url(../images/ico-cross.png) no-repeat; }

#footer a {
	color: #8c8a43;
}

