/*
 * Reset Stylesheet
 * Creates a baseline that smooths out differences imposed by various default browser styles
 *
 * Thanks to http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

pre {
	font-family: monospace;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
/************* END RESET STYLESHEET ****************/

/*******************************
     DEFAULT TAG STYLES
********************************/

body {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 12px;
	background-image: url('bk_l.png');
	background-position: top left;
	background-repeat: repeat-y;
	background-color: #fff;
	padding: 0 50px;
}

a {
	color: #19B4E1;
}

a:hover {
	color: #000;
}

h1 {
	color: white;
	background: #24B6E1;
	font-size: 20px;
	font-weight: bold;
	margin: 20px 0 0 0;
	padding: 5px 0;
	text-align:center;
	text-shadow: #0B5568 1px 1px 1px;
}
h2 {
	color: #006180;
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-weight: bold;
}
h3 {
	color: #26A1C5;
	margin: 2px 0;
	padding: 0;
	font-size: 14px;
	font-weight: bold;
}
h4 {
	text-align: center;
	font-weight:normal;
	padding:0;
	margin: 0px 0 5px 0;
	color: #2e3133;
	font-size: 12px;
}
h5 {
	margin: 0 0 4px 0;
	padding: 2px 0 2px 11px;
	font-weight:bold;
	font-size:11px;
	font-family:Helvetica, Arial, sans-serif;
	background-image: url('tri.gif');
	background-position: 2px 50%;
	background-repeat: no-repeat;
	cursor: pointer;
	cursor: hand; /* for IE5 */
}
h5.active {
	background-image: url('tridn.gif');
	background-position: 2px 50%;
}
/*****************************
 		COMMON STYLES
******************************/
#pageHdr {
	display: block;
	margin: auto;
	margin-top: 15px;
	border: none;
}
#btop {
	text-align: center;
	margin-top: 20px;
}
#rtgrad {
	width: 300px;
	height: 100%;
	background-image: url('bk_r.png');
	background-repeat: repeat-y;
	background-position: top right;
	background-attachment: fixed;
	position: fixed;
	top: 0px;
	right: 0px;
	z-index: -1;
}
.formSubmitHighlight {
	margin: 7px 0;
	padding: 5px 0;
}
.formSubmitHighlight button {
	font-size: 13px;
	font-weight: normal;
	padding: 3px 30px;
}

img.lockIcon {
	cursor: help;
}

#unlockPrereq {
	position: absolute;
	font-size: 11px;
	padding: 3px 2px;
	border: 1px solid #25b6e1;
	background: #F9FBFC;
}

.warningBox,
.successBox,
.errorBox {
	text-align: center;
	margin: 0 0 8px 0;
	padding: 0.5em;
	border-style: solid;
	border-width: 1px;
}

.warningBox ul, .successBox ul, .errorBox ul{
	text-align: left;
}

.successBox {
	border-color: #060;
	background: #EFE;
	color: #060;
}

.errorBox {
	border-color:#900;
	background: #fee;
	color: #900;
}

.warningBox {
	border-color:#9A5300;
	background: #ffffee;
	color: #9A5300;
}

#footer {
	margin: 30px 20%;
	border-top: 1px solid #aaa;
	color: #707070;
	font-size: 10px;
	padding: 5px;
	text-align:center;
}

.nameSelect {
	margin-top: 5px;
	text-align: center;
}
.nameSelect a {
}
.nameSelect img {
	border: 0;
	text-decoration: none;
	padding-right: 5px;
	padding-left: 5px;
	position: relative;
	top: 1px;
}

/**************** Tab Styles ***********************/
#tabsWrap {
	margin: auto;
	margin-top: 24px;
	margin-bottom: 12px;
	width: 420px; /* size of chart */
	text-align:center;
	border: 1px solid #59b5dc;
	padding: 8px;
	padding-top: 22px;
	position: relative; /* makes this block a container */
}
.tab {
	width: 140px;
	height: 24px;
	display:block;
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-image: url('mk_tabs.png');
	position: absolute;
}
#tabStrip {
	position:absolute;
	top: -12px;
	/* center in container */
	left: 50%;
	margin-left: -140px;
}
#tab1btn {
}
#tab1btn.active {
	background-position: 0px 0px;
}
a#tab1btn.inactive {
	background-position: 0px -24px;
}
a#tab1btn.inactive:hover {
	background-position: 0px -48px;
}

#tab2btn {
	left: 140px;
}
#tab2btn.active {
	background-position: -140px 0px;
}
a#tab2btn.inactive {
	cursor: pointer;
	cursor: hand;
	background-position: -140px -24px;
}
a#tab2btn.inactive:hover {
	background-position: -140px -48px;
}

/* special declarations for IE; it would actually be nice if other browsers supported this */
/* this would scale better with more tabs */
/* these are here as workarounds for IE6's lack of multiple-class selectors in CSS */
#tab1btn {
	background-position-x: 0px;
}
#tab2btn { 
	background-position-x: -140px;}
}
.active {
	background-position-y: 0px;
}
.inactive {
	background-position-y: -24px;
}
a.inactive:hover {
	background-position-y: -48px;
}

.chartLegend {
	text-align:left;
}
.chartLegend li {
	list-style-type: none;
	padding: 3px 0;
	margin: 0;
}
.legendBox {
	width: 16px;
	height: 16px;
	display: -moz-inline-box; /* for FF pre-3 */
	display: inline-block;
	overflow:hidden;
	border: 1px solid black;
	margin-right: 5px;
	position: relative;
	bottom: 2px;
}

.hidden {
	display: none;
}

table.columnLayout {
	margin: auto;
}
table.columnLayout td {
	vertical-align:top;
}

#attrSelect {
	margin: 0 8px 0 0;
}
.filters {
	font-size: 10px;
	line-height: 10px;
}
.filters input {
	font-size: 10px;
	font-family: inherit;
	border: 1px solid #aaa;
	padding:1px;
	text-align:center;
	position:relative;
	bottom: 4px;
}
.filters td {
	padding: 1px 1px;
	text-align:right;
	vertical-align: middle;
}
#filtersWrap {
}

/**************************/
/*** STATS STYLES       ***/
/**************************/
#statsSection {
	margin: auto;
}
.statTableSep {
	width: 30px;
}
table#statsSection td {
	vertical-align: top;
}
tr.alt {
	background: #EFF3F4;
}
.stats {
	margin-top: 10px;
	border-spacing: 0;
}

.stats th {
	color: #fff;
	text-align: center;
	background: #24B6E1;
	text-shadow: #006B82 1px 1px 1px;
	font-weight: bold;
	font-size: 14px;
	padding: 4px;
}

.stats .subHead th {
	color: #000;
	font-size: 13px;
	padding: 2px 3px;
	text-align: center;
	font-weight: bold;
	text-shadow: none;
	background: #cfd4d6;
}

.stats .subHead th.sorted {
	background: #A4AEB2;
}

.stats th:hover {
	cursor: help;
}

.stats td {
	padding: 4px 3px;
	font-size: 12px;
	text-align: center;
}

.stats td.sorted {
	background: #EFF3F4;
}

.stats tr.alt td.sorted {
	background: #DDE2E5;
}
.stats a {
	color: #000;
	cursor: help;
	text-decoration: none;
	display: block;
}
.stats th a:hover {
	background: #B9BEC0;
}