@charset "utf-8";
/* -----------------------------------------------------------
CSS Information

CSS2.1 のメディアグループがvisualなプロパティを初期値にするCSSです。
セレクタ部分の「selectorsName」を初期値にしたい要素にしたり、
必要なプロパティだけ抜き出したりして使えます。

また、強制的に初期値にしたい場合を考慮して、!important宣言付きも下部に用意しています。

※ colorプロパティは本来UA依存ですが、利便上#000にしています。
※ text-alignプロパティは、directionプロパティの値に依存しますが、利便上leftにしています。
----------------------------------------------------------- */

selectorsName {
	background-attachment: scroll;
	background-color: transparent;
	background-image: none;
	background-position: 0% 0%;
	background-repeat: repeat;
	border-collapse: separate;
	border-spacing: 0;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	bottom: auto;
	caption-side: top;
	clear: none;
	clip: auto;
	color: #000;
	content: normal;
	counter-increment: none;
	counter-reset: none;
	cursor: auto;
	direction: ltr;
	display: inline;
	empty-cells: show;
	float: none;
	font-size: medium;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	height: auto;
	left: auto;
	letter-spacing: normal;
	line-height: normal;
	list-style-image: none;
	list-style-position: outside;
	list-style-type: disc;
	margin: 0;
	max-height: none;
	max-width: none;
	min-height: 0;
	min-width: 0;
	orphans: 2;
	outline-color: invert;
	outline-style: none;
	outline-width: medium;
	overflow: visible;
	padding: 0;
	page-break-after: auto;
	page-break-before: auto;
	page-break-inside: auto;
	position: static;
	right: auto;
	table-layout: auto;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	top: auto;
	unicode-bidi: normal;
	vertical-align: baseline;
	visibility: visible;
	white-space: normal;
	widows: 2;
	width: auto;
	word-spacing: normal;
	z-index: auto;
}


/* ただ!importantを付けてみた感じ */
selectorsName {
	background-attachment: scroll !important;
	background-color: transparent !important;
	background-image: none !important;
	background-position: 0% 0% !important;
	background-repeat: repeat !important;
	border-collapse: separate !important;
	border-spacing: 0 !important;
	border-top-style: none !important;
	border-right-style: none !important;
	border-bottom-style: none !important;
	border-left-style: none !important;
	bottom: auto !important;
	caption-side: top !important;
	clear: none !important;
	clip: auto !important;
	color: #000 !important;
	content: normal !important;
	counter-increment: none !important;
	counter-reset: none !important;
	cursor: auto !important;
	direction: ltr !important;
	display: inline !important;
	empty-cells: show !important;
	float: none !important;
	font-size: medium !important;
	font-style: normal !important;
	font-variant: normal !important;
	font-weight: normal !important;
	height: auto !important;
	left: auto !important;
	letter-spacing: normal !important;
	line-height: normal !important;
	list-style-image: none !important;
	list-style-position: outside !important;
	list-style-type: disc !important;
	margin: 0 !important;
	max-height: none !important;
	max-width: none !important;
	min-height: 0 !important;
	min-width: 0 !important;
	orphans: 2 !important;
	outline-color: invert !important;
	outline-style: none !important;
	outline-width: medium !important;
	overflow: visible !important;
	padding: 0 !important;
	page-break-after: auto !important;
	page-break-before: auto !important;
	page-break-inside: auto !important;
	position: static !important;
	right: auto !important;
	table-layout: auto !important;
	text-align: left !important;
	text-decoration: none !important;
	text-indent: 0 !important;
	text-transform: none !important;
	top: auto !important;
	unicode-bidi: normal !important;
	vertical-align: baseline !important;
	visibility: visible !important;
	white-space: normal !important;
	widows: 2 !important;
	width: auto !important;
	word-spacing: normal !important;
	z-index: auto !important;
}

