@charset "utf-8";

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	/*font: 100% Trebuchet MS,Verdana, Arial, Helvetica, sans-serif;*/
	background: #FFFFFF;
	/*background:#2398D2 url(images/footsteps_blend.jpg) 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 */
	color: #000000;
	font-size: 12px;
}
.main #container {
	width: 900px;  /* 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: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.main #header { 
	background: #FFFFFF;
	padding: 0 0px 0 0px;  /* 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. */
} 
.main #selection {
	background-image: url("images/sel_back.jpg");
	background-repeat: repeat-x;
	text-align: center;
	padding: 0px 0px 0px 0px;  /* 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. */
} 
.main #sidebar1 {
	background-image: url("images/sidebarback.gif");
	background-repeat: repeat-y;
	color: #333333;
	float: left; /* since this element is floated, a width must be given */
	width: 100px; /* 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: 0px 0px 0px 0px;
	height: 300px
}
.main #mainContent { 
	/*margin: 0 0 0 150px;*/ /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	margin: 0 0 0 0;
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	/*border-style: solid;*/
	/*border-color: #FFFFFF rgb(127,159,170) #FFFFFF rgb(127,159,170);*/
	border-color: #FFFFFF rgb(220,0,0) #FFFFFF rgb(220,0,0);
	border-style: double;
} 
.main #mainContent p {
	margin: 0px;
}
.main #services {
	margin: 0px 400px 0px 00px;
}
.main #resHeader{
	color:#000099;
	font-weight: bold;
	background-image: url("images/sidebarback.gif");
	background-repeat: repeat-y;
}
.main #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-image: url("images/sel_back.jpg");
	background-repeat: repeat-x; 
	text-align: center;
	font: 10px Verdana, Helvetica, sans-serif;;
} 
.main #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 */
}

