12345678910111213141516171819202122 |
- @charset "utf-8";
- /* CSS Document */
- a {
- text-decoration: none;
- color: black;
- }
- a:hover, a:active, a:visited, a:focus{
- color: #FE5001;
- }
- ul{
- list-style: outside none none;
- }
- .widthLineBlack2{
- width:95%;
- height:2px;
- background:black;
- }
- .widthLineBlack1{
- width:95%;
- height:1px;
- background:black;
- }
|