﻿/* CSS System */
/* reset.css */
/* tohle pochází z blueprintu */
html {
	margin: 0;
	padding: 0;
	border: 0;
}

/* tohle pochází z blueprintu */
body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* v blueprintu bylo toto a podle všeho byl dialog vynechán ze specifikace html5, takže toto můžeme klidně nahradit
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, dialog */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    
    display: block;
}

audio, canvas, video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden] {
    display: none;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* tohle pochází z blueprintu */
caption, th, td {
	text-align: left;
	font-weight: normal;
	float: none !important;
}

/* tohle pochází z blueprintu */
table, th, td {
	vertical-align: middle;
}

/* tohle pochází z blueprintu */
a img {
	border: none;
}

/* normalize.css */
html, button, input, select, textarea {
    font-family: Verdana,"Helvetica Neue",Arial,Helvetica,sans-serif;
}

a:focus {
    outline: thin dotted;
}

a:active, a:hover {
    outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
abbr, abbr[title], acronym {
	border-bottom: 1px dotted #666;
}

b, strong {
    font-weight: bold;
}

mark {
    background: #ff0;
    color: #000;
}

p, pre {
    margin: 1.5em 0;
}

pre, code, tt, kbd, samp {
	font: 1em 'andale mono', 'lucida console', monospace;
	_font-family: 'courier new', monospace;
	line-height: 1.5;
    margin: 1.5em 0;
}

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

q {
    quotes: none;
}

q:before,
q:after {
    content: '';
    content: none;
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* ==========================================================================
   Lists
   ========================================================================== */

nav ul, nav ol {
    list-style: none;
    list-style-image: none;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
    overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */

figure {
    margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */

form {
    margin: 0;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}


legend {
    border: 0;
    padding: 0;
    white-space: normal;
    *margin-left: -7px;
}


button, input, select, textarea {
    font-size: 100%;
    margin: 0;
    vertical-align: top;
    *vertical-align: middle;
}

button, input {
    line-height: normal;
}

button, select {
    text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    *overflow: visible;
}

button[disabled], html input[disabled] {
    cursor: default;
}

input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
    *height: 13px;
    *width: 13px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
   input[type="checkbox"], input[type="radio"] { border: 0px none transparent; }
}

input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

/* ==========================================================================
   Tables
   ========================================================================== */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* === zakladni styl === */
/* CSS Šablony */
/* typography.css */
html {
	font-size: 11px;
	overflow-y: scroll;
	line-height: 1.5;
}

body {
	color: #222;
	background: #f7f7f7;
	font-family: Verdana, "Helvetica Neue", Arial, Helvetica, sans-serif;
	min-height: 100%;

}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	color: #2a5490;
	margin: 10px 0 0 0;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.75em;
}

h3 {
	font-size: 1.5em;
}

h4 {
	font-size: 1.25em;
}

h5 {
	font-size: 1em;
	font-weight: bold;
}

h6 {
	font-size: 1em;
}

h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
    margin: 0;
}

.TSFW-left {
	float: left !important;
}

p .TSFW-left {
	margin: 1.5em 1.5em 1.5em 0;
	padding: 0;
}

.TSFW-right {
	float: right !important;
}

p .TSFW-right {
	margin: 1.5em 0 1.5em 1.5em;
	padding: 0;
}

a:focus, a:hover {
	color: #09f;
}

a {
	color: #06c;
	text-decoration: underline;
}

blockquote {
	margin: 1.5em 40px 1.5em;
	color: #666;
	font-style: italic;
}

em, dfn {
	font-style: italic;
}

address {
	margin: 0 0 1.5em;
	font-style: italic;
}

del {
	color: #666;
}

li ul, li ol {
	margin: 0;
}

ul, ol {
	margin: 0 1.5em 1.5em 0;
	padding-left: 25px;
}

ul {
	list-style-type: square;
}

ol {
	list-style-type: decimal;
}

dl {
	margin: 0 0 1.5em 0;
}

dl dt {
	font-weight: bold;
}

dd {
	margin-left: 1.5em;
}

th {
	font-weight: bold;
}

thead th {
	background: #c3d9ff;
}

/* první pravidlo je asi nepoužívané */
table.TSFW-striped tbody tr:nth-child(even) td, tbody tr.TSFW-even td {
	background: #e5ecf9;
}

tfoot {
	font-style: italic;
}

caption {
	background: #eee;
}

hr {
	background: #ddd;
	color: #ddd;
	clear: both;
	float: none;
	width: 100%;
	height: 1px;
	margin: 5px 0 5px;
	border: none;
    -moz-box-sizing: content-box;
    box-sizing: content-box;	
}

hr.TSFW-space {
	background: #fff;
	color: #fff;
	visibility: hidden;
}


/***MENU - TreeView***/
.TSFW-tree {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.TSFW-tree ul.TSFW-collapsed {
	display: none;
}
.TSFW-tree .TSFW-expandable > a {
	background: url("");
	margin-left: 0px;
	padding-left: 5px;
}
.TSFW-tree li ul {
	padding-left: 15px;
	font-size: 0.9em;
    list-style-type: none;		
}
.TSFW-tree li a {
	text-decoration: none;
	line-height: 22px;
	padding: 5px;
	display: block;
	font-size: 1.1em;
	font-weight: normal;
	border-left: 1px solid #DFDFDF;
	border-bottom: 1px solid #DFDFDF;
	border-right: 1px solid #DFDFDF;
	border-top: 1px solid #F9F9F9;
	width: 173px;
}
.TSFW-tree li ul li a {
	padding-left: 10px;
	width: 153px;
}
.TSFW-tree a:link, .TSFW-tree a:visited {
	color: #000;
	font-weight: normal;
	text-decoration: none;
}
.TSFW-tree li a:hover {
	background-color: #cccccc;
	text-decoration: none;
}
.TSFW-tree .TSFW-current > a {
	font-weight: bold;
	text-decoration: none;
}

/***STATUSBAR***/
#TSFWprogress {
	float: left;
	height: 100%;
	margin-left: 5px;
}
#TSFW-copyright {
	float: right;
}
/***FORMULARE***/
input, textarea {
	padding: 1px;
	border: 1px solid #999999;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.TSFW-required {
	background-color: #FFDFD8;
}
.TSFW-readonly {
	background-color: #f0f0f0;
}
/* ---Budoucnost table.form !!!!!--- */
table.TSFW-form > tbody > tr > th {
		text-align: right;
		vertical-align: middle;
		white-space: nowrap;
		padding: 6px 0 6px 0px;
		font-weight: bold;
}
table.TSFW-form > tbody > tr > td {
		padding: 6px 3px;
		vertical-align: top;
}
/* --- */

input.TSFW-date {
    	width: 100px;
}
input.TSFW-time {
    	display: block;
	    float: left;
	    width: 75px !important;
}
input.TSFW-number {
/*	width: 115px !important; */
}
a.TSFW-cal_img {
	background-image: url("images/calendar.gif");
	background-position: 50% 50%;
	display: block;
	float: left;
	height: 16px;
	position: relative;
	top: 2px;
	width: 16px;
	cursor: pointer;
}

.TSFW-i-wd {
	
	width:116px;
	vertical-align: top;
}

.TSFW-i-wtt {
    left: 100%;
    margin-left: 16px;
    *margin-left: 18px;
    position: absolute !important;
}

.TSFW-i-wdt1 {
    display: block;
    margin-right: 93px;
    width: auto;
    *width: 100px;
    position:relative;
    
}

.TSFW-i-wdt {
	width: 185px;
}

.TSFW-i-wdd
{
    vertical-align: top;
}

.TSFW-gridTable th span.TSFW-i-wl, .TSFW-gridTable th span.TSFW-i-wd {
	overflow:visible;
}

.TSFW-i-wl1, .TSFW-i-wd1 {
	margin-right: 16px;
	display: block;
	position: relative;

}

.TSFW-i-wl1 
{
    *width: 153px;
}

.TSFW-i-wd1 
{
    *width: 100px;
}

span.TSFW-i-wd1, span.TSFW-i-wdt1
{
    overflow: visible !important;
}

.TSFW-form .TSFW-i-wl1, .TSFW-form .TSFW-i-wd1 {
	display: block;
	width: auto;
	*width: 100px;
	margin-right: 16px;
}

span.TSFW-i-wl input.TSFW-enum, span.TSFW-i-wd input.TSFW-date, span.TSFW-i-wdt input.TSFW-date  {
	width: 100%;
}

a.TSFW-list_img, .TSFW-form a.TSFW-list_img, img.ui-datepicker-trigger {
	background-image: url("images/buttonico.png");
	background-position: -80px 0px;
	cursor: pointer;
	display: block;
	height: 16px;
	left: 100%;
	*margin-left: 3px;
	position: absolute;
	top: 2px;
	width: 16px;

}

img.ui-datepicker-trigger {
    background-image: none;
}

/* Validátory umístění === IL & IN asi se používají, ale zvážil bych přejmenování */ 

table.TSFW-form span.TSFW-il {
    left: 100%;
    margin-left: -18px;
    top: 4px;
}


table.TSFW-form span.TSFW-in {
	left: 99px;
	top: 0;
	float: left;
}

/*** Buttons ***/


.TSFW-bt_panel {
	margin: 0;
	padding: 0pt;
	width: 100%;
	height: 30px;
	display: table;
}

.TSFW-bt_panel:after{
    clear:both;
}

.TSFW-buttons {
	margin-top: 0px;
	padding-top: 3px;
	width: 100%;
	height: 24px;
}

.TSFW-button, .TSFW-mbutton {
	display: block;
	float: left;
	height: 22px;
	border: 1px solid;
	padding: 0px 3px 0px 3px;
	margin-right: 5px;
	line-height: 22px;
	white-space: nowrap;
	cursor: pointer;
/* font family a velikost pisma by tu asi nemela byt! */	
	font-family: Verdana,"Helvetica Neue",Arial,Helvetica,sans-serif;
	font-size: 11px;
	font-weight: 700;
	position: relative;
	background-color: #ededed;
	border-color: #eaeaea #dddddd #dddddd #eaeaea;
}

.TSFW-bt_panel .TSFW-button, .TSFW-bt_panel .TSFW-mbutton 
{
    margin-bottom: 5px;
}

.TSFW-button.TSFW-change, .mbutton.TSFW-change {
	background-color: #FFC0AF;
}

.TSFW-button:hover {
	border: 1px solid #808080;
}

.TSFW-ss {
	float: left;
	width: 16px;
	height: 16px;
	margin-top: 3px;
	background-repeat: no-repeat;
	background-image: url('images/ButtonIco.png');
}

.TSFW-gcright {
	text-align:right;
	padding-right: 3px;
}

/* jak nás tohle napadlo? */
.TSFW-text {
	float: left;
}

.TSFW-IcoLeft {
	margin-right: 2px;
}

.TSFW-IcoRight {
	margin-left: 2px;
}

.TSFW-IcoSingle {
	text-indent: -9999px;
}

/* -tady se prefix taky výrazně hodí- */

.TSFW-drop {
	position: absolute;
	top: 22px;
	left: -1px;
	min-width: 100%;
	background-color: #F0F0F0;
	border-top: 1px solid #808080;
	border-left: 1px solid #808080;
	border-right: 1px solid #808080;
	border-bottom: 1px solid #808080;
	box-shadow: #ccc 1px 1px 1px;
	-moz-box-shadow: #ccc 1px 1px 1px;
	-webkit-box-shadow: #ccc 1px 1px 1px;
	z-index: 5;
	display: none;
}

.TSFW-drop a {
	color: Black;
	font-weight: 400;
	display: block;
	width: auto;
	text-indent: 9px;
	white-space: nowrap;
	text-decoration: none;
	padding-right: 5px;
}

.TSFW-drop a:hover {
	color: Black;
	font-weight: 400;
	background-color: #C0C0C0;
}

.TSFW-iso a {
	text-indent: 25px;
}

.TSFW-iso a em {
    left: 3px;
	*margin-top: -3px;
	position: absolute;
}

.TSFW-eemenu /* Excel Export Menu */ {
	min-width: 0px;
	cursor: pointer;
}

.TSFW-button-pressed {
    -moz-box-shadow: 0 0 8px #888;
    -webkit-box-shadow: 0 0 8px #888;
    box-shadow: 0 0 8px #888;
    background-color: #808080;
    top : 1px\9;
    left : 1px\9;
    background-color : #EDEDED;
}

/***IKONY***/
.TSFW-IcoGroup {
	background-position: 0px 0px !important;
}

.TSFW-IcoBook {
	background-position: -20px 0px;
}

.TSFW-IcoFilter {
	background-position: -40px 0px;
}

.TSFW-IcoSave {
	background-position: -60px 0px;
}

.TSFW-IcoList {
	background-position: -80px 0px;
}

.TSFW-IcoMagnGlass {
	background-position: -100px 0px;
}

.TSFW-IcoOpen {
	background-position: -120px 0px;
}

.TSFW-IcoSafe {
	background-position: -140px 0px;
}

.TSFW-IcoNew {
	background-position: 0px -16px;
}

.TSFW-IcoDetail {
	background-position: -20px -16px;
}

.TSFW-IcoDelete {
	background-position: -40px -16px;
}

.TSFW-IcoExcel {
	background-position: -60px -16px;
}

.TSFW-IcoPublish {
	background-position: -80px -16px;
}

.TSFW-IcoWord {
	background-position: -100px -16px;
}

.TSFW-IcoBlank {
	background-position: -120px -16px;
}

.TSFW-IcoShortcut {
	background-position: -140px -16px;
}

.TSFW-IcoMenuDown {
	background-position: 0px -32px;
}

.TSFW-IcoReload {
	background-position: -20px -32px;
}

.TSFW-IcoBack {
	background-position: -40px -32px;
}

.TSFW-IcoBack2 {
	background-position: -60px -32px;
}

.TSFW-IcoUndelete {
	background-position: -80px -32px;
}

.TSFW-IcoOk {
	background-position: 0px -48px;
}

.TSFW-IcoCancel {
	background-position: -20px -48px;
}

.TSFW-IcoOk2 {
	background-position: -40px -48px;
}

.TSFW-IcoCancel2 {
	background-position: -60px -48px;
}

.TSFW-IcoBroom {
	background-position: -80px -48px;
}

.TSFW-IcoPlus {
	background-position: -120px -48px;
}

.TSFW-IcoMinus {
	background-position: -100px -48px;
}

.TSFW-IcoDays {
	background-position: 0px -64px;
}

.TSFW-IcoMonth {
	background-position: -20px -64px;
}

.TSFW-IcoToday {
	background-position: -40px -64px;
}

.TSFW-IcoDate {
	background-position: -60px -64px;
}

.TSFW-IcoSum {
	background-position: 0px -80px;
}

.TSFW-IcoMoneySum {
	background-position: -20px -80px;
}

.TSFW-IcoChest {
	background-position: -40px -80px;
}

.TSFW-IcoMap {
	background-position: -60px -80px;
}

.TSFW-IcoKMLimp {
	background-position: -80px -80px;
}

.TSFW-IcoKMLexp {
	background-position: -100px -80px;
}

.TSFW-IcoSHPimp {
	background-position: -120px -80px;
}

.TSFW-IcoSHPexp {
	background-position: -140px -80px;
}

.TSFW-IcoKey {
	background-position: 0px -96px;
}

.TSFW-IcoKeyNew {
	background-position: -20px -96px;
}

.TSFW-IcoKeyRenew {
	background-position: -40px -96px;
}

.TSFW-IcoGenerate {
	background-position: -60px -96px;
}

.TSFW-IcoShare {
	background-position: -80px -96px;
}

.TSFW-IcoShare2 {
	background-position: -100px -96px;
}

.TSFW-IcoCut {
	background-position: 0px -112px;
}

.TSFW-IcoDraw {
	background-position: -20px -112px;
}

.TSFW-IcoPrint {
	background-position: -40px -112px;
}

.TSFW-IcoGears {
	background-position: -60px -112px;
}

.TSFW-IcoLock {
	background-position: -80px -112px;
}

.TSFW-IcoUnlock {
	background-position: -100px -112px;
}

.TSFW-IcoLink {
	background-position: -120px -112px;
}

.TSFW-IcoDownload {
	background-position: -140px -112px;
}

.TSFW-IcoUndo {
	background-position: 0px -128px;
}

.TSFW-IcoRedo {
	background-position: -20px -128px;
}

.TSFW-IcoSkipLeft {
	background-position: -40px -128px;
}

.TSFW-IcoSkipRight {
	background-position: -60px -128px;
}

.TSFW-IcoSkipUp {
	background-position: -80px -128px;
}

.TSFW-IcoSkipDown {
	background-position: -100px -128px;
}

.TSFW-IcoLeftArrow {
	background-position: -120px -128px;
}

.TSFW-IcoRightArrow {
	background-position: -140px -128px;
}

.TSFW-IcoWordDocument {
	background-position: 0px -144px;
}

.TSFW-IcoZip {
	background-position: -20px -144px;
}

.TSFW-IcoUser {
	background-position: -40px -144px;
}

.TSFW-IcoUserAdd {
	background-position: -60px -144px;
}

.TSFW-IcoUserRemove {
	background-position: -80px -144px;
}

.TSFW-IcoSendEmail {
	background-position: -100px -144px;
}

/* === grid === */

/*tabulka*/
.TSFW-cDrag {
	position: absolute;
	background-color: Red;
}
.TSFW-cDrag div {
	width: 5px;
	cursor: col-resize;
	position: absolute;
}
.TSFW-cDrag div:hover, .TSFW-cDrag div.TSFW-dragging {
	background: url("images/line.gif") repeat-y scroll 2px center transparent;
}
.TSFW-gridTable {
	border-bottom: 1px solid #D0D0D0;
	margin-bottom: 0;
	width: auto;
}

.TSFW-fcDiv{
    position:relative;
}

.TSFW-gridTable th {
	padding: 1px 1px 1px 3px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: white;
}

thead.TSFW-thead-abs tr th, thead.TSFW-thead-abs tr th div, thead.TSFW-thead-abs tr th div span {
	overflow: hidden;
	text-overflow: ellipsis;
    white-space: nowrap;
}

.TSFW-gridTable th span, .TSFW-gridTable th div, .TSFW-gridTable td div {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	cursor:default;
}

.TSFW-gridTable td div.TSFW-wrapText {
	white-space: normal;
	text-overflow:clip;
}

.TSFW-gridTable td {
	border-style: none solid none solid;
	border-width: medium 1px medium 1px;
	border-color: #D0D0D0;
	padding: 1px 1px 1px 3px;
}


/* === Dosavadní pokrok při doplňování prefixů === */


div.TSFW-ptDiv.TSFW-pager, div.TSFW-pbDiv.TSFW-pager {
	text-align: center;
	background-color: #f0f0f0;
	border-right: 1px solid #d0d0d0;
	border-left: 1px solid #d0d0d0;
    height: 19px;
}

div.TSFW-ptDiv.TSFW-pager {
	border-top: 1px solid #d0d0d0;
}

div.TSFW-pbDiv.TSFW-pager {
	border-bottom: 1px solid #d0d0d0;
}

div.TSFW-pbDiv.TSFW-pager input, div.TSFW-pbDiv.TSFW-pager select, div.TSFW-ptDiv.TSFW-pager input, div.TSFW-ptDiv.TSFW-pager select {
	height: 16px;
	padding: 0px;
	margin: 0px;
	font-size: 11px;
}

div.TSFW-pbDiv.TSFW-pager div, div.TSFW-ptDiv.TSFW-pager div {
	padding-top: 1px;
}

div.TSFW-pbDiv.TSFW-pager .TSFW-float-r, div.TSFW-ptDiv.TSFW-pager .TSFW-float-r {
	padding-top: 0px;
	margin-top: 1px;
	height: 17px;
}

div.TSFW-pbDiv.TSFW-pager .TSFW-float-l, div.TSFW-ptDiv.TSFW-pager .TSFW-float-l {
	padding-top: 0px;
	margin-top: 1px;
	height: 16px;
}

/* tohle je tu asi zbytečné - table kolabuje defaultně */
.TSFW-gridTable {
	border-collapse: collapse;
}

.TSFW-gridTable td.TSFW-nodata {
	font-weight: bold;
}

.TSFW-gridTable td.TSFW-pager {
	border-bottom: 1px solid #d0d0d0;
	border-top: 1px solid #d0d0d0;
	text-align: center;
}

.TSFW-gridTable th {
	border: 1px solid #d0d0d0;
	background: url('images/hback.png') repeat-x;
	vertical-align: top;
	line-height:18px;
}

.TSFW-gridTable th a {
	text-decoration: none;
}

.TSFW-gridTable tr.TSFW-odd td {
    background-color: #fff;
}

.TSFW-gridTable tr.TSFW-even td {
	background-color: #f0f0f0;
}

.TSFW-gridTable td.TSFW-pager {
	padding: 2px;
	background-color: #f0f0f0;
}

.TSFW-gridTable td.TSFW-cb, .TSFW-gridTable th.TSFW-cb {
	width: 15px;
	text-align: center;
	margin: 0;
	padding: 0 3px;
	vertical-align: middle;
}

.TSFW-gridTable td.TSFW-cb input, .TSFW-gridTable th.TSFW-cb input {
	margin: 0;
	vertical-align: calc(50% - 9px);
	*vertical-align: middle;
}

.TSFW-gridTable tbody tr.TSFW-detail:hover td, .TSFW-gridTable tbody tr.TSFW-detail:hover th {
	background-color: inherit;
}

.TSFW-gridTable tbody.TSFW-colResize tr:hover td {
    background-color: transparent;
}

.TSFW-gridTable th.TSFW-gridFunctionRow {
	text-align: right;
	background-color: #fff !important;
	border: 0;
	background-image: none;
	padding: 0;
}

/* gridButtonRow se nejspíš nikde nepoužívá */
.TSFW-gridTable th.TSFW-gridButtonRow {
	text-align: left;
	background-color: #f0f0f0 !important;
	border: 0;
	background-image: none;
}

.TSFW-gridTable th.TSFW-gridButtonRow a {
	color: Black;
    padding: 0 8px;
	border-right: 1px solid #808080;
	text-decoration: none;
	vertical-align: middle;
}

.TSFW-gridTable th.TSFW-gridButtonRow .TSFW-giwrapper {
	vertical-align: middle;
}

.TSFW-gridTable th.TSFW-gridButtonRow a:hover {
	text-decoration: underline;
}

.TSFW-giwrapper {
	display: inline-block;
	position: relative;
	width: 16px;
	height: 16px;
	overflow: hidden;
	margin: 0 2px;
}

.TSFW-gridTable th.TSFW-gridButtonRow .TSFW-giwrapper {
	vertical-align: middle;
	margin: 0 6px;
}

.TSFW-giwrapper img {
	position: absolute;
}

.TSFW-gridTable span.TSFW-filter {
	vertical-align: middle;
}

/* pager */
/* gTablePager --- se nikde nepoužívá */
.TSFW-gTablePager {
	width: 100%;
	margin: 0;
}

.TSFW-firstPage, .TSFW-lastPage {
	background-image: url('images/GridStripe.png');
	background-position: -188px;
	width: 8px;
	display: inline-block;
}

.TSFW-lastPage {
	background-position: -208px;
}

.TSFW-gColumnHide {
	background-color: #f0f0f0;
	border: 1px solid #808080;
	position: absolute;
	z-index: 999;
	line-height: 1.75;
}

.TSFW-gColumnHide ul li input {
	margin-right: 5px;
}

.TSFW-gColumnHide table.TSFW-form {
	width: 100%;
    *width: auto;
}

.TSFW-gColumnHide ul {
	list-style-type: none;
	margin: 1em;
	padding-left: 0;
}

.TSFW-gColumnHide ul.inner {
	list-style-type: none;
	margin-top:0;
	margin-bottom:0;
	padding-left: 0;
}

	.TSFW-gColumnHide ul li.spanheader {
		font-weight:bold;
	}

.TSFW-gColumnHide td {
	width: 50%;
	text-align: center;
}

tr.TSFW-gSumRow td, tr.TSFW-gSumAllRow td {
	font-weight:bold;
}

/*tabulka ikony*/
.TSFW-giSortAsc {
	left: -140px;
}

.TSFW-giSortDesc {
	left: -160px;
}

.TSFW-giFilter {
	background-image: url('images/GridStripe.png');
	background-position: -100px;
	width: 16px;
	height: 16px;
	cursor: pointer;
	margin: 0px 2px 0px 2px;
}

.TSFW-giFilterSmall {
	left: -340px;
}

.TSFW-giFilterOn {
	left: -120px;
}

.TSFW-giFilterSmallOn {
	left: -360px;
}

.TSFW-giSave {
	background-image: url('images/GridStripe.png');
	background-position: -20px;
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.TSFW-giDefault {
	background-image: url('images/GridStripe.png');
	background-position: -40px;
	width: 16px;
	height: 16px;
	cursor: pointer;
	margin: 0px 2px 0px 2px;
}

.TSFW-giExcel {
	background-image: url('images/GridStripe.png');
	background-position: 0px;
	width: 16px;
	height: 16px;
	cursor: pointer;
	margin: 0px 2px 0px 2px;
}

.TSFW-giColumnHideOn {
	background-image: url('images/GridStripe.png');
	background-position: -80px;
	width: 16px;
	height: 16px;
	cursor: pointer;
	margin: 0px 2px 0px 2px;
}

.TSFW-giColumnHideOff {
	background-image: url('images/GridStripe.png');
	background-position: -60px;
	width: 16px;
	height: 16px;
	cursor: pointer;
	margin: 0px 2px 0px 2px;
}

.TSFW-giProfiles {
	background-image: url('images/GridStripe.png');
	background-position: -380px;
	width: 16px;
	height: 16px;
	cursor: pointer;
	margin: 0px 2px 0px 2px;
}

.TSFW-giSettingsSave {
	background-image: url('images/GridStripe.png');
	background-position: -400px;
	width: 16px;
	height: 16px;
	cursor: pointer;
	margin: 0px 2px 0px 2px;
}

.TSFW-gProfilesDiv {
	background-color: #F0F0F0;
	background-position: center center;
	background-image: url('images/ajax-loader.gif');
	background-repeat: no-repeat;
	min-width:50px;
	min-height:50px;
	display:none;
	position:absolute;
	z-index:1000;
	border:1px solid black;
	padding:10px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

	.TSFW-gProfilesDiv ul {
		list-style-type:none;
		margin-bottom: 0;
	}

	.TSFW-gProfilesDiv a {
		cursor:pointer;
		vertical-align: top;
	}

	.TSFW-gProfilesDiv span.TSFW-inputText {
		vertical-align: top;
	}

.TSFW-groupExpand {
	left: -220px;
}

.TSFW-groupCollapse {
	left: -240px;
}

.TSFW-giItemLeaf {
	left: -260px;
}

/* giNew není použita, ale to tady asi úplně nevadí, nebo? */
.TSFW-giNew {
	left: -280px;
}

/* giEdit není použita, ale to tady asi úplně nevadí, nebo? */
.TSFW-giEdit {
	left: -300px;
}

.TSFW-giDelete {
	background-image: url('images/GridStripe.png');
	background-position: -320px;
	width: 16px;
	height: 16px;
	cursor: pointer;
	margin: 0px 2px 0px 2px;
}

.TSFW-gProgress {
	background-color: #888;
	display: none;
	opacity: 0.8;
	text-align: center;
	vertical-align: middle;
}

/*******************************************************/

/* hlášky uživateli */
/* gridPI je zakomentovaná a ostatní jsou nepoužité ani message, ale nejsem jist */
.TSFW-gridPI,
.TSFW-gridPIInfo,
.TSFW-gridPISuccess,
.TSFW-gridPIWarning,
.TSFW-gridPIError,
.TSFW-message {
	margin: 0 0 0.5em 0;
	padding: 0.5em 0.5em 0.5em 0.5em;
}

.TSFW-gridPI {
	display: none;
}

.TSFW-gridPIInfo,
.TSFW-gridPISuccess,
.TSFW-message.TSFW-ok {
	background-color: #aaffaa;
	border: solid 1px green;
}

.TSFW-gridPIWarning,
.TSFW-gridPIError,
.TSFW-message.TSFW-fail {
	color: Red;
	font-weight: bold;
	background-color: #ffdddd;
	border: solid 1px red;
}

.TSFW-gridPIInfo,
.TSFW-gridPISuccess,
.TSFW-gridPIWarning,
.TSFW-gridPIError {
	display: block;
}

/* tady už to zase existuje */
.TSFW-switch.TSFW-pager a span {
	height: 20px;
}

.TSFW-switch.TSFW-pager a {
	border-right: 1px solid #606060;
}

.TSFW-switch.TSFW-pager li.TSFW-last a {
	border-right: 0;
}

.TSFW-switch.TSFW-pager a span, .TSFW-switch.TSFW-pager {
	line-height: 20px;
	min-width: 12px;
	display: inline-block;
}

.TSFW-switch.TSFW-pager a, .TSFW-switch.TSFW-pager a span {
	color: #000;
	background-color: #f0f0f0;
	font-weight: normal;
	cursor: default;
}

.TSFW-switch.TSFW-pager a span {
		border: 1px solid #f0f0f0;
		line-height: 14px;
		height: 14px;
	}

.TSFW-switch.TSFW-pager a.TSFW-selected, .TSFW-switch.TSFW-pager a.TSFW-selected span {
		font-weight: bold;
}

.TSFW-switch.TSFW-pager span:hover {
		border: 1px solid #808080;
}

.TSFW-tblButtons {
	width: 100%;
	margin: 4px 0;
}

.TSFW-tblButtons td {
	border: 0;
	padding: 0;
	}

table.TSFW-filtertable {
	width: 100%;
	margin: 0;
}

table.TSFW-filtertable th {
	white-space: nowrap;
	background: transparent;
	font-weight: bold;
	vertical-align: middle;
	color: #000;
	padding: 0 0.1em 0 0;
	text-align: right;
	border: 0;
}

table.TSFW-filtertable tr:hover td, table.TSFW-filtertable tr:hover th {
	background-color: transparent;
}

table.TSFW-filtertable tr.TSFW-bborder {
	border-bottom: 0px solid #ccc;
}

.TSFW-filtertable td {
	white-space: nowrap;
	width: 40%;
	padding: 0;
	border: 0;
}

.TSFW-filtertable table.TSFW-form select {
	min-width: 0;
}

.TSFW-filtertable td select {
	margin-right: 0;
}

td.TSFW-filterRow {
	background-color: #f5f5f5;
	padding: 0;
}

.TSFW-btClose {
	text-align: right;
}

.TSFW-tblHeader {
	margin: 0;
	border: 0;
	width: auto;
    top:0;
	position:absolute;
	
}

.TSFW-tblHeader div {
	float:left;
}

.TSFW-tblHeader div.TSFW-gridFunctionRow {
	vertical-align: bottom;
	text-align: right;
	white-space: nowrap;
}

.TSFW-sortIndex {
	font-size: 6pt;
	position: relative;
	left: -5px;
}

.TSFW-giwrapper + .TSFW-sortIndex {
	vertical-align: text-bottom;
}

/* tohle je hlavička modálního okna, proč se nikde nepoužívá? */
.TSFW-filter-head {
	background-image: url('images/hback.png');
	background-repeat: repeat-x;
	padding: 5px;
}

.TSFW-filter-head h3 {
	color: white;
	margin: 0;
	padding: 15px 0 5px 5px;
}

/* funguje toto s novými validátory? */


.TSFW-hfDiv td.TSFW-ff select {
	max-width: 90px;
	min-width: 90px;
	width: 90px;
}

.TSFW-hfDiv td select {
	width: 232px;
}

.TSFW-hfDiv input {
	max-width: 232px;
	width: 232px;
}

.TSFW-hfDiv input.TSFW-date {
	width: 93px !important;
}

.TSFW-hfDiv .TSFW-i-wd {
	min-width: 115px;
}

.TSFW-hfDiv table.TSFW-form tbody tr td {
	vertical-align: middle;
}

/* --- tlačítka --- */

.TSFW-qfClear 
{
	height: 20px;

	margin-left: 1px;
	line-height: 20px;
	cursor: pointer;
	font-size: 10px;
	font-weight: 700;
	padding: 0px 3px 0px 3px;
	background-color: transparent;
	border: 0px;
	color: red;
    vertical-align: text-bottom;
}

th.TSFW-qfSC, th.TSFW-qfSC span.TSFW-qfSO {
	overflow: visible;
}

.TSFW-qfClear.TSFW-disabled {
	cursor:default;
	color:gray;
    vertical-align: text-bottom;	
}

.TSFW-qfSO {
	display:inline-block;
	width:100%;
}

.TSFW-qfSI {
	display:block;
	position: relative;
	margin-right:20px;
}

.TSFW-qfRtl {
	direction:rtl;
	margin-right:0px;
}

.TSFW-qfLtr {
	direction:ltr;
}

span.TSFW-qfSI {
	overflow: visible !important;
}

table.TSFW-gridTable th.TSFW-qfText, span.TSFW-qfText {
	text-align: left;
	color: #FF0000;
}

span.TSFW-qfText {
	text-align: left;
	color: #FF0000;
	display:inline-block;
	width:100%;
	cursor: default;
}

.TSFW-gridTable > thead > tr > th > span
{
    font-size: 11px;
}

/*** Info Panely ***/
.TSFW-msg {
	margin: 5px 0 5px 0;
	padding: 15px 30px 15px 62px;
	background: #d0d2ff;
	border: 2px #1502d0 dotted;
	background-image: url("images/inf.png");
	background-repeat: no-repeat;
	background-position: 15px center;
}

table.TSFW-form .TSFW-msg {
	margin: 0;
	padding: 0;
}

.TSFW-success {
	background: #dfffb8;
	border-color: #71c908;
	background-image: url("images/suc.png");
	background-repeat: no-repeat;
	background-position: 15px center;
}

table.form .TSFW-success {
	background: #dfffb8;
	border-color: #71c908;
}

.TSFW-error {
	background: #ffc0af;
	border-color: #ff0000;
	background-image: url("images/err.png");
	background-repeat: no-repeat;
	background-position: 15px center;
}

table.TSFW-form .TSFW-dd {
	float: none;
	top: 3px;
	display: inline-block;
}

table.TSFW-form .TSFW-id {
	float: left;
	display: inline-block;
	left: 170px;
}

.TSFW-warning {
	background: #ffe3a0;
	border-color: #ff9703;
	background-image: url("images/war.png");
	background-repeat: no-repeat;
	background-position: 15px center;
}

table.TSFW-form .TSFW-warning {
	background: #ffe3a0;
	border-color: #ff9703;
}

.TSFW-loading {
	background: #fafafa;
	border-color: #bfbfbf;
	background-image: url("images/ajax-loader.gif");
	background-repeat: no-repeat;
	background-position: 15px center;
	margin: 40% auto;
	width: 50%;
}

.TSFW-blockMsg {
	left: 35%;
	top: 40%;
	background: url("images/ajax-loader.gif") no-repeat scroll 15px center #FAFAFA;
	border: 2px dotted #BFBFBF;
	padding: 15px 30px 15px 62px;
	width: 30%;
}

#TSFWprogress > span {
	display: inline-block;
	height: 16px;
	background-repeat: no-repeat;
	padding-left: 20px;
}

#TSFWprogress > span.noico {
	padding-left: 0px;
}

#TSFWprogress > span.TSFW-statusError {
	background-image: url("images/war_sm.png");
}

#TSFWprogress > span.TSFW-statusSuccess {
	background-image: url("images/tick-circle.png");
}

#TSFWprogress > span.TSFW-statusWarning {
	background-image: url("images/exclamation.png");
}

#TSFWprogress > span.TSFW-statusInfo {
	background-image: url("images/information.png");
}

#TSFWprogress > span.TSFW-statusChange {
	background-image: url("images/disk--exclamation.png");
}

#TSFWprogress > span.TSFW-change {
	background-image: url("images/war_sm.png");
}

#TSFWprogress > span.TSFW-progtext {
	background-image: url("images/ajax-loader-16.png");
}

/* Třídy */

.TSFW-clear {
	clear: both;
}

.TSFW-small {
	font-size: .8em;
	margin-bottom: 1.875em;
	line-height: 1.875em;
}

.TSFW-large {
	font-size: 1.2em;
	line-height: 2.5em;
	margin-bottom: 1.25em;
}

.TSFW-hide {
	display: none;
}

.TSFW-quiet {
	color: #666;
}

.TSFW-loud {
	color: #000;
}

.TSFW-highlight {
	background: #ff0;
}

.TSFW-added {
	background: #060;
	color: #fff;
}

.TSFW-removed {
	background: #900;
	color: #fff;
}

.TSFW-float-l {
	float: left;
}

.TSFW-float-r {
	float: right;
}

.TSFW-auto
{
    width: auto !important;
    }

.TSFW-lmargin5 {
	margin-left: 5px;
}

.TSFW-rmargin5 {
	margin-left: 5px;
}

table.TSFW-gridTable a, table.TSFW-gridTable a:hover {
	color: white;
}

table.TSFW-gridTable thead tr th {
	text-align: center;
}

ul.TSFW-switch {
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

ul.TSFW-switch li {
	display: inline;
}

.TSFW-nodisplay {
	display: none;
}

.TSFW-simple {
	border: 0;
	padding: 0;
	margin: 0;
}

/*** Kontextové menu ***/
.context-menu-list {
	background: none repeat scroll 0 0 #EEEEEE;
	border: 1px solid #DDDDDD;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
	display: none;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	font-size: 11px;
	list-style-type: none;
	margin: 0;
	max-width: 250px;
	min-width: 120px;
	padding: 0;
	position: absolute;
}

.context-menu-item {
	-moz-user-select: -moz-none;
	background-color: #EEEEEE;
	padding: 2px 2px 2px 24px;
	position: relative;
}

.context-menu-separator {
	border-bottom: 1px solid #DDDDDD;
	padding-bottom: 0;
}

.context-menu-item > label {
	-moz-user-select: text;
}

.context-menu-item.hover {
	background-color: #3399FF;
	cursor: pointer;
}

.context-menu-item.disabled {
	color: #666666;
}

.context-menu-input.hover, .context-menu-item.disabled.hover {
		background-color: #EEEEEE;
		cursor: default;
}

.context-menu-submenu:after {
	color: #666666;
	content: ">";
	position: absolute;
	right: 3px;
	top: 0;
	z-index: 1;
}

.context-menu-item.icon {
	background-position: 4px 2px;
	background-repeat: no-repeat;
}

.context-menu-item.icon-filter {
	background-image: url("../images/funnel.png");
}

/* nejsou obrázky a třídy nejsou použity */
.context-menu-item.icon-edit {
	background-image: url("images/page_white_edit.png");
}

.context-menu-item.icon-cut {
	background-image: url("images/cut.png");
}

.context-menu-item.icon-copy {
	background-image: url("images/page_white_copy.png");
}

.context-menu-item.icon-paste {
	background-image: url("images/page_white_paste.png");
}

.context-menu-item.icon-delete {
	background-image: url("images/page_white_delete.png");
}

.context-menu-item.icon-quit {
	background-image: url("images/door.png");
}


.context-menu-input > label > * {
	vertical-align: top;
}

.context-menu-input > label > input[type="checkbox"], .context-menu-input > label > input[type="radio"] {
	margin-left: -17px;
}

.context-menu-input > label > span {
	margin-left: 5px;
}

.context-menu-input > label, .context-menu-input > label > input[type="text"], .context-menu-input > label > textarea, .context-menu-input > label > select {
	-moz-box-sizing: border-box;
	display: block;
	width: 100%;
}

.context-menu-input > label > textarea {
	height: 100px;
}

.context-menu-item > .context-menu-list {
	display: none;
	right: -5px;
	top: 5px;
}

.context-menu-item.hover > .context-menu-list {
	display: block;
}

.context-menu-accesskey {
	text-decoration: underline;
}

/*** Filtry ***/

.TSFW-padded {
	padding: 0.5em;
}

/* === Záložky === */
div.TSFW-steps {
	width: 100%;
	margin-top: 7px;
	display: table;
}

div.TSFW-steps ul {
	border-bottom: 1px solid #CCCCCC;
	display: block;
	height: 24px;
	margin: 0 0 1.5em 0;
	padding-left: 0;
}

div.TSFW-steps ul li {
	background-position: left top;
	display: inline;
	float: left;
	line-height: 1em;
	list-style-type: none;
	margin: 0 0.833em 0 0;
	padding: 0 0 0 0.833em;
}

div.TSFW-steps ul li, div.TSFW-steps ul li a {
	background-image: url("images/step-border.png");
	background-repeat: no-repeat;
}

div.TSFW-steps ul li a {
	background-position: right top;
	display: block;
	padding: 0.667em 0.833em 0.5em 0;
	text-decoration: none;
}

div.TSFW-steps ul li.TSFW-selected, div.TSFW-steps ul li.TSFW-selected a {
	background-image: url("images/step-border-selected.png");
	color: white;
}

/****multiple dropdown*/
.TSFW-ddcl-wrapper {
	display: inline-block;
	height:20px;
}

.TSFW-ddcl-input {
	background: url("images/dropdown.png") no-repeat scroll right center #FFFFFF;
	border-top-color: #ABADB3;
	border-right-color: #DBDFE6;
	border-bottom-color: #E3E9EF;
	border-left-color: #E2E3EA;
	border-style: solid solid solid solid;
	border-width: 1px 1px 1px 1px;
	height: 18px;
	display: inline-block;
}

.TSFW-ddcl-wrapper.TSFW-hover .TSFW-ddcl-input {
	background: url("images/dropdown_hover2.png") no-repeat scroll right center #FFFFFF;
	border-top-color: #5794BF;
	border-right-color: #3C7FB1;
	border-bottom-color: #C7E2F1;
	border-left-color: #C5DAED;
}

.TSFW-hfDiv td .TSFW-ddcl-text {
	width: 212px;
}

.TSFW-ddcl-text {
	display: inline-block;
	overflow: hidden;
	width: 250px;
	height: 18px;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-right: 20px;
	padding: 1px 0 1px 0;
	color: #000;
	direction:ltr;
	font-weight:normal;
	text-align:left;
}

.TSFW-ddcl-options {
	display: none;
	position: absolute;
	border-color: #E3E9EF;
	border-style: solid solid solid solid;
	border-width: 1px;
	background-color: #fff;
	z-index: 1000;
	direction: ltr;
	text-align: left;
	color:#000;
	font-weight: normal;
	max-height: 350px;
	overflow-y: auto !important;
}

.TSFW-ddcl-options input {
	width: 15px;
	vertical-align:middle;
}

/*** Error ***/

#TSFW-div-error {
	position: absolute;
	left: 50%;
	margin: 40px -210px;
}

.TSFW-inputText {
	display: inline-block;
	position: relative;   
}

form .TSFW-inputText span.TSFW-icon, form .TSFW-inputText.TSFW-i-wd span.TSFW-icon {
    right: 2px;
    top: 2px;
}

form .TSFW-inputText.TSFW-i-wdt span.TSFW-timeError {
	right: -89px;
	top: 2px;
}


form .TSFW-inputText.TSFW-i-wdd span.TSFW-icon {
    right: 18px;
    top: 2px;
}

/* proč je success jako error? */
span.TSFW-success {
    background: url("../Images/war_sm.png") no-repeat scroll 0 0 transparent;
	text-indent: -9999px;
}

span.TSFW-error {
    background: url("./Images/war_sm.png") no-repeat scroll 0 0 transparent;
	text-indent: -9999px;
}

.TSFW-icon {
    display: block;
    height: 17px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    width: 17px;
}

table.TSFW-form span.TSFW-inputText.TSFW-i-wt input, table.TSFW-form span.TSFW-inputText.TSFW-i-wt {
	width:100%;
}

table.TSFW-form span.TSFW-inputText.TSFW-i-wtt input, table.TSFW-form span.TSFW-inputText.TSFW-i-wtt {
	width:auto;
}

.TSFW-i-wn {
    width: 100%;

}
.TSFW-qf-tbl {
    display: table;
    margin: 0 auto;
    max-width: 200px;
}

.TSFW-qf-tc {
    display: table-cell;
    vertical-align: top;
    
}

/*** Validator Line ***/
/* toto se asi nepoužívá */
.TSFW-inputText span.TSFW-Validator {
    right: 100%;
    top: 25px;
}

/* toto se nepoužívá */
span.TSFW-ValidLine {
    display: none;
    font-size: .8em;
    font-weight:bold;
	margin-bottom: 1.875em;
	line-height: 1.875em;
	color: red;

}

.TSFW-Validator {
    display: block;
    overflow: hidden;
}

.qfRow {
	font-size: 8px;
}

/* mbutton v Grid Table */
.TSFW-gridTable div.TSFW-mbutton
{
    overflow:visible;
}

.TSFW-gridTable div.TSFW-mbutton div.TSFW-drop a
{
    color: Black;
}


/*Modalni dialog*/
.TSFW-dialog.ui-widget-content {
	background: #5384C1;
}

.TSFW-dialog.ui-corner-all, .TSFW-dialog .ui-corner-all {
	border-radius:0;
}

.TSFW-dialog .ui-widget-header {
	background: #5384C1;
	border:0;
	font-weight:normal;
}

	.TSFW-dialog .ui-widget-header span.ui-dialog-title {
		width:100%;
		text-align:center;
	}

.TSFW-dialog.ui-dialog {
	padding: 0 7px 7px 7px;
	border: 1px solid #396190;
}

.TSFW-dialog.ui-dialog .ui-dialog-content {
	padding: 0;
	overflow: hidden;
	border: 1px solid #396190;
	background: #fff url('images/DialogLoader.gif') no-repeat center;
}

.TSFW-dialog button.ui-button.ui-dialog-titlebar-close {
	background-image: url('images/DialogClose.png');
	background-repeat: no-repeat;
	border:0;
	height:20px;
	width:31px;
	top:10px;
	right:0;
}

.TSFW-dialog button.ui-button.ui-dialog-titlebar-close.ui-state-hover {
	background-image: url('images/DialogCloseHover.png');
	cursor:default;
}

.TSFW-dialog button.ui-button.ui-dialog-titlebar-close span.ui-button-icon-primary {
	display:none;
}

.TSFW-captcha div.IcoRefresh {
	background-image: url('images/IcoRefresh.png');
}

.TSFW-captcha div.IcoAudio {
	background-image: url('images/IcoAudio.png');
}

.TSFW-captcha .TSFW-captcha-img {
	width:170px;
}

.TSFW-captcha .TSFW-captcha-buttons {
	vertical-align: bottom;
	padding-left: 3px;
	padding-bottom: 4px;
}

.rc-handle-container {
  position: relative;
}
.rc-handle {
  position: absolute;
  width: 7px;
  cursor: col-resize;
  margin-left: -3px;
  z-index: 2;
  /*border: 1px solid red;*/
}
table.rc-table-resizing {
  cursor: ew-resize;
}
table.rc-table-resizing thead,
table.rc-table-resizing thead > th,
table.rc-table-resizing thead > th > a {
  cursor: ew-resize;
}

.dragtable-sortable { 
    list-style-type: none; margin: 0; padding: 0; -moz-user-select: none;
}
.dragtable-sortable li {
    margin: 0; padding: 0; float: left; font-size: 1em; background: white; 
}

.dragtable-sortable .TSFW-gridTable th, .dragtable-sortable td{
    border-left: 0px;
}

.dragtable-sortable li:first-child th, .dragtable-sortable li:first-child td {
    border-left: 1px solid #CCC; 
}

.ui-sortable-helper {
    opacity: 0.7;filter: alpha(opacity=70);
}
.ui-sortable-placeholder { 
    -moz-box-shadow: 4px 5px 4px #C6C6C6 inset;
    -webkit-box-shadow: 4px 5px 4px #C6C6C6 inset;
    box-shadow: 4px 5px 4px #C6C6C6 inset;
    border-bottom: 1px solid #CCCCCC;
    border-top: 1px solid #CCCCCC;
    visibility: visible !important;
    background: #EFEFEF !important; 
    visibility: visible !important;
}
.ui-sortable-placeholder * { 
    opacity: 0.0; visibility: hidden; 
}

.tsfw-profile-active {
	font-weight: bold;
}


/*CntlHint napoveda style*/
/*.ui-dialog .ui-dialog-titlebar {
	height: 13px;  or whatever you want 
}
*/


#dialogHint.ui-dialog-content {
	overflow: unset;
}

.ucHintcontainer {
	display:inline;
	float:left;
}

.ucHint {
	display: inline;
	float: right;
	cursor: pointer;
}

.ucHinttext {
	display: none;
}

img.ucHintClick {
	/*	content: url("../../Images/question_mark0.png");*/
	content: url("../../Images/question_mark2.png");
	/*margin: 0px 4px 4px 4px;*/
	position: relative;
	top: -2px;
}


/*.ui-dialog-titlebar > .ui-button {
	border: 3px solid red !important;
}
*/


.ui-dialog .ui-dialog-titlebar-close {
	outline: 0;
}
