/* Modified version of jqModal base Styling courtesy of;
  Brice Burgess <bhb@iceburg.net> */
  
.jqmWindow {
	position: relative;
	display: none;

	position: fixed;
	top: 0%;
	left: 50%;

	margin-left: -320px;
	width: 640px;
	height: 610px;

	background-color: #FFFFFF;
	color: #000000;
	border: 0px;
	padding: 0px;

	border-radius: 4px;
}

.jqmWindow div.body div.content{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 5px;
	padding-top: 5px;
}

.jqmWindow div.body div.message{
	padding-bottom: 5px;
	padding-top: 5px;
}

.jqmWindow div.body a{
	color: #156394;
}

.jqmWindow div.float-left{
	float: left;
}

.jqmWindow div.float-right{
	float: right;
}

.jqmWindow div.clear{
	clear: both;
}

.jqmWindow .align-center {
	text-align: center;
	width: 100%;
}

.jqmWindow .hidden {
	display: none;
}

.jqmOverlay { 
	background-color: #000000; 
}

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html .jqmWindow {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}
