/* 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 (via jqModal.js). */
	
.jqmWindow {
    display: none;
    
    position: fixed;
    top: 17%;
    left: 50%;
    
    margin-left: -300px;
    width: 600px;
    max-height: 80%;
    
    background-color: #EEE;
    color: #333;
    border: 1px solid black;
    padding: 12px;
    overflow: scroll;
}

.jqmOverlay { background-color: #000; }

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.jqm {position:absolute;top:0;left:0;z-index:-1;
	width: expression(this.parentNode.offsetWidth+'px');
	height: expression(this.parentNode.offsetHeight+'px');
}

/* 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 Style */
/* jqmModal dialog CSS courtesy of;
	Brice Burgess <bhb@iceburg.net> */

div.jqmDialog {
	display: none;
    
    position: fixed;
    top: 17%;
    left: 50%;
    
    margin-left: -200px;
	width: 400px;

	overflow: hidden;
	font-family:verdana,tahoma,helvetica;
}

/* 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 div.jqmDialog {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}


/* [[[ Title / Top Classes ]]] */
div.jqmdTC { 
	background: #3199d2; 
	color: white;
	padding: 7px 22px 5px 5px;
	font-family:"sans serif",verdana,tahoma,helvetica;
	font-weight: bold;
	* zoom: 1;
}
div.jqmdTL { padding-left: 3px;}
div.jqmdTR { padding-right: 3px; * zoom: 1;}


/* [[[ Body / Message Classes ]]] */
div.jqmdBC {
	background: url(dialog/bc.gif) repeat-x center bottom;
	padding: 7px 7px 7px;
	 /* height: 180px; */
	overflow: hidden;
}
div.jqmdBL { background: url(dialog/bl.gif) no-repeat left bottom; padding-left: 7px; }
div.jqmdBR { background: url(dialog/br.gif) no-repeat right bottom; padding-right: 7px; * zoom: 1 }

div.jqmdMSG { color: #317895; font-size: 11px;}
div.jqmdMSG H4 { color: #F26721; font-size: 14px; }
div.jqmdMSG H5 { color: #3199d2; font-size: 13px; text-align: right; }
div.jqmdMSG img { border-style: none; }


/* [[[ Button classes ]]] */
input.jqmdX {
	position: absolute;
	right: 19px;
	top: 17px;
	padding: 0 0 0 19px;
	height: 19px;
	width: 0px;
	background: url(/images/misc/close.gif) no-repeat top left;
	overflow: hidden;
}
input.jqmdXFocus {background-position: bottom left; outline: none;}

div.jqmdBC button, div.jqmdBC input[type="submit"] {
	margin: 8px 10px 4px 10px;
	color: #777;
	background-color: #fff;
	cursor: pointer;
}

div.jqmDialog input:focus, div.jqmDialog input.iefocus { background-color: #eaffc3; }
div.jqmClose em{display:none;}
div.jqmClose {
  width:20px;
  height:20px;
  display:block;
  float:right;
  clear:right;
  background: url(/images/misc/close.gif) 0 0 no-repeat;
}

a.jqmClose:hover a.jqmCloseHover{ background-position: 0 -20px; }

/* tabs */
.widget {   
width: 550px;   
margin: 5px;   
padding: 5px;   
background: #f3f1eb;   
margin-bottom: 15px;   
}   
  
.widget a {   
color: #222;   
text-decoration: none;   
}   
  
.widget a:hover {   
color: #009;   
text-decoration: underline;   
}   
  
.tabnav li {   
display: inline;   
list-style: none;   
padding-right: 5px;   
}   
  
.tabnav li a {   
text-decoration: none;   
text-transform: uppercase;   
color: #222;   
font-weight: bold;   
padding: 4px 6px;   
outline: none;   
}   
  
.tabnav li a:hover, .tabnav li a:active, .tabnav li.ui-tabs-selected a {   
background: #dedbd1;   
color: #222;   
text-decoration: none;   
}   
  
.tabdiv {   
margin-top: 2px;   
background: #fff;   
border: 1px solid #dedbd1;   
padding: 5px;   
}   
  
.tabdiv li {   
list-style-image: url("star.png");   
margin-left: 20px;   
}   
  
.ui-tabs-hide {   
display: none;   
}  

