@charset "utf-8";
	
/* 
*
*
*	Reset and Base Style Sheet
*	Last Update 2011-07-15
*
*	1-0.YUI Reset
*	1-1.Yahoo UI Library Fonts CSS
*	1-2.Structure Module
*	1-3.Text Module
*	1-4.Hypertext Module
*	1-5.Font-family Module
*	1-6.Clearfix
*
*/

/*======================================

	1-0.YUI Reset

=======================================*/
/*
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.com/yui/license.html
version: 2.9.0
*/
html{color:#000;background:#FFF}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,select,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,button,caption,cite,code,dfn,em,input,optgroup,option,select,strong,textarea,th,var{font:inherit}del,ins{text-decoration:none}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:baseline}sub{vertical-align:baseline}legend{color:#000}

/*======================================

	1-1.Yahoo UI Library Fonts CSS

	Font-size Adjustment
	
	77% = 10px	| 	123.1% = 16px	|	167% = 22px	
	85% = 11px	|	131% = 17px		|	174% = 23px
	93% = 12px	|	138.5% = 18px	|	182% = 24px
	100% = 13px	|	146.5% = 19px	|	189% = 25px
	108% = 14px	|	153.9% = 20px	|	197% = 26px
	116% = 15px	|	161.6% = 21px	|

=======================================*/

/*
Copyright (c) 2011, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.com/yui/license.html
version: 2.9.0
*/
/**
 * YUI Fonts
 * @module fonts
 * @namespace yui-
 * @requires 
 */

/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 */
body {
	font:13px/1.231;
	/* for IE6/7 */ 
	*font-size:small; 
	/* for IE Quirks Mode */
	*font:x-small;
}
/* IE8向け */
html>/**/body {
	font-size: small;
}

/**
 * Nudge down to get to 13px equivalent for these form elements
 */ 
select,
input,
textarea,
button {
	font:99%;
}

/**
 * To help tables remember to inherit
 */
table {
	font-size:inherit;
	font:100%;
}

/**
 * Bump up IE to get to 13px equivalent for these fixed-width elements
 */
pre,
code,
kbd,
samp,
tt {
	font-family:monospace;
	*font-size:108%;
	line-height:100%;
}




/*======================================

	1-3.Structure Module

=======================================*/

body {
	
}



/*======================================

	1-4.Hypertext Module

=======================================*/

a:link {
	outline:none;
	text-decoration: underline;
}

a:visited {
	/*color: #5a00d1;*/
}

a:hover {
	color: #f00;
	text-decoration: none;
}
a {
	outline: none;
}

/*======================================

	1-5.Font-family Module

=======================================*/

* html body {
	font-family: "ＭＳ Ｐゴシック", sans-serif;
} /* for lte ie6 */

*:first-child+html body {
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
} /* for ie7 */

html>/**/body {
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
} /* for ie8 */

html:not(:target) body {
	font-family: Hiragino Kaku Gothic Pro, "ヒラギノ角ゴ Pro W3", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
} /* for modern browser not ie8 */


/*======================================

	1-6.Clearfix

=======================================*/
.clearfix {zoom:1;}
.clearfix:after {
    content: ""; 
    display: block; 
    clear: both;
}
