@charset "utf-8";

/*---------------------------------------------------------------------
	Default Reset & Base Style Sheet
	Last Update 2008-2-22
	
	Site URL	http://www.sirone.net/
	File name	base.css(http://www.sirone.net/css/base.css)
	
	1-1 Yahoo UI Library Fonts CSS
	1-2 Universal selector
	1-3 Structure Module
	1-4 Text Module
	1-5 Hypertext Module
	1-6 List Module
	1-7 Edit Module
	1-8 Forms Module
	1-9 Tables module
	1-10 Image Module
	1-11 Object Module
-----------------------------------------------------------------------*/

/*---------------------------------------------------------------------
	1-1	Yahoo Library Fonts	CSS
-----------------------------------------------------------------------*/

/*---------------------------------------------------------------------
	1-2	Universal selector
-----------------------------------------------------------------------*/

/* 各ブラウザのタグ認識を解除 */
* {
	margin: 0;
	padding: 0;
}

/*---------------------------------------------------------------------
	1-3 Structure Module
-----------------------------------------------------------------------*/

html {
	overflow-y: scroll;/* firefoxの縦スクロールバーを常に表示 */
}

body {
	background: #FFF;
}

/*---------------------------------------------------------------------
	1-4 Text Module
-----------------------------------------------------------------------*/

h1{
	font-size: 2em;
	line-height: 1.2;
}

h2 {
	font-size: 1.5em;
	line-height: 1.2;
}

h3 {
	font-size: 1em;
	line-height: 1.2;
}

h4{
	font-size: 1em;
	line-height: 1.2;
}

h5 {
	font-size: 1em;
	line-height: 1.2;
}

p {
	font-size: 1em;
	line-height: 1.6;
}

p.caption {
	font-size: 0.75em;
	line-height: 1.6;
}

p.catchcopy {
	font-size: 2em;
	line-height: 1.2;
}

.clear {
	clear: both;
}

hr {
	display: none;
}

/*---------------------------------------------------------------------
	1-5 HiperText Module
-----------------------------------------------------------------------*/

a {
	text-decoration: none;
}

a:link {
	color: #999; 
}

a:visited {
	color: #999; 
}

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

a:active {
	color: #999; 
}

/*---------------------------------------------------------------------
	1-6 List Module
-----------------------------------------------------------------------*/

ol,ul {
	list-style: none;
}

/*---------------------------------------------------------------------
	1-7 Edit Module
-----------------------------------------------------------------------*/

/*---------------------------------------------------------------------
	1-8 Forms Module
-----------------------------------------------------------------------*/

fieldset {
	border: 0;
}

input {
	padding: 0;
	border: 0;
	background: #FFF;
}


/*---------------------------------------------------------------------
	1-9 Table Module
-----------------------------------------------------------------------*/

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption,th {
	text-align: left;
}

/*---------------------------------------------------------------------
	1-10 Image Module
-----------------------------------------------------------------------*/

img {
	border: 0;
	vertical-align: bottom;
}



