html, body {
    height: 100%;
    /*-ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;*/
    font-family: "Helvetica", "Arial", sans-serif;
}
html {
    overflow-y: hidden;
}

body {
    margin: 0;
}

.transparent {
    display: none;
    opacity: 0;
    /* For IE 5-7 */
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity = 0);
    /* For IE 8 (and 9, 10, 11?). Don't miss the added quotes */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.height-100p {
    height: 100%;
}

.width-100p {
    width: 100%;
}

.height-playbar {
    min-height: 30px;
    height: 30px;
}

.display-none {
    display: none;
}

.display-cell {
    display: table-cell;
    vertical-align: middle;
}

.border-4 {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.dark-background {
    background: transparent;
    background: rgba(37, 37, 37, .9);
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType = 1, StartColorStr = '#C8252525', EndColorStr = '#C8252525');

}

.no-select {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.secondary-action-button {
    -moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
    -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
    box-shadow:inset 0px 1px 0px 0px #ffffff;
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9));
    background:-moz-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
    background:-webkit-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
    background:-o-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
    background:-ms-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
    background:linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9',GradientType=0);
    background-color:#f9f9f9;
    -moz-border-radius:6px;
    -webkit-border-radius:6px;
    border-radius:6px;
    border:1px solid #dcdcdc;
    display:inline-block;
    cursor:pointer;
    color:#666666;
    font-family: "Helvetica", "Arial", sans-serif;
    font-size:11px;
    font-weight:bold;
    padding:4px 8px;
    text-decoration:none;
    text-shadow:0px 1px 0px #ffffff;
    line-height: 11px;
}
.secondary-action-button:hover {
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9));
    background:-moz-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
    background:-webkit-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
    background:-o-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
    background:-ms-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
    background:linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9',GradientType=0);
    background-color:#e9e9e9;
}
.secondary-action-button:active {
    position:relative;
    top:1px;
}

/******** LOADER *******/
#loading-screen {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    z-index: 99;
    background-image: url('../assets/loading.gif');
    background-repeat: no-repeat;
    background-position: center top;
}

#loading-banner {
    position: absolute;
    width: 220px;
    height: 300px;
    top: 50%;
    left: 50%;
    margin-left: -110px;
    text-decoration: none;
    font-size: 9px;
    font-weight: bold;
    color: #4e4e4e;
}

#loading-banner-in {
    text-align: center;
    display: block;
    text-decoration: none;
    font-size: 9px;
    font-weight: bold;
    color: #4e4e4e;
}

#loading-banner span {
    display: block;
    width: 220px;
    text-align: center;
    text-decoration: none;
}

#loading-powered {
    width: 253px;
    height: 43px;
    position: absolute;
    bottom: 6px;
    left: 50%;
    margin-left: -126px;
    background-image: url('../assets/tracking-by.png');
}

#browser-not-supported {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    z-index: 101;
}

#browser-not-supported-content {
    position: absolute;
    width: 420px;
    height: 300px;
    top: 50%;
    left: 50%;
    margin-left: -210px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    color: #4e4e4e;
}

/*
* MAIN OBJECTS *
*/
#main-view {
    /*height: 100%;
    overflow: hidden;*/
}

#left-pane {
    color: #2e3036;
    width: 250px;
    background-color: #efefef;

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;

    -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, .4);
    -moz-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, .4);
    box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, .4);

    z-index: 5;

    border-right: 1px solid #ccc;
}
/** Top actions **/
#secondary-actions {
    position: absolute;
    left: 260px;
    top: 10px;
    padding: 8px;
    z-index: 5;

}
#title-block {
    padding: 12px;
    border-bottom: #ababab 1px solid;
}

#title-block .title {
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

#title-block .subtitle {
    color: #60626b;
    font-size: 13px;
}

/* LIST FILTER */
#filter-pane {
    font-size: 11px;
    border-bottom: #ababab 1px solid;
    height: 28px;
}

#filter-marker {
    background-color: #FFFFFF;
    width: 9px;
    height: 9px;
    display: inline-block;
    margin-left: 8px;
    margin-top: 6px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: #000000 3px solid;
}

#filter-name {
    display: inline-block;
    width: 137px;
    border: 1px solid gray;
    height: 16px;
    margin-top: -10px;
}

#filter-class {
    display: inline-block;
    font-weight: bold;
    text-decoration: underline;
}

#filter-class-select {
    border: 1px solid gray;
    width: 70px;
    font-size: 9px;
    height: 20px;
    margin-top: -10px;
}

#participants-list-holder {
    position: absolute;
    top: 90px;
    bottom: 244px;
    max-width: 250px;
    overflow: hidden;
}

#participants-list {
    overflow: auto;
    height: 100%;
    width: 265px;
}

.participants-list-item {
    width: 250px;
    cursor: pointer;
}

.basicinfo {
    font-size: 10px;
    height: 26px;
    line-height: 26px;
    border-bottom: #dbdbdb 1px solid;
    overflow: hidden;
    margin-right: 42px;
}

.basicinfo .marker {
    background-color: #FF0000;
    width: 7px;
    height: 7px;
    display: inline-block;
    margin-left: 8px;
    margin-top: 6px;
    position: relative;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: #FF0000 3px solid;
    display: -moz-inline-stack;
    vertical-align: top;
}

.marker-selection-off {
    /*border-width: 6px !important;*/
    background: none !important;
}
.followable {
    background-color: #E5B57C;
}

.basicinfo .fullname {
    display: inline-block;
    margin-left: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 120px;
    display: -moz-inline-stack;
    vertical-align: top;
    text-shadow: 0px 0px 1px rgba(255,0,0,0);
}

.basicinfo .shortname {
    display: none;
    /*display: inline-block;*/
    position: relative;
    vertical-align: top;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 70px;
    text-shadow: 0px 0px 1px rgba(255,0,0,0);
}

.mainstat {
    font-size: 10px;
    height: 26px;
    line-height: 26px;
    float: right;
    margin-right: 4px;
    text-align: right;
    margin-top: -27px;
    min-width: 42px;
    border-bottom: #dbdbdb 1px solid;
}
.splitLeader {
    font-weight: bold;
    color: darkgreen;
}

.openstat {
    line-height: 14px;
    font-size: 10px;
    padding: 4px;
    -webkit-box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0px 0px 3px 1px rgba(0, 0, 0, 0.3);
}

.statitem {
    display: inline-block;
}

.statname {

}

.statvalue {
    font-weight: bold;
}

.participant-tooltip {
    position: absolute;
    z-index: 6; /* on top of leftpane */
    top: -500px;
    left: 260px;
    min-width: 120px;
    height: auto;
    padding: 12px;
    background-color: #efefef;
    color: #333;

    -webkit-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, .5);
    -moz-box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, .5);
    box-shadow: 3px 0px 10px 0px rgba(0, 0, 0, .5);

}

.participant-tooltip:after {
    content: "\25B8";
    display: block;
    font-size: 2em;
    height: 0;
    line-height: 0;
    position: absolute;
    z-index: 4;
    color: #efefef;
    left: -0.375em;
    top: 12px;
    margin-top: .1em;
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -khtml-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.participant-tooltip .statitem {
    display: block;
    font-size: 11px;
    line-height: 15px;
}

.participant-tooltip .title {
    font-weight: bold;
}

/********************
*** SETTINGS VIEW ***
********************/
#settings-holder {
    display: block;
    background-color: #e9e9e9;
    position: absolute;
    width: 250px;
    height: 244px;
    left: 0;
    bottom: 0;
    overflow: hidden;
}
#settings-titlebar {
    background-color: #e5e4e4;
    border-top: #adacac 2px solid;
    border-bottom: #adacac 1px solid;
    padding: 3px 0;
}
#settings-title {
    color: #333;
    text-transform: uppercase;
    /*line-height: 18px;*/
    cursor: pointer;
    display: inline-block;
    margin: 0 10px;
}

#setting-statechanger {
    margin: 0 10px;
}

#settings-items {
    font-size: 10px;
    padding: 12px;
}

#settings-items label {
    display: inline-block;
    width: 95px;
}

#settings-items span {
    display: block;
    line-height: 16px;
    vertical-align: top;
    padding-bottom: 8px;
}

#settings-items select {
    vertical-align: top;
    width: 80px;
}

#settings-items input {
    vertical-align: middle;
    font-size: 14px;
}

/***********************
**** BANNER MODULE ****
**********************/
#banner-holder {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 220px;
    background-color: #FFFFFF;
    text-align: center;
    z-index: 5;
}

/*---------- YOU CAN CHANGE THIS STUFF -----------*/
/*#bannerRotator { width:600px; height:300px; padding:5px; margin:20px auto; background:#EEE; border:1px solid #CCC; }*/
#banner-holder ul li img {
    max-width: 220px;
    max-height: 220px;
}

/*---------- YOU MIGHT BREAK IT IF YOU CHANGE THIS STUFF -----------*/
#bannerRotator {
    position: relative;
}

#banner-holder ul {
    list-style: none;
    padding: 0;
    position: relative;
    margin: 0;
    width: 250px;
}

#banner-holder ul li {
    display: none;
    position: absolute;
}

#banner-holder ul li a {
    text-decoration: none;
}

/*
#bannerNav { position:absolute; right:15px; bottom:15px; background:url(img/transBlack75.png) repeat 0 0; padding:5px 5px 5px 10px; -moz-border-radius:5px; -webkit-border-radius:5px; }
#bannerNav a { margin:3px 10px 0 0; height:10px; width:10px; display:block; background:url(img/dotDark.png) no-repeat 0 0; float:left; }
#bannerNav a.active { background-image:url(img/dotLight.png); }
#bannerNav span.pause, #bannerNav span.play { cursor:pointer; height:15px; width:15px; display:block; background:url(img/pause.png) no-repeat 0 0; float:left; }
#bannerNav span.play { background-image:url(img/play.png) }
*/
.banner-item {
    width: 250px;
    height: 220px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    /*background-color: #00FF00;*/
}

#main-pane {
    background-color: #FFF;
    position: fixed;
    top: 0;
    left: 250px; /*Set left value to WidthOfFrameDiv*/
    right: 0;
    bottom: 0;
    overflow: auto;
    z-index: 1;
}

#map {
    width: 100%;
    height: 100%;
}

#playbar {
    /*background-color: rgba(100, 100, 100, .5);*/
    height: 30px;
    position: absolute;
    left: 8px;
    right: 136px;
    bottom: 12px;
}

#playbar-inner {
    width: 100%;
    display: table;
}

#playbar-play {
    display: block;
    position: absolute;
    vertical-align: top;
    width: 70px;
    min-height: 30px;
}

#playbar-play-button {
    width: 67px;
    height: 30px;
}

#playbar-play-button.paused {
    background: url('../assets/icon-play.png') center center no-repeat;
}

#playbar-play-button.playing {
    background: url('../assets/icon-pause.png') center center no-repeat;
}

#mass-start-toggle .ui-button-text {
    padding: 3px;
}

#playbar-timebar {
    display: block;
    position: absolute;
    vertical-align: top;
    width: auto;
    left: 80px;
    right: 10px;
    /*padding: 0 8px 0 8px;*/
}

#playbar-timebar-forward {
    display: block;
    position: absolute;
    right: 2px;
    width: 36px;
    height: 30px;
    background: url('../assets/icon-forward.png') center center no-repeat;
}

#playbar-timebar-rewind {
    display: block;
    position: absolute;
    width: 36px;
    height: 30px;
    left: 150px;
    background: url('../assets/icon-rewind.png') center center no-repeat;
}

#playbar-speed-select {
    display: block;
    position: absolute;
    width: 54px;
    font-size: 9px;
    left: 6px;
    top: 6px;
}

#playbar-speed-select-button {
    font-size: 9px;
    margin-right: 10px;
}

#mass-start-toggle {
    display: block;
    position: absolute;
    font-size: 9px;
    width: 76px;
    left: 76px;
    top: 4px;
}
#playbar-time-progress-holder {
    display: block;
    position: absolute;
    left: 190px;
    right: 50px;
    top: 4px;
}
#playbar-time-progress {
    height: 8px;
    background: none;
    padding: 2px;
    width: 100%;
    border-radius: 0;
    border: 1px solid #FFFFFF;
    margin-top: 4px;
}

#playbar-currenttime {
    position: absolute;
    left: 0;
    width: 63px;
    height: 27px;
    margin-left: -29px;
    margin-top: -30px;
    background: url('../assets/timetip-bg.png') center no-repeat;
}

#playbar-currenttime-text {
    color: #2d2d2d;
    font-size: 11px;
    font-weight: bold;
    line-height: 26px;
    width: 63px;
    text-align: center;
}

#playbar-time-progress .ui-progressbar-value {
    border-radius: 0;
    background-color: #f0821f;
    background-image: none;
    height: 8px;
}

#playbar-clock {
    z-index: 3;
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: block;
    width: 110px;
    height: 30px;
    min-width: 110px;
    /* text */
    color: #FFFFFF;
    line-height: 30px;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
}

/*
** MAP RELATED OBJECTS
*/
.map-marker-normal {
    position: absolute;
}

.map-marker-circle {
    width: 12px;
    height: 12px;
    background-color: #FF0000;
    /* border */
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: #000 1px solid;
}

.map-marker-circle-50 {
    width: 6px;
    height: 6px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.map-marker-circle-75 {
    width: 10px;
    height: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.map-marker-circle-100 {
    width: 12px;
    height: 12px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.map-marker-circle-125 {
    width: 15px;
    height: 15px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.map-marker-circle-150 {
    width: 18px;
    height: 18px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    border: #000 2px solid;
}

.map-marker-circle-200 {
    width: 24px;
    height: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    border: #000 4px solid;
}

.map-marker-circle-300 {
    width: 36px;
    height: 36px;
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    border-radius: 36px;
    border: #000 6px solid;
}

.map-marker-invalid {
    border: #FF0000 2px solid;
}

.map-marker-label {
    position: absolute;
    top: 2px;
    left: 16px;
    font-size: 9px;
    background: rgba(255, 255, 255, .6);
    color: #000;
    white-space: nowrap;
    font-family: "Helvetica", "Arial", sans-serif !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
}

.map-marker-label-50 {
    top: 2px;
    left: 12px;
    font-size: 8px !important;
}

.map-marker-label-75 {
    top: 2px;
    left: 12px;
    font-size: 8px !important;
}

.map-marker-label-100 {
    top: 2px;
    left: 16px;
    font-size: 9px !important;
}

.map-marker-label-125 {
    top: 3px;
    left: 18px;
    font-size: 10px !important;
}

.map-marker-label-150 {
    top: 5px;
    left: 22px;
    font-size: 12px !important;
}

.map-marker-label-200 {
    top: 12px;
    left: 26px;
    font-size: 16px !important;
}

.map-marker-label-300 {
    top: 20px;
    left: 40px;
    font-size: 18px !important;
}

.unviable-data {
    opacity: 0.5;
}

/** MOBILE STYLES **/
@media only screen
and (max-device-width : 380px)
and (orientation: portrait) {
    #playbar-timebar-rewind {
        display: none;
    }
    #playbar-time-progress-holder {
        display: none;
    }
    #playbar-timebar-forward {
        display: none;
    }
}
