/*

This is the CSS stylesheet that is used for the actual content in the generic website pages
All background, font-family, position attributes are inherited from the style that this is held in (at time of writing: #center).

Styles nested in #content:

h1: Title at Top of Each page - used only once per page.
h2: Standard Sub Heading
p : Standard Paragraph
ul: Standard List
li: Standard Bullet points

*/

img {
	border: 0px;
}

.center {
	text-align: center;
}

#content a:link{
	color:#990000;
	font-weight:bold;
	text-decoration:underline;
}
#content a:visited{
	color:#990000;
	font-weight:bold;
	text-decoration:underline;
}
#content a:active{
	color:#330000;
	font-weight:bold;
}
#content a:hover{
	color:#330000;
	font-weight:bold;
	text-decoration:underline;
}

h1 {
	color: #000000;
	font-size: 18pt;
	font-weight:bolder;
	text-decoration: none;

	text-align: left;

	margin: 2px auto 2px 0px;
	padding: 10px;
}

body.about h2 {
	color: #333366;
}
body.portfolio h2 {
	color: #660000;
}
body.pricing h2 {
	color: #999933;
}
body.contact h2 {
	color: #336633;
}

h2 {
	clear: both;
	color: #660000;
	font-size: 12pt;
	font-style: italic;
	font-weight: bold;

	margin: 2px auto 2px 5px;
	padding: 10px;
}

h3 {
	color: #333333;
	font-size: 10pt;
	font-style: italic;
	font-weight: bold;

	margin: 2px auto 2px 10px;
	padding: 10px;
}

hr {
	color: #660000;
	height: 1px;
	width: 100%;
}

p {
	margin: 5px 10px 15px 10px;
	font-size: 10pt;
	text-indent: 10px;
}

code {
	display: block;
	margin: 10px 20px 20px 20px;
	font-size: 9pt;
	text-indent: 0px;
}

#content ul {
	font-size: 10pt;
}

li {
	margin: 2px;
	padding-top: 10px;
}

	form {
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px 0px;

		background: transparent;
		color: #333333;

		font-family:verdana, arial, sans-serif;
		font-size: 10pt;
		font-weight: bold;
	}

	form.contact {
		text-align: right;
		width: 450px;
	}

	label {
		width: auto;
		margin: 5px 0px 0px 0px;
  		padding: 0px 0px 0px 0px;

		color: #660000;

		font-size: 10pt;
		font-weight: bold;
	}
	input {
		width: 300px;
		margin: 5px 0px 0px 0px;
  		padding: 0px 0px 0px 0px;

		color: #333333;
		background: transparent;

		font-size: 10pt;
		font-weight: normal;
	}
	select {
		width: auto;
		margin: 5px 0px 0px 0px;
  		padding: 0px 0px 0px 0px;

		color: #333333;
		background: transparent;

		font-size: 10pt;
		font-weight: normal;
	}
	textarea {
		width: 300px;
		height: 70px;
		margin: 5px 0px 0px 0px;
  		padding: 0px 0px 0px 0px;

		color: #333333;
		background: transparent;

		font-size: 10pt;
		font-weight: normal;
	}
	input.button {
		width: auto;
		margin: 5px 0px 0px 0px;
  		padding: 0px;

		color: #660000;
		background: transparent;

		font-size: 10pt;
		font-weight: bold;
	}

.left {
	clear: left;
	float: left;
	margin: 10px;
	border: 1px solid #999999;
}

.right {
	clear: right;
	float: right;
	margin: 10px;
	border: 1px solid #999999;
}
.clear {
	clear: both;
}
