/**
all hyperlinks should be black all the time
**/
a{
color:#000000;
text-decoration:none;
}

/**
all forms should be centered
**/
form{
text-align:center;
}

/**
all divs should be initialized
- in the left-hierarchy
- with white background
- with cornees that are rounded off (firefox,mozilla,opera)
**/
div{
float:left;
background-color: white;
-moz-border-radius:10px;
}

/**
this div surrounds all the other divs and centers horizontal
**/
.mainframecenter{
float:none;
margin: auto;
width: 752px;
}

/**
this div is the maindiv and surrounds everything except mainframecenter
**/
.mainframe{
width: 750px;
background-color:#efefef;
border:1px solid #aaaaaa;
}

/**
this div is merely for the header
**/
.header{
width: 750px;
text-align:center;
}

/**
this div is merely for the login-case
**/
.login{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: bold;
}

.navi{
width:170px;
background-color:#CCCCCC;
border-right: ridge 1px black;
border-bottom: ridge 1px black;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: bold;
padding-top: 5px;
padding-bottom: 5px;
padding-left:30px;}

.content{
width:549px;
background-color:#efefef;
text-color:#efefef;
}

#nobutton{
 background-color:#CCCCCC;
 width:111px;
 height:20px;
 line-height:20px;
 padding-left:5px;
 margin-top:2px;
}

#button{
 -moz-border-radius:0px;
 background-color:#CCCCCC;
 width:111px;
 height:20px;
 line-height:20px;
 padding-left:5px;
 margin-top:2px;
 background-image:url('pics/button.png');
}
