/* ~~ 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: #04047a;  // #03C; #6F6;
	font-style: normal;
	text-decoration: underline; 
}
	 /* color: #6CF; -- 00CCFF is turquiose FFCC00; yellow and this leon green is nice too #c0ff00 */
a:visited {
	color: #04047a; 
	font-style: normal;
	text-decoration: none;
}
/* 47f924 #6F0 this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
a:hover, a:active, a:focus {
	text-decoration: none;
	font-style: normal;
	color: #1c2791;
}


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

/******************************/
/* menu on the top */
.menuContainer {
  margin:auto;
  width:300px;
// border: solid 1px red;
}
.menu {
  text-align:center;
  font-size:0.9em;
  font-family: "Lucida Sans Unicode", "Arial", "Trebuchet MS", "sans-serif";
  font-weight: bold;
  color: #000;
}
/******************************/
.orgNameContainer {
  margin: auto;
  padding-top:20px;
  width:500px;
  // transform:rotate(1deg);
  // border: solid 1px red;
}
/* use brush script until get an image file; dark grey color */
/* h-shadow v-shadow blur-radius color silver #C0C0C0 */
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  // border: solid 1px yellow;
}
.orgName2Container {
  margin: auto;
  margin-top:-40px;
  width:465px;
  // border: solid 1px green;
}
.orgName2 {
  font-family: "Helvetica", "Trebuchet MS", "sans-serif";
  font-size:18px; 
  text-align:right;
  letter-spacing:10px; 
  color: #000;
  /* margin-top: -1em; */
}
.orgHdgContainer {
  margin: auto;
  padding-top:30px;
  // border: solid 1px red;
}
.orgHdg {
  font-family: "Helvetica", "Trebuchet MS", "sans-serif";
  font-size: 0.8em;
  text-align:center;
  font-style: italic;
  color: #000;
  /* margin-top: -1em; */
}
/**************************/
.divTable {
  margin:auto; 
  display: table;
  width: 100%;
  // border: solid 1px red;
}
.divTableBody {
  display: table-row-group;
}
.divTableCell {
  display: table-cell;
  /* padding: 3px 10px; */
/*
  padding-left: 10px; 
  padding-right: 15px;
*/
  // border: solid 1px red;
}
.divTableRow {
  display: table-row;
  // border: solid 1px red;
}
