@charset "UTF-8";
/* CSS Document */

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:#333; /* makes the text dark gray */ 
}

img {
	border: none;
}

#container {
	position: relative;
	top: 0;
	left: auto;
	width: 925px;
	margin: 0 auto;
}

#name {
	position: absolute;
	top: 50px;
	left: 0px;
	margin: 0;
	width: 160px;
	z-index: 1;
}

#main {
	position: absolute;
	top: 80px;
	left: 160px;
	margin: 10px;
	width: 600px;
	height: 460px;
	z-index: 1;
	overflow:auto;
	text-align: center;
}

#main img {
	padding: 10px 10px 10px 10px;
}

#title {
	position: absolute;
	top: 0;
	left: 160px;
	margin: 0 auto;
	width: 620px;
	z-index: 1;
}

#gradient {
	position: absolute;
	top: 80px;
	left: 160px;
	margin: 0 auto;
	width: 620px;
	height: 460px;
}

#sidelinks {
	position: absolute;
	top: 80px;
	left: 790px;
	margin: 0;
	width: 165px;
	text-align: left;
	z-index: 1;
}

#btmlinks {
	position: absolute;
	top: 540px;
	left: 160px;
	margin: 0 auto;
	width: 620px;
	z-index: 1;
	text-align: center;
	vertical-align: top;
	font-size: small;
}


/* 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 The floated element must precede the element it should be next to on the 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 its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.small {
	font-size:smaller;	
}

.ital {
	font-style:italic;
}

.bold {
	font-weight:bold;
}


/* links */

a:link {
	color: #333;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #333;
}
a:hover {
	text-decoration: underline;
	color: #606;
}
a:active {
	text-decoration: none;
	color: #333;
}
 
/* CV Classes */
.header {
	font-variant:small-caps;
	font-weight:200;
	letter-spacing:+2;
}

.date {
	text-align:left;
	padding-right:2em;
}

.jobtitle {
	font-weight:200;
}

.showtitle {
	font-style:italic;
}

.indent {
	padding-left:2em;
}


