html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	background-color: snow;
}

a.button {
	text-decoration: none;
	border: solid 2px;
	border-radius: 20px;
	padding: 3px 20px;
}

table.staff {
/*	border: solid 3px darkslategray; */
/*	border-collapse: collapse; */
	border-collapse: separate;
	border-spacing: 2px;
	width: 100%;
	color: #222222;
/*	background-color: seashell;	/* IE8 */
}

.staff tr, .staff th, .staff td {
/*	border: solid 1px darkslategray; */
	border-radius: 20px;
	padding: 5px 15px;
}

.staff thead th, .staff thead td {
	background-color: #9bcb60;
	border-radius: 20px;
	padding: 5px 15px;
	color: white;
}

/*
.staff thead, .staff tfoot {
	background-color: seashell;
}

.staff tfoot tr, .staff tfoot th, .staff tfoot td {
	border: none;
}
*/

.staff tbody tr:nth-child(odd) td { background-color: LightYellow; }
.staff tbody tr:nth-child(odd) th { background-color: blanchedalmond; }

.staff tbody tr:nth-child(even) td { background-color: mistyrose; }
.staff tbody tr:nth-child(even) th { background-color: lightpink; }

.staff tbody tr:hover td { background-color: lightcyan; }
.staff tbody tr:hover th { background-color: Paleturquoise; }



table.paper_odd {
	border-collapse: separate;
	border-spacing: 2px;
	width: 100%;
	color: #222222;
	background-color: seashell;	/* IE8 */
}

.paper_odd tr, .paper_odd th, .paper_odd td {
	border-radius: 20px;
	padding: 5px 15px;
}

.paper_odd td { background-color: LightYellow; }
.paper_odd th { background-color: blanchedalmond; }

.paper_odd tbody:hover td { background-color: Lightcyan; }
.paper_odd tbody:hover th { background-color: Paleturquoise; }
.paper_odd tbody:hover th:nth-last-child(1) { background-color: azure; }

table.paper_even {
	border-collapse: separate;
	border-spacing: 2px;
	width: 100%;
	color: #222222;
	background-color: seashell;	/* IE8 */
}

.paper_even tr, .paper_even th, .paper_even td {
	border-radius: 20px;
	padding: 5px 15px;
}

.paper_even td { background-color: mistyrose; }
.paper_even th { background-color: lightpink; }

.paper_even tbody:hover td { background-color: Lightcyan; }
.paper_even tbody:hover th { background-color: Paleturquoise; }
.paper_even tbody:hover th:nth-last-child(1) { background-color: azure; }



table.vpaper {
	border-collapse: separate;
	border-spacing: 2px;
	width: 100%;
	color: #222222;
	background-color: seashell;	/* IE8 */
}

.vpaper tr, .vpaper th, .vpaper td {
	border-radius: 20px;
	padding: 5px 15px;
}

.vpaper tbody:nth-child(odd) td { background-color: LightYellow; }
.vpaper tbody:nth-child(odd) th { background-color: blanchedalmond; }

.vpaper tbody:nth-child(even) td { background-color: mistyrose; }
.vpaper tbody:nth-child(even) th { background-color: lightpink; }

.vpaper tbody:hover td { background-color: Lightcyan; }
.vpaper tbody:hover th { background-color: Paleturquoise; }
.vpaper tbody:hover th:nth-last-child(1) { background-color: azure; }

h2.vpaper {
	border-style: solid;
	border-width: 0 0 2px 10px;
	border-color: #3f935f;
	border-radius: 20px 0 0 20px;
	background: snow;
/*	display: block; */
/*	background: #3f935f; */
	padding: 0 10px;
}


table.vstaff {
	border-collapse: separate;
	border-spacing: 2px;
	width: 100%;
	color: #222222;
	background-color: seashell;	/* IE8 */
}

.vstaff tr, .vstaff th, .vstaff td {
	border-radius: 20px;
	padding: 5px 15px;
}

.vstaff tbody:nth-child(odd) th { background-color: blanchedalmond; }
.vstaff tbody:nth-child(odd) tr:nth-child(odd)  td { background-color: LightYellow; }
.vstaff tbody:nth-child(odd) tr:nth-child(even) td { background-color: mistyrose; }

.vstaff tbody:nth-child(even) th { background-color: lightpink; }
.vstaff tbody:nth-child(even) tr:nth-child(even) td { background-color: LightYellow; }
.vstaff tbody:nth-child(even) tr:nth-child(odd)  td { background-color: mistyrose; }

.vstaff tbody tr td:hover { background-color: Lightcyan; }
.vstaff tbody:nth-child(odd)  tr:nth-child(odd)  td:hover { background-color: Lightcyan; }
.vstaff tbody:nth-child(odd)  tr:nth-child(even) td:hover { background-color: Lightcyan; }
.vstaff tbody:nth-child(even) tr:nth-child(even) td:hover { background-color: Lightcyan; }
.vstaff tbody:nth-child(even) tr:nth-child(odd)  td:hover { background-color: Lightcyan; }



a.btn-anchor {
	text-decoration: none;
	display: block;
	padding: 1px 6px;
	width: 50px;

	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;

	color: whitesmoke;
	border: solid 2px mediumblue;
	background: -moz-linear-gradient(top, mediumblue 0%, midnightblue);
	background: -webkit-gradient(linear, left top, left bottom, from(#0099CC), to(#006699));
}

a.btn-anchor:hover {
	color: White;
	border: solid 2px green;
	background: -moz-linear-gradient(top, darkgreen 0%, green);
	background: -webkit-gradient(linear, left top, left bottom, from(darkgreen), to(#3D9941));
}



input, select, textarea {
/* input[type='text'], [type='password'] { */
	font-size: 100%;
}

textarea {
	font-family: sans-serif;	/* for Chrome */
}

input[type='submit'] {
	font-size: 90%;
	padding: 2px 15px;

	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;

	color: whitesmoke;
	border: solid 2px mediumblue;
	background: midnightblue;	/* IE8 */

	background: -moz-linear-gradient(top, mediumblue 0%, midnightblue);
	background: -webkit-gradient(linear, left top, left bottom, from(#0099CC), to(#006699));
}

input[type="submit"]:hover {
	color: White;
	border: solid 2px green;
	background: darkgreen;	/* IE8 */

	background: -moz-linear-gradient(top, darkgreen 0%, green);
	background: -webkit-gradient(linear, left top, left bottom, from(darkgreen), to(#3D9941));
}

input[type='submit'].btndel {
	border: solid 2px firebrick;

	background: crimson;

	background: -moz-linear-gradient(top, red 0%, firebrick);
	background: -webkit-gradient(linear, left top, left bottom, from(red), to(firebrick));
}

input[type='submit']:hover.btndel {
	border: solid 2px crimson;
	background: firebrick;

	background: -moz-linear-gradient(top, firebrick 0%, red);
	background: -webkit-gradient(linear, left top, left bottom, from(orangered), to(deeppink));
}



input[type='checkbox'] {
	width: 25px;
	height: 25px;
	vertical-align: middle;
/*	-moz-transform-origin: right bottom; */
/*	-moz-transform: scale( 1.6, 1.6 ); */
/*	-webkit-transform-origin: right bottom; */
/*	-webkit-transform: scale( 1.6, 1.6 ); */
}



.menu {
	padding: 5px 10px;
	background-color: #3f935f;
	border-radius: 10px;
	font-weight: bolder;
/*	text-indent: 10px; */
	color: white;
}
.menu ul {
	list-style-type: none;
	margin: 0px 0px;
	padding: 0px;
}
.menu li {
	margin: 0px 0px;
	padding: 2px;
}
.menu a {
	text-decoration: none;
	display: block;
	font-weight: normal;
	background: #9bcb60;
	border-radius: 20px;
	padding: 5px 15px;
	color: black;
}
.menu a:hover {
	background: #19ad5e;
	color: white;
}


html, body {	
	height: 100%;
	padding: 0;
	margin: 0;
}

#container {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
}
#header {
	height: 18px;
	background-color: #5a3b58;
}
#contents {
	height: auto;
	padding-bottom: 20px;
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
#footer {
	position: absolute;
	bottom: 0;

	width: 100%;
	height: auto;
	font-size: 60%;
	font-style: italic;
	font-weight: bold;
	text-align: right;
	background-color: #94b428;
	color: white;
}

/*
	3f935f 009d6b 19ad5e 79c063 9bcb60
	94b428
	5a3b58
*/

/* vim: set tabstop=4 shiftwidth=4 softtabstop=4 : */
