.container
{
	width: 960px;
	margin: 0px auto;
	position: relative;
	z-index: 12;
}
/*Positions the contact form so it doesn't interfere with any other content, as well as a z-index above any other elements on the page*/
#contactFormContainer
{
	position: absolute;
	left: 194px;
	z-index: 1;
	height: 305px;
}
/*Hides the whole contact form until needed*/
#contactForm
{
	height: 390px;
	width: 546px;
	background: #555555 url(../images/contact-bg.jpg) no-repeat center top;
	border: 1px solid #929191;
	padding: 7px 12px;
	color: #FFFFFF;
	display: none;
	font-size: 1.1em;
}
/*Loading bar that will appear while the ajax magic is happening*/
.bar
{
	display: none;
	background: url(../images/ajax-loader.gif) no-repeat center;
	margin-top: 100px;
	height: 40px;
	width: 230px;
}
/*Hides the confirmation message until needed*/
#messageSent
{
	display: none;
}
/*This hides the form validation alert messages until needed*/
#contactForm SPAN
{
	display: none;
	font-size: 9px;
	line-height: 10px;
	padding-left: 6px;
	color: #F5C478;
}
/*Some styling for the contact button*/
#contactFormContainer .contact
{
	height: 47px;
	width: 211px;
	background: url(../images/contact_me.png) no-repeat;
	position: relative;
	bottom: -46px;
	cursor: pointer;
	left: 160px;
	top: -1px;
}
/*Hides the darkening layer for the Modal effect. The z-index is necessary for layering purposes, and be sure to keep the positioning/height/width the same*/
#backgroundPopup
{
	display: none;
	position: fixed;
	-position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: #000;
	z-index: 11;
}
/*Form styling from here on out. There is nothing in here that you HAVE to use to get this to work*/
#contactForm TEXTAREA, #contactForm INPUT
{
	width: 180px;
	background: transparent repeat-x top;
	color: #FFF;
	border: 2px solid #FFFFFF;
	height: 15px;
	line-height: 14px;
	font-size: 11px;
	padding: 2px 2px 0px;
}
#contactForm INPUT
{
	background-position: 0px -20px;
}
#contactForm TEXTAREA
{
	height: 108px;
	font-family: Verdana, Geneva, sans-serif;
	width: 325px;
}
#contactForm .submit
{
	border: 1px solid #ABA8A8;
	background: #E5E5E5;
	text-transform: uppercase;
	color: #4D4D4D;
	font-weight: bold;
	padding: 7px 16px 7px 7px;
	height: 30px;
	width: 136px;
	cursor: pointer;
	float: left;
	margin-top: 10px;
	margin-left: 5px;
}
#contactForm .submit:active
{
	background: #CACACA;
}
#contactForm LABEL
{
	padding-left: 4px;
	font-weight: bold;
	color: #FFFFFF;
}
#contactForm P
{
	padding-bottom: 8px;
}
#contactForm .input_boxes
{
	float: left;
	width: 204px;
}
#dummycontent
{
	padding-top: 100px;
	height: 900px;
	position: relative;
}
.bottomlink
{
	position: absolute;
	bottom: 0;
}
