/* Default CSS Stylesheet for a new Web Application project */

/**Layout Divs**/
/*this container centers the content in the browser and fixes the overall width*/
    #wrapper {
	width: 800px;
	margin: 0 auto;
	text-align: left;
	font-size: 80%;
	color:  Black;
	line-height: 1.5em;
}
/*this container holds the logo and heading graphic*/
    #header {
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FF9300;
	top: 36px;
	}
	
/*this container holds the logo graphic */
	#logo {
	background-repeat: no-repeat;
	height: 56px;
	top: 0px;
	right: 0px;
	width: 120px;
}
/*this container holds the horizontal navigation bar */
    #navbar {
	background-image: url(images/index_bar_thin.gif);
	background-repeat: repeat-x;
	height: 17px;
	width: 800px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #98a5cb;
	border-left-color: #98a5cb;
}	
	#midbar {
	border-left: 1px solid #98a5cb;
	border-right: 1px solid #98a5cb;
width: 800px;
		top: 50px;
		background-repeat: repeat-x;
	background-image: url('images/index_bar_thin.gif');
		height: 17px;
	}
/*this container holds the left-hand text boxes */
#holderdiv {
	padding-right: 10px;
	padding-left: 10px;
	margin-right: 10px;
	width: 190px;
}
/*the individual text boxes in the left-hand column*/
.leftcoldiv {
	margin: 10px 0;
	border: 1px solid #323c5a;
	background-color: #eaecf4;
}

.leftcoldivlight {
	margin: 10px 0;
	border: 1px solid #323c5a;
	background-color: #f5f7ff;
	}
/**Redefined html tags**/
/*defines the font and page background image */
 body {
	font-family: Verdana;
	text-align: center;
	font-size: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #000000;
	background-color: #FFFFFF;
	}
/*sets margins to 0 */	
p {
	margin-top: 0px;
	margin-bottom: 0px;
}
/*styles the text in the right-hand column */
#wrapper p {
	margin-top: 0px;
	margin-bottom: 0px;
	padding-right: 20px;
	padding-left: 8px;
}
/*styles the text in the left-hand column */
.leftcoldiv p {
	margin: 5px 0;
	padding: 5;
	color: #323c5a;
	font-size: 90%;
	line-height: 1.3em;
}

.leftcoldivlight p {
	margin: 5px 0;
	padding: 5;
	color: #323c5a;
	font-size: 90%;
	line-height: 1.3em;
}
/*style the heading text */
.leftcoldiv h2 {
	margin: 0;
	background-color: #98a5cb;
	color: #000000;
	font-size: 120%;
	padding: 1px 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #323c5a;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #bec6df;
	font-family: Verdana;
	font-weight: bold;
}

.leftcoldiv h3 {
	margin: 0;
	background-color: #ff9300;
	color: #000000;
	font-size: 120%;
	padding: 1px 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #323c5a;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #fec16f;
	font-family: Verdana;
	font-weight: bold;
}
.leftcoldivlight h4 {
	margin: 0;
	color: #000000;
	font-size: 120%;
	padding: 1px 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #323c5a;
	background-image: url(images/index_h4bg.gif);
	background-repeat: repeat-x;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #f5f7ff;
	font-weight: bold;
	font-family: Verdana;
}


h1 {
	font-size: 130%;
	margin: 0px;
	color: #000000;
	padding-top: 6px;
	padding-left: 10px;
	font-family: Verdana;
}
h2 {
	font-size: 120%;
	color: #000000;
	margin-top: 4px;
	margin-bottom: 2px;
}
/*defines the style for ordered lists (numbered) */
ol {
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 25px;
	color: #FFFFFF;
}
/*link styles*/
a:link {
	color:  Black;
}
 a:visited {
	color:  Black;
}
 a:link:hover {
	color:  Red;
}
a:visited:hover {
    color:  Red;
}
/*defines color for horizontal divider*/
.divider {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
}
/*floats element to the left*/
    .left {
	float: left;
}
/*floats element to the right*/
   .right {
	float: right;
}
/*styles the footer*/
.footer {
	border-left: 1px solid #98a5cb;
	border-right: 1px solid #98a5cb;
	border-top: 2px solid #ff9300;
	border-bottom: 1px solid #54628a;
	font-size: 90%;
	background-image: url('images/index_bar.gif');
		background-repeat: repeat-x;
	width: 800px;
		text-align: center;
		padding-top: 4px;
		padding-bottom: 8px;
		color: #323c5a;
	}
