@charset "UTF-8";
body {
	background: #FFF;
	margin: 0;
	padding: 0;
	color: #000;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 1.3;
	vertical-align: middle;
	width: auto;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
	text-align: right;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #0000FF;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
	font-weight: normal;
}
a:visited {
	color: #999;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #00F;
}
nav p {
	font-size: 90%;
	color: #FFC;
	background-color: #090;
	text-align: right;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 5px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #060;
	font-weight: bold;
	margin: 0px;
	background-image: url(../../Lessons/lesson08/images/background.png);
	background-repeat: repeat-x;
}
nav p a:link, nav p a:visited {
	color: #FFC;
	text-decoration: none;
	padding: 5px;
}
nav p a:hover, nav p a:active {
	color: #FFF;
	background-color: #060;
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
nav ul {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the space between the navigation on the content below */
	font-size: 90%;
}
nav ul li {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #0C0;
	border-right-color: #060;
	border-bottom-color: #060;
	border-left-color: #0C0;
}
nav ul a:link , nav ul a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background: #090;
	text-align: left;
	color: #FFC;
}
nav ul a:hover, nav ul a:active, nav ul a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #060;
	color: #FFF;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, nav, article, figure {
	display: block;
}
.byline {
	font-family: "Times New Roman", Times, serif;
	font-size: 24px;
	font-style: italic;
	font-weight: bold;
	text-align: center;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	background-repeat: no-repeat;
	background-image: url(../images/Pitbull-scooping-poop.jpg);
	background-position: center bottom;
	float: none;
	height: 768px;
	width: 1024px;
	clip: rect(auto,auto,auto,auto);
	margin-right: auto;
	margin-left: auto;
	font-family: Verdana, Geneva, sans-serif;
	color: #000;
}
.contactinformation {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: bold;
	text-align: right;
	padding-right: 30px;
}
.formFields {
	width: 4000px;
}
.hangingindent {
	text-indent: -125px;
	padding-left: 140px;
}
.header {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 72px;
	font-style: italic;
	font-weight: bold;
	text-align: left;
	padding-right: 30px;
	display: inline;
	vertical-align: top;
	color: #FFF;
	text-decoration: blink;
}
.listindent {
	text-indent: 10px;
	padding-left: 60px;
}
.servicearea {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	text-align: left;
	padding-top: 25px;
	padding-right: 30px;
	padding-bottom: 35px;
	padding-left: 30px;
}
#content {
	height: 528px;
	width: 964px;
	float: left;
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 30px;
}
#contentleft {
	float: left;
	height: 528px;
	width: 540px;
	padding-top: 30px;
	padding-left: 30px;
	margin: 0px;
}
#contentformleft {
	float: left;
	height: 528px;
	width: 240px;
	padding-top: 30px;
	margin: 0px;
	padding-left: 30px;
	line-height: 40px;
}
#contentformright {
	float: left;
	height: 528px;
	width: 300px;
	padding-top: 30px;
	padding-left: 0px;
	margin: 0px;
	line-height: 40px;
}
#contentright {
	width: 454px;
	float: left;
	height: 318px;
	margin-left: 0px;
	padding: 0px;
}
#header {
	height: 100px;
	text-indent: 20px;
	float: left;
	background-image: url(../images/background-bluegrass.jpg);
	background-repeat: no-repeat;
	width: 1024px;
}
#nav {
	height: 60px;
	float: left;
	text-align: center;
	width: 1024px;
}
#formFirstName {
	width: 300px;
	float: left;
	height: 75px;
}
#formLastName {
	width: 300px;
	float: left;
	height: 75px;
}
#formEmail {
	width: 350px;
	float: left;
	height: 75px;
}
#formMessage {
	width: 475px;
	float: left;
	height: 300px;
}
#formFiles {
	width: 475px;
	float: left;
	height: 150px;
}
#formSubmit {
	width: 450px;
	float: left;
	text-align: left;
	height: 100px;
	padding-left: 25px;
}
#pricing {
	width: 256px;
	float: left;
	height: 200px;
	margin-left: 0px;
	padding: 0px;
	text-align: center;
}
#pricingsingleservice {
	width: 341.333px;
	float: left;
	height: 279px;
	margin-left: 0px;
	text-align: center;
	padding: 0px;
}
#footer {
	float: left;
	height: 50px;
	width: 1024px;
	text-align: center;
}
#rightpicture {
	padding-top: 0px;
	width: 454px;
	height: 240px;
	float: left;
	vertical-align: 0%;
	background-image: none;
	background-position: 0px;
	background-repeat: no-repeat;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	text-align: center;
}
.comments {
	line-height: normal;
}
.textonly {
	vertical-align: bottom;
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 0px;
	margin-left: 20px;
	font-weight: bold;
}
