/* 
Credits: Bit Repository
CSS Library: http://www.bitrepositiry.com/
*/

#fields {
	width: 560px;
	padding: 0 0 20px 0; margin: 0;
	float: right;
	}

.notification_error {
	width: 80%; height: auto;
	padding: 10px; margin: 0 0 10px 0;
	background-color: #EFADAD;
	-moz-border-radius: 6px;
    -webkit-border-radius:6px;
	color: #A80000;
	text-align: left;
	}

.notification_ok {
	width: 80%; height: auto;
	padding: 10px; margin: 0 0 10px 0;
	background-color: #D9ECCF;
	-moz-border-radius: 6px;
    -webkit-border-radius:6px;
	color: #336600;
	text-align: left;
	}

/* Label */

label  { 
	width: 580px;
	padding: 0; margin: 4px 0 10px 0;
	float: left;
	display: block;
	color: #333;
	font-weight: bold;
	}

/* Input, Textarea */

input {
	width: 240px;
	padding: 4px; margin: 0 0 10px 0;
	float: left;
	border: 1px solid #ccc;
	-moz-border-radius: 6px;
    -webkit-border-radius:6px;
	font-family: helvetica, arial, sans-serif;
	font-size: 13px; 
	color: #333333; 
	}
	
input:focus {
	background-color: #EEEEEE;
	border: 1px solid #D7D7D7;	
	}
	
textarea{
	width: 300px;
	padding: 4px; margin: 0 0 10px 0;
	float: left;
	border: 1px solid #ccc;
	-moz-border-radius: 6px;
    -webkit-border-radius:6px;
	font-family: helvetica, arial, sans-serif;
	font-size: 13px;
	color: #333333; 
	}
	
textarea:focus {
	background-color: #EEEEEE;
	border: 1px solid #D7D7D7;
	}
	
/* Submit */
	
input.button {
	width: 112px; height: 26px;
	padding: 0; margin: 10px 0 0 0;
	display: block;
	border: none;
	background-color: transparent;
	cursor: pointer;
	text-indent: -9999px;
	overflow: hidden;
	background: url(send.gif) center bottom no-repeat;
    clear: both;
	font-size: 0px;
	line-height: 0px;
	}
	
input.button:hover{
	background: url(send.gif) right top no-repeat;
	}
