/*
CSS for Week 14 - Forms
*/

*{
padding:0;
margin:0;
}

#wrapper {
width: 1000px;
background-color: white;
margin: 0 auto;
padding: 50px;
}

body {
  font-family: Verdana, Helvetica, Arial, sans-serif;
  background-color: gray;
  line-height: 1.5em;
  font-size: .9em;
  padding: 3em;
  margin: 1em;
  color: black;
}

h1, h2 {
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
}

h1 {
  font-size: 340%;
  width: 960px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 5px solid #736F6E;
  line-height: 1.2em;
  padding-bottom: .2em;
  color: #0066bb;
}

h2 {
color: #0066bb;
  font-size: 150%;
  font-weight: normal;
  padding-top: 15px;
  padding-bottom: 5px;
}

#form1 h2 {
color: #F88017;
  font-size: 150%;
  font-weight: normal;
  padding-top: 15px;
  padding-bottom: 5px;
}

ul {
margin-left: 20px;
padding-bottom: 20px;
}

p {
padding-bottom: 20px;
}

#footer p {
font-size: .6em;
}

/* Form styles */
form.contact fieldset {
border:2px solid black;
padding:10px;}

form.contact legend {
font-weight:bold;
font-size:large;
color:black;
padding:5px;}

form.contact {
padding:0;
margin:0;
margin-top:-15px;
line-height:150%;}

form.contact label {
font-weight:bold;
font-size:small;}

form.contact label.fixedwidth {
display:block;
width:400px;
float:left;}

form.contact .buttonarea input {
background:#08c31f;
color:white;
font-weight:bold;
Font-size: 14px;
padding:5px;
border-radius: 5px;
border:1px solid white;
}

form.contact .buttonarea {
text-align:right;
padding:4px}

#radios {
display:inline;
padding-right: 10px;
}

/*CSS for Home Link Button*/

#homelinkbutton {
position:absolute;
top: 0;
left: 5px;
}

#homelinkbutton a.homebutton:link {
font-family: helvetica, arial, sans-serif;
font-weight: normal;
font-size: 1.1em;
display: block;
color: #FFFFFF;
background-color: #08c31f;
width: 80px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
text-align: center;
padding: 5px;
text-decoration: none;
}

#homelinkbutton a.homebutton:visited {
color: #ffffff;
}

#homelinkbutton a.homebutton:hover {
background-color: #a8a8a8;
}

