﻿/* stylesheet.css */

/*Page Header Style*/

#header{
	
	width:100%;
	border-bottom: thin solid #191970;
}

/*Page footer style*/

#footer{
	clear:both;
	width:80%;
	margin-left:10em;
	background-color:#dddddd;
	background-repeat:repeat;
	border-top: thin solid #191970;
	padding-top:4px;
}
/*Add some margin space to main content*/
#main{
	margin:2em;
	/*margin-left must equal*/
	/*total width of left sidebar*/
	margin-left:10em;
}

#sidebar{
	float:left;
	display:inline;
	padding:0;
	margin-top:4em;
	margin-right:1em;
	margin-left:1em;
	width:8em;
	/*total width is 10em*/
	background-color:#002C65;
	font-family:Futura T, Times, Serif;
}

/*Body text and page background*/
body { 

	margin:0;	
	padding:0;
		
}

.email{
	color:black;
	text-decoration:underline;	
	
	}

/* Unvisited Links (no underline)*/
a:link{
	color:#ffffff;
	text-decoration: none;
}


/*Visited Links*/
a:visited{
	color:#ffffff;
	text-decoration:none;
}

/*Hover Links (underline)*/
a:hover{
	color:#ffb515; 
	text-decoration:none;
}

/*Active Links (green Underline)*/
a:active{
	color:#ffb515;
	text-decoration: none;
}
/*Level 1 headings*/
h1{
	font-family:Futura T, Times, Serif;
	font-size:48pt;
	font-weight:bold;
	color:#ffffff;
}

/* Level 2 headings */
h2{
	font-family:'Arial Black', Impact, Charcoal, fantasy;
	color:#1F2159
}

/* Level 3 headings */
h3{
	font-family:Arial, Helvetica, sans-serif;
	font-style:italic;
	text-decoration:underline;
	color:#1F2159;
}

/* Feneric style class for highlighting text*/
.hilight{
	background-color:#ffff00;
}

/*Paragraphs styled as tips */
p.tip{
	background-color:#ACD095;
	margin-left:100px;
	margin-right:100px;
	padding:5px;
	border:solid thin #167A58;
}

/*Paragraphs styled as warnings*/
p.warning{
	background-color:#FFCCFF;
	margin-left:100px;
	margin-right:100px;
	padding:5px;
	border:solid thin #ff0000;
}

/* Float image to left of paragraph */
img.floatLeft{
   	float: left;
   	margin-right: 5px;
}

/* Float image to right of paragraph */
img.floatRight{
   	float: right;
}

/* Center image between margins */
div.center{
   	width: 100%;
   	text-align: center;
}

/*Custom bullet for bulleted lists*/
/*ul{
	list-style-image: url("pix/bullets/ani-smiley.gif");
}*/

/*Stlye for tables of thumbnail images*/
table.thumbs{
	text-align:center;
	border-collapse:collapse;
	margin: auto;
}

/*Style for table cells that contain thumbnails*/
td.thumbs{
	border:solid 5px #FFB515;
	padding:2px
	
}

/*Style for thumbnail images*/
img.thumbs{
	width:100px;
	border-width:5px;
}

/* General style for horizontal lines */
hr{
	background-color: #0000ff;
	color: #0000ff;
	width: 80%;
}
