body {
  font:20px Georgia,serif
}
.button {
  background: #009900;
  color: white;
  padding: 0px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
  font: 24px Georgia,serif;
	border-radius: 12px;
	border: 6px solid darkgreen;
}

.button-text {
  padding: 10px;
  font-size: 2em;
}

.button-blue {
  background: blue;
  color: black;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
  font: 24px Georgia,serif;
	border-radius: 12px;
	border: 6px solid darkblue;
}

.button-pink {
  background: #ff99cc;
  color: black;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
  font: 24px Georgia,serif;
	border-radius: 12px;
	border: 6px solid #cc0099;
}

.button-green {
  background: green;
  color: black;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
  font: 24px Georgia,serif;
	border-radius: 12px;
	border: 6px solid darkgreen;
}

.button-red {
  background: pink;
  color: black;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
  font: 24px Georgia,serif;
	border-radius: 12px;
	border: 6px solid darkred;
}

a {
	padding: 0;
	margin: 0;
	width: 90%;
	text-decoration: none;
}

a:hover > .button {
  cursor: pointer;
	background-color: limegreen;
  color: black;
}

a:hover > .button-blue {
  cursor: pointer;
	background-color: lightblue;
  color: darkblue;
}

a:hover > .button-green {
  cursor: pointer;
	background-color: lightgreen;
  color: darkgreen;
}

a:hover > .button-red {
  cursor: pointer;
	background-color: pink;
  color: darkred;
}

.flex-container-menu {
  justify-content: space-around;
  display: flex;
  flex-flow: row wrap;
	flex-direction: row;
  list-style: none;
	width: 100%;
  padding-left: 0px;
}
.flex-item-menu {
  font: 24px Georgia,serif;
  font-weight: bold;
  text-align: left;
  padding-top: 0px;
  padding-left: 0px;
}

.flex-container {
  display: flex;

	flex-direction: column;
  
  /* Then we define the flow direction 
     and if we allow the items to wrap 
   * Remember this is the same as:
   * flex-direction: row;
   * flex-wrap: wrap;
   */
  flex-flow: row wrap;
  
  /* Then we define how is distributed the remaining space */
  justify-content: space-around;
  
  padding: 0;
  margin-right: 30px;
  list-style: none;
}

.flex-item {
  background: #009900;
  padding: 5px;
  padding-left: 20px;
  width: 100%;
  /* height: 150px; */
  margin-top: 40px;
  line-height: 100px;
  color: white;
  font-weight: bold;
  font-size: 3.5em;
  text-align: left;
}

.flex-item-blue {
  background: blue;
  padding: 5px;
  padding-left: 20px;
  width: 100%;
  /* height: 150px; */
  margin-top: 40px;
  line-height: 100px;
  color: white;
  font-weight: bold;
  font-size: 3.5em;
  text-align: left;
}

.flex-item-green {
  background: green;
  padding: 5px;
  padding-left: 20px;
  width: 100%;
  /* height: 150px; */
  margin-top: 40px;
  line-height: 100px;
  color: white;
  font-weight: bold;
  font-size: 3.5em;
  text-align: left;
}

.flex-item-red {
  background: pink;
  padding: 5px;
  padding-left: 20px;
  width: 100%;
  /* height: 150px; */
  margin-top: 40px;
  line-height: 100px;
  color: darkred;
  font-weight: bold;
  font-size: 3.5em;
  text-align: left;
}

.flex-item-pink {
  background: #ff99cc;
  padding: 5px;
  padding-left: 20px;
  width: 100%;
  /* height: 150px; */
  margin-top: 40px;
  line-height: 100px;
  color: darkred;
  font-weight: bold;
  font-size: 3.5em;
  text-align: left;
}

.title {
	text-align: center;
	font-size: 5em;
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 20px;
}

.sub-title {
	font-size: 2em;
	font-weight: bold;
	margin-top: 15px;
	margin-bottom: 10px;
}

.setlist {
  font-family: 'Courier New', monospace;
  font-size: 1.8em;
  font-weight: bold;
  margin: 20px;
  list-style: circle;
}

.arrangelist {
  font-family: 'Courier New', monospace;
  font-size: 2em;
  font-weight: bold;
  margin: 20px;
}

.setlist > ol {
  margin-left: 2em;
}

.topspace {
  margin-top: 100px;
}

.leftpad {
  margin-left: 30px;
}

#dimensions {
	text-align: center;
}

@media screen and (max-width: 160px) {
	#print-button { display: none; }
}

@media only screen and (max-width: 600px) {
  body {
    background-color: lightblue;
  }
}

.setlist_link {
  text-decoration: underline;
  color: blue;
}

.doclist > ul {
  margin-left: 40px;
  padding-left: 40px;
}
.doclist > ul > li {
  margin-bottom: 20px;
}

.setlist {
  padding-left: 2em;
  padding-top: 0em;
  font-size: 2em;
}
