/* CSS Document */

body {
/* This is the style of any body piece unless otherwise specified */	
	font-family: Arial, Verdana, Helvetica, sans-serif;
	background-color:#999999;
}

p {
/* All paragraph tags will use these styles */
	padding: 0px 15px 0px 10px;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size:12px;
	color: #000000;
	font-style:normal;
}

p.center {
/* This is for chunks of text that need to be centered */
	text-align:center;
}

a:link {
/* This specifies the color of paragraph links */
	color:#64799c;
}

a:visited {
/* This specifies the colors of links that have already been visited */
	color:#32476a;
}

a:active {
/* This changes the color of the links when the mouse is clicked on them. */
	color:#6b4715;
}

a:hover {
/* This changes the color of the links when the pointer is held over them. */
	color:#6b4715;
}

h1 {
/* All Header 1 styles will have this appearance. */
	padding:0px 15px 0px 10px;
	font-size:16px;
	color: #32476a;
	font-weight:bold;
	text-align:center;
}

h2 {
/* All Header 2 styles will have this appearance. */
	padding: 0px 15px 0px 10px;
	font-size: 16px;
	color: #6b4715;
	font-weight:bold;
	text-align:left;
}

h2.center {
/* This centers Header 2 styles. */
	text-align:center;
}
	
h3 {
/* All Header 3 styles will have this appearance. */
	padding: 0px 15px 0px 10px;
	font-size:14px;
	font-weight:bold;
	color:#666666;
}

h3.center {
/* This centers Header 3 styles. */
	text-align:center;
}

h4 {
/* All Header 4 styles will have this appearance. */
	padding: 0px 15px 0px 10px;
	font-size:13px;
	font-weight:bold;
	color:#6b4715;
}

h5 {
/* All Header 5 styles will have this appearance. */
	padding: 0px 15px 0px 10px;
	font-size:13px;
	font-weight:bold;
	color:#32476a;
}


ul.disc {
/* This is for unordered lists. It creates a disc (filled dot) bullet and reduces the font size and increases the line height. */
	list-style-type:disc;
	font-size:10px;
	line-height:18px;
	text-align:left
}

#footer {
/* This specifies the font/text properties for the page footer. */
	font-size:9px;
	color:#32476a;
	text-align:center;
}

#footer a:link {
/* This is the color for footer links. */
	color: #64799c;
}

#footer a:visited {
/* This is the color for a visited footer link. */
	color:#32476a;
}

#footer a:active {
/* This is the color for when a footer link is clicked with the mouse. */
	color:#6b4715;
}

#footer a:hover {
/* This is the color for a footer link when the pointer is held over it. */
	color:#6b4715;
}

#seofooter {
/* This specifies the font/text properties for the seo page footer. */
	font-size:9px;
	color:#32476a;
	text-align:center;
	padding-left: 100px;
	padding-right: 100px;
}

#estimate p {
/* This is to right-align fonts in the estimate forms. */
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size:12px;
	color: #000000;
	font-style:normal;
	text-align:right;
}

#windows_table p {
/* This specifies the properties in the window diagram on the windows.html page. */
	font-size:10px;
	padding: 0px 5px 0px 5px;
}	