.my_popup_note {
	position: absolute;
	z-index: 35;
}

.note_btn {
	background-image: url('../img/sticky_note/bg.png');
	background-size: 100% 100%;
	width: 50px;
	height: 45px;
	cursor: pointer;
	position: absolute;
	display: none;
}

.note_popup {
	min-width: 250px;
	min-height: 250px;
	max-width: 600px;
	max-height: 600px;
	font-size: 18px;
	position: relative;
	background-image: url('../img/sticky_note/bg.png');
	background-size: 100% 100%;
}

.note_header_part {
	height: 45px;
	position: relative;
}

.note_header_part .draggable_part {
	width: 100%;
	height: 100%;
	background-color: burlywood;
	opacity: 0.95;
	cursor: move;
	box-shadow: 0 0 2px;
	border-radius: 8px;
}

.note_header_part > * {
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.note_header_part > *:active {
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2) inset;
}

.note_header_part > .minimize_btn {
	position: absolute;
	top: -15px;
	left: -15px;
	width: 30px;
	height: 30px;
	background-image: url('../img/sticky_note/minimize_icon.png');
	background-size: 100% 100%;
	border-radius: 20px;
	cursor: pointer;
	background-color: rgba(230, 230, 230, 0.85);
}

.note_header_part > .delete_btn {
	position: absolute;
	top: 7px;
	right: 7px;
	width: 30px;
	height: 30px;
	background-image: url('../img/sticky_note/delete_icon.png');
	background-size: 100% 100%;
	cursor: pointer;
	border-radius: 5px;			
	background-color: rgba(255, 50, 50, 0.65);
}

.note_header_part > .hand_writing_btn {
	position: absolute;
	top: 7px;
	right: 60px;
	width: 30px;
	height: 30px;
	background-image: url('../img/sticky_note/hand_writing_btn.png');
	background-size: 100% 100%;
	cursor: pointer;			
	background-color: rgba(255, 255, 255, 0.65);
}

.note_popup > .note_content_part {
	border: 1px dotted gray;
	position: absolute;
	top: 55px;
	left: 4%;
	right: 2%;
	bottom: 5.5%;
	word-wrap: break-word;
	overflow-y: auto;
}

.note_popup > .note_content_part .note_content_hand_writing_img {
	max-width: 100%;
	max-height: 20px;
}