﻿/* Print Top Menu */
.Toolbar{
    position: static;
    width: 100%;
    z-index: 4;
    transform: none !important;
    background: rgba(255, 255, 255, 0.3);
    top:0;
    
}

.Toolbar .Aligner{
    position: relative;
    padding: 0 5%;
    display: flex;                   /* establish flex container */
    flex-direction: row;             /* default value; can be omitted */
    flex-wrap: nowrap;               /* default value; can be omitted */
    justify-content: space-between;  /* switched from default (flex-start, see below) */
}
.Toolbar .Buttons{
    -webkit-user-select: none;
    width: 100px;
    text-align: right;
    margin-top: 0;
    margin-left: auto;
}


/* Print Top Menu */
/* Print Button */
.Toolbar .paper-toolbar{
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    color: rgb(241, 241, 241);
    font-size: 1.5em;  
    display: block;
    position: relative;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    background: rgba(50, 54, 57, 0.9);
    color: #ffffff;
    padding: 5px 0;
}
.Toolbar .PageSelector{
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    width: 100px;
    text-align: center;
    white-space: nowrap;
    height: 32px;
}



.CurrPageNumber{
    position: relative;
    box-shadow: none !important;
    padding: 0 !important;
    background: rgba(0, 0, 0, 0) !important;
    border: none !important;
    outline: none !important;
    color: #212121 !important;
    -webkit-appearance: none !important;
    text-align: inherit !important;
    -webkit-font-smoothing: antialiased !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    height: auto  !important;
    width: auto !important;
    max-width: auto !important;
    min-width: 0  !important;
    -webkit-margin-start: -3px !important;
    color: #fff !important;
    line-height: 18px !important;
    padding: 3px !important;
    text-align: end !important;
    
}
.CurrPageNumber:focus,.CurrPageNumber:hover{
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-radius: 2px !important;
}
.Button.GoToPage{
    display:none !important;
}
.PageTotal{
    color: #fff;
    font-size: 94.4%;
}

/* Print Top Menu */
/* Bookmark Button */
.PaperIconButton,.BookmarkIconButton{
    display: inline-block;
    position: relative;
    outline: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    z-index: 0;
    line-height: 1;
    box-sizing: border-box !important;
    height: 32px;
    padding: 6px;
    width: 32px;
    margin: 0;
}
.BookmarkIconButton:hover .BookmarkContainer{
    display: block;
}
.BookmarkContainer{
    position: absolute;
    top: 32px;
    right: 0;
    margin: 0;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    background-color: rgb(256, 256, 256);
    border-radius: 4px;
    overflow-y: hidden;
    padding-bottom: 2px;
    width: auto;
    display: none;
}
.BookmarkContainer .BookmarkTitle{
    border-bottom: 1px solid rgb(219, 219, 219);
    color: rgb(33, 33, 33);
    font-weight: bold;
    margin: 0;
    padding: 5px 28px 12px;
    display: block;
    -webkit-margin-before: 0.67em;
    -webkit-margin-after: 0.67em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;  
    text-align: start;
}
.BookmarkContainer .Bookmarks{
    overflow-y: auto;
    padding: 6px 0 4px 0;
    text-align: start;
    color: rgb(241, 241, 241);
    font-size: 1.3em;
}
.BookmarkContainer .Bookmarks .Item{
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    color: rgb(80, 80, 80);
    cursor: pointer;
    font-size: 77.8%;
    position: relative;
    white-space: nowrap;
    padding: 10px 28px;
}
.BookmarkContainer .Bookmarks .Item:hover {
    background-color: rgb(237, 237, 237);
    color: rgb(20, 20, 20);
}
