body {
	font-family: 'Lato', Verdana, Geneva, Arial, helvetica, sans-serif;
	font-size: 14px;
}


.container {
	max-width: 800px;
	margin:auto;
	padding: 10px;
}

.main {
    text-align: justify;
}

.footer {
	font-size:.75em;
	text-align:center;
}

a {
	color: #060;
	font-weight: bolder;
	text-decoration: none;
}

a:visited {
	color: #5c8727;
}

a:hover {
	color: #5c8727;
}

a:active {
	color:#fff;
}

/* Advanced Checkbox Hack */
body {
  -webkit-animation: bugfix infinite 1s;
}

@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
input[type=checkbox] {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

label {
  display: none;
  cursor: pointer;
  user-select: none;
}

/* background for li / select */
/* custom-dropdown */
nav[role="custom-dropdown"] {
  position: relative;
  width: 100%;
}
nav[role="custom-dropdown"] a,
nav[role="custom-dropdown"] label {
  color: white;
  text-decoration: none;
  transition: color .3s ease-in-out;
}
nav[role="custom-dropdown"] ul {
  padding: 0;
  margin: 0 auto;
  width: 100%;
  list-style: none;
}
nav[role="custom-dropdown"] ul > li {
	float:left;
	padding: 10px 8px 10px 1px;
	width: 15.5%;
	background-color: #666;
	text-align: center;
	transition-duration: .3s;	
	transition-timing-function: ease-in-out;
	transition-property: box-shadow, color;
	box-shadow: 0 0.05em 0.25em 0 rgba(0, 0, 0, 0.35);
	cursor: pointer;
}
nav[role="custom-dropdown"] ul > li:hover {
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  box-shadow: 0 0.05em 0.25em 0 rgba(0, 0, 0, 0.35), inset 0 0 0 2em rgba(0, 0, 0, 0.3);
}
nav[role="custom-dropdown"] ul > li:hover > a {
  color: #fff;
}

/* small screens */
@media screen and (max-width: 800px) {
  body {
    margin: 0;
  }

  nav[role="custom-dropdown"] ul {
    display: none;
    height: 100%;
  }
  nav[role="custom-dropdown"] label {
	position: relative;
	display: block;
	width: 100%;
	min-height: 2.25em;
	padding-bottom:.25em;
	font-size: 1.2em;
	margin: 0;
	background-color: #666;
  }
  nav[role="custom-dropdown"] label:after {
    position: absolute;
    right: .25em;
    top: 0;
    content: "\2261";
    font-size: 1.8em;
  }
  nav[role="custom-dropdown"] input[type=checkbox]:checked ~ label:after {
    color: #222;
  }
  nav[role="custom-dropdown"] input[type=checkbox]:checked ~ ul {
    display: block;
  }
  nav[role="custom-dropdown"] input[type=checkbox]:checked ~ ul > li {
    width: 70%;
	float:right;
	display:block;
    opacity: .8;
    text-align: right;
	font-size:1.2em;
  }
  nav[role="custom-dropdown"] input[type=checkbox]:checked ~ ul > li:after {
    position: absolute;
    right: .25em;
    font: bold 1.4em;
  }
}

/* Tablet */
/*@import url("tablet.css") only screen and (min-width:321px) and (max-width:768px);
/* Desktop */
/*@import url("desktop.css") only screen and (min-width:769px);
