@charset "utf-8";

/*
	* Name: table.css
	* License: MIT License
	  - http://sourceforge.jp/projects/opensource/wiki/licenses%2FMIT_license
*/


/* Stylesheet Document */

@media screen {

	/* ========================================
	   * 初期設定 - テーブル -
	======================================== */

	table {
		border: 1px solid #DEDDDA;
		border-collapse: collapse;
		margin: 0 0 24px 0;
		padding: 0;
		width: 100%;
	}

	table tr th,
		table tr td {
			border-bottom: 1px solid #DEDDDA;
			border-left: 1px solid #DEDDDA;
			margin: 0;
			padding: 8px 12px 8px 12px;
	}

	table tr th {
		background-color: #FBFBFA;
		font-weight: normal;
		text-align: left;
		width: 28%;
	}

	table tr th,
		table tr th a {
			color: #616160 !important;
	}

	table tr th a:hover {
		text-decoration: none;
	}

	table tr td {
		word-wrap: break-word;
	}

	table tr td p {
		margin-bottom: 14px;
	}

	table tr td img {
		margin-left: 4px;
		margin-right: 4px;
		vertical-align: middle;
	}

}