@charset "UTF-8";
/* CSS Document */


div.box {
  overflow: hidden; /* これがポイント */
  position: relative;
/* IE6でエリアを選択できるようにする  */
}
div.left {
  float: left; /* 左に寄せて配置 */
  width: 580px;
}
div.right {
  float: right; /* 右に寄せて配置 */
  width: 200px;
}


/* floatを解除する clearfix */

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

.clearfix {
	display: inline-block;
	position: relative;
}

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

