/* style.css - a simple style sheet */
body {
  
  color: black; background: grey;
  font-family: Verdana, sans-serif;
  font-size: 0.9em;
}
 
div.main {
    /* blue background color */
    background: #00CCFF;
    border-left: 120px;
    border-right: 120px;
    border-top: 0px;
    border-bottom: 0px;
    /* brown side color */
    border-color: #220000;
    border-style: solid;
    margin-left: 100px;
    margin-right: 100px;
    
}

/* how to make this stay on the left side */
div.leftside {
    background: black;
    border-style: solid;
    border-bottom: 4px;
    border-top: 4px;
    border-left: 4px;
    border-right: 4px;
    left: 100px;
    top:  212px;
    width: 120px;
    position: absolute;
}

div.rightside {
    right: 100px;
    top:  212px;
    width: 120px;
    position: absolute;
}

div.sidebox {
   background: brown;
   border-style: groove;
   border-color: black;
}

div.google {
  background: white;
   border-style: groove;
   border-color: black;
   padding: .2em;
}


a.menu {
    color: black;
    text-color: black;
    text-decoration:none;
    font-size: 0.8em;
	display: block;
}

/* for toddhester.net banner at top, figure out how to do colored stripes */
/* on top/bottom and all caps font with larger T and H */
 div.banner {
    /* main blue background color */
    background: #00CCFF;
    border-top: 40px;
    border-bottom: 40px;
    height: 200px;
    border-right: 0px;
    border-left: 0px;
    border-style: solid;
    /* dark blue around text */
    border-color: #003ba0;
    font-family: Verdana, sans-serif;
    font-weight: bold;
    font-size: 4em;
    padding: none;
	margin-left: 100px;
	margin-right: 100px;
    margin-top: 32px;
    margin-bottom: 0px;
 }

font.capital{
	font-size: 1.4em;
}

div.subbox {
    padding: 0.5em;
	clear: both;
  }

div.leftbox {
   width: 49%;
 }


div.rightbox {
   width: 49%;  
   float: right;
 }

div.tiled {
   clear:both;
   padding: 0.5em;
}

div.quote {
   font-weight: italic;
}

div.blogentry {
   background: #4477aa;
   border-style: groove;
   border-color: black;
}

div.blogentry a {
   color: #990000;
}

div.title {
   font-weight: bold;
   font-size: 1.2em
}

div.footer {
   clear: both;
   margin-left: 100px;
   margin-right: 100px;
   font-size: 0.9em;
   /* dark blue border */
	background: #003ba0;
	border-left: 120px;
    border-right: 120px;
    border-top: 0px;
    border-bottom: 0px;
    border-style: solid;
    /* brown side color */
    border-color: #220000
}

table {
	font-size: 1em;
}
