body {
  padding-top: 20px;
  padding-bottom: 20px;
  
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
}


h1 a:hover, h1 a:active {
    text-decoration: none !important;
}

h2, h3, h4 {
	color: #588fbf !important;
}

quote {
    background-color: #f5f5f5;
    display: block;
    border: thin solid #ccc;
    padding: 0.7em;
    margin-top: 0.3em;
}

a {
    color: #337ab7;
    text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    word-break: break-all;
    word-wrap: break-word;
    color: #333333;
    background-color: #f5f5f5;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

article {
    margin-bottom: 30px;
}

thead {
	background-color: lightgrey;
}

@media (min-width: 768px) and (max-width: 991px) {
    body {font-size: large;}
}

.spinning {
    animation: spin 1s infinite linear;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

