.dlbtn{
	position:absolute;
	text-decoration: none;
	top:2px;
	left:2px;
	color:#000;
	background-image:url("img/cross.png");
}

.note{
	height:150px;
	padding:10px;
	width:150px;
	position:absolute;
	overflow:hidden;
	cursor:move;
	
	/* Notes text style */
	font-family:Trebuchet MS,Tahoma,Myriad Pro,Arial,Verdana,sans-serif;
	font-size:12px;
	
	/* Adding a CSS3 shadow below the note, in the browsers which support it: */
	-moz-box-shadow:2px 2px 0 #DDDDDD;
	-webkit-box-shadow:2px 2px 0 #DDDDDD;
	box-shadow:2px 2px 0 #DDDDDD;
}

#fancy_ajax .note{	cursor:default; }

/* Three styles for the notes: */

.yellow{
	background-color:#FDFB8C;
	border:1px solid #DEDC65;	
}

.blue{
	background-color:#A6E3FC;
	border:1px solid #75C5E7;	
}

.green{
	background-color:#A5F88B;
	border:1px solid #98E775;	
}

/* Each note has a data span, which holds its ID */
span.data{	display:none; }

.author{
	/* The author name on the note: */
	bottom:10px;
	color:#666666;
	font-family:Arial,Verdana,sans-serif;
	font-size:12px;
	position:absolute;
	right:10px;
}

.addButton{
	/* The author name on the note: */
	color:#FFFFFF;
	font-family:Arial,Verdana,sans-serif;
	font-size:12px;
	text-decoration: none;
}

.addButton:hover {
	color:#FFFFFF;
	font-family:Arial,Verdana,sans-serif;
	font-size:12px;
	text-decoration: none;
}

.addButton:visited {
	color:#FFFFFF;
	font-family:Arial,Verdana,sans-serif;
	font-size:12px;
	text-decoration: none;
}

#main{
	/* Notes creation area*/
	margin:300 auto;
	position:absolute;
	width:200px;
	z-index:1000;
	/*minimum left position for notes canevas*/
	left: 1000px;
	/* border useful sometimes to active if you want to see the active area*/
	/*border-width: 1px; border-style: solid; border-color: #000000;*/
}

.popupTitle{
	border-bottom:1px solid #DDDDDD;
	color:#666666;
	font-size:24px;
	font-weight:normal;
	padding:0 0 5px;
}

#noteData{
	/* The input form in the pop-up: */
	height:200px;
	margin:30px 0 0 200px;
	width:350px;
}

.note-form label{
	display:block;
	font-size:10px;
	font-weight:bold;
	letter-spacing:1px;
	text-transform:uppercase;
	padding-bottom:3px;
}

.note-form textarea, .note-form input[type=text]{
	background-color:#FCFCFC;
	border:1px solid #AAAAAA;
	font-family:Arial,Verdana,sans-serif;
	font-size:16px;
	height:60px;
	padding:5px;
	width:300px;
	margin-bottom:10px;
}

.note-form input[type=text]{	height:auto; }

.color{
	/* The color swatches in the form: */
	cursor:pointer;
	float:left;
	height:10px;
	margin:0 5px 0 0;
	width:10px;
}

#note-submit{	margin:20px auto; }

/* The styles below are only necessary for the demo page */

p.tutInfo{
	/* The tutorial info on the bottom of the page */
	padding:10px 0;
	text-align:center;
	position:fixed;
	bottom:0px;
	background:#f0f0f0;
	/*useful if necessary to see the post-it area*/
	/*border-top:1px solid #eaeaea;*/
	width:100%;
	z-index:15;
}