* {
  border: 0;
  margin: 0 auto;
  padding: 0;
  outline: none;
  font-weight: 300;
  transition: all 0.3s;
  box-sizing: border-box;
}

b, strong {
  font-weight: 400;
}

body {
  font-size: 16px;
  font-family: Lato, sans-serif;
  line-height: 22px;
  margin: 0px auto;
  background: url(http://myweb.uiowa.edu/pbreheny/img/bg.png);
}

p {
  padding-bottom: 12px;
}

.course {
  font-weight: normal;
  text-align: left;
  font-size: 18px;
  line-height: 1em;
  display: block;
  padding-top: 30px;
}

main {
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  max-width: 1080px;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.container {
  max-width: 940px;
  min-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.button-container {
  text-align: justify;
  width: 320px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -160px;
}

.stretch {
  width: 100%;
  display: inline-block;
  font-size: 0;
  line-height: 0;
}

.ctable, .ctable td, .ctable th {
  font-size: 100%;
}

ul {
  margin-left: 20px;
}

li {
  padding: 2px;
}

.leftbox {
  float: left;
  width: 440px;
}

.rightbox {
  float: right;
  width: 440px;
}

.semester {
  margin-left: 20px;
  margin-bottom: 20px;
}

img.center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

img.right {
  float: right;
  margin-left: 30px;
}

img.left {
  float: left;
  margin-right: 30px;
}

iframe {
  display: block;
}

svg-icon svg {
  height: 16px;
}

.student-list {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.student {
  overflow: hidden;
  padding: 5px 0;
}

.student-header {
  text-align: center;
  font-size: 20px;
  font-weight: normal;
}

.student-img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
}

.student-pic {
  float: left;
  height: 100px;
}

.student-info {
  float: left;
  padding-left: 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100px;
}

header {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0px;
  padding-right: 0px;
  margin: 0px;
  height: 120px;
}

#pagetitle {
  display: inline-block;
  width: 75%;
  vertical-align: top;
}

#left-header {
  display: inline-block;
  width: calc(100% - 109px);
  vertical-align: top;
}

#logo {
  float: right;
}

#switcher {
  float: right;
  margin: 60px 40px;
}

#switcher button {
  background: transparent;
}

button.theme1 {
  color: #ccc;
}

button.theme1:hover {
  color: yellow;
}

button.theme2 {
  color: yellow;
}

button.theme2:hover {
  color: yellow;
}

.light button.theme1 {
  color: yellow;
}

.light button.theme2 {
  color: #ccc;
}

.light button.theme2:hover {
  color: yellow;
}

nav {
  margin: 0;
  padding: 0;
}
nav ul {
  margin-left: auto;
  margin-right: auto;
  height: 40px;
  list-style-type: none;
  text-align: center;
}
nav li {
  display: inline;
  padding: 0;
  line-height: 20px;
}
nav li a {
  color: #BABABA;
  margin-left: 5px;
  margin-right: 5px;
  position: relative;
  text-decoration: none;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  min-width: 40px;
  font-weight: 400;
}
nav li a:hover {
  color: #FFFFFF;
}
nav li a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -3px;
  left: 0;
  background-color: yellow;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
nav li a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
nav li.active a {
  color: #FFFFFF;
  border-bottom-width: medium;
  border-bottom-style: solid;
  border-bottom-color: yellow;
}

.highlight pre {
  background-color: #333;
}

.highlight .hll {
  background-color: #333;
}

.highlight .c {
  color: #75715e;
} /* Comment */
.highlight .err {
  color: #960050;
  background-color: #1e0010;
} /* Error */
.highlight .k {
  color: #66d9ef;
} /* Keyword */
.highlight .l {
  color: #ae81ff;
} /* Literal */
.highlight .n {
  color: #f8f8f2;
} /* Name */
.highlight .o {
  color: #f92672;
} /* Operator */
.highlight .p {
  color: #f8f8f2;
} /* Punctuation */
.highlight .cm {
  color: #75715e;
} /* Comment.Multiline */
.highlight .cp {
  color: #75715e;
} /* Comment.Preproc */
.highlight .c1 {
  color: #75715e;
} /* Comment.Single */
.highlight .cs {
  color: #75715e;
} /* Comment.Special */
.highlight .ge {
  font-style: italic;
} /* Generic.Emph */
.highlight .gs {
  font-weight: bold;
} /* Generic.Strong */
.highlight .kc {
  color: #66d9ef;
} /* Keyword.Constant */
.highlight .kd {
  color: #66d9ef;
} /* Keyword.Declaration */
.highlight .kn {
  color: #f92672;
} /* Keyword.Namespace */
.highlight .kp {
  color: #66d9ef;
} /* Keyword.Pseudo */
.highlight .kr {
  color: #66d9ef;
} /* Keyword.Reserved */
.highlight .kt {
  color: #66d9ef;
} /* Keyword.Type */
.highlight .ld {
  color: #e6db74;
} /* Literal.Date */
.highlight .m {
  color: #ae81ff;
} /* Literal.Number */
.highlight .s {
  color: #e6db74;
} /* Literal.String */
.highlight .na {
  color: #a6e22e;
} /* Name.Attribute */
.highlight .nb {
  color: #f8f8f2;
} /* Name.Builtin */
.highlight .nc {
  color: #a6e22e;
} /* Name.Class */
.highlight .no {
  color: #66d9ef;
} /* Name.Constant */
.highlight .nd {
  color: #a6e22e;
} /* Name.Decorator */
.highlight .ni {
  color: #f8f8f2;
} /* Name.Entity */
.highlight .ne {
  color: #a6e22e;
} /* Name.Exception */
.highlight .nf {
  color: #a6e22e;
} /* Name.Function */
.highlight .nl {
  color: #f8f8f2;
} /* Name.Label */
.highlight .nn {
  color: #f8f8f2;
} /* Name.Namespace */
.highlight .nx {
  color: #a6e22e;
} /* Name.Other */
.highlight .py {
  color: #f8f8f2;
} /* Name.Property */
.highlight .nt {
  color: #f92672;
} /* Name.Tag */
.highlight .nv {
  color: #f8f8f2;
} /* Name.Variable */
.highlight .ow {
  color: #f92672;
} /* Operator.Word */
.highlight .w {
  color: #f8f8f2;
} /* Text.Whitespace */
.highlight .mf {
  color: #ae81ff;
} /* Literal.Number.Float */
.highlight .mh {
  color: #ae81ff;
} /* Literal.Number.Hex */
.highlight .mi {
  color: #ae81ff;
} /* Literal.Number.Integer */
.highlight .mo {
  color: #ae81ff;
} /* Literal.Number.Oct */
.highlight .sb {
  color: #e6db74;
} /* Literal.String.Backtick */
.highlight .sc {
  color: #e6db74;
} /* Literal.String.Char */
.highlight .sd {
  color: #e6db74;
} /* Literal.String.Doc */
.highlight .s2 {
  color: #e6db74;
} /* Literal.String.Double */
.highlight .se {
  color: #ae81ff;
} /* Literal.String.Escape */
.highlight .sh {
  color: #e6db74;
} /* Literal.String.Heredoc */
.highlight .si {
  color: #e6db74;
} /* Literal.String.Interpol */
.highlight .sx {
  color: #e6db74;
} /* Literal.String.Other */
.highlight .sr {
  color: #e6db74;
} /* Literal.String.Regex */
.highlight .s1 {
  color: #e6db74;
} /* Literal.String.Single */
.highlight .ss {
  color: #e6db74;
} /* Literal.String.Symbol */
.highlight .bp {
  color: #f8f8f2;
} /* Name.Builtin.Pseudo */
.highlight .vc {
  color: #f8f8f2;
} /* Name.Variable.Class */
.highlight .vg {
  color: #f8f8f2;
} /* Name.Variable.Global */
.highlight .vi {
  color: #f8f8f2;
} /* Name.Variable.Instance */
.highlight .il {
  color: #ae81ff;
} /* Literal.Number.Integer.Long */
/* Generic Heading & Diff Header */
.highlight .gu {
  color: #75715e;
} /* Generic.Subheading & Diff Unified/Comment? */
.highlight .gd {
  color: #f92672;
} /* Generic.Deleted & Diff Deleted */
.highlight .gi {
  color: #a6e22e;
} /* Generic.Inserted & Diff Inserted */
.highlight pre {
  background-color: #000;
}

pre, code {
  font-size: 90%;
}

code {
  font-family: monospace;
  padding: 0px;
}

pre {
  padding: 8px 12px;
  overflow-x: auto;
}

pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

main {
  background: #333;
  color: #ccc;
}

.light main {
  background: #eee;
  color: #000;
}

a {
  color: #00a7e6;
  text-decoration: none;
}

a:hover {
  color: #00e7a7;
}

.button {
  display: inline-block;
  color: #ccc;
}

.light .button {
  color: #333;
}

button {
  color: #ccc;
  background: transparent;
}

.light button {
  color: #333;
}

.button:hover, button:hover {
  color: #008dff;
}

h1, h1 a, h1 a:hover {
  color: #ddd;
  font-weight: 300;
  margin-top: 30px;
  padding-bottom: 10px;
}

h2 {
  color: #ddd;
  font-weight: 300;
  font-size: 16px;
}

h3 {
  margin: 0px;
  color: #ccc;
  font-size: 16px;
  font-weight: 400;
}

.light h3 {
  color: #000;
}

h3 a {
  font-weight: 400;
  margin: 5px;
}

h4 {
  color: #ccc;
  font-size: 18px;
  font-weight: 400;
  text-shadow: none;
}

.light h4 {
  color: #000;
}

h5 {
  color: #aaa;
  font-size: 95%;
  border: none;
  font-weight: 300;
  text-decoration: none;
  text-shadow: none;
}

.light h5 {
  color: #555;
}

h6 {
  color: #aaa;
  font-size: 95%;
  border: none;
  font-weight: 300;
  text-decoration: none;
  padding: 0 0 20px;
  text-shadow: none;
}

.light h6 {
  color: #555;
}

.year {
  color: #ddd;
  font-weight: normal;
  text-align: center;
  font-size: 20px;
  line-height: 1em;
  display: block;
  padding: 10px 0px 20px 0px;
}

.light .year {
  color: #333;
}

.ctable tr:hover {
  background: #444;
}

.light .ctable tr:hover {
  background: #ccc;
}

.gtable tr:hover {
  background: #555;
}

.light .gtable tr:hover {
  background: #ccc;
}

th {
  font-weight: 400;
}

.gtable {
  text-align: left;
  margin-top: 0;
  margin-bottom: 16px;
}
.gtable th {
  font-size: 16px;
  text-align: right;
  padding: 6px 13px;
}
.gtable td {
  padding: 6px 13px;
}
.gtable td + td {
  text-align: right;
}

/*# sourceMappingURL=style.css.map */