@font-face
{
	font-family:cooper;
	src:url('../fonts/cooper.otf');
}

@font-face
{
	font-family:cooper-medium;
	src:url('../fonts/cooper-medium.otf');
}

@font-face
{
	font-family:opensans;
	src:url('../fonts/opensans.ttf');
}

html
{
	position:relative;
	height:100%;
	width:100%;
	background:url('../images/login_background.jpg');
}

/*
--------------------------------------
CONTENT STYLE
--------------------------------------
*/

#content
{
	position:absolute;
	top:5%;
	left:5%;
	right:0;
	width:50%;
	margin:5%;
}

#content h1
{
	margin:0;
	margin-left:6%;
	margin-top:25px;
	font-family:cooper;
	letter-spacing:1;
	color:white;
	font-size:45px;
}

#content hr
{
	margin-left:6%;
	width:30%;
	border:1px solid tomato;
}

#content table
{
	margin-left:5.7%;
	border-radius:1px;
}

#content tr td
{
	font-family:cooper-medium;
	font-size:11px;
	width:25%;
	vertical-align:text-top;
}

#content p
{
	line-height:20px;
	font-size:12px;
}

#content span
{
	font-size:13px;
	color:white;
}

#content input[type="text"], #content input[type="password"]
{
	border:1px solid black;
	padding-top:20px;
	padding-bottom:10px;
	border-radius:1px;
	width:98%;
	font-family:cooper-medium;
	font-size:12px;
	outline:none;
	border-top-width:0;
	border-left-width:0;
	border-right-width:0;
	border-bottom-color:white;
	background:transparent;
	color:white;
}

#content input[type="submit"]
{
	border:1px solid green;
	padding:10px 8px;
	border-radius:1px;
	font-family:cooper-medium;
	font-size:11px;
	outline:none;
	background:green;
	color:white;
	cursor:pointer;
	width:30%;
}

#content select
{
	background:transparent;
	color:white;
	padding:10px 0;
	width:98%;
	outline:none;
	border-top-width:0;
	border-left-width:0;
	border-right-width:0;
	border-bottom-color:white;
	cursor:pointer;
	font-family:cooper-medium;
	color:white;
	font-size:12px;
}

#content select option
{
	color:black;
}

.msg_default
{
	background:#cccccc;
	width:94%;
	padding:8px;
	font-family:cooper-medium;
	border-radius:1px;
	opacity:0.7;
}

.msg_failed
{
	background:tomato;
	width:94%;
	padding:8px;
	font-family:cooper-medium;
	border-radius:1px;
	opacity:0.7;
	color:white;
}