/*
   Final Project

   Arts Abound Style Sheet

   Filename:         layout.css
   Supporting Files: graybar.png, artlogo.png

*/

/* Layout styles for desktop screen display */



/* Body styles */

body {
   background-color: rgb(230, 252, 172);
   margin: 0px auto;
   width: 960px;
}



/* Header styles */
   
header {
   background: white url(artlogo.png) top left no-repeat;
   border-bottom: 1px solid rgb(18, 15, 12);
   height: 120px;
   width: 100%;
}

header h1 {
   line-height: 78px;
   text-align: left;
   visibility: hidden;
   width: 100%;
}


/* Navigation list in header */

header nav {
   background-color: rgb(204, 51, 255);
   height: 42px;
   margin-left: 124px;
}

header nav li {
   display: block;
   float: left;
   line-height: 42px;
   text-align: center;
   width: 20%;
}

header nav li a {
   color: white;
   font-variant: small-caps;
   font-size: 12px;
   font-family: Century Gothic, Geneva, sans-serif;
   text-decoration: none;
}

header nav li a:hover {
   color: rgb(102, 0, 102);
}



/* Page section styles */

section#page {
   background: white url(graybar.png) bottom left repeat-y;
   float: left;
   width: 100%;
   margin-bottom: 20px;
}



/* Vertical navigation list styles */

nav.vertical {
   float: left;
   padding-top: 10px;
   padding-bottom: 20px;
   width: 200px;
}


nav.vertical img {
   display: block;
   margin: 5px auto;
}

nav.vertical ul {
   margin-left: 10px;
}

nav.vertical ul li {
   font-size: 13px;
   margin: 5px;
}

nav.vertical ul li.group {
   margin-top: 20px;
}

nav.vertical ul li.sub {
   margin-left: 20px;
}

nav.vertical ul li a {
   color: rgb(204, 51, 255);
}

nav.vertical ul li a:hover {
   color: rgb(102, 0, 102);
   text-decoration: underline;
}



/* Main section styles */

section#main {
   background: ivory;
   float: left;
   position: relative;
   top: 0px;
   left: 0px;
   width: 760px;
}

section#main h1 {
   font-size: 42px;
   font-family: Century Gothic, Geneva, sans-serif;
   text-align: center;
   padding-top: 10px;
   width: 100%;
}

section#main h2 {
   font-size: 28px;
   font-family: Century Gothic, Geneva, sans-serif;
   text-align: center;
   padding-top: 10px;
   width: 100%;
}

/* Main section navigation list styles */

section#main nav {
   width: 100%;
}

section#main nav li {
   display: block;
   float: left;
   height: 20px;
   width: 20%;
}

section#main nav li a {
   display: block;
   border: 1px solid rgb(18, 15, 12);
   color:white;
   background-color: rgb(204, 51, 255);
   text-align: center;
   line-height: 20px;
   font-size: 12px;
}

section#main nav li:first-of-type a {
   background-color: rgb(102, 0, 102);
}



/* Main section article styles */

section#main article {
   width: 740px;
   height: 750px;
   position: absolute;
   top: 150px;
   left: 10px;
}

/* Section Styles */

section {
width: 64%;
float: left;
}

section.full {
width: 100%;
}

section p {
font-size: 1.1em;
margin: 0px 20px 10px 0px;
}

section.full h1 {
text-align: right;
font-size: 2em;
letter-spacing: 0.1em;
}

section.full p {
font-size: 0.9em;
margin: 0px 0px 30px 0px;
}

section.full article h1 {
font-size: 1.1em;
text-align: left;
letter-spacing: 0.5em;
font-weight: normal;
margin: 0px 0px 5px 0px;
color: #2d04ff;
}

section.full article figure {
display: block;
width: 100%;
margin-bottom: 10px;
}

section.full article figure img {
display: block;
margin: 0px auto;
}

/* Block Styles */

section.full h2 {
width: 100%;
font-size: 1.5em;
margin:50px 0px 0px 0px;
border-top: 2px solid rgb(172, 172, 172);
clear: left;
float: left;
}


dl {
font-size: 0.9em;
margin: 0px;
margin-left: 60px;
clear: left;
float: left;
}

dt b {
font-size: 1.1em;
}

section.full div {
clear: left;
padding-top: 30px;
padding-bottom: 30px;
}

/* Page footer styles */

footer {
   margin-top: 830px;
   font-size: 10px;
   border-top: 1px solid rgb(102, 0, 102);
   padding-bottom: 20px;
   padding-top: 10px;
   word-spacing: 5px;
   text-indent: 5px;
}

