html,
body {
	margin:0; padding:0;
	font:16px "Myriad Pro", Helvetica, Arial, sans-serif;
	background-color:#d3d023;
	}


/* ~~~  LAYOUT  ~~~ */
#wrapper {
	position:relative;
	padding:12px;
	overflow:hidden;/* contain floats */
	}
	
#nav {
	float:left;
	width:175px;
	padding:15px 0;
	margin:116px 0 124px 0;
	}

h1#brand {
	width:175px;
	height:116px;
	padding:0;
	margin:-131px 0 15px 0;
	}
h1#brand a {
	display:block;
	line-height:116px;
	text-indent:-1000em; /* move text off left */
	overflow:hidden;
	background:transparent url(jt_logo.gif) center center no-repeat;
	}

#content {
	padding:30px;
	}
.contentCol {
	margin:0 0 5px 181px;
	}

#sponsorFoot {
	position:absolute;
	bottom:30px; left:12px;
	white-space:nowrap;
	}
#sponsorFoot img {
	display:block;/* prevent descender and white-space gaps */
	float:left;/* stack blocks from the left, not vertically */
	margin-right:2px;
	}



/* ~~~  TYPOGRAPHY  ~~~ */

span.wbr { letter-spacing:-0.25em; }

i.title { font-style:italic; }
i.short { font-weight:bold; }
.aside  {
	font-style:italic;
	font-size:0.9em;
	line-height:1.5;
	color:#333;
	}
.numeric { white-space:nowrap; }

a:focus { outline:none; }
a img { border:none; }

#wrapper {
	font-size:0.875em;
	}
.contentCol {
	line-height:1.75;
	}
.contentCol h1,
.contentCol h2 {
	color:#900;
	font-size:2em;
	line-height:1;
	margin:0 0 0.5em 0;
	}
.contentCol h2 {
	font-size:1.25em;
	margin:1em 0 0 0;
	}
.contentCol h1+h2 {
	margin-top:-0.75em;
	}
.contentCol p {
	margin:0 0 1.25em 0;
	}
.contentCol h1+p.headInfo,
.contentCol h2+p.headInfo,
.contentCol h3+p.headInfo,
.contentCol h4+p.headInfo {
	margin-top:-0.75em;
	}
.contentCol a {
	font-weight:bold;
	color:#900;
	text-decoration:none;
	}
.contentCol a:visited {
	color:#500;
	}
.contentCol a:hover {
	text-decoration:underline;
	}

.contentCol h4 {
	font-size:1.167em;
	font-weight:normal;
	font-style:italic;
	color:#900;
	margin:2em 0 0 0;
	}


/* ~~~  SIFR TITLES ~~~ */
/* http://wiki.novemberborn.net/sifr/ */
/* These are standard sIFR styles... do not modify */

.sIFR-flash {
	visibility: visible !important;
	margin: 0;
}

.sIFR-replaced {
	visibility: visible !important;
}

span.sIFR-alternate {
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	display: block;
	overflow: hidden;
}

/* Hide Adblock Object tab: the text should show up just fine, not poorly with a tab laid over it. */
.sIFR-flash + div[adblocktab=true] {
  display: none !important;
}

/* These "decoy" styles are used to hide the browser text before it is replaced... the negative-letter spacing in this case is used to make the browser text metrics match up with the sIFR text metrics since the sIFR text in this example is so much narrower... your own settings may vary... any weird sizing issues you may run into are usually fixed by tweaking these decoy styles */

.sIFR-hasFlash .contentCol h1 {
	visibility: hidden;
}

@media print {
	/* This is the print stylesheet to hide the Flash headlines from the browser... regular browser text headlines will now print as normal */
	
	.sIFR-flash, .sIFR-flash object, .sIFR-flash embed {
		display: none !important;
		height: 0;
		width: 0;
		position: absolute;
		overflow: hidden;
	}
	
	span.sIFR-alternate {
		visibility: visible !important;
		display: block !important;
		position: static !important;
		left: auto !important;
		top: auto !important;
	}
}


/* ~~~  SITE NAV ~~~ */
#nav ul {
	line-height:1.125;
	list-style:none;
	margin:0 0 0 -2px;
	padding:0 1px 0 0;
	}
#nav li {
	list-style:none;
	padding:0 0 0 7px;
	margin:0;
	background:transparent url(nav_pip_off.gif) 0% 50% no-repeat;
	}
#nav li a {
	display:block;
	text-decoration:none;
	white-space:nowrap;
	padding:6px 5px 3px 12px;
	color:#000;
	}
#wrapper #nav li a:hover { /* extra specificity to override the section highlight below */
	background-color:#900;
	color:#fff;
	}

/* section nav highlights */
body.WhatIs #navWhatIs,
body.Who #navWhoAre,
body.WentTo #navWentTo,
body.Study #navStudy,
body.Partners #navPartners,
body.Press #navPress,
body.Win #navWinTrip {
	margin-left:7px;
	background-image:url(nav_pip_on.gif);
	}
body.WhatIs #navWhatIs a,
body.Who #navWhoAre a,
body.WentTo #navWentTo a,
body.Study #navStudy a,
body.Partners #navPartners a,
body.Press #navPress a {
	padding-left:5px;
	color:#900;
	}



/* ~~~  ROUNDED CORNERS ~~~ */
/* these target divs that are put in place via global.js, targetting div.cornered */
div.cornered {
	position:relative;
	background-color:#fff;
	padding:10px;
	}

div.corners {
	position:absolute;
	height:10px; width:10px;
	background:transparent url(jt_round_all.gif) no-repeat;
	}
div.nw {
	top:0%; right:auto; bottom:auto; left:0%; 
	background-position:100% 100%;
	}
div.ne {
	top:0%; right:0%; bottom:auto; left:auto; 
	background-position:0% 100%;
	}
div.se {
	top:auto; right:0%; bottom:0%; left:auto; 
	background-position:0% 0%;
	}
div.sw {
	top:auto; right:auto; bottom:0%; left:0%; 
	background-position:100% 0%;
	}



/* ~~~  COLUMNS OF VARIOUS SORTS  ~~~ */
div.colContainer {
	margin:-30px;/* compensates for the padding on the #content */
	overflow:hidden;/* contains all floats */
	}
div.colContainerSubTitle { margin-top:1em; }
div.colContainerSubContainer { margin-top:30px; }/* compensate for the -30px above it */
div.colUnit {
	padding:10px;
	border-top:1px solid #d3d023;
	}
div.colUnitBumpTop {
	border:none;
	}
div.colSolo {
	padding:50px 30px;
	}

div.colHalfLeft {
	float:left;
	width:50%;
	border-right:1px solid #d3d023;
	}
div.colHalfRight {
	margin-left:50%;
	border-left:1px solid #d3d023;
	}
div.colHalfLeft div.colUnit {
	padding-left:35px;
	}

div.colTwoThirdsLeft {
	float:left;
	width:67%;
	border-right:1px solid #d3d023;
	}
div.colThirdRight {
	margin-left:67%;
	border-left:1px solid #d3d023;
	}
div.colTwoThirdsLeft div.colUnit,
div.colThirdRight div.colUnit {
	padding:10px 5px;
	}
	



/* ~~~  MISC LITTLE STRUCTURES  ~~~ */
#sponsorLogos {
	padding:17px 0;
	text-align:center;
	}
#sponsorLogos table {
	margin:0 auto;
	}
#sponsorLogos td {
	vertical-align:middle;
	padding:0 3px;
	}

.blockList,
.blockList li {
	list-style:none;
	margin:0;
	padding:0;
	line-height:1.5;
	}

dl.chronologyList {
	list-style:none;
	margin:0; padding:0;
	line-height:1.125;
	}
dl.chronologyList dt {
	display:block;
	float:left;
	white-space:nowrap;
	padding-right:1em;
	}
dl.chronologyList dd {
	margin:0 0 0.5em 3em;
	}



/* ~~~  SPECIFIC PAGES  ~~~ */

/* home */
#pgHome #content {
	padding-right:50px;
	padding-bottom:50px;
	}


/* sponsors */
#pgPartners #content h3 {
	text-align:center;
	}


/* who page */
#pgWhoHome div.contentCol h3 {
	text-align:center;
	height:23px;
	}
#pgWhoHome div.contentCol h3.row2 {
	height:40px;
	}
#pgWhoHome div.contentCol ul {
	list-style:none;
	margin:0 auto;
	padding:0;
	width:130px;
	}
#pgWhoHome div.contentCol li {
	list-style:none;
	margin:0;
	padding:0 0 30px 0;
	line-height:1;
	}
#pgWhoHome div.contentCol li img {
	display:block;
	border:1px solid #333;
	margin:0 0 5px 0;
	}
#pgWhoHome div.contentCol li a {
	display:block;
	font-weight:normal;
	}
#pgWhoHome div.contentCol li a:hover {
	text-decoration:none;
	}
#pgWhoHome div.contentCol li a:hover img {
	border:5px solid #900;
	margin:-4px -4px 1px -4px;
	}


/* student pages */
#studentBio {
	padding:21px 22px 45px 33px;
	}
ul#linkies {
	list-style:none;
	margin:55px 10px 14px 10px;
	padding:0;
	}
ul#linkies li {
	list-style:none;
	margin:0; padding:0 0 5px 0;
	}
ul#linkies li a {
	display:block;
	line-height:1;
	padding:8px 0 0 25px;
	font-size:0.75em;
	font-weight:normal;
	text-transform:uppercase;
	color:#000;
	}
ul#linkies li a.textdoc { background:transparent url(icon_textdoc.gif) 0% 80% no-repeat; }

ul#videos {
	list-style:none;
	margin:45px 0 0 10px;
	padding:0;
	font-size:0.875em;
	line-height:1.125;
	}
ul#videos li {
	list-style:none;
	margin:0 0 20px 0;
	padding:0;
	}
ul#videos a {
	display:block;
	font-weight:normal;
	}
ul#videos img {
	border:1px solid #000;
	margin:0 0 3px 0;
	}
ul#videos a:hover img {
	border:2px solid #900;
	margin:-1px -1px 2px -1px;
	}
ul#videos a.videoPlay {
	padding:3px 0 0 19px;
	line-height:18px;
	background:transparent url(control_play.png) 0 3px no-repeat;
	}
ul#videos a.videoPlay:hover {
	background-image:url(control_play_blue.png);
	}

body.VideoWin #nav,
body.VideoWin #sponsorFoot { display:none; }
body.VideoWin #content {
	margin:0 auto;
	width:450px;
	}

/* photo tagged corners */
div.headshot {
	position:relative;
	margin:13px -20px;
	padding:2px;
	}
div.headshot img {
	border:1px solid #000;
	}
div.headshot img.nw {
	position:absolute;
	top:0; left:0;
	border:none;
	}
div.headshot img.se {
	margin:0 0 -2px -8px;
	border:none;
	}



/* Regions */
body.WentTo div.colContainerSubTitle div.colTwoThirdsLeft {
	width:55%;
	}
body.WentTo div.colContainerSubTitle div.colThirdRight {
	margin-left:55%;
	}
body.WentTo div.colUnit {
	padding:14px 10px;
	}
body.WentTo div.colSolo {
	padding:30px;
	}
body.WentTo div.colTwoThirdsLeft div.colUnit,
body.WentTo div.colHalfLeft div.colUnit {
	padding-left:20px;
	}
body.WentTo div.colTwoThirdsLeft div.colHalfRight div.colUnit {
	padding-left:10px;
	}
body.WentTo div.colContainerSubContainer div.colUnit {
	padding-top:20px;
	}
body.WentTo h2 {
	margin:0 0 0.5em 0;
	font-size:1.4em;
	white-space:nowrap;
	}
body.WentTo h1+h2 {
	margin:-0.25em 0 2em 0;
	}
body.WentTo h4 {
	margin:0 0 1em 0;
	}

div.itinerary h4 {
	clear:left;
	margin:2em 0 0.5em 0;
	}
div.itinerary img {
	float:left;
	clear:left;
	margin:0 2em 1em 0;
	border:1px solid #000;
	}
ul.itinerary,
ul.address {
	list-style:none;
	margin:0.5em 0 1em 0;
	padding:0;
	line-height:1.125;
	}
ul.itinerary li,
ul.address li {
	list-style:none;
	margin:0.5em 0;
	padding:0;
	overflow:hidden;/* contain floats */
	}
ul.address li {
	margin:0.25em 0;
	}
ul.itinerary ul,
ul.address ul,
ul.itinerary ul li,
ul.address ul li {
	list-style: disc inside;
	margin-left:1em;
	padding:0;
	}

