@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Oswald:300,700');

/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}


/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	14;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */


label 
{
    display:block;
    margin-top:10px;
	letter-spacing:2px;
}

/* Centres the form within the page */
form 
{mmargin-left: 2%;
    width:95%;
}


/* Styles the text boxes */
input, textarea, file, select {
	width:100%;
	height:2 em;
	font-family: 'Oswald', sans-serif;
	font-weight: 300;
	font-size: 8pt;
	color: #999;
	text-transform:uppercase;
	letter-spacing: 2pt;
	background-color:#fff;
	border:1px solid #dedede;
	padding:10px;
	margin-top:3px;
	outline:none;
	
}

	input:focus, textarea:focus {
		border:0.5px solid #efefef;
	}

/* Styles the text area boxes (message field) */	
textarea 
{
	height:4.2em;
	background-color: #fff;
}


/* Styles the submit button */
#send {
	background-color: #cf2f21;
	font-family: 'Oswald', sans-serif;
	font-size: 10pt;
	font-weight:700;
	color: #fff;
	letter-spacing: 1pt;
	line-height: 15pt;
	width:110px;
	height:35px;
	text-align: center;
	/* text-indent:-9999px; */
	border:none;
	margin-top:20px;
	cursor:pointer;
}

/* Styles the submit hover */	
#send:hover {
	color:#fff;
	background-color: #000;
	opacity:0.9;
}
