﻿@charset "utf-8";
/* CSS Document */
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #E7E7E7;
	margin: 0; 
	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;
}

.clear {
	clear:both;
}

a {
	color:#2CA7F3
}
	
a:hover{ text-decoration:none
}

a img {
	border:none;	
}

#container {
	width: 710px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding:0px;
	background-color: #FFFFFF;
	background-image: url(../images/page_bg.png);
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
}

#container #logo{
	padding:0 20px 0 52px;
	width: auto;
}

#container #logo h1{
	padding:0px;
	margin:0px;
}

#language-display{
	margin:0px;
	width:auto;
	float:right;
	text-align:right;
	font-family: Tahoma;
	font-size: 11px;
	font-weight: bold;
	color: #333333;
	padding-top: 5px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 0px;
}

#language-display ul{
	list-style-type: none;
	padding:0; margin:0; display:inline;
}
#language-display ul li{
	display: inline;
	padding: 3px;
}

#container #above-header {
	padding: 0px;
	width: auto;
	margin-right: 20px;
	float:right;
}

#container  #header {
	background-image: url(../images/header_image.png);
	background-repeat: no-repeat;
	height: 149px;
	width: 680px;
	padding: 20px 10px 0 20px;
	margin:0;
}
#container  #header #page_quote {
	width: 220px;
	height:75px;
	margin:0;
	padding:20px 0 0 33px;
}
#container  #header #page_quote h3{
	color:#2CA7F3;
	font-size:18px;
	font-family: Tahoma, tahoma, Verdana, Arial;
	line-height: 110%;
	font-weight: normal;
	padding:0;
	margin:0;
}
#container  #header #quote_button{
	padding-left:15px;
	margin:10px 0 0 0;
}

#container  #header #quote_button a{
	display:block;
	width:203px;
	height:30px;
	background: url(../images/quote.png);
	line-height: 30px;
	font-size: 13px;
	text-align: center;
	color: #00B0F0;
	font-weight: bold;
	text-decoration: none;
}
 .notblue{color:#333333}
 
#container #header #quote_button a:hover {
	display:block;
	width:203px;
	height:30px;
	background-image: url(../images/quote.png);
	background-position: 0px -30px;

}

#container  #end-header{
	background-image: url(../images/back_cont.png);
	background-repeat: no-repeat;
	height: 34px;
	width: 710px;
}

#container  #left{
	float: left;
	width: 223px;
	padding:0 20px 0 25px;
	background-image:url(../images/menu_shadow.png);
	background-repeat:no-repeat;
	background-position:14px 0;
}

#container  #mainContent {
	padding:20px 20px 0 0;
	color:#444444;
	font-family:Tahoma;
	font-size:11px;
	line-height:14px;
	text-align:justify;
	float:left;
	width:411px;
}

#container  #footer {
	font-family:Tahoma;
	color:#627074;
	font-size:10px;
	background-image: url(../images/footer.gif);
	background-repeat: no-repeat;
	background-position:bottom;
	background-color:#E7E7E7;
	padding: 10px 30px 20px;
	height:70px;
}

#container  #footer a {
	font-size:10px;
	text-decoration:none;
}

#container  #footer p {
	
	margin:0; padding:0;
}

#container  #topfade{
	background-image: url(../images/page_top_corners.png);
	background-repeat: no-repeat;
	height: 28px;
	width: 710px;
	margin: 0px;
	padding: 0px;
}

a.nodeco:visited, a.nodeco:active, a.nodeco:link, a.nodeco{
	font-weight: normal;
	text-decoration: none;
	color: #444444;
}

a.nodeco:hover{
	color: #0099CC;
	text-decoration: underline;
}

.componentheading, h1, h1 a, h2, h2 a{  /* This sets the style for the h1 and h2 headings. "h2 a" controls the hyperlinks on the h2...*/
	color:#2CA7F3;
	font-size:18px;
	font-weight:normal;
	line-height:19px;
	text-align:left;
	text-decoration:none; /*this gets rid of the default underlining of h2 and h1 links */
}
h1 a:hover, h2 a:hover{
	text-decoration:underline; /* This adds the underline when you hover your mouse over a heading */
}
h3 {
	text-align:left;
}
ul.menu, ul.menu li {
	margin:0;
	padding:0;
	list-style-type: none;
}

ul.menu li {
	/* Here I set a background image on the main list elements */
	background-image:url(../images/m4_2.png);
	background-position:0px 42px;
	height:42px;
	line-height:42px;
	position:relative;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #dfdfdf;
}

ul.menu li div {
	/* We add a div inside the li tag which has the darker background image 
	   We set this div's opacity to 0 (2 rules for opacity to keep IE6 happy (see ie6.css) */
	display:block;
	background-image:url(../images/m4_2.png);
	background-position:0 0;
	padding:0;
	margin:0;
	height:42px;
	line-height:42px;
	border-top:1px solid #dfdfdf;
	opacity:0;
}

ul.menu li#current div {
	opacity:1;
}

ul.menu li a {
	/* Straight up anchor tag, nothing fancy here apart from it's positioned "absolutely",
	    as the sibling div is taking up all the natural space in the <li> tag             */
	position:absolute;
	top:0;
	left:0;
	display:block;
	width:183px;
	height:42px;
	font-family:"Lucida Console", Monaco, monospace;
	font-size:10px;
	font-weight:bold;
	text-decoration:none;
	color:#444444;
	z-index:2;
	text-transform: uppercase;
	padding:2px 20px 0 30px;
	letter-spacing: 1px;
}

ul.menu li a:hover {
	/* set hover style on anchor */
	color:#2CA7F3;

}
#current a{

}

.chronoform{
	display: none;
}
#component-contact{
	width:300px;
	
}
.xmap{
	width: 350px;
}
.xmap ul{
	list-style-type: none;
}
  #container  #footer a:visited{
	color: #0099CC;
	text-decoration: none;
} #container  #footer a:hover{
	color: #0099CC;
	text-decoration: underline;
}
.footer_privacy a, .footer_privacy {
	font-size:10px;
	text-decoration:none;
}

td{vertical-align:top;}
form{margin:0;padding:0;}

#boletin{
	background-image: url(../images/boletin.png);
	padding-left: 20px;

}	#newsletter{
	background-image: url(../images/newsletter.png);
	padding-left: 15px;
}

#newsletter, #boletin{
	background-repeat:no-repeat;
	height: 136px;
	padding-top: 42px;
	padding-right: 25px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #006699;
	text-align:center;
	margin-left:8px;
	font-weight: bold;
	line-height: 24px;
}
#newsletter input, #boletin input{
	width:100px;
}
.mainnewsletter{
	margin:0;padding:0;
}