/*modal styles*/

/*this class is given to all in-page hidden divs which hold modal box content, just hide it*/
.modal_content{display:none;z-index:-100;}

/*this class is used for the divs which surround all modal boxes
global styles for all modal boxes should be added here*/
.modal_container {
background-color:#fff;
display:none;
position:absolute;
z-index:9999999;
font:12px Arial;
text-align:left;
padding:5px;
border-radius:7px 7px 7px 7px;
border:10px solid rgb(190, 190, 190);
border:10px solid rgba(190, 190, 190, .5);
-webkit-background-clip:padding-box;
background-clip:padding-box;
}

/*the modal overlay is the transparent black div which covers the whole window*/
#modal_overlay{display:none;position:absolute;top:0px;left:0px;z-index:9999998;width:100%;background-image: url(http://www.nasdaq.com/images/overlay.png);}
* html #modal_overlay{background-image:none; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src="http://www.nasdaq.com/images/overlay.png", sizingMethod="scale");}