body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Roboto Slab", serif;
  color: #333333;
}

h1,
h2,
h3,
h4,
h5,
h6,
time {
  font-family: "Ruda", sans-serif;
}

#container {
  margin: 0;
  padding: 0;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#container > * {
  width: 700px;
  margin: 0 auto;
}

@media only screen and (max-width: 800px) {
  #container > * {
    width: auto;
    margin: 0 1.2em;
  }
}

#container header {
  margin-bottom: 1em;
}

#container header h1 {
  font-size: 2.4rem;
}

#container header h1 a {
  color: #000000;
}

#container header ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  float: right;
}

#container header ul li {
  margin-left: 1em;
}

@media only screen and (max-width: 800px) {
  #container header ul {
    float: none;
  }
  #container header ul li {
    margin: 0 1em 0 0;
  }
}

#container nav {
  border-bottom: solid 3px #cecece;
  padding-bottom: 0.5em;
  font-family: "Ruda", sans-serif;
}

#container nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}

#container nav ul li {
  margin-left: 1em;
}

#container nav ul li a.active {
  border-bottom: 0.5em solid #666666;
}

#container main {
  flex: 1 0 0;
  line-height: 1.5;
  font-size: 1.2rem;
}

#container main section#home ul {
  list-style: none;
  padding-inline-start: unset;
}

#container main section#home ul li ul{
  margin: auto;
  padding: auto;
  list-style: disc;
  padding-inline-start: 40px;
}

#container main section#home ul li {
  margin: 0.5em 0;
  padding-bottom: 0.5em;
}

#container main section#home ul li h2 {
  margin: 0.2em 0;
}

#container main section#home span {
  color: #666666;
}

#container main section#list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#container main section#list ul li {
  padding: 0.5em 0;
  border-bottom: 1px solid #cecece;
}

#container main section#list ul li time, #container main section#list ul li span.count {
  float: right;
}

#container main section#list ul li:last-child {
  border-bottom: none;
}

#container main section.post-nav ul {
  margin: 0.5em 0;
  padding: 0.5em 0 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #f7f7f7;
  font-size: 0.9em;
}

#container main article pre {
  background-color: #ffffcc;
  overflow-x: auto;
  padding: 0.8em;
  font-size: 0.9em;
  box-shadow: 0 -1px 0 #bbbbbb inset;
}

#container main article pre code {
  font-size: 0.9em;
}

#container main article p code {
  padding: 0.2em;
  background-color: #ffcccc;
  font-size: 0.9em;
}

#container main article p kbd {
  display: inline-block;
  padding: 0.2em 0.3em;
  font-size: 0.8em;
  line-height: 1em;
  color: #555555;
  vertical-align: middle;
  background-color: #fcfcfc;
  border-width: 1px;
  border-style: solid;
  border-color: #cccccc #cccccc #bbbbbb;
  border-image: none;
  border-radius: 3px;
  box-shadow: 0 -1px 0 #bbbbbb inset;
}

#container main h1 {
  margin-bottom: 1rem;
}

#container footer {
  border-top: solid 1px #cecece;
}

#container footer h6 {
  font-size: 0.8em;
}

.meta-aside, #container main section#home ul li aside, #container main article aside {
  margin: 0.5em 0;
  font-family: "Ruda", sans-serif;
  color: #909090;
  font-size: 0.8em;
}

.meta-aside ul, #container main section#home ul li aside ul, #container main article aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.meta-aside ul li, #container main section#home ul li aside ul li, #container main article aside ul li {
  margin: 0;
  padding: 0;
}

a {
  color: #666666;
  text-decoration: none;
}

#home h1 a {
  border-bottom: none;
}

#home a {
  border-bottom: 2px #666666 dotted;
}

article a {
  border-bottom: 2px #666666 dotted;
}

.image, figure img, img {
}

.full-image, figure.full img, img[src*="full"] {
}


.mid-image, figure.mid img, img[src*="mid"] {
  width: 100%;
}

@supports (width: 100vw) {
  .mid-image, figure.mid img, img[src*="mid"] {
    width: 800px;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -400px;
    margin-right: -400px;
  }
  @media only screen and (max-width: 800px) {
    .mid-image, figure.mid img, img[src*="mid"] {
      width: 100%;
      left: 0;
      right: 0;
      margin: 0;
    }
  }
}

.float-image, figure.float img, img[src*="float"] {
  width: 300px;
  float: left;
  margin: 0 1em 1em -3em;
  box-shadow: 0 3px 3px #bbbbbb;
}

@media only screen and (max-width: 800px) {
  .float-image, figure.float img, img[src*="float"] {
    float: none;
    margin: 0;
    width: 100%;
  }
}

.float-image-right, figure.float-right img, img[src*="float-right"] {
  width: 300px;
  float: right;
  margin: 0 -3em 1em 1em;
  box-shadow: 0 3px 3px #bbbbbb;
}

@media only screen and (max-width: 800px) {
  .float-image-right, figure.float-right img, img[src*="float-right"] {
    float: none;
    margin: 0;
    width: 100%;
  }
}

figure {
  margin: 0;
}

figure figcaption p {
  margin-top: 0.3em;
  font-size: 0.8em;
  font-style: italic;
}

figure.full {
  margin: 0;
}

figure.mid {
  margin: 0;
}

figure.float {
  margin: 0;
  float: left;
}

figure.float-right {
  margin: 0;
  float: right;
}

figure.float-right figcaption {
  margin-left: 1em;
}

table {
  width: 100%;
  border-bottom: solid 1px #cecece;
}

table thead {
  background-color: #cecece;
}

blockquote {
  margin: 1em;
  border-left: solid 0.1em #cecece;
  padding: 0.5em 2em;
  position: relative;
  background-color: #efefef;
  box-shadow: 0 -1px 0 #bbbbbb inset;
}

blockquote::before {
  content: "\f10d";
  font-size: 3em;
  font-family: "FontAwesome";
  color: rgba(192, 192, 192, 0.3);
  position: absolute;
  left: 6px;
  top: 0;
}

@media only screen and (max-width: 800px) {
  blockquote {
    margin: 1em 0;
    padding: 0.5em;
  }
}

dl dd {
  font-style: italic;
}

ul.pagination {
  display: flex;
  justify-content: center;
  margin: 1em 0 0;
  padding: 0.5em 0;
  list-style: none;
}

ul.pagination li {
  padding: 0 1em;
}

#contactForm {
  padding: 0px; }

#contactForm form {
  background: url("/themes/paperino/form-sprites.png") no-repeat left top;
  left: -4px;
  top: -3px;
  width: 488px;
  height: 318px;
  position: relative; }

#contactForm ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  color: #7b7b79; }

#contactForm li {
  position: absolute; }

#contactForm label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block; }

#contactForm input {
  padding: 4px;
  border: 1px solid #c6c6c4;
  width: 190px;
  height: 20px;
  font-size: 12pt; }

#form-to {
  left: 24px;
  top: 18px; }

#form-to span {
  background: url("/themes/paperino/form-sprites.png") no-repeat -488px 0px;
  left: 37px;
  top: 0px;
  width: 128px;
  height: 21px;
  text-indent: -1000em;
  overflow: hidden;
  display: block;
  position: absolute; }

#form-name {
  left: 24px;
  top: 43px; }

#form-email {
  left: 24px;
  top: 18px; }

#form-message {
  left: 24px;
  top: 98px; }

#form-message textarea {
  margin: 0px;
  padding: 4px;
  border: 1px solid #c6c6c4;
  width: 432px;
  height: 100px;
  font-size: 10pt; }

#form-notice {
  left: 24px;
  top: 260px;
  text-transform: uppercase;
  line-height: 1.2em;
  padding-left: 26px;
  font-size: 7.5pt; }

#form-notice span {
  background: url("/themes/paperino/form-sprites.png") no-repeat -488px -141px;
  left: 0px;
  top: 3px;
  width: 21px;
  height: 18px;
  display: block;
  position: absolute; }

#form-buttons {
  left: 332px;
  top: 252px; }

#form-buttons button {
  background: url("/themes/paperino/form-sprites.png") no-repeat -488px -21px;
  margin: 0px;
  padding: 0px;
  border: 0px currentColor;
  width: 140px;
  height: 40px;
  text-indent: -1000em;
  overflow: hidden;
  cursor: pointer; }

#form-buttons button:hover {
  background-position: -488px -61px; }

#form-buttons button:active {
  background-position: -488px -101px; }

#disablingDiv {
  /* Do not display it on entry */
  display: none;
  /* Display it on the layer with index 1001.
     Make sure this is the highest z-index value
     used by layers on that page */
  z-index: 1001;
  /* make it cover the whole screen */
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  /* make it white but fully transparent */
  background-color: black;
  opacity: .30;
  filter: alpha(opacity=30); }
  
  
  label.inlined + input.smallbox
{
    margin-top: -22px;
    background-color: transparent;
    position: relative;
    z-index: 2;
}
label.inlined
{
    padding-top: 5px;
    text-align: right;
    display: block;
    width: 343px;
    position: relative;
    z-index: 1;
    opacity: 0.75;
    -webkit-transition: opacity 0.15s linear;
    font-size: 0.8em;
    top: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border: solid 1px #848484;
    height: 18px;
    padding-right: 3px;
}
label.focus
{
    font-weight: bold;
}
label.has-text
{
    opacity: 0.0;
    -moz-opacity: 0.0;
    -webkit-opacity: 0.0;
    -webkit-transition-duration: 0s;
}
.inlinedBox
{
    margin-bottom: 10px;
}
.nameSpan
{
    top: -50px;
    position: absolute;
    height: 20px;
}

#form-to {
	font: 400 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	left: 24px; top: 18px;
}
#form-to span {
	background: url("/themes/paperino/form-sprites.png") no-repeat -488px 0px; left: 37px; top: 0px; width: 128px; height: 21px; text-indent: -1000em; overflow: hidden; display: block; position: absolute;
}
#form-name {
	font: 400 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	left: 24px; top: 43px;
}
#form-email {
	left: 24px; top: 18px;
}
#form-message {
	left: 24px; top: 98px;
	font: 400 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
#form-message textarea {
	background: url("/themes/paperino/images/form-fieldbg.png") repeat-x left top rgb(255, 255, 255); margin: 0px; padding: 4px; border: 1px solid rgb(198, 198, 196); width: 432px; height: 100px; font-size: 10pt;
}
#form-notice {
	left: 24px; top: 260px; text-transform: uppercase; line-height: 1.2em; padding-left: 26px; font-size: 7.5pt;
}
#form-notice span {
	background: url("/themes/paperino/form-sprites.png") no-repeat -488px -141px; left: 0px; top: 3px; width: 21px; height: 18px; display: block; position: absolute;
}
#form-buttons {
	left: 332px; top: 252px;
}
#form-buttons button {
	background: url("/themes/paperino/form-sprites.png") no-repeat -488px -21px; margin: 0px; padding: 0px; border: 0px currentColor; width: 140px; height: 40px; text-indent: -1000em; overflow: hidden; cursor: pointer;
}
#form-buttons button:hover {
	background-position: -488px -61px;
}
#form-buttons button:active {
	background-position: -488px -101px;
}

fieldset .smallbox
{
    width: 285px;
    height: 20px;
    display: block;
    border: none;
    font-family: Segoe UI,Trebuchet MS,Arial,Helvetica,sans-serif;
    padding-left: 6px;
}
#notification-count-wrapper
{
    position:relative;
	width: 0;
	height: 0;
    
}
#notification-count 
{    
    background-color: #555;
    color: white;
    padding-right: 3px;
    padding-left: 3px;
    position: absolute;
    left: -9px;
    border-radius: 5px;
    top: 9px;
}
