/*
 * common.css
 *
 * Philipp Hanes
 * Computer Science E-69
 * Harvard Extension School
 * Spring 2010
 *
 * Styles that should apply regardless of platform (or at least be overridden in platform-specific CSS files)
 *
 */

/* general rules for the page overall */

body, html {
	padding: 0;
	background-color: #000;
	color: #0b5;
	font-family: Arial, Verdana, sans-serif;
}

/* page header style */
h1 {
	color: #0d8;
}

h1 img {
  vertical-align: middle;
	margin-right: 20px;
}

#logosmall {
		height: 34px;
		width: 52px;
}

/* table stuff */

table {
}

table td {
		background-color: #031;
		padding: 2px 4px;
}

table th {
		background-color: #020;
		padding: 3px 9px;
}

/* linear navigation in general */

.linearnav ul {
		list-style: none;
		padding: 0;
		margin: 0;
}

.linearnav li {
		float: left;;
		margin: 0 0.15em;
}

/* the bottom nav specifically */

#bottomnav {
		clear: both;
}
#bottomnav li a {
		margin-top: 10px;
		background: #004 bottom left repeat-x;
		height: 1.3em;
		line-height: 1.3em;
		float: left;
		width: 6em;
		display: block;
		color: #efb;
		text-decoration: none;
		text-align: center;
}


/* form display */

form input, form textarea, form submit, form select {
/* hmm... android emulator doesn't do this to the "select" */
		background-color: #153;
		color: #fff;
}

/* links */

a {
		color: #63f;
}

