html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
}

body {
  /* background: linear-gradient(to bottom, #001, #FFF) fixed; */
  /*background: linear-gradient(to bottom, #191970, #FFF) fixed; */
  /*background: -webkit-gradient(linear, left top, left bottom, from(#191970), to(#FFF)) fixed;*/
  /*background: linear-gradient(to bottom, #ffd700, #FFF) fixed;*/ 
  /*background: -webkit-gradient(linear, left top, left bottom, from(#ffd700), to(#FFF)) fixed;*/
  /*background: linear-gradient(to bottom, #ea5506, #FFF) fixed;*/ 
  /*background: -webkit-gradient(linear, left top, left bottom, from(#ea5506), to(#FFF)) fixed;*/
  background: linear-gradient(to bottom, #000066, #111111) fixed; 
  background: -webkit-gradient(linear, left top, left bottom, from(#000066), to(#111111)) fixed;
}

#container {
  position: relative;
  width: 960px;
  min-height: 100%;
  margin: auto;
  overflow: hidden;
  background: #f8f8ff;
}

/* contents area; leaving space left for menu */
#content {
  width: 740px;
  float: right;
  margin-right: 10px;
  line-height: 125%;
}

/* global setting begin */

/* font */
.small {
  font-size: small;
}
.red {
  color: #ff0000;
}
.italic {
  font-style: italic;
}


/* link */
a {
  text-decoration: none;
  color: #0000ff;
  background: none;
}
a:hover {
  text-decoration: underline;
}
/* added this to whiten the hyperlink background */
a.hlink {
  color: #0000ff;
  background: none;
}

h2 > a, h3 > a {
  display: block;
}

/* headdings */
h1, h2, h3 {
  clear: both;
  margin-top: 0em;
  margin-bottom: 0.5em;
}

h1 {
	font-size: 120%;
	position: relative;
	padding: .75em 1em .75em 1.5em;
	border: 1px solid #999;
	background: -webkit-linear-gradient(top, #FFF 0%, #fff352 100%);
	background: linear-gradient(to bottom,#FFF 0%, #fff352 100%);
}
h1::after {
	position: absolute;
	top: .5em;
	left: .5em;
	content: '';
	width: 6px;
	height: -webkit-calc(100% - 1em);
	height: calc(100% - 1em);
	/*background-color: #F00; */
	background-color: deepskyblue;
	border-radius: 4px;
}

h2 {
  font-size: 120%;
	border-bottom: solid 1px blue;/*記事タイトル下線の色*/
	border-radius: 4px;
	padding-bottom: 10px;
	padding-top: 10px;
	padding-left: 20px;
	padding-right: 20px;
}

h3 {
  line-height: 1.5em;
  background: #ccccff;
  padding: 0.2em;
  border-left: 10px solid #9999ff;
  text-indent: 10px;
}


/* list */
ul, ol, cl {
  margin: 0.5em;
  margin-bottom: 1em;
  padding-left: 1em;
  line-height: 120%;
}
ul.nohead {
  list-style: none;
  padding-left: 0em;
}
li {
  margin: 0.5em;
}

/* float box */
.float_left {
  float: left;
  margin-right: 5px;
}
.float_right {
  float: right;
  margin-left: 5px;
}
.float_left2 {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
.float_right2 {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
}
.float_clear {
  clear: both;
}
.center {
  clear: both;
  margin: auto;
  text-align: center;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}


/* paragraph */
p {
  margin-top: 1em;
  margin-bottom: 1em;
  line-height: 125%;
}
.indent {
  text-align: justify;
  text-justify: inter-ideograph;
  text-indent: 2em;
}
.space_left {
  margin-left: 24px;
}

/* decoration */
.hidden {
  visibility: hidden;
}
.on_hide {
  display: none;
}
/* global setting end */


/* header menu begin */
#banner {
  width: 960px;
  margin: 0;
  padding: 0;
  font-size: 0;
}

#header {
  display: table;
  margin: 0;
  padding: 0;
}

#header ul {
  list-style: none;
  margin: 0;
  padding: 7px 5px;
  overflow: hidden;
}
#header li {
  display: inline-block;
  margin: 2px;
  overflow: hidden;
}
#header a{
  display: block;
  padding: 0.5em 0.5em;
  background: #333333;
  color: #ffffff;
  text-decoration: none;
}
#header a:hover {
  background: #999999;
}



#fixitem {
  /* position: absolute; */
  /* width: 960px; */
	position: relative;
  background: #000000;
}
#fixitem.fixed {
  position: fixed;
  top: 0;
  z-index: 999;
}
/* header end */


/* sidebar menu; pinkish menu #ffdaff */
#sidebar {
  width: 150px;
  float: left;
  margin-left: 0px;
  padding-left: 0px;
  background-color: #d0daff;
}

#sidebar ul {
  list-style: none;
  margin: 0px 0 0 0;
  padding: 0;
  position: relative;
}
#sidebar li {
  display: block;
  margin: 0;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  padding-left: 0px;
  line-height: 2em;
  vertical-align: middle;
  background-color: #e0daff;
}

.fixedsidebar {
  position: fixed;
  top: 0px;
}

#sidebar ul.child {
  display: none;
  margin: 0;
  padding: 0;
}
#sidebar .child li {
  border: none;
}
#sidebar .child a:before {
  content: "\00BB";
}

.child2 #sidebar li:nth-child(2) ul.child,
.child3 #sidebar li:nth-child(3) ul.child,
.child4 #sidebar li:nth-child(4) ul.child,
.child5 #sidebar li:nth-child(5) ul.child,
.child6 #sidebar li:nth-child(6) ul.child {
  display: block;
}

/* Topics news in round corner box */
div.topics {
  margin: 20px;
  overflow: hidden;
  padding: 5px 15px 5px 15px;
  background: #f8f8ff;
  border: 5px solid #3333ff;
  border-radius: 20px;
  -moz-border-radius: 20px;    /* Firefox */
  -webkit-border-radius: 20px; /* Safari,Chrome */
}*/


/* table */
table {
  clear: both;
  margin: auto;
  margin-bottom: 10px;
	margin-left: 30px;
  border: 1px solid #000000;
  text-align: center;
}
th {
  padding: 0.2em;
  border: 1px solid #000000;
  background: #ccffff;
}
td {
  padding: 0.2em;
  border: 1px solid #000000;
}

table.noborder {
  border: none;
  text-align: left;
  margin-left: 20px;
}
.noborder th,
.noborder td {
  border: none;
  background: none;
}
.liteborder th,
.liteborder td {
  border: 1px solid #bbbbbb;
  padding: 0.2em;
  text-align: left;
}
table.date th {
  width: 12ch;
  text-align: right;
}

/* footer begin */
#footer {
  font-size: 80%;
  width: 100%;
  height: 3em;
  padding-top: 1em;
  padding-bottom: 1em;
	position: absolute;
  bottom: 0;
  background: #333333;
  color: #ffffff;
  text-align: center;
}
#footer::after {
  clear: both;
}
/* footer end */


/* main contents begin */
#main {
  position: relative;
  width: 920px; /* 920 + 20 + 20 = 960 */
  padding-bottom: 4em;
	padding-top: 30px;
  margin: auto;
  display: table;
  overflow: auto;
}

p.title {
  font-size: 200%;
  text-align: center;
}
p.newsitem {
  font-size: 133%;
  text-align: center;
}

.news {
  padding-top:-20px;
  /*height:370px; */
  /*height:250px; */
  height:195px; 
  zoom: 1;
  background: #f8f8fff;
  border: 3px solid #F00;
  margin-bottom:10px;
}


.article {
	background-color: #FFFFFF;
	padding: 5px;
	border: solid 1px #000;
	margin: 0px;
	/*min-height: 150px;*/
	min-height: 90px;
	zoom: 1;
	margin-bottom:10px;
}

.article p {
	padding-left: 20px;
}

#sidebar li a{
  color: #000;
  display: block;
  padding-left: 6px;
  text-decoration: none;
  background: -webkit-linear-gradient(top, lightcyan 0%, lightcyan100%);/*グラデーション*/
  background: linear-gradient(to bottom, lightcyan 0%, lightcyan 100%);/*グラデーション*/
  border: 1px solid #000;
}


#sidebar li a:hover {/*when a pointer is on the link*/
  background: -webkit-linear-gradient(top, lightblue 0%, lightblue 100%);/*グラデーション*/
  background: linear-gradient(to bottom, lightblue 0%, lightblue 100%);/*グラデーション*/
}
#sidebar img{
	margin-top:5px;
	width:147px;
	border: 1px solid #000;
	background-color:#FFF;
}

li#menu{
  font-weight: bold;
  text-align:center;
  /*background: -webkit-linear-gradient(top, #F36 0%, #F00 100%);/*グラデーション*/
  /*background: linear-gradient(to bottom, #F36 0%, #F00 100%);/*グラデーション*/ 
  background: -webkit-linear-gradient(top, lightblue 0%, lightblue 100%);/*グラデーション*/
  background: linear-gradient(to bottom, lightblue 0%, lightblue 100%);/*グラデーション*/
  border: 1px solid #000;
}

/* highlight current page on menu */
li#now a {
  background:deepskyblue;
}
li#now a:hover {
  background:deepskyblue;
}
/* main contents end */
