﻿/*
Code Author: Mark-Anthony Karam
Host: mark-anthony.ca
*/

@import url(http://fonts.googleapis.com/css?family=Myriad Pro);
@import url(http://fonts.googleapis.com/css?family=Myriad Pro:300);

h1
{
font-family: 'Myriad Pro', sans-serif;
font-size: 26px;
text-transform: uppercase;
color: #5c402f;
}


/* Centres the page (this could be container)*/
.body {
    display:block;
    margin:0 0;
    width:506px;
    font-family: 'Myriad Pro', sans-serif;
    font-size: 16px;
    color: #999;
}


/* Labels are titles for the text fields. You can use a placeholder instead if you like*/
label 
{
    display:block;
    margin-top:20px;
    letter-spacing:1px;
}

/* Centres the form within the page */
form 
{
    margin:0 auto;
    width:439px;
}

/* Styles the text boxes */
input, textarea, select, file {
	width:219px;
	height:25px;
	background-color:#efefef;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border:1px solid #007985;
	padding:10px;
	margin-top:1px;
	font-size:0.9em;
	color:#5c402f;
}

	input:focus, textarea:focus {
		border:1px solid #5c402f;
	}

/* Styles the text area boxes (message field) */	
textarea 
{
	height:113px;
	background-color: #efefef;
}

/* Styles the select area boxes (message field) */	
select 
{
	height:43px;
	background-color: #efefef;
}


/* Styles the submit button */
#submit {
	/* background:url(images/submit.png); */
	width:87px;
	height:39px;
	text-align: center;
	/* text-indent:-9999px; */
	border:none;
	margin-top:20px;
	cursor:pointer;
}

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

/* Styles the cancel button*/	
#cancel {
	/* background:url(images/cancel.png); */
	width:80px;
	height:18px;
	text-align: center;
	/* text-indent:-9999px; */
	border:none;
	margin-top:20px;
	cursor:pointer;
}

/* Styles the cancel hover */
#cancel:hover {
	color:#fff;
	background-color: #5c402f;
	opacity:0.9;
}