/* Define the space for the popout. */
#popout {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0px;
	width: 350px;
	height: 100%;
	overflow: hidden;
	right: 0px;
	z-index: 100;
	/* Allows us to hide the ad with a negative margin. */ }

/* Basic formatting within the ad space. */
#popout a, #popout a img {
	text-decoration: none;
	border: 0;
	outline: 0; }
#popout a span {
	display: none; }

/* Formatting the "Cap" - the part the user click to open the ad. */
#popout #cap {
	width: 20px;
	height: 650px;
	position: absolute;
	z-index: 102;
	right: 0px;
	top: 50%;
	margin-top: -325px;
}

/* Formatting the close button. */
#popout a#close {
	position: absolute;
	top: 8;
	height: 20px;
	width: 26%;
	left: 63px;
}

/* Formatting the ad itself. */
#popout #adbox {
	position: absolute;
	top: 50%;
	z-index: 101;
	right: 20px;
	margin-right: -350px;
	margin-top: -315px;
	padding-left: 40px;
}

