#content
{
	clear: both;
	padding: 0 2em;
	background-color: #FFFFFF;
}

#scena
{
    cursor: crosshair;
    /*-webkit-text-stroke: 1px black;*/
    text-shadow: /*outline stroke*/
     -1px -1px 1px #000,  
      1px -1px 1px #000,
     -1px  1px 1px #000,
      1px  1px 1px #000;
}

#scena_dlg,
.inventory_dlg
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    background-color: transparent;
    z-index: 1000;
    display: none;
    cursor: default;
}

#scena_menu
{
    position: absolute;
    bottom: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    z-index: 550;
    height: 26px;
}

#scena_menu:hover,
#scena_menu.touchscreen_hover
{
    height: auto;
}

.scena_menu
{
    float: left;
    position: relative;
    padding: 8px;
    margin-left: 2%;
    background-color: rgba(16,16,16,.5);
    color: goldenrod;
    font-weight:bold;
    display: inline-block;
    cursor: pointer;
}

.scena_menu:hover,
.scena_menu.touchscreen_hover
{
    background-color: rgb(0, 0, 0);
    color: white;    
}


.scena_menu a
{
    color: white;
}

.scena_menu a:hover,
.scena_menu a.touchscreen_hover
{
    color: goldenrod;
}

.scena_inv,
#scena_conversation
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    padding-top: 3%;
    padding-bottom: 3%;
    background-color: rgba(49,79,79,.75);
    z-index: 500;
    display: block;
    cursor: default;
    color: white;
    font-weight:bold;
    text-align: center;
}

#scena_conversation
{
    display: none;
    padding: 0;
    background-color: transparent;
    color: white;
    font-weight:normal;
    font-family: arial;
    font-size: 110%;
    /*-webkit-text-stroke: 1px black;*/
    text-shadow: /*outline stroke*/
     -1px -1px 1px #000,  
      1px -1px 1px #000,
     -1px  1px 1px #000,
      1px  1px 1px #000,

     -2px -2px 1px #111,  
      2px -2px 1px #111,
     -2px  2px 1px #111,
      2px  2px 1px #111,

     -3px -3px 1px #222,  
      3px -3px 1px #222,
     -3px  3px 1px #222,
      3px  3px 1px #222;

    text-align: center;
    cursor: default;
}

#scena_conversation .say
{
    padding: 15% 10%;
    width: 80%;
    height: 60%;
    background-color: transparent;
    display: none;
}

#scena_conversation #reply
{
    background-color: transparent;
    display: none;
}

#scena_conversation #reply div
{
    background-color: rgba(0,115,147,.3);
    color: tan;
    cursor: pointer;
    padding: 6px;
    margin-left: 24px;
    margin-right: 24px;
    margin-bottom: -1px;
    border: 1px solid white;
    margin: 1px;
}

#scena_conversation #reply div:hover,
#scena_conversation #reply div.touchscreen_hover
{
    color: white;
    background-color: rgba(218, 165, 32, .3);/*goldenrod;*/
}

.scena_inv .itm
{
    position: relative;
    display: inline-block;
    float: left;
    cursor: pointer;
    overflow: hidden;
    height: 30%;
    width: 20%;
}

#scenadialog
{
    position: absolute;
    width: 60%;
    top: 15%;/*25%*/
    left: 20%;
    background-color: transparent; /*rgba(0,115,147,.7);*/
    border: 0px solid goldenrod;
    color: white;
    font-weight:normal;
    font-family: arial;
    font-size: 110%;
    /*-webkit-text-stroke: 1px black;*/
    text-shadow: /*outline stroke*/
     -1px -1px 1px #000,  
      1px -1px 1px #000,
     -1px  1px 1px #000,
      1px  1px 1px #000,

     -2px -2px 1px #111,  
      2px -2px 1px #111,
     -2px  2px 1px #111,
      2px  2px 1px #111,

     -3px -3px 1px #222,  
      3px -3px 1px #222,
     -3px  3px 1px #222,
      3px  3px 1px #222;

    text-align: center;
    padding: 3px;
    cursor: default;
    padding-bottom: 12px;
/*
    border-radius: 15px;
-moz-border-radius: 15px;
-moz-box-shadow: 0px 10px 55px #000;
-webkit-box-shadow: 0px 10px 55px #000;
    box-shadow: 0px 10px 55px #000;
*/
}

#scenadialog i
{
    text-align: left;
    padding-left: 12px;
    color: goldenrod;/*black*/;
    background-color: transparent;/*goldenrod;rgba(255, 255, 255, .75);*/
    display: none; /*block;*/
    margin-bottom: 24px;
}

#scenadialog p
{
    padding-left: 12px;
    padding-right: 12px;
    line-height: 1.5em;
}

#scenadialog div
{
    background-color: rgba(0,115,147,.3);
    color: goldenrod;
    cursor: pointer;
    padding: 6px;
    margin-left: 24px;
    margin-right: 24px;
    margin-bottom: -1px;
    border: 1px solid white;
}

#scenadialog div:hover,
#scenadialog div.touchscreen_hover
{
    color: white;
    background-color: rgba(218, 165, 32, .3);/*goldenrod;*/
}

// To stop the browser asking you to copy/save/select the image or whatever. (mobile touchscreens)
.hover {
-webkit-user-select: none;
-webkit-touch-callout: none;
}

/* CLASSES */

.item
{
    display: none;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(16,16,16,.5);
    color: goldenrod;
    font-weight:bold;
    text-align:center;
    z-index: 700;
    padding-bottom: 2px;
}

.clearer
{
	clear: both;
	height: 1px;
	font-size: 1px;
	line-height: 1px;
}

.hidden
{
	position: absolute;
	left: -10000px;
}

.half
{
    display: block;
    float: left;
    width:48%;
    padding: 1%;
}

.weatherman
{
position: relative;
display: block;
height: 216px;
width: 120px;
float: left;
}
.weatherman IMG
{
position: absolute;
top: 0;
left: 0;
height: 100%;
border: 0;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}

.stats
{
    font-family: arial;
    position: relative;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    background-color: rgba(0,0,0,0.75);
    color: goldenrod;
    padding-bottom: 1em;
    padding-left: 0.5em;
    padding-right: 0.5em;
}
.stats i
{
    color: white;
}
.stats_ver
{
    position: relative;
    width: 100%;
    font-size: 10px;
    line-height: 16px;
    background-color: rgba(0,0,0,.25);
    color: blue;
}
.stats_ver ul
{
    list-style-type: none;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    position: relative;
    width: 100%;
    height: 20em;
    background-color: white;
}
.stats_ver li
{
    text-decoration: none;
    position: relative;
    float: left;
    height: 100%;
    width: 100%;
    text-align: center;
}
.stats_ver li div
{
    text-decoration: none;
    position: absolute;
    bottom: 2em;
    height: 0%;
    width: 90%;
    color: rgba(0,0,0,0);
    background-color: rgba(0, 20, 200, 0.3);
}
.stats_ver li:hover
{
    z-index: 10;
    font-weight: bold;
    font-size: 12px;
    background-color: rgba(0,0,0,0.1);
}
.stats_ver li:hover div
{
    color: black;
    text-shadow: 1px 1px 3px white;
}
.stats_hor
{
    position: relative;
    width: 100%;
    font-size: 12px;
    line-height: 1em;
    background-color: rgba(0,0,0,.25);
    color: blue;
}
.stats_hor ul
{
    list-style-type: none;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    position: relative;
    width: 100%;
    background-color: white;
}
.stats_hor li
{
    text-decoration: none;
    position: relative;
    height: 1em;
    width: 100%;
    text-align: left;
    padding-left: 0.5em;
}
.stats_hor li div
{
    text-decoration: none;
    position: absolute;
    left: 5em;
    top: 0;
    height: 90%;
    width: 100%;
    color: rgba(0,0,0,0);
    background-color: rgba(0, 20, 200, 0.3);
}
.stats_hor li:hover
{
    z-index: 10;
    font-weight: bold;
    font-size: 12px;
    background-color: rgba(0,0,0,0.1);
}
.stats_hor li:hover div
{
    color: black;
}
