
/*行事曆的星期別(日~五)*/
.calendarTableHeaderTd {
    text-align: center;
    font-family: 標楷體;
    font-size: 30px;
    font-weight: 700;
    border-right: 6px solid;
    border-bottom: 6px solid;
}

/*行事曆的星期別(六)*/
.calendarTableHeaderTdWithoutRightBorder {
    text-align: center;
    font-family: 標楷體;
    font-size: 30px;
    font-weight: 700;
    border-bottom: 6px solid;
}

/*行事曆每個日期的td(六)*/
.calendarTableContentTd {
    text-align: center;
    border-top: solid;
    height: auto;
}

.calendarTableContentTdSetBorder {
    border-right: solid;
}

.calendarTableContentTdSetLeftBorder {
    border-left: solid;
}

.calendarTableOutBorder {
    border: 6px #0000FF solid
}

.calendarTdTextRed {
    color: red;
    font-size: xx-large;
    font-weight: 700;
}

.calendarTdText {
    font-size: x-large;
    font-weight: 500;
}

.calendarTdTextCurrentDay {
    color: white;
    background-color: darkgoldenrod;
    border-radius: 50%;
    display: inline-block;
    width: 36px;
    height: 36px;
    padding: 2px;
    line-height: 32px;
}

/*一般Table的thead*/
.tableHeaderTd {
    font-size: x-large;
    font-weight: 700;
    border-right: 1px solid;
	border-top: 1px solid;
    border-bottom: 1px solid;
}

.tableTdContent {
    border-right: 1px solid;
	border-top: 1px solid;
    border-bottom: 1px solid;
    font-size: large;
    font-weight: 500;
}

.tableOutBorder {
    border: 3px #cccccc solid;
}

.searchResultTableSizeX-Large { /*查詢結果的table ，固定大小*/
    border-collapse: collapse;
    width: 1400px;
    /*自動斷行*/
    word-wrap: break-word;
    table-layout: fixed;
    font-size: x-large;
}

.searchResultTableSizeLarge { /*查詢結果的table ，固定大小*/
    border-collapse: collapse;
    width: 1000px;
    /*自動斷行*/
    word-wrap: break-word;
    table-layout: fixed;
    font-size: x-large;
}

.searchResultTableSizeMedium { /*查詢結果的table ，固定大小*/
    border-collapse: collapse;
    width: 600px;
    /*自動斷行*/
    word-wrap: break-word;
    table-layout: fixed;
    font-size: x-large;
}

.searchResultTableSizeSmall { /*查詢結果的table ，固定大小*/
    border-collapse: collapse;
    width: 400px;
    /*自動斷行*/
    word-wrap: break-word;
    table-layout: fixed;
    font-size: x-large;
}

