


#wrap { width: 75%; margin: 0 auto; min-width: 300px; max-width: 800px; }

#tabwrap {
	
	background: #fff;
	border-radius: 10px;
}
#tabs { 
overflow: hidden; background: #FB8F28;
	border-radius: 10px 10px 0 0;
}
#tabs li {
	list-style: none; 
	
}
#tabs li a {
	float: left;
	display: block;
	padding: 12px 0;
	color: #FFF;
	width: 25%;
	text-decoration: none;
	text-align: center;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	font-size: 15px;
	box-sizing:border-box;
	transition:0.5s;

}
#tabs li a:hover {
	color: #000;
}
@media screen and (max-width: 600px) {
	#tabs li a {
		width:50%;
		box-sizing: border-box;
	}
}

#tabs li a img{
	
	max-width:100%;
}

#tabs li a:hover { background: #fff; }
#tabs li:first-child a { border-left: 0; }
#tabs li:last-child a { border-right: 0; }

#tabs li.current a {
	background: #fff;
	color: #000;
	border-bottom:solid 1px #fff;

}
#tabs li.current a:before{
	content: "\f14a";
	font-family: FontAwesome;
	margin: 0 5px 0 0;
	color: #FB8F28;
	font-size: 90%;
}
#tabwrap #content {
	min-height:550px;
	margin:10px 0;
	padding:40px;
	
}
@media screen and (max-width:805px){
	#tabwrap #content{
		height:auto;
		min-height:inherit;
		margin:10px 0;
		padding:20px 10px;
		
	}
}

#content > div {
	clear: both;
	line-height: 19px;
	display: none;
	font-size: 14px;
}

#content .current { display: block; }
#content #home.first { display: block; }


.syntaxhighlighter { padding: 10px!important; font-size: 1.1em!important; 	box-shadow: 0 0 20px #ddd;}
#instructions p { color: #666; font-size: 14px; margin: 10px 0 20px 0; text-shadow: 1px 1px 1px #fff;}

code, pre, xmp {
	white-space: pre-wrap;       /* css-3 */
	white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
	white-space: -pre-wrap;      /* Opera 4-6 */
	white-space: -o-pre-wrap;    /* Opera 7 */
	word-wrap: break-word;
}