/* 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}); */
  
.jqmWindow {
display: none;
position: absolute;
top: 20px;
width: 1000px;
margin-left:-512px;
left:50%;
}

.jqmOverlay {background-color: #000; }

#modal {background: #fff; margin: 0 auto; padding: 15px; position: relative; text-align: center; width: 1000px; }

.jqmClose {
	background:url(../img/close.png) no-repeat;
	display: block;
	height: 30px;
	position: absolute;
	right:-15px;
	text-indent: -9999px;
	top: -15px;
	width: 30px;
}
a.ex2trigger {background: url(../img/plus.png) no-repeat right; color: #dcddde; font-size: 20px; text-decoration: underline; }
a:hover.ex2trigger {text-decoration: none; }