/* CSS Document */

/* Títuls amb les imatges de la capçalera dels menus */
.titulo1{
	background-image:url(Imagenes/que_es.jpg);
}
.titulo2{
	background-image:url(Imagenes/reuniones_congresos.jpg);
}
.titulo3{
	background-image:url(Imagenes/miembros.jpg);
}
.titulo4{
	background-image:url(Imagenes/volumenes.jpg);
	z-index:-3;
}
.titulo_cabecera{
	border: none;
	
	height:30px;
	background-image:url(Imagenes/menu.png);
}
/*---------------------------------------------------*/


/* Estils pels menus que es despleguen cap abaix -----*/
ul.superior{
	width: 170px;
	height:25px;
	padding-left: 0px;
	cursor: default;
	margin-left: 0px;
	margin-top: 0px;
	padding-top: 0px;
	border-top: 1px solid #666666;
	border-right: none;
	border-bottom: none;
	border-left:none;
}
ul.superior ul{

  width: 170px;                 /* sets the size of the menu blocks */
  height:25px;
  /*border: 1px solid #000;      /* puts a black border around the menu blocks */
  /*background-color: #CCCCCC;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px; 			/* Opera 7 final's margin and margin-box model cause problems */
  margin-top: 0px;         
  padding-top: 0px; 
}

ul.superior li {
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  color: #666666;                 /* sets the default font colour to white */
  border: 1px solid #666666;
  border-top:none;
  height:25px;
}
ul.superior li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 25px;                    /* position slightly lower than the parent menu item */
  left: -1px;                  /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
}
ul.superior li:hover, ul.superior li.CSStoHighlight {
  background-color: #666666;      /* gives the active menu items a yellow background */
  color: #666666;                 /* makes the active menu item text black */ 
}
ul.superior ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
}
ul.superior li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
}

/* and some link styles */
ul.superior li a {
	color: #666666;
	display: block; 
	width: 100%;
	text-decoration: none;
}
ul.superior li a:hover, ul.superior li a.CSStoHighLink { color: #FFF; }
ul.superior li:hover > a { color: #FFF; } /* supports links in branch headings - must not be display: block; */
/* -----------------------------------------------------------------*/

/* Estils pels menus que es despleguen cap adalt -----*/
ul.inferior{
	width: 170px;
	height:25px;
	padding-left: 0px;
	cursor: default;
	margin-left: 0px;
	margin-bottom: 0px;
	padding-bottom: 0px;
}
ul.inferior ul{

  width: 170px;                 /* sets the size of the menu blocks */
  height:25px;
  /*border: 1px solid #000;      /* puts a black border around the menu blocks */
  /*background-color: #CCCCCC;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px; 			/* Opera 7 final's margin and margin-box model cause problems */
  margin-bottom: 0px;         
  padding-bottom: 0px; 
}

ul.inferior li {
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  color: #666666;                 /* sets the default font colour to white */
  border: 1px solid #666666;
  border-bottom:none;
  height:25px;
  z-index:1;
}
ul.inferior li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  bottom: 52px;                    /* position slightly lower than the parent menu item */
  left: -1px;                  /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
}
ul.inferior li:hover, ul.inferior li.CSStoHighlight {
  background-color: #666666;      /* gives the active menu items a yellow background */
  color: #666666;                 /* makes the active menu item text black */ 
}
ul.inferior ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
}
ul.inferior li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
}

/* and some link styles */
ul.inferior li a {
	color: #666666;
	display: block; 
	width: 100%;
	text-decoration: none;
}
ul.inferior li a:hover, ul.inferior li a.CSStoHighLink { color: #FFF; }
ul.inferior li:hover > a { color: #FFF; } /* supports links in branch headings - must not be display: block; */
/* -----------------------------------------------------------------*/

/* Estils pels menus que es despleguen cap adalt -----*/
ul.inferior_dreta{
	width: 170px;
	height:25px;
	padding-left: 0px;
	cursor: default;
	margin-left: 0px;
	margin-bottom: 0px;
	padding-bottom: 0px;
}
ul.inferior_dreta ul{

  width: 170px;                 /* sets the size of the menu blocks */
  height:25px;
  /*border: 1px solid #000;      /* puts a black border around the menu blocks */
  /*background-color: #CCCCCC;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px; 			/* Opera 7 final's margin and margin-box model cause problems */
  margin-bottom: 0px;         
  padding-bottom: 0px; 
}

ul.inferior_dreta li {
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  color: #666666;                 /* sets the default font colour to white */
  border: 1px solid #666666;
  border-bottom:none;
  height:25px;
  z-index:1;
}
ul.inferior_dreta li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  bottom: 78px;                    /* position slightly lower than the parent menu item */
  left: -1px;                  /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
}
ul.inferior_dreta li:hover, ul.inferior_dreta li.CSStoHighlight {
  background-color: #666666;      /* gives the active menu items a yellow background */
  color: #666666;                 /* makes the active menu item text black */ 
}
ul.inferior_dreta ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
}
ul.inferior_dreta li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
}

/* and some link styles */
ul.inferior_dreta li a {
	color: #666666;
	display: block; 
	width: 100%;
	text-decoration: none;
}
ul.inferior_dreta li a:hover, ul.inferior_dreta li a.CSStoHighLink { color: #FFF; }
ul.inferior_dreta li:hover > a { color: #FFF; } /* supports links in branch headings - must not be display: block; */
/* -----------------------------------------------------------------*/

/* Estils pel menú de la capçalera -----*/
.opcion_primera_cabecera{
	border: 1px solid #666666;
}
.opcion_resto_cabecera{
	border: 1px solid #666666;
	border-top:none;
}
ul.menu_cabecera{
	width: 170px;
	height:25px;
	padding-left: 0px;
	cursor: default;
	margin-left: 0px;
	margin-top: 0px;
	padding-top: 0px;
	/*border-top: 1px solid #666666;*/
	border-right: none;
	border-bottom: none;
	border-left:none;
}
ul.menu_cabecera ul{

  width: 170px;                 /* sets the size of the menu blocks */
  height:25px;
  /*border: 1px solid #000;      /* puts a black border around the menu blocks */
  /*background-color: #CCCCCC;      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px; 			/* Opera 7 final's margin and margin-box model cause problems */
  margin-top: 0px;         
  padding-top: 0px; 
}

ul.menu_cabecera li {
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  color: #666666;                 /* sets the default font colour to white */
  height:25px;
  background-color:#FFFFFF;
}
ul.menu_cabecera li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 25px;                    /* position slightly lower than the parent menu item */
  left: -1px;                  /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
}
ul.menu_cabecera li:hover, ul.menu_cabecera li.CSStoHighlight {
  background-color: #666666;      /* gives the active menu items a yellow background */
  color: #FFFFFF;                 /* makes the active menu item text black */ 
}
ul.menu_cabecera ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
}
ul.menu_cabecera li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
}

/* and some link styles */
ul.menu_cabecera li a {
	color: #666666;
	display: block; 
	width: 100%;
	text-decoration: none;
}
ul.menu_cabecera li a:hover, ul.menu_cabecera li a.CSStoHighLink { color: #FFF; }
ul.menu_cabecera li:hover > a { color: #FFF; } /* supports links in branch headings - must not be display: block; */

/*Afegeixo aixo per a que el segon es comporti diferent -------------*/

ul.menu_cabecera ul li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: -1px;                    /* position slightly lower than the parent menu item */
  left: -170px;                  /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
}

/* -----------------------------------------------------------------*/
/* -----------------------------------------------------------------*/
