/*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:#eee;border:2px outset #666;display:none;position:absolute;z-index:9999999;font:12px Arial;text-align:left;padding:5px}

/*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");}