/****************************************************************************
 * styles.css
 *
 * Computer Science 50
 * Problem Set 8
 *
 * Global stylesheet.
 ****************************************************************************


/* elements */

body
{
	background-color: #88bbff;
}

html
{
	height: 100%;
	background-color: #88bbff;
}

h1
{
	font-size: 167%;
	font-weight: bold;
	margin-right: 2em;
}

h2
{
	font-size: 108%;
	font-weight: bold;
	text-align: center;
	margin: .5em;
}

a
{
	text-decoration: none;
}

a:hover
{
	text-decoration: underline;
}

ul
{
	padding: .5em;
}

li
{
	list-style: none;
	margin-left: .5em;
}

[onclick]
{
	cursor: pointer;
}

/* Classes */

.even
{
	background-color: #ffffff;
}

.odd
{
	background-color: #cccccc;
}

.found
{
	text-decoration: none;
	color: blue;
}

.found:hover
{
	text-decoration: underline;
	cursor: pointer;
}

.hide
{
	/* just for Safari */
	-webkit-transition: opacity 1s linear;
	opacity: 0;
	visibility: hidden;
}

.meettype
{
	font-style: italic;
}

span.notfound
{
	color: #333333;
}

.show
{
	float: left;
}

.infoWin > a
{
	font-weight: bold;
}


/* IDs */


#hd > div
{
	padding: .5em;
}

#formclear
{
	text-align: center;
}

#ft
{
	text-align: center;
	font-style: italic;
	padding: .5em;
}

#infobubbles
{
	display: none;
	visibility: hidden;
}

#logo
{
	float: left;
}

#logo img:hover
{
	outline: 1px solid blue;
}

#form
{
	float: left;
}

#message
{
	display: block;
	color: red;
}

#progress
{
	float: right;
}

#map
{
	/* draw a nice border around map */
	border: 1px solid black;
	outline: 2px solid #999;
}
