/* file:dt2b.css  */
 body { 
	background-color: rgb(0, 99, 185);
	color: rgb(100, 100, 100);
	font-family: Arial,Helvetica,sans-serif;
	font-weight: 500;
	text-align:center;
	font-size: 14px;
	padding: 0 0 15px 0px;
   }

  #main { 
	border: 1px solid black;
	margin: auto;
	width: 800px;
	height: 600px;
	background-color: white;
	background-image: url(contentbackdrop.jpg);
	background-repeat: repeat-x;
	text-align:left;
    }

  #banner { display: block;
    background-color: rgb(255, 255, 255);
    background-image: url(rightbanner.gif);
    background-repeat: no-repeat;
    background-position: right center;
    }

  #frontpic { 
	 border-bottom: 1px solid rgb(102, 102, 102);
	 border-top: 1px solid rgb(102, 102, 102);
    display: block;
    height: 182px;
    }
   #content {
		background-image: url(textbackdrop.jpg);
		background-repeat: repeat;
   }
   #content li {
		float: none;
		list-style-image: url(bullet2.gif);
		width: 100%;
   }

	#centercontent {
		width: 450px;
		margin: 15px 140px 0 140px;
	}

	#centercontent li {
		margin: 10px 0 0 0;
		line-height: 1.3em;
	}

	#rightcontent {
		width:50px;
		float:right;
	}

	#leftcontent {
		width:50px;
		float: left;
	}

/*Menu Sections */
#about {
	margin: 0 0 0 12px;
	background-image: url(about_ico.gif);
	background-repeat: no-repeat;
	padding: 0 0 0 25px;
	width: 4em;
}

#weblogs {
	background-image: url(weblogs_ico.gif);
	background-repeat: no-repeat;
	padding: 0 0 0 25px;
	width: 5em;
}

#contact {
	background-image: url(ico_contact.gif);
	background-repeat: no-repeat;
	padding: 0 0 0 25px;
}

#services {
	background-image: url(ico_services.gif);
	background-repeat: no-repeat;
	padding: 0 0 0 25px;
	width: 26em;
}

#projects {
	background-image: url(ico_projects.gif);
	background-repeat: no-repeat;
	padding: 0 0 0 25px;
	width: 4em;
}

#menu {
	margin-top: 5px;
	height: 17px;
}
#menu li {
	font-weight: 500;
}

ul { /* all lists */
	padding: 0 0 0 10px;
	margin: 0 0 0 5px;
	list-style: none;
}

li { /* all list items */
	float: left;
	position: relative;
	width: 6em;

}

li ul { /* second-level lists */
	border-right: 1px solid rgb(0, 99, 185);;
	border-bottom: 1px solid rgb(0, 99, 185);;
	border-left: 1px solid rgb(0, 99, 185);;
	background-image: url(ulbackground.png);
	background-repeat: repeat;
	display: none;	
	position: absolute;
	top: 1.1em;
	padding-top: 0.2em;
	left: 0;
	width: 13em;
}

li ul li {
	width: 12em;
}

li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}

#content {
	clear: left;
}

a { color:#fc5e05;
text-decoration:none;
}

a:hover {
	color: #FC5e05;
	text-decoration: underline;
}