
/* Define the space for the popout. */
#popoutwrapper {
   position: absolute;
   left: 50%;
   /* Allows us to hide the ad with a negative margin. */ }			/* Basic formatting within the ad space. */
#popout {
   margin: 0;
   padding: 0;
   position: absolute;
   top: 180px;
   left: 480px; /* 976 / 2 = 488 /**/
   width: 136px;
   height: 111px;
   z-index: 100;
   overflow: hidden; 
   /* 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: 4px;
   height: 111px;
   position: relative;
   left: 0;
   z-index: 102; }

/* Formatting the close button. */
#popout a#close {
   position: absolute;
   background: transparent url('/popoutad/spacer.gif') /**/;
   top: 0;
   left: 121px;
   height: 15px;
   width: 15px; }

/* Formatting the ad itself. */
#popout #adbox {
   position: absolute;
   float: left;
   top: 0px;   
   left: 0px;
   margin-left: -136px;
   z-index: 101; }

