@charset "utf-8";
/* Intranet Base Styles */
* {
	margin: 0;
	padding: 0;
}
body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #efefef url(../interface/eca_back.gif);
	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;
}
a {
	color: #009;
	text-decoration: none;
}
a:hover {
	color: #00f;
	text-decoration: underline;
}
.twoColFixLtHdr #container {
	width: 900px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #666;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background: #fff;
} 
.twoColFixLtHdr #header {
	padding: 0 5px;  /* 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. */
	height: 45px;
	background-color: #fff;
	background-image: url(../interface/new_intranet_public.gif);
	background-repeat: no-repeat;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 14px;
	padding-top: 15px;
	padding-left: 150px;
	display: none;
}

.twoColFixLtHdr #mainContent {
	padding: 0px;
	margin-top: 0;
	margin-right: 25px;
	margin-bottom: 0;
	margin-left: 25px;
} 
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#efefef;
	float: left;
	width: 870px;
	border-top: #000 1px solid;
	margin:0;
} 
.twoColFixLtHdr #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 */
	font-size: 10px;
	text-align: center;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}
.red_text {
	color:#f00;
}
.green_text {
	color: #45C12F;
	
}
.blue_text {
	color: #6394D6;
}
.yellow_text {
	color: #F1C949;
	
}
.strike {
	text-decoration: line-through;
}
