/* 
 * TOUR OVERVIEW PAGE
 */
div.imgbox {
    position: relative;
    float: left;
    width: 463px;
    height: 215px;
    margin: 2px;
    margin-bottom: 20px;
    border-radius: 3px;
    background-color: white;
    border: solid 1px white;
}

div.imgbox {
    -webkit-transition: all 0.35s ease-out;
     -khtml-transition: all 0.35s ease-out;
       -moz-transition: all 0.35s ease-out;
         -o-transition: all 0.35s ease-out;
}

div.imgbox:hover {
    border: solid 1px #999;
    -webkit-box-shadow: 0px 0px 4px #888;
     -khtml-box-shadow: 0px 0px 4px #888;
       -moz-box-shadow: 0px 0px 4px #888;
         -o-box-shadow: 0px 0px 4px #888;
            box-shadow: 0px 0px 4px #888;
}

img.tourimg {
    margin: 1px;
}

img.tourimg {
    -webkit-transition: all 0.35s ease-out;
       -moz-transition: all 0.35s ease-out;
         -o-transition: all 0.35s ease-out;
}

img.tourimg:hover {
    -webkit-opacity: 0.9;
     -khtml-opacity: 0.9;
       -moz-opacity: 0.9;
         -o-opacity: 0.9;
            opacity: 0.9;
}

p.tourtitle {
    float:left;
    color: black;
    width: 390px;
    margin: 0px;
    margin-left: 5px;
    font-size: 14px;
}

img.tourcategory {
    position: absolute;
    right: 3px;
    bottom: 23px;
    display: block;
}

p.tourprice
{
    position: absolute;
    right: 3px;
    bottom: 3px; 
    color: #a00;
    font-weight: bold;
    /*text-shadow: 1px 1px 1px #333;*/
    margin: 0px;
    font-size: 13px;
}

div#countries {
    margin-bottom:10px;
}

div#countries a {
    color:black;
    margin-left:13px;
    padding:4px;
    border-radius:5px;
}

div#countries a:hover {
    color:orange;
}

div#countries a.myland {
    background:#b9d52f;
}

#selectortab0 {
    /*background: url('images/route_fixed_off.png');*/
    display: none;
}
#selectortab1 {
    /*background: url('images/route_comfort_off.png');*/
    display: none;
}
#selectortab2 {
    /*background: url('images/route_driving_off.png');*/
    display: none;
}
#selectortab3 {
    /*background: url('images/route_luxury_off.png');*/
    display: none;
}
#selectortab4 {
    /*background: url('images/route_special_off.png');*/
    display: none;
}

#selectortab0.selectortabsel {
    background: url('images/route_fixed_on.png');
    position: absolute;
}
#selectortab1.selectortabsel {
    background: url('images/route_comfort_on.png');
    position: absolute;
}
#selectortab2.selectortabsel {
    background: url('images/route_driving_on.png');
    position: absolute;
}
#selectortab3.selectortabsel {
    background: url('images/route_luxury_on.png');
    position: absolute;
}
#selectortab4.selectortabsel {
    background: url('images/route_special_on.png');
    position: absolute;
}

