@charset "utf-8";


table.pro_t {
	width: 500px;
	border-collapse: separate;
	border-spacing: 0px 15px;
	font-size: 12px;
	border-radius: 5px;
}

 
table.pro_t th,
table.pro_t td {
	padding: 10px;
	width: auto;
}
 
table.pro_t th {
	background-color: #003399;
	vertical-align: middle;
	text-align: left;
	width: 140px;
	overflow: visible;
	position: relative;
	color: #ffffff;
	font-weight: bold;
	font-size: 13px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
 
table.pro_t th:after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #003399;
    border-width: 10px;
    margin-top: -10px;
}

/* firefox */
@-moz-document url-prefix() {
    table.pro_t th::after {
        float: right;
        padding: 0;
        left: 30px;
        top: 10px;
        content: " ";
        height: 0;
        width: 0;
        position: relative;
        pointer-events: none;
        border: 10px solid transparent;
        border-left: #003399 10px solid;
        margin-top: -10px;
    }
}
 
table.pro_t td {
	background-color: #FFFFFF;
	width: 360px;
	padding-left: 20px;
	font-weight: bold;
	font-size: 14px;
	color: #003399;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}