@charset "utf-8";

/*===================================================================
Author and Copyright
	Author: STNet (http://www.stnet.co.jp)
	Created: 2009-07-13
	Modified: 2009-08-08
===================================================================*/

/*-------------------------------------------------------------------
Defined
	1. Core Module
		1-1. Universal selector
		1-2. Structure Module
		1-3. Text Module
		1-4. Hypertext Module
		1-5. List Module
		1-6. Forms Module	
	2. Applet Module
	3. Text Extension Modules
	    3-1. Presentation Module
		3-2. Edit Module
		3-3. Bi-directional Text Module
	4. Forms Modules
	5. Table Modules
	6. Image Module
	
-------------------------------------------------------------------*/


/*===========================================
   1-1. Universal selector 
============================================*/

* {
	margin: 0;
	padding: 0;
	line-height: 1.5;
	color: #333333;
	font-size: 103%;
	font-weight: normal;
	font-style: normal;
	}


/*===========================================
   1-2. Structure Module
============================================*/

body {
	color: #333333;
	}


/*===========================================
   1-3. Text Module
============================================*/

p,
address {
	}
	
h1,
h2,
h3 {
	
	}


/*===========================================
   1-4. Hypertext Module
============================================*/

a:link {
	text-decoration: none;
	}
	
a:visited {
	text-decoration: none;
	}
	
a:hover {
	text-decoration: underline;
	}


/*===========================================
   1-5. List Module
============================================*/

ul,
ol,
dl {
	margin: 0;
	padding: 0;
	list-style-type: none;
	}

dt {
	}
	
dd {
	}


/*===========================================
   1-6. Forms Module
============================================*/

form {
	}

fieldset {
	}
	
legend {
	}
	
input {
	}


/*===========================================
   6. Image Module
============================================*/

img {
	border: 0;
	}



