@charset "utf-8";

@import "common.css";

/* //////////////////////////////////////////

  “SANEI” 

 -----------------------------------------
  common.css
 -----------------------------------------
  
  1.Reset

  2.Shared Item

  3.Overall Structure
  
  4.Left
  
  5.Right
  
  6.Main

////////////////////////////////////////// */

/*////IE6用印刷設定////*/
* html body{
	background-image: url(none);
	}

* html #wrapper {
	padding: 0;
	}

* html #header {
	display: none;
	}

* html #menu{
	display: none;
	}

* html #main {
	overflow: visible;
	}

*html .frame_tp {
	display: none;
	}
	
*html .frame_bt {
	display: none;
	}

*html #left_stage{
	padding: 0;
	}
	
*html #footer{
	display: none;
}


/*////FireFox用印刷設定////*/
html>/**/body{
	background-image: url(none);
	}

html>/**/body #wrapper {
	padding: 0;
	}

html>/**/body #header {
	display: none;
	}

html>/**/body #menu{
	display: none;
	}

html>/**/body #main {
	overflow: visible;
	}

html>/**/body .frame_tp {
	display: none;
	}
	
html>/**/body .frame_bt {
	display: none;
	}

html>/**/body #left_stage{
	padding: 0;
	}
	
html>/**/body #footer{
	display: none;
}


/*////Safari3用印刷設定////*/
/*FireFox用の印刷設定が適用されてしまうので、これを上書き*/
body:first-of-type #wrapper {
	padding: 0;
	}

body:first-of-type #header {
	display: block;
	}

body:first-of-type #menu{
	display: block;
	}

body:first-of-type #main {
	overflow: auto;
	}

body:first-of-type .frame_tp {
	display: block;
	}
	
body:first-of-type .frame_bt {
	display: block;
	}

body:first-of-type #left_stage{
	padding: 0;
	}
	
body:first-of-type #footer{
	display: block;
}