/* FEEDBACK FORM */
.feedback{
	width:100%;
}

.feedback .alert{
	color:#F53C3C;
	margin-bottom:15px; 
	font-size: 12px;
 }
 
input[type="textarea"], input[type="text"], textarea{
	position:relative;
	display:block;
	margin:10px 0 20px;
	color:#FFFFFF;
	border:none;
	padding:5px 10px 5px 10px;
	background: none repeat scroll 0 0 #333333;
	border: 3px solid #777777;  
	border-radius:2px;
}

button, input.submit, input[type="submit"], input[type="reset"], input[type="button"]{
    border-radius: 3px;
	-moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);	
    cursor: pointer;
    font-size: 11px;
    padding: 10px 20px;
    position: relative;
    text-decoration: none !important;
    text-shadow: 0 1px rgba(0, 0, 0, 0.9);
    width: auto;
	height:auto;
	border:none;
	margin: 0;
}

.feedback .name{
	width:192px;
	}
	
label {
    font-weight: bold;
    margin-bottom:10px;
}

.required-text {
	color: #F53C3C;
}

.inputname, .inputemail {
	width:50%;
}

.inputmessage {
	width:80%;
}

.required {
    color: #F53C3C;
}

.feedback .email{
	border: 3px solid #777777;
	width:192px;
}
  
.feedback .message{
	height:100px;
	border: 3px solid #777777;
	width:100%;
}
  
.feedback .name:focus, .feedback .email:focus, .feedback .message:focus,  .feedback .name:hover, .feedback .email:hover, .feedback .message:hover {
	border: 3px solid #444444;
}

.feedback .submit-wrapper{
	position:relative;
	width:90px;
	cursor:pointer;
}

.feedback .submit-wrapper input{
	display:inline-block;
	top:0;
	width:90px;
	height:42px;
	font: 15px/42px trebuchet MS;
	color:#ffffff;
	background: url(../i/feedback-submit.png) left top no-repeat;
	margin:0 5px 0 0;
	padding:0 0 0 5px;
	cursor:pointer;
}

.feedback .submit-wrapper span{
	position:absolute;
	top:0;
	height:42px;
	width:5px;
	right:-5px;
	background: url(../i/feedback-submit.png) right top no-repeat;
}

#sidebar-footer .feedback{
	margin-top:20px;
}

#sidebar-footer .feedback .alert{
	color:#fff;
}