﻿/* Created by Charles Stuart Edwards
   Date : 18/09/2009
   This overlay is use instead of the jquery modal overlay
   because it fits within the ifame better
*/

.hidden{display:none;}

/* Background overlay */
#modalOverlay {
	position: fixed;
	top: 0px;
	left: 0px;
	height:100%;
	width:100%;
	background-color: #000;
}

* html #modalOverlay { /* ie6 hack */
     position: absolute;
     /*height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
     width: expression(document.body.scrollWidth > document.body.offsetWidth ? document.body.scrollWidth : document.body.offsetWidth + 'px');*/
}