
/* Navigation bar */
.navBar { 
    font-size: 10pt; 
    padding-bottom: 1px; 
    background-color: #FCF6E1; 
    border-top: solid #555555 1px; 
    border-bottom: solid #555555 1px;
}
.navBarClear { 
    font-size: 10pt; 
    padding-bottom: 1px; 
    color: white;
    
}


/* generic form button */
.formButton { 
    margin: 0;
    padding: 0;
}

/* Text input/display */
.textInput { 
    border-width: 1px; 
    border-style: solid; 
    border-color: #555588 #AAAABB #AAAABB #555588; 
    /* 
    border-width: 2px; 
    border-style: inset; 
    border-color: #DDDDDD #EEEEEE #EEEEEE #DDDDDD; 
    */
    padding-left: 2px; 
    background-color: #FFFFFF; 
}

.textReadOnly { 
    border-width: 1px; 
    border-style: solid; 
    border-color: #555588 #AAAABB #AAAABB #555588; 
    /*
    border-width: 1px; 
    border-style: inset; 
    border-color: #DDDDDD #EEEEEE #EEEEEE #DDDDDD; 
    */
    padding-left: 2px; 
    color: #555555;
    background-color: #EFEFEF; 
}
.textReadOnly:focus { 
    color: #111111;
    background-color: #E7E7E7; 
}
.textOnClick { 
    border-width: 1px; 
    border-style: solid; 
    border-color: #444477 #9999AA #9999AA #444477; 
    /*
    border-width: 2px; 
    border-style: inset; 
    border-color: #DDDDDD #EEEEEE #EEEEEE #DDDDDD; 
    */
    padding-left: 2px; 
    background-color: #FFFFFF; 
    cursor: pointer;
}

/* TextArea input/display */
.textAreaInput {
    border-width: 1px; 
    border-style: solid; 
    border-color: #444477 #9999AA #9999AA #444477; 
    /*
    border-width: 2px; 
    border-style: inset; 
    border-color: #DDDDDD #EEEEEE #EEEEEE #DDDDDD; 
    */
    padding-left: 2px; 
    background-color: #FFFFFF; 
    font-family: monospace;
}
.textAreaReadOnly { 
    border-width: 1px; 
    border-style: solid; 
    border-color: #444477 #9999AA #9999AA #444477; 
    /*
    border-width: 1px; 
    border-style: inset; 
    border-color: #DDDDDD #EEEEEE #EEEEEE #DDDDDD; 
    */
    padding-left: 2px; 
    color: #555555;
    background-color: #EFEFEF; 
    font-family: monospace;
}
.textAreaReadOnly:focus { 
    color: #111111;
    background-color: #E7E7E7; 
}

/* menu */
.menuTitle { 
    font-size: 12pt; 
    font-weight: bold; 
}
.menuInstructions { 
    font-size: 10pt; 
}
.menuDescription { 
    padding-top: 3px; 
    font-size: 9pt;
}

/* General page content */
.contentTable { 
    width: 97%;
    height: 98%; 
    max-height: 100%;
    margin-top: 10px;
}

.tbReportsSinglePage {
	text-align: center;
}

.tbReportsSinglePage img{
	border: solid 1px transparent;
}

.tbReportsSinglePage img:hover{
	border-color: #8c6216;
}

.tbReportsSinglePage a:link{
	font-size:16px;
	color:#000;
}

.tbReportsSinglePage a:visited{
	color:#000;
}

.tbReportsSinglePage a:hover{
	font-size:16px;
	color:#8c6216;
}

.contentCell {
    /* height: 100%; */
    padding: 5px;
    border: solid #555555 2px;
 /*   background-color: #FFF5DC; */
 	background:rgba(230,230,230,0.95);
    vertical-align: top;
}


.contentTopMenuCell { 
    padding: 5px; 
    border: solid #555555 2px; 
    /* background-color: #FFF5DC; */
    vertical-align: top;
    text-align: left;
}

.contentMessage {
    margin-top: 5px;
    font-style: oblique;
    text-align: center;
}

/* Map page content */
.contentMapTable {
    /* width: 1000px; */
    width: 97%;
    height: 98%;
    max-height: 100%;
    margin-top: 10px;
}
.contentTrackMapCell {
    width: 100%;
    padding: 0px 0px 0px 0px;
    background: rgba(255,245,220,0.5);
    font-size: 7pt;
    vertical-align: top;
}

/* Map page content full screen */
.contentMapTableFull {
    width: 100%;
    height: 99%;
    margin-top: 10px;
}
.contentTrackMapCellFull {
    width: 100%;
    /* height: 100%; */
    padding: 5px 5px 5px 5px;
    border: solid #555555 2px;
    background-color: #FFF5DC;
    font-size: 7pt;
    vertical-align: top;
}

/* simple message response */
.messageResponseTable {
    margin-top: 50px;
}
.messageResponseCell {
    padding: 10px;
    border: solid #555555 1px;
    background-color: #FBFBFB;
    text-align: center;
}

/* copyright */
.copyrightFooter {
    font-size: 7pt; 
    text-align: center; 
    padding-bottom: 2px;
    background-color: #EFEFEF; 
}
.copyrightFooterClear {
    font-size: 7pt; 
    text-align: center; 
    padding-bottom: 2px;
    color: white;
}

/* --------------------------------------------- */

TBODY.scrollExp {
    max-height: 380px;
    height: expression( this.scrollHeight > 379 ? "380px" : "auto" );
    /*height: 380px; /**/
    overflow-y: expression( this.scrollHeight > 379 ? "scroll" : "hidden" );
    overflow-x: hidden;
}

TBODY.scroll {
    max-height: 380px;
    height: 380px;
    overflow-y: scroll;
    overflow-x: hidden;
}

TBODY.noScroll {
}

/* --------------------------------------------- */

/* Admin/info controls */
H1.adminSelectTitle { 
    font: bold 9pt sans-serif; 
    text-align: left; 
    margin-top: 0px; 
    margin-bottom: 3px; 
}
SPAN.adminSelectTitle { 
    font: bold 9pt sans-serif; 
    text-align: left; 
    margin-top: 0px; 
    margin-bottom: 3px; 
}
TABLE.adminSelectTable { 
    border: 1px solid black; 
}
TABLE.adminSelectTable_sortable { 
    border: 1px solid black; 
}
TR.adminTableHeaderRow { 
    background-color: #C0C0C0; 
}
TH.adminTableHeaderCol_sort { 
    white-space: nowrap;
    font: bold 8pt sans-serif; 
    text-align: center; 
    padding: 3px 5px 3px 5px; 
    border-bottom: 3px double black; 
}
TH.adminTableHeaderCol_sort:hover { 
    white-space: nowrap;
    font: bold 8pt sans-serif; 
    text-align: center; 
    padding: 3px 5px 3px 5px; 
    border-bottom: 3px double #770000; 
    background-color: #FFF;
}
TH.adminTableHeaderCol_nosort { 
    white-space: nowrap;
    font: bold 8pt sans-serif; 
    text-align: center; 
    padding: 3px 5px 3px 5px; 
    border-bottom: 3px double black; 
}

TR.adminTableBodyRowOdd { 
    background-color: #FFFFFF; 
}
TR.adminTableBodyRowEven { 
    background-color: #DDDDDD; 
}
TD.adminTableBodyCol {
	font-size:8pt;
    text-align: center;
    padding: 5px 5px 5px 5px;
    border-right: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}

TABLE.adminViewTable {
}
TD.adminViewTableHeader {
    font-size: 9pt;
    height: 23px;
    padding-right: 5px;
    padding-left: 5px;
    text-align: right;
}
TD.adminViewTableData {
    height: 23px;
}
TD.adminViewTableTextArea {
    /*height: 23px;*/
}

SELECT.adminComboBox {
    font-size: 8pt;
    height: 19px;
	background-color: white;
}

#deviceGroup-selectionRow{
	display:none;
}

/* dodatak za zoom dugmice */
/*
#jsmap .gm-style > div > div > div > div > div {

}

#jsmap .gm-style > .gmnoprint > .gmnoprint { background: url(./images/map-zoom-controls.png) no-repeat center center !important; width: 42px !important; height: 68px !important; }
#jsmap .gm-style > .gmnoprint > .gmnoprint > div > img { display: none !important; }
#jsmap .gm-style > .gmnoprint > .gmnoprint div[title="Zoom in"] { top: 2px !important; left: 2px !important; width: 38px !important; height: 31px !important; }
#jsmap .gm-style > .gmnoprint > .gmnoprint div[title="Zoom out"] { top: 35px !important; left: 2px !important; width: 38px !important; height: 30px !important; }
*/
