@charset "UTF-8";
/* CSS Document */

html {
    height: 100%;
}


body {
	margin: 0;
	padding: 0;
	background-image: url(../img/ripple_body_bk.png);
	background-repeat: repeat-x;
	background-position: top;
	background-color: #000032;
	height: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 1.4;
}

/* ~~ エレメント / タグセレクター ~~ */
ul, ol, dl { /* ブラウザー間の相違により、リストの余白とマージンをゼロにすることをお勧めします。一貫性を保つために、量をここで指定するか、リストに含まれるリスト項目 (LI、DT、DD) で指定できます。より詳細なセレクターを記述しない限り、ここで指定する内容が .nav リストにも適用されることに注意してください。 */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* 上マージンを削除すると、マージンを含む div からマージンがはみ出す場合があるという問題を回避できます。残った下マージンにより、後続のエレメントからは離されます。 */
	padding-right: 15px;
	padding-left: 15px; /* div 自体ではなく div 内でエレメントの両側に余白を追加すると、ボックスモデル計算が不要になります。代わりに、両側に余白を指定した div をネストして使用することもできます。 */
}
a img { /* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
	border: none;
}

/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */
a:link {
	color: #0000CC; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
a:visited {
	color: #339966;
}
a:hover, a:active, a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
	text-decoration: underline;
	color: #06F;
}

/* ~~ この固定幅コンテナが他の div を囲みます。~~ */
.container {
	width: 960px;
	background-color: #FFF; /* 幅に加え、両側を自動値とすることで、レイアウトが中央に揃います。 */
	background-image: url(../img/asia_map.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

/* ~~ ヘッダーには幅は指定されません。ヘッダーはレイアウトの幅全体まで広がります。ヘッダーには、ユーザー独自のリンクされたロゴに置き換えられるイメージプレースホルダーが含まれます。~~ */
.header {
	background-color: #FFFFFF;
}

/* ~~ レイアウトに使用するカラムです。~~ 

1) 余白は、div の上部または下部にのみ配置されます。これらの div 内のエレメントには、それ自体に余白があるので、ボックスモデル計算を行う必要がありません。ただし、div 自体に両側の余白やボーダーを指定した場合、その値が加算されたものが合計幅になることに注意してください。div 内のエレメントの余白を削除し、さらにその div 内に、全体のデザインに必要な幅や余白を指定していない 2 つ目の div を追加することもできます。

2) カラムはすべてフロートしているため、マージンは指定されていません。マージンを追加する必要がある場合は、フロート方向には指定しないでください (例えば、右フロートに設定した div の右マージン)。多くの場合、代わりに余白を使用できます。このルールに従わない場合は、div のルールに「display:inline」宣言を追加し、一部のバージョンの Internet Explorer でマージンが 2 倍になるバグを回避する必要があります。

3) クラスはドキュメント内で複数回使用できるので (またエレメントには複数のクラスを適用できます)、カラムには ID ではなくクラス名が割り当てられます。例えば、必要に応じて 2 つのサイドバー div をスタックできます。クラスを各ドキュメントで一度しか使用しないのであれば、ユーザーの好みに応じて、クラス名を ID に変更することができます。

4) ナビゲーションを左ではなく右に配置したい場合、これらのカラムを反対方向にフロートさせると (すべて左方向にする代わりに、すべて右方向に設定)、反転してレンダリングされます。HTML ソース内で div を移動する必要はありません。

*/
.sidebar1 {
	float: left;
	width: 180px;
	padding-bottom: 10px;
	height: auto;
}
.content {
	padding: 0;
	width: 100%;
	float: left;
	border-top-style: none;
	border-top-color: #FFF;
}

/* ~~ このセレクターグループは、.content 内のリストに領域間隔を指定します。~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* この余白は、上述の見出しと段落ルールの右の余白を表します。下の余白はリスト内の他のエレメントとの間隔用に配置され、左の余白はインデント作成用に配置されています。これは必要に応じて調整できます。 */
}

/* ~~ ナビゲーションリストのスタイル付け (Spry などの事前作成済みのフライアウトメニューを使用する場合は削除できます) ~~ */
ul.nav {
	list-style: none; /* リストのマーカーを削除します。 */
	border-top: 1px solid #666;
	background-color: #D6D6D6;
}
ul.nav li {
	border-bottom: 1px solid #666; /* ボタンの区切り線を作成します。 */
	background-image: url(../img/sidemenu_bk.png);
	background-repeat: repeat-x;
	height: 60px;
	vertical-align: middle;
}
ul.nav a, ul.nav a:visited { /* これらのセレクターをグループ化することで、リンクのボタン表示が訪問後も確実に保持されます。 */
	padding: 20px 5px 5px 15px;
	display: block; /* リンクにブロックプロパティを指定し、リンクが含まれる LI 全体がリンクになるようにします。これにより、領域全体がマウスのクリックに反応するようになります。 */
	width: 160px;  /*この幅により、IE6 でボタン全体をクリックできるようになります。IE6 をサポートする必要がない場合は削除できます。適切な幅を計算するには、サイドバーコンテナの幅からそのリンクの余白を減算します。 */
	text-decoration: none;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* マウスを使用する場合もキーボードを使用する場合も、背景色とテキストカラーを変更します。 */
	color: #FFF;
	background-image: url(../img/sidemenu_bk_on.png);
	background-repeat: repeat-x;
	height: 60px;
}

/* ~~ フッター ~~ */
.footer {
	position: relative;/* IE6 に、適切にクリアするための hasLayout を指定します。 */
	clear: both;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #989898;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	color: #FFF;
	background-color: #000066;
}

/* ~~ その他の float/clear クラス ~~ */
.fltrt {  /* このクラスを使用すると、ページ内でエレメントを右にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
	float: right;
	margin-left: 8px;
}
.fltlft { /* このクラスを使用すると、ページ内でエレメントを左にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
	float: right;
	margin-left: 10px;
	margin-right: 30px;
	margin-bottom: 10px;
}
.clearfloat { /* このクラスは、#footer が #container から削除されているか取り出されている場合に、<br /> または空の div で、フローティングさせる最後の div に続く最後のエレメントとして (#container 内に) 配置できます。 */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
h1 {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: xx-large;
	font-weight: bold;
	padding-top: 5px;
	padding-right: 10px;
	padding-left: 10px;
	border-bottom-style: none;
	margin-left: 30px;
	margin-right: 30px;
	padding-bottom: 0px;
	border-left-style: none;
	margin-top: 30px;
	color: #000;
	border-top-style: none;
	border-right-style: none;
	margin-bottom: 30px;
}
p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	font-weight: normal;
	padding-right: 40px;
	padding-left: 40px;
	line-height: 1.75em;
	text-align: left;
}
/*マージン上のみ*/
.space-top {
	padding-top:10px;
}

/*リボン風タイトル*/
h2 {
	position: relative;
	padding: .75em 1em;
	background-color: #f0f0f0;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
h2::before,
h2::after {
	content: '';
	position: absolute;
	top: 100%;
	border-style: solid;
	border-color: transparent;
}
h2::before {
	left: 0;
	border-width: 0 15px 15px 0;
	border-right-color: #ccc;
}
h2::after {
	right: 0;
	border-style: solid;
	border-width: 15px 15px 0 0;
	border-top-color: #ccc;
}
/*リボン風タイトル　ここまで*/

.history hr {
	margin-right: 30px;
	margin-left: 30px;
	border: 1px solid #999999;
}
h4 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: medium;
	font-weight: bold;
	background-color: #99CC99;
	border: 1px solid #666;
	margin-right: 30px;
	margin-left: 30px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.space-left {
	padding-left: 30px;
}
.right {
	text-align: right;
}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #69C;
	margin-right: 30px;
	margin-left: 25px;
	text-align: left;
	margin-bottom: 0px;
	font-size: large;
}
.copyright {
	font-size: x-small;
	text-align: left;
	color: #FFFFFF;
}
.smallfont {
	font-size: small;
	text-align: left;
}
.news {
	font-size: large;
	background-color: #FF9;
	padding: 10px;
	margin-top: 10px;
	margin-right: 30px;
	margin-bottom: 10px;
	margin-left: 30px;
	border: 1px solid #F66;
	color: #F66;
	font-weight: bold;
	text-align: center;
}
.container .content .pay table {
	margin: 0px;
	padding: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.container .content .pay th td tr {
	margin: 0px;
	padding: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.white {
	color: #FFF;
}
.step {
	padding-right: 45px;
	padding-left: 45px;
}
.big {
	font-size: larger;
	font-weight: bold;
}
.attention {
	font-weight: bold;
	color: #F30;
}
.add {
	background-color: #FFC;
	border: 1px solid #CCC;
	margin: 40px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.caution {
	background-color: #F99;
	border: 1px solid #CCC;
	margin: 40px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-weight: bold;
}
.pay {
	background-color: #FC9;
	border: 3px solid #F90;
	margin: 40px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.ind {
	padding-right: 30px;
	padding-left: 30px;
}
.center {
	text-align: center;
}
.fax {
	padding-right: 30px;
	padding-left: 30px;
}


/* --- ナビゲーションバー --- */
div.nav {
	width: 100%; /* ナビゲーションの幅 */
	background-color: #000000; /* 下境界線 */
	font-size: 100%;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #666666;
	border-bottom-color: #666666;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* --- メニューエリア --- */
div.nav ul.nl {
	width: 100%; /* メニューの幅 */
	margin: 0 auto; /* センターに配置 */
	padding: 0;
	background-color: #000066; /* メニューの右境界線 */
	list-style-type: none;
	text-align: center;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #666666;
}

/* --- メニュー項目 --- */
div.nav ul.nl li {
	width: 137px; /* 項目の幅 */
	float: left;
}

/* --- リンク --- */
div.nav ul.nl li a {
	display: block;
	position: relative; /* IE6用 */
	padding: 8px 2px; /* リンクエリアの左境界線 */
	text-decoration: none; /* テキストの下線（なし） */
	color: #FFF;
	border-top-width: 3px;
	border-left-width: 1px;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #963;
	border-left-color: #666666;
}
/* --- ポイント時の設定 --- */
div.nav ul.nl li a:hover {
	background-color: #3333CC; /* テキストの下線（あり） */
	color: #FFF;
	border-top-width: 3px;
	border-top-style: solid;
	border-top-color: #FC3;
}

/* --- clearfix --- */
.clearFix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearFix {
min-height: 1px;
}
.right {
	text-align: right;
}
.name {
	font-size: x-large;
	font-weight: bold;
}

/* --- メニューエリア（ホームとリンク） --- */
div.lk ul.nl {
	padding: 0; /* メニューの右境界線 */
	list-style-type: none;
	text-align: center;
	margin-top: 0;
	margin-bottom: 0;
	position: absolute;
	font-size: small;
	color: #FFF;
	position: relative;
	top: 10px;
	left: 340px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/* --- メニュー項目 --- */
div.lk ul.nl li {
	border: 1px solid #FFF;
	padding: 0px;
	float: left;
	width: 60px;
	margin-top: 1px;
	margin-right: 10px;
	margin-bottom: 1px;
	margin-left: 1px;
}

/* --- リンク --- */
div.lk ul.nl li a {
	display: block;
	position: relative; /* IE6用 */
	padding: 8px 2px; /* リンクエリアの左境界線 */
	text-decoration: none; /* テキストの下線（なし） */
	color: #FFF;
}
/* --- ポイント時の設定 --- */
div.lk ul.nl li a:hover {
	color: #FFF;
	text-decoration: none;
	background-color: #336600;
}


.float_left {
	float: left;
}
.float_clear {
	clear: left;
}

/* --- 開催概要のdt --- */
.outline dl {
	width: 870px;
	margin-right: 40px;
	margin-left: 40px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #96C;
	float: left;
	padding-top: 10px;
	padding-bottom: 10px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	}
.outline dt {
	float: left;
	clear: both;
	width: 120px;
	color: #336600;
	font-weight: bold;
	}
.outline dd {
width: 700px;
	}
/* --- リンクのdt --- */
.linklist dl {
	width: 870px;
	margin-right: 40px;
	margin-left: 40px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #96C;
	float: left;
	padding-top: 10px;
	padding-bottom: 10px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	}
.linklist dt {
	float: left;
	clear: left;
	width: 300px;
	color: #000;
	font-weight: bold;
	}
.linklist dd {
	float: left;
	width: 500px;
	}

/* --- 更新情報タイトル --- */	
.whatnew h5 {
	font-size: x-large;
	font-weight: bold;
	color: #666666;
	padding-top: 30px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 35px;
	font-family: Arial, Helvetica, sans-serif;
}
/* --- あと何日 --- */
.bigdate {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #666;
}
.bold {
	font-weight: bold;
}
.pagetop {
	font-size: small;
	border: 1px solid #999;
	padding: 3px;
	background-color: #999;
	color: #FFF;
}
a.pagetop:link{
	text-decoration: none;
	color: #FFF;
}
a.pagetop:visited{
	text-decoration: none;
	color: #FFF;
}
/* --- 演題募集要項テーブル --- */
.container .content .outline table {
	margin: 0px;
	padding: 0px;
	border-collapse: collapse;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.container .content .outline tr {
	border: 1px solid #999;
	padding: 0px;
	margin: 0px;
}
.container .content .outline th {
	border: 1px solid #999;
	padding: 7px;
	background-color: #CCC;
	width: 30px;
	margin: 0px;
}
.container .content .outline td {
	border: 1px solid #999;
	padding: 7px;
	margin: 0px;
}
.container .content .outline ol li {
	padding-right: 15px;
	padding-left: 15px;
	line-height: 1.5em;
	margin: 0px;
	text-align: left;
}
.container .content .outline p {
	padding-right: 5px;
	padding-left: 5px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.5em;
	margin: 0px;
}
.btnform {
	text-align: center;
	margin-top: 20px;
	padding: 20px;
}
.underspace {
	padding-bottom: 5px;
}
/* --- ご参加の皆様へ --- */
dl {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	width: 800px;
	margin-left: 40px;
	font-size: medium;
	margin-bottom: 5px;
}
dt {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	float: left;
	font-weight: bold;
	color: #960;
}
dd {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin-left: 115px;
	font-weight: normal;
}
.container .content .zacho ol {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	padding-right: 15px;
	padding-left: 65px;
	line-height: 1.5em;
	margin: 0px;
}
.container .content .zacho ol li {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	padding-right: 10px;
	padding-left: 0px;
	line-height: 1.5em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	text-align: left;
	font-size: medium;
}
.container .content .pro h2 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	border-top-width: 3px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-color: #066;
	border-right-color: #066;
	border-bottom-color: #666;
	border-left-color: #066;
	background-color: #CCCC99;
}
.container .content .pro h3 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #066;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #666;
	border-top-width: 0px;
	border-right-width: 0px;
	border-left-width: 0px;
	font-size: larger;
	margin-bottom: 2px;
	margin-top: 10px;
	font-weight: bold;
}
.container .content .pro h4 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #000;
	font-size: large;
	margin-bottom: 2px;
	margin-top: 10px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #FFF;
}

.zacho {
	font-size: small;
	text-align: right;
	margin: 2px;
}
.title {
	font-size: large;
	text-align: left;
	font-weight: bold;
	margin-top: 10px;
	margin-right: 2px;
	margin-bottom: 2px;
	margin-left: 20px;
}
.kyo {
	color: #000;
	text-align: right;
	float: right;
	font-size: medium;
}
.name {
	font-size: medium;
	text-align: left;
	font-weight: normal;
	margin-top: 2px;
	margin-right: 2px;
	margin-bottom: 15px;
	margin-left: 70px;
}
.prono{
	color: #999;
	font-size: x-large;
}
.flag{
	float: left;
	border: 1px solid #CCC;
	margin-right: 10px;
}

/* --- History --- */
.history p {
	font-size: medium;
	line-height: 1.25em;
}
.history td {
	vertical-align: top;
}
.caption-chair {
	font-size: x-small;
	color: #999;
	text-align: center;
}
.photo-margin {
	margin: 3px;
}
.photo-margin-line {
	margin: 3px;
	border: 1px solid #999;
}
.container .footer .copyright a {
	color: #FF9;
}

/* --- dt --- */

.board{
	margin-bottom: 10px;
}

.board dl {
	width: 800px;
	margin-right: 40px;
	margin-left: 60px;
	padding-top: 10px;
	padding-bottom: 10px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999;
	line-height: 2em;
	}
.board dt {
	display: block;
	width: 180px;
	color: #963;
	font-weight: bold;
	}
.board dd {
	width: 600px;
	margin-left:180px;
	}
.post {
	color: #669999;
	font-size: small;
}
.member_unable {
	font-size: x-large;
	color: #000;
	margin-top: 10px;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
.container .content .bylaws p {
	margin-left: 20px;
}
.container .content .bylaws .indent-1 {
	margin-left: 54px;
	text-indent: -30px;
}
.blue {
	color: #69C;
}
.container .content .bylaws h3 {
	background-color: #f0f0f0;
	margin-bottom: 7px;
	color: #666;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CCC;
	border-right-color: #CCC;
	border-bottom-color: #666;
	border-left-color: #666;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 15px;
}
.container .content .meeting h3 {
	font-size: x-large;
	color: #963;
	margin-bottom: 10px;
}
.green {
	color: #669999;
}

.container .content .membership ul li {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	list-style-type: square;
	margin-left: 20px;
	line-height: 2em;
}
