@charset "utf-8";
/* CSS Document */
/**
* common.css
*
* 共通のCSS定義
*
*/
input[type=submit],
input[type=reset],
input[type=button],
button {

	white-space:nowrap
}
* html button {
	/* for ie6 */
	margin: 0;
	margin: 0;
	white-space: nowrap
}

label {
	cursor: pointer;
	white-space: nowrap;
}

a,
a:link {
	color:#66a;
	text-decoration: underline;
}
a:visited {
	color:#66a;
	text-decoration: underline;
}
a:hover {
	color:#a66;
	text-decoration: underline;
}
a:active {
	color:#a66;
	text-decoration: underline;
}

strong {
	font-weight: bold;
}

/**
* 共通クラス
*/

/* レイアウト用のブロックに使用し共通のマージンを取る */
.block {
	clear: both;
	margin: 0.5em 0;
	overflow: hidden;
}

.nowrap {
	white-space:nowrap;
}

.notice {
	font-weight:bold;
	color: #3366FF;
}

.warning {
	font-weight:bold;
	color: #FF3333;
}
.caution {
	color: #ff9933;
}

.symbol {
	text-align:center;
	white-space:nowrap ;
}

.numeric {
	text-align:right;
	white-space:nowrap;
}

