/*
This file is part of Wegwijzerkaart
Copyright (C) 2016 Jasper Vries

Wegwijzerkaart is free software: you can redistribute it and/or 
modify it under the terms of version 3 of the GNU General Public 
License as published by the Free Software Foundation.

Wegwijzerkaart is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Wegwijzerkaart. If not, see <http://www.gnu.org/licenses/>.
*/
html, body {
	font-family: Verdana, Helvetica, sans-serif;
	font-size: small;
	color: #000;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
div.map-canvas {
	min-height: 100%;
	width: 100%;
}
div#navigation {
	position: fixed;
	top: 0;
	right: 0;
}
div#content {
	display: block;
	text-align: left;
	margin: auto;
	width: 900px;
	padding: 48px 24px;
	background: #FFF;
}
h1 {
	color: #0b4285;
	font-size: large;	
}
h2 {
	color: #0b4285;
	font-size: medium;	
}
p, ol {
	max-width: 900px;	
}
a, ul.toolbartab li span {
	color: #3989c3;
	text-decoration: underline;
	cursor: pointer;
}
a:hover, ul.toolbartab li span:hover {
	color: #9ac61e;
}
table {
	text-align: left;
	border-collapse: collapse;	
	font-size: small;
	background-color: #FFF;
	margin: 4px 0;
}
th {
	font-weight: bold;
	border: 1px solid #999;
	border-width: 0 0 3px 0;
	text-align: left;
	padding: 1px 4px;
}
td {
	border: 1px solid #CCC;	
	padding: 1px 4px;
}
tr.bold td {
	font-weight: bold;
}
table.noborder td {
	border: none;
}
table.noborder td:first-child {
	padding-left: 0;
}
td.highlight {
	background-color: #FF3;
}

legend {
	font-weight: bold;
}
blockquote {
	margin-left: 40px;
	padding-left: 0;	
}

input[type=text] {
	background-color: #EEE;
	border: solid #666;
	border-width: 0 1px 1px 1px;
	border-radius: 0 0 4px 4px;
	padding: 2px;
}
input#searchbox {
	width: 200px;
	border: none;
}

fieldset {
	border: 1px solid #999;
	border-radius: 5px;
	margin: 8px 0;
}
label.disabled {
	color: #999;
}

ul.toolbartab {
    margin-top: -6px;
    margin-left: -20px;
}

ul.toolbartab li {
    display: block;
	float: left;
}
ul.toolbartab li a, ul.toolbartab li span {
    display: block;
    border: 1px solid #CCC;
	border-radius: 4px;
	background-color: #FFF;
	margin: 2px;
	padding: 4px;	
	cursor: pointer;
}
#li-autozoom {
		padding: 4px;
}

ul.toolbartab li span.searchbox {
	padding: 2px;
}
ul.toolbartab li.button {
	border-color: #333;
	background: linear-gradient(to bottom, #CCC, #999);
	cursor: pointer;	
}
ul.toolbartab li.button:hover {
	border-color: #666;
	background: linear-gradient(to bottom, #FFF, #CCC);
}

#dialog tr:hover {
	background-color: #9ac61e;
}

.error {
	padding: 16px;
	border: 1px solid #900;
	background-color: #FCC;
	border-radius: 5px;	
}
.warning {
	padding: 16px;
	border: 1px solid #FC0;
	background-color: #FF9;
	border-radius: 5px;	
}
div#zoomwarning {
	position: absolute;
	top: 10%;
	left: 30%;
	width: 33%;
	z-index: 1;
	text-align: center;
}

/* wegwijzernummers in venster kruispuntschets */
span.ww-nr-dialog {
	display: inline-block;
	border: 1px solid #666;
	padding: 1px 2px;
	margin: 2px;
}
span.ww-nr-dialog:hover, span.kp-nr-dialog:hover {
	background-color: #CCC;
	cursor: pointer;
}
span.ww-type-auto {
	border-color: #00C;
}
span.ww-type-fiets {
	border-color: #C00;
}
span.ww-type-voet {
	border-color: #960;
}

/*map related*/
.markerlabel {
	font-size: x-small;
	color: #000;
	text-align: left;
	white-space: nowrap;
	font-weight: bold;
	text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff;  
}

/*jquery ui*/
.ui-widget {
    font-size: small;
}
.ui-autocomplete-category {
    font-weight: bold;
    padding: .2em .4em;
    margin: .8em 0 .2em;
    line-height: 1.5;
}
.ui-autocomplete {
	max-height: 90%;
	overflow-y: auto;
	/* prevent horizontal scrollbar */
	overflow-x: hidden;
}
ul.ui-autocomplete li.notfound {
	color: #C00;
}

/* specifiek voor afdrukken */
@media print {
	.noprint {
		display: none;
	}
	div#content {
		padding: 0;
	}
	a {
		color: #000;
		text-decoration: none;
	}
	div.gm-style-cc {
		display: none !important;
	}
}