@import url('https://fonts.googleapis.com/css?family=Bitter|Lato|Montserrat|Roboto|Roboto+Slab');

* {
	margin: 0;
	font-family:'Roboto Slab', 'Trebuchet MS', sans-serif;
	box-sizing:border-box;
}

/* is this bad form? probably */
html {
	min-height:100%;
}

body {
background: #f7f7f7;
}

.wrapper {
  width:70%;
  background:#fff;
  margin: 0 auto;
}

.inner {
  padding:1em 3em 3em;
}

.inner h1 {
	margin:1em 0;
	letter-spacing:8px;
}

.inner h1 a {
	color:#000;
	text-decoration:none;
}

.inner h1 a:hover {
	color:#9A3F7A;
	text-decoration:none;
}

.inner p, .inner ul { 
	letter-spacing:0.75px;
	font-size:1.2em;
}

.inner p {
  padding:0.5em;
}

.inner h2 {
 font-weight:bold;
 font-size:1.4em; 
 padding:0.5em;
 letter-spacing:0.75px;
}

.inner h3 {
  margin: 0.5em 0;
  font-size:1.3em;
}

.headerBar, .backBar, .postTitle {
  background-color:#ebebf6;
}

.headerBar a, .backBar a, .postTitle a {
  text-decoration: none;
  color:#663874;
}

.headerBar a:hover, .backBar a:hover, .postTitle a:hover {
  color:#9A3F7A;
}

.navOne {
  background-color:#ebebf6;
}

.navTwo {
  background-color:#BABAD6;
}

.navThree {
  background-color:#9393BF; 
}

.navFour {
  background-color:#7373ac;
}

.navOne a, .navTwo a, .navThree a, .navFour a {
  background:#ddd;
  padding:0.25em;
  border:1px solid #2b0000;
  font-size:0.9em;
  text-decoration:none;
  color:#551A8B;
}

.navOne a:before, .navTwo a:before, .navThree a:before, .navFour a:before {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: none;
  content:"\f042";
  transform: rotate(180deg);
}
  

:target {
  background:#fff!important;
  color:#9A3F7A!important;
}

:target:before {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: none;
  content:"\f042";
  transform: rotate(0deg)!important;
}

.dateline {
  color:#9393BF;
}

.caption {
  color:#777;
  font-style:italic;
  font-size:0.9em;
}

.callout {
  font-size:1.5em;
  background:#bfbadb;
  max-width:70%;
  margin:1em auto;
}

p.imgHold {
  text-align:center; 
}

p img {
  width:80%;
  border:1px solid #EBEBF6;
}

.sideNote {
  margin-left:1em;
  font-style:italic;
  color:#777;
}

/* link styles */
a {
  color:#685CA2;
}

a:visited {
  color:#551A8B;
}

a:hover {
  color:#9A3F7A;
}

a.posts {
  color:#fff;
}

a.posts:visited {
  color:#fff;
}

a.posts:hover {
  color: #9A3F7A;
}

blockquote {
  font-size:inherit;
  color: #777;
}

.divider {
  border: 1px solid #BABAD6;
  margin: 2em 3em;
}

.upcoming /* for presentations page */ {
  color:#7373ac;
}

/* media queries */
@media screen and (max-width:480px) {
  .wrapper {
    width:100%;  
  }

  .inner {
	  padding:0.75em;
  }

  .inner h1 {
	  font-size:1.4em;
	  letter-spacing:4px;
	  padding:0.5em 0.5em 0;
  }
  
  .inner h3 {
    padding:0.5em 0.5em 0;
  }

  .inner p, .inner ul {
	  letter-spacing:0px;
	  line-height:1.8;
	  font-size: 1.1em;
	  }

  .inner ul {
    padding:1em;
    }
    
  .inner li {
    margin-left:0.5em;
  }
	
  p img {
    width:100%;
  }
  
  .navOne a {
    display:inline-block;
    margin:0.25em;
  }
}