body{
	font-family: "proxima-nova-1", "proxima-nova-2", "Helvetica", sans-serif;
	color: #222;
}

i{
	font-style: normal;
}

textarea{
	width: 80%;
	min-height: 50px;
}

input{
	padding: 4px;
	font-size: 12px;
	line-height: 18px;
	color: #808080;
	border: 1px solid #ccc;
	-webkit-border-radius: 2px;
	-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -ms-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;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

input:hover{
	outline: 0;
	border-color: rgba(82, 168, 236, 0.8);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  
 
}

li {
	list-style-type: none;	
}

label{
	display: inline-block;
	margin: 0 20px 10px;
	font-size: 14px;
	min-height: 50px;
	width: 120px;
	border: 2px solid #eee;
	border-radius: 5px;
}

a{
	color: #b94a48;
	text-decoration: none;
	padding: 5px 10px;
	border-radius: 5px;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
	cursor: pointer;
}

a:hover{
	border-radius: 5px;
	background: #b94a48;
	color: #fff;
}

hr{
	margin: 0;
	border: 0;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #ffffff;
}

.pull-right{
	float: right;
}