/* jqModal base Styling courtesy of;
  Brice Burgess <bhb@iceburg.net> */

/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
  the Window's z-index value will be set to 3000 by default (in jqModal.js). You
  can change this value by either;
    a) supplying one via CSS
    b) passing the "zIndex" parameter. E.g.  (window).jqm({zIndex: 500}); */

.modalWindow
{
    background-color: #ffffff;
    color: #333;
    border: 1px solid #005298;
    position: relative;
}
.modalWindow input.jqmdX {
	position: absolute;
	right: 7px;
	top: 5px;
}
.modalWindow .title
{
	background: #ebf5ff;
	border-bottom: 1px solid #005298;
	color:#2E66A4;
	font-weight:bold;
	font-family:Arial;
	font-size:12px;
}
.modalWindow .title .padding
{
	padding: 1px 5px 4px 5px;
}
.modalWindow .modalWindowContent
{
	position: absolute;
	width: auto;
	background-color: #ffffff;
}
.modalWindow .modalWindowContent .padding
{
	padding: 12px;
}

div.jqDrag {
	cursor: move;
}
div.jqDnR {
    z-index: 3;
    position: relative;
}
div.jqmDialog {
	display: none;
	width: 400px;
	overflow: hidden;
	border: 1px solid #005298;
	background-color: #ffffff;
	height: 150px;
}

div.jqmdT {
	background-color:#E8F2F9;
	padding: 5px;
	color:#2E66A4;
	font-weight:bold;
	border-bottom: 1px solid #005298
}
input.jqmdX {
	position: absolute;
	right: 7px;
	top: 4px;
}