
html *{
	font: normal 16px comic Sans MS, Arial;
	color: white;
	*color: #555555;
	text-decoration: none;
}

body{
	margin: 0;
	text-align: center;
	/*
	background-image: -moz-linear-gradient(45deg, red, yellow, green, blue);
	background-image: -webkit-gradient(linear, left bottom, right top, from(red), to(blue), color-stop(.3, yellow), color-stop(.7, green));
	*/
	
	/*
	background-image: -moz-linear-gradient(45deg, #ffc800, #004080);
	background-image: -webkit-gradient(linear, left bottom, right top, from(#ffc800), to(#004080));
	*/
	
	background: url(../file/images/bg80.jpg) no-repeat;
	background-size: 100% 100%;
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
}

@media only screen and (orientation:portrait){
	body{
		-webkit-background-size: auto 100%;
	}
}

#copyright{
	position: absolute;
	bottom: 0px;
	/*height: 10px;*/
	left: 0px;
	font-size: 80%;
	color: gray;
	background: rgba(0,0,0, .5);
	*background: black;
	display: inline;
	padding: 1px 5px;
	-webkit-border-top-right-radius: 8px;
	-moz-border-radius-topright: 8px;
}

h1, .title{	
	text-shadow: 1px 1px 20px black;
}
h1{	
	font-size: 250%;
	color: white;
}
.title{	
	font-size: 220%;
}
.subtitle{	
	color: white;
}


#page{
	margin: 0px auto;
	width: 700px;
	height: 100%;
}

#content{
	padding-top: 50px;
}

label{
	display: block;
	margin-top: 10px;
}

.box{
	cursor: pointer;
	margin: 20px;
	border: solid black 1px;
	padding: 20px;	
	-moz-border-radius: 10px;
	-moz-box-shadow: 1px 1px 20px black;

	-webkit-border-radius: 10px;
	-webkit-box-shadow: 1px 1px 20px black;

	*background-color: #efefef;	/*#415F71;*/
	background-image:-moz-linear-gradient(-90deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
	background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.7)));
	
}

a:hover .box{
	background-color: #efefef;
	*background-color: silver;
	color: #ffc800;
	/*border-color: silver;
	*border-color: black;*/
}

