@charset "UTF-8";
/* CSS Document */
/* スマホ用のCSSの次にPC用CSSを書いてください */
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-

レイアウト（共通設定）


*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
body {
	background-color: #FFFFFF;
	color: #333333;
	line-height: 1.85;
	font-size: 120%;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
/*----- section-----*/
section.wrap_contents {
	padding: 15px;
	margin-bottom: 100px;
}

@media only screen and (min-device-height: 769px) and (orientation:landscape) {
section.wrap_contents {
	max-width: 1140px;
	padding: 40px 100px 40px 40px;
	margin: 0 auto 150px;
}
}/*@media おわり*/

/*------  スマホ横用 -----*/
@media only screen and (max-device-height: 500px) and (orientation:landscape) {
body {
	font-size: 100%;
}
}/*@media おわり*/

/*----- p-----*/

p {
	margin: 0 0 1.5em;
}
/*----- aタグ-----*/

a {
	color: #0071bc;
	text-decoration: underline;
	transition: all .3s;
}
a:hover,
a:focus{
	background-color: #ffdd88;
	text-decoration: none;
	border-radius: 5px;
	color: #005584;
}

a img{
	filter: brightness(1.0);
	/* イージングをおとなしくかける */
	transition: filter 0.5s;
	
}

a img:hover,
a img:focus{
	/* 明るくする */
	filter: brightness(1.1);
}


/*----- wrap_table-----*/
.wrap_table table {
	border: 1px solid red;
	border-radius: 10px;
	width: 100%;
}
.wrap_table th {
	background: #ccefff;
	border: 1px solid #b7b7b7;
	padding: 0.5em;
	font-weight: normal;
}
.wrap_table td {
	background: #FFFFFF;
	border: 1px solid #b7b7b7;
}
.wrap_table table caption {
	text-align: left;
}
.wrap_table {
	overflow: auto;
	margin-bottom: 1em;
	padding-bottom: 10px;
}

.wrap_table::-webkit-scrollbar {
	height: 5px; /* スクロールバーの高さ */
}
.wrap_table::-webkit-scrollbar-track {
		background: #D2D2D2; /* スクロールバーの背景色 */
}
.wrap_table::-webkit-scrollbar-thumb {
background: #0071bc; /* スクロールバーの色 */
}
.wrap_table td, .wrap_table th {
	white-space: nowrap;
　/* 文字の折返しを禁止 */
}

/*----- ul、olタグ-----*/
ul,ol{
	margin-top: 0;
}

/*------figure-------*/
img{
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	margin-bottom: 0.5em;
}

figure{
	margin: 0 0 2em;
	text-align: center;
}

figure img{

}
@media only screen and (min-device-height: 769px) and (orientation:landscape)  {
/*@media screen and (min-width: 813px) {*/

figure img{
		width: auto;
	}

}/*@media おわり*/

/*----------------------------

見出し装飾

------------------------------*/
/*----- type01-----*/
.h_type01{
	font-size: 150%;
	padding-bottom: 10px;
	border-bottom: 4px dotted #0071bc;
}

.h_type01::first-letter{
	font-size: 200%;
	background: #ffe266;
	padding: 15px 20px;
	border-radius: 100%;
	margin-right: 10px;
}
/*もし最初の行が半角だったらクラスに追加*/
.h_type01_h::first-letter{
	padding: 15px 30px;
}

/*----- type02-----*/
.h_type02{
	font-size: 150%;
	padding-bottom: 10px;
	border-bottom: 4px dotted #ccefff;
}

.h_type02::before{
	content: '';
	display: inline-block;
	background: #ffe266;
	height: 1.5em;
	width: 1.5em;
	border-radius: 50%;
	vertical-align: -0.3em
}

/*----- type03-----*/
.h_type03{
	font-size: 150%;
	padding-bottom: 10px;
}

.h_type03::before{
	display: inline-block;
	content: '';
	border:3px solid #ffe266;
	height: 1em;
	width: 1em;
	border-radius: 50%;
}

/*----- type04-----*/
.h_type04{
	font-size: 150%;
	padding-bottom: 10px;
}



/*----------------------------

横メニュー

------------------------------*/
.menu {
	width: 250px;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9998;
	transform: translate(250px);
	transition: all 0.2s;
}

#menu-bt {
	background:#0071bc url(../img/ico_menu01.svg) no-repeat center 10px/40px;
	width: 60px;
	height: 60px;
	position: absolute;
	left: -60px;
	top: 0;
	border-radius: 10px 0 0 10px;
}

#menu-bt:hover{
	cursor: pointer;
}


.open #menu-bt {
	background:#0071bc url(../img/ico_close01.svg) no-repeat center 10px/40px;
}



.menu_inner {
	width: 250px;
	height: 100%;
	background-color: white;
	border-left: 5px solid #0071bc;
}
.open {
	transform: translate(0) !important;
}
.menu_inner ul {
	padding: 0;
	list-style: none;
	margin: 0;
}
ul.menu_type01 li {
	border-bottom: 1px solid #0071bc;
	margin-bottom: 0;
}

ul.menu_type01 li::after{
	background: none;
}

ul.menu_type01 li a {
	display: block;
	text-decoration: none;
	/*padding: 1em; イベント後に修正*/
	padding: 1em 0.5em 1em 1em;
	border-radius: 0px;
	padding-left: 60px;
	font-size: 80%; /* イベント後に削除 */
}

ul.menu_type01 li.home a {background: url(../img/ico_home01.svg) no-repeat 5px center/45px;}
ul.menu_type01 li.lab a {background: url(../img/ico_flask01.svg) no-repeat 0 center/50px;}
ul.menu_type01 li.reading a {background: url(../img/ico_book01.svg) no-repeat 5px center/45px;}
ul.menu_type01 li.video a {background: url(../img/ico_play01.svg) no-repeat 10px center/35px;}
ul.menu_type01 li.sitemap a {background: url(../img/ico_sitemap01.svg) no-repeat 10px center/35px;}
ul.menu_type01 li.sansouken a {background: url(../img/ico_face01.svg) no-repeat 10px center/35px;}
ul.menu_type01 li.link a {background: url(../img/ico_link01.svg) no-repeat 5px center/45px;}
ul.menu_type01 li.live a {background: url(../img/ico_live.svg) no-repeat 2px center/45px;}
ul.menu_type01 li.newspaper a {background: url(../img/ico_newspaper.svg) no-repeat 2px center/43px;}


ul.menu_type01 li a:hover,
ul.menu_type01 li a:focus{
	background-color: #ffdd88;
}

.menu_bg {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 998;
	background-color: rgba(255, 255, 255, 0.8);
	display: none;
	top: 0;
	left: 0;
}

/*------  PC用 -----*/
@media only screen and (min-device-height: 769px) and (orientation:landscape) {
/*@media screen and (min-width: 813px) {*/
	
#menu-bt {
	background:#0071bc url(../img/ico_menu01.svg) no-repeat 0 50%/40px;
	height: 100%;
	border-radius: 0;
}

 #menu-bt::before{
	 background:#0071bc;
	 /*background:#0071bc url(../img/ico_menu01_2.svg) no-repeat 0 center/40px;*/
	 content: '';
	 width: 80px;
	 height: 80px;
	 position: absolute;
	 top: calc(50% - 40px);
	 left: -20px;
	 border-radius:50%;
	 z-index: -1;
	 vertical-align: bottom;
} 
.open #menu-bt {
	background:#0071bc;
}

.open #menu-bt{
	background:#0071bc url(../img/ico_close01.svg) no-repeat 0 50%/40px;
	}

	
}/*@media おわり*/

/*------  スマホ横用 -----*/
@media only screen and (max-device-height: 500px) and (orientation:landscape) {
ul.menu_type01 li a {
	padding: 0.6em;
	padding-left: 40px;
}
ul.menu_type01 li.home a {background: url(../img/ico_home01.svg) no-repeat 5px center/30px;}
ul.menu_type01 li.lab a {background: url(../img/ico_flask01.svg) no-repeat 0 center/35px;}
ul.menu_type01 li.reading a {background: url(../img/ico_book01.svg) no-repeat 5px center/30px;}
ul.menu_type01 li.video a {background: url(../img/ico_play01.svg) no-repeat 6px center/25px;}
ul.menu_type01 li.sitemap a {background: url(../img/ico_sitemap01.svg) no-repeat 10px center/20px;}
ul.menu_type01 li.sansouken a {background: url(../img/ico_face01.svg) no-repeat 6px center/25px;}
ul.menu_type01 li.link a {background: url(../img/ico_link01.svg) no-repeat 5px center/30px;}
ul.menu_type01 li.live a {background: url(../img/ico_live.svg) no-repeat 0 center/32px;}
ul.menu_type01 li.newspaper a {background: url(../img/ico_newspaper.svg) no-repeat 0 center/32px;}
	
}/*@media おわり*/
	
/*----------------------------
本文への隠しリンク

------------------------------*/
#blockskip{
	margin: 0;
	padding: 0;
	overflow: visible;
	height: 0;
	position:absolute;
	margin-left:-9999px;
}

/*#blockskip a,
#blockskip a:hover{
	display: block;
	text-decoration: none;
}*/

/*----------------------------
パンくずリスト

------------------------------*/
.wrap_breadcrumbs{
	padding: 5px 10px;
	border-top: 3px solid #0071bc;
	background: #DDF4FF;

}

ol.breadcrumbs{
	padding: 0;
	margin: 0;
}

ol.breadcrumbs li {
	background: url(../img/ico_arrow01.svg) no-repeat right center/10px 10px;
	display: inline-block;
	list-style: none;
	font-size: 82%;
	padding: 0px 15px 0px 0px;
	line-height: 1;
}
ol.breadcrumbs li:last-child {
	background: none;
	padding-right: none;
}

/*------  PC用 -----*/
@media only screen and (min-device-height: 769px) and (orientation:landscape) {
/*@media screen and (min-width: 813px) {*/
	ol.breadcrumbs {
		max-width: 1000px;
	}
	
	ol.breadcrumbs{
		margin: 0 auto;
	}

}/*@media おわり*/

/*----------------------------
サムネイル付きタイトルリスト

------------------------------*/
ul.img_list {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}
ul.img_list li {
	border: 4px solid #ccefff;
	width: 100%;
	border-radius: 10px;
	margin-bottom: 20px;
}

ul.img_list li::after{
	background: none;
}

ul.img_list li:hover,
ul.img_list li:focus{
	border: 4px solid #ffdd88;
	transition: all .3s;/*ふわっと切り替え*/
}
ul.img_list li a {
	display: block;
	text-decoration: none;
	font-weight: bold;
	color: #333333;
}

ul.img_list li figure {
	margin: 0;
	padding: 10px;
}
ul.img_list li img {
	width: 100%;
	border-radius: 10px;
}
ul.img_list li span.ttl {
	background: url(../img/ico_arrow01.svg) no-repeat 0 0.9em/0.6em;
	display: block;
	padding: 10px 0 10px 1em;
	background-color: #ccefff;
	font-size: 120%;
}

ul.img_list li:hover span.ttl {
	background: url(../img/ico_arrow01_on.svg) no-repeat 0 0.9em/0.6em;
	background-color: #ffdd88;
}

ul.img_list li span.ttl span.sub {
	display: block;
	font-size: 82%;
	font-weight: normal;
}

ul.img_list li.img_list_odd {
	display: none;
}

/*------  PC用 -----*/
@media only screen and (min-device-height: 769px) and (orientation:landscape) {
/*@media screen and (min-width: 813px) {*/
ul.img_list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
ul.img_list li {
	display: block;
  position: relative;
	background-color: #ccefff;
	width: 300px;
	margin-right: 10px;
}
ul.img_list li a {
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;

}
ul.img_list li figure {
	background-color: #FFFFFF;
	margin: 0;
	padding: 10px;
}
ul.img_list li span.ttl {
	display: block;
	background: none;
	order: 1;
}

	ul.img_list li:hover span.ttl {
	background: none;
}
	
ul.img_list li span.ttl span.sub {
	display: block;
	font-size: 76%;
}

}/*@media おわり*/


/*----------------------------
下層ページタイトルエリア

------------------------------*/
div.ttl_area {
	background: url( ../img/bg01.png) repeat 0 0/150px fixed;
}
div.bg_transparency {
	/* 背景画像の透過用css */
	height: 100%;
	background: rgba(255,255,255,0.5);
	padding: 10px 0 20px;
}
/*--h1--*/
div.logo_science_town h1 {
	margin: 10px 0 0;
}

div.logo_science_town a{
	background: url(../img/h1_logo01.svg) no-repeat center 0 /auto 70px;
	height: 70px;
	display: block;
}
div.logo_science_town span {
	display: none;
}
.ttl_category_top{
	text-align: center;
	color: #005086;
	text-shadow: 2px 2px #fff, 5px 5px rgba(0, 113, 188, 0.4);
	/*font-size: 200%; イベント後修正 */
	font-size: 180%;
	font-weight: bold;
	margin: 1em 0 0;
	padding: 0 20px;
}
.ttl_category_top span.sub{
	font-size: 78%;
	margin-left: 0.8em;
}

/*------  PC用 -----*/
@media only screen and (min-device-height: 769px) and (orientation:landscape) {
.logo_science_town {
	padding: 0 80px 0 20px;
}
.ttl_category_top{
	font-size: 200%; /* イベント後削除 */
	padding: 0 80px 0 20px;
}
	
}/*@media おわり*/
/*----------------------------
sbs（画像とテキスト横並び）

------------------------------*/
div.sbs{
	margin-bottom: 2em;
	border-bottom: 1px dotted #0071bc;
	width: 100%;
}

div.sbs figure{
	margin-bottom: 0.5em
}

div.sbs figure img{
	margin-bottom: 10px;
	border: 3px solid #CFCFCF;
}

div.sbs figcaption{
	text-align: center;
}



@media only screen and (min-device-height: 769px) and (orientation:landscape) {
/*@media screen and (min-width: 813px) {*/
	div.sbs{
		display: table;
		padding-bottom: 2em;
	}

	div.sbs div.figure_area{
		display: table-cell;
		vertical-align: top;
		text-align: left;
	}

	div.sbs div.txt_area{
		display: table-cell;
		vertical-align: top;
		padding-left: 20px;

	}
	
	div.sbs div.figure_area{
	width: 30%;
	
	}
	
	div.sbs figure{
		margin-bottom: 1em
	}
	
	div.sbs  figure:last-child{
		margin-bottom: 0;
	}

	div.sbs img{
		width: 100%;

	}
}/*@media おわり*/

/*----------------------------
下に点線がつくdiv（sbsと同じ枠）

------------------------------*/
div.box_dot{
	margin-bottom: 2em;
	border-bottom: 1px dotted #0071bc;
	width: 100%;
}

div.box_dot figure{
	margin-bottom: 0.5em
}

div.box_dot figure img{
	margin-bottom: 10px;
	border: 3px solid #CFCFCF;
}

div.box_dot figcaption{
	text-align: center;
}



@media only screen and (min-device-height: 769px) and (orientation:landscape) {
/*@media screen and (min-width: 813px) {*/
	div.box_dot{
		display: table;
		padding-bottom: 2em;
	}

	div.box_dot div.figure_area{
		display: table-cell;
		vertical-align: top;
		text-align: left;
	}

	div.box_dot div.txt_area{
		display: table-cell;
		vertical-align: top;
		padding-left: 20px;

	}
	
	div.box_dot div.figure_area{
	width: 30%;
	
	}
	
	div.box_dot figure{
		margin-bottom: 1em
	}
	
	div.box_dot figure:last-child{
		margin-bottom: 0;
	}

	div.box_dot img{
		max-width: width: 100%;
		height: auto;

	}
}/*@media おわり*/


/*----------------------------

ページャー

------------------------------*/
.page_nav{
	padding: 0;
	text-align: center;
	margin: 0 auto 20px;
}

.page_nav li{
	background:#0071bc;
	display: inline-block;
	height: 3em;
	width: 3em;
	border-radius: 10%;
	text-align: center;
	margin-bottom: 15px;
}

.page_nav li.prev,
.page_nav li.next{
	width: auto;
}

.page_nav li a{
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	width: 100%;
	height: 100%;
	padding:0.7em 0 0; 
}

.page_nav li a:hover,
.page_nav li a:focus{
	color:#0071bc;
}

.page_nav li.prev a,
.page_nav li.next a{
	padding: 0.7em 12px;	
}

.page_nav li.prev a::before{
	content: '≪';
}
.page_nav li.next a::before{
	content: '≫';
}

.page_nav li.current a{
	background: #DDF4FF;
	color: #0071bc;
	border-radius: 10%;

}

/*----------------------------

link

------------------------------*/
.back_index{
	display:block;
	text-align: center;
	margin-top: 1em;
}


/*--------------------------------------------------------------------

footer

----------------------------------------------------------------------*/

/*----------------------------
footerレイアウト
------------------------------*/


.footer_inner{
	background-color: #003356;
	color: #95E0FF;
	margin: 0;
}

@media only screen and (min-device-height: 769px) and (orientation:landscape) {
/*@media screen and (min-width: 813px) {*/
	.footer{
	background: url(../img/bg_footer01.png) repeat-x center 0/auto 50px;
	padding-top:50px; 
}

	.footer_inner {
	padding: 0 100px 20px 40px;
}

}/*@media おわり*/

/*----------------------------
テキスト
------------------------------*/
p.copy {
	margin: 0;
	text-align: center;
	font-size: 67%;
}

p.footer_aist{
	font-size: 82%;
	text-align: center;
	margin-bottom: 0;
}
/*----------------------------
footerナビ
------------------------------*/
ul.footer_nav{
	border-top:3px solid #0071bc; 
	background: #FFFFFF;
	padding: 0;
	font-size: 82%;
}

ul.footer_nav li {
	border-bottom: 1px dotted #0071bc;
	margin-bottom: 0;
}
ul.footer_nav li:last-child{
	border-bottom: none;
}

ul.footer_nav li::after{
	background: none;
}

ul.footer_nav li a {
	display: block;
	text-decoration: none;
	padding: 1em;
	border-radius: 0px;
	padding-left: 60px;
}

ul.footer_nav li.home a {background: url(../img/ico_home01.svg) no-repeat 5px center/45px;}
ul.footer_nav li.lab a {background: url(../img/ico_flask01.svg) no-repeat 0 center/50px;}
ul.footer_nav li.reading a {background: url(../img/ico_book01.svg) no-repeat 10px center/35px;}
ul.footer_nav li.video a {background: url(../img/ico_play01.svg) no-repeat 10px center/35px;}
ul.footer_nav li.sitemap a {background: url(../img/ico_sitemap01.svg) no-repeat 10px center/35px;}
ul.footer_nav li.sansouken a {background: url(../img/ico_face01.svg) no-repeat 10px center/35px;}
ul.footer_nav li.link a {background: url(../img/ico_link01.svg) no-repeat 10px center/35px;}
ul.footer_nav li.live a {background: url(../img/ico_live.svg) no-repeat 0 center/45px;}
ul.footer_nav li.newspaper a {background: url(../img/ico_newspaper.svg) no-repeat 0 center/43px;}


ul.footer_nav li a:hover{
	background-color: #ffdd88;
}

/*-----pc用--------*/
@media only screen and (min-device-height: 769px) and (orientation:landscape) {
/*@media screen and (min-width: 813px) {*/
ul.footer_nav{
	background: none;
	border-bottom: 1px dotted #039ad6;
	border-top:none; 
	padding: 20px 0 10px;
}
	
ul.footer_nav li {
	display: inline-block;
	border-bottom: none;
	margin-right: 20px;
	}

ul.footer_nav li a,	
ul.footer_nav li.home a ,
ul.footer_nav li.reading a,
ul.footer_nav li.sansouken a,
ul.footer_nav li.lab a ,
ul.footer_nav li.video a,
ul.footer_nav li.link a,
ul.footer_nav li.sitemap a,
ul.footer_nav li.live a,
ul.footer_nav li.newspaper a{
	background: url(../img/ico_arrow01.svg) no-repeat 0 0.7em/16px;
	padding: 8px 10px 8px 25px;
	color: #FFFFFF;
	border-radius: 10px;	
}

ul.footer_nav li.home a{background: url(../img/ico_home01.svg) no-repeat 0 0.6em/20px;}
	
ul.footer_nav li a:hover{
	background-color: #ffdd88;
	color: #0071bc;
}
		
}/*@media おわり*/

/*----------------------------
pagetopボタン

------------------------------*/
#page_top {
	position: fixed; /*ボタンの配置場所を固定*/
	bottom: -10px; /*下からのボタンの配置場所を指定*/
	right: 10px; /*右からのボタンの配置場所を指定*/
	margin: 0;
	z-index: 99;
}
#page_top a {
	background-color: #0071bc;
	display: block; /*配置の調整*/
	text-decoration: none; /*文字の下線を消す*/
	color: #FFFFFF; /*文字の色*/
	text-align: center; /*文字を中央に配置*/
	border-radius: 5%; /*ボタンの角を少し丸くする*/
	outline: none; /*クリックしたときの黒い枠を消す*/
	padding: 5px;
	font-size: 92%;
}

/*--pc---*/
@media only screen and (min-device-height: 769px) and (orientation:landscape) {
/*@media screen and (min-width: 813px) {*/
#page_top {
	bottom: 10px; /*下からのボタンの配置場所を指定*/
	right: 100px; /*右からのボタンの配置場所を指定*/
}
#page_top a {
	background: none;
	color: #0071bc;
	display: block; /*配置の調整*/
	text-decoration: none; /*文字の下線を消す*/
	text-align: center; /*文字を中央に配置*/
	border-radius: 5%; /*ボタンの角を少し丸くする*/
	outline: none; /*クリックしたときの黒い枠を消す*/
}

#page_top a span:last-child {
	background-color: #FFFFFF;
	border: 2px solid #0071bc;
	border-radius: 10px;
	padding: 6px;
}
#page_top a:hover span:last-child {
	background-color: #0071bc;
	color: #FFFFFF;
}
}/*@media おわり*/

/*----------------------------

産総研ロゴ

------------------------------*/

/*p#aist{display: none;}*/
p#aist{
	display: block;
	position: fixed;
	bottom: 60px;
	left: 20px;
	z-index: 10;
	margin: 0;
}

p#aist a{
	display: block;
	background: url(../img/logo_sansouken.svg) no-repeat 0 0/120px;
	height: 42px;
	width: 120px;
}

p#aist a span{
	display:none;
	
}

/*------  PC用 -----*/
@media screen and (min-width: 769px) {/*@media screen and (min-width: 813px) */
p#aist{
	display: block;
	position: fixed;
	bottom: 60px;
	left: 45px;
	z-index: 10;
}

p#aist a{
	display: block;
	background: url(../img/logo_sansouken.svg) no-repeat 0 0/120px;
	height: 42px;
	width: 120px;
	text-decoration: none;
}


	
p#aist a:hover span{
  position: relative;
  display: inline-block;
  top:-92px;
  left: 0px;
  margin: 1.5em 0 1.5em 0;
  padding: 7px 10px;
  color: #555;
  font-size: 80%;
  background: #FFF;
  border: solid 3px #0071bc;
  box-sizing: border-box;
  width: 200%;
  min-height: 40px;
  border-radius: 10px;
  animation: bounceIn 0.5s ;
}

p#aist a:hover span:before {
 content: "";
  position: absolute;
  bottom: -17px;
  left: 15%;
  margin-left: -15px;
  border: 5px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}

p#aist a:hover span:after {
 content: "";
  position: absolute;
  bottom: -24px;
  left: 15%;
  margin-left: -17px;
  border: 7px solid transparent;
  border-top: 14px solid #0071bc;
  z-index: 1;
}

	
}/*@media おわり*/


/*--------------------------------------------------------------------

そのほか

----------------------------------------------------------------------*/
.center{text-align: center !important;}
.right{text-align: right !important;}
.left{text-align: left !important;}
.bold{font-weight: bold !important;}
.normal{font-weight: normal !important;}

.red{color:#c92020;}
.indent-1 {text-indent: -1em; padding-left: 1em;}
.wdsp {word-spacing: 0.5em;}
