﻿@charset "UTF-8";

/* ANFANG Hauptmenü */

/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	cursor: default;
	width: auto;
	font-family: Arial, Helvetica, sans-serif;
	word-wrap:break-word;
	
}
/* 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.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 10em;
	float: left;
	color:#FFFFFF;
	letter-spacing: 0.3em;
	font-weight:bolder;
	height:12px;
	
	
}
ul.MenuBarHorizontal li.mitte
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 12em;
	float: left;
	color:#FFFFFF;
	letter-spacing: 0.3em;
	font-weight:bolder;
	height:12px;
	
	
}
ul.MenuBarHorizontal li.platzhalter
{
	width:25px;
	border-left:#FFFFFF thin solid;
}
/* 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.MenuBarHorizontal ul.submenu1
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 80%;
	z-index: 1020;
	cursor: default;
	width: 14em;
	position: absolute;
	left: -1000em;
	height:auto;
	
}
ul.MenuBarHorizontal ul.submenu2
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 80%;
	z-index: 1020;
	cursor: default;
	width: 17.5em;
	position: absolute;
	left: -1000em;
	height:auto;
	
}
ul.MenuBarHorizontal ul.submenu3
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 80%;
	z-index: 1020;
	cursor: default;
	width: 15em;
	position: absolute;
	left: -1000em;
	height:auto;
	
}



/* 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.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 17em;
	text-align:left;
	letter-spacing:normal;
	font-weight:normal;
	height:22px;
}


/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul li ul
{
	/*position: absolute;*/
	margin: -5% 0 0 95%;
}


/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
/*	border-left: 1px solid #CCC; */
 	background-color:#000000;
	margin-top: 0.3em
	
	
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	/*background-color: #EEE;*/
	/*padding: 0.5em 0.75em;*/
	padding: 0;
	margin-left: 0;
	color: #ffffff;
	text-decoration: none;
	text-align:justify;
}

ul.MenuBarHorizontal ul a
{
	display: block;
	cursor: pointer;
	/*background-color: #EEE;*/
	padding: 0.5em 0.75em;
	color: #ffffff;
	text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	/*background-color: #33C;*/
	color: #ffffff;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	/*background-color: #33C;*/
	color:#00A2D4;
}
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	color:#FFFFFF;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{

	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/*******************************************************************************

 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.MenuBarHorizontal 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.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		
	}
}



.menu
{
	width: auto;
	height: 22px;
	
	padding:0;
	margin-left:31px;
	margin-top:15px;
}


/* ENDE Hauptmenü */
#content
{
	background-color:#000000;
	background-image:url(images/tiefsee-kopfv4.jpg);
	background-repeat:no-repeat;
	width:960px;
	top:0px;
	left:0px;
	position: absolute;
	margin-top:0;	
}


/* ANFANG Submenu */
.rightmenu
{
	position:absolute;
	color:#FFFFFF;
	font-size:9px;
	font-family:Arial, Helvetica, sans-serif;
	width: auto;
	height: auto;
	top: 15px;
	padding:0;
	font-weight:bold;
}
.rightmenu a
{
	
	text-decoration: none;
	color:#FFFFFF;
}
.rightmenu a:hover, .rightmenu a:focus
{
	
	text-decoration: none;
	color:#00A2D4;
}	
.rightmenu table
{
	width:240px;
	word-wrap:break-word;
	margin:0;
	padding:0;

}

.rightmenu td
{
	width:50px;
	
	height:9px;
}
.strich
{
	border-right:#CCCCCC solid 1px;
	height:9px;
	vertical-align:middle;
	text-align:center;
}
.anfangsstrich
{
	border-right:#CCCCCC solid 1px;
	height:9px;
	vertical-align:middle;
	text-align:right;
}
.rightmenu td.keinstrich
{	
	width:60px;
	border:none;
	height:9px;
	text-align:right;
}

/* ENDE Submenü */

	

/* ANFANG Tiefsee-Aktuell */
.taktuell
{
	
	background-color:#000000;
	text-align:center;
	padding-bottom:10px;
	word-wrap:break-word;
	padding-left:1px;
	padding-right:1px;
	border:1px #FFFFFF solid;
	

}	

	

.taktuell a
{
	
	text-decoration: none;
	color:#FFFFFF;
}
.taktuell a:hover, .taktuell a:focus
{
	
	text-decoration: none;
	color:#00A2D4;
}

.taktuell td.news
{
	text-align:left;
	padding-top:5px;
	padding-bottom:5px;
	vertical-align:middle;
	
}
.taktuell td
{
	border-bottom:#FFFFFF 1px dashed;
		
}
.taktuell table

{
	width: 160px;
}

/* ENDE tiefsee-Aktuell */

/* ANFANG Flash */

.boxunten
{
	position:absolute;
	width:560px;
	height:91px;
	left: 0px;
	bottom:0;
	margin-top: 1px;
	
}	

.boxrechts
{
	position:absolute;
	width:148px;
	height:91px;
	left: 777px;
	bottom:0;
	
}

/* ENDE Flash */

.strich2
{
	background-image:url(images/strich.jpg);
	background-repeat:repeat-x;
	background-position:left;
	width:100%;
}

.strichklein
{
	background-image:url(images/strich-klein.jpg);
	background-repeat:repeat-x;
	background-position:left;
	width:100%;
}	



.textgrau
{
	color:#A7A1A1;
}

.textgraubold
{
	color:#A7A1A1;
font-weight:bold;
}

.textgrauitalic
{
	color:#A7A1A1;
font-style:italic;
}

.textgrausmall
{
	color:#A7A1A1;
font-size:12px;
font-style:italic;
}


.text
{
	color:#00A2D4;
}
.textbold
{
	color:#00A2D4;
font-weight:bold;
}


