/* CSS */

body {font-family: "Times New Roman", Times, serif; font-size: 16px; background-color:#f2f2f2;}

button {border-radius:5px; border:1px solid gray;}
button:hover {background-color:yellow; cursor: pointer;}


a {text-decoration:none;}
a:link {color:blue;}
a:visited {color:blue;}
a:hover {
	text-decoration:none;
	background-color:yellow;
	}

a.extlink {
	background: transparent url("icons/icon-ext.gif") right no-repeat;
	text-decoration:none;
	padding-right: 10px;
	margin: 0 0.2em 0 0;
}

a.extlink:hover {
	background-color:yellow;
}

a.pdflink {
	background: transparent url("icons/icon-pdf.gif") right no-repeat;
	text-decoration:none;
	padding-right: 18px;
	margin: 0 0.2em 0 0;
}


.errmsg {color:red; font-weight:bold;}
.msg {color:green; font-weight:bold;}
#flashmsg {color:green; font-weight:bold;
	transition: background 1.5s;
	transition-timing-function: ease-in-out;
	background-color: yellow;
	padding:5px;
	border:1px dotted lightgrey;
	box-shadow: 5px 5px 5px grey;
	}


.btn_refresh {background-color:lightgreen;}
.btn_update {background-color:lightblue;}
.btn_add {background-color:lightgreen;}
.btn_cancel  {background-color:orange;}
.btn_close  {background-color:orange;}
.btn_delete  {background-color:pink;}