﻿@charset "UTF-8";

/*
////////////////////////////////////////////////////////////////////
//
// メイン　データ部分
//
////////////////////////////////////////////////////////////////////
*/

div#main {
	position: relative;
	margin-left: 220px; /* 左側のヘッダーナビ部分をあけてる */
	padding: 0 20px 60px 20px;
}

/* 警報レベル表示 レベル上昇時はtdの背景色を点滅 */
table#topAlert {
	width: auto;
	width: 850px;
	margin: 2px 0 15px 0;
	z-index: 3;
	font-size: 14px;
}
table#topAlert th {
	width: 150px;
	font-weight: normal;
	padding: 4px 0;
	background-color: #e6e6e6;
}
table#topAlert td {
	background-color: #ffc0cb;
	text-align: left;
}


/*
///////////////////////////////////////////////////
//  測定値・グラフ表示エリア上部のリンクタブ 
///////////////////////////////////////////////////
*/

div#graphType {
	overflow: hidden;
}

div#graphType a {
	display: block;
	float: left;
	width:91px !important;
	width:103px;
	height:30px !important;
	height: 32px;
	margin: 0px 2px 0px 0px;
	padding: 0 5px;
	line-height: 30px;
	font-size:0.8em;
	text-align: center;
	text-decoration: none;
	border: 1px solid #333;
	color: #333;
	border-bottom: none;
	background: #eee;
}

div#graphType a:hover,
div#graphType a.current {
	background: #fff;
	color: #333;
}

/*
////////////////////////////////////////////////////////////////
//   最新データ・測定値・グラフ表示エリア
//   それぞれにIDをつけているので個別に幅や高さを調整可能
///////////////////////////////////////////////////////////////
*/

div#newdataWrapper,
div#dataWrapper,
div#graphWrapper {
	padding: 40px 20px;
	border: 3px solid #999;
}

/* floatを使っているのでおまじない */
div#graphWrapper {
	overflow: hidden;
}

div#dataWrapper {
	overflow: hidden;
/*
	height: 400px;
*/
	height: auto;
}

/* トップページ */


/* カメラ画像横並び */
div.flexcontainer {
	display: flex;
	flex-wrap: wrap;
	padding: 40px 0;
	border-top: 2px solid #999;
}
div.flexitem {
	width: 350px;
}


div.block {
	padding-top: 40px;
	border-top: 2px solid #999;	/* 地区ごとにくぎってる */
}

table.allData,
table.newData {
	margin-bottom: 40px;
}


/*
////////////////////////////////////////////////////////////////////////////////
//
// グラフの縦軸コントロール部分　グラフの左側
//
///////////////////////////////////////////////////////////////////////////////
*/

div.graphContainer {
	margin-bottom: 30px;
	background: url("../img/graphContainer_bg.png") left top repeat-y;
	overflow: hidden;
}

div.graphVBox {
	position: relative;
	float: left;
	width: 38px;
}

div.graphArea {
	float: left;
}

div.graphVBox input.upArrow,
div.graphVBox input.downArrow,
div.graphVBox input.scaleUp,
div.graphVBox input.scaleDown,
div.graphVBox input.clear {
	width: 30px;
	height: 30px;
	border: none;
	cursor: pointer;
	text-indent: -9999px;
}
div.graphVBox input.scaleUp { position: absolute; top: 35px; left: 4px; background: url(../img/up.png) left center no-repeat;}
div.graphVBox input.scaleDown { position: absolute; top: 65px; left: 4px; background: url(../img/down.png) left center no-repeat;}
div.graphVBox input.upArrow { position: absolute; top: 115px; left: 4px; background: url(../img/u-arrow.png) left center no-repeat;}
div.graphVBox input.downArrow { position: absolute; top: 145px; left: 4px; background: url(../img/d-arrow.png) left center no-repeat;}
div.graphVBox input.clear { position: absolute; top: 220px; left: 4px; background: url(../img/default.png) left center no-repeat;}

div.graphVBox input.upArrow:hover,
div.graphVBox input.downArrow:hover,
div.graphVBox input.scaleUp:hover,
div.graphVBox input.scaleDown:hover,
div.graphVBox input.clear:hover {
	opacity: 0.7;
	/* IE */
	filter: alpha(opacity=70); /* ie lt 8 */
	-ms-filter: "alpha(opacity=70)"; /* ie 8 */
	-moz-opacity: 0.7; /* FF lt 1.5, Netscape */
	-khtml-opacity: 0.7; /* Safari 1.x */
	zoom: 1;
}


/*
/////////////////////////////////////////////////////////////
//
// 測定値タブ用コントロールパネル
// dataCtrlBox
//
////////////////////////////////////////////////////////////
*/

div#dataCtrlBox {
	position: relative;
	float: left;
	margin-left: 20px;
	width: 175px;
	height: 330px;
	background:  url("../img/control175330.png") left center no-repeat;
}

div#dataReload {
	position: absolute;
	top: 24px;
	left: 20px;
}	

/* １日の表示量 */
div#dataLen select.len {
	position: absolute;
	width: 75px;
	top: 75px;
	left: 50px;
}

/* 指定日 カレンダー用 */
input#dataCalender {
	position: absolute;
	width: 130px;
	top: 150px;
	left: 20px;
}

/* 指定日 */
div#dataDateSel input.jump {
	position: absolute;
	width: 130px;
	top: 205px;
	left: 20px;

	display: none;
}

/* ページ移動 */
div#dataPageMoov input.leftArrow,
div#dataPageMoov input.rightArrow {
	width: 25px;
	height: 25px;
	border: none;
	cursor: pointer;
	text-indent: -9999px;
}

div#dataPageMoov input.leftArrow {
	position: absolute;
	top: 202px;
	left: 20px;
	background: url(../img/l-arrow.png) left center no-repeat;
}
div#dataPageMoov input.rightArrow {
	position: absolute;
	top: 202px;
	right: 20px;
	background: url(../img/r-arrow.png) left center no-repeat;
}
div#dataPageMoov input.leftArrow:hover,
div#dataPageMoov input.rightArrow:hover {
	opacity: 0.7;
	/* IE */
	filter: alpha(opacity=70); /* ie lt 8 */
	-ms-filter: "alpha(opacity=70)"; /* ie 8 */
	-moz-opacity: 0.7; /* FF lt 1.5, Netscape */
	-khtml-opacity: 0.7; /* Safari 1.x */
	zoom: 1;
}

/* 最新データ表示 */
div#dataPageMoov input.show {
	position: absolute;
	width: 60px;
	height: 60px;
	border: none;
	cursor: pointer;
	text-indent: -9999px;
	top: 250px;
	left: 57.5px;
	background: url(../img/newdata6060.png) left center no-repeat;
}
div#dataPageMoov input.show:hover {
	opacity: 0.7;
	/* IE */
	filter: alpha(opacity=70); /* ie lt 8 */
	-ms-filter: "alpha(opacity=70)"; /* ie 8 */
	-moz-opacity: 0.7; /* FF lt 1.5, Netscape */
	-khtml-opacity: 0.7; /* Safari 1.x */
	zoom: 1;
}


/*
/////////////////////////////////////////////////////////
//
// グラフタブ用　コントロールパネル 画面に固定
// graphCtrlBox
//
////////////////////////////////////////////////////////
*/

div#graphCtrlBar {
	position: fixed;
	top: 85px;
	right: 40px;
	width: 200px;
	height: 40px;
	background: url(../img/ctrl_top.png) left center no-repeat;
	z-index:2;
}
div#graphCtrlBar .titleBar {
	position: absolute;
	top: 0;
	left: 0;
	width: 200px;
	height: 40px;
	text-indent: -9999px;
	cursor: move;
}
div#graphCtrlBar .minBox img {
	position: absolute;
	top: 12px;
	right: 15px;
	cursor: pointer;
}	

div#graphCtrlBox {
	position: fixed;
	width: 200px;
	height: 405px;
	background: url("../img/control200405.png") left center no-repeat;
	top: 125px;
	right: 40px;
	z-index: 2;
}
/* オートリロード */
div#graphReload {
	position: absolute;
	top: 14px;
	left: 20px;
}
/* グラフサイズ */
div#graphSize select.size {
	position: absolute;
	width: 40px;
	top: 50px;
	left: 100px;
}

/* 時間軸移動 */
div#graphTimeMoov input.leftArrow,
div#graphTimeMoov input.rightArrow {
	width: 25px;
	height: 25px;
	border: none;
	cursor: pointer;
	text-indent: -9999px;
}
div#graphTimeMoov input.leftArrow {
	position: absolute;
	top: 76px;
	left: 40px;
	background: url(../img/l-arrow.png) left center no-repeat;
}
div#graphTimeMoov input.rightArrow {
	position: absolute;
	top: 76px;
	right: 40px;
	background: url(../img/r-arrow.png) left center no-repeat;
}
div#graphTimeMoov input.leftArrow:hover,
div#graphTimeMoov input.rightArrow:hover {
	opacity: 0.7;
	/* IE */
	filter: alpha(opacity=70); /* ie lt 8 */
	-ms-filter: "alpha(opacity=70)"; /* ie 8 */
	-moz-opacity: 0.7; /* FF lt 1.5, Netscape */
	-khtml-opacity: 0.7; /* Safari 1.x */
	zoom: 1;
}

/* 日時指定 カレンダー用 */
input#graphCalender {
	position: absolute;
	width: 160px;
	top: 145px;
	left: 20px;
}

/* 日時指定 */
div#graphDateSel select.hour {
	position: absolute;
	width: 60px;
	top: 170px;
	left: 20px;
}
div#graphDateSel select.minute {
	position: absolute;
	width: 60px;
	top: 170px;
	left: 80px;
}
div#graphDateSel input.jump {
	position: absolute;
	width: 160px;
	top: 195px;
	left: 20px;
	cursor: pointer;
}

/* 時間スケール */
div#graphTimeScale select.unit {
	position: absolute;
	width: 80px;
	top: 260px;
	left: 20px;
}
div#graphTimeScale select.scale {
	position: absolute;
	width: 80px;
	top: 260px;
	left: 100px;
}
div#graphTimeScale input.upDate {
	position: absolute;
	width: 160px;
	top: 285px;
	left: 20px;
	cursor: pointer;
}

/* 最新データ表示 */
div#graphTimeMoov input.show {
	position: absolute;
	width: 60px;
	height: 60px;
	border: none;
	cursor: pointer;
	text-indent: -9999px;
	top: 325px;
	left: 25px;
	background: url(../img/newdata6060.png) left center no-repeat;
}
div#graphTimeMoov input.show:hover {
	opacity: 0.7;
	/* IE */
	filter: alpha(opacity=70); /* ie lt 8 */
	-ms-filter: "alpha(opacity=70)"; /* ie 8 */
	-moz-opacity: 0.7; /* FF lt 1.5, Netscape */
	-khtml-opacity: 0.7; /* Safari 1.x */
	zoom: 1;
}

/* プリントアウト */
div#graphPrint input.print {
	width: 60px;
	height: 60px;
	border: none;
	cursor: pointer;
	text-indent: -9999px;
	position: absolute;
	top: 325px;
	right: 25px;
	background: url(../img/print6060.png) left center no-repeat;
}
div#graphPrint input.print:hover {
	opacity: 0.7;
	/* IE */
	filter: alpha(opacity=70); /* ie lt 8 */
	-ms-filter: "alpha(opacity=70)"; /* ie 8 */
	-moz-opacity: 0.7; /* FF lt 1.5, Netscape */
	-khtml-opacity: 0.7; /* Safari 1.x */
	zoom: 1;
}


/*
///////////////////////////////////////////////////////////////////////////////
//
//  印刷用ページ専用レイアウト　body.print
//
///////////////////////////////////////////////////////////////////////////////
*/

body.print div#wrapper {
	width: auto;
	margin: 0;
	padding: 0;
	background-image: none;
	border: none;
}

body.print div#main {
	position: relative;
	margin: 0;
	padding: 20px;	
}

div#panel {
	margin-bottom: 30px;
	padding: 20px;
	border: 1px solid #666;
}

div#panel h3 {
	padding: 4px 0 4px 32px;
	background: url("../img/print24.png") left center no-repeat;
}

body.print table {
	margin-bottom: 1em;
}
body.print table th {
	background: #66cc99;
}
body.print table td {
	text-align: center;
}


/*
//////////////////////////////////////////////////////////////////////////
//
// ダウンロードページ　body.download
//
//////////////////////////////////////////////////////////////////////////
*/

body.download h4 {
	padding: 2px 0 2px 8px;
	margin-bottom: 20px;
	border-left: 5px solid #66cc99;
}
body.download p {
	margin: 0 0 30px 30px;
}
input.download {
	cursor:pointer;
}

div.sensorTable {
	width: 810px;
}

div.sensorTable tr {
	height: 60px;
}

div.sensorTable td.folder {
	width: 120px;
	text-align: left;
}

div.sensorTable td.sensorname {
	width: 120px;
	text-align: left;
}

div.sensorTable td.sensortype {
	width: 100px;
	text-align: center;
}

div.sensorTable td.datatype {
	width: 360px;
}

div.sensorTable td.download {
	width: 100px;
	height: 50px;
	text-align: center;
}
