/*====================================================
01. CSS Reset
====================================================*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
	
}
body, p {color: #515151;}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

a {
    text-decoration: none;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*====================================================
02. General
====================================================*/
body {
    font-family:Arial; font-size:14px;
    line-height: 1.4;
	/* min-width: 1024px;*/
	min-width: 1024px;
}

p {
    font-size: 16px;
    line-height: 30px;
}

h1, h3 {
    font-size: 24px;
    margin-bottom: 0.8em;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 10px;
    padding-right: 10px;
    width: 1024px;
	
}

/* Helper */

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.form-group:before,
.form-group:after {
    content: " ";
    display: table
}

.clearfix:after,
.container:after,
.form-group:after {
    clear: both
}

/* Grid */

.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-13, .col-lg-14, .col-lg-15 {
    float: left
}

.col-lg-15 {
    width: 100%
}

.col-lg-14 {
    width: 93.33333333%
}

.col-lg-13 {
    width: 86.66666667%
}

.col-lg-12 {
    width: 80%
}

.col-lg-11 {
    width: 73.33333333%
}

.col-lg-10 {
    width: 66.66666667%
}

.col-lg-9 {
    width: 60%
}

.col-lg-8 {
    width: 53.33333333%
}

.col-lg-7 {
    width: 46.66666667%
}

.col-lg-6 {
    width: 40%
}

.col-lg-5 {
    width: 33.33333333%
}

.col-lg-4 {
    width: 26.66666667%
}

.col-lg-3 {
    width: 20%
}

.col-lg-2 {
    width: 13.33333333%
}

.col-lg-1 {
    width: 6.66666667%
}

.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-13,
.col-lg-14,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px
}

/*====================================================
03. Elements
====================================================*/

/* Inputs */

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.form-control {
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0
}

.input-group-addon, .input-group-btn, .input-group .form-control {
    display: table-cell;
}
/* commented 11 Nov 2020
.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0
}
*/
.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px
}
/* commented 11 Nov 2020
.input-group .form-control:first-child, .input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input-group-addon:first-child {
    border-right: 0
}

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.input-group-addon:last-child {
    border-left: 0
}
*/
.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap
}

.input-group-btn > .btn {
    position: relative
}

.input-group-btn > .btn + .btn {
    margin-left: -1px
}

.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
    z-index: 2
}

.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
    margin-right: -1px
}

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px
}

form select {
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    border-radius: 0 !important;
}

.text-large {
    font-size: 24px;
}

.text-center {
    text-align: center;
}

.btn {
    border-radius: 0;
	cursor:pointer;
}

.btn-default {
    background-color: #93c719;
	border:0px;
    color: #ffffff;
    -webkit-transition: all .1s;
    -moz-transition: all .1s;
    -ms-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s;
}

.btn-default:hover {
    background-color: #a4de1b;
    border-color: #a4de1b;
}

.btn-bordered {
    background: transparent;
    border: 1px solid #969696;
    color: #515151;
}

.btn-bordered:hover {
    border-color: #515151;
}

.form-control {
    border-radius: 0;
    box-shadow: none;
    height: 45px;
    border: 0;
}

/* Rating */

.rating {
    width: 98px;
    display: inline-block;
    margin-right: 10px;
    height: 17px;
    position: relative;
    background: url("/img/star-matrix.png") no-repeat 0 0;
}

.my1-0 {
    background-position: 0 -85px;
    width: 17px;
}

.my1-5 {
    background-position: 0 -85px;
    width: 35px;
}

.my2-0 {
    background-position: 0 -85px;
    width: 44px;
}

.my2-5 {
    background-position: 0 -85px;
    width: 53px;
}

.my3-0 {
    background-position: 0 -85px;
    width: 62px;
}

.my3-5 {
    background-position: 0 -85px;
    width: 71px;
}

.my4-0 {
    background-position: 0 -85px;
    width: 80px;
}

.my4-5 {
    background-position: 0 -85px;
    width: 89px;
}

.my5-0 {
    background-position: 0 -85px;
    width: 98px;
}

/* Google Map Popup */

.g-popup {
    width: 240px;
}

.g-popup-img {
    float: left;
}

.g-popup-img img {
    margin: 4px 10px 0 0;
}

.g-popup-info {
    font-family: Helvetica, sans-serif;
    overflow: hidden;
}

.g-popup-info > div.rating {
    margin-bottom: 8px;
}

.g-popup-info .g-popup-text span {
    width: 100px;
    font-size: 15px;
    line-height: 18px;
    display: inline-block;
    text-align: left;
}

.g-popup-info .g-popup-text span:first-child {
    color: #969696;
}

.g-popup-name {
    font-size: 14px;
	font-weight:bold;
}

.g-button {
    margin: 8px 0 6px 0;
}

.g-button .btn {
    padding: 6px 15px;
}

/*====================================================
04. Header
====================================================*/

#header {
    height: 100px;
    background: #ffffff;
	border-bottom:#93c719 4px solid;
	font-family: 'Roboto Condensed', Arial;
}

/* Logo */

#header .logo {
    float: left;
}

#header .logo > a {
    padding-top:20px;
    display: inline-block;
}

#header .logo > a > img {
    border: 0;
    vertical-align: middle;
}

/* Menu */

#header .menu {
    float: right;
	margin-top:32px;
}

#header .menu > li {
    float: left;
    font-size: 18px;
}

#header .menu > li > a {
    padding-right: 24px;
    display: block;
    text-transform: uppercase;
    color: #515151;
    line-height: 40px;
	border:#CCC 0px solid;
}

#header .menu > li:hover > a,
#header .menu > li.active > a {
    color: #93c719;
    text-decoration: none;
}

#header .menu > li.last > a {
	padding-right:0;
}
#header .menu > li.last {
	padding-left:10px;
	padding-right:10px;
	border:#515151 1px solid;
}
#header .menu > li.last:hover {
	border-color: #93c719;
}

#header .menu > li > .sub-menu {
    position: absolute;
    top: 40px;
    white-space:nowrap;
	background: #ffffff;
    z-index: 999;
    margin-left: -20px;
    display: none;
}

#header .menu > li > .sub-last {
	right:0;
}

#header .menu > li.child {
    position: relative;
}

#header .menu > li > a > i {
    margin-left: 4px;
}

#header .menu > li.child:hover .sub-menu {
    display: block;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .5);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .5);
}

#header .menu > li > .sub-menu > li {
    border-bottom: 1px solid #fafafa;
}

#header .menu > li > .sub-menu > li a {
    display: block;
    padding: 0 20px;
    line-height: 36px;
    color: #515151;
}

#header .menu > li > .sub-menu > a li {
    display: block;
    padding: 0 20px;
    line-height: 36px;
    color: #515151;

}
#header .menu > li > .sub-menu > a li:hover {
    background: #eeeeee
}

#header .menu > li > .sub-menu > li:hover {
    background: #eeeeee
}

#header .menu > li > .sub-menu > li:hover a {
    text-decoration: none;
}

/* Profile */

#header .profile {
    float: right;
    padding: 27px 0;
}

#header .profile .logged-in {
    float: left;
    margin-left: 15px;
}

#header .profile p {
    text-align: right;
    line-height: 24px;
}

#header .profile p > i {
    color: #93C719;
    /*display: none;*/
}


/*====================================================
05. Reservation
====================================================*/

#reservation {
    height: 650px;
	background-color:#999; 
    /* background: url(/img/homepage/reservation.jpg) center no-repeat fixed; */
    -webkit-background-size: cover;
    background-size: cover;
    padding: 50px 0;
}

#reservation .form-reservation {
    background: rgba(54, 54, 54, 0.9);
    /*height: 440px;*/
    width: 540px;
    padding: 30px 40px;
    margin: 50px 0 0 0;
}

#reservation .form-reservation h1, #reservation .form-reservation h3 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.7em;
    line-height: 48px;
}

#reservation .form-reservation .form-control {
    font-size: 16px;
    padding-left: 15px;
    cursor: pointer;
}

#reservation .form-reservation .form-control:focus {
    outline: none;
    box-shadow: none;
}

#reservation .form-reservation .form-control::-webkit-input-placeholder {
    color: #515151;
}

#reservation .form-reservation .form-control::-moz-placeholder {
    color: #515151;
}

#reservation .form-reservation .form-control::-ms-input-placeholder {
    color: #515151;
}

#reservation .form-reservation .form-control::placeholder {
    color: #515151;
}

#reservation .form-reservation .form-group {
    margin: 0 0 20px 0;
}

#reservation .form-reservation .input-group-left {
    float: left;
    width: 280px;
}

#reservation .form-reservation .input-group-right {
    float: right;
    width: 160px;
}

#reservation .form-reservation .input-group {
    width: 100%;
}

#reservation .form-reservation .input-group-addon {
    width: 100px;
    height: 45px;
    padding: 10px 12px;
    box-sizing: border-box;
    background: #eaeaea;
    color: #515151;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    text-align: left;
    font-size: 16px;
}

#reservation .form-reservation .input-group-addon-small {
    padding: 10px;
    width: 45px;
}

#reservation .form-reservation .input-group-addon > i {
    height: 25px;
    width: 20px;
    vertical-align: middle;
    display: inline-block;
    margin-right: 10px;
}

#reservation .form-reservation .input-group-addon > i.airplane-icon {
    background: url("/img/airplane.png") 50% 50% no-repeat;
}

#reservation .form-reservation .input-group-addon > i.calendar-icon {
    background: url("/img/calendar.png") 50% 50% no-repeat;
}

#reservation .form-reservation .input-group-addon-small {
    width: 45px;
}

#reservation .form-reservation .input-group-addon-small > i {
    height: 25px;
    width: 25px;
    display: block;
    margin-right: 0;
}

#reservation .form-reservation .input-group-addon-small > i.clock-icon {
    background: url("/img/clock.png") 50% 50% no-repeat;
}

#reservation .promo_form {
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    padding: 5px 0;
}

#reservation .promo_form .pr, .pr i {
    color: #93c719;
    cursor: pointer;
}

#reservation .promo_form .promo_line {
    display: block;
	color: #eee;
}

#reservation .promo_form .promo_line .pr {
    margin-left: 10px;
}

#reservation .promo_form .promo_text {
    display: none;
}

#reservation .promo_form.active .promo_text {
    display: block;
}

#reservation .promo_form.active .promo_line {
    display: none;
}

#reservation .promo_form.active .promo_text .input-group-addon {
    padding: 10px 0 10px 10px;
}

#reservation .promo_form.active .promo_text .btn-set {
    height: 45px;
    font-size: 16px;
}

#reservation .promo_form.active .promo_text .pr {
    width: 100%;
    line-height: 45px;
    font-size: 16px;
}

#reservation .promo_form .promo_text .form-control {
    display: inline-block;
}

#reservation .btn-submit {
    text-transform: uppercase;
    font-size: 18px;
    border: 0;
    height: 50px;
    width: 280px;
    font-weight: bold;
    letter-spacing: 2px;
    outline: none;
}

/* Features */

#reservation .features {
    margin: 50px 0 60px 50px;
    padding: 30px 0;
}

#reservation .features h3 {
    color: #ffffff;
    line-height: 48px;
}

#reservation .features-list {
    font-size: 0;
}

#reservation .features-list > li {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    font-size: 24px;
    line-height: 28px;
    color: #ffffff;
    margin-bottom: 45px;
}

#reservation .features-list > li > i {
    height: 60px;
    width: 80px;
    display: block;
    float: left;
}

#reservation .features-list > li > i.timer-icon {
    background: url("/img/timer.png") no-repeat;
}

#reservation .features-list > li > i.secure-icon {
    background: url("/img/secure.png") no-repeat;
}

#reservation .features-list > li > i.spot-icon {
    background: url("/img/spot.png") no-repeat;
}

#reservation .features-list > li > i.video-icon {
    background: url("/img/video.png") no-repeat;
}

#reservation .features-list > li > i.cancel-icon {
    background: url("/img/cancel.png") no-repeat;
}

#reservation .features-list > li > i.discount-icon {
    background: url("/img/discount.png") no-repeat;
}

/*====================================================
06. Recommended
====================================================*/

#recommended {
    padding: 50px 0 0px 0;
}

#recommended .btn-view {
    float: right;
    font-size: 18px;
    padding: 6px 12px;
}

#recommended .btn-view:hover {
    text-decoration: none;
}

/* Recommended List*/

#recommended .recommended-list {
    width: 480px;
    /*width: 44%;*/
    height: 600px;
    float: left;
    border: 1px solid #ededed;
}

#recommended .recommended-list > li {
    height: 120px;
    border-bottom: 1px solid #ededed;
    padding: 25px 20px;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    -ms-transition: all .35s;
    -o-transition: all .35s;
    transition: all .35s;
}

#recommended .recommended-list > li:hover {
    background: #eeeeee;
}

#recommended .recommended-list > li:last-child {
    border-bottom: 0;
}

#recommended .recommended-list > li > .parking-img {
    float: left;
    margin-right: 20px;
}

#recommended .recommended-list > li > .parking-info {
    position: relative;
    overflow: hidden;
}

#recommended .recommended-list > li > .parking-info p a {
    color: #515151;
}

#recommended .recommended-list > li > .parking-info p.parking-type {
    color: #969696;
}

#recommended .recommended-list > li > .parking-info p.parking-type {
    color: #969696;
}

#recommended .recommended-list > li > .parking-info .parking-rating {
    padding-top: 10px;
}

#recommended .recommended-list > li > .parking-info .parking-rating p {
    display: inline-block;
}

#recommended .recommended-list > li > .parking-info .parking-rating-number span {
    color: #969696;
}

#recommended .recommended-list > li > .parking-info .parking-rating-number:after {
    content: "|";
    padding-left: 10px;
}

#recommended .recommended-list > li > .parking-info .parking-reviews {
    padding-left: 5px;
}

#recommended .recommended-list > li > .parking-info .price {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
}

/* Map */

#recommended .map {
    float: right;
    position: relative;
    height: 600px;
    width: 680px;
    /*width: 56%;*/
    overflow: hidden;
}

/*====================================================
07. Service
====================================================*/

#service {
    height: 650px;
    /*background: url(../img/service.jpg) center no-repeat fixed;*/
    -webkit-background-size: cover;
    background-size: cover;
    padding: 50px 0;
}

#service h3 {
    color: #ffffff;
    font-weight: normal;
}

#service ul {
    font-size: 0;
}

#service ul > li {
    display: inline-block;
    width: 25%;
    color: #ffffff;
    font-size: 16px;
    line-height: 40px;
}

/*====================================================
08. Intro
====================================================*/

#intro {
    padding: 50px 0 80px 0;
}

/*====================================================
09. Partners
====================================================*/

#partners {
    background: #f6f6f6;
    padding: 40px 0;
}

#partners .partners-list {
    margin: 0 -10px;
    font-size: 0;
}

#partners .partners-list > li {
    width: 16.666667%;
    display: inline-block;
    padding: 0 10px;
    vertical-align: middle;
}

/*====================================================
10. Footer
====================================================*/

#footer {
    background-color: #515151;
    color: #ffffff;
}
#footer p {color: #ffffff;}

/* Subscribe */

#footer .subscribe {
    padding: 50px 0;
}

#footer .subscribe p {
    line-height: 45px;
}

#footer .subscribe-form .form-control {
    background: #747474;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    height: 45px;
    color: #ffffff
}

#footer .subscribe-form .form-group {
    margin-bottom: 0;
}

#footer .subscribe-form .form-control::-webkit-input-placeholder {
    color: #ffffff;
}

#footer .subscribe-form .form-control::-moz-placeholder {
    color: #ffffff;
}

#footer .subscribe-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

#footer .subscribe-form .form-control::placeholder {
    color: #ffffff;
}

#footer .subscribe-form .btn-subscribe {
    background: #747474;
    height: 45px;
    padding: 0;
    border: 0;
    margin-left: 0;
    outline: none;
}

#footer .subscribe-form .btn-subscribe i.paper-plane-icon {
    display: block;
    height: 45px;
    width: 45px;
    background: url("/img/icons/paper-plane.png") 50% 50% no-repeat;
}

/* Social */

#footer .social {
    float: right;
}

#footer .social li {
    display: inline-block;
}

#footer .social li > a {
    width: 45px;
    height: 45px;
    display: block;
}

#footer .social li > a.fb {
    background: #93c719 url("/img/facebook.png") 50% 50% no-repeat;
}

#footer .social li > a:hover {
    background-color: #9bd21a;
}

#footer .social-label {
    font-size: 24px;
    float: right;
    line-height: 45px;
    margin-right: 40px;
}

/* Copyright & Menu */

#myfooter .bottom-line {
    background-color:#eee;
    padding-top: 10px;
}

#myfooter .menu {
    list-style: none;
    text-align: center;
    margin: 0 -14px;
}

#myfooter .menu > li {
    display: inline-block;
}

#myfooter .menu > li > a {
    padding: 5px 14px;
    display: block;
    color: #666;
}

#footer .bottom-line {
	background-color:#eee;
    border-top: 1px solid #636363;
    padding: 35px 0;
}

#footer .copyright {
    color: #acacac;
}

#footer .menu {
    list-style: none;
    text-align: center;
    margin: 0 -14px;
}

#footer .menu > li {
    display: inline-block;
}

#footer .menu > li > a {
    padding: 5px 14px;
    display: block;
    color: #ffffff;
}

/* Custom Select */

.select-block {
    position: relative;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #ffffff;
}

.error .select-block {
    background: #ffe1c7;
}

.select-block span.caret {
    position: absolute;
    right: 0;
    display: block;
    top: 0;
    width: 30px;
    height: 45px;
    background: url("/img/caret.png") no-repeat 0% 50%;
}

.select-block select,
.error .select-block select{
    border: none;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select-block select:focus {
    outline: none;
}

/* Validate */

.error .form-control {
    background: #ffe1c7;
}

.form-group .error label.notify {
    position: absolute;
    background: #ff7a5c;
    top: -30px;
    min-width: 240px;
    z-index: 2;
    left: 110px;
    padding: 10px;
    color: #ffffff;
    border-radius: 3px;
}

.form-group .error label.notify:after {
    position: absolute;
    content: "";
    bottom: -9px;
    left: 20px;
    height: 0;
    border-style: solid;
    border-width: 9px 9px 0 0;
    border-color: #ff7a5c transparent transparent transparent;
}

/* Design transition styles */
/* find.php */
.mySelect {
	height:28px;font-size:14px;border: 1px solid #999;background-color:#fff;color:#333;padding:2px 6px 2px 6px;-webkit-appearance:none;-moz-appearance:none;appearance:none;
}
.knopka {
	
    padding:6px 16px 6px 16px;
	background-color:#8cb82b;
	border:0px;
	border-radius:2px;
	color:#ffffff;
	cursor: pointer;
	text-decoration:none;
	text-align:center;
}
.knopka:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #8cb82b), color-stop(1, #93c719) );
	background:-moz-linear-gradient( center top, #8cb82b 5%, #93c719 100% );
}

.mylink, .mylink:visited {color:#e3801c;cursor:pointer;}
.mylink:hover {text-decoration:underline;}
.lnk1 {margin-bottom:4px;}
.lnk1:hover {cursor:pointer; color:#e3801c;}
.lnk3 {float:right; padding:0px 2px 0px 2px; font-size:14px;}

.verh {background-color: #dddddd; }
.ser {background-color: #F5F4EF; }
.bel {background-color: #ffffff; }
.bold-rate {color:#9bb300;font-weight:bold;}
.verh, .ser, .bel {padding:8px 4px 8px 4px; text-align:center; color:#666; font-size:0.85em; line-height:120%; border:#ccc 1px solid; vertical-align:middle; white-space:nowrap;}
.det .my_but {color:#666; }
.det_h .my_but {color:#e3801c; }

.my_but {
	float:left; min-width:66px; margin-right:4px; padding: 3px 2px 3px 2px; text-align:center; font-size: 12px; color:#9bb300; cursor: pointer; border: 1px solid #999; -webkit-border-radius: 2px;-moz-border-radius: 2px;border-radius: 2px;
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#eeeeee)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ffffff 0%,#eeeeee 100%); /* Chrome10+,Safari5.1+ */
	background: -ms-linear-gradient(top, #ffffff 0%,#eeeeee 100%); /* IE10+ */
	background: linear-gradient(to bottom, #ffffff 0%,#eeeeee 100%); /* W3C */
	line-height:120%;
}
.my_but:hover { color:#9bb300; text-decoration:underline; 
	background: #eeeeee; /* Old browsers */
	background: -moz-linear-gradient(top, #eeeeee 0%, #ffffff 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #eeeeee 0%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
	background: -ms-linear-gradient(top, #eeeeee 0%,#ffffff 100%); /* IE10+ */
	background: linear-gradient(to bottom, #eeeeee 0%,#ffffff 100%); /* W3C */
}

.park-right { float:right; text-align:center; margin-bottom:6px; padding:0; min-width:170px; border-left:0px #CCC solid; }
.park-right table td {padding-top:2px; padding-bottom:2px;}
.lot-name { font-size:22px; cursor:pointer;}
.lot-name:hover { text-decoration:underline;}