/* CSS Document */
/* VOTING BOX */

.box {
	float: left;
	width: 270px;
	margin: 5px;
	z-index: 1000;
	position: absolute;
	right: 100px;
	left: auto;
	top: auto;
}

.box .handle {
	cursor: move;
	height: 30px;
	border-width: 0px 0px 1px 0px;
	color: #fff;
	font-size: 14px;
	line-height: 30px;
	padding-left: 15px;
	padding-right: 15px;
	/*Votebox Verlauf*/
	background: #a2cf00;
	background: -moz-linear-gradient(top,  #a2cf00 0%, #a2cf00 50%, #8fc400 50%, #8fc400 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a2cf00), color-stop(50%,#a2cf00), color-stop(50%,#8fc400), color-stop(100%,#8fc400));
	background: -webkit-linear-gradient(top,  #a2cf00 0%,#a2cf00 50%,#8fc400 50%,#8fc400 100%);
	background: -o-linear-gradient(top,  #a2cf00 0%,#a2cf00 50%,#8fc400 50%,#8fc400 100%);
	background: -ms-linear-gradient(top,  #a2cf00 0%,#a2cf00 50%,#8fc400 50%,#8fc400 100%);
	background: linear-gradient(top,  #a2cf00 0%,#a2cf00 50%,#8fc400 50%,#8fc400 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a2cf00', endColorstr='#8fc400',GradientType=0 );
	/*Votebox Kontur*/
	border: 1px solid #6a9100;
	/*Votebox Innen Schatten*/
	-webkit-box-shadow: inset 0px 1px 0px 0px #d1e800;
	-moz-box-shadow: inset 0px 1px 0px 0px #d1e800;
	box-shadow: inset 0px 1px 0px 0px #d1e800; 
}

.box .boxcontent {
	padding: 10px;
	font-size: 11px;
	background: #fff;
	border: 1px solid #6a9100;
	border-top: none;
	color: #333;
}

.box .handle span {
	color: #fff;
	float: right;
	cursor: pointer;
	font-size: 11px;
}

#boxmini {
	width: 50px;
	height: 30px;
	background: #fff;
	border: 3px solid #ccc;
	border-bottom: none;
	position: fixed;
	z-index: 1000;
	bottom: 0;
	left: 30px;
	line-height: 30px;
	font-size: 15px;
	text-align: center;
	cursor: pointer;
}

span#page {
	border: 1px solid #ccc;
	padding: 3px;
	margin-right: 3px;
}