@charset "UTF-8";

body {margin:0; padding:0; color: #3f3f3f; font-family: "Lucida Grande", Lucida, Verdana, sans-serif; font-size:62.5%; background-color: #edf4fe; text-align: left;  /** 62.5% defaults all text size to 10px **/}

h1, h2, h3 {margin:0; padding:0; font-family: "Lucida Grande", Lucida, Verdana, sans-serif;}
h1 {font-size: 1.5em; margin:1em 0 0 0;
	color: #0090d2;
	line-height: 1.7em;
	font-weight: bold;
}
h2 {font-size:1.2em; margin:1em 0 0 0;}
h3 {font-size:1.1em; margin:1em 0 0 0;}

p {font-size: 1.1em; line-height:1.7em; margin:0 0 1em 0;}
p.small {font-size:1em;}
img {border:0;}


/* Accessibility */
.hide {font-size:1px; height:1px; line-height:0px; overflow:hidden; position:absolute; left:-9999px; top:-9999px;}


/* Building blocks */

#container { 
	margin:auto; /* the auto margins (in conjunction with a width) center the page */
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(../images/wrapper_background.gif) repeat-y;
	padding-bottom:0px;
	position:relative; 
	/* border: 1px solid #000000; */
	/* text-align: left; /* this overrides the text-align: center on the body element. */
} 


#header { 
	width: 768px; 
	height: 200px;
	background: #999999;
	margin-left: 16px;
	padding: 0;
	margin-right: 16px;
} 
#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 */
	font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
}

#mainContent { 
	margin: 30px 0 50px 230px; /* 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. */
	width: 530px;
	/* padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

#mainContent p {}
#mainContent p.quote {font-size: 1.3em; font-weight: bold;}
#mainContent p.italic {font-style: italic; line-height: 1;}
#mainContent p.clients {color: #0090d2; font-size: 1.1em;}
#mainContent p.clientlist {color: #0090d2; font-size: 1.2em; font-weight: bold; text-align: justify; margin-right: 0; line-height: 1;}
#mainContent p.clientlist1 {color: #404040; font-size: 1.2em; font-weight: bold; text-align: justify; margin-right: 0;line-height: 1;}
#mainContent a {color:#404040; text-decoration:none; display:block;}
#mainContent a:hover { text-decoration:underline;}
#mainContent h1 {}

.thumbs img {float:left; margin: 0 20px 10px -10px;}

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	margin: 25px 0 0 30px;
	width: 155px; /* 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: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	/* padding: 15px 10px 15px 20px; */
}

#sidebar1 ul{
	list-style-type: none;
	font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
	margin-left: 0px;
	padding: 0;
	margin-top: 0;
	margin-bottom: 25px;
}

#sidebar1 li{
	padding-top: 10px;
	padding-bottom: 10px;
	display:block; 
	border-top: 1px solid;
	border-color: #b3b3b3;
	text-indent: 15px;
}

#sidebar1 li a{
	text-decoration: none;
	display:block;
	color: #0090d2;
	font-size: 1.1em;
}

#sidebar1 li a:hover{
	color: #404040;
}

#sidebar1 li a#current{
	color: #404040;
	text-decoration: none;
	background-image:url(../images/bullet.gif);
	background-repeat:no-repeat;
	background-position: 6px 5px;
}

#sidebar1 li.last{
	border-bottom: 1px solid;
	border-color: #b3b3b3;
}


#footer { 
	/*padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #00acec;
	width: 768px;
	margin: 0 0 0 16px;
	padding:0;
	height: 20px;
	position: relative;
	/*bottom:40px;*/
	left:0;
	clear: both;
} 

#footer p {
	margin: 0px 0 0 16px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 8px 0 0;
	font: bold 1em "Lucida Grande", Lucida, Verdana, sans-serif;
	color: #fff;
	
}

#footer a {text-decoration:none; color:#edf4fe;}
#footer a:hover { text-decoration:underline;}

#bot {position: relative;
	  /*bottom:0px;*/
	  left:0;
	  background: #edf4fe url(../images/bottom.gif);
	  width:800px;
	  height:30px;}

.marbot10 {margin-bottom:10px;}
.marbot20 {margin-bottom:20px;}

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