@charset "utf-8";
/* CSS Document */
#form{
	padding:10px;
	text-align:center;
	background-color:#FFF;
	margin:100px auto;
	width:350px;
	border-radius:10px;
	-webkit-box-shadow:2px 0px 6px #555; /* Safari & Chrome */
  	-moz-box-shadow:2px 0px 6px #555;   /* Firefox */
  	box-shadow:2px 0px 6px #555;
}
#form img{
	width:300px;
}
form{
	padding:10px;
	border-top: double 5px #DDD;
	margin-top:20px;
}
form li{
	list-style:none;
	padding:5px;
	overflow: auto;
}
form li label{
	color:#888;
	font-weight:bold;
	float:left;
	width:90px;
	margin-right: 10px;
	padding-top:5px;
}
form li span{
	float: left;
	padding-top:5px;
}
form li input[type=text], form li input[type=password]{
	width:190px;
	float: right;
}
form li:not(:last-child){
	text-align:left;
}
form li:last-child{
	border-top: double 5px #DDD;
	padding-top:10px;
	margin-top:10px;
	margin-left:-10px;
	margin-right:-10px;
}
input[type=submit]{
	padding:2px 10px 2px 10px;
	font-size:16px;
	color:#FFF;
	font-weight:bold;
	border-radius:5px;
	font-family:"Times New Roman", Times, serif;
	list-style:none;
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0.29, #888),
		color-stop(0.78, #777),
		color-stop(1, #666)
	);
	background-image: -o-linear-gradient(bottom, #888 29%, #777 78%, #666 100%);
	background-image: -moz-linear-gradient(bottom, #888 29%, #777 78%, #666 100%);
	background-image: -webkit-linear-gradient(bottom, #888 29%, #777 78%, #666 100%);
	background-image: -ms-linear-gradient(bottom, #888 29%, #777 78%, #666 100%);
	background-image: linear-gradient(to bottom, #888 29%, #777 78%, #666 100%);
	-webkit-box-shadow:2px 2px 2px #555; /* Safari & Chrome */
  	-moz-box-shadow:2px 2px 2px #555;   /* Firefox */
  	box-shadow:2px 2px 2px #555;
	cursor:pointer;
}
input[type=submit]:hover{
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0.29, #AAA),
		color-stop(0.78, #999),
		color-stop(1, #888)
	);
	background-image: -o-linear-gradient(bottom, #AAA 29%, #999 78%, #888 100%);
	background-image: -moz-linear-gradient(bottom, #AAA 29%, #999 78%, #888 100%);
	background-image: -webkit-linear-gradient(bottom, #AAA 29%, #999 78%, #888 100%);
	background-image: -ms-linear-gradient(bottom, #AAA 29%, #999 78%, #888 100%);
	background-image: linear-gradient(to bottom, #AAA 29%, #999 78%, #888 100%);
}
#salah{
	padding:5px;
	background-color:#FFC1C1;
	color:#666;
	text-align:center;
	margin-top:5px;
	display:none;
}