/*   http://www.simegen.com/global/global.css   */

/*  Modifies everything that appears in the data.itxt files. */
.data { 
	color : black;
	font-family : "Bookman Old Style", "Times New Roman", serif;
	background : #FFFFCC;
}

/*  Creates the border color around the top and side bars. */
.border {
	color : black;
	font-family : "Bookman Old Style", "Times New Roman", serif;
	background : #FFCC66;
}


/* Creates the light green text box, with darker green border. */
.clsgreen {
	color : black;
	font-family : "Bookman Old Style", "Times New Roman", serif;
	background : #CCFF99;
	border : thin solid #000800;
        text-align : left;
	font-weight : normal;
}

/*  Creates a bold, centered text headline in the border color. */
.header {
	color : black;
	font-family : "Bookman Old Style", "Times New Roman", serif;
	background : #FFCC66;
	border : thin solid #000800;
        text-align : center;
	font-weight : bold;
}

/*  Creates a bold, centered text headline in the current background color. */
.subheader {
	font-family : "Bookman Old Style", "Times New Roman", serif;
        text-align : center;
	font-weight : bold;
}

/*  Creates the large text blue Headline */
.headline {
	color : blue;
	font-family : "Arial", "Bookman Old Style", "Times New Roman", serif;
        font-size : 200%;
	background-color : transparent;
}

/*  Creates the color border around the Icon image.  Background color should match
 data class */
.icon {
	color : black;
	font-family : "Bookman Old Style", "Times New Roman", serif;
	background : #FFFFCC;
}

/*  Red bold text, left justified. */
.intro {
	color : red;
	font-family : "Bookman Old Style", "Times New Roman", serif;
	background : transparent;
	font-weight : bold;
	text-align : left;
}

/*  Creates small sized text. */
.small {
	font-size : smaller;
}

/*  Creates bold text. */
.strong {
	font-size : larger;
}

/* Creates Italics text. */
.quote {
	font-size : small;
	font : italic;
}

/*  Creates small, green, Italic text inside a box. */
.quote_box {
background-color : #FFFFCC;
        border-top-width : 1px;
        border-bottom-width : 1px;
        border-left-width : 1px;
        border-color : #669900;
        border-right-width : 1px;
        border-style : solid;
        position: relative;
        padding : 8px 8px 8px 8px;
        color : #006633;
        font-size : small;
}

/*  Creates links in brown text. */
A {
	color: #663300;
	font-family : "Bookman Old Style", "Times New Roman", serif;
	text-decoration: underline;
	background-color : transparent;
}

/* Displays links as black when mouse hovers over . */
A:HOVER {
	color: black;
	background-color : transparent;
}

/*  Displays visited links as blue. */
A:VISITED {
	color: blue;
	background-color : transparent;
}

/* Renders text in the body (data.itxt) as blue.  Can be overridden by a subclass. */
BODY {
	/* color: Blue; Deleted 10/12/2011 by SRM */
	background : white;
}


