@charset "utf-8";
body  {
	font: 100% Arial, Helvetica, sans-serif;
	line-height: 15px;
	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: #000000;
}
.layout #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height:530px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding-top:72px;
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

a:link {text-decoration: none; color: #8CC63F;}
a:visited {text-decoration: none; color: #8CC63F;}
a:hover {text-decoration: underline; color: #8CC63F;}

#header { 
	padding: 0;
	text-align:left;
} 
#header_index { 
	padding: 0 76px 0 0 ;
	text-align:left;
	float:right;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#name {
  position:relative;
  vertical-align:top;
  height:18px;
  width:145px;
}
#bar {
  position: relative;
  margin: 0;
  padding:0;
  width: 145px;
  height: 17px;
  background-color: #8CC63F;
}
#bar_index {
  position: relative;
  margin: 0;
  padding:0;
  width: 145px;
  height: 17px;
  background-image: url(../images/thumbnails/leftbar.jpg);
  background-color: #8CC63F;
  background-repeat: no-repeat;	
}
#menu {
  position: relative;
  margin: 0;
  padding:4px 0 0 0;
  width: 145px;
  height: 17px;
  vertical-align:bottom;
}





#portfolio {
	float: left; /* since this element is floated, a width must be given */
	width: 145px; /* 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 */
	padding: 10px 0 0 0; /* padding keeps the content of the div away from the edges */
}
.l {
  padding: 0 10px 10px 0;
}
.r {
  padding: 0 0 10px 0;
}
.bottom {
  padding: 10px 0 0 0;
}
#portfolio h1 {
   font-size:10px;
   color: #8CC63F;
   padding: 0;
   margin: 0;
   font-weight:normal;
   vertical-align:bottom;
   text-align:left;
}




#info {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* 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 */
	padding: 0;
}
#info p {
    font-size:11px;
	color: #000000;
	text-align: left;
}
#info h3 {
    margin: 0;
	padding:0;
    font-size:11px;
	color:#8CC63F;
	font-weight:normal;
}
#info h4 {
    margin: 0;
	padding:0;
    font-size:10px;
	color:#000000;
	font-weight:normal;
}


.green {color:#8CC63F;}
#mainContent {
	margin: 0 200px 0 200px;
	padding: 0;
} 
#mainContent p {
    font-size:11px;
	color: #666;
	text-align: left;
	padding:0 0 5px 0;
	margin:0;
}
.resume {
   height:370px;
   width:445px;
   padding-right:20px;
   overflow: auto;
}
#mainContent h1 {
   font-size:11px;
   font-weight: bold;
   margin:0;
   }
#mainContent h2 {
   font-size:11px;
   font-weight: bold;
   margin:0;
   }


#image {
    position:relative;
	height:280px;
	width:380px;
	margin: 0 auto;
	padding:0;
	text-align: center;

}
#views {
  position:absolute;
  top: 306px;
  left: 200px;
  height:20px;
  padding:30px 0 0 0;
  margin:10px 0 0 0;
  text-align: right; 
}



#footer { 
	padding: 0;
	width: 780px;
	position:absolute;
	top: 530px;
} 
#footer p {
	margin: 0; 
	padding: 10px 0; 
	color:#8CC63F;
	font-size:11px;
	text-align:right;
}



.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;
}
