@charset "UTF-8";
/* CSS Document */
 
.textfield  {
    border-width: 1px;
    border-style: solid;
    border-color: #aeaeae;
    padding: 5px;
    margin-bottom: 10px;
    background-color: white;
    font-size: 11px;
    line-height: 12px;
    color: #aeaeae;
    float: left;
    clear: right;
}
.textfield:hover    {
    border-color: #000000;
    border-width: 1px;
	background-color:white;
}
.textfield:focus    {
	border-color: #000000;
	border-width: 1px;
	background-color:white;
}
 fieldset    {
    border-style: solid;
    border-width: 1px;
    border-color: #aeaeae;
    background-color: white;
}
fieldset:hover    {
    border-color: #000000;
    border-width: 1px;
	background-color:white;
}
.submit-button{
	color: #ffffff;
	font-weight: bold;
	font-size: 14px;
	background-color: #aeaeae;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	border: none;
	cursor: pointer;
	float: right;
	height: 36px;
}
.submit-button:hover{
	background-color: black;
}