@charset "utf-8";
/* CSS Document */

@import "layout.css";
@import "typography.css";


/* the overlayed element */
.apple_overlay {
	display:none;
	background:url(/images/overlay.png);
	width:750px;
	height:465px;
	padding:0px;
	position:relative;
}

/* default close button positioned on upper right corner */
.apple_overlay .close {
	background-image:url(/images/close.png);
	position:absolute;right:-35px; top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}
/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#CCC;
	
	width:675px;	
	min-height:200px;
	border:1px solid #666;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(/images/close.png);
	position:absolute;
	right:-27px;
	top:-27px;
	cursor:pointer;
	height:35px;
	width:35px;
}

#cpdemo {
	display:none;
		background:#FFF;
		color:#666;
		width:1026px;
		height:600px;		
	}
#cpdemo .close {
	background-image:url(/images/close.png);
	position:absolute;right:-35px; top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}
	
/* container for external content. uses vertical scrollbar, if needed */
div.contentWrap {
	height:1024px;
	overflow-y:auto;
}


.termstable th { text-align:left; padding-left:12px; font-size:16px; font-weight:bold; background:#dddedf; }
.termspadding { margin:12px 0px 12px 0px; padding:0px 0px 0px 40px; }
.terms-container { width:780px; margin:auto; }




