/* 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}); */
  
.jqmWindow {
    display: none;
    position: fixed;
    top: 17%;
    left: 50%;
}

.jqmOverlay { background:#000; }

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



.modal {


padding: 0px;
color: #808284;
}

.modal.wide {
width: 600px;
height: 525px;
margin-left: -300px;
top: 50%;
margin-top: -260px;
}


.modal h2 {
font-size: 18px;
font-weight: normal;
color: #0078ae;
padding-bottom: 3px;
background: url(images/dashline.gif) bottom repeat-x;
position: relative;
}
.modal p {
padding: 2px 0 4px 0;
font-size: 12px;
line-height: 14px;
}

.modal table td.p {
padding: 2px 0 4px 0;
font-size: 12px;
line-height: 14px;
}
.modal .center {
text-align: center;
}
.modal table {
	font-family:Arial;
	font-size: 12px;
}

.modal table td {
padding: 4px 5px 4px 0;
font-size: 12px;
vertical-align: middle;
}
.modal table.twocol {
float: left;
margin-right: 10px;
width: 150px;
}

.modal table td.label {
font-weight: bold;
white-space: no-wrap;
text-align: right;
font-size:12px;
color:Gray;

}
.modal table td.label.multi {
vertical-align: top;
padding-top: 8px;
}
.modal table th {
text-align: left;
font-weight: normal;
font-size: 14px;
color: #0078ae;
padding-top: 5px;
}
.modal textarea.txt,
.modal input.txt {
width: 225px;
}
.modal.wide textarea.txt,
.modal.wide input.txt {
width: 300px;
}
.modal textarea.txtsml,
.modal input.txtsml {
width: 200px;
}
.modal label.error {
padding-bottom: 3px;
font-weight: bold;
color:#F00;
}