@charset "utf-8";

body  {
	height:100%;
	background-color:#000000;
	background-position:center top;
	background-attachment:fixed;
	background-repeat:no-repeat;
	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 */
	}
	
#container {
	height: 100%;
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	top: auto;
	position: relative;
	} 

#header {
	width: 1000px;
	height: 100%;
	padding-top: -10;
	padding-right: 0;
	padding-bottom: -15;
	padding-left: 0px;
	bottom: 0px;
	margin: 0px;
	} 

.headerImage {
	margin-bottom: 0px;
}	
	
#navbar {
	margin-top: 15px;
	margin-bottom: -15px;
	}

#mainContent-FullWidth {
	width: 950px;
	height: 100%;
	padding-top: 0px;
	padding-right: 25px;
	padding-left: 25px;
	padding-bottom: 100px;
	} 
	
#mainContent-withSidebar {
	min-height: 100%;
	height: 100%;
	width: 737px;
	padding-top: 0px;
	padding-right: 100px;
	padding-left: 20px;
	margin-right:200px;
	margin-top:0px;
	} 
	
#sidebar1 {
	height: 100%;
	float: right; /* since this element is floated, a width must be given */
	width: 210px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: ; /* the background color will be displayed for the length of the content in the column, but no further */
	background-image:url(../images/bg_images/sidebar-bg.png);
	background-position:top left;
	background-repeat:repeat-x;
	text-align:right;
	padding: 10px;
	}
		
#footer {
	clear:both;
	background-image: url(../images/footer%20new.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	text-align: right;
	vertical-align: bottom;
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #2d4fff;
	width: 100%;
	height: 50px;
	right: 5px;
	bottom: 0;
	position:relative
	} 
	
#resumeText {
	padding-left:75px;
	padding-right:80px;
	text-align:justify;
	}
	
.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;
	}
