/*
Intento de implementar nuestro propio mix para controlar mejor los redondeos, pero no conseguimos mismo resultado que con fireworks...
@function mymix($color1, $color2, $percent){
//$color1: #ffffff;
//$color2: #4E45B4;
//$percent: 75%;
   $res: $color1;
   @if (type-of($color1) == color and type-of($color2) == color) { 
	 $r1: red($color1);
	 $g1: green($color1);
	 $b1: blue($color1);
	 $a1: alpha($color1);

	 $r2: red($color2);
	 $g2: green($color2); 
	 $b2: blue($color2);
	 $a2: alpha($color2);
	 $p: $percent / ($percent * 0 + 1);

	 $r: $r1 * $p/100 + $r2*(1-$p/100);
	 $g: $g1 * $p/100 + $g2*(1-$p/100);
	 $b: $b1 * $p/100 + $b2*(1-$p/100);
	 $a: $a1 * $p/100 + $a2*(1-$p/100);

	 $res: rgb($r, $g, $b, $a);	
	 @debug $res "-->" mix($color1, $color2, $percent);	
   }
   @return $res;
}*/
/*
//En principio se puede borrar, ya que el operador <<!default>> produce el efecto deseado
//@function valueOrDefault($value, $default){
//  $ret: $value;
//  @if $ret == null {
//	$ret: $default;
//  }
//  @return $ret;
//}*/
/*
Intento de implementar nuestro propio mix para controlar mejor los redondeos, pero no conseguimos mismo resultado que con fireworks...
@function mymix($color1, $color2, $percent){
//$color1: #ffffff;
//$color2: #4E45B4;
//$percent: 75%;
   $res: $color1;
   @if (type-of($color1) == color and type-of($color2) == color) { 
	 $r1: red($color1);
	 $g1: green($color1);
	 $b1: blue($color1);
	 $a1: alpha($color1);

	 $r2: red($color2);
	 $g2: green($color2); 
	 $b2: blue($color2);
	 $a2: alpha($color2);
	 $p: $percent / ($percent * 0 + 1);

	 $r: $r1 * $p/100 + $r2*(1-$p/100);
	 $g: $g1 * $p/100 + $g2*(1-$p/100);
	 $b: $b1 * $p/100 + $b2*(1-$p/100);
	 $a: $a1 * $p/100 + $a2*(1-$p/100);

	 $res: rgb($r, $g, $b, $a);	
	 @debug $res "-->" mix($color1, $color2, $percent);	
   }
   @return $res;
}*/
/*
//En principio se puede borrar, ya que el operador <<!default>> produce el efecto deseado
//@function valueOrDefault($value, $default){
//  $ret: $value;
//  @if $ret == null {
//	$ret: $default;
//  }
//  @return $ret;
//}*/
/*EXTRA*/
/* ================================================
   GENERAL 
   ================================================ */
.home .searchbox_container {
  z-index: 1;
}

.home .sliderHomeDiv {
  float: right;
}

.home:not(.sliderHomeDiv.grid_16) {
  height: 305px;
}

.home .genericSearcher {
  z-index: 1;
}

.home .destinations {
  margin-top: 20px;
  margin-bottom: 40px;
}

.home .newsletter {
  margin: 22px 44px 0 12px;
}

.home .newsletter h4 {
  margin-bottom: 3px;
}

.home .newsletter h5 {
  color: #2c2c2c;
  display: block;
  font-weight: normal;
  font-size: 12px;
  margin-bottom: 12px;
}

.home .newsletter input[type=text] {
  width: 188px;
}

.home .newsletter .msgError {
  margin: -8px 0 5px 0;
}

/* ================================================
   CONTENTS PANEL 
   ================================================ */
.contentsPanelGeneric {
  font-family: Adelle-Regular, Arial, Verdana, Sans-Serif;
  background-color: #ffffff;
  width: 300px;
  border: 1px solid #d9d8d9;
  border-radius: 5px 5px 0 5px;
  position: relative;
}
.contentsPanelGeneric .icon, .contentsPanelGeneric [class^=icon-], .contentsPanelGeneric [class*=" icon-"], .contentsPanelGeneric .comb-icon, .contentsPanelGeneric [class^=comb-icon-], .contentsPanelGeneric [class*=" comb-icon-"] {
  color: #FFB814;
}

.contentsPanelGeneric .content {
  padding-bottom: 5px;
}

.contentsPanelGeneric .opener {
  content: "";
  cursor: pointer;
  width: 200px;
  height: 25px;
  line-height: 25px;
  background: #ffffff;
  border: 1px solid #d9d8d9;
  border-radius: 0 0 5px 5px;
  border-top: none;
  position: absolute;
  bottom: -26px;
  right: -1px;
  text-align: center;
  font-family: Adelle-Bold, Arial, Verdana, Sans-Serif;
}

.contentsPanelGeneric .opener .icon-down, .contentsPanelGeneric .opener .icon-up {
  color: #FFB814;
  vertical-align: middle;
}

.contentsPanelGeneric .opener.opened .icon-down:before {
  content: "\e003";
}
.ie7 .contentsPanelGeneric .opener.opened .icon-down {
  behavior: url(/css/htc/pseudo.htc);
  _before: "\e003";
}
.container_16 .contentsPanelGeneric.grid_5-3 {
  width: 298px;
}

.contentsPanelGeneric.grid_5-3 .title-box {
  width: 284px;
}

.contentsPanelGeneric .content .item {
  margin: -1px 5px 2px 10px;
  padding: 5px;
  border-bottom: 1px solid #d9d8d9;
}

.contentsPanelGeneric .content .item:hover {
  background-color: #e8e8e8;
}

.contentsPanelGeneric.destination .content .item {
  margin: 0 10px;
}

.contentsPanelGeneric .title-box {
  margin: 5px;
  background: #ffc643;
  border-radius: 5px;
}

.contentsPanelGeneric .title-text {
  font-size: 16px;
  font-family: Adelle-Bold, Arial, Verdana, Sans-Serif;
  line-height: 100%;
  color: #666465;
  padding: 15px 10px;
  text-align: left;
}

.contentsPanelGeneric.destination .content .item {
  line-height: 15px;
}

.contentsPanelGeneric .content .item:last-child {
  border-bottom: none;
}

.contentsPanelGeneric .content .item.lastDisplayed {
  border-bottom: none;
}

.contentsPanelGeneric .content .item.lastDisplayed.reborder {
  border-bottom: 1px solid #d9d8d9;
}

.contentsPanelGeneric .content .item.off {
  display: none;
}

.contentsPanelGeneric .content .item {
  line-height: 16px;
  overflow: hidden;
}

.contentsPanelGeneric .content .item .itemInfoText {
  font-size: 12px;
  color: #2c2c2c;
  text-align: left;
  float: left;
  display: block;
}

.contentsPanelGeneric .content .item .itemInfoText .itemDestination {
  font-style: italic;
}

.contentsPanelGeneric.hotelsPanel .content .item .itemInfoText span.itemLinkSpan {
  float: left;
  width: 192px;
  border-right: 1px solid #d9d8d9;
  margin: 5px 0 5px 5px;
  padding-right: 5px;
}

.contentsPanelGeneric.hotelsPanel .content .item .itemInfoText span.itemLinkSpan .icon-star {
  vertical-align: top;
}

.contentsPanelGeneric.hotelsPanel .content .item .itemInfoText span.itemLinkSpan.noPrice {
  width: 100%;
  border-right: none;
}

.contentsPanelGeneric .content .item .itemInfoText span.itemLinkSpan .itemName {
  display: block;
}

.contentsPanelGeneric .content .item .itemInfoPrice {
  font-size: 12px;
  min-width: 65px;
  color: #666465;
  float: right;
}

.contentsPanelGeneric.hotelsPanel .content .item .itemInfoPrice {
  width: 65px;
}

.contentsPanelGeneric.hotelsPanel .content .item .itemInfoPrice span {
  display: block;
  text-align: center;
}

.itemInfoPrice span.priceItem {
  font-family: Adelle-Bold, Arial, Verdana, Sans-Serif;
  font-size: 14px;
}

/* ================================================
   SLIDER 950 
   ================================================ */
.slider950 {
  margin-top: 20px;
  width: 946px;
  height: 196px;
  overflow: hidden;
  border: 1px solid #d9d8d9;
  border-left: none;
  z-index: 0;
  font-family: Adelle-Regular, Arial, Verdana, Sans-Serif;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.slider950 .slider950_elem {
  float: left;
  background: #e8e8e8;
  height: 186px;
  padding: 5px 10px;
  overflow: hidden;
  border-left: 1px solid #d9d8d9;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.slider950 .slider950_elem:hover {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.slider950 .slider950_elem .title {
  position: relative;
  height: 54px;
  width: 100%;
  overflow: hidden;
}

.slider950 .title h2 {
  font-size: 20px;
  font-weight: normal;
  color: #858384;
  line-height: 50px;
}

.slider950 .title .moreinfo {
  position: absolute;
  top: 10px;
  right: 25px;
  padding: 5px 20px 5px 8px;
  color: #2c2c2c;
  font-family: Adelle-Bold, Arial, Verdana, Sans-Serif;
  border-radius: 5px;
}

.slider950 .title .moreinfo:hover {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.slider950 .content .slider_panel {
  float: left;
  width: 160px;
  background: #ffffff;
  margin: 0 8px 0 0;
  border-radius: 5px;
  height: 130px;
}

.slider950 .content .slider_panel_content {
  margin: 8px 12px;
}

.slider950 .content .slider_panel:hover {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.slider950 .content .slider_panel a {
  color: #2c2c2c;
  font-size: 14px;
  display: block;
  line-height: 14px;
  margin: 10px -3px 0 -3px;
}

.slider950 .content .slider_panel a:hover {
  color: #2c2c2c;
  text-decoration: underline;
}

.slider950 .content .slider_panel .photo {
  width: 138px;
  height: 66px;
  overflow: hidden;
  position: relative;
}

.slider950 .content .slider_panel .photo img {
  position: absolute;
}

/* elemento abierto */
.slider950 .slider950_elem.open {
  background: #ffffff;
  width: 656px;
  right: 0;
}

.slider950 .slider950_elem.open h2 {
  font-size: 50px;
  color: #b3b2b2;
  font-family: Adelle-Bold, Arial, Verdana, Sans-Serif;
}

/* 2, 3 o 4 elems */
.slider950.slider950_4 .slider_elem {
  width: 80px;
}

/* ================================================
   SLIDER HOME 
   ================================================ */
.slider_home {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: none;
  height: 320px;
  border: 0;
  border-radius: 0px;
}

.slider_home .ui-tabs-panel {
  padding: 0;
  margin: 0;
  position: relative;
  width: 450px;
  height: 258px;
  overflow: hidden;
}

.slider_home .ui-tabs-panel .info {
  position: absolute;
  bottom: 0;
  padding: 10px;
  color: #ffffff;
  width: 100%;
}

.slider_home .ui-tabs-panel .info h2 {
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0.1em 0.1em 0.2em #2c2c2c;
  font-size: 20px;
}

.ie7 .slider_home, .ie7 .slider_home .ui-tabs-panel, .ie7 .slider_home .ui-tabs {
  position: static !important;
}

.ie7 .slider_home {
  width: 455px;
  height: 305px;
}

.ie7 .slider_home .ui-tabs-panel .info {
  margin-top: -160px;
  position: static;
}

.slider_home .slider_nav {
  background: none;
  border: none;
  margin-top: -20px;
  padding-left: 0;
}

.slider_home .slider_nav li {
  width: 73px;
  padding: 0;
  border: 0;
  background: none;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.slider_home .slider_nav li a {
  padding: 20px 0 0 0;
}

.slider_home .slider_nav li.ui-tabs-selected {
  opacity: 1;
  filter: alpha(opacity=100);
}
.slider_home .slider_nav li.ui-tabs-selected:before {
  content: "\e102";
}
.ie7 .slider_home .slider_nav li.ui-tabs-selected {
  behavior: url(/css/htc/pseudo.htc);
  _before: "\e102";
}
.slider_home .slider_nav li.ui-tabs-selected:before, .ie7 .slider_home .slider_nav li.ui-tabs-selected > .before {
  font-family: iconIII !important;
  font-weight: normal !important;
  zoom: 1;
  padding: 0px;
  margin: 0px;
  vertical-align: baseline;
  display: inline-block;
  text-indent: 0;
  color: #666465;
  speak: none;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  vertical-align: baseline;
  font-size: 16px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  color: #ffffff;
  position: absolute;
  left: 50%;
  margin: 0 0 0 -8px;
}
.slider_home .slider_nav li.ui-tabs-selected:after {
  content: "\e003";
}
.ie7 .slider_home .slider_nav li.ui-tabs-selected {
  behavior: url(/css/htc/pseudo.htc);
  _after: "\e003";
}
.slider_home .slider_nav li.ui-tabs-selected:after, .ie7 .slider_home .slider_nav li.ui-tabs-selected > .after {
  font-family: iconIII !important;
  font-weight: normal !important;
  zoom: 1;
  padding: 0px;
  margin: 0px;
  vertical-align: baseline;
  display: inline-block;
  text-indent: 0;
  color: #666465;
  speak: none;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  vertical-align: baseline;
  font-size: 12.8px;
  width: 12.8px;
  height: 12.8px;
  line-height: 12.8px;
  color: #FFB814;
  position: absolute;
  left: 50%;
  margin: 0 0 0 -6.4px;
}

.slider_home .slider_nav li.ui-tabs-selected a {
  cursor: auto;
}

.slider_home .slider_nav li.imgContNav a {
  height: 40px;
  width: 74px;
  margin-top: 4px;
  overflow: hidden;
}
/*# sourceMappingURL=home.css.map */