﻿@import url("layout.css");
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	/* background-color: #f2f2f7; */
    background-color: #feed01; /* lightyellow; */
	/*
	background-image: url("../images/background.gif");
	background-repeat: repeat;
	background-attachment: scroll;
	*/
}
/* === Inicio DIVs para los formularios === */
/* ~~ this fixed width container surrounds all other divs~~ */
.divRow1 {
	width: 95%;
	/* background: #FFF; */
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	overflow: hidden; /* this declaration makes the .container understand where the floated columns within ends and contain them */
	padding-bottom: 15px;
}

/* ~~ These are the columns for the layout. ~~ 
1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.
3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
*/
.divCol1 {
	float: left;
	width: 30%;
	/* padding-bottom: 10px; */
	text-align:right;
	/* font-size:x-small; */
	padding-right:5px;
}
.divCol2 {
	padding: 0;
	width: 65%;
	float: left;
}

.divCol1a {
	float: left;
	width: 85%;
	text-align:center;
	padding-right:5px;
}
.divCol2a {
	float: left;
    width: 10%;
    text-align:right;
	padding: 0;
    margin-top:8px;
}

/* === Fin DIVs para los formularios === */

#container {
	width: 95%; /* 1000px; */
	margin: 10px auto;
    /* background-color: lightyellow; */
}
#masthead {
	text-align: center;
	width: 100%; /* 898px; */
	border-top: 1px solid #dcdcdc;
	border-right: 1px solid #a9a9a9;
	border-bottom: 1px solid #808080;
	border-left: 1px solid #a9a9a9;
	background-color: #feed01; /* lightyellow; */ /* #fafaff; */
}
#navigation {
	position: relative;
	float: left;
	width: 38%; /* 148px; */
	margin-top: 10px;
	margin-bottom: 10px;
	border-top: 1px solid #dcdcdc;
	border-right: 1px solid #a9a9a9;
	border-bottom: 1px solid #808080;
	border-left: 1px solid #a9a9a9;
	background-color: lightyellow; /* #fff; */
}
/* para el formulario de reserva de la página principal */
#navigation2 {
	position: relative;
	float: left;
	width: 40%; /* 400px; */ /* 50%; */
	margin-top: 10px;
	margin-bottom: 10px;
    padding-top: 8px;
	border-top: 1px solid #dcdcdc;
	border-right: 1px solid #a9a9a9;
	border-bottom: 1px solid #808080;
	border-left: 1px solid #a9a9a9;
	background-color: lightyellow; /* #fff; */
}
#content {
	float: left;
	width: 58%; /* 550px; */ /* 50%; */ /* 734px; */
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 4px;
	margin-right: 2px;
	padding: 4px;
	border-top: 1px solid #dcdcdc;
	border-right: 1px solid #a9a9a9;
	border-bottom: 1px solid #808080;
	border-left: 1px solid #a9a9a9;
	background-color: lightyellow;
}
#content2 {
	float: left;
	width: 99%;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 2px;
	margin-right: 2px;
	padding: 4px;
	border-top: 1px solid #dcdcdc;
	border-right: 1px solid #a9a9a9;
	border-bottom: 1px solid #808080;
	border-left: 1px solid #a9a9a9;
	background-color: lightyellow;
}
#footer {
	text-align: center;
	clear: both;
	width: 100%; /* 898px; */
	padding-top: 5px;
	padding-bottom: 5px;
	border-top: 1px solid #dcdcdc;
	border-right: 1px solid #a9a9a9;
	border-bottom: 1px solid #808080;
	border-left: 1px solid #a9a9a9;
	background-color: lightyellow; /* #fefeff; */
}
/* Masthead Styles */
#masthead h1 {
	color: #3d6c87;
}
#masthead h3 {
	color: #5f8ea9;
}
/* Navigation Styles */
#navigation ul {
	list-style-type: none;
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
}
#navigation li {
	display: block;
	margin: 0;
	padding: 0;
	border: 1px solid #fff;
	/* background-color: #fff; */
}
#navigation a {
	/* color: #3d6c87; */
	color: #064078;
	text-decoration: none;
	display: block;
	padding: 5px;
	border: 1px solid #fff;
	/* background-color: #fff; */
}
#navigation a:hover {
	color: #fff;
	text-decoration: none;
	border: 1px solid #5f8ea9;
	background-color: #5f8ea9;
}
/* Content Styles */
#content #content2 h1,h2,h3,h4,h5,h6 {
	color: #3d6c87;
}
#content2 h2 {
	text-align:center;
}
#content #content2 img {
	padding: 5px;
	border: 1px solid #808080;
}
/* Footer Styles */
#footer h4 {
	color: #064078;
	margin: 0px;
	padding: 0px;
}
#footer h6 {
	color: #064078;
	/* margin: 0px;
	padding: 0px; */
    font-size:xx-small;
    font-weight:normal;
    text-align:center;
}
#footer p {
	/* color: #808080; */
	/* color: #064078; */
	margin-top: 5px;
	margin-bottom: 10px;
}
#footer a {
	/* color: #5f8ea9; */
	color: #064078;
	text-decoration: underline;
}
#footer a:hover {
	color: #33627d;
	text-decoration: none;
}
a {
	color: #5f8ea9;
	text-decoration: underline;
}
a:hover {
	color: #33627d;
	text-decoration: underline;
}
.style_bold {
	font-weight: bold;
}
.style_italic {
	font-style: italic;
}