/* START MAIN */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
  font-family: verdana, sans-serif;
  font-size: 13px;
  line-height: 18px;
}

#map_canvas {
    height: 100%;
}

.hidden {
    display: none;
}
/* END */

/* SIMULATION PANEL */
#panel {
    position: absolute;
    width: 300px;
    padding: 5px;
    right: 70px;
    top: 70px;
    background-color: #FAFAFA;
    border: 1px solid #717D7D;
}

#panel h3 {
    font-size: 20px;
    font-weight: bold;
    font-family: Georgia, Helvetica
}

#panel b {
    font-weight: bold;
}

#panel > div {
    margin: 5px 5px 10px 5px;
    padding: 5px;
}

#panel > div.section {
    background-color: #F2F2F2;
    border: 1px solid #CACACA;
}

div.panel_content {
    padding: 3px;
}

div.panel_content > div {
    margin-bottom: 6px;
}

#geolocation_click {
    background: transparent url(../images/crosshair_2.png) no-repeat top;
    width: 20px;
    height: 20px;
    color: white;
    border: none;
}

#user_location {
    width: 245px;
}

/* Source of collapsible icons: http://www.shapes4free.com/vector-icons/expand-collapse-icons/ */
input.panel_collapsible {
    background: transparent url(../images/panel_expand.png) no-repeat top;
    
    width: 12px;
    height: 12px;
    border: none;
    
    display: block;
    float: right;
    right: 0px;
    top: 0px;    
}

input.expanded {
    background: transparent url(../images/panel_collapse.png) no-repeat top;
}

input.toggled {
    background-color: #FF0000;
    color: #FFFFFF;
}

/* END */

/* PANEL TABLES */
#vehicle_timetable_container {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 500px;
}

table.panel_table {
    width: 265px;
    font-size: 11px;
}

table.panel_table thead td {
    background-color: #DDD;
}

table.panel_table tbody td {
    border-top: 1px solid #DDD;
    background-color: #FFFFFF;
}

table.panel_table tbody tr.passed td, 
table.panel_table tbody tr.passed td a {
    color: #CACACA;
}

td.station {
    width: 150px;
}
/* END */

/* START vehicle popup */
#vehicle_popup {
    width: 180px;
    padding: 5px 0px 5px 10px;
    
    background-color: #F2F2F2;
    border: 1px solid #111111;
}

#vehicle_popup p {
    font-size: 10px;
    line-height: 12px;
}

#vehicle_popup span.vehicle_name {
    font-weight: bold;
}
/* END */