/**
 * @copyright Copyright (C) 2006 Andrew Schmadeke. All rights reserved.
 * @package Focus/Finance
 * This package can be modified by the licencee, but the license is non-transferrable.
 */

#emailForm {
	position: fixed;
	z-index: 999999;
	width: 500px;
	height: 300px;
	top: 50%;
	left: 50%;
	margin: -150px 0 0 -250px;
	padding: 25px 10px 10px;
	background: #FEFEFE;
	border: 1px solid #999;
	border-radius: 5px;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}

#emailForm s,
#emailForm u {
	text-decoration: none;
	font-style: normal;
	font-weight: bold;
}

#emailForm s {
	position: absolute;
	display: block;
	right: 0;
	top: 0;
	left: 0;
	height: 20px;
	line-height: 20px;
	padding: 0 5px;
	border-bottom: 1px solid #999;
	border-radius: 5px 5px 0 0;
	background: #F8F8F8;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1) inset;
	color: #555;
}

#emailForm input {
	position: relative;
	left: -2px;
	margin: 5px 0;
	width: 100%;
}

#emailForm span {
	position: absolute;
	display: block;
	top: 85px;
	right: 8px;
	bottom: 45px;
	left: 8px;
}

#emailForm textarea {
	width: 100%;
	height: 100%;
}

#emailForm button {
	position: absolute;
	display: inline-block;
	bottom: 10px;
	right: 90px;
	width: 70px;
}

#emailForm button+button {
	right: 10px;
}

[data-email] {
	color: #00F;
	text-decoration: underline;
	cursor: pointer;
}

[data-email=""] {
	color: inherit;
	text-decoration: inherit;
	cursor: inherit;
}