*
{
    margin:0;
    padding: 0;
}
p
{margin: 10px;}

#leftABit
{
    position: relative;
    left: -40px;
}
#abspos
{
    position: absolute;
    left: 100px;
    top: 1050px;
    background: yellow;
}
#fixedpos
{
    position: fixed;
    right: 50px;
    top: 100px;
    width: 100px;
    background: orange;
}


.menudiv
{
    background: rgb(100,50,0); /* background color */
    position: absolute;		 /* left and right edge will be
    20% of containing div's position ie BAR centered */
    left: 20%;
    right: 20%;
    height: 1.4em;
    padding-top:0.2em;
    text-align: center;	 /* links WITHIN the bar centered */
}

.menudiv a /* style links in a menudiv class ONLY */
{
    font-family:  Verdana, Geneva, sans-serif;
    color: rgb(255,200,50);
    text-decoration: none;  /* remove normal underlining */
    border: 1px red solid; /* border size, color and line type */

}

.menudiv a:hover
{
    color: rgb(255,200,255);
}
