img {
	border-style: none;
}
body {
  font-family: Verdana,Tahoma,Arial,Helvetica,Serif,Sans;
  margin-left: 0.2in; 
  margin-top:0.5in; 
  margin-bottom:0.5in; 
  margin-right: 0.2in;
/*  text-align:center;  fix IE5.5 and up centering bug */
}

p { 
  font-family: Verdana,Tahoma,Arial,Helvetica,Sans-Serif;
  font-size: 12pt;
  color: black;
  background: transparent;
}

h1 {
  text-align: center;
  font-style: normal;
  font-family: "Apple Chancery","URW Chancery L","Monotype Corsiva",Georgia,Verdana,Tahoma,Arial,Helvetica,Sans-Serif;
  font-weight: bold;
  font-size: 36pt;
 }

h2 {
  text-align: center;
  font-style: normal;
  font-family: Verdana,Tahoma,Arial,Helvetica,Sans-Serif;
  font-weight: bold;
}

h3 {
  text-align: center;
  font-style: normal;
  font-family: Verdana,Tahoma,Arial,Helvetica,Sans-Serif;
  margin-bottom: 0pt;
  margin-top: 0pt;
}


h4 {
  font-style: normal;
  font-family: Verdana,Tahoma,Arial,Helvetica,Sans-Serif;
  font-weight: bold;
  margin-bottom: 0pt;
}

h5 {
  font-style: normal;
  font-family: Verdana,Tahoma,Arial,Helvetica,Sans-Serif;
  font-weight: bold;
  margin-bottom: 0pt;
  margin-top: 0pt;
}

.emphasisStyle {
	font-weight: bold;
}

.centerContainer {
    margin-left: auto;
    margin-right: auto
}

.leftText {
	text-align: left;
}

.rightText {
	text-align: right;
}

.centerText {
	text-align: center;
}

.alignTop {
	vertical-align: top;
}

.makeBlock {
	display: block;
}

.topText {
	vertical-align: text-top;
}

.contentTitle {
  font-style: normal;
  font-family: "Apple Chancery","URW Chancery L",Georgia,Verdana,Tahoma,Arial,Helvetica,Sans-Serif;
  font-weight: bold;
  font-size: 36pt;
}

pre {
  overflow: auto;
}

.popup {
	color: #9F141A;
	cursor: help;
	text-decoration: none;
}

#contentCell {
  text-align: justify;
  padding-left: 10px;
  padding-right: 10px;
}

.bodyTextStyle {
  font-size: 10pt;
  font-family: Verdana,Tahoma,Arial,Helvetica,Sans-Serif;
  color: black;
  background: transparent;
}

#courseListLeft {
	text-align: left;
	border-right-color: brown; 
	border-right-style: dotted; 
	border-right-width: thin;
	vertical-align: text-top;
}

#courseListRight {
	text-align: left;
	vertical-align: text-top;
}

.zeroVerticalMargin {
  margin-bottom: 0pt;
  margin-top: 0pt;
}

.blackOverrideStyle { 
  color: black ! important;
  background: white ! important;
}

.bodyColorStyle {
	color: #98efff; 
}

/* Yellow */
.color1Style {
	color: #ffd20a;
}

/* Aqua */
.color2Style {
	color: aqua;
}

/* Green */
.color3Style {
	color: #6ee845;
}

/* Blue */
.color4Style {
	color: blue;
}

/* Darker Green */
.color5Style {
	color: #4bb225;
}

/* Dark Brown */
.color6Style {
	color: SaddleBrown;
}

/* light cream */
.color7Style {
	color: #fff6e1;
}

.warningStyle {
  color: red;
  background: yellow;
  text-align: center;
}

.tblBkgrnd { background-image: url(../images/leatherTexture3.gif);
}

.contentBkgrnd {
	background-image: url(../images/parchment.gif);
	/* This is here only to fix a bug in IE 6 
	   where the background displays erratically 
	   even with a window refresh. See companion
	   declaration below.
	   From: http://www.webcredible.co.uk/user-friendly-resources/css/internet-explorer.shtml
	height: 1%; ;
	  */
        position: relative;
        min-height: 1px;
}

html > body .contentBkgrnd {
	/* This is here only to fix a bug in IE 6 
	   where the background displays erratically 
	   even with a window refresh. See companion
	   declaration below.
	   From: http://www.webcredible.co.uk/user-friendly-resources/css/internet-explorer.shtml
	  */
	height: auto;
}


.cellHeaderStyle  { 	
	color: #ffd20a;
	background: #490707;
}

.cellStyle  { 	
	color: #ffffff;
} 

.rigidWidth50 {
  width : 50px;
}

.rigidWidth85 {
  width : 85px;
}

.rigidWidth100 {
  width : 100px;
}

.rigidWidthLeftSideBar {
  width : 232px;
}

.rigidWidthRightSideBar {
  width : 110px;
}

.leftContent {
	position: absolute;
	left:10px;
	top:50px;
	width:260px;
	}

.centerContent {
  		margin-left: 232px;
  		margin-right:110px;
	/*
	IE5x PC mis-implements the box model. Because of that we sometimes have
	to perform a little CSS trickery to get pixel-perfect display across browsers.
	The following bit of code was proposed by Tantek Celik, and it preys upon a CSS
	parsing bug in IE5x PC that will prematurly close a style rule when it runs
	into the string "\"}\"". After that string appears in a rule, then, we can override
	previously set attribute values and only browsers without the parse bug will
	recognize the new values. So any of the name-value pairs above this comment
	that we need to override for browsers with correct box-model implementations
	will be listed below.
	
	We use the voice-family property because it is likely to be used very infrequently,
	and where it is used it will be set on the body tag. So the second voice-family value 
	of "inherit" will override our bogus "\"}\"" value and allow the proper value to
	cascade down from the body tag.

	The style rule immediately following this rule offers another chance for CSS2
	aware browsers to pick up the values meant for correct box-model implementations.
	It uses a CSS2 selector that will be ignored by IE5x PC.
	
	Read more at http://www.glish.com/css/hacks.asp
	*/
	
	voice-family: "\"}\"";
	voice-family: inherit;
  		margin-left: 232px;
  		margin-right:110px;
	}

html>body centerContent {
  		margin-left: 232px;
  		margin-right:110px;
	}

.rightContent {
	position: absolute;
	right:10px;
	top:50px;
	width:110px;
	}

.underlineStyle {
  text-decoration: underline;
}

/* corn silk
li, td  { 	
	color:#fff8dc;
	font-size:10pt
}  */

/* magenta #ff00e5 */
/* light cream */
.footerLink A:link {
	color: #fff6e1;
	background: transparent;
	text-decoration:none;
}

/* light cream */
.footerLink A:visited { 	
  	color: #fff6e1;
	background: transparent;
  	text-decoration: none;
}

.footerLink A:active { 	
  	color: red;
	background: transparent;
  	text-decoration: none;
}

/* lemon yellow #fffa00 */
/* light magenta */
.footerLink A:hover { 	
  	color: #fcacff;
	background: transparent;
	text-decoration:none
} 

.contentLink A:link {
	color: blue;
	background: transparent;
	text-decoration:none;
}

.contentLink A:visited { 	
  	color: blue;
	background: transparent;
  	text-decoration: none;
}

.contentLink A:active { 	
  	color: green;
	background: transparent;
  	text-decoration: none;
}

/* dark sky blue #1187ff */
/* lemon yellow #fffa00 */
/* dark green */
.contentLink A:hover { 	
  	color: #278f24;
	background: transparent;
	text-decoration:none
}

.horizRule { 
	border-top: solid medium yellow;
}

/* horizontal rule */
.horizRule2 {
  border-width:         thin;
  border-style:         solid;
  border-bottom-width:  0;
  border-color:         silver;
}

.bottomBorder1Style {
  border-bottom-width: thin;
  border-bottom-style: solid;
  border-bottom-color: brown;
}

.superscript {
	vertical-align: super;
}

.subscript {
	vertical-align: sub;
}

.tinyFont {
  font-size: 6pt;
}
