/* Baxter Grace
   CMIS 300
   Project 1
   9/27/12
*/   

/* the styles for the body element and page division */
body {
	font-family: Arial, Helvetica, sans-serif;
    font-size: 87.5%;
    margin: 0;
    background-color: green;
}
#page {
    width: 720px;
    margin: 0 auto;
    background-color: white;
    padding: 15px;
}

/* the styles for the elements */

h1 { 
    font-size: 500%;
    text-align: center;
    margin: 0;
	color: black;
	font-family: Courier New;
}
h2 { 
    font-size: 175%;
    margin-bottom: 0;
	font-weight: italic;
	color: green;
	text-align: center;
	font-family: Courier New;
	
}
table {
	border: 1px solid black;
	border-collapse: collapse;

}
table.center {
    margin-left:auto; 
    margin-right:auto;
 }
th {
	background-color: #40e0d0;
}
td, th {
	border: 1px solid black;
	padding: .2em .7em;
	text-align: right;
}
.left {
	text-align: left;
}
.aqua {
	background-color: #afeeee; 
}
p {
	float: center;
}

a:hover {
	font-weight: bold;
}

/* the styles for the header division */
#header {
    border-bottom: 2px solid blue;
    margin-bottom: 1.4em;
	height: 125px;
}

#header img {
	float: left;
}

#header h1 {
	margin-left: 2em;
	text-decoration: none;
}

#header h2 {
	margin: 0;
	margin-left: 6em;
	color: green;
	font-style: italic;
	float: right;
}

/* the styles for the categories division */
#categories {
	width: 150px;
	float: right;
}
#categories p {
	line-height: 1.4;
	margin: 1.5em .5em 1em;
	padding: 10px;
}


/* the styles for the main division */
#main {
	margin-right: 165px;
	
}
#main  h2 {
	font-size: 350%;
}



/* the styles for the header division */
#footer {
    margin-top: .5em;
    border-top: 2px solid blue;
    padding-top: .7em;
	clear: left;
}

/* the styles for classes */
.copyright {
    color: blue;
    font-size: 90%;
    text-align: right;
    margin: 0;
}

/* the styles for the navigation bar */
#navigation_bar {
	font-size: 125%;
	font-weight: bold;
	border-top: 2px solid blue;
	border-bottom:2px solid blue;
	padding: 6px 10px 9px;
	font-family: Courier New;
}

#navigation_bar a {
	text-decoration: none;
	padding: 10px 10px;
}
.current {
	color: #00ced1;
}
/* styles for the form */

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 90%;
	margin: 0;
	padding: 20px;
}

label {
	color: navy;
	float: left;
	width: 5em;
	text-align: right;
}

#data input {
	margin-left: 1em;
	margin-bottom: .5em;
}

#data input:focus {
	border: 2px solid navy;
}

#lastname{
	width: 20em;
}

#address {
	width: 20em;
}

#state {
	width: 2em;
}

#buttons {
	padding-top: .5em;
	margin-left: 6em;
}

#buttons input {
	width: 6em;
	color: navy;
	background-color: silver;
}