/* apply a natural box layout model to all elements */
/* http://paulirish.com/2012/box-sizing-border-box-ftw/ */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

.chromeframe {position: absolute; top: 0;}

/* Ok, this is where the fun starts.
-------------------------------------------------------------------------------*/

/* new Linux- and Windows-friendly sans-serif font stack: http://mky.be/fontstack */
body {font: 13px Helmet, Freesans, sans-serif;}

/* using local fonts? make sure to read up on Paul Irish's 
	Bulletproof @font-face syntax: http://mky.be/font-face/bulletproof/ */

/* we like off-black for text */
body, select, input, textarea {color: #333;}

a {color: #03f;}
a:hover {color: #69f;}

/* Custom text-selection colors (remove any text shadows: twitter.com/miketaylr/status/12228805301) */
::-moz-selection{background: #fcd700; color: #fff; text-shadow: none;}
::selection {background: #fcd700; color: #fff; text-shadow: none;} 

/*	j.mp/webkit-tap-highlight-color */
a:link {-webkit-tap-highlight-color: #fcd700;} 

ins {background-color: #fcd700; color: #000; text-decoration: none;}
mark {background-color: #fcd700; color: #000; font-style: italic; font-weight: bold;}

/* Mozilla dosen't style place holders by default */
input:-moz-placeholder { color:#a9a9a9; }
textarea:-moz-placeholder { color:#a9a9a9; }

em{font-style: italic;}

strong{font-weight: bold;}

.hide{display:none;}

.clear{clear:both;}

.right{float:right;}

.left{float:left;}

img {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
/*display:none;*/
}


html body{
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    background: #333333;
}

#wrapper{
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 1024px;
    opacity:0;
}

#interface{
    position: absolute;
    top:35%;
/*    width:700px;
    height: 30%;*/
}

#switches{
    position: relative;
    float: left;
    margin-left: 30px;
}

.mapSwitch{
    background: url(img/mapSwitchBG.png) 0 100% no-repeat transparent;
    width:110px;
    height: 44px;
/*    margin-left: 120px;*/
    position: relative;
    cursor: pointer;
}

.mapSwitch p:hover{
    color:#fff;
}

.mapSwitch p{
    text-transform: uppercase;
    font-size: 1.5em;
    text-align: left;
    position: relative;
    margin-left: 10px;
    line-height: 1.75em;
}

#world{
    margin-top:2px;
}

#map-canvas{
/*    background-image: url(img/patternBG.jpg);*/
    background: #333333 !important;
    position: relative;
    width:100%;
    height:100%;
}

/* Media queries!
-------------------------------------------------------------------------------*/
/*

/* iPad [portrait only] */
@media (max-device-width: 768px) and (orientation: portrait) {  #wrapper{
        min-width: 768px;
        max-width: 768px;
    } }

@media screen 
and (min-device-width : 800px) 
and (max-device-width : 1280px)
and (orientation: portrait) { #wrapper{
        min-width: 800px;
        max-width: 800px;
    } }