/*
CSS for Week 11 - Absolute Positioning and Floats
*/

body {
  font-family: Verdana, Helvetica, Arial, sans-serif;
  background-color: #bed8f3;
  line-height: 125%;
  padding: 0;
  margin: 0;
}

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

h1 {
  font-size: x-large;
  background-color: navy;
  color: white;
  padding-top: 2em;
  padding-bottom: .2em;
  padding-left: .4em;
  margin: 0;
}

h2 {
  color: navy;
  font-size: 130%;
  font-weight: normal;
  padding-top: 15px;
}

li {
  font-size: small;
}

p {
  font-size: small;
  color: navy;
}

#tagline p {
  font-style: italic;
  font-family: Georgia, Times, serif;
  background-color: #bed8f3;
  border-top: 3px solid #7da5d8;
  border-bottom: 3px solid #7da5d8;
  padding-top: .2em;
  padding-bottom: .2em;
  padding-left: .8em;
  margin: 0;
}

a {
  font-weight: bold;
}

a:link {
  color: black;
}

a:visited {
  color: navy;
}

a:hover {
  text-decoration: none;
  color: white;
  background-color: navy;
}

a:active {
  color: aqua;
  background-color: navy;
}

#bodycontent {
width: 450px;
}
 
#navigation {
  width: 180px;
  height: 245px;
  background-color: #7da5d8;
}

h2, ul {
  margin-top: 15px;
}

#header {
  border-top: 3px solid #7da5d8;
}

/*
This section deals with the position of items on the screen.
It uses absolute positioning - fixed x and y coordinates measured from the
top-left corner of the browser's content display.
*/

#navigation, #bodycontent, #header {
  position: absolute;
}

#navigation, #bodycontent, #pullquote {
  top: 6.54em;
}

#bodycontent {
  left: 200px;
}

#header {
  width: 100%;
}

/*
This is the ADDED CSS for Week 11-------------------------------------
*/

#pullquote {
position: relative;
float:right;
margin-left: 10px;
width: 300px;
height: 140px;
}

#pullquote p {
font-size: 24px;
line-height: 1.5em;
padding: 10px;
color: navy;
border-left: 2px dotted navy;
}

.pqstart {
     float: left;
     font-size: 300%;
     color: #7da5d8;
     height: 45px;
     margin-top: -50px;
     padding-top: 45px;
     margin-bottom: -50px;
 }

 .pqend {
     float: right;
     font-size: 300%;
     color: #7da5d8;
     height: 25px;
     margin-top: -15px;
 }

/*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;
}

/*
This section deals with adding text and reformatting.
*/

#container {
position: relative;
width: 960px;
height: 350px;
margin: 0 auto;
background-color: #bed8f3;
}

#wrapper {
position: relative;
width: 1000px;
height: 800px;
background-color: white;
margin: 20px auto;
padding: 0 20px;
}

#pageheader {
width: 100%;
}

#textblock ul {
padding-bottom: 20px;
color:navy;
}

#pageheader h1 {
font-size:200%;
color: navy;
background-color: #ffffff;
padding-top: 30px;
padding-left: 0;
}

#pageheader h2 {
color: #7da5d8;
padding: 0;
}

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