@charset "utf-8";
/* CSS Document */
/* The main calendar widget.  DIV containing a table. */
.calendar {
  position: relative;
  display: none;
  border-top: 2px solid #fff;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-left: 2px solid #fff;
  font-size: 11px;
  color: #000;
  cursor: default;
  background: #d4d0c8;
  font-family: tahoma,verdana,sans-serif;
  z-index:1000;
}
.small 
{ font-size: 11px !important;
 display:inline
}
.calendar table {
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
  font-size: 11px;
  color: #000;
  cursor: default;
  background: #d4d0c8;
  font-family: tahoma,verdana,sans-serif;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;
  padding: 1px;
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
}

.calendar .nav {
  background: transparent url(menuarrow.gif) no-repeat 100% 100%;
}

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;
  padding: 1px;
  border: 1px solid #000;
  background: #848078;
  color: #fff;
  text-align: center;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
}

.calendar thead .daynames { /* Row <TR> containing the day names */
}

.calendar thead .name { /* Cells <TD> containing the day names */
  border-bottom: 1px solid #000;
  padding: 2px;
  text-align: center;
  background: #f4f0e8;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: #f00;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  border-top: 2px solid #fff;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-left: 2px solid #fff;
  padding: 0px;
  background-color: #e4e0d8;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  padding: 2px 0px 0px 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
  background-color: #c4c0b8;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 2em;
  text-align: right;
  padding: 2px 4px 2px 2px;
}
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #aaa;
}
.calendar tbody .day.othermonth.oweekend {
  color: #faa;
}

.calendar table .wn {
  padding: 2px 3px 2px 2px;
  border-right: 1px solid #000;
  background: #f4f0e8;
}

.calendar tbody .rowhilite td {
  background: #e4e0d8;
}

.calendar tbody .rowhilite td.wn {
  background: #d4d0c8;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  padding: 1px 3px 1px 1px;
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  padding: 2px 2px 0px 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
}

.calendar tbody td.selected { /* Cell showing selected date */
  font-weight: bold;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
  padding: 2px 2px 0px 2px;
  background: #e4e0d8;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  color: #f00;
}

.calendar tbody td.today { /* Cell showing today date */
  font-weight: bold;
  color: #00f;
}

.calendar tbody .disabled { color: #999; }

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  visibility: hidden;
}

.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
  display: none;
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: #f4f0e8;
  padding: 1px;
  border: 1px solid #000;
  background: #848078;
  color: #fff;
  text-align: center;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
  padding: 1px;
  background: #e4e0d8;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  padding: 2px 0px 0px 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
}

/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo {
  position: absolute;
  display: none;
  width: 4em;
  top: 0px;
  left: 0px;
  cursor: default;
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
  background: #e4e0d8;
  font-size: 90%;
  padding: 1px;
  z-index: 100;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .active {
  background: #c4c0b8;
  padding: 0px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
}

.calendar .combo .hilite {
  background: #048;
  color: #fea;
}

.calendar td.time {
  border-top: 1px solid #000;
  padding: 1px 0px;
  text-align: center;
  background-color: #f4f0e8;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 0px 3px 0px 4px;
  border: 1px solid #889;
  font-weight: bold;
  background-color: #fff;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  padding: 0px 2px 0px 3px;
  font-weight: bold;
}

.calendar td.time span.hilite {
  border-color: #000;
  background-color: #766;
  color: #fff;
}

.calendar td.time span.active {
  border-color: #f00;
  background-color: #000;
  color: #0f0;
}

/* END The main calendar widget.  DIV containing a table. */
/*
	base_theme.css OTROS ELEMENTOS (tablas y titulos)
*/
#title-page, #title-page-2
{	font-family: Arial,Helvetica,sans-serif;
	font-size: 20px;
	margin-bottom: 10px;
	border-bottom: 1px solid;
	width: auto;
}
/* elementos de las tablas de colores*/
.top-box, .bottom-box
{	height: 6px;
	display: block;
	font-size: 6px;/*ajuste explorer*/
}

.title-box,.title-box-arrow
{	display: block;
	font-size: 14px;
	color: #EAEAEA;
	font-weight: bold;
	padding:0px 0px 3px 10px;
}

.ctl, .ctr, .cbl, .cbr, .cbl-gray, .cbr-gray
{	width: 6px;
	height: 6px;
	display: block;
	font-size: 0px;
	float: left;
	background-color: transparent;
}

.cbl
{	background:no-repeat top left scroll url("http://i.rentalo.com/g/b/corner-bottom-left.gif");
	float: left;
	width:auto
}

.cbr
{	background:no-repeat top left scroll url("http://i.rentalo.com/g/b/corner-bottom-right.gif");
	float: right;
	width:auto
}

.ctl
{	background:no-repeat top left scroll url("http://i.rentalo.com/g/b/corner-top-left.gif");
	float: left;
	width:auto
}

.ctr
{	background:no-repeat top left scroll url("http://i.rentalo.com/g/b/corner-top-right.gif");
	float: right;
	width:auto
}
/*
	END base_theme.css OTROS ELEMENTOS (tablas y titulos)
*/



body 
{	margin: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	height: 100%;
}

form {
	display: inline;
}

input, textarea, option, select
{	background-color: #ffffff;
	font-family: Arial,Helvetica,sans-serif;
	font-size: 12px;
}

a
{	line-height: normal;
	font-weight: normal;
}

a:link
{
	
	font-weight: normal;
}

a:hover 
{
	color: #666666;
	text-decoration: none;
}

.button {
	padding-left: 5px;
	padding-right: 5px;
	white-space: nowrap;
	text-align: center;
	margin-right: 10px;
	margin-left: 10px;
	margin-top: 5px;
	border: 1px solid #000000;
	border-right-width: 2px;
	border-bottom-width: 2px;
	white-space: nowrap;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	height: auto;
	width: auto;
	background: repeat-x top url("http://i.rentalo.com/g/b/newbutton-0.gif");
	background-color:#FF8902;
}


.new-button{
	padding-left: 5px;
	padding-right: 5px;
	white-space: nowrap;
	text-align: center;
	margin-right: 10px;
	margin-left: 10px;
	margin-top: 5px;
	border: 1px solid #000000;
	border-right-width: 2px;
	border-bottom-width: 2px;
	white-space: nowrap;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	height: auto;
	width: auto;
	
}
.new-button:link, .new-button:hover, .new-button:visited
{
	font-weight: bold;
	color: #282828;
	padding-left: 5px;
	padding-right: 5px;
	text-align: center;
	
}



.button a:link, .button a:visited, .new-button:link, .new-button:visited {
	
	background: repeat-x top url("http://i.rentalo.com/g/b/newbutton-0.gif");
	background-color:#FF8902;
	
	color: #000000;
	text-decoration: none;
	
}

.new-button:hover, .button:hover, .button a:hover, .new-button a:hover
{	background: repeat-x top url("http://i.rentalo.com/g/b/newbutton-1.gif");
	background-color: #ffcc00;
	color: #000000;
}


.buttonform,.buttonformsmall
{	border:1px solid #000000 !important;
	border-bottom-width: 2px !important;
	background:repeat-x top center url("http://i.rentalo.com/g/b/newbutton-0.gif");
	background-color: #ff8902;
	font-size:11px;
	padding:1px 5px 1px 5px;
	color: #000000;
	text-decoration: none;
	font-weight: bold;
	white-space: nowrap;
	height:20px;
}

.btn-stop-offers a:link,
.btn-stop-offers a:visited{
	width: 170px;
	height: 28px;
	background-image:url(http://i.rentalo.com/g/buttons/bt-bg-white2.jpg);
	background-position:center;
	background-repeat:no-repeat;
	border:none;
	font-weight: bold;
	font-size:14px;
	color:#282828;
	text-decoration:none;
	float: right;
	padding-top: 9px
}

.btn-remove-itineraries{
	width: 316px;
	height: 25px;
	background-image:url(http://i.rentalo.com/g/buttons/bt-bg-big-blue.jpg);
	background-position:center;
	background-repeat:no-repeat;
	border:none;
	background-color:#0066CC;
	Font-weight: bold;
	float: left;
	cursor:pointer
}

.btn-add-itineraries a:link,
.btn-add-itineraries a:visited{
	width: 227px;
	height: 25px;
	background-image:url(http://i.rentalo.com/g/buttons/bt-bg-big-blue2.jpg);
	background-position:center;
	background-repeat:no-repeat;
	border:none;
	font-weight: bold;
	margin-right: 10px;
	padding-right:50px;
	padding-top: 7px;
	float: right;
	color:#282828;
	text-decoration:none
}

.btn-newsletter2 {
	width: 316px;
	height: 25px;
	background-image:url(http://i.rentalo.com/g/buttons/bt-bg-white-big.jpg);
	background-position:center;
	background-repeat:no-repeat;
	border:none;
	font-weight: bold;
	font-size:12px;
	color:#282828;
	padding-top: 8px;
	text-decoration:none;
}

.btn-submmit-info{
	width: 263px;
	height: 45px;
	background-image:url(http://i.rentalo.com/g/buttons/bt-bg-grey.jpg);
	background-position:center;
	background-repeat:no-repeat;
	border:none;
	background-color:#DDDDDD;
	Font-weight: bold;
	font-size: 19px;
	cursor:pointer;

}





#big-banner
{
	display: block;
	height: 90px;
	width: 728px;
	text-align:center;
	float: right;
	margin-top:16px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
}

html>body #big-banner
{	margin-right: 5px
}

.logo-09{
	width: 230px;
	height: 90px;
	margin: 16px 0 0 17px;
	float: left;
	text-align:left	
}

.slogan_home h1
{	
	font-size: 12px;
	display: inline;
	color: #282828;
	font-weight: bold;
	border-bottom-width: 0px;
}

h1
{	
	border-bottom-width: 0px;
}

.user-btns
{	width: 990px;
	height: 53px;	
}

.search-b
{	width: 199px;
	height: 40px;
	margin: 8px 4px 0 9px;
	float:left;
	text-align:left
}

.search-in
{	width: 170px;
	height: 20px;
	border:none;
	color:#666666;
	margin:5px 0px 0px 8px
}

.close-adv
{	
	width: 114px;
	height: 9px;
	float: left;
	margin-left: 78px;
	margin-top: 0px;
	display: block;
	padding-top: 0px;
}

.close-adv a:link
{	
	margin-top: 0px;
	padding-top: 0px;
	display: block;
}

.icon-img
{
width: 40px;
height: 31px;
float: left;
margin: 5px 7px 0 8px
}

.welcome-login
{
font-family: Arial,Helvetica,sans-serif;
color:#FFFFD5;
font-size: 14px;
float: left;
text-align: left;
height: auto;
margin: 16px 0 0 8px;
width:auto
}

.traveler-log

{	font-family: Arial,Helvetica,sans-serif;
	color:#FFFFD5;
	font-size: 14px;
	float: left;
	text-align: left;
	height: auto;
	margin-top: 16px;
	margin-right: 7px;
	margin-bottom: 0pt;
	margin-left: 8px;
	width:auto
}

.box-r-btns
{	width: 335px;
	height: 53px;
	float: right;
}

.home-09-btn a:link,
.home-09-btn a:visited
{	width: auto;
	height: 20px;
	float: left;
	margin: 16px 0 0 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	color:#FFF;
	letter-spacing: -1px;
	text-decoration:none;
}

.home-09-btn a:hover
{	color:#666;
	text-decoration:underline
	}
	
.sign-09-btn a:link,
.sign-09-btn a:visited
{	width: auto;
	height: 20px;
	float: left;
	margin: 16px 0 0 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	color:#FFF;
	letter-spacing: -1px;
	text-decoration:none;
}
.sign-09-btn a:hover
{	color:#666;
	text-decoration:underline
	}
	
.help-09-btn a:link,
.help-09-btn a:visited
{	width: auto;
	height: 20px;
	float: left;
	margin:16px 0 0 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	color:#FFF;
	letter-spacing: -1px;
	text-decoration:none;
}
.help-09-btn a:hover
{	color:#666;
	text-decoration:underline
	}
	
.adv-box-1
{
	width: 289px;
	height: 146px;
	position: absolute;
	margin-top: -3px;
	display: block;
}

.adv-box
{	width: 289px;
	height: 133px;
	background-image:url(http://i.rentalo.com/g/home-rentalo/base1.jpg);
	background-position:0px -53px;
	background-repeat:no-repeat;
	float:left
}

.box-availability
{	width: 268px;
	height: auto;
	float: left;
	margin-left:5px;
	margin-top: 12px;
	font-size:13px
}

.from-box
{	width: 85px;
	height: 25px;
	text-align:center;
	border: 1px solid;
	border-color:#CCCCCC;
	background-color:#FFFFFF;
	font-size: 13px;
	font-weight:bold;
	padding-top: 7px
}

.from-box-2
{	width: 55px;
	height: 22px;
	border: 1px solid;
	border-color:#CCCCCC;
	background-color:#FFFFFF
}

.option-3-box
{	font-size: 11px;
	color:#333333;
	width: 270px;
	height: auto;
	float:left;
	text-align:left;
	margin-left: 3px;
	margin-top: 10px
} 
.btn-box-adv
{	width: 114px;
	height: 10px;
	float:left;
	margin-left: 69px;
	margin-top: 5px
}

.footer-09
{	width: 100%;
	height: 100px;
}

.footer-up
{	
	width: 100%;
	height: 140px;
	background-image:url(http://i.rentalo.com/g/header-footer-09/footer-11.jpg);
	background-repeat: repeat-x;
	
	//background-color: #333333;
}

#links-footer-09
{
	padding-top: 3px
}

#links-footer-09, #links-footer-09 a
{	color:#FFFFD5;
}

#links-footer-09 a:hover
{	color: #FFFFCA;
	text-decoration:none;
}

#content #bottom
{	height: 5px;
	display: block;
	clear: both;
	font-size:5px;
}

#content
{	background-color:#FFFFFF;
	clear: both;
	text-align: left;
}

#content
{	width: 990px;
	border-top-width: 1px;
	display:block;
	height:inherit
}
#navigation-bar
{	
	
	padding:4px 0px 5px 8px;
	clear: both;
	font-size:11px;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	display:block;
	min-height:14px;
	width:auto;
}

#navigation-bar a
{	color: #666666;
	margin:0px 3px 0px 3px;
}

#navigation-bar a:hover
{	text-decoration:none;
width:auto
}

.head-1-09
{	width: 990px;
	height: 114px;
}

.recommended
{	width: 970px;
	height: 10px;
	font-family: Arial,Helvetica,sans-serif;
	color: #333333;
	font-size: 11px;
	font-weight: normal;
	float: left;
	text-align: left;
	padding-bottom: 5px;
	border-bottom: 1px dotted #333333;
	margin-top: 25px;
	margin-bottom: 15px;
	margin-left: 5px
}

.recommended-pic
{	width: 681px;
	height: 50px;
	float:left;
	text-align: center;
	margin: 5px  0px 25px 120px;
	background-image:url(http://i.rentalo.com/g/home-rentalo/base1.jpg);
	background-position:0px 4px;
	background-repeat:no-repeat
	
}
htlm>body .recommended
{	margin-left: 10px
}

.hide 
{	display: none !important;
}

#titles-main
{	font-size:20px;
	letter-spacing:-1px;
	color:#F30;
	border:0px;

}

.subscribe_home_container{
/*	width: 505px; 
	height: 30px; 
	text-align: left; 
	margin: auto;
*/
	display:-moz-inline-stack;
	display:inline-block;
	zoom:1;
	*display:inline;	
	height: 30px;
	margin-bottom:10px;
}

.subscribe_home_link_container{
	float: left; 
	margin: 5px;
	height:30px;
}
.subscribe_home_button{
	margin-left: 4px;
	margin-right:5px; 
	background-color: #FC7812; 
	color: white; 
	border:1px solid #FC7812;
}

.pipe{
	float:left;
	margin-top:3px;
}

.subscribe_home_wrapper{
	float:left;
}

.subscribe_container_left{
	margin-left:45px;
}

