@charset "UTF-8";

/* 目次
---------------------------------------------------------------------------
#1 基本レイアウト
#2 header内のレイアウト
#3 contents内のレイアウト
#4 footer内のレイアウト
---------------------------------------------------------------------------
*/


/* #1 基本レイアウト
===========================================================================

+-------------------------------------+
| #upper                              |
|                                     |
| +---------------------------------+ |
| | #header (.container)            | |
| +---------------------------------+ |
|                                     |
| +---------------------------------+ |
| | #contents (.container/clearfix) | |
| |                                 | |
| | +------------------+ +--------+ | |
| | | #main            | | #sub   | | |
| | +------------------+ +--------+ | |
| +---------------------------------+ |
+-------------------------------------+

+-------------------------------------+
| #lower                              |
| +---------------------------------+ |
| | #footer (.container)            | |
| | +------------------+ +--------+ | |
| | | #copyright       | | #      | | |
| | +------------------+ +--------+ | |
| +---------------------------------+ |
+-------------------------------------+

*/


/* 縦方向：lowerを画面下部に貼り付かせる。
---------------------------------------------------------------------------
*/

html, body, div#upper { height: 100%; }

body > div#upper {
	height: auto;
	min-height: 100%;
}

div#contents {
	padding-bottom: 120px; /* フッターの高さ */
}

div#lower {
	position: relative;
	height: 120px; /* フッターの高さ */
	margin-top: -120px; /* フッターの高さ（-） */
	clear: both;
}


/* 横方向
---------------------------------------------------------------------------
*/

div#upper, div#lower {
	clear: both;
	width: 100%;
	text-align: left;
}

.container {
	clear: both;
	width: 950px; /* レイアウトの横幅 */
	margin: 0em auto;
	text-align: left;
}


/* 背景画像
---------------------------------------------------------------------------
*/

div#upper { background: #e6e6e6 url(/2009/_img/bg.png) repeat-x; }
div#lower { background: #bbbbbb url(/2009/_img/footer/bg.gif) repeat-x; }



/* #2 header内のレイアウト
===========================================================================
*/

div#header {
	position: relative;
	height: 180px; /*ヘッダーの高さ*/
}


/* タイトルロゴ
---------------------------------------------------------------------------
*/

div#header h1 {
	float: left;
	height: 135px;
	margin-top: 25px;
	margin-left: -5px;
}

div#header h1 a { text-decoration: none; }

/* メインメニュー
---------------------------------------------------------------------------
*/

div#header ul.mainMenu {
	list-style-type: none;
	float: right;
	position: relative;
	height: 100px;
	margin: 0px;
	margin-top: 53px;
	padding: 0px;
}

ul#jaMenu {
	width: 495px;
	background: url(/2009/_img/header/menu/bg_ja+.png) no-repeat;
}
ul#enMenu {
	width: 336px;
	background: url(/2009/_img/header/menu/bg_en+.png) no-repeat;
}

div#header ul.mainMenu  li {
	position: absolute;
	height: 11px;
	padding: 0px;
	margin: 0px;
}

div#header ul.mainMenu  li a {
	display: block;
	height: 11px;
	line-height: 11px;
}

li#jaMenuHome { top: 10px; left: 1px; }
li#jaMenuAbout { top: 10px; left: 78px; }
li#jaMenuJury { top: 33px; left: 78px; }
li#jaMenuAccess { top: 56px; left: 78px; }
li#jaMenuEvents { top: 79px; left: 78px; }
li#jaMenuArtists { top: 10px; left: 165px; }
li#jaMenuAward { top: 33px; left: 165px; }
li#jaMenuCatalogue { top: 56px; left: 165px; }
li#jaMenuNews { top: 10px; left: 266px; }
li#jaMenuPress { top: 10px; left: 342px; }
li#jaMenuPast { top: 10px; left: 425px; }

li#enMenuHome { top: 10px; left: 1px; }
li#enMenuAbout { top: 10px; left: 78px; }
li#enMenuJury { top: 33px; left: 78px; }
li#enMenuAccess { top: 56px; left: 78px; }
li#enMenuEvents { top: 79px; left: 78px; }
li#enMenuArtists { top: 10px; left: 165px; }
li#enMenuAward { top: 33px; left: 165px; }
li#enMenuCatalogue { top: 56px; left: 165px; }
li#enMenuPast { top: 10px; left: 266px; }

/* 言語切替部分
---------------------------------------------------------------------------
*/

div#language {
	clear: both;
	float: right;
	height: 20px;
	position: absolute;
	top: 160px; /* #headerの高さ180 - #languageの高さ20 （= bottom: 0px） */
	right: 0px;
}


/* #3 contents内のレイアウト
===========================================================================
*/

/* 各コンテンツごとに個別のCSSにて指定 */


/* #4 footer内のレイアウト
===========================================================================
*/


div#copyright {
	float: left;
	margin-top: 15px;
	margin-left: -5px;
}

ul#footerMenu {
	list-style-type: none;
	float: right;
	position: relative;
	height: 25px;
	margin: 0px;
	margin-top: 15px;
	padding: 0px;
	padding-right: 1px;
	background: url(/2009/_img/footer/menu/separator.gif) no-repeat right 6px;
}

ul#footerMenu li {
	display: block;
	float: left;
	height: 25px;
	margin: 0px;
	padding: 0px;
	padding-left: 11px;
	padding-right: 10px;
	background: url(/2009/_img/footer/menu/separator.gif) no-repeat 0px 6px;
}

