@import url('https://fonts.googleapis.com/css?family=Rochester');
@import url('https://fonts.googleapis.com/css?family=Encode+Sans+Semi+Condensed');
@import url('https://fonts.googleapis.com/css?family=Handlee');
@import url('https://fonts.googleapis.com/css?family=Libre+Barcode+128+Text');

body {
	font-family: 'Encode Sans Semi Condensed', cursive;
}

.welcome {
	font-family: 'Rochester', cursive;
	font-size:54px;
	color:#8E3340;
}


.paarseite_text {
	font-family: 'Tangerine', cursive;
	font-size:28px;
	line-height:1.5;
}

.header_title {
	padding-top: 20px;
	padding-left: 20px;	
	font-family: 'Sacramento', cursive;
	font-size:72px;
	text-shadow: 4px 4px 2px rgba(150, 150, 150, 1);
	color:#BE1C57;
}

.menu_box {
	position:fixed;
	top:0%;
	margin: auto;
	left: 30%;
  	#margin-right: auto ;
	z-index:9999;
}

.main_table {
	padding-top:80px;
	width:100%;
	text-align:center;
}


.text.white {
  color: #FFFFFF;
}
.text.grey {
  color: #CCCCCC;
}
.text.black {
  color: #1B1C1D;
}
.text.yellow {
  color: #F2C61F;
}
.text.teal {
  color: #00B5AD;
}
.text.red {
  color: #D95C5C;
}
.text.purple {
  color: #564F8A;
}
.text.pink {
  color: #D9499A;
}
.text.orange {
  color: #E07B53;
}
.text.green {
  color: #5BBD72;
}
.text.blue {
  color: #3B83C0;
}


.tblbg {
    background:url(../images/welcomebg.png);
    background-repeat:no-repeat;
    background-position:center center;
    width:696px; 
    height:490px;
}

.date_grey {
	font-size:28px;
	color:#6C6C6C;
	text-transform: uppercase;
	font-family: 'Encode Sans Semi Condensed', sans-serif;
}

.date_red {
	font-size:44px;
	color:#8E3340;
	font-family: 'Encode Sans Semi Condensed', sans-serif;
}


.btn {
    color: white;
    padding: 8px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    background-color: white;
    color: black;
    border: 2px solid #8E3340; 
	border-radius: 8px;
	vertical-align: middle;
	line-height: -5px;
}

.btn:hover {
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}


.headertbl {
	height:69px;
	background:url(../images/header-img-wide.png);
	background-repeat:repeat-x;
}


.fixed-header {
    width:100%;
    position:fixed;
    top:0px;
	z-index:1000;
	background-color:#FFF;
}

.pgcontent {
	padding-top:190px;
  	padding-bottom:130px; 
}

.footer {
   position:fixed;
   left:0px;
   bottom:0px;
   height:130px;
   width:100%;
   background-color:#FFF;
   opacity: 0.8;
    filter: alpha(opacity=80); /* For IE8 and earlier */
}

.tblrow:hover {
	#background:#ACE4C1;
}
.tblcell:hover {
}


.homenames {
	font-size:72px;
	font-family: 'Rochester', cursive;
}






* {
  box-sizing: border-box;
}


/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #CCC;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: #fff;
  border: 4px solid #0C9;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #000;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #D4F4DE;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #3C6;
  border-width: 10px 10px 10px 1px;
  border-color: transparent #D4F4DE transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -12px;
}

/* The actual content */
.content {
  padding: 20px 30px;
  background-color: #D4F4DE;
  position: relative;
  border-radius: 6px;
  border-color:#000;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media all and (max-width: 600px) {
/* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }

/* Full-width containers */
  .container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

/* Make sure that all arrows are pointing leftwards */
  .container::before {
    left: 60px;
    border: medium solid #F90;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

/* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 15px;
  }

/* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}