/* CSS Document */

h4{
	font-weight:bold;
}

table {
	width:100%;
	border-top:#CCCCCC 1px solid;
	border-left:#CCCCCC 1px solid;
	box-sizing:border-box;
	margin:0 0 30px;
}

table th{
	width:25%;
}
table th,
table td{
	padding:12px 20px;
	border-bottom:#CCCCCC 1px solid;
	border-right:#CCCCCC 1px solid;
	font-size:14px;
	vertical-align:middle;
}
table th {
	text-align:center;
	letter-spacing:1px;
	font-weight:bold;
	background:#E5F4FF;
}

table td a{
	color:#000;
}
table td a:hover{
	color:#0075d1;
	text-decoration:none;
}

#apply{
	text-align:center;
}


#apply a {
	display: inline-block;
	border-radius:5px;
	text-align: center;
	text-decoration: none;
	outline: none;
	padding:1em 4em;
}
#apply a::before,
#apply a::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
#apply a,
#apply a::before,
#apply a::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

#apply a {
	position: relative;
	z-index: 2;
	background-color: #fff;
	border: 2px solid #0075D1;
	color: #0075D1;
	overflow: hidden;
}
#apply a:hover {
	color: #fff;
}
#apply a::after {
	top: -100%; left:0;
	width: 100%;
	height: 100%;
}
#apply a:hover::after {
	top: 0; left:0;
	background-color: #0075D1;
}