/*
	NS4 doesn't do well with added colors because of the extra padding added inside each
	block element. So colors are imported. This theme file will, thus, contain mostly
	font stuff.
 */
@import "colors.css";

/*** Left Column ***/
#innerLeftColumn p
{
	font-family: 'Comic Sans MS', Arial, Helvetica;
	padding-bottom: 1px;
	
	/* font-size: 80%; */
	line-height: 100%;
	/*/*/ /*/line-height: normal;/* NS4 Adds too much space, so reset the line-height */
}
#innerLeftColumn h3
{
	/* color: #006; */
	margin: 1em 0 0 0;
	font-family: 'Comic Sans MS', Arial, Helvetica;
	text-align:center;
}

/*This is use to try and get eMenuTree to look right*/
#innerLeftColumn TD
{
text-align: left;
}


/*** Content ***/
#innerContentColumn
{
	font-family: 'Comic Sans MS', Arial, Helvetica;
}
#innerContentColumn h3
{
	/* color: #009; */
	text-align: center;
}

#innerContentColumn p.pos_center
{
text-align: center;	
}

/*** Masthead ***/
#masthead 
{
height: 150px;	/* Added - this is the hieght of the images*/
}

#masthead h1
{
	font-family: Georgia, "Times New Roman", serif;
}

/*** Footer ***/
#innerFooter
{
	font-family: verdana, helvetica, sans-serif;
	font-size: 60%;
}

/*** Horizontal Navigation Area ***/
.hnav
{
	font-family: verdana, helvetica, sans-serif;
	font-weight: bold;
	font-size: 70%;
}

/*** Vertical Navigation Area ***/
.vnav
{
	font-family: verdana, helvetica, sans-serif;
	font-weight: bold;
	font-size: 70%;
	line-height: 180%; /* Mozilla suffers from a rounding problem, 
						  this value may have to be tweaked if you 
						  change the font family or size 
						*/
	/*/*/ /*/line-height: 120%;/* NS4 Adds too much space, so lower it */
}


/* These are classes that are used to bring the code closer to xhtml 1.0 strict compliance */
/* image alignment classes */
#innerContentColumn img
{
padding-top: 2px;
}

img.pos_right
{
display: block;
float: right;	
}

img.pos_left
{
display: block;
float: left;	
}

.pos_center
{
 text-align: center;   /*This is bad I think*/
}

/*This class used for my comments and warnings */
.comments
{
color: #336;

}

.warning
{
	color: red;
	font-style: normal;
	font-weight: bold;
}

.standoutText
{
color: blue;
}

