/*
	Kadiologie Style Sheet
	
	Author: Lars Nonnemann
	
*/

/* Struct Section */

iframe {
	overflow: visible;
	margin-left: 5%;
	width: 90%;
}

#website {
	overflow: visible;
	background: rgb(255,251,231);
	position: relative;
}

/* Header Section */

#headline {
	margin-left: auto; 
    margin-right: auto;
}

#hpart1 {

}

#hpart2 {
	white-space: nowrap;
	padding: 0% 5%;
	font-family: Copperplate, fantasy;
	font-size: 110%;
	font-weight: bold;
}

/* Button Layout */

.btn {
  background: rgb(200,100,100);
  background-image: -webkit-linear-gradient(top, rgb(200,100,100), #752d07);
  background-image: -moz-linear-gradient(top, rgb(200,100,100), #752d07);
  background-image: -ms-linear-gradient(top, rgb(200,100,100), #752d07);
  background-image: -o-linear-gradient(top, rgb(200,100,100), #752d07);
  background-image: linear-gradient(to bottom, rgb(200,100,100), #752d07);
  -webkit-border-radius: 30;
  -moz-border-radius: 30;
  border-radius: 30px;
  -webkit-box-shadow: 5px 4px 3px #666666;
  -moz-box-shadow: 5px 4px 3px #666666;
  box-shadow: 5px 4px 3px #666666;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

.btn:hover {
  background: rgb(200,95,100);
  background-image: -webkit-linear-gradient(top, rgb(200,95,100), rgb(200,95,100));
  background-image: -moz-linear-gradient(top, rgb(200,95,100), rgb(200,95,100));
  background-image: -ms-linear-gradient(top, rgb(200,95,100), rgb(200,95,100));
  background-image: -o-linear-gradient(top, rgb(200,95,100), rgb(200,95,100));
  background-image: linear-gradient(to bottom, rgb(200,95,100), rgb(200,95,100));
  text-decoration: none;
}

/* Horizontal Navigation List */

nav.horizontalNAV {
	width: 100%;
	text-align: center;
}

nav.horizontalNAV ul {
	margin-top: 1%;
	padding: 0;
	list-style-type: none;
}

nav.horizontalNAV li {
	display: inline;
	padding: 0% 0.5%;
	font-style: normal;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
}

nav.horizontalNAV li a {
	display: inline-block;
	color: white;
}

nav.horizontalNAV li a:hover {
	color: white;
}

/* Undo underline for Navigation list */

nav.horizontalNAV li a:hover, a:visited, a:link, a:active {
    text-decoration: none;
}

/* Footer styles */

footer{
	margin-left: 10%;
	width: 80%;
	background-color: rgb(200,95,100);
}

footer address{
	color: black;
	font-size: 85%;
	font-style: normal;
	font-family: Tahoma, Arial, sans-serif;
	padding: 10px 0px;
	text-align: center;
}

footer a {
	color: black;
}

footer a:hover {
	color: white;
}