/* jqModal base Styling courtesy of;
    Brice Burgess <bhb@iceburg.net>, but since restyled by elcom */

/* 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:absolute;
    top:40%;
    left:50%;
    margin-left:-200px;
    width:400px;
    color:#333;
    border:0px solid black;
    padding:20px;
    background-color:#ffffff;
    /*css3*/
    /* FireFox 3.6 */
    /* Safari4+, Chrome */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed')";
	box-shadow: 0 4px 10px #262626;
	-moz-box-shadow: 0 4px 10px #262626;
	-webkit-box-shadow: 0 4px 10px #262626;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #ededed),color-stop(1, #ffffff));/* IE6,IE7 */
    /* IE8 */
    }
.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');
}
/* elements within jqmodal*/
.jqmWindow label{
    display:block;
    margin:10px 0 0 0;
    font-size:14px;
}
.jqmWindow input.ComboBoxInput_Elcom{
    width:379px !important;
}
.jqmWindow input.ComboBoxInputHover_Elcom{
    width:378px !important;
}
.jqmWindow .modal-buttons{
    margin-top:20px;
}
.modal-buttons .buttonType1{
    float:right;
    margin-left:10px;
}
