/**********************************************************/
/***** Layout *********************************************
 *
 *  container
 *  ├ wrap
 *  │  ├ header
 *  │  └ main /.clearfix
 *  │      ├ menu          // 左
 *  │      ├ contents      // 右上
 *  │      └ result        // 右下
 *  └ footer
 *
 **********************************************************/

/**********************************************************/
/***** Sticky Footer (フッタ固定) *************************/
/***** http://www.cssstickyfooter.com *********************/

html,
body,
#wrap {
	height: 100%;
}

body > #wrap {
	height: auto; 
	min-height: 100%;
}

/***** footer高さ設定 *****/

#main {
	padding-bottom: 40px; /* footer高さと同値          */
}

#footer {
	position: relative; 
	clear: both; 
	height:         40px; /* footerの高さ               */
	margin-top:    -40px; /* footer高さと同じマイナス値 */
}

/***** // footer高さ設定 *****/

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: inline-block;
}
/***** Hides from IE-mac *****/
* html .clearfix {
	height: 1%; 
}

.clearfix {
	display: block; 
}
/***** // Hides from IE-mac *****/

/***** // Sticky Footer (フッタ固定) **********************/
/**********************************************************/



/**********************************************************/
/***** センタリング ***************************************/

body {
	text-align: center; /* IE5センタリング */
}

#container {        /* あとcontainerにwidth必須 */
	margin: 0 auto;   /* センタリング */
	text-align: left; /* IE5センタリング */
	height: 100%;
}

/***** // センタリング ************************************/
/**********************************************************/



/**********************************************************/
#menu {
	float: left;
}

#contents,
#result {
	float: right;
}
/**********************************************************/



/**********************************************************/
/***** サイズ *********************************************/
/***** Layout *****
 *
 *  container
 *  ├ wrap
 *  │  ├ header
 *  │  └ main /.clearfix
 *  │      ├ menu          // 左
 *  │      ├ contents      // 右上
 *  │      └ result        // 右下
 *  └ footer
 *
 *******************/

#container,
#wrap,
#header, 
#footer {
	width: 800px; 
}

#header {
	height: 80px;
}

#menu {
	width: 150px;
	height: 100%
}

#contents,
#result {
	width: 550px;
}

/***** // サイズ ******************************************/
/**********************************************************/



/**********************************************************/
/***** 文字の非表示化 *************************************/
/***** http://css-el.seesaa.net/article/46917326.html *****/

#header .title {
	font-size:1px;
	line-height:1px;
	text-indent:-9999px
}

/***** // 文字の非表示化 **********************************/
/**********************************************************/

