@CHARSET "UTF-8";


/**
 * Miejsce na stronie
 */
.place {
	position: relative;
	background-color: #EAFAFA;
}

.place:hover {
}

.place:hover .addButtons {
	display: block;
}

.place .addButtons {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
}

.place .addButtons input:hover {
	background-color: #AAFAFA;
}

/**
 * Obiekt w miejscu
 */
.object {
	position: relative;
	background-color: #EAFAFA;
}

.object:hover {
	background-color: #DAFAFA;
}

.object:hover .editButtons {
	display: block;
}

.object .editButtons {
	display: none;
	position: absolute;
	right: 0;
	bottom: 0;
}

.object .editButtons input:hover {
	background-color: #AAFAFA;
}

.empty {
/*	width: 100%;
*/	min-height: 25px;
}

/**
 * Przyciski administracyjne
 */
.addButtons input,
.editButtons input {
	padding: 2px 5px;
}

.addButtons input :hover,
.editButtons input :hover {
	background-color: #EEEEEE;
}

/**
 * Panel administratora strony
 */

.adminPane {
	background-color: red;
	position: absolute;
	top: -20px;
	left: 0;
	width: 98%;
	z-index: 3000;
	padding: 5px 10px;
	font-size:11px;
	color:#FFFFFF;
}

.adminPane:hover {
	top: 0;
}

.adminPane .logout {
	float: right;
	margin-left: 5px;
}

.adminPane .logout a {
	margin-left: 5px;
}

.adminPane .links a {
	margin-right: 5px;
}
