/*
    DEMO STYLE
*/
/*
@import "https://fonts.googleapis.com/css?family=Didact Gothic:300,400,500,600,700";

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    background: #fafafa;
    margin: 0px;
}
*/
body {
    font:90%/1.45em "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif !important;
    margin:0;
    padding:0;
    color:#333;
    background-color:#fff;
    position:relative;
    height:auto !important;
    min-height:100%;
    box-sizing:border-box;
    -webkit-font-smoothing:inherit;    
}
p {
    color: #444;
    margin: 5px 0 25px 0;
}

pre {
    margin-top: 1px;
}
a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.navbar {
    padding: 15px 10px;
    background: #000;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

#sidebar-header {
    padding: 15px 0 0 15px;
}
#sidebarCollapse{
    height:36px;
    float:left;
    border:0px;
    background: #eee;
    margin-top: 7px;
}
#title_text{
    padding-top: 17px;
    padding-left: 10px;
    float: left;
    display: none;
}
#title_text.active{
    display: block;
}
/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #eee;
    color: #000;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -250px;
}


/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#pageright {
    width: 100%;
    padding: 0px;
    min-height: 100vh;
    transition: all 0.3s;
    margin-top: 0px;
    line-height: 1.3;
}
#content {
    padding:15px;
    margin-top:6px;
}
#title_bar {
    height:50px;
    width: 100%;
    background-color:#eee;
    clear:right;
}
/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #sidebarCollapse span {
        display: none;
    }
}

/*Basic reset*/
#accordian * {margin: 0; padding: 0;}

#accordian {
	background: #eee;
	width: 250px;
	color: #444;
}
/*heading styles*/
#accordian h3 {
	font-size: 14px;
	line-height: 24px;
	padding: 0px;
	cursor: pointer;
	/*fallback for browsers not supporting gradients*/
	background: #eee;
        color:#138496;
        font-weight: 600;
	
}
/*iconfont styles*/
#accordian h3 span {
	font-size: 14px;
}
/*list items*/
#accordian li {
	list-style-type: none;
        display:block;
}
/*links*/
#accordian ul {
    padding-left: 15px;
}
#accordian  a {
	color: #444;
	text-decoration: none;
	font-size: 14px;
	line-height: 27px;
	display: block;
	padding: 0px;
	/*transition for smooth hover animation*/
	transition: all 0.15s;
}
/*Lets hide the non active LIs by default*/
#accordian ul ul {
	display: none;
}

/* Content Styles */
.content_title {
    font-size: 20px;
}
.content_heading{
    font-size: 16px;
    font-weight: 600;
    color: #444;
}
.content_params {
    width: 100%;
    border: 1px solid #B0BED9;
}
.term_list {
    margin-top: 0px;
}
.term_list i {
    font-weight: 600;
    width: 65px;
    display: inline-block;
}
.minus {
    background-image: url("minus.png");
    width: 11px;
    height: 11px;
    display: inline-block;
}

.plus {
    background-image: url("plus.png");
    width: 11px;
    height: 11px;
    display: inline-block;
}