
/* ========================================================

　■市川三郷CSS 緑枠デザイン

　2010/01/27 wed--- 
　コメントアウト部のborder/background-colorを有効にすると
　コンテンツの枠(大きさを明示的に)表示します。　
　[補足]：デザインは基本的にImage不使用なので、色の変更で
　緑、青、赤〜など変更可能
　
　2010/02/02 tue---
　FireFoxハック作成
　FireFox/IE7で動作確認済み
　
=========================================================== */


/* ******************************************************** */
/* 															*/
/*　基本構成:骨組となるDIV要素用							*/
/*															*/
/* ******************************************************** */

body{
	font-size: 13px; 
}

/* --------------------------------------------------------
　●ライブカメラ 説明文
----------------------------------------------------------- */
#LiveCameraMessage{
	/* サイズ */
	width: auto;
	height: 20px;
}

/* --------------------------------------------------------
　●カメラ用wrapper
----------------------------------------------------------- */
#CameraBox{
	/* 配置 */
	margin: 0px;
	padding: 0px;
	
	/* サイズ */
	height: 440px;
	width: 650px;
	
	/* 枠 */
	border : #649100 solid 4px;	
	border-left-color: #3C7300; 
	border-right-color: #4B8200; 
	border-bottom-color: #82AF00; 
	
}


/* --------------------------------------------------------
　●左側メニュー部
----------------------------------------------------------- */
#CameraMenu{
	/* 配置 */
	float: left;
	
	margin: 0px;

	padding: 0px;
	/* padding-top: 10px; */
	padding-bottom: 10px;
	padding-left: 15px;

	/* サイズ */
	width: 180px;
	height: 440px;
	
	background-color : #4B8200;/*#88cc00;*/

	/* border-right: 2px solid #ffffcc; */

	/* background-color: green; */ /* デバッグ用 */
	/* border: 1px red dotted; */ /* デバッグ用 */
}
/* --------------------------------------------------------
　●右側コンテンツ
----------------------------------------------------------- */
#CameraImageBox{
	/* 配置 */
	float: left;
	margin: 0px;
	padding: 0px;

	/* サイズ */
	width: 450px;
	height: 440px;;
	
	/* ブロック要素 */
	dysplay: block;
	
	/* テキスト体裁 */	
	text-indent: 0px;
	text-align: center;

	/* background-color: #ffffee; */
	/* border: 1px dotted green; */ /* デバッグ用 */
}
/* --------------------------------------------------------
　●右側コンテンツ：再包括
----------------------------------------------------------- */
#CameraImageBox #BlackBG{
	/* 配置 */
	margin: auto;
	padding: auto;
	padding-top: 65px;
	
	/* サイズ */
	width: auto;
	height: auto;

	/* テキスト体裁 */
	text-align: center;
	color: #333333; /* white */;	
	
	/* 背景 */
	background-color: white; /* #222222; */
	
 	/* border: 1px red solid; */
}

/* ******************************************************** */
/* 															*/
/*　左側コンテンツ											*/
/*															*/
/* ******************************************************** */

/* --------------------------------------------------------
　○メニュー部リスト
----------------------------------------------------------- */
#CameraMenu ul{
	/* 配置 */
	padding: 0px;
	margin: 0px;
	
	/* ブロック要素へ */
	display: block;	

	/* テキスト体裁 */
	text-indent: 0px;
}
/* --------------------------------------------------------
　○メニュー部リスト
----------------------------------------------------------- */
#CameraMenu ul li{	
	/* 配置 */
	margin: 0px;
	padding: 0px;
	
	/* サイズ */
	width: 100%;
	height: 24px;

	/* ブロック要素へ */
	display: block;	

	/* テキスト体裁 */
	text-indent: 0px;
	
	/* リストスタイル */
	list-style-type: none;
	list-style-image: none; 
	background-image: none; /* はずすと既存CSSの設定でカーソル表示 */
	
	/* 枠 */
	border: 1px none white;
	
	/* background-color: blue; */ /* デバッグ用 */
	/* border: 1px solid red;  */ /* デバッグ用 */
}	
/* --------------------------------------------------------
　○メニュー部：非リンカ部
----------------------------------------------------------- */
#CameraMenu .menuTop{
	/*text-indent: -9999px; */
	
	/* 配置 */
	padding: 0px;
	margin: 0px;
	margin-bottom:2px;
	margin-top:10px;
	
	position: relative;
	left: -5px;
	
	/* サイズ */
	height: 10px;
	
	/* テキスト体裁 */
	color: yellow;
	line-height: 10px;
	font-size: 10px;
}
/* --------------------------------------------------------
　○メニュー部 リンク
----------------------------------------------------------- */
#CameraMenu a{
	/* 配置 */
	padding: 0px;

	/* サイズ */
	width: 100%;
	height: 24px;

	/* ブロック要素へ */
	display: block;

	/* テキスト体裁 */
	color: white;
	line-height: 24px;
	text-decoration: none;

	/* 枠 */
	border: 1px none white;
	border-bottom-style: solid;
	

	/* border: 1px dotted red; */ /* デバッグ用 */
	/* background-image: "url(images/cursor.gif)"; */ /* デバッグ用 */
}
/* --------------------------------------------------------
　○メニュー部 リンク
----------------------------------------------------------- */
#CameraMenu a:hover{
	/* テキスト体裁など */
	color: red;	
	background-color: white;
	display: block;
	
	/* 型崩れ処理 */ 
	height: 22px;  
	line-height: 22px;
	 
	/* 下記再定義します(ハック) */
	width: 153px; 
	/* //ここまで */
	
	/* 右へ移動 */
	padding-left: 25px;
	
	/* 矢印背景 */
	background-image: url(images/cursor.bmp);
	background-repeat: no-repeat;
	background-position: 10px -5px;
	
	/* 選択枠 */
	border: #3C7300 solid 2px;
	border-right: white none 0px;
	border-top: #3C7300 solid 1px; /* #66cc00 */
	
	/* 白線消去のため-2移動 */
	position: relative;
	top: -2px;
	
}
/*	FireFoxハック */
#CameraMenu a:hover					 {  width: 100%;  }
html>/**/body #CameraMenu a:hover	 {	width: 153px; }
html:first-child #CameraMenu a:hover {	width: 100%;  }


/* --------------------------------------------------------
　○メニュー部 現在アクティブメニュ(フォント色のみ違います)
----------------------------------------------------------- */
#CameraMenu .ActMenu{
	color: green;
	background-color: white;
	display: block;

	/* 型崩れ処理 */ 
	height: 22px;  
	line-height: 22px;
	 
	/* 下記再定義します(ハック) */
	width: 153px; 
	/* //ここまで */

	/* 右へ移動 */
	padding-left: 25px;
	
	/* 矢印背景 */
	background-image: url(images/cursor.bmp);
	background-repeat: no-repeat;
	background-position: 10px -5px;
	
	/* 選択枠 */
	border: #3C7300 solid 2px;
	border-right: white none 3px;
	border-top: #3C7300 solid 1px; /* #66cc00 */
	
	/* 白線消去のため-2移動 */
	position: relative;
	top: -2px;
	
	font-weight: bold;
}
/*	FireFoxハック */
#CameraMenu .ActMenu				 {  width: 100%;  }
html>/**/body #CameraMenu .ActMenu	 {	width: 153px; }
html:first-child #CameraMenu .ActMenu{	width: 100%;  }

/* ******************************************************** */
/* 															*/
/*　右側コンテンツ											*/
/*															*/
/* ******************************************************** */

/* --------------------------------------------------------
　○イメージ部
----------------------------------------------------------- */
#CameraImageBox #CameraImage{
	/* 配置関連 */
	float: none;
	margin: auto;
	padding: 0px;
	padding-top: 0px;
	
	/* サイズ */
	width: 320px;
	height: 240px;
	
	/* 背景 */
	background-repeat: no-repeat;
	
	/* background-color: black; */	
	/* border: 1px dotted red; */ /* デバッグ用 */
	
	/* 枠 */
	border: none 1px #333333; 
	border-bottom: solid 1px #333333;
	border-top: solid 1px #666666;
}



/* --------------------------------------------------------
　○イメージ
----------------------------------------------------------- */
#CameraImageBox #CameraImage img{
	/* filter: glow(color=gray); */		
	/* filter: shadow(color=gray, direction=135); */
}


/* --------------------------------------------------------
　○メッセージ部
----------------------------------------------------------- */
#CameraImageBox .CameraMessage{
	/* 配置：中央ぞろえ */
	margin: auto;
	padding: auto;

	/* サイズ */
	width: 320px;
	height: auto;

	/* ブロック要素へ */
	display: block;

	/* 背景 */
	background-color: #ffffee;

	/* テキスト体裁 */
	text-align: center;
	text-indent: 0px;
	font-weight: bold;
	font-size: 23px;
	color: green;
	
	/* border: blue 1px dotted; */ /* デバッグ用 */
}
#CameraImageBox #CameraName{
	/* ブロック要素へ */
	display: block;

	/* テキスト体裁 */
	text-align: left;
	text-indent: 10px;
	
	/* 枠 */
	border: 4px none gray;
	border-left: solid;
	
}
#CameraImageBox #MessageBottom{
	/* 更新画像背景 */
	/* background-image: url(images/up2.gif); 
	background-repeat: no-repeat;
	background-position: 299px 2px; */

	/* テキスト体裁 */
	line-height: 24px;
	font-weight: normal;
	font-size: 13px;
	color: #222222;	
}
/* --------------------------------------------------------
　○メッセージ
----------------------------------------------------------- */
#CameraImageBox p{
	/* 配置 */
	margin: 0px;
	padding: 5px;
	float: left;

	/* サイズ */
	height: auto;
	width: auto;

	/* テキスト体裁 */
	text-align: right;
	/* border: red 1px dotted; */ /* デバッグ用 */
}


/* memo---------------------------------------------------- */
/* ハック */
/* * html div { } */ /* IE6のみ */
/* *+html div { } */ /* IE7のみ */
/*  */

