/* 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}); */

.jqmWindowStoreLocator {
    display: none;

    position: fixed;
    top: 50%;
    left: 50%;

    margin: 0px;
    width: 606px;
    margin-left: -303px;
    height: 480px;
    margin-top: -240px;

/*    background-color: #EEE;*/
    color: #333;
    border: 0px;
    padding: 0px;
}

.jqmWindowSubscribe {
    display: none;

    position: fixed;
    top: 50%;
    left: 50%;

    margin: 0px;
    width: 250px;
    margin-left: -150px;
    height: 200px;
    margin-top: -130px;

/*    background-color: #EEE;*/
    color: #333;
    border: 0px;
    padding: 0px;
}


.jqmWindowProduct {
    display: none;

    position: fixed;
    top: 50%;
    left: 50%;

    margin: 0px;
    width: 600px;
    margin-left: -300px;
    height: 536px;
    margin-top: -268px;

/*    background-color: #EEE;*/
    color: #333;
    border: 0px;
    padding: 0px;
}
.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 div.jqmWindowStoreLocator {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(50 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

* html div.jqmWindowSubscribe {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(50 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}


* html div.jqmWindowProduct {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(50 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

/*div.jqmWindowStoreLocator input:focus, div.jqmWindowStoreLocator input.iefocus { background-color: #eaffc3; }
div.jqmWindowSubscribe input:focus, div.jqmWindowSubscribe input.iefocus { background-color: #eaffc3; }*/
