/* 20120712版 */
/* ==============================================
　　Structure Module
============================================== */
*{
	font-family: Arial, Verdana, Geneva, sans-serif; 
	line-height: 22px;
	text-align: left;
}
body {
	margin: 0px;
	border: 15px solid #666666;
	background: #666666;
	text-align: center;
	font-size: 15px;
	color: #666666;
}
 

/* ==============================================
　　Hypertext Module
==============================================*/
a {
	color: #666666;
	cursor: pointer;
	text-decoration: none;
	outline: none; /* for Firefox Google Chrome  */
    behavior:expression(this.onFocus=this.blur()); /* for IE */
}
a:link {
	/*color: #999999;*/
}
/*
a:visited {
	color: #999999;
}
*/
a:hover {
	color: #999999;
	text-decoration: none;
}

/* ==============================================
　　Clear 
============================================== */
.clear {
	clear: both;
}

/* ==============================================
　　Other Element
============================================== */
form { /*去除不必要的空行*/
	margin: 0px;
}
hr {
	height: 1px;
	margin: 5px 0px;
	padding: 0px;
	border: none;
	border-bottom: 1px dashed #999;
	width: 100%;
}
del {
	color: #cccccc;
}
img {
	border: none;
	display: inline-block;
}
img.block {
	margin: 0px auto;
	display: block;
	position: relative;
}
img.pR {
	padding-right: 10px;
}
/*輸入基本值*/
input, textarea, select {
	margin: 2px;
	border: 1px solid #ccc;
	padding: 3px 4px;
	line-height: 15px; 
	color: #000;
	font-family: Verdana, Geneva, sans-serif; 
	font-size: 13px;
	resize: none;
	overflow: hidden;
}
/*輸入設定*/
input[type="button"], input[type="submit"], input[type="reset"] {
	padding: 2px 4px 2px 4px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	line-height: 20px;
	color: #0e4375;
	cursor: pointer;
	background: #f2f2f2;
	border: 1px solid #0e4375;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
}

textarea{
	margin: 5px 0px 0px 0px;
	line-height: 20px; /*基本行高*/
}

/* ==============================================
　　Font & Line
============================================== */
/*h-font*/
h1  {
	font-size: 20px;
	line-height: 25px;
	padding-bottom: 30px;
	color: #000000;
	margin: 0px;
}
h2  {
	padding: 5px 0px;
	font-size: 18px;
	line-height: 25px;
	color: #000000;
	margin: 0px;
}
h3 {
	padding: 5px 0px;
	color: #000000;
	margin: 0px;
}
/*
h4 {
	margin: 0px;
	margin-bottom: 10px;
	font-size: 1.2em;
}
*/

em {
	font-style: normal;
}
s, del {
	font-family: Times New Roman; 
}
b {
	color: #000000;
}

/*Color*/ 
.fcTxt {
	color: #666666; /*基本字色*/
}
.fcSpot {
	color: #d41b1f;
}
.fcDark {
	color: #0e4375;
}
.fcLight {
	color: #206aaf ;
}
.fcNote {
	color: #95afca;
}
.fcWhite {
	color: #ffffff;
}
.fcRed {
	color: #ff3030;
}
.fcBlue {
	color: #3366cc;
}
.fcBlack {
	color: #000000;
}
.fcLBlue {
	color: #45bbff;
}

/*Size*/
.fsMain {
	font-size: 13px;
}
.fsTiny {
	font-size: 11px;
	line-height: 15px;
}
.fsLarge {
	font-size: 18px;
}
.fsTitle {
	font-size: 15px;
}

/*Weight*/
.fwN {
	font-weight: normal;
}
.fwB {
	font-weight: bold;
}

/*Line*/
.lhMain {
	line-height: 1em;
}
.lhTiny {
	line-height: 1em;
}

/*Background*/
.bgSpot {
	padding: 3px 5px;
	background-color: #d41b1f;
	color: #fff;
}
.bgBlue {
	padding: 3px 5px;
	background-color: #45bbff;
	color: #fff;
}
.bgGreen{
	padding: 3px 5px;
	background-color: #66cc00;
	color: #fff;
	display: inline;
}

/*a*/
a.edit {
	color: #206aaf;
}
a.del {
	color: #ff0000;
}
a.delN {
	color: #cccccc;
}
a.fcSpot {
	color: #d41b1f;
}
a.fcDark {
	color: #0e4375;
}
a.fcRed {
	color: #ff3030;
}
a.fcBlack {
	color: #000000;
}
.pointer {
	cursor: pointer;
}
/*a:hover*/
a:hover.edit, a:hover.del, a:hover.fcSpot, a:hover.fcRed {
	color: #000000;
}
a:hover.fcBlack , a:hover.fcDark {
	color: #999999;
}

/* ==============================================
　　Align
============================================== */
.aC {
	text-align: center !important;
}
.aL {
	text-align: left;
}
.aR {
	text-align: right;
}
.vaT {
	vertical-align: top;
}
.vaC {
	vertical-align: middle;
}



/* ==============================================
　　Margin
============================================== */
/*Top*/
.mTop {
	margin-top: 20px;
}
.mTop5 {
	margin-top: 5px;
}
.mTop10 {
	margin-top: 10px;
}
/*Right*/
.mR10 {
	margin-right: 10px;
}
/*Bottom*/
.mBm {
	margin-bottom: 20px;
}
.mBm10 {
	margin-bottom: 10px;
}
/*Left*/
.mL10 {
	margin-left: 10px;
}

/* ==============================================
　　Padding
============================================== */
/*Top*/
.pTop {
	padding-top: 20px;
}
.pTop10 {
	padding-top: 10px;
}
.pTop3 {
	padding-top: 3px;
}
/*Right*/
.pR10 {
	padding-right: 10px;
}
/*Bottom*/
.pB0 {
	padding-bottom: 0px;
}
.pB5 {
	padding-bottom: 5px;
}
/*Left*/
.pL10 {
	padding-left: 10px;
}

/* ==============================================
　　Float
============================================== */
/*Left*/
.fLeft {
	float: left;
}
/*Right*/
.fRight {
	float: right;
}

/* ==============================================
　　Display
============================================== */
/*block*/
.dB {
	display: block;
}
/*inline-block*/
.dIB {
	display: inline-block;
}

/* ==============================================
　　Table
==============================================*/
table {
	margin: 0px;
	padding: 0px;
}
table th, table td {
	padding: 5px;
	color: #666666;
	font-size: 13px;
}
table.form, table.normal  {
	width: 100%;
	/*padding: 10px;*/
	/*border-collapse: collapse;*/
	border-spacing: 1px;
}
table.form th {
	/*padding: 8px;*/
	text-align: right;
	vertical-align: top;
	/*background: #b5e3f0;*/
}
table.form td {
	text-align: left;
}
table.normal th {
	text-align: center;
	border-bottom: 1px solid #ccc;
}
table.normal td {
	text-align: center;
	border-bottom: 1px solid #ccc;
}
table th u {
	color: #ff0000;
	text-decoration: none;
}
table th div {
	color: #0e4375;
	text-align: right;
	font-weight: normal;
}
table td.line {
	font-size: 15px;
	*color: #000000;
	color: #2e6496;
	font-weight: bold;
	border: 1px dashed #a7bbcd;
}
table td.pad {
	padding: 15px 25px 25px 30px;
	text-align: justify;
	text-justify: inter-ideograph;
}
table td.sline {
	border-left: 1px solid #ccc;
}
/*有格線*/
table.table  {
	width: 100%;
	padding: 0px;
	border-collapse: collapse;
	border : 1px solid #dfdfdf;
}

table.table th {
	text-align: center;
	color: #ffffff;
	background-color: #95afca;
	border: 1px solid #dfdfdf;
	*border-bottom: 2px solid #206aaf;
}
table.table td {
	text-align: center;
	background-color: #ffffff;
	border: 1px solid #dfdfdf;
}
/*無格線*/
table.nogrid {
	clear: both;
	margin: 0px;
	padding: 0px;
	border: none;
}
table.nogrid th {
	padding: 5px 8px 5px 8px;
	border: none;
}
table.nogrid td {
	padding: 5px 8px 5px 8px;
	border: none;
}

#whole table {
	width: 100%;
}


/*位置*/
table.normal th.gridl, table.normal td.gridl, table.table td.gridl, table.nogrid th.gridl {
	text-align: left;
}
table.normal td.gridc, table.table td.gridc {
	text-align: center;
}
table.normal th.gridr, table.normal td.gridr, table.nogrid td.gridr, table.table th.gridr, table.table td.gridr {
	text-align: right;
}
table th.gridt, table td.gridt  {
	vertical-align: top;
}
/*垂直雙欄位專用(清單式)*/
dl {
}
dt {
	float: left;
}
dd {
	float: left;
}
fieldset {
	border: 0px;
	text-align: left;
}
label {
	clear: both;
}
label.login {
	padding: 5px 0px 0px 10px;
}
label.error {
	display: none;
	margin-left: 5px;
	padding-left: 18px;
	color: #ff0000;
	font-size: 11px;
	background: url(../images/icon_must.gif) no-repeat;
}

/*Width*/
.twMain { /*以#main寬度定*/
	width: 640px;
}
.twTh1 { /*一列只有一個th的寬度*/
	width: 110px;
}
.twTh2 { /*一列只有二個th的寬度*/
	width: 210px;
}
.twTh3 { /*一列只三個th的寬度*/
	width: 300px;
}
.twNo { 
	width: 5%;
}
.twAct { 
	width: 12%;
}

/* ==============================================
　　List Style
==============================================*/
ul ,ol {
	margin: 0px;
	padding: 0px;
	list-style-position: outside;
}
ul li ,ol li {
	margin: 0px;
	padding: 0px;
}
ul {
	padding: 0px;
	list-style-type: none;
}
ol {
	padding: 0px 0px 0px 30px;
	list-style-type: decimal;
}
ol.cjk {
	margin: 0px;
	clear: both;
	list-style-type: cjk-ideographic;
}


/* ==============================================
　　Basic Style
==============================================*/
.caret {
	display: inline-block;
	width: 0;
	height: 0;
	vertical-align: top;
	border-top: 4px solid #000000;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}
.row .span3, .row .span4, .row .span6, .row .span8, .row .span9, .row .span12  {
	margin-left: 20px;
}
.row div  {
	text-align: justify;
	text-justify: inter-ideograph;
}
.row em {
	font-style: italic;
}
.span3 {
	float: left;
	width: 200px;
}
.span4 {
	float: left;
	width: 280px;
}
.span6 {
	float: left;
	width: 410px;
}
.span8 {
	float: left;
	width: 570px;
}
.span9 {
	float: left;
	width: 650px;
}
.span12 {
	width: 860px;
}