/* CSS Document */

html,
html * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
	background: #000000;
	/*background: #A9B1F7; */
}

header {
  position: fixed;
  padding: 0em;
	height: 20px;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  /*background:rgba(0,0,0,1);*/
    background: black;
}

#capella_logo1 {
	background: black;
	float: left;
}
#rundung {
	/* background: #F4F4F4; */
	/* margin-left: 0px; */
	/*background: red;*/
	background: none;
		float: left;
}


body {
  font-family: arial, sans-serif;
  font-size: 1vw;
  /*background: white;*/
	/*background: #F4F4F4;*/
}
main {
            background-color: none;
}


.Wappen {
	vertical-align: middle;
}
#titel {
	/*width: 800px;
	background-color:  aquamarine;*/
}
a.titellink:visited {
	color: black;
}
a.titellink:link {
	color: black;
	text-decoration: none;
}
a.titellink:hover {
	background-color: #E8E8E8;
}
a.titellink:active {
	color: black;
	text-decoration: none;
}
a.wappenlink:link {
	text-decoration: none;
}
a.wappenlink:active {
	text-decoration: none;
}
 a.wappenlink:visited {
	text-decoration: none;
}

#titelundmenu {
	width:740px;
	margin: 0 auto;
}

#Wappenbox {
	/*display: block;*/
	/* background-color: silver; */
	width:730px;
	/*margin-left: 25px;*/
	/*margin: 0 auto;*/
	
	/*margin-left: auto;
	margin-right: auto;*/
	margin-top: 40px;
	font-size: 48px;
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif", Verdana, Arial;
	text-decoration:none;
}


/*
#FOEpicbox {
	float: left;
	background-color: lightgray;
	position: absolute;
    top: 100px;
    left: 10px;
    width: 132px;
    height: 650px;
	border: 1px solid black;
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
	font-family: Verdana, Arial;
font-size: 12px;
}

*/






#iframecontainer {
	margin-top: 10px;
	background-color: white;
	scrolling: auto;
}

#iframeid {
	display: block;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
	/*background-color: lightgray;*/
	/*background: #F4F4F4;*/
	background-color: white;
	border-width: 0px;
}

hr {
 background: black;
 border: none;
 color: black;
 height: 2px;
 width: 100%;
}

/* ############################ */
/* # Navigation oben          # */
/* ############################ */

#navoben {
    position:relative;
    width:530px;
	margin-left: 90px;
    /* margin:0 auto; */
	
    margin-top:10px;
    padding:10px;
	
	/*
		display: block;
	margin-left: auto;
	margin-right: auto;
	*/
	
}
 
ul#navobenul {
    margin:0px auto;
    position:relative;
    float:left;
    border-left:1px solid #c4dbe7;
    border-right:1px solid #c4dbe7;
	/*box-shadow: 10px 10px 15px silver;*/
    box-shadow: 10px 10px 15px black;
}
 
ul#navobenul li {
    display:inline;
    font-size:12px;
    font-weight:bold;
    margin:0;
    padding:0;
    float:left;
    position:relative;
    border-top:1px solid #c4dbe7;
    border-bottom:2px solid #c4dbe7;
	/*box-shadow: 10px 10px 15px silver;*/
    box-shadow: 10px 10px 15px black;
}
 

ul#navobenul li a {
    padding:10px 25px;
    /*color:#616161;*/
    color:#282828;
    text-shadow:1px 1px 0px #fff;
    text-decoration:none;
    display:inline-block;
    border-right:1px solid #fff;
    border-left:1px solid #C2C2C2;
    border-top:1px solid #fff;
    /*background: #f5f5f5;*/
    /*Menuleiste*/
    /*background: #5A85FA;*/
    background: gray;
    background-image: linear-gradient(gray, lightgray, white);
    background-repeat: no-repeat;

 /*
    -webkit-transition:color 0.2s linear, background 0.2s linear;
    -moz-transition:color 2.2s linear, background 2.2s linear;
    -o-transition:color 0.2s linear, background 0.2s linear;
    transition:color 2.0s linear, background 2.2s linear;
    */
}
 
ul#navobenul li a:hover {
    /*background: #698FD1;*/
    /*background: #A9B1F7; */
    /*background-image: linear-gradient(#A9B1F7, #E3D490, #A9B1F7);*/
    /*background-image: linear-gradient(#A9B1F7, lightgray, #A9B1F7);*/
    background-image: linear-gradient(#f8a007, lightgray, #f8a007);
    background-repeat: no-repeat;
    color:#282828;
}
 
ul#navobenul li a.first {
    border-left: 0 none;
}
 
ul#navobenul li a.last {
    border-right: 0 none;
}
 
/*
ul#navobenul li:hover > a {
	background: #E3D490;
}
*/

/* Drop-Down Navigation */
ul#navobenul li:hover > ul
{
/*these 2 styles are very important,
being the ones which make the drop-down to appear on hover */
    visibility:visible;
    opacity:1;
}
ul#navobenul ul, ul#navobenul ul li ul {
    list-style: none;
    margin: 0;
    padding: 0;
/*the next 2 styles are very important,
being the ones which make the drop-down to stay hidden */
    visibility:hidden; 
    opacity:0;
    position: absolute;
    z-index: 99999;
    width:180px;
    background: #f8f8f8;
    box-shadow:1px 1px 3px #ccc;
/* css3 transitions for smooth hover effect */
    -webkit-transition:opacity 0.2s linear, visibility 0.2s linear;
    -moz-transition:opacity 0.2s linear, visibility 0.2s linear;
    -o-transition:opacity 0.2s linear, visibility 0.2s linear;
    transition:opacity 0.2s linear, visibility 0.2s linear;
}

ul#navobenul ul {
    top: 43px;
    left: 1px;
}
 
ul#navobenul ul li ul {
    top: 0;
    left: 181px; /* strong related to width:180px; from above */
}
 
ul#navobenul ul li {
    clear:both;
    width:100%;
    border:0 none;
    border-bottom:1px solid #c9c9c9;
}
 
ul#navobenul ul li a {
    background: #FDFDFF;
    padding:7px 15px;
    /*color:#616161;*/
    color:#282828;
    text-shadow:1px 1px 0px #fff;
    text-decoration:none;
    display:inline-block;
    border:0 none;
    float:left;
    clear:both;
    width:180px;
}


