
.Box {
	display: block;
	position: absolute;
	overflow: visible;
	z-index: 100;
	top: 80px;
	left: 0px;
	width: 200px;
	height: 200px;
	background: url(../images/transparent_100.png) repeat;
}

.BoxBackground {
	position: absolute;
	display: none;
	z-index: 9999;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: #666666;
	cursor: pointer;
	
	-webkit-opacity: 0.70;
	-moz-opacity: 0.70;
	opacity: 0.70;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=70);
}

.Box .BoxContainer {
	display: block;
	position: absolute;
	overflow: hidden;
	z-index: 100;
	top: 0px;
	left: 0px;
	width: 200px;
	height: 200px;
	
	-webkit-box-shadow:  0px 5px 20px 0px rgba(0, 0, 0, 0.4);
	-moz-box-shadow:  0px 5px 20px 0px rgba(0, 0, 0, 0.4);
	box-shadow:  0px 5px 20px 0px rgba(0, 0, 0, 0.4);
}

.Box .BoxHeader {
	display: block;
	position: relative;
	overflow: hidden;
	
	font-size: 14px;
	text-decoration: none;
	color: #FFFFFF;
	font-weight: normal;
	font-style: normal;
	line-height: 18px;
	margin: 0px;
	padding: 0px 115px 0px 15px;
	
	-moz-opacity: 0.90;
	opacity: 0.90;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=90);
	
	background-color: #0D8136;
}

.Box.Minimized .BoxHeader {
    padding: 0px 15px 0px 15px;
    height: 38px;
}

.Box .BoxHeader div {
	display: block;
	position: relative;
	overflow: hidden;
	
	font-size: 14px;
	text-decoration: none;
	color: #FFFFFF;
	font-weight: normal;
	font-style: normal;
	line-height: 18px;
	padding: 10px 0px;
	margin: 0px;
}

.Box .BoxHeader .Icon {
	position: relative;
	top: 0px;
	left: 0px;
	display: block;
	float: left;	
	height: 24px;
	width: auto;
	overflow: hidden;
	vertical-align: middle;
	border: none;
	margin: 7px 10px 7px 0px;
	
	filter: Invert;
	-webkit-filter: invert(100%);
	-moz-filter: invert(100%);
	-o-filter: invert(100%);
	-ms-filter: invert(100%);
}

.Box .BoxContent {
	display: block;
	position: relative;
	overflow: auto;
	
	font-size: 12px;
	text-decoration: none;
	color: #333333;
	font-weight: normal;
	font-style: normal;
	line-height: 16px;
	margin: 0px;
	padding: 15px 15px 15px 15px;
	
	background-color: #FFFFFF;
    /*line-break: anywhere;*/
}

.Box .BoxActions {
	display: block;
	position: absolute;
	z-index: 100;
	top: 0px;
	right: 0px;
	height: 26px;
	margin: 6px;
	
	white-space: nowrap;
}

.Box .BoxActions div {
	display: block;
	float: left;
	
	font-size: 16px;
	text-decoration: none;
	color: #FFFFFF;
	font-weight: normal;
	font-style: normal;
	line-height: 16px;
	margin: 0px 4px;
	padding: 0px;
	width: 24px;
	height: 24px;
	text-align: center;
	border: 1px #34FF34 solid;
	cursor: pointer;
}
.Hover .Box .BoxActions div:hover {
	border: 1px #FFFFFF solid;
	color: #FFFFFF;
	cursor: pointer;
}

.Box .BoxActions .BoxClose {
	background: transparent url(../images/box/box_close.svg) no-repeat center;
	background-size: 100% auto;
}
.Box .BoxActions .BoxMinimize {
	background: transparent url(../images/box/box_minimize.svg) no-repeat center;
	background-size: 100% auto;
}
.Box .BoxActions .BoxMaximize {
	background: transparent url(../images/box/box_maximize.svg) no-repeat center;
	background-size: 100% auto;
}
.Box .BoxActions .BoxTaskbar {
	background: transparent url(../images/box/box_taskbar.svg) no-repeat center;
	background-size: 100% auto;
}
