
/* FEEDBACK FORM*/
.feedbackform {
	width: 95%;
	margin: 0;
	padding: 5px;
	border: 1px solid black;
}

.feedbackform p {
	margin: 0;
	padding: 4px 0;
}

.feedbackform input {
	/**float: left;**/
	width: 78%;
	text-align: left;
	margin: 0;
	padding-bottom: 0.4em;
	display: block;
	-moz-box-sizing:border-box;
        -webkit-box-sizing:border-box;
        box-sizing:border-box;
   height: 2em;
}

.feedbackform textarea {
	font-size: 1em;
	width: 100%;
}

.feedbackform label {
	width: 20%;
	float: left;
	text-align: left;
	margin-right: 0.5em;
	padding-bottom: 0.4em;
	display: block;
	-moz-box-sizing:border-box;
        -webkit-box-sizing:border-box;
        box-sizing:border-box;
   height: 2em;
}

.feedbackform input[type="radio"] {
	margin: 0;
	padding: 0;
	display:inline-block;
   width: 25px;
   height: 20px;
}

.feedbackform span {
	margin: 0;
	padding: 0;
	height: 25px;

}

.feedbackform input[type="submit"] {
	font-size: 1em;
	width: 250px;
	color: #ffffff;
	background-color: #00a2ff;
	margin: 0 auto;
	padding: 3px 0;
	text-align: center;
	cursor: pointer;
}

/* RATINGS*/
#hide {
    display:none;
}
.rating {
	position: relative;
}

.rating input {
    position:absolute;
    filter:alpha(opacity=0);
    -moz-opacity:0;
    -khtml-opacity:0;
    opacity:0;
    cursor:pointer;
    width:17px;
}
 
.rating span {
    width:24px;
    height:16px;
    line-height:16px;
    padding:1px 22px 1px 0; /* 1px FireFox fix */
    background:url('../images/stars.png') no-repeat -22px 0;
}
 
/* Change span immediately following the checked radio */
 
.rating input:checked + span {
    background-position:-22px 0;
}
 
/* Reset all remaining stars back to default background.
   This supersedes the above due to its ordering. */
 
.rating input:checked + span ~ span {
    background-position:0 0;
}

input:invalid {
	border: 2px solid red;
  }
  
input:valid {
	border: 2px solid green;
  }