@charset "utf-8";
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
/*** image sytles ***/
#photo {
  width: 100%;
  height: auto;
  border:0;
}
/*** Nav bar styles ***/

ul.fred,
.fred ul{
/*Remove all spacings from the list items*/
	margin: 0;
	padding: 0;
	cursor: default;
	list-style-type: none;
	display: inline;
}

ul.fred{
	display: table;
	width:100%;
	table-layout:fixed; 
}
ul.fred>li{
	display: table-cell;
	position: relative;
	padding: 6px 6px;
}
ul.fred li>ul{
/*Make the sub list items invisible*/
	display: none;
	position: absolute;
	max-width: 40ex;
	margin-left: -6px;
	margin-top: 2px;
}

ul.fred li:hover>ul{
/*When hovered, make them appear*/
	display : block;
}

.fred ul li a{
/*Make the hyperlinks as a block element, sort of a hover effect*/
	display: block;
	padding: 2px 10px;
}

/*** Menu colors (customizable) ***/

ul.fred,
.fred ul,
.fred ul li a{
	background-color: #003366; 
	color: #FFFFFF;
}


ul.fred li:hover,
.fred ul li a:hover{
	background-color: #369;
	color: #fff;
}

ul.fred li:active,
.fred ul li a:active{
	background-color: #036;
	color: #fff;
}

ul.fred,
.fred ul{
	border: 1px solid #369;
}

.fred a{
	text-decoration: none;
}

