/* 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;
	padding-right: 14px;
}
#bc-modal {
	padding-left:20px;
	font-size:11pt;
	font-family:Arial, Helvetica, sans-serif;
}
#bc-modal-close {
	float:right;
	padding-top:12px;
	text-decoration:none;
}
.bc-modal-header {
	margin:0px;
	padding-top:47px;
	font-size:12pt;
}
.bc-modal-content {
padding-right: 40px;
display:block;
width:500px;
}

#bc-modal-btn {
	position:relative;
	font-size:11pt;
	margin-top:32px;
	padding-bottom:40px;
	margin-left:20px;
}
.bc-modal-continue-btn {
	/*width: px;
	height: px;
	background-image:url(//www.ibm.com/common/b/images/primary_bt_oksub.png);*/
	border-size: 0px;
	border-style: none;
}
.bc-modal-cancel-btn{
	margin-left:20px;
	margin-right:15px;
	border-size: 0px;
	border-style: none;
	/*width: px;
	height: px;
	background: url(//www.ibm.com/common/b/images/secondary_bt_cansub.png) no-repeat 0 -25px;*/
}


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