@charset "UTF-8";

* html						
							{
							padding: 0px;
							margin: 0px;
							border: 0px;
							}

body 
							{
							font: 80% Verdana, Arial, Helvetica, sans-serif;
							background-color: #FFFFFF;/*IE: this isn't the problem*/
							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;
							}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.heating-air-conditioning #container 
							
							{
							width: 767px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
							margin: -12px auto; /* the auto margins (in conjunction with a width) center the page.  The negative top and bottom margins close the gaps nicely */
							border: 0px;
							text-align: left; /* this overrides the text-align: center on the body element. */
							background: #01b1fa;
							}

.heating-air-conditioning #header 
							
							{ 
							background: #FFFFFF; 
							background-image: url(images/ac-mock-header_03.jpg);
							background-repeat: no-repeat;
							border-color: transparent;
							width: 777px; height: 144px;
							padding: 0px;
							margin: 15px 0 0 0;/*this keeps the header image from rising into the top*/
							} 

.heating-air-conditioning #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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
							background-image: url(images/whitebackground_03.jpg);
							background-repeat: repeat-x;
							margin: 0 10px 0 0;
							}

h1 							{ text-align: center }

h2 							{ font-size: 90% }

h3							{ font-size: 75% }

/*-----------------------------The Toolbar: The following styles on how to make a graphic toolbar with each button having a unique graphic----------------------------------*/


#toolbar ul	
							{ 
							margin: 0 9%; /*this sets the entire toolbar margin from the left, rather than individual buttons */
							width: 800px; /* Make sure to set the width so that the toolbar can be horizontal*/
							text-align: center;
							
							}


#toolbar li
							{
							margin: 40px 2px 0 2px; /* The Left and Right margins sets the space between buttons on a toolbar. The op and bottoom move the wholoe toolbar up and down*/
							display: inline; /*this enables the list times to continue on in one line*/
							list-style-type: none;	
							font-size: 12px;
							font-family: Arial, Helvetica, sans-serif;	
							text-decoration: none;			
							}

#toolbar ul li				{ float: left;  }	/* THis is also an added rule to keep the toolbar horizontal */					
										


#home a:link, #home a:visited 
							
							{ background-image: url(images/01-heating-air-conditioning-home.jpg); }

#services a:link, #services a:visited 

							{ background-image: url(images/02-heating-air-conditioning-services.jpg); }

#onlineresources a:link, #onlineresources a:visited 
							
							{ background-image: url(images/03-heating-air-conditioning-online.jpg); }

#aboutus a:link, #aboutus a:visited 
							
							{ background-image: url(images/04-heating-air-conditioning-aboutus.jpg); }

#contactus a:link, #contactus a:visited 
							
							{ background-image: url(images/05-heating-air-conditioning-contactus.jpg); }
#home a:link, #home a:visited, 
#services a:link, #services a:visited, 
#onlineresources a:link, #onlineresources a:visited, 
#aboutus a:link, #aboutus a:visited, 
#contactus a:link, #contactus a:visited
							
							{
							display: block; /*this enables the image button to keep it's shape on individual list items*/
							width: 108px; /*make sure the height and width are specified, also to show entire image of background button*/
							height: 98px; /* the heigh rule keeps the "background" button from showing up in repeated fashion */
							background-position:  330px 0; /*this enables the position switching*/
							}

#home a:hover, 
#services a:hover, 
#onlineresources a:hover, 
#aboutus a:hover, 
#contactus a:hover
							{ background-position: 220px 0; } /*this enables the position switching*/
							
							
							
#home a:active, 
#services a:active, 
#onlineresources a:active, 
#aboutus a:active, 
#contactus a:active
							{ background-position: 110px 0; } /*this enables the position switching*/
							
									
/*this part actually disables "flickering" of the toolbar*/

#toolbar #home				{
							background-image: url(images/01-heating-air-conditioning-home.jpg); 
							width: 108px;
							height: 98px;
							background-repeat: no-repeat; /*this is here to keep it from repeating continously along with the height rule for the a:link and a:visited*/
							background-position:  0px 0px;
							}

#toolbar #services 			{
							background-image: url(images/02-heating-air-conditioning-services.jpg); 
							width: 108px;
							height: 98px;
							background-repeat: no-repeat; /*this is here to keep it from repeating continously along with the height rule for the a:link and a:visited*/
							background-position:  0px 0px;
							}
#toolbar #onlineresources							{
							background-image: url(images/03-heating-air-conditioning-online.jpg); 
							width: 108px;
							height: 98px;
							background-repeat: no-repeat; /*this is here to keep it from repeating continously along with the height rule for the a:link and a:visited*/
							background-position:  0px 0px;
							}
#toolbar #aboutus
							{
							background-image: url(images/04-heating-air-conditioning-aboutus.jpg);  
							width: 108px;
							height: 98px;
							background-repeat: no-repeat; /*this is here to keep it from repeating continously along with the height rule for the a:link and a:visited*/
							background-position:  0px 0px;
							}
#toolbar #contactus 							{
							background-image: url(images/05-heating-air-conditioning-contactus.jpg); 
							width: 108px;
							height: 98px;
							background-repeat: no-repeat; /*this is here to keep it from repeating continously along with the height rule for the a:link and a:visited*/
							background-position:  0px 0px;
							}


/*------------------------------------------------------------------------End Toolbar---------------------------------------------------------------------------*/

/*---------------------------------This is the drop shadow on the righ--------------------*/

/*.img-wrapper
							
							{
							background-image: url(images/shadow_03.gif);
							background-repeat: repeat-y;
							background-position: bottom right;
							clear: right;
							float: left;
							margin: 0 0 0 20px;
							border: thick 3px #000099
							}
			
.img-wrapper img	

							{ margin: -5px 5px 0px -5px; }*/


.heating-air-conditioning #mainContent 
							
							{
							
							width: 690px;
							padding: 0 29px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
							/*background-image: url(images/background-left-edge.jpg);/*background rules provide inner 3-shadow to "paper"*/
							background-repeat: repeat-y;
							background-position: left top;
							background-color:  #01b1fa;
							margin: -15px 0px 10px 0px;
							}




.heating-air-conditioning #mainContent p 
							
							{ margin-top: 10px }



.heating-air-conditioning #optigroove 
							
							{ 
							padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
							background-color: #FFFFFF;
							text-align: center;
									
							font-size: 10px;
							color: #FFFFFF;
							font-family: Arial, Helvetica, sans-serif;
							text-align: center;
						
							margin: 0 auto 0 auto;
						
							width: 800px;
							height: 15px;
							} 

#footnav 					
							{ 
							border-color: transparent; 
							border: 0px;
	
							
							padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
							background-color: #FFFFFF;
							background-image: url(images/footer.jpg);
							background-repeat: repeat-x;
							margin: 0px auto 0 auto;
							
							text-align: center;
							font-size: 12px;
							color: #FFFFFF;
							font-family: Verdana, Arial, Helvetica, sans-serif;
							padding: 3px 0 0 0;

							width: 767px;
							height: 45px;
							}

#footnav a, #footnav a:link, #footnav a:hover, #footnav a:visited

							{ color: #FFFFFF }




/*Begins the list for Online resources and Sitemap*/

#linklist			
					{
					margin: 20px auto;
					text-decoration: none;
					width: 200px;
					line-height: 2em; 
					text-align: left;
					}
					
#linklist ul li		{ list-style-type: none; }

#linklist a			{ color: #0066FF }
					
#linklist ul a, #linklist ul a:link, #linklist ul a:hover, #linklist ul a:active { color: #FFFFFF; }

#footnote					{font-size: 10px }

#latterh2, #calltoday		{font-size: 14px; text-align: center }

#latterh1 { font-size: 12px }

#servicesimgs { float: left; padding: 5px 10px; }


/*----------------------End site map-------------------*/

#sendform input 
							{ border: 1px; border-color: #666666 }
							
							
#formtable { 
				border: 1px #33FFFF; 
				margin: 1px -20px; 
				line-height: 2em; 
				width: 0px; }
				
				
				
				
#fieldset {
			border: 1px #33FFFF; 
			margin: 1px 0 0 15%; 
			line-height: 2em; 
			width: 0px }