body {
   background-color: #eef;
   font-family: sans-serif;
}

#logo img {
   position: absolute;
   border: 1px solid black;
   margin-top: 2px;
   margin-left: 10px;
}

#menuouter {
   position: absolute;
   margin-top: 120px;
   margin-left: 10px;
   margin-right: 10px;
   width: 200px;
   font-size: small;
}

@media print {
    #menuouter, #logo {
        display: none;
    }
    #main, #title {
        left: 10px !important;
    }
}

.menu {
   border-left: 1px solid black;
   border-top: 1px solid black;
   border-right: 1px solid black;
}
.menu ul, .menu li {
   margin: 0px;
   padding: 0px;
   list-style-type: none;
}
.menu li a {
   border-bottom: 1px solid black;
}

.menu li.selectedmenu div {
   background-color: #e6eeee;
   padding: 1px;
   border-bottom: 1px solid black;
}

.menu li a, .data a {
   padding: 1px;
   display: block;
   color: black;
   text-decoration: none;
   background-color: white;
}
.menu li a:hover, .data a:hover {
	background-color: #e6EEEE;
}


#title {
   border: 1px solid black;
   background-color: white;
   position: absolute;
   left: 230px;
   right: 10px;
   padding-left: 10px;
}

#main {
   border: 1px solid black;
   background-color: white;
   position: absolute;
   left: 230px;
   right: 10px;
   margin-top: 120px;
}

h1, h2, h3 {
   border-bottom: 2px solid black;
   margin-right: 10px;
}

h1 {
   margin-top: 5px;
}

.chart {
   text-align: center;
}

.center {
   text-align: center;
}

/* located in demo.css and creates a little calendar icon
 * instead of a text link for "Choose date"
 */
a.dp-choose-date {
   float: left;
   width: 16px;
   height: 16px;
   padding: 0;
   margin: 5px 3px 0;
   display: block;
   text-indent: -2000px;
   overflow: hidden;
   background: url(img/calendar.png) no-repeat; 
}
a.dp-choose-date.dp-disabled {
   background-position: 0 -20px;
   cursor: default;
}
/* makes the input field shorter once the date picker code
 * has run (to allow space for the calendar icon
 */
input.dp-applied {
   width: 140px;
   float: left;
}

#map, #pano {
  float: left;
  height: 400px;
  width: 50%;
}

.padded {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}

.break {
  clear: both;
  padding-top: 10px;
}
.select-editable {
    position:relative;
    background-color:white;
    border:solid grey 1px;
    width:120px;
    height:18px;
}
.select-editable select {
    position:absolute;
    top:0px;
    left:0px;
    font-size:14px;
    border:none;
    width:120px;
    margin:0;
}
.select-editable input {
    position:absolute;
    top:0px;
    left:0px;
    width:100px;
    padding:1px;
    font-size:12px;
    border:none;
}
.select-editable select:focus, .select-editable input:focus {
    outline:none;
}
