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

body, ul, li, dl, dt, dd, button, input, select, textarea {
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-size: 100%;
}

html, input, select, textarea {
	font-family: "Liberation Sans", Arial, Helvetica, sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	color: #959595;
}

a,
a:active,
a:hover {
	outline: 0;
	color: #85B4DB;
}

img {
	border: 0;
}

h1 {
	font-size: 2em;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Droid Sans', sans-serif;
	color: #059CD5;
	margin-top: 0;
}

p.lead {
	font-size: 1.35em;
}

dt {
	font-weight: bold;
}
ul {
	list-style: none;
}

/* Form */
form div {
	margin-bottom: 10px;
}

label {
	padding: 3px;
	font-size: normal;
	line-height: normal;
}

input, textarea, select {
	padding: 5px;
}

label {
	color: #555;
	padding-left: 0;
	display: block;
}

.error {
	color: red;
	line-height: normal;
	padding: 0;
}
.success {
	background: green;
	color: #fff;
	font-size: 1.3em;
	text-align: center;
	padding: 10px;
	border: 1px solid #ddd;
	margin-bottom: 20px;
}

input, textarea, select {
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;

	border: 1px solid #ccc;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
	-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
	-o-transition: border linear 0.2s, box-shadow linear 0.2s;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

footer form label {
	float: left;
	width: 70px;
	text-align: left;
	padding: 5px;
	color: #fff;
}

footer form input {
	margin-left: 8px;
	width: 200px;
}

button {
	display: inline-block;
	padding: 4px 14px;
	color: #333;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	cursor: pointer;
	background-color: whiteSmoke;
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#E6E6E6));
	background-image: -webkit-linear-gradient(top, white, #E6E6E6);
	background-image: -o-linear-gradient(top, white, #E6E6E6);
	background-image: linear-gradient(to bottom, white, #E6E6E6);
	background-image: -moz-linear-gradient(top, white, #E6E6E6);
	background-repeat: repeat-x;
	filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
	filter: progid:dximagetransform.microsoft.gradient(enabled=false);

	border: 1px solid #BBB;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	border-color: #E6E6E6 #E6E6E6 #BFBFBF;
	border-bottom-color: #A2A2A2;
	-webkit-border-radius: 4px;
	border-radius: 4px;

	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

button:hover {
	color: #333333;
	text-decoration: none;
	background-color: #e6e6e6;
	*background-color: #d9d9d9;
	background-position: 0 -15px;
	-webkit-transition: background-position 0.1s linear;
	-moz-transition: background-position 0.1s linear;
	-o-transition: background-position 0.1s linear;
	transition: background-position 0.1s linear;
}

.btn-group {
	text-align: right;
}