﻿/* Used for the row at the top of the DIV to declare what type of system this is. */
.LoginHeader
{
	font-size: medium;
	font-weight: bold;
	padding-bottom: 5px;
	height: 14px;
}

.LoginSpacer
{
	background-color: Maroon;
	height: 5px;
}

/* Used as the DIV in which all other elements are centered vertically. */
/* The primary "trick" here is the 50% margin from the top.				*/
.Horizon
{
	color: white;
	background-color: white;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0px;
	width: 100%;
	height: 1px;
	overflow: visible;
	visibility: visible;
	display: block
}

/* This is used within the Horizon DIV to center the login box in the	*/
/* middle of the screen.  The only catch to this centering is that the	*/
/* box has to be a fixed width; not a problem for a login box but		*/
/* problematic for other entries which might want to use this method.	*/
.Content
{
	background-color: Maroon;
	margin-left: -150px;
	position: absolute;
	top: -65px;
	left: 50%;
	width: 300px;
	height: 130px;
	visibility: visible;
}

/* Used for the DIV that displays error messages when they occur.		*/
.Error
{
	color: Red;
	background-color: white;
	margin-left: -150px;
	top: 85px;
	position: absolute;
	left: 50%;
	width: 300px;
	height: 40px;
	visibility: visible;
	text-align: center;
	border: solid 1px red;
	padding: 5px;
}

/* Used for the DIVs that contain the text descriptions of the input	*/
/* areas.																*/
.LoginLabel
{
	float: left;
	clear: left;
	width: 40%;
	text-align: right;
	padding-right: 5px;
}

/* Used on the textboxes used to obtain the username and password.		*/
.LoginInput
{
	width: 100%;
}

/* Used for the lines that span the bottom of the control.				*/
.LoginFooter
{
	float: left;
	width: 100%;
	font-size: small;
	clear: left;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
}

/* This is the div that encapsulates the two LoginBoxRows which allow	*/
/* for the entry of a username and password.							*/
.LoginBox
{
	width: 50%;
	float: left;
	font-size: x-small;
}

a:visited
{
	color: White;
	text-decoration: underline;
}

a:hover
{
	color: Red;
	text-decoration: underline;
}

a
{
	color: White;
	text-decoration: underline;
}
