#postit{
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
}

#postit .overlay{
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(0,0,0,0.3);
	z-index: 1000;
}

#postit .dialogboxwrapper{
	left: 50%;
	top: 50%;
	position: absolute;
}

#postit .dialogboxwrapperurl{
	left: 50%;
	top: 15%;
	position: absolute;
}

#postit .dialogbox{
	font-family: Calibri, Arial;
	background-color: white;
	z-index: 1001;
	position: relative;
	padding: 5px;
	
	-webkit-box-shadow: 0px 0px 17px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    0px 0px 17px rgba(50, 50, 50, 0.75);
	box-shadow:         0px 0px 17px rgba(50, 50, 50, 0.75);
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#postit .dialogbox .btn, #postit .dialogbox .fullscreenExpand, #postit .dialogbox .fullscreenCollapse{
	cursor: pointer;
	background-color:#F6A828;
	font-weight: bold;
	float: right;
	padding: 1px 5px;
	margin:3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display:inline;
	width:8px;
	height:16px;
}
#postit .dialogbox .btn:hover, #postit .dialogbox .fullscreenExpand:hover, #postit .dialogbox .fullscreenCollapse:hover{
	background-color: #E78F08;
}
#postit .dialogbox .btn{
	background-image: url("/images/KlioCloseDialog.png");
}
#postit .dialogbox .fullscreenExpand{
	background-image: url("/images/KlioFullScreen.png");
}
#postit .dialogbox .fullscreenCollapse{
	background-image: url("/images/KlioCloseFullScreen.png");
}
#postit .dialogbox .btnmsg{
	cursor: pointer;
	background-color:#F6A828;
	color: white;
	font-weight: bold;
	padding: 2px 5px;
	float: right;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#postit .dialogbox .title{
	background-color: #F6A828;
	color: white;
	padding: 2px 10px;
	font-weight: bold;
	display:inline;
	float:left;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	cursor:move;
}

#postit .dialogbox .downloadLinkLabel{
	background-color: #FFF;
	color: #00009D;
	padding: 2px 10px;
	display:inline;
	float:left;
	cursor:pointer;	
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font: bold 16px Trebuchet MS;
}

#postit .dialogbox .titlemsg{
	background-color: #F6A828;
	color: white;
	padding: 2px 10px;
	font-weight: bold;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	cursor:move;
}

#postit .dialogbox .message{
	padding: 15px 5px;
	z-index:1500;
}

#postit .cleaner{
	clear: both;
}