@charset "utf-8";
/* CSS Document */
/* For Pure publications tabbed views */
/* by Mary Woodcock-Kroble */
/*------------------------*/
/*------------------------*/
/* This stylesheet deals with publications only, both for individuals and schools; publications are styled in the same way in both cases, but they don't have to be.  */

/*---------------------------*/
/*---------------------------*/
/*essentials to get the tabbed publications working*/
#publications_person, #publications_school {position: relative; width: 100%;/* WP specific - have to define a percentage width on the bounding box, the box then adjusts to the theme width of content column*/ margin: 0; padding:0; }

/*for the tabbed menus */
#publications_person #menu, #publications_school #menu { padding: 0; clear: both; margin: 0; position: relative; z-index: 1000; list-style: none; }/*margin-left set to overcome issue with borders on tabs*/
#publications_person #menu li, #publications_school #menu li { float:left;  border: 1px solid #bbbbbb; border-bottom: none; margin: 0 4px -1px 0; padding: 0;}
#publications_person #menu li a, #publications_school #menu li a { background: #EEEEEE none; padding: 5px 10px;   text-decoration: none; color: #666666; font-weight: bold;    display: block; }
#publications_person #menu li a:hover, #publications_school #menu li a:hover {text-decoration: underline;}
#publications_person #menu li.active a, #publications_school #menu li.active a, #publications_person #menu li a:hover, #publications_school #menu li a:hover { background: #fff; color: #000000; }
#publications_person #menu li.active, #publications_school #menu li.active { background: #FFFFFF none;}/*use border on this in conjunction with border on divs below to give diff border to non-active tabs*/
#publications_person #menu li.active a, #publications_school #menu li.active a {position: relative; top: 1px; padding: 5px 10px 6px;}

#books, #chapters, #articles, #papers, #reviews, #other { clear: both; border: 1px solid #bbbbbb; background: #fff; padding: 10px 10px 20px;  position: relative; z-index: 950; margin-top:-1px; width: 100%;}

/*To distinguish between 'looks' for each item in an individual's awards vs school's awards, copy the styles below, and precede each compound selector with the relevant div selector - either #publications_person OR #publications_school

/*targetted styles for elements of each publication*/
p.publication {/*clear:both*/}

p.publication span.title {font-weight: bolder; } /*span.title from script not PURE*/
/*p.publication br.titlebr {display: none; }*/   /*only use if setting display: block; on the title span above*/
p.publication span.allauthors{} /*span.allauthors from script not PURE*/
p.publication span.allauthors span.author {} /*nested inside span.allauthors, .author applied by script not PURE*/

p.publication span.date {}
p.publication span.journal {}
p.publication span.journal span {font-style: italic;}  /*targets the journal title, which is nested inside the 'journal' span and is itself surrounded by a span with no class attribute*/
p.publication span.volume {} /*the volume span should be nested INSIDE the journal span, but isn't.*/
p.publication span.journalnumber {} /*the journalnumber span should be nested INSIDE the journal span, but isn't.*/
p.publication span.pages {} /*the pages span should be nested INSIDE the journal span, but isn't.*/
p.publication span.numberofpages {} /*the numberofpages span should be nested INSIDE the journal span, but isn't.*/

p.publication span.type {color: #999; font-size: 0.75em;}
p.publication span.type span.type_family {}
p.publication span.type span.type_family span.type_family_sep {}
p.publication span.type span.type_classification_parent {}
p.publication span.type span.type_parent_sep {}
p.publication span.type span.type_classification {}

/*switching off 'type' for publications in the non-generic tabs: books, chapters, articles, papers, reviews.*/
#books .type, #chapters .type, #articles .type, #papers .type, #reviews .type {position: absolute; display:none;}

