/* LAYOUT MAIN */

/* no overflow-y:scroll on body of popup because we already have it applied to the html page
   hence it will always have scrollbar there. If you ever take away that rule, you must add it back.
	this will also affect IE */
body.popup{width:580px; min-height:500px; margin:0; padding:0;}
body.popup #nav-tools,
body.popup #main-nav{display:none;}

/* set min-height of popup, which matches height in js script, in 
   order to set a min-height for #content for there to be by default equal padding
	all around #content, with extra room to scroll down because all popups will have scroll bar by default */
body.popup #container{
	/*background:#FFF url(../images/bkgd_main.png) 0 0 no-repeat; */
	margin-bottom:0; 
	padding-bottom:0; /* override default when there's a footer */
	min-height:500px;
	max-width:560px; 
	min-width:560px; 
	width:560px;
	}
	
/* set min-height of #content in order for there to be by default 
   equal padding all around, with extra room to scroll down because
	all popups will have scroll bar by default */
body.popup #content.daisy-doc{
	padding-top:10px;
	padding-right:3%; 
	min-height:360px;
	
	/* revised */
	padding-right:0;
	width:auto;
	}