/* styles  -  ISite */

/* GENERAL NOTES : 
all text types have been defined as classes.
HEAD and TD are defined with font family only, 
in the event that no other styles are called.

Regarding link colors : 
Default link color is blue, so wherever the link should remain black, 
the class of .black must be called INSIDE the anchor tag pair. */

/* head : 
These styles apply sitewide, 
unless overridden by subsequent classes */

HEAD {
	font-family: arial, helvetica, sans-serif;
}

TD {
	font-family: arial, helvetica, sans-serif;
}

/* anchors : 
These styles apply to all anchor tags.
Default link color is currently blue, Visited link is dark gray.
Background color on 'Hover' may be added for highlight when moused over.
The /index.cfm <head> tag still calls link colors. I have not removed these,
so that the pre-stylesheet color can be referenced if necessary  */

A:LINK {
	color: #004737;
}

A:VISITED {
	color: #666666;
}

A:HOVER {
	color: #FF0033;
}

/* classes : 
These styles will apply when called in any tag as a class attribute,
e.g.:  class="[name of class]" */

/* <span class="[name of class]">text</span> tagpair should be used as default style delimiter */

/* newsheader is used for headlines under "news" - /index.cfm */
.newsheader {
font-size: 13px;
}

/* newscaption is used for 'blurbs' under news headlines - /index.cfm */
.newscaption {
font-size: 10px;
color: #000000;
}

/* photocaption is used for photo headlines, under photos - /index.cfm */
.photocaption {
font-size: 11px;
color: #000000;
line-height: 13px;
}

/* header is used for "outside world" headlines, or generic headers - /index.cfm */
.header {
font-size: 14px;
font-weight: bold;
}

/* caption is used for 'blurbs' under outside world news headlines - /index.cfm */
.caption {
font-size: 10px;
}

/* navi is used for left navi option */
.navi {
font-size: 10px;
; font-family: Arial, Helvetica, sans-serif}

/* feature is used for text in the features section.
Notice this class has a line height of 20px!!  - /index.cfm */
.feature {
font-size: 12px;
line-height: 20px;
}

/* black is used in links, wherever default link color is to be overridden with #000000
span class="black" must be used inside anchor tagpairs where links are to remain black!!
e.g.: <a href="[filename.*]"><span class="black">link text here</span></a> */
.black {
color: #000000;
}


.bodytext {  
font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; line-height: 14px; font-weight: normal}
.searchbox {  
font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-style: normal; color: #FFFFFF
}
.redtitle {  font-family: Arial, Helvetica, sans-serif; font-size: medium; font-style: normal; font-weight: bold; color: cc00000}
.bodyspacey {  font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; line-height: 16px; font-weight: normal; color: #000000}
