/**
 * 共通スタイルシート（デモ用）
 */

table.listTable > thead > tr{
	text-shadow:1px 1px 0 rgba(255,255,255,1);
	box-shadow: 0 0 0 1px rgba(255,255,255,0.5) inset;

	background-image: -webkit-gradient(linear, left top, left bottom, from(#00bfff), color-stop(0.50,#afeeee),to(#00bfff));
	background-image: -webkit-linear-gradient(top,#00bfff,#afeeee 50%,#00bfff);
	background-image:    -moz-linear-gradient(top,#00bfff,#afeeee 50%,#00bfff);
	background-image:      -o-linear-gradient(top,#00bfff,#afeeee 50%,#00bfff);
	background-image:         linear-gradient(to bottom,#00bfff,#afeeee 50%,#00bfff);

}


table.searchTable > tr > th,
table.searchTable > tbody > tr > th{
	box-shadow: 0 0 0 1px rgba(255,255,255,0.5) inset;
	background-image: linear-gradient(to bottom,#00bfff,#afeeee 50%,#00bfff);
	color: #000000; 
	font-weight:bold;

	white-space:nowrap;
	width:150px;
	padding:5px 1em;
	line-height:24px;
}


table.inputTable th{
	white-space:nowrap;
	width:1px;
	padding:8px 1em;

	background-image: -webkit-gradient(linear, left top, left bottom, from(#00bfff), color-stop(0.50,#afeeee),to(#00bfff));
	background-image: -webkit-linear-gradient(top,#00bfff,#afeeee 50%,#00bfff);
	background-image:    -moz-linear-gradient(top,#00bfff,#afeeee 50%,#00bfff);
	background-image:      -o-linear-gradient(top,#00bfff,#afeeee 50%,#00bfff);
	background-image:         linear-gradient(to bottom,#00bfff,#afeeee 50%,#00bfff);

	box-shadow: 0 0 0 1px rgba(255,255,255,0.5) inset;
	font-weight:normal;
	width: 130px;
	height: 40px;
	vertical-align:middle;
}


