@charset "utf-8";
/* CSS Document */
<!--
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #ffffff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

/*BUGS IEXPLORER*/

/*Problema: En Internet Explorer 7 las imágenes que intentemos achicar se verán pixeladas. Esto es debido a que la propiedad de escalado por el método bicubic está deshabilitada por defecto.
Solución: Debemos activarla nosotros desde nuestro CSS indicando que los elementos recibirán ese estilo:*/
img{
  -ms-interpolation-mode: bicubic;
}

/*Esto no es un bug, pero hace doler la cabeza como si lo fuera. El problema es que las imagenes que están dentro de un enlace, se muestran con un borde azul feo. Con esto se lo quitamos:*/
a img{
  border: none;
}

.clear {
	clear:both
}


/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.oneColElsCtrHdr #container {
	width: 56em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 1px solid #000000;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.oneColElsCtrHdr #header { 
	background: #000000; 
	color: #ffffff;
	width:100%;
	height:3em;
	//height:40px;/*only IE*/
	border-bottom:#fff solid;
	//padding-top: 15px;/*only IE*/
} 
.oneColElsCtrHdr #title { 
	padding-left: 20px;
	margin-top: -5px;
	//margin-top: 0px;/*only IE*/
	float:left;
	width:40%;
	height:3em;
}
.oneColElsCtrHdr #navcontainer{
	padding: 0px;
	margin: 0px;
	float:right;
	width:50%;
	height:3em;
}

.oneColElsCtrHdr #navlist li
{
	display: inline;
	list-style-type: none;
	padding-right: 20px;
	float:right;
}

.oneColElsCtrHdr #navcontainer ul li a
{
	color: #ffffff;
	text-decoration: none;
	font-size:14px;
}

.oneColElsCtrHdr #navcontainer ul li a:hover
{
	color: #aaaaaa;
	font-size:14px;
}

.oneColElsCtrHdr #navcontainer ul li#active a{
	color: #aaaaaa;
	font-size:14px;
}

.oneColElsCtrHdr #mainContent {
	/*padding: 0 20px;*/ /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	clear:left;
}
.oneColElsCtrHdr #titleGallery {
	margin: 5px;
}

.oneColElsCtrHdr #titleGallery a
{
	color: #555555;
	text-decoration: none;
	font-size:24px;
}

.oneColElsCtrHdr #titleGallery a:hover
{
	color: #888888;
	font-size:24px;
}

.oneColElsCtrHdr #about {
	z-index:600; 
	background-color:#000; 
	color:#ffffff; 
	height:260px;
	width:54.1em;
	position:absolute;
	top:3em;
	//top:3.5em;/*only IE*/
	padding:15px;
	margin-top: 3px;
	display:none;
}

.oneColElsCtrHdr #about a{
	color:#C8DCE5;
}
.oneColElsCtrHdr #about h3{
	color:#CC99FF;
}
.oneColElsCtrHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	border-top:#fff solid;
} 
.oneColElsCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.oneColElsCtrHdr #copyright {
	margin: 0;
	padding: 10px 0;
}

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

#copyright a:hover{
	color:#333333;
	text-decoration:underline;
}
