/* CSS Document */

.container {
  /* make this a containing block! */
  position: relative;
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto; 
  /* mark this element visually prominent 
  border: 1px dotted red;*/
}

#wrapper {
	
}

.container_box1 {
	position: relative;
	background: none;
	margin-left: auto;
	margin-right: auto;
	width: 99%;
	z-index: 5;
	border: 1px dotted yellow;
}

#c1 {

}

.container_box2 {
	position: relative;
	background: none;
	margin-left: auto;
	margin-right: auto;
	width: 98%;
	height: 100%;
	z-index: 5;
	border: 1px dotted green;
}

#c2 {
	
}

.menu {
	position: absolute;
	background: none;
	margin-left: auto;
	margin-right: auto;
	z-index: 5;
/*	border: 1px dotted blue; */
	top: 326px; /* was 385px */
}

#m1 {

}



.center {
  /* take element out of the normal page flow! */
  position: absolute;
  /* position the element vertically using top or bottom
     and define width as you like:                       */
  top: 10px;     
  width: 50%;   
  /* set left and right to the same value! */
  left: 0;
  right: 0;
  /* adding auto-margins left and right will
     center the element horizontally!         */
  margin-left: auto;
  margin-right: auto;
  /* mark this element visually prominent */
  background:red;
}


