/* tagname.css */

body {
	color: black;
	background-color: white;
}

input {
	font-size: 180%;
}

h1, h2 {
	text-align: center;
}

div#result {
	font-size: 100%;
}

form {
	text-align: center;
}

div#intro {
	text-align: center;
}

div#footer {
	font-size: small;
}

div#time {
	font-size: small;
}

/* result table */
table { 
   width: 100%;
};

tr > th:nth-child(1) {
   width: 50%;
}

tr > td:nth-child(1) {
   width: 50%;
   text-align: right;
   padding-right: 1em;
}


input#search_main {
    text-align: center;
}

hr {
    background-color: #000;
    border: 0 none;
    color: #000;
    height: 2px;
}

a {
    color: green;
    text-decoration: none
}

select {
    margin-bottom: 4px;
}

div#map {
    margin-bottom: 2px;
}

.ac_conteiner {
	border: 1px solid #abadb3;
	height: 24px;
	// font-size dependent!;
}

tr:hover {
    background-color: #ccc;
}

/* 
 * bbbike autocomplete 
 * 
*/
.ac_input_XXX {
	text-indent: 2px;
	font-size: 1em;
	font-family: sans-serif;
	float: left;
	padding: 1px;
	border: 0 !important;
	height: 20px;
	// font-size dependent!
	margin: 1px;
}

.ac_img {
	width: 18px;
	background: url('select.gif') no-repeat center;
	height: 100%;
	float: right;
	cursor: pointer;
	vertical-align: center;
}

.ac_results {
	border: 1px solid gray;
	background-color: white;
	padding: 0;
	margin: 0;
	list-style: none;
	position: absolute;
	z-index: 10000;
	display: none;
	overflow-x: hidden;
	overflow-y: auto;
	height: 100px;
	margin-left: -1px !important;
 /*all*/
	_margin-left: -3px !important;
 /*ie8*/
	_margin-left: -1px;
            /*ie6*/
	_margin-top: -1px !important;
 /*ieX*/;
}

.ac_results div {
	font-size: 1em;
	font-family: sans-serif;
	padding-left: 2px;
	white-space: nowrap;
}

.ac_over {
	cursor: pointer;
	background-color: #3399ff;
	color: #fff;
}

.ac_match {
	text-decoration: underline;
	color: inherit;
	margin: 0;
	padding: 0;
}

html:first-child .ac_results {
/* opera <9.5 does not support css3 property overflow-y */
	overflow: auto;
}
/* 
 * devbridge-jquery-autocomplete-1.1.2/styles.css 
 * 
*/

.autocomplete-w1 {
	background: url(/images/devbridge-jquery-autocomplete-1.1.2/shadow.png) no-repeat bottom right;
	position: absolute;
	top: 0px;
	left: 0px;
	margin: 8px 0 0 6px;
 /* IE6 fix: */
	_background: none;
	_margin: 0;
}

.autocomplete {
	border: 1px solid #999;
	background: #FFF;
	cursor: default;
	text-align: left;
	max-height: 750px;
	max-width: 750px;
	// max-height: 350px;
	overflow: auto;
	margin: -6px 6px 6px -6px;

 /* IE6 specific: 
	_height: 350px;
	_margin: 0;
	_overflow-x: hidden;
*/
}

.autocomplete .selected {
	background: #F0F0F0;
}

.autocomplete div {
	padding: 2px 5px;
	white-space: nowrap;
}

.autocomplete strong {
	font-weight: normal;
	color: #3399FF;
}


