.postit{
	display:flex;
	flex-direction:column;
	}
.postit_opened{
	display:flex;
	flex-direction:column;
	position:fixed;
	left:1px;
	top:1px;
	right:1px;
	bottom:1px;
	}
.postit_body{
	flex:1;
	}
.postit_titlebar{
	display:flex;
	flex-direction:row;
	justify-content: space-between;
	align-items: center;
	background-color:navy;
	color:white;
	}
.postit_toolbar{
	display:flex;
	flex-direction:row;
	align-items: center;
	}
.listAdvanced{
	display:flex;
	flex-direction:column;
	}
.listAdvanced[active=false] .listAdvanced_header, .listAdvanced[active=false] .listAdvanced_footer{
	display:none;
	}
.listAdvanced[active=true]{
	position:fixed;
	left:1px;
	top:1px;
	right:1px;
	bottom:1px;
	background:#aaaaaa;
	}
.listAdvanced_tool_input{
	flex:1;
	}
.listAdvanced_header{
	height:30px;
	}
.listAdvanced_footer{
	height:30px;
	}
.listAdvanced_body{
	flex:1;
	overflow: scroll;
	position: relative;
	}
.listAdvanced_body[mode=create] .listAdvanced_record_checkbox{
	display:none;
	}
.listAdvanced_list{
	padding:5px;
	}
.listAdvanced_records{
	min-width: 300px;
	min-height:50px;
	}
.listAdvanced_record{
	display:flex;
	flex-direction:column;
	margin-top:10px;
	}
.listAdvanced_record_divSelect{
	width:30px;
	border:dotted 1px;
	}
.listAdvanced_record_divLabel{
	display:flex;
	}
.listAdvanced_record_divLabel[selected=true] > .listAdvanced_record_label, .listAdvanced_tool_input[selected=true]{
	background-color:cyan;
	}
.listAdvanced_record_label{
	padding:5px;
	border:solid 1px #cccccc;
	background:white;
	width:95%;
	min-height: 60px;
	}
.listAdvanced_record_postit[visible=false]{
	display:none;
	}
.listAdvanced_record_divChildren{
	padding-left:30px;
	}
.listAdvanced_toolbar{
	display:flex;
	flex-direction:row;
	align-items: center;
	justify-content: space-between;
	}
.listAdvanced_record_actions{
	display:flex;
	flex-direction:column;
	justify-content: space-evenly;
	}
.simpleSketch{
	display:flex;
	flex-direction:column;
	}
.simpleSketch[opened=false]{
	display:inline-flex;
	align-items: center;
	}
.simpleSketch[opened=true]{
	height:100%;
	}
.simpleSketch_body{
	flex:1;
	overflow: scroll;
	}
.simpleSketch_titlebar{
	display:flex;
	flex-direction:row;
	justify-content: space-between;
	align-items: center;
	background-color:navy;
	color:white;
	}
.simpleSketch_sketch{
	position:relative;
	height:100%;
	min-height: 100px;
	}
.simpleSketch_entity{
	position:absolute;
	}
.simpleSketch_tbEmptyTabs{
	display:flex;
	justify-content: space-between;
	align-items: center;
	position:fixed;
	background-color:#eeeeee;
	left:1px;
	bottom:1px;
	right:1px;
	}