﻿/* jqModal alert CSS courtesy of;
   Alexandre Plennevaux <alexandre@pixeline.be>,
   Brice Burgess <bhb@iceburg.net> */

.jqmOverlay { background-color: #000; }
div.jqmAlert { /* contains + positions the alert window */
	display: none;  
	position: fixed;
	top: 90px;
	width: 100%;
	margin:0;
	padding:0;	
}
    
/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html div.jqmAlert {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

.jqmAlertWindow 
{
	height:auto;
	width:auto;
	margin: auto;
	padding:1px;  
	max-width: 730px;
	background:#fff;
	border:1px solid #000;	
	vertical-align: top;
}

.jqmAlertTitle{
	margin:0;
	height:20px;
	color:#FFF;
	background:#6699cc;
}
.jqmAlertTitle a{	
	color:#FFF;	
}


div.jqmAlert .jqmClose em{display:none;}
div.jqmAlert .jqmClose {
	display:block;
	float:right;
	clear:right;	
	padding-right: 5px;
}

div.jqmAlert a.jqmClose:hover,div.jqmAlert a.jqmCloseHover{ background-position: 0 -20px; }

div.jqmAlertContent
{
	
	text-align: center;	
	color:#666;
	font:11px/14pt arial;
	padding:0;
	margin:0;
	letter-spacing:0px;
	padding: 10px;
	
}

/*Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°Â°
  clearing a float without additional markup
   http://www.positioniseverything.net/easyclearing.html */

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
