/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 29.6.2014, 12:40:59
    Author     : Martin
*/

.wrongValue {
	background-color: red;
	color: white;
}

.center {
	margin-left: auto;
	margin-right: auto;
}

.caption {
	width: 180px;
	text-align: right;
	padding-right: 20px;
}

.value {
	width: 300px;
	text-align: left;
}

.valueMiddle {
	text-align: center;
}

.value input {
	width: 250px;
}

.value select {
	width: 250px;
}

.buttons {
	padding-top: 30px;
	text-align: center;
}


table {
	border-collapse: collapse;
}

.errorDesc {
	margin: 0px;
	font-size: 10pt;
	color: red;
}

.help {
	display: inline;
	vertical-align: baseline;
	
	position: relative;
}

.help img {
	vertical-align: bottom;
}

.tooltip {
	display: inline;
	visibility: hidden;
	
	position: absolute;
	
	left: -255px;
	top: 25px;
	
	width: 220px;
	
	background-color: antiquewhite;
	
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 7px;
	padding-bottom: 7px;
	
	border-radius: 10px;
}

.help:hover .tooltip {
	visibility: visible;
}
