/* CSS FILE TO CREATE BOX OF SIZE
* _____________70%_______________     ______30%______
* |                             |    |               |
* |                             |    |               |
* |                             |    |               |
* |                             |    |               |
* -------------------------------     ----------------
*/

.left70 {	position: static;
			float: left;
			text-align: center;
			top: 180px;
			width: 70%;
			overflow: visible;
			margin: 0 auto;			
		}

.right30 {	position: static;
			float: right;
			text-align: center;
			vertical-align: middle;
			top: 180px;
			width: 30%;
			overflow: visible;
			margin: 0 auto;
		}