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

/*
    Site Name	: Media Radar
	Css Name	: default.css / リセット＆デフォルト設定
    Author		: Kazuya Shimazu
    Update		: 2008/1/1
*/

/*
===== CONTENTS ===========================================

    1: universal reset 
    2: body and base setting
        : general params
        : acronyms and abbreviations styles
    3: link setting

==========================================================
*/


/*
===== 1: universal reset =================================
*/

body,div,
dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,textarea,p,blockquote,th,td {
   margin:0;
   padding:0;
}

/*
===== 2: body and base setting ===========================
*/

body {
    text-align:center;/* box centering */
	font-family:'メイリオ','Meiryo','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','Osaka','ＭＳ Ｐゴシック',sans-serif;
    font-size: 12px;
    margin: 0px;
    padding: 0px;
    background: #FFF ;
    color: #333333;
}

/* general params
--------------------*/
h1, h2, h3, h4, h5, h6,
div, p, pre, ul, ol, dl, dt, dd,
address, form, blockquote{
    padding: 0;/* margin&padding reset */
    line-height: 1.6;/* base line height */
    text-align: left;
    display: block;
    margin: 0px;
    font-size: 1em;
}

table {margin : 0;empty-cells: show; font-size:1em;}

textarea{font-size: inherit;}

img {
    border: none;/* img do not want a border */
}

li { list-style: none; }/* link do not want a dot */

/*
===== 3: form setting ===========================
*/
option{ padding-right:10px; }
*+html option{padding-right:0;}/* for IE7&Opera */
* html option{padding-right:0;}/* for IE6 */　　　

/*
===== 4: link setting ===========================
*/
a:link{
    color: #006699;
    text-decoration:underline;
}

a:visited{
    color: #006699;
}

a:hover{
    color: #FF9900;
}

a:active{
    color: #006699;
}