/* ------------------------------
    Body & Global PROPERTIES
   ------------------------------ */

html {
  background-color: #5D5D5D;
}

body {
  background-color: #AAAAAA;	
  font-family: "Arial", Arial, sans-serif;
  width:1024px;
  margin-left: auto;
  margin-right: auto;
  border: 3px solid #2A623D;
  border-radius: 5px;
}


a {
}
a:link, a:visited {
  color:#0000ff;
}
a:hover {
  color:#2A623D;
}
a:active {
  color:#2A623D;
}

p { margin:0 }

.Apprentices_Game_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(Apprentices_Game_Images/Apprentices_Game_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 #2A623D;
    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:#4CCB78;
}
 
/* 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, .tab7:checked ~ .tab7, .tab8:checked ~ .tab8 {
    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;
}

table { border-collapse: collapse; }
tr { border: 1px solid #000; }
.bar1 {
  background-image: -webkit-linear-gradient(left, orange 45%, purple 45%);
} 
.bar2 {
  background-image: -webkit-linear-gradient(left, yellow 33%, blue 33%, blue 66%, #b8860b 66%);
} 

/* Image button - Enlarge on Click or Hover 
.imageContainer > img:active {
  position: relative;
  top: -500px;
  width: 926px;
  height: 1120px;
  width="463" height="560"
}
*/

.islandpopup {
  width:815px;
  height:985px;
  padding:0;
  margin:0;
}

.islandpopup img {
  width:805px;
  height:975px;
  padding:5px;
}

.modalDialog {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
    top: 50%;
    left: 50%;
    margin-top: -30px;
	margin-left:10px;
    transform: translate(-50%, -50%);
	background: rgba(0,0,0,0.8);
	z-index: 99990;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
}

.modalDialog:target {
	opacity:1;
	pointer-events: auto;
}

.modalDialog > div {
	position: relative;
	margin: auto;
	padding: 5px;
	border-radius: 10px;
	background: #fff;
	background: -moz-linear-gradient(#fff, #999);
	background: -webkit-linear-gradient(#fff, #999);
	background: -o-linear-gradient(#fff, #999);
}

.close {
	background: #606061;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	z-index: 99991;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

.close:hover { background: #00d9ff; }

.button {
  -webkit-border-radius:30;
  -moz-border-radius:30;
  border-radius:30px;
  font-family:Arial;
  color:#ffffff;
  font-size:12px!important;
  background:#075bed;
  padding:13px 35px 11px!important;
  text-decoration:none;
  text-transform:uppercase;
  background:-webkit-linear-gradient(180deg,#075bed,#075bed);
  background:linear-gradient(180deg,#075bed,#075bed);
}

.button :hover {
  background:#075bed;
  background-image:-webkit-linear-gradient(top,#075bed,#075bed);
  background-image:-moz-linear-gradient(top,#075bed,#075bed);
  background-image:-ms-linear-gradient(top,#075bed,#075bed);
  background-image:-o-linear-gradient(top,#075bed,#075bed);
  background-image:linear-gradient(to bottom,#075bed,#075bed);
  box-shadow:0 1px 15px rgba(0,0,0,0.1);
  text-decoration:none;
  color:#fff!important;
}



