/* CSS Document */
/*configuracion gneral
----------------------------*/

* { margin:0px; padding:0px;}/*reseteo de margenes*/
a:link,a:visited,a:active,a:hover {text-decoration: none;}/*reseteo de links*/

body {
	text-align: center; /* Centra el container en la ventana */
	background-color: #DDD;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #222;
}
/*titulos*/
h1 {font-size: 150%;}
h2 {font-size: 120%;}
h3 {font-size: 100%;}

/*Layout
-------------------------------*/

#container {
	width: 740px;
	text-align: left; /* Restablece text-align a la izquierda (ver body) */
	background-color: #FFF;
	margin-right: auto;
	margin-left: auto;
	margin-top:20px;
}



/* Header
----------------------------------*/
#header {
	width:740px;
	height:210px;
	background-image: url(../images/fondo_header.png);
	background-repeat: repeat-x;
	background-color: #FFF;
}
#header img {

	float:left;	
}
#header a img {
	border:none;
}
#header h1 {
	margin-left:20px;
	margin-top:30px;
	float:left;	
}


/* Menu horizontal
----------------------------------*/


#header ul {
	margin-left:180px;
	padding-top:130px;
}
#header li {
	list-style-type: none;
	float:left;
}
#header li a:link,#header li a:visited,#header li a:active {
	font-size:10px;
	color:#FFF;
	font-weight:700;
	display:block;
	text-align: center;
	margin-top:12px;
	margin-left:20px;
	margin-right:20px;
}
#header li a:hover {
	font-size:10px;
	color:#333;
	font-weight:700;
	display:block;
	text-align:lcenter;
	margin-top:12px;
}


/*Menu contextual
------------------------------*/
#menu_contextual {
	float: left;
	width: 160px;
}

#menu_contextual li {
	list-style-type: none;
	margin-top: 20px;
	margin-left: 20px;	
}
#menu_contextual li a:link,#menu_contextual li a:visited,#menu_contextual li a:active {
	color:#666;
	font-weight:400;
	height:15px;
	width:160px;
	display:block;
}
#menu_contextual li a:hover {
	color:#000;
	font-weight:400;
	height:15px;
	width:160px;
	display:block;
}

/* Contenido
-----------------------------*/

#contenido {
	margin-left:180px;
	padding-top: 20px;
	margin-bottom:20px;
	min-height:250px;
}

#contenido p {
	margin-right:180px;
	letter-spacing: 1px;
	margin-bottom: 8px;
	line-height: 20px;
}
#contenido h1 {
	letter-spacing: 1px;
	margin-bottom: 20px;
}
#contenido h2 {
	letter-spacing: 1px;
	margin-bottom: 20px;
}
#contenido h3 {
	letter-spacing: 1px;
	margin-bottom: 12px;
}
#contenido a:link, a:visited, a:active {
	letter-spacing: 1px;
	margin-bottom: 12px;
	color: #666666;
	font-weight:400;
}
#contenido a:hover {
	letter-spacing: 1px;
	margin-bottom: 12px;
	color: #000;
	font-weight:400;
}
#contenido ul {
	margin-left: 30px;
}
#contenido li {
	list-style-type: circle;
	line-height: 17px;
}

#contenido a img {
	/*float:left;*/
	margin-right:5px;
	margin-bottom:5px;
	border:1px solid #999999;
}

/* Footer 
-----------------------------*/

#footer {
	width:740px;
	height:120px;
	margin-top: 0px;
	text-align:left;
	background-color: #BCBDB8;
}
#footer address {
	margin-left: 20px;
	padding-top: 20px;
	color: #FFF;
	font-style: normal;
}

/* Forms
----------------------------*/
fieldset {
	width:540px;
}

fieldset {
	padding:0px;
	margin-bottom:10px;
	border:none;
}
legend {
	font-weight:bold;
	margin-bottom:10px;
}
label {
	display:block;
	font-size:90%;
}
input {
	border:1px solid #999;
}
textarea {
	border:1px solid #999;
}

input[type=submit], input[type=reset] {
	border:1px solid #666666;
	font-weight:bold;
	cursor:pointer;
}
input[type=submit]:hover, input[type=reset]:hover {
	background-color:#FFF;
	border: 1px solid #666666;
}
input[type=submit]:active, input[type=reset]:active {
	background-color:#999;
	color:black;
} 


/* Clases
----------------------------*/

#contenido .firma{
	font-style: italic;
	text-align: center;
	margin-top:40px;
}

