/**
*	RECTANGULAR MARQUEE TOOL - CSS DOCUMENT
*	allow you select rectangles and operate with selected space.
*	
*	Requirements: Prototype Library version 1.5.0 and higher (http://prototype.conio.net/)
*	Author:	Koksharov Sergey (web2.0.dev@gmail.com)
*	Version: 1.1.0
*
*	RECTANGULAR MARQUEE TOOL is freely distributable 
*	under the terms of an MIT-style license.
*	For details, see the Web 2.0 Dev web site: http://web2dev.net/
*/

.marquee {
	border: 3px outset #f00;
	position: absolute;
	z-index: 999;
	top: 0;
	left: 0;
	overflow: hidden;
	-moz-user-select: none;
	display: none;
	font-size: 1px;
	line-height: 0%;
}

.marquee-opacity {
	-moz-opacity: 0.60;
	-khtml-opacity: 0.60;
	filter: Alpha(Opacity=60);
	opacity: 0.60;
	background-color: #fff;
	position: absolute;
	z-index: 999;
	overflow: hidden;
	-moz-user-select: none;
	font-size: 1px;
	line-height: 0%;
}

.marquee-empty {
	position: absolute;
	z-index: 998;
	overflow: hidden;
	-moz-opacity: 0.0;
	-khtml-opacity: 0.0;
	filter: Alpha(Opacity=0);
	opacity: 0.0;
	-moz-user-select: none;
	font-size: 1px;
	line-height: 0%;
}

.marquee-full {
	position: absolute;
	z-index: 998;
	top: 0;
	left: 0;
	background-color: #fff;
	-moz-opacity: 0.0;
	-khtml-opacity: 0.0;
	filter: Alpha(Opacity=0);
	opacity: 0.0;
	-moz-user-select: none;
	font-size: 1px;
	line-height: 0%;
}

.marquee-edge {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
	width: 6px;
	height: 6px;
	overflow: hidden;
	z-index: 1000;
	font-size: 3px;
	line-height: 0%;
}

.marquee-clear {
	float: none;
	clear: both;
	height: 0%;
	font-size: 1px;
	line-height: 0%;
	overflow: hidden;
	width: 1px;
}

.marquee-tooltip {
	position: absolute;
	background-color: #fd9;
	border: 1px solid #ff8122;
	width: 100px;
	text-align: center;
	z-index: 1001;
	display: none;
	font: normal 11px/1.2em Tahoma, Verdana, Arial, Helvetica, sans-serif;
	padding: .5em;
}

