/* jqModal base Styling courtesy of;
  Brice Burgess <bhb@iceburg.net> */

/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
  the Window's z-index value will be set to 3000 by default (in jqModal.js). You
  can change this value by either;
    a) supplying one via CSS
    b) passing the "zIndex" parameter. E.g.  (window).jqm({zIndex: 500}); */
  
 #largeImgDiv {
  height:300;
  width:400;
 }
  
 #largeImage {
 border: 1px solid #FFFFFF;
 margin-top:5px;
  margin-bottom:5px;
 
 }
.jqmWindow {
    display: none;
    
    position: fixed;
    top: 0px;
    left: 320px;
    margin-left: -300px;
    background-color: #333333;
    color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
    padding-top: 5px;
	padding-bottom: 5px;
}


.jqmWindow a:link {
    
	color: #000000;  
	text-decoration:none;
 }
 
 .jqmWindow a:visited {  
	color: #FF9966;  
	text-decoration:none;
 }
 
 
 
 .jqmWindow a:hover {
    
	color: #00ccff;  
	text-decoration:underline;
 }
 
 
 #imageGalleryClose {
  float:left;
  margin-left:10px;
 
 }
 
 #spanX {

	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: bold;
	
 }
 
 #spanX a:link {
     color: #FF9966;
	 text-decoration:none;
	}
	
  #spanX a:visited {
     color: #FF9966;
	 text-decoration:none;
	}
	
  #spanX a:hover {
     color: #00ccff;
	 text-decoration:underline;
	}
 
 #spanClose  {
     font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	 color: #FFFFFF;
 
 }
 
 #imageNav {
 float:none;
 }
 
 #imageLoading {
 float:right;
 margin-top:-12px;
 margin-right:10px;
 }
 
.jqmWindow a:hover{
	color: #FF9966;
	text-decoration: underline;	
	
 }


.jqmOverlay { background-color: #999; }

/* 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 .jqmWindow {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(5 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

