html{
	height:100%;
}

body {
	margin: 0 auto;
	font-size:13px;
	margin-bottom: 50px;
	max-width:1600px;
	min-width: 1000px;
	display:block;
	color: #fff;
	font-weight:400;
	font-family: 'Open Sans', sans-serif;
	background: #34495e; /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover,  #7db9e8 0%, #1e5799 99%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#7db9e8), color-stop(99%,#1e5799)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #7db9e8 0%,#1e5799 99%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #7db9e8 0%,#1e5799 99%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #7db9e8 0%,#1e5799 99%); /* IE10+ */
	background: radial-gradient(ellipse at center,  #7db9e8 0%,#1e5799 99%); /* W3C */
	/*background-image: url("../images/bg.jpg");
	background-attachment: fixed;*/
}

p {
	
}

h1,h2,h3,h4,h5 {
	font-weight: 400;	
}

a {
	color: #fff;
	text-decoration:none;
	-webkit-transition:color 0.25s linear;   
	-moz-transition:color 0.25s linear;  
	-o-transition:color 0.25s linear;  
	transition:color 0.25s linear;  
}

a:focus, a:hover {
	color: #5ac8fb;
}

input {
    border: none;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    border-radius: 5px;
    height: 20px;
    padding: 5px;
	-webkit-transition:box-shadow 0.25s linear;   
	-moz-transition:box-shadow 0.25s linear;  
	-o-transition:box-shadow 0.25s linear;  
	transition:box-shadow 0.25s linear;  
	color: #2980b9;
}

textarea {
    border: none;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    border-radius: 5px;
    padding: 5px;
	-webkit-transition:box-shadow 0.25s linear;   
	-moz-transition:box-shadow 0.25s linear;  
	-o-transition:box-shadow 0.25s linear;  
	transition:box-shadow 0.25s linear;  
	color: #2980b9;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	font-weight: 400;	
}


select {
	color: #2980b9;
}

input:focus {
	box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

img {
	border: none;
}