/* neutralize browser styles */
body, html {
	margin:0;
	padding:0;
	}
/* neutralize browser spacing for vertical elements
	we could do more elements, but this gives us the 
	most widely used block level elements so that we
	control main element spacing without having to 
	add margins back for every block element */
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFF;
}
/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
/*--------------------oneColElsLtHdr styles*--------------------*/
#container {
	width: 960px; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#header {
	padding: 0px;
	margin: 0px;
} 
#header h1 {
	color: #999;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	letter-spacing: 8px;
}
#mainNav {
	text-align: center;
	background-color: #666;
	height: 45px;
	padding-left: 0px;
	margin: 0px;
}
#mainNav a {
	background-color: #666;
	display: inline;
	padding: 10px;
	float: left;
	color: #FFF;
	text-transform: uppercase;
	font-weight: bold;
	text-decoration: none;
	line-height: 25px;
	font-size: 11px;
	letter-spacing: 5px;
	border-right-width: thin;
	border-right-style: solid;
	border-right-color: #999;
}
#mainNav a:hover {
	background-color: #000;
	display: inline;
	padding: 10px;
	float: left;
	color: #CCC;
	text-transform: uppercase;
	font-weight: bold;
	text-decoration: none;
	line-height: 25px;
	font-size: 11px;
	letter-spacing: 5px;
	border-right-width: thin;
	border-right-style: solid;
	border-right-color: #999;

}
#sideNav {
	text-align: left;
	background-color: #666;
	height: 45px;
	margin-left: 35em;
	padding-left: 5em;
}
#sideNav p {
	padding: 10px;
	color: #FFF;
	text-transform: uppercase;
	font-weight: bold;
	text-decoration: none;
	font-size: 10px;
	letter-spacing: 2px;
	display: inline;
	line-height: 40px;
}
#mainContent {
	margin: 1em 1.5em 0 1.5em;
	text-align: center;
} 
#mainContent p {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #666;
	text-align: center;
}
#mainContent h1, h2, h3, h4, h5 {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	color: #666;
	text-transform: none;
	font-variant: small-caps;
	font-weight: normal;
}
#mainContent #thumbIndex {
	margin-bottom: 20px;
	text-align: center;
}
#mainContent #thumbIndex p {
	text-align: center;
	margin-bottom: 5px;
}

#mainContent #thumbIndex img {
	margin: 5px;
}
#mainContent #thumbIndex a img {
	border: medium outset #666;	
}
#mainContent #thumbIndex a:hover img {
	border: medium outset #FFF;
}
#footer {
	text-align: center;
	margin-top: 1em;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
#footer p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #999;
}
#mainContent table {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #FFF;
	margin-left: 22em;
}
#mainContent table#resumeTbl {
	width:800px;
	background:none;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#mainContent #resumeTbl thead {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:1em;
	color:#fff;
	font-weight:normal;
	border-bottom:thin;
	border-bottom-color:#FFF;
	text align:left;
}
#mainContent #resumeTbl tbody {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:1em;
	color:#666;
	font-weight:normal;
	text-align:left;
	vertical-align: top;
}
#mainContent #resumeTbl tbody.bold {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:1em;
	color:#fff;
	font-weight:bold;
	text-align:left;
}
#mainContent #resumeTbl caption {
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 1.4em;
	font-weight:bold;
	color: #666;
	text-align:center;
	padding-bottom:0.5em;
	text-decoration:underline;
	margin-top:1em;
}

