/**************************************************************
   AUTHOR:  Pat Heard (fullahead.org)
   DATE:    Created 2007.07.20
   PURPOSE: Creates the site layout
 **************************************************************/



/**************************************************************
   #container: holds all site content and defines width
 **************************************************************/

#container {
  position: relative;
  margin: 1em auto;
  width: 980px;
  text-align: left;
}



/**************************************************************
   #header: holds top level menu and logo
 **************************************************************/

#header {
  padding: 20px 0 0 0;
}

#header h1 {
  float: left;
  text-indent: -2000px;
  
  width: 347px;
  height: 72px;
  margin: 0;
  padding: 0;
  
  background: url(../img/bg/private_collection.png) no-repeat top left;  
}

/* Back to home link positionned above logo */
#header a#home {
  position: absolute;
  top: 0;
  left: 0;
  width: 347px;
  height: 72px; 
}

/* Top level menu */
#header ul {
  float: right;
  position: relative;
  list-style: none;
  margin: 40px 0 0 0;
  padding: 0;    
}

#header ul li {
  display: inline;
  margin: 0;
  padding: 0;
}

#header ul li a {

  padding-left: 3em;  
}


#header ul li a img {
  position: relative;
  top: 2px;
}

/* Menu hovers: works in IE7 but not opera when #header ul a is position:relative */
#header ul li a span.hover {
  position: absolute;
  top: -1000px;
  left: -1000px;
  width: 120px;
  height: 71px;
  padding: 10px 0;
  
  font-size: 0.9em;
  text-align: center;
  
  color: #FFF;
  background: url(../img/bg/menu_hover.png) no-repeat top left;
  cursor: pointer;
}

#header ul li a:hover span.hover {
  top: -76px;
  left: 20px;
  border-top: 1px solid #000;
}

#header ul li a:hover span#second {
  left: 136px;
}

#header ul li a:hover span#third {
  left: 270px;
}

#header ul li a:hover span#fourth {
  left: 390px;
}


/**************************************************************
   #content: Middle content section
 **************************************************************/

#content {
  clear: both;
  float: left;
  width: 100%;  
  margin: 40px 0;

  text-align: center;
}

/* Featured item image */
#content a#featured img {
  border: 8px solid #2E2D2E;
}

#content a:hover#featured img {
  border: 8px solid #242324;
}


/* Featured item description */
#content a#description {  
  display: block;
  width: 700px;
  margin: 0 auto;  
  padding: 40px 0 20px 0;
  
  text-decoration: none;
  text-align: justify;
  color: #CCC;
}

#content a:hover#description {
  color: #FFF;
}

#content a#description span.link {
  display: block;
  text-align: right;
  color: #FCEFA4;
}

#content a:hover#description span.link {
  color: #FC0;
}
#content #narrow {
  display: block;
  width: 700px;
  margin: 0 auto;  
  padding: 20px 0;
  text-align: justify;
}


/**************************************************************
   Success and error classes for the contact form
 **************************************************************/

#success, 
#error {
  display: none;
  padding: 15px 10px 15px 50px;
  margin: 20px 0 ;
  
  color: #222;
  background-color: #FCEFA4;
  background-repeat: no-repeat;
  background-position: 11px 11px;  
  border-right: 1px solid #FC0;
  border-bottom: 1px solid #FC0;
}

#success {
  background-image: url(../img/icons/success.gif);
}

#error {
  background-image: url(../img/icons/error.gif);
}


/**************************************************************
   Generic Classes
 **************************************************************/

.alignRight {
  text-align: right;
}
