/*Container*/
.wp-top-bar {
    float: right;
    border-radius: 10px 10px 10px 10px;
    /*border: 1px solid transparent;*/ /*rcw*/
   /* background-color: #9E9D24;*/
    background-color: #55BE47;
	
    /*margin-right: 20px;*/
}

/*Content*/
.wp-top-bar .wp-top-bar-content {
    padding-left: 0;
    list-style: none;
}

/*Items*/
.wp-top-bar .wp-top-bar-content > li {
    float: left;
    position: relative;
    display: block;
    /*padding: 10px 0 10px 10px;*/ /*old rcw 06/09/16*/
    padding: 0px 0 10px 10px; /*new*/
    color: #ffffff;
    text-align: center;
}

/*Increase last item's padding*/
.wp-top-bar ul.wp-top-bar-content > li:last-child {
    padding-right: 45px;
}

/*Items links*/
.wp-top-bar .wp-top-bar-content > li a {
    color: #ffffff;
    font-size:16px;
	font-weight:bold;
}

/*Items direct links*/
.wp-top-bar .wp-top-bar-content > li > a {
    padding: 12px 15px;
    line-height: 20px;
    position: relative;
    display: block;
}

/*Highlight items links on hover*/
.wp-top-bar .wp-top-bar-content > li a:hover {
    text-decoration: none;
    color: #f1f1f1;
    cursor: pointer
}

/*Icons links*/
.wp-top-bar .wp-top-bar-content li.wp-top-bar-icon a {
    padding-left: 8px;
    padding-right: 5px;
}

/*Generic button*/
.wp-top-bar .wp-top-bar-content .wp-top-bar-btn {
    min-width: 165px;
}

/*Balance item*/
.wp-top-bar .wp-top-bar-content .wp-top-bar-balance-item {
    min-width: 135px;
}

/*Balance item's value*/
.wp-top-bar .wp-top-bar-content .wp-top-bar-balance-item .wp-top-bar-balance-value {
    background-color: #ffffff;
    color: #000000;
}

/*Player item*/
.wp-top-bar .wp-top-bar-content .wp-top-bar-player-item {
    border-right: 1px solid #827717;
    padding-right: 10px;
    padding-left: 20px;
}

/*Restrict player name length*/
.wp-top-bar .wp-top-bar-content .wp-top-bar-player-item .wp-top-bar-player-name-container {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size:13px;

}

/*Primary button*/
.wp-top-bar .wp-top-bar-content .wp-top-bar-btn-primary a {
    background-color: #FEC842;
    color: #000000;
}

/*Secondary button*/
.wp-top-bar .wp-top-bar-content .wp-top-bar-btn-secondary a {
    background-color: #0035AD;
}

/*Logout button*/
.wp-top-bar .wp-top-bar-content .wp-top-bar-logout-btn {
    text-decoration: underline;
    float: right;
}
