@charset "utf-8";
body  {
	font: 100% 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;
	left: 0px;
}
#container {
	width: 90%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0%; /* 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. */
	float: none;
	padding: 0mm;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
}
#header {
	background: #5F8C00;
	padding: 0 10px;  /* 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. */
	float: none;
} 
#header h1 {
	margin: 0px; /* 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: 0px 15px 15px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #FFFFFF;
	font-style: normal;
	font-weight: lighter;
	word-spacing: 50px;
	top: auto;
	bottom: 5px;
}

/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the "#sidebar1 p" rule.
*/
#sidebar1 {
	float: left;
	width: auto; /* since this element is floated, a width must be given */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px; /* top and bottom padding create visual space within this div  */
	margin: 1px 0px 0px;
}
#sidebar1 h3, #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
#mainContent {
	margin: 0 5 0 280px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	padding: 0px 5px 0px 15px;






	float: ;
	top: 0px;
	font-family: Arial, Helvetica, sans-serif;
	color: #666666;
	font-size: 12px;
	text-indent: 0px;
	border-right-width: 5px;
	border-top-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	right: 0px;






	position: ;
	left: 0px;
	text-align: left;
	font-style: normal;
	bottom: 0px;
	float: none;
	position: static;
	vertical-align: 0%;
} 
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD bottom;
	bottom: 0px;
} 
#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 */
}

/* Miscellaneous classes for reuse */
.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;
	text-align: left;
	left: 0px;
}
.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;
}
#main header h1 {
	margin: 0px; /* 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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #FFFFFF;
	font-style: normal;
	font-weight: lighter;
}
.flttop {
	float: right;
	margin-right: 8px;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#list {
	margin: 0px; /* 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: 3px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #66CC66;
	font-style: normal;
	font-weight: lighter;
	text-indent: 0px;
	line-height: normal;
	background-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	text-align: left;
}
a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #FF9900;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: #999999;
}
a:active {
	text-decoration: none;
	
}
A.ColorLink:link {
color: #FFA500; /* Orange */
}
A.ColorLink:visited {
color: #003300; /* Green */
}
A.ColorLink:hover {
color: #FF0000; /* Red */
}  

.fltcent {
	float: none;
	margin: 0px 25px 0px 0px;
	padding: 0px;
	left: 50em;
}	
.linkcol {
	a:link {color:#00CC99; }
	a:hover {color:#CCFF99; }
}
.style1 {
	font-size: 30px;
	font-style: normal;
	margin-left: 0px;
	color: #FF9900;
	font-weight: 100;
	font-variant: normal;
	text-transform: none;
	font-family: "Arial Narrow";
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}


.trees {
	float: right;
	margin-right: 35px;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.signature  {
	margin: 0px; /* 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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: "BrushScript BT";
	font-size: 24px;
	color: #8AB041;
	font-style: normal;
	font-weight: lighter;
	float: none;
	right: 100px;
	text-align: center;
}
.BWD {
	margin: 0px; /* 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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: "BrushScript BT";
	font-size: 30px;
	color: #8AB041;
	font-style: normal;
	font-weight: 100;
	float: none;
	right: 0px;
	text-align: left;
	background-position: 50px;
	text-indent: 50px;
}
#header h2 {
	margin: 0px; /* 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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #FFFFFF;
	font-style: normal;
	font-weight: normal;
	word-spacing: 0px;
	top: auto;
	bottom: 5px;
	text-align: right;
}
<style type="text/css">

.gallerycontainer{
position: right;

/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
	border: 1px solid White;
	margin: 5px 5px 5px 0;
	float: left;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 1px solid blue;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 1;
left: 420px; /*position where enlarged image should offset horizontally */
z-index: 50;
}

</style>
.fltlftCopy {
	float: left;
	margin-right: 8px;
	text-align: left;
	left: 0px;
}
.line {
	float: left;
	margin-right: 8px;
	text-align: left;
	left: 289px;
	top: 155px;
	position: absolute;
}
.contactpageline {
	float: left;
	margin-right: 8px;
	text-align: left;
	left: 505px;
	top: 150px;
	position: absolute;
}
<style type="text/css">

.basictab{
padding: 3px 0;
margin-left: 0;
font: bold 12px Verdana;
border-bottom: 1px solid gray;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.basictab li{
display: inline;
margin: 0;
}

.basictab li a{
text-decoration: none;
padding: 3px 7px;
margin-right: 3px;
border: 1px solid gray;
border-bottom: none;
background-color: #f6ffd5;
color: #2d2b2b;
}

.basictab li a:visited{
color: #2d2b2b;
}

.basictab li a:hover{
background-color: #DBFF6C;
color: black;
}

.basictab li a:active{
color: black;
}

.basictab li.selected a{ /*selected tab effect*/
position: relative;
top: 1px;
padding-top: 4px;
background-color: #DBFF6C;
color: black;
}

/* choose a suitable font and center the #container div in Internet Explorer */   
2 body1 {   
text-align:center;   
font-family: tahoma; arial, sans-serif;   
font-size:76%;   
letter-spacing:0.05em;   
}  

/* The containing box for the gallery. */   
#container1 {   
position:relative;   
width:720px;   
height:396px;   
margin:20px auto 0 auto;   
border:1px solid #aaa;   
} 

 /* Removing the list bullets and indentation */   
#container1 ul {   
padding:0;   
margin:0;   
list-style-type:none;   
}  
 

/* Adding the thumbnail images */   
#container1 a.gallery, #container1 a.gallery:visited {   
display:block;   
color:#000;   
text-decoration:none;   
border:1px solid #000;   
margin:1px 2px 1px 2px;   
text-align:left;   
cursor:default;   
}   
#container1 a.slidea {   
background:url(images/work/Bridge and Veneers After.jpg);   
height:93px;   
width:60px;   
}   
#container1 a.slideb {   
background:url(images/work/Bridge and Veneers After.jpg);   
height:93px;   
width:60px;   
}   
#container1 a.slidec {   
background:url(c:\images\work\Bridge and Veneers After.jpg);   
height:93px;   
width:60px;   
}   
#container1 a.slided {   
background:url(c:\images\work\Bridge and Veneers After.jpg);   
height:60px;   
width:93px;   
}   
* html #container1 a.slided {   
width:91px;   
w\idth:93px;   
}   
#container1 a.slidee {   
background:url(../images/p5_t.jpg);   
height:60px;   
width:93px;   
}   
#container1 a.slidef {   
background:url(../images/p6_t.jpg);   
height:60px;   
width:93px;   
}   
* html #container1 a.slidef {   
width:91px;   
w\idth:93px;   
}   
#container1 a.slideg {   
background:url(../images/p7_t.jpg);   
height:60px;   
width:93px;   
}   
#container1 a.slideh {   
background:url(../images/p8_t.jpg);   
height:93px;   
width:60px;   
}   
#container1 a.slidei {   
background:url(../images/p9_t.jpg);   
height:93px;   
width:60px;   
}   
#container1 a.slidej {   
background:url(../images/p10_t.jpg);   
height:93px;   
width:60px;   
}   
#container1 a.slidek {   
background:url(../images/p11_t.jpg);   
height:60px;   
width:93px;   
}   
* html #container1 a.slidek {   
width:91px;   
w\idth:93px;   
}   
#container1 a.slidel {   
background:url(../images/p12_t.jpg);   
height:60px;   
width:93px;   
}   
 /* set the size of the unordered list to neatly house the thumbnails */   
#container1 ul {   
width:198px;   
height:386px;   
}   
#container1 li {   
float:left;   
} 
/* move the thumbnails into the correct position */   
#container1 ul {   
margin:5px;   
float:right;   
}  
/* change the thumbnail border color */   
#container1 a.gallery:hover {   
border:1px solid #fff;   
}  
 /* styling the :hover span */   
#container1 a.gallery:hover span {   
position:absolute;   
width:372px;   
height:372px;   
top:10px;   
left:75px;   
color:#000;   
background:#fff;   
} 
.fltlftline {
	float: left;
	margin-right: 8px;
	text-align: left;
	left: 0px;
	top: 150px;
}
.mainContent a:link {
	color: #009933;
}
.opening a:link  {
	color: #5F8C00;
	text-decoration: underline;
}
.opening a:visited  {
	color: #5F8C00;
	text-decoration: underline;
}
.opening a:hover  {
	color: #5F8C00;
	text-decoration: underline;
}
.opening a:active  {
	color: #5F8C00;
	text-decoration: underline;
}
.lenton a:link  {
	color: #5F8C00;
}
.lenton a:visited  {
	color: #5F8C00;
}
.lenton a:hover  {
	color: #5F8C00;
	text-decoration: underline;
}
.lenton a:active  {
	color: #5F8C00;
}
