@charset "Shift-JIS";
/*  */
/* 
------------------------------------------------------------
common style
file name: common.css
Author: author name
create: 2007.00.00

======================= contents ===========================

   1: Browser-style reset
   2: for non-CSS
   3: clearfix
   4: fontfix
   5: column setting (layout only)
     : common
     : main 2-colimn
     : main 3-colimn
;
============================================================
*/
/* Browser-style reset
------------------------------------------------------------ */
html{
	margin: 0;
	padding: 0;
	/* No More IE6 Background Flicker */
	filter: expression(document.execCommand("BackgroundImageCache", false, true));
	}
body,th,td {
	font-family: "lr oSVbN","Arial","Osaka";
	font-size: 12px;
	margin: 0;
	padding: 0;
	color: #333;
	line-height: 1.3em;
	}
body {
	text-align: center;/* for ie6 bug */
	background: #cee7eb url(http://image.mgame.jp/portal/new/main/bg_body.gif) ;
	background-repeat:repeat-x;
	}
table {
	/*border-collapse: collapse;*/
	}
form {
	margin: 0;
	padding: 0;
	}
a,label{
	cursor: pointer;
	}
img {
	border:none;
	}
a:link {
	color: #06f;
	text-decoration: none;
	}
a:visited {
	color: #606;
	text-decoration: none;
	}
a:hover {
	color: #06f;
	text-decoration: underline;
	}
a:active {
	color: #f00;
	text-decoration: underline;
	}

/* for non-CSS
------------------------------------------------------------ */
.aid {
	position: absolute;
	left: -9999px;
	width: 0px;
	height: 0px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	}
.aid_text {
	text-indent: -9999px;
	overflow: hidden;
	}
/* clearfix
(.clearfix class wraps enclosing block element around inner floated elements)
------------------------------------------------------------ */
html {
	height: 100%;
	}
body {
	height: 100%;
	}
#all{
	min-height: 100%;
	}
* html #all {
	height: 100%;
	}
.clearfix:after {
    content: " ";
    display: block;
    visibility: hidden;
    clear: both;
    height: 0.1px;
    font-size: 0.1em;
    line-height: 0;
	}
.clearfix {
	min-height: 1px;
	display: inline-block;
	}
/* exlude MacIE5 \*/
* html .clearfix { 
	height: 1%;
	}
.clearfix {
	display:block;
	}
/* end MacIE5 */

/* fontfix
(FF & IE7 font fix. "~" and more...)
------------------------------------------------------------ */
.fontfix {
	font-family: "lr oSVbN";
	}

/* column setting (layout only)
------------------------------------------------------------ */
/* common */
div#all{
	text-align: left;
	width:900px;
	margin: 0 auto 0 auto;
	}
div#all div#header {
	width: 900px;
	}
div#all div#main {
	width: 900px;
	}
div#all div#footer {
	clear: both;
	width: 900px;
	height: 100px;
	}

/* main 2-colimn */
div#all div#main div#left_column {
	width: 210px;
	float: left;
	}
div#all div#main div#right_column {
	float: right;
	width: 680px;
	}
div#all div#main div#sub_left_column {
	float: left;
	width: 460px;
	}
div#all div#main div#sub_right_column {
	float: right;
	width: 210px;
	}
