body {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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;
}

a {
	color: #000000;
	text-decoration: underline;
}

#container { 
	width: 720px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 20px auto 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#header { 
	background: #DDDDDD;
} 

#sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 148px; /* 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: #000; /* the background color will be displayed for the length of the content in the column, but no further*/
	padding-top: 21px;
	border-bottom: 21px solid black;
}

#sidebar p.phone {
	background-color: white;
	margin: 0;
	border-top: 10px solid black;
	padding: 15px 8px 15px 23px;
}

#mainContent {
	float:right;
	padding: 21px 20px 10px 20px;
	background-image:url(images/main_bkgrnd.gif);
	background-repeat:repeat-x;
	background-position:top;
	width:532px;
} 

#mainContent p{
	margin-top: 8px;
	margin-bottom: 8px;
}

#mainContent h1{
	font-size: 12px;
	font-weight: bold;
}

#footer { 
	background: white; 
	text-align: center;
	padding: 10px 0;
} 

#footer p {
	font-size: 9px;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
}

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

/*ABOUT PAGE styles*/
.picture {
	margin: 10px;
}
/*End About Page Styles*/

/*CONTACT and Web Portfolio PAGE styles*/
#mainContent p.text_address {
	margin-left: 40px;
}
.text_bold {
	font-weight:bold;
}

#mainContent .first {
	margin-top: 30px;
}
/*End Contact and Web Portfolio Page Styles*/

/*ASSOCIATES PAGE styles*/
#mainContent td.text_associates_L {
	vertical-align: text-top;
	padding-top: 10px;
	padding-left: 20px;
	width: 200px;
}
#mainContent td.text_associates_R {
	vertical-align: text-top;
	padding-top: 10px;
}
/*End Associates Page Styles*/

/*PORTFOLIO PAGES Navigation and Table styles*/
#mainContent p.nav_portfolio {
	text-align:center;
}
#mainContent span.nav_pipe {
	margin-left: 10px;
	margin-right: 10px;
}
#mainContent table.portfolio {
	margin: 0 auto 0 auto;
	padding-top: 20px;
}
/*End Portfolio Pages Navigation Styles*/

/*VIDEO PAGE styles*/
#mainContent td.videoCell {
	border-right: 2px ridge #000000;
	height: 90px;
}
#mainContent td.videoText {
	text-align:center;
}
#mainContent p.videoNote {
	margin-top:30px;
	margin-left:10px;
}
/*End Video Page Styles*/

/*CLIENT PAGE styles*/
#mainContent td.juice {
	font-size: 10px;
	padding-top: 10px;
	padding-right:10px;
}
#mainContent p.text_feature {
	font-weight: bold;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
}
#mainContent p.text_quote {
	font-family: "Times New Roman", Times, serif;
	margin-top: 6px;
	margin-left: 10px;
	width: 300px;
}
/*End Client Page Styles*/

