/*
Theme Name: Docu
Theme URI: http://themes.codefleet.net/docu/
Author: kosinix
Author URI: http://www.codefleet.net/
Description: The Docu theme for WordPress is intended for use in making documentation of software products.
Version: 0.8
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: black, white, light, one-column, two-columns, left-sidebar, flexible-width, custom-menu, featured-images, theme-options, translation-ready
Text Domain: docu

This theme, like WordPress, is licensed under the GPL.
Font Awesome license - MIT License - http://opensource.org/licenses/mit-license.html
Font Awesome Fonts license - SIL OFL 1.1 - http://scripts.sil.org/OFL
Normalized.css license is included in docu/css/license.txt
*/

/**
 * Globals
 * ----------------------------------------------------------------------------
 */

/**
 * Notes
 * ----------------------------------------------------------------------------
 * 
 * font size base = 14px
 * line height base = 26px
 * line height = line height base / font size
 * http://gregrickaby.com/using-the-golden-ratio-and-rems/
 * http://www.pearsonified.com/typography/
 */

/**
 * Globals
 * ----------------------------------------------------------------------------
 */
html {
    font-size: 62.5%; /* 1.0rem = 10px */
}

.container{ 
	margin:0 auto;
	text-align:left;
}

.clearfix:after,
article:after,
.nav-links:after{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clear{
	clear:both
}

a,
a:visited{
	color:#428BCA;
	text-decoration:none;
}

body{
	background:#F8F7ED;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
	color:#444;
	text-align:center;
}

/* Pad sides smaller screens */
.header,
.footer{
	padding-left: 20px;
	padding-right: 20px;
}

/**
 * Font Assignments
 * ----------------------------------------------------------------------------
 */
body{
	font-family: "Helvetica Neue", Arial, sans-serif;
}
.header,
.navbar{
	font-family: Tahoma, sans-serif;
}
h1, h2, h3, h4, h5, h6{
	font-family: Georgia,serif;
}

/**
 * Header
 * ----------------------------------------------------------------------------
 */
.header{
	background: #292929;
	border-bottom: 1px solid #000;
	box-shadow: 0 1px 0 rgba(255,255,255,.1);
	position: relative;
	z-index: 1;
}
.header .home-link{
	padding: 15px 0;
	font-size: 18px;
	font-size: 1.8rem;
	color: #999;
	display: block;
	float: left;
}
.header .home-link:hover{
	color: #fff;
}
.main-search{
	float: right;
	position: relative;
	margin: 13px 0;
}
.main-search label{
	display: none;
}
.main-search input[type="text"]{
	background: #3B3B3B;
	border: 0;
	padding: 1px 4px 1px 10px;
	color: #aaa;
	width: 214px;
	height: 22px;
	outline: none;
}
.main-search input[type="text"]:focus{
	background: #444;
}
.main-search input[type="submit"]{
	position: absolute;
	right: 0;
	top: 0;
	font-size: 0;
	line-height: 0;
	width: 24px;
	height: 24px;
	background: none;
	border: 0;
	z-index: 1;
	cursor: pointer;
}
.main-search .icon-search{
	position: absolute;
	right: 5px;
	top: 50%;
	font-size: 14px;
	color: #428BCA;
	margin-top: -7px;
}

/**
 * Nav
 * ----------------------------------------------------------------------------
 */
.navbar{
	background: #333;
	border-top:1px solid #595959;
}
.navbar a{
	color: #999;
}
div.nav-menu ul,
ul.nav-menu {
	list-style:none inside;
	margin:0;
	padding:0;
}

div.nav-menu > ul > li,
ul.nav-menu > li {
	float: left;
	position: relative;
}

div.nav-menu > ul > li > a,
ul.nav-menu > li > a{
	display: block;
	padding: 15px 15px;
}
div.nav-menu > ul > li:hover > a,
ul.nav-menu > li:hover > a{
	color: #fff;
	background: #222;
}


/* Submenu */
div.nav-menu .children,
ul.nav-menu .sub-menu{
	position: absolute;
	left:0;
	top: 100%;
	margin: 0;
	padding: 0;
	background: #222;
	display: none;
	min-width: 200px;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	z-index: 3;
}

div.nav-menu li:hover > .children,
ul.nav-menu li:hover > .sub-menu{
	display: block;
}

div.nav-menu .children li,
ul.nav-menu .sub-menu li{
	position: relative;
}

div.nav-menu .children a,
ul.nav-menu .sub-menu a{
	display: block;
	padding: 10px;
}

div.nav-menu .children li:hover > a,
ul.nav-menu .sub-menu li:hover > a{
	background: #000;
	color: #fff;
}

/* Grandchildren */
div.nav-menu .children .children,
ul.nav-menu .sub-menu .sub-menu{
	display: none;
	left: 100%;
	top:0;
}
div.nav-menu .children li:hover .children,
ul.nav-menu .sub-menu li:hover .sub-menu{
	display: block;
}

/**
 * Main
 * ----------------------------------------------------------------------------
 */
.main{
	background: #fff;
}
.main .container{
	position: relative;
	min-height: 900px;
	
}


/**
 * Content
 * ----------------------------------------------------------------------------
 */
.content{
	float: left;
	width: 80%;
}
.sidebar-hidden .content {
	float: none;
	width: auto;
}
.content-inner{
	padding: 20px 20px 20px 40px;
}
.entry-content p,
.entry-content li{
	line-height: 1.85757;
}
.entry-header{
	margin:0 0 33px 0;
}
.entry-title{
	font-style: 30px;
	font-size: 3.0rem;
	font-weight: normal;
	word-wrap: break-word;
	margin: 0 0 15px;
}
.entry-title a{
	color: #444;
}
.entry-title a:hover{
	color: #428BCA;
}
.entry-meta{
	line-height: 1.857;
}
.entry-summary{
	line-height: 1.857;
}
/**
 * Sidebar
 * ----------------------------------------------------------------------------
 */
.sidebar,
.sidebar-bg{
	width: 20%;
}
.sidebar-hidden .sidebar,
.sidebar-hidden .sidebar-bg {
	width: 0;
}
.sidebar-hidden .sidebar {
	display: none;
}
.sidebar{
	float: left;
	position: relative;
	z-index: 1;
}
.sidebar-inner{
	padding: 20px 15px;
	clear: left;
}
.sidebar-bg{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background: #EEEEEE;
	border-right:1px solid #444;
}
a.sidebar-toggler {
	position: absolute;
	top: 100px;
	left: 100%;
	background: #EEEEEE;
	z-index: 2;
	padding: 2px 2px 5px 2px;
	line-height: 1.2;
	font-size: 13px;
	text-align: center;
	color: #444;
	border-radius: 0 3px 3px 0;
	border: 1px solid #444;
	border-left: 0;
}
a.sidebar-toggler .expand {
	display: none;
}
.sidebar-hidden a.sidebar-toggler .collapse {
	display: none;
}
.sidebar-hidden a.sidebar-toggler .expand {
	display: block;
}
a.sidebar-toggler:hover {
	background: #444;
	color: #fff;
}
.sidebar ul{
	margin: 0;
	padding: 0 0 0 30px;
}
.sidebar li a{
	color: #333;
}
.sidebar li a:hover{
	color: #428BCA;
}
.sidebar select{
	max-width: 95%;
}

/**
 * Widgets
 * ----------------------------------------------------------------------------
 */
.widget{
	margin-bottom: 20px;
}
.widget-title{
	margin: 0;
	padding: 7px 0 10px 0;
	font-size: 18px;
	font-weight: normal;
	border-radius: 5px 5px 0 0;
}
.widget li{
	line-height: 1.857;
}
/* Widget Cloud */
.widget_tag_cloud a{
	color: #333;
}
.widget_tag_cloud a:hover{
	color: #428BCA;
}

/* Expandables */
.expandable,
.sidebar ul.expandable,
.sidebar ol.expandable {
	margin: 0;
	padding: 0;
	list-style: none;
}
.expandable li{
	position: relative;
}
.expandable li a{
	display: block;
	border-top: 0;
	margin: 0 15px;
}
.expandable .children li a,
.expandable .sub-menu li a{
	margin-left: 30px;
}
.expandable .children .children li a,
.expandable .sub-menu .sub-menu li a{
	margin-left: 40px;
}
.expandable li a .count{
	color: #000;
}
.expandable .children,
.expandable .sub-menu{
	display: none;
	list-style: none;
	padding: 0;
	margin: 0;
}
.expandable .has-children > .expander{
	display: block;
}
.expandable .expander{
	position: absolute;
	left: 5px;
	top: 5px;
	width: 5px;
	height: 14px;
	color: #000;
	display: none;
	cursor: pointer;
}
.expandable .children .expander,
.expandable .sub-menu .expander{
	left: 20px;
}
.expandable .expander:hover{
	color: #777;
}
.expandable .expander i{
	position: absolute;
	left: 0;
	top: 0;
}
.expandable .expander .icon-caret-right{
	display: block;
}
.expandable .expander .icon-caret-down{
	display: none;
}
.expandable .expanded > .expander .icon-caret-right{
	display: none;
}
.expandable .expanded > .expander .icon-caret-down{
	display: block;
}


/* Search */
.widget-search{
	
}
.widget-search label{
	display: none;
}
.widget-search input[type="text"],
.widget-search input[type="submit"]{
	border: 1px solid #ccc;
	-webkit-border-radius: 3px;
    border-radius: 3px;
	padding: 6px;
}
.widget-search input[type="text"]{
	width: 60%;
}
.widget-search input[type="submit"]{
	width: 30%;
}

/* Calendar */
#calendar_wrap{
	text-align: center;
}
.widget_calendar table{
	margin: 0 auto;
}
.widget_calendar caption{
	font-size: 16px;
	margin-bottom: 10px;
}
.widget_calendar th,
.widget_calendar td{
	font-size: 14px;
	padding: 3px;
}
.widget_calendar tfoot #prev{
	text-align: left;
}
.widget_calendar tfoot #next{
	text-align: right;
}

/**
 * Footer
 * ----------------------------------------------------------------------------
 */
.footer{
	border-top: 1px solid #ccc;
	padding:10px 20px;
	background: #F8F7ED;
	color: #333;
}

/**
 * Elements
 * ----------------------------------------------------------------------------
 */

/* List */
ul{
	list-style-type: square;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
	clear: both;
	line-height: 1.3;
}
h1 {
	font-size: 48px;
	font-size: 4.8rem;
	margin: 33px 0;
}
h2 {
	font-size: 30px;
	font-size: 3.0rem;
	margin: 25px 0;
}
h3 {
	font-size: 22px;
	font-size: 2.2rem;
	margin: 22px 0;
}
h4 {
	font-size: 20px;
	font-size: 2.0rem;
	margin: 25px 0;
}
h5 {
	font-size: 18px;
	font-size: 1.8rem;
	margin: 30px 0;
}
h6 {
	font-size: 16px;
	font-size: 1.6rem;
	margin: 36px 0;
}

/* Quote */
blockquote{
	font-style: italic;
}

/* Tables */
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	width: 100%;
	margin-bottom: 20px;
}
.entry-content th{
	padding: 6px 10px 6px 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}

/* Definition Lists */
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
}
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.857;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.857;
}

/* Address */
address{
	line-height: 1.857;
}

/* Pre */
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.857;
	margin: 24px 0;
	overflow: auto;
	padding: 24px;
}

.content article{
	border-bottom: 4px double #ccc;
	margin-bottom: 72px;
	padding-bottom: 20px;
}

.navigation{
	margin-bottom: 30px;
	position: relative;
}
.assistive-text,
.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}

.entry-meta{
	clear: both;
}

/* Post Nav */
.nav-previous,
.nav-links a[rel="prev"]{
	float: left;
}
.nav-next,
.nav-links a[rel="next"]{
	float: right;
	text-align: right;
}

/* Comments */
.comments-title{
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: normal;
}
.comment-list{
	list-style-type: none;
	padding: 0;
}
.comment-list > li{
	list-style-type: none;
	padding: 0;
}
.comment-list .children > li{
	list-style-type: none;
}
.content .comment article {
	border-bottom: 1px dotted #ccc;
	margin-bottom: 30px;
	padding-bottom: 20px;
}
.comment-author {
	float: left;
	max-width: 74px;
}
.comment-metadata,
.comment-content,
.comment-list .reply {
	float: right;
	width: 79%;
	word-wrap: break-word;
}
.comment-meta,
.comment-meta a {
	color: #a2a2a2;
	font-size: 13px;
	font-size: 1.3rem;
}
.comment-list .edit-link {
	margin-left: 20px;
}
.comment-author .fn,
.comment-author .url,
.comment-reply-link,
.comment-reply-login {
	color: #428BCA
	font-size: 14px;
	font-size: 1.4rem;
	font-style: normal;
	font-weight: normal;
}
.says {
	display: none;
}
.comment-author .avatar {
	display: block;
	margin-bottom: 10px;
}
.comment-reply-title{
	font-size: 28px;
	font-size: 2.8rem;
	font-style: italic;
	font-weight: normal;
}
.comment-form [for="comment"] {
	float: left;
	padding: 5px 0;
	width: 120px;
}
.comment-form textarea {
	width: 100%;
}

/**
 * WP Core
 * ----------------------------------------------------------------------------
 */
.sticky .entry-title{
	font-style: italic;
}

.gallery-caption{
	
}

.bypostauthor {
	
}

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 5px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 12px;
	font-size: 1.2rem;
    line-height: 2.167;
    margin: 0;
    padding: 0 5px;
}


/**
 * Responsive
 * ----------------------------------------------------------------------------
 */

img{
	max-width: 100%;
	height: auto;
}

/* Optimized for Tablets */
@media (max-width: 800px) {
	body{
		
	}
}

/* Optimized for Mobile Devices */
@media (max-width: 480px) {
	body{
		
	}
}
