/* CSS Document */

/*****************/
/*Elementos HTML*/
/*****************/

* {
	margin: 0; padding: 0;
} 
body {
	margin: 0; padding: 0;
	font: 71%/1.5em Georgia, "Times New Roman", Times, serif;
	color: #000;	
	text-align: center;		
}

/* links */
a {
	background: inherit;
	color: #F6A105;
}
a:hover {
	background: inherit;
	color: #FFB900;
}

/* headers */
h1, h2, h3 {
	font: italic bold 1em Georgia, "Times New Roman", Times, serif;
	text-transform: uppercase;
	color: #FFB900;
}
h1 { font-size: 1em; }
h2 { font-size: 0.8em; }
h3 { font-size: 0.7em; text-transform: none;}

#sidebar h1 {
	padding: 10px 0px 5px 30px;
	margin: 0;
	text-transform: uppercase;	
}
p, h1, h2, h3 {
	margin: 10px 15px;
}
ul, ol {
	margin: 10px 30px;
	padding: 0 15px;	
	color: #F6A105;	
}
ul span, ol span {
	color: #666666;
}

/* imagenes */
img {
	border: 2px solid #CCC;
}
img.float-right {
  margin: 5px 0px 5px 15px;  
}
img.float-left {
  margin: 5px 10px 5px 0px;
}
a img {  
  border: 2px solid #A82E95; /* #32CD32; */
}
a:hover img {  
  border: 2px solid #806B4D !important; /* IE fix*/
  border: 2px solid #72A545; /* #32CD32; */
}

/*****************/
/* Plantilla     */
/*****************/
#frame {
	margin: 0 auto;
   	width: 700px;  	
	text-align: left;		
	background: #FFF;	
}

#content-frame {
	float: right; /* No es Seguro esto */
	padding: 0;
	margin: 0;
	border: 0px;
	width: 700px;
}

/* Cabecera */
#header {
	position: relative;
	/*background: url(headerbg-green.gif) repeat-x;*/
	height: 100px;	
}
#header h1#logo a{
	position: absolute;
	margin: 0;
	padding: 0;
	font: bolder 3em  Georgia, "Times New Roman", Times, serif;
	color:#FFB900;
	text-transform: none;
	text-decoration: none;
	/* change the values of top and Left to adjust the position of the logo*/
	top: 18px;
	left: 30px;
	width: 442px;
	height: 44px;
}
#header h2#slogan {
	position: absolute;
	margin: 0;
	padding: 0;
	font: italic 1.5em Georgia, "Times New Roman", Times, serif;
	text-transform: none;
	color: #000;
	/* change the values of top and Left to adjust the position of the slogan*/
	top: 54px;
	left:326px;
	width: 174px;
}

#header h2#language a{
	position: absolute;
	margin: 0;
	padding: 0;
	font: 1em Georgia, "Times New Roman", Times, serif;
	text-transform: none;
	/* change the values of top and Left to adjust the position of the slogan*/
	top: 85px;
	left: 650px;
	width: 20px;
}

/* Columna Principal */
#main {
	float: left;
	margin-left: 15px;
	padding: 0;
	border-left: 1px solid #f2f2f2;
	width: 74%; /* ie5win fudge begins */
	voice-family: "\"}\"";
	voice-family:inherit;
	width: 70%;
}
html>body #main {
	width: 70%; /* ie5win fudge ends */
}

/* Barra Lateral */
#sidebar {
	float: left;
	width: 26%; /* ie5win fudge begins */
	margin: 0;	padding: 0; 
	voice-family: "\"}\"";
	voice-family:inherit;
	width: 22%;
	/*display: inline;	*/
}
html>body #sidebar {
	width: 22%; /* ie5win fudge ends */
}
#sidebar ul.sidemenu {
	list-style: none;
	text-align: left;
	margin: 0 0 8px 0;	
	padding-right: 0;		
	text-decoration: none;
}
#sidebar ul.sidemenu li {
	border-bottom: 1px solid #EFF0F1;
	/*background: url(arrow.gif) no-repeat 2px 5px;*/
	padding: 2px 5px 2px 20px;	
}
* html body #sidebar ul.sidemenu li { height: 1%; }

#sidebar ul.sidemenu a {
	font-weight: bold;
	background-image: none;
	text-decoration: none;	
}

/* footer */
#footer {
	clear: both;
	/*background: #FFF url(footerbg.gif) repeat-x left top;*/
	/*border-top: 1px solid #F2F2F2;*/
	text-align: center;	
	height: 50px;	
}
#footer a {
	text-decoration: none;
	
	font-weight: bold;
}
#footer p {
	color: #808080;
}
/* navegacion */
#menu {
	clear: both;
	margin: 0; padding: 0;	
}
#menu ul {	
	position: relative; 
	bottom: 4px;
	margin: 0; padding: 0;	
	float: left;
	font: bold 1em Georgia, "Times New Roman", Times, serif;
	width: 700px;/* 775px; */
	border: 1px solid #808080;
	border-width: 0 0 4px 0;	
	list-style: none;
}
#menu ul li{
	display: inline;	
}
#menu ul li a {	
	position: relative; bottom: -3.8px;
	float: left;
	color: #808080;
	padding: 0px 10px;
	text-decoration: none;
	background: white url(../../styles/menudivide.gif) repeat-y right top; 
	border-bottom: 4px solid #808080; 	
}
#menu ul li a:hover{
	color: black;
	background-color: #F3F3F3; 
	border-bottom: 4px solid #FFB900;
}
#menu ul li#current a{
	color: #333;
	background-color: #F3F3F3; 
	border-bottom: 4px solid #FFB900;
}


/* Clases de Alineamiento */
.float-left   { float: left;}
.float-right  { float: right; }
.align-left   { text-align: left; }
.align-right  { text-align: right; }
.align-center { text-align: center;	}
.align-justify { text-align: justify; }
