body  {
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	font-size: 0.9em;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 5px;
	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-color: #FFFFFF; 
} 


/* Main Content */

/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/

#header {
	height: 135px;
	text-align: left;
	margin: 0 auto;
	background-color: #CBD3DD;
	background-image: url(http://archive.nmhealth.org/images/banner.png);
	background-repeat: no-repeat;
	border-bottom: 1px solid #AAAAAA;
}

#search {
	display: none;
	width: 20em;
	color: #1919B3;
	font-size: 0.9em;
	line-height: 1.5;
	position: absolute;
	top: 40px;
	right: 50px;
	font-weight: bold;
	height: 55px;
}

#search a {
	color: #1919B3;
	font-weight: bold;
	text-decoration: underline;
}

#search a:hover {
	color: #FF0000;
	text-decoration: underline;
}
.topnav_wrap {
	width: 100%;
	height: 1.5em;
	z-index: 1000;
	padding-left: 10px;
	font-size:9px;
}

{margin: 0px; padding: 0px}

.topnav_rule {
	background-color: #FFFFFF;
	height: 14px;
	width: 100%;
	float: left;
	font-size: 10px;
	line-height: 12px;
	color: #000000;
}

.twoColHybLtHdr #container {
	text-align: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0px;
	background-color: #FFFFFF;
} 
.twoColHybLtHdr #header {
	padding: 0;
	background-color: #CBD3DD;
	text-align: left;
} 
.twoColHybLtHdr #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;
	text-align: left;
}

/* the left and right margin should be given to every element that will be placed in the side columns */

.twoColHybLtHdr #sidebar1 {
	width: 16em;
	margin: 0px;
	padding: 0;
	height: 80em;
	clear: left;
	float: left;
	text-align: left;
}

.twoColHybLtHdr #mainContent {
	margin-top: 5px;
	margin-right: 20px;
	margin-bottom: 0;
	text-align: left;
	margin-left: 16em;
	min-width: 500px;
} 
.twoColHybLtHdr #footer {
	margin-top: 1em;
	padding: 1.5em;
	font-size: 0.95em;
	text-align: center;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #81ADFF;
} 
.twoColHybLtHdr #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 */
	line-height: 1.2;
}

/* Top Banner Elements */


/* Left Navigation Menu */

#left_menu
{
	width: 15em;
	float: left;
	margin-top: 8px;

}

.clear
{
	clear: both;
}

/* Miscellaneous classes for reuse */

.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;
}
	
/* Top Navigation Menu */

#top_nav {
	width: 1200px;
	height: 4em;
	vertical-align: top;
	text-align: center;
}

#top_nav a:hover{
	color: #16A39C;
}
div#nav {
	font-size: 95%;
	height: 4em;
}
div#nav ul {
	margin: 0;
	padding: 0;
	background: white;
	border: 1px solid #CCC;
	border-width: 0 1px;
}
div#nav li {
	position: relative;
	list-style: none;
	margin: 0;
	float: left;
	width: 9em;
	line-height: 1.1em;
	height: auto;
	background-color: #FFBB73;
}
div#nav li:hover {
	background-color: #FFFFCC;
}
div#nav li.submenu {
	background-color: #FFFFFF;
}
div#nav li.submenu:hover {
	background-color: #FFFFCC;
}
div#nav li a {
	display: block;
	padding: 0.5em 1em 0.5em 0.15em;
	text-decoration: none;
	width: 9em;
	color: #0033CC;
}
div#nav li a:hover {
	color: #69280C;
}
div#nav>ul a {
}
div#nav ul ul {
	position: absolute;
	width: 9em;
	display: none;
}
div#nav ul ul li {
	border-bottom: 1px solid #999999;
}
div#nav li.submenu li.submenu {}
div#nav li.submenu li.submenu:hover {}
div#nav ul.level1 li.submenu:hover ul.level2, 
div#nav ul.level2 li.submenu:hover ul.level3 {
	display:block;
	color: #009999;
}
div#nav ul.level2 {
	top: 3em;
	left: -1px;
	width: 9em;
}
div#nav ul.level3 {top: -1px; left: 0em;
  border-top: 1px solid #CCC;}
/* Breadcrumbs */
{margin: 0px; padding: 0px}

.topnav_rule {
	background-color: #FFFFFF;
	height:12px;
	width: 100%;
	float: left;
	font-size: 8px;
	line-height: 1px;
	color: #CCCCCC;
}

<style type="text/css">
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.breadcrumb{
font: bold 14px "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, sans-serif;
}


.breadcrumb a{
background: transparent url(/images/breadcrumb.gif) no-repeat center right;
text-decoration: none;
padding-right: 18px; /*adjust bullet image padding*/
color: navy;
}

.breadcrumb a:visited, .breadcrumb a:active{
color: navy;
}


.breadcrumb a:hover{
text-decoration: underline;
}

</style>
