@charset "utf-8";
/* CSS Document */

.center-div
{
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 500px;
	height: 500px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-weight: 200;
	color: #666;
}
input[type=text],input[type=password]{
  width: 100%;
  padding: 4px 4px;
  margin: 4px 0;
  box-sizing: border-box;
  border: 1px solid #666;
  border-radius: 2px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 14px;
  font-weight: 200;
  color: #666;
}
input[type=text]:focus ,input[type=password]:focus {
  border: 1px solid #FFBE00;
}
a:link,a:active,a:visited{
	color: #666;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;  
}
.button {
	background-color: #E8E8E8;
	color: #333;
	padding: 5px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	border: 1px solid #666;
	-webkit-transition-duration: 0.4s; /* Safari */
	transition-duration: 0.4s;
	cursor: pointer;
}
.button:hover {
  background-color: #FFBE00; 
 }
.error_fill {
	border-top-width: 1px;
	border-right-width: 5px;
	border-bottom-width: 1px;
	border-left-width: 5px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #C00;
	border-right-color: #C00;
	border-bottom-color: #C00;
	border-left-color: #C00;
}
#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
	height:50px;
}
#header {
	position: fixed;
	top: 0;
	text-align: center;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #FFF;
	background-color: #69C;
	width: 100%;
}
