@charset "UTF-8";

html {
  border: none;
  background-color: rgb(100,100,100);
}


body {
  border: none;
  width: 830px;
  min-height: 100%;
  margin: 0 auto;
  background-color: rgb(153, 153, 153);
}

.center {
  text-align: center;
}

header {
  position: fixed;
  top: 2px;
  background-color: rgb(153, 153, 153);
  width: 830px;
  z-index: 110;
}

header.small {
  position: fixed;
  top: 102px;
  background-color: rgb(153, 153, 153);
  z-index: 100;
  
}

#page {
  width:  830px;
  margin: 0 auto;
  background-color: rgb(153,153,153);
}

.PhotoBackground {
  background-image: url(Fotos/WallpaperHarpOval.gif);
  background-repeat: no-repeat;
  height: 510px;
  text-align: center;
/*  opacity: 0.5; */
}

aside {
  float: left; 
  width: 140px;
  background-color: rgb(155,155,155);
  padding: 5px;
}

article {
  width=680px; 
  margin-left: 140px ;
  padding: 5px;
}

aside.MenueLinks {
  position: absolute;
  top:      143px;
  width:    140px;
  background-color: rgb(155,155,155);

} 

#Hauptinhalt {
  position: relative;
  top: 0px; /* 143 */
  left: 140px;
  width: 680px;
  min-height:100%;
  background-color: rgb(155,155,155);
  padding: 5px;
}

#sidebar {
  position: absolute;
  top:      0px; /* 143 */
  width:    140px;
  background-color: rgb(155,155,155);
}

footer {
  margin-top:  2px;
  clear:       both;
  background: #999;
}

ul {
  list-style: none;
  padding-left: 15px;
}

/* Fotos für Skellig */
.skellig {
  float: left;
  height: 170px;
  width: 256px;
  padding: 5px;
}

/* Absätze für Skellig */

p.LineSkelligSmall {
  margin-top: 5px;
  margin-left: 5px;
  /* height: 237px; */
  height: 180px;
}

/* Fotos für Madonnen */
.Madonna {
  float: left;
  height: 384px;
  width: 192px;
  padding: 5px;
  margin: 5px;
}

/* Absätze für Madonnen */

p.LineMadonna {
  margin-top: 5px;
  height: 394px;
}

p.LineMadonnaSmall {
  margin-top: 5px;
  margin-left: 215px;
}

/* NAVIGATION
------------------------------------------------ */
.nav,
.nav ul {
	background: rgb(153,153,153);
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav {
	min-height: 1.3em;
 	overflow: auto;
	padding: 10px 10px 10px 16px;

	/* 
		Tools like css3please.com, which I used for the code that follows, help you generate CSS3 code. Try it out yourself!
	*/
  -webkit-border-radius: 6px 6px 0 0; /* Saf3-4, iOS 1-3.2, Android <1.6 */
     -moz-border-radius: 6px 6px 0 0; /* FF1-3.6 */
          border-radius: 6px 6px 0 0; /* Opera 10.5, IE9, Saf5, Chrome, FF4, iOS 4, Android 2.1+ */
  
	/* useful if you don't want a bg color from leaking outside the border: */        
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
}

.nav a {
	color: #eee;
	display: block;
	font-weight: bold;
	text-decoration: none;
}

.nav li {
	float: left; 				
	width: 6em;
}

.nav li a:hover {
	color: #aabadd;
}

/* :::: Navigation Submenus (the dropdowns) :::: */
.nav ul {
	margin-left: -10px;
	/* padding: 10px 10px 15px; */
        padding: 5px 5px 10px;
	
	/* 
		Tools like css3please.com, which I used for the code that follows, help you generate CSS3 code. Try it out yourself!
	*/
  -webkit-border-radius: 0 0 8px 8px; /* Saf3-4, iOS 1-3.2, Android <1.6 */
     -moz-border-radius: 0 0 8px 8px; /* FF1-3.6 */
          border-radius: 0 0 8px 8px; /* Opera 10.5, IE9, Saf5, Chrome, FF4, iOS 4, Android 2.1+ */

	/* useful if you don't want a bg color from leaking outside the border: */        
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
}

.nav li ul {
	left: -9999em; /* hide a submenu offscreen by default so visitors don't see it */
	position: absolute;
	z-index: 1000;
}

.nav li:hover ul {
	left: auto; /* show the submenu when user hovers over the parent li */
	width: 10em;
}

.nav ul li {
	float: none;
	font-size: .875em;
	margin-top: .5em;
	width: auto;
}


