@charset "UTF-8";
/* CSS Document */

/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be wrendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #ffffff;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	vertical-align: top;
	font-family: "Times New Roman", Times, Georgia, serif;
	font-size: 14px;
	line-height: 18px;
	color: #000000;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	position: relative;
	top: -16px;
	background-color: transparent;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	width: 900px;
	background-image: url(images/masthead_SMP.gif);
	background-repeat: no-repeat;
	background-position: left top;
	overflow: visible;
}

#menu {
	position: relative;
	top: 87px;
	margin-top: 0;
	height: 25px;
	background-color: #000000;
	whitespace: nowrap;	
}

#menu table a {
	font-weight: normal;
	text-decoration: none;
	color: #ffffff;
	font-family:Arial, Helvetica, sans-serif;
}

#menu table a:hover {
	font-weight: normal;
	text-decoration: none;
	color: #CC6600;
}

#menu table {
	width: 900px;
	border: 0;
	height: 25px;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	margin: 0;
	padding: 0;
}

#menu td {
	width: 128px;
	padding-left: 3px;
}

/* The "current page" link behavior */

body#about td#about a,
body#news td#news a,
body#how td#how a,
body#tutor td#tutor a,
body#families td#families a,
body#contact td#contact a {
	color: #CC6600;
	font: 1em Arial, Verdana, Helvetica, sans-serif;
	margin: 0;
	list-style: none;
	white-space: nowrap;
	font-weight: 600;
	background-color: #000000;
}


/* left margin column */

#leftcol {
	position: absolute;
	z-index: 1;
	top: 147px;
	width: 140px;
	left: 35px;
	margin-right: 10px;
	text-align: left;
}

#leftcol li {
	font: .9em Arial, Verdana, Helvetica, sans-serif;
	text-shadow: #000000 0 0 0px;
	margin: 0px 0px 0px -30px;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid #000000;
	white-space: nowrap;
	font-weight: 600;
	text-align: left; /* Redefines the text alignment defined by the body element. */
}
#leftcol a:link, #leftcol a:visited, #leftcol h2 a {
	color: #BB6621;
	display: block;
	margin: 0;
	padding: 6px 20px 3px 0px;
	text-decoration: none;
}
#leftcol a:hover {
	color: #330033;
	display: block;
	padding: 6px 20px 3px 0px;
}

#leftcol .here {
	color: #330033;
	padding: 6px 20px 3px 0px;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	text-shadow: #000000 0 0 0px;
	margin: 0px 0px 0px -30px;
	padding-bottom: 3px;
	list-style: none;
	border-bottom: 1px solid #000000;
	white-space: nowrap;
	font-weight: 600;
	background-color: transparent;
}   

#content h2, #leftcol h2 {
	font-family:Arial, Verdana, Helvetica, sans-serif;
	color: #941B1E;
	font-size: 1.5em;
	line-height: 150%;
	text-align: left;
	background-color: transparent;
	margin-top: 0px;
	margin-bottom: 0px;
	_margin-bottom: 20px;
}

#leftcol p.tagline {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 150%;
	color: #941B1E;
	text-align: left; /* Redefines the text alignment defined by the body element. */
}

#leftcol p.narrative {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	font-weight: normal;
	line-height: 130%;
	color: #996633;
	text-align: left; /* Redefines the text alignment defined by the body element. */
}

#leftcol p.quote {
	font-family: "Times New Roman," Times, Georgia, serif;
	font-size: 1.1em;
	line-height: 200%;
	color: #996633;
	font-style: italic;
	text-align: left; /* Redefines the text alignment defined by the body element. */
}

#leftcol #quotesource {
	font-size: 1em;
	margin-top: -10px;
	margin-right: 5px;
	color: #000000;
	font-style: normal;
	text-align: right;
}


/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#content {
	position: relative;
	top: 140px;
	left: 175px;
	width: 675px;
	margin: 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding-right: 25px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	padding-left: 25px;
	text-align: left; /* Redefines the text alignment defined by the body element. */

}

#flow1, #flow2, #flow3, #flow4, #flow5, #flow6, #flow7, #flow8, #flow9, #flow10, #flow11, #flow12, #flow13, #flow14 {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

/* Commonly used to style page titles. */
#content h1 {
	font-family:Arial, Verdana, Helvetica, sans-serif;
	color: #941B1E;
	font-size: 2em;
	background-color: transparent;
	margin-top: 0px;
	margin-bottom: 10px;
	_margin-bottom: 20px;
}
/* Commonly used to style section titles. */
#content h2 {
	font-family:Arial, Verdana, Helvetica, sans-serif;
	color: #941B1E;
	font-size: 1.5em;
	line-height: 150%;
	text-align: left;
	background-color: transparent;
	margin-top: 0px;
	margin-bottom: 0px;
	_margin-bottom: 20px;
}

#content h3 {
	font-family:Arial, Verdana, Helvetica, sans-serif;
	color: #941B1E;
	font-size: 1.2em;
	line-height: 150%;
	background-color: transparent;
	margin-top: 0px;
	margin-bottom: -10px;
	_margin-bottom: -20px;
}

#content p { font-family:"Times New Roman", Times, Georgia, serif;
	font-size: 1em;
	line-height: 150%;

}

/* Sets the style for unvisited links. */
a, a:link {
	color: #BB6621;
	text-decoration: none;
	font-weight:bold;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #330033;
	text-decoration: underline;
	font-weight:bold;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #330033;
	font-weight:bold;
}

.indent { padding-left: 133px; _padding-left: 210px; }
.indent2 { padding-left: 233px; _padding-left: 210px; }

.nobreak { white-space:nowrap }
.affiliation { 
	font-size: 11px;
	line-height: 13px;
	font-family:Arial, Helvetica, sans-serif;
}

#content img {
	padding-bottom: 20px;
}

.highlight {
	font-weight: bold;
	color: #990000;
	font-family: Arial, Helvetica, sans-serif;
}
em {
	font-size: 1.05em;
}

#clearit {
	clear: both
}