@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding    */
	           /* of the body element to account for differing browser */
			   /* defaults                                             */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers.    */
	                    /* The text is then set to the left aligned default */ 
						/* in the #container selector                       */
	color: #000000;
    background-image:url(../images/quam-page-background.png); /* background for all pages */
	background-repeat: repeat;
}

/*******************************************
 *************** CONTAINER *****************
 ******************************************/
 
.oneColFixCtr #container {
	width: 880px;     /* using 20px less than a full 800px width allows for browser   */ 
	                  /* chrome and avoids a horizontal scroll bar                    */
	margin: 0 auto;   /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}

/*******************************************
 ********** CONTENT CONTAINER **************
 ******************************************/
 
.oneColFixCtr #mainContent {
	 padding-top: 3px;   /* make sure there is a little be of space at the top */
}


.oneColFixCtr #topNavbar{
	position: relative;
	display: block;
	float: left;
	width: 700px;
	margin-top: 3px;
	margin-bottom: 3px;
    padding-left: 180px;
	background-image: url(../images/navbar_base_slug.gif);
	z-index: 500;
}

.oneColFixCtr #bottomNavbar {
	position: relative;
	display: block;
	float: left;
	margin-top: 3px;
	margin-bottom: 3px;
	padding-left: 80px;
	background-image: url(../images/navbar_base_slug.gif);
	width: 800px;
	

}

.oneColFixCtr #header {
	position: relative;
	float: left;
	width: 880px;
/*	font-size: x-small; */
/*	text-align: center; */
}

.oneColFixCtr #footer {
	position: relative;
	float: left;
	width: 880px;
	font-size: x-small; 
	text-align: center; 
}


/*******************************************
 *************** PAGE CONTENT **************
 /******************************************/
 
 
.oneColFixCtr #pageContent {
	position: relative;
	float: left;
	width: 880px;
	/* background-color: white;  */
}

.oneColFixCtr #rightBlock {
	position: relative;
	float: left;
	display: block;
	width: 690px;
	font-size: 12px;
	padding-left: 10px;
	z-index: 0;
}

.oneColFixCtr #leftBlock { 
	position: relative;
	display: block;
	float: left;
	width: 175px;
	/* background-image:url(../images/navbar_base_slug.gif); */
	z-index: 500;
}

