/**********************************************************************
 *
 * $Id: tools.css,v 1.1 2006/08/08 21:53:32 lbecchi Exp $
 *
 * purpose: css styles for controlling look/feel of tools
 *
 * author: Paul Spencer (pspencer@dmsolutions.ca)
 *
 * TODO:
 * 
 **********************************************************************
 *
 * Copyright (c) 2005, DM Solutions Group Inc.
 *
 * 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.
 *
 **********************************************************************/
/* 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: relative;
    margin:0;
    padding:0px;
    width: 100%;
    height: 30px;
    z-index:2;
    cursor: auto;   
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 1px solid #999;
}

#toolbar img { vertical-align: middle }
#toolbar select { vertical-align: middle }

/* 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;
}

#toolbarButtons {
	padding-top:2px;
	padding-left:5px;
}


#mapSelect {
    position:absolute;
	right:0px;
}


#zoomer img {
    border:0;
    margin-right:5px;
    cursor: pointer;
}

#geoPosition{
	font-family: Arial;
	font-size: 8pt;
}

div .transparentBackground {
    position:absolute;
    top:0px;
    left:0px;
    background-color: #eee;
    filter:alpha(opacity=90); 
    -moz-opacity:0.90;
    opacity:0.90;
    z-index: -1;
}

 
 #toolQuery {
    background-image: url(../kamap/images/icon_set_nomad/tool_query_1.png);
    background-repeat: no-repeat;
    background-position: left top;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

#toolPan {
    background-image: url(../kamap/images/icon_set_nomad/tool_pan_1.png);
    background-repeat: no-repeat;
    background-position: left top;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

#toolZoomIn {
    background-image: url(../kamap/images/icon_set_nomad/tool_zoomin_1.png);
    background-repeat: no-repeat;
    background-position: left top;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

#toolZoomOut {
    background-image: url(../kamap/images/icon_set_nomad/tool_zoomout_1.png);
    background-repeat: no-repeat;
    background-position: left top;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

#toolZoomRubber {
    background-image: url(../kamap/images/icon_set_nomad/tool_rubberzoom_1.png);
    background-repeat: no-repeat;
    background-position: left top;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

#toolZoomFull {
    background-image: url(../kamap/images/icon_set_nomad/tool_zoomfull_1.png);
    background-repeat: no-repeat;
    background-position: left top;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

#toolPrint {
	visibility: hidden;
    background-image: url(../kamap/images/icon_set_nomad/tool_print_1.png);
    background-repeat: no-repeat;
    background-position: left top;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

/* übersichtskarte */
#keymap {
    position: absolute;
    right: 0px;
    bottom: 0px;
    padding:0px;
    overflow: hidden;
    filter:alpha(opacity=100);/*trick to prevent IE opacity bug*/
    z-index: 2;
    text-align:right;
    border: 1px solid #999;
}

#keymap div {
    filter:alpha(opacity=100);/*trick to prevent IE opacity bug*/
}

#keymap img {
    filter:alpha(opacity=100);/*trick to prevent IE opacity bug*/
}

#keymapToggler {
    position:absolute;
    right: 0px;
    bottom: 0px;
    z-index: 3;
    width: 14px;
    height: 14px;
    background-image: url(../kamap/images/arrow_right.png);
    background-repeat: no-repeat;
    cursor: pointer;
}

#viewportToggler {
    position:absolute;
    left:0px;
    top: 50%;
    z-index: 3;
    width: 14px;
    height: 14px;
    background-image: url(../kamap/images/arrow_left.png);
    background-repeat: no-repeat;
    cursor: pointer;
}
