/* 
    Document   : smartmodal
    Created on : 19-abr-2010, 15:44:15
    Author     : amruiz
    Description:
        Purpose of the stylesheet follows.
*/
/**
modal_content => sm_content
modal_overlay => sm_olay
modal_close => sm_close
modal_title => sm_title
**/

/*modal*/
#sm_content {
    -moz-box-shadow:0 0 8px #111111;
    background:none repeat scroll 0 0 #FFFFFF;
    display:none;
    height:340px;
    left:50%;
    margin-left:-335px;
    padding:5px;
    position:fixed;
    top:10%;
    width:740px;
  /*text-align:center;*/
}
#sm_content .sm_close{
	float:right;
	cursor:pointer;
        position: absolute;
}
#sm_olay { background-color: #000; }

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.overlay {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 #sm_content {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

