/**********************************************************************
 *
 * $Id: screen.css,v 1.7 2007/08/28 15:16:24 lbecchi Exp $
 *
 * purpose: css declarations for sample interface.
 *
 * purpose: This is the sample ka-Map interface.  Feel free to use it 
 *          as the basis for your own applications or just to find out
 *          how ka-Map works.
 *
 * author: Lorenzo Becchi and Andrea Cappugi (www.ominiverdi.org)
 *
 * ka-Explorer interface has been developer for Food and Agriculture 
 * Organization of the United Nations (FAO-UN)
 * 
 *
 **********************************************************************
 *
 * Copyright (c) 2006 Food and Agriculture Organization of the United Nations (FAO-UN)
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included
 * in all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
 * DEALINGS IN THE SOFTWARE.
 *
 **********************************************************************/

/* img elements with a class of png24 will have the png24 filter hack applied
 * in IE browsers only.  To make this work, images MUST have a width and height
 * specified.  The minimum tag required is:
 *
 *     <img class="png24" src="<url>" width="xx" height="xx">
 */
img.png24 { filter:expression(applyPNGFilter(this)) }

/* this is a full screen app.  Make sure that overflow is hidden so we don't
 * get scrollbars
 */
body {
	margin: 0px;
	padding: 0px;
	background-color: white;
	overflow: hidden;
}

/* the viewport contains the map and fills the screen.  The viewport can also
 * contain other elements and they appear inside the viewport on top of the map
 * which is what is done with this application.
 */
#viewport {
	position: absolute;
	background-color: #f0f0f0;
	overflow: hidden;
	cursor: move;
	-moz-box-sizing: border-box;
	z-index:0;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: rgb(212,208,200);
	border-left-color: rgb(128,128,128);
}

/* The toolbar contains the tools for changing maps and various navigation
 * and query options.  In this app, we put the toolbar at the top by making it
 * the first thing in the page.
 */
#toolbar {
    position: absolute;
    top:62px;
    left:0;
    margin:0;
    text-align:left;
    padding:0;
    width: 100%;
    height: 31px;
  //  z-index:2;
    cursor: auto;   
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-top: 1px solid white;
    border-bottom: 1px solid rgb(128,128,128);
    background-color:rgb(212,208,200);
    background-image: url(../../images/icon_set_explorer/back_pix.png);
    
    font-size:1px;
}

#toolbar img { vertical-align: middle }
#toolbar select { vertical-align: middle }

/*
* Explorer
*/
#explorer{
	position: absolute;
	top:0;
	left:0;
	margin:0;
	padding:0px;
	width: 100%;
	height: 92px;
	z-index:2;
	cursor: auto;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color:rgb(115,116,114);
	color:white;
	background-image: url(../../images/icon_set_explorer/sfumato-top.png);
	background-repeat: no-repeat;
	background-position: left top;
	overflow: hidden;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgb(128,128,128);
}

/* this is used to provide a semi-transparent background on divs that contain
 * fully opaque tools.  To use, put <div class="transparentBackground"></div>
 * inside an element that you want to have a semi-transparent background.
 */
#toolbarBackground {
    width: 100%;
    height: 30px;
}

#scaleBackground {
    width: 100%;
    height: 60px;
}

#geoPositionBackground {
    width: 100%;
    height: 60px;
}

div .transparentBackground {
	position:absolute;
	top:0px;
	left:0px;
	background-color: #eee;
	filter:alpha(opacity=75);
	-moz-opacity:0.75;
	opacity:0.75;
	z-index: -1;
}

#keymap {
	position: relative;
	bottom:0px;
	padding:0px;
	overflow: hidden;
	filter:alpha(opacity=100);/*trick to prevent IE opacity bug*/
	z-index: 4;
	border: 1px solid #999;
	margin-bottom:20px;
	margin-left:auto;
	margin-right:auto;
}

#keymap div {
    filter:alpha(opacity=100);/*trick to prevent IE opacity bug*/
}

#keymap img {
    filter:alpha(opacity=100);/*trick to prevent IE opacity bug*/
}


/* REFERENCE */


#geoPosition,#geoExtent {
    padding:0px;
    margin: 2px;
    margin-left:13px;
    font-size:7pt;
    color: #000000;
    
}

#legend {

    position: relative;
   /* width:254px;*/
    padding:0px;
    margin: 0px;
	/* overflow:auto;
	height:200px;*/
}

#print {
	position: absolute;
	width:254px;
	padding:0px;
	margin: 0px;
	overflow:auto;
	background-color: white;
}

#search {
	position: absolute;
	width:254px;
	padding:0px;
	margin: 0px;
	overflow:auto;
	background-color: white;
}

#BusquedaUTM {
	position: absolute;
	width:254px;
	padding:0px;
	margin: 0px;
	overflow:auto;
	background-color: white;
}

#locate {
	position: absolute;
	width:254px;
	padding:0px;
	margin: 0px;
	overflow:auto;
	background-color: white;
}

#mapInfo {
	position: absolute;
	width:254px;
	padding:0px;
	margin: 0px;
	overflow:auto;
	background-color: white;
}

#admin {
	position: absolute;
	width:254px;
	padding:0px;
	margin: 0px;
	overflow:auto;
	background-color: white;
}

#statistics {
	position: absolute;
	width:254px;
	padding:0px;
	margin: 0px;
	overflow:auto;
	background-color: white;
}

#inventory {
	position: absolute;
	width:254px;
	padding:0px;
	margin: 0px;
	overflow:auto;
	background-color: white;
}

#mapLegend {
	position: absolute;
	width:254px;
	padding:0px;
	margin: 0px;
	overflow:auto;
	background-color: white;
}

#link {
	position: absolute;
	width:254px;
	padding:0px;
	margin: 0px;
	overflow:auto;
	background-color: white;
}


#identifier {
	position: absolute;
	width:254px;
	padding:0px;
	margin: 0px;
	overflow:auto;
	background-color:white;
}

#scale {
    font-family: Verdana, sans-serif;
    font-size: 10px;
    position: relative;
    padding:0px;
    width: 250px;
    text-align: center;
    margin-top: 48px;
}

/*
#scalebar {
    margin-bottom: 20px;
    margin-top: 20px;
}
*/

#scaleReference {
	position:absolute;
	z-index:2;
	right:0px;
	bottom:0px;
	padding:0px;
	border: 1px solid #999;
	height: 35px;
	width:200px;
}

#geoPositionReference {
	position:relative;
	margin:4px;
	margin-right:auto;
	margin-left:auto;
	padding:0px;
	border: 0px solid #999;    
}

#geoPositionReference h5{
	display:none;
}

/* SEARCH SYSTEM */




/* CLASSES */

.label {
    font-family: Verdana, sans-serif;
    font-size: 11px;
    font-weight: normal;
}
.value {
    font-family: Verdana, sans-serif;
    font-size: 11px;
    font-weight: bold;
}

.separator {
	margin-right:3px;
	margin-left:3px;
}


.kmTitle {
	position:relative;
	top:0px;
	display:inline;
    font-family: Verdana, sans-serif;
    font-size: 20px;
    font-weight: bold;
	font-variant: small-caps;
	margin-left:1px;
	color:white;
}

.kmSubtitle{
	position:relative;
	display:inline;
	font-family: Verdana, sans-serif;
    font-size: 10px;
	margin-left:1px;
	top:0px;
	color:rgb(0,0,0);
}

.minimenu {
	position:absolute;
	top:5px;
	right:15px;
	color:white;
	font-weight: bold;
	font-family: Times, sans-serif;
	text-transform: uppercase;
    font-size: 16px;
}
.minimenu a {
	color:white;
}
.minimenu span {
	margin-left:0px;
}
.inactive {
	font-family: arial;
	font-size: 12px;
	font-weight:bold;
	color:rgb(0,0,0);
	BORDER-RIGHT: rgb(254,252,214) 1px solid;
	BACKGROUND-COLOR: #E1E1E1;
	cursor: pointer;
	-webkit-border-top-left-radius: 12px;
	-webkit-border-top-right-radius: 12px;
	-moz-border-radius-topleft: 12px;
	-moz-border-radius-topright: 12px;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	padding: 5px;
	height: 30px;
}
.active {
	font-family: arial;
	font-size: 12px;
	font-weight:bold;
	color:rgb(255,255,255);
	BACKGROUND-COLOR: #737472;
	cursor: pointer;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #999999;
	-webkit-border-top-left-radius: 12px;
	-webkit-border-top-right-radius: 12px;
	-moz-border-radius-topleft: 12px;
	-moz-border-radius-topright: 12px;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	padding: 5px;
	height: 30px;
}
.galeria_mapas_titulo {
	font-family: Verdana, sans-serif;
	font-size: 12px;
	font-weight:bold;
	color:rgb(255,255,255);
	BACKGROUND-COLOR: #006633;
	cursor: pointer;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #999999;
	-webkit-border-bottom-left-radius: 12px;
	-webkit-border-bottom-right-radius: 12px;
	-moz-border-radius-bottomleft: 12px;
	-moz-border-radius-bottomright: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	padding: 5px;
	height: 30px;
}
.galeria_mapas_borde {
	cursor: pointer;
	border-width: 1px;
	border-style: solid;
	border-color: #006633;
	padding: 5px;
	height: 30px;
}
#galeria td {
	font-size:9pt;
	padding:2pt;
}
#galeria a {
    color:rgb(255,255,255);
	font-size:9pt;
	text-decoration:none;
}
#galeria a:hover {
	text-decoration:none;
}
.titulotabla {
	font-family: Verdana, sans-serif;
	font-size: 12px;
	font-weight:bold;
	color:rgb(0,0,0);
	PADDING-RIGHT: 4px;
	PADDING-LEFT: 4px;
	PADDING-BOTTOM: 4px;
	PADDING-TOP: 4px;
	BACKGROUND-COLOR: rgb(170,170,170);
}
.titulomenu {
	font-family: arial;
	font-size: 12px;
	font-weight:bold;
	margin-left:1px;
	top:0px;
	color:#006633;
}
.td2 {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #999999;
}
.fieldset {
	border:1px solid #737472;
	color: rgb(0,0,0);
}
.legend {
	color: rgb(0,0,0);
}

div.autocomplete {
	position:absolute;
	width:250px;
	background-color:rgb(255,255,255);
	border:1px solid #999999;
	margin:0px;
	padding:0px;
}
div.autocomplete ul {
  list-style-type:none;
  margin:0px;
  padding:0px;
}
div.autocomplete ul li.selected {
	background-color: #D0D5CD;
}
div.autocomplete ul li {
  list-style-type:none;
  display:block;
  margin:0;
  padding:2px;
  height:20px;
  cursor:pointer;
  text-align: left;
  font-family: arial;
  font-size: 9px;
  font-weight: normal;
  color: rgb(0,0,0);
}
.requerido {
	background-color: rgb(255,255,255);
	/*border:1px solid rgb(252,216,60);*/
}
.disabled {
	background-color: #F3F3F3;
}
.readonly {
	background-color: #d4d4d4;
	border:rgb(255,255,255) 0px solid;
	font-family: arial;
	font-size: 12px;
	font-weight: bold;
}
.tabla_ayuda{
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #737472;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #737472;
}
.frame{
	background-color: #d4d4d4;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
}
.button{
	font-weight: normal;
	color: #FFFFFF;
	background-color: #737472;
	font-size: 14px;
}


/* HTML TAGS */
input {
	font-family: arial;
	font-size: 12px;
	font-weight: normal;
	border: 1px solid rgb(115,116,114);
	background:#eee;
	color: rgb(0,0,0);
}

select {
	font-family: arial;
	font-size: 12px;
	font-weight: normal;
	width: 150px;
	border: 1px solid rgb(115,116,114);
	background:#eee;
	color: rgb(0,0,0);
}

label {
	display:block;
	margin-top:15px;
}
a { 
    text-decoration: none; 
    font-family: arial;
    font-size: 10px;
    color: #000033;
}

hr {
	background-color:#eee;
	height:3px;
	border-top-width: 1px;
	border-right-width: 0;
	border-bottom-width: 1px;
	border-left-width: 0;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: white;
	border-bottom-color: rgb(128,128,128);
}

div {
    font-family: arial;
    font-size: 12px;
    font-weight: normal;
	color: rgb(0,0,0);
}

textarea {
	font-family: arial;
	font-size: 12px;
	font-weight: normal;
	border: 1px solid rgb(115,116,114);
	background:rgb(255,255,255);
	color: rgb(0,0,0);
}

a:link {}
a:hover {}
a:active {}
a:visited {}


/* OTHERS */


#kaLogo {
    position: absolute;
    left: 6px;
    top: 3px;
    z-index: 2;
}

#kaLogo a {
    color:rgb(0,0,0);
}

.kaLegendTitle {  
    padding: 2px;
    padding-bottom:10px;
    font-size: 13px;
    font-weight: bold;
}

.kaLegendLayer  {
	padding: 2px;
	padding-top:7px;
	padding-bottom:7px;
	font-size: 12px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: rgb(153,153,153);
}

#contributors {
    display: none;
}

/* 
 	KA-EXPLORER LAYOUT
*/
#page {
	position: absolute;
	left:0;
	top:0;
	
	
    overflow: hidden;
}
#layoutFrame {
	position: absolute;
	font-family:Verdana, serif;
	border-top-width: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgb(128,128,128);
}


/*Panel Izquierdo*/
#service {
	position:absolute;
	width:254px;
	overflow:hidden;
	border-top-width: 0px;
	border-right-width: 3px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: rgb(212,208,200);
	border-bottom-color: rgb(212,208,200);
	border-left-color: rgb(128,128,128);
}



#curtain {
	position:absolute;
	top:0px;
	left:0px;
	z-index:4;
	width:600px;
	height:2000px;
	background-color:white;
	text-align:left;
}


#content {
	position: absolute;
	overflow: hidden;
	border: 1px solid rgb(128,128,128);
	-moz-box-sizing: border-box;
	/*top:5000px;*/
    display:none;
	z-index:0;
}

#contentButton {
    position: absolute;
    right:12px;
    top:9px;
    
    filter:alpha(opacity=75); 
    -moz-opacity:0.75;
    opacity:0.75; 
}

#contentBackground {
	 width: 100%;
    height: 60px;
}
#contentText {
	overflow: auto;
	position:absolute;
	top:30px;
	left:15px;
	border: 1px solid rgb(212,208,200);
}

#mapTitle {
	
	margin:4px;
	font-size:0.85em;
}

#page h1,#page h2,#page h3{
	text-align:left;
	font-size:12pt;
	margin:4px;
	margin-bottom:15px;
	color:rgb(20,20,40);
}
#page h4,#page h5,#page h6{
	text-align:left;
	font-size:10pt;
	margin:4px;
	margin-bottom:8px;
	color:rgb(20,20,40);
}

#page p{
    text-align:left;
	font-size:9pt;
	margin:4px;	
	color:rgb(0,0,0);
}
#page form{
	margin:4px;
	font-size:10pt;
}

#mapTitle{
	margin:6px;
	color:rgb(0,0,0);
}

#data th {
	border:1px solid rgb(0,0,0);
	font-size:8pt;
	padding:2pt;
	color: white;
	font-weight:bold;
	background-color: rgb(170,170,170);
}

#data td {
	font-size:8pt;
	padding:2pt;
	color: rgb(0,0,0);
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgb(153,153,153);
}

#link a {
	margin-left:10px;
	font-size:10pt;
	text-decoration:underline;
}
#link a:hover {
	text-decoration:none;
}

#Mediciones {
 	position: absolute;
 	right: 230px;
 	bottom: 0px;
 	width: 305px;
 	height: 20px;
 	background-color: #eee;
	filter:alpha(opacity=75);
	-moz-opacity:0.75;
	opacity:0.75;
 	text-align: left;
    padding:7px;
    font-family: Verdana, sans-serif;
    font-size: 11px;
    z-index: 90;
	border-top: 1px solid #999999;
    border-left: 1px solid #999999;
    /*border-bottom: 1px solid #999999;*/
    border-right: 1px solid #999999;   
}

#MedicionesTexto {
    position: absolute;
 	right: 0px;
 	bottom: 0px;
 	width: 300px;
 	height: 20px;
 	text-align: left;
    padding:5px;
    font-family: Verdana, sans-serif;
    font-size: 11px;
    z-index: 103;
}

/* 2014-09-08 Inicio: coordenadas geograficas */
#infogeoX {
	position: absolute;
	margin-left: 15px;
	top: 5px;
	font-size: 7.5pt;
	color: #000000;
}

#infogeoY {
	position: absolute;
	margin-left: 15px;
	top: 17px;
	font-size: 7.5pt;
	color: #000000;
}

#infogeoLon {
	position: absolute;
	padding-left: 130px;
	top: 5px;
	font-size: 7.5pt;
	color: #000000;
}

#infogeoLat {
	position: absolute;
	padding-left: 130px;
	top: 17px;
	font-size: 7.5pt;
	color: #000000;
}
/* 2014-09-08 Fin: coordenadas geograficas */

/*
	FGGD stuff

#faoLogo {
    position: absolute;
    left: 6px;
    top: 3px;
    z-index: 2;
}
#faoLogo span{
	visibility: hidden;
}
#faoLogo a{
    width:40px;
	height:40px;
	display:block;
}
#povertyLogo {
    position: absolute;
    left: 50px;
    top: 3px;
    z-index: 2;
}
#povertyLogo a{
    width:125px;
	height:40px;
	display:block;
}
#povertyLogo span{
	visibility: hidden;
}
.faoSubtitle{
	position:absolute;
	font-family: Verdana, sans-serif;
    font-size: 15px;
	right:30px;
	top:25px;
	font-weight:bold;
	color:rgb(230,230,240);
}
*/