/* For button-like effect */
/* Table part */
.button{
	text-align:center;
	background:#FFFFFF;
	height:40px;
	line-height:40px;
	width:160px;
	cursor:pointer;
}
.button:hover{
	background:#66FFFF;
}
.button#now{
	background:#99FFFF;
}
.button#now:hover{
	background:#66FFFF;
}
/* Link part */
.buttontext{
	text-decoration:none;
	color:#0000FF;
	display:block;
	height:100%;
}

/* For toggle text effect in abstract */

input[type="checkbox"] {
	display: none;
}

input[type="checkbox"] + p {
	display:none; 
}

input[type="checkbox"]:checked + p {
	display:block;
}

label{
	text-decoration: underline;
	color: #0033CC;
	font-weight: bold;
}

summary{
	text-decoration: underline;
	color: #0033CC;
	font-weight: bold;
}

.abs{
	border-style: solid;
	border-color: #000080;
	margin-left:1em;
	margin-top:1em;
	padding: 10px;
	border-width: 2px;
}

/* General style setting, for all pages */
body{
	margin-left: 6%; 
	margin-right: 6%; 
	margin-top: 3%;
	font-family: Tahoma, Geneva, sans-serif;
}
h2{
	text-align: center;
}
dt{
	font-weight: bold;
	text-decoration: underline;
	margin-top: 10px;
	margin-bottom: 10px;
}
li{
	margin-top: 8px;
	margin-bottom: 8px;
}
table{
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
	margin-bottom: 15px;
}
hr{
	width: 100%;
	height: 2px;
}
u{
	color: #000099;
	text-decoration: none;
}
