::selection {
	background-color: transparent;
}

input::selection {
	background-color: rgba(166, 215, 255, 0.8);
}

body {
	margin: 0px;
}

* {
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
}

p {
	margin: 0px 0px 5px 0px;
	padding: 0px;
}

error {
	background-color: #FF7777;
	padding: 10px;
	border-radius: 2pt;
	display: block;
	margin: 1px;
}	

label {
	font-weight: bold;
}

input, textarea {
	border: 1px #D0D0D0 solid;
	border-radius: 2px;
	padding: 5px;
	color: black;
	width: 100%;
	margin: 1px;
	resize: none;
	outline: none;
}

button {
	display: inline-block;
	border: 1px rgba(100, 150, 200, 0.5) solid;
	background-color: rgba(150, 200, 250, 1);
	border-radius: 2px;
	padding: 10px;
	cursor: pointer;
	width: 100%;
	box-shadow: 0px 1px 0px rgba(50, 100, 150, 0.5);
	margin: 1px;
}

pulldown {
	display: inline-block;
	box-sizing: border-box;
	border: 1px #D0D0D0 solid;
	border-radius: 2px;
	padding: 5px;
	color: #707070;
	width: 100%;
	background-image: url('images/pulldown.png');
	background-position: 95% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
	line-height: 20px;
	margin: 1px;
	height: 30px;
}


pulldownlist {
	box-sizing: border-box;
	border: 1px #D0D0D0 solid;
	border-radius: 2px;
	padding: 5px;
	color: #505050;
	width: 100%;
	max-height: 250px;
	overflow: auto;
	display: flex;
	flex-direction: column;
	margin: 1px;
}

item {
	cursor: pointer;
	padding: 5px;
}

item:hover {
	background-color: #ABCDEF;
}




h1 {
	margin: 10px 0px 5px 0px;
	font-weight: bold;
}

a {
	color: #56789A;
}



.list {
	margin-top: 1px;
	border: 1px rgba(100, 150, 200, 0.5) solid;
	background-color: rgba(220, 220, 250, 1);
	border-radius: 2px;
	padding: 5px;
	box-shadow: 0px -1px 0px rgba(50, 100, 150, 0.5);
	outline: none;
}

.file {
	cursor: pointer;
}

.button:active {
	position: relative;
	top: 1px;
	box-shadow: 0px 0px 0px rgba(50, 100, 150, 0.1);
}

td {
	color: black;
}

.preview {
	margin-left: 5px;
	width: 27px;
	height: 27px;
	background-image: url('images/eye_32.png');
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
}

.modal {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background-color: rgba(255, 255, 255, 0.7);
	display: none;
	z-index: 9;
}

.close {
	float: right;
	margin: 10px;
	width: 30px;
	height: 30px;
	background-image: url('images/close.png');
	background-position: 50% 50%;
	background-repeat: no-repeat;
	cursor: pointer;
}

.file {
	padding: 5px;
}

.selected {
	background-color: #ABCDEF;
}




checkboxitem {
	display: flex;
	justify-content: flex-start;
	padding: 5px;
}

checkboxitem > label {
	display: inline-block;
	margin-top: 3px;
}

checkboxitem > input {
	width: 17px;
	height: 17px;
}

.window {
	padding: 15px;
	border: 2px solid #202020;
	border-radius: 2pt;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

span.last_updated {
	font-size: 9px;
	color: #505050;
	margin-left: 20px;
}



/* Remove treeview outlines and such */

ul.ui-fancytree {
	outline: none;
	border: none;
}




/* Tabs */

tabbar {
	display: block;
	border-bottom: 1px rgba(100, 150, 200, 0.5) solid;
	padding: 10px;
}

tabbar > tab {

	background-color: rgba(150, 200, 250, 0.5);

	border-bottom: 1px rgba(100, 150, 200, 0.5) solid;
	border-left: 1px rgba(100, 150, 200, 0.5) solid;
	border-top: 1px rgba(100, 150, 200, 0.5) solid;
	border-right: 1px rgba(100, 150, 200, 0.5) solid;

	border-top-left-radius: 2px;
	border-top-right-radius: 2px;

	margin-left: 5px;
	padding: 10px;
	cursor: pointer;
}

tabbar > tab.active {
	border-bottom: 1px transparent solid;
	background-color: rgba(150, 200, 250, 1);
}

/* Table */

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 10pt;
}

th {
	font-size: 10pt;
    margin: 0 0 10pt;
    line-height: 1;
    background-color: #505050;    
	color: white;
	text-align: left;
    font-weight: bold;
    padding: 5pt 10pt 5pt 10pt;
}

td {
	font-size: 10pt;
    margin: 0 0 10pt;
	line-height: 1;
	font-weight: 400;
    color: #505050;
    padding: 5pt 10pt 5pt 10pt;
}

tr:nth-child(odd){
    background-color: #f5f5f5;
}