/* 基本文字色、文字サイズ */
BODY{
	color:#666666;						/* デフォルトのフォントカラー*/
	font-size: 9pt;						/* デフォルトのフォントサイズ */
	margin: 0px;						/* マージン */
}
/* スクロールバー配色 */
HTML {
	scrollbar-arrow-color:#C0C0C0;		/* スクロールバー配色 */
	scrollbar-base-color:#ffffff;		/* スクロールバー配色 */
	scrollbar-darkshadow-color:#ffffff;	/* スクロールバー配色 */
	scrollbar-highlight-color:#C0C0C0;	/* スクロールバー配色 */
	scrollbar-shadow-color:#C0C0C0;		/* スクロールバー配色 */
	scrollbar-track-color:#ffffff;		/* スクロールバー配色 */
}

/* リンク文字色 */
A:link {
	color: #785027;
	text-decoration: none;
}
A:visited { 
	color: #785027;
	text-decoration: none;
}
A:hover {
	color: #FF9933;
	text-decoration: underline;
}
A:active {
	color: #785027;
	text-decoration: underline;
}

/* imgタグ */
img {
	border: 0px;	/* 画像ボーダーライン無し */
}

/* 段落タグ */
p {
	text-align: left;			/* テキスト横配置[right/center/left] */
	border-width: 0px;			/* ボーダーの太さ */
	line-height: 1.4em;			/* 行間 */
}


/* h1見出しデザイン(ページタイトル用) */
h1 {
	background-image: url("standard/bgimage_h1.gif");	/* 背景画像 */
	background-repeat: repeat-x;						/* 背景画像をX軸方向にリピート */
	height: 16px;				/* 高さ */
	padding: 8px;				/* パディング(内側の余白) */
	font-size: 11pt;			/* フォントサイズ */
	color: #884400;				/* フォントカラー */
	text-align: center;			/* 中央揃え */
}

/* h2見出しデザイン */
h2 {
	border-left: 7px solid #884400;
	border-bottom: 1px solid #884400;
	padding:0.6em 0.8em;
	font-size: 11pt;			/* フォントサイズ */
	color: #884400;				/* フォントカラー */
}

/* h3見出しデザイン */
h3 {
	border-left: 7px solid #884400;
	padding:0.6em 0.8em;
	font-size: 10pt;			/* フォントサイズ */
	color: #884400;				/* フォントカラー */
}

/* リストデザイン */
ul,ol {
	line-height: 1.5em;			/* 行間 */
}

/* 強調文字 */
strong {
	font-size: 11pt;	/* フォントサイズ */
	color: #785027;		/* フォントカラー */
	font-weight: bold;	/* 太字 */
}

/* デフォルトのボタンデザイン */
input[type="button"]	{
	font-size: 10pt;			/* フォントサイズ */
	color: #785027;				/* フォントカラー */
	background-color: #E5C9A5;	/* 背景色 */
}

/* デフォルトのSubmitボタンデザイン */
input[type="submit"]	{
	font-size: 10pt;			/* フォントサイズ */
	color: #785027;				/* フォントカラー */
	font-weight: bold;			/* 太字 */
	background-color: #E5C9A5;	/* 背景色 */
}

/* デフォルトのテキストフォームデザイン */
input[type="text"],
input[type="password"] {
	font-size: 10pt;			/* フォントサイズ */
	color: #785027;				/* フォントカラー */
	margin: 2px;
}

/* デフォルトのテキストエリアフォームデザイン */
textarea	{
	font-size: 10pt;			/* フォントサイズ */
	color: #785027;				/* フォントカラー */
	margin: 2px;
	scrollbar-arrow-color:#C0C0C0;		/* スクロールバー配色 */
	scrollbar-base-color:#ffffff;		/* スクロールバー配色 */
	scrollbar-darkshadow-color:#ffffff;	/* スクロールバー配色 */
	scrollbar-highlight-color:#C0C0C0;	/* スクロールバー配色 */
	scrollbar-shadow-color:#C0C0C0;		/* スクロールバー配色 */
	scrollbar-track-color:#ffffff;		/* スクロールバー配色 */
}


/******************** ユーティリティクラス ********************/

/* テーブルデザイン（Type1:アースカラー） */
table.tableType1 {
	border-collapse: collapse;	/* 隣接するセルのボーダーを重ねて表示 */
	border: 0px;				/* ボーダーデザイン */
	line-height: 1.3em;			/* 行間 */
}
.tableType1 td {
	border: 1px solid #785027;	/* ボーダーデザイン */
	font-size: 9pt;				/* フォントサイズ */
	color: #666666;				/* フォントカラー */
	/*text-align:left;*/			/* テキスト配置 */
	padding: 4px;				/* パディング(内側の余白) */
}
.tableType1 th {
	border: 1px solid #785027;	/* ボーダーデザイン */
	font-size: 9pt;				/* フォントサイズ */
	color: #785027;				/* フォントカラー */
	font-weight: bold;			/* 太字 */
	background-color: #E5C9A5;	/* 背景色 */
	text-align: center;			/* テキスト配置 */
	padding: 4px;				/* パディング(内側の余白) */
}
.tableType1 caption {
	text-align:left;			/* テキスト配置 */
	font-size: 11pt;			/* フォントサイズ */
	color: #785027;				/* フォントカラー */
	font-weight: bold;			/* 太字 */
}

/* テーブルデザイン（線無し） */
table.tableNoLine, 
table.tableNoLine td, 
table.tableNoLine th {
	border: 0px;
}

/* <a>タグ装飾クラス */
a.aDesignedLink {
	display:block;
	color:#FFFFFF;
	height: 20px;
	line-height:20px;
	background:url(standard/bgimage_h1.png) repeat-x;	/* (暫定) */
}
a.aDesignedLink:hover {
	background:url(standard/bgimage_h1.png) repeat-x;	/* (暫定) */
}

/* buttonタグに画像を指定する場合に使うクラス */
button.buttonImg {
	width: auto;
	padding:0;
	margin:0;
	background:none;
	border:0;
	font-size:0;
	line-height:0;
	overflow:visible;
	cursor:pointer;
}


/* 画像の下部に隙間を空けるimgクラス */
img.imgVspace {
	margin: 0px 0px 3px 0px;
}


/* 線無しテーブルデザインのdivクラス */
div.divTableNoLine table, 
div.divTableNoLine td, 
div.divTableNoLine th {
	border: 0px;
}

/* 線無し＋内余白無しテーブルデザインのdivクラス */
div.divTableNoLine2 table, 
div.divTableNoLine2 td, 
div.divTableNoLine2 th {
	border: 0px;
	padding: 0px;
}

/* divを使った水平線 */
div.divHr {
	width: 100%;
	height: 10px;
	background: #ffffff url("standard/line01.gif") repeat-x ;	/* 背景設定 */
}

/* 強調ボタンデザイン */
input.btnStrong {
	font-size: 10pt;			/* フォントサイズ */
	color: #9F0011;				/* フォントカラー */
	font-weight: bold;			/* 太字 */
	background-color: #FF8B91;	/* 背景色 */
}


/* テキストフォーム サイズSS */
input.txtSS {
	height: 14px;				/* 高さ */
	width: 40px;				/* 横幅 */
}
/* テキストフォーム サイズS */
input.txtS {
	height: 14px;				/* 高さ */
	width: 80px;				/* 横幅 */
}
/* テキストフォーム サイズM */
input.txtM {
	height: 14px;				/* 高さ */
	width: 160px;				/* 横幅 */
}
/* テキストフォーム サイズL */
input.txtL {
	height: 14px;				/* 高さ */
	width: 320px;				/* 横幅 */
}
/* テキストフォーム サイズLL */
input.txtLL {
	height: 14px;				/* 高さ */
	width: 480px;				/* 横幅 */
}

/* テキストエリアフォーム サイズSS */
textarea.txtareaSS {
	width: 40px;				/* 横幅 */
}
/* テキストエリアフォーム サイズS */
textarea.txtareaS {
	width: 80px;				/* 横幅 */
}
/* テキストエリアフォーム サイズM */
textarea.txtareaM {
	width: 160px;				/* 横幅 */
}
/* テキストエリアフォーム サイズL */
textarea.txtareaL {
	width: 320px;				/* 横幅 */
}
/* テキストエリアフォーム サイズLL */
textarea.txtareaLL {
	width: 480px;				/* 横幅 */
}

/* テーブルセルの幅寄せ */
.tdCenter {
	text-align: center;
}
.tdRight {
	text-align: right;
}
.tdLeft {
	text-align: left;
}

/* 段落ボックス */
div.divParagraphBox {
	text-align: left;			/* テキスト横配置[right/center/left] */
	border-width: 0px;			/* ボーダーの太さ */
	margin: 5px 30px;			/* マージン(外側余白)(上右下左) */
	line-height: 1.4em;			/* 行間 */
}

div.div550Box {
	text-align: left;			/* テキスト横配置[right/center/left] */
	border-width: 0px;			/* ボーダーの太さ */
	width: 550px;				/* 横幅 */
}
div.div650Box {
	text-align: left;			/* テキスト横配置[right/center/left] */
	border-width: 0px;			/* ボーダーの太さ */
	width: 650px;				/* 横幅 */
}
div.div750Box {
	text-align: left;			/* テキスト横配置[right/center/left] */
	border-width: 0px;			/* ボーダーの太さ */
	width: 650px;				/* 横幅 */
}

/* ページャー */
ul.pager01 {
	margin: 0;
	padding: 0;
	font: 100% Arial, Helvetica, sans-serif;
	text-align: center;
}
ul.pager01 li {
	list-style: none;
	display: inline;
	margin: 0;
	padding: 0;
}
ul.pager01 li strong {
	display: -moz-inline-box; /* firefox2 対応 */  
	display: inline-block;
	padding: 0.25em 0.4em;
	background-color: #E5C9A5;
	border: 1px #785027 solid;
	color: #785027;
	font-size: 12pt;
	font-weight: bold;
}
ul.pager01 li a {
	display: -moz-inline-box; /* firefox2 対応 */  
	display: inline-block;
	padding: 0.25em 0.4em;
	border: 1px #785027 solid;
	text-decoration: none;
	font-size: 12pt;
}
  
ul.pager01 li a:link,
ul.pager01 li a:visited {
	border-color: #785027;
	color: #785027;
	font-size: 12pt;
}
ul.pager01 li a:hover,
ul.pager01 li a:active {
	border: 1px solid #785027;
	background-color: #E5C9A5;
	color: #785027;
	font-size: 12pt;
	text-decoration: none;
}

/* ソートテーブル用設定 */
table.tablesorter thead tr .header {
	background-image: url("./standard/bg.gif");
	background-repeat: no-repeat;
	background-position: center right;
	cursor: pointer;
}
table.tablesorter thead tr .headerSortUp {
	background-image: url("./standard/asc.gif");
}
table.tablesorter thead tr .headerSortDown {
	background-image: url("./standard/desc.gif");
}

