/**
* customized divs (containers) and framed objects (background and frame image).
*/

@font-face {
  font-family: Press;
  src: url(/fonts/PressStart2P-Regular.ttf);
}


/* game div without background image*/
.rpgui-container
{
	/* position style and default z */
  font-family: Press;
  font-size: 90%;
	overflow: show;
  max-width: 10%;
  max-height: 15%;
}

/* game div with golden2 background image*/
.rpgui-container.framed-golden-2
{
	/* border */
  text-align: center;
	border-style: solid;
	border-image-source: url("img/border-image-golden2.png");
	border-image-repeat: repeat;
	border-image-slice: 8 8 8 8;
	border-image-width: 18px;
	border-width: 15px;
	padding: 12px;
  font-size: 90%;

	/* internal border */
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;

	/* background */
	background: url("img/background-image-golden2.png") repeat repeat;
	background-clip: padding-box;
	background-origin: padding-box;
	background-position: center;

  position:absolute;
  left:83%;
  top:13%;
}
