/* main.css */

/*
 * COLOR SCHEME
 * 
 * - Basic color color contrast:
 *
 *   - from the top of the header image:
 *
 *     dark gray brown: #4E4737
 *
 *   - from just above the horizon in the header image:
 *
 *     light orange: #FFE077
 *
 *   - contrast ratios:
 *
 *     dark gray brown vs. white: 9.21:1 (AAA)
 *     dark gray brown vs. light orange: 7.10:1 (AAA)
 *
 * - Derived colors:
 *
 *   - from dark gray brown: #4E4737 = rgb(78,71,55)
 *     add 0x77 = 119 across the board -->
 *     light gray brown: rgb(197,190,174) = #C5BDAD
 *
 *   - from light orange: #FFE077 = rgb(255,224,119)
 *     add 0x44 =68 across the board and clip to 255 -->
 *     very light orange: rgb(255,255,187) = #FFFFBB
 *
 *   - contrast ratio:
 *
 *     dark gray brown vs. very light orange: 8.89:1 (AAA)
 *
 * - Highlights (headers, anchors):
 *
 *   - dark red: #AA0000
 *
 *   - medium blue: #1144AA
 *
 *   - contrast ratios:
 *
 *     dark red vs. white: 7.75:1 (AAA)
 *     medium blue vs. white: 8.64:1 (AAA)
 *
 * - Side note: The light-to-medium blue of text in the the SJSU logo
 *   appears to be the color #3B7CBE. (At least that is what the
 *   eyedropper tool returns.) However, a comparison of this color vs.
 *   white yields a contrast ratio of only 4.36:1 (AA for larger-scale
 *   text, and unacceptable for normal text).
 */

/**********************************************************************
 *                          GLOBAL ELEMENTS                           *
 **********************************************************************/

body {
	margin: 0;
	text-align: center; /* for MSIE */
	background-color: #C5BDAD; /* light gray brown */
}

td {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #4E4737; /* dark gray brown */
}

/**********************************************************************
 *                        THE OUTERMOST TABLE                         *
 **********************************************************************/

#container {
	margin: 0 auto 10px;
	width: 850px;
	text-align: left; /* counteracts 'center' in body */
	background-color: #FFFFFF; /* white */
	border-color: #4E4737; /* dark gray brown */
	border-style: solid;
	border-width: 0 1px 1px;
}

/**********************************************************************
 *                               HEADER                               *
 **********************************************************************/

#headerImage { /* left-hand cell for image */
	width: 382px;
	height: 127px;
}
	
#logo { /* upper half of right-hand part */
	height: 63px;
	color: #FFFFFF; /* white */
	font-size: 24px;
	letter-spacing:.2em;
	line-height:30px;
	vertical-align: bottom;
}

#tagline { /* lower half of right-hand part */
	height: 64px;
	color: #FFE077; /* light orange */
	font-size:12px;
	letter-spacing:0.4em;
	line-height:18px;
	vertical-align: top;
}

#logo, #tagline {
	width: 468px;
	background-color: #4E4737; /* dark gray brown */
	text-align: center;
	white-space: nowrap;
}
	
/**********************************************************************
 *                           BACK NEXT BARS                           *
 **********************************************************************/

#topBackNextBar,
#bottomBackNextBar {
	height: 25px;
	background-color: #FFE077; /* light orange */
	font-size: 11px;
	letter-spacing: 0.1em;
	text-align: center;
	border-color: #4E4737; /* dark gray brown */
	border-style: solid;
}

#topBackNextBar {
	border-width: 0 0 1px;
}

#bottomBackNextBar {
	border-width: 1px 0 0;
}

#topBackNextBar a,
#bottomBackNextBar a {
	padding: 2px 4px;
	background-color: #FFFFBB; /* very light orange */
	color: #4E4737; /* dark gray brown */
	letter-spacing: 0.1em;
	text-decoration: none;
	border-color: #4E4737; /* dark gray brown */;
	border-style: solid;
	border-width: 1px;
}
	
#topBackNextBar a:hover,
#bottomBackNextBar a:hover {
	background-color: #4E4737; /* dark gray brown */
	color: #FFFFBB; /* very light orange */
	font-style: italic;
}

/**********************************************************************
 *                             NAVIGATION                             *
 **********************************************************************/

#navigation {
	background-color: #FFFFBB; /* very light orange */
	vertical-align: top;
}
	
#navigation,
#navigation table,
#navigation td {
	width: 165px;
	text-align: left;
}
	
#navigation td {
	border-color: #FFFFFF; /* white */
	border-style: solid;
	border-width: 0 0 3px;
	font-size: 11px;
}

#navigation a {
	padding: 8px 6px 10px 26px;
	display: block;
	color: #4E4737; /* dark gray brown */
	font-weight: normal;
	line-height: 16px;
	letter-spacing: 0.1em;
	text-decoration: none;
	background-image: url("../images/arrow.gif");
	background-position: 14px 45%;
	background-repeat: no-repeat;
}

#navigation a:hover {
	background-color: #FFFFFF; /* white */
	color:#AA0000; /* dark red */
	font-style: italic;
}

/**********************************************************************
 *                               LINKS                                *
 **********************************************************************/

#links {
	padding: 0 0 20px;
	vertical-align: top;
}
	
#links,
#links table,
#links td {
	width: 165px;
	text-align: center;
}

#links img {
	padding: 15px 0 10px;
}
	
#links a.textAnchor {
	display: block;
	color: #AA0000; /* dark gray brown */
	font-weight: normal;
	line-height: 16px;
	letter-spacing: 0.1em;
	text-decoration: none;
	background-image: url("../images/arrow.gif");
	background-position: 14px 45%;
	background-repeat: no-repeat;
}
	
#links a.textAnchor:hover {
	color:#AA0000; /* dark red */
	font-style: italic;
}

.linksHeader {
	padding: 20px 0 0;
	font-weight: bold;
	color: #4E4737; /* dark gray brown */
	line-height:16px;
	letter-spacing:.2em;
}

/**********************************************************************
 *                                MAIN                                *
 **********************************************************************/

#main {
	width: 420px;
	font-size: 11px;
	color: #4E4737; /* dark gray brown */
	line-height: 30px;
	margin-top: 0px;
}
	
.horizSpace,
.horizSpace img {
	width: 50px;
}

.leftVertSpace,
.leftVertSpace img {
	width: 167px;
}

.rightVertSpace,
.rightVertSpace img {
	width: 253px;
}

.leftVertSpace,
.leftVertSpace img,
.rightVertSpace,
.rightVertSpace img {
	height: 20px;
}
	
a {
	color: #AA0000; /* dark red */
	font-weight: bold;
}
	
a:hover {
	color: #1144AA; /* medium blue */
}

h1, h2, h3, h4 {
	color: #AA0000; /* dark red */
	font-weight: normal;
}

h1 {
	font-size: 22px;
}

h2 {
	font-size: 16px;
}
