/*****************
Version:1.8
1.8: No bold section header
1.7: Moved section-style properties to css from .js
1.6: Removed !important directive from input[type=checkbox]
1.5: changed box-sizing to 'border-box' for input[text|password] | select | textarea 
******************/
.propgrid {
}
.propgrid .hidden {
    display:none;
}
.propgrid .disabled {
    color:graytext;
}
.propgrid > tbody > tr {
    line-height:1.5em;
}
.propgrid > tbody > tr.subsection {
    background-color:#f5f5f5;
	background-image: none;
	font-weight:normal;
	color: #000;

    line-height:1.5em;
}
.propgrid > tbody > tr.section {
	background-color: #f5f5f5;
	background-image: none;
	font-weight: 500;
	color: #555;

    line-height:1.5em;
}
.propgrid > tbody > tr.section .section-title {
    padding-left:.25em;
    vertical-align:middle;
}
.propgrid > tbody > tr.subsection .section-title {
    font-weight:normal;
    padding-left:.25em;
    font-size: 1em;
    vertical-align:middle;
}
.propgrid > tbody td.section-indent {
    background-color:#f5f5f5;
}
/*.propgrid */.metapod {
	font-family:inherit;
	color:#000;
    background-color:#f5f5f5;
    border:1px solid #cfcfcf;
    padding:5px;
    margin-top:1px;
    min-height:50px;
    overflow:visible;
	border-bottom-left-radius: inherit;
	border-bottom-right-radius: inherit;
}
/*.propgrid */.metapod .podtitle {
    font-weight:bold;
    margin-bottom:4px;
}
/*.propgrid*/.metapod .disabled {
	color:graytext;
}
.propgrid {
	font-family:inherit;
}
.propgrid td {
    border-color:#cfcfcf;
}
.propgrid th {
    border-color:#cfcfcf;
}
 .propgrid input[type=text]
,.propgrid input[type=password]
,.propgrid input[type=search]
,.propgrid input[type=number]
,.propgrid select
,.propgrid textarea {
    border:none;
    border-radius:2px;
    display:block;
    font-family:inherit;
    font-size:1em;
    line-height:1.25em;
    margin: 0;
    padding: 0;
    width:100%;
    vertical-align:middle;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
 .propgrid input[type=text]
,.propgrid input[type=password]
,.propgrid input[type=search]
,.propgrid input[type=number] {
    height:25px;
	padding: 0px 4px;
}
.propgrid select {
    height:25px;
	display:inline-block;
	box-sizing:border-box;
}
.propgrid select[multiple] {
    height:auto;
	width:100%;
	display:inline-block;
	box-sizing: border-box;
}
.propgrid input[type=checkbox] {
    width:19px;
    height:19px;
    padding:0px;
    margin:3px 2px;
    vertical-align:middle;
    display:block;
}
.propgrid textarea {
    display:block;
	padding: 0px 2px 0px 4px;
    resize:none;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    
}
.propgrid .datepicker {
    border:none !important;
    padding:0px !important;
}
	.propgrid .datepicker .datepicker-item-cell {
		padding-left: 3px;
	}

	.propgrid .datepicker input[type=checkbox].datepicker-checkbox {
		margin-left: 2px;
	}

.propgrid .number-input {
    border:none;
}
.propgrid .number-input input[type=text],
.propgrid .number-input input[type=number] {
	padding: 0px 4px 0px 2px;
}
.propgrid .number-input .spinbtn-cell .spin-btn {
    margin:0;
    height:50%;
}
.propgrid .number-input .spinbtn-cell .spin-btn.spin-up {
    border-top-left-radius: 3px;
}
.propgrid .number-input .spinbtn-cell .spin-btn.spin-dn {
    border-bottom-left-radius: 3px;
}

.propgrid .timepicker {
	border: none;
}
.propgrid .timepicker input[type=text],
.propgrid .timepicker input[type=number] {
	padding: 0px 4px 0px 2px;
}
.propgrid tr.property-row td.name-cell {
    padding: 2px 2px 2px 5px;
}
.propgrid tr.property-row td.value-cell {
    padding: 0px 2px;
}
.propgrid tr.property-row.type-text.multiline td.value-cell     {
    padding: 2px;
}

.propgrid td .static-text-label {
	display: block;
	vertical-align: middle;
	padding-top:1px;
	padding-bottom:1px;
}

.propgrid .propgrid-addnew-editor-title {
    padding: 4px;
    color: graytext;
    font-style: italic;
    cursor: pointer;
    display: flex;
 }

.propgrid .propgrid-addnew-editor-container {
    flex-direction: row;
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
 }
    .propgrid .propgrid-addnew-editor-container > button {
        flex: 0;
        margin: 0;
    }

    .propgrid .propgrid-addnew-editor-container > .propgrid-addnew-editor-picker {
        flex: 1;
        min-width: 250px;
        height: 29px;
        margin: 0px 2px 0px 0px;
    }

	.propgrid .propgrid-multilist-grid-container {
		min-height: 120px;
		max-height: 250px;
		overflow: auto;
	}

		.propgrid .propgrid-multilist-grid-container > table.grouping_table > thead {
			/*box-shadow: 1px 1px 1px #cfcfcf;*/
		}
		.propgrid .propgrid-multilist-grid-container > table.grouping_table > thead > tr > * > div.add-new-label {
			display: block;
			padding: 6px 10px;
			font-style: italic;
			color: GrayText;
			cursor: pointer;
		}
		.propgrid .propgrid-multilist-grid-container > table.grouping_table > thead > tr > * > div.add-new-control-container {
			display: flex;
			flex-direction: row;
		}
