/*------------------------------
=LogIn
------------------------------*/

signin { 
	float: right;
	position: relative;
	top:		-3px;
	right:	-90px;
	width:	230px;
	height: 400px;
	color:	#ccc;
}
	signin h3{
		padding-left: 140px;
	}

	signin form {
	}
		signin form p {
			display: table-cell;
			padding-bottom: 0px;
			padding-left: 20px;
			margin-bottom:	0px;
		}
			signin form label {
				display: table-cell;
				width: 61px;
				padding-right: 20px;
				text-align: right;
				font-weight: bold;
				vertical-align: top;
			}
			signin form input[type="text"], form input[type="password"] {
				display: table-cell;
				width: 80px;
				height: 20px;
				border: 1px solid #aaa;
				margin-top:5px;
				padding-top:3px;
				padding-left:3px;
			}
			signin form input[type="submit"] {
				color: #555;
				/* Border-radius not implemented yet */
				-o-border-radius: 			8px;
				-icab-border-radius: 		8px;
				-khtml-border-radius: 	8px;
				-moz-border-radius: 		8px;
				-webkit-border-radius: 	8px;
				box-border-radius: 			8px;
				width: 100px;
				height: 20px;
				border: 1px solid #aaa;
				margin-top:18px;
			}
				signin form input[type="submit"]:hover{
				-o-box-shadow: 			1px 1px 10px #888;
				-icab-box-shadow: 	1px 1px 10px #888;
				-khtml-box-shadow: 	1px 1px 10px #888;
				-moz-box-shadow: 		1px 1px 10px #888;
				-webkit-box-shadow: 1px 1px 10px #888;
				box-shadow: 				1px 1px 10px #888;
				}

