@charset "utf-8";

/* =======================================

	Structure CSS

========================================== */

html, body {
	background: #F5F3EB;
	color: #333;
	zoom: 1;
}

body {
	min-width: 990px;
}

#document {
}

#header {
	padding: 0 20px;
	min-height: 108px;
	background: #FFF url(../../images/base/header_bg_01.png) repeat-x;
}
/* IE6 Only */
* html #header {
	height: 108px;
}

#header #headerInner {
	margin: 0 auto;
	width: 950px;
}

#main {
	background: #FFF;
}

#mainContents {
	margin: 0 auto;
	padding: 0 20px;
	width: 950px;
}
#mainContents:after { /* for Modern Browser */
	content: "."; display: block; clear: both; height: 0; visibility: hidden; font-size: 0;
}

#contents {
	padding: 0 0 17px;
	float: left;
	display: inline;
	width: 741px;
}

#sideArea {
	float: right;
	display: inline;
	width: 191px;
}

#footer {
	background: #F5F3EB;
}

ul#globalnavi {
}

/*イメージ要素の半透明処理
----------------------------------*/

a img.alpha {
  filter  : alpha(opacity=100);
  -moz-opacity  : 1;
  opacity  : 1;
}
a:hover img.alpha {
  filter  : alpha(opacity=70);
  -moz-opacity  : 0.7;
  opacity  : 0.7;
}


/********************************************************
    clear
********************************************************/

.clearFix:after {
	content: "";
	display: block;
	visibility: hidden;
	height: 0;
	font-size: 0;
	line-height: 0;
	clear: both;
}

.clearFix { zoom: 1; }

* html .clearFix { height: 1%; }

.br_clear { clear: both; }
