html {
  font-family: 'Times New Roman', Times, serif;
}

@font-face {
  font-family: Monte;
  src: url("./font/MonteCarlo.ttf");
}

h1 {
  font-family: Monte;
  font-size: 50px;
  font-weight: bold;
}

h2 {
  color: rgb(38, 70, 38);
}

.info {
  padding: 5px;
  border: 1px grey solid;
  border-radius: 2px;
  background-color:#f5fffb;
}

.saint-name {
  font-family: Monte;
  display:inline;
  font-size: 20px;
  font-weight: bold;
}

/**
Sidebar stuffs
*/

.sidebar {
  float: left;
  width: 260px;
  padding: 10px;
}

.tree,
.tree ul {
  list-style: none;
  padding-left: 20px;
  margin: 0;
}

.tree ul {
  display: none;
}

.tree li {
  line-height: 20px;
  cursor: default;
}

.folder > .toggle {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("./icons/plus.ico") no-repeat center;
  vertical-align: middle;
  cursor: pointer;
}

.folder.open > .toggle {
  background-image: url("./icons/minus.ico");
}

.folder > .label {
  padding-left: 4px;
  font-weight: bold;
}

.page {
  padding-left: 20px;
  background: url("./icons/page.ico") no-repeat left center;
}

.external {
  padding-left: 20px;
  background: url("./icons/external.ico") no-repeat left center;
}

/**
Content stuffs
*/

.content {
  margin-left: 280px; /* sidebar width + spacing */
  margin-right: 280px;
}