/* 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: 40%;
    left: 40%;
    
    /*margin-left: -300px;*/
    width: 195px;
    height: 100px;
    
    /*background-color: #EEE;*/
    color: #333;
    border: none;
    /*padding: 12px;*/
    
    /*background: url(images/spinning-sun.gif) no-repeat center*/
    border: 2px solid black;
    
    -x-background-y-position:top;
}


#tableDialog{
	background-color: white; 
	text-align: center;
	filter:alpha(opacity=85);
	moz-opacity:.85;
	opacity:.85;
}

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

div.jqmNotice img.jqResize {position: absolute; right: 2px; bottom: 2px;}

/* Notice CSS courtesy of;
   Alexandre Plennevaux <alexandre@pixeline.be>,
   Brice Burgess <bhb@iceburg.net> */

div.jqmNotice {
    display: none;
    
    position: relative;
    
    width: 320px;
  background:#FFFFCC url(notice/note_icon.png) 5px 5px no-repeat;
    border: 1px solid #000;
    padding: 0;
}

.jqmnTitle{margin: 0 25px;}
  
.jqmnTitle h1{
  margin: 5px 0;
  padding-left:5px;
  width: 100%;
  
  font-size:10px;
  color:#FFFFCC;
  background-color:#505050;
}

div.jqmNotice .jqmClose {
  position: absolute;
  cursor: pointer;
  right: 4px;
  top: 6px;
}

.jqmnContent{
  border-top:1px;
  color:#000;
  font:12px/18pt Comic Sans, Comic Sans MS, cursive;
  padding:0 20px 5px;
}






div.whiteOverlay { background-color: black; }
div.jqDrag {}

/* 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.dialogTitle { 
  background-color: #E6E6E6;
  color: black;
  padding-top: 6px;
  padding-left:5px;
  font-weight: bold;
  * zoom: 1;
}



/* [[[ Body / Message Classes ]]] */
div.dialogBody {
  background-color: white;
  /*padding: 7px 7px 7px;
  height: 180px;
  overflow: auto;*/
}

div.jqmdMSG { color: #317895; }


/* [[[ Button classes ]]] */
input.dialogClose {
  position: absolute;
  right: 7px;
  top: 4px;
  height: 15px;
  
}
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;*/ }


