@charset "UTF-8";
/*////////////////////////////////////////////////////////////
Kyokushinkaikan - common.css

Copyright (C) Kyokushinkaikan. All rights reserved.
------------------------------------------------------------
////////////////////////////////////////////////////////////*/

/* ------------------------------------------------------------
    0. Import External CSS
   ------------------------------------------------------------ */
@import "parts/base.css";
/* ingredients: reset, main layout, clearfix, header & footer styles */

@import "parts/module.css";
/* ingredients: module style, common page style(such as 404 page) */

@import "parts/tmp.css";

img.nakanohito {
	width: 1px;
	height:1px;
}


/*/// For Developer /////////////////////////////////////////////

Colors:

#444 [dark gray]
	normal text,
#c33 [red]
	link text(normal,hover,active)
#989898 [light gray]
	link text(visited)
	
--------------------
Font Size:

67% = 8px
75% = 9px
84% = 10px
92% = 11px
100% = 12px
109% = 13px
117% = 14px
125% = 15px
134% = 16px
142% = 17px
150% = 18px
159% = 19px
167% = 20px
175% = 21px
184% = 22px
192% = 23px
200% = 24px
209% = 25px
217% = 26px
225% = 27px
234% = 28px
242% = 29px
250% = 30px
259% = 31px
267% = 32px
275% = 33px
284% = 34px
292% = 35px
300% = 36px
309% = 37px
317% = 38px
325% = 39px
334% = 40px

--------------------
Coding Format:

selector {
	property: value;
}

selector,
selector selector, {
	property: value;
	property: value;
}

--------------------
Order of Property:

    content
    display
    list-style
    position
    float
    clear

    width
    height
    margin
    padding
    border
    background

    color
    font
    line-height
    text-decoration
    text-align
    vertical-align
    white-space

    other text

* properties of margin, padding, border are written in a clockwise direction
  like... xxx-top, xxx-right, xxx-bottom, xxx-left

--------------------
Hack:

1. For Win IE5, 5.5, 6, Mac IE5
   * html element { property: value; }

2. For Win IE7 only
   *:first-child+html element { property: value; }

3. For Safari, Opera
   html:first-child element { property: value; }

4. Clearfix

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix { display: inline-block; }

* html .clearfix { height: 1%; }

.clearfix { display: block; }

////////////////////////////////////////////////////////////*/

