/* Start of CMSMS style sheet 'Layout: Estilos AED' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
   width:895px;
}

/* TODOS LOS INPUTS */
input
{
	border:1px solid #CCCCCC;
}
/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #18507C; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #18507C;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-image:url(images/cms/aed/bgropt.gif);
   color: #385C72;
}

/*****************
basic layout 
*****************/
body {
   background-color: #ffffff;
   color: #000066;
   margin:0.1em; /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   /*border: 1px solid black;*/
   margin: 0 auto;     /* this centers wrapper */
   max-width: 80em; /* IE wont understand these, so we will use javascript magick */
   min-width: 60em;
   background-color: #fff;
   color: black;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {      /* dimensiones de la cabecera del portal */
   height: 115px; /* adjust according your image size */
   background-color: #ffffff;           
   background-image:url(uploads/images/aed/header3.gif);
   background-repeat:no-repeat;
}

div#header h1 a {
/* you can set your own image here */
   background: #385C72 url(images/cms/logo1.gif) no-repeat 0 12px; 
   display: block; 
   height: 80px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#contentHeader{
	vertical-align:top;
	margin:0px;
	padding:0px;
}
div#search {   
   width: 95%;
   margin: 0;
   font-size: 90%;   
}

div.breadcrumbs 
{
   float:left;
   font-size: 85%; /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0;         /* css shorthand rule will be opened to be "0 1em 0 1em" */
   /*border-bottom: 1px dotted #000;
   border-top: 1px dotted #000;*/
   height:18px;
}

div#content {         /* bloque central de contenidos de la plantilla*/
   margin: 0.2em auto 0em 0; /* some air abobe and under menu and content */
   /*background-image:url(images/cms/aed/bgleft.gif);*/
   background-repeat:repeat-y;

}

div#main                                            /* bloque principal de contenidos de la plantilla*/
{	
	float:left;
	padding-right: 2px;
	padding-top: 5px;
	padding-bottom: 3px;
	padding-left: 7px; /* this will give room for bg border*/
	/*margin-left: 29%; *//* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
	margin-right: 0; /* and some air on the right */
	margin-bottom: 2px;
	/*background-image: url(images/cms/aed/bgleft.gif);*/
	background-repeat: repeat-y;
	height: 410px;
	border-right: #9cd8de 2px solid;
	border-top: #9cd8de 2px solid;
	border-left: #9cd8de 2px solid;
	border-bottom: #9cd8de 2px solid;
	overflow-y:auto;
             overflow-x:none;
	width:598px;
	line-height: 1.5em;
}

div#main .contentBox50
{	
	width:47%;
	margin-left:1%;	
	border-right: dashed 1px #83CBDE;
	border-top: solid 1px #83CBDE;
}

div#main .contentBox50R
{
	float:right;	
	width:47%;
	height:150px;
	margin-left:1%;
	overflow:none;
	border-right: dashed 1px #83CBDE;
	border-top: solid 1px #83CBDE;
}

div#main p
{
font-size:90%;
}

div#main .contentBox100
{
	float:left;	
	width:98%;
	padding:1%;
	height:30%;	
}

div#rsidebar {
   float: right; /* set sidebar on the left side. Change to right to float it right instead. */
   width: 140px;    /* sidebar width, if you change this please also change #main margins */
   display: block;  /* FIX ie doublemargin bug */
   margin-left: 0;
   /*border-bottom: solid 3px #83CBDE;
   border-left: solid 3px #83CBDE;*/
   padding: 0px;
   /*background-image:url(images/cms/aed/bgsidebar.gif);
   background-repeat:repeat-y;*/
   font-size:90%;
   height: 440px;
   background-image:url(images/cms/aed/bgropt.gif);
}

div#sidebar {
   float: left; /* set sidebar on the left side. Change to right to float it right instead. */
   width: 140px;    /* sidebar width, if you change this please also change #main margins */
   display: block;  /* FIX ie doublemargin bug */
   margin-left: 0;
   margin-right: 2px;
   /*border-bottom: solid 3px #83CBDE;
   border-left: solid 3px #83CBDE;*/
   padding: 0px;
   /*background-image:url(images/cms/aed/bgsidebar.gif);
   background-repeat:repeat-y;*/
   font-size:90%;
   height: 440px;
   background-image:url(images/cms/aed/bgropt.gif);
}

div#sidebar .sideOptionBig,div#rsidebar .sideOptionBig
{
	height:auto;
	width:90%;
	background-image:url(images/cms/aed/bgropt.gif);
	margin-bottom:5px;
	vertical-align:middle;
        padding-left:5px;
        padding-top:3px;
        padding-bottom:3px;
        border:none;
        border-bottom: 3px solid #FFFFFF;
}

div#sidebar .sideOptionBig input,div#rsidebar .sideOptionBig input
{
	width:90%;
	border:1px solid #CCCCCC;
}

div#sidebar .sideOption,div#rsidebar .sideOption
{
	height:24px;
	width:90%;
	background-image:url(images/cms/aed/bgropt.gif);
	margin-bottom:5px;
	vertical-align:middle;
             padding-left:5px;
             padding-top:3px;
        border:none;
        border-bottom: 3px solid #FFFFFF;
}

div#rsidebar #rsideBanner
{
	height:280px;
        width:90%;
	background-image:url(images/cms/aed/bgropt.gif);
	margin-bottom:5px;
	vertical-align:middle;
        padding-left:5px;
        padding-top:3px;
        border:none;
        border-bottom: 3px solid #FFFFFF;
}

div#sidebar .sideOption a,div#rsidebar .sideOption a
{
	display:block;
	width:100%;
	text-decoration: none;
             vertical-align:middle;
}

div#sidebar .sideOption a:hover,div#rsidebar .sideOption a:hover
{
	display:block;
	width:100%;
	font-weight: bold;
	background-image:url(images/cms/aed/bgropt.gif);
}


/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent, div#rsidebar.hascontent{
   padding: 0 1%;
   width: 24%;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #FFFFFF;
   background-color: #2EA3C8;
}

div#footer p {
   font-size: 0.7em;
   padding: 0.5em;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

div#footer p a {
   color: #FFFFFF; /* needed becouse footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 1px dotted black;
}

/* relational links under content */

#relLinks
{
	font-size:0.8em;
             clear: both; 
}

div.left49 {
  float: left;
  width: 49%;  /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}




/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
   color: #0083A2; 
   font-size: 1.5em; 
   text-align: left; 
/* some air around the text */
   padding-left: 0.5em;
   padding-bottom: 1px;
/* set borders around header */
   border-left: 1.1em solid #e7ab0b; 
   line-height: 1em;
/* and some air under the border */
   margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #0083A2; 
   font-size: 1.4em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #294B5F; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}

h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}

#tit1 {
   color: #0083A2; 
   font-size: 1.2em;
   line-height: 1em;
   margin: 1.5em 0 0.5em 0;
}

#tit2 {
   line-height: 150%;
   font-size: 95%;
   color: #666666;
}

#tit3 {
   color: #0083A2; 
   font-size: 0.9em;
   line-height: 1em;
   margin: -1.2em 0 1.5em 0;
}

#tit4 {
   color: #666666; 
   font-size: 0.9em;
   line-height: 1em;
   margin: -0.3em 0 1.5em 0;
}

#tit5 {                   /* texto parecido al sumario en página inicial y de noticias */
    padding: 0.5em 0.5em 1em; /* padding for the news article summary */
    line-height: 130%; 
    font-size: 95%;
    font-color: #333333;
    color: #333333;
}

#asociados {                   /* titulo de los asociados WK en el banner */
   font-size: 0.75em;
   padding: 0.5em;      /* some air for footer */
   text-align: center; /* centered text */
   color: #FFFFFF;
   margin:0;
}




/* END HEADINGS */

/* TEXT */
p {
   font-size: 80%;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:1.4em;
   padding: 0;
}
blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

#detalle1 {                  /*  */
  margin-bottom: 15px;
  line-height: 25%;
  font-size: 95%;
  font-color: #0083A2;
}

/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */

/*CALENDAR STYLE*/
/* make all links red */
.calendar tr td a
{
	/*color: #ff3300;*/
	font-size:0.8em;
	font-weight:bold;
}

/* highlight "today" for the small calendar */
.calendar-today
{
	font-weight: bold;
}

/* display the "upcominglist" as one line per entry (assuming table_id='cal-upcominglist') */
#cal-upcominglist .calendar-date-title
,#cal-upcominglist .calendar-summary-title
{
	display: none;
}

#cal-upcominglist h2
,#cal-upcominglist .calendar-date
,#cal-upcominglist .calendar-summary
{
	display: inline;
	margin-right: 5px;
}

/* tidy up text sizes for lists */
#cal-list h1, #cal-upcominglist h1
{
color: red;
font-size: 120%;
}
#cal-list h2, cal-upcominglist h2
{
font-size: 110%;
}

/** large calendar rules (assuming table_id='big') **/
/* border on for #big */
#big{
margin: 0px;
border-collapse:    collapse;
border: 1px solid black;
width:95%;
}

/* nice squares for the #big table */
#big th
{
border: 1px solid black;
padding: 3px;
width: 75px;
}

#big td {
border: 1px solid black;
vertical-align: top;
padding: 3px;
height: 50px;
width: 75px;
}

/* format summaries nicely in #big */
#big ul
{
margin: 0px;
padding: 0px;
padding-left: 5px;
}

#big li
{
list-style-type: none;
padding: 0px;
margin: 0px;
}

/* background colours for #big */
#big td
{
	background-color: #eaffff;
}

#big .calendar-day
{
background-color: #80ff80;
}

#big .calendar-today
{
	font-weight: bold;
	background-color: #b5ceff;
}

.calendar-event .calendar-date-title,
.calendar-event .calendar-summary-title,
.calendar-event .calendar-details-title
{
	display: none;
}
/*END CALENDAR STYLE*/

.clear
{
	clear:both;
}

.pagetable
{
	background-color:#DEECF5;
	width:90%;
}

.pagetable tr th
{
	background-color:#C3E0F4;
}

.postList
{
	width:90%;
}

.postList .post
{
	border-bottom:1px solid #eeeeee;
	margin-bottom:3px;
}

.postList .post .poster
{
	font-weight:bold;
}

.postList .post .postInfo
{
	text-decoration:italic;
}

.loginForm
{
	width:90%;	
}

.loginForm span, .loginForm input
{
	width:100%;	
	font:90%;
}

.loginForm input
{
	border:1px solid #CCCCCC;
}

.label50
{
    font:50%;
}

.NewsSummaryPostdate
{

}
.NewsTitle
{}
.NewsSummaryInfo
{
   font-size:normal;
}

.btn input
{
	border:1px solid #CCC;
    background-color:#0083A2;
	color:#ffffff;
}

.aedMarker
{
	color:#0083A2;
}

.aedControlInfo
{
	font-size:90%;
}

/*Usados para la carga de archivos*/
.fleft{
 float:left;
}

/*En los formularios, cambia el tamaño de las areas de texto editable*/
.fleft textarea
{
 width:400px;
 height:80px;
}

.f50{
 width:50px;
 font-size: 0.9em;
 line-height: 1.5em;
 margin: 4em 1 1em 1;
 padding-right: 3px;
 padding-top: 4px;
 padding-bottom: 2px;
 padding-left: 3px;
}

.f100{
 width:100px;
 font-size: 0.9em;
 line-height: 1.5em;
 padding-right: 3px;
 padding-top: 4px;
 padding-bottom: 2px;
 padding-left: 3px;
 margin: 1em 1 1em 1;
}

.f200{
 width:200px;
 font-size: 0.9em;
 line-height: 1.5em;
 padding-right: 3px;
 padding-top: 4px;
 padding-bottom: 2px;
 padding-left: 3px;
 margin: 1em 1 1em 1;
}

.f250{
 width:250px;
 font-size: 0.9em;
 line-height: 1.5em;
 margin: 1em 1 1em 1;
 padding-right: 3px;
 padding-top: 4px;
 padding-bottom: 2px;
 padding-left: 3px;
}

.f300{
 width:300px;
 font-size: 0.9em;
 line-height: 1.5em;
 margin: 1em 1 1em 1;
 padding-right: 3px;
 padding-top: 4px;
 padding-bottom: 2px;
 padding-left: 3px;
}

.lalign{
 text-align:left;
}

.ralign{
 text-align:right;
}
/* End of 'Layout: Estilos AED' */

/* Start of CMSMS style sheet 'WBCSDSyndicator' */
/* Change width to modify the width of the box */
.bottombox, .topbox, .middlebox {
	width:120px;
}

/* Change .topbox to modify the color coding of the top box. Do not change the background color. */
.topbox {
	background-color: #ffffff;
	border: solid 1px #bdcbde;
	}
	
/* Do not change .topimage */
.topimage {
	background: url(wbcsd-small.gif);
	background-color: #ffffff;
	width: 40px;
	height: 40px;
	float: left;
	margin-bottom: -5px
	}
	
/* Change .TopBoxText to modify the title of your box */
.topbox .TopBoxText {
	color: #000000;
	margin: 5px 5px 5px 5px;
	text-align: right;
	font-family: Arial;
	font-size: 16px;
	font-weight: bold;
}

/* Change .middlebox to modify background and border colors of the middle box */
.middlebox {
  background-color: #f7f7ff;
  border: solid 1px #bdcbde;
}

/* Do not change .middlebox .MiddleBoxText */
.middlebox .MiddleBoxText {
	color: #000000;
	font-family: Verdana;
	font-size: 10px;
	font-weight: normal;
	text-align: left;
	padding-bottom: 5px;
	padding-left: 2px;
	padding-right: 2px;
	padding-top: 0px;
	}	

/* Change .middlebox A to change the headlines */	
.middlebox A {
	color: #006699;
	font-family: Verdana;
	font-size: 9px;
	font-weight: normal;
	text-align: left;
	text-decoration: none;	
	}

.middlebox A:HOVER {
text-decoration:underline;
}

/* Change .middlebox .MiddleBoxSmall to change the item description (if available) */	
.middlebox .MiddleBoxSmall {
	color: #000000;
	font-family: Verdana;
	font-size: 9px;
	font-weight: normal;
	text-align: left;
	padding-bottom: 5px;
	padding-left: 5px;
	padding-right: 1px;
	padding-top: 0px;
	}

	/* Change .bottombox to modify background and border colors of the bottom box */
.bottombox {
	background-color: #bdcbde;
	border: solid 1px #bdcbde;
}

/* Change .bottombox .BottomBoxText to modify the look of "Search WBCSD news" */
.bottombox .BottomBoxText {
	color: #000000;
	margin-left:5px;
	margin-right:0px;
	margin-top:2px;
	margin-bottom:-1px;
	font-family:Arial;
	font-weight:normal;
	font-size:11px;
	text-align: left;
}

/* Change .bottombox .go to modify the look of the "Go" button */
.bottombox .go
{
	height:15px;
	font-family:Arial;
	font-size:10px;
	font-weight:bold;
	background:#000000;
	border:solid 1px;
	border-color:#000000;
	color:#ffffff;
	text-decoration: none;
	text-align: center;

}

/* Change .bottombox input to modify the look of the input field */
.bottombox input
{
	width:126px;
	height:15px;
	border:solid 1px;
	border-color:#444444;
	margin-bottom: 2px;
	margin-left:5px;
	font-family: Arial, Verdana, Geneva,  Helvetica, sans-serif;
	font-size: 10px;
	color: #006699;
}

/* Change .bottombox .tinytext to modify the look of the WBCSD disclaimer */
.bottombox .tinytext
{
	font-family:Arial;
	font-size:9px;
	font-weight:normal;
	text-align: center;
	color: #000000;
}

/* Change .bottombox .wbcsd to modify the look of link to the WBCSD homepage */
.bottombox  .wbcsd {
   color: #006699;
   font-family:Arial;
	font-size:8px;
	font-weight:bold;
	text-align: center;
	letter-spacing: 1px;
	text-decoration: none;
}

.spacer {
   background:url(spacer.gif);
   font-size:0px;
   background-color: #ffffff;
   height: 2px;
}

	
/* End of 'WBCSDSyndicator' */

