﻿@import url(layout.css);
body {
	color: #000;
	font-size: small;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	/* background-color: #abc; */
	background-color: #d6e3eb;
}


/* ~~ 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;
}
/* Para crear una columna del 50% a la izquierda */
.divCol50l {
	padding: 0;
	padding-right:1em;
	float: left;
}
/* Para crear una columna del 50% a la derecha */
.divCol50r {
	padding: 0;
	padding-left:1em;
	float: left;
}


#container {
	width: 750px;
	/* margin: 0 auto; */
	margin: 0 auto;
	padding-top: 1px;
	background-color: #eaf7ff;
	/* background: #fff; */
	/* background: #fff url(../images/bkgd_tile.gif) top;
	background-repeat: repeat-y; */
}
#masthead {
	text-align: right;
	margin-right: 5px;
	margin-left: 5px;
	margin-top: 10px;	
	width: 635px;
	padding: 0;
	padding-left: 100px;
	padding-right: 5px;
	padding-top: 10px;
	background-color: #d6e3eb;
}
#navigation {
	margin-right: 10px;
	margin-left: 10px;
	background-color: #d3d3d3;
	overflow: hidden;
}
#sidebar {
	float: left;
	width: 100px;
	background-color: #e0eef7; /* #cdf; */
	position: relative;
	clear: both;
	display: inline;
	margin-right: 2px;
	margin-left: 5px;
	margin-top: 5px;
	margin-bottom: 10px;
	padding-left: 1px;
}
#column_l {
	width: 620px;
	/* top right botton left */
	margin: 5px 2px 5px 5px;
	padding: 0 2px 0 2px;
	background-color: #fff;
	border: 2px #d6e3eb dotted;
}
/*
#column_r {
	width: 170px;
	margin: 0;
	float: right;
	background-color: #eef;
	position: relative;
	right: 5px;
	padding-right: 5px;
	padding-left: 5px;
}
*/
#footer {
	text-align: center;
	background-color: #89a;
	margin-right: 10px;
	margin-left: 10px;
	overflow: hidden;
	padding: 2px;
}
/* Styles for Masthead */
#masthead img {
	float: left;
}
#masthead p {
	color: #000;
	font-size: x-small;
	text-align: right;
	margin: 10px 10px 0 10px;
}
#masthead h2 {
	color: #da251c;
	font-size: 1.90em;
}

/* Styles for Navigation */
#sidebar ul {
	list-style-type: none;
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
}
#sidebar li {
	display: block;
	border: 1px solid #cdf;
	color: #04b;
	padding: 2px;
}
#sidebar a {
	/* font-weight: bold; */
	text-decoration: none;
	color: #04b;
	display: block;
	padding: 3px;
	border-bottom: 1px solid #f9f9f9;
}
#sidebar a:hover {
	font-weight: bold;
	text-decoration: none;
	color: #04b;
	border-bottom: 1px solid #f9f9f9;
	background-color: #f9f9f9;
}

/* Styles for Navigation */
#navigation ul {
	list-style-type: none;
	width: 100%;
	margin: 0;
	padding: 0;
}
#navigation li {
	float: left;
	color: #000;
	text-decoration: none;
	margin:0px;
	padding:1px;
	/* margin: 0 0px; */
	/* padding: 2px; */
	display: block;
	border: 1px solid #d3d3d3;
}
/*
#navigation a {
	color: #000;
	text-decoration: none;
	margin: 0 1px;
	padding: 5px;
	display: block;
	border: 1px solid #d3d3d3;
}
*/
#navigation a:hover {
	background-color: #f2f2f2;
	border: 1px solid #f2f2f2;
}

/* Styles for Content */
h1 {
	color: #965;
	font-size: 2.0em;
}
h2 {
	color: #965;
	font-size: 1.75em;
}
h3 {
	color: #965;
	font-size: 1.5em;
}
h4 {
	color: #965;
	font-size: 1.25em;
}
h5 {
	color: #965;
	font-size: 0.75em;
}
h6 {
	color: #965;
	font-size: 0.5em;
}
big {
	color: #965;
	font-size: medium;
}
/*
#column_r p {
	color: #000;
	font-size: x-small;
	text-align: left;
	margin: 0;
	padding: 5px;
}
#column_r h4 {
	margin-bottom: 0;
}
#column_r ul {
	margin-left: 5px;
	padding-top: 0;
	padding-left: 10px;
}
#column_r ul li {
	font-size: x-small;
	display: list-item;
	list-style-position: outside;
}
*/

/* Styles for Footer */
#footer p {
	color: #fff;
	font-size: x-small;
	margin-top: 2px;
	margin-bottom: 6px;
}
#footer a {
	color: #fff;
	text-decoration: underline;
}
#footer a:hover {
	color: #000;
	text-decoration: none;
}
/* Styles for Links */
a {
	color: #456;
	text-decoration: underline;
}
a:hover {
	color: #965;
	text-decoration: underline;
}
.style_bold {
	font-weight: bold;
}
.style_italic {
	font-style: italic;
}