/* 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;
}
