﻿@charset: "UTF-8";

/*
*	Title: Original Skin
*	URI: none
*	Last Modified: 2007-06-19
*	Author: S
*
*	Description:
*	デフォルトスタイルのリセットとベーススタイルの定義
*	
*	1-1.Yahoo UI Library Fonts CSS
*	1-2.Settings
*	1-3.Universal selector
*	1-4.Structure Module
*	1-5.Text Module
*	1-6.Hypertext Module
*	1-7.List Module
*	1-8.Edit Module
*	1-9.Forms Module
*	1-10.Tables Module
*	1-11.Image Module
*	1-12.Object Module
*
*/

/*======================================

	1-1.Yahoo UI Library Fonts CSS
	*Copyright (c) 2006, Yahoo! Inc. All rights reserved.
	*http://developer.yahoo.com/yui/license.txt

	Font-size Adjustment

	77% = 10px	|	122% = 16px	|	167% = 22px	
	85% = 11px	|	129% = 17px	|	174% = 23px
	92% = 12px	|	136% = 18px	|	182% = 24px
	100% = 13px	|	144% = 19px	|	189% = 25px
	107% = 14px	|	152% = 20px	|	197% = 26px
	114% = 15px	|	159% = 21px	|

=======================================*/

body {
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	font-size: 12px;/*　基本文字サイズ　*/
	*font-size: 70%;/*　ＩＥ７およびＩＥ６標準準拠モードに適用　*/
	*font: x-small;/*　ＩＥ６互換交互モードに適用　*/
}
html>body {
	font-size: 12px;/*　基本文字サイズ モダンブラウザハック　*/
}
*:first-child+html body{
	font-size: 78%;/*　IE7のみ　*/
}

table,
td,
th{
	font-size: 105%;
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
}

select,
input,
textarea {
	font-size: 99%;
	margin: 0px;
	padding: 0px;
}


/*======================================

	1-2. Font size setting

=======================================*/
h1,h2,h3,h4,h5,
a,
p,
pre,
cite,
blockquote {
	font-size: 100%;
}


li,dt,dd {
	font-size: 125%;
}

/*======================================

	1-3.Universal selector

=======================================*/

* {
	margin: 0;
	padding: 0;
	font-size: 98%;
	line-height: 1.8em;
	font-style normal;
}
html>body * {
	font-size: 100%;
}

/*======================================

	1-4.Structure Module

=======================================*/

body {
	color: #333333; /* 背景色 */
	background: ffffff;
}


/*======================================

	1-5.Text Module

=======================================*/

p,
pre,
address,
cite {

	}

p {
	text-align: left;
	font-size: 1.16em;
}
h1,h2,h3,h4,h5	{
	font-size: 1.16em;
}
address {
	font-style: normal;
	font-weight: normal;
	}

em {
	font-weight: bold;
	font-style: normal;
}

strong {
	font-weight: bold;
}

blockquote {
	border: 3px solid #eee;
	color: #666;
	background-color: #f5f5f5;
}

cite {
	display: block;
	color: #333;
	text-align: right;
}

abbr,
acronym {
	border-bottom: 1px dotted #aaa;
}

/*======================================

	1-6.Hypertext Module

=======================================*/

a:link {
	color: #0C308E;
	text-decoration: none;
}

a:visited{
	color: #0E38A9;
	text-decoration: none;
}

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

a img {
	border: 0;
}

/*======================================

	1-7.List Module

=======================================*/


ul,
dl {
	list-style-type: none;
}

li,
dt,
dd {

}

dt {
	
}

dd {
	
}

li li,
li p,
li pre,
li dt,
li dd,
dd li,
dd p,
dd pre,
dd dt,
dd dd {
	font-size: 100%;
}

li ul,
li ol,
li dl,
li p,
dd ul,
dd ol,
dd dl,
dd p {

}

/*======================================

	1-8.Edit Module

=======================================*/

del {
	color: #ccc;
	text-decoration: line-through;
}

del[datetime]::before {
	content: " ( "attr(datetime)"\00524a\009664) ";
}

ins {
	border-bottom: 1px dotted #ccc;
	text-decoration: none;
}

ins[datetime]::before {
	content: " ( "attr(datetime)"\004fee\006b63) ";
}

/*======================================

	1-9.Forms Module

=======================================*/

form {
	margin: 1em 20px; 
	padding: 1px 0; 
	background-color: #fff;
	background-image: url(images/interface/slash01.png);
}

form dl,
form p {
	margin: 0.5em 20px;
}

fieldset {
	margin: 0;
	padding: 0;
	border: none;
}

legend {
	color: #000;
	background-color: #fff;
	margin: 0 1em;
	padding: 0 10px;
}

input,
textarea {
	padding: 5px;
	border-top: 1px solid #999;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	border-left: 1px solid #999;
}

input:hover,
textarea:hover {
	border: 1px solid #9F2D5E;
}

input:focus,
textarea:focus {
	border: 1px solid #9F2D5E;
}

textarea {

}

input.inputField {

}
input.button{
	width:auto;
	font-weight:bold;
	background:url(../img/bg_stripes-b.gif);
	cursor: pointer;
	border-top: 1px solid #CCC;
	border-right: 1px solid #999;
	border-bottom: 1px solid #666;
	border-left: 1px solid #CCC;
	padding: 1px !important;
	margin-right: 20px;
}
html>body input.button{
	padding: 3px !important;
}

input.submit {
}

input.submit:hover {
}

input.radio {
	background-color: transparent;
	background-image: none;
	border: none;
}

/*======================================

	1-10.Tables Module

=======================================*/

table {
	border-collapse: collapse;
}

th,
td {
	padding: 5px;
}

caption {

}

th {

}

td {

}

/*======================================

	1-11.Image Module

=======================================*/

img {
	font-size: 0; /* 画像だった場合のバグ回避法 */
	line-height: 0; /* 画像だった場合のバグ回避法 */
	vertical-align: bottom; /* 画像だった場合のバグ回避法 */
	margin: 0px;
	padding: 0px;
}

/*======================================

	1-12.Object Module

=======================================*/

object,
embed {

}

