  
  
 a{ text-decoration:none;
 outline: none; /* for Firefox Google Chrome  */
 behavior:expression(this.onFocus=this.blur()); /* for IE */
}/*去除連結虛線框*/

*{
  margin: 0;
  padding: 0;
  box-sizing:border-box;
  -moz-box-sizing:border-box;
  -o-box-sizing:border-box;
  -webkit-box-sizing:border-box;}
  
:focus {outline: 0;}

    /*重置頁面基本字型大小及行高*/
    body,td,th {
      font-size: 100%;
	  -webkit-font-smoothing: antialiased;
	  -webkit-text-size-adjust:none;
    }


    /*將標題的字型大小及粗細都重置*/
    h1, h2, h3, h4, h5, h6 {
      font-size: 100%;
      font-weight: normal;
    }
    th{font-weight: normal;}

    /*將影像及欄位集的邊框歸零*/
    img, fieldset {
      border: 0;
    }


    /*將清單樣式清除，其實只要list-style: none就好了，後面都是為了特定瀏覽器*/
    ol, ul {
      list-style: none;
    }



    /*重置表格註解及標題儲存格的對齊*/
    caption, th {
      text-align: left;
    }



    /*部份瀏覽器在表單元素的字型樣式跟內文會不一樣，故設為繼承保持一致*/
    input, button, textarea, select, optgroup, option {
      font-family: inherit;
      font-size: inherit;
      font-style: inherit;
      font-weight: inherit;
    height: 36px;
}




    /*將註解的邊框及大小寫重置，acronym沒用就不重置了*/
    abbr {
      border: 0;
      font-variant: normal;
    }


    /*重置上標、下標的樣式*/
    sup, sub {
      font-size: 100%;
      vertical-align: baseline;
    }


    /*將引用重置，避免樣式不同及引號*/
    blockquote, q {
      quotes: none;
    }
    blockquote:before, blockquote:after, q:before, q:after {
      content: "";
    }


    /*最後也順便把這些會用到的元素也重設吧*/
    code, kbd, samp {
      font-size: 100%;
    }
