body {
	margin:auto;
	padding:0px;
	overflow:scroll;
    background:white;
    color:black;
}

/* Logo Formatierung */
#startPicture
{
    position: center;
    margin: auto;
    display: none;
}

div
{
    margin: auto;
    z-index: 1;
    display: block;
    text-align: center;
}

p
{
    font: arial;
    
    display: inline;
    font-weight: bold;
}

/* Canvas Formatierungen */
.mainCanvas
{   
    position: absolute;
    margin: auto;
    z-index: 1;
    display: block;
}

.secondCanvas
{   
    position: absolute;
    margin: auto;
    z-index: 2;
    display: block;
}

/* Tabellenformatierung */
.tabelle
{
    position: relative;
    top: 25px;
    width: 450px;
	color: black;
}

.tabelle caption
{
    background-color: #FFFFFF;
    font-family: Arial,Verdana,sans-serif;
    font-weight: normal;
    font-size: 30px;
    padding: 6px 0 3px 0;
}

.tabelle thead th
{
    font: bold 18px  Arial,Verdana,sans-serif;
    padding: 3px;
    background-color: #FF9E00;
    text-align: center;
    
    font-weight: 600;
}

.tabelle td
{
    font: normal 14px Arial,Verdana,sans-serif;
    padding: 5px 5px;
    background-color: #FFFFFF;
    line-height: 130%;
    text-align: center;
	width: 33%;
}

/* Buttonformatierung */
.btn {
  -webkit-border-radius: 20;
  -moz-border-radius: 20;
  border-radius: 10px;
  font-family: Arial;
  color: #ffffff;
  font-size: 15px;
  background: #0084FF;
  padding: 5px 10px 5px 10px;
  text-decoration: none;
}

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


.styled-select {
   width: 50px;
   height: 25px;
   overflow: hidden;
   background: white;
   border: 1px solid #ccc;
   position: relative;
}

/* DropDown Box */
.wrapper-dropdown-3 {
    /* Size and position */
    position: relative;
    width: 100px;
	height: 35px;
    margin: 0 auto;
    padding: 5px 10px 5px 10px;

    /* Styles */
    background: #fff;
    border-radius: 7px;
    border: 1px solid rgba(0,0,0,0.15);
    box-shadow: 0 1px 1px rgba(50,50,50,0.1);
    cursor: pointer;
    outline: none;

    /* Font settings */
    font-weight: bold;
    color: gray;
}