/* cptools.css */

/* buttons */

.cpt-button {
	display: inline-block;
	width: 128px;
	height: 24px;
	text-align: center;
	
	text-decoration: none;
	color: #333;
	text-shadow: white 0px 1px 1px;
	
	background-color: #f0f0f0;
	background: -webkit-gradient(linear, left top, left bottom, from(#f0f0f0), to(#d7d7d7));
	border: 1px solid #ccc;
	
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	
	font-size: 0.8em;
	
	margin: 0;
}

.cpt-button:hover {
	color: #000;	
}

.cpt-button:active {
	color: #006;
	background-color: #d7d7d7;	
	background: -webkit-gradient(linear, left top, left bottom, from(#d7d7d7), to(#f0f0f0));
}

.cpt-button-priority-blue {
	border: 1px solid #89a;
	background-color: #ced6dd;
	background: -webkit-gradient(linear, left top, left bottom, from(#ced6dd), to(#8494a5));
}

.cpt-button-priority-blue:active {
	background-color: #8494a5;
	background: -webkit-gradient(linear, left top, left bottom, from(#8494a5), to(#ced6dd));
}

.cpt-button-priority-red {
	border: 1px solid #a89;
	background-color: #ddced6;
	background: -webkit-gradient(linear, left top, left bottom, from(#ddced6), to(#a58494));
}

.cpt-button-priority-red:active {
	background-color: #a58494;
	background: -webkit-gradient(linear, left top, left bottom, from(#a58494), to(#ddced6));
}

/* overlay popups */

.cpt-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -120px;
	margin-left: -240px;
	width: 480px;
	
	background-color: #f9f9f9;
	
	border: 10px solid rgba(0, 0, 0, 0.5);
	-webkit-border-radius: 10px;
}


.cpt-popup .title {
	display: block;
	margin: 10px;
	font-size: 1.2em;
	
	margin-top: 20px;
	margin-left: 60px;
	
	color: black;
	text-shadow: #ccc 1px 1px 5px;
	
	font-family: Helvetica, Verdana, Arial;
	letter-spacing: 0.1em;
}

.cpt-popup .message {
	font-size: 0.9em;
	font-weight: normal;
	text-align: left;
	
	display: block;
	
	margin-top: 25px;
	margin-left: 60px;
	margin-right: 60px;	
}

.cpt-popup .text-input-large {
	width: 340px;
	margin-left:60px;
	
	padding: 10px;
	font-size: 1.2em;
}

/* notices */

.cpt-warning {
	position: relative;
	
	display: inline-block;
	width: 	160px;
	height: 18px;
	line-height: 18px;
	vertical-align: middle;
	
	background-color: #faa;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	padding: 8px;
}

.cpt-warning img {
	position: absolute;
	top: 8px;
	left: 12px;
}

.cpt-warning span {
	position: absolute;
	left: 40px;
	
	font-family: Helvetica, Times, serif;
	font-size: 0.9em;
	
	color: #933;
}