/*
	File: ~ltran/public_html/css/stylesheet.css
	91.461 Assignment: Creating a webpage
	Long Tran, UMass Lowell Computer Science Undergraduate
	long_tran@student.uml.edu
	Please do not use any material or code without permission.
	
	Updated: December 9th, 2015
*/

/* Header styling */
#header {
  background-color: black;
  border: 2px solid gray;
  color: white;
  font-size: 20px;
  text-align: center;
  padding: 10px;
}

/* navigation bar styling */
#nav {
    background-color: black;
    color: white;
    border: 2px solid gray;
    height: 300px;
    width: 200px;
    float: left;
    padding: 10px; 
}

/* Content/mid section styling */
#section {
    width:700px;
    float:left;
    padding:20px; 
}

/* footer styling */
#footer {
    background-color:black;
    color:white;
    border: 2px solid gray;
    clear:both;
    text-align:center;
    padding:5px; 
}

/* body styling */
body {
  font-family: Tahoma;
  font-size: 12px;
  background-color: #99ccff;
}

/* Header (H1) styling */
h1 {
  font-family: Tahoma;
}

/* Header(H2) styling */
h3 {
  font-family: Tahoma;
}

/* paragraph styling */
p {
  font-size: 15px;
}

/* unordered list styling */
ul {
  font-size: 18px;
}

/* table styling */
  table, td, tr {
  border:1px solid black ;
  margin:20px ;
  text-align:center ;
}

/* table styling */
	th {
  border:1px solid black ;
  margin:20px ;
  text-align:center ;
  background-color:#B2C2D1 ;
}