/*------------------------------------------
	1. Body/Main
------------------------------------------*/
body {
	position: relative;
	background: #fff;
	padding: 0;
	margin: 0;
	line-height: 18px;
	color: rgb(80, 80, 80);
	font: 400 12px 'Open Sans', sans-serif;
}

a {
	text-decoration: none;
}

a:hover, 
a:focus {
	text-decoration: underline;
}

h2 {
	margin-bottom: 15px;
	padding: 5px 0;
	border-bottom: 1px dashed rgb(200, 200, 200);
	color: rgb(50, 50, 50);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

h3 {
	font-size: 15px;
}

ul li {
	margin: 0;
	padding: 0;
	line-height: 20px;
}

.container {
	width: 730px;
	float: left;
	padding: 10px 40px 1000px 40px;
	margin-left: 240px;
}

.section {
	padding: 20px 0;
}

.color-black {
	color: rgb(50, 50, 50);
}

.font-med {
	font-weight: 600;
}

.font-italic {
	font-style: italic;
}

.comment {
	color: rgba(255, 255, 255, 0.3);
}

pre {
	margin-top: 2px;
	padding-right: 20px;
	padding-left: 20px;
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
}

.tag {
	color: #e91e63;
}

.cl {
	color: #259b24;
}

.string {
	color: #ffd54f;
}

.constant {
	color: #7e57c2;
}

.storage {
	color: #e91e63;
}

.lib {
	color: #00bcd4;
}

.dir {
	background: #f0f0f0;
	padding: 5px 8px;
}

.introduction {
	padding-bottom: 20px;
}

.detail {
	list-style-type: none;
	padding: 0;
}

.detail li {
	margin-bottom: 15px;
}

.detail li:last-child {
	margin: 0;
}

/*------------------------------------------
	2. Sidebar
------------------------------------------*/
.sidebar {
	width: 240px;
	height: 100%;
	position: fixed;
	float:left;
	background: rgb(40, 40, 40);
	color: #fff;
}

.sidebar-logo {
	background: rgb(30, 30, 30);
	position: relative;
	height: 100px;
}

.logo {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.nav {
	list-style-type: none;
	margin: 0;
	padding: 8px 0 0 0;
}

.nav li {
	position: relative;
	display: table;
	margin: 0 auto;
	text-align: center;
	-webkit-transition: linear 0.1s;
	-moz-transition: linear 0.1s;
	-o-transition: linear 0.1s;
	transition: linear 0.1s;
}

.nav li:before {
	position: absolute;
	content: '';
	top: 50%;
	left: -15px;
	-webkit-transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  transform: translate(0,-50%);
  opacity: 0;
  background: #fff;
  width: 5px;
  height: 1px;
  -webkit-transition: linear 0.2s;
	-moz-transition: linear 0.2s;
	-o-transition: linear 0.2s;
	transition: linear 0.2s;
}

.nav li:after {
	position: absolute;
	content: '';
	top: 50%;
	right: -15px;
	-webkit-transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  -ms-transform: translate(0,-50%);
  -o-transform: translate(0,-50%);
  transform: translate(0,-50%);
  opacity: 0;
  background: #fff;
  width: 5px;
  height: 1px;
  -webkit-transition: linear 0.2s;
	-moz-transition: linear 0.2s;
	-o-transition: linear 0.2s;
	transition: linear 0.2s;
}

.nav li:hover:before, 
.nav li:focus:before {
	opacity: 1;
	left: -10px;
}

.nav li:hover:after, 
.nav li:focus:after {
	opacity: 1;
	right: -10px;
}

.nav li a {
	display: block;
	width: 100%;
	padding: 8px 0;
	color: #fff;
}

li.active:before {
	left: -10px;
	opacity: 1;
}

li.active:after {
	right: -10px;
	opacity: 1;
}


.nav li a:hover, 
.nav li a:focus {
	background: transparent;
	text-decoration: none;
}

.info {
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgb(30, 30, 30);
	width: 100%;
	padding: 20px 0;;
	text-align: center;
}

.info ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.info ul li {
	padding: 2px 0;
}

.info span {
	font-weight: 600;
}

.info a {
	color: #fff;
}