table.listView, table.listView tr, table.listView th, table.listView td {
	border: 1px solid #000000;
	border-collapse: collapse;
}

table.listView {
	width: 100%;
}

table.listView thead tr {
	background-color: #ece9d8;
	cursor: pointer;
}

table.listView tfoot tr {
	background-color: #ece9d8;
}

table.listView tfoot tr td:last-child {
	text-align: right;
}

table.listView thead th:hover {
	background-color: #f8f5e3;
}

table.listView th, table.listView td {
	text-align: left;
	padding-left: 2px;
	padding-right: 2px;
}

table.listView tbody tr:hover {

	background-color: #f4e8b2;
	cursor: pointer;
	
}

.tabcontainer {
	padding: 0px;
	height: 100%;
}

.tabcontainer:after {
	content: '';
	display: block;
}

.tabs {

	width: 100%;
	float: none;
	list-style: none;
	position: relative;
	margin: 0px;
	padding: 0px;
	
	
}

.tabs li {
	float: left;
}

.tabs li > label {
	display: block;
	text-align: center;
	padding: 5px 10px;
	background-color: #FFFFFF;
	margin-top: 2px;
	border: 1px solid #7f9db9;
	border-left: 0px;
	border-bottom: 0px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
.tabs li:first-child > label {
	border-left: 1px solid #7f9db9;
}

.tabs .tab-content {
	display: none;
	position: absolute;
	left: 0;
	border: 1px solid #7f9db9;
	vertical-align: top;
	background-color: white;
	padding-bottom: 40px;
}

.tabs > li > input[type="radio"] {
	display: none;
}

.tabs [id^="tab"]:checked + label {
  border-top: 3px solid blue;
  margin-top: 0px;
}

.tabs [id^="tab"]:checked ~ [id^="tab-content"] { 
  display: block;
  width: 100%;
  min-height: 10px;
}

.tabcontainer > br {
	clear: both;
}

.container {
	display: inline-block;
	box-sizing: border-box;
	vertical-align: top;
}

.container.border {
		border: 1px solid #7f9db9;
		border-radius: 3px;
}

.container .title {
	width: 100%;
	text-align: center;
	padding-bottom: 10px;
}

.textboxContainer {
	margin-bottom: 10px;
	vertical-align: top;
	display: inline-block;
}

.textboxContainer, .textboxContainer * {
	box-sizing: border-box;
	padding-left: 5px;
	padding-right: 5px;
}

.listView .textboxContainer {
	margin: 0px;
	padding: 0px;
}

.listView .textboxContainer * {
	margin: 0px;
	padding: 0px;
	border-radius: 0px;
}

.textboxContainer textarea {
	vertical-align: top;
	min-height: 75px;
	border-radius: 3px;
	border: 1px solid #7f9db9;
	border-collapse: collapse;
}

.textboxContainer label {
	
	display: inline-block;
	
}

.textboxContainer input[type=text], .textboxContainer input[type=date] {
	height: 25px;
	border-radius: 3px;
	border: 1px solid #7f9db9;
}

.textboxContainer input[type=checkbox] {
	
	text-align: left;
	vertical-align: middle;
	
}

.textboxContainer select {
	width: 100%;
	height: 25px;
	border-radius: 3px;
	border: 1px solid #7f9db9;
}

.tableObject {
	width: 100%;
}

.tableObject, .tableObject tr, .tableObject th, .tableObject td {
	border: 1px solid #7f9db9;
	border-collapse: collapse;
}

.filemanager {
	box-sizing: border-box;
	border: 1px solid #7f9db9;
	border-radius: 3px;
}

.filemanager .directory {
	text-align: center;
	background: url('fileManager/images/folder.png');
	background-repeat: no-repeat;
	background-position: top center;
	display: inline-block;
	width: 80px;
	min-height: 60px;
	padding-top: 50px;
	overflow: hidden;
	user-select: none;
}

.filemanager .file {
	text-align: center;
	background: url('fileManager/images/file.png');
	background-repeat: no-repeat;
	background-position: top center;
	display: inline-block;
	width: 68px;
	min-height: 60px;
	padding-top: 50px;
	overflow: hidden;
	user-select: none;
}

.filemanager .filePhoto {
	display: inline-block;
	width: 200px;
	text-align: center;
	border: 1px solid #000000;
	margin-right: 0px;
	margin-left: 10px;
	margin-bottom: 10px;
}

.filemanager .filePhoto img {
	
	width: 100%;
	height: auto;
	
}

.filemanager .ticked {
	background-color: green;
}

.filemanager .filetoolbar {
	padding-left: 5px;
	padding-top: 6px;
	background-color: #f0f0f0;
	height: 30px;
	margin-bottom: 5px;
	border-bottom: 1px solid #c7c5b2;
		
}

.filemanager .filetoolbar button {
	margin-right: 5px;
}

.filemanager .breadcrumbs {

	margin-bottom: 7px;
	padding-left: 10px;
	border-bottom: 1px solid c7c5b2;
	
}

.filemanager .breadcrumbs span:nth-child(odd) {
	
	cursor: pointer;
	text-decoration: underline;
	
}

pre {
	white-space: pre-wrap;       /* css-3 */
}