﻿/*

		ANCHOR CLASSES
		add only classes that affect the <a> element

*/
a {
	color: #00106b;
}

/*

		BODY CLASSES
		add only classes that affect the <body> element
		this also contains the primary (default) body class

*/
body {
	background-color: #fff;
	color: #444;
	font-family: Arial, sans-serif;
	font-size: 81%; /* allows us to use em for font sizes (use also: 76%, 81%, 101%) */
	line-height: 1.8em;
	margin: 0px;
	padding: 0px;
}

/*

		FONT CLASSES
		these classes are focused solely on modifying font attributes
		if styles other than strictly font styles are being modified
		do not add them here

*/
div, h1, h2, h3, h4, h5, h6, p, span, table, td, textarea, ul {
	font-size: 1.0em;
}
/*

		FONT NAME EXCEPTIONS
		any elements that do not properly inherit the font-family go here

*/
textarea {
	font-family: Arial, sans-serif;
}

/*

		HEADING CLASSES
		add only classes that affect the <h(1-6)> tags

*/
h1 {
	color: #214776;
	font-size: 2.0em;
	font-weight: bold;
}
h1.SubTitle {
    color: #001873;
    font-family: Times New Roman, Serif;
    font-size: 2.8em;
    font-style: italic;
    font-weight: bold;
}
h2 {
	color: #214776;
	font-size: 1.75em;
	font-weight: bold;
}
h3 {
	color: #214776;
	font-size: 1.5em;
	font-weight: bold;
}
h4 {
	color: #214776;
	font-size: 1.40em;
	font-weight: bold;
}
h5 {
	color: #214776;
	font-size: 1.35em;
	font-weight: bold;
	margin-bottom: 3px;
}
h6 {
	color: #011170;
	font-size: 1.13em;
	font-weight: bold;
}

/*

		HORIZONTAL RULE CLASSES
		add only classes that affect the <hr /> element

*/
hr {
	background-color: #888;
	border: none;
	color: #888;
	height: 1px;
}




/*
		CUSTOM CLASSES
		add only custom classes that will be used in numerous
		locations - do not put one-time classes here
*/
div.Dotted {
	background-image: url(Images/Layout/DivDots.gif);
	background-position: -2px -2px;
	background-repeat: repeat;
}