/*
 * This style sheet formats publication lists as generated by the biblio
 * XSLT package from biblio XML databases of publications.
 */

/* 
 * Authors and editors of publications are given as unordered lists. 
 * We prefer an inline presentation without item markers. Moreover, a comma
 * should appear between authors/editors, and the whole list should be
 * followed by a colon.
 */
ul.biblio_authors, ul.biblio_editors { 
  padding: 0em;
  margin: 0em;
  display: inline;
 }
ul.biblio_authors > li, ul.biblio_editors > li { 
  display: inline;
  list-style-type: none;
  padding: 0em;
  margin: 0em;
 }

ul.biblio_authors > li:after, ul.biblio_editors > li:after { 
  content: ", ";
}
ul.biblio_authors > li:last-child:after { 
  content: ": ";
}
ul.biblio_editors > li:last-child:after { 
  content: " (eds.): ";
}


/*
 * Links for the publications are given as unordered lists. We like them with
 * block display, enclosed in parentheses, but the individual items
 * with inline display, separated by commas.
 */
ul.biblio_links { 
  padding: 0em;
  margin: 0em;
 }
ul.biblio_links:before { 
  content: "(";
 }
ul.biblio_links:after { 
  content: ")";
 }
ul.biblio_links > li { 
  display: inline;
  list-style-type: none;
  padding: 0em;
  margin: 0em;
 }

ul.biblio_links > li > span.comment:before { 
  content: " [";
}

ul.biblio_links > li > span.comment:after { 
  content: "]";
}

ul.biblio_links > li > span.comment { 
  font-size: x-small;
 }

ul.biblio_links > li:after { content: ", " }
ul.biblio_links > li:last-child:after { content: "" }

/*
 * Publication titles in bold, please.
 */
span.biblio_title { 
  font-weight: bold;
 }

/*
 * More space separating the publications.
 */

ol.biblio_publications li {
  margin-bottom: 1ex;
}

/*
 * Positioning of cover pictures
 */
img.biblio_books {
  float: left;
  width: 6em;
  margin-right: 1em;
  margin-bottom: 2ex;
}

p.biblio_books {
  clear: left;
}

h2 {
  clear: left;
}

/*
 * Ordered list of popular science articles without numbering (but with image)
 */
ol.popular {
  list-style-type: none;
}


