@charset "utf-8";
/* CSS Document */

body#mr_home {
	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;
}
.oneColLiqCtrHdr #superContainer {
	display: none;
	/*visibility: hidden;*/
}
.oneColLiqCtrHdr #container {
	width: 80%;  /* this will create a container 80% of the browser width */
	/*width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	min-width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*margin-bottom: 80px;*/
	/*border: 1px solid #000000;*/
	border-bottom: 8px solid #333333;
	border-right: 8px solid #333333;
	border-left: 8px solid #333333;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColLiqCtrHdr #header {
	background: #DDDDDD;
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
.oneColLiqCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColLiqCtrHdr #tabMenu {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
/*.oneColLiqCtrHdr #tabMenu tabmenu {
	font-size:9px;
}
.oneColLiqCtrHdr #tabMenu submenu {
	font-size:9px;
}*/
.oneColLiqCtrHdr #tabMenu div {
	font-size: 10px;
}
.oneColLiqCtrHdr #tabMenu span {
	font-size: 10px;
}
.oneColLiqCtrHdr #mainContent {
	padding: 20px 40px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
/*.oneColLiqCtrHdr #txtEdit {
	color: #FF0000;
	font-size: 12px;
	padding: 0 20px; *//* remember that padding is the space inside the div box and margin is the space outside the div box */
	/*background: #FFFFFF;
}*/
.oneColLiqCtrHdr #footer {
	font-size: 9px;
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #DDDDDD;
} 
.oneColLiqCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.oneColLiqCtrHdr #marginBottom {
	width: 100%;
	height: 80px;
}
.oneColLiqCtrHdr #sitemap {
	width: 40px;
	height: 40px;
	background-image:url(../java/start_bg.gif);
	/*things on top where added with subtopbar*/
	position: absolute;
	left: 77px;
	top: 55px;
	/*right: 44px;
	top: 99px; /* use php to set this literally in the index.php file depending on the screen size, using mdiv_h or jdiv_h */
	/*padding: 2px;
	margin-right: 700px;
	margin-top: 270px;
	visibility: hidden;*/
	z-index: 100;
}
.oneColLiqCtrHdr #subsitemap {
	position: absolute;
	left: 6px;
	top: 5px;
	z-index: 100;
}
.oneColLiqCtrHdr #topbar {
	position: absolute;
	padding: 2px;
	/*margin-left: 700px;
	margin-top: 270px;*/
	margin-left: 82%;
	margin-top: 256px;
	visibility: hidden;
	z-index: 100;
}
.oneColLiqCtrHdr .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.oneColLiqCtrHdr #topbar a:link, a:visited{
	/*text-decoration: none;
	outline-style: none;*/
}
.oneColLiqCtrHdr #topbar a:hover, a:active{
	
}
/*
a:link {color: #FF0000}     unvisited link
a:visited {color: #00FF00}  /visited link
a:hover {color: #FF00FF}   mouse over link
a:active {color: #0000FF}   selected link

Note: a:hover MUST come after a:link and a:visited in the CSS definition in order to be effective!!

Note: a:active MUST come after a:hover in the CSS definition in order to be effective!!

Note: Pseudo-class names are not case-sensitive.
*/

/*
background:
	background-color:
		color-rgb
		color-hex
		color-name
		transparent;
	background-image:
		url
		none;
	background-repeat:
		repeat
		repeat-x
		repeat-y
		no-repeat;
	background-attachment:
		scroll
		fixed;
	background-position:
		top left
		top center
		top right
		center left
		center center
		center right
		bottom left
		bottom center
		bottom right
		x% y%
		xpos ypos;
*/