@charset "utf-8";
/* CSS Document */

 a:link/*unvisited link*/ {
	text-decoration: none;
	font-size: 16px;
	font-family: Verdana;
	font-variant: small-caps;
	color: #000;
}
a:visited /* visited link*/{
	text-decoration: none;
	font-size: 16px;
	font-family: Verdana;
	font-variant: small-caps;
	color: #000;
}
a:hover/* mouse over*/ {
	color: #FF3399;
	text-decoration: none;
	font-variant: small-caps;
	font-size: 16px;
	font-family: Verdana;
}
a:active /*selected link*/ {
	text-decoration: none;
	font-family: Verdana;
	font-variant: small-caps;
}

.header {
	font-family: Verdana;
	font-size: 24px;
	background-color: #FF3399;
	color: #FFF;
	padding-left: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	}

.h1 {
	font-family: Arial;
	font-size: 24px;
	background-color: #FF3399;
	color: #FFF;
	padding-left: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	}

.content {
	font-family:Verdana;
	line-height: 1.5;
	font-size:14px;
	padding-top:8px;
	padding-bottom:10px;
	padding-left: 15px;
	padding-right: 15px;
}

.alert {
	color:#FF0000;
	font-family:Verdana;
	font-size:12px;

}

input.textbox {
	font-family:Verdana;
	width: 100%;
	height: 28px;
	padding-left: 2px;
	border-width: 1px;
	border-bottom-color: #666666;
	border-left-color: #666666;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-style: solid;
	outline: none;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
	border-radius: 5px;

}

input.textbox:Focus {
	border-color:#FF3399;
}

#textarea {
	font-family:Verdana;
	width: 100%;
	height:200;
	resize: none;
	padding-left: 2px;
	border-width: 1px;
	border-bottom-color: #666666;
	border-left-color: #666666;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-style: solid;
	outline: none;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
	border-radius: 5px;
}

#textarea:Focus {
	border-color:#FF3399;
}


.buttons {
	background-color: #FF3399;
	color:white;
	border: none;
	border-radius: 10px;
	width: 90px;
	height: 25px;
}

.buttons:hover {
	border:solid;
	border-width:thin;
}

.buttons:active {
	border-style:inset;
}

