/**
	application specific styles
*/

.ibs_title {
	font-size: larger;
}

.ibs_title_bfs>a {
	font-weight: normal !important;
}

.login-user {
	float:right;
	margin-top:90px;
}

/**
	table.formGrid is a two column data entry form, with labels in the left and input controls in the right column.
 */
table.formGrid {
	table-layout: fixed;
	/* in combination with a fixed width for the table, allows the word-wrap to work also or IE9 */
}

table.formGrid>tbody>tr>td {
	vertical-align: middle;
}

table.formGrid>tbody>tr+tr>td {
	padding-top: 4px;
}

table.formGrid>tbody>tr>td:first-child {
	width: 150px;
	vertical-align: top;
	/* middle wouldn't look good with multiline input components. */
}

table.formGrid.bigLabels>tbody>tr>td:first-child {
	width: 250px;
}

table.formGrid>tbody>tr>td>label {
	display: block;
	padding: 4px 20px 4px 4px;
    text-align: right;
}

#searchForm>.formGrid>tbody>tr>td>label {
	padding: 4px 10px 4px 4px;
	text-align: right;
}

table.formGrid>tbody>tr>td+td>select {
	width: 100%;
}

table.formGrid>tbody>tr>td+td {
	width: 250px;
	max-width: 250px;
	word-wrap: break-word;
	/* IE8 */
	-ms-word-wrap: break-word;
}

table.formGrid>tbody>tr>td+td>input, table.formGrid>tbody>tr>td+td>textarea
	{
	/*
		I'd love to simply set width:100%, but width:100% causes the component to become wider than its parent, c.f.:
		http://stackoverflow.com/questions/2371105/html-input-textbox-with-a-width-of-100-overflows-table-cells
	 */
	width: 240px; /* 250px - border - padding */
}

table.formGrid>tbody>tr>td+td>input[type="checkbox"]
{
	/* checkboxes don't need much space! */
	width: auto;
	margin-left: 0;
}

table.formGrid>tbody>tr>td+td>div.ui-selectonemenu {
	width: 224px !important; /* = 250px - border - padding */
	min-width: 224px !important;
	max-width: 224px !important;
}

table.formGrid>tbody>tr>td+td>table.ui-selectoneradio>tbody>tr>td+td {
	padding-left: 6px;
}

table.formGrid>tbody>tr>td+td>table.ui-selectoneradio>tbody>tr>td+td>div.ui-radiobutton
	{
	padding-left: 6px;
}

/*
	Buttons below the form grid. A table of buttons / links in horizontal order below a form grid 
*/
table.buttonsBelowFormGrid {
	/* make some space above the button bar */
	padding-top: 10px;
}
table.buttonsBelowFormGrid>tbody>tr>td {
	/* make some room between the buttons */
	padding-right: 15px;
}
table.buttonsBelowFormGrid>tbody>tr>td:first-child {
	padding-left: 152px;
	
}

table.formGrid button {
	/* make some room between the buttons */
	margin-top: 10px;
	margin-right: 15px;
}

table.formGrid button.inlinebutton {
	/* make some room between the buttons */
	margin-top: 0;
	margin-right: 0;
}

table.formGrid tr.spaceBelow > td {
	padding-bottom: 20px;
}

textarea.fullSize {
	width: 100% !important;
	box-sizing: border-box;
}

.noBorder {
	border: none;
}

.breadcrumbArrow {
	padding-right: 6px;
	padding-left: 4px;
}

a.fontAwesome {
	text-decoration: none;
}

.gueltigkeitDataList > div > ul {
	margin: 2px;
	padding-left: 2px;
}

.diffDel {
    color: red;
}

/* put some space around the fontawesome iconic symbols */
i.icon {
	margin-left: 4px;
	margin-right: 4px;
}

.simplePanel, .simplePanel > div {
	padding: 0px !important;
	border: 0 none !important;
}

.no-border-panel-grid tr.ui-widget-content {
	border: none !important;
}

.no-border-panel-grid td.ui-panelgrid-cell {
	border: none !important;
}

.panel-grid-label {
	text-align: right;
	min-width: 100px;
}

.aufgabenActionButton {
	min-width: 150px;
	margin-bottom: 8px;
	margin-left: 150px;
}

.alteGesetzesaenderung {
	color: #A0A0A0;
}

.rowColorBlue {
	background-color: #DCE6F0;
}

.rowColorGreen {
	background-color: #E6F0DC;
}

.inventarDetailHeader{
	background-color: #DCE6F0;
}

.finanzstatistikDetailHeader{
	background-color:#E6F0DC;
}

.ui-state-highlight .rowColorBlue {
	background-color: #3C89D6;
}

.ui-state-highlight .rowColorGreen {
	background-color: #738561;
}

/* Every table in output table should get its first row bold */
span.outputTables table tbody tr:nth-child(1) {
	font-weight: bold;
}

/* don't display the underline on the numbers links inside the tables */
span.outputTables table tbody tr td a {
	text-decoration: none;
}

/* put the font-color from a tab */
.ui-tabs .ui-tabs-nav.ui-widget-header li a {
	color: black;
}

.erhebungLeistungHeader {
	padding: 10px;
	font-weight: bold;
}

.smallDateInputCalendar > input {
	width: 123px;
}

.inventarRechercheLeistungSpacer {
	padding-bottom: 20px;
}

.ui-datatable-tablewrapper {
	padding-top: 2px;
}