/* 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:30%;
	left:45%;

    width: 300px;
    
    background-color: #EEE;
    color: #333;
    padding: 12px;
}

.jqmWindow ul{
	list-style-type:none;	
}
.jqmWindow ul li{
	list-style-type:none;
}

.jqmOverlay { 
	background-image:url("../gs/tile_1.gif");
	opacity:90%;
	z-index:5;
	}

/* 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');
}

/*************************************
*
*	BELOW HERE ADDED BY JEFF
*
**************************************/

#messages {
	width:250px;
	z-index: 13;
	padding: 0px;
	text-align: center;
	display: none;
	text-align: left;
	background-color:transparent;
}
	#messages .top{
		width: 250px;
		height: 25px;
		background-image: url('../images/bubble_top_green.png');
		background-repeat: no-repeat;
	}
	#messages .inner{
		width: 220px;
		background-image:url('../images/bubble_mid_green.png');
		background-repeat: repeat-y;
		padding: 0px 25px 0px 12px;
	}
	#messages .bottom{
		width: 250px;
		height: 22px;
		background-image: url('../images/bubble_btm_green.png');
		background-repeat: no-repeat;
	}
	
#errors {
	width:250px;
	z-index:20;
	color: #000000;
	background-color: transparent;
	padding: 0px;
	text-align: left;
	background-color:transparent;
}
	#errors .top{
		width: 250px;
		height: 25px;
		background-image: url('../images/bubble_top_red.png');
		background-repeat: no-repeat;
	}
	#errors .inner{
		width: 220px;
		background-image:url('../images/bubble_mid_red.png');
		background-repeat: repeat-y;
		padding: 0px 25px 0px 12px;
	}
	#errors .bottom{
		width: 250px;
		height: 22px;
		background-image: url('../images/bubble_btm_red.png');
		background-repeat: no-repeat;
	}
#dialog {
	z-index:11;
	background-color: white;
	color:black;
	border:1px solid #000000;
	padding: 15px;
	text-align: left;
	font-size:15px;
	font-weight:900;
}
	#dialog .top{
	}
	#dialog .inner{
	}
	#dialog .bottom{
	}
#registerwindow {
	z-index:15;
	background-color: white;
	border:4px double black;
	text-align: left;
	color:black;
	font-size:10px;
}
