/* CSS Document */
/* 背景画像を設定 */
/* マージンの設定・全体の文字の設定 */
body { background-color: #FFFFFF; 
		margin: 5px 0px;
		color: #333333;}

/* タイトルリンク設定*/
#example { /* 親ボックス */
	width: 750px;
	height: 80px;
	position: relative;
	font-size:10px;

} 
#box1 { /* ボックス1 */ 
width: 135px; 
position: relative; 
top: 6px; 
left: 620px;
padding: 0px;
} 

/* リンク時の文字色の設定 */
a:link { color:  #0000FF; }
a:visited { color: #0000FF; }
a:hover { color: #006600; }

/* 青線テーブル*/

#table1 { border: 2px #339933 solid; }


