body
{
	margin: 0px;
	padding: 0px;
}
body *
{
	font: normal 12px verdana;
}
h1
{
	background-color: #478;
	margin: 0px;
	padding: 10px;
	color: #fff;
	box-sizing: border-box;
}
label,
input[type="text"],
input[type="password"],
textarea,
select,
input[type="button"],
input[type="submit"],
.button
{
	display: inline-block;
	padding: 6px;
	margin: 0px;
	box-sizing: border-box;
	border: 1px solid #999;
	text-decoration: none;
	color: #666;
	background-color: #fff;
}
input[type="button"],
input[type="submit"],
.button
{
	background-color: #478;
	border-color: #478;
	color: #fff;
	cursor: pointer;
}
input[type="button"]:hover,
input[type="submit"]:hover,
.button:hover
{
	background-color: #478;
	border-color: #fff;
	color: #fff;
	box-shadow: 0px 0px 5px #333;
}
input[type="button"]:active,
input[type="submit"]:active,
.button:active,
input[type="button"].selected,
input[type="submit"].selected,
.button.selected
{
	background-color: #256;
	border-color: #fff;
	color: #fff;
	box-shadow: 0px 0px 2px #000;
}
.button
{
	border: 1px solid #999;
}
label
{
	border: 0px solid #fff;
	padding: 7px;
}
textarea
{
	width: 100%;
}

div.form-login *
{
	margin: 0px;
	padding: 0px;
}
div.form-login > div
{
	width: 100%;
	max-width: 600px;
	border: 1px solid #eee;
	margin-left: auto;
	margin-right: auto;
	padding: 20px;
	box-sizing: border-box;
}
div.form-login h1
{
	margin-top: 0px;
	background-color: #eee;
	padding: 10px;
}
div.form-login > div > div
{
	margin-top: 10px;
}
div.form-login p
{
	margin-top: 10px;
}
div.form-login span
{
	margin-top: 1px;
	display: flex;
	width: 100%;
}
div.form-login label
{
	min-width: 100px;
	text-align: right;
}
div.form-login input[type="text"],
div.form-login input[type="password"]
{
	flex-grow: 1;
	border: 0px;
	border-bottom: 1px solid #999;
}
div.form-login label,
div.form-login input[type="text"],
div.form-login input[type="password"],
div.form-login input[type="submit"]
{
	padding: 6px;
}


.dialogs > *
{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	display: none;
}
.dialogs > * > *
{
	max-width: 600px;
	background-color: #fff;
	box-shadow: 1px 1px 20px #999;
	border: 1px solid #666;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
}
.dialogs > * .head > h2,
.dialogs > * .buttons,
.dialogs > * .body,
.dialogs > * .foot
{
	padding: 10px;
	box-sizing: border-box;
}
.dialogs > * .head
{
	background-color: #fafafa;
	border-bottom: 1px solid #ddd;
	display: flex;;
}
.dialogs > * .head > h2
{
	flex-grow: 1;
	padding: 8px;
}
.dialogs > * .head > p
{
	padding: 1px;
}
.dialogs > * .buttons
{
	margin-top: 0px;
	border-bottom: 1px solid #ddd;
}
.dialogs > * .buttons > p
{
	margin: 0px;
	padding: 0px;
}
.dialogs > * .foot
{
	background-color: #f0f0f0;
	text-align: center;
}
.dialogs > * .head > *,
.dialogs > * .foot > *
{
	margin: 0px;
	padding: 0px;
}
.dialogs > #dialog-progress #dialog-progress-log *
{
	margin: 0px;
	padding: 0px;
}
.dialogs > *.dialog-visible
{
	display: block;
}
.panel-menu
{
	background-color: #eee;
	border-bottom: 1px solid #999;
	display: flex;
	flex-direction: row;
}
.panel-menu > *:nth-child(1)
{
	flex-grow: 1;
}
.panel-menu-items ul,
.panel-menu-items li,
.panel-menu-items p
{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
.panel-menu-items span,
.panel-menu-items a
{
	display: block;
	border: 1px solid transparent;
	padding: 6px;
	padding-left: 10px;
	padding-right: 10px;
	text-decoration: none;
	color: #333;
	white-space: nowrap;
}
.panel-menu-items a:hover
{
	color: #000;
	border: 1px solid #ccc;
}
.panel-menu-items a:active
{
	background-color: #000;
	color: #fff;
}
.panel-menu-items > ul
{
	display: flex;
	flex-direction: row;
}
.panel-menu-items div
{
	position: relative;
	-webkit-transition-duration: 0.5s; /* Safari */
	transition-duration: 0.5s;
	transition-timing-function: ease;
	opacity: 0;
	filter: alpha(opacity=0);
	visibility: hidden;
	transition-delay:0s;
}
.panel-menu-items li:hover > p > span
{
	background-color: #f6f6f6;
}
.panel-menu-items li:hover > div
{
	-webkit-transition-duration: 0.5s; /* Safari */
	transition-duration: 0.5s;
	transition-timing-function: ease;
	opacity: 1;
	filter: alpha(opacity=100);
	visibility: visible;
	transition-delay:0.6s;
}
.panel-menu-items > ul > li > div > ul
{
	background-color: #fff;
	box-shadow: 5px 5px 10px #999;
	position: absolute;
	padding: 6px;
	z-index: 1;
}
.panel-menu-items > ul > li li
{
	display: flex;
	flex-direction: row;
}
.panel-menu-items > ul > li li > p
{
	flex-grow: 1;
}
.panel-menu-items > ul > li li > div
{
}
.panel-menu-items > ul > li > div > ul ul
{
	background-color: #fff;
	box-shadow: 5px 5px 10px #999;
	position: absolute;
	padding: 6px;
	z-index: 1;
}
.panel-menu-info *
{
	margin: 0px;
	padding: 0px;
	text-decoration: none;
	color: #000;
	display: block;
}
.panel-menu-info span
{
	font-size: 0.8em;
}
div.panel-body
{
	padding: 10px;
}
div.panel-search
{
	padding-bottom: 10px;
	display: flex;
	flex-direction: row;
}
div.panel-search > *
{
	margin: 0px;
	margin-left: 10px;
	padding: 0px;
}
div.panel-search > *:nth-child(1)
{
	margin-left: 0px;
}
div.panel-search form p
{
	margin: 0px;
}
.panel-help h2
{
	margin-top: 0px;
	color: #478;
	font-weight: bold;
}
.panel-help th,
.panel-help td
{
	padding: 6px;
}
.panel-help th
{
	font-weight: bold;
	background-color: #f9f9f9;
}
.panel-help tr:nth-child(even) td
{
	background-color: #f9f9f9;
}
.button-help > *
{
	background-color: #090;
	border-radius: 10px;
	color: #fff;
	padding: 6px;
	padding-left: 10px;
	padding-right: 10px;
	margin: 0px;
	background-color: #05c429;
	color: #fff;
	border: 1px solid #05c429;
	cursor: pointer;
}
.button-help > *:hover
{
	background-color: #05c429;
	border: 1px solid #fff;
	box-shadow: 0px 0px 5px #05c429;
}
.button-help > *:active
{
	background-color: #03931f;
}
.button-help > *:disabled
{
	background-color: #999;
	border: 1px solid #fff;
	box-shadow: 0px 0px 5px #999;
}

table.data-list th,
table.data-list td
{
	padding: 10px;
}
table.data-list tr:nth-child(odd) td
{
	background-color: #f0f0f0;
}
.contractors-carer-selection p
{
	margin: 0px;
	padding: 0px;
}
.contractors-carer-selection div
{
	position: relative;
}
.contractors-carer-selection ul,
.contractors-carer-selection li
{
	margin: 0px;
	padding: 0px;
}
.contractors-carer-selection li
{
	list-style-type: none;
	padding: 4px;
}
.contractors-carer-selection #contractors-carer
{
	position: absolute;
	display: none;
	background-color: #fff;
	padding: 6px;
	z-index: 999;
	border: 1px solid #aaa;
}
.contractors-carer-selection #contractors-carer.contractors-carer-visible
{
	display: block;
}
.list-items > * > *:nth-child(2)
{
	border: 1px solid transparent;
}
.list-items > * > *:nth-child(2).list-items-selected
{
	background-color: #f9f9f9;
	border: 1px solid #05c429;
}
