/*====================================================
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,
b, 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, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

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: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    background: #fffef8 url("/img1/body.jpg") 50% 100% no-repeat;
    background-size: 100%;
}

p {
    font-size: 15px;
    line-height: 22px;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
    font-weight: bold;
}

* {
    -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: 1060px;
}

/* Elements */

/* button */

.btn {
	border: 0;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	padding: 10px 15px;
	box-shadow: 0 0 3px rgba(0,0,0,0.2);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	outline: none;
	cursor: pointer;
}

.btn:focus {
	outline: none;
}

.btn-block {
	display: block;
	width: 100%;
}

.btn-orange {
	background: #f99b06;
	color: #ffffff;
}

.btn-orange:hover {
	background: #FFAA23;
}

.btn-purple {
	background: #f9067e;
	color: #ffffff;
}

.btn-purple:hover {
	background: #FF1086;
}

.btn-green {
	background: #d3f542;
	color: #2e3c01;
}

.btn-green:hover {
	background: #B1EA00
}

.btn-blue {
	background: #2ed4e2;
	color: #023446;
}

.btn-blue:hover {
	background: #25DFEF;
}

.btn-all {
	background: #97c704;
	color: #000000;
}

.btn-all:hover {
	background: #B1EA00;
}


/* label */

label {
	display: block;
	font-size: 15px;
	margin-bottom: 5px;
}

/* input */

.form-control {
	width: 100%;
	background: #fbfafb;
	border: 1px solid #dfdede;
	height: 40px;
	padding: 0 15px;
	font-size: 14px;
	outline: none;
}

/* form */

.form-group {
	margin-bottom: 15px;
}

.form-group-left {
	position: relative;
	padding-right: 10px;
	width: 50%;
	float: left;
	box-sizing: border-box;
}

.form-group-right {
	position: relative;
	padding-left: 10px;
	width: 50%;
	float: right;
	box-sizing: border-box;
}

/* Inputs */

.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;
}

.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 8px;
	height: 40px;
    text-align: center;
    background-color: #dfdede;
    border-radius: 0;
}

.input-group-addon:first-child {
    border-right: 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
}

/* Custom Select */

.select-block {
    position: relative;
    padding: 0;
    margin: 0;
    overflow: hidden;
	background: #FBFAFB;
    border: 1px solid #DFDEDE;
    height: 40px;
}

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

.select-block span.caret {
    position: absolute;
    right: 0;
    display: block;
    top: 0;
    width: 30px;
    height: 40px;
    background: url("/img1/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;
    line-height: 38px;
    height: 40px;
}

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




/*====================================================
03. 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
}

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

#header {
	position: relative;
	background: #ededec;
	padding: 18px 0;
	height: 120px;
	box-sizing: border-box;
	border-bottom: 1px solid #4a95e6;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
}

/* Logo */

#header .logo {
    float: left;
}

#header .logo > a {
    display: inline-block;
}

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

/* Menu */

#header .menu {
    float: right;
}

#header .menu > li {
    float: left;
}

#header .menu > li > a {
    padding-left: 30px;
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    color: #515151;
    line-height: 78px;
}

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

#header .menu > li > .sub-menu {
    position: absolute;
    top: 100px;
    min-width: 220px;
    background: #ffffff;
    z-index: 999;
    margin-left: -20px;
    display: none;
}

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

#header .menu > li.child > a:after {
    font-family: "fontello", sans-serif;
    content: "\e80b";
    margin-left: 6px;

}

#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 > li:hover {
    background: #eeeeee
}

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

/*====================================================
05. Carousel
====================================================*/

#carousel {
	position: relative;
	margin-bottom: 310px;
}

#carousel .carousel-item {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	/*z-index: 0;*/
	opacity: 0;
	-webkit-transition: all 3s;
	-moz-transition: all 3s;
	-ms-transition: all 3s;
	-o-transition: all 3s;
	transition: all 3s;
}

#carousel .carousel-item.active {
	/*z-index: 1;*/
	opacity: 1;
}

#carousel .carousel-item > img {
	width: 100%;
}

#carousel .carousel-item .carousel-item-info {
	position: absolute;
	top: 100px;
	width: 100%;
}

#carousel .carousel-item .carousel-item-info .text {
	font-size: 36px;
	text-transform: uppercase;
	font-weight: 300;
	line-height: 54px;
	color: #4f4f50;
	text-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

#carousel .carousel-item .carousel-item-info .text-white {
	color: #ffffff;
}

#carousel .carousel-item .carousel-item-info .text .text-large {
	font-size: 54px;
	font-weight: 800;
	letter-spacing: 1px;
}

/*====================================================
06. Content
====================================================*/

#page {
	position: relative;
	z-index: 1;
}

.content {
	width: 728px;
	float: left;
}

/* Schedule */

.air-schedule {
	background: #ffffff;
	margin-bottom: 20px;
	padding: 7px;
	border: 1px solid #b2b2b1;
}

.air-schedule .nav-tabs {
	font-size: 0
}

.air-schedule .nav-tabs > li {
	display: inline-block;
	margin-right: 7px;
}

.air-schedule .nav-tabs > li > a {
	display: block;
	background: #e4e1e1;
	height: 54px;
	line-height: 54px;
	padding: 0 25px;
	font-size: 20px;
	font-weight: bold;
	text-transform: uppercase;
	color: #cccccc;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.air-schedule .nav-tabs > li > a:hover {
	background: #dddddd;
}

.air-schedule .nav-tabs > li > a > .icon-a {
	width: 33px;
	height: 40px;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
	background: url("/img1/a_icon.png") 0% 20% no-repeat;
}

.air-schedule .nav-tabs > li.active > a > .icon-a {
	background: url("/img1/a_icon_active.png") 0% 20% no-repeat;
}

.air-schedule .nav-tabs > li > a > .icon-d {
	width: 40px;
	height: 40px;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
	background: url("/img1/d_icon.png") 0% 40% no-repeat;
}

.air-schedule .nav-tabs > li.active > a > .icon-d {
	background: url("/img1/d_icon_active.png") 0% 40% no-repeat;
}

.air-schedule .nav-tabs > li.active > a{
	background: #62a5ee;
	color: #ffffff;
}

.air-schedule .tab-pane {
	display: none;
}

.air-schedule .tab-pane.active {
	display: block;
}

.air-schedule table {
	width: 100%;
	text-align: left;
	margin: 10px 0;
}

.air-schedule table tr > th,
.air-schedule table tr > td {
	line-height: 36px;
	padding: 0 14px;
}

.air-schedule table tr > th {
	color: #4a95e6;
	font-weight: bold;
}

.air-schedule table tr > td {
	text-transform: uppercase;
}

.air-schedule table tr > td:last-child {
	width: 150px;
}

.air-schedule table tr:nth-child(2n+2) > td {
	background: #fbfafb;
}

.air-schedule table tr.landed td:last-child {
	color: #a5d306;
}

.air-schedule table tr.departed td:last-child {
	color: #62A5EE;
}

.air-schedule table tr.delayed td {
	color: #fd0000;
}

.air-schedule .btn {
	display: block;
	color: #ffffff;;
	background: #b3b2b2;
	padding: 10px 25px;
	font-size: 15px;
	text-align: center;
}

.air-schedule .btn:hover {
	background: #aaaaaa;
}

/* Banner */

.content .banner {
	margin-bottom: 20px;
}

/* Find Your Flight */

.find-flight {
	position: relative;
	background: #d0f42a url("/img1/flight-bg.png") 0 20px no-repeat;
	height: 400px;
	margin-bottom: 20px;
	color: #303e02;
}

.find-flight .left-block {
	float: left;
	width: 355px;
	padding: 120px 20px 20px;
	box-sizing: border-box;
}

.find-flight .left-block p {
	font-size: 20px;
	line-height: 30px;
	font-weight: bold;
	padding: 0 5px;
}

.find-flight .left-block ul {
	margin-top: 25px;
	padding-left: 30px;
}

.find-flight .left-block ul li {
	list-style: disc;
	font-size: 15px;
	line-height: 22px;
	font-weight: bold;
}

.find-flight .right-block {
	float: right;
	width: 373px;
}

.find-flight .right-block h3 {
	font-size: 20px;
	line-height: 60px;
	background: url("/img1/find-icon.png") 0 50% no-repeat;
	padding-left: 40px; 
	text-transform: uppercase;
}

.find-flight .right-block .form {
	height: 340px;
	width: 100%;
	padding: 20px;
	background: #ffffff;
}

.find-flight .right-block .form .radio {
	display: inline-block;
	margin-bottom: 0;
}


.find-flight .right-block .form .radio {
	position: relative;
	padding: 0 10px 0 22px;
	line-height: 16px;
	color: #4a95e6;
}

.find-flight .right-block .form input[type="radio"]{
    display: none;
    margin: 0;
}

.find-flight .right-block .form input[type="radio"] + label::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    text-align: center;
    background: url("/img1/radio.png") 0 -16px no-repeat;
}

.find-flight .right-block .form input[type="radio"]:checked + label::before{
    background: url("/img1/radio.png") 0 0 no-repeat;
}


/* Reserv Your Parking Spot */

.reserve-spot {
	position: relative;
	background: #2ed4e2 url("/img1/reserve-bg.png") 0 20px no-repeat;
	height: 400px;
	margin-bottom: 20px;
	color: #023446;
}

.reserve-spot .left-block {
	float: left;
	width: 355px;
	padding: 120px 20px 20px;
	box-sizing: border-box;
}

.reserve-spot .left-block p {
	font-size: 20px;
	line-height: 30px;
	font-weight: bold;
	padding: 0 5px;
}

.reserve-spot .left-block ul {
	margin-top: 25px;
	padding-left: 30px;
}

.reserve-spot .left-block ul li {
	list-style: disc;
	font-size: 15px;
	line-height: 22px;
	font-weight: bold;
}

.reserve-spot .right-block {
	float: right;
	width: 373px;
}

.reserve-spot .right-block h3 {
	font-size: 20px;
	line-height: 60px;
	background: url("/img1/parking-icon.png") 0 50% no-repeat;
	padding-left: 40px; 
	text-transform: uppercase;
}

.reserve-spot .right-block .form {
	height: 340px;
	width: 100%;
	padding: 35px 20px 20px;
	background: #ffffff;
}

.reserve-spot .right-block .promo_form {
	height: 80px;
}

.reserve-spot .right-block .promo_form .promo_line {
	text-align: center;
	padding-top: 15px;
}

.reserve-spot .right-block .promo_form .promo_line p{
	font-size: 17px;
	line-height: 22px;
}

.reserve-spot .right-block .promo_form .pr {
	cursor: pointer
}

.reserve-spot .right-block .promo_form .promo_line,
.reserve-spot .right-block .promo_form.active .promo_text {
    display: block;
}

.reserve-spot .right-block .promo_form .promo_text,
.reserve-spot .right-block .promo_form.active .promo_line {
    display: none;
}

.reserve-spot .right-block .promo_form .promo_text {
	position: relative;
}

.reserve-spot .right-block .promo_form .promo_text .pr{
	position: absolute;
	right: 0;
	top: 0;
	line-height: inherit;
}

.reserve-spot .right-block .input-group-addon > i {
    height: 20px;
    width: 20px;
    vertical-align: middle;
    display: inline-block;
}

.reserve-spot .right-block .input-group-addon > i.calendar-icon {
    background: url("/img1/calendar.png") 50% 50% no-repeat;
    background-size: 85%;
}

.reserve-spot .right-block .input-group-addon > i.clock-icon {
    background: url("/img1/clock.png") 50% 50% no-repeat;
    background-size: 85%;
}

/* Airport Competition & Day Tip */

.air-competition,
.day-tip  {
	position: relative;
	display: block;
	width: 355px;
	height: 400px;
	padding: 15px;
	box-sizing: border-box;
	margin-bottom: 20px;
}

.air-competition {
	float: left;
	background: #f9067e url("/img1/air-competition.png") 50% 100% no-repeat;
	background-size: 100%;
}

.day-tip {
	float: right;
	background: #f99b06 url("/img1/day-tip.png") 50% 100% no-repeat;
	background-size: 100%;
}

.air-competition h4,
.day-tip h4 {
	font-size: 19px;
	font-weight: bold;
	text-transform: uppercase;
	color: #ffffff;
	margin: 10px 0 50px 0;
}

.air-competition .btn-group,
.day-tip .btn-group {
	position: absolute;
	bottom: 0;
    left: 0;
    padding: 15px;
    width: 100%;
}

.air-competition .text {
	color: #ffffff;
	font-size: 15px;
	line-height: 25px;
}

.day-tip .text {
	color: #023446;
	font-size: 15px;
	line-height: 25px;
}

.air-competition p.large-text {
	font-size: 20px;
	line-height: 30px;
	font-weight: bold;
}

/*====================================================
07. Sidebar
====================================================*/

.sidebar {
	width: 300px;
	float: right;
}

.sidebar .banner {
	margin-bottom: 20px;
}

/* Live LAX Feed */

.sidebar .livefeed {
	background: #ffffff;
	margin-bottom: 20px;
	padding: 7px;
	border: 1px solid #b2b2b1;
}

.sidebar .livefeed > h4 {
	font-size: 20px;
	padding: 10px;
	color: #a34e9f;
	background: url("/img1/feed-icon.png") 10px 50% no-repeat;
	padding-left: 40px;
	text-transform: uppercase;
}

.sidebar .livefeed .feed > li {
	padding: 9px 11px;
	font-size: 14px;
}

.sidebar .livefeed .feed > li:nth-child(2n+2){
	background: #fbfafb;
}

.sidebar .livefeed .feed > li > .item-title {
	color: #4a95e6;
}

.sidebar .livefeed .feed-update {
	color: #d0f42a;
	padding: 10px;
}

/*====================================================
08. Air Ranking
====================================================*/

.ranking-block {
	position: relative;
	margin-bottom: 15px;
	background: #2e2e2e;
}

.ranking-block h3 {
	font-size: 19px;
	background: #44b1f6;
	color: #ffffff;
	text-transform: uppercase;
	padding: 20px;
}

.ranking-block .ranking-table {
	padding: 20px 10px;
	font-size: 0;
	-webkit-column
}

.ranking-block .ranking-table > li {
	width: 33.333333%;
	display: inline-block;
	line-height: 16px;
	font-size: 15px;
	padding: 8px;
	color: #ffffff;
}

.ranking-block .ranking-table > li:nth-child(6n+1),
.ranking-block .ranking-table > li:nth-child(6n+2),
.ranking-block .ranking-table > li:nth-child(6n+3) {
	background: #252525;
}

.ranking-block .ranking-table > li span {
	display: inline-block;
}

.ranking-block .ranking-table > li .rank-title {
	width: 155px;
}

.ranking-block .ranking-table > li .rank-progress {
	position: relative;
	height: 9px;
	width: 80px;
	display: inline-block;
	background: #000000;
}

.ranking-block .ranking-table > li .rank-progress i {
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 9px;
	display: block;
	background: #97c704;
}

.ranking-block .ranking-table > li .rank-value {
	width: 32px;
    text-align: center;
}

.ranking-block .ranking-table > li .rank-details {
	width: 45px;
}

.ranking-block .ranking-table > li .rank-details > a {
	color: #44b1f6;
}

.ranking-block .btn {
	position: absolute;
	padding: 7px 20px;
	right: 10px;
	bottom: 20px;
	width: 330px;
	box-shadow: 0 0 10px rgba(0,0,0,0.4);
}


/*====================================================
09. Sitemap
====================================================*/

.sitemap-block {
	background: rgba(0,0,0,0.63);
	padding: 0 15px;
	margin-bottom: 15px;
}

.sitemap-block > h4 {
	font-size: 15px;
	text-transform: uppercase;
	color: #ffffff;
	line-height: 70px;
	text-align: center;
	border-bottom: 1px solid #999999;
}

.sitemap-block > .links {
	font-size: 0;
	padding: 50px 0;
}

.sitemap-block > .links > li {
	width: 16.6666667%;
	display: inline-block;
}

.sitemap-block > .links > li > a {
	color: #ffffff;
	font-size: 15px;
	line-height: 22px;
	padding-left: 25px;
}

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

.footer {
	padding: 30px 0;
}

.footer .copyright {
	font-size: 12px;
	color: #ffffff;
	text-align: center;
	text-transform: uppercase;
}

.footer .copyright > a {
	color: #ffffff;
}

/*====================================================
11. Validate
====================================================*/

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

.form-group .error label.notify {
    position: absolute;
    background: #ff7a5c;
    top: -13px;
    width: 157px;
    z-index: 2;
    font-size: 14px;
    left: 0;
    padding: 8px 10px 7px 10px;
    color: #ffffff;
}

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

/*====================================================
12. Datepicker
====================================================*/

.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-clearfix {
	min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
	z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
    color: #aaaaaa;
}

/* Icons
----------------------------------*/

.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-datepicker {
    /* margin: -26px auto 0 122px; */
    -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 0px 10px rgba(0, 0, 0, .3);
    box-shadow: 0 0px 10px rgba(0, 0, 0, .3);
	width: 8em;
	display: none;
}

.ui-datepicker.ui-datepicker-multi:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin-left: -0.5em;
    top: 0px;
    left: 55px;
    box-sizing: border-box;
    border: 6px solid black;
    border-color: transparent transparent #ffffff #ffffff;
    transform-origin: 0 0;
    transform: rotate(135deg);
    box-shadow: -2px 2px 3px 0 rgba(0, 0, 0, 0.05);
}

.ui-datepicker .ui-datepicker-header {
	position: relative;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 0;
	height: 45px;
    width: 45px;
}

.ui-datepicker .ui-datepicker-prev {
    /*background: url("/img1/arrow_left.png") 50% 50% no-repeat;*/
    background: url("/img1/arrow_left_white.png") 50% 50% no-repeat;
	left: 0;
}
.ui-datepicker .ui-datepicker-next {
    /*background: url("/img1/arrow_right.png") 50% 50% no-repeat;*/
    background: url("/img1/arrow_right_white.png") 50% 50% no-repeat;
	right: 0;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    background-color: rgba(255,255,255,0.2);
}

.ui-datepicker .ui-datepicker-prev.ui-state-disabled {
    background: url("/img1/arrow_left_white_d.png") 50% 50% no-repeat;
}

.ui-datepicker .ui-datepicker-next.ui-state-disabled{
    background: url("/img1/arrow_right_white_d.png") 50% 50% no-repeat;
}

.ui-datepicker .ui-state-disabled:hover {
    background-color: transparent;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
    margin: 0 2.3em;
    line-height: 45px;
    font-weight: normal;
    font-size: 20px;
    text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	border: 0;
}
.ui-datepicker td {
	border: 0;
    width: 42px;
}

.ui-datepicker td.dp-highlight a,
.ui-datepicker td.ui-datepicker-today.dp-highlight a,
.ui-datepicker td.ui-datepicker-today.dp-highlight a.ui-state-active{
    background: #96F3FB;
    color: #515151;
}

.ui-datepicker td.dp-highlight-first a{
    border-left: 3px solid #2ED4E2;
}

.ui-datepicker td.dp-highlight-last a{
    border-right: 3px solid #2ED4E2;
}

.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
    font-size: 16px;
    line-height: 24px;
	text-align: center;
	text-decoration: none;
}

.ui-datepicker td.ui-datepicker-today a{
    color: #2ED4E2;
    background: transparent;
}

.ui-datepicker td a:hover {
    color: #515151;
    background: #cecece;
}

.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
    margin: 15px 0;
    width: 28em !important;
    padding: 5px;
}

.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-first {
    padding-right: 1px;
}

.ui-datepicker-multi .ui-datepicker-group-last {
    padding-left: 1px;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

/* Component containers
----------------------------------*/
.ui-widget {
	font-family: "Roboto Condensed",sans-serif;
	font-size: 1.3em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: "Roboto Condensed",sans-serif;
	font-size: 1em;
}
.ui-widget-content {
	background: #ffffff;
	color: #666666;
}
.ui-widget-content a {
	color: #666666;
}
.ui-widget-header {
	background: #2ED4E2;
    color: #FFFFFF;
	font-weight: bold;
}
.ui-widget-header a {
	color: #ffffff;
}
