table.fulltable thead th {
	vertical-align: top;
}
table.fulltable span.fulltable-filter {
	position:relative;
	display:block;
}
table.fulltable input, table.fulltable select {
	position:relative;

	width:100%!important;

	font-size: 9pt;

	clear: both;
    float: left;
    margin: 0.5em 0!important;
}
table.fulltable input.checkbox {
	width: 13px!important;
	height: 13px!important;
}
table.fulltable th.fulltable-selection-control {
	width: 30px;
}
/*table.fulltable tr.fulltable-editing td.fulltable-selection-control input.checkbox {
	display:none;
}*/
table.fulltable th.fulltable-selection-control, table.fulltable td.fulltable-selection-control {
    padding: 0 1em;
	width: 30px;
}
table.fulltable.fulltable-editable th.fulltable-edition-control {
	width: 70px;
}
table.fulltable.fulltable-editable th.fulltable-edition-control, table.fulltable.fulltable-editable td.fulltable-edition-control {
    padding: 0 1em;
}
table.fulltable.fulltable-editable input.invalid, table.fulltable.fulltable-editable select.invalid {
	border: solid 1px #FF3333;
	background-color:#FFEEEE;
}
table.fulltable thead th a.fulltable-sort {
    font-size: 9px;
    position: relative;
    left: 6px;
    top: 0px;
    display: inline-block;
    width: 9px;
    height: 9px;
    cursor: pointer;
}
table.fulltable thead th.fulltable-asc a.fulltable-sort-desc {
	display:none!important;
}
table.fulltable thead th.fulltable-desc a.fulltable-sort-asc {
	display:none!important;
}
table.fulltable.fulltable-editable td.fulltable-edition-control {
	white-space:nowrap;
}
table.fulltable.fulltable-editable td.fulltable-edition-control a {
	font-size:16px;
	position:relative;
	display: inline-block;
	width:16px;
	height:16px;
	top:1px;
	line-height:16px;
	margin:0.5em;
	cursor:pointer;
    text-align:center;
}
table.fulltable.fulltable-editable td.fulltable-edition-control a.fulltable-create {
	display:none;
}
table.fulltable.fulltable-editable tr.fulltable-creating td.fulltable-edition-control a.fulltable-create {
	display:inline-block!important;
}
table.fulltable.fulltable-editable tr.fulltable-creating td.fulltable-edition-control a.fulltable-save {
	display:none!important;
}
table.fulltable.fulltable-editable tr.fulltable-editing td.fulltable-edition-control a.fulltable-edit, table.fulltable.fulltable-editable tr.fulltable-editing td.fulltable-edition-control a.fulltable-remove {
	display:none;
}
table.fulltable.fulltable-editable tr td.fulltable-edition-control a.fulltable-save, table.fulltable.fulltable-editable tr td.fulltable-edition-control a.fulltable-discard {
	display:none;
}
table.fulltable.fulltable-editable tr.fulltable-editing td.fulltable-edition-control a.fulltable-save, table.fulltable.fulltable-editable tr.fulltable-editing td.fulltable-edition-control a.fulltable-discard {
	display:inline-block;
}

table.fulltable {
    /* Remove spacing between table cells (from Normalize.css) */
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    border: 1px solid #cbcbcb;
}

table.fulltable caption {
    color: #000;
    font: italic 85%/1 arial, sans-serif;
    padding: 1em 0;
    text-align: center;
}

    table.fulltable td,
    table.fulltable th {
        border-left: 1px solid #cbcbcb; /*  inner column border */
        border-width: 0 0 0 1px;
        font-size: inherit;
        margin: 0;
        overflow: visible; /*to make ths where the title is really long work*/
        padding: 0 1em; /* cell padding */
        vertical-align: middle;
    }

table.fulltable thead {
    background-color: #e0e0e0;
    color: #000;
    text-align: left;
    vertical-align: bottom;
}

/*
striping:
   even - #fff (white)
   odd  - #f2f2f2 (light gray)
*/
table.fulltable td {
    background-color: transparent;
}

table.fulltable-odd td {
    background-color: #f2f2f2;
}

/* nth-child selector for modern browsers */
table.fulltable-striped tr:nth-child(2n-1) td {
    background-color: #f2f2f2;
}

/* BORDERED TABLES */
table.fulltable-bordered td {
    border-bottom: 1px solid #cbcbcb;
}

table.fulltable-bordered tbody > tr:last-child > td {
    border-bottom-width: 0;
}


/* HORIZONTAL BORDERED TABLES */

table.fulltable-horizontal td,
table.fulltable-horizontal th {
    border-width: 0 0 1px 0;
    border-bottom: 1px solid #cbcbcb;
}

table.fulltable-horizontal tbody > tr:last-child > td {
    border-bottom-width: 0;
}