/*
  Tim Nelson
  January 2011
  Updating in progress 2023
*/

/*******************************************/
/* Font styles */
.myName {
  color: black;
  /*font-family: Trebuchet, sans-serif;*/
  font-family: Source Sans Pro, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: bold;
  font-style: normal;
}
.myPosition {
  color: black; 
  /*font-family: Trebuchet, sans-serif;*/
  font-family: Source Sans Pro, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: normal; 
}  
.uniName {
  color: black; 
  /*font-family: Trebuchet, sans-serif;*/
  font-family: Source Sans Pro, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: normal; 
} 
.modified {
  color: black;
  font-size: 10px;
  font-weight: normal;
  /*font-family: Georgia;*/
  font-family: Source Sans Pro, Helvetica, sans-serif;
}
.addition {
  color: black;
  font-size: 10px;
  font-weight: normal;
  /*font-family: Trebuchet, sans-serif;*/
  font-family: Source Sans Pro, Helvetica, sans-serif;
}


/*******************************************/
h1, h2 {
  /*font-family: Trebuchet, sans-serif;*/
  font-family: Source Sans Pro, Helvetica, sans-serif;
}

BODY {
  /* Less blue than the others since links are blue */
  background-color: #FCFCFC;
  /* don't look bad on wide-screen monitors */
  max-width: 600pt;
  
  /* larger font for readability */
  font-size: 16px;
  font-weight: normal; 
  /*font-family: Georgia;*/
  font-family: Source Sans Pro, Helvetica, sans-serif;
  word-wrap: break-word;
} 

/*******************************************/
/* custom dividers, list dots */
hr {
  border: none 0;
  border-top: 1px solid #000;
  height: 1px;
  margin-top: 10px;
  margin-bottom: 10px;
}  
ul {
  list-style-type: circle;
}
li {
  margin-bottom: 5px;
}

/*******************************************/
/* links un-adorned until mouseover 
   need to provide in this order */
a:link, a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/*******************************************/
/* Box for pubs and talks */
div.pubsbox {
  border:1px solid #000;
  padding: 10px; 
  margin: 0 auto;
  margin-top: 20px;
  text-align: center;
  width: 200px;
}

.authors  {
  word-wrap: break-word;
  /* font-style: italic; */
}


