
/************ Classes ************/

/* Postick's button "delete" */
.delete {
	cursor:pointer;
	font-size:120%;
}


.postick {
	border:1px solid gray;
	min-width:250px;
	max-width:600px;
	padding:4px;
	font-size:85%;
	background:#FFFC7F;
	-moz-box-shadow:2px 2px 2px #999999;
	-webkit-box-shadow:2px 2px 2px #999999;
	box-shadow:2px 2px 2px #999999;
	/*position:absolute;*/
	z-index:999999;
  	overflow: auto;
}

.toolbar {
	text-align:right;
	font-weight:bold;
}

/* Content to be editable inside the postick */

.editable {
	cursor:pointer;
	height:90%;
	min-height:40px;
	marging:0 auto;
	width:100%;
	overflow:hidden;
	position:relative;
	-moz-text-shadow: 1px 1px 0px white;
	text-shadow: 1px 1px 0px white;
}

.editable:hover {
	border:1px dotted gray;
}

.postick > img, .postick > details{
	max-width:94%
}