body
{
	text-align: center;
	margin: 0;
}
#wrapper1
{
	width: 780px;
	margin: 0 auto;
	text-align: left;
}

/****************** header *******************/
#header
{
	position: relative;
	margin: 0;
}
/*************** end header ******************/

/************** footer ***********************/
#footer
{
	clear: both;
}
/************** end footer *******************/

/*popup usando div ESTÁTICO*/
#popup
   {
      position: absolute;
      border: 0px solid #666666;
      background-color:#FFFFFF;
      width: 300px;
      height: 200px;
   /*   margin-top: 5px;*/
      z-index: 3;
      LEFT: 0px; 
      TOP: 0px; 
   }
#popup2
   {
      position: absolute;
      border: 0px solid #666666;
      background-color:#FFFFFF;
      width: 300px;
      height: 200px;
/*      margin-top: 5px;*/
      z-index: 2;      
      LEFT: 0px; 
      TOP: 240px; 
   }   

/*crear contenedor y movible para cada popup DINAMICO (en uso)*/
	div.contenedor1 {
		position: absolute;
		border: 0px solid #000000;
		width: 300px;
		height: 200px;
		top: 0px;
		left: 0px;
		z-index: 2;
	}
	div.movible1 {
		width: 10%%;
		height: 20px;
		background: #FFFFFF;
		cursor: move;
	}
	
	div.contenedor2 {
		position: absolute;
		border: 0px solid #000000;
		width: 300px;
		height: 200px;
		top: 0px;
		left: 310px;
		z-index: 3;		
	}
	div.movible2 {
		width: 10%%;
		height: 20px;
		background: #FFFFFF;
		cursor: move;
	}	
