body {
  background: url('../images/bg.png');
  background-repeat:no-repeat;
  background-size:100%;
  background-attachment: fixed;
  letter-spacing: 0.6px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  margin:0;
  position: relative;
}

.mainbody {
  width:950px;
  margin:auto;
  /* background-color: #1E142D; */
}

.filter-issueType::before{
    color: #088bb8;
    content: "Issue: ";
    border-left: 3px solid #078cb88f;
    padding-left: 3px;
}
.filter-type::before{
    color: #088bb8;
    content: "Type: ";
    border-left: 3px solid #078cb88f;
    padding-left: 3px;
}
.filter-priority::before{
    color: #088bb8;
    content: "Priority: ";
    border-left: 3px solid #078cb88f;
    padding-left: 3px;
}
.filter-status::before{
    color: #088bb8;
    content: "Stats: ";
    border-left: 3px solid #078cb88f;
    padding-left: 3px;
}
.filter{
    padding-bottom: 12px;
}
.latestActivities{
    margin-bottom: 10px;
    margin-top: 10px;
    border-top: 1px solid #CCC;
}

.activity .activitie-date{
    display: inline;
    font-size: 0.7em;
    color: gray;
    margin-right: 10px;
}

.activity .activitie-title{
    font-size: 0.9em;
    margin-right: 10px;
}

.activity{
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #CCC;
}

.activity:hover {
    background-color: #9e9e9e21;
}


progress{
    display: none;
}
.commands{
    text-align: center;

}
.demo-reportList{
}
.reportList{
    margin-bottom: 10px;
    margin-top: 10px;
    border-top: 1px solid #CCC;
}
.report{
    width: 100%;
    border-left: 3px solid #078cb88f;
    margin-bottom: 15px;
}
.report:hover{
    border-left: 3px solid #078cb8;
}
.report img{
    width: 10px;
    height: 10px;
    display: none;
}
.report .attachment{
    display: none;
}
.issue{
    width: 100%;
    min-height: 80px;
    margin-bottom: 10px;
    margin-top: 10px;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
}
.title{
    margin-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 1.1em;
	color: white;
}
.report .content{
    margin-left: 3px;
    color: #5c5959;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
}
.issueView .date, .report .date{
    font-size: 0.9em;
    color: #607D8B;
    margin-left: 0px;
    text-align: right;
    margin-top: 10px;
}

.issue .content{
    color: #5c5959;
    word-wrap:break-word;
}
.comment {
    border: 0px solid silver;
    border-radius: 10px;
    word-wrap:break-word;
}
.comment .content {
    border-top: 1px solid #9e9e9e4f;
    padding-top: 5px;
}
.comment.self{
    text-align: right;
    border: 1px solid #078cb833;
    margin-left: 5%;
    background-color: #6fbfa433;
}
.comment.noself{
    margin-right: 5%;
    border: 1px solid #546e7a30;
    background-color: #598fb521;
}
.comment .date{
    font-size: 0.7em;
    color: gray;
}
.self .author{
    color: #d4b44f;
}
.noself .author{
    color: #6fbfa4;
}
.sendComment{
    text-align: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #CCC;
}
.addComment {
    padding-bottom: 5px;
    padding-top: 5px;
    background-color: #078cb8;
    color: white;
    border-radius: 5px;
    margin-bottom: 10px;
}
.sendComment textarea {
    outline: none;
    margin-bottom: 3px;
    background-color: rgba(255,255,255,.5);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px;
    color: rgb(7,140,184);
    border: 1px solid #00BFFF;
    font-size: 16px;
    width: 67%;
    height: 83px;
    white-space: pre-wrap;
    margin-left: 33%;
}
.sendComment input{
}
.edit-comment{
    color: #5d86a3;
}
.edit-comment:hover{
    color: rgb(65,182,221);
}
.divtags{
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.tag{
    color: white;
    padding: 5px;
    border-radius: 5px;
    display: inline-block;
    background-color: #795548;
    margin-left: 10px;
}

.Bug{
    background-color: #B71C1C;
}
.Feature{
    background-color: #5E35B1;
}
.Enhancement{
    background-color: #7986CB;
}

.Client{
    background-color: #02094f;
}
.Item{
    background-color: #004d40;
}
.NPC{
    background-color: #607D8B;
}
.Map{
    background-color: #8BC34A;
}
.Pokemon{
    background-color: #009688;
}
.Quest{
    background-color: #4CAF50;
}
.Site{
    background-color: #F44336;
}
.Others{
    background-color: #795548;
}

.uploaded img{
    max-width: 30px;
    max-height: 30px;
    vertical-align: -50%;
}



.open{
    background-color: #CDDC39;
}
.closed{
    background-color: #f94538;
}

.High{
    background-color: red;
}
.Medium{
    background-color: #00BCD4;
}
.Low{
    background-color: orange;
}

.Waiting{
    background-color: #E91E63;
}
.More-Info{
    background-color: #FBC02D;
}
.Fixed{
    background-color: #2196F3;
}
.Rejected{
    background-color: #CCC;
}
.In-Tests{
    background-color: rgb(38,96,143);
}

.create{
    text-align: center;
    width: 80%;
    margin-left: 10%;
    margin-bottom: 10px;
    margin-top: 10px;
    border-top: 1px solid #CCC;
}
.create .create-upload{
    width: 69%;
    max-width: 578;
}
.create-report a{
    background: blue;
}
.create-report textarea, .create-title input{
    outline: none;
    margin-bottom: 3px;
    background-color: rgba(255,255,255,.5);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px;
    margin-top: 4px;
    color: rgb(7,140,184);
    border: 2px solid #00BFFF;
    font-size: 16px;
    width: 80%;
    white-space: pre-wrap;
}
.create-submit{
    margin-top: 100px;
}
.create-report textarea:disabled, .create-title input:disabled, .create-submit input:disabled{
    background-color: rgba(0, 0, 0, 0.12);
    border: 2px solid #f7fdff;
}
.create-issuetype{
    height: 43px;
    margin-left: 6%;
}
.create-issuetype label{
    float: none;

}

.create-upload, .create-upload-comment {
    border: dashed 1px #00bfff;
    padding: 5px 0;
    position: absolute;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 140%;
    text-align: center;
    width: 30%;
    max-width: 237px;
    border-radius: 5px;
    /* margin-left: 10%; */
    height: 71px;
}
.create-upload, .create-upload-comment progress{
    width: 80%;
}
.create-upload-input{
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -ms-filter: "alpha(Opacity=0)";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    overflow: hidden;
    margin: 0!important;
    padding: 0!important;
    width: 100%!important;
    height: 100%!important;
}
.option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 8.33333px;
    /* right: -10px; */
    bottom: 0;
    left: 0;
    height: 20px;
    width: 20px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    /* margin-right: 0.5rem; */
    outline: none;
    position: relative;
    z-index: 1000;
    border-radius: 5px;
}
.option-input:hover {
    background: #078cb870;
}
.option-input:checked {
    background: #078cb8;
}
.attachment img {
    max-width: 180px;
    max-height: 180px;
    margin-right: 0.4em;
    border: 1px solid;
    margin-top: 3px;
}
.attachment::before {
    font-family: FontAwesome;
    content: '\f0c6 Attachments:';
    display: block;
    font-size: 0.8em;
    margin-top: 10px;
    color: #e91e63;
}

.filters{
    margin-bottom: 10px;
    margin-top: 10px;
    border-top: 1px solid #CCC;
}
.filters-input:hover {
    background: #078cb870;
}
.filters-input:checked {
    background: #078cb8;
}
.filters-input{
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    /* position: relative; */
    margin-left: 0px;
    top: 8.33333px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 20px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    /* margin-right: 0.5rem; */
    outline: none;
    position: relative;
    border-radius: 5px;
}
.filters label{
    float: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}
.change{
    border-top: 1px solid #000000;
    text-align: center;
    height: 50px;
    display: none;
    margin-top: 10px;

}
.change::before{
    content: "New Value: ";
    color: #078cb8;
    font-size: 1.2em;
}
.change label{
    float: none;
    /* background-color: #00968800; */
    border: 1px solid #CCC;
    border-radius: 5px;
    padding-right: 3px;
}
.activeButton{
    background-color: #13537c;
}

.custom-menu {
    display: none;
    z-index: 1000;
    position: absolute;
    overflow: hidden;
    border: 1px solid #CCC;
    white-space: nowrap;
    font-family: sans-serif;
    background: #FFF;
    color: #333;
    border-radius: 5px;
    padding: 0;
}

/* Each of the items in the list */
.custom-menu li {
    padding: 8px 12px;
    cursor: pointer;
    list-style-type: none;
    transition: all .3s ease;
    user-select: none;
}

.custom-menu li:hover {
    background-color: #DEF;
}
.easy-autocomplete-container{
	position: absolute;
    z-index: 2;
    background-color: #078cb8;
    /* border-left: 3px solid #078cb8; */
    border-top: 0;
    width: 277.11px;
    border-radius: 10px;
}
.easy-autocomplete-container ul li{
	color: white;
}
.easy-autocomplete-container ul li.selected {
	width: 257.11px;
	background: none repeat scroll 0 0 #00BCD4;
	cursor: pointer;
	border-radius: 10px;
}

.eac-icon-left .eac-item img {
	margin-right: 4px;
	max-height: 30px;
	display: inline-block;
	vertical-align: middle;
}

.happening{
    padding-left: 20px;
    margin-bottom: 15px;
}

.error-box {
    /* padding: 10px; */
    margin: 10px 0;
    line-height: 1.8em;
    /* margin-left: .2em; */
    color: #D8000C;
    background-color: #ffd2d236;
    /* border: 1px solid rgba(244,67,54,0.34);*/
}

.sucess-box {
    padding: 10px;
    margin: 10px 0;
    line-height: 1.8em;
    color: #2a8103;
    background-color: rgba(76, 175, 80, 0.29);
}

.blue-box {
    padding: 10px;
    margin: 10px 0;
    line-height: 1.8em;
    margin-left: .2em;
    color: #3d7da0;
    background-color: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.27);
    word-break: break-all;
}

.menuMap{
    font-size: 1.2em;
}

.imageMap{
    max-width: 100%;
    max-height: 100%;
}

.mark {
  color: #FFF;
  font-weight: bold;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  font-size: 14px;
}

#informer{
    display: none;
    background-color: #2d5d93e6;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
    font-size: 18px;
    width: 50%;
    margin-left: 25%;
    margin-top: 5px;
    z-index: 100000;
    text-align: center;
    position: fixed;
    border: 1px solid #2196F3;
}

.house-map{
    border-radius: 10px;
    text-align: center;
    height:60px;
    width:60px;
    border:1px solid black;
    background-size: cover;
    background-position: center;
}

.house-map > .mark {
    position:relative;
    top: calc(50% - 11px); /* 50% - 3/4 of icon height */
}

.playerOutfit {
    border-radius: 30px;
    /*-webkit-box-shadow:  0 0 0 0, 0 0 1px 0 #00000096;
    box-shadow: 0 0 0 0, 0 0 1px 0 #00000096;*/
    margin-right: 5px;
}

.worldIcon{
    width: 45px;
    height: 45px;
    vertical-align: -100%;
}

.event {
    width: 65px;
    font-size: 10px;
    margin-left: 137px;
    padding-left: 3px;
    /* width: 32px; */
    /* height: 32px; */
    background-repeat: no-repeat;
    background-position: center center;
    /* text-indent: -900em; */
    color: #333;
    text-decoration: none;
    /* line-height: 100%; */
    white-space: nowrap;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    /* margin: 0 2px 5px 0; */
    background-color: #3e7edf;
    border: solid 1px #b8b8b9;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 0 rgba(0,0,0,.1);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 0 rgba(0,0,0,.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0 1px 0 rgba(0,0,0,.1);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.tooltip {
    display:none;
    position:absolute;
    border:1px solid #FFF;
    background-color:#598FB5;
    border-radius:5px;
    padding:5px;
    color:#fff;
    font-size:13px;
    opacity:0.9;
    width: 200px;
    letter-spacing:1px;
}

.ico{
    padding-left: 10px;
    text-decoration:none;
}
.ico:before{
    content: '';
    background:url('../../../../cdn2.iconfinder.com/data/icons/windows-8-metro-style/128/external_link.png');
    background-size:cover;
    position:absolute;
    width:13px;
    height:13px;
    margin-top:4px;
    margin-left:-14px;
}
h1, h2, h3, h4{font-weight:Bold;}
h1{font-size:120%;}
h2{font-size:110%;text-transform:uppercase;color:#e48e23;}
h3{font-size:110%;color:#e48e23;}
h4{font-size:90%;padding:0px;margin:0;border-left: 4px solid #114f76;padding-left: 5px;margin-bottom: 5px;}
h1, h2, h3, p{padding:10px;margin:0;}
ul, ol{margin:5px 20px;padding:0 20px;color:#ffffff;}
ul span, ol span{color:#ffffff;}
#menu ul{list-style:none;}
#menu ul li{display:inline;}

#sidebar{float:left;width:26.5%;padding:0;margin:20px 0 0 0;}
#sidebar .left-box{border:1px solid #EFF0F1;margin:0 0 5px 0;}
#sidebar ul.sidemenu{list-style:none;text-align:left;margin:3px 0 8px 0;padding:0;text-decoration:none;}
#sidebar ul.sidemenu a{font-weight:bolder;text-decoration:none;}
.world{text-shadow:1px 0 0 #CCC, -1px 0 0 #CCC, 0 1px 0 #CCC, 0 -1px 0 #CCC, 1px 1px #CCC, -1px -1px 0 #CCC, 1px -1px 0 #CCC, -1px 1px 0 #CCC;letter-spacing: 1.8px;}
label{float:left;width:140px;font-weight:bold;margin-top:8px;color:#fff;}
a.green{color:#0C0}
a.red{color:#F00}
input[type=text], input[type=password]{
    outline: none;margin-bottom:3px;
    background-color: transparent;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    border:1px;margin-top:4px;
    color:rgb(7, 140, 184);
    text-align:center;
    border: 2px solid #FF9800;
    font-size:18px;
}
input, select{
    /* margin-bottom: 3px; */
    background-color: #f4b048;
    background-color: #FF9800;
    -moz-border-radius: 0px 10px 0px 10px;
    -webkit-border-radius: 0px 10px 0px 10px;
    border-radius: 0px 10px 0px 10px;
    border: 2px;
    /* margin-top: 4px; */
    color: #FFFFFF;
    text-align: center;
    /*border: 2px solid #263238;*/
    font-size: 15px;
    height: 35px;
}
select{
    /* margin-bottom: 3px; */
    background-color: #607D8B;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 2px;
    /* margin-top: 4px; */
    color: #FFFFFF;
    text-align: center;
    /*border: 2px solid #263238;*/
    font-size: 15px;
    height: 35px;
}
select:disabled{
    background: #dddddd;
}
input:hover[type=submit]{background-color:#f4b048;}
form .formerize-placeholder{color:#555 !important;}
form::-webkit-input-placeholder{color:#555 !important;}
form:-moz-placeholder{color:#555 !important;}
form::-moz-placeholder{color:#555 !important;}
form:-ms-input-placeholder{color:#555 !important;}
.sex{height:18px;width:18px;}
input [type=file]{width:200px;}
.sub{margin-top:5px;background-color: #FF9800;
    height: 36px;
    width: 119px;
    border: none;}
.subAccount{min-width: 194px;}
.bar{font-weight:bold;margin-top:5px;margin-left:10px;font-size:13px;}
.toolbar{padding:10px;border:1px solid silver;font-weight:bold;margin-bottom:15px;}
.highlight:hover{background-color:lightyellow;padding:3px;}
.newsBody{white-space:normal;}
.newsFooter{padding-left:5px;font-size:12px;width:90%;}
.news{margin-bottom:15px;}
.readArchive{text-align:center;font-weight:bold;}
.viewComments{padding-left:5px;}
.comment{margin-bottom:10px;border:1px solid silver;padding:5px;}
.commentBody{margin-bottom:5px;padding-bottom:5px;border-bottom:1px dotted silver;}
.commentFooter{font-size:12px;}
.postToolBar form{background:none;text-align:right;padding-top:5px;border:none;margin:0px;}
.quote{padding:4px;border:1px solid silver;}
.moderatingPanel{border:1px solid silver;padding:5px;font-weight:bold;margin-bottom:5px;}
.postTitle{font-weight:bold;margin-left:20%;border-bottom:1px dotted silver;}
.bugtrackerProgressBar{width:100px;height:8px;border:1px solid silver;}
.bugtrackerProgress{float:left;height:8px;background:lightgreen;}
.bugtrackerRow{}
.bugtrackerBugTable{padding:5px;border:1px solid silver;}
.bugtrackerTitle{font-size:15px;font-weight:bold;margin-bottom:10px;}
.bugtrackerAttr{}
.video_comment{padding:5px;border:1px dashed silver;margin-top:4px;}
.video_search{padding:5px;text-align:center;border:1px dotted silver;margin-bottom:5px;font-weight:bold;}
.video_search input[type=text]{width:250px;}
.video_search input[type=submit]{margin-left:5px;}
.houses_list_box{border:1px dotted silver;margin-bottom:20px;}
.house_title{font-weight:bold;border-bottom:1px dotted silver;padding:5px;}
.house_content{padding:5px;}
.message .title{height:30px;padding-top:8px;padding-left:15px;font-weight:bold;background-repeat:repeat-x;}
.message .bar{border-top:1px solid silver;padding:5px;margin-left:0px;background-color:#e9edee;}
.signature {width: 100%;}
.messageAdd{border-left:1px solid silver;border-right:1px solid silver;border-bottom:1px solid silver;padding:5px;float:right;background-color:#e9edee;}
.avatar{padding:1px;border:1px groove silver;width:90px;height:90px;}
.friend{float:left;width:100px;text-align:center;}
.friend img{padding:1px;border:1px groove silver;width:90px;height:90px;}
.loader{margin-left:10px;display:none;}
.table{background:#333; border-spacing: 2px;}
.table ul{float:left;margin:0;padding:0;color:#000;}
.table ul li{list-style:none;padding:5px 10px;height:40px;padding-top:10px;}
.table ul li.title{font-weight:bold;background:#333;color:#fff;}
.table ul li.even{background:rgba(209, 209, 217, 0);}
.table ul li.odd{background:rgba(179, 199, 213, 0.16);}
.table input{margin:0}
#poll{overflow:hidden;}
#poll label{width:100%}
#poll input.button{margin:0;float:none;display:block}
#poll h2{margin:5px;padding:0;}
#poll ul, #poll ul li{margin:0;padding:0;list-style:none}
#poll ul{padding:10px;overflow:auto;}
table{border-spacing: 2px;}
.dex{
    position: absolute;
    height: 150px;
    width: 170px;
    margin: auto;
    vertical-align: baseline;
    background-repeat: no-repeat;
    margin-right: 32px;
    background-position: bottom;
    margin-left: 760px;
    margin-top:67px;
    }
fieldset{
    margin: 0px;
    border: 0px solid #598FB5;
    /* border-bottom-left-radius: 10px; */
    /* border-bottom-right-radius: 10px; */
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    /* width: 97%; */
}
fieldset legend{
    padding: 10px 0px 10px 0px;
    font-weight: 600;
    font-size: 16px;
    color: #FF9800;
    width: 100%;
    border-bottom: 1px solid;
    border-top: 1px solid;
}
.slider_bg {
    background-color: rgba(255,255,255,0.95);
    height: 166px;
    width: 345px;
    border-radius: 10px;
    border-radius-bottomleft: 10px;
    border-radius-bottomright: 10px;
    border-radius-topright: 10px;
    border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-topleft: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-top-left-radius: 10px;
    margin-left: 25px;
    margin-top: 8px;
    opacity: 0.95;
    filter: alpha(opacity=15);
    /* border-top: 1px solid #2b2b2b; */
    /* border-left: 1px solid #2b2b2b; */
    /* border-right: 1px solid #2b2b2b; */
    /* border-bottom: 1px solid #2b2b2b; */
}
.navbar {
	margin:auto;
	top: 0px;
	width:100%;
    max-width: 2000px;
    height: 45px;
    margin-top: 0px;
    -moz-box-shadow: 1px 0px 3px #2b2b2b;
    padding: 10px;
    padding-bottom: 8px;
    background-color: #1E142D;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat;
    background-position: 100% 0px;
	position: fixed;
}
.menuNavbar{
	  font-size: 16px;
    position: absolute;
    margin-left: 11px;
    padding-top: 0px;
    color: white;
}
.menuNavbar > a > .menu1, .menuNavbar > a > .menu2, .menuNavbar > a > .menu3{
    display: inline-block;
    border-top: 2px solid #2c5d93;
    padding-top: 10px;
    color: white;
    border-top: 2px solid transparent;
    -moz-transition: border-top-color .3s ease-in-out;
    -webkit-transition: border-top-color .3s ease-in-out;
    -ms-transition: border-top-color .3s ease-in-out;
    transition: border-top-color .3s ease-in-out;
}
.menuNavbar > a > .menu1:hover, .menuNavbar > a > .menu2:hover, .menuNavbar > a > .menu3:hover{
    border-top: 2px solid;
}
.menuNavbar > a > .menu2{
}
.navbarDivisor{
    width: 105%;
    margin-top: 5px;
    margin-left: -10px;
}
.navNextEvent{
    position: absolute;
    text-align: left;
    margin-top: 35px;
    color: white;
    font-size: 12px;
    /* border-top: 1px solid; */
    margin-left: 11px;
}
.navbuttons  {
    position:absolute;
    right:0;
	  font-size: 12px;
    float:center;
	font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;

}
.buttons{
    display: inline-block;
    padding: 12px;
    vertical-align: middle;
    color: white;
    width: autocomplete-container;
    text-align: center;
}
.buttonFacebook{
    background: linear-gradient(#4a9de7,#0288D1);
}
.buttonForum{
    background: transparent;
	border-radius: 0px;
}
.buttonBlog{
    background: linear-gradient(#FFC107,#FF9800);
}

.navbar_link{font-size:13px;color:white;float:left;margin-left:7px;margin-right:7px;/*-webkit-border-radius:3px;*/border-left:1px solid #232453;border-right:1px solid #232453;}
.navbar_link:hover{text-decoration:none;color:#FF9800;}
.navbar_link:active{text-decoration:none;color:white;}
.diabled_shop_option{text-decoration:none;color: rgba(0,0,0,.8);font-size: 20px;}
a:link{text-decoration:none;color:#FF9800;}
a:visited{text-decoration:none;color:#FF9800;}
a:active{text-decoration:none;color:#FF9800;}
a:hover{text-decoration:none;color:#FF9800;}

.menu_nav{display:inline-block;background-color:transparent;width:192px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;float:right;margin-top:-67px;/*padding: 7px; */font-size:13px;}
.servers_infso{background-color:transparent;width:214px;float:right;padding:10px;width:214px;margin-right:-230px;margin-top:190px;font-size:12px;text-align:center;}


.navbox_right{float:right;margin-top:14px;margin-right:230px;}

.acc_box{
    background-color: rgba(255,255,255,0.85);
    height: 111px;
    width: 342px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    margin-top: 48px;
    margin-left: 7px;
    -moz-box-shadow: 1px 0px 3px #2b2b2b;
    /* -webkit-box-shadow: 1px 0px 3px #2b2b2b; */
    /* box-shadow: 1px 0px 3px #2b2b2b; */
    background-image: url(../images/images/accbox_bg.html);
    background-repeat: no-repeat;
    background-position: 75px 36px;
    /* border-top: 1px solid #2b2b2b; */
    /* border-left: 1px solid #2b2b2b; */
    /* border-right: 1px solid #2b2b2b; */
    /* border-bottom: 1px solid #2b2b2b; */
}
.box_cont{
    padding-top:10px;
}
.pOnline{
    background: linear-gradient(#447593,rgb(38, 96, 143));
    background: -webkit-linear-gradient(#447593,rgb(38, 96, 143));
    height: 19px;
    font-size: 13px;
    color: #FFF;
    padding-top: 5px;
    padding-bottom: 1px;
    padding-left: 5px;
    vertical-align: middle;
}
.accbox_button{
    width: 170px;
    margin-top: 10px;
    margin-left: 10px;
    font-size: 13px;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    vertical-align: middle;
    background-color: rgba(236,236,236,0.71);
    border: solid 1px #3b6d908c;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.accbox_button_{
    width: 170px;
    margin-top: 4px;
    margin-left: 10px;
    font-size: 13px;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    vertical-align: middle;
    background-color: rgba(236,236,236,0.71);
    border: solid 1px #3b6d908c;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
.accbox_button a{color:#333;text-decoration:none}
.accbox_button a:hover{color:#333;text-decoration:none;text-shadow:0 0 3px #FFFFFF;}
.accbox_button_ a{color:#333;text-decoration:none}
.accbox_button_ a:hover{color:#333;text-decoration:none;text-shadow:0 0 3px #FFFFFF;}
.accbox_online a{color:#FFFFFF;text-decoration:none;padding-bottom: 2px;}
.accbox_online a:hover{color:#FFFFFF;text-decoration:none;text-shadow:0 0 3px #FFFFFF;}
.fastnews{margin-bottom:5px;color:#444;width:100%;}
.fastnews img{vertical-align:text-bottom;}
.fastnews a{
    display: block;
    margin: 0 0 5px;
    padding: 7px 16px;
    border: 1px dashed rgba(158, 158, 158, 0.32);
    border-radius: 6px;
    text-decoration: none;
}
.fastnews a:last-child{margin:0;}
.fastnews a:hover{text-decoration: none;}
#accout_log{background-color:#ECECEC;width:168px;-moz-border-radius-bottomleft:5px;-moz-border-radius-bottomright:5px;-webkit-border-bottom-left-radius:5px;-webkit-border-bottom-right-radius:5px;margin:auto;font-size:13px;color:#FFFFFF;padding:8px;margin-bottom:8px;}
.icon_menu_title{
    float: right;
    margin-top: -20px;
}
#community_button{
    background-repeat: no-repeat;
    height: 35px;
    width: 180px;
    margin: auto;
    position: relative;
    color: white;
    text-shadow: #263238 0px 0px 2px;
    font-size: 1.2em;
    letter-spacing: 1px;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 11px;
    background: red;
    background: -webkit-linear-gradient(#674a91,#5e3d86);
    background: -o-linear-gradient(#674a91,#5e3d86);
    background: -moz-linear-gradient(#674a91,#5e3d86);
    background: linear-gradient(#674a91,#5e3d86);
    border-radius: 15px 50px 0px 30px;
}
#navigation_button{
    background-repeat: no-repeat;
    height: 35px;
    width: 179px;
    margin: auto;
    position: relative;
    color: white;
    text-shadow: #263238 0px 0px 2px;
    font-size: 1.2em;
    letter-spacing: 1px;
    font-weight: bold;
    padding-top: 10px;
	padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 11px;
    background: red;
    background: -webkit-linear-gradient(#674a91,#5e3d86);
    background: -o-linear-gradient(#674a91,#5e3d86);
    background: -moz-linear-gradient(#674a91,#5e3d86);
    background: linear-gradient(#674a91,#5e3d86);
    border-radius: 15px 50px 0px 30px;
}
#search_button{
    background-repeat: no-repeat;
    height: 35px;
    width: 179px;
    margin: auto;
    position: relative;
    color: white;
    text-shadow: #263238 0px 0px 2px;
    font-size: 1.2em;
    letter-spacing: 1px;
    font-weight: bold;
    padding-top: 12px;
    padding-bottom: 10px;
    padding-left: 11px;
    background: red;
    background: -webkit-linear-gradient(#447593,rgb(38, 96, 143));
    background: -o-linear-gradient(#447593,rgb(38, 96, 143));
    background: -moz-linear-gradient(#447593,rgb(38, 96, 143));
    background: linear-gradient(#447593,rgb(38, 96, 143));
    border-radius: 10px 10px 0px 0px;
}
#toplevel_button{
    background-repeat: no-repeat;
    height: 35px;
    width: 179px;
    margin: auto;
    position: relative;
    color: white;
    text-shadow: #263238 0px 0px 2px;
    font-size: 1.2em;
    letter-spacing: 1px;
    font-weight: bold;
    padding-top: 12px;
    padding-bottom: 10px;
    padding-left: 11px;
    background: red;
    background: -webkit-linear-gradient(#447593,rgb(38, 96, 143));
    background: -o-linear-gradient(#447593,rgb(38, 96, 143));
    background: -moz-linear-gradient(#447593,rgb(38, 96, 143));
    background: linear-gradient(#447593,rgb(38, 96, 143));
    border-radius: 10px 10px 0px 0px;
}
#topcatch_button{
    background-repeat: no-repeat;
    height: 9px;
    width: 179px;
    margin: auto;
    position: relative;
    color: white;
    text-shadow: #263238 0px 0px 2px;
    font-size: 1.2em;
    letter-spacing: 1px;
    font-weight: bold;
    padding-top: 12px;
    padding-bottom: 10px;
    padding-left: 11px;
    background: red;
    background: -webkit-linear-gradient(#447593,rgb(38, 96, 143));
    background: -o-linear-gradient(#447593,rgb(38, 96, 143));
    background: -moz-linear-gradient(#447593,rgb(38, 96, 143));
    background: linear-gradient(#447593,rgb(38, 96, 143));
    border-radius: 10px 10px 0px 0px;
}

.nav_links_highscores{
    background-color: rgba(255,255,255,0.9);
    width: 168px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    margin: auto;
    font-size: 11px;
    color: #9e9e9ea3;
    padding: 8px;
    margin-bottom: 12px;
    -moz-box-shadow: 1px 1px 3px #2b2b2b;
    /* -webkit-box-shadow: 1px 1px 3px #2b2b2b; */
    /* box-shadow: 1px 1px 3px #2b2b2b; */
    margin-top: -1px;
}
.nav_links_search{
    background-color: rgba(255,255,255,0.9);
    width: 168px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    margin: auto;
    font-size: 11px;
    color: #5D86A3;
    padding: 8px;
    margin-bottom: 12px;
    -moz-box-shadow: 1px 1px 3px #2b2b2b;
    /* -webkit-box-shadow: 1px 1px 3px #2b2b2b; */
    /* box-shadow: 1px 1px 3px #2b2b2b; */
    margin-top: -1px;
}
.nav_links{
    background-color: #342B42;
    width: 168px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    margin: auto;
    font-size: 17px;
    color: #5D86A3;
    padding: 8px;
	padding-top: 13px;
    margin-bottom: 12px;
    -moz-box-shadow: 1px 1px 3px #2b2b2b;
    /* -webkit-box-shadow: 1px 1px 3px #2b2b2b; */
    /* box-shadow: 1px 1px 3px #2b2b2b; */
    margin-top: -10px;
}
.nav_links_logged{
    line-height: 1.4;
    background-color: #342B42;
    width: 168px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    margin: auto;
    font-size: 15px;
    color: white;
    padding: 8px;
    padding-top: 13px;
    margin-bottom: 8px;
    -moz-box-shadow: 1px 1px 3px #2b2b2b;
    /* -webkit-box-shadow: 1px 1px 3px #2b2b2b; */
    /* box-shadow: 1px 1px 3px #2b2b2b; */
    margin-top: -8px;
}
.nav_links_left{
    line-height: 1.5;
    background-color: red;
    width: 168px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    margin: auto;
    font-size: 15px;
    color: #5D86A3;
    padding: 8px;
	padding-left: -40px;
    margin-bottom: 8px;
    -moz-box-shadow: 1px 1px 3px #2b2b2b;
    /* -webkit-box-shadow: 1px 1px 3px #2b2b2b; */
    /* box-shadow: 1px 1px 3px #2b2b2b; */
    margin-top: -1px;
}
.nav_link_icon{
    padding-right: 4px;
}
.nav_links_blue a{font-size: 15px;     transition: all 0.5s ease;}
/* .nav_links_blue a:hover{border-left:2px solid #5d86a3; padding-left:5px; color:#5d86a3;}
.nav_links_blue a:active{border-left:2px solid #5d86a3; padding-left:5px;}
 */
.nav_links_red a{font-size: 15px;     transition: all 0.5s ease;}
/* .nav_links_red a:hover{border-left:2px solid #C23A27; padding-left:5px; color:#C23A27;}
.nav_links_red a:active{border-left:2px solid #C23A27; padding-left:5px; color:#C23A27;}
*/
.nav_links_purple a{font-size: 15px;     transition: all 0.5s ease;}
/* .nav_links_purple a:hover{border-left:2px solid #840480; padding-left:5px; color:#840480;}
.nav_links_purple a:active{border-left:2px solid #840480; padding-left:5px;}
*/
.nav_links_yellow a{font-size: 15px;     transition: all 0.5s ease;}
/* .nav_links_yellow a:hover{border-left:2px solid #DFBC49; padding-left:5px; color:#DFBC49;}
.nav_links_yellow a:active{border-left:2px solid #DFBC49; padding-left:5px;}
*/
.nav_links_logged a{font-size: 15px;     transition: all 0.5s ease;}
/* .nav_links_logged a:hover{border-left:2px solid #6FBFA4; padding-left:5px;color:#6FBFA4;}
.nav_links_logged a:active{border-left:2px solid #6FBFA4; padding-left:5px;}
*/
.nav_links .active {
    font-weight: bold;
}

.nav_links, .nav_links_logged, .nav_links_highscores, .nav_links_search  {
    margin-bottom: 12px;
    border-bottom: 5px solid #2f263c;
}

.servers_info{background-color:transparent;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;float:right;padding:8px;width:214px;margin-right:-225px;margin-top:279px;font-size:12px;text-align:center;}
.menu_nav{display:inline-block;background-color:transparent;width:192px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;float:right;margin-top:3px;/*padding: 7px; */font-size:13px;}
.servers_infso{background-color:transparent;width:214px;float:right;padding:10px;width:214px;margin-right:-230px;margin-top:190px;font-size:12px;text-align:center;}




/* Style The Dropdown Button */
.dropbtn {
  background-color: #FF9800;
  color: white;
  padding: 12px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

.poketop {
	background-repeat:no-repeat;
    width:980px;
	margin-top: 10px;
    float: center;
	background-repeat:no-repeat;
	background-size:contain;
	position: center top;
	margin:auto;

}


.App_layout .MainBox .MainBox_header {
    margin: -58px 0 0 5px;
    padding-left: 9px;
    position: relative;
    border-bottom: 4px solid #d99921;
    font-family: Vidange Pro,sans-serif;
    color: #FFB038;
}

.newscontt {
    /* -webkit-box-shadow: 1px 0px 3px #2b2b2b; */
    /* box-shadow: 1px 0px 3px #1E142D; */
    background-image:url(../images/news.png);
    /* background-color: #1e142d; */
    /* background-color: rgba(255,255,255,0.95); */
    width: 100%;
    margin-top: 0px;
    padding-right: 10px;
    padding-left: 10px;
    float: left;
    margin-bottom: 25px;
    font-size: 0.9em;
}


.newscont {
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-box-shadow: 1px 0px 3px #2b2b2b;
    /* -webkit-box-shadow: 1px 0px 3px #2b2b2b; */
    /* box-shadow: 1px 0px 3px #1E142D; */
    /* background-image:url(../images/news2.png); */
    /* background-color: #1E142D; */
	background-color: #342B42;
    width: 735px;
    margin-top: 4px;
    padding: 10px;
    float: left;
    margin-bottom: 25px;
    font-size: 0.9em;
}
.newsTitle{padding:1px;font-size:14px;font-weight:bold;}
.newscont .newsTitle {
    color: #2580a5;
    height: 25px;
    border-left: 2px solid rgb(44,127,162);
    padding-left: 2px;
}
.playerActivities{
    color: rgb(201, 151, 0);
}
.submit-lente{
    height: 35px;
    /* margin-left: -20px; */
    /* outline: none; */
    margin-bottom: 3px;
    background-color: rgba(255,255,255,.0);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px;
    /* margin-top: 4px; */
    color: rgb(7,140,184);
    text-align: center;
    /* border: 2px solid #00BFFF; */
    font-size: 18px;
}
.newscont .newsFooter{border:1px dotted gray;padding:1px;}
.copyrights{color:#9B9B9B;border:1px dotted #9B9B9B;padding:10px;margin-top:5%;}
.newscont .bar{border-left:1px solid silver;border-right:1px solid silver;}
.menu_nav input.loginbutton{background-color:#FF9800;height:36px;width:119px;border:none;color:white;}
.menu_nav input.loginbutton:hover{background-color:#aa6a0b;}
.menu_nav input.input{color:#ffffff;background-color:transparent;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;height:31px;width:134px;border:1px;margin-top:4px;text-align:center;border:2px solid #FF9800;font-size:14px;}
.menu_nav hr{border:1px solid #FF9800;}
.captchaImage{position:relative;right:-26px;top:-10px;}
.pTable{width:100%;max-width:735px;border-width:0px;border-spacing:2px;border-style:outset;border-collapse:collapse;border:#ccc;float:left;font-size:13px;}
.pTable tr td{border:0px solid #ccc;padding:5px 10px;}
.pTitle{border:0px solid #ccc;background:#2d5d93;font-weight:bold;}
.logTwitter:hover{cursor:pointer}
.b1{background:rgba(208, 214, 213, 0.1);font-size: 1.2em;}
.b2{background:rgba(179, 199, 213, 0);font-size: 1.2em;}
.b3{background:#FFFFFF;font-size: 1.2em;}
.bgreen{background:rgb(239, 249, 239);}
.bred{background:#FF9800;}
.rulesUl li{color:white;font-size:80%;}
.check_icon{right:26px;top:-5px;width: 13px;}
.ticker img {
    margin-bottom: 2px;
}
.ticker{

}
.deathNew{
    color: green;
}
.logged{
    display:none;
}
.searchBar{
    width: 75%;
}
#character_name_check{
    width: 100%;
}
.loginbutton{background-color:#FF9800;height:36px;width:119px;border:none;}
.loginbutton:hover{background-color:rgb(65, 182, 221);}
.nr {
    margin-left: 6px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: inline-block;
    min-width: 15px;
    min-height: 15px;
    border-radius: 50px;
    background-color: #598fb5;
    color: #598fb5;
    padding: 6px;
    font-size: 14px;
    text-align: center;
    /*background: url(https://otpokemon.com/images/iconBall.png);
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    text-shadow: 0px 1px 0px #999, 0px 2px 0px #888, 0px 3px 0px #777;
    */
}
.b1 .nr{
    background-color: rgb(244, 251, 251);
}
.b2 .nr{
    background-color: #dee3e4;
}
.flagPlayer {
    width: 50px;
    height: 50px;
    border-radius: 28%;
    -webkit-box-shadow: 0 0 0 3px #fff7e0, 0 0 10px 0 #000;
    box-shadow: 0 0 0 3px #fff7e0, 0 0 10px 0 #000;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
}
p.fb-post{
    word-break: break-word;
    margin-bottom: 15px;
    line-height: 1.2;
    font-size: 15px;
    border-left: 2px solid #E0E0E0;
}

.header{
    background-position-y: -60px;
}

.fixedbar {
    bottom: 0;
    color: #fff;
    position: fixed;
    font-size: 16px;
    z-index: 99999;
    vertical-align: middle;
    margin: 0;
    opacity: .7;
    font-weight: 700;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 6px;
    -moz-box-shadow: 1px 0 3px #2b2b2b;
    /* -webkit-box-shadow: 1px 0 3px #2b2b2b; */
    /* box-shadow: 1px 0 3px #2b2b2b; */
    background-color: #5a90b5;
    width: 708px;
    padding: 10px;
    float: left;
}
.boxfloat a {
    color: #fff;
}
.boxfloat a:hover {
    color: #000;

}
.boxfloat {
    text-align:center;
    margin:0 auto;
}

.buttonActivated{
    background-color: green;
}

.imgPostFacebook {
    border: 1px solid #CCC;
    border-radius: 10px;
    max-width: 500px;
}

.menu_mobile {
    display: none;
    cursor: pointer;
    position: fixed;
    z-index: 10;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    margin-top: 1px;
    width: 63px;
    margin-left: 89%;

}

.bar1, .bar2, .bar3 {
    height: 11px;
    background-color: #FFF;
    margin: 11px 0;
    transition: 0.4s;
    margin-left: 2px;
    margin-right: 2px;
}

/* Rotate first bar */
.change .bar1 {
    -webkit-transform: rotate(-51deg) translate(-40px,-28px);
    transform: rotate(-51deg) translate(-40px,-28px);
    background: #FFF;
}

/* Fade out the second bar */
.change .bar2 {
    opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
    -webkit-transform: rotate(49deg) translate(-51px,14px);
    transform: rotate(49deg) translate(-51px,14px);
    background: white;
}

#contentMain{
    min-height: 1135px;
}

.loggin_twofactor{
    display: none;
}
.twofactor{
    display: none;
}

@media screen and (min-width: 721px) {
    .menu_nav {
        display: block;
    }
    .fixedbar{
        display: block;
    }
}

@media screen and (max-width: 720px) {
    #contentMain{
        min-height: 0px;
    }
    .fixedbar{
        display: none;
    }
    .header {
        height: 80px;
        background-position-x: 37%;
        background-position-y: -130px;
        position: fixed;
        width: 100%;
        background-color: rgba(31, 105, 174, 0.6);
        z-index: 1;
    }

    .menu_nav {
        background-color: #607d8b94;
        display: none;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        font-size: 1.2em;
        position: fixed;
        margin-top: 0;
        padding-top: 20px;
        z-index: 3;
        width: 100%;
        overflow-y: visible;
        overflow-x: hidden;
        height: 100%;
    }

    .menu_mobile{
        display: initial;
    }

    .dex {display: none;}
    .navbox_right {display: none;}
    .slider_bg {display: none;}
    .navbar {display: none;}

    .newscont {
        width: 100%;
        margin-top: 80px;
        padding: 0px;
        float: left;
        margin-bottom: 25px;
        font-size: 1em;
        min-height: 0px;
    }
    .message .content {
        padding: 0px 0px 0px 0px;
    }
    .imgPostFacebook {
        max-width: 90%;
        border: 1px solid #CCC;
    }

    .fb-post{
        font-size: 1em;
    }

    .nav_links, .nav_links_logged, .nav_links_highscores, .nav_links_search  {
        margin-bottom: 8px;
        width: 100%;
        font-size: 1.0em;
        box-shadow: 0px 1px 30px #2b2b2b;
        background-color: #FFF;
    }

    .nav_links_blue a{
        font-size: 1.2em;
    }
    .nav_links_red a{
        font-size: 1.2em;
    }

    .nav_links_purple a{
        font-size: 1.2em;
    }

    .nav_links_yellow a{
        font-size: 1.2em;
    }

    .nav_links_logged a {
        font-size: 1.2em;
    }

    .nav_links_highscores a {
        font-size: 1.2em;
    }

    .nav_links_highscores a {
        font-size: 1.2em;
    }

    .nav_links_highscores, #toplevel_button, #topcatch_button {
        display: none;
    }

    #community_button, #navigation_button, #toplevel_button, #topcatch_button, #search_button  {
               height: 20px;
    }

    .pTable{
        font-size: 0.8em;
    }
    .pTable tr td {
        padding: 5px 6px;
    }
    .b1, .b2{
        height: 2em;
    }

    .menu_nav input.input{
        height: 2.5em;
        font-size: 1em;
    }

    .copyrights {
        font-size: 0.7em;
    }
}
    .newsBody img {
      width:100%;
    }
.ng-binding h2 {
  color:#2580a5;
}

.requisitos {
    text-align: center;
    background-color: rgba(179, 199, 213, 0.5);
    color: #676362;
    padding: 9;
    font-weight: bold;
  }

  legend img {
    width:auto !important;
  }

  .white {
      color: #2b2b2b;
      margin: 10px;
      padding: 10px;
      font-style: normal;
      font-size: 16px;
      font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    }

    .gray {
    color: #2b2b2b;
    background-color: rgba(179, 199, 213, 0.2);
    margin: 10px;
    padding: 10px;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: 16px;
}

fieldset h2 {
  font-size: 110%;
text-transform: uppercase;
color: #e48e23;
text-align:center;
}

.download {
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 20px;
  text-align: center;
  color: #676362;
}

.download a {
    width: 250px;
    display: block;
    padding: 5px;
    margin: 2px auto;
    background-color: #EEb01B;
    color: #FFF;
    border: 1px solid #EEb01B;
    border-radius: 3px;
    font-size: 18px;
    text-decoration: none;
}

#adminWindow {
  display:none;
}

.widget,
.widget .body,
.search_widget,
.search_widget .body {
	padding-bottom: 0;
}
.widget center {
	margin: auto;
}
.widget h3 {
	margin-bottom: 0;
}
.search_widget form {
	margin: auto;
}
.search_widget input {
	width: 100%;
	float: left;
}
.search_widget label {
	padding: 9px;
	float: left;
}
.search_widget form:after {
	display: block;
	content: '';
	clear: both;
}
div.relative {
	position: relative;
}
.search_widget #name_suggestion {
	position: absolute;
	width: 280px;
	left: -290px;
	display: none;
}
.search_widget #name_suggestion.show {
	display: block;
}
.search_widget .sname {
	text-align: right;
}
.search_widget .sname a {
	display: inline-block;
	background-color: black;
	padding: 10px 20px;
	border-bottom: 1px solid rgb(30,33,40);
}
.page_credits .feedContainer .pull-left.leftPane {
	box-sizing: border-box;
	padding-left: 8px;
	padding-right: 8px;
}

.page_characterprofile #characterProfileTable thead th:first-of-type {
	position: relative;
	width: 28%;
}
.page_characterprofile #characterProfileTable thead th:last-of-type {
	text-align: left;
	padding-left: 16px;
}
.page_characterprofile .outfit {
	position: absolute;
	top: 0;
	left: 0;
}
.page_characterprofile .flag {
	position: absolute;
	top: 16px;
	right: 16px;
}
.postHolder iframe {
	display: block;
	margin: auto;
}

.header_news{
	background-image: url(../images/Pokebar.png);
    background-size: cover;
    width: 100%;
    height: 66px;
}


.arcanine-bg {
	float: right;
    margin-top: -74px;
    margin-left: 19%;
    position: absolute;
    width: 70px;
    height: 84px;
	background: url('../images/pokemon/151.gif') no-repeat;
}

.scyther-bg {
	float: right;
    margin-top: -80px;
    margin-left: 19%;
    position: absolute;
    width: 105px;
    height: 101px;
	background: url('../images/pokemon/439.gif') no-repeat;
}

.electrode-bg {
	float: right;
    margin-top: -74px;
    margin-left: 19%;
    position: absolute;
    width: 70px;
    height: 84px;
	background: url('../images/pokemon/101.gif') no-repeat;
}

.dragonair-bg {
	float: right;
    margin-top: -85px;
    margin-left: 19%;
    position: absolute;
    width: 68px;
    height: 95px;
	background: url('../images/pokemon/125.gif') no-repeat;
}

div.green {
	color: #006400;
	border: 1px solid #006400;
	padding: 6px 1px 7px 28px;
    margin: 3px 0;
	font-weight: 700;
	background: url(../images/info/success.jpg) left center no-repeat #e3ffde;
    background-size: contain;
    font-size: 10px;
}

div.red {
	color: #b40000;
	border: 1px solid #b40000;
	padding: 6px 1px 7px 28px;
    margin: 3px 0;
	font-weight: 700;
	background: url(../images/info/error.jpg) left center no-repeat #FFDEDE;
    background-size: contain;
    font-size: 10px;
}

div.blue {
	color: rgb(1, 114, 255);
	border: 1px solid #1597db;
	padding: 6px 1px 7px 28px;
    margin: 3px 0;
	font-weight: 700;
	background: url(../images/info/info.png) left center no-repeat rgba(21, 151, 219, 0.16);
    background-size: contain;
    font-size: 10px;
}

div.quote {
	padding: 10px;
	margin: 10px 0;
	border: 1px dotted #000;
	background: #FBF9F6;
	color: #000;
    background-size: contain;
    font-size: 10px;
}



.separator {
	background: url(../images/sep-b.png) center;
	width: 100%;
	height: 2px;
	margin-top: 3px;
	margin-bottom: 2px;
	background-size: 100% 100%;
}

.myButton {
	box-shadow:inset 0px 1px 3px 0px #91b8b3;
	background:linear-gradient(to bottom, #768d87 5%, #6c7c7c 100%);
	background-color:#768d87;
	border-radius:6px;
	border:1px solid #566963;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:3px 28px;
	text-decoration:none;
	text-shadow:0px -1px 0px #2b665e;
}
.myButton:hover {
	background:linear-gradient(to bottom, #6c7c7c 5%, #768d87 100%);
	background-color:#6c7c7c;
}
.myButton:active {
	position:relative;
	top:1px;
}



.pokeballpkm {
    height: 200px!important;
    background: url(../images/ball.png) center center no-repeat!important;
    background-size: 175px;
}

.pokeballpkm:hover {
    background: url(../images/ballselect.png) center center no-repeat!important;
	    background-size: 175px!important;
}

.pokeballpkm1 { 
    background: url(../images/ballselect.png) center center no-repeat!important;
	    background-size: 175px!important;
}

table.choose-pokemon tbody tr td.allowed { cursor: pointer; }
table.choose-pokemon tbody tr td.allowed:hover, table.choose-pokemon tbody tr td.active { background: #cbfccc; }

.slideup, .slidedown {
	max-height: 0;            
	overflow-y: hidden;
	-webkit-transition: max-height 0.8s ease-in-out;
	-moz-transition: max-height 0.8s ease-in-out;
	-o-transition: max-height 0.8s ease-in-out;
	transition: max-height 0.8s ease-in-out;
}
.slidedown {            
	max-height: 60px ;                    
} 


div#npc-section {
	padding: 2px;
    background-color: #272031;
    border-bottom: 2px solid #1c1527;
    border-right: 1px solid #0f0a17;
    border-radius: 4px;
    vertical-align: middle;
    margin: 0px 3px 4px 0px;
}

div#npc-section div#npc-image {
	display: inline-block;
	width: 150px;
	height: 150px;
	position: relative;
	margin-top: -25px;
	margin-right: 10px;
	vertical-align: bottom;
}

div#npc-section div#npc-content {
	display: inline-block;
	vertical-align: top;
	width: 70%;
	margin: 0 3px 0 25%;
}

div#npc-section div#npc-content h3 {
	padding: 5px;
	background: url('../images/line.png') no-repeat;
	background-position: bottom;
	background-size: 70%;
	font-size: 21px;
	margin: 5px 0 0;
	font-weight: bold;
	text-transform: uppercase;
	color: #9eadcd;
}



/* Pagina Market */
.parte1 {    
	width: 180px;
    height: 270px;
    float: left;
    margin: 0 1px 0 1px;
    background: url(../images/shopping/bg.png) no-repeat;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
}
.parte2 {
    position: absolute;
    left: 5px;
    top: 5px;
    border-bottom: none;
}
.parte4 {
    position: absolute;
    left: 50px;
    top: 33px;
}
.parte5 {
    position: absolute;
    width: 168px;
    left: -23px;
    top: 234px;
    line-height: 16px;
    text-align: center;
    font-family: &quot;
    font-size: 13px;
    color: #6e6e6e;
}
.parte6 {
    position: absolute;
    width: 168px;
    height: 20px;
    left: 5px;
    top: 140px;
    color: #0081e0;
    line-height: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}
.parte7 {
	position: absolute;
    width: 154px;
    height: 52px;
    max-height: 52px;
    left: 6px;
    top: 176px;
    color: #000000;
    padding: 5px 7px 4px 7px;
    text-align: justify;
    font-size: 11.3px;
    overflow: auto;
}
.parte8 {
    background: url(../images/shopping/buttonbg.png) center top no-repeat;
    position: absolute;
    width: 59px;
    height: 21px;
    left: 116px;
    top: 240px;
    color: #FFF;
    line-height: 22px;
    text-align: center;
    border: none;
    line-height: 2px;
}
.parte8:hover {
    background: url(../images/shopping/buttonbg.png) 0px -21px no-repeat;
    position: absolute;
    width: 59px;
    height: 21px;
    left: 116px;
    top: 240px;
    color: #000;
    line-height: 22px;
    text-align: center;
    border: none;
    line-height: 2px;
}
.parte9 {
    margin-top: 4px;
    position: absolute;
    margin-left: -146px;
    color: #fff;
    font-family: "Flexo-Demi",arial,sans-serif;
    cursor: pointer;
}
.parte10 {
    position: absolute;
    width: 168px;
    height: 20px;
    left: 5px;
    top: 33px;
    color: #0081e0;
    line-height: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}
.borda{
    -webkit-border-radius: 6px;
    width: 180px;
    height: 270px;
	display: inline-grid;
    margin: 0 1px 0 1px;
    background: url(../images/shopping/bgmarket3.png) no-repeat;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    border: none;
}

.borda:hover {
    background: url(../images/shopping/bgmarket4.png) no-repeat;
	z-index: 1;
}

div#npc-section div#npc-content p {
	margin-top: 5px;
	font-size: 13px;
	font-weight: 600;
    color: #eeeeee;
}

div#npc-section div#npc-content img {
	vertical-align: middle;
}

tr:nth-child(even) {background-color: #3b3248!important}
tr:nth-child(odd) {background-color: #342b42!important}

table {
  border-collapse: collapse;
  width: 100%;
}

table, th, td {
  border: 1px solid #302442;
}

label {
    color: white;
	width: 100%;
}
.dataTables_info, .paginate_button{
    color: white!important;
}
.paginate_button{
    color: white !important;
}
.dataTables_length, .dataTables_filter, .dataTables_info, .dataTables_paginate{
	background-color: #342b42!important;
    border: unset!important;
}
[type=search] {
	width: 140px!important;
}

.loginForm {
    display: flex;
    flex-wrap: wrap;
}
.loginForm button:hover {
	background: rgb(90, 172, 104);
}
.loginForm button {
    width: 100%;
    margin-top: 10px;
    background: rgb(255, 152, 0);
    color: var(--font-color);
    height: 40px;
    border: 1px solid var(--border);
    font-size: 1em;
}

.loginForm input {
	width: 100%;
	height: 30px;
	border: none;
	color: #fff;
	font-size: 1em;    
	border-top: 1px solid #1d1627;
    border-bottom: 1px solid #1d1627;

	margin-bottom:3px;
    background-color: #FF9800;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 0px 10px 0px 10px;
    border:1px;margin-top:4px;
    color:rgb(7, 140, 184);
    text-align:center;
    border: 2px solid #FF9800;
    font-size:18px;
}
.loginForm .well {
    width: 100%;
}

