/* ------------------------------
    Body & Global PROPERTIES
   ------------------------------ */

html {
  background-color: #ffffff;
}

body {
  background-color: #5F6B3E;	
  font-family: "Arial", Arial, sans-serif;
  width:1024px;
  margin-left: auto;
  margin-right: auto;
  border: 3px solid #d7be69;
  border-radius: 5px;
}


a {
}
a:link, a:visited {
  color:#0000ff;
}
a:hover {
  color:#5b5bff;
}
a:active {
  color:#5bff76;
}

p { margin:0 }

.ElizabethHeights_header (
  font-family: 'Brush Script MT', cursive;
  line-height: 50%;
)

.normal-col2 {
  -webkit-column-count: 2; /* Chrome, Safari, Opera */
  -moz-column-count: 2; /* Firefox */
  column-count: 2;
  -webkit-column-rule: 2px solid #aaaaaa; /* Chrome, Safari, Opera */
  -moz-column-rule: 2px solid #aaaaaa; /* Firefox */
  column-rule: 2px solid #aaaaaa;
  column-gap: 50px;
}

.keeptogether {
  display: table-cell;
  width: 450px;  
}



/* ------------------------------
            PAGE HEADER 
   ------------------------------ */
   
#header {
  background-image: url(EH_Images/EH_Banner.jpg);
  background-size: 1024px 200px;
  border-radius: 5px 5px 0 0;
  width:1024px;
  height:200px;
  text-align: center;
  line-height:200px;
  color:#ffffff;
  font-family: Lucida Bright, Georgia, serif;
  font-variant: small-caps;
  font-size:150%;
  text-shadow: -3px -2px #0000ff;
}
 

/* %%%%%%%%%%%%%%%
    Tabbed Build
   %%%%%%%%%%%%%%% */

/* Set the size and font of the tab widget */
.tabGroup {
    font: 10pt arial, verdana;
    width: 950px;
	height: 400px;
	margin: auto;
}
 
/* Configure the radio buttons to hide off screen */
.tabGroup > input[type="radio"] {
    position: absolute;
    left:-100px;
    top:-100px;
}
 
/* Configure labels to look like tabs */
.tabGroup > input[type="radio"] + label {
    /* inline-block such that the label can be given dimensions */
    display: inline-block;
 
    /* A nice curved border around the tab */
    border: 1px solid #1f222b;
    border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
     
    /* the bottom border is handled by the tab content div */
    border-bottom: 0;
 
    /* Padding around tab text */
    padding: 5px 10px;
 
    /* Set the background color to default gray (non-selected tab) */
    background-color:#E0D8BF;
}
 
/* Focused tabs need to be highlighted as such */
.tabGroup > input[type="radio"]:focus + label {
    border:1px solid #1f222b;
}
 
/* Checked tabs must be white with the bottom border removed */
.tabGroup > input[type="radio"]:checked + label {
    background-color:#ffffff;
    font-weight: bold;
    border-bottom: 1px solid #ffffff;
    margin-bottom: -1px;
}
 
/* The tab content must fill the widgets size and have a nice border */
.tabGroup > div {
    display: none;
    border: 1px solid #1f222b;
    background-color: #ffffff;
    padding: 10px 10px;
    overflow: auto;
     
    box-shadow: 0 0 20px #8f9294;
    -moz-box-shadow: 0 0 20px #8f9294;
    -webkit-box-shadow: 0 0 20px #8f9294;
     
    border-radius: 0 5px 5px 5px;
    -moz-border-radius: 0 5px 5px 5px;
    -webkit-border-radius: 0 5px 5px 5px;
}
 
/* This matchs tabs displaying to thier associated radio inputs */
.tab1:checked ~ .tab1, .tab2:checked ~ .tab2, .tab3:checked ~ .tab3, .tab4:checked ~ .tab4, .tab5:checked ~ .tab5, .tab6:checked ~ .tab6 {
    display: block;
}

/* Table for Buttons */
.buttonsposition {
  position:relative;
}

table.buttonstable {
  margin-right: 0px;
  margin-left: auto;
}

table.buttonstable td {
  -webkit-border-radius:20%;
  -moz-border-radius:20%;
  border-radius:20%;
  -moz-box-shadow:    5px 5px 3px #888888;
  -webkit-box-shadow: 5px 5px 3px #888888;
  box-shadow: 5px 5px 3px #888888;
  -webkit-transition:all .5s ease;
  -moz-transition:all .5s ease;
  transition:all .5s ease;
  -moz-opacity:.5;
  opacity:.3;
  border:1px solid #000000;
  padding:0;
}

table.buttonstable td:hover {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-opacity:1;
  opacity:1;
}

