/*Main boxes*/

body {
        background-color: white;
		background-image: url(images/header1.jpg);
		background-repeat: no-repeat;
		background-position: top center;
}

#back {
		position: absolute;
		background-color: black;
		opacity: .5; 
		filter: alpha(opacity=50);
		top: 170px;
		left: 15%;
		right: 15%;
		height: 390px;
}

.scrollbox {
        font-size: 16px;
        height: 370px;
        position: absolute;
        top: 170px;
        left: 15%;
		right: 15%;
        padding: 10px;
        overflow: auto;
		color: white;
}

#menu {
        font-size: 22px;
        position: absolute;
        top: 140px;
		left: 15%;
		right: 15%;
}

#menuitems {
        float: center;
}

#bottom {
        font-size: 12px;
        position: absolute;
        top: 570px;
		left: 15%;
		right: 15%;
}

/*Links*/

a {
        color: green;
        text-decoration: none;
}

a:hover {
        text-decoration: none;
        background-color: green;
        color: white;
}

