/* base.css  */

/* Suggesuted order css指定の順番は下記のとおりにしてね
*display
*list-style
*position
*float
*clear
*width
*height
*margin
*padding
*border
*background
*color
*font
*text-decoration
*text-align
*vertical-align
white-space
*order text
*content

*/


/* ブラウザスタイルの初期化 */
*{
    margin: 0;
    padding: 0;
    border: 0;
    background-color: transparent;
    color: ;
    font-size: 100%;
    font-weight: ;
    font-style: normal;
    text-decoration: none;
}

* html .leftbox h3 {
margin-top: 0px;
}



hr{display: none;}
img{border: 0px;}





/* 全体指定、余白を0、センタリング、テキスト左寄せ */
body {
    margin: 0;
    padding: 0;
    text-align: center;
	background-color: #F5FAE8;
	background-image: url("../img2/bg_body.gif");
	background-repeat: repeat-x;
}


.topbox {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
	width: 800px;
	background-color: #FFFFFF;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-left-color: #CCCCCC;
}




/* Hack For MacIE\*/
	*{letter-spacing: 1px;}
/* Hack For MacIE*/

a:link   {color: #CC3300; text-decoration: none;}
a:visited{color:; text-decoration: none;}
a:active {color:; text-decoration: underline;}
a:hover  {color:; text-decoration: underline;}

