/* 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: 8%;
    left: 50%;
    margin-left: -310px;
    width: 620px;
    background-color: #fff;
    border: 3px solid #81BA09;
    padding: 12px;
    background: url(/media/img/popup_bg.png) repeat-x #fff;
    font-family: Arial,Helvetica,sans-serif;
}

.jqmOverlay { background-color: #000; }

#jqm_image {
    text-align: center;
    float: left;
    width: 270px;
}

.jqmClose {
    float: right;
}

#line {
    height: 1px;
    background: #ccc;
    overflow: hidden;
    margin-bottom: 11px;
    width: 100%;
}

#jqm_content {
    float: left;
    width: 100%;
    
}

#jqm_title {     
    text-align: center;
    width: 100%;
    position: absolute;
    top: 11px;
    left: 0;
    font-size: 18pt;
    text-weight: bold;
    z-index: -1;
}

#jqm_top {
    height: 30px;
    padding-bottom: 11px;
}

#jqm_text {
    font-size: 10pt;
    float: left;
    width: 320px;
    line-height: 14pt;
}

.field {
    clear:both; 
    text-align:right; 
    line-height:25px;
    margin: 6px 0;
    color: #666;
    font-weight: normal;
}

#send {
    color: #333;
    font-weight: bold;
}

.field label {
    float:left; 
    padding-right:10px;
    font-size: 10pt;
}

.field input {
    width: 200px;
    border: 1px solid #b4ea0f; 
    vertical-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10pt;
}

.field textarea {
    width: 200px;
    border: 1px solid #b4ea0f;
    height: 100px; 
    vertical-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10pt;
}

.field onblur {
    color: #ff0000;
}

#send span {
    text-align: left;
    font-size: 12pt;
    color: #000;
    font-weight: bold;
    display: block;
    padding-bottom: 2px;
}

#send_button {
    float: right;
}

#jqm_text strong {
    font-size: 12pt;
}
 
 
#jqm_text span {
    color: #666;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 9pt;
    padding-top: 6px;
    display: block;
}


#jqm_text img {
    vertical-align: -10px;
    margin: 6px 0 0 0;
    display: inline;
}

#jqm_section {
    font-family: Verdana, Arial, Helvetica, sans-serif; 
    margin: 0 auto;
    font-size: 10pt;
    line-height: 28pt;
}

#jqm_section a {
    color: #666;
    text-decoration: underline;
}

#jqm_section a:hover {
    color: #7A9bac;
    text-decoration: none;
} 

#jqm_width {
    float: left;
    text-align: center;
    width: 280px;
    
}

/* 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(10 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
     z-index: 3000;
}
