@charset "utf-8";

/*==============================================================================
  タイトル: ナビゲーションスタイル
  著者    : Fumito Arakawa as Phize (http://phize.net/)
  説明    : ナビゲーションのスタイルです。
  適用先  : navbar/breadcrumbs.thtml, navbar/breadcrumb_link.thtml,
            navbar/menuitem.thtml, navbar/navbar.thtml
==============================================================================*/



/*--------------------------------------
  パンくずリスト
--------------------------------------*/

ul.navbar-breadcrumbs {
  list-style-position: outside;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul.navbar-breadcrumbs li {
  display: inline;
}

ul.navbar-breadcrumbs li a {
  margin: 0 8px;
}



/*--------------------------------------
  ナビゲーション
--------------------------------------*/

#navcontainer {
  overflow: hidden;  /* 浮動要素の調整用 */
  margin-bottom: 1em;
  padding-top: 16px;
  padding-left: 8px;
  background-color: #F4F4F4;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #24618E;
}

/* 内容生成によってfloatを解除 */
#navcontainer:after {
  content: "";
  display: block;
  clear: both;
  height: 1px;
  overflow: hidden;
}

/* Win IE 6以下用(浮動要素の調整) { \*/
* html #navcontainer {
  height: 1%;
  overflow: visible;
}
/* } Win IE 6以下用(浮動要素の調整) */

#navcontainer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: transparent !important;
}

#navcontainer li {
  float: left;
  margin: 0;
  padding: 0;
}

#navcontainer a {
  display: block;
  margin: 0;
  padding: 0 0 0 5px;
  background-image: url(../../navbar/images/tableftJ.gif);
  background-repeat: no-repeat;
  background-position: left top;
  text-decoration: none;
}

#navcontainer a span {
  display: block;
  padding: 4px 8px 4px 3px;
  color: #24618E;
  background-image: url(../../navbar/images/tabrightJ.gif);
  background-repeat: no-repeat;
  background-position: right top;
}

/* Mac IE以外用 { \*/
#navcontainer a span {
  float: none;
}
/* } Mac IE以外用 */

#navcontainer a:hover span {
  color: #FFFFFF;
}

#navcontainer a:hover {
  background-position: 0% -42px;
}

#navcontainer a:hover span {
  background-position: 100% -42px;
}

#navcontainer a#current span {
  color: #FFFFFF;
  background-image: url(../../navbar/images/tabrightI.gif);
  background-repeat: no-repeat;
  background-position: 100% -42px;
}

#navcontainer a:link#current,
#navcontainer a:visited#current,
#navcontainer a:hover#current {
  background-image: url(../../navbar/images/tableftI.gif);
  background-repeat: no-repeat;
  background-position: 0% -42px;
}

/* Common CSS for on-hover tooltip feature */
a.tooltip {
  position: relative; /*this is the key*/
  z-index: 10;
  color: #000;
  text-decoration: none;
}

a.tooltip:hover  {
  z-index: 100;
  text-decoration: none
}

a.tooltip span {
  display: none
}

a.tooltip:hover span {
  /*the span will display just on :hover state*/
  z-index: 100;
  color: #033666;
  font-style: normal;
  font-size: 0.8em;
  line-height: 125%;
  display: block;
  position: absolute;
  border: 1px solid #C8DAF7;
  background-color: #E5EFFF;
  padding: 4px;
  text-align: left;
  text-decoration: none;
  left: -20px;
  top: 10px;
  min-width: 150px;
}

/* End of common CSS for on-hover info feature */
