.modal-overlay {
	display: none;
	/*position: fixed;*/
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0.6;
	filter: alpha(opacity=60);
	z-index: 200;
}
.modal-shim {
	overflow: auto;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 210;
}
.modal-wrap {
	position: absolute;
	padding: 30px;
}
.modal-window {
	position: relative;
	padding: 10px;
	background: white;
	box-shadow: 0 1px 4px rgba(0,0,0,.75);
}
/*
.modal-close {
	display: block;
	position: absolute;
	top: -11px;
	right: -11px;
	width: 18px;
	height: 18px;
	line-height: 18px;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	color: white;
	background: black;
	border: 2px solid white;
	border-radius: 50%;
	box-shadow: 0 0 4px black;
	z-index: 1;
}
.modal-close:hover {
	color: white;
	text-decoration: none;
}
.modal-close:before {
	content: '\2716';
}
.modal-close:focus {
	outline: none;
}
*/
.modal-close {
	position: absolute;
	top: 7px;
	right: 7px;
	width: 24px;
	height: 24px;
	background: url(../img/bosch-modal-closer.gif) no-repeat center center;
}
.modal-close:hover {
	background-image: url(../img/bosch-modal-closer-hover.gif);
}
.modal-close_blueTemplate {
	position: absolute;
	display: block;
	width: 24px;
	height: 24px;
	text-align: center;
	margin: 7px;
	top: 0;
	right: 0;
	text-indent: -9999px;
	background: url(../img/bosch-modal-closer.gif) no-repeat
}
.modal-close_blueTemplate:hover {
	background-image: url(../img/bosch-modal-closer-hover.gif);
}

.modal-content {
	line-height: 1.75;
}

.modal-header {
	margin: -10px -10px 10px;
	padding: 10px;
	color: white;
	background: #215F8B;
}
.modal-header h3 {
	margin: 0;
	color: white;
}

.modal-form {
	padding: 10px 50px;
	text-align: center;
}
.modal-form label {
	margin-bottom: 5px;
	display: block;
}
.modal-form .field {
	margin-bottom: 12px;
}
.modal-form .actions {
	
}
.modal-form .error {
	color: red;
}
.modal-form input[type=text],
.modal-form textarea {
	width: 280px;
	background: white;
	border: 1px solid #558DAE;
}
.modal-form textarea {
	height: 100px;
}
.modal-form input[type=submit] {
	padding: 7px 12px;
	color: white;
	background: #004167;
	background: linear-gradient(to bottom, #669EBF, #004167);
	border: none;
}