@charset "utf-8";
#container  {
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
} 
#email {
	padding-left: 16px;
}
#header  {
	background-color: #ffffff;
	width: 980px;
	margin-right: auto;
	margin-left: auto;
	background-position: center;
	padding: 0;
} 
#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 */
}
#mainContent  {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 500px;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 190px;
} 
#maincontentImage {

}

#footer  { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD; 
	border-radius: 10px;
} 
#footer  p  {
	margin: 5px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: italic;
	padding: 10px;
}
#piperSales {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #CCCC33;
	border-radius: 10px;
	padding-top: 1px;
	padding-bottom: 1px;
	margin-bottom: 4px;
}
}

#piperSales p {
	font-size: 16px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 85px;
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 400px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
	margin-left: 60px;
	margin-top: 60px;
	background-color: #FFFFFF;
}

#sideText {
	margin-right: auto;
	margin-left: auto;
}

.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;
}
.bagpiper {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: #ffffff;
}
.pcolor {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #336699;
}
.fcolor {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #993333;
}

