/**
* October-Design Inc., ©2010
* Style Sheet for printing
**/

/*GENERAL LAYOUT RULES*/
@media print {
	body, html {
	background-color: #FFFFFF;
	margin: 0;
	padding: 0;
	font-family: arial, helvetica, san-serif;
	font-size: 11pt;
	color: #000000;
	}
}
/**TEXT
*Margins add space to the outside of an element
*Padding adds space to the inside of an element
*/
.content, .text
{
  padding-left: 20pt;
  padding-right: 40pt;
}
/*HIDE SOME ELEMETNS*/
#flash{display: none;}
#Menu{display: none;}
#border{display: none;}

/**CONTAINERS FOR POSTION*/
#first_container {
  margin: 0; 
  display: table; 
  height: 100%;  
  position: relative; 
  width: 800px;
  height: 880px;
  z-index:1
}
#second_container {
	position: absolute;
	/*top: 5%;*/
	margin-left: 0%;
	width: 100%;
	height: 100%;
	z-index:2
}
#third_container {
	position: relative;
	/*top: 5px;*/
	width: 800px;
	height: 100%;
	z-index:3
}