@charset "utf-8";
/* CSS Document */

/* Table */
table {
    width: 100%;
    margin-bottom: 15px;
    border-collapse: collapse !important;
    border-spacing: 0;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

table th,table td,table tr {
    padding: 10px;
    text-align: justify;
    border-width: 1px;
    border-style: solid;
    vertical-align: middle;
	border-color:#999;
}

table th {
    font-weight: 700;
	background:#017ba6;
	color:#ffffff !important;
}

table th.clear {
    border: 0;
    background: none;
}

table th {
border-bottom-width: 2px;
border-bottom-style:solid;
}

table tr:first-child td {
    background: url(../images/box_shadow.png) repeat-x left top;
}

table tr:nth-child(2n) td {
    background: rgba(0,0,0,0.01);
}

/* Animation */
table tr:hover td {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/* table.simple */
table.simple th {
    background: none;
}

table.simple th,table.simple td {
    border-width: 0 0 1px;
}

table.simple tr:first-child td {
    background: none;
}

table.simple tr:last-child td {
    border: none;
}

table.simple tr:hover td {
    background: none;
    color: inherit;
}