/* Start of CMSMS style sheet 'Nat2010_CSS' */
/*****************
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: Trebuchet MS, Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;

}

/*
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: none;
/* 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;
   font-weight: bold; 
   color: #18507C; 
}

a:visited {
   font-weight: bold; 
   text-decoration: none;
   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-color: #C3D4DF;
   color: #385C72;
}

/*****************
basic layout 
*****************/
body {
   background: #7d9d0f url(images/cms/fondo_azul.png);
   color: #333;
   margin: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: 950px; /* IE wont understand these, so we will use javascript magick */
   min-width: 950px;
   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 {
    /* adjust according your image size */
   background: #80a6cd;
   display: block; 
height: 170px;
   width: 100%;
}

.header_right {
   float: right; margin-top: 15px; margin-right: 4%;
}

div#header h1 a {
/* you can set your own image here */
   background: url(images/cms/logo_natate_header.jpg) no-repeat 7px 10px; 
   display: block; 

   height: 140px;             /* 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#header .logotipo {
    float: left; margin: 0 0 0.5em 0.5em;
}



div#search {
   float: right;
       /* enough width for the search input box */
   text-align: right;
   padding: 3px 0 0 0;
   margin: 0 1em 0 0;
   display: block; 
}
div#search input {
 padding: 0;
   margin: 0;

}



div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;             /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;              /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px dotted #000;
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 }


div#content {
   margin: 0 0 2em auto; /* some air above and under menu and content */
   padding: 0 2em;
   /*border: 1px solid #000;*/
}

div#main {
   margin-right: 0; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-left: 0; /* and some air on the right */
  margin-top: 0; padding-top: 1em;
}

div#main_blank {
   margin-right: 0; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-left: 0; /* and some air on the right */
  margin-top: 0; padding-top: 1em;
}

div#columna_izquierda {
   margin-right: 290px; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-left: 0; /* and some air on the right */
}


div#columna_derecha {
   float: right;  /* set sidebar on the right side. Change to right to float it right instead. */
   width: 270px;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin: 0;

}

div#sidebar_home {
   float: right;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 390px;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin: 2em 0 0 1em;
   padding: 0 0.5em 0 1.5em;
}


div#sidebar {
   float: right;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 250px;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0;
   background: url(images/cms/menu_bg.jpg);
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0 1%;
   width: 270px;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}


div#sidebar p.tellafriend, div#sidebar p.sitemap, div#sidebar p.resources, div#sidebar p.newsletter, div#sidebar p.job {
   text-align: left;
   text-indent: 1.8em;
   margin: 0 0 0.8em 1em;
   
   }

div#sidebar p.tellafriend {
   background: url(images/icons/tellafriend.png)no-repeat;
   }

div#sidebar p.job {
   background: url(images/icons/flag_red.png)no-repeat;
   /*border-bottom: 1px solid #000; border-top: 1px solid #000; */
   }

div#sidebar p.newsletter {
   background: url(images/icons/newsletter.png)no-repeat;
   }

div#sidebar p.resources {
   background: url(images/icons/resources.png) no-repeat;
   }

div#sidebar p.sitemap {
   background: url(images/icons/site_map.png) no-repeat;
   }


div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #fff;
   background: #407cba; /* same bg color as in header */
}

div#footer p {
   font-size: 0.9em;
   padding: 1.5em;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

div#footer p a {
   color: #fff; /* 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 */
div.left49 {
  float: left;
  width: 60%;  /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 38%;
  text-align: right;
  margin-right: 0.5em;
}





/********************
    COMMENTS
********************/
div#comments ul li {
    list-style-image: url(images/icons/comments.jpg); padding: 0 0 0 0 0.3em; margin-left: 2em;
}



/********************
         TABLE
*********************/
table {
   font-size: 1.1em; line-height: 1.2em; font-family: sans-serif;
}

table.border {
    margin: 0.5em;
}

table.border td {
   padding: 0.5em;
   border: 1px solid #000;
}

table.clear_v td, .clear_2 td {
   vertical-align: top; background-color: #fbf6e9;
}

table.tabla1, table.clear_v, .clear_2 {
   width: 99%: border: none;
}

table.clear_2 td {
   padding: 0.3em;
}

table.tabla1 td,table.clear_v td {
   padding: 0.8em;
}


/********************
      DIV    STYLING
*********************/
.clearboth {
  clear: both;
}


.cuadro {
  background-color: #f5f0db; border: 1px solid #d9d0ab; padding: 1em 1em 0.5em 1em;
}


.globe, .bilateral, .mltv, .help, .register, .enlinea, .natate, div#content h3.news, {
   padding: 1.3em 0.5em 2em 5em;  margin: 0; margin-bottom: 0; margin-top: 0; 
}

.bilateral {
   background: url(images/icons/bilateral.jpg) no-repeat; padding:  1.3em 0.5em 2em 5em;
}

.noticias {
   background: url(images/icons/Noticias_nosotros.jpg) no-repeat;
}

.globe {
   background: url(images/icons/globe.jpg) no-repeat; padding:  1.3em 0.5em 2em 5em;
}

.register {
   background: url(images/icons/register_1.jpg) no-repeat; padding:  1.3em 0.5em 2em 5em;
}

.enlinea {
   background: url(images/icons/cpu.jpg) no-repeat;padding:  1.3em 0.5em 2em 5em;
}

.mltv {
   background: url(images/icons/mltv.jpg) no-repeat; padding:  1.3em 0.5em 2em 5em;
}

.help {
   background: url(images/icons/help.jpg) no-repeat; padding:  1.3em 0.5em 2em 5em;
}

.natate {
   background: url(images/icons/natate_50.jpg) no-repeat; padding:  1.3em 0.5em 2em 5em;
}

div#content h3.news {
   background: url(images/icons/news_eng.jpg) no-repeat;
}





/********************
CONTENT STYLING
*********************/

div#content .lightblue {
   padding: 0; background-color: #f5f0db; border: 1px solid #d9d0ab;
}

div#content .lightblue li {
  list-style-image: url(images/icons/bullet_go.jpg); padding: 0.5em 0 0 0.3em; margin-left: 2em;
}

div#content .lightblue ul {
   margin: 0;padding: 0.3em 0 0 0;
}

div#content .lightblue h2  {
   padding: 0.5em 0 0.5em 0.5em; margin: 0; font-size: 1.1em;    background-color: #2684a7; border: none; line-height: 1.1em;  font-family: sans-serif; color: #fff;
}
div#content .lightblue h2 a {color: #fff;}

div#content .lightblue p {
   background-color: #f5f0db; padding: 0.5em; margin-bottom: 0;
}

.cadre2 {
   background-color: #f5f0db; border: 1px solid #d9d0ab;
}


.bullet_2 li {
   list-style-image: url(images/icons/bullet_go.jpg); padding: 0 0 0 0 0.3em; margin-left: 2em;
}
.bullet_1 li {
   list-style-image: url(images/icons/bullet_go.jpg); padding: 0.5em 0 0 0.3em; margin-left: 2em;
}

.participa {
   border-top: 1px solid #00436a; padding-top: 0.5em;
}


div#campo_img {
   width: 340px; height: 220px; margin: 6em 0 0 1em; padding: 0; float:right; 
}

.bello {
   border-top: 1px solid #80a6cd; padding: 0.3em 1em 0.2em 1em; margin: 1em 1em 1em 0.2em;
   border-right: 1px solid #80a6cd;
   border-left: 2px solid #80a6cd;
   border-bottom: 2px solid #80a6cd;
}

div.bello h2 {
   margin-top: 0; border-bottom: 1px solid #000;
}


.newsborder {
   border-top: 1px solid #d98787; padding: 0.3em 1em 0.2em 1em; margin: 1em 1em 1em 0.2em;
   border-right: 1px solid #d98787;
   border-left: 2px solid #d98787;
   border-bottom: 2px solid #d98787;
}





.campo {
   border: 1px solid #c3d4df;
   padding: 0.5em;
   margin: 0.5em auto 0.5em 0;
   background-color: #fff;
}

.busqueda {
   padding: 0.7em; margin: 0.2em; background-color: #f9fbfd; border: 1px solid #d5e0ed;
}


.left {
   float: left; margin: 1em;
}

.top_left {
   float: left; margin: 0;
}

.center {
   margin-left: auto; margin-right: auto; display: block;
}

.top_right {
   float: right; margin: 0;
}

.right {
   float: right; margin: 1em;
}

.center {
   text-align: center;
}

div.block_right_300, div.block_right, div.block_right_30, div.block_right_250, div.block_right_40 {
   float: right; margin: 0.5em; padding: 0.5em; vertical-align: top;
}

div.block_right {
   width: 45%;
}

div.block_right_40 {
   width: 40%;
}

div.block_right_30 {
   width: 30%;
}

div.block_right_250 {
   width: 250px;
}

div.block_right_300 {
   width: 300px;
}


div.auto {float: left; margin: 1em auto; padding: 0 2em; text-align: center;}
img.auto {float: left; margin: 1em auto; padding: 0 1em;}


/********************
CONTENT STYLING
*********************/

div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 1.6em;  /* font size for h1 */
   line-height: 1em;
   margin: 1em 0 1em 0;
   color: #d46f3d;
}
div#content h2 {
   color: #2684a7; 
  font-family: Geneva,  Trebuchet MS, Verdana,  Arial, Helvetica, sans-serif;
   font-size: 1.6em; 
   text-align: left; 
/* some air around the text */
   padding-left: 0.5em;
   padding-bottom: 0.5em;
/* set borders around header */
/*   border-bottom: 1px solid #ea9736; */
 /*  border-left: 1.1em solid #e7ab0b; */
   line-height: 1.6em;
/* and some air under the border */
   margin: 0 0 0 0.5em;
}

div#content .cadre, div#content .cadre2  {
   padding: 0.4em 1em; margin: 0; font-size: 1.1em; 
   line-height: 1.1em;  font-family: sans-serif; color: #fff;
}
div#content .cadre a, div#content .cadre2 a {color: #fff;}

div#content .cadre {
   background-color: #2684a7; border: none;
}

.cadre2 {
   background-color: #f5f0db; border: 1px solid #d9d0ab;
}

div#content h3.news {
   background: url(images/icons/news_eng.jpg) no-repeat; padding: 1.3em 0.5em 1.4em 5em;  margin: 0; margin-bottom: 0.5em; margin-top: 1em; 
}

div#content h2.newstemp {
   color: #254e77;border: none; border-top: 1px solid #254e77;
}




div#content h3 {
   color: #1a789b; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0.5em 0 0.15em 0;
}
div#content h4 {
   color: #2684a7; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0.5em 0 0 0;
   padding-bottom: 0.5em;
}
div#content h5 {
   font-size: 1.2em;
   line-height: 1.2em;
   margin: 0 0 0.15em 0;
}
h6 {
   font-size: 1.1em;
   line-height: 1.1em;
   margin: 0 0 0.1em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   word-spacing: 0.2em;
   font-size: 1.2em;
   margin: 0 0 1em 0;  /* some air around p elements */
   line-height: 1.2em;
   padding: 0;
}
blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
}
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.2em;
   font-size: 100%;   /* smaller font size, as these are usually not so important data */
}

/* END TEXT */

/* LISTS */
div#main ul, div#columna_izquierda ul, div#columna_izquierda  ul,div#columna_izquierda  dl,div#main_blank ul,
div#main ol, div#columna_izquierda ol, div#columna_izquierda ol, div#main_blank ol, div#main_blank dl
div#main dl, div#columna_izquierda  dl {
  font-size: 1.2em;
   line-height: 1.2em;
   margin: 0 0 0.5em 1em;
}
div#main ul li, div#columna_izquierda ul li
div#main ol li, div#columna_izquierda ol li {
   margin: 0 0 0.2em 0.5em;

}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.1em 2em;
}
div#dl dd {
   margin: 0 0 0 2em;
}
/* END LISTS */
/* End of 'Nat2010_CSS' */

