/* 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}); */
  
.jqmConfused {
    display: none;
    
    position: fixed;
    top: 17%;
    left: 50%;
    
    margin-left: -300px;
    width: 535px;
    height: 275px;
    padding: 115px 20px 35px 25px;
    background-image:url(/img/jargonbuster.png); 
    background-repeat: no-repeat;
    color: #333;
}

.jqmConfused p {
        color: #454545;
        font-family:  inherit;
        font-size: 12px;
        line-height: 175%;
        text-align: justify;
        padding: 0px 20px 0px 0px;
}

.jqmConfused h2 {
	padding: 0px;
}

.jqmOrder {
    display: none;
    
    position: fixed;
    left: 50%;
	top: 50%;
    
    margin-left: -350px;
    margin-top: -210px;
    width: 680px;
    height: 390px;
    padding: 20px 20px 20px 20px;
    background-image:url(/img/orderpopup.png);
    background-repeat: no-repeat;
    color: #333;
}

.jqmOrder p {
        color: #454545;
        font-family:  inherit;
        font-size: 12px;
        line-height: 175%;
        text-align: justify;
        padding: 0px 0px 0px 0px;
}

.jqmOrder h2 {
	padding: 0px;
}


#jqmContentboxOrder {
height: 350px;
width: 650px;
padding: 65px 0px 0px 10px;
overflow: auto;
}

#jqmContentbox {
height: 260px;
width: 520px;
padding: 0px 0px 0px 10px;
margin: 10px;
overflow: auto;
}

#jqmClosebox {
top: 0px;
right: 0px;
height: 50px;
width: 45px;
position: absolute;
cursor:pointer;
}

 .jqmOverlay { background-color: #000;}

/* 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 .jqmConfused {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

* html .jqmOrder {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(50 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}
