@charset "UTF-8";
body  {
	font: 85%/170% Georgia, "Times New Roman", Times, serif;
	background: #6b3664;
	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;
	margin-top:10px;
}
p, h1, h2, h3, h4, h5, h6, li {
    margin: 0;
	padding:0;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF url(../images/burst.gif) no-repeat 125px -10px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 3px solid #d9e252;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#header {
	padding: 20 20px 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	text-align: right;
	margin-top: 20px;
	margin-right: 20px;
	position: relative;
	margin-bottom: 20px;

} 
#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 */
}
#nav {
	width:780px;
	height: 22px;
	margin:0;
	padding:0;
	background: #D9E050 url(../images/nav.png);
		position: relative;

}
#nav li {
	float:left;
	list-style: none;
}
#nav li a {
	position:absolute;
	top:0px;
	margin:0;
	padding:0;
	display: block;
	float: left;
	height: 22px;
	background-image: url(../images/nav.png);
	text-indent: -9999px;
	overflow:hidden;
}
li#nav_about a {
  left: 0;
  width: 100px;
  background-position: 0 0;
}
li#nav_portfolio a {
  left: 100px;
  width: 120px;
  background-position: -100px 0;
}
li#nav_news a {
  left: 220px;
  width: 100px;
  background-position: -220px 0;
}
li#nav_contact a {
  left: 300px;
  width: 110px;
  background-position: -300px 0;
}

li#nav_about a:hover {
  background-position: 0 -22px;
}
li#nav_portfolio a:hover {
  background-position: -100px -22px;
}
li#nav_news a:hover {
  background-position: -220px -22px;
}
li#nav_contact a:hover {
  background-position: -300px -22px;
}

#body_about li#nav_about  a {
  background-position: 0 -44px;
  cursor: default;
 }
#body_portfolio li#nav_portfolio a {
  background-position: -100px -44px;
  cursor: default;
}
#body_news li#nav_news a {
  background-position: -220px -44px;
  cursor: default;
}
#body_contact li#nav_contact a {
  background-position: -300px -44px;
  cursor: default;
}

#sidebar1 {
	float: left;
	width: 150px;
	padding: 0;
	margin: 0;
	padding: 60px 10px 15px 40px;
}
#sidebar1 ul {               
    list-style: none;
    margin: 0;
    padding: 0;
}

#sidebar1 li {              
    margin: 0;
    padding:0;
	}
#sidebar1 img {
	margin-top: 20px;
    
}
#mainContent {
	float: right;
	width: 500px;
	margin: 0;
	padding: 60px 45px 0 15px;
}
#mainContent p {
	padding:0;
	}
#mainContent h1, #mainContent h2, #mainContent h3, #mainContent h4 {
	font-family: "Trebuchet MS", sans-serif;
	color: #cdd64d;
	font-weight: bold;
}

#mainContent h2 {
	color: #d4dd50;
	margin: 1em 0 0ex;
	font: bold 1.6em Georgia, "Times New Roman", Times, serif;
}
#mainContent h3 {
	color: #6C3864;
	margin: 1em 0 0ex;
	font: bold 1.2em/1em "Trebuchet MS", Arial, Helvetica, sans-serif;
	padding-bottom: 8px;
}
#mainContent .box {
	padding: 12px;
	background: #d9e252;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	width:259px;
	float:right;
	margin-left:8px;
	margin-top:12px;
	}
#mainContent a {
	color: #53A09A;
	text-decoration: none;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
		}
#mainContent a:hover {
	color: #611172;
	text-decoration: none;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
		}
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #D9E252;
}
.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;
}
.indent {
	text-indent: 20px;
	}
.cite {
	font-size:70%;
	padding-top:20px;
	font-style: italic;
	line-height: 140%;
	}
#sidebar1 h6 {
	text-align: right;
	font-size: 70%;
	line-height: 100%;
	padding-top:5px;
}
