/*
imgedit.css
*/
#imgedit {
	background-color: transparent;
	box-shadow: 0 0 5px 0 #000;
	min-width: 650px;
	min-height: 322px;
	overflow: hidden;
	position: fixed;
	left: 50px;
	top: 50px;
	z-index: 101;
}

#imgedit .bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
	opacity: 0.8;
	filter: alpha(opacity = 80);
}

#imgedit .content {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

#imgedit h2 {
	padding: 5px;
	margin: 0;
	color: #959595;
}

#imgedit .close {
	background: url("/img/sprite-2.png") no-repeat scroll -97px -129px transparent;
	cursor: pointer;
	height: 15px;
	position: absolute;
	right: 2px;
	top: 2px;
	width: 15px;
}

#imgedit .title {
	font-size: 19px;
	font-weight: bold;
	color: #444;
	padding: 10px 0 0 20px;
}

#imgedit-list {
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
}

#imgedit .item {
	position: relative;
	width: 200px;
	height: 200px;
	float: left;
	border: solid 1px #ccc;
	padding: 0;
	margin: 4px;
	cursor: pointer;
	background: url(/img/bg-transparent.png) 0 0 transparent;
}

#imgedit .item img {
	max-width: 200px;
	max-height: 200px;
	cursor: pointer;
}

#imgedit .item.selectable .del {
	background: url("/img/sprite-imgedit.png") no-repeat scroll 3px -77px #000;
    cursor: pointer;
    display: none;
    height: 29px;
    position: absolute;
    right: 1px;
    top: 1px;
    width: 29px;
	opacity: 0.7; filter: alpha(opacity=70);
}

#imgedit .item.selectable .edit {
	background: url("/img/sprite-imgedit.png") no-repeat scroll 3px 3px #000;
    cursor: pointer;
    display: none;
    height: 29px;
    position: absolute;
    right: 31px;
    top: 1px;
    width: 29px;
	opacity: 0.7; filter: alpha(opacity=70);
}

#imgedit .item.selectable:hover .del, #imgedit .item.selectable:hover .edit {
	display: block;
}

#imgedit .item.selectable:hover .del:hover, #imgedit .item.selectable:hover .edit:hover {
	display: block;
	opacity: 1; filter: alpha(opacity=100);
}

#imgedit .item.selectable:hover, #imgedit-uploader:hover {
	box-shadow: 0 0 2px 0 #000;
}

#imgedit-uploader {

}

#imgedit-uploader iframe {
	display: none;
}

#imgedit-uploader form {
	width: 200px;
	height: 200px;
	background: url(/img/noimage/plus-b.jpg) 0 0 transparent;
}

#imgedit-uploader form input[type=file] {
	border: none;
	opacity: 0;
	filter: alpha(opacity=0);
	cursor: pointer;
	height: 200px;
	position: absolute;
	top: 0;
	right: 0;
	font-size: 50px;
}

#imgedit-uploader .tooltip {
	position: absolute;
	top: 0;
	right: 0;
	border: solid 1px #ccc;
	background-color: #000;
	opacity: 0.7;
	padding: 5px;
	text-shadow: none;
}

#imgedit-iframe {
	display: none;
}

#imgedit-canvas {
}

#imgedit-preview-h0 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: solid 1px #000;
	box-shadow: 0 0 2px 0 #000;
	overflow: hidden;
	background-color: #000;
	color: #fff;
}

#imgedit-preview-h1 {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: auto;
}

#imgedit-preview {
	position: relative;
	margin: 20px;
}

#imgedit-preview-box {
	width: 200px;
	height: 200px;
	cursor: move;
	position: absolute;
	top: 0;
	left: 0;
	box-shadow: 0 0 0 2px #ff0000;
}

#imgedit-preview .box {
	background-color: #ffffff;
	opacity: 0.6; filter: alpha(opacity=60);
	position: absolute;
}

#imgedit-preview-h0 .buttons {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 250px;
}

#imgedit-preview-h0 .buttons p {
	margin-bottom: 10px;
}

#imgedit-preview-h0 .buttons button {
	margin-right: 2px;
}