/* -------------------------------------------------- */
/* CSS STYLES
/* -------------------------------------------------- */

/* -------------------------------------------------- */
/* GENERAL
/* -------------------------------------------------- */

* {
	outline: none;
	font-smooth: always;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    -ms-font-smoothing: antialiased;
    text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
	text-shadow: 0px 0px 1px rgba(0, 0, 0, 0);
}

.clear {
	clear: both !important;
	margin: 0px !important;
	float: none !important;
	height: 0px !important;
	width: auto !important;
	font-size: 0px !important;
	line-height: 0px !important;
	overflow: hidden !important;
}





/* -------------------------------------------------- */
/* STRUCTURE
/* -------------------------------------------------- */

/* ---------- HTML & BODY ---------- */

html,
body {
	min-height: 100%;
	height: auto !important;
	height: 100%;
}

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

body {
    margin: 0px;
    padding: 0px;
 	min-height: 100%;
	height: auto !important;
	height: 100%;
    font-family: Arial, Tahoma, Helvetica;
	font-size: 14px;
	line-height: 18px;
    color: #fff;
	background: url('../images/bg_body.png') no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	text-align: center;
}



/* ---------- WRAPPER & CONTAINER ---------- */

.wrapper {
	padding: 0px 10px;
	text-align: center;
}

.wrapper:before,
.wrapper:after {
	content: ' ';
	display: block;
	clear: both;
}

.container {
	margin: 0px auto;
}

#content {
	margin: 50px 0px 20px 0px;
}

@media (min-height: 500px) {
	
	#content {
		margin: 100px 0px 20px 0px;
	}
	
}





/* -------------------------------------------------- */
/* FONTS
/* -------------------------------------------------- */

h1,
h2,
h3 {
    margin: 10px 0px;
    padding: 0px;
	font-weight: normal;
}

h1 {
    font-size: 36px;
    line-height: 44px;
}

h2 {
    font-size: 28px;
    line-height: 36px;
}

h3 {
    font-size: 24px;
    line-height: 32px;
}

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

a {
    color: #aaa;
    text-decoration: none;
	-webkit-transition: all 0.5s ease-out;  
	-moz-transition: all 0.5s ease-out;  
	-o-transition: all 0.5s ease-out;  
	transition: color 0.5s ease-out;  
}

a:hover {
    color: #000;
}





/* -------------------------------------------------- */
/* SPECIAL FONTS
/* -------------------------------------------------- */

i,
em {
}

b,
strong {
}

b i,
b em,
strong i,
strong em,
i b,
i strong,
em b,
em strong {
}

.error {
    color: #ff0000;
}

.small {
}

.large {
}

.enhanced {
}

.uppercase {
	text-transform: uppercase;
}





/* -------------------------------------------------- */
/* LISTS
/* -------------------------------------------------- */

ul,
ol {
	margin: 10px 0px;
	padding: 0px;
}

ul {
	list-style: disc;
}

ol {
	list-style: none;
	counter-reset: step-counter;
}

li {
	margin: 0px 0px 10px 10px;
	padding: 0px;
	line-height: normal;
}

ol li {
	position: relative;
	counter-increment: step-counter;
	margin: 0px 0px 10px 0px;
	padding: 0px 0px 0px 40px;
	line-height: 30px;
}

ol li:before {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 30px;
	height: 30px;
	font-size: 16px;
	line-height: 30px;
	content: counter(step-counter) '';
	color: #fff;
	background: #2fa4e1;
	text-align: center;
	vertical-align: top;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-khtml-border-radius: 50%;
	border-radius: 50%;
}

dl,
dt {
	margin: 0px;
	padding: 0px;
}

dd {
	margin: 0px;
	padding: 0px 0px 0px 10px;
}





/* -------------------------------------------------- */
/* TABLES
/* -------------------------------------------------- */

table {
    border: none;
}





/* -------------------------------------------------- */
/* FORMS
/* -------------------------------------------------- */

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

fieldset {
	border: none;
	border-top: 1px dotted #000;
	margin: 25px 0px 0px 0px;
	padding: 25px 0px 0px 0px;
}

legend {
}

label {
	display: block;
	margin: 0px 0px 2px 0px;
}

input,
textarea,
select,
button {
	cursor: pointer;
	border: none;
	margin: 0px;
	padding: 0px 10px;
	width: 100%;
    font-family: Arial, Tahoma, Helvetica;
	font-size: 14px;
	vertical-align: top;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-box-sizing: border-box !important;
	-moz-box-sizing: border-box !important;
	-o-box-sizing: border-box!important;
	box-sizing:  border-box !important;
}

input,
select {
	height: 40px;
}

input,
textarea,
select {
    color: #000;
    background: #fff;
}

textarea {
	padding: 10px;
	height: 180px;
	overflow: auto;
	resize: none;
}

select:disabled {
	color: #aaa;
}

select option {
	padding: 5px 10px;
	width: auto;
}

input:hover,
textarea:hover {
}

input[type=checkbox],
input.form-checkbox {
	padding: 0px;
    width: 16px;
    height: 16px;
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: checkbox;
}

input[type=radio],
input.form-radio {
	padding: 0px;
    width: 16px !important;
    height: 16px !important;
	-webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
}





/* -------------------------------------------------- */
/* IMAGES
/* -------------------------------------------------- */

img {
	border: none;
	max-width: 100%;
	width: auto !important;
	width: 100%;
	height: auto !important;
	vertical-align: top;
}





/* -------------------------------------------------- */
/* SPECIAL BLOCKS
/* -------------------------------------------------- */

.coming {
}

.logo {
	margin: 75px 0px 60px 0px;
}

.address {
}

.fb {
	margin: 10px 0px 0px 0px;
}