@charset "gb2312";
/* CSS Document */


/* Prevent the page from scrolling */
/*body*/.pickadate__active { overflow: hidden; }
/* And add the "active" state to the input */
/*input*/.pickadate__input--active { border-color: #0089ec !important; }
/**
 * The holder that fills the entire screen
 */
.pickadate__holder { /* The base font-size */
    font-size: 16px; line-height: 1.2; color: #000; position: fixed; z-index: 10000; width: 100%; height: 100%; 
    /* Fade out the background, then immediately hide the holder */
    -webkit-transition: background .15s ease-out, top 0s .2s;
 -moz-transition: background .15s ease-out, top 0s .2s;
 transition: background .15s ease-out, top 0s .2s;
}
/**
 * The frame that bounds the calendar
 */
.pickadate__frame { min-width: 256px; max-width: 666px; width: 100%; margin: 0 auto; position: absolute; /* Allow the frame to be scrolled in case the screen is too small */
    overflow: auto; -webkit-overflow-scrolling: touch; 
    /* Animate the frame in and out of view */
    -webkit-transition: all .15s ease-out;
 -moz-transition: all .15s ease-out;
 transition: all .15s ease-out;
}
/**
 * Make the calendar holder and frame fullscreen
 */
.pickadate__holder, .pickadate__frame { top: 100%; bottom: 0; left: 0; right: 0; }
/**
 * When the calendar opens
 */
.pickadate__holder--opened { /* Show a translucent black background (order is important for IE) */
    background: transparent; -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)"; /* IE8 */  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000, endColorstr=#1E000000); /* IE6 & 7 */
zoom: 1; background: rgba(0, 0, 0, .32); /* Normal browsers */ 
    /* Animate in the background */
    -webkit-transition: background .15s ease-out;
 -moz-transition: background .15s ease-out;
 transition: background .15s ease-out;
}
/* Bring the holder and frame into view */
.pickadate__holder--opened, .pickadate__holder--opened .pickadate__frame { top: 0; }
/**
 * The calendar wrapper
 */
.pickadate__wrap { display: table; width: 100%; height: 100%; }
/**
 * The calendar itself
 */
.pickadate__calendar { display: table-cell; vertical-align: middle; background: #fff; padding: 1em; }
/**
 * The calendar table of dates
 */
.pickadate__table { text-align: center; border-collapse: collapse; border-spacing: 0; table-layout: fixed; font-size: inherit; width: 100%; margin-top: .5em; }
/* Remove browser stylings on a table cell */
.pickadate__table td { margin: 0; padding: 0; }
/**
 * The header containing the month and year tags/selectors
 */
.pickadate__header { text-align: center; position: relative; }
.pickadate__nav--prev, .pickadate__nav--next { position: absolute; top: -.1em; padding: .5em; margin: -.5em; text-align: center; min-width: 24px; height: 24px; line-height: 26px; }
.pickadate__nav--prev { left: 0; }
.pickadate__nav--next { right: 0; }
.pickadate__month, .pickadate__year { font-weight: 500; display: inline-block; }
.pickadate__year { color: #999; font-size: .8em; font-style: italic; margin-left: .5em; }
.pickadate__select--month, .pickadate__select--year { font-size: .8em; border: 1px solid #ccc; height: 2.5em; padding: .66em .25em; /* For firefox */ margin-top: -.5em; }
.pickadate__select--month { width: 35%; }
.pickadate__select--year { width: 22.5%; margin-left: .5em; }
.pickadate__select--month:focus, .pickadate__select--year:focus { border-color: #0089ec; }
/**
 * The weekday labels
 */
.pickadate__weekday { width: 14.285714286%; /* 100/7 */ font-size: .75em; padding-bottom: .25em; color: #999; font-weight: 500; }
/**
 * The days on the calendar
 */
.pickadate__day { padding: .33em 0 .25em; font-weight: 100; border: 1px solid #fff; margin-bottom: 1px; }
/**
 * The various states of a day
 */
.pickadate__day--today { color: #0089ec; position: relative; }
.pickadate__day--today:before { content: " "; position: absolute; top: 2px; right: 2px; width: 0; height: 0; border-top: .5em solid #0059bc; border-left: .5em solid transparent; }
.pickadate__day--selected, .pickadate__day--selected:hover { border-color: #0089ec; }
.pickadate__day--highlighted { background: #fff; }
.pickadate__day--disabled:before { border-top-color: #aaa; }
.pickadate__day--outfocus { color: #ddd; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; filter: alpha(opacity=75); -moz-opacity: .75; opacity: .75; }
/**
 * The footer containing the "today" and "clear" buttons
 */
.pickadate__footer { text-align: center; margin: .25em 0 -.75em; }
.pickadate__button--today, .pickadate__button--clear { border: 1px solid #fff; background: #fff; font-size: .8em; padding: .66em 0; margin: 0 2.5%; font-weight: bold; width: 40%; }
.pickadate__button--today:before, .pickadate__button--clear:before { position: relative; display: inline-block; height: 0; }
.pickadate__button--today:before { content: " "; margin-right: .45em; top: -.05em; width: 0; border-top: .66em solid #0059bc; border-left: .66em solid transparent; }
.pickadate__button--clear:before { content: "\D7"; margin-right: .35em; top: -.1em; color: #e20; vertical-align: top; font-size: 1.1em; }
.pickadate__button--today:focus, .pickadate__button--clear:focus { background: #b1dcfb; border-color: #0089ec; outline: none; }
/**
 * The hover effect on any buttons
 */
.pickadate__day--infocus:hover, .pickadate__day--outfocus:hover, .pickadate__nav--prev:hover, .pickadate__nav--next:hover, .pickadate__button--today:hover, .pickadate__button--clear:hover { cursor: pointer; color: #000; background: #b1dcfb; }
.pickadate__day--disabled, .pickadate__day--disabled:hover { background: #f5f5f5; border-color: #f5f5f5; color: #ddd; cursor: default; }
.pickadate__day--highlighted:hover, .pickadate__holder--focused .pickadate__day--highlighted { background: #0089ec; color: #fff; }




/**
 * Adjust the calendar for not so tiny screens
 * by just increasing the font size a bit
 */
@media (min-height: 342px) {
 .pickadate__calendar {
 font-size: 1.25em;
}
}


/**
 * For bigger viewports, adjust the calendar
 * to not cover the entire screen
 */
@media (min-height: 424px) {

    /* Align the frame to the bottom, rather than top */
    .pickadate__frame {
 overflow: visible;
 top: auto;
 bottom: -100%;
}
 .pickadate__holder--opened .pickadate__frame {
 top: auto;
 bottom: 0;
}


    /* Remove the calendar middle-aligned styling */
    .pickadate__wrap,  .pickadate__calendar {
 display: block;
}
 .pickadate__calendar {

        /* Increase the font size a bit more */
        font-size: 1.33em;

        /* Add the borders except the bottom one */
        border: 1px solid #777;
 border-top-color: #888;
 border-bottom-width: 0;

        /* Make 'em rounded at the top corners */
        -webkit-border-radius: 6px 6px 0 0;
 -moz-border-radius: 6px 6px 0 0;
 border-radius: 6px 6px 0 0;

        /* And finally, add a nice shadow */
        -webkit-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, .24);
 -moz-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, .24);
 box-shadow: 0 12px 36px 16px rgba(0, 0, 0, .24);
}


    /* Increase the spacing a tad */
    .pickadate__table {
 margin-top: .75em;
}
 .pickadate__weekday {
 padding-bottom: .5em;
}
 .pickadate__footer {
 margin: .5em 0 -.5em;
}
}


/**
 * For bigger monitors still, move it away
 * from the bottom edge of the screen
 * and round the top and bottom corners.
 */
@media (min-height: 542px) {
 .pickadate__frame {
 margin-bottom: 5%;
}
 .pickadate__calendar {
 font-size: 1.5em;
 border-bottom-width: 1px;
 -webkit-border-radius: 6px;
 -moz-border-radius: 6px;
 border-radius: 6px;
}
}


.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* mouse grab icon */
.grabbing { 
    cursor:url(../images/grabbing.png) 8 8, move;
}
/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

.owl-theme .owl-controls{
	margin-top: 0.5rempx;
	text-align: center;
}
/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div{
	color: #FFF;
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	margin: 5px;
	padding: 3px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background: #869791;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}
/* Styling Pagination*/
.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 0.6rem;
	height: 0.6rem;
	margin: 0.4rem 0.8rem;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 1rem;
	-moz-border-radius: 1rem;
	border-radius: 1rem;
	background: #000;
	overflow: hidden;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}
/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}
/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(../images/AjaxLoader.gif) no-repeat center center
}