
/**
 * DocFix, a javascript based documentation generator
 * https://github.com/Flonix/DocFix
 *
 * Copyright (C) 2012 Florian Bezdeka

 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.

 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.

 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 **/

body {
	color: rgb(68, 68, 68);
	font-size: 1em;
	line-height: 1.5;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	background-color: rgb(240, 240, 240);
}

table.docfix-table {
	font-size: 14px;
}

img.docfix-logo {
	text-align: center;
	margin-bottom: 30px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

div.docfix-mainbox {
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
	border: 1px solid rgb(225, 225, 232);
	padding: 40px;
	margin-top: 15px;
	margin-bottom: 15px;
	text-align: justify;
}

div#docfix-progress {
	display: none;
}

.docfix-navtag {
	visibility: hidden;
	display: block;
	height: 0px;
	width: 0px;
}

.docfix-hidden {
    visibility: hidden;
	display: block;
	height: 0px;
	width: 0px;
}

div.navbar-inner {
	padding: 0px;
	margin: 0px;
	margin-bottom: 15px;
}

ul.docfix-navtags .icon-chevron-right {
    float: right;
    margin-top: 2px;
    margin-right: -6px;
    opacity: 0.25;
}

ul.docfix-navtags > li > a {
    margin: -1px 0px 0px 0px;
    padding: 8px 14px;
    border: 1px solid rgb(229, 229, 229);
    display: block;
}

ul.docfix-navtags > li:first-child > a {
    border-radius: 6px 6px 0px 0px;
}

ul.docfix-navtags > li:last-child > a {
    border-radius: 0px 0px 6px 6px;
}

a, a:visited {
	color: rgb(0, 144, 210);
}

div.line {
	margin-top: 15px;
	margin-bottom: 15px;
	border-bottom: 1px dotted rgb(0, 152, 216);
}

div.hr {
	margin-top: 15px;
	margin-bottom: 15px;
	border-bottom: 2px solid rgb(238, 238, 238);
}

.alert {
	margin-top: 15px;
}

h1, h2, h3, h4, h5 {
	color: #666666;
	margin-top: 40px;
}

h1 {
	text-align: center;
}

h2 {
	font-size: 26px;
}

h2, h3 {
	border-bottom: 1px solid rgb(225,225,232);
}

blockquote {
	font-family: Georgia, serif;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
	border-left: 0.5em solid rgb(221, 221, 221);
	margin-top: 30px;	
	margin-left: 100px;
	margin-right: 100px;
	padding: 10px;
	text-align: justify;
}

blockquote:before {
	color: #999999;
	content: "“";
	display: block;
	font: italic 400%/1 Cochin,Georgia,"Times New Roman",serif;
	height: 0;
	margin-left: -0.95em;
}

code.prettyprint {
	color: black;
	display: block;
	border: 1px solid black;
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 5px;
	font-size: 13px;
	text-align: left;
}

div#docfix-content  img {
	display: block;
}

div#docfix-content  img.right {
	float: right;
	margin-left: 5px;
}

div#docfix-content  img.left {
	float: left;
	margin-right: 5px;
}

ul.docfix-summary {
	list-style-type: none;
}

a.docfix-header-menu {
	font-size: 13px;
}

li.docfix-level-1 {
	padding-top: 10px;
	padding-left: 0px;
}

li.docfix-level-2 {
	padding-left: 20px;
}

li.docfix-level-3 {
	padding-left: 40px;
}

li.docfix-level-4 {
	padding-left: 60px;
}

li span.docfix-number {
	margin-right: 5px;
}

span.docfix-copyright {
	font-size: 13px;
}

ul.docfix-navtags {
	top: 180px;
	width: 230px;
	margin: 30px 0px 0px;
	padding: 0px;
	background-color: rgb(255, 255, 255);
	border-radius: 6px 6px 6px 6px;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.6);
	
	max-height: 70%;
	overflow-y: auto;
	overflow-x: hidden;
}


@media(max-width: 980px) {
	ul.docfix-navtags {
	    top: 0px;
	    margin-top: 30px;
	    margin-right: 0px;
	}
	
}

@media(max-width: 767px) {
	
	ul.docfix-navtags {
	    width: auto;
	    margin-bottom: 20px;
	    
	    position: static;
		width: auto;
		top: 0px;
	}
	
	
}
