

/* default ------------------------------------ */

html {
  text-align: center;
  background-color: #eeeeee;
	padding:0px;
	height: 100%;
}

body{
  background-color: #ffffff;
	padding:0px;
	margin:0 auto;
	width: 1000px;
	height: 100%;
	min-height: 100%;
}
 
div.background {
  min-height: 100%; /* 最小の高さ */
  width: 300px;
  background: #EFEFEF;
}
 
body > div.background {
  height: auto; /* 要素を超えた分の背景が伸びないブラウザ用 */
}


pre{
white-space: pre; /* CSS2 */
white-space: -moz-pre-wrap; /* Mozilla */
white-space: -hp-pre-wrap; /* HP printers */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: pre-wrap; /* CSS 2.1 */
white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
word-wrap: break-word; /* IE */
}

/* form imd-mode -------------------------------- */
input.character{
  ime-mode : disabled;
}
input.number{
  ime-mode : disabled;
}
input.date{
  ime-mode : disabled;
}
input.full_character{
  ime-mode : active;
}
textarea.character{
  ime-mode : disabled;
}
textarea.number{
  ime-mode : disabled;
}
textarea.date{
  ime-mode : disabled;
}
textarea.full_character{
  ime-mode : active;
}


/* menu --------------------------------------- */
.menubar {
/*  background: url(common/bg_imge.jpg); */
 
  height: 30px;
  width: 100%;
	display: table;

  color: #ffffff;
	font-weight: bolder;

	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,2989d8+3,0075d6+51,207cca+98,7db9e8+100 */
	background: rgb(30,87,153); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(30,87,153,1) 0%, rgba(41,137,216,1) 3%, rgba(0,117,214,1) 51%, rgba(32,124,202,1) 98%, rgba(125,185,232,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(3%,rgba(41,137,216,1)), color-stop(51%,rgba(0,117,214,1)), color-stop(98%,rgba(32,124,202,1)), color-stop(100%,rgba(125,185,232,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(30,87,153,1) 0%,rgba(41,137,216,1) 3%,rgba(0,117,214,1) 51%,rgba(32,124,202,1) 98%,rgba(125,185,232,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(30,87,153,1) 0%,rgba(41,137,216,1) 3%,rgba(0,117,214,1) 51%,rgba(32,124,202,1) 98%,rgba(125,185,232,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(30,87,153,1) 0%,rgba(41,137,216,1) 3%,rgba(0,117,214,1) 51%,rgba(32,124,202,1) 98%,rgba(125,185,232,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(30,87,153,1) 0%,rgba(41,137,216,1) 3%,rgba(0,117,214,1) 51%,rgba(32,124,202,1) 98%,rgba(125,185,232,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */

}

.menubar a:link, .menubar a:visited, .menubar a:active {
  text-decoration: none;
  color: #ffffff;
}
.menubar a:hover{
	color: #6F6;	
}

.menubar_user{
	display:table-cell;
	vertical-align:middle;
	text-align:left;
	padding: 0px 5px;
}

.menubar_item {
	display:table-cell;
	vertical-align:middle;
	text-align:center;

	border-left: solid 1px;
	padding: 0px 5px;
}


.menubar_logout{
	display:table-cell;
	vertical-align:middle;
	text-align:right;

	border-left: solid 1px;
	padding: 0px 5px;
}


/* color --------------------------------------- */
.white {
	  color: #ffffff;
}
