/**********************************************
	スクリーン画面設定
**********************************************/
@media screen {
	.hideScreen {
		display:none;
	}
}

/**********************************************
	印刷設定
**********************************************/
@media print {
	.hidePrint {
		display:none;
	}
	.pageBreak {
		page-break-after:always;
	}
}

/**********************************************
	縦スクロールバーを常に表示
**********************************************/
html {
	overflow-y:scroll;
}

/**********************************************
	マージンの無効化
**********************************************/
* {
	margin:0;
	padding:0;
}

/**********************************************
	画像の初期化
**********************************************/
img {
	vertical-align:bottom;
	border:0;
}

/**********************************************
	回り込み解除
**********************************************/
.cl {
	clear:both;
	font-size:0;
}

/**********************************************
	ヌルフォント
**********************************************/
.nul {
	font-size:0;
}

/**********************************************
	文字強調
**********************************************/
em {
	font-style:normal;
	font-weight:bold;
}

/**********************************************
	リンクの設定
**********************************************/
a:link {
	color:#27537a;
	text-decoration:none;
}
a:visited {
	color:#000;
	text-decoration:none;
}
a:active {
	color:#27537a;
	text-decoration:none;
}
a:hover {
	color:#27537a;
	text-decoration:underline;
}

/**********************************************
	フォームの設定
**********************************************/
form label {
	cursor:pointer;
}

form .checkbox {
	vertical-align:middle;
}

.btn_c1 {
	width:8em;
	text-align:center;
}

.btn_c2 {
	width:12em;
	text-align:center;
}

.ri_a {
	text-align:right;
	ime-mode:auto;
}

.le_a {
	text-align:left;
	ime-mode:auto;
}

.ri_j {
	text-align:right;
	ime-mode:active;
}

.le_j {
	text-align:left;
	ime-mode:active;
}

.ri_d {
	text-align:right;
	ime-mode:disabled;
}

.le_d {
	text-align:left;
	ime-mode:disabled;
}

/**********************************************
	スタイルシートセレクタ
**********************************************/
#selectCSS {
	text-align:right;
	font-size:0.9em;
}

#selectCSS a {
	margin-left:1em;
}

/**********************************************
	共通項目
**********************************************/
.detailBox {
	margin-bottom:10px;
	width:100%;
	background-color:#fff;
/*	background:url("../images/detail_back.png") repeat-x;	*/
}

.subtitle {
	margin-bottom:10px;
	padding:6px 0 2px 10px;
	font-size:1.1em;
	font-weight:bold;
	line-height:1.2;
	color:#fff;
	background:url("../images/category_title.png");
}

