/*-------------------------

Author: Andrew Sherman
Company: Visual Blaze 
Client: 

--------------------------*/

/*set block elements to 0 */
body,p,h1,h2,h3,h4,div,ul,li {
	margin: 0;
	padding: 0;
}

/*----------
main styles
----------*/

body {
	font-family: helvetica, arial;
	font-size: 12px;
	/*req. for auto marg center technique*/
	text-align: center;
	/*req. for centering..*/
	min-width: 960px;
}

#wrapper {
	/*position:relative;*/
	width: 960px;
	min-height: 550px;
	/*req. centering..*/
	margin: 0 auto;
	margin-top: 100px;
	/*req. centering..*/
	text-align: left;
	background: url(../images/wrapperBg.png) no-repeat bottom right;
}

h1 {
	margin-bottom: 45px;
	font-size: 28px;
	color: #7A7878;
	font-weight: bold;
	font-style: italic;
	}
	h1 span {
		color: #DA5120;
}

p {
	display: inline;
	float: left;
}

div#form  {
	display: inline;
	width: 511px;
	height: 370px;
	margin-top: -15px;
	background: url(../images/formBg.png) no-repeat top left;
	float: right;
	}
	/*flash form*/
	div#form div#flashForm {
		margin-top: 105px;
		margin-left: 50px;
		}
		/*form html alt*/
		div#form div#flashForm form {
			padding-top: 10px;
			}
			div#form form label {
				display: block;
				color: #DA5120;
				font-weight: bold;
			}
			div#form form input {
				width: 300px;
				margin-bottom: 10px;
				border: none;
				background: #F2F2F2;
			}
			div#form form input#submitBtn {
				margin-top: 20px;
				margin-left: 150px;
				color: #fff;
				font-weight: bold;
				font-style: italic;
				font-size: 16px;
				background: none;
			}
			
body#thankyou p {
	display: block;
	float: none;
	margin-bottom: 10px;
	font-size: 14px;
	color: #666;
}
p.signout {
	font-weight: bold;
	font-style: italic;
	font-size: 18px;
}
p#webAddress{
		display: inline;
		width: 400px;
		font-size: 14px;
		margin-top: 10px;
		font-weight: bold;
		font-style: italic;
		color: #DA5120;
		color: #7A7878;
		float: left;
		clear: both;
	}
	p#webAddress a {
		color: #DA5120;
	}
	p#webAddress a:hover {
		text-decoration: none;
	}
	



/*--------------------
global/general styles
-------------------*/

/*float Classes*/
.floatLeft {
	display: inline;
	float: left;
}
.floatRight {
	display: inline;
	float: right;
}

/*clear Classes*/
.clear {
	clear: both;
}
.clearLeft {
	clear: left;
}
.clearRight {
	clear: right;
}

/*typography*/
.bold {
	font-weight: bold;
}

.italic {
	font-style: italic;
}

.greyLightTxt {
	color: #666;
	font-style: italic;
}

.quoteTxt {
	color: #666;
	font-style: italic;
}