﻿/**
 * SimpleModal Test
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2007 Eric Martin - http://ericmmartin.com
 *
 * Revision: $Id: simplemodal.css 99 2008-02-04 16:31:09Z emartin24 $
 *
 */
 
/* SimpleModal Styles */
#modalOverlay {background-color:#000; cursor:wait;}
#modalContainer {height:150px; width:600px; left:50%; top:25%; margin-left:-300px; background-color:#fff; border:3px solid #ccc;}
a.modalCloseImg {background:url(style/images/x.png) no-repeat; width:25px; height:29px; display:inline; z-index:3200; position:absolute; top:-15px; right:-18px; cursor:pointer;}

/* fix png display in IE < 7 */
*html a.modalCloseImg{background:none; right:-14px; width:22px; height:26px; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='style/images/x.png',sizingMethod='scale');}

/* fix fixed container position in IE < 7 */
*html #modalContainer {top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(15 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');}
