/* Głowny div ActionsManager */
.actionsManager {
	width: 500px;
	border: #cccccc solid 1px;
	padding: 5px;
	position: absolute;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	background-color: #f3f3f3;
	overflow: hidden;
}

/* Div na header */
.amHeader {
    font-family: tahoma;
	font-size: 12px;
	width: 100%;
	height: 16px;
	padding: 5px 0;
	margin-bottom: 5px;
	background-color: #666666;
	color: white;
	font-weight: bold;
	overflow: visible;
	position: relative;
}
.amHeaderMove {
	cursor: move;
}

/* Div na ikonke zamkniecia */
.amClose {
	width: 16px;
	height: 16px;
	background-image: url(../images/cancel.png);
	background-repeat: no-repeat;
	cursor: pointer;
	position: absolute;
	top: 5px;
	right: 0px;
	padding: 0 3px;
}

/* Div na ikonke czekania */
.amWait {
	width: 10px;
	height: 10px;
	background-image: url(../images/amwait.gif);
	background-repeat: no-repeat;
	position: absolute;
	display: none;
	top: 8px;
	left: 5px;
}

.amWindowResize {
	width: 10px;
	height: 10px;
	background-image: url(../images/window_resize.gif);
	background-repeat: no-repeat;
	position: absolute;
	right: -2px;
	bottom: -2px;
	cursor: se-resize;
}
* html .amWindowResize {
	bottom: -7px;
}
.amContainer {
	width: 100%;
	height: 140;
	overflow: auto;
	text-align: left;
}
.amErrors li {
	color: red;
}
.amMessages li {
	color: green;
}

/* Wiersz szczegółów komentarza */
.commentRow {
	margin: 2px 0;
}

.commentData {
	font-weight: bold;
}

.commentText {
	background-color: white;
	border: 1px solid #7E8F4B;
	padding: 3px;
	margin: 5px 0;
}