/*layoutstyles.css */
/* Universal selector */
/* remove all default margins and padding */
*{
margin: 0;
padding: 0;
/* Element selector */
/* applies to all ul elements */
/*Temporary borders*/
/* border: dashed 1px #f00; */
}
body{
/*background-color:#117b6f ;*/
font-family:arial,helvetica,sans-serif;
}
#wrapper{
width:63em;
/*put 20 px margin above the wrapper*/
margin:20px auto 0;
/*set right and left to auto for centering*/
background-color:#b0fff0;
}
/*applies only where class="hilite"*/
.hilite{
background-color:#ff0;
}
#header{
font-size:3em;
font-family:edwardian script itc;
text-align:center;
/*border:1px dashed*/
padding:5px;
color:#fff;
background-color:#00f;
}
#address {
height:1.75em;
font-size:1.5em;
text-align:center;
}
#navbar{
height:1.25em;
font-size:1.2em;
background-color:#ff0;
width:38:em;
}
#navbar li{
float:left;
list-style-type:none;
margin-left:2em;
}
/*applies to navbar links visited and unvisited*/
#navbar a:hover,
#navbar a:active{
background-color:#000;
color:#fff;
}
#leftcolumn{
float:left;
width:12.5em;
height:20em;
margin-left:.1em;
border:2px solid red;
}
#leftcolumn li{
list-style-type:none;
font-size:1.1em;
padding-left:5px;
}
/*applies to links visited and unvisited*/
#leftcolumn a:hover,
#leftcolumn a:active{
background-color:#000;
color:#fff;
}
#contents{
margin-left:12em;
font-size:1.2em;
width:40em;
height:16.5em;
}
#contents h2{
color:red;
text-align:center;
Margin-bottom:.3em;
}
#contents h3{
text-align:center;
margin-top:.5em;
margin-bottom:.5em;
}
#contents p{
text-indent:.25in;
}
/*applies to budget and expense table*/
.bud{
white-space:pre
}
.scrollbar{
width:39.2em;
height:16em;
padding:.5em;
background-color:#ddd;
overflow:auto;
}
.scrollbar2{
width:12em;
height:19.5em;
padding:.25em;
background-color:#ddd;
overflow:auto;
}
#footer{
height:1.25em;
width:52.5em;
background-color:#ff0;
font-size:1.2em;
clear:both;
}
#footer li{
float:left;
list-style-type:none;
width:10em;
}