@charset "utf-8";

/* ----------------------------------------------

	○○○○ import CSS

---------------------------------------------- */


/*  IMPORT
---------------------------------------------- */
@import url("base.css");
@import url("common.css");

#toppanel {
    top: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    position: absolute;   /*Panel will overlap  content */
    /*position: relative;*/   /*Panel will "push" the content down */
    z-index: 999;
    text-align: center;
}

#panel {
	width: 100%;
	height: 210px;
	overflow: hidden;
	position: relative;
	z-index: 3;
	text-align: left;
}

#panel #panel_base {
	padding: 20px 0 0 30px;
}

#panel dl {
	margin: 10px 0 5px 0;
	width: 500px;
	display: block;
}
#panel dl dt {
	float: left;
	display: inline;
	text-align: left;
	color: blue;
	font-size: 150%;
	font-weight: bold;
}
#panel dl dd {
	padding-bottom: 5px;
	width: 220px;
	float: left;
	display: inline;
}
