@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;
	margin:0;
}
#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:#c94528; font-weight:bold; margin:0px; display:inline;} /* was #efcc70*/
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;
	width:750px;	
}
/* 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;
	width:190px;
}
/* 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:0px;
	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;
}

ul.vertical-nav ul.dropdown { display:none; width:200px; margin:0; padding:10px 0; list-style:none;}		
ul.vertical-nav ul.dropdown li a { color:#333; font-size:12px; font-variant:normal; letter-spacing:0px; font-weight:100; margin-right:15px;}	
ul.vertical-nav ul.dropdown li a:hover { color:#c94528; background:none; }



div#output { display:none; width:90%; padding:10px; float:left; font-size:12px; color:#333; background:rgba(255,255,255,0.2); line-height:21px; }


	fieldset { width:100%; float:left; margin:10px 0; border:0; }
	fieldset input[type=text] { margin:0 0 5px 0; }
	fieldset label { float:left; margin:0 0 5px 0; font-size:12px; padding:0 10px 0 5px; }
	
/***SUBSCRIBE FORM HOVER TEXT***/

.appArea table td table td{
line-height:0.2em;
}

.wrapable .Explicit{
line-height:17px;
padding-left:5px;
}

.appArea table td table td a.Smaller{
position:relative;
top:0em;
left:0.5em;
}

fieldset table tbody tr td p{
margin-top:8px!important;
}
td{font-size:12px; vertical-align:middle;}
legend{width:500px;}

.tooltip {
	color: #000; outline: none;
	text-decoration: none;
	position: relative;
}
a.tooltip:link{text-decoration:none; color:#000;}
a.tooltip:visited{text-decoration:none; color:#000;}
a.tooltip:hover{text-decoration:none;}
a.tooltip:active{text-decoration:none;}
.tooltip span {margin-left: -999em;	position: absolute;}

.tooltip:hover span {
	border-radius: 5px 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; 
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 3px 3px rgba(0, 0, 0, 0.1); -moz-box-shadow: 3px 3px rgba(0, 0, 0, 0.1);
	position: absolute; left: 1em; top: 1.5em; z-index: 99;
	margin-left: 0; width: 300px;
}
.tooltip:hover img {
	border: 0; margin: -10px 0 0 -55px;
	float: left; position: absolute;
}

.tooltip:hover em {
	font-family: Candara, Tahoma, Geneva, sans-serif; font-size: 1.2em; font-weight: bold;
	display: block; padding: 0.2em 0 0.6em 0;
}

.classic { padding: 0.8em 1em; line-height:20px; background: #FFFFAA; border: 1px solid #FFAD33;}
* html a:hover { background: transparent; }
