@charset "utf-8";
/* 
    Document   : rarmodal.css
    $LastChangedRevision: 396 $
	$LastChangedBy: SamBritton $
	$LastChangedDate: 2011-08-16 10:34:39 +0100 (Tue, 16 Aug 2011) $
    Description:
        Toolkit inline content thickbox styling.
	Modal Transparency - Chris McKee 1208
*/
 .content_faded{	
  position: fixed;
  z-index:2100;
  top: 0px;
  left: 0px;
  height:100%;
  width:100%;
  background-color:#000;
  opacity: .75; /* Standard: FF > 1.5, Opera, Safari */
  filter: alpha(opacity=75); /* IE < 8 */
  -ms-filter: "alpha(opacity=75)"; /* IE 8 */
  -khtml-opacity: .75; /* Safari 1.x */
  -moz-opacity: .75; /* FireFox <= 1.5, Netscape */
}

* html .content_faded{ /* ie6 hack */
     position: absolute;
     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

.RARModal {
	background:#fff;
	border:3px solid #fff;
	color:#000;
	display:none;
	height:350px;
	left:35%;
	overflow:auto;
	padding:10px;
	position:fixed;
	text-align:left;
	top:15%;
	width:350px;
	z-index:2102;
}
* html .RARModal{ /* ie6 hack */ position: absolute;}

.RARCloseButton { position:relative; }

.RARModal a { 
	color:#830431;
	text-decoration:underline;
}
