@charset "utf-8";

/*
	Site Name: 国立西洋美術館 The National Museum of Western Art
	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;
}

/*
===== 2: body and base setting ===========================
*/

body {
	text-align:center;/* box centering */
	margin: 0px;
	padding: 0px;
	background: url(../images/bg_body.gif);
	color: #414141;
	font-size: 62.5%;/*1em=10px*/
}

.japanese {
	font-family: "ＭＳ Ｐ明朝", 'Century', "ヒラギノ明朝 Pro W3", serif;
}

.english {
	font-family: 'Century', "ＭＳ Ｐ明朝", "ヒラギノ明朝 Pro W3", serif;
}

/* 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.4;/* base line height */
	text-align: left;
	display: block;
	margin: 0px;
}

table {margin : 0;empty-cells: show;}

img {
	border: none;/* img do not want a border */
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}

li {
	list-style: none;/* link do not want a dot */
	margin: 0;
	padding: 0;
}

/*
===== 3: form setting ===========================
*/
option{ padding-right:10px; }
*+html option{padding-right:0;}/* for IE7&Opera */
* html option{padding-right:0;}/* for IE6 */

/*
===== 4: link setting ===========================
*/
a:link{
	color: #414141;
	text-decoration: none;
}

a:visited{
	color: #414141;
	text-decoration: none;
}

a:hover{
	color: #414141;
	text-decoration: underline;
}

a:active{
	color: #414141;
	text-decoration: none;
}