@charset "utf-8";
/*
	Site Name: 奈良国立博物館　収蔵品データベース
	Description: initial setting
*/

/*
===== CONTENTS ===========================================

	1: universal reset 
	2: body and base setting
		: general params
		: acronyms and abbreviations styles
	3: link setting

==========================================================
*/


/*
===== 1: universal reset =================================
*/

* {
	margin:0;
	padding:0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
/*
===== 2: body and base setting ===========================
*/
body {
	text-align:center;/* box centering */
	font-family: 'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','Osaka－等幅','ＭＳ Ｐゴシック', "Lucida Grande", "Lucida Sans Unicode", "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
	margin: 0px;
	padding: 0px;
	background: #fff;
	color:#000;
	font-size: 62.5%;
	height: 100%;
	position: relative;
	background: #fff;
}
/* general params
--------------------*/
h1, h2, h3, h4, h5, h6, div, p, pre, ul, ol, dl, dt, dd, address, form, blockquote {
	padding: 0;/* margin&padding reset */
	line-height: 1.6;/* base line height */
	text-align: left;
	display: block;
	margin: 0;
	letter-spacing: 1px;
}
h1, h2, h3, h4, h5, h6, p, pre, li, dt, dd, address, blockquote, th, td, time {
	font-size: 1.3em;
}
input, textarea, select, option {
	font-family: 'メイリオ', 'Meiryo', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'Osaka', 'ＭＳ Ｐゴシック', sans-serif;
}
select, option {
/*-webkit-appearance : none; *//* WebKit で外見をコントロールするため */
/*  -moz-appearance : none; *//* Gecko で外見をコントロールするため */
}
table {
	margin : 0;
	empty-cells: show;
}
img {
	border: none;/* img do not want a border */
	vertical-align: top;
}
li {
	list-style: none;
}/* link do not want a dot */
/*HTML5に対応していないブラウザだとインラインで表示されるので*/
article, header, footer, section, nav, aside, hgroup, figure, article, time {
	display: block;
	margin: 0;
}
/*
===== 3: form setting ===========================
*/
option {
	padding-right:10px;
}
*+html option {
	padding-right:0;
}/* for IE7&Opera */
* html option {
	padding-right:0;
}/* for IE6 */
input[type=text] {
	padding: 3px;
	border: 1px solid #999;
}

/*
===== 4: link setting ===========================
*/
a:link {
	color: #646464;
	text-decoration: none;
}
a:visited {
	color: #646464;
}
a:hover {
	color: #800000;
}
a:active {
	color: #800000;
}
a:hover img {
	filter: alpha(opacity=70);
	-moz-opacity:0.70;
	opacity:0.70;
}