.box a{
color: rgb(0, 114, 191); text-decoration: none;	
}

.clear{
	clear:both;
	float:none;
}

*:focus{
	outline:none; /* Prevents blue border in Webkit */
}

.box form {
	margin: 20px auto;
}

.box p {
	line-height: 1.6;
}
.box{
	margin:10px auto;
	width:585px;
	padding:10px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	background:#fff;
    vertical-align: top;
}
.box label{
	float:left;
	width:95px;
	color:#666666;
	text-align:right;
	padding:10px 10px 0 0;
	font:16px 'Lucida Grande',sans-serif;
}
.box input, .box textarea , .box select{
	background-color:#fff;
	border:1px solid #ccc;
	font-size:18px;
	margin:0;
	padding:8px;
	width:200px;
	display:block;
	
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	float:left;
}

.box textarea {
		min-height:200px;
}
.box select {
		width:220px;
}

.box input:hover, .box textarea:hover {
	border-color:inherit !important;
	background-color:#EfEfEf;
	-webkit-border-radius:5px 0 0 5px;
	-moz-border-radius:5px 0 0 5px;
	border-radius:5px 0 0 5px;

}

/* The interesting bit */

.box input:not(:focus),.box textarea:not(:focus) {
	opacity:0.6;
}

.box  input:required,.box  textarea:required {
}

.box  input:valid,.box  textarea:valid {
	opacity:0.8;
}		

.box input:focus:invalid,.box textarea:focus:invalid {
	border:1px solid red;
	background-color:#FFEFF0;
}

.box input[type=submit] {
	background:none;
	font-size:15px;
	opacity:1;
	padding:5px;
	width:150px;
	-moz-border-radius:5px;
	-webkit--border-radius:5px;
	border-radius:5px;
	cursor:pointer;
	margin-bottom:-10px;
	margin-left:103px;
	margin-top:10px;
	text-shadow:1px 1px 0 #FFFFFF;
	border-color:#DDDDDD #DDDDDD #CCCCCC;
	color: #333;
}
.box .line{
	-webkit-transition: all 1s linear;
	margin-bottom:16px;
	margin-top:8px;
}
.box .line:hover .message{
	opacity:1;
	display:block;
}
.box .message{	
	width:200px;
	float:left;
	opacity:0;
	-moz-border-radius:0 10px 10px 0;
	-webkit-border-radius:0 10px 10px 0;
	border-color:#DBDBDB;
	border-style:solid;
	border-width:1px 1px 1px 2px;
	color:#666666;
	display:none;
	font-size:12px;
	line-height:1.45em;
	padding:0.85em 10px 0.85em 30px;
	text-transform:lowercase;
}

