/*
Base Styles
	Styles for common html elements, header, and shared aspects of individual submissions.
	Submission hover captions are handled through [#submissions a] where [*.info] is the caption class
*/

html, body, div, h1, h2, ul {
	margin:0;
	padding:0;
	border-width:0; 
}
body {
	font-family:Arial, Helvetica, sans-serif;
	background:url(../images/tile_road.png) 0px 0px repeat;
}

#header {
	color:white;
	padding:10px;
	background-color:#356D83;
	border-bottom:1px solid #039;
}
#header h2 {
	color:#CEE6F7;
	font-size:90%;
}

#submissions {
	position:absolute;
	top:0;
	left:0;
}
#submissions a {
	text-decoration:none;
	display:block;
	position:absolute;
}
#submissions a:hover {
	border-width:0; /* IE hack */
}
#submissions a *.info {
	display:none;
}
#submissions a:hover *.info {
	background-color:#356D83;
	border:1px solid #039;
	border-right:2px solid black;
	border-bottom:2px solid black;
	display:block;
	opacity: 0.85;
	filter: alpha(opacity=85);
	position:absolute;
	z-index:1000;
	width:200px;
	bottom:40px;
	left:40px;
}
*.info h1 {
	color:#06A;
	font-size:90%;
	font-weight:bold;
	padding:3px;
	background-color:#CEE6F7;
}
*.info ul {
	color:white;
	font-size:80%;
	padding:.5em;
	padding-left:2em;
	list-style-image:url(../images/bullet_info.gif);
}