/* CSS for new layout of Bethans website */

body {
	background-color: #4D2626;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color: #222222;
	text-align: center;
}

body a {
	color: #4D2626;
}	

body a:hover {
	color: #000033;
}

/* Puts all the content of the page over a gray background and centers it */
#container {
	margin: 0 auto;
	margin-top: 10px;
	margin-bottom: 10px;
	background-color: #eeeeee;
	border: 3px #4D2626 double;
	width: 750px;
	padding: 10px;
	text-align: left;
}

/* Stuff for the header, which includes the navigation bar, the banner, and the home link */
#header {
	height: 160px;
	background-image: url(images/banner.gif);
	color: #4D2626;
}

#header a {
	color: #4D2626;
	text-decoration: none;
}

#header a:hover {
	color: #000033;
}

/* Home link */
#home {
	float: right;
	margin-right: 20px;
}


/* Navigation bar (dropdown menus) */
#nav {
	margin: 0px;
	padding: 0px;
	list-style: none;
	font-size: 24px;
	position:absolute;
	top: 145px;
	left: 42%;
}

#nav li {
	float: left;
  	position: relative;
	margin-right: 2em;
	padding: 0em;
}

#nav li ul {
  	display: none;
  	position: absolute; 
 	top: 1em;
  	left: 0em;
	margin: 0em;
	margin-right: 0em;
	padding: 0em;
	clear: left;
	list-style: none;
	font-size: 14px;
  }

#nav li ul li {
	width: 10em;
	margin: 0em;
	padding: 0em;
}


#nav li > ul {
	top: auto;
	left: auto;
}

#nav li:hover ul {
	display: block;
	width: 10em;
}

#nav a:hover {
	color: #000033;
}

/* Stuff on the left: Photo of the Bethans and link to hear a sound file */
#leftside {
	float: left;
	width: 225px;
	margin-top: 3em;
	display: inline;
	font-size: 22px;
	text-align: center;
}

#leftside img {
	border: none;
}

/* Stuff on the right: main text of the page */
#main {
	display: inline;
	float: right;
	width: 510px;
	margin-left: 0em;
	margin-top: 3em;
}

/* Credits */
#footer {
	font-size: 10px;
}

#footer ul {
	list-style: none;
}

/* Empty div that allows the container to contain all the floated elements */
#empty {
	clear:both;
}



/* For pages other than the main page */

#content {
	margin-top: 3em;
}

/* Positioning so that the sheep will show the visitor where they are in the site */
#sheep1 {
	position: absolute;
	top: 125px;
	left: 42%;
	margin-left: 1em;
}

#sheep2 {
	position: absolute;
	top: 125px;
	left: 42%;
	margin-left: 10em;
}

#sheep3 {
	position: absolute;
	top: 125px;
	left: 42%;
	margin-left: 19em;
}

/* Fix IE. Hide from IE Mac \*/

body {
	behavior: url(csshover.htc);
	font-size: 100%;
}

* html #nav {
	position: absolute;
	top: 175px;
	left: 42%;
}

* html #nav li ul {
	position: absolute;
	top: 2em;
	left: 0em;

*html #nav li ul li {
	height: 1%;
}

#content {
	margin-top: 4em;
}



/* End */