/* ~~ Element/tag selectors ~~ */
/* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */

ul, ol, dl { 
  padding: 0;
  margin: 0;
}
/* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
/* padding-left: 15px; adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */

h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
  padding-right: 15px;
  padding-left: 15px; 
  font-family: Verdana, Arial, Helvetica, sans-serif;
  color: #FFF;
}
/* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */

a img { 
  border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
   /* color: #06F; #222BBB blue-almost like def color but not shown with black bg ; #33FFFF turquiose and this turquiose #00CCFF is nice too  */
   /* text-decoration: underline; --  Unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */

a:link {
  color: #2845c4; // #2153c2; // marine blue
  font-style: italic;
  text-decoration: underline; 
}
a:visited {
  color: #2845c4; // #2651b3; // slightly darker marine blue
  font-style: italic;
  text-decoration: none;
}
a:hover, a:active, a:focus {
  text-decoration: none;
  font-style: italic;
  color: #ecb613; // yellow
}
/* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
.clearfloat {
  clear:both;
  height:0;
  font-size: 1px;
  line-height: 0px;
}
/******************************/
/*   main.css begins here    */
/******************************/
/* contact us email */
a[href^="mailto"] { color: #00F; }

/******************************/
.containerHdr {
  margin: auto;
  padding-top:10px;
  width:900px;
  height:180px;
  background-color: #f9f6e7;
// border: solid 1px yellow;
}
.containerTrim {
  margin: auto;
  padding-top:10px;
  width:900px;
  height:20px;
// border: solid 1px red;
}
.containerTrimColor {
  margin: auto;
  padding-top:10px;
  width:900px;
  height:10px;
  background-color: #f9f6e7;
// border: solid 1px red;
}
.bgColor {
  background-color: #f9f6e7;
}
.containerOrgName {
  margin: auto;
}
/*
.bgColor {
  background-color: #f9ece0; 
  background: -moz-linear-gradient(top, #f9ece0 40%, #304455 100%);
  background: -webkit-linear-gradient(top, #f9ece0 40%, #304455 100%);
  background: -o-linear-gradient(top, #f9ece0 40%, #304455 100%);
  background: -ms-linear-gradient(top, #f9ece0 40%, #304455 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#304455', endColorstr='#304455',GradientType=0 );
  background: linear-gradient(top, #f9ece0 40%, #304455 100%);
}
.bgColorRev {
  background-color: #304455; 
  background: -moz-linear-gradient(top, #304455 90%, #f9ece0 100%);
  background: -webkit-linear-gradient(top, #304455 90%, #f9ece0 100%);
  background: -o-linear-gradient(top, #304455 90%, #f9ece0 100%);
  background: -ms-linear-gradient(top, #304455 90%, #f9ece0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9ece0', endColorstr='#304455',GradientType=0 );
  background: linear-gradient(top, #304455 90%, #f9ece0 100%);
}
*/
.imgOrgName {
  display: block;
  margin: auto;
  padding-top:10px;
// border: solid 1px green;
}
.orgHdgContainer {
  margin: auto;
  margin-top:+20px;
// border: solid 1px black;
}
.orgHdg {
  font-family: "Helvetica", "Trebuchet MS", "sans-serif";
  font-size: 1.4em;
  text-align:center;
  font-style: italic;
  letter-spacing: 0.05em;
  color: #5b5a5a;
// border: solid 1px yellow;
  /* margin-top: -1em; */
}
/************************/
.tmpHdg {
  font-family: "Helvetica", "Trebuchet MS", "sans-serif";
  font-size: 0.8em;
  text-align:center;
  font-style: italic;
  color: grey; 
}
/********************/
.orgSubHdgContainer {
  margin: auto;
  padding-top:30px;
// border: solid 1px aqua;
}
.orgSubHdg {
  font-family: "handwriting-Dakota", "Times New Roman", "Trebuchet MS", "sans-serif";
  font-size: 1.5em;
  font-style: italic;
  text-align:center;
  letter-spacing: 0.12em;
  color: #5b5a5a;
  // border: solid 1px blue;
  /* margin-top: -1em; */
}
/******************************/
/* menu on the top */
.containerMenu {
  margin:auto;
  width:800px;
  padding-top:20px;
  // border: solid 1px red;
}
.menu {
  text-align:center;
  font-size:1em;
  font-style:italic;
  font-family: "Lucida Sans Unicode", "Arial", "Trebuchet MS", "sans-serif";
  // font-weight: bold;
}
.divTableMenu {
  margin:auto; 
  width:100%;
  display: table;
}
.divTableBody {
  display: table-row-group;
}
.divTableRow {
  display: table-row;
}
.divTableCellMenu {
  margin:auto;
  display: table-cell;
  vertical-align:bottom;
}
/*****************/
/* button */
.bttnRight {
  display:block;
  margin: auto;
  float:right;
  font-family: "Helvetica", "Trebuchet MS", "sans-serif";
  font-size: 1em;
  text-align:center;
  color: #5b5a5a;
// border: solid 1px orange;
}
.bttnRound {
// border-radius: 10%;
  font-family: "Helvetica", "Trebuchet MS", "sans-serif";
  font-weight: bold;
  font-size: 1em;
  text-align:center;
  font-style: italic;
  color: black;
  padding: 2px 15px; // top and bottm is 2px; left and right is 15px
  filter: dropshadow(color=#5b5a5a, offx=1, offy=1);
}
.bttnColor {
  // border: solid 1px #a6998d;
  background-color: #f9ece0; 
  background: -moz-linear-gradient(top, #f9ece0 0%, #dbc1a9 100%);
  background: -webkit-linear-gradient(top, #f9ece0 0%, #dbc1a9 100%);
  background: -o-linear-gradient(top, #f9ece0 0%, #dbc1a9 100%);
  background: -ms-linear-gradient(top, #f9ece0 0% ,#dbc1a9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dbc1a9', endColorstr='#dbc1a9',GradientType=0 );
  background: linear-gradient(top, #f9ece0 0% ,#dbc1a9 100%);
  -webkit-box-shadow: 0px 0px 1px #ffc600, inset 0px 0px 1px #FFFFFF;
  -moz-box-shadow: 0px 0px 1px #ffc600, inset 0px 0px 1px #FFFFFF;
  box-shadow: 0px 0px 1px #ffc600, inset 0px 0px 1px #FFFFFF;
}
/*****************/
.itmSold {
  display: inline-block;
  font-family: "Helvetica", "Trebuchet MS", "sans-serif";
  font-size: 1.2em;
  font-weight:bold;
  color: #bd2a0b; //#ed360f;  // #a32308;
}
/*****************/
.containerCopyright {
  float:left;
  margin:auto;
  width:952px;
  padding-top:50px; 
  padding-bottom:20px; 
// border: solid 1px green;
}
.paraCopyright {
  text-align:center;
  font-family: "Trebuchet MS", "sans-serif";
  font-style: italic;
  font-size:0.6em;
  color:#c9c0ba; 
}
/******** end ************/
