/*
* Begin reset
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	font-weight: normal;
	text-decoration: none;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none; /* disc is usually default */
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
* END RESET
*/

body{
	margin:0px 0px; padding:0px;
	text-align:center; /*necessary for IE centering*/
	font-family: georgia, serif;
	color: #222;
	line-height: 1.2em;
	background-color: #CCFFFF;
	
}

a:link, a:visited, a:active {
	text-decoration: none;
	color: #888;
	
}

a:hover{
	color: black;
	text-decoration: underline;
	
}

/*
* Navbar links
*/
.navbar{
	padding: 8px 5px;
	border: 1px solid black;
	border-top: 0px;
	margin: 0px;
}

.navbar ul{
	padding: 0px;
	margin: 0px;
}

.navbar li{
	display: inline;
	text-align: center;
	margin: 0px;
	height:1%;
}

.navbar a:link,
.navbar a:visited{
	color: #333;
	/*background: #CCFFFF;*/
	/*padding:20px 40px 4px 10px; //tutorial defaults */
	padding: 5px 10px;
	/*float: left;*/
	width: auto;
	/*border-right: 1px solid;*/
	/*text-transform:uppercase;
	text-shadow: 2px 2px 2px #555;*/
}
.navbar a:hover{
	background-color: white;
	text-decoration:none;
}
.navbar li a.current{
	border-bottom: 1px dashed #222;
	/*text-decoration: line-through;*/
	/*border-color: black;*/
}

/*not currently working*/
.red{
	color: red;
}

.subdued{
	color: #888;
}

/*headers*/
h1{
	text-align: left;
	font-family: calibri, helvetica, sans;
	font-size: 1.8em;
	line-height: 2em;
	text-decoration: none;
		
}

h2 {
	font-family: calibri, helvetica, sans;
	font-size: 1.4em;
	line-height: 1.5em;
	margin-top: 0px;
	
}

/* labels */
acronym{
 border-bottom: 1px dashed black;
}

/*lists*/
ol{
	list-style:decimal outside none;
}

ul{
	list-style:disc outside none;
}

ol, ul{
	padding-left: 30px;
	padding-top: 0px;
	padding-bottom: 10px;
}

/*labels*/
cal{
	cursor: pointer;
}

/*
* classes
*/

/* formatting */
.wcontainer{
	text-align: left;
	margin: 0px auto;
	/*width: 990px;*/
	width: 770px;
}

/* text */
.bold{
	font-weight: bold;
}

/* positioning */
.center{
	text-align: center;
}

/* div classes */
.header{
	text-align: center;
	border-bottom: 1px solid;
}

.floatright{
	float:right;
}

.content{
	text-align: left;
	margin: 0px auto;
	/*width: 990px;*/
	width: 770px;
	border-left: 1px dashed;
	border-right: 1px dashed;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	margin-top: 5px;
	margin-bottom: 5px;
	padding-top: 1px;
	/*border: 1px solid black;*/
}

.history{
	padding-bottom: 10px;
}

/* history div span classes */
	
	.historydate{
		float: left;
		width: 100px;
	}
	.historyline{
		width: 630px;
		display: inline-block;
		}

/* resume div classes */

.bottomlinks{
	margin: 2px;
	padding: 5px;
	border: 0px;
}

.footer{
	border-top: 1px solid;
	text-align: center;
	margin-bottom: 10px;
}

.alert{
	text-align: center;
	clear:both;
	color: red;
	font: 120% bold;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-bottom: 10px;
	border: 2px red solid;
}

.leftcol{
	float: left; 
	/*border: 1px solid black;*/
	width: 200px;
}

.rightcol{
	float:left;
	/*border: 1px solid blue;*/
}
.clearer{
	clear: both;
}
.topspacer{
	margin-top: 20px;
}
.smalltopspacer{
	margin-top: 5px;
}