body {
	font-family: Arial, Helvetica, sans-serif;
}

blockquote {
	font-size: .83em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

blockquote blockquote {
	font-size: 1em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

table {
	font-size: 1em;
}

sub {
	font-size: .75em;
	font-weight: normal;
}

sup {
	font-size: .75em;
	font-weight: normal;
}

#content {
	margin-left: 180px;
	min-height: 300px;
	width: 100%;
}

body>#content {
	width: auto;
}

#content h1, #content h2, #content h3 {
	text-align: center;
}

.idea {
	font-weight: bold;
}

.indicator {
	font-weight: bold;
}

.selectedResponse {
	font-weight: bold;
}


/* ===============
main menu elements for the text-based navigation
- div#menu is ignored by Nav 4
- list-style is not applied by Nav 4
- IE doesn't understand child selectors (>), that code is used to fix problems
  with Moz, Safari, Opera
- This menu styling was lifted from:
  Site: A List Apart <http://www.alistapart.com/>
  Article: CSS Design: Taming Lists <http://www.alistapart.com/articles/taminglists/>
  Author: Mark Newhouse <http://www.alistapart.com/authors/marknewhouse/>
  Most of the code is the same, however I've made the following modifications:
  - I've changed some of the styling in order to simplify the presentation
  - I added the div#menu to hide this from Nav 4, which was turning
    out to be too difficult to accommodate (now just shows up as a plain UL).
=============== */
#menu {
	position: absolute;
	left: 5px;
	top: 145px;
	z-index: 10;
	width: 150px;
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: .8em;
}

div#menu {
	border: 1px solid #000000;
	padding: 0em;
	margin-bottom: 1em;
	margin-right: 2em;
	color: #333333;
}

div#menu p {
	margin: 0px;
	padding: 2px;
	border-bottom: 1px solid #000000;
	text-align: center;
	font-size: 1.2em;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #3B67BF;
}

div#menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border: none;
}

div#menu li {
	border-bottom: 1px solid #000000;
	margin: 0;
}

div#menu li a {
	display: block;
	padding: 5px 5px 5px 0.5em;
	border-left: 3px solid #ffffff;
	background-color: #ffffff;
	color: #000000;
	text-decoration: none;
	width: 100%;
}

html>body #menu li a {
	width: auto;
}

div#menu li a:hover {
	border-left: 3px dotted #B7D6F0;
	background-color: #B7D6F0;
}

html>body div#menu li a:hover {
	border-left: 3px dotted #ffffff;
}

div#menu li.selected a {
	border-left: 3px solid #3399CC;
	background-color: #A7C6F0;
}

div#menu li.selected a:hover {
	border-left: 3px dotted #A7C6F0;
	background-color: #A7C6F0;
}

html>body div#menu li.selected a:hover {
	border-left: 3px dotted #ffffff;
}

