@charset "utf-8";
body  {
	font: 14px Verdana, Geneva, sans-serif;
	line-height:20px;
	background: #666666;
	margin:0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding:0px;
	text-align: center;
	color: #000000;
}

h1 {
font-size:20px;
font-family:Verdana, Geneva, sans-serif;
text-align:center;
background-image:url(images/hbar.png);
width:300px;
height:35px;
}

h2 {
font-size:12px;
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
text-align:left;
color:#090;
line-height:10px;
padding-left:12px;
margin-left:15px;

background-image:url(images/check.jpg);
background-repeat:no-repeat;
}


.layout #container { 
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

.layout #header { 
	height: 200px;
	background-image:url(images/computer-repair.jpg);
} 
.layout #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 */
}
.layout #sidebar1 {
	float:left;
	height:100%;
	width: 100px;
	background-image:url(images/linksbar.gif);
	border-bottom: 1px solid #000;
	padding-right:15px;
	margin:0px;
	padding-top:0px;
	margin-top:0px;
}
.layout #sidebar2 {
	position: absolute;
	top: 200px;
	right: 0;
	width: 170px; /* 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: 15px 10px 15px 10px; /* padding keeps the content of the div away from the edges */
}
.layout #mainContent { 
	margin-left:135px;
	width:450px;
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	padding-top:10px;
}

.layout #content {
	border:thin dotted #000;  
	background-color:#FFF;
	margin-top:-20px;
	padding-left:5px;
}
	 
.layout #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
.layout #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 */
}
.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;
}

#navcontainer ul li {
display:block;
list-style-type: none;
font: 15px/25px "Lucida Grande", verdana, sans-serif;
width:115px;
text-align:center;
margin-left:-40px;
}

#navcontainer a
{
color:#00F;
text-decoration: none;
display:block;
width: 115px;
border-top: 1px solid #000;
margin:0px;
}
#navcontainer a:hover { background-image:url(images/linksa.gif)  }
