.notepad {
	border: 1px solid gray;
	background: lightyellow;
	box-shadow: 0 0 12px #818181;
	width: 200px;
	padding: 7px 10px;
	position: absolute;
	cursor: pointer;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9em;
	color: #666;
}

.notepad h3 {
	margin: 5px 0;
}

.notepad .close {
	float: right;
	font-weight: bold;
	text-align: center;
	display: block;
	cursor: pointer;
}

.notepad form {
	margin: 0;
	padding: 0;
}

.notepad form fieldset {
	margin-top: 1em;
	border: none;
	padding: 0;
}

.notepad form legend {
	font-weight: bold;
}

.notepad form input[type="text"],
.notepad form input[type="password"],
.notepad form textarea {
	width: 95%;
}

.notepad form textarea {
	height: 45px;
}

.notepad form a.control {
	text-decoration: none;
	padding: 5px 20px;
	text-align: center;
	margin: 5px 0;
	display: block;
	font: bold 13px Verdana;
	border: 1px solid gray;
	color: white;
	background: linear-gradient(to bottom, #7ad690, #3ec05c 25%, #298a40 45%, #3ec05c 85%, #7ad690);
	border-radius: 8px;
	box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.5);
	transition: background 0.3s ease-in-out;
}

.notepad form a.control:hover {
	background: linear-gradient(to bottom, #3ec05c, #298a40);
}

.notepad form a.delete {
	background: linear-gradient(to bottom, #f5795d, #e55e3f 25%, #d02700 45%, #e55e3f 85%, #f5795d);
}

.notepad:before {
	content: '';
	position: absolute;
	width: 120px;
	height: 25px;
	border-left: 1px dashed rgba(0, 0, 0, 0.1);
	border-right: 1px dashed rgba(0, 0, 0, 0.1);
	background: rgba(0, 0, 0, 0.1);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.0));
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
	transform: translate(-70px, 0px) skew(10deg, 10deg) rotate(-50deg);
}