/*
 * SimpleModal OSX Style Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2010 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: osx.css 254 2010-07-23 05:14:44Z emartin24 $
 */
#contactform{
	width: 400px;
	margin: 0 auto;
	background-color:#ffffff;
	border: 20px solid #eeeeee;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	position: relative;
	top: 32%;
	-moz-box-shadow: 0 0 5px #000;
	-webkit-box-shadow: 0 0 5px #000;
	box-shadow: 0 0 5px #000;
	padding: 20px;
	text-align: left;
	overflow: auto;
}

#contactform form {
	margin: 10px 0 0 0;
}

#contactform label {
	display: block;
	width: 25%;
	height: 20px;
	font-weight: bold;
	float: left;
	margin: 0 0 10px 0;
	color: #666666;
}
#contactform input {
	border: 1px solid #cccccc;
	width: 73%;
	margin: 0 0 10px 0;
	float: right;
}
#contactform textarea {
	border: 1px solid #cccccc;
	width: 72%;
	height:160px;
	float: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	padding: 3px;
}
#contactform .contact-button {
	background-color:#cb0037;
	border:none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #ffffff;
	margin: 5px 0 0 5px;
	width: 100px;
}

#contactform button:hover {
	background-color:#cccccc;
	border:none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#contactform h2 {
	font-weight: bold;
	font-size:20px;
	margin: 0;
	padding: 0;
	color: #666666;
}

#contactform span {
	font-weight: bold;
	font-size:11px;
	color: #cb0037;
	margin: 0 0 0 0;
}

