.gfoldablecontainer {
    clear: both;
    border: 1px solid;
    border-color: #ccc;;
    background: #fbfbfb;
    overflow: auto;
}
.gfoldablecontainer .header {
    background: #f1f1f1;
    cursor: pointer;
    cursor: hand;
    width: 100%;
    float: left;
    transition: all 1s ease;
}
.gfoldablecontainer .header .title {
	padding: 3px 3px 3px 10px;
	margin-top: 1px;
	margin-bottom: 5px;
	font-size: 10pt;
	font-weight: bold;
	line-height: 16px;
	float: left;
	overflow: hidden;
	text-overflow: ellipsis;
  	width: calc(100% - 50px);
 	white-space: nowrap;
}
.gfoldablecontainer .header .image {
    width: 26px;
    height: 23px;
    float: right;
}
.gfoldablecontainer .header .image img {
    padding: 5px 5px 0px 5px;
}
.gfoldablecontainer .content {
    position: relative;
    clear: both;
    float: left;
	/*     width: 100%; */
	width: calc(100% - 30px);
    padding: 15px;
}
.gfoldablecontainer .content .children {
/*     margin: 15px; */
    float: left;
    width: 100%;
}
.gfoldablecontainer.highlighted .header {
	background-color: rgba(0, 255, 0, 0.3);
}