﻿/* Filename: main.css
 * Author: Neil Spake
 * Revision History:
 * 31 Jan 2008 - Initial Version.
 *               This version supports vertical global navigation as well as
 *               horizontal page navigation.
 *
 * Relative Font Sizes (in ref to 12pt):
 * > 1.167: 14pt
 * > 0.83: 10pt
 * > 0.75: 9pt
 * > 0.67: 8pt
 * > 0.58: 7pt
 *
 * Wimberley Candy Colors:
 * Brown: #6d4508
 * Orange: #f19614
 * Pink: #d53281
*/

/********************************************************************************/
/* START OF CSS CODING FOR  WIMBERLEY CANDY COMPANY WEBSITE                     */
/********************************************************************************/

/****************************************/
/* BASIC (X)HTML ELEMENTS               */
/****************************************/

/* THE UNIVERAL */
* {
  margin: 0;
  padding: 0;
}

body {
}

p {
  margin-top: 1.5em;
  margin-right: 20px;
  margin-left: 20px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.75em;
  text-align: justify;
  color: #6d4508;
}

/* H1, USED FOR PAGE TITLES */
h1 {
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 0;
  margin-left: 13px;
  height: 25px;
  line-height: 25px;
  color: #6d4508;
  text-indent: 0.5em;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.83em;
  font-weight: bold;
}

/* H2, USED FOR PAGE SUB HEADINGS (NEXT IMPORTANT AFTER PAGE TITLE) */
h2 {
  margin-top: 2.0em;
  margin-right: 20px;
  margin-left: 20px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.75em;
  font-weight: bold;
  color: #6d4508;
}

/* H3, CURRENTLY NOT USED */
h3 {
  margin: 0;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.67em;
  font-weight: bold;
}

/* H4, H5 NOT USED GLOBALLY, ONLY LOCALLY */

/****************************************/
/* PAGE 'CONTAINER'                     */
/****************************************/
#container {
  position: absolute;
  width: 680px;
  margin-top: 20px;
/*  border: solid #6d4508 1px; */
  border: solid #d53281 1px;
  background: #ffffff;
  left: 50%;
  margin-left: -340px;
}

/****************************************/
/* HEADER (LOGO)                        */
/****************************************/
#header {
  position: relative;
  height: 80px;
  z-index: 1;
  background-image: url('../../images/page_header_logo_left_template.png');
/*  background-image: url('../../images/page_header_logo_left_strawberry.jpg'); */
  background-repeat: no-repeat;
}

#header p {
  display: block;
  margin-top: 0px;
/*  line-height: 20px; */
  middle;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.67em;
  font-weight: bold;
  color: #000000;
  text-align: center;
}

#header p img {
}

#header p img.img_right {
  position: absolute;
  border: 0;
  margin: 0;
  top: 1px;
  z-index: 2;
  right: 10px;
}


/****************************************/
/* TOP (BASIC) NAVIGATION               */
/****************************************/
#topNav {
  position: absolute;
  margin: 0;
  padding: 0;
  top: 50px;
  z-index: 2;
  right: 140px;
}

#topNav ul {
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
}

#topNav ul li {
  float: left;
  margin: 0;
  padding: 0;
  display: block;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.58em;
  font-weight: bold;
}

#topNav ul a {
  display: block;
  float: left;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 1px;
  border-color: #4f4fa8;
  border-style: solid;
  padding-right: 0.75em;
  padding-left: 0.75em;
  text-decoration: none;
  color: #000000;
}

#topNav ul .first a {
  border-left: 0;
}

#topNav ul a:hover {
  color: #f19614;
  font-weight: bold;
}

/****************************************/
/* SITE NAVIGATION                      */
/****************************************/

#siteNav {
  float: left;
}

#siteNav ul {
  float: left;
  list-style: none;
  width: 680px;
/*  background: #6d4508; */
  background: #d53281;
}

#siteNav ul li {
  float: right;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.67em;
  font-weight: normal;
}

#siteNav ul a {
  display: block;
  float: left;
  padding-top: 0.375em;
  padding-bottom: 0.375em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  line-height: 1.5em;
  text-decoration: none;
  color: #ffffff;
}

#siteNav ul a:hover {
  background: #f19614;
}

/****************************************/
/* PAGE CONTENT - NORMAL                */
/****************************************/
#content {
  float: right;
  width: 680px;
  min-height: 380px;
  border-bottom: solid #d53281 5px;
}

#content h1, #content h2, #content h3, #content p {
/*  margin-right: 2px; */
/*  margin-left: 2px; */
}

#content ul {
  margin-right: 2px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.75em;
  font-weight: normal;
}

/****************************************/
/* PAGE CONTENT - ENTRY PAGE            */
/****************************************/
#content_elevation {
  clear: both;
  width: 680px;
  height: 376px;
  margin-left: 0px;
  margin-right: 0px;
  background: url('../../images/front_elevation_680.jpg');
  background-repeat: no-repeat;
/*  border-bottom: solid #6d4508 5px; */
  border-bottom: solid #d53281 5px;
}

/****************************************/
/* PAGE CONTENT - CONTACT PAGE          */
/****************************************/
#contact {
}

#contact p {
  margin-top: 0.25em;
  margin-right: 20px;
  margin-left: 20px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.75em;
  text-align: justify;
  color: #6d4508;
}

/****************************************/
/* FOOTER (COPYRIGHT)                   */
/****************************************/
#footer {
  clear: both;
  margin-right: 1px;
  margin-bottom: 1px;
  margin-left: 1px;
/*  margin-top: 10px; */
}

#footer p {
  display: block;
  margin-top: 0px;
  height: 20px;
  line-height: 20px;
  middle;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.67em;
  font-weight: bold;
  color: #6d4508;
  text-align: center;
}

#dummyClear {
  clear: both;
}

/****************************************/
/* PAGE NAVIGATION                      */
/****************************************/
/* PAGE NAVIGATION AREA */
#navArea {
/*  position: relative; */
  float: left;
  width: 200px;
  height: 200px;
  background: #ffffff;
}

/* PAGE NAVIGATION */
#pageNav {
  float: left;
  margin: 0;
  padding: 0;
}

/* SITE SECTION TITLE, H4 */
#pageNav h4 {
  height: 40px;
  line-height: 40px;
  left middle;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.83em;
  font-weight: normal;
  text-align: center;
  color: #ffffff;
  background: #d53281;
}

/* PAGE NAVIGATION: SITE SUBSECTION PAGE LINKS, UL */
#pageNav ul {
  margin-top: 10px;
  padding: 0;
  list-style: none;
}

#pageNav ul li {
  margin: 0;
  padding: 0;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.58em;
  font-weight: normal;
  display: inline; /* KLUDGE: Removes gaps in IE/Win */
}

#pageNav ul a {
  display: block;
  margin: 0;
  padding: 0;
  left;
  middle;
  height: 22px;
  line-height: 22px;
  text-decoration: none;
  text-indent: 20px;
  color: #000000;
}

#pageNav ul a:hover {
  color: #d53281;
}


/* ENTRY PAGE */

#homeEntry {
  display: block;
  z-index: 2;
  height: 400px;
  margin-top: 40px;
  margin-left: 25px;
  background: url('../../images/combined_logo_front.gif');
  background-repeat: no-repeat;
}

#homeEntry h1 {
  margin-top: 250px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.83em;
  color: #6d4508; 
  font-weight: bold;
}

#homeEntry p {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.83em;
  color: #6d4508; 
  font-weight: bold;
}

#spacerP p {
  margin-top: 100px;
}


/* EVENTS PAGE */

#events #content h2 {
  margin-top: 1.0em;
  margin-bottom: 0.25em;
}

#events #content p {
  margin-top: 0.5em;
  margin-bottom: 0;
  font-size: 0.67em;
}


/****************************************/
/* THIS STUFF MAY NEED TO GO IN A FILE  */
/****************************************/

#confections #siteNav .confections a {
  color: #d53281;
  cursor: default;
}

#confections #siteNav .confections a:hover {
  color: #d53281;
  background: none;
}

#gifts #siteNav .gifts a {
  color: #d53281;
  cursor: default;
}

#gifts #siteNav .gifts a:hover {
  color: #d53281;
  background: none;
}

#fashions #siteNav .fashions a {
  color: #d53281;
  cursor: default;
}

#fashions #siteNav .fashions a:hover {
  color: #d53281;
  background: none;
}

#toys #siteNav .toys a {
  color: #d53281;
  cursor: default;
}

#toys #siteNav .toys a:hover {
  color: #d53281;
  background: none;
}

#parties #siteNav .parties a {
  color: #d53281;
  cursor: default;
}

#parties #siteNav .parties a:hover {
  color: #d53281;
  background: none;
}