/* Colors
 *
 * cardinal: rgb(153,0,0)
 * beige: rgb(231,209,154)
 * flesh: rgb(236,232,221)
 *
 * dark gray (text): rgb(102,102,102)
 * light pink (text): rgb(218,163,163)
 *
 * very light gray (background): rgb(206,206,206)
 * very very light gray: rgb(232,232,232)
 * gray (page margins): rgb(179,179,179)
 * very dark gray (headers): rgb(64,64,64)
 *
 * light gray (h1 underline): rgb(187,187,187) */

/* A hack is in place that centers the page content on IE5 browsers.
 * This hack involves setting text-align: center on
 * the body of the page and overriding it to text-align: left for
 * children. Because IE5 incorrectly centers blocks with text-align:
 * center, this results in the page content being centered. */

/* Page content will _not_ be centered on Netscape 4 browsers. */

body {
	background-color: rgb(206,206,206);
	margin: 0;
	color: rgb(102,102,102);
	font: 12px Arial, sans-serif;
}

h1 {
	width: 100%;
	color: rgb(153,0,0);
	font-size: 18px;
	padding-bottom: 5px;
	border-bottom: 1px solid rgb(187,187,187);
	margin-bottom: 13px;
}

h2 {
	font-size: 14px;
	font-weight: bold;
}

h3 {
	font-size: 12px;
	font-weight: bold;
}

a {
	text-decoration: none;
	color: rgb(153,0,0);
}

a:hover {
	text-decoration: underline;
}

/* The "showing" style applies to links to content the user is currently
 * viewing. */

.showing {
	font-weight: bold;
	color: rgb(153,0,0);
}

.caption {
	font-size: 10px;
	margin: 4px 0 15px;
}

em {
	font-weight: bold;
	font-style: normal;
}

form {
	margin: 0;
}

input {
	border: 1px solid rgb(179,179,179);
	color: rgb(102,102,102);
}

input.submit {
	border: 1px solid rgb(153,0,0);
	color: rgb(153,0,0);
}

.jump-link {
	padding: 0 16px 0 0;
	background-image: url(image/jump_arrow.jpg);
	background-position: 100% 3px;
	background-repeat: no-repeat;
}

.email-link {
	padding: 0 0 0 21px;
	background-image: url(image/mail_link.jpg);
	background-position: 0 2px;
	background-repeat: no-repeat;
}

.separator {
	width: 100%;
	height: 0;
	border-bottom: 1px solid rgb(187,187,187);
	margin-bottom: 20px;
}

#page {
	width: 800px;
	background-color: white;
	border: solid rgb(179,179,179);
	border-width: 0 1px;
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
	text-align: center; /* Hack to center page content on IE5 */
}

#banner {
	width: 100%;
	height: 96px;
	background-color: rgb(153,0,0);
	background-image: url(image/banner.jpg);
	background-repeat: no-repeat;
}

#topnav {
	width: 780;
	background-color: rgb(231,209,154);
	padding: 7px 10px 6px;
	text-align: left; /* Override text-align */
}

#main {
	background-color: white;
	background-image: url(image/side_nav_bg.jpg);
	background-repeat: repeat-y;
	margin-top: 8px;
	text-align: left; /* Override text-align */
}

#main-no-nav {
	background-color: white;
	margin-top: 8px;
	text-align: left; /* Override text-align */
}

#sidenav {
	float: left;
	width: 135px;
	padding: 10px 10px 15px;
	background-image: url(image/side_nav_border.jpg);
	background-repeat: repeat-x;
}

#sidenav ul {
	margin: 5px 0 0 15px;
	padding: 0;
}

#sidenav ul li {
	list-style-image: url(image/side_nav_bullet.gif);
	list-style-position: outside;
	margin: 0 0 5px;
}

#sidenav ul li.showing {
	list-style-image: url(image/side_nav_bullet_open.gif);
}

#article {
	float: left;
	width: 415px;
	padding: 0 15px 10px;
	/*
	background-image: url(image/stanford_seal.jpg);
	background-position: center;
	background-repeat: no-repeat;
	*/
}

#article-no-nav {
	float: left;
	width: 570px;
	padding: 0 0 10px 15px;
	background-color: white;
}

#article-no-callouts {
	float: left;
	width: 600px;
	padding: 0 0 10px 15px;
	background-color: white;
}

#article-full {
	width: 770px;
	padding: 0 15px 10px;
	background-color: white;
}

.indented {
	margin-left: 25px;
}

.jumps {
	margin: 20px 0;
}

.jump {
	margin: 0 0 10px 10px;
	margin-bottom: 10px;
}

.jump .header {
	margin: 0 0 5px -10px;
	font-size: 12px;
	font-weight: bold;
}

.jump .header a {
	padding: 0 15px 0 0;
	background-image: url(image/jump_arrow.jpg);
	background-position: 100% 3px;
	background-repeat: no-repeat;
}

.bios {
	display: table;
	border-collapse: collapse;
	margin: 5px 5px 20px 0;
}

.bios .bio {
	display: table-row;
	border-top: 1px solid rgb(187,187,187);
}

.bios .first-bio {
	display: table-row;
}

.bios .mugshot {
	display: table-cell;
	vertical-align: top;
	padding-top: 15px;
}

.bios .first-bio .mugshot {
	padding-top: 0;
}

.bios .mugshot img {
	border: 1px solid rgb(187,187,187);
	margin-top: 2px;
}

.bios .mugshot img.no-border {
	padding: 0;
	border: none;
}

.bios .info {
	display: table-cell;
	vertical-align: top;
	padding: 15px 0 5px 15px;
}

.bios .first-bio .info {
	padding: 0 0 5px 15px;
}

.bios .info .name {
	font-size: 12px;
	font-weight: bold;
	color: rgb(153,0,0);
}

.bios .info .title {
	font-weight: bold;
}

.bios .info p {
	margin-top: 16px;
}

.schedule {
	display: table;
	border-collapse: collapse;
	padding: 0;
	margin: 0;
}

.schedule .event {
	display: table-row;
}

.schedule .event .time {
	display: table-cell;
	width: 75px;
	vertical-align: top;
	text-align: right;
	font-family: monospace;
	padding: 0 10px 5px 0;
}

.schedule .event .time-wide {
	display: table-cell;
	width: 125px;
	vertical-align: top;
	text-align: right;
	padding: 0 10px 5px 0;
}

.schedule .event .description {
	display: table-cell;
	vertical-align: top;
	padding: 0 0 5px;
}

.schedule .event .description .header {
	margin-bottom: 8px;
}

.schedule .event .description .title {
	font-weight: bold;
}

.speakers {
	display: table;
	border-collapse: collapse;
	padding: 0;
	margin: 0;
}

.speakers .speaker {
	display: table-row;
}

.speakers .speaker .name {
	display: table-cell;
	width: 100px;
	vertical-align: top;
	font-style: italic;
	padding: 0 10px 4px 0;
}

.speakers .speaker .intro {
	display: table-cell;
	vertical-align: top;
	padding: 0 0 4px;
}

#article ul {
	margin: 25px 0 25px 30px;
	padding: 0;
}

#article ul ul {
	margin: 5px 0 5px 15px;
}

#article ul li {
	list-style-position: outside;
	margin: 0 0 5px;
}

ul.press li.audio {
	list-style-image: url(image/audio_bullet.gif);
}

ul.press li.text {
	list-style-image: url(image/article_bullet.gif);
}

.footnote {
	margin-top: 25px;
	font-size: 11px;
}

.footnote .symbol {
	float: left;
	width: 12px;
	font-size: 12px;
}	

table {
	margin: 5px 5px 20px;
	border-spacing: 15px 3px;
}

table th {
	font-weight: bold;
	padding-bottom: 5px;
	text-align: left;
}
	

#callouts {
	float: right;
	width: 200px;
}

.calloutheader {
	width: 188px;
	padding: 5px 6px 4px;
	background-color: rgb(153,0,0);
	color: white;
	font-weight: bold;
}

.callout {
	width: 180px;
	padding: 12px 10px 16px;
	background-color: rgb(237,232,221);
	background-image: url(image/callout_corner.gif);
	background-position: bottom left;
	background-repeat: no-repeat;
	margin-bottom: 14px;
}

.callout ul {
	margin: 10px 0 0 20px;
	padding: 0;
}

.callout ul li {
	list-style-position: outside;
	margin: 0 0 5px;
}

.photo {
	width: 200px;
	margin-bottom: 10px;
}

.photocaption {
	width: 170px;
	padding: 0 15px;
	text-align:center;
	font-size: 10px;
	margin-bottom: 14px;
}

.photo-small {
	width: 141px;
	padding-left: 59px;
	margin-bottom: 10px;
}

.photocaption-small {
	width: 111px;
	padding: 0 15px 0 74px;
	text-align:center;
	font-size: 10px;
	margin-bottom: 14px;
}

#pictures {
	clear: both;
	text-align: center;
	background-color: white;
	padding-top: 10px;
	border-top: 3px double rgb(179,179,179);
}

#pictures h1 {
	padding-top: 5px;
	border-top: 1px solid rgb(187,187,187);
	background-color: rgb(236,232,221);
}

#pictures .picture {
	width: 80%;
	padding-bottom: 20px;
	border-bottom: 1px dotted rgb(179,179,179);
	margin: 20px auto;
}

#pictures .picture .caption {
	font-size: 10px;
	padding-top: 10px;
	margin: 0;
}

.clear {
	clear: both;
}

#footer {
	clear: both;
	width: 780;
	padding: 12px 10px 10px;
	background-color: rgb(153,0,0);
	color: rgb(218,163,163);
	font-size: 10px;
	text-align: center;
}
