/*==========
GLOBAL STYLE
============*/
body {
  background: #FFF;
}

h1 {
	font-family: 'Calligraffitti', cursive;
	color: #000;
	margin: 15px 0;
}

h2,
h3,
p {
	font-family: 'Roboto Condensed', sans-serif;
}

h2 {
	font-weight: 700;
	color: #363636;
	margin: 15px 0;
}

h3 {
	font-weight: 400;
	font-style: italic;
	color: #666;
	margin: 15px 0;
}

p {
	font-weight: 300;
	line-height: 24px;
	color: #222;
	margin: 10px;
}

.img {
	float: right;
	box-shadow: 2px 2px 5px 3px rgba(34,34,34,.3);
}

/* Styling for ems */
em {
	font-family: 'Roboto Condensed', sans-serif; 
	font-weight: 400;
	font-size: 10px;
	font-style: italic;
	margin: 10px 0;
}

/* Link Styling */
a:link,
a:visited {
	color: #B96E7B;
	font-weight: 400;
	text-decoration: none;
}

a:hover,
a:active {
	color: #B96E7B;
	font-weight: 400;
	text-decoration: underline;
}

/* Left Nav CSS */
.accordion {
  color: #FFF;
  width: 100%;
}
.accordion .section {
  width: 100%;
}
.accordion .section input[type='radio'] {
  display: none;
}
.accordion .section input[type='radio']:checked + label {
  background: #363636;
}
.accordion .section input[type='radio']:checked + label:before {
  content: " ";
  position: absolute;
  border-left: 3px solid #FFF;
  height: 100%;
  left: 0;
}
.accordion .section input[type='radio']:checked ~ .content {
  max-height: 300px;
  opacity: 1;
  z-index: 10;
  overflow-y: auto;
}
.accordion .section label {
  position: relative;
  cursor: pointer;
  padding: 10px 20px;
  display: table;
  background: #222;
  width: 100%;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  -ms-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.accordion .section label:before {
  content: " ";
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  border-top: 1px solid #363636;
}
.accordion .section label:hover {
  background: #363636;
}
.accordion .section label span {
  display: table-cell;
  vertical-align: middle;
}
.accordion .section:last-of-type {
  border-bottom: 1px solid #363636;
}
.accordion .section .content {
  max-height: 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
  position: relative;
  overflow-y: hidden;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.left-menu {
  background: #222;
  width: 200px;
  position: absolute;
  top: 0;
  bottom: 0;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 300;
}

.accordion {
  font-size: 14px;
}
.accordion .section .content {
  padding: 0 15px;
}
.accordion .section input[type='radio'] {
  display: none;
}
.accordion .section input[type='radio']:checked ~ .content {
  padding: 15px;
}

ul {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
ul li {
  padding: 10px;
}

ul li:hover {
  cursor: pointer;
}

.logo {
  padding: 30px 10px;
  width: 200px;
  text-align: center;
  color: #FFF;
  font-size: 20px;
  font-family: 'Calligraffitti', cursive;
}

.logo a {
  text-decoration: none;
  color: #FFF;
}



/* Layout for Colors */
.color-1,
.color-2,
.color-3,
.color-4,
.color-5,
.color-6 {
	border: 1px solid #000;
	float: left;
	margin: 10px 10px;
	height: 50px;
	width: 50px;
}

.color-1 {
	background-color: #FFF;
}

.color-2 {
	background-color: #666;
}

.color-3 {
	background-color: #363636;
}

.color-4 {
	background-color: #222;
}

.color-5 {
	background-color: #000;
}

.color-6 {
  background-color: #B96E7B;
}