/*-----------------------------------------------------------------------------
// file: style.css
// date: 2009/09/01
// auth: Rob Straughn
// copy: (c) Copyright 2009 OmniSoft.
// desc: Contains styles that applies to customer styles.
//---------------------------------------------------------------------------*/



/*----------------------------------------------------------------------------*/
/* styles for tags                                                            */


* {
	margin: 0;
	padding: 0;
}

body {
	font-size: 62.5%;
	font-family: Helvetica, sans-serif;
	background: url(images/stripe.png) repeat;
}

p {
	font-size: 1.3em;
	margin-bottom: 15px;
}

#page-wrap {
	width: 660px;
	background: white;
	padding: 20px 50px 20px 50px;
	margin: 20px auto;
	min-height: 500px;
	height: auto !important;
	height: 500px;
}

#contact-area {
	width: 600px;
	margin-top: 25px;
}

#contact-area input, #contact-area textarea {
	padding: 5px;
	width: 471px;
	font-family: Helvetica, sans-serif;
	font-size: 1.4em;
	margin: 0px 0px 10px 0px;
	border: 2px solid #ccc;
}

#contact-area textarea {
	height: 90px;
}

#contact-area textarea:focus, #contact-area input:focus {
	border: 2px solid #900;
}

#contact-area input.submit-button {
	width: 100px;
	float: right;
}

label {
	float: 				left;
	text-align: 	right;
	margin-right: 15px;
	width: 				100px;
	padding-top: 	5px;
	font-size: 		1.4em;
	display:			inline;
}

/*


Articles & Tutorials by Scratchmedia, London web designers
The 3 ways that HTML elements can be displayed

All HTML elements are naturally displayed in one of the following ways:

Block
    Takes up the full width available, with a new line before and after (display:block;)
Inline
    Takes up only as much width as it needs, and does not force new lines (display:inline;)
http://www.webdesignfromscratch.com/html-css/css-block-and-inline.php
*/

#contact-area select {
		width: 	475px;
display:	inline; /* no newlines block */

}

.msg {
		color: black;

}



/* styles for spammers 
http://klauskjeldsen.dk/2007/07/19/avoid-html-form-spam-using-css/               

*/
#human {
visibility:hidden;
display:none;
}

/*-----------------------------------------------------------------------------
// end of style.css
//---------------------------------------------------------------------------*/

