/*!
 * Multi-Step-Form PHP Script Documentation CSS
 */
 
body {
	margin: 0 auto;
	width:100%;
}
a {  color: #0095eb;
	text-decoration:none; 
}
img {
	max-width: 100%;
}

/* header */
#header {
	background-color: #f7f7f7;
	box-shadow:0 0 6px rgba(3,3,3,0.6);
	position:fixed;
	left:0;
	width:200px;
	height:100%;
	min-height:100%;
	z-index:100;
}
#header #logo {
	color: #fb9902;
    display: block;
    font-size: 28px;
    font-weight: bold;
    height: 20%;
    margin: 0 auto;
    max-width: 140px;
    padding-top: 30px;
}
#header ul {
	font-size: 13px;
    font-weight: bold;
    height: 75%;
    min-height: 150px;
    overflow: auto;
    padding: 0;
}

#header ul li {
	list-style:none;
	text-align:right;
	padding:0;
}
#header ul a {
    border-top: 1px solid #fb9902;
	color: #6f6f6f;
    display: block;
    padding: 6px 15px 7px 0;
    text-align: right;
    text-decoration: none;
}
#header ul a.last {
    border-bottom: 1px solid #fb9902;
}
#header ul a:hover,#header ul a.active {
	background-color: #fb9902;
    color: #fff;
}
#header ul li ul {
	border-top:0;
	font-size:10px;
	min-height:10px;
	height:auto;
	overflow:auto;
	margin:0;
	display:none;
}
#header ul li ul li a {
	display:block;
	padding:4px 15px 5px 0;
	text-align:right;
}
#copyright {
    bottom: 10px;
    font-size: 12px;
    position: absolute;
    right: 15px;
    text-align: right;
    width: 200px;
    z-index: 1;
}

/* content */
.h3, h3 {
    color: #fb9902;
	margin: 50px 0 20px;
}
.h4, h4 {
    color: #0095eb;
	margin: 30px 0 20px;
}
h5.highlight {
    background-color: #fb9902;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    padding: 10px;
	margin: 50px 0;
    text-align: center;
}
 .list-unstyled > li::before {
    content: "#";
    font-weight: bold;
    padding-right: 8px;
}
.content-wrap {
    margin-left: 200px;
    padding: 50px 30px;
}
.list-unstyled > li {
    font-size: 16px;
}
.list-unstyled ul li {
    font-size: 14px;
}
.html-code {
    background-color: #e5e5e5;
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.35);
	padding: 0;
}
ol.list-code {
	margin: 0;
    padding: 15px 15px 15px 40px;
}
.list-code > li {
    background-color: #f5f5f5;
    border-left: 2px inset honeydew;
    border-right: 2px inset honeydew;
    padding: 2px 0 2px 10px;
}
.list-code > li:first-child {
	border-top: 2px inset honeydew;
	padding-top: 5px;
}
.list-code > li:last-child {
	border-bottom: 2px inset honeydew;
	padding-bottom: 5px;
}
.list-code > li:nth-child(2n+1) {
    background-color: #fff;
}