/* CSS Document */

/*---------------
 CSS Reset
---------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
}
:focus {
	outline: 0;
}

h1,h2{
	font-weight: bold;
	display: inline;
}
ol, ul {
	list-style: none;
}
strong{
	font-weight: bold;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0px;
}
caption, th, td {
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}


/*---------------
 Font Styles
---------------*/
body{ font-family: "ヒラギノ角ゴ Pro W3", Osaka, "ＭＳ Ｐゴシック", sans-serif; }
.xs{ font-size: 0.70em; }
.s{ font-size: 0.75em; }
.m{ font-size: 0.85em; }
.l{ font-size: 0.95em; }
.xl{ font-size: 1.00em; }

/*---------------
 Color tools - (for testing)
---------------*/

.bc1{ background-color: #f00; }
.bc2{ background-color: #0f0; }
.bc3{ background-color: #00f; }

/*---------------
 Float and Float Clearing Fix
---------------*/

.fl{ float: left; }
.fr{ float: right; }

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

.clearfix{
	min-height:1%;/*IE7*/
}

* html .clearfix{
	height:1%;
}
.clearfix{
	display:block;
}

/*---------------
 Hide content only if javascript is used
---------------*/
.js .hide-if-js{ display: none !important; }