/* 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:#b0fff0;
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;
}
#header{
font-size:4em;
font-family:arial,helvetica;
text-align:center;
/*border:1px dashed*/
padding-top:5px;
padding-left:5px;
color:#fff;
background-color:#00f;
}
#navbar{
font-family:arial,helvetica,sans-serif;

width:63em;
height:1.5em;
background-color:#ff0;
}

#navbar li{

width:8em;
list-style-type:none;
text-align:center;
font-family:arial,helvetica,sans-serif;
font-size:1.2em;
float:left;
}
/*applies to navbar links visited and unvisited*/
#navbar a:hover,
#navbar a:active{
background-color:#000;
color:#fff;
}
#leftcolumn{
float:left;
font-family:arial,helvetica,sans-serif;
text-align:center;

width:27em;
height:23em;

}
#leftcolumn p{
font size:1.2em;
text-align:center;
margin-top:1em;
}
#leftcolumn h3{
margin-top:1em;
}
#content{
float:left;

width:35.5em;
font-family:arial,helvetica,sans-serif;
border:1px solid;
}
#dx{
text-align:center;
}
#content li{
list-style-type:none;
font-size:1.2em;
}


#content p{
text-align:left;
font-size:1.5em;
padding:5px;
}

#footer{
clear:both;
text-align:center;
background-color:#ff0;
width:50em;
height:1.5em;
padding-left:13em;
}

#footer li{
list-style-type:none;
float:left;
font-size:1.25em;
width:17em;
}
/*footer hover and active links*/
#footer a:hover,
#footer a:active
{
background-color:#000;
color:#fff;
}
.scrollbar{
width:35em;
height:22em;
padding:.25em;
text-indent:.25in;
background-color:#ddd;
overflow:auto;
}
