@charset "utf-8";
body {
font: 100% Verdana, Arial, Helvetica, sans-serif;
background: black;
margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
padding: 0;
text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
color: #000000;
}
.oneColFixCtr #container {
//width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
//width:1040px; //1260px;
//background:#dd9944;
margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
border: 1px solid #000000;
text-align: left; /* overrides the text-align:center on the body element */
}
.oneColFixCtr #mainContent {
/*padding: 0 10px;*/ /* padding is the space inside the div box and margin is the space outside the div box */
padding: 10px 10px; /*top/bottom, sides*/
color:white;
//font-family: "Engravers Roman BT",Georgia,"Times New Roman",Times,serif;
//font-variant: small-caps;
font-size:18.0pt;
/*width:1040px;*/
}

/*a:link { color:#eb964f }
a:visited { color:#eb964f }
a:hover { color:#ed7d60; }*/
a:link { color:white; text-shadow:1px 1px black; text-decoration: none; }
a:visited { color:white; text-shadow:1px 1px black; text-decoration: none; }
a:hover { color:orange;
  -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Safari 3-8 */
  transform: scale(1.5); 
 }

a.whiteBG
{
    color:black; text-shadow:0px 0px black; 
}
a.whiteBG:hover {color:orange;}
 
.zoom {
transition: transform .2s;
}
.zoom:hover {
  -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Safari 3-8 */
  transform: scale(1.5); 
}

.zoom2 {
  transition: transform .2s;
}
.zoom2:hover {
  -ms-transform: scale(1.01); /* IE 9 */
  -webkit-transform: scale(1.01); /* Safari 3-8 */
  transform: scale(1.01);
}


//mobile-friendly
img {
  max-width: 100%;
  display: block;
}