/******************************************************************************
 *	ドキュメント構造定義
 ******************************************************************************/
@media screen and (max-width:400px){
}
@media screen and (min-width:401px) and (max-width: 767px){
}
@media screen and (min-width: 768px){
}

div#PageHeader{
	min-height: 300px;
}

/* サブメニュー */
ul#SubMenu{
	padding:0;
	display: table;
	table-layout: fixed;
	background-color: rgba(255,255,255,0.75);
	margin:0;
	width:100%;
}

ul#SubMenu > li{
	display:table-cell;
	list-style-type: none;
	margin:0;
	padding:2px;
	text-align: center;
	font-family: sans-serif;
}

ul#SubMenu > li:hover{
	color:darkgray;
}

/* コンテンツ領域 */
div#PageContents > div.ContentBlock{
	position:relative;
	background-color:lightgray;
	height:200px;
	margin:0;
}

/******************************************************************************
 *	ヘッディングとコンテンツレベル
 ******************************************************************************/
/*	ヘッディング */
h1 {
	padding: 2px 5px;
	font-family: sans-serif;
	font-weight: normal;
}

h2 {
	padding: 2px 5px;
	font-family: sans-serif;
	font-weight: normal;
}

h3 {
	padding: 2px 5px;
	font-family: sans-serif;
	font-weight: normal;
}

/* パラグラフ */
.cb{
	position: relative;;
	padding: 0 0.5em;
}

.FloatRight{
	float: right;
	margin-left: 1em;
	margin-bottom: 1em;
}

.FloatLeft{
	float: left;
	margin-right: 1em;
	margin-bottom: 1em;
}

.ClearFix:after{
	content:"";
	clear:both;
	display:block;
}

.ShadowedBorder{
	box-shadow: 0px 0px 10px;
	border: solid black 1px;
}

/* テーブル */
table.DefaultTable{
	border-collapse: collapse;
	margin-left: 5px;
}
table.DefaultTable th {
	border: solid black 1px;
	background-color: skyblue;
	padding: 2px 5px;
}
table.DefaultTable td {
	border: solid black 1px;
	padding: 2px 5px;
}
