body {
	background: #ffeed0;
}

.header {			/* to hold logo and menu */
	margin: 0 auto;
	width: 620px;
	height: 105px;
}
.logo {
	float: left;
	padding: 0 20px;
	width: 200px;
}

.menudiv {
	float: left;
	margin-top: 20px;
	max-width: 100%;
}
.titlediv {
	width:50%;
	margin: 0 auto;
	text-align: center;
}
.title { 
	font-family: Times New Roman, Georgia, serif;
	font-size: 200%;
	font-variant: small-caps;
	margin-bottom: 20px;
}
.subtitle {
	font-size: 140%;
	margin: 20px 0;
}

.sidebar  {
	padding: 34px 10px 0 0;
	text-align: center;
	line-height: 24px;
	color: #555;
	float: right;
}
.subsubtitle {
	display: none;
	line-height: 30px;
}
.sidebar a, .subsubtitle a, .titlediv a {
	text-decoration: none;
	color: #555;
}
.ilb { display: inline-block; }

.ab {
	max-width: 650px;
	font-family: Helvetica, Arial, sans-serif;
	line-height: 24px;
	margin: 0 auto;
}
	


/*Strip the ul of padding and list styling*/
ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
	z-index: 1;
}

/*Create a horizontal list with spacing*/
li {
	display:inline-block;
}

/*Style for menu links*/
li a {
	display:block;
	width: 90px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	font-family: Helvetica, Arial, sans-serif;
	color: #333;
	background: #f8d8a8;
	text-decoration: none;
	font-size: 11pt;
}

/*Hover state for top level links*/
li:hover a {
	background: #e0bc7e;
}

/*Style for dropdown links*/
li:hover ul a {
	background: #f8d8a8;
	color: #333;
	height: 30px;
	line-height: 30px;
	border-top: 1px solid #999;
}

/*Hover state for dropdown links*/
li:hover ul a:hover {
	background: #e0bc7e;
}

/*Hide dropdown links until they are needed*/
li ul {
	display: none;
	border-bottom: 1px solid #999;
}

/*Make dropdown links vertical*/
li ul li {
	display: block;
}

/*Dropdown links can be wider than top one*/
li ul li a {
	width: auto;
	min-width: 70px;
	padding: 0 10px;
}

/*Display the dropdown on hover*/
ul li a:hover + .hidden, .hidden:hover {
	display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 1000px){
	.subsubtitle { display: block;}	/* turn on text below subtitle */
	.sidebar { display: none;}		/* turn off sidebar text */
	.titlediv { width: 100% }


@media screen and (max-width : 660px){
	.menudiv {
		float: none;	/* menu moves below logo */
		margin-top: 0px;
	}
	.logo {				/* logo is centered */
		margin: 0 auto;
		float: none;
	}
	.header {
		width: 370px;
		height:160px;
	}

@media screen and (max-width : 400px){
	.header {
		width: 100%;
	}
	li a {
		width: 23vw;
		font-size: 4vw;
	}
}
}
}
