/* the overlayed element */
.search_overlay {

    /* initially overlay is hidden */
    display:none;

    /*
      width set to 500 to work better on phones
     */
    width:500px;   

    /* some padding to layout nested elements nicely */
    padding:10px;
	 
    
    min-height:200px;
    border:1px solid #666;
    background-color:#FFFFFF;
}

/* default close button positioned on upper right corner 
note that the url to the image is different locally from server */
.search_overlay .close {
    background-image:url(/list/images/close.png);
    position:absolute; right:-15px; top:-15px;
    cursor:pointer;
    height:35px;
    width:35px;
}

  /* container for external content. uses vertical scrollbar, if needed */
  div.contentWrap {
    height:500px;
    overflow-y:auto;
  }