/* General */
#OS {
  width: 100%;
}

.bold {
  font-weight: bold;
}

.small {
  font-size: 10px;
}

/* Status */
#OS .status {
  background-color:#F1F1F1;
  border-radius:15px;
  -moz-border-radius:15px;
  -webkit-border-radius:15px;
  margin: 10px;
}

#OS .status table {
  width:100%;
}

#OS .status table tr:first-child {
  display:none;
}

#OS .status table td {
  width:auto !important;
  padding: 5px;
}

/* General - Button */
#OS .box-button {
  position:relative;
  height: 35px;
}

#OS .box-button .button-right {
  position:absolute;
  right:10px;
}

#OS .box-button .button-right .button {
  border:2px solid #d5d5d5;
  font-weight: bold;
  color:#F88B00;
  background:white;
  padding:5px;
  border-radius:10px;
  -moz-border-radius:10px;
  -webkit-border-radius:10px;
  cursor:pointer;
}

#OS .box-button .button-right .button:hover {
  background:#727272;
  color:white;
}

/* Boxes */
#OS .box {
  margin: 10px 10px 20px 10px;
}

/* Workaround */
#OS .box .box#address {
  margin: 0px;
}

#OS .box .box-head {
  font-size: 14px;
  font-weight: bold;
  margin: 5px 0px 10px 0px;
  padding: 0px;
  color: #F88B00;
}

#OS .box .box-head2 {
  font-size: 12px;
  font-weight: bold;
  margin: 0px;
  padding: 0px;
  color: #F88B00;
}

/* Boxes - Table */
#OS .box .box-content table {
  border-collapse: collapse;
  width: 100%;
}

#OS .box .box-content table .odd {
}

#OS .box .box-content table th {
  background-color:#727272;
  color:white;
  padding:5px;
}

#OS .box .box-content table th span {
  font-weight: bold;
}

#OS .box .box-content table td {
  border: 0px;
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
  padding: 3px;
  background-color: #F1F1F1;
}

/* Boxes - Button */
#OS .box .button {
  cursor: pointer;
}

#OS .box .button:hover {
  text-decoration:underline;
}

/* Specefic Boxes */
#OS .box#choose-rooms .box-content table {
  border: 1px solid #d5d5d5;
  margin-bottom: 10px;
}

#OS .box#choose-rooms .box-content table td {
  border: 0px;
}

#OS .box#choose-rooms .box-content table th div {
  width: 25%;
}

#OS .box#guests .box-content input, #OS .box#guests .box-content select {
  width: auto !important;
}

#OS .box#room-selection .box-content table td,
#OS .box#guests .box-content table td,
#OS .box#login-form .box-content table td,
#OS .box#articles .box-content table td {
  border: 1px solid #d5d5d5;
}

#OS .box#articles .box-content table th {
  background: #727272;
}

#OS .box#registration .box-content .registration-types {
  margin: 10px 0px 10px 0px;
  background: #727272;
  color:white;
  padding:5px;
}

#OS .box#registration .box-content table#registration-company {
  margin-bottom: 10px;
}

#OS .box#registration .box-content select[name="day"],
#OS .box#registration .box-content select[name="month"],
#OS .box#registration .box-content select[name="year"] {
 width:80px;
 float:left;
 margin-right:2px;
}


#OS .box#agb .box-content {
  width: 100%;
  height: 100px;
  overflow: auto;
}

#OS .box#payment-list .box-content table td {
  width: auto;
}

/* Messages */
.info-msg {
  text-align:center;
  margin:10px;
  padding:20px;
  border:2px solid darkblue;
  background:lightblue url(../images/msg_notice.png) no-repeat 20px center;
  color:darkblue;
  font-weight:bold;
  width:auto;
  font-size:12px;
}

.error-msg {
 font-weight:bold;
 background:#ffcccc url(../images/msg_error.png) no-repeat 20px center;
 border:1px solid #DC0000;
 color:#DC0000;
 width:auto;
 font-size:12px;
 text-align:center;
 margin:10px;
 padding:20px;
}

.io-msg {
 font-weight:bold;
 background:#ccffcc url(../images/msg_io.png) no-repeat 20px center;
 width:auto;
 text-align:center;
 font-size:12px;
 padding:10px;
 border:1px solid #008001;
 color:#008001;
 margin:10px;
 padding:20px;
}

/* Quantity Field */
#OS input.quantity {
  width: 30px;
  text-align: right;
}

