/* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information. */


/**
 * Office UI Fabric Core 9.1.0
 * The front-end framework for building experiences for Office 365.
 **/

 @charset "UTF-8";
 @keyframes ms-slideRightIn10 {
     0% {
         transform: translate3d(-10px, 0, 0)
     }
     to {
         transform: translateZ(0)
     }
 }
 
 @keyframes ms-slideRightIn20 {
     0% {
         transform: translate3d(-20px, 0, 0)
     }
     to {
         transform: translateZ(0)
     }
 }
 
 @keyframes ms-slideRightIn40 {
     0% {
         transform: translate3d(-40px, 0, 0)
     }
     to {
         transform: translateZ(0)
     }
 }
 
 @keyframes ms-slideRightIn400 {
     0% {
         transform: translate3d(-400px, 0, 0)
     }
     to {
         transform: translateZ(0)
     }
 }
 
 @keyframes ms-slideRightOut40 {
     0% {
         transform: translateZ(0)
     }
     to {
         transform: translate3d(40px, 0, 0)
     }
 }
 
 @keyframes ms-slideRightOut400 {
     0% {
         transform: translateZ(0)
     }
     to {
         transform: translate3d(400px, 0, 0)
     }
 }
 
 @keyframes ms-slideLeftIn10 {
     0% {
         transform: translate3d(10px, 0, 0)
     }
     to {
         transform: translateZ(0)
     }
 }
 
 @keyframes ms-slideLeftIn20 {
     0% {
         transform: translate3d(20px, 0, 0)
     }
     to {
         transform: translateZ(0)
     }
 }
 
 @keyframes ms-slideLeftIn40 {
     0% {
         transform: translate3d(40px, 0, 0)
     }
     to {
         transform: translateZ(0)
     }
 }
 
 @keyframes ms-slideLeftIn400 {
     0% {
         transform: translate3d(400px, 0, 0)
     }
     to {
         transform: translateZ(0)
     }
 }
 
 @keyframes ms-slideLeftOut40 {
     0% {
         transform: translateZ(0)
     }
     to {
         transform: translate3d(-40px, 0, 0)
     }
 }
 
 @keyframes ms-slideLeftOut400 {
     0% {
         transform: translateZ(0)
     }
     to {
         transform: translate3d(-400px, 0, 0)
     }
 }
 
 @keyframes ms-slideUpIn10 {
     0% {
         transform: translate3d(0, 10px, 0)
     }
     to {
         transform: translateZ(0)
     }
 }
 
 @keyframes ms-slideUpIn20 {
     0% {
         transform: translate3d(0, 20px, 0)
     }
     to {
         transform: translateZ(0)
     }
 }
 
 @keyframes ms-slideDownIn10 {
     0% {
         transform: translate3d(0, -10px, 0)
     }
     to {
         transform: translateZ(0)
     }
 }
 
 @keyframes ms-slideDownIn20 {
     0% {
         transform: translate3d(0, -20px, 0)
     }
     to {
         transform: translateZ(0)
     }
 }
 
 @keyframes ms-slideUpOut10 {
     0% {
         transform: translateZ(0)
     }
     to {
         transform: translate3d(0, -10px, 0)
     }
 }
 
 @keyframes ms-slideUpOut20 {
     0% {
         transform: translateZ(0)
     }
     to {
         transform: translate3d(0, -20px, 0)
     }
 }
 
 @keyframes ms-slideDownOut10 {
     0% {
         transform: translateZ(0)
     }
     to {
         transform: translate3d(0, 10px, 0)
     }
 }
 
 @keyframes ms-slideDownOut20 {
     0% {
         transform: translateZ(0)
     }
     to {
         transform: translate3d(0, 20px, 0)
     }
 }
 
 @keyframes ms-scaleUp100 {
     0% {
         transform: scale3d(.98, .98, 1)
     }
     to {
         transform: scaleX(1)
     }
 }
 
 @keyframes ms-scaleUp103 {
     0% {
         transform: scaleX(1)
     }
     to {
         transform: scale3d(1.03, 1.03, 1)
     }
 }
 
 @keyframes ms-scaleDown98 {
     0% {
         transform: scaleX(1)
     }
     to {
         transform: scale3d(.98, .98, 1)
     }
 }
 
 @keyframes ms-scaleDown100 {
     0% {
         transform: scale3d(1.03, 1.03, 1)
     }
     to {
         transform: scaleX(1)
     }
 }
 
 @keyframes ms-fadeIn {
     0% {
         opacity: 0;
         animation-timing-function: cubic-bezier(.1, .25, .75, .9)
     }
     to {
         opacity: 1
     }
 }
 
 @keyframes ms-fadeOut {
     0% {
         opacity: 1;
         animation-timing-function: cubic-bezier(.1, .25, .75, .9)
     }
     to {
         opacity: 0
     }
 }
 
 @keyframes ms-rotate90 {
     0% {
         transform: rotate(0deg)
     }
     to {
         transform: rotate(90deg)
     }
 }
 
 @keyframes ms-rotateN90 {
     0% {
         transform: rotate(90deg)
     }
     to {
         transform: rotate(0deg)
     }
 }
 
 [dir=ltr] .ms-slideRightIn10 {
     animation-name: ms-fadeIn, ms-slideRightIn10;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 [dir=rtl] .ms-slideRightIn10 {
     animation-name: ms-fadeIn, ms-slideLeftIn10;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 [dir=ltr] .ms-slideRightIn20 {
     animation-name: ms-fadeIn, ms-slideRightIn20;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 [dir=rtl] .ms-slideRightIn20 {
     animation-name: ms-fadeIn, ms-slideLeftIn20;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 [dir=ltr] .ms-slideRightIn40 {
     animation-name: ms-fadeIn, ms-slideRightIn40;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 [dir=rtl] .ms-slideRightIn40 {
     animation-name: ms-fadeIn, ms-slideLeftIn40;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 [dir=ltr] .ms-slideRightIn400 {
     animation-name: ms-fadeIn, ms-slideRightIn400;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 [dir=rtl] .ms-slideRightIn400 {
     animation-name: ms-fadeIn, ms-slideLeftIn400;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 [dir=ltr] .ms-slideRightOut40 {
     animation-name: ms-fadeOut, ms-slideRightOut40;
     animation-duration: .167s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 [dir=rtl] .ms-slideRightOut40 {
     animation-name: ms-fadeOut, ms-slideLeftOut40;
     animation-duration: .167s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 [dir=ltr] .ms-slideRightOut400 {
     animation-name: ms-fadeOut, ms-slideRightOut400;
     animation-duration: .167s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 [dir=rtl] .ms-slideRightOut400 {
     animation-name: ms-fadeOut, ms-slideLeftOut400;
     animation-duration: .167s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 [dir=ltr] .ms-slideLeftIn10 {
     animation-name: ms-fadeIn, ms-slideLeftIn10;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 [dir=rtl] .ms-slideLeftIn10 {
     animation-name: ms-fadeIn, ms-slideRightIn10;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 [dir=ltr] .ms-slideLeftIn20 {
     animation-name: ms-fadeIn, ms-slideLeftIn20;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 [dir=rtl] .ms-slideLeftIn20 {
     animation-name: ms-fadeIn, ms-slideRightIn20;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 [dir=ltr] .ms-slideLeftIn40 {
     animation-name: ms-fadeIn, ms-slideLeftIn40;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 [dir=rtl] .ms-slideLeftIn40 {
     animation-name: ms-fadeIn, ms-slideRightIn40;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 [dir=ltr] .ms-slideLeftIn400 {
     animation-name: ms-fadeIn, ms-slideLeftIn400;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 [dir=rtl] .ms-slideLeftIn400 {
     animation-name: ms-fadeIn, ms-slideRightIn400;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 [dir=ltr] .ms-slideLeftOut40 {
     animation-name: ms-fadeOut, ms-slideLeftOut40;
     animation-duration: .167s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 [dir=rtl] .ms-slideLeftOut40 {
     animation-name: ms-fadeOut, ms-slideRightOut40;
     animation-duration: .167s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 [dir=ltr] .ms-slideLeftOut400 {
     animation-name: ms-fadeOut, ms-slideLeftOut400;
     animation-duration: .167s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 [dir=rtl] .ms-slideLeftOut400 {
     animation-name: ms-fadeOut, ms-slideRightOut400;
     animation-duration: .167s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 .ms-slideUpIn10 {
     animation-name: ms-fadeIn, ms-slideUpIn10;
     animation-duration: .167s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 .ms-slideUpIn20 {
     animation-name: ms-fadeIn, ms-slideUpIn20;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 .ms-slideDownIn10 {
     animation-name: ms-fadeIn, ms-slideDownIn10;
     animation-duration: .167s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 .ms-slideDownIn20 {
     animation-name: ms-fadeIn, ms-slideDownIn20;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 .ms-slideUpOut10 {
     animation-name: ms-fadeOut, ms-slideUpOut10;
     animation-duration: .167s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 .ms-slideUpOut20 {
     animation-name: ms-fadeOut, ms-slideUpOut20;
     animation-duration: .167s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 .ms-slideDownOut10 {
     animation-name: ms-fadeOut, ms-slideDownOut10;
     animation-duration: .167s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 .ms-slideDownOut20 {
     animation-name: ms-fadeOut, ms-slideDownOut20;
     animation-duration: .167s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 .ms-scaleUpIn100 {
     animation-name: ms-fadeIn, ms-scaleUp100;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 .ms-scaleUpOut103 {
     animation-name: ms-fadeOut, ms-scaleUp103;
     animation-duration: .167s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 .ms-scaleDownOut98 {
     animation-name: ms-fadeOut, ms-scaleDown98;
     animation-duration: .167s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 .ms-scaleDownIn100 {
     animation-name: ms-fadeIn, ms-scaleDown100;
     animation-duration: .367s;
     animation-timing-function: cubic-bezier(.1, .9, .2, 1);
     animation-fill-mode: both
 }
 
 .ms-fadeIn100 {
     animation-duration: .167s;
     animation-name: ms-fadeIn;
     animation-fill-mode: both
 }
 
 .ms-fadeIn200 {
     animation-duration: .267s;
     animation-name: ms-fadeIn;
     animation-fill-mode: both
 }
 
 .ms-fadeIn400 {
     animation-duration: .367s;
     animation-name: ms-fadeIn;
     animation-fill-mode: both
 }
 
 .ms-fadeIn500 {
     animation-duration: .467s;
     animation-name: ms-fadeIn;
     animation-fill-mode: both
 }
 
 .ms-fadeOut100 {
     animation-duration: .1s;
     animation-name: ms-fadeOut;
     animation-fill-mode: both
 }
 
 .ms-fadeOut200 {
     animation-duration: .167s;
     animation-name: ms-fadeOut;
     animation-fill-mode: both
 }
 
 .ms-fadeOut400 {
     animation-duration: .367s;
     animation-name: ms-fadeOut;
     animation-fill-mode: both
 }
 
 .ms-fadeOut500 {
     animation-duration: .467s;
     animation-name: ms-fadeOut;
     animation-fill-mode: both
 }
 
 .ms-expandCollapse100 {
     transition: height .1s cubic-bezier(.1, .25, .75, .9)
 }
 
 .ms-expandCollapse200 {
     transition: height .167s cubic-bezier(.1, .25, .75, .9)
 }
 
 .ms-expandCollapse400 {
     transition: height .367s cubic-bezier(.1, .25, .75, .9)
 }
 
 .ms-delay100 {
     animation-delay: .167s
 }
 
 .ms-delay200 {
     animation-delay: .267s
 }
 
 [dir=ltr] .ms-rotate90deg {
     animation-name: ms-rotate90;
     animation-duration: .1s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 [dir=ltr] .ms-rotateN90deg,
 [dir=rtl] .ms-rotate90deg {
     animation-name: ms-rotateN90;
     animation-duration: .1s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 [dir=rtl] .ms-rotateN90deg {
     animation-name: ms-rotate90;
     animation-duration: .1s;
     animation-timing-function: cubic-bezier(.1, .25, .75, .9);
     animation-fill-mode: both
 }
 
 .ms-BrandIcon--access.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/access_16x1.png)
 }
 
 .ms-BrandIcon--access.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/access_48x1.png)
 }
 
 .ms-BrandIcon--access.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/access_96x1.png)
 }
 
 .ms-BrandIcon--excel.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/excel_16x1.png)
 }
 
 .ms-BrandIcon--excel.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/excel_48x1.png)
 }
 
 .ms-BrandIcon--excel.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/excel_96x1.png)
 }
 
 .ms-BrandIcon--infopath.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/infopath_16x1.png)
 }
 
 .ms-BrandIcon--infopath.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/infopath_48x1.png)
 }
 
 .ms-BrandIcon--infopath.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/infopath_96x1.png)
 }
 
 .ms-BrandIcon--office.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/office_16x1.png)
 }
 
 .ms-BrandIcon--office.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/office_48x1.png)
 }
 
 .ms-BrandIcon--office.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/office_96x1.png)
 }
 
 .ms-BrandIcon--onedrive.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onedrive_16x1.png)
 }
 
 .ms-BrandIcon--onedrive.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onedrive_48x1.png)
 }
 
 .ms-BrandIcon--onedrive.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onedrive_96x1.png)
 }
 
 .ms-BrandIcon--onenote.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onenote_16x1.png)
 }
 
 .ms-BrandIcon--onenote.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onenote_48x1.png)
 }
 
 .ms-BrandIcon--onenote.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onenote_96x1.png)
 }
 
 .ms-BrandIcon--outlook.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/outlook_16x1.png)
 }
 
 .ms-BrandIcon--outlook.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/outlook_48x1.png)
 }
 
 .ms-BrandIcon--outlook.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/outlook_96x1.png)
 }
 
 .ms-BrandIcon--powerpoint.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/powerpoint_16x1.png)
 }
 
 .ms-BrandIcon--powerpoint.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/powerpoint_48x1.png)
 }
 
 .ms-BrandIcon--powerpoint.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/powerpoint_96x1.png)
 }
 
 .ms-BrandIcon--project.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/project_16x1.png)
 }
 
 .ms-BrandIcon--project.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/project_48x1.png)
 }
 
 .ms-BrandIcon--project.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/project_96x1.png)
 }
 
 .ms-BrandIcon--sharepoint.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/sharepoint_16x1.png)
 }
 
 .ms-BrandIcon--sharepoint.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/sharepoint_48x1.png)
 }
 
 .ms-BrandIcon--sharepoint.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/sharepoint_96x1.png)
 }
 
 .ms-BrandIcon--visio.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/visio_16x1.png)
 }
 
 .ms-BrandIcon--visio.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/visio_48x1.png)
 }
 
 .ms-BrandIcon--visio.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/visio_96x1.png)
 }
 
 .ms-BrandIcon--word.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/word_16x1.png)
 }
 
 .ms-BrandIcon--word.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/word_48x1.png)
 }
 
 .ms-BrandIcon--word.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/word_96x1.png)
 }
 
 .ms-BrandIcon--accdb.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/accdb_16x1.png)
 }
 
 .ms-BrandIcon--accdb.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/accdb_48x1.png)
 }
 
 .ms-BrandIcon--accdb.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/accdb_96x1.png)
 }
 
 .ms-BrandIcon--csv.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/csv_16x1.png)
 }
 
 .ms-BrandIcon--csv.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/csv_48x1.png)
 }
 
 .ms-BrandIcon--csv.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/csv_96x1.png)
 }
 
 .ms-BrandIcon--docx.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/docx_16x1.png)
 }
 
 .ms-BrandIcon--docx.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/docx_48x1.png)
 }
 
 .ms-BrandIcon--docx.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/docx_96x1.png)
 }
 
 .ms-BrandIcon--dotx.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/dotx_16x1.png)
 }
 
 .ms-BrandIcon--dotx.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/dotx_48x1.png)
 }
 
 .ms-BrandIcon--dotx.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/dotx_96x1.png)
 }
 
 .ms-BrandIcon--mpp.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpp_16x1.png)
 }
 
 .ms-BrandIcon--mpp.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpp_48x1.png)
 }
 
 .ms-BrandIcon--mpp.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpp_96x1.png)
 }
 
 .ms-BrandIcon--mpt.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpt_16x1.png)
 }
 
 .ms-BrandIcon--mpt.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpt_48x1.png)
 }
 
 .ms-BrandIcon--mpt.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpt_96x1.png)
 }
 
 .ms-BrandIcon--odp.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odp_16x1.png)
 }
 
 .ms-BrandIcon--odp.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odp_48x1.png)
 }
 
 .ms-BrandIcon--odp.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odp_96x1.png)
 }
 
 .ms-BrandIcon--ods.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ods_16x1.png)
 }
 
 .ms-BrandIcon--ods.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ods_48x1.png)
 }
 
 .ms-BrandIcon--ods.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ods_96x1.png)
 }
 
 .ms-BrandIcon--odt.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odt_16x1.png)
 }
 
 .ms-BrandIcon--odt.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odt_48x1.png)
 }
 
 .ms-BrandIcon--odt.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odt_96x1.png)
 }
 
 .ms-BrandIcon--one.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/one_16x1.png)
 }
 
 .ms-BrandIcon--one.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/one_48x1.png)
 }
 
 .ms-BrandIcon--one.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/one_96x1.png)
 }
 
 .ms-BrandIcon--onepkg.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onepkg_16x1.png)
 }
 
 .ms-BrandIcon--onepkg.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onepkg_48x1.png)
 }
 
 .ms-BrandIcon--onepkg.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onepkg_96x1.png)
 }
 
 .ms-BrandIcon--onetoc.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onetoc_16x1.png)
 }
 
 .ms-BrandIcon--onetoc.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onetoc_48x1.png)
 }
 
 .ms-BrandIcon--onetoc.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onetoc_96x1.png)
 }
 
 .ms-BrandIcon--potx.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/potx_16x1.png)
 }
 
 .ms-BrandIcon--potx.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/potx_48x1.png)
 }
 
 .ms-BrandIcon--potx.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/potx_96x1.png)
 }
 
 .ms-BrandIcon--ppsx.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ppsx_16x1.png)
 }
 
 .ms-BrandIcon--ppsx.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ppsx_48x1.png)
 }
 
 .ms-BrandIcon--ppsx.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ppsx_96x1.png)
 }
 
 .ms-BrandIcon--pptx.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pptx_16x1.png)
 }
 
 .ms-BrandIcon--pptx.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pptx_48x1.png)
 }
 
 .ms-BrandIcon--pptx.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pptx_96x1.png)
 }
 
 .ms-BrandIcon--pub.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pub_16x1.png)
 }
 
 .ms-BrandIcon--pub.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pub_48x1.png)
 }
 
 .ms-BrandIcon--pub.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pub_96x1.png)
 }
 
 .ms-BrandIcon--vsdx.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vsdx_16x1.png)
 }
 
 .ms-BrandIcon--vsdx.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vsdx_48x1.png)
 }
 
 .ms-BrandIcon--vsdx.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vsdx_96x1.png)
 }
 
 .ms-BrandIcon--vssx.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vssx_16x1.png)
 }
 
 .ms-BrandIcon--vssx.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vssx_48x1.png)
 }
 
 .ms-BrandIcon--vssx.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vssx_96x1.png)
 }
 
 .ms-BrandIcon--vstx.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vstx_16x1.png)
 }
 
 .ms-BrandIcon--vstx.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vstx_48x1.png)
 }
 
 .ms-BrandIcon--vstx.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vstx_96x1.png)
 }
 
 .ms-BrandIcon--xls.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xls_16x1.png)
 }
 
 .ms-BrandIcon--xls.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xls_48x1.png)
 }
 
 .ms-BrandIcon--xls.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xls_96x1.png)
 }
 
 .ms-BrandIcon--xlsx.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xlsx_16x1.png)
 }
 
 .ms-BrandIcon--xlsx.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xlsx_48x1.png)
 }
 
 .ms-BrandIcon--xlsx.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xlsx_96x1.png)
 }
 
 .ms-BrandIcon--xltx.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xltx_16x1.png)
 }
 
 .ms-BrandIcon--xltx.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xltx_48x1.png)
 }
 
 .ms-BrandIcon--xltx.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xltx_96x1.png)
 }
 
 .ms-BrandIcon--xsn.ms-BrandIcon--icon16 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xsn_16x1.png)
 }
 
 .ms-BrandIcon--xsn.ms-BrandIcon--icon48 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xsn_48x1.png)
 }
 
 .ms-BrandIcon--xsn.ms-BrandIcon--icon96 {
     background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xsn_96x1.png)
 }
 
 .ms-BrandIcon--icon16 {
     background-size: 100% 100%;
     width: 16px;
     height: 16px
 }
 
 .ms-BrandIcon--icon48 {
     background-size: 100% 100%;
     width: 48px;
     height: 48px
 }
 
 .ms-BrandIcon--icon96 {
     background-size: 100% 100%;
     width: 96px;
     height: 96px
 }
 
 @media only screen and (-webkit-min-device-pixel-ratio:1.5),
 only screen and (min-resolution:144dpi) {
     .ms-BrandIcon--access.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/access_16x1_5.png)
     }
     .ms-BrandIcon--access.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/access_48x1_5.png)
     }
     .ms-BrandIcon--access.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/access_96x1_5.png)
     }
     .ms-BrandIcon--excel.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/excel_16x1_5.png)
     }
     .ms-BrandIcon--excel.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/excel_48x1_5.png)
     }
     .ms-BrandIcon--excel.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/excel_96x1_5.png)
     }
     .ms-BrandIcon--infopath.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/infopath_16x1_5.png)
     }
     .ms-BrandIcon--infopath.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/infopath_48x1_5.png)
     }
     .ms-BrandIcon--infopath.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/infopath_96x1_5.png)
     }
     .ms-BrandIcon--office.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/office_16x1_5.png)
     }
     .ms-BrandIcon--office.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/office_48x1_5.png)
     }
     .ms-BrandIcon--office.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/office_96x1_5.png)
     }
     .ms-BrandIcon--onedrive.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onedrive_16x1_5.png)
     }
     .ms-BrandIcon--onedrive.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onedrive_48x1_5.png)
     }
     .ms-BrandIcon--onedrive.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onedrive_96x1_5.png)
     }
     .ms-BrandIcon--onenote.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onenote_16x1_5.png)
     }
     .ms-BrandIcon--onenote.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onenote_48x1_5.png)
     }
     .ms-BrandIcon--onenote.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onenote_96x1_5.png)
     }
     .ms-BrandIcon--outlook.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/outlook_16x1_5.png)
     }
     .ms-BrandIcon--outlook.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/outlook_48x1_5.png)
     }
     .ms-BrandIcon--outlook.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/outlook_96x1_5.png)
     }
     .ms-BrandIcon--powerpoint.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/powerpoint_16x1_5.png)
     }
     .ms-BrandIcon--powerpoint.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/powerpoint_48x1_5.png)
     }
     .ms-BrandIcon--powerpoint.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/powerpoint_96x1_5.png)
     }
     .ms-BrandIcon--project.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/project_16x1_5.png)
     }
     .ms-BrandIcon--project.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/project_48x1_5.png)
     }
     .ms-BrandIcon--project.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/project_96x1_5.png)
     }
     .ms-BrandIcon--sharepoint.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/sharepoint_16x1_5.png)
     }
     .ms-BrandIcon--sharepoint.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/sharepoint_48x1_5.png)
     }
     .ms-BrandIcon--sharepoint.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/sharepoint_96x1_5.png)
     }
     .ms-BrandIcon--visio.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/visio_16x1_5.png)
     }
     .ms-BrandIcon--visio.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/visio_48x1_5.png)
     }
     .ms-BrandIcon--visio.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/visio_96x1_5.png)
     }
     .ms-BrandIcon--word.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/word_16x1_5.png)
     }
     .ms-BrandIcon--word.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/word_48x1_5.png)
     }
     .ms-BrandIcon--word.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/word_96x1_5.png)
     }
     .ms-BrandIcon--accdb.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/accdb_16x1_5.png)
     }
     .ms-BrandIcon--accdb.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/accdb_48x1_5.png)
     }
     .ms-BrandIcon--accdb.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/accdb_96x1_5.png)
     }
     .ms-BrandIcon--csv.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/csv_16x1_5.png)
     }
     .ms-BrandIcon--csv.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/csv_48x1_5.png)
     }
     .ms-BrandIcon--csv.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/csv_96x1_5.png)
     }
     .ms-BrandIcon--docx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/docx_16x1_5.png)
     }
     .ms-BrandIcon--docx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/docx_48x1_5.png)
     }
     .ms-BrandIcon--docx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/docx_96x1_5.png)
     }
     .ms-BrandIcon--dotx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/dotx_16x1_5.png)
     }
     .ms-BrandIcon--dotx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/dotx_48x1_5.png)
     }
     .ms-BrandIcon--dotx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/dotx_96x1_5.png)
     }
     .ms-BrandIcon--mpp.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpp_16x1_5.png)
     }
     .ms-BrandIcon--mpp.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpp_48x1_5.png)
     }
     .ms-BrandIcon--mpp.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpp_96x1_5.png)
     }
     .ms-BrandIcon--mpt.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpt_16x1_5.png)
     }
     .ms-BrandIcon--mpt.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpt_48x1_5.png)
     }
     .ms-BrandIcon--mpt.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpt_96x1_5.png)
     }
     .ms-BrandIcon--odp.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odp_16x1_5.png)
     }
     .ms-BrandIcon--odp.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odp_48x1_5.png)
     }
     .ms-BrandIcon--odp.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odp_96x1_5.png)
     }
     .ms-BrandIcon--ods.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ods_16x1_5.png)
     }
     .ms-BrandIcon--ods.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ods_48x1_5.png)
     }
     .ms-BrandIcon--ods.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ods_96x1_5.png)
     }
     .ms-BrandIcon--odt.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odt_16x1_5.png)
     }
     .ms-BrandIcon--odt.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odt_48x1_5.png)
     }
     .ms-BrandIcon--odt.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odt_96x1_5.png)
     }
     .ms-BrandIcon--one.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/one_16x1_5.png)
     }
     .ms-BrandIcon--one.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/one_48x1_5.png)
     }
     .ms-BrandIcon--one.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/one_96x1_5.png)
     }
     .ms-BrandIcon--onepkg.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onepkg_16x1_5.png)
     }
     .ms-BrandIcon--onepkg.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onepkg_48x1_5.png)
     }
     .ms-BrandIcon--onepkg.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onepkg_96x1_5.png)
     }
     .ms-BrandIcon--onetoc.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onetoc_16x1_5.png)
     }
     .ms-BrandIcon--onetoc.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onetoc_48x1_5.png)
     }
     .ms-BrandIcon--onetoc.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onetoc_96x1_5.png)
     }
     .ms-BrandIcon--potx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/potx_16x1_5.png)
     }
     .ms-BrandIcon--potx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/potx_48x1_5.png)
     }
     .ms-BrandIcon--potx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/potx_96x1_5.png)
     }
     .ms-BrandIcon--ppsx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ppsx_16x1_5.png)
     }
     .ms-BrandIcon--ppsx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ppsx_48x1_5.png)
     }
     .ms-BrandIcon--ppsx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ppsx_96x1_5.png)
     }
     .ms-BrandIcon--pptx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pptx_16x1_5.png)
     }
     .ms-BrandIcon--pptx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pptx_48x1_5.png)
     }
     .ms-BrandIcon--pptx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pptx_96x1_5.png)
     }
     .ms-BrandIcon--pub.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pub_16x1_5.png)
     }
     .ms-BrandIcon--pub.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pub_48x1_5.png)
     }
     .ms-BrandIcon--pub.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pub_96x1_5.png)
     }
     .ms-BrandIcon--vsdx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vsdx_16x1_5.png)
     }
     .ms-BrandIcon--vsdx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vsdx_48x1_5.png)
     }
     .ms-BrandIcon--vsdx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vsdx_96x1_5.png)
     }
     .ms-BrandIcon--vssx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vssx_16x1_5.png)
     }
     .ms-BrandIcon--vssx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vssx_48x1_5.png)
     }
     .ms-BrandIcon--vssx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vssx_96x1_5.png)
     }
     .ms-BrandIcon--vstx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vstx_16x1_5.png)
     }
     .ms-BrandIcon--vstx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vstx_48x1_5.png)
     }
     .ms-BrandIcon--vstx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vstx_96x1_5.png)
     }
     .ms-BrandIcon--xls.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xls_16x1_5.png)
     }
     .ms-BrandIcon--xls.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xls_48x1_5.png)
     }
     .ms-BrandIcon--xls.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xls_96x1_5.png)
     }
     .ms-BrandIcon--xlsx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xlsx_16x1_5.png)
     }
     .ms-BrandIcon--xlsx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xlsx_48x1_5.png)
     }
     .ms-BrandIcon--xlsx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xlsx_96x1_5.png)
     }
     .ms-BrandIcon--xltx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xltx_16x1_5.png)
     }
     .ms-BrandIcon--xltx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xltx_48x1_5.png)
     }
     .ms-BrandIcon--xltx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xltx_96x1_5.png)
     }
     .ms-BrandIcon--xsn.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xsn_16x1_5.png)
     }
     .ms-BrandIcon--xsn.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xsn_48x1_5.png)
     }
     .ms-BrandIcon--xsn.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xsn_96x1_5.png)
     }
 }
 
 @media only screen and (-webkit-min-device-pixel-ratio:2),
 only screen and (min-resolution:192dpi) {
     .ms-BrandIcon--access.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/access_16x2.png)
     }
     .ms-BrandIcon--access.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/access_48x2.png)
     }
     .ms-BrandIcon--access.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/access_96x2.png)
     }
     .ms-BrandIcon--excel.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/excel_16x2.png)
     }
     .ms-BrandIcon--excel.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/excel_48x2.png)
     }
     .ms-BrandIcon--excel.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/excel_96x2.png)
     }
     .ms-BrandIcon--infopath.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/infopath_16x2.png)
     }
     .ms-BrandIcon--infopath.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/infopath_48x2.png)
     }
     .ms-BrandIcon--infopath.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/infopath_96x2.png)
     }
     .ms-BrandIcon--office.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/office_16x2.png)
     }
     .ms-BrandIcon--office.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/office_48x2.png)
     }
     .ms-BrandIcon--office.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/office_96x2.png)
     }
     .ms-BrandIcon--onedrive.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onedrive_16x2.png)
     }
     .ms-BrandIcon--onedrive.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onedrive_48x2.png)
     }
     .ms-BrandIcon--onedrive.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onedrive_96x2.png)
     }
     .ms-BrandIcon--onenote.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onenote_16x2.png)
     }
     .ms-BrandIcon--onenote.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onenote_48x2.png)
     }
     .ms-BrandIcon--onenote.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onenote_96x2.png)
     }
     .ms-BrandIcon--outlook.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/outlook_16x2.png)
     }
     .ms-BrandIcon--outlook.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/outlook_48x2.png)
     }
     .ms-BrandIcon--outlook.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/outlook_96x2.png)
     }
     .ms-BrandIcon--powerpoint.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/powerpoint_16x2.png)
     }
     .ms-BrandIcon--powerpoint.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/powerpoint_48x2.png)
     }
     .ms-BrandIcon--powerpoint.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/powerpoint_96x2.png)
     }
     .ms-BrandIcon--project.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/project_16x2.png)
     }
     .ms-BrandIcon--project.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/project_48x2.png)
     }
     .ms-BrandIcon--project.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/project_96x2.png)
     }
     .ms-BrandIcon--sharepoint.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/sharepoint_16x2.png)
     }
     .ms-BrandIcon--sharepoint.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/sharepoint_48x2.png)
     }
     .ms-BrandIcon--sharepoint.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/sharepoint_96x2.png)
     }
     .ms-BrandIcon--visio.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/visio_16x2.png)
     }
     .ms-BrandIcon--visio.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/visio_48x2.png)
     }
     .ms-BrandIcon--visio.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/visio_96x2.png)
     }
     .ms-BrandIcon--word.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/word_16x2.png)
     }
     .ms-BrandIcon--word.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/word_48x2.png)
     }
     .ms-BrandIcon--word.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/word_96x2.png)
     }
     .ms-BrandIcon--accdb.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/accdb_16x2.png)
     }
     .ms-BrandIcon--accdb.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/accdb_48x2.png)
     }
     .ms-BrandIcon--accdb.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/accdb_96x2.png)
     }
     .ms-BrandIcon--csv.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/csv_16x2.png)
     }
     .ms-BrandIcon--csv.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/csv_48x2.png)
     }
     .ms-BrandIcon--csv.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/csv_96x2.png)
     }
     .ms-BrandIcon--docx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/docx_16x2.png)
     }
     .ms-BrandIcon--docx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/docx_48x2.png)
     }
     .ms-BrandIcon--docx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/docx_96x2.png)
     }
     .ms-BrandIcon--dotx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/dotx_16x2.png)
     }
     .ms-BrandIcon--dotx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/dotx_48x2.png)
     }
     .ms-BrandIcon--dotx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/dotx_96x2.png)
     }
     .ms-BrandIcon--mpp.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpp_16x2.png)
     }
     .ms-BrandIcon--mpp.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpp_48x2.png)
     }
     .ms-BrandIcon--mpp.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpp_96x2.png)
     }
     .ms-BrandIcon--mpt.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpt_16x2.png)
     }
     .ms-BrandIcon--mpt.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpt_48x2.png)
     }
     .ms-BrandIcon--mpt.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpt_96x2.png)
     }
     .ms-BrandIcon--odp.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odp_16x2.png)
     }
     .ms-BrandIcon--odp.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odp_48x2.png)
     }
     .ms-BrandIcon--odp.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odp_96x2.png)
     }
     .ms-BrandIcon--ods.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ods_16x2.png)
     }
     .ms-BrandIcon--ods.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ods_48x2.png)
     }
     .ms-BrandIcon--ods.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ods_96x2.png)
     }
     .ms-BrandIcon--odt.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odt_16x2.png)
     }
     .ms-BrandIcon--odt.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odt_48x2.png)
     }
     .ms-BrandIcon--odt.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odt_96x2.png)
     }
     .ms-BrandIcon--one.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/one_16x2.png)
     }
     .ms-BrandIcon--one.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/one_48x2.png)
     }
     .ms-BrandIcon--one.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/one_96x2.png)
     }
     .ms-BrandIcon--onepkg.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onepkg_16x2.png)
     }
     .ms-BrandIcon--onepkg.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onepkg_48x2.png)
     }
     .ms-BrandIcon--onepkg.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onepkg_96x2.png)
     }
     .ms-BrandIcon--onetoc.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onetoc_16x2.png)
     }
     .ms-BrandIcon--onetoc.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onetoc_48x2.png)
     }
     .ms-BrandIcon--onetoc.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onetoc_96x2.png)
     }
     .ms-BrandIcon--potx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/potx_16x2.png)
     }
     .ms-BrandIcon--potx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/potx_48x2.png)
     }
     .ms-BrandIcon--potx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/potx_96x2.png)
     }
     .ms-BrandIcon--ppsx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ppsx_16x2.png)
     }
     .ms-BrandIcon--ppsx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ppsx_48x2.png)
     }
     .ms-BrandIcon--ppsx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ppsx_96x2.png)
     }
     .ms-BrandIcon--pptx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pptx_16x2.png)
     }
     .ms-BrandIcon--pptx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pptx_48x2.png)
     }
     .ms-BrandIcon--pptx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pptx_96x2.png)
     }
     .ms-BrandIcon--pub.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pub_16x2.png)
     }
     .ms-BrandIcon--pub.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pub_48x2.png)
     }
     .ms-BrandIcon--pub.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pub_96x2.png)
     }
     .ms-BrandIcon--vsdx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vsdx_16x2.png)
     }
     .ms-BrandIcon--vsdx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vsdx_48x2.png)
     }
     .ms-BrandIcon--vsdx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vsdx_96x2.png)
     }
     .ms-BrandIcon--vssx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vssx_16x2.png)
     }
     .ms-BrandIcon--vssx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vssx_48x2.png)
     }
     .ms-BrandIcon--vssx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vssx_96x2.png)
     }
     .ms-BrandIcon--vstx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vstx_16x2.png)
     }
     .ms-BrandIcon--vstx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vstx_48x2.png)
     }
     .ms-BrandIcon--vstx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vstx_96x2.png)
     }
     .ms-BrandIcon--xls.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xls_16x2.png)
     }
     .ms-BrandIcon--xls.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xls_48x2.png)
     }
     .ms-BrandIcon--xls.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xls_96x2.png)
     }
     .ms-BrandIcon--xlsx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xlsx_16x2.png)
     }
     .ms-BrandIcon--xlsx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xlsx_48x2.png)
     }
     .ms-BrandIcon--xlsx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xlsx_96x2.png)
     }
     .ms-BrandIcon--xltx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xltx_16x2.png)
     }
     .ms-BrandIcon--xltx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xltx_48x2.png)
     }
     .ms-BrandIcon--xltx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xltx_96x2.png)
     }
     .ms-BrandIcon--xsn.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xsn_16x2.png)
     }
     .ms-BrandIcon--xsn.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xsn_48x2.png)
     }
     .ms-BrandIcon--xsn.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xsn_96x2.png)
     }
 }
 
 @media only screen and (-webkit-min-device-pixel-ratio:3),
 only screen and (min-resolution:288dpi) {
     .ms-BrandIcon--access.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/access_16x3.png)
     }
     .ms-BrandIcon--access.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/access_48x3.png)
     }
     .ms-BrandIcon--access.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/access_96x3.png)
     }
     .ms-BrandIcon--excel.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/excel_16x3.png)
     }
     .ms-BrandIcon--excel.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/excel_48x3.png)
     }
     .ms-BrandIcon--excel.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/excel_96x3.png)
     }
     .ms-BrandIcon--infopath.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/infopath_16x3.png)
     }
     .ms-BrandIcon--infopath.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/infopath_48x3.png)
     }
     .ms-BrandIcon--infopath.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/infopath_96x3.png)
     }
     .ms-BrandIcon--office.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/office_16x3.png)
     }
     .ms-BrandIcon--office.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/office_48x3.png)
     }
     .ms-BrandIcon--office.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/office_96x3.png)
     }
     .ms-BrandIcon--onedrive.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onedrive_16x3.png)
     }
     .ms-BrandIcon--onedrive.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onedrive_48x3.png)
     }
     .ms-BrandIcon--onedrive.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onedrive_96x3.png)
     }
     .ms-BrandIcon--onenote.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onenote_16x3.png)
     }
     .ms-BrandIcon--onenote.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onenote_48x3.png)
     }
     .ms-BrandIcon--onenote.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/onenote_96x3.png)
     }
     .ms-BrandIcon--outlook.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/outlook_16x3.png)
     }
     .ms-BrandIcon--outlook.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/outlook_48x3.png)
     }
     .ms-BrandIcon--outlook.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/outlook_96x3.png)
     }
     .ms-BrandIcon--powerpoint.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/powerpoint_16x3.png)
     }
     .ms-BrandIcon--powerpoint.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/powerpoint_48x3.png)
     }
     .ms-BrandIcon--powerpoint.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/powerpoint_96x3.png)
     }
     .ms-BrandIcon--project.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/project_16x3.png)
     }
     .ms-BrandIcon--project.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/project_48x3.png)
     }
     .ms-BrandIcon--project.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/project_96x3.png)
     }
     .ms-BrandIcon--sharepoint.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/sharepoint_16x3.png)
     }
     .ms-BrandIcon--sharepoint.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/sharepoint_48x3.png)
     }
     .ms-BrandIcon--sharepoint.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/sharepoint_96x3.png)
     }
     .ms-BrandIcon--visio.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/visio_16x3.png)
     }
     .ms-BrandIcon--visio.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/visio_48x3.png)
     }
     .ms-BrandIcon--visio.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/visio_96x3.png)
     }
     .ms-BrandIcon--word.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/word_16x3.png)
     }
     .ms-BrandIcon--word.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/word_48x3.png)
     }
     .ms-BrandIcon--word.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/product/png/word_96x3.png)
     }
     .ms-BrandIcon--accdb.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/accdb_16x3.png)
     }
     .ms-BrandIcon--accdb.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/accdb_48x3.png)
     }
     .ms-BrandIcon--accdb.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/accdb_96x3.png)
     }
     .ms-BrandIcon--csv.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/csv_16x3.png)
     }
     .ms-BrandIcon--csv.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/csv_48x3.png)
     }
     .ms-BrandIcon--csv.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/csv_96x3.png)
     }
     .ms-BrandIcon--docx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/docx_16x3.png)
     }
     .ms-BrandIcon--docx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/docx_48x3.png)
     }
     .ms-BrandIcon--docx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/docx_96x3.png)
     }
     .ms-BrandIcon--dotx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/dotx_16x3.png)
     }
     .ms-BrandIcon--dotx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/dotx_48x3.png)
     }
     .ms-BrandIcon--dotx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/dotx_96x3.png)
     }
     .ms-BrandIcon--mpp.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpp_16x3.png)
     }
     .ms-BrandIcon--mpp.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpp_48x3.png)
     }
     .ms-BrandIcon--mpp.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpp_96x3.png)
     }
     .ms-BrandIcon--mpt.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpt_16x3.png)
     }
     .ms-BrandIcon--mpt.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpt_48x3.png)
     }
     .ms-BrandIcon--mpt.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/mpt_96x3.png)
     }
     .ms-BrandIcon--odp.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odp_16x3.png)
     }
     .ms-BrandIcon--odp.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odp_48x3.png)
     }
     .ms-BrandIcon--odp.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odp_96x3.png)
     }
     .ms-BrandIcon--ods.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ods_16x3.png)
     }
     .ms-BrandIcon--ods.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ods_48x3.png)
     }
     .ms-BrandIcon--ods.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ods_96x3.png)
     }
     .ms-BrandIcon--odt.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odt_16x3.png)
     }
     .ms-BrandIcon--odt.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odt_48x3.png)
     }
     .ms-BrandIcon--odt.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/odt_96x3.png)
     }
     .ms-BrandIcon--one.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/one_16x3.png)
     }
     .ms-BrandIcon--one.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/one_48x3.png)
     }
     .ms-BrandIcon--one.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/one_96x3.png)
     }
     .ms-BrandIcon--onepkg.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onepkg_16x3.png)
     }
     .ms-BrandIcon--onepkg.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onepkg_48x3.png)
     }
     .ms-BrandIcon--onepkg.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onepkg_96x3.png)
     }
     .ms-BrandIcon--onetoc.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onetoc_16x3.png)
     }
     .ms-BrandIcon--onetoc.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onetoc_48x3.png)
     }
     .ms-BrandIcon--onetoc.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/onetoc_96x3.png)
     }
     .ms-BrandIcon--potx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/potx_16x3.png)
     }
     .ms-BrandIcon--potx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/potx_48x3.png)
     }
     .ms-BrandIcon--potx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/potx_96x3.png)
     }
     .ms-BrandIcon--ppsx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ppsx_16x3.png)
     }
     .ms-BrandIcon--ppsx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ppsx_48x3.png)
     }
     .ms-BrandIcon--ppsx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/ppsx_96x3.png)
     }
     .ms-BrandIcon--pptx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pptx_16x3.png)
     }
     .ms-BrandIcon--pptx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pptx_48x3.png)
     }
     .ms-BrandIcon--pptx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pptx_96x3.png)
     }
     .ms-BrandIcon--pub.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pub_16x3.png)
     }
     .ms-BrandIcon--pub.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pub_48x3.png)
     }
     .ms-BrandIcon--pub.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/pub_96x3.png)
     }
     .ms-BrandIcon--vsdx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vsdx_16x3.png)
     }
     .ms-BrandIcon--vsdx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vsdx_48x3.png)
     }
     .ms-BrandIcon--vsdx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vsdx_96x3.png)
     }
     .ms-BrandIcon--vssx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vssx_16x3.png)
     }
     .ms-BrandIcon--vssx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vssx_48x3.png)
     }
     .ms-BrandIcon--vssx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vssx_96x3.png)
     }
     .ms-BrandIcon--vstx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vstx_16x3.png)
     }
     .ms-BrandIcon--vstx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vstx_48x3.png)
     }
     .ms-BrandIcon--vstx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/vstx_96x3.png)
     }
     .ms-BrandIcon--xls.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xls_16x3.png)
     }
     .ms-BrandIcon--xls.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xls_48x3.png)
     }
     .ms-BrandIcon--xls.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xls_96x3.png)
     }
     .ms-BrandIcon--xlsx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xlsx_16x3.png)
     }
     .ms-BrandIcon--xlsx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xlsx_48x3.png)
     }
     .ms-BrandIcon--xlsx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xlsx_96x3.png)
     }
     .ms-BrandIcon--xltx.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xltx_16x3.png)
     }
     .ms-BrandIcon--xltx.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xltx_48x3.png)
     }
     .ms-BrandIcon--xltx.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xltx_96x3.png)
     }
     .ms-BrandIcon--xsn.ms-BrandIcon--icon16 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xsn_16x3.png)
     }
     .ms-BrandIcon--xsn.ms-BrandIcon--icon48 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xsn_48x3.png)
     }
     .ms-BrandIcon--xsn.ms-BrandIcon--icon96 {
         background-image: url(https://static2.sharepointonline.com/files/fabric/assets/brand-icons/document/png/xsn_96x3.png)
     }
 }
 
 .ms-bgColor-themeDark,
 .ms-bgColor-themeDark--hover:hover {
     background-color: #005a9e
 }
 
 .ms-bgColor-themeDarkAlt,
 .ms-bgColor-themeDarkAlt--hover:hover {
     background-color: #106ebe
 }
 
 .ms-bgColor-themeDarker,
 .ms-bgColor-themeDarker--hover:hover {
     background-color: #004578
 }
 
 .ms-bgColor-themePrimary,
 .ms-bgColor-themePrimary--hover:hover {
     background-color: #0078d7
 }
 
 .ms-bgColor-themeSecondary,
 .ms-bgColor-themeSecondary--hover:hover {
     background-color: #2b88d8
 }
 
 .ms-bgColor-themeTertiary,
 .ms-bgColor-themeTertiary--hover:hover {
     background-color: #71afe5
 }
 
 .ms-bgColor-themeLight,
 .ms-bgColor-themeLight--hover:hover {
     background-color: #c7e0f4
 }
 
 .ms-bgColor-themeLighter,
 .ms-bgColor-themeLighter--hover:hover {
     background-color: #deecf9
 }
 
 .ms-bgColor-themeLighterAlt,
 .ms-bgColor-themeLighterAlt--hover:hover {
     background-color: #eff6fc
 }
 
 .ms-bgColor-black,
 .ms-bgColor-black--hover:hover {
     background-color: #000
 }
 
 .ms-bgColor-neutralDark,
 .ms-bgColor-neutralDark--hover:hover {
     background-color: #212121
 }
 
 .ms-bgColor-neutralPrimary,
 .ms-bgColor-neutralPrimary--hover:hover {
     background-color: #333
 }
 
 .ms-bgColor-neutralPrimaryAlt,
 .ms-bgColor-neutralPrimaryAlt--hover:hover {
     background-color: #3c3c3c
 }
 
 .ms-bgColor-neutralSecondary,
 .ms-bgColor-neutralSecondary--hover:hover {
     background-color: #666
 }
 
 .ms-bgColor-neutralSecondaryAlt,
 .ms-bgColor-neutralSecondaryAlt--hover:hover {
     background-color: #767676
 }
 
 .ms-bgColor-neutralTertiary,
 .ms-bgColor-neutralTertiary--hover:hover {
     background-color: #a6a6a6
 }
 
 .ms-bgColor-neutralTertiaryAlt,
 .ms-bgColor-neutralTertiaryAlt--hover:hover {
     background-color: #c8c8c8
 }
 
 .ms-bgColor-neutralLight,
 .ms-bgColor-neutralLight--hover:hover {
     background-color: #eaeaea
 }
 
 .ms-bgColor-neutralLighter,
 .ms-bgColor-neutralLighter--hover:hover {
     background-color: #f4f4f4
 }
 
 .ms-bgColor-neutralLighterAlt,
 .ms-bgColor-neutralLighterAlt--hover:hover {
     background-color: #f8f8f8
 }
 
 .ms-bgColor-white,
 .ms-bgColor-white--hover:hover {
     background-color: #fff
 }
 
 .ms-bgColor-yellow,
 .ms-bgColor-yellow--hover:hover {
     background-color: #ffb900
 }
 
 .ms-bgColor-yellowLight,
 .ms-bgColor-yellowLight--hover:hover {
     background-color: #fff100
 }
 
 .ms-bgColor-orange,
 .ms-bgColor-orange--hover:hover {
     background-color: #d83b01
 }
 
 .ms-bgColor-orangeLight,
 .ms-bgColor-orangeLight--hover:hover {
     background-color: #ea4300
 }
 
 .ms-bgColor-orangeLighter,
 .ms-bgColor-orangeLighter--hover:hover {
     background-color: #ff8c00
 }
 
 .ms-bgColor-redDark,
 .ms-bgColor-redDark--hover:hover {
     background-color: #a80000
 }
 
 .ms-bgColor-red,
 .ms-bgColor-red--hover:hover {
     background-color: #e81123
 }
 
 .ms-bgColor-magentaDark,
 .ms-bgColor-magentaDark--hover:hover {
     background-color: #5c005c
 }
 
 .ms-bgColor-magenta,
 .ms-bgColor-magenta--hover:hover {
     background-color: #b4009e
 }
 
 .ms-bgColor-magentaLight,
 .ms-bgColor-magentaLight--hover:hover {
     background-color: #e3008c
 }
 
 .ms-bgColor-purpleDark,
 .ms-bgColor-purpleDark--hover:hover {
     background-color: #32145a
 }
 
 .ms-bgColor-purple,
 .ms-bgColor-purple--hover:hover {
     background-color: #5c2d91
 }
 
 .ms-bgColor-purpleLight,
 .ms-bgColor-purpleLight--hover:hover {
     background-color: #b4a0ff
 }
 
 .ms-bgColor-blueDark,
 .ms-bgColor-blueDark--hover:hover {
     background-color: #002050
 }
 
 .ms-bgColor-blueMid,
 .ms-bgColor-blueMid--hover:hover {
     background-color: #00188f
 }
 
 .ms-bgColor-blue,
 .ms-bgColor-blue--hover:hover {
     background-color: #0078d7
 }
 
 .ms-bgColor-blueLight,
 .ms-bgColor-blueLight--hover:hover {
     background-color: #00bcf2
 }
 
 .ms-bgColor-tealDark,
 .ms-bgColor-tealDark--hover:hover {
     background-color: #004b50
 }
 
 .ms-bgColor-teal,
 .ms-bgColor-teal--hover:hover {
     background-color: #008272
 }
 
 .ms-bgColor-tealLight,
 .ms-bgColor-tealLight--hover:hover {
     background-color: #00b294
 }
 
 .ms-bgColor-greenDark,
 .ms-bgColor-greenDark--hover:hover {
     background-color: #004b1c
 }
 
 .ms-bgColor-green,
 .ms-bgColor-green--hover:hover {
     background-color: #107c10
 }
 
 .ms-bgColor-greenLight,
 .ms-bgColor-greenLight--hover:hover {
     background-color: #bad80a
 }
 
 .ms-bgColor-info,
 .ms-bgColor-info--hover:hover {
     background-color: #f4f4f4
 }
 
 .ms-bgColor-success,
 .ms-bgColor-success--hover:hover {
     background-color: #dff6dd
 }
 
 .ms-bgColor-severeWarning,
 .ms-bgColor-severeWarning--hover:hover {
     background-color: #fed9cc
 }
 
 .ms-bgColor-warning,
 .ms-bgColor-warning--hover:hover {
     background-color: #fff4ce
 }
 
 .ms-bgColor-error,
 .ms-bgColor-error--hover:hover {
     background-color: #fde7e9
 }
 
 .ms-borderColor-themeDark,
 .ms-borderColor-themeDark--hover:hover {
     border-color: #005a9e
 }
 
 .ms-borderColor-themeDarkAlt,
 .ms-borderColor-themeDarkAlt--hover:hover {
     border-color: #106ebe
 }
 
 .ms-borderColor-themeDarker,
 .ms-borderColor-themeDarker--hover:hover {
     border-color: #004578
 }
 
 .ms-borderColor-themePrimary,
 .ms-borderColor-themePrimary--hover:hover {
     border-color: #0078d7
 }
 
 .ms-borderColor-themeSecondary,
 .ms-borderColor-themeSecondary--hover:hover {
     border-color: #2b88d8
 }
 
 .ms-borderColor-themeTertiary,
 .ms-borderColor-themeTertiary--hover:hover {
     border-color: #71afe5
 }
 
 .ms-borderColor-themeLight,
 .ms-borderColor-themeLight--hover:hover {
     border-color: #c7e0f4
 }
 
 .ms-borderColor-themeLighter,
 .ms-borderColor-themeLighter--hover:hover {
     border-color: #deecf9
 }
 
 .ms-borderColor-themeLighterAlt,
 .ms-borderColor-themeLighterAlt--hover:hover {
     border-color: #eff6fc
 }
 
 .ms-borderColor-black,
 .ms-borderColor-black--hover:hover {
     border-color: #000
 }
 
 .ms-borderColor-neutralDark,
 .ms-borderColor-neutralDark--hover:hover {
     border-color: #212121
 }
 
 .ms-borderColor-neutralPrimary,
 .ms-borderColor-neutralPrimary--hover:hover {
     border-color: #333
 }
 
 .ms-borderColor-neutralPrimaryAlt,
 .ms-borderColor-neutralPrimaryAlt--hover:hover {
     border-color: #3c3c3c
 }
 
 .ms-borderColor-neutralSecondary,
 .ms-borderColor-neutralSecondary--hover:hover {
     border-color: #666
 }
 
 .ms-borderColor-neutralSecondaryAlt,
 .ms-borderColor-neutralSecondaryAlt--hover:hover {
     border-color: #767676
 }
 
 .ms-borderColor-neutralTertiary,
 .ms-borderColor-neutralTertiary--hover:hover {
     border-color: #a6a6a6
 }
 
 .ms-borderColor-neutralTertiaryAlt,
 .ms-borderColor-neutralTertiaryAlt--hover:hover {
     border-color: #c8c8c8
 }
 
 .ms-borderColor-neutralLight,
 .ms-borderColor-neutralLight--hover:hover {
     border-color: #eaeaea
 }
 
 .ms-borderColor-neutralLighter,
 .ms-borderColor-neutralLighter--hover:hover {
     border-color: #f4f4f4
 }
 
 .ms-borderColor-neutralLighterAlt,
 .ms-borderColor-neutralLighterAlt--hover:hover {
     border-color: #f8f8f8
 }
 
 .ms-borderColor-white,
 .ms-borderColor-white--hover:hover {
     border-color: #fff
 }
 
 .ms-borderColor-yellow,
 .ms-borderColor-yellow--hover:hover {
     border-color: #ffb900
 }
 
 .ms-borderColor-yellowLight,
 .ms-borderColor-yellowLight--hover:hover {
     border-color: #fff100
 }
 
 .ms-borderColor-orange,
 .ms-borderColor-orange--hover:hover {
     border-color: #d83b01
 }
 
 .ms-borderColor-orangeLight,
 .ms-borderColor-orangeLight--hover:hover {
     border-color: #ea4300
 }
 
 .ms-borderColor-orangeLighter,
 .ms-borderColor-orangeLighter--hover:hover {
     border-color: #ff8c00
 }
 
 .ms-borderColor-redDark,
 .ms-borderColor-redDark--hover:hover {
     border-color: #a80000
 }
 
 .ms-borderColor-red,
 .ms-borderColor-red--hover:hover {
     border-color: #e81123
 }
 
 .ms-borderColor-magentaDark,
 .ms-borderColor-magentaDark--hover:hover {
     border-color: #5c005c
 }
 
 .ms-borderColor-magenta,
 .ms-borderColor-magenta--hover:hover {
     border-color: #b4009e
 }
 
 .ms-borderColor-magentaLight,
 .ms-borderColor-magentaLight--hover:hover {
     border-color: #e3008c
 }
 
 .ms-borderColor-purpleDark,
 .ms-borderColor-purpleDark--hover:hover {
     border-color: #32145a
 }
 
 .ms-borderColor-purple,
 .ms-borderColor-purple--hover:hover {
     border-color: #5c2d91
 }
 
 .ms-borderColor-purpleLight,
 .ms-borderColor-purpleLight--hover:hover {
     border-color: #b4a0ff
 }
 
 .ms-borderColor-blueDark,
 .ms-borderColor-blueDark--hover:hover {
     border-color: #002050
 }
 
 .ms-borderColor-blueMid,
 .ms-borderColor-blueMid--hover:hover {
     border-color: #00188f
 }
 
 .ms-borderColor-blue,
 .ms-borderColor-blue--hover:hover {
     border-color: #0078d7
 }
 
 .ms-borderColor-blueLight,
 .ms-borderColor-blueLight--hover:hover {
     border-color: #00bcf2
 }
 
 .ms-borderColor-tealDark,
 .ms-borderColor-tealDark--hover:hover {
     border-color: #004b50
 }
 
 .ms-borderColor-teal,
 .ms-borderColor-teal--hover:hover {
     border-color: #008272
 }
 
 .ms-borderColor-tealLight,
 .ms-borderColor-tealLight--hover:hover {
     border-color: #00b294
 }
 
 .ms-borderColor-greenDark,
 .ms-borderColor-greenDark--hover:hover {
     border-color: #004b1c
 }
 
 .ms-borderColor-green,
 .ms-borderColor-green--hover:hover {
     border-color: #107c10
 }
 
 .ms-borderColor-greenLight,
 .ms-borderColor-greenLight--hover:hover {
     border-color: #bad80a
 }
 /*
 @font-face {
     font-family: Leelawadee UI Web;
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-light.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-light.woff) format("woff");
     font-weight: 100;
     font-style: normal
 }
 
 @font-face {
     font-family: Leelawadee UI Web;
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff) format("woff");
     font-weight: 300;
     font-style: normal
 }
 
 @font-face {
     font-family: Leelawadee UI Web;
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-regular.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-regular.woff) format("woff");
     font-weight: 400;
     font-style: normal
 }
 
 @font-face {
     font-family: Leelawadee UI Web;
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semibold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semibold.woff) format("woff");
     font-weight: 600;
     font-style: normal
 }
 
 @font-face {
     font-family: Leelawadee UI Web;
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff) format("woff");
     font-weight: 700;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Arabic);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-light.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-light.woff) format("woff");
     font-weight: 100;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Arabic);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semilight.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semilight.woff) format("woff");
     font-weight: 300;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Arabic);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-regular.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-regular.woff) format("woff");
     font-weight: 400;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Arabic);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semibold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semibold.woff) format("woff");
     font-weight: 600;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Arabic);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-bold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-bold.woff) format("woff");
     font-weight: 700;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Cyrillic);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-light.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-light.woff) format("woff");
     font-weight: 100;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Cyrillic);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semilight.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semilight.woff) format("woff");
     font-weight: 300;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Cyrillic);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-regular.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-regular.woff) format("woff");
     font-weight: 400;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Cyrillic);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semibold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semibold.woff) format("woff");
     font-weight: 600;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Cyrillic);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-bold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-bold.woff) format("woff");
     font-weight: 700;
     font-style: normal
 }
 
 @font-face {
     font-family: "Segoe UI Web (East European)";
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-light.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-light.woff) format("woff");
     font-weight: 100;
     font-style: normal
 }
 
 @font-face {
     font-family: "Segoe UI Web (East European)";
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semilight.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semilight.woff) format("woff");
     font-weight: 300;
     font-style: normal
 }
 
 @font-face {
     font-family: "Segoe UI Web (East European)";
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-regular.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-regular.woff) format("woff");
     font-weight: 400;
     font-style: normal
 }
 
 @font-face {
     font-family: "Segoe UI Web (East European)";
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semibold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semibold.woff) format("woff");
     font-weight: 600;
     font-style: normal
 }
 
 @font-face {
     font-family: "Segoe UI Web (East European)";
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-bold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-bold.woff) format("woff");
     font-weight: 700;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Greek);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-light.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-light.woff) format("woff");
     font-weight: 100;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Greek);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semilight.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semilight.woff) format("woff");
     font-weight: 300;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Greek);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-regular.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-regular.woff) format("woff");
     font-weight: 400;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Greek);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semibold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semibold.woff) format("woff");
     font-weight: 600;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Greek);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-bold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-bold.woff) format("woff");
     font-weight: 700;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Hebrew);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-light.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-light.woff) format("woff");
     font-weight: 100;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Hebrew);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semilight.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semilight.woff) format("woff");
     font-weight: 300;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Hebrew);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-regular.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-regular.woff) format("woff");
     font-weight: 400;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Hebrew);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semibold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semibold.woff) format("woff");
     font-weight: 600;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Hebrew);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-bold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-bold.woff) format("woff");
     font-weight: 700;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Vietnamese);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-light.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-light.woff) format("woff");
     font-weight: 100;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Vietnamese);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semilight.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semilight.woff) format("woff");
     font-weight: 300;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Vietnamese);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-regular.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-regular.woff) format("woff");
     font-weight: 400;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Vietnamese);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semibold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semibold.woff) format("woff");
     font-weight: 600;
     font-style: normal
 }
 
 @font-face {
     font-family: Segoe UI Web\ (Vietnamese);
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-bold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-bold.woff) format("woff");
     font-weight: 700;
     font-style: normal
 }
 
 @font-face {
     font-family: "Segoe UI Web (West European)";
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-light.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-light.woff) format("woff");
     font-weight: 100;
     font-style: normal
 }
 
 @font-face {
     font-family: "Segoe UI Web (West European)";
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semilight.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semilight.woff) format("woff");
     font-weight: 300;
     font-style: normal
 }
 
 @font-face {
     font-family: "Segoe UI Web (West European)";
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-regular.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-regular.woff) format("woff");
     font-weight: 400;
     font-style: normal
 }
 
 @font-face {
     font-family: "Segoe UI Web (West European)";
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semibold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semibold.woff) format("woff");
     font-weight: 600;
     font-style: normal
 }
 
 @font-face {
     font-family: "Segoe UI Web (West European)";
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-bold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-bold.woff) format("woff");
     font-weight: 700;
     font-style: normal
 }
 
 @font-face {
     font-family: Selawik Web;
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-light.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-light.woff) format("woff");
     font-weight: 100;
     font-style: normal
 }
 
 @font-face {
     font-family: Selawik Web;
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semilight.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semilight.woff) format("woff");
     font-weight: 300;
     font-style: normal
 }
 
 @font-face {
     font-family: Selawik Web;
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-regular.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-regular.woff) format("woff");
     font-weight: 400;
     font-style: normal
 }
 
 @font-face {
     font-family: Selawik Web;
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semibold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semibold.woff) format("woff");
     font-weight: 600;
     font-style: normal
 }
 
 @font-face {
     font-family: Selawik Web;
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-bold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-bold.woff) format("woff");
     font-weight: 700;
     font-style: normal
 }
 
 @font-face {
     font-family: Leelawadee UI Web;
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff) format("woff");
     font-weight: 100;
     font-style: normal
 }
 
 @font-face {
     font-family: Leelawadee UI Web;
     src: url(https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff) format("woff");
     font-weight: 600;
     font-style: normal
 }
 */
 .ms-font-su {
     font-size: 42px;
     font-weight: 100
 }
 
 .ms-font-xxl {
     font-size: 28px;
     font-weight: 100
 }
 
 .ms-font-xl-plus {
     font-size: 24px;
     font-weight: 100
 }
 
 .ms-font-xl {
     font-size: 21px;
     font-weight: 100
 }
 
 .ms-font-l {
     font-size: 17px;
     font-weight: 300
 }
 
 .ms-font-m-plus {
     font-size: 15px;
     font-weight: 400
 }
 
 .ms-font-m {
     font-size: 14px;
     font-weight: 400
 }
 
 .ms-font-s-plus {
     font-size: 13px;
     font-weight: 400
 }
 
 .ms-font-s {
     font-size: 12px;
     font-weight: 400
 }
 
 .ms-font-xs {
     font-size: 11px;
     font-weight: 400
 }
 
 .ms-font-mi {
     font-size: 10px;
     font-weight: 600
 }
 
 .ms-fontWeight-light {
     font-weight: 100
 }
 
 .ms-fontWeight-semilight {
     font-weight: 300
 }
 
 .ms-fontWeight-regular {
     font-weight: 400
 }
 
 .ms-fontWeight-semibold {
     font-weight: 600
 }
 
 .ms-fontWeight-bold {
     font-weight: 700
 }
 
 .ms-fontSize-su {
     font-size: 42px
 }
 
 .ms-fontSize-xxl {
     font-size: 28px
 }
 
 .ms-fontSize-xlPlus {
     font-size: 24px
 }
 
 .ms-fontSize-xl {
     font-size: 21px
 }
 
 .ms-fontSize-l {
     font-size: 17px
 }
 
 .ms-fontSize-mPlus {
     font-size: 15px
 }
 
 .ms-fontSize-m {
     font-size: 14px
 }
 
 .ms-fontSize-sPlus {
     font-size: 13px
 }
 
 .ms-fontSize-s {
     font-size: 12px
 }
 
 .ms-fontSize-xs {
     font-size: 11px
 }
 
 .ms-fontSize-mi {
     font-size: 10px
 }
 
 .ms-fontColor-themeDarker,
 .ms-fontColor-themeDarker--hover:hover {
     color: #004578
 }
 
 .ms-fontColor-themeDark,
 .ms-fontColor-themeDark--hover:hover {
     color: #005a9e
 }
 
 .ms-fontColor-themeDarkAlt,
 .ms-fontColor-themeDarkAlt--hover:hover {
     color: #106ebe
 }
 
 .ms-fontColor-themePrimary,
 .ms-fontColor-themePrimary--hover:hover {
     color: #0078d7
 }
 
 .ms-fontColor-themeSecondary,
 .ms-fontColor-themeSecondary--hover:hover {
     color: #2b88d8
 }
 
 .ms-fontColor-themeTertiary,
 .ms-fontColor-themeTertiary--hover:hover {
     color: #71afe5
 }
 
 .ms-fontColor-themeLight,
 .ms-fontColor-themeLight--hover:hover {
     color: #c7e0f4
 }
 
 .ms-fontColor-themeLighter,
 .ms-fontColor-themeLighter--hover:hover {
     color: #deecf9
 }
 
 .ms-fontColor-themeLighterAlt,
 .ms-fontColor-themeLighterAlt--hover:hover {
     color: #eff6fc
 }
 
 .ms-fontColor-black,
 .ms-fontColor-black--hover:hover {
     color: #000
 }
 
 .ms-fontColor-neutralDark,
 .ms-fontColor-neutralDark--hover:hover {
     color: #212121
 }
 
 .ms-fontColor-neutralPrimary,
 .ms-fontColor-neutralPrimary--hover:hover {
     color: #333
 }
 
 .ms-fontColor-neutralPrimaryAlt,
 .ms-fontColor-neutralPrimaryAlt--hover:hover {
     color: #3c3c3c
 }
 
 .ms-fontColor-neutralSecondary,
 .ms-fontColor-neutralSecondary--hover:hover {
     color: #666
 }
 
 .ms-fontColor-neutralSecondaryAlt,
 .ms-fontColor-neutralSecondaryAlt--hover:hover {
     color: #767676
 }
 
 .ms-fontColor-neutralTertiary,
 .ms-fontColor-neutralTertiary--hover:hover {
     color: #a6a6a6
 }
 
 .ms-fontColor-neutralTertiaryAlt,
 .ms-fontColor-neutralTertiaryAlt--hover:hover {
     color: #c8c8c8
 }
 
 .ms-fontColor-neutralLight,
 .ms-fontColor-neutralLight--hover:hover {
     color: #eaeaea
 }
 
 .ms-fontColor-neutralLighter,
 .ms-fontColor-neutralLighter--hover:hover {
     color: #f4f4f4
 }
 
 .ms-fontColor-neutralLighterAlt,
 .ms-fontColor-neutralLighterAlt--hover:hover {
     color: #f8f8f8
 }
 
 .ms-fontColor-white,
 .ms-fontColor-white--hover:hover {
     color: #fff
 }
 
 .ms-fontColor-yellow,
 .ms-fontColor-yellow--hover:hover {
     color: #ffb900
 }
 
 .ms-fontColor-yellowLight,
 .ms-fontColor-yellowLight--hover:hover {
     color: #fff100
 }
 
 .ms-fontColor-orange,
 .ms-fontColor-orange--hover:hover {
     color: #d83b01
 }
 
 .ms-fontColor-orangeLight,
 .ms-fontColor-orangeLight--hover:hover {
     color: #ea4300
 }
 
 .ms-fontColor-orangeLighter,
 .ms-fontColor-orangeLighter--hover:hover {
     color: #ff8c00
 }
 
 .ms-fontColor-redDark,
 .ms-fontColor-redDark--hover:hover {
     color: #a80000
 }
 
 .ms-fontColor-red,
 .ms-fontColor-red--hover:hover {
     color: #e81123
 }
 
 .ms-fontColor-magentaDark,
 .ms-fontColor-magentaDark--hover:hover {
     color: #5c005c
 }
 
 .ms-fontColor-magenta,
 .ms-fontColor-magenta--hover:hover {
     color: #b4009e
 }
 
 .ms-fontColor-magentaLight,
 .ms-fontColor-magentaLight--hover:hover {
     color: #e3008c
 }
 
 .ms-fontColor-purpleDark,
 .ms-fontColor-purpleDark--hover:hover {
     color: #32145a
 }
 
 .ms-fontColor-purple,
 .ms-fontColor-purple--hover:hover {
     color: #5c2d91
 }
 
 .ms-fontColor-purpleLight,
 .ms-fontColor-purpleLight--hover:hover {
     color: #b4a0ff
 }
 
 .ms-fontColor-blueDark,
 .ms-fontColor-blueDark--hover:hover {
     color: #002050
 }
 
 .ms-fontColor-blueMid,
 .ms-fontColor-blueMid--hover:hover {
     color: #00188f
 }
 
 .ms-fontColor-blue,
 .ms-fontColor-blue--hover:hover {
     color: #0078d7
 }
 
 .ms-fontColor-blueLight,
 .ms-fontColor-blueLight--hover:hover {
     color: #00bcf2
 }
 
 .ms-fontColor-tealDark,
 .ms-fontColor-tealDark--hover:hover {
     color: #004b50
 }
 
 .ms-fontColor-teal,
 .ms-fontColor-teal--hover:hover {
     color: #008272
 }
 
 .ms-fontColor-tealLight,
 .ms-fontColor-tealLight--hover:hover {
     color: #00b294
 }
 
 .ms-fontColor-greenDark,
 .ms-fontColor-greenDark--hover:hover {
     color: #004b1c
 }
 
 .ms-fontColor-green,
 .ms-fontColor-green--hover:hover {
     color: #107c10
 }
 
 .ms-fontColor-greenLight,
 .ms-fontColor-greenLight--hover:hover {
     color: #bad80a
 }
 
 .ms-fontColor-info,
 .ms-fontColor-info--hover:hover {
     color: #767676
 }
 
 .ms-fontColor-success,
 .ms-fontColor-success--hover:hover {
     color: #107c10
 }
 
 .ms-fontColor-alert,
 .ms-fontColor-alert--hover:hover {
     color: #d83b01
 }
 
 .ms-fontColor-warning,
 .ms-fontColor-warning--hover:hover {
     color: #767676
 }
 
 .ms-fontColor-severeWarning,
 .ms-fontColor-severeWarning--hover:hover {
     color: #d83b01
 }
 
 .ms-fontColor-error,
 .ms-fontColor-error--hover:hover {
     color: #a80000
 }
 
 .ms-Grid {
     box-sizing: border-box;
     *zoom: 1;
     padding: 0 8px
 }
 
 .ms-Grid:after,
 .ms-Grid:before {
     display: table;
     content: "";
     line-height: 0
 }
 
 .ms-Grid:after {
     clear: both
 }
 
 .ms-Grid-row {
     margin: 0 -8px;
     box-sizing: border-box;
     *zoom: 1
 }
 
 .ms-Grid-row:after,
 .ms-Grid-row:before {
     display: table;
     content: "";
     line-height: 0
 }
 
 .ms-Grid-row:after {
     clear: both
 }
 
 .ms-Grid-col {
     position: relative;
     min-height: 1px;
     padding-left: 8px;
     padding-right: 8px;
     box-sizing: border-box
 }
 
 [dir=ltr] .ms-Grid-col {
     float: left
 }
 
 [dir=rtl] .ms-Grid-col {
     float: right
 }
 
 .ms-Grid-col .ms-Grid {
     padding: 0
 }
 
 @font-face {
     font-family: FabricMDL2Icons;
     src: url(https://static2.sharepointonline.com/files/fabric/assets/icons/fabricmdl2icons-2.53.woff2) format("woff2"), url(https://static2.sharepointonline.com/files/fabric/assets/icons/fabricmdl2icons-2.53.woff) format("woff"), url(https://static2.sharepointonline.com/files/fabric/assets/icons/fabricmdl2icons-2.53.ttf) format("truetype");
     font-weight: 400;
     font-style: normal
 }
 
 .ms-Icon {
     display: inline-block;
     font-family: FabricMDL2Icons;
     font-style: normal;
     font-weight: 400;
     speak: none
 }
 
 .ms-Icon--circle {
     margin: 0 .5em 0 0;
     position: relative;
     display: inline-block;
     font-size: 1rem;
     width: 1em;
     height: 1em;
     padding: 0;
     text-align: left
 }
 
 [dir=rtl] .ms-Icon--circle {
     margin: 0 0 0 .5em
 }
 
 .ms-Icon--circle:after,
 .ms-Icon--circle:before {
     line-height: 1;
     font-size: inherit
 }
 
 .ms-Icon--circle:before {
     display: block;
     width: 100%;
     height: 100%;
     margin: 0;
     padding: 0;
     vertical-align: top;
     position: absolute
 }
 
 .ms-Icon--circle:after {
     content: "\e000";
     position: absolute;
     top: 0;
     left: 0;
     transform: scale(2);
     transform-origin: 50% 50%;
     z-index: 0
 }
 
 .ms-Icon--xs {
     font-size: 10px
 }
 
 .ms-Icon--s {
     font-size: 12px
 }
 
 .ms-Icon--m {
     font-size: 16px
 }
 
 .ms-Icon--l {
     font-size: 20px
 }
 
 .ms-Icon--12PointStar:before {
     content: "ï”…"
 }
 
 .ms-Icon--6PointStar:before {
     content: "ï”„"
 }
 
 .ms-Icon--AADLogo:before {
     content: "îµ¨"
 }
 
 .ms-Icon--Accept:before {
     content: "î£»"
 }
 
 .ms-Icon--AccessLogo:before {
     content: "îµ©"
 }
 
 .ms-Icon--AccessLogoFill:before {
     content: "ï‡›"
 }
 
 .ms-Icon--Accounts:before {
     content: "î¤"
 }
 
 .ms-Icon--ActivityFeed:before {
     content: "ï–"
 }
 
 .ms-Icon--Add:before {
     content: "îœ"
 }
 
 .ms-Icon--AddEvent:before {
     content: "îºµ"
 }
 
 .ms-Icon--AddFavorite:before {
     content: "ïƒˆ"
 }
 
 .ms-Icon--AddFavoriteFill:before {
     content: "ïƒ‰"
 }
 
 .ms-Icon--AddFriend:before {
     content: "î£º"
 }
 
 .ms-Icon--AddGroup:before {
     content: "î¸½"
 }
 
 .ms-Icon--AddNotes:before {
     content: "î«£"
 }
 
 .ms-Icon--AddOnlineMeeting:before {
     content: "î¶Ž"
 }
 
 .ms-Icon--AddPhone:before {
     content: "î¶–"
 }
 
 .ms-Icon--AddTo:before {
     content: "î³ˆ"
 }
 
 .ms-Icon--Admin:before {
     content: "îŸ¯"
 }
 
 .ms-Icon--AdminALogo32:before {
     content: "ï’º"
 }
 
 .ms-Icon--AdminALogoFill32:before {
     content: "ï’»"
 }
 
 .ms-Icon--AdminALogoInverse32:before {
     content: "îµª"
 }
 
 .ms-Icon--AdminCLogoInverse32:before {
     content: "îµ«"
 }
 
 .ms-Icon--AdminDLogoInverse32:before {
     content: "îµ¬"
 }
 
 .ms-Icon--AdminELogoInverse32:before {
     content: "îµ­"
 }
 
 .ms-Icon--AdminLLogoInverse32:before {
     content: "îµ®"
 }
 
 .ms-Icon--AdminMLogoInverse32:before {
     content: "îµ¯"
 }
 
 .ms-Icon--AdminOLogoInverse32:before {
     content: "îµ°"
 }
 
 .ms-Icon--AdminPLogoInverse32:before {
     content: "îµ±"
 }
 
 .ms-Icon--AdminSLogoInverse32:before {
     content: "îµ²"
 }
 
 .ms-Icon--AdminYLogoInverse32:before {
     content: "îµ³"
 }
 
 .ms-Icon--Airplane:before {
     content: "îœ‰"
 }
 
 .ms-Icon--AirplaneSolid:before {
     content: "î­Œ"
 }
 
 .ms-Icon--AirTickets:before {
     content: "î½º"
 }
 
 .ms-Icon--AlarmClock:before {
     content: "î¤™"
 }
 
 .ms-Icon--Album:before {
     content: "îž«"
 }
 
 .ms-Icon--AlbumRemove:before {
     content: "î±¢"
 }
 
 .ms-Icon--AlertSolid:before {
     content: "ïŒ±"
 }
 
 .ms-Icon--AlignCenter:before {
     content: "î££"
 }
 
 .ms-Icon--AlignHorizontalCenter:before {
     content: "ï“´"
 }
 
 .ms-Icon--AlignHorizontalLeft:before {
     content: "ï“³"
 }
 
 .ms-Icon--AlignHorizontalRight:before {
     content: "ï“µ"
 }
 
 .ms-Icon--AlignJustify:before {
     content: "ï”ž"
 }
 
 .ms-Icon--AlignLeft:before {
     content: "î£¤"
 }
 
 .ms-Icon--AlignRight:before {
     content: "î£¢"
 }
 
 .ms-Icon--AlignVerticalBottom:before {
     content: "ï“¸"
 }
 
 .ms-Icon--AlignVerticalCenter:before {
     content: "ï“·"
 }
 
 .ms-Icon--AlignVerticalTop:before {
     content: "ï“¶"
 }
 
 .ms-Icon--AnalyticsLogo:before {
     content: "ï‡ž"
 }
 
 .ms-Icon--AnalyticsQuery:before {
     content: "ï‡Ÿ"
 }
 
 .ms-Icon--AnalyticsReport:before {
     content: "ï‡¡"
 }
 
 .ms-Icon--AnchorLock:before {
     content: "ï”‘"
 }
 
 .ms-Icon--Annotation:before {
     content: "î¤¤"
 }
 
 .ms-Icon--AppIconDefault:before {
     content: "î²ª"
 }
 
 .ms-Icon--Archive:before {
     content: "ï€¿"
 }
 
 .ms-Icon--AreaChart:before {
     content: "î§’"
 }
 
 .ms-Icon--ArrangeBringForward:before {
     content: "ï”‰"
 }
 
 .ms-Icon--ArrangeBringToFront:before {
     content: "ï”†"
 }
 
 .ms-Icon--ArrangeSendBackward:before {
     content: "ï”ˆ"
 }
 
 .ms-Icon--ArrangeSendToBack:before {
     content: "ï”‡"
 }
 
 .ms-Icon--Arrivals:before {
     content: "î¬´"
 }
 
 [dir=ltr] .ms-Icon--ArrowDownRight8:before {
     content: "î»•"
 }
 
 [dir=ltr] .ms-Icon--ArrowDownRightMirrored8:before,
 [dir=rtl] .ms-Icon--ArrowDownRight8:before {
     content: "î»°"
 }
 
 [dir=rtl] .ms-Icon--ArrowDownRightMirrored8:before {
     content: "î»•"
 }
 
 .ms-Icon--ArrowTallDownLeft:before {
     content: "ïŠ¿"
 }
 
 .ms-Icon--ArrowTallDownRight:before {
     content: "ï‹€"
 }
 
 .ms-Icon--ArrowTallUpLeft:before {
     content: "ïŠ½"
 }
 
 .ms-Icon--ArrowTallUpRight:before {
     content: "ïŠ¾"
 }
 
 [dir=ltr] .ms-Icon--ArrowUpRight8:before {
     content: "î»”"
 }
 
 [dir=ltr] .ms-Icon--ArrowUpRightMirrored8:before,
 [dir=rtl] .ms-Icon--ArrowUpRight8:before {
     content: "î»¯"
 }
 
 [dir=rtl] .ms-Icon--ArrowUpRightMirrored8:before {
     content: "î»”"
 }
 
 .ms-Icon--Articles:before {
     content: "î«"
 }
 
 .ms-Icon--Ascending:before {
     content: "î·€"
 }
 
 .ms-Icon--AspectRatio:before {
     content: "îž™"
 }
 
 .ms-Icon--AssessmentGroup:before {
     content: "ïŒš"
 }
 
 .ms-Icon--AssessmentGroupTemplate:before {
     content: "ïŠ±"
 }
 
 .ms-Icon--AssetLibrary:before {
     content: "îº¶"
 }
 
 .ms-Icon--Assign:before {
     content: "î§“"
 }
 
 .ms-Icon--Asterisk:before {
     content: "î¨¸"
 }
 
 .ms-Icon--AsteriskSolid:before {
     content: "ï"
 }
 
 .ms-Icon--ATPLogo:before {
     content: "î¾…"
 }
 
 .ms-Icon--Attach:before {
     content: "îœ£"
 }
 
 .ms-Icon--AustralianRules:before {
     content: "î¹°"
 }
 
 .ms-Icon--AutoEnhanceOff:before {
     content: "îžŽ"
 }
 
 .ms-Icon--AutoEnhanceOn:before {
     content: "îž"
 }
 
 .ms-Icon--AutoFillTemplate:before {
     content: "ïŒ“"
 }
 
 .ms-Icon--AutoHeight:before {
     content: "ï”’"
 }
 
 .ms-Icon--AutoRacing:before {
     content: "î¬¤"
 }
 
 .ms-Icon--AwayStatus:before {
     content: "î¹ª"
 }
 
 .ms-Icon--AzureAPIManagement:before {
     content: "ï¿"
 }
 
 .ms-Icon--AzureKeyVault:before {
     content: "ïŽ´"
 }
 
 .ms-Icon--AzureLogo:before {
     content: "î­ª"
 }
 
 .ms-Icon--AzureServiceEndpoint:before {
     content: "ïŽ€"
 }
 
 .ms-Icon--Back:before {
     content: "îœ«"
 }
 
 .ms-Icon--BackgroundColor:before {
     content: "ï«"
 }
 
 .ms-Icon--Backlog:before {
     content: "ïŠ¬"
 }
 
 .ms-Icon--BacklogBoard:before {
     content: "ï‘„"
 }
 
 .ms-Icon--BackToWindow:before {
     content: "îœ¿"
 }
 
 .ms-Icon--Badge:before {
     content: "î°›"
 }
 
 .ms-Icon--Balloons:before {
     content: "îµ¾"
 }
 
 .ms-Icon--BankSolid:before {
     content: "ï"
 }
 
 .ms-Icon--BarChart4:before {
     content: "î«§"
 }
 
 .ms-Icon--BarChartHorizontal:before {
     content: "î§«"
 }
 
 .ms-Icon--BarChartVertical:before {
     content: "î§¬"
 }
 
 .ms-Icon--Baseball:before {
     content: "î¬ "
 }
 
 .ms-Icon--BeerMug:before {
     content: "ï’ž"
 }
 
 .ms-Icon--BidiLtr:before {
     content: "î¦ª"
 }
 
 .ms-Icon--BidiRtl:before {
     content: "î¦«"
 }
 
 .ms-Icon--BingLogo:before {
     content: "î­«"
 }
 
 .ms-Icon--BlockContact:before {
     content: "î£¸"
 }
 
 .ms-Icon--Blocked:before {
     content: "îœ³"
 }
 
 .ms-Icon--Blocked2:before {
     content: "î³¤"
 }
 
 .ms-Icon--BlockedSolid:before {
     content: "ï”±"
 }
 
 .ms-Icon--BlowingSnow:before {
     content: "î§‰"
 }
 
 .ms-Icon--Blur:before {
     content: "ïŠŽ"
 }
 
 .ms-Icon--Boards:before {
     content: "î½¨"
 }
 
 .ms-Icon--Bold:before {
     content: "î£"
 }
 
 .ms-Icon--BookingsLogo:before {
     content: "î·‡"
 }
 
 [dir=ltr] .ms-Icon--Bookmarks:before {
     content: "î¢¤"
 }
 
 [dir=ltr] .ms-Icon--BookmarksMirrored:before,
 [dir=rtl] .ms-Icon--Bookmarks:before {
     content: "î©"
 }
 
 [dir=rtl] .ms-Icon--BookmarksMirrored:before {
     content: "î¢¤"
 }
 
 .ms-Icon--BorderDash:before {
     content: "ï”Š"
 }
 
 .ms-Icon--BorderDot:before {
     content: "ï”‹"
 }
 
 .ms-Icon--BoxAdditionSolid:before {
     content: "ï‹”"
 }
 
 .ms-Icon--BoxCheckmarkSolid:before {
     content: "ï‹—"
 }
 
 .ms-Icon--BoxMultiplySolid:before {
     content: "ï‹•"
 }
 
 .ms-Icon--BoxPlaySolid:before {
     content: "ï‹–"
 }
 
 .ms-Icon--BoxSubtractSolid:before {
     content: "ï‹“"
 }
 
 .ms-Icon--BranchCommit:before {
     content: "ïŠ“"
 }
 
 .ms-Icon--BranchCompare:before {
     content: "ïŠ”"
 }
 
 .ms-Icon--BranchFork:before {
     content: "ï…³"
 }
 
 .ms-Icon--BranchFork2:before {
     content: "ïŠ‘"
 }
 
 .ms-Icon--BranchLocked:before {
     content: "ïŠ’"
 }
 
 .ms-Icon--BranchMerge:before {
     content: "ïŠ•"
 }
 
 .ms-Icon--BranchPullRequest:before {
     content: "ïŠ–"
 }
 
 .ms-Icon--BranchSearch:before {
     content: "ïŠ—"
 }
 
 .ms-Icon--BranchShelveset:before {
     content: "ïŠ˜"
 }
 
 .ms-Icon--Breadcrumb:before {
     content: "î¾Œ"
 }
 
 .ms-Icon--Breakfast:before {
     content: "ï’œ"
 }
 
 .ms-Icon--Brightness:before {
     content: "îœ†"
 }
 
 .ms-Icon--Broom:before {
     content: "îª™"
 }
 
 .ms-Icon--Brunch:before {
     content: "ï’"
 }
 
 .ms-Icon--BucketColor:before {
     content: "ï†¶"
 }
 
 .ms-Icon--BucketColorFill:before {
     content: "ï†·"
 }
 
 .ms-Icon--BufferTimeAfter:before {
     content: "ïƒ"
 }
 
 .ms-Icon--BufferTimeBefore:before {
     content: "ïƒ"
 }
 
 .ms-Icon--BufferTimeBoth:before {
     content: "ïƒ‘"
 }
 
 .ms-Icon--BugSolid:before {
     content: "ïŒµ"
 }
 
 .ms-Icon--Build:before {
     content: "ïŠ"
 }
 
 .ms-Icon--BuildIssue:before {
     content: "ïŒ™"
 }
 
 .ms-Icon--BuildQueue:before {
     content: "ï‰"
 }
 
 .ms-Icon--BuildQueueNew:before {
     content: "ï‰"
 }
 
 [dir=ltr] .ms-Icon--BulletedList2:before {
     content: "ï‹‡"
 }
 
 [dir=ltr] .ms-Icon--BulletedList2Mirrored:before,
 [dir=rtl] .ms-Icon--BulletedList2:before {
     content: "ï‹ˆ"
 }
 
 [dir=rtl] .ms-Icon--BulletedList2Mirrored:before {
     content: "ï‹‡"
 }
 
 [dir=ltr] .ms-Icon--BulletedList:before {
     content: "î£½"
 }
 
 [dir=ltr] .ms-Icon--BulletedListMirrored:before,
 [dir=rtl] .ms-Icon--BulletedList:before {
     content: "î©‚"
 }
 
 [dir=rtl] .ms-Icon--BulletedListMirrored:before {
     content: "î£½"
 }
 
 .ms-Icon--Bus:before {
     content: "î †"
 }
 
 .ms-Icon--BusinessCenterLogo:before {
     content: "ï’²"
 }
 
 .ms-Icon--BusinessHoursSign:before {
     content: "ïŒ"
 }
 
 .ms-Icon--BusSolid:before {
     content: "î­‡"
 }
 
 .ms-Icon--Cafe:before {
     content: "î°²"
 }
 
 .ms-Icon--Cake:before {
     content: "î²¤"
 }
 
 .ms-Icon--CalculatorAddition:before {
     content: "î¥ˆ"
 }
 
 .ms-Icon--CalculatorEqualTo:before {
     content: "î¥Ž"
 }
 
 .ms-Icon--CalculatorMultiply:before {
     content: "î¥‡"
 }
 
 .ms-Icon--CalculatorNotEqualTo:before {
     content: "ï‹’"
 }
 
 .ms-Icon--CalculatorSubtract:before {
     content: "î¥‰"
 }
 
 .ms-Icon--CalendarAgenda:before {
     content: "îºš"
 }
 
 .ms-Icon--CalendarDay:before {
     content: "î¢¿"
 }
 
 [dir=ltr] .ms-Icon--Calendar:before {
     content: "îž‡"
 }
 
 [dir=ltr] .ms-Icon--CalendarMirrored:before,
 [dir=rtl] .ms-Icon--Calendar:before {
     content: "î´¨"
 }
 
 [dir=rtl] .ms-Icon--CalendarMirrored:before {
     content: "îž‡"
 }
 
 .ms-Icon--CalendarReply:before {
     content: "î£µ"
 }
 
 .ms-Icon--CalendarWeek:before {
     content: "î£€"
 }
 
 .ms-Icon--CalendarWorkWeek:before {
     content: "î½‘"
 }
 
 .ms-Icon--CaloriesAdd:before {
     content: "ï…²"
 }
 
 .ms-Icon--Camera:before {
     content: "îœ¢"
 }
 
 .ms-Icon--Cancel:before {
     content: "îœ‘"
 }
 
 .ms-Icon--CannedChat:before {
     content: "ïƒ²"
 }
 
 .ms-Icon--Car:before {
     content: "î „"
 }
 
 .ms-Icon--CaretBottomLeftCenter8:before {
     content: "ï¥"
 }
 
 .ms-Icon--CaretBottomLeftSolid8:before {
     content: "ï„¡"
 }
 
 .ms-Icon--CaretBottomRightCenter8:before {
     content: "ï¤"
 }
 
 .ms-Icon--CaretBottomRightSolid8:before {
     content: "ï„¢"
 }
 
 .ms-Icon--CaretDown8:before {
     content: "î·˜"
 }
 
 .ms-Icon--CaretDownSolid8:before {
     content: "î·œ"
 }
 
 [dir=ltr] .ms-Icon--CaretHollow:before {
     content: "î —"
 }
 
 [dir=ltr] .ms-Icon--CaretHollowMirrored:before,
 [dir=rtl] .ms-Icon--CaretHollow:before {
     content: "î©…"
 }
 
 [dir=rtl] .ms-Icon--CaretHollowMirrored:before {
     content: "î —"
 }
 
 .ms-Icon--CaretLeft8:before {
     content: "î·•"
 }
 
 .ms-Icon--CaretLeftSolid8:before {
     content: "î·™"
 }
 
 .ms-Icon--CaretRight:before {
     content: "ï«"
 }
 
 .ms-Icon--CaretRight8:before {
     content: "î·–"
 }
 
 .ms-Icon--CaretRightSolid8:before {
     content: "î·š"
 }
 
 .ms-Icon--CaretSolid16:before {
     content: "î¹¢"
 }
 
 .ms-Icon--CaretSolidDown:before {
     content: "ï‚Ž"
 }
 
 .ms-Icon--CaretSolidLeft:before {
     content: "ï‚"
 }
 
 [dir=ltr] .ms-Icon--CaretSolid:before {
     content: "î ˜"
 }
 
 [dir=ltr] .ms-Icon--CaretSolidMirrored:before,
 [dir=rtl] .ms-Icon--CaretSolid:before {
     content: "î©†"
 }
 
 [dir=rtl] .ms-Icon--CaretSolidMirrored:before {
     content: "î ˜"
 }
 
 .ms-Icon--CaretSolidRight:before {
     content: "ï‚"
 }
 
 .ms-Icon--CaretSolidUp:before {
     content: "ï‚"
 }
 
 .ms-Icon--CaretTopLeftCenter8:before {
     content: "ï§"
 }
 
 .ms-Icon--CaretTopLeftSolid8:before {
     content: "î½”"
 }
 
 .ms-Icon--CaretTopRightCenter8:before {
     content: "ï¦"
 }
 
 .ms-Icon--CaretTopRightSolid8:before {
     content: "î½•"
 }
 
 .ms-Icon--CaretUp8:before {
     content: "î·—"
 }
 
 .ms-Icon--CaretUpSolid8:before {
     content: "î·›"
 }
 
 .ms-Icon--Cat:before {
     content: "îµ¿"
 }
 
 .ms-Icon--CellPhone:before {
     content: "î£ª"
 }
 
 .ms-Icon--Certificate:before {
     content: "î®•"
 }
 
 .ms-Icon--Chart:before {
     content: "î¦™"
 }
 
 .ms-Icon--ChartSeries:before {
     content: "ï”“"
 }
 
 .ms-Icon--ChartXAngle:before {
     content: "ï””"
 }
 
 .ms-Icon--ChartYAngle:before {
     content: "ï”•"
 }
 
 .ms-Icon--Chat:before {
     content: "î¤"
 }
 
 .ms-Icon--ChatInviteFriend:before {
     content: "î³¾"
 }
 
 .ms-Icon--ChatSolid:before {
     content: "ï„"
 }
 
 .ms-Icon--Checkbox:before {
     content: "îœ¹"
 }
 
 .ms-Icon--CheckboxComposite:before {
     content: "îœº"
 }
 
 .ms-Icon--CheckboxCompositeReversed:before {
     content: "îœ½"
 }
 
 .ms-Icon--CheckboxIndeterminate:before {
     content: "îœ¼"
 }
 
 .ms-Icon--CheckList:before {
     content: "î§•"
 }
 
 .ms-Icon--CheckMark:before {
     content: "îœ¾"
 }
 
 .ms-Icon--ChevronDown:before {
     content: "îœ"
 }
 
 .ms-Icon--ChevronDownEnd6:before {
     content: "ï¯"
 }
 
 .ms-Icon--ChevronDownMed:before {
     content: "î¥²"
 }
 
 .ms-Icon--ChevronDownSmall:before {
     content: "î¥®"
 }
 
 .ms-Icon--ChevronFold10:before {
     content: "ïª"
 }
 
 .ms-Icon--ChevronLeft:before {
     content: "î«"
 }
 
 .ms-Icon--ChevronLeftEnd6:before {
     content: "ï±"
 }
 
 .ms-Icon--ChevronLeftMed:before {
     content: "î¥³"
 }
 
 .ms-Icon--ChevronLeftSmall:before {
     content: "î¥¯"
 }
 
 .ms-Icon--ChevronRight:before {
     content: "î¬"
 }
 
 .ms-Icon--ChevronRightEnd6:before {
     content: "ï²"
 }
 
 .ms-Icon--ChevronRightMed:before {
     content: "î¥´"
 }
 
 .ms-Icon--ChevronRightSmall:before {
     content: "î¥°"
 }
 
 .ms-Icon--ChevronUnfold10:before {
     content: "ï©"
 }
 
 .ms-Icon--ChevronUp:before {
     content: "îœŽ"
 }
 
 .ms-Icon--ChevronUpEnd6:before {
     content: "ï°"
 }
 
 .ms-Icon--ChevronUpMed:before {
     content: "î¥±"
 }
 
 .ms-Icon--ChevronUpSmall:before {
     content: "î¥­"
 }
 
 .ms-Icon--Chopsticks:before {
     content: "ï’¢"
 }
 
 [dir=ltr] .ms-Icon--ChromeBack:before {
     content: "î °"
 }
 
 [dir=ltr] .ms-Icon--ChromeBackMirrored:before,
 [dir=rtl] .ms-Icon--ChromeBack:before {
     content: "î©‡"
 }
 
 [dir=rtl] .ms-Icon--ChromeBackMirrored:before {
     content: "î °"
 }
 
 .ms-Icon--ChromeClose:before {
     content: "î¢»"
 }
 
 .ms-Icon--ChromeMinimize:before {
     content: "î¤¡"
 }
 
 .ms-Icon--CircleAddition:before {
     content: "ï‹£"
 }
 
 .ms-Icon--CircleAdditionSolid:before {
     content: "ï‹¤"
 }
 
 .ms-Icon--CircleFill:before {
     content: "î¨»"
 }
 
 .ms-Icon--CircleHalfFull:before {
     content: "î¶ž"
 }
 
 .ms-Icon--CirclePause:before {
     content: "ï‹™"
 }
 
 .ms-Icon--CirclePauseSolid:before {
     content: "ï‹˜"
 }
 
 .ms-Icon--CirclePlus:before {
     content: "î«®"
 }
 
 .ms-Icon--CircleRing:before {
     content: "î¨º"
 }
 
 .ms-Icon--CircleStop:before {
     content: "ï‹œ"
 }
 
 .ms-Icon--CircleStopSolid:before {
     content: "ï‹›"
 }
 
 .ms-Icon--CityNext:before {
     content: "î°†"
 }
 
 .ms-Icon--ClassNotebookLogo16:before {
     content: "ï’ˆ"
 }
 
 .ms-Icon--ClassNotebookLogo32:before {
     content: "ï’†"
 }
 
 .ms-Icon--ClassNotebookLogoFill16:before {
     content: "ï’‰"
 }
 
 .ms-Icon--ClassNotebookLogoFill32:before {
     content: "ï’‡"
 }
 
 .ms-Icon--ClassNotebookLogoInverse:before {
     content: "î·ˆ"
 }
 
 .ms-Icon--ClassNotebookLogoInverse16:before {
     content: "ï’‹"
 }
 
 .ms-Icon--ClassNotebookLogoInverse32:before {
     content: "ï’Š"
 }
 
 .ms-Icon--ClassroomLogo:before {
     content: "î½µ"
 }
 
 .ms-Icon--Clear:before {
     content: "î¢”"
 }
 
 .ms-Icon--ClearFilter:before {
     content: "î¾"
 }
 
 .ms-Icon--ClearFormatting:before {
     content: "î·"
 }
 
 .ms-Icon--ClearNight:before {
     content: "î§‚"
 }
 
 .ms-Icon--Clock:before {
     content: "î¤—"
 }
 
 .ms-Icon--CloneToDesktop:before {
     content: "ïŠŒ"
 }
 
 .ms-Icon--ClosedCaption:before {
     content: "î¾„"
 }
 
 [dir=ltr] .ms-Icon--ClosePane:before {
     content: "î¢Ÿ"
 }
 
 [dir=ltr] .ms-Icon--ClosePaneMirrored:before,
 [dir=rtl] .ms-Icon--ClosePane:before {
     content: "î©‰"
 }
 
 [dir=rtl] .ms-Icon--ClosePaneMirrored:before {
     content: "î¢Ÿ"
 }
 
 .ms-Icon--Cloud:before {
     content: "î“"
 }
 
 .ms-Icon--CloudAdd:before {
     content: "î²©"
 }
 
 .ms-Icon--CloudDownload:before {
     content: "î¯“"
 }
 
 .ms-Icon--CloudUpload:before {
     content: "î²Ž"
 }
 
 .ms-Icon--CloudWeather:before {
     content: "î¦¾"
 }
 
 .ms-Icon--Cloudy:before {
     content: "î¦¿"
 }
 
 .ms-Icon--Cocktails:before {
     content: "îª"
 }
 
 .ms-Icon--Code:before {
     content: "î¥ƒ"
 }
 
 .ms-Icon--Coffee:before {
     content: "î«¯"
 }
 
 .ms-Icon--CoffeeScript:before {
     content: "ï‹º"
 }
 
 .ms-Icon--CollapseContent:before {
     content: "ï…¥"
 }
 
 .ms-Icon--CollapseContentSingle:before {
     content: "ï…¦"
 }
 
 .ms-Icon--CollapseMenu:before {
     content: "î½¦"
 }
 
 .ms-Icon--CollegeFootball:before {
     content: "î¬¦"
 }
 
 .ms-Icon--CollegeHoops:before {
     content: "î¬¥"
 }
 
 .ms-Icon--Color:before {
     content: "îž"
 }
 
 .ms-Icon--ColorSolid:before {
     content: "ï”"
 }
 
 .ms-Icon--ColumnLeftTwoThirds:before {
     content: "ï‡–"
 }
 
 .ms-Icon--ColumnLeftTwoThirdsEdit:before {
     content: "ïŒ¤"
 }
 
 .ms-Icon--ColumnOptions:before {
     content: "ïŒ—"
 }
 
 .ms-Icon--ColumnRightTwoThirds:before {
     content: "ï‡—"
 }
 
 .ms-Icon--ColumnRightTwoThirdsEdit:before {
     content: "ïŒ¥"
 }
 
 .ms-Icon--Combine:before {
     content: "î¶»"
 }
 
 .ms-Icon--Combobox:before {
     content: "ï”–"
 }
 
 .ms-Icon--CommandPrompt:before {
     content: "î–"
 }
 
 .ms-Icon--Comment:before {
     content: "î¤Š"
 }
 
 .ms-Icon--CommentAdd:before {
     content: "ïŠ³"
 }
 
 .ms-Icon--CommentNext:before {
     content: "ïŠ´"
 }
 
 .ms-Icon--CommentPrevious:before {
     content: "ïŠµ"
 }
 
 .ms-Icon--CommentUrgent:before {
     content: "ïŒ‡"
 }
 
 .ms-Icon--Communications:before {
     content: "î¥š"
 }
 
 .ms-Icon--CompassNW:before {
     content: "î¥‚"
 }
 
 .ms-Icon--Completed:before {
     content: "î¤°"
 }
 
 .ms-Icon--CompletedSolid:before {
     content: "î±¡"
 }
 
 .ms-Icon--ConfigurationSolid:before {
     content: "ïŒ´"
 }
 
 .ms-Icon--ConstructionCone:before {
     content: "î¦"
 }
 
 .ms-Icon--ConstructionConeSolid:before {
     content: "ïŒ¹"
 }
 
 .ms-Icon--Contact:before {
     content: "î»"
 }
 
 .ms-Icon--ContactCard:before {
     content: "îº½"
 }
 
 .ms-Icon--ContactInfo:before {
     content: "î¹"
 }
 
 .ms-Icon--ContextMenu:before {
     content: "ï¼"
 }
 
 .ms-Icon--Contrast:before {
     content: "îž¡"
 }
 
 .ms-Icon--Copy:before {
     content: "î£ˆ"
 }
 
 .ms-Icon--Cotton:before {
     content: "î«³"
 }
 
 .ms-Icon--CPlusPlus:before {
     content: "ï‹´"
 }
 
 .ms-Icon--CPlusPlusLanguage:before {
     content: "ï‹³"
 }
 
 .ms-Icon--Cricket:before {
     content: "î¬ž"
 }
 
 .ms-Icon--CRMReport:before {
     content: "î¿¾"
 }
 
 .ms-Icon--Crop:before {
     content: "îž¨"
 }
 
 .ms-Icon--Crown:before {
     content: "î´"
 }
 
 .ms-Icon--CrownSolid:before {
     content: "ïŒ¶"
 }
 
 .ms-Icon--CSharp:before {
     content: "ï‹°"
 }
 
 .ms-Icon--CSharpLanguage:before {
     content: "ï‹¯"
 }
 
 .ms-Icon--CSS:before {
     content: "î¯¯"
 }
 
 [dir=ltr] .ms-Icon--CustomList:before {
     content: "îº¾"
 }
 
 [dir=ltr] .ms-Icon--CustomListMirrored:before,
 [dir=rtl] .ms-Icon--CustomList:before {
     content: "îº¿"
 }
 
 [dir=rtl] .ms-Icon--CustomListMirrored:before {
     content: "îº¾"
 }
 
 .ms-Icon--Cut:before {
     content: "î£†"
 }
 
 .ms-Icon--Cycling:before {
     content: "î«‡"
 }
 
 .ms-Icon--DashboardAdd:before {
     content: "ï”­"
 }
 
 .ms-Icon--Database:before {
     content: "î¿‡"
 }
 
 .ms-Icon--DataConnectionLibrary:before {
     content: "îº·"
 }
 
 .ms-Icon--DateTime2:before {
     content: "î¨—"
 }
 
 [dir=ltr] .ms-Icon--DateTime:before {
     content: "î²’"
 }
 
 [dir=ltr] .ms-Icon--DateTimeMirrored:before,
 [dir=rtl] .ms-Icon--DateTime:before {
     content: "îº“"
 }
 
 [dir=rtl] .ms-Icon--DateTimeMirrored:before {
     content: "î²’"
 }
 
 .ms-Icon--DecisionSolid:before {
     content: "ï"
 }
 
 .ms-Icon--DeclineCall:before {
     content: "ï…"
 }
 
 .ms-Icon--DecreaseIndentLegacy:before {
     content: "îŠ"
 }
 
 .ms-Icon--DefaultRatio:before {
     content: "ï”©"
 }
 
 .ms-Icon--DefectSolid:before {
     content: "ï‘‰"
 }
 
 .ms-Icon--Delete:before {
     content: "î"
 }
 
 .ms-Icon--DeliveryTruck:before {
     content: "î¯´"
 }
 
 .ms-Icon--DelveAnalytics:before {
     content: "î»®"
 }
 
 .ms-Icon--DelveAnalyticsLogo:before {
     content: "î·Š"
 }
 
 .ms-Icon--DelveLogo:before {
     content: "ïŠ€"
 }
 
 .ms-Icon--DelveLogoFill:before {
     content: "ïŠ"
 }
 
 .ms-Icon--DelveLogoInverse:before {
     content: "îµ¶"
 }
 
 .ms-Icon--Deploy:before {
     content: "ïŠ"
 }
 
 .ms-Icon--Descending:before {
     content: "î·"
 }
 
 .ms-Icon--Design:before {
     content: "î¬¼"
 }
 
 .ms-Icon--DeveloperTools:before {
     content: "î±º"
 }
 
 .ms-Icon--Devices3:before {
     content: "î©¬"
 }
 
 .ms-Icon--Devices4:before {
     content: "î­¦"
 }
 
 .ms-Icon--Diagnostic:before {
     content: "î§™"
 }
 
 .ms-Icon--Dialpad:before {
     content: "îŸ"
 }
 
 .ms-Icon--DiamondSolid:before {
     content: "ïŒ"
 }
 
 .ms-Icon--Dictionary:before {
     content: "î ­"
 }
 
 .ms-Icon--DietPlanNotebook:before {
     content: "î«ˆ"
 }
 
 .ms-Icon--DiffInline:before {
     content: "ïŒ‰"
 }
 
 .ms-Icon--DiffSideBySide:before {
     content: "ïŒŠ"
 }
 
 .ms-Icon--DisableUpdates:before {
     content: "î£˜"
 }
 
 .ms-Icon--Dislike:before {
     content: "î£ "
 }
 
 .ms-Icon--DislikeSolid:before {
     content: "ï€"
 }
 
 [dir=ltr] .ms-Icon--DockLeft:before {
     content: "î¤Œ"
 }
 
 [dir=ltr] .ms-Icon--DockLeftMirrored:before,
 [dir=rtl] .ms-Icon--DockLeft:before {
     content: "î©Œ"
 }
 
 [dir=rtl] .ms-Icon--DockLeftMirrored:before {
     content: "î¤Œ"
 }
 
 .ms-Icon--DockRight:before {
     content: "î¤"
 }
 
 .ms-Icon--DocLibrary:before {
     content: "îº¸"
 }
 
 .ms-Icon--DocsLogoInverse:before {
     content: "î·‹"
 }
 
 .ms-Icon--Document:before {
     content: "î¢¥"
 }
 
 .ms-Icon--DocumentApproval:before {
     content: "ïŠ‹"
 }
 
 .ms-Icon--Documentation:before {
     content: "î°—"
 }
 
 .ms-Icon--DocumentManagement:before {
     content: "î¿¼"
 }
 
 .ms-Icon--DocumentReply:before {
     content: "î½—"
 }
 
 .ms-Icon--DocumentSearch:before {
     content: "î½¬"
 }
 
 .ms-Icon--DocumentSet:before {
     content: "î»–"
 }
 
 .ms-Icon--DonutChart:before {
     content: "ï¨"
 }
 
 .ms-Icon--Door:before {
     content: "î­µ"
 }
 
 .ms-Icon--DoubleBookmark:before {
     content: "î®"
 }
 
 .ms-Icon--DoubleChevronDown:before {
     content: "î¸„"
 }
 
 .ms-Icon--DoubleChevronDown12:before {
     content: "îº—"
 }
 
 .ms-Icon--DoubleChevronDown8:before {
     content: "ï«"
 }
 
 .ms-Icon--DoubleChevronLeft:before {
     content: "î¶¾"
 }
 
 .ms-Icon--DoubleChevronLeft12:before {
     content: "îº˜"
 }
 
 .ms-Icon--DoubleChevronLeft8:before {
     content: "ï­"
 }
 
 [dir=ltr] .ms-Icon--DoubleChevronLeftMed:before {
     content: "î¦‘"
 }
 
 [dir=ltr] .ms-Icon--DoubleChevronLeftMedMirrored:before,
 [dir=rtl] .ms-Icon--DoubleChevronLeftMed:before {
     content: "î©"
 }
 
 [dir=rtl] .ms-Icon--DoubleChevronLeftMedMirrored:before {
     content: "î¦‘"
 }
 
 .ms-Icon--DoubleChevronRight:before {
     content: "î¶¿"
 }
 
 .ms-Icon--DoubleChevronRight12:before {
     content: "îº™"
 }
 
 .ms-Icon--DoubleChevronRight8:before {
     content: "ï®"
 }
 
 .ms-Icon--DoubleChevronUp:before {
     content: "î¶½"
 }
 
 .ms-Icon--DoubleChevronUp12:before {
     content: "îº–"
 }
 
 .ms-Icon--DoubleChevronUp8:before {
     content: "ï¬"
 }
 
 .ms-Icon--DoubleColumn:before {
     content: "ï‡”"
 }
 
 .ms-Icon--DoubleColumnEdit:before {
     content: "ïŒ¢"
 }
 
 .ms-Icon--Down:before {
     content: "î‹"
 }
 
 .ms-Icon--Download:before {
     content: "î¢–"
 }
 
 .ms-Icon--DrillDown:before {
     content: "ï”²"
 }
 
 .ms-Icon--DrillDownSolid:before {
     content: "ï”³"
 }
 
 .ms-Icon--DrillExpand:before {
     content: "ï”´"
 }
 
 .ms-Icon--DrillShow:before {
     content: "ï”µ"
 }
 
 .ms-Icon--DRM:before {
     content: "î²¨"
 }
 
 .ms-Icon--Drop:before {
     content: "î­‚"
 }
 
 .ms-Icon--Dropdown:before {
     content: "î·…"
 }
 
 .ms-Icon--Duststorm:before {
     content: "î§"
 }
 
 .ms-Icon--Dynamics365Logo:before {
     content: "î·Œ"
 }
 
 .ms-Icon--DynamicSMBLogo:before {
     content: "î·"
 }
 
 .ms-Icon--EatDrink:before {
     content: "î ‡"
 }
 
 .ms-Icon--EdgeLogo:before {
     content: "î± "
 }
 
 .ms-Icon--EditMail:before {
     content: "î½¡"
 }
 
 [dir=ltr] .ms-Icon--Edit:before {
     content: "îœ"
 }
 
 [dir=ltr] .ms-Icon--EditMirrored:before,
 [dir=rtl] .ms-Icon--Edit:before {
     content: "î­¾"
 }
 
 [dir=rtl] .ms-Icon--EditMirrored:before {
     content: "îœ"
 }
 
 .ms-Icon--EditNote:before {
     content: "î¶"
 }
 
 .ms-Icon--EditPhoto:before {
     content: "î½·"
 }
 
 [dir=ltr] .ms-Icon--EditSolid12:before {
     content: "ï’µ"
 }
 
 [dir=ltr] .ms-Icon--EditSolidMirrored12:before,
 [dir=rtl] .ms-Icon--EditSolid12:before {
     content: "ï’¶"
 }
 
 [dir=rtl] .ms-Icon--EditSolidMirrored12:before {
     content: "ï’µ"
 }
 
 .ms-Icon--EditStyle:before {
     content: "î½ "
 }
 
 .ms-Icon--Education:before {
     content: "îž¾"
 }
 
 .ms-Icon--Ellipse:before {
     content: "ï“»"
 }
 
 .ms-Icon--Embed:before {
     content: "î³Ž"
 }
 
 .ms-Icon--EMI:before {
     content: "îœ±"
 }
 
 .ms-Icon--Emoji:before {
     content: "î¢™"
 }
 
 .ms-Icon--Emoji2:before {
     content: "î®"
 }
 
 .ms-Icon--EmojiDisappointed:before {
     content: "îªˆ"
 }
 
 .ms-Icon--EmojiNeutral:before {
     content: "îª‡"
 }
 
 .ms-Icon--EmojiTabSymbols:before {
     content: "îµ˜"
 }
 
 .ms-Icon--EmptyRecycleBin:before {
     content: "î¾ˆ"
 }
 
 .ms-Icon--EngineeringGroup:before {
     content: "ï¢"
 }
 
 .ms-Icon--Equalizer:before {
     content: "î§©"
 }
 
 .ms-Icon--EraseTool:before {
     content: "îœ"
 }
 
 .ms-Icon--Error:before {
     content: "îžƒ"
 }
 
 .ms-Icon--ErrorBadge:before {
     content: "î¨¹"
 }
 
 .ms-Icon--Event:before {
     content: "î²£"
 }
 
 .ms-Icon--EventAccepted:before {
     content: "ï¢"
 }
 
 .ms-Icon--EventDate:before {
     content: "ï™"
 }
 
 .ms-Icon--EventDeclined:before {
     content: "ï¥"
 }
 
 .ms-Icon--EventInfo:before {
     content: "î¶‹"
 }
 
 [dir=ltr] .ms-Icon--EventTentative:before {
     content: "ï£"
 }
 
 [dir=ltr] .ms-Icon--EventTentativeMirrored:before,
 [dir=rtl] .ms-Icon--EventTentative:before {
     content: "ï¤"
 }
 
 [dir=rtl] .ms-Icon--EventTentativeMirrored:before {
     content: "ï£"
 }
 
 .ms-Icon--ExcelDocument:before {
     content: "î½³"
 }
 
 .ms-Icon--ExcelLogo:before {
     content: "ï‡¥"
 }
 
 .ms-Icon--ExcelLogo16:before {
     content: "ïŽ—"
 }
 
 .ms-Icon--ExcelLogoFill:before {
     content: "ï‡¦"
 }
 
 .ms-Icon--ExcelLogoFill16:before {
     content: "ïŽ˜"
 }
 
 .ms-Icon--ExcelLogoInverse:before {
     content: "î°¨"
 }
 
 .ms-Icon--ExcelLogoInverse16:before {
     content: "ïŽ–"
 }
 
 .ms-Icon--ExchangeLogo:before {
     content: "ïŠ„"
 }
 
 .ms-Icon--ExchangeLogoFill:before {
     content: "ïŠ…"
 }
 
 .ms-Icon--ExchangeLogoInverse:before {
     content: "îµ¸"
 }
 
 .ms-Icon--ExerciseTracker:before {
     content: "î«Œ"
 }
 
 .ms-Icon--ExpandMenu:before {
     content: "î½§"
 }
 
 .ms-Icon--ExploreContent:before {
     content: "î³"
 }
 
 .ms-Icon--ExploreContentSingle:before {
     content: "ï…¤"
 }
 
 [dir=ltr] .ms-Icon--Export:before {
     content: "î·¡"
 }
 
 [dir=ltr] .ms-Icon--ExportMirrored:before,
 [dir=rtl] .ms-Icon--Export:before {
     content: "î·¢"
 }
 
 [dir=rtl] .ms-Icon--ExportMirrored:before {
     content: "î·¡"
 }
 
 .ms-Icon--ExternalBuild:before {
     content: "ï‘…"
 }
 
 .ms-Icon--ExternalTFVC:before {
     content: "ï‘†"
 }
 
 .ms-Icon--ExternalXAML:before {
     content: "ï‘‡"
 }
 
 .ms-Icon--F12DevTools:before {
     content: "î¯®"
 }
 
 .ms-Icon--FabricAssetLibrary:before {
     content: "ï‚œ"
 }
 
 .ms-Icon--FabricDataConnectionLibrary:before {
     content: "ï‚"
 }
 
 .ms-Icon--FabricDocLibrary:before {
     content: "ï‚ž"
 }
 
 .ms-Icon--FabricFolder:before {
     content: "ï‚©"
 }
 
 .ms-Icon--FabricFolderFill:before {
     content: "ï‚ª"
 }
 
 .ms-Icon--FabricFolderSearch:before {
     content: "ï‚¤"
 }
 
 [dir=ltr] .ms-Icon--FabricFormLibrary:before {
     content: "ï‚Ÿ"
 }
 
 [dir=ltr] .ms-Icon--FabricFormLibraryMirrored:before,
 [dir=rtl] .ms-Icon--FabricFormLibrary:before {
     content: "ï‚ "
 }
 
 [dir=rtl] .ms-Icon--FabricFormLibraryMirrored:before {
     content: "ï‚Ÿ"
 }
 
 .ms-Icon--FabricMovetoFolder:before {
     content: "ï‚¥"
 }
 
 .ms-Icon--FabricNewFolder:before {
     content: "ï‚«"
 }
 
 .ms-Icon--FabricOpenFolderHorizontal:before {
     content: "ï‚¨"
 }
 
 .ms-Icon--FabricPictureLibrary:before {
     content: "ï‚¬"
 }
 
 .ms-Icon--FabricPublicFolder:before {
     content: "ï‚£"
 }
 
 [dir=ltr] .ms-Icon--FabricReportLibrary:before {
     content: "ï‚¡"
 }
 
 [dir=ltr] .ms-Icon--FabricReportLibraryMirrored:before,
 [dir=rtl] .ms-Icon--FabricReportLibrary:before {
     content: "ï‚¢"
 }
 
 [dir=rtl] .ms-Icon--FabricReportLibraryMirrored:before {
     content: "ï‚¡"
 }
 
 .ms-Icon--FabricSyncFolder:before {
     content: "ï‚§"
 }
 
 .ms-Icon--FabricUnsyncFolder:before {
     content: "ï‚¦"
 }
 
 .ms-Icon--Family:before {
     content: "î¯š"
 }
 
 .ms-Icon--FangBody:before {
     content: "î³«"
 }
 
 .ms-Icon--FastForward:before {
     content: "î®"
 }
 
 .ms-Icon--Favicon:before {
     content: "îœ·"
 }
 
 .ms-Icon--FavoriteList:before {
     content: "îœ¨"
 }
 
 .ms-Icon--FavoriteStar:before {
     content: "îœ´"
 }
 
 .ms-Icon--FavoriteStarFill:before {
     content: "îœµ"
 }
 
 .ms-Icon--Fax:before {
     content: "î½œ"
 }
 
 .ms-Icon--Feedback:before {
     content: "î´•"
 }
 
 [dir=ltr] .ms-Icon--FeedbackRequestSolid:before {
     content: "ï™"
 }
 
 [dir=ltr] .ms-Icon--FeedbackRequestMirroredSolid:before,
 [dir=rtl] .ms-Icon--FeedbackRequestSolid:before {
     content: "ïš"
 }
 
 [dir=rtl] .ms-Icon--FeedbackRequestMirroredSolid:before {
     content: "ï™"
 }
 
 .ms-Icon--FeedbackResponseSolid:before {
     content: "ï›"
 }
 
 .ms-Icon--Ferry:before {
     content: "îŸ£"
 }
 
 .ms-Icon--FerrySolid:before {
     content: "î­ˆ"
 }
 
 .ms-Icon--FieldChanged:before {
     content: "ï‹ƒ"
 }
 
 .ms-Icon--FieldEmpty:before {
     content: "ï‹"
 }
 
 .ms-Icon--FieldFilled:before {
     content: "ï‹‚"
 }
 
 .ms-Icon--FieldNotChanged:before {
     content: "ï‹„"
 }
 
 .ms-Icon--FieldReadOnly:before {
     content: "ï‘‚"
 }
 
 .ms-Icon--FieldRequired:before {
     content: "ï‘ƒ"
 }
 
 .ms-Icon--FileASPX:before {
     content: "ï‹©"
 }
 
 .ms-Icon--FileBug:before {
     content: "ïŒ"
 }
 
 .ms-Icon--FileCode:before {
     content: "ïŒŽ"
 }
 
 .ms-Icon--FileComment:before {
     content: "ïŒ"
 }
 
 .ms-Icon--FileCSS:before {
     content: "ï‹ª"
 }
 
 .ms-Icon--FileHTML:before {
     content: "ï‹­"
 }
 
 .ms-Icon--FileImage:before {
     content: "ïŒ‘"
 }
 
 .ms-Icon--FileJAVA:before {
     content: "ï‹¨"
 }
 
 .ms-Icon--FileLess:before {
     content: "ï‹¬"
 }
 
 .ms-Icon--FilePDB:before {
     content: "ï‹¥"
 }
 
 .ms-Icon--FileSass:before {
     content: "ï‹«"
 }
 
 .ms-Icon--FileSQL:before {
     content: "ï‹§"
 }
 
 .ms-Icon--FileSymlink:before {
     content: "ïŒ’"
 }
 
 .ms-Icon--FileTemplate:before {
     content: "ï‹¦"
 }
 
 .ms-Icon--FileTypeSolution:before {
     content: "ïŽ‡"
 }
 
 .ms-Icon--Filter:before {
     content: "îœœ"
 }
 
 .ms-Icon--Filters:before {
     content: "îž•"
 }
 
 .ms-Icon--FilterSolid:before {
     content: "ï’"
 }
 
 .ms-Icon--FiltersSolid:before {
     content: "ï“"
 }
 
 .ms-Icon--Financial:before {
     content: "îž»"
 }
 
 [dir=ltr] .ms-Icon--FinancialSolid:before {
     content: "ï†"
 }
 
 [dir=ltr] .ms-Icon--FinancialMirroredSolid:before,
 [dir=rtl] .ms-Icon--FinancialSolid:before {
     content: "ï‡"
 }
 
 [dir=rtl] .ms-Icon--FinancialMirroredSolid:before {
     content: "ï†"
 }
 
 .ms-Icon--Fingerprint:before {
     content: "î¤¨"
 }
 
 .ms-Icon--FiveTileGrid:before {
     content: "ï‰´"
 }
 
 .ms-Icon--Flag:before {
     content: "îŸ"
 }
 
 .ms-Icon--FlameSolid:before {
     content: "ï‡³"
 }
 
 .ms-Icon--FlickDown:before {
     content: "î¤µ"
 }
 
 .ms-Icon--FlickLeft:before {
     content: "î¤·"
 }
 
 .ms-Icon--FlickRight:before {
     content: "î¤¸"
 }
 
 .ms-Icon--FlickUp:before {
     content: "î¤¶"
 }
 
 .ms-Icon--Flow:before {
     content: "î¾"
 }
 
 .ms-Icon--FocalPoint:before {
     content: "ï‰·"
 }
 
 .ms-Icon--Fog:before {
     content: "î§‹"
 }
 
 .ms-Icon--Folder:before {
     content: "î¢·"
 }
 
 .ms-Icon--FolderFill:before {
     content: "î£•"
 }
 
 .ms-Icon--FolderHorizontal:before {
     content: "ï„«"
 }
 
 [dir=ltr] .ms-Icon--FolderList:before {
     content: "ï‹Ž"
 }
 
 [dir=ltr] .ms-Icon--FolderListMirrored:before,
 [dir=rtl] .ms-Icon--FolderList:before {
     content: "ï‹"
 }
 
 [dir=rtl] .ms-Icon--FolderListMirrored:before {
     content: "ï‹Ž"
 }
 
 .ms-Icon--FolderOpen:before {
     content: "î ¸"
 }
 
 .ms-Icon--FolderQuery:before {
     content: "ï‹"
 }
 
 .ms-Icon--FolderSearch:before {
     content: "î½¥"
 }
 
 .ms-Icon--Font:before {
     content: "î£’"
 }
 
 .ms-Icon--FontColor:before {
     content: "î£“"
 }
 
 .ms-Icon--FontColorA:before {
     content: "ï“¬"
 }
 
 .ms-Icon--FontColorSwatch:before {
     content: "ï“­"
 }
 
 .ms-Icon--FontDecrease:before {
     content: "î£§"
 }
 
 .ms-Icon--FontIncrease:before {
     content: "î£¨"
 }
 
 .ms-Icon--FontSize:before {
     content: "î£©"
 }
 
 [dir=ltr] .ms-Icon--FormLibrary:before {
     content: "îº¹"
 }
 
 [dir=ltr] .ms-Icon--FormLibraryMirrored:before,
 [dir=rtl] .ms-Icon--FormLibrary:before {
     content: "îºº"
 }
 
 [dir=rtl] .ms-Icon--FormLibraryMirrored:before {
     content: "îº¹"
 }
 
 .ms-Icon--Forward:before {
     content: "îœª"
 }
 
 .ms-Icon--ForwardEvent:before {
     content: "î¶Œ"
 }
 
 .ms-Icon--Freezing:before {
     content: "î§¯"
 }
 
 .ms-Icon--Frigid:before {
     content: "î§Š"
 }
 
 .ms-Icon--FSharp:before {
     content: "ï‹¶"
 }
 
 .ms-Icon--FSharpLanguage:before {
     content: "ï‹µ"
 }
 
 .ms-Icon--FullCircleMask:before {
     content: "î¤Ÿ"
 }
 
 .ms-Icon--FullHistory:before {
     content: "ïŒœ"
 }
 
 .ms-Icon--FullScreen:before {
     content: "î€"
 }
 
 .ms-Icon--FullWidth:before {
     content: "ï‹¾"
 }
 
 .ms-Icon--FullWidthEdit:before {
     content: "ï‹¿"
 }
 
 .ms-Icon--GallatinLogo:before {
     content: "ï’–"
 }
 
 .ms-Icon--Generate:before {
     content: "î§š"
 }
 
 .ms-Icon--GenericScan:before {
     content: "î¹¯"
 }
 
 .ms-Icon--Giftbox:before {
     content: "î°Ÿ"
 }
 
 .ms-Icon--GiftboxOpen:before {
     content: "ï„³"
 }
 
 .ms-Icon--GiftBoxSolid:before {
     content: "ï"
 }
 
 .ms-Icon--GiftCard:before {
     content: "î®Ž"
 }
 
 .ms-Icon--GitGraph:before {
     content: "ï‹Š"
 }
 
 .ms-Icon--Glasses:before {
     content: "î¨–"
 }
 
 .ms-Icon--Glimmer:before {
     content: "î³´"
 }
 
 .ms-Icon--GlobalNavButton:before {
     content: "îœ€"
 }
 
 .ms-Icon--Globe:before {
     content: "î´"
 }
 
 .ms-Icon--Globe2:before {
     content: "ï’š"
 }
 
 .ms-Icon--GlobeFavorite:before {
     content: "î½“"
 }
 
 .ms-Icon--Golf:before {
     content: "î¬Ÿ"
 }
 
 .ms-Icon--GotoToday:before {
     content: "î£‘"
 }
 
 .ms-Icon--GridViewLarge:before {
     content: "ïˆ´"
 }
 
 .ms-Icon--GridViewMedium:before {
     content: "ïˆ³"
 }
 
 .ms-Icon--GridViewSmall:before {
     content: "ïˆ²"
 }
 
 .ms-Icon--GripperBarHorizontal:before {
     content: "î¯"
 }
 
 .ms-Icon--GripperBarVertical:before {
     content: "îž„"
 }
 
 .ms-Icon--GripperTool:before {
     content: "îž"
 }
 
 .ms-Icon--Group:before {
     content: "î¤‚"
 }
 
 .ms-Icon--GroupedAscending:before {
     content: "î¹§"
 }
 
 .ms-Icon--GroupedDescending:before {
     content: "î¹¦"
 }
 
 .ms-Icon--GroupedList:before {
     content: "î½´"
 }
 
 .ms-Icon--GroupObject:before {
     content: "ï“±"
 }
 
 .ms-Icon--GUID:before {
     content: "ï”«"
 }
 
 .ms-Icon--Guitar:before {
     content: "ï’›"
 }
 
 .ms-Icon--HailDay:before {
     content: "î¨€"
 }
 
 .ms-Icon--HailNight:before {
     content: "î¨“"
 }
 
 .ms-Icon--HalfAlpha:before {
     content: "î¥¾"
 }
 
 .ms-Icon--HalfCircle:before {
     content: "ï”"
 }
 
 .ms-Icon--Handwriting:before {
     content: "î¤©"
 }
 
 .ms-Icon--HardDriveGroup:before {
     content: "ï†"
 }
 
 .ms-Icon--Header1:before {
     content: "î¨™"
 }
 
 .ms-Icon--Header2:before {
     content: "î¼¶"
 }
 
 .ms-Icon--Header3:before {
     content: "î¼·"
 }
 
 .ms-Icon--Header4:before {
     content: "î¼¸"
 }
 
 .ms-Icon--Headset:before {
     content: "î¥›"
 }
 
 .ms-Icon--HeadsetSolid:before {
     content: "ïˆ"
 }
 
 .ms-Icon--Health:before {
     content: "î¥ž"
 }
 
 .ms-Icon--HealthSolid:before {
     content: "ïŒ¿"
 }
 
 .ms-Icon--Heart:before {
     content: "î­‘"
 }
 
 .ms-Icon--HeartFill:before {
     content: "î­’"
 }
 
 [dir=ltr] .ms-Icon--Help:before {
     content: "î¢—"
 }
 
 [dir=ltr] .ms-Icon--HelpMirrored:before,
 [dir=rtl] .ms-Icon--Help:before {
     content: "î©‘"
 }
 
 [dir=rtl] .ms-Icon--HelpMirrored:before {
     content: "î¢—"
 }
 
 .ms-Icon--Hexagon:before {
     content: "ï“¾"
 }
 
 .ms-Icon--Hide:before {
     content: "î´š"
 }
 
 .ms-Icon--Hide2:before {
     content: "î¾‰"
 }
 
 .ms-Icon--Highlight:before {
     content: "îŸ¦"
 }
 
 .ms-Icon--HighlightMappedShapes:before {
     content: "ïŠ¡"
 }
 
 .ms-Icon--HintText:before {
     content: "ï”"
 }
 
 .ms-Icon--History:before {
     content: "î œ"
 }
 
 .ms-Icon--Home:before {
     content: "î "
 }
 
 .ms-Icon--HomeSolid:before {
     content: "îªŠ"
 }
 
 .ms-Icon--HorizontalDistributeCenter:before {
     content: "ï“¹"
 }
 
 .ms-Icon--Hospital:before {
     content: "î¤"
 }
 
 .ms-Icon--Hotel:before {
     content: "î ¤"
 }
 
 .ms-Icon--IconSetsFlag:before {
     content: "ïŠ¤"
 }
 
 .ms-Icon--IDBadge:before {
     content: "ï§"
 }
 
 .ms-Icon--ImageCrosshair:before {
     content: "ï‹‰"
 }
 
 .ms-Icon--ImageDiff:before {
     content: "ïŒ‹"
 }
 
 .ms-Icon--ImagePixel:before {
     content: "ïŒŒ"
 }
 
 .ms-Icon--ImageSearch:before {
     content: "ï“¨"
 }
 
 .ms-Icon--Important:before {
     content: "î£‰"
 }
 
 [dir=ltr] .ms-Icon--Import:before {
     content: "î¢µ"
 }
 
 [dir=ltr] .ms-Icon--ImportMirrored:before,
 [dir=rtl] .ms-Icon--Import:before {
     content: "î©’"
 }
 
 [dir=rtl] .ms-Icon--ImportMirrored:before {
     content: "î¢µ"
 }
 
 .ms-Icon--Inbox:before {
     content: "ïœ"
 }
 
 .ms-Icon--InboxCheck:before {
     content: "î½¤"
 }
 
 .ms-Icon--IncidentTriangle:before {
     content: "î ”"
 }
 
 .ms-Icon--IncreaseIndentLegacy:before {
     content: "îŠ‘"
 }
 
 .ms-Icon--Info:before {
     content: "î¥†"
 }
 
 .ms-Icon--Info2:before {
     content: "î¨Ÿ"
 }
 
 .ms-Icon--InfoSolid:before {
     content: "ï…§"
 }
 
 .ms-Icon--InsertTextBox:before {
     content: "î±½"
 }
 
 .ms-Icon--InstallToDrive:before {
     content: "ïŠ"
 }
 
 .ms-Icon--InternetSharing:before {
     content: "îœ„"
 }
 
 [dir=ltr] .ms-Icon--IRMForward:before {
     content: "ïŸ"
 }
 
 [dir=ltr] .ms-Icon--IRMForwardMirrored:before,
 [dir=rtl] .ms-Icon--IRMForward:before {
     content: "ï "
 }
 
 [dir=rtl] .ms-Icon--IRMForwardMirrored:before {
     content: "ïŸ"
 }
 
 [dir=ltr] .ms-Icon--IRMReply:before {
     content: "ï"
 }
 
 [dir=ltr] .ms-Icon--IRMReplyMirrored:before,
 [dir=rtl] .ms-Icon--IRMReply:before {
     content: "ïž"
 }
 
 [dir=rtl] .ms-Icon--IRMReplyMirrored:before {
     content: "ï"
 }
 
 .ms-Icon--IssueSolid:before {
     content: "ï‘ˆ"
 }
 
 [dir=ltr] .ms-Icon--IssueTracking:before {
     content: "î»€"
 }
 
 [dir=ltr] .ms-Icon--IssueTrackingMirrored:before,
 [dir=rtl] .ms-Icon--IssueTracking:before {
     content: "î»"
 }
 
 [dir=rtl] .ms-Icon--IssueTrackingMirrored:before {
     content: "î»€"
 }
 
 .ms-Icon--Italic:before {
     content: "î£›"
 }
 
 .ms-Icon--JavaScriptLanguage:before {
     content: "ï‹®"
 }
 
 .ms-Icon--JoinOnlineMeeting:before {
     content: "î¶"
 }
 
 .ms-Icon--JS:before {
     content: "î¯°"
 }
 
 .ms-Icon--KaizalaLogo:before {
     content: "ï’’"
 }
 
 .ms-Icon--Label:before {
     content: "î¤²"
 }
 
 .ms-Icon--LadybugSolid:before {
     content: "ï‘Š"
 }
 
 .ms-Icon--LandscapeOrientation:before {
     content: "î½«"
 }
 
 .ms-Icon--LaptopSelected:before {
     content: "î±¶"
 }
 
 .ms-Icon--LargeGrid:before {
     content: "î»‹"
 }
 
 .ms-Icon--Library:before {
     content: "î£±"
 }
 
 .ms-Icon--Lifesaver:before {
     content: "î½¢"
 }
 
 .ms-Icon--LifesaverLock:before {
     content: "î½£"
 }
 
 .ms-Icon--Light:before {
     content: "îž“"
 }
 
 .ms-Icon--Lightbulb:before {
     content: "îª€"
 }
 
 .ms-Icon--LightningBolt:before {
     content: "î¥…"
 }
 
 .ms-Icon--LightWeight:before {
     content: "ï“®"
 }
 
 .ms-Icon--Like:before {
     content: "î£¡"
 }
 
 .ms-Icon--LikeSolid:before {
     content: "ïŽ¿"
 }
 
 .ms-Icon--Line:before {
     content: "ï“¼"
 }
 
 .ms-Icon--LineChart:before {
     content: "î§¦"
 }
 
 .ms-Icon--LineSpacing:before {
     content: "ï”—"
 }
 
 .ms-Icon--LineStyle:before {
     content: "ï”Œ"
 }
 
 .ms-Icon--LineThickness:before {
     content: "ï”"
 }
 
 .ms-Icon--Link:before {
     content: "îœ›"
 }
 
 .ms-Icon--LinkedInLogo:before {
     content: "ïˆŠ"
 }
 
 [dir=ltr] .ms-Icon--List:before {
     content: "î¨·"
 }
 
 [dir=ltr] .ms-Icon--ListMirrored:before,
 [dir=rtl] .ms-Icon--List:before {
     content: "î©•"
 }
 
 [dir=rtl] .ms-Icon--ListMirrored:before {
     content: "î¨·"
 }
 
 .ms-Icon--LocaleLanguage:before {
     content: "ïŠ·"
 }
 
 .ms-Icon--Location:before {
     content: "î "
 }
 
 .ms-Icon--LocationCircle:before {
     content: "î Ž"
 }
 
 .ms-Icon--LocationDot:before {
     content: "î §"
 }
 
 .ms-Icon--LocationFill:before {
     content: "î¤ "
 }
 
 .ms-Icon--LocationOutline:before {
     content: "ï‹"
 }
 
 .ms-Icon--Lock:before {
     content: "îœ®"
 }
 
 .ms-Icon--LockSolid:before {
     content: "î¦¢"
 }
 
 .ms-Icon--LogRemove:before {
     content: "ïŒ–"
 }
 
 .ms-Icon--LowerBrightness:before {
     content: "î²Š"
 }
 
 .ms-Icon--LyncLogo:before {
     content: "îµ¹"
 }
 
 .ms-Icon--Mail:before {
     content: "îœ•"
 }
 
 .ms-Icon--MailAlert:before {
     content: "î¶€"
 }
 
 .ms-Icon--MailCheck:before {
     content: "î¶"
 }
 
 .ms-Icon--MailFill:before {
     content: "î¢¨"
 }
 
 [dir=ltr] .ms-Icon--MailForward:before {
     content: "î¢œ"
 }
 
 [dir=ltr] .ms-Icon--MailForwardMirrored:before,
 [dir=rtl] .ms-Icon--MailForward:before {
     content: "î©–"
 }
 
 [dir=rtl] .ms-Icon--MailForwardMirrored:before {
     content: "î¢œ"
 }
 
 .ms-Icon--MailLowImportance:before {
     content: "î¶‚"
 }
 
 .ms-Icon--MailPause:before {
     content: "î¶ƒ"
 }
 
 .ms-Icon--MailReminder:before {
     content: "ï˜"
 }
 
 .ms-Icon--MailRepeat:before {
     content: "î¶„"
 }
 
 [dir=ltr] .ms-Icon--MailReplyAll:before {
     content: "î£‚"
 }
 
 [dir=ltr] .ms-Icon--MailReplyAllMirrored:before,
 [dir=rtl] .ms-Icon--MailReplyAll:before {
     content: "î©˜"
 }
 
 [dir=rtl] .ms-Icon--MailReplyAllMirrored:before {
     content: "î£‚"
 }
 
 [dir=ltr] .ms-Icon--MailReply:before {
     content: "î£Š"
 }
 
 [dir=ltr] .ms-Icon--MailReplyMirrored:before,
 [dir=rtl] .ms-Icon--MailReply:before {
     content: "î©—"
 }
 
 [dir=rtl] .ms-Icon--MailReplyMirrored:before {
     content: "î£Š"
 }
 
 .ms-Icon--MailSolid:before {
     content: "ïƒ"
 }
 
 [dir=ltr] .ms-Icon--MailTentative:before {
     content: "ï–"
 }
 
 [dir=ltr] .ms-Icon--MailTentativeMirrored:before,
 [dir=rtl] .ms-Icon--MailTentative:before {
     content: "ï—"
 }
 
 [dir=rtl] .ms-Icon--MailTentativeMirrored:before {
     content: "ï–"
 }
 
 .ms-Icon--MailUndelivered:before {
     content: "ï•"
 }
 
 .ms-Icon--MapDirections:before {
     content: "î –"
 }
 
 .ms-Icon--MapPin:before {
     content: "îœ‡"
 }
 
 .ms-Icon--MapPinSolid:before {
     content: "ï”®"
 }
 
 .ms-Icon--MarkDownLanguage:before {
     content: "ï‹»"
 }
 
 .ms-Icon--Market:before {
     content: "î«¼"
 }
 
 .ms-Icon--MarketDown:before {
     content: "î½‚"
 }
 
 .ms-Icon--MediaAdd:before {
     content: "ï”"
 }
 
 .ms-Icon--Medical:before {
     content: "î«”"
 }
 
 .ms-Icon--Megaphone:before {
     content: "îž‰"
 }
 
 .ms-Icon--MegaphoneSolid:before {
     content: "ïŒ²"
 }
 
 .ms-Icon--Memo:before {
     content: "î¼"
 }
 
 .ms-Icon--Merge:before {
     content: "îŸ•"
 }
 
 .ms-Icon--MergeDuplicate:before {
     content: "ïŠš"
 }
 
 .ms-Icon--Message:before {
     content: "î¢½"
 }
 
 .ms-Icon--MessageFill:before {
     content: "î±°"
 }
 
 .ms-Icon--MicOff:before {
     content: "î±”"
 }
 
 .ms-Icon--Microphone:before {
     content: "îœ "
 }
 
 .ms-Icon--MicrosoftFlowLogo:before {
     content: "ï’±"
 }
 
 .ms-Icon--MicrosoftStaffhubLogo:before {
     content: "ï„°"
 }
 
 .ms-Icon--MiniExpand:before {
     content: "î¤º"
 }
 
 .ms-Icon--MiniLink:before {
     content: "îœ²"
 }
 
 .ms-Icon--MobileReport:before {
     content: "ï†Š"
 }
 
 .ms-Icon--MobileSelected:before {
     content: "î±µ"
 }
 
 .ms-Icon--Money:before {
     content: "î«½"
 }
 
 .ms-Icon--More:before {
     content: "îœ’"
 }
 
 .ms-Icon--MoreSports:before {
     content: "î¬¢"
 }
 
 .ms-Icon--MoreVertical:before {
     content: "ïŠ¼"
 }
 
 .ms-Icon--Move:before {
     content: "îŸ‚"
 }
 
 .ms-Icon--Movers:before {
     content: "î¯"
 }
 
 .ms-Icon--MoveToFolder:before {
     content: "î£ž"
 }
 
 .ms-Icon--MSNLogo:before {
     content: "î­¬"
 }
 
 .ms-Icon--MSNVideos:before {
     content: "î¬œ"
 }
 
 .ms-Icon--MSNVideosSolid:before {
     content: "ï‹š"
 }
 
 .ms-Icon--MTMLogo:before {
     content: "ï‘‹"
 }
 
 [dir=ltr] .ms-Icon--MultiSelect:before {
     content: "î¢"
 }
 
 [dir=ltr] .ms-Icon--MultiSelectMirrored:before,
 [dir=rtl] .ms-Icon--MultiSelect:before {
     content: "îª˜"
 }
 
 [dir=rtl] .ms-Icon--MultiSelectMirrored:before {
     content: "î¢"
 }
 
 .ms-Icon--MusicInCollection:before {
     content: "î¥€"
 }
 
 .ms-Icon--MusicInCollectionFill:before {
     content: "î¨¶"
 }
 
 .ms-Icon--MusicNote:before {
     content: "î±"
 }
 
 .ms-Icon--MyMoviesTV:before {
     content: "î¹¬"
 }
 
 .ms-Icon--Nav2DMapView:before {
     content: "î €"
 }
 
 [dir=ltr] .ms-Icon--NavigateBack:before {
     content: "ï‹"
 }
 
 [dir=ltr] .ms-Icon--NavigateBackMirrored:before,
 [dir=rtl] .ms-Icon--NavigateBack:before {
     content: "ï‹ž"
 }
 
 [dir=rtl] .ms-Icon--NavigateBackMirrored:before {
     content: "ï‹"
 }
 
 .ms-Icon--NavigateExternalInline:before {
     content: "ïŸ"
 }
 
 [dir=ltr] .ms-Icon--NavigateForward:before {
     content: "ï‹Ÿ"
 }
 
 [dir=ltr] .ms-Icon--NavigateForwardMirrored:before,
 [dir=rtl] .ms-Icon--NavigateForward:before {
     content: "ï‹ "
 }
 
 [dir=rtl] .ms-Icon--NavigateForwardMirrored:before {
     content: "ï‹Ÿ"
 }
 
 .ms-Icon--NavigationFlipper:before {
     content: "ï”"
 }
 
 .ms-Icon--NetworkTower:before {
     content: "î°…"
 }
 
 .ms-Icon--NewAnalyticsQuery:before {
     content: "ï‡ "
 }
 
 .ms-Icon--NewFolder:before {
     content: "î£´"
 }
 
 .ms-Icon--News:before {
     content: "î¤€"
 }
 
 .ms-Icon--NewsSearch:before {
     content: "ï“©"
 }
 
 .ms-Icon--NewTeamProject:before {
     content: "ïŠ²"
 }
 
 .ms-Icon--Next:before {
     content: "î¢“"
 }
 
 .ms-Icon--NonprofitLogo32:before {
     content: "ï’•"
 }
 
 .ms-Icon--NormalWeight:before {
     content: "ï“¯"
 }
 
 .ms-Icon--NoteForward:before {
     content: "î¶™"
 }
 
 .ms-Icon--NotePinned:before {
     content: "î¶š"
 }
 
 .ms-Icon--NoteReply:before {
     content: "î¶˜"
 }
 
 .ms-Icon--NotExecuted:before {
     content: "ï‘€"
 }
 
 .ms-Icon--NotImpactedSolid:before {
     content: "ï‘"
 }
 
 .ms-Icon--NugetLogo:before {
     content: "ï‘Œ"
 }
 
 .ms-Icon--NumberedList:before {
     content: "î¨œ"
 }
 
 .ms-Icon--NumberField:before {
     content: "î·„"
 }
 
 .ms-Icon--NumberSequence:before {
     content: "ï”ª"
 }
 
 .ms-Icon--Octagon:before {
     content: "ï“½"
 }
 
 .ms-Icon--OfficeAddinsLogo:before {
     content: "î»‡"
 }
 
 .ms-Icon--OfficeAssistantLogo:before {
     content: "î·Ž"
 }
 
 .ms-Icon--OfficeFormsLogo:before {
     content: "ï´"
 }
 
 .ms-Icon--OfficeFormsLogo16:before {
     content: "ï¶"
 }
 
 .ms-Icon--OfficeFormsLogo24:before {
     content: "ï»"
 }
 
 .ms-Icon--OfficeFormsLogoFill:before {
     content: "ïµ"
 }
 
 .ms-Icon--OfficeFormsLogoFill16:before {
     content: "ï·"
 }
 
 .ms-Icon--OfficeFormsLogoFill24:before {
     content: "ï¼"
 }
 
 .ms-Icon--OfficeFormsLogoInverse:before {
     content: "î¾†"
 }
 
 .ms-Icon--OfficeFormsLogoInverse16:before {
     content: "ï³"
 }
 
 .ms-Icon--OfficeFormsLogoInverse24:before {
     content: "ïº"
 }
 
 .ms-Icon--OfficeLogo:before {
     content: "î­®"
 }
 
 .ms-Icon--OfficeStoreLogo:before {
     content: "î·"
 }
 
 .ms-Icon--OfficeVideoLogo:before {
     content: "ïŠ‚"
 }
 
 .ms-Icon--OfficeVideoLogoFill:before {
     content: "ïŠƒ"
 }
 
 .ms-Icon--OfficeVideoLogoInverse:before {
     content: "îµº"
 }
 
 .ms-Icon--OfflineOneDriveParachute:before {
     content: "î»ˆ"
 }
 
 .ms-Icon--OfflineOneDriveParachuteDisabled:before {
     content: "î»‰"
 }
 
 .ms-Icon--OfflineStorageSolid:before {
     content: "ïŽ"
 }
 
 .ms-Icon--OneDrive:before {
     content: "î¥"
 }
 
 .ms-Icon--OneDriveAdd:before {
     content: "î¼²"
 }
 
 .ms-Icon--OneNoteEduLogoInverse:before {
     content: "î·"
 }
 
 .ms-Icon--OneNoteLogo:before {
     content: "ï‡§"
 }
 
 .ms-Icon--OneNoteLogo16:before {
     content: "ïŽš"
 }
 
 .ms-Icon--OneNoteLogoFill:before {
     content: "ï‡¨"
 }
 
 .ms-Icon--OneNoteLogoFill16:before {
     content: "ïŽ›"
 }
 
 .ms-Icon--OneNoteLogoInverse:before {
     content: "î°"
 }
 
 .ms-Icon--OneNoteLogoInverse16:before {
     content: "ïŽ™"
 }
 
 .ms-Icon--OpenFile:before {
     content: "î£¥"
 }
 
 .ms-Icon--OpenFolderHorizontal:before {
     content: "î´¥"
 }
 
 .ms-Icon--OpenInNewWindow:before {
     content: "î¢§"
 }
 
 [dir=ltr] .ms-Icon--OpenPane:before {
     content: "î¢ "
 }
 
 [dir=ltr] .ms-Icon--OpenPaneMirrored:before,
 [dir=rtl] .ms-Icon--OpenPane:before {
     content: "î©›"
 }
 
 [dir=rtl] .ms-Icon--OpenPaneMirrored:before {
     content: "î¢ "
 }
 
 .ms-Icon--OpenSource:before {
     content: "î¯‚"
 }
 
 .ms-Icon--Org:before {
     content: "î²¦"
 }
 
 .ms-Icon--Orientation:before {
     content: "î¢´"
 }
 
 .ms-Icon--OutlookLogo:before {
     content: "ï‡©"
 }
 
 .ms-Icon--OutlookLogo16:before {
     content: "ïŽ"
 }
 
 .ms-Icon--OutlookLogoFill:before {
     content: "ï‡ª"
 }
 
 .ms-Icon--OutlookLogoFill16:before {
     content: "ïŽž"
 }
 
 .ms-Icon--OutlookLogoInverse:before {
     content: "î­­"
 }
 
 .ms-Icon--OutlookLogoInverse16:before {
     content: "ïŽœ"
 }
 
 .ms-Icon--OutOfOffice:before {
     content: "î´´"
 }
 
 .ms-Icon--Package:before {
     content: "îž¸"
 }
 
 .ms-Icon--Packages:before {
     content: "ïŒ˜"
 }
 
 .ms-Icon--Padding:before {
     content: "ï”˜"
 }
 
 .ms-Icon--PaddingBottom:before {
     content: "ï”š"
 }
 
 .ms-Icon--PaddingLeft:before {
     content: "ï”›"
 }
 
 .ms-Icon--PaddingRight:before {
     content: "ï”œ"
 }
 
 .ms-Icon--PaddingTop:before {
     content: "ï”™"
 }
 
 .ms-Icon--Page:before {
     content: "îŸƒ"
 }
 
 .ms-Icon--PageAdd:before {
     content: "î¨š"
 }
 
 .ms-Icon--PageCheckedin:before {
     content: "ï„„"
 }
 
 .ms-Icon--PageCheckedOut:before {
     content: "ï€¬"
 }
 
 .ms-Icon--PageEdit:before {
     content: "î¾¶"
 }
 
 .ms-Icon--PageLeft:before {
     content: "î "
 }
 
 [dir=ltr] .ms-Icon--PageListSolid:before {
     content: "ïŒº"
 }
 
 [dir=ltr] .ms-Icon--PageListMirroredSolid:before,
 [dir=rtl] .ms-Icon--PageListSolid:before {
     content: "ïŒ»"
 }
 
 [dir=rtl] .ms-Icon--PageListMirroredSolid:before {
     content: "ïŒº"
 }
 
 .ms-Icon--PageLock:before {
     content: "ï¿"
 }
 
 .ms-Icon--PageRight:before {
     content: "î¡"
 }
 
 .ms-Icon--PageSolid:before {
     content: "îœ©"
 }
 
 .ms-Icon--PanoIndicator:before {
     content: "îž°"
 }
 
 .ms-Icon--Parachute:before {
     content: "ï‘"
 }
 
 .ms-Icon--ParachuteSolid:before {
     content: "ï’"
 }
 
 .ms-Icon--Parameter:before {
     content: "ïŒ†"
 }
 
 [dir=ltr] .ms-Icon--ParkingLocation:before {
     content: "î ‘"
 }
 
 [dir=ltr] .ms-Icon--ParkingLocationMirrored:before,
 [dir=rtl] .ms-Icon--ParkingLocation:before {
     content: "î©ž"
 }
 
 [dir=rtl] .ms-Icon--ParkingLocationMirrored:before {
     content: "î ‘"
 }
 
 [dir=ltr] .ms-Icon--ParkingSolid:before {
     content: "ïŠ"
 }
 
 [dir=ltr] .ms-Icon--ParkingMirroredSolid:before,
 [dir=rtl] .ms-Icon--ParkingSolid:before {
     content: "ï‹"
 }
 
 [dir=rtl] .ms-Icon--ParkingMirroredSolid:before {
     content: "ïŠ"
 }
 
 .ms-Icon--PartlyCloudyDay:before {
     content: "î§€"
 }
 
 .ms-Icon--PartlyCloudyNight:before {
     content: "î§"
 }
 
 .ms-Icon--PartyLeader:before {
     content: "î²§"
 }
 
 .ms-Icon--Paste:before {
     content: "î¿"
 }
 
 .ms-Icon--Pause:before {
     content: "î©"
 }
 
 .ms-Icon--PaymentCard:before {
     content: "î£‡"
 }
 
 .ms-Icon--PC1:before {
     content: "î¥·"
 }
 
 .ms-Icon--PDF:before {
     content: "îª"
 }
 
 .ms-Icon--PencilReply:before {
     content: "î½»"
 }
 
 .ms-Icon--Pentagon:before {
     content: "ï“¿"
 }
 
 .ms-Icon--People:before {
     content: "îœ–"
 }
 
 .ms-Icon--PeopleAdd:before {
     content: "î¨•"
 }
 
 .ms-Icon--PeopleAlert:before {
     content: "î¶“"
 }
 
 .ms-Icon--PeopleBlock:before {
     content: "î¶‘"
 }
 
 .ms-Icon--PeoplePause:before {
     content: "î¶”"
 }
 
 .ms-Icon--PeopleRepeat:before {
     content: "î¶’"
 }
 
 .ms-Icon--Permissions:before {
     content: "î£—"
 }
 
 .ms-Icon--PermissionsSolid:before {
     content: "ï‰"
 }
 
 .ms-Icon--Personalize:before {
     content: "î±"
 }
 
 .ms-Icon--Phone:before {
     content: "îœ—"
 }
 
 .ms-Icon--Photo2:before {
     content: "î®Ÿ"
 }
 
 .ms-Icon--Photo2Add:before {
     content: "î²«"
 }
 
 .ms-Icon--Photo2Remove:before {
     content: "î²¬"
 }
 
 .ms-Icon--PhotoCollection:before {
     content: "îžª"
 }
 
 .ms-Icon--Picture:before {
     content: "î¢¹"
 }
 
 .ms-Icon--PictureCenter:before {
     content: "ï”¢"
 }
 
 .ms-Icon--PictureFill:before {
     content: "ï”£"
 }
 
 .ms-Icon--PictureLibrary:before {
     content: "î»‚"
 }
 
 .ms-Icon--PicturePosition:before {
     content: "ï”¤"
 }
 
 .ms-Icon--PictureStretch:before {
     content: "ï”¥"
 }
 
 .ms-Icon--PictureTile:before {
     content: "ï”¦"
 }
 
 .ms-Icon--PieDouble:before {
     content: "î¬„"
 }
 
 .ms-Icon--PieSingle:before {
     content: "î¬…"
 }
 
 .ms-Icon--PieSingleSolid:before {
     content: "ï”°"
 }
 
 .ms-Icon--Pill:before {
     content: "î«‹"
 }
 
 .ms-Icon--Pin:before {
     content: "îœ˜"
 }
 
 .ms-Icon--Pinned:before {
     content: "î¡€"
 }
 
 .ms-Icon--PinnedFill:before {
     content: "î¡‚"
 }
 
 .ms-Icon--PivotChart:before {
     content: "ï‰Œ"
 }
 
 .ms-Icon--PlannerLogo:before {
     content: "î·‘"
 }
 
 .ms-Icon--PlanView:before {
     content: "ï "
 }
 
 .ms-Icon--Play:before {
     content: "î¨"
 }
 
 .ms-Icon--PlayerSettings:before {
     content: "î½˜"
 }
 
 .ms-Icon--PlayResume:before {
     content: "ï‹†"
 }
 
 .ms-Icon--Plug:before {
     content: "ïŒ€"
 }
 
 .ms-Icon--PlugConnected:before {
     content: "ïŒ‚"
 }
 
 .ms-Icon--PlugDisconnected:before {
     content: "ïŒƒ"
 }
 
 .ms-Icon--PlugSolid:before {
     content: "ïŒ"
 }
 
 .ms-Icon--POI:before {
     content: "î²¯"
 }
 
 .ms-Icon--POISolid:before {
     content: "ï‹‘"
 }
 
 .ms-Icon--PostUpdate:before {
     content: "î£³"
 }
 
 .ms-Icon--PowerApps:before {
     content: "î·’"
 }
 
 .ms-Icon--PowerApps2Logo:before {
     content: "ï‚’"
 }
 
 .ms-Icon--PowerAppsLogo:before {
     content: "ï‚‘"
 }
 
 .ms-Icon--PowerBILogo:before {
     content: "î¨ž"
 }
 
 .ms-Icon--PowerPointDocument:before {
     content: "î½²"
 }
 
 .ms-Icon--PowerPointLogo:before {
     content: "ï‡«"
 }
 
 .ms-Icon--PowerPointLogo16:before {
     content: "ïŽ”"
 }
 
 .ms-Icon--PowerPointLogoFill:before {
     content: "ï‡¬"
 }
 
 .ms-Icon--PowerPointLogoFill16:before {
     content: "ïŽ•"
 }
 
 .ms-Icon--PowerPointLogoInverse:before {
     content: "î°ª"
 }
 
 .ms-Icon--PowerPointLogoInverse16:before {
     content: "ïŽ“"
 }
 
 .ms-Icon--Precipitation:before {
     content: "î§"
 }
 
 .ms-Icon--PresenceChickletVideo:before {
     content: "î¥¹"
 }
 
 .ms-Icon--Preview:before {
     content: "î£¿"
 }
 
 .ms-Icon--PreviewLink:before {
     content: "î¢¡"
 }
 
 .ms-Icon--Previous:before {
     content: "î¢’"
 }
 
 .ms-Icon--PrimaryCalendar:before {
     content: "ï’®"
 }
 
 .ms-Icon--Print:before {
     content: "î‰"
 }
 
 .ms-Icon--PrintfaxPrinterFile:before {
     content: "î¥–"
 }
 
 .ms-Icon--Processing:before {
     content: "î§µ"
 }
 
 .ms-Icon--ProcessMetaTask:before {
     content: "ïŠ"
 }
 
 .ms-Icon--Product:before {
     content: "î³œ"
 }
 
 .ms-Icon--ProfileSearch:before {
     content: "î¼µ"
 }
 
 .ms-Icon--ProFootball:before {
     content: "î¬§"
 }
 
 .ms-Icon--ProgressLoopInner:before {
     content: "î³ž"
 }
 
 .ms-Icon--ProgressLoopOuter:before {
     content: "î³Ÿ"
 }
 
 .ms-Icon--ProgressRingDots:before {
     content: "ï…ª"
 }
 
 .ms-Icon--ProHockey:before {
     content: "î¬¨"
 }
 
 .ms-Icon--ProjectCollection:before {
     content: "ï£"
 }
 
 .ms-Icon--ProjectLogo16:before {
     content: "ï’€"
 }
 
 .ms-Icon--ProjectLogo32:before {
     content: "ï‘¾"
 }
 
 .ms-Icon--ProjectLogoFill16:before {
     content: "ï’"
 }
 
 .ms-Icon--ProjectLogoFill32:before {
     content: "ï‘¿"
 }
 
 .ms-Icon--ProjectLogoInverse:before {
     content: "î·”"
 }
 
 .ms-Icon--ProtectedDocument:before {
     content: "î¢¦"
 }
 
 .ms-Icon--ProtectionCenterLogo32:before {
     content: "ï’”"
 }
 
 .ms-Icon--ProtectRestrict:before {
     content: "ïˆª"
 }
 
 .ms-Icon--PublicCalendar:before {
     content: "î½­"
 }
 
 .ms-Icon--PublicContactCard:before {
     content: "î½®"
 }
 
 .ms-Icon--PublicEmail:before {
     content: "î½¯"
 }
 
 .ms-Icon--PublicFolder:before {
     content: "î½°"
 }
 
 .ms-Icon--PublisherLogo:before {
     content: "ï‡­"
 }
 
 .ms-Icon--PublisherLogo16:before {
     content: "ïŽ "
 }
 
 .ms-Icon--PublisherLogoFill:before {
     content: "ï‡®"
 }
 
 .ms-Icon--PublisherLogoFill16:before {
     content: "ïŽ¡"
 }
 
 .ms-Icon--PublisherLogoInverse16:before {
     content: "ïŽŸ"
 }
 
 .ms-Icon--Puzzle:before {
     content: "îª†"
 }
 
 .ms-Icon--PY:before {
     content: "ï‹¹"
 }
 
 .ms-Icon--PythonLanguage:before {
     content: "ï‹¸"
 }
 
 .ms-Icon--QuarterCircle:before {
     content: "ï”‚"
 }
 
 .ms-Icon--QueryList:before {
     content: "ïŠ¸"
 }
 
 [dir=ltr] .ms-Icon--Questionnaire:before {
     content: "î¸™"
 }
 
 [dir=ltr] .ms-Icon--QuestionnaireMirrored:before,
 [dir=rtl] .ms-Icon--Questionnaire:before {
     content: "î¹‹"
 }
 
 [dir=rtl] .ms-Icon--QuestionnaireMirrored:before {
     content: "î¸™"
 }
 
 .ms-Icon--QuickNote:before {
     content: "îœ‹"
 }
 
 .ms-Icon--QuickNoteSolid:before {
     content: "ïŒ¸"
 }
 
 .ms-Icon--R:before {
     content: "ï“«"
 }
 
 .ms-Icon--RadioBtnOff:before {
     content: "î³Š"
 }
 
 .ms-Icon--RadioBtnOn:before {
     content: "î³‹"
 }
 
 .ms-Icon--RadioBullet:before {
     content: "î¤•"
 }
 
 .ms-Icon--Rain:before {
     content: "î§„"
 }
 
 .ms-Icon--RainShowersDay:before {
     content: "î§ƒ"
 }
 
 .ms-Icon--RainShowersNight:before {
     content: "î¨"
 }
 
 .ms-Icon--RainSnow:before {
     content: "î§‡"
 }
 
 .ms-Icon--RawSource:before {
     content: "ïŠ™"
 }
 
 .ms-Icon--Read:before {
     content: "î£ƒ"
 }
 
 .ms-Icon--ReadingMode:before {
     content: "îœ¶"
 }
 
 .ms-Icon--ReadingModeSolid:before {
     content: "ïŒ½"
 }
 
 .ms-Icon--ReceiptCheck:before {
     content: "î½›"
 }
 
 .ms-Icon--ReceiptForward:before {
     content: "î½™"
 }
 
 .ms-Icon--ReceiptReply:before {
     content: "î½š"
 }
 
 [dir=ltr] .ms-Icon--ReceiptTentative:before {
     content: "ïš"
 }
 
 [dir=ltr] .ms-Icon--ReceiptTentativeMirrored:before,
 [dir=rtl] .ms-Icon--ReceiptTentative:before {
     content: "ï›"
 }
 
 [dir=rtl] .ms-Icon--ReceiptTentativeMirrored:before {
     content: "ïš"
 }
 
 .ms-Icon--ReceiptUndelivered:before {
     content: "ï™"
 }
 
 .ms-Icon--Recent:before {
     content: "î £"
 }
 
 .ms-Icon--Record2:before {
     content: "î¨¿"
 }
 
 .ms-Icon--RectangularClipping:before {
     content: "ï‡"
 }
 
 .ms-Icon--RecurringEvent:before {
     content: "î½"
 }
 
 .ms-Icon--RecurringTask:before {
     content: "î¶²"
 }
 
 .ms-Icon--RecycleBin:before {
     content: "î¾‡"
 }
 
 .ms-Icon--Redeploy:before {
     content: "ïŠž"
 }
 
 .ms-Icon--RedEye:before {
     content: "îž³"
 }
 
 .ms-Icon--Redo:before {
     content: "îž¦"
 }
 
 .ms-Icon--Refresh:before {
     content: "îœ¬"
 }
 
 .ms-Icon--ReminderGroup:before {
     content: "î¯¸"
 }
 
 .ms-Icon--ReminderPerson:before {
     content: "î¯·"
 }
 
 .ms-Icon--Remove:before {
     content: "îœ¸"
 }
 
 .ms-Icon--RemoveEvent:before {
     content: "î¶Š"
 }
 
 .ms-Icon--RemoveFilter:before {
     content: "î¬ˆ"
 }
 
 .ms-Icon--RemoveLink:before {
     content: "î¶"
 }
 
 .ms-Icon--RemoveOccurrence:before {
     content: "î¶›"
 }
 
 .ms-Icon--Rename:before {
     content: "î¢¬"
 }
 
 .ms-Icon--ReopenPages:before {
     content: "îµ"
 }
 
 .ms-Icon--Repair:before {
     content: "î¤"
 }
 
 .ms-Icon--ReplyAllAlt:before {
     content: "î½Ÿ"
 }
 
 [dir=ltr] .ms-Icon--ReplyAll:before {
     content: "î¸Š"
 }
 
 [dir=ltr] .ms-Icon--ReplyAllMirrored:before,
 [dir=rtl] .ms-Icon--ReplyAll:before {
     content: "î¸¶"
 }
 
 [dir=rtl] .ms-Icon--ReplyAllMirrored:before {
     content: "î¸Š"
 }
 
 .ms-Icon--ReplyAlt:before {
     content: "î½ž"
 }
 
 [dir=ltr] .ms-Icon--Reply:before {
     content: "î¥º"
 }
 
 [dir=ltr] .ms-Icon--ReplyMirrored:before,
 [dir=rtl] .ms-Icon--Reply:before {
     content: "î¸µ"
 }
 
 [dir=rtl] .ms-Icon--ReplyMirrored:before {
     content: "î¥º"
 }
 
 .ms-Icon--Repo:before {
     content: "ï‹‹"
 }
 
 .ms-Icon--ReportAdd:before {
     content: "ï”¬"
 }
 
 [dir=ltr] .ms-Icon--ReportLibrary:before {
     content: "îº»"
 }
 
 [dir=ltr] .ms-Icon--ReportLibraryMirrored:before,
 [dir=rtl] .ms-Icon--ReportLibrary:before {
     content: "îº¼"
 }
 
 [dir=rtl] .ms-Icon--ReportLibraryMirrored:before {
     content: "îº»"
 }
 
 .ms-Icon--RepoSolid:before {
     content: "ï‹Œ"
 }
 
 .ms-Icon--ReturnToSession:before {
     content: "î´¤"
 }
 
 [dir=ltr] .ms-Icon--ReviewRequestSolid:before {
     content: "ï–"
 }
 
 [dir=ltr] .ms-Icon--ReviewRequestMirroredSolid:before,
 [dir=rtl] .ms-Icon--ReviewRequestSolid:before {
     content: "ï—"
 }
 
 [dir=rtl] .ms-Icon--ReviewRequestMirroredSolid:before {
     content: "ï–"
 }
 
 .ms-Icon--ReviewResponseSolid:before {
     content: "ï˜"
 }
 
 .ms-Icon--ReviewSolid:before {
     content: "ï•"
 }
 
 .ms-Icon--RevToggleKey:before {
     content: "î¡…"
 }
 
 .ms-Icon--Rewind:before {
     content: "î®ž"
 }
 
 .ms-Icon--Ribbon:before {
     content: "î§‘"
 }
 
 .ms-Icon--RibbonSolid:before {
     content: "ï…"
 }
 
 .ms-Icon--RightDoubleQuote:before {
     content: "î¦±"
 }
 
 .ms-Icon--RightTriangle:before {
     content: "ï”€"
 }
 
 .ms-Icon--Ringer:before {
     content: "îª"
 }
 
 .ms-Icon--RingerOff:before {
     content: "ï‹…"
 }
 
 .ms-Icon--Robot:before {
     content: "î¦š"
 }
 
 .ms-Icon--Rocket:before {
     content: "ïŽ³"
 }
 
 .ms-Icon--Room:before {
     content: "î¶Ÿ"
 }
 
 .ms-Icon--Rotate:before {
     content: "îž­"
 }
 
 .ms-Icon--RowsChild:before {
     content: "ïŠœ"
 }
 
 .ms-Icon--RowsGroup:before {
     content: "ïŠ›"
 }
 
 .ms-Icon--Rugby:before {
     content: "î¬­"
 }
 
 .ms-Icon--Running:before {
     content: "î«š"
 }
 
 .ms-Icon--Sad:before {
     content: "î—"
 }
 
 .ms-Icon--SadSolid:before {
     content: "ïŒ¾"
 }
 
 .ms-Icon--Save:before {
     content: "îŽ"
 }
 
 .ms-Icon--SaveAll:before {
     content: "ïˆƒ"
 }
 
 .ms-Icon--SaveAndClose:before {
     content: "ï€¸"
 }
 
 .ms-Icon--SaveAs:before {
     content: "îž’"
 }
 
 .ms-Icon--Savings:before {
     content: "î¬‹"
 }
 
 .ms-Icon--ScaleUp:before {
     content: "î´‰"
 }
 
 .ms-Icon--ScheduleEventAction:before {
     content: "ï‡¯"
 }
 
 .ms-Icon--ScopeTemplate:before {
     content: "ïŠ°"
 }
 
 .ms-Icon--Script:before {
     content: "ï€º"
 }
 
 .ms-Icon--ScrollUpDown:before {
     content: "î²"
 }
 
 .ms-Icon--Search:before {
     content: "îœ¡"
 }
 
 .ms-Icon--SearchAndApps:before {
     content: "î³"
 }
 
 .ms-Icon--SearchCalendar:before {
     content: "ï’¯"
 }
 
 [dir=ltr] .ms-Icon--SearchIssue:before {
     content: "ï‚š"
 }
 
 [dir=ltr] .ms-Icon--SearchIssueMirrored:before,
 [dir=rtl] .ms-Icon--SearchIssue:before {
     content: "ï‚›"
 }
 
 [dir=rtl] .ms-Icon--SearchIssueMirrored:before {
     content: "ï‚š"
 }
 
 .ms-Icon--Section:before {
     content: "î°Œ"
 }
 
 .ms-Icon--Sections:before {
     content: "î½¶"
 }
 
 .ms-Icon--SecurityGroup:before {
     content: "î¶…"
 }
 
 .ms-Icon--Sell:before {
     content: "î¬Œ"
 }
 
 .ms-Icon--SemiboldWeight:before {
     content: "ï“°"
 }
 
 [dir=ltr] .ms-Icon--Send:before {
     content: "îœ¤"
 }
 
 [dir=ltr] .ms-Icon--SendMirrored:before,
 [dir=rtl] .ms-Icon--Send:before {
     content: "î©£"
 }
 
 [dir=rtl] .ms-Icon--SendMirrored:before {
     content: "îœ¤"
 }
 
 .ms-Icon--Separator:before {
     content: "ïž"
 }
 
 .ms-Icon--Server:before {
     content: "ïˆ"
 }
 
 .ms-Icon--ServerEnviroment:before {
     content: "ïŠŸ"
 }
 
 .ms-Icon--ServerProcesses:before {
     content: "ï‡¾"
 }
 
 .ms-Icon--SetAction:before {
     content: "ï±"
 }
 
 .ms-Icon--Settings:before {
     content: "îœ“"
 }
 
 .ms-Icon--Share:before {
     content: "îœ­"
 }
 
 .ms-Icon--ShareiOS:before {
     content: "î½¹"
 }
 
 .ms-Icon--SharepointLogo:before {
     content: "ï‰¾"
 }
 
 .ms-Icon--SharepointLogoFill:before {
     content: "ï‰¿"
 }
 
 .ms-Icon--SharepointLogoInverse:before {
     content: "î´˜"
 }
 
 .ms-Icon--Shield:before {
     content: "î¨˜"
 }
 
 .ms-Icon--ShieldSolid:before {
     content: "ï€"
 }
 
 .ms-Icon--Shop:before {
     content: "îœ™"
 }
 
 .ms-Icon--ShoppingCart:before {
     content: "îž¿"
 }
 
 .ms-Icon--ShoppingCartSolid:before {
     content: "ï‚"
 }
 
 .ms-Icon--ShopServer:before {
     content: "ïŠ¶"
 }
 
 [dir=ltr] .ms-Icon--ShowResults:before {
     content: "î¢¼"
 }
 
 [dir=ltr] .ms-Icon--ShowResultsMirrored:before,
 [dir=rtl] .ms-Icon--ShowResults:before {
     content: "î©¥"
 }
 
 [dir=rtl] .ms-Icon--ShowResultsMirrored:before {
     content: "î¢¼"
 }
 
 [dir=ltr] .ms-Icon--SidePanel:before {
     content: "î½’"
 }
 
 [dir=ltr] .ms-Icon--SidePanelMirrored:before,
 [dir=rtl] .ms-Icon--SidePanel:before {
     content: "ïˆ¡"
 }
 
 [dir=rtl] .ms-Icon--SidePanelMirrored:before {
     content: "î½’"
 }
 
 .ms-Icon--SignOut:before {
     content: "ïŽ±"
 }
 
 .ms-Icon--SingleBookmark:before {
     content: "î·¿"
 }
 
 .ms-Icon--SingleColumn:before {
     content: "ï‡“"
 }
 
 .ms-Icon--SingleColumnEdit:before {
     content: "ïŒ¡"
 }
 
 .ms-Icon--SIPMove:before {
     content: "î™"
 }
 
 .ms-Icon--SiteScan:before {
     content: "î¯¬"
 }
 
 .ms-Icon--SizeLegacy:before {
     content: "îŠ²"
 }
 
 .ms-Icon--SkiResorts:before {
     content: "î­…"
 }
 
 .ms-Icon--SkypeCheck:before {
     content: "î¾€"
 }
 
 .ms-Icon--SkypeCircleCheck:before {
     content: "î½½"
 }
 
 .ms-Icon--SkypeCircleClock:before {
     content: "î½¾"
 }
 
 .ms-Icon--SkypeCircleMinus:before {
     content: "î½¿"
 }
 
 .ms-Icon--SkypeClock:before {
     content: "î¾"
 }
 
 .ms-Icon--SkypeForBusinessLogo:before {
     content: "ïƒ¼"
 }
 
 .ms-Icon--SkypeForBusinessLogo16:before {
     content: "ï"
 }
 
 .ms-Icon--SkypeForBusinessLogoFill:before {
     content: "ï‰½"
 }
 
 .ms-Icon--SkypeForBusinessLogoFill16:before {
     content: "ï"
 }
 
 .ms-Icon--SkypeLogo:before {
     content: "î­¯"
 }
 
 .ms-Icon--SkypeLogo16:before {
     content: "ïŽ"
 }
 
 .ms-Icon--SkypeMessage:before {
     content: "î¾ƒ"
 }
 
 .ms-Icon--SkypeMinus:before {
     content: "î¾‚"
 }
 
 .ms-Icon--Slider:before {
     content: "ï”§"
 }
 
 .ms-Icon--SliderHandleSize:before {
     content: "ï”¨"
 }
 
 .ms-Icon--SliderThumb:before {
     content: "î°“"
 }
 
 .ms-Icon--Snooze:before {
     content: "ï’½"
 }
 
 .ms-Icon--Snow:before {
     content: "î§ˆ"
 }
 
 .ms-Icon--Snowflake:before {
     content: "î­†"
 }
 
 .ms-Icon--SnowShowerDay:before {
     content: "î§½"
 }
 
 .ms-Icon--SnowShowerNight:before {
     content: "î¨‘"
 }
 
 .ms-Icon--Soccer:before {
     content: "î¬¡"
 }
 
 .ms-Icon--SocialListeningLogo:before {
     content: "îµ¼"
 }
 
 .ms-Icon--Sort:before {
     content: "î£‹"
 }
 
 .ms-Icon--SortDown:before {
     content: "î¹©"
 }
 
 .ms-Icon--SortLines:before {
     content: "î§"
 }
 
 .ms-Icon--SortUp:before {
     content: "î¹¨"
 }
 
 .ms-Icon--Spacer:before {
     content: "ï"
 }
 
 .ms-Icon--Speakers:before {
     content: "îŸµ"
 }
 
 .ms-Icon--SpeedHigh:before {
     content: "î±Š"
 }
 
 .ms-Icon--Split:before {
     content: "î¶¼"
 }
 
 .ms-Icon--Sprint:before {
     content: "ïŽ°"
 }
 
 .ms-Icon--Squalls:before {
     content: "î§Œ"
 }
 
 .ms-Icon--Stack:before {
     content: "ï‰¯"
 }
 
 .ms-Icon--StackedBarChart:before {
     content: "ï‰"
 }
 
 .ms-Icon--StackedLineChart:before {
     content: "ï‰Ž"
 }
 
 .ms-Icon--StackIndicator:before {
     content: "îŸ¿"
 }
 
 .ms-Icon--StaffNotebookLogo16:before {
     content: "ï’Ž"
 }
 
 .ms-Icon--StaffNotebookLogo32:before {
     content: "ï’Œ"
 }
 
 .ms-Icon--StaffNotebookLogoFill16:before {
     content: "ï’"
 }
 
 .ms-Icon--StaffNotebookLogoFill32:before {
     content: "ï’"
 }
 
 .ms-Icon--StaffNotebookLogoInverted16:before {
     content: "ï’‘"
 }
 
 .ms-Icon--StaffNotebookLogoInverted32:before {
     content: "ï’"
 }
 
 .ms-Icon--Starburst:before {
     content: "î½¸"
 }
 
 .ms-Icon--StarburstSolid:before {
     content: "ïŒ¼"
 }
 
 .ms-Icon--StatusCircleCheckmark:before {
     content: "ï„¾"
 }
 
 .ms-Icon--StatusCircleInner:before {
     content: "ï„·"
 }
 
 .ms-Icon--StatusCircleOuter:before {
     content: "ï„¶"
 }
 
 .ms-Icon--StatusErrorFull:before {
     content: "î®"
 }
 
 .ms-Icon--StatusTriangle:before {
     content: "îª‚"
 }
 
 .ms-Icon--Step:before {
     content: "ï‰"
 }
 
 .ms-Icon--StepInsert:before {
     content: "ï‰‚"
 }
 
 .ms-Icon--StepShared:before {
     content: "ï‰ƒ"
 }
 
 .ms-Icon--StepSharedAdd:before {
     content: "ï‰„"
 }
 
 .ms-Icon--StepSharedInsert:before {
     content: "ï‰…"
 }
 
 .ms-Icon--StockDown:before {
     content: "î¬"
 }
 
 .ms-Icon--StockUp:before {
     content: "î¬‘"
 }
 
 .ms-Icon--Stop:before {
     content: "îœš"
 }
 
 .ms-Icon--StopSolid:before {
     content: "îº•"
 }
 
 .ms-Icon--Stopwatch:before {
     content: "î¤–"
 }
 
 .ms-Icon--StoreLogo16:before {
     content: "îª–"
 }
 
 .ms-Icon--StoreLogoMed20:before {
     content: "î¨„"
 }
 
 .ms-Icon--Storyboard:before {
     content: "ïŒˆ"
 }
 
 .ms-Icon--Streaming:before {
     content: "î¤¾"
 }
 
 .ms-Icon--StreamingOff:before {
     content: "ïŠ»"
 }
 
 .ms-Icon--StreamLogo:before {
     content: "ïŒ©"
 }
 
 .ms-Icon--Strikethrough:before {
     content: "î· "
 }
 
 .ms-Icon--Subscribe:before {
     content: "î¶¡"
 }
 
 .ms-Icon--Subscript:before {
     content: "î·Ÿ"
 }
 
 .ms-Icon--SubstitutionsIn:before {
     content: "î¬±"
 }
 
 .ms-Icon--Suitcase:before {
     content: "î·“"
 }
 
 .ms-Icon--SunAdd:before {
     content: "î½©"
 }
 
 .ms-Icon--Sunny:before {
     content: "î¦½"
 }
 
 .ms-Icon--SunQuestionMark:before {
     content: "î½ª"
 }
 
 .ms-Icon--Superscript:before {
     content: "î·ž"
 }
 
 .ms-Icon--SwayLogo16:before {
     content: "ï’„"
 }
 
 .ms-Icon--SwayLogo32:before {
     content: "ï’‚"
 }
 
 .ms-Icon--SwayLogoFill16:before {
     content: "ï’…"
 }
 
 .ms-Icon--SwayLogoFill32:before {
     content: "ï’ƒ"
 }
 
 .ms-Icon--SwayLogoInverse:before {
     content: "î´©"
 }
 
 .ms-Icon--Switch:before {
     content: "î¢«"
 }
 
 .ms-Icon--SwitcherStartEnd:before {
     content: "î "
 }
 
 .ms-Icon--Sync:before {
     content: "î¢•"
 }
 
 .ms-Icon--SyncFolder:before {
     content: "î£·"
 }
 
 .ms-Icon--SyncOccurence:before {
     content: "ï’£"
 }
 
 .ms-Icon--SyncToPC:before {
     content: "î¹®"
 }
 
 .ms-Icon--System:before {
     content: "î°"
 }
 
 .ms-Icon--Tab:before {
     content: "îŸ©"
 }
 
 .ms-Icon--Table:before {
     content: "î¶†"
 }
 
 .ms-Icon--Tablet:before {
     content: "îœŠ"
 }
 
 .ms-Icon--TabletMode:before {
     content: "î¯¼"
 }
 
 .ms-Icon--TabletSelected:before {
     content: "î±´"
 }
 
 .ms-Icon--Tag:before {
     content: "î£¬"
 }
 
 .ms-Icon--Taskboard:before {
     content: "ï‡‚"
 }
 
 [dir=ltr] .ms-Icon--TaskGroup:before {
     content: "ïŠ®"
 }
 
 [dir=ltr] .ms-Icon--TaskGroupMirrored:before,
 [dir=rtl] .ms-Icon--TaskGroup:before {
     content: "ïŠ¯"
 }
 
 [dir=rtl] .ms-Icon--TaskGroupMirrored:before {
     content: "ïŠ®"
 }
 
 .ms-Icon--TaskLogo:before {
     content: "ï’“"
 }
 
 [dir=ltr] .ms-Icon--TaskManager:before {
     content: "î¶·"
 }
 
 [dir=ltr] .ms-Icon--TaskManagerMirrored:before,
 [dir=rtl] .ms-Icon--TaskManager:before {
     content: "î¶¸"
 }
 
 [dir=rtl] .ms-Icon--TaskManagerMirrored:before {
     content: "î¶·"
 }
 
 .ms-Icon--TaskSolid:before {
     content: "ïŒ³"
 }
 
 .ms-Icon--Taxi:before {
     content: "ï’¡"
 }
 
 .ms-Icon--TeamFavorite:before {
     content: "ïŠ­"
 }
 
 .ms-Icon--TeamsLogo:before {
     content: "ï‰»"
 }
 
 .ms-Icon--TeamsLogoFill:before {
     content: "ï‰¼"
 }
 
 .ms-Icon--TeamsLogoInverse:before {
     content: "ï‰º"
 }
 
 .ms-Icon--Teamwork:before {
     content: "î¨’"
 }
 
 .ms-Icon--Teeth:before {
     content: "ï’ "
 }
 
 .ms-Icon--TemporaryUser:before {
     content: "î¹˜"
 }
 
 .ms-Icon--Tennis:before {
     content: "î¬³"
 }
 
 .ms-Icon--TestAutoSolid:before {
     content: "ïŽ¨"
 }
 
 .ms-Icon--TestBeaker:before {
     content: "ïŽ¥"
 }
 
 .ms-Icon--TestBeakerSolid:before {
     content: "ïŽ¦"
 }
 
 .ms-Icon--TestCase:before {
     content: "ïŽ¯"
 }
 
 .ms-Icon--TestExploreSolid:before {
     content: "ïŽ§"
 }
 
 .ms-Icon--TestImpactSolid:before {
     content: "ïŽª"
 }
 
 .ms-Icon--TestParameter:before {
     content: "ïŽ­"
 }
 
 .ms-Icon--TestPlan:before {
     content: "ïŽ«"
 }
 
 .ms-Icon--TestStep:before {
     content: "ïŽ¬"
 }
 
 .ms-Icon--TestSuite:before {
     content: "ïŽ®"
 }
 
 .ms-Icon--TestUserSolid:before {
     content: "ïŽ©"
 }
 
 .ms-Icon--TextBox:before {
     content: "î·‚"
 }
 
 .ms-Icon--TextCallout:before {
     content: "ïŠ¢"
 }
 
 .ms-Icon--TextDocument:before {
     content: "ï€©"
 }
 
 .ms-Icon--TextField:before {
     content: "î·ƒ"
 }
 
 .ms-Icon--TextOverflow:before {
     content: "ï”Ÿ"
 }
 
 .ms-Icon--TFVCLogo:before {
     content: "ï‘"
 }
 
 .ms-Icon--ThisPC:before {
     content: "î±Ž"
 }
 
 .ms-Icon--ThreeQuarterCircle:before {
     content: "ï”ƒ"
 }
 
 [dir=ltr] .ms-Icon--ThumbnailView:before {
     content: "îž¶"
 }
 
 [dir=ltr] .ms-Icon--ThumbnailViewMirrored:before,
 [dir=rtl] .ms-Icon--ThumbnailView:before {
     content: "î©§"
 }
 
 [dir=rtl] .ms-Icon--ThumbnailViewMirrored:before {
     content: "îž¶"
 }
 
 .ms-Icon--Thunderstorms:before {
     content: "î§†"
 }
 
 .ms-Icon--Ticket:before {
     content: "î­”"
 }
 
 .ms-Icon--Tiles:before {
     content: "î²¥"
 }
 
 .ms-Icon--Tiles2:before {
     content: "î½¼"
 }
 
 .ms-Icon--Timeline:before {
     content: "î¶œ"
 }
 
 .ms-Icon--TimelineDelivery:before {
     content: "ïŠ«"
 }
 
 .ms-Icon--TimelineMatrixView:before {
     content: "ï¡"
 }
 
 .ms-Icon--TimelineProgress:before {
     content: "ïŠª"
 }
 
 .ms-Icon--Timer:before {
     content: "î¤ž"
 }
 
 .ms-Icon--ToDoLogoBottom:before {
     content: "ï’³"
 }
 
 .ms-Icon--ToDoLogoInverse:before {
     content: "ï’¼"
 }
 
 .ms-Icon--ToDoLogoTop:before {
     content: "ï’´"
 }
 
 .ms-Icon--ToggleBorder:before {
     content: "î°’"
 }
 
 .ms-Icon--ToggleFilled:before {
     content: "î°‘"
 }
 
 .ms-Icon--ToggleOff:before {
     content: "ï†Ÿ"
 }
 
 .ms-Icon--ToggleThumb:before {
     content: "î°”"
 }
 
 .ms-Icon--Touch:before {
     content: "î •"
 }
 
 .ms-Icon--TouchPointer:before {
     content: "îŸ‰"
 }
 
 .ms-Icon--Train:before {
     content: "îŸ€"
 }
 
 .ms-Icon--TrainSolid:before {
     content: "î­"
 }
 
 .ms-Icon--TransferCall:before {
     content: "î¶•"
 }
 
 .ms-Icon--TriangleDown12:before {
     content: "î»‘"
 }
 
 .ms-Icon--TriangleLeft12:before {
     content: "î»’"
 }
 
 .ms-Icon--TriangleRight12:before {
     content: "î»“"
 }
 
 .ms-Icon--TriangleSolid:before {
     content: "î¨ˆ"
 }
 
 .ms-Icon--TriangleSolidDown12:before {
     content: "î»"
 }
 
 .ms-Icon--TriangleSolidLeft12:before {
     content: "î»Ž"
 }
 
 .ms-Icon--TriangleSolidRight12:before {
     content: "î»"
 }
 
 .ms-Icon--TriangleSolidUp12:before {
     content: "î»Œ"
 }
 
 .ms-Icon--TriangleUp12:before {
     content: "î»"
 }
 
 .ms-Icon--TriggerApproval:before {
     content: "ïŽ²"
 }
 
 .ms-Icon--TriggerAuto:before {
     content: "ï‰Š"
 }
 
 .ms-Icon--TriggerUser:before {
     content: "ï‰‹"
 }
 
 .ms-Icon--TripleColumn:before {
     content: "ï‡•"
 }
 
 .ms-Icon--TripleColumnEdit:before {
     content: "ïŒ£"
 }
 
 .ms-Icon--Trophy:before {
     content: "î´¿"
 }
 
 .ms-Icon--Trophy2Solid:before {
     content: "ïŒ·"
 }
 
 .ms-Icon--TurnRight:before {
     content: "îŸ›"
 }
 
 .ms-Icon--TVMonitor:before {
     content: "îŸ´"
 }
 
 .ms-Icon--TVMonitorSelected:before {
     content: "î±·"
 }
 
 .ms-Icon--TypeScriptLanguage:before {
     content: "ï‹·"
 }
 
 .ms-Icon--Umbrella:before {
     content: "î°„"
 }
 
 .ms-Icon--Underline:before {
     content: "î£œ"
 }
 
 .ms-Icon--Undo:before {
     content: "îž§"
 }
 
 [dir=ltr] .ms-Icon--Uneditable:before {
     content: "î´"
 }
 
 [dir=ltr] .ms-Icon--UneditableMirrored:before,
 [dir=rtl] .ms-Icon--Uneditable:before {
     content: "ï’¹"
 }
 
 [dir=rtl] .ms-Icon--UneditableMirrored:before {
     content: "î´"
 }
 
 [dir=ltr] .ms-Icon--UneditableSolid12:before {
     content: "ï’·"
 }
 
 [dir=ltr] .ms-Icon--UneditableSolidMirrored12:before,
 [dir=rtl] .ms-Icon--UneditableSolid12:before {
     content: "ï’¸"
 }
 
 [dir=rtl] .ms-Icon--UneditableSolidMirrored12:before {
     content: "ï’·"
 }
 
 .ms-Icon--Unfavorite:before {
     content: "î£™"
 }
 
 .ms-Icon--UngroupObject:before {
     content: "ï“²"
 }
 
 .ms-Icon--Unknown:before {
     content: "î§Ž"
 }
 
 .ms-Icon--UnknownCall:before {
     content: "î¶—"
 }
 
 [dir=ltr] .ms-Icon--UnknownSolid:before {
     content: "ï‹¡"
 }
 
 [dir=ltr] .ms-Icon--UnknownMirroredSolid:before,
 [dir=rtl] .ms-Icon--UnknownSolid:before {
     content: "ï‹¢"
 }
 
 [dir=rtl] .ms-Icon--UnknownMirroredSolid:before {
     content: "ï‹¡"
 }
 
 .ms-Icon--Unlock:before {
     content: "îž…"
 }
 
 .ms-Icon--UnlockSolid:before {
     content: "ïŒ„"
 }
 
 .ms-Icon--Unpin:before {
     content: "îº"
 }
 
 .ms-Icon--Unsubscribe:before {
     content: "î¶ "
 }
 
 .ms-Icon--UnsyncFolder:before {
     content: "î£¶"
 }
 
 .ms-Icon--UnsyncOccurence:before {
     content: "ï’¤"
 }
 
 .ms-Icon--Up:before {
     content: "îŠ"
 }
 
 .ms-Icon--Upload:before {
     content: "î¢˜"
 }
 
 .ms-Icon--UserFollowed:before {
     content: "ï‰œ"
 }
 
 .ms-Icon--UserPause:before {
     content: "ïŠº"
 }
 
 .ms-Icon--UserSync:before {
     content: "ïŠ¹"
 }
 
 .ms-Icon--Vacation:before {
     content: "ï’Ÿ"
 }
 
 .ms-Icon--Variable:before {
     content: "ïŒ…"
 }
 
 .ms-Icon--VariableGroup:before {
     content: "ïŒ›"
 }
 
 .ms-Icon--VB:before {
     content: "ï‹²"
 }
 
 .ms-Icon--VennDiagram:before {
     content: "ï‰³"
 }
 
 .ms-Icon--VerticalDistributeCenter:before {
     content: "ï“º"
 }
 
 .ms-Icon--Video:before {
     content: "îœ”"
 }
 
 .ms-Icon--VideoOff:before {
     content: "ï’°"
 }
 
 .ms-Icon--VideoSearch:before {
     content: "ï“ª"
 }
 
 .ms-Icon--VideoSolid:before {
     content: "î¨Œ"
 }
 
 .ms-Icon--View:before {
     content: "î¢"
 }
 
 .ms-Icon--ViewAll:before {
     content: "î¢©"
 }
 
 .ms-Icon--ViewAll2:before {
     content: "î½–"
 }
 
 .ms-Icon--ViewDashboard:before {
     content: "ï‰†"
 }
 
 .ms-Icon--ViewList:before {
     content: "ï‰‡"
 }
 
 .ms-Icon--ViewListGroup:before {
     content: "ï‰ˆ"
 }
 
 .ms-Icon--ViewListTree:before {
     content: "ï‰‰"
 }
 
 .ms-Icon--VisioDiagram:before {
     content: "ïŠ "
 }
 
 .ms-Icon--VisioDocument:before {
     content: "ïŠ©"
 }
 
 .ms-Icon--VisioLogo:before {
     content: "ïŠ§"
 }
 
 .ms-Icon--VisioLogo16:before {
     content: "ïŽ£"
 }
 
 .ms-Icon--VisioLogoFill:before {
     content: "ïŠ¨"
 }
 
 .ms-Icon--VisioLogoFill16:before {
     content: "ïŽ¤"
 }
 
 .ms-Icon--VisioLogoInverse:before {
     content: "îµ½"
 }
 
 .ms-Icon--VisioLogoInverse16:before {
     content: "ïŽ¢"
 }
 
 .ms-Icon--VisualBasicLanguage:before {
     content: "ï‹±"
 }
 
 .ms-Icon--VisualsFolder:before {
     content: "ï” "
 }
 
 .ms-Icon--VisualsStore:before {
     content: "ï”¡"
 }
 
 .ms-Icon--VisualStudioLogo:before {
     content: "î°¢"
 }
 
 .ms-Icon--VoicemailForward:before {
     content: "î¶‡"
 }
 
 .ms-Icon--VoicemailIRM:before {
     content: "ï¡"
 }
 
 .ms-Icon--VoicemailReply:before {
     content: "î¶ˆ"
 }
 
 .ms-Icon--Volume0:before {
     content: "î¦’"
 }
 
 .ms-Icon--Volume1:before {
     content: "î¦“"
 }
 
 .ms-Icon--Volume2:before {
     content: "î¦”"
 }
 
 .ms-Icon--Volume3:before {
     content: "î¦•"
 }
 
 .ms-Icon--VolumeDisabled:before {
     content: "îª…"
 }
 
 .ms-Icon--VSTSAltLogo1:before {
     content: "ïŽ‚"
 }
 
 .ms-Icon--VSTSAltLogo2:before {
     content: "ïŽƒ"
 }
 
 .ms-Icon--VSTSLogo:before {
     content: "ïŽ"
 }
 
 .ms-Icon--Waffle:before {
     content: "î¶‰"
 }
 
 .ms-Icon--WaffleOffice365:before {
     content: "ï“ "
 }
 
 .ms-Icon--Warning:before {
     content: "îžº"
 }
 
 .ms-Icon--WebPublish:before {
     content: "ï”¯"
 }
 
 .ms-Icon--Website:before {
     content: "î­"
 }
 
 .ms-Icon--Weights:before {
     content: "î«›"
 }
 
 .ms-Icon--WifiEthernet:before {
     content: "î¹·"
 }
 
 .ms-Icon--WindDirection:before {
     content: "î¯¦"
 }
 
 .ms-Icon--WindowEdit:before {
     content: "ï”Ž"
 }
 
 .ms-Icon--WindowsLogo:before {
     content: "îž‚"
 }
 
 .ms-Icon--Wines:before {
     content: "îª¿"
 }
 
 .ms-Icon--WipePhone:before {
     content: "î¶"
 }
 
 .ms-Icon--WordDocument:before {
     content: "î½±"
 }
 
 .ms-Icon--WordLogo:before {
     content: "ï‡£"
 }
 
 .ms-Icon--WordLogo16:before {
     content: "ïŽ‘"
 }
 
 .ms-Icon--WordLogoFill:before {
     content: "ï‡¤"
 }
 
 .ms-Icon--WordLogoFill16:before {
     content: "ïŽ’"
 }
 
 .ms-Icon--WordLogoInverse:before {
     content: "î°©"
 }
 
 .ms-Icon--WordLogoInverse16:before {
     content: "ïŽ"
 }
 
 .ms-Icon--Work:before {
     content: "î ¡"
 }
 
 .ms-Icon--WorkFlow:before {
     content: "î¨"
 }
 
 .ms-Icon--WorkItem:before {
     content: "ïŒ”"
 }
 
 .ms-Icon--WorkItemBar:before {
     content: "ïœ"
 }
 
 .ms-Icon--WorkItemBarSolid:before {
     content: "ï"
 }
 
 .ms-Icon--WorkItemBug:before {
     content: "ïŒ•"
 }
 
 .ms-Icon--World:before {
     content: "î¤‰"
 }
 
 .ms-Icon--WorldClock:before {
     content: "î¤˜"
 }
 
 .ms-Icon--YammerLogo:before {
     content: "î´™"
 }
 
 .ms-Icon--ZipFolder:before {
     content: "ï€’"
 }
 
 .ms-Icon--Zoom:before {
     content: "îœž"
 }
 
 .ms-Icon--ZoomIn:before {
     content: "î¢£"
 }
 
 .ms-Icon--ZoomOut:before {
     content: "îœŸ"
 }
 
 .ms-Icon--StoreLogo:before {
     content: "îª–"
 }
 
 .ms-Icon--StoreLogoMed:before {
     content: "î¨„"
 }
 
 @media (max-width:479px) {
     .ms-hiddenLgDown,
     .ms-hiddenMdDown,
     .ms-hiddenSm,
     .ms-hiddenXlDown,
     .ms-hiddenXxlDown {
         display: none!important
     }
 }
 
 @media (min-width:480px) and (max-width:639px) {
     .ms-hiddenLgDown,
     .ms-hiddenMd,
     .ms-hiddenMdDown,
     .ms-hiddenMdUp,
     .ms-hiddenXlDown,
     .ms-hiddenXxlDown {
         display: none!important
     }
 }
 
 @media (min-width:640px) and (max-width:1023px) {
     .ms-hiddenLg,
     .ms-hiddenLgDown,
     .ms-hiddenLgUp,
     .ms-hiddenMdUp,
     .ms-hiddenXlDown,
     .ms-hiddenXxlDown {
         display: none!important
     }
 }
 
 @media (min-width:1024px) and (max-width:1365px) {
     .ms-hiddenLgUp,
     .ms-hiddenMdUp,
     .ms-hiddenXl,
     .ms-hiddenXlDown,
     .ms-hiddenXlUp,
     .ms-hiddenXxlDown {
         display: none!important
     }
 }
 
 @media (min-width:1366px) and (max-width:1919px) {
     .ms-hiddenLgUp,
     .ms-hiddenMdUp,
     .ms-hiddenXlUp,
     .ms-hiddenXxl,
     .ms-hiddenXxlDown,
     .ms-hiddenXxlUp {
         display: none!important
     }
 }
 
 @media (min-width:1920px) {
     .ms-hiddenLgUp,
     .ms-hiddenMdUp,
     .ms-hiddenXlUp,
     .ms-hiddenXxlUp,
     .ms-hiddenXxxl {
         display: none!important
     }
 }
 
 .ms-sm12 {
     width: 100%
 }
 
 .ms-sm11 {
     width: 91.66666666666666%
 }
 
 .ms-sm10 {
     width: 83.33333333333334%
 }
 
 .ms-sm9 {
     width: 75%
 }
 
 .ms-sm8 {
     width: 66.66666666666666%
 }
 
 .ms-sm7 {
     width: 58.333333333333336%
 }
 
 .ms-sm6 {
     width: 50%
 }
 
 .ms-sm5 {
     width: 41.66666666666667%
 }
 
 .ms-sm4 {
     width: 33.33333333333333%
 }
 
 .ms-sm3 {
     width: 25%
 }
 
 .ms-sm2 {
     width: 16.666666666666664%
 }
 
 .ms-sm1 {
     width: 8.333333333333332%
 }
 
 [dir=ltr] .ms-smPull12 {
     right: 100%
 }
 
 [dir=rtl] .ms-smPull12 {
     left: 100%
 }
 
 [dir=ltr] .ms-smPull11 {
     right: 91.66667%
 }
 
 [dir=rtl] .ms-smPull11 {
     left: 91.66667%
 }
 
 [dir=ltr] .ms-smPull10 {
     right: 83.33333%
 }
 
 [dir=rtl] .ms-smPull10 {
     left: 83.33333%
 }
 
 [dir=ltr] .ms-smPull9 {
     right: 75%
 }
 
 [dir=rtl] .ms-smPull9 {
     left: 75%
 }
 
 [dir=ltr] .ms-smPull8 {
     right: 66.66667%
 }
 
 [dir=rtl] .ms-smPull8 {
     left: 66.66667%
 }
 
 [dir=ltr] .ms-smPull7 {
     right: 58.33333%
 }
 
 [dir=rtl] .ms-smPull7 {
     left: 58.33333%
 }
 
 [dir=ltr] .ms-smPull6 {
     right: 50%
 }
 
 [dir=rtl] .ms-smPull6 {
     left: 50%
 }
 
 [dir=ltr] .ms-smPull5 {
     right: 41.66667%
 }
 
 [dir=rtl] .ms-smPull5 {
     left: 41.66667%
 }
 
 [dir=ltr] .ms-smPull4 {
     right: 33.33333%
 }
 
 [dir=rtl] .ms-smPull4 {
     left: 33.33333%
 }
 
 [dir=ltr] .ms-smPull3 {
     right: 25%
 }
 
 [dir=rtl] .ms-smPull3 {
     left: 25%
 }
 
 [dir=ltr] .ms-smPull2 {
     right: 16.66667%
 }
 
 [dir=rtl] .ms-smPull2 {
     left: 16.66667%
 }
 
 [dir=ltr] .ms-smPull1 {
     right: 8.33333%
 }
 
 [dir=rtl] .ms-smPull1 {
     left: 8.33333%
 }
 
 [dir=ltr] .ms-smPull0 {
     right: auto
 }
 
 [dir=rtl] .ms-smPull0 {
     left: auto
 }
 
 [dir=ltr] .ms-smPush12 {
     left: 100%
 }
 
 [dir=rtl] .ms-smPush12 {
     right: 100%
 }
 
 [dir=ltr] .ms-smPush11 {
     left: 91.66667%
 }
 
 [dir=rtl] .ms-smPush11 {
     right: 91.66667%
 }
 
 [dir=ltr] .ms-smPush10 {
     left: 83.33333%
 }
 
 [dir=rtl] .ms-smPush10 {
     right: 83.33333%
 }
 
 [dir=ltr] .ms-smPush9 {
     left: 75%
 }
 
 [dir=rtl] .ms-smPush9 {
     right: 75%
 }
 
 [dir=ltr] .ms-smPush8 {
     left: 66.66667%
 }
 
 [dir=rtl] .ms-smPush8 {
     right: 66.66667%
 }
 
 [dir=ltr] .ms-smPush7 {
     left: 58.33333%
 }
 
 [dir=rtl] .ms-smPush7 {
     right: 58.33333%
 }
 
 [dir=ltr] .ms-smPush6 {
     left: 50%
 }
 
 [dir=rtl] .ms-smPush6 {
     right: 50%
 }
 
 [dir=ltr] .ms-smPush5 {
     left: 41.66667%
 }
 
 [dir=rtl] .ms-smPush5 {
     right: 41.66667%
 }
 
 [dir=ltr] .ms-smPush4 {
     left: 33.33333%
 }
 
 [dir=rtl] .ms-smPush4 {
     right: 33.33333%
 }
 
 [dir=ltr] .ms-smPush3 {
     left: 25%
 }
 
 [dir=rtl] .ms-smPush3 {
     right: 25%
 }
 
 [dir=ltr] .ms-smPush2 {
     left: 16.66667%
 }
 
 [dir=rtl] .ms-smPush2 {
     right: 16.66667%
 }
 
 [dir=ltr] .ms-smPush1 {
     left: 8.33333%
 }
 
 [dir=rtl] .ms-smPush1 {
     right: 8.33333%
 }
 
 [dir=ltr] .ms-smPush0 {
     left: auto
 }
 
 [dir=rtl] .ms-smPush0 {
     right: auto
 }
 
 [dir=ltr] .ms-smOffset11 {
     margin-left: 91.66667%
 }
 
 [dir=rtl] .ms-smOffset11 {
     margin-right: 91.66667%
 }
 
 [dir=ltr] .ms-smOffset10 {
     margin-left: 83.33333%
 }
 
 [dir=rtl] .ms-smOffset10 {
     margin-right: 83.33333%
 }
 
 [dir=ltr] .ms-smOffset9 {
     margin-left: 75%
 }
 
 [dir=rtl] .ms-smOffset9 {
     margin-right: 75%
 }
 
 [dir=ltr] .ms-smOffset8 {
     margin-left: 66.66667%
 }
 
 [dir=rtl] .ms-smOffset8 {
     margin-right: 66.66667%
 }
 
 [dir=ltr] .ms-smOffset7 {
     margin-left: 58.33333%
 }
 
 [dir=rtl] .ms-smOffset7 {
     margin-right: 58.33333%
 }
 
 [dir=ltr] .ms-smOffset6 {
     margin-left: 50%
 }
 
 [dir=rtl] .ms-smOffset6 {
     margin-right: 50%
 }
 
 [dir=ltr] .ms-smOffset5 {
     margin-left: 41.66667%
 }
 
 [dir=rtl] .ms-smOffset5 {
     margin-right: 41.66667%
 }
 
 [dir=ltr] .ms-smOffset4 {
     margin-left: 33.33333%
 }
 
 [dir=rtl] .ms-smOffset4 {
     margin-right: 33.33333%
 }
 
 [dir=ltr] .ms-smOffset3 {
     margin-left: 25%
 }
 
 [dir=rtl] .ms-smOffset3 {
     margin-right: 25%
 }
 
 [dir=ltr] .ms-smOffset2 {
     margin-left: 16.66667%
 }
 
 [dir=rtl] .ms-smOffset2 {
     margin-right: 16.66667%
 }
 
 [dir=ltr] .ms-smOffset1 {
     margin-left: 8.33333%
 }
 
 [dir=rtl] .ms-smOffset1 {
     margin-right: 8.33333%
 }
 
 [dir=ltr] .ms-smOffset0 {
     margin-left: 0
 }
 
 [dir=rtl] .ms-smOffset0 {
     margin-right: 0
 }
 
 @media (min-width:480px) {
     .ms-md12 {
         width: 100%
     }
 }
 
 @media (min-width:480px) {
     .ms-md11 {
         width: 91.66666666666666%
     }
 }
 
 @media (min-width:480px) {
     .ms-md10 {
         width: 83.33333333333334%
     }
 }
 
 @media (min-width:480px) {
     .ms-md9 {
         width: 75%
     }
 }
 
 @media (min-width:480px) {
     .ms-md8 {
         width: 66.66666666666666%
     }
 }
 
 @media (min-width:480px) {
     .ms-md7 {
         width: 58.333333333333336%
     }
 }
 
 @media (min-width:480px) {
     .ms-md6 {
         width: 50%
     }
 }
 
 @media (min-width:480px) {
     .ms-md5 {
         width: 41.66666666666667%
     }
 }
 
 @media (min-width:480px) {
     .ms-md4 {
         width: 33.33333333333333%
     }
 }
 
 @media (min-width:480px) {
     .ms-md3 {
         width: 25%
     }
 }
 
 @media (min-width:480px) {
     .ms-md2 {
         width: 16.666666666666664%
     }
 }
 
 @media (min-width:480px) {
     .ms-md1 {
         width: 8.333333333333332%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPull12 {
         right: 100%
     }
     [dir=rtl] .ms-mdPull12 {
         left: 100%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPull11 {
         right: 91.66667%
     }
     [dir=rtl] .ms-mdPull11 {
         left: 91.66667%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPull10 {
         right: 83.33333%
     }
     [dir=rtl] .ms-mdPull10 {
         left: 83.33333%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPull9 {
         right: 75%
     }
     [dir=rtl] .ms-mdPull9 {
         left: 75%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPull8 {
         right: 66.66667%
     }
     [dir=rtl] .ms-mdPull8 {
         left: 66.66667%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPull7 {
         right: 58.33333%
     }
     [dir=rtl] .ms-mdPull7 {
         left: 58.33333%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPull6 {
         right: 50%
     }
     [dir=rtl] .ms-mdPull6 {
         left: 50%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPull5 {
         right: 41.66667%
     }
     [dir=rtl] .ms-mdPull5 {
         left: 41.66667%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPull4 {
         right: 33.33333%
     }
     [dir=rtl] .ms-mdPull4 {
         left: 33.33333%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPull3 {
         right: 25%
     }
     [dir=rtl] .ms-mdPull3 {
         left: 25%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPull2 {
         right: 16.66667%
     }
     [dir=rtl] .ms-mdPull2 {
         left: 16.66667%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPull1 {
         right: 8.33333%
     }
     [dir=rtl] .ms-mdPull1 {
         left: 8.33333%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPull0 {
         right: auto
     }
     [dir=rtl] .ms-mdPull0 {
         left: auto
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPush12 {
         left: 100%
     }
     [dir=rtl] .ms-mdPush12 {
         right: 100%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPush11 {
         left: 91.66667%
     }
     [dir=rtl] .ms-mdPush11 {
         right: 91.66667%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPush10 {
         left: 83.33333%
     }
     [dir=rtl] .ms-mdPush10 {
         right: 83.33333%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPush9 {
         left: 75%
     }
     [dir=rtl] .ms-mdPush9 {
         right: 75%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPush8 {
         left: 66.66667%
     }
     [dir=rtl] .ms-mdPush8 {
         right: 66.66667%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPush7 {
         left: 58.33333%
     }
     [dir=rtl] .ms-mdPush7 {
         right: 58.33333%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPush6 {
         left: 50%
     }
     [dir=rtl] .ms-mdPush6 {
         right: 50%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPush5 {
         left: 41.66667%
     }
     [dir=rtl] .ms-mdPush5 {
         right: 41.66667%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPush4 {
         left: 33.33333%
     }
     [dir=rtl] .ms-mdPush4 {
         right: 33.33333%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPush3 {
         left: 25%
     }
     [dir=rtl] .ms-mdPush3 {
         right: 25%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPush2 {
         left: 16.66667%
     }
     [dir=rtl] .ms-mdPush2 {
         right: 16.66667%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPush1 {
         left: 8.33333%
     }
     [dir=rtl] .ms-mdPush1 {
         right: 8.33333%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdPush0 {
         left: auto
     }
     [dir=rtl] .ms-mdPush0 {
         right: auto
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdOffset11 {
         margin-left: 91.66667%
     }
     [dir=rtl] .ms-mdOffset11 {
         margin-right: 91.66667%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdOffset10 {
         margin-left: 83.33333%
     }
     [dir=rtl] .ms-mdOffset10 {
         margin-right: 83.33333%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdOffset9 {
         margin-left: 75%
     }
     [dir=rtl] .ms-mdOffset9 {
         margin-right: 75%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdOffset8 {
         margin-left: 66.66667%
     }
     [dir=rtl] .ms-mdOffset8 {
         margin-right: 66.66667%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdOffset7 {
         margin-left: 58.33333%
     }
     [dir=rtl] .ms-mdOffset7 {
         margin-right: 58.33333%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdOffset6 {
         margin-left: 50%
     }
     [dir=rtl] .ms-mdOffset6 {
         margin-right: 50%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdOffset5 {
         margin-left: 41.66667%
     }
     [dir=rtl] .ms-mdOffset5 {
         margin-right: 41.66667%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdOffset4 {
         margin-left: 33.33333%
     }
     [dir=rtl] .ms-mdOffset4 {
         margin-right: 33.33333%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdOffset3 {
         margin-left: 25%
     }
     [dir=rtl] .ms-mdOffset3 {
         margin-right: 25%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdOffset2 {
         margin-left: 16.66667%
     }
     [dir=rtl] .ms-mdOffset2 {
         margin-right: 16.66667%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdOffset1 {
         margin-left: 8.33333%
     }
     [dir=rtl] .ms-mdOffset1 {
         margin-right: 8.33333%
     }
 }
 
 @media (min-width:480px) {
     [dir=ltr] .ms-mdOffset0 {
         margin-left: 0
     }
     [dir=rtl] .ms-mdOffset0 {
         margin-right: 0
     }
 }
 
 @media (min-width:640px) {
     .ms-lg12 {
         width: 100%
     }
 }
 
 @media (min-width:640px) {
     .ms-lg11 {
         width: 91.66666666666666%
     }
 }
 
 @media (min-width:640px) {
     .ms-lg10 {
         width: 83.33333333333334%
     }
 }
 
 @media (min-width:640px) {
     .ms-lg9 {
         width: 75%
     }
 }
 
 @media (min-width:640px) {
     .ms-lg8 {
         width: 66.66666666666666%
     }
 }
 
 @media (min-width:640px) {
     .ms-lg7 {
         width: 58.333333333333336%
     }
 }
 
 @media (min-width:640px) {
     .ms-lg6 {
         width: 50%
     }
 }
 
 @media (min-width:640px) {
     .ms-lg5 {
         width: 41.66666666666667%
     }
 }
 
 @media (min-width:640px) {
     .ms-lg4 {
         width: 33.33333333333333%
     }
 }
 
 @media (min-width:640px) {
     .ms-lg3 {
         width: 25%
     }
 }
 
 @media (min-width:640px) {
     .ms-lg2 {
         width: 16.666666666666664%
     }
 }
 
 @media (min-width:640px) {
     .ms-lg1 {
         width: 8.333333333333332%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPull12 {
         right: 100%
     }
     [dir=rtl] .ms-lgPull12 {
         left: 100%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPull11 {
         right: 91.66667%
     }
     [dir=rtl] .ms-lgPull11 {
         left: 91.66667%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPull10 {
         right: 83.33333%
     }
     [dir=rtl] .ms-lgPull10 {
         left: 83.33333%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPull9 {
         right: 75%
     }
     [dir=rtl] .ms-lgPull9 {
         left: 75%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPull8 {
         right: 66.66667%
     }
     [dir=rtl] .ms-lgPull8 {
         left: 66.66667%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPull7 {
         right: 58.33333%
     }
     [dir=rtl] .ms-lgPull7 {
         left: 58.33333%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPull6 {
         right: 50%
     }
     [dir=rtl] .ms-lgPull6 {
         left: 50%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPull5 {
         right: 41.66667%
     }
     [dir=rtl] .ms-lgPull5 {
         left: 41.66667%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPull4 {
         right: 33.33333%
     }
     [dir=rtl] .ms-lgPull4 {
         left: 33.33333%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPull3 {
         right: 25%
     }
     [dir=rtl] .ms-lgPull3 {
         left: 25%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPull2 {
         right: 16.66667%
     }
     [dir=rtl] .ms-lgPull2 {
         left: 16.66667%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPull1 {
         right: 8.33333%
     }
     [dir=rtl] .ms-lgPull1 {
         left: 8.33333%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPull0 {
         right: auto
     }
     [dir=rtl] .ms-lgPull0 {
         left: auto
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPush12 {
         left: 100%
     }
     [dir=rtl] .ms-lgPush12 {
         right: 100%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPush11 {
         left: 91.66667%
     }
     [dir=rtl] .ms-lgPush11 {
         right: 91.66667%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPush10 {
         left: 83.33333%
     }
     [dir=rtl] .ms-lgPush10 {
         right: 83.33333%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPush9 {
         left: 75%
     }
     [dir=rtl] .ms-lgPush9 {
         right: 75%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPush8 {
         left: 66.66667%
     }
     [dir=rtl] .ms-lgPush8 {
         right: 66.66667%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPush7 {
         left: 58.33333%
     }
     [dir=rtl] .ms-lgPush7 {
         right: 58.33333%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPush6 {
         left: 50%
     }
     [dir=rtl] .ms-lgPush6 {
         right: 50%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPush5 {
         left: 41.66667%
     }
     [dir=rtl] .ms-lgPush5 {
         right: 41.66667%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPush4 {
         left: 33.33333%
     }
     [dir=rtl] .ms-lgPush4 {
         right: 33.33333%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPush3 {
         left: 25%
     }
     [dir=rtl] .ms-lgPush3 {
         right: 25%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPush2 {
         left: 16.66667%
     }
     [dir=rtl] .ms-lgPush2 {
         right: 16.66667%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPush1 {
         left: 8.33333%
     }
     [dir=rtl] .ms-lgPush1 {
         right: 8.33333%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgPush0 {
         left: auto
     }
     [dir=rtl] .ms-lgPush0 {
         right: auto
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgOffset11 {
         margin-left: 91.66667%
     }
     [dir=rtl] .ms-lgOffset11 {
         margin-right: 91.66667%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgOffset10 {
         margin-left: 83.33333%
     }
     [dir=rtl] .ms-lgOffset10 {
         margin-right: 83.33333%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgOffset9 {
         margin-left: 75%
     }
     [dir=rtl] .ms-lgOffset9 {
         margin-right: 75%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgOffset8 {
         margin-left: 66.66667%
     }
     [dir=rtl] .ms-lgOffset8 {
         margin-right: 66.66667%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgOffset7 {
         margin-left: 58.33333%
     }
     [dir=rtl] .ms-lgOffset7 {
         margin-right: 58.33333%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgOffset6 {
         margin-left: 50%
     }
     [dir=rtl] .ms-lgOffset6 {
         margin-right: 50%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgOffset5 {
         margin-left: 41.66667%
     }
     [dir=rtl] .ms-lgOffset5 {
         margin-right: 41.66667%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgOffset4 {
         margin-left: 33.33333%
     }
     [dir=rtl] .ms-lgOffset4 {
         margin-right: 33.33333%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgOffset3 {
         margin-left: 25%
     }
     [dir=rtl] .ms-lgOffset3 {
         margin-right: 25%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgOffset2 {
         margin-left: 16.66667%
     }
     [dir=rtl] .ms-lgOffset2 {
         margin-right: 16.66667%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgOffset1 {
         margin-left: 8.33333%
     }
     [dir=rtl] .ms-lgOffset1 {
         margin-right: 8.33333%
     }
 }
 
 @media (min-width:640px) {
     [dir=ltr] .ms-lgOffset0 {
         margin-left: 0
     }
     [dir=rtl] .ms-lgOffset0 {
         margin-right: 0
     }
 }
 
 @media (min-width:1024px) {
     .ms-xl12 {
         width: 100%
     }
 }
 
 @media (min-width:1024px) {
     .ms-xl11 {
         width: 91.66666666666666%
     }
 }
 
 @media (min-width:1024px) {
     .ms-xl10 {
         width: 83.33333333333334%
     }
 }
 
 @media (min-width:1024px) {
     .ms-xl9 {
         width: 75%
     }
 }
 
 @media (min-width:1024px) {
     .ms-xl8 {
         width: 66.66666666666666%
     }
 }
 
 @media (min-width:1024px) {
     .ms-xl7 {
         width: 58.333333333333336%
     }
 }
 
 @media (min-width:1024px) {
     .ms-xl6 {
         width: 50%
     }
 }
 
 @media (min-width:1024px) {
     .ms-xl5 {
         width: 41.66666666666667%
     }
 }
 
 @media (min-width:1024px) {
     .ms-xl4 {
         width: 33.33333333333333%
     }
 }
 
 @media (min-width:1024px) {
     .ms-xl3 {
         width: 25%
     }
 }
 
 @media (min-width:1024px) {
     .ms-xl2 {
         width: 16.666666666666664%
     }
 }
 
 @media (min-width:1024px) {
     .ms-xl1 {
         width: 8.333333333333332%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPull12 {
         right: 100%
     }
     [dir=rtl] .ms-xlPull12 {
         left: 100%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPull11 {
         right: 91.66667%
     }
     [dir=rtl] .ms-xlPull11 {
         left: 91.66667%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPull10 {
         right: 83.33333%
     }
     [dir=rtl] .ms-xlPull10 {
         left: 83.33333%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPull9 {
         right: 75%
     }
     [dir=rtl] .ms-xlPull9 {
         left: 75%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPull8 {
         right: 66.66667%
     }
     [dir=rtl] .ms-xlPull8 {
         left: 66.66667%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPull7 {
         right: 58.33333%
     }
     [dir=rtl] .ms-xlPull7 {
         left: 58.33333%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPull6 {
         right: 50%
     }
     [dir=rtl] .ms-xlPull6 {
         left: 50%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPull5 {
         right: 41.66667%
     }
     [dir=rtl] .ms-xlPull5 {
         left: 41.66667%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPull4 {
         right: 33.33333%
     }
     [dir=rtl] .ms-xlPull4 {
         left: 33.33333%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPull3 {
         right: 25%
     }
     [dir=rtl] .ms-xlPull3 {
         left: 25%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPull2 {
         right: 16.66667%
     }
     [dir=rtl] .ms-xlPull2 {
         left: 16.66667%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPull1 {
         right: 8.33333%
     }
     [dir=rtl] .ms-xlPull1 {
         left: 8.33333%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPull0 {
         right: auto
     }
     [dir=rtl] .ms-xlPull0 {
         left: auto
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPush12 {
         left: 100%
     }
     [dir=rtl] .ms-xlPush12 {
         right: 100%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPush11 {
         left: 91.66667%
     }
     [dir=rtl] .ms-xlPush11 {
         right: 91.66667%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPush10 {
         left: 83.33333%
     }
     [dir=rtl] .ms-xlPush10 {
         right: 83.33333%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPush9 {
         left: 75%
     }
     [dir=rtl] .ms-xlPush9 {
         right: 75%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPush8 {
         left: 66.66667%
     }
     [dir=rtl] .ms-xlPush8 {
         right: 66.66667%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPush7 {
         left: 58.33333%
     }
     [dir=rtl] .ms-xlPush7 {
         right: 58.33333%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPush6 {
         left: 50%
     }
     [dir=rtl] .ms-xlPush6 {
         right: 50%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPush5 {
         left: 41.66667%
     }
     [dir=rtl] .ms-xlPush5 {
         right: 41.66667%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPush4 {
         left: 33.33333%
     }
     [dir=rtl] .ms-xlPush4 {
         right: 33.33333%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPush3 {
         left: 25%
     }
     [dir=rtl] .ms-xlPush3 {
         right: 25%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPush2 {
         left: 16.66667%
     }
     [dir=rtl] .ms-xlPush2 {
         right: 16.66667%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPush1 {
         left: 8.33333%
     }
     [dir=rtl] .ms-xlPush1 {
         right: 8.33333%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlPush0 {
         left: auto
     }
     [dir=rtl] .ms-xlPush0 {
         right: auto
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlOffset11 {
         margin-left: 91.66667%
     }
     [dir=rtl] .ms-xlOffset11 {
         margin-right: 91.66667%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlOffset10 {
         margin-left: 83.33333%
     }
     [dir=rtl] .ms-xlOffset10 {
         margin-right: 83.33333%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlOffset9 {
         margin-left: 75%
     }
     [dir=rtl] .ms-xlOffset9 {
         margin-right: 75%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlOffset8 {
         margin-left: 66.66667%
     }
     [dir=rtl] .ms-xlOffset8 {
         margin-right: 66.66667%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlOffset7 {
         margin-left: 58.33333%
     }
     [dir=rtl] .ms-xlOffset7 {
         margin-right: 58.33333%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlOffset6 {
         margin-left: 50%
     }
     [dir=rtl] .ms-xlOffset6 {
         margin-right: 50%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlOffset5 {
         margin-left: 41.66667%
     }
     [dir=rtl] .ms-xlOffset5 {
         margin-right: 41.66667%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlOffset4 {
         margin-left: 33.33333%
     }
     [dir=rtl] .ms-xlOffset4 {
         margin-right: 33.33333%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlOffset3 {
         margin-left: 25%
     }
     [dir=rtl] .ms-xlOffset3 {
         margin-right: 25%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlOffset2 {
         margin-left: 16.66667%
     }
     [dir=rtl] .ms-xlOffset2 {
         margin-right: 16.66667%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlOffset1 {
         margin-left: 8.33333%
     }
     [dir=rtl] .ms-xlOffset1 {
         margin-right: 8.33333%
     }
 }
 
 @media (min-width:1024px) {
     [dir=ltr] .ms-xlOffset0 {
         margin-left: 0
     }
     [dir=rtl] .ms-xlOffset0 {
         margin-right: 0
     }
 }
 
 @media (min-width:1366px) {
     .ms-xxl12 {
         width: 100%
     }
 }
 
 @media (min-width:1366px) {
     .ms-xxl11 {
         width: 91.66666666666666%
     }
 }
 
 @media (min-width:1366px) {
     .ms-xxl10 {
         width: 83.33333333333334%
     }
 }
 
 @media (min-width:1366px) {
     .ms-xxl9 {
         width: 75%
     }
 }
 
 @media (min-width:1366px) {
     .ms-xxl8 {
         width: 66.66666666666666%
     }
 }
 
 @media (min-width:1366px) {
     .ms-xxl7 {
         width: 58.333333333333336%
     }
 }
 
 @media (min-width:1366px) {
     .ms-xxl6 {
         width: 50%
     }
 }
 
 @media (min-width:1366px) {
     .ms-xxl5 {
         width: 41.66666666666667%
     }
 }
 
 @media (min-width:1366px) {
     .ms-xxl4 {
         width: 33.33333333333333%
     }
 }
 
 @media (min-width:1366px) {
     .ms-xxl3 {
         width: 25%
     }
 }
 
 @media (min-width:1366px) {
     .ms-xxl2 {
         width: 16.666666666666664%
     }
 }
 
 @media (min-width:1366px) {
     .ms-xxl1 {
         width: 8.333333333333332%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPull12 {
         right: 100%
     }
     [dir=rtl] .ms-xxlPull12 {
         left: 100%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPull11 {
         right: 91.66667%
     }
     [dir=rtl] .ms-xxlPull11 {
         left: 91.66667%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPull10 {
         right: 83.33333%
     }
     [dir=rtl] .ms-xxlPull10 {
         left: 83.33333%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPull9 {
         right: 75%
     }
     [dir=rtl] .ms-xxlPull9 {
         left: 75%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPull8 {
         right: 66.66667%
     }
     [dir=rtl] .ms-xxlPull8 {
         left: 66.66667%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPull7 {
         right: 58.33333%
     }
     [dir=rtl] .ms-xxlPull7 {
         left: 58.33333%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPull6 {
         right: 50%
     }
     [dir=rtl] .ms-xxlPull6 {
         left: 50%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPull5 {
         right: 41.66667%
     }
     [dir=rtl] .ms-xxlPull5 {
         left: 41.66667%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPull4 {
         right: 33.33333%
     }
     [dir=rtl] .ms-xxlPull4 {
         left: 33.33333%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPull3 {
         right: 25%
     }
     [dir=rtl] .ms-xxlPull3 {
         left: 25%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPull2 {
         right: 16.66667%
     }
     [dir=rtl] .ms-xxlPull2 {
         left: 16.66667%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPull1 {
         right: 8.33333%
     }
     [dir=rtl] .ms-xxlPull1 {
         left: 8.33333%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPull0 {
         right: auto
     }
     [dir=rtl] .ms-xxlPull0 {
         left: auto
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPush12 {
         left: 100%
     }
     [dir=rtl] .ms-xxlPush12 {
         right: 100%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPush11 {
         left: 91.66667%
     }
     [dir=rtl] .ms-xxlPush11 {
         right: 91.66667%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPush10 {
         left: 83.33333%
     }
     [dir=rtl] .ms-xxlPush10 {
         right: 83.33333%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPush9 {
         left: 75%
     }
     [dir=rtl] .ms-xxlPush9 {
         right: 75%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPush8 {
         left: 66.66667%
     }
     [dir=rtl] .ms-xxlPush8 {
         right: 66.66667%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPush7 {
         left: 58.33333%
     }
     [dir=rtl] .ms-xxlPush7 {
         right: 58.33333%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPush6 {
         left: 50%
     }
     [dir=rtl] .ms-xxlPush6 {
         right: 50%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPush5 {
         left: 41.66667%
     }
     [dir=rtl] .ms-xxlPush5 {
         right: 41.66667%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPush4 {
         left: 33.33333%
     }
     [dir=rtl] .ms-xxlPush4 {
         right: 33.33333%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPush3 {
         left: 25%
     }
     [dir=rtl] .ms-xxlPush3 {
         right: 25%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPush2 {
         left: 16.66667%
     }
     [dir=rtl] .ms-xxlPush2 {
         right: 16.66667%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPush1 {
         left: 8.33333%
     }
     [dir=rtl] .ms-xxlPush1 {
         right: 8.33333%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlPush0 {
         left: auto
     }
     [dir=rtl] .ms-xxlPush0 {
         right: auto
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlOffset11 {
         margin-left: 91.66667%
     }
     [dir=rtl] .ms-xxlOffset11 {
         margin-right: 91.66667%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlOffset10 {
         margin-left: 83.33333%
     }
     [dir=rtl] .ms-xxlOffset10 {
         margin-right: 83.33333%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlOffset9 {
         margin-left: 75%
     }
     [dir=rtl] .ms-xxlOffset9 {
         margin-right: 75%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlOffset8 {
         margin-left: 66.66667%
     }
     [dir=rtl] .ms-xxlOffset8 {
         margin-right: 66.66667%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlOffset7 {
         margin-left: 58.33333%
     }
     [dir=rtl] .ms-xxlOffset7 {
         margin-right: 58.33333%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlOffset6 {
         margin-left: 50%
     }
     [dir=rtl] .ms-xxlOffset6 {
         margin-right: 50%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlOffset5 {
         margin-left: 41.66667%
     }
     [dir=rtl] .ms-xxlOffset5 {
         margin-right: 41.66667%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlOffset4 {
         margin-left: 33.33333%
     }
     [dir=rtl] .ms-xxlOffset4 {
         margin-right: 33.33333%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlOffset3 {
         margin-left: 25%
     }
     [dir=rtl] .ms-xxlOffset3 {
         margin-right: 25%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlOffset2 {
         margin-left: 16.66667%
     }
     [dir=rtl] .ms-xxlOffset2 {
         margin-right: 16.66667%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlOffset1 {
         margin-left: 8.33333%
     }
     [dir=rtl] .ms-xxlOffset1 {
         margin-right: 8.33333%
     }
 }
 
 @media (min-width:1366px) {
     [dir=ltr] .ms-xxlOffset0 {
         margin-left: 0
     }
     [dir=rtl] .ms-xxlOffset0 {
         margin-right: 0
     }
 }
 
 @media (min-width:1920px) {
     .ms-xxxl12 {
         width: 100%
     }
 }
 
 @media (min-width:1920px) {
     .ms-xxxl11 {
         width: 91.66666666666666%
     }
 }
 
 @media (min-width:1920px) {
     .ms-xxxl10 {
         width: 83.33333333333334%
     }
 }
 
 @media (min-width:1920px) {
     .ms-xxxl9 {
         width: 75%
     }
 }
 
 @media (min-width:1920px) {
     .ms-xxxl8 {
         width: 66.66666666666666%
     }
 }
 
 @media (min-width:1920px) {
     .ms-xxxl7 {
         width: 58.333333333333336%
     }
 }
 
 @media (min-width:1920px) {
     .ms-xxxl6 {
         width: 50%
     }
 }
 
 @media (min-width:1920px) {
     .ms-xxxl5 {
         width: 41.66666666666667%
     }
 }
 
 @media (min-width:1920px) {
     .ms-xxxl4 {
         width: 33.33333333333333%
     }
 }
 
 @media (min-width:1920px) {
     .ms-xxxl3 {
         width: 25%
     }
 }
 
 @media (min-width:1920px) {
     .ms-xxxl2 {
         width: 16.666666666666664%
     }
 }
 
 @media (min-width:1920px) {
     .ms-xxxl1 {
         width: 8.333333333333332%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPull12 {
         right: 100%
     }
     [dir=rtl] .ms-xxxlPull12 {
         left: 100%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPull11 {
         right: 91.66667%
     }
     [dir=rtl] .ms-xxxlPull11 {
         left: 91.66667%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPull10 {
         right: 83.33333%
     }
     [dir=rtl] .ms-xxxlPull10 {
         left: 83.33333%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPull9 {
         right: 75%
     }
     [dir=rtl] .ms-xxxlPull9 {
         left: 75%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPull8 {
         right: 66.66667%
     }
     [dir=rtl] .ms-xxxlPull8 {
         left: 66.66667%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPull7 {
         right: 58.33333%
     }
     [dir=rtl] .ms-xxxlPull7 {
         left: 58.33333%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPull6 {
         right: 50%
     }
     [dir=rtl] .ms-xxxlPull6 {
         left: 50%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPull5 {
         right: 41.66667%
     }
     [dir=rtl] .ms-xxxlPull5 {
         left: 41.66667%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPull4 {
         right: 33.33333%
     }
     [dir=rtl] .ms-xxxlPull4 {
         left: 33.33333%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPull3 {
         right: 25%
     }
     [dir=rtl] .ms-xxxlPull3 {
         left: 25%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPull2 {
         right: 16.66667%
     }
     [dir=rtl] .ms-xxxlPull2 {
         left: 16.66667%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPull1 {
         right: 8.33333%
     }
     [dir=rtl] .ms-xxxlPull1 {
         left: 8.33333%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPull0 {
         right: auto
     }
     [dir=rtl] .ms-xxxlPull0 {
         left: auto
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPush12 {
         left: 100%
     }
     [dir=rtl] .ms-xxxlPush12 {
         right: 100%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPush11 {
         left: 91.66667%
     }
     [dir=rtl] .ms-xxxlPush11 {
         right: 91.66667%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPush10 {
         left: 83.33333%
     }
     [dir=rtl] .ms-xxxlPush10 {
         right: 83.33333%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPush9 {
         left: 75%
     }
     [dir=rtl] .ms-xxxlPush9 {
         right: 75%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPush8 {
         left: 66.66667%
     }
     [dir=rtl] .ms-xxxlPush8 {
         right: 66.66667%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPush7 {
         left: 58.33333%
     }
     [dir=rtl] .ms-xxxlPush7 {
         right: 58.33333%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPush6 {
         left: 50%
     }
     [dir=rtl] .ms-xxxlPush6 {
         right: 50%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPush5 {
         left: 41.66667%
     }
     [dir=rtl] .ms-xxxlPush5 {
         right: 41.66667%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPush4 {
         left: 33.33333%
     }
     [dir=rtl] .ms-xxxlPush4 {
         right: 33.33333%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPush3 {
         left: 25%
     }
     [dir=rtl] .ms-xxxlPush3 {
         right: 25%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPush2 {
         left: 16.66667%
     }
     [dir=rtl] .ms-xxxlPush2 {
         right: 16.66667%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPush1 {
         left: 8.33333%
     }
     [dir=rtl] .ms-xxxlPush1 {
         right: 8.33333%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlPush0 {
         left: auto
     }
     [dir=rtl] .ms-xxxlPush0 {
         right: auto
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlOffset11 {
         margin-left: 91.66667%
     }
     [dir=rtl] .ms-xxxlOffset11 {
         margin-right: 91.66667%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlOffset10 {
         margin-left: 83.33333%
     }
     [dir=rtl] .ms-xxxlOffset10 {
         margin-right: 83.33333%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlOffset9 {
         margin-left: 75%
     }
     [dir=rtl] .ms-xxxlOffset9 {
         margin-right: 75%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlOffset8 {
         margin-left: 66.66667%
     }
     [dir=rtl] .ms-xxxlOffset8 {
         margin-right: 66.66667%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlOffset7 {
         margin-left: 58.33333%
     }
     [dir=rtl] .ms-xxxlOffset7 {
         margin-right: 58.33333%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlOffset6 {
         margin-left: 50%
     }
     [dir=rtl] .ms-xxxlOffset6 {
         margin-right: 50%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlOffset5 {
         margin-left: 41.66667%
     }
     [dir=rtl] .ms-xxxlOffset5 {
         margin-right: 41.66667%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlOffset4 {
         margin-left: 33.33333%
     }
     [dir=rtl] .ms-xxxlOffset4 {
         margin-right: 33.33333%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlOffset3 {
         margin-left: 25%
     }
     [dir=rtl] .ms-xxxlOffset3 {
         margin-right: 25%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlOffset2 {
         margin-left: 16.66667%
     }
     [dir=rtl] .ms-xxxlOffset2 {
         margin-right: 16.66667%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlOffset1 {
         margin-left: 8.33333%
     }
     [dir=rtl] .ms-xxxlOffset1 {
         margin-right: 8.33333%
     }
 }
 
 @media (min-width:1920px) {
     [dir=ltr] .ms-xxxlOffset0 {
         margin-left: 0
     }
     [dir=rtl] .ms-xxxlOffset0 {
         margin-right: 0
     }
 }
 
 .ms-borderBox,
 .ms-borderBox:after,
 .ms-borderBox:before {
     box-sizing: border-box
 }
 
 .ms-borderBase {
     border: 1px solid
 }
 
 .ms-clearfix {
     *zoom: 1
 }
 
 .ms-clearfix:after,
 .ms-clearfix:before {
     display: table;
     content: "";
     line-height: 0
 }
 
 .ms-clearfix:after {
     clear: both
 }
 
 .ms-normalize {
     box-sizing: border-box;
     box-shadow: none;
     margin: 0;
     padding: 0
 }
 
 [dir=ltr] .ms-textAlignLeft {
     text-align: left
 }
 
 [dir=ltr] .ms-textAlignRight,
 [dir=rtl] .ms-textAlignLeft {
     text-align: right
 }
 
 [dir=rtl] .ms-textAlignRight {
     text-align: left
 }
 
 .ms-textAlignCenter {
     text-align: center
 }
 
 .ms-screenReaderOnly {
     position: absolute;
     width: 1px;
     height: 1px;
     padding: 0;
     margin: -1px;
     overflow: hidden;
     clip: rect(0, 0, 0, 0);
     border: 0
 }
 
 .ms-textTruncate {
     overflow: hidden;
     text-overflow: ellipsis;
     word-wrap: normal
 }
 
 .ms-noWrap,
 .ms-textTruncate {
     white-space: nowrap
 }
 
 .ms-Fabric {
     -moz-osx-font-smoothing: grayscale;
     -webkit-font-smoothing: antialiased;
     color: #333;
     font-family: "Segoe UI Web (West European)", Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif;
     font-size: 14px
 }
 
 .ms-Fabric button,
 .ms-Fabric input,
 .ms-Fabric textarea {
     font-family: inherit
 }
 
 .ms-Fabric[lang^=ar],
 .ms-Fabric [lang^=ar],
 [lang^=ar] .ms-Fabric {
     font-family: Segoe UI Web\ (Arabic), Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=bg],
 .ms-Fabric [lang^=bg],
 [lang^=bg] .ms-Fabric {
     font-family: Segoe UI Web\ (Cyrillic), Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=cs],
 .ms-Fabric [lang^=cs],
 [lang^=cs] .ms-Fabric {
     font-family: "Segoe UI Web (East European)", Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=el],
 .ms-Fabric [lang^=el],
 [lang^=el] .ms-Fabric {
     font-family: Segoe UI Web\ (Greek), Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=et],
 .ms-Fabric [lang^=et],
 [lang^=et] .ms-Fabric {
     font-family: "Segoe UI Web (East European)", Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=he],
 .ms-Fabric [lang^=he],
 [lang^=he] .ms-Fabric {
     font-family: Segoe UI Web\ (Hebrew), Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=hi],
 .ms-Fabric [lang^=hi],
 [lang^=hi] .ms-Fabric {
     font-family: Nirmala UI, Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=hr],
 .ms-Fabric [lang^=hr],
 .ms-Fabric[lang^=hu],
 .ms-Fabric [lang^=hu],
 [lang^=hr] .ms-Fabric,
 [lang^=hu] .ms-Fabric {
     font-family: "Segoe UI Web (East European)", Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=ja],
 .ms-Fabric [lang^=ja],
 [lang^=ja] .ms-Fabric {
     font-family: Yu Gothic, Meiryo UI, Meiryo, MS Pgothic, Osaka, Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=kk],
 .ms-Fabric [lang^=kk],
 [lang^=kk] .ms-Fabric {
     font-family: "Segoe UI Web (East European)", Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=ko],
 .ms-Fabric [lang^=ko],
 [lang^=ko] .ms-Fabric {
     font-family: Malgun Gothic, Gulim, Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=lo],
 .ms-Fabric [lang^=lo],
 [lang^=lo] .ms-Fabric {
     font-family: Leelawadee UI Web, Lao UI, DokChampa, Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=lt],
 .ms-Fabric [lang^=lt],
 .ms-Fabric[lang^=lv],
 .ms-Fabric [lang^=lv],
 .ms-Fabric[lang^=pl],
 .ms-Fabric [lang^=pl],
 [lang^=lt] .ms-Fabric,
 [lang^=lv] .ms-Fabric,
 [lang^=pl] .ms-Fabric {
     font-family: "Segoe UI Web (East European)", Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=ru],
 .ms-Fabric [lang^=ru],
 [lang^=ru] .ms-Fabric {
     font-family: Segoe UI Web\ (Cyrillic), Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=sk],
 .ms-Fabric [lang^=sk],
 .ms-Fabric[lang^=sr-latn],
 .ms-Fabric [lang^=sr-latn],
 [lang^=sk] .ms-Fabric,
 [lang^=sr-latn] .ms-Fabric {
     font-family: "Segoe UI Web (East European)", Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=th],
 .ms-Fabric [lang^=th],
 [lang^=th] .ms-Fabric {
     font-family: Leelawadee UI Web, Kmer UI, Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=tr],
 .ms-Fabric [lang^=tr],
 [lang^=tr] .ms-Fabric {
     font-family: "Segoe UI Web (East European)", Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=uk],
 .ms-Fabric [lang^=uk],
 [lang^=uk] .ms-Fabric {
     font-family: Segoe UI Web\ (Cyrillic), Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=vi],
 .ms-Fabric [lang^=vi],
 [lang^=vi] .ms-Fabric {
     font-family: Segoe UI Web\ (Vietnamese), Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=zh-hans],
 .ms-Fabric [lang^=zh-hans],
 [lang^=zh-hans] .ms-Fabric {
     font-family: Microsoft Yahei, Verdana, Simsun, Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric[lang^=zh-hant],
 .ms-Fabric [lang^=zh-hant],
 [lang^=zh-hant] .ms-Fabric {
     font-family: Microsoft Jhenghei, Pmingliu, Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }
 
 .ms-Fabric--selawik {
     font-family: Selawik Web, Segoe UI, -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif
 }