﻿#loading-div-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: black;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

#loading-div {
    font: 15px Verdana,Arial,sans-serif;
    font-weight: bold;
    width: 310px;
    height: 250px;
    background-color: white;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -150px;
    opacity: 1;
    display: block;
}

#floatingBarsG {
    position: relative;
    width: 60px;
    height: 75px;
    margin: 19% auto;
}

.blockG {
    position: absolute;
    background-color: #0060AF;
    width: 10px;
    height: 23px;
    border-radius: 8px 8px 0 0;
    -o-border-radius: 8px 8px 0 0;
    -ms-border-radius: 8px 8px 0 0;
    -webkit-border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    transform: scale(0.4);
    -o-transform: scale(0.4);
    -ms-transform: scale(0.4);
    -webkit-transform: scale(0.4);
    -moz-transform: scale(0.4);
    animation-name: fadeG;
    -o-animation-name: fadeG;
    -ms-animation-name: fadeG;
    -webkit-animation-name: fadeG;
    -moz-animation-name: fadeG;
    animation-duration: 1.2s;
    -o-animation-duration: 1.2s;
    -ms-animation-duration: 1.2s;
    -webkit-animation-duration: 1.2s;
    -moz-animation-duration: 1.2s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -o-animation-direction: normal;
    -ms-animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
}

#rotateG_01 {
    left: 0;
    top: 27px;
    animation-delay: 0.45s;
    -o-animation-delay: 0.45s;
    -ms-animation-delay: 0.45s;
    -webkit-animation-delay: 0.45s;
    -moz-animation-delay: 0.45s;
    transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
}

#rotateG_02 {
    left: 8px;
    top: 10px;
    animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    -ms-animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
}

#rotateG_03 {
    left: 25px;
    top: 3px;
    animation-delay: 0.75s;
    -o-animation-delay: 0.75s;
    -ms-animation-delay: 0.75s;
    -webkit-animation-delay: 0.75s;
    -moz-animation-delay: 0.75s;
    transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
}

#rotateG_04 {
    right: 8px;
    top: 10px;
    animation-delay: 0.9s;
    -o-animation-delay: 0.9s;
    -ms-animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
    transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
}

#rotateG_05 {
    right: 0;
    top: 27px;
    animation-delay: 1.05s;
    -o-animation-delay: 1.05s;
    -ms-animation-delay: 1.05s;
    -webkit-animation-delay: 1.05s;
    -moz-animation-delay: 1.05s;
    transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
}

#rotateG_06 {
    right: 8px;
    bottom: 7px;
    animation-delay: 1.2s;
    -o-animation-delay: 1.2s;
    -ms-animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
}

#rotateG_07 {
    bottom: 0;
    left: 25px;
    animation-delay: 1.35s;
    -o-animation-delay: 1.35s;
    -ms-animation-delay: 1.35s;
    -webkit-animation-delay: 1.35s;
    -moz-animation-delay: 1.35s;
    transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
}

#rotateG_08 {
    left: 8px;
    bottom: 7px;
    animation-delay: 1.5s;
    -o-animation-delay: 1.5s;
    -ms-animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
}

@keyframes fadeG {
    0% {
        background-color: #0060AF;
    }

    100% {
        background-color: rgb(255,255,255);
    }
}

@-o-keyframes fadeG {
    0% {
        background-color: #0060AF;
    }

    100% {
        background-color: rgb(255,255,255);
    }
}

@-ms-keyframes fadeG {
    0% {
        background-color: #0060AF;
    }

    100% {
        background-color: rgb(255,255,255);
    }
}

@-webkit-keyframes fadeG {
    0% {
        background-color: #0060AF;
    }

    100% {
        background-color: rgb(255,255,255);
    }
}

@-moz-keyframes fadeG {
    0% {
        background-color: #0060AF;
    }

    100% {
        background-color: rgb(255,255,255);
    }
}

#CmsSite_MappedSearch_Search_dsi
{
    background-image: url(/Files/System/CmsSite/images/abreutur_sprite.png);
    background-repeat: no-repeat;
    background-position: -8px -111px;
    width: 240px;
    padding: 20px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: #C7C7C7;
    margin-bottom: 10px;
}

#CmsSite_MappedSearch_Search_dsi input[type="text"], #CmsSite_MappedSearch_Search_dsi select
{
    margin-left: 0px;
    margin-bottom: 13px;
    background-color: white;
    text-decoration: none;
    border: 1px solid #B8B8B8;
    padding: 2px;
    color: #6896BA;
    width: 99%;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    height: 22px;
    font-size: 11px;
    padding-left: 10px;
}

#CmsSite_MappedSearch_Search_dsi select.CmsSite_MappedSearch_Destination_dsi, #CmsSite_MappedSearch_Search_dsi select.CmsSite_MappedSearch_Country_dsi, #CmsSite_MappedSearch_Search_dsi select.CmsSite_MappedSearch_Region_dsi, #CmsSite_MappedSearch_Search_dsi select.CmsSite_MappedSearch_Currency_dsi, #CmsSite_MappedSearch_Search_dsi select.CmsSite_MappedSearch_Duration_dsi, #CmsSite_MappedSearch_Search_dsi select.CmsSite_MappedSearch_MonthYear_dsi, #CmsSite_MappedSearch_Search_dsi select.CmsSite_MappedSearch_Caracteristic_dsi
{
    width: 49%;
}


#CmsSite_MappedSearch_Search_dsi select.CmsSite_MappedSearch_MonthYear_dsi
{
    display:block;
}


#CmsSite_MappedSearch_Search_dsi select.CmsSite_MappedSearch_DateInterval_dsi
{
    width: 49%;
    float: right;
}

#CmsSite_MappedSearch_Search_dsi input[type="text"].CmsSite_MappedSearch_ProgramNameOrDestination_dsi
{
    width: 226px;   
    line-height: 20px;
}

#CmsSite_MappedSearch_Search_dsi hr
{
    height: 2px;
    background-image: url(/Files/System/CmsSite/images/abreutur_sprite.png);
    background-position: -6px -104px;
    background-repeat: repeat-x;
    background-color: transparent;
    border: none;
    margin-top: 10px;
    margin-bottom: 10px;
}

#CmsSite_MappedSearch_Search_dsi .CmsSite_MappedSearch_TableSlide_dsi
{
    float: left;
    margin-left: 15px;
    width: 100%;
    color: #6896BA;
}

#CmsSite_MappedSearch_Search_dsi .CmsSite_MappedSearch_TableSlide_dsi > div
{
    float: left;
}

#CmsSite_MappedSearch_Search_dsi .CmsSite_MappedSearch_TableSlide_dsi input[type="text"]
{
    color: rgb(104, 150, 186);
    width: 125px;
    background-image: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: transparent;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-width: initial;
    border-image: initial;
    text-align: right;
    font-size: 17px;
    font-weight: bold;
    background-position: initial initial;
    background-repeat: initial initial;
}

div.CmsSite_MappedSearch_Price_dsi
{
    display: block;
    overflow: hidden;
    height: 65px;
}

.CmsSite_MappedSearch_Buttons_dsi input[type="submit"]
{
    height: 34px;
    width: 92px;
    background-image: url(/Files/System/CmsSite/images/abreutur_sprite.png);
    background-repeat: no-repeat;
    background-color: transparent;
    text-indent: -10000px;
    border: none;
    margin: 3px;
}

.CmsSite_MappedSearch_Buttons_dsi input[type="submit"].CmsSite_MappedSearch_Submit_dsi
{
    background-position: -102px -23px;
    float: right;
    margin-right: 20px;
    clear:both;
}

.CmsSite_MappedSearch_Buttons_dsi input[type="submit"].CmsSite_MappedSearch_Reset_dsi
{
    background-position: -6px -23px;
    margin-left: 20px;
}

.CmsSite_MappedSearch_Buttons_dsi input[type="submit"].CmsSite_MappedSearch_Submit_dsi:hover
{
    background-position: -102px -59px;
}

.CmsSite_MappedSearch_Buttons_dsi input[type="submit"].CmsSite_MappedSearch_Reset_dsi:hover
{
    background-position: -6px -59px;
}

.CmsSite_MappedSearch_Buttons_dsi
{
    clear: both;
    overflow: hidden;
}

.CmsSite_MappedSearch_Hidden_dsi
{
    display:none !important;
}

.CmsSite_MappedSearch_Autocomplete_Green
{
    color: #49ba48 !important;
    font-weight: bold !important;
}

.CmsSite_MappedSearch_Autocomplete_Gray
{
    display: block;
    color: #575A5D !important;
    font-size: 14px;
}

.geographic-area
{
    width: 16px;
    height: 16px;
    background-image: url(/Files/System/CmsSite/images/sprites.png);
    background-position: -74px -10px;
    display: inline-block;
    margin-right: 4px;
}

.country
{
    width: 16px;
    height: 16px;
    background-image: url(/Files/System/CmsSite/images/sprites.png);
    background-position: -10px -10px;
    float: left;
    padding-right: 5px;
    margin-right: 4px;
}

.city
{
    width: 16px;
    height: 16px;
    background-image: url(/Files/System/CmsSite/images/sprites.png);
    background-position: -40px -10px;
    float: left;
    padding-right: 5px;
    margin-right: 4px;
}

.location
{
    width: 16px;
    height: 16px;
    background-image: url(/Files/System/CmsSite/images/sprites.png);
    background-position: -10px -10px;
    float: left;
    padding-right: 5px;
    margin-right: 4px;
}

.package
{
    width: 16px;
    height: 16px;
    background-image: url(/Files/System/CmsSite/images/sprites.png);
    background-position: -102px -10px;
    float: left;
    padding-right: 5px;
    margin-right: 4px;
}

.ui-autocomplete { z-index: 9999999; }

.ui-widget { font-size: 1.1em; }

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	border: 1px solid #003eff;
	background: #D3D3D3;
	font-weight: normal;
	color: #ffffff;
}

#ui-datepicker-div {
  z-index: 9999999 !important;
}