/* css/layout.css for Priority Management
   site-wide layout for all pages */

body {
	background: url(/_/img/bg_1024.png) center 137px no-repeat;
	}
body.no-bg {
	background-image: none;
  }
	
/** containers **/
#container {
  margin: 0 auto;
  padding-top: 137px;
	padding-bottom: 1em;
  position: relative;
  text-align: left;  /* reset text-alignment after IE5.5 centering */
	width: 1024px;
  }
#content {
  position: relative;
  }

/* width < 1024px */
@media screen and (max-width : 1043px) {
	body {
		background-image: none;
	  }
}

/* 786px < width < 1024px */
@media screen and (min-width : 768px) and (max-width : 1043px) {
	body {
		min-width: 755px;
	  }
	#container {
		padding-top: 130px;
		width: 755px;
		}
}

/* width < 786px */
@media screen and (max-width : 767px) {
	body {
		min-width: 447px;
	  }
	#container {
		padding-top: 96px;
		width: 447px;
		}
}
