@charset "utf-8";
/* CSS Document */

body{
	padding:0px;
	margin:0 20px 0 20px;
	background:#efd984;
	color:#333;
	font-family:Helvetica, Arial, sans-serif;
	font-size:13px;
}
body a:link{color:#c94528; text-decoration:underline;}
body a:visited{color:#c94528; text-decoration:underline; outline:0px;}
body a:hover{color:#444; text-decoration:none;}
body a:active{color:#c94528; text-decoration:none;}

#top-nav{position:absolute;top:0px;left:0px;height:42px;background:#c94528;color:#fff;width:100%;}
#fade{position:absolute;top:42px;left:0px;height:8px;background-image:url(../graphics/top-fade.jpg);background-repeat:repeat-x;width:100%;}

#container{
	position:relative;
	top: 0px;
	left:auto;
	right:auto;
	margin-left:auto;
	margin-right:auto;
	width:900px;
	height:0px;
}

#content{
	position:absolute;
	top:0px;
	left:200px;
	background-image:url(../graphics/bg.jpg);
	background-repeat:no-repeat;
	background-color:#efcc70;
	min-height:830px;
	width:694px;
	padding-bottom:20px;	
}

#text{
	position:relative;
	top:110px;
	width:550px;
	margin:40px;
}

#left-bar{
	position:absolute;
	top:100px;
	left:0px;
	width:180px;
	text-align:right;
	padding-bottom:10px; /*Older IE fix to show full BUY DVD link*/
}

#main-right{
	position:relative;
	width:383px;
	float:right;
	padding-top:40px;
}

#fossils{
	position:absolute;
	left:40px;
	top:450px;
}


#footer{
	position:absolute;
	top:770px;
	width:694px;
	height 20px;
	color:#db884c;
	font-size:11px;
	padding-left:60px;
}
#footer a:link{color:#db884c; text-decoration:none;}
#footer a:visited{color:#db884c; text-decoration:none; outline:0px;}
#footer a:hover{color:#c94528; text-decoration:none;}
#footer a:active{color:#db884c; text-decoration:none;}
ul.footer-nav{
	list-style-type:none;
	margin:0px;
	padding:0px;
}
ul.footer-nav li{
	padding-right:10px;
	list-style-type: none;
	position: relative;
	cursor: pointer;
	float:left;
	text-align:left;
}


h1{font-size:16px; color:#c94528; font-weight:1000;}
h2{font-size:13px; color:#efcc70; font-weight:bold; margin:0px; display:inline;}
h3{font-size:16px; color:#000; font-weight:100; padding:0px; margin:0px; display:inline;}



/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order
 Top Navigation (horizontal-nav)

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.horizontal-nav{
	background-color:#c94528;
	cursor:default;
	font-size:100%;
	height:42px;
	list-style-type:none;
	margin:0;
	padding:0;
	font-weight:bold;
	font-size:14px;
	font-family:Helvetica;
	font-variant:small-caps;	
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.horizontal-nav li{
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: left;
	cursor: pointer;
	float: left;
	border-right:0px;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.horizontal-nav ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.horizontal-nav ul.MenuBarSubmenuVisible{
	left: auto;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.horizontal-nav ul ul{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.horizontal-nav ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.horizontal-nav ul{
	border:0px;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.horizontal-nav a{
	display: block;
	cursor: pointer;
	background-color:#c94528;
	padding:13px;
	color: #fff;
	text-decoration: none;
}

/* Menu items that have mouse over or focus have a blue background and white text */
ul.horizontal-nav a:hover{	
	background-image:url(../graphics/bullet-top.png);
	background-repeat:no-repeat;
	color: #efd984;
	outline:0px;
}
/* If you want to be able to show link that is currently active
Make one of the horizontal-nav <a id="link_on">
#link_on{
	background-image:url(../graphics/top-nav-bg2.gif);
	background-repeat:repeat-x;
	color: #a61818;
	outline:0px;
}
*/
ul.horizontal-nav a:focus{
	color:#fff;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.horizontal-nav a.MenuBarItemHover, ul.horizontal-nav a.MenuBarItemSubmenuHover, ul.horizontal-nav a.MenuBarSubmenuVisible{
	background-color: #a3a3a3;
	color: #000;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.horizontal-nav iframe{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection{
	ul.horizontal-nav li.MenuBarItemIE{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}


/********************************
Left Bar Navigtaion
(vertical-nav)
*********************************/
ul.vertical-nav{
	cursor:default;
	font-size:100%;
	list-style-type:none;
	margin:0;
	padding:0;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.veritcal-nav li{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	position: relative;
	text-align: left;
	cursor: pointer;
	float: left;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.vertical-nav ul{
	border:0px;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.vertical-nav a{
	display: block;
	cursor: pointer;
	padding: 0.2em;
	color: #c94528;
	font-weight:bold;
	text-decoration: none;
	letter-spacing:2px;
}

/* Menu items that have mouse over or focus have a blue background and white text */
ul.vertical-nav a:hover{
	background-image:url(../graphics/bullet.png);
	margin-left:60px;
	color: #fff;
	background-position: left;
	background-repeat:no-repeat;
}
ul.vertical-nav a:focus{
	outline:0px;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.vertical-nav a.MenuBarItemHover, ul.vertical-nav a.MenuBarItemSubmenuHover, ul.vertical-nav a.MenuBarSubmenuVisible{
	color: #fff;
}