@charset "utf-8";

/* ---------------------------------------------------
   File: base.css
   Version: 1.0.0
   Update: 2013-06-01
   Author: http://flowlab.co.jp

   (c)2007-2015 Flowlab inc. All Rights Reserved.
--------------------------------------------------- */





/* ===================================================
   Base Style
=================================================== */

* {
	margin: 0;
	padding: 0;
}
body {
	font-size: 0.9em;
	background: ;
	line-height: 1.5em;
}



/* ===================================================
   Table
=================================================== */

table {
	border-collapse: collapse;
	border-spacing: 0;
	font: 100%;
}
th, td {
	text-align: left;
}



/* ===================================================
   Image
=================================================== */

img {
	border: none;
}



/* ===================================================
   List
=================================================== */

ul, ol {
	list-style: none;
}



/* ===================================================
   Title
=================================================== */

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



/* ===================================================
   Text
=================================================== */

/* Weight */
.bold	{ font-weight: bold;}

/* Color */
/*.red	{ color: #900;}*/
.red	{ color: #ff0200;}
.blue	{ color: #30F;}

/* Size */
.txt_xs	{ font-size: x-small;}
.txt_s	{ font-size: small;}
.txt_m	{ font-size: 1em;}
.txt_l	{ font-size: large;}



/* ===================================================
   Clear
=================================================== */

.clear {
	clear: both;
}



/* ===================================================
   Link
=================================================== */

a {
	color: ;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
  cursor: pointer;
}
a:hover img {
	opacity: 0.7; /* Safari,Opera */
	-moz-opacity: 0.7; /* Firefox */
	filter: alpha(opacity=70); /* IE6/7 */
	-ms-filter: "alpha(opacity=70)"; /* IE8 */
}



/* ===================================================
   Float
=================================================== */

.float_l	{ float: left;}
.float_r	{ float: right;}



/* ===================================================
   IE PNG
=================================================== */

* html .iepngfix {
	behavior: expression(IEPNGFIX.fix(this));
}



/* ===================================================
   Space
=================================================== */

/* Margin */
.mg10		{ margin: 10px;}
.mg20		{ margin: 20px;}
.mg30		{ margin: 30px;}
.mg40		{ margin: 40px;}
.mg50		{ margin: 50px;}

.mgTop10	{ margin-top: 10px;}
.mgTop20	{ margin-top: 20px;}
.mgTop30	{ margin-top: 30px;}
.mgTop40	{ margin-top: 40px;}
.mgTop50	{ margin-top: 50px;}
.mgTop100	{ margin-top: 100px;}

.mgBtm10	{ margin-bottom: 10px;}
.mgBtm20	{ margin-bottom: 20px;}
.mgBtm30	{ margin-bottom: 30px;}
.mgBtm40	{ margin-bottom: 40px;}
.mgBtm50	{ margin-bottom: 50px;}
.mgBtm100	{ margin-bottom: 100px;}

.mgLft10	{ margin-left: 10px;}
.mgLft20	{ margin-left: 20px;}
.mgLft30	{ margin-left: 30px;}
.mgLft40	{ margin-left: 40px;}
.mgLft50	{ margin-left: 50px;}

.mgRht10	{ margin-right: 10px;}
.mgRht20	{ margin-right: 20px;}
.mgRht30	{ margin-right: 30px;}
.mgRht40	{ margin-right: 40px;}
.mgRht50	{ margin-right: 50px;}

/* Padding */
.pdd10		{ padding: 10px;}
.pdd20		{ padding: 20px;}
.pdd30		{ padding: 30px;}
.pdd40		{ padding: 40px;}
.pdd50		{ padding: 50px;}

.pddTop10	{ padding-top: 10px;}
.pddTop20	{ padding-top: 20px;}
.pddTop30	{ padding-top: 30px;}
.pddTop40	{ padding-top: 40px;}
.pddTop50	{ padding-top: 50px;}
.pddTop100	{ padding-top: 100px;}

.pddBtm10	{ padding-bottom: 10px;}
.pddBtm20	{ padding-bottom: 20px;}
.pddBtm30	{ padding-bottom: 30px;}
.pddBtm40	{ padding-bottom: 40px;}
.pddBtm50	{ padding-bottom: 50px;}
.pddBtm100	{ padding-bottom: 100px;}

.pddLft10	{ padding-left: 10px;}
.pddLft20	{ padding-left: 20px;}
.pddLft30	{ padding-left: 30px;}
.pddLft40	{ padding-left: 40px;}
.pddLft50	{ padding-left: 50px;}

.pddRht10	{ padding-right: 10px;}
.pddRht20	{ padding-right: 20px;}
.pddRht30	{ padding-right: 30px;}
.pddRht40	{ padding-right: 40px;}
.pddRht50	{ padding-right: 50px;}



