/* 
    Document   : core
    Created on : 08 May 2013
    Author     : David Herbert
    Description:
        Core stylesheet for Polar View dev map application.
*/

body {
	background-color: #000000;
	color: #FFFFFF;
	font-family: verdana,geneva,lucida,'lucida grande',arial,helvetica,sans-serif;
	font-size: 12px;
	line-height: 18px;
	margin: 12px;
    /* All these are IE only styles for scrollbars */
    scrollbar-face-color: #404040;
    scrollbar-base-color: #404040;
    scrollbar-3dlight-color: #404040;
    scrollbar-highlight-color: #404040;
    scrollbar-track-color: #909090;
    scrollbar-arrow-color: black;
    scrollbar-shadow-color: #404040;
    scrollbar-dark-shadow-color: #404040;
}

/* Pop-up styles */
.customPopupContent {
    padding: 5px;
    overflow: auto;
	color: #C0C0C0;
	font-size: 10px;
}

/* Left and right arrows for cycling through imagery */
.scrollleft {  
	top: 100px;
	left: 0px;
}

.scrollright {
	top: 100px;
	left: 250px;
}

.arrow {
	width: 30px;
	height: 30px;
	position: absolute;
	opacity: 0.5;	
}

.arrow:hover {
	opacity: 1;
}

div#preview-image {	
	width: 275;	
}

div.noimage {
	padding: 5px; 
	position: absolute; 
	top: 80px; 
	left: 30px; 
	width: 200px; 
	/* height: 60px; */
	border: 1px solid white; 
	background-color: #222222;
}

div.brief-metadata {	
	font-size: 10px;
	padding-left: 6px;
}

div#carouseltip {
	width: 100%;
	text-align: right;
	background-color: #222222;
	color: #A0A0A0;
}

table.downloadtable {
	font-size: 10px;
	padding: 4px;
}

table.downloadtable th {
	font-weight: bold;
	padding: 3px;
}

table.downloadtable td {
	padding: 3px;
}

table.downloadtable a {
	color: white;
	text-decoration: none;
}

table.downloadtable a:hover {
	text-decoration: underline;
}

table.daily {
    border-spacing: 0;
}

td.daily {
    font-size: 8px;
    text-align: center;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

table.daily td.ssmis {
    background-color: #E0FFFF;
    color: #202020;
    border: 1px solid #404040;    
}

table.daily td.amsr2 {
    background-color: #87CEFA;
    color: #202020;
    border: 1px solid #404040;   
}

table.daily td.mosaic {
    background-color: #9DE0BC;
    color: #202020;
    border: 1px solid #404040;   
}

table.daily td.s3 {
    background-color: #edcd9a;
    color: #202020;
    border: 1px solid #404040;   
}

table.daily td.nodata {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #404040;   
}

table.daily td.ssmis_current {
    background-color: #E0FFFF;
    color: #202020;
    border: 3px solid #FF0000;    
}

table.daily td.amsr2_current {
    background-color: #87CEFA;
    color: #202020;
    border: 3px solid #FF0000;   
}

table.daily td.mosaic_current {
    background-color: #9DE0BC;
    color: #202020;
    border: 3px solid #FF0000;   
}

table.daily td.s3_current {
    background-color: #edcd9a;
    color: #202020;
    border: 3px solid #FF0000;   
}

table.daily td.nodata_current {
    background-color: #000000;
    color: #FFFFFF;
    border: 3px solid #FF0000;   
}

/* Ensure the mouse position control is visible at the right edge */
div.olControlMousePosition {   
    right: 23px !important;   
}

/* Static page styles */
h1.static {
    padding: 10px;
    font-size: larger;
}

h2.static {
    padding: 6px;
    font-size: larger;
}

h3.static {
    padding: 2px;
    margin-left: 6px;
}

p.static {
    padding: 10px;
}

a.static {
    text-decoration: underline;
    color: #FFFFFF;
}

img.static {
    padding: 10px 5px 5px 5px;
    border-width: 0px;
}

ol.static {
    padding: 10px;
    margin-left: 20px;
    list-style-type: decimal !important;
} 

ul.static {
    padding: 10px;
    margin-left: 20px;
    list-style-type: disc !important;
}

li.static {
    padding-bottom: 5px;
}

div.centerimage {
    width:400px;
    margin-left:auto;
    margin-right:auto;
}

/* Custom zoom to world icon */
.olControlCustomZoomToMaxExtent {
    background-image: url(../images/world.png);
    position: absolute;
    height: 25px !important;
    width: 25px !important;
    top: 170px !important;
    left: 17px !important;
    cursor: pointer;
}
.olPopup {
    border-radius: 10px;
}
#pop_GroupDiv {
    background-color: none;
    border-radius: 10px;
    color: #DDDDDD;
}
#pop_GroupDiv a {
	color: #DDDDDD;
}
#popupTitle{
    font-weight: bold;
}

::-webkit-scrollbar {
      width: 15px;
} /* this targets the default scrollbar (compulsory) */

::-webkit-scrollbar-track {
      background-color: #909090;
} /* the new scrollbar will have a flat appearance with the set background color */
 
::-webkit-scrollbar-thumb {
      background-color: rgba(0, 0, 0, 0.2); 
} /* this will style the thumb, ignoring the track */
 
::-webkit-scrollbar-button {
      background-color: #404040;
} /* optionally, you can style the top and the bottom buttons (left and right for horizontal bars) */
 
::-webkit-scrollbar-corner {
      background-color: black;
} /* if both the vertical and the horizontal bars appear, then perhaps the right bottom corner also needs to be styled */