/* 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%;
    
    margin-left: -300px;
    width: 600px;
    
    background-color: #EEE;
    color: #333;
    border: 1px solid black;
    padding: 12px;

}

.jqmOverlay { background-color: #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');

}
.jqmClose{
	float:right;
	padding:3px;
	font-size:12px;
}
.rn_formSectionItem {
	clear:both;
	width: 300px;
	padding: 8px;
	margin:0 auto;
}
.rn_label {
	float: left;
	width: 120px;
	padding-right: 6px;
	font-family: Arial;
	font-size: 12px;
	color: #000000;
	line-height: 18px;
	text-align:right;
}

.rn_input {
	float: left;
	width: 150px;
	line-height: 18px;
	font-family: Arial;
	font-size: 12px;
	color: #000000;
	vertical-align: middle;
	display: inline;
}

.rn_textfield {
	font-family: Arial;
	font-size: 12px;
	color: #000000;
	width: 132px;
	height: 13px;
	float: left;
	border: 1px solid #CCCCCC;
	background-color:#FFFFE6;
}

.rn_select {
	font-family: Arial;
	font-size: 12px;
	color: #000000;
	width: 132px;
	height: 18px;
	float: left;
	border: 1px solid #CCCCCC;
}

.rn_textarea {
	width: 132px;
	font-family: Arial;
	font-size: 12px;
	color: #000000;
	float: left;
	border: 1px solid #CCCCCC;
	background-color:#FFFFE6;
}
table.overlaytable {
	width:500px;
	margin:0 auto;
	font-size:12px;
}
.comment_area table.overlaytable {
	width:500px;
	font-size:12px;
	margin:0;
}
table.overlaytable td.label{
	padding:5px;
	vertical-align:middle;
	text-align:right;
}
table.overlaytable td{
	padding:5px;
	vertical-align:middle;
	text-align:left;
}
