/*
 * SimpleModal Contact Form
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2008 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: contact.css 132 2008-05-23 16:05:17Z emartin24 $
 *
 */
body {
	padding: 0;
	margin: 0;
	height: 100%;
	width: 100%;
}

/* Overlay */
#modal-overlay {
	background-color: #000;
	cursor: wait;
}

/* Container */
#modal-container {
	width: 420px;
	left: 50%;
	top: 15%;
	margin-left: -210px;
	font-family: 'Trebuchet MS', Verdana, Arial;
	font-size: 12px;
	text-align: left;
}

#modal-container .modal-content {
	background-color: #333;
	color: #ddd;
	height: 40px;
}

#modal-container h1 {
	color: #d76300;
	margin: 0;
	padding: 0 0 6px 12px;
	font-size: 1.2em;
	text-align: left;
}

#modal-container .modal-loading {
	position: absolute;
	background: url(/weblib/images/modal/loading.gif) no-repeat;
	z-index: 8000;
	height: 55px;
	width: 54px;
	margin: -14px 0 0 170px;
	padding: 0;
}

#modal-container .modal-message {
	text-align: center;
	margin: 5px 0;
}

#modal-container .modal-error {
	width: 92%;
	font-size: .8em;
	background: #000;
	border: 2px solid #ccc;
	font-size: 0.8em;
	font-weight: bold;
	margin: 0 auto;
	padding: 2px;
}

#modal-container br {
	clear: both;
}

#modal-container form {
	padding: 0;
	margin: 0;
}

#modal-container label {
	clear: left;
	display: block;
	width: 130px;
	float: left;
	text-align: right;
	padding-right: 4px;
	font-weight: bold;
}

#modal-container .modal-input {
	font-family: 'Trebuchet MS', Verdana, Arial;
	float: left;
	padding: 2px;
	margin: 2px;
	background: #eee;
	border: 1px solid #fff;
	width: 250px;
}

#modal-container textarea {
	height: 84px;
}

#modal-container .modal-top {
	height: 13px;
	background: url(/weblib/images/modal/form_top.gif) no-repeat;
	padding: 0;
	margin: 0;
}

#modal-container .modal-bottom {
	height: 13px;
	background: url(/weblib/images/modal/form_bottom.gif) no-repeat;
	font-size: .7em;
	text-align: center;
}

#modal-container .modal-bottom a,#modal-container .modal-bottom a:link,#modal-container .modal-bottom a:active,#modal-container .modal-bottom a:visited
	{
	position: relative;
	top: -4px;
	text-decoration: none;
	color: #666;
}

#modal-container .modal-bottom a:hover {
	color: #888;
}

#modal-container .modal-button {
	margin: 4px 0 0 4px;
	cursor: pointer;
	height: 24px;
	border: 0;
	font-size:12px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	vertical-align: middle;
}

#modal-container .modal-send {
	width: 80px;
	background: url(/weblib/images/modal/send.png) no-repeat;
}

#modal-container .modal-cancel {
	width: 80px;
	background: url(/weblib/images/modal/cancel.png) no-repeat;
}

#modal-container a.modalCloseX,#modal-container a.modalCloseX:link,#modal-container a.modalCloseX:active,#modal-container a.modalCloseX:visited
	{
	text-decoration: none;
	font-weight: bold;
	font-size: 1.2em;
	position: absolute;
	top: -2px;
	left: 400px;
	color: #999;
}

#modal-container a.modalCloseX:hover {
	color: #9bb3b3;
}