		body {
			background: white url(i/bg.jpg) repeat-x;
			margin: 0;
			padding: 0;
		}
		#container {
			width: 775px;
			margin: 0 auto;
			font-family: 'Lucida Grande', Tahoma, Arial, Helvetica, sans-serif;
			font-size: 11px;
			line-height: 1.6em;
			color: #2f2c2c;
			background-image: url(i/bridge.png);
			background-position: bottom left;
			background-repeat: no-repeat;
			background-color: white;
			border:0;
		}
						
		h2 {
			color: #666666;
			font-size: 16px;
			font-family: Arial, Helvetica, sans-serif;
			background-color: #FFF;
			border-bottom:1px solid #DDDDDD;
		}

		.feature {
			width:100%;
			border-bottom:solid 1px #DDDDDD;
			padding-bottom: 8px;

		}

		img {
			border:0;
		}

		a {
			/* color:#09175E; */
			color:#990000;
			text-decoration: none;
		}

		a:hover {
			color:#990000;
			border-bottom:1px dotted #09175E;
		}

		#content a:hover {
			color:#990000;
			background:transparent;
		}

		
		.frm {
			float:right;
			margin-top: 0px;
			margin-right: 8px;
			font-size: 9px;
		}
		
		.srchbox {
			background-color: #FFF;
			color: #999999;
			border: 1px solid #CCC;
			font-size: 11px;
			font-family:verdana;
			height:14px;
		}

		.srchbtn {
			background-color: #FFF;
			color: #999999;
			border: 1px solid #CCC;
			font-family:verdana;
			height:19px;
		}
		
		
		#header {
			/* border-bottom: 4px solid #948979; */
			padding-top: 0px;
			clear: both;
			margin-bottom: 10px;
			/* background: white url(i/head_bg2.png) 46% 0% no-repeat; */
			height:110px;
		}
		
		#header p { 
			margin-top: -10px;
			margin-left: 30px;
			color: #999999;
		}

		h1.head {
			text-indent: -99999px;
			outline:none;
			display: none;
		}
	
        #navigation ul {
			float: left;
			width: 160px;
		}

		#navigation a {
			display: block;
			padding: 5px;
			width: 160px;
			border-bottom: 1px solid #CCC;
		}

		#navigation a:link, #navlist a:visited {
			color:#990000;
			text-decoration: none;
		}
		
		#navigation a:hover {
			background-color: white;
			color:#990000;
		}

		.drop {
			background: transparent url(i/arrow.png) 92% 50% no-repeat;
			display: block;
			padding: 5px;
			width: 160px;
			border-bottom: 1px solid #CCC;
		}

		.drop a {
			background: white url(i/arrow.png) 92% 50% no-repeat;
			color:#990000;
		}

		.sub a, a:hover {       /* arrow fix */
			background: white;
			color:#990000;
		}

		#navigation p {
			margin-top: 40px;
			padding: 5px;
			border-bottom: 1px dotted #CCC;
			border-top: 1px dotted #CCC;
		}
		
		#content {
			width: 570px;
			margin-left: 185px;
			padding:4px;
			font-size:12px;
			letter-spacing:1px;
		}
		
		#content p {
			padding-bottom: 5px;
			text-indent:20px;
		}

		.listings {
			border-bottom: 1px solid #DDDDDD;
			margin-bottom: 20px;
			/*	padding-bottom: 35px; */
			min-height: 145px !important;
			height:auto;
			width:570px;
		}

		.listing-img {
			float: left;
			height: 100px;
			width: 140px;
			border: 3px solid #DDDDDD;
			padding: 1px;
			margin: 0 10px 0 0;
		}

		.listing-img:hover {
			border: 3px solid #9E9E9E;
		}

		.listing-desc {
			max-height:60px;
			overflow:auto;
			color: #09175E;
			margin: 0;
		}

		.listing-detail{
			margin: 0;
			float:right;
		}

		.contact-lbl{
			padding-top:3px;
			display:block;
			width:100px;
			float:left;
			margin-bottom:10px;
			text-align:right;
			padding-right:20px;
		}

		.contact-input{
			padding:2px;
			border:1px solid #CCCCCC;
			width:180px;
			height:14px;
			font-family:Verdana, Arial, Helvetica, sans-serif;
			font-size:11px;
		}

		#footer {
			margin-top: 20px;
			clear: both;
			background-color:#08175E;
			padding: 0px 5px 0px 5px;
		}
		
		#footer p {
			color:#89817f;
			padding: 5px;
			margin: 0;
		}
		
		#footer p a {
			color: #89817f;
		}
		
		#footer p a:hover {
			color: #FFFFFF;
			background-color: transparent;
			border-bottom:1px dotted white;
		}


ul.makeMenu, ul.makeMenu ul {
  width: 140px;                 
  background-color: transparent;      
  padding-left: 0px;           
  cursor: default;             
  margin-left: 0px;            
}
ul.makeMenu li {
  list-style-type: none;       
  margin-left: 0px;                 
  position: relative;
  color: #990000;              
}
ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 0px;                    /* position slightly lower than the parent menu item */
  left: 170px;                  /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  background-color: white;    
			color:#990000;
}
ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
}
ul.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
}
/* and some link styles */
ul.makeMenu li a { color: #990000; display: block; width: 100%; text-decoration: none; }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #000; }
ul.makeMenu li:hover > a { color: #000; } /* supports links in branch headings - should not be display: block; */
