H1{       /*H1要素のスタイル指定*/
font-size   : 2em;
font-weight : 700;
color       : Blue;
}
H2{
font-size   : 1.5em;
font-weight : 600;
text-indent : 0em;
color       : orange;
}

H3{
font-size   : 1.2em;
font-weight : 500;
text-indent : 0em;
color       : orange;
}


P{        /*P要素のスタイル指定*/
font-size   : 1em;
text-indent : 2em;
}


#menu{

height: 64px;
width: 100px;
}

#menu-box
{
display: block;

}

#menu-box ul{

list-style: none;
margin: 0px;
padding: 0px;

}

#menu li
{
margin: 0px;
padding-top: 5px;


}

#menu li a
{
background-image: url("notselected.gif");
background-repeat: repeat-y;

}

#menu li a:hover
{
background-image: url("selected.gif");
background-repeat: repeat-y;

}