@charset "utf-8";

/* Reset */

body, div, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, img, form, fieldset, input, textarea, blockquote {
	margin: 0; padding: 0; border: 0;
}

/* HTML5 for old browsers */

header, section, footer, aside, nav, article, figure {
	display: block;
} 

/* Body */

html {
	overflow: -moz-scrollbars-vertical; overflow-y: scroll;
}
body {
	background: #bbb url("../images/bg.png") center center repeat-y;
}

/* Typography */

body, p, td, li {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 20px;
	color: #666;
}

/* Headings */

h1 {font-size: 22px;}
h2 {font-size: 20px;}
h3 {font-size: 18px;}
h1, h2, h3 {
	margin-bottom: 0;
	font-weight: normal;
	line-height: normal;
	color: #0c0;
	text-transform: uppercase;
	letter-spacing: 4px;
}

/* Anchors */

a img {
	border: 0px;
	text-decoration: none;
}
a:link, a:visited {
	color: #39c;
	text-decoration: none;
}
a:hover, a:active {
	color: #069;
	text-decoration: underline;
}

/* Paragraphs */

p {margin-bottom: 10px;}
p:last-child {margin-bottom: 0;}

strong, b {font-weight: bold;}
em, i {font-style: italic;}

::-moz-selection {background: #09c; color: #fff;}
::selection {background: #09c; color: #fff;}

/* Lists */

ul {
	list-style: outside disc;
	margin: 0 0 10px 20px;
}
ol {
	list-style: outside decimal;
	margin: 0 0 10px 20px;
}

dl {margin: 0 0 10px 0;}
dt {font-weight: bold;}
dd {margin: 0 0 0 20px;}

/* Quotes */

blockquote {font-style: italic;}
cite {}
q {}

/* Tables */

table {border-spacing: 0;}
thead th {}
thead td {}
tbody th {}
tbody td {}
tfoot th {}
tfoot td {}

/* Forms */

fieldset {}
legend {}

button,
input,
select,
textarea {
	margin: 0;
	vertical-align: middle;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
}
button,
input {
	*overflow: visible;
	line-height: normal;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid #09c;
	padding: 4px;
	background-color: #0cf;
	color: #fff;
}
label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
	cursor: pointer;
}

input[type="text"],
input[type="password"] {
	border: 1px solid #999;
	padding: 4px;
	background-color: #fff;
	color: #000;
}

input[type="radio"],
input[type="checkbox"] {
	margin: 0 4px 0 0;
}
label {
	margin: 0 4px 0 0;
}

select {}

textarea {
	overflow: auto;
	vertical-align: top;
}

input[type="radio"] {vertical-align:baseline;}
input[type="checkbox"] {vertical-align: baseline;}

.inputErr,
input[type="text"].inputErr,
input[type="password"].inputErr,
input[type="checkbox"].inputErr,
input[type="radio"].inputErr {
	border: dashed 1px #f00;
}
.requiredField {
	display: none;
}
input[type="button"].submitLoader,
input[type="button"].submitLoader:hover,
input[type="submit"].submitLoader,
input[type="submit"].submitLoader:hover,
a.button.submitLoader,
a.button.submitLoader:hover {
	color: rgba(0,0,0,0);
	background: url('../images/submitLoader.gif') no-repeat center;
}

/* Layout */

.center {
	position: relative;
	margin: 0 auto;
	width: 960px;
	clear: both;
}

header,
footer {
	float: left;
	margin: 20px 0 20px 0;
	border-top: 10px solid #393;
	border-bottom: 10px solid #393;
	padding: 40px 0 40px 0;
	width: 100%;
	text-align: center;
	background: #ddd url("../images/bg-hf.png") center center repeat-y;
	-moz-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.25);
	-webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.25);
}

#container {
	float: left;
	width: 100%;
}
#container .center .box {
	float: left;
	margin: 20px 0 20px 0;
	width: 960px;
	-moz-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.25);
	-webkit-box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.25);
}
.box .title {
	float: left;
	padding: 12px 0 12px 0;
	width: 100%;
	background-color: #393;
	text-align: center;
}
.box .title h1 {
	font-size: 22px;
	line-height: 27px;
	color: #fff;
	margin-bottom: 0;
}
.box .content {
	float: left;
	padding: 20px;
	width: 920px;
	background-color: #fff;
	text-align: center;
}

footer .left,
footer .right {
	width: 480px;
}
footer .left {
	float: left;
	text-align: left;
}
footer .right {
	float: right;
	text-align: right;
}



