/* Reserved apartment price label (red) */
.reserved-label {
  color: #c00;
  font-weight: bold;
}
.prisliste {
	background: #fff;
	color: #000;
	padding: 10em;
	width:100%;
	
}
.prisliste thead th {
    text-align: center;
 }
 .prisliste tbody th {
    text-align: center;
 }

.prisliste tbody tr:nth-child(odd) {
   background-color: #ccc;
}
#lang_sel_list ul,  #lang_sel_list li, #lang_sel_list a, #lang_sel_list img {
	background-color: transparent !important;
	padding: 0 !important;
	margin: 0 !important;
}

/***************************
****************************
Newsletter
****************************
***************************/

.news-letter {
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
    position: relative;
    margin: 10px auto;
    width: 100%;
    padding: 20px;
    background: white;
    border-bottom: 1px solid #c4c4c4;
    margin-top: 30px;
  
  }
  
  .news-letter:before, .news-letter:after {
    height: 10px;
    background: inherit;
    border-bottom: 1px solid #d2d2d2;
    border-radius: 4px;
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
  
  }
  
  .news-letter:after {
    bottom: 3px;
    border-color: #dcdcdc;
  }
  
  .news-letter-title {
      background: none repeat scroll 0 0 #FFFFFF; /* newsletter background  */
      color: #AAAAAA;
      font-size: 20px;
      font-weight: 300;
      line-height: 0;
      margin: 0 0 10px;
      padding: 8px;
      text-align: center;
      text-shadow: 0 1px rgba(255, 255, 255, 0.75);
    background: #fff;
  }
  
  .news-letter-title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px; /* top header bar height */
    background: #f06565;  /* top header bar color */
    border-radius: 5px 5px 0 0;
   
  }
  
  input {
    font-family: inherit;
    color: inherit;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  .news-letter-input {
    width: 100%;
    height: 40px;
    margin-top: 10px;
    margin-bottom: 0px;
    padding: 0 15px 2px;
    font-size: 17px;
    background: white;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 -2px #ebebeb;
    box-shadow: inset 0 -2px #ebebeb;
  }
  
  .news-letter-input:focus {
    border-color: #c4c4c4;
    outline: none;
    -webkit-box-shadow: inset 0 -2px #c4c4c4;
    box-shadow: inset 0 -2px #c4c4c4;
  }
  
  .lt-ie9 .news-letter-input {
    line-height: 48px;
  }
  
  .news-letter-button {
    position: relative;
    vertical-align: top;
    margin-top: 10px;
    width: 100%;
    height: 34px;
    padding: 0;
    font-size: 17px;
    color: white;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    background: #f06565; /* button background  */
    border: 0;
    border-bottom: 2px solid #b65a51; /* newsletter button shadow */
    border-radius: 5px;
    cursor: pointer;
    -webkit-box-shadow: inset 0 -2px #b65a51;
    box-shadow: inset 0 -2px #b65a51;
  }