/**
 * TagNinja style
 * 
 * by Kevin Godby <godbyk@gmail.com>
 */

html, body {
	min-height: 100%; /* sets the min height to the height of the viewport */
	width: 100%;
	height: 100%; /* this fixes an IE bug */
	padding: 0px 0px;
	margin: 0px 0px;
}

html>body {
	height: auto; /* resets height for non-IE browsers */
}

body {
	position: absolute;
	top: 0;
}

#container {
	/* keeps content above footer */
	padding-bottom: 30px; /* footer height */
	height: auto;
}

#footer {
	background: url(../images/topheader.gif);
	color: #fff;
	position: absolute;
	bottom: 0;
	height: 30px; /* use same height as padding-bottom in #container */
	line-height: 30px;
	width: 100%;
	margin-bottom: 0px;
}

#footer a:link {
	text-decoration: none;
	color: #ffff00;
}

#footer a:hover {
	text-decoration: underline;
	color: #ffffff;
}

#footer a:visited {
	text-decoration: none;
	color: #ffff00;
}

#footer #logout {
	margin-left: 1.5em;
	margin-right: 1.5em;
}

.clear {
	clear: both;
}

#page_header {
	background: url(../images/topheader.gif);
	vertical-align: bottom;
}

#page_header img {
	margin-left: 15px;
}

#page_header #sitetitle {
	display: inline;
	color: #ffffff;
	font-size: 48px;
}

.question {
	font-size: x-large;
	color: #000000;
	margin: 3em 3em;
}

.answers {
	font-size: large;
	color: #000000;
	list-style: lower-alpha;
}

.highlight {
	background: #ffff00;
	padding: 0.125em 0.125em;
	font-weight: bold;
}

.answers a:link {
	text-decoration: none;
	/* color: #660000; */
	color: #ff0000;
}

.answers a:hover {
	text-decoration: underline;
	color: #ff0000;
}



/* Login form */

#loginform {
	width: 300px;
	/* margin: auto; */
	float: right;
}

#loginform fieldset {
	padding: 10px;
}

#loginform legend {
	font-weight: bold;
	font-size: 9pt;
}

#loginform label {
	display: block;
	height: 2em;
	/* background-color: #E7E7E7; */
	padding: 10px 10px 0;
}

#loginform input {
	margin-right: 20px;
	border: 1px solid #999999;
	float: right;
	clear: right;
	/* background: #CCCCCC; */
}

#loginform input:focus, #loginform input:hover {
	border: 1px solid /* #333333 */;
}

.error {
	color: red;
	font-weight: bold;
}

#scorebox {
	text-align: center;
	border: 3px double red;
	padding: 1em 1em;
	margin: 1em 1em;
}

#score_label {
	font-size: Large;
	font-weight: bold;
}

#score_number {
	font-size: 400%;
	font-weight: bold;
}

#levelbox {
	text-align: center;
	border: 3px double red;
	padding: 1em 1em;
	margin: 1em 1em;
}

#level_label {
	font-size: Large;
	font-weight: bold;
}

#level_number {
	font-size: 400%;
	font-weight: bold;
}


