@charset "utf-8";

/* -----------------------------------------------------------------
Title: reset.css
Created: 2011-07-07
Last Modified: 2011-07-07
------------------------------------------------------------------ */

/*　目次 
-----------------------------------------------------------------

#01-リセット
#02-基本タグの定義
#03-CSSハック

------------------------------------------------------------------ */

/* -----------------------------------------------------------------

#01　リセット

------------------------------------------------------------------ */
* {
	font-style: normal;
	margin: 0px;
	padding: 0px;
	text-decoration: none;
}

html {
	font-size: 62.5%;
	line-height: 1.4;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption,th {
	text-align:left;
}

ol,ul {
	list-style:none;
}

fieldset {
	border: 0;
}

img {
	border: 0;
	vertical-align: bottom;
}


/* -----------------------------------------------------------------

#02　基本タグの定義

------------------------------------------------------------------ */
body {
	background-color: #FFFFFF;
	text-align:center;
}

body div{
	text-align:left;
}
	

h1,h2,h3,h4,h5,h6 {
	font-size: 1em;
	font-weight: normal;
}


address,caption,cite,code,dfn,em,strong,th,var {
	font-style: normal;
	font-weight: normal;
}

a img {
	border-style: none;
}

a:link {
	color: #36C;
}

a:visited {
	color: #36C;
}

a:hover {
	color: #47459A;
	text-decoration:underline;
}


/* -----------------------------------------------------------------

#03　CSSハック

------------------------------------------------------------------ */

/* Internet Explore用 */

div {
	zoom: 100%;  
} 

/* Internet Explore6.0 用 */
/*ヘッダ部分*/
* html #contents {
	margin-top:-2px;
	text-align: center;
}

/* clearfix */
.clearfix:after {
	content: ".";
	display:block;
	height:0;
	clear:both;
	visibility:hidden;
	overflow:hidden;
}
.clearfix {display:inline-block;}

/*hides form IE-mac ¥*/
* html .clearfix {height: 1%;}
.clearfix {display:block;}
/* End hide form IE-mac */
*:first-child+html #header #headerR #fontsize ul {
	margin-top: -3px !important;
}
