
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_c61f80fe594e7754f422aacd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_82665d52c0a09209a3b69b8e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2fd51434c91457ca0c1c14d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_115c2efcefcc94520fc2ab1b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.200900;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7a68b88d165dd63ff330952a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.165000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.247818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247818,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248159,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248415,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248763,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248828,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249103,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249174,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249658,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249756,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249924,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250613,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250677,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250695,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250771,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250829,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250910,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251179,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.251391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251391,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251823,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251930,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.252260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252260,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-3.000000px;}
.ls9{letter-spacing:-0.420000px;}
.ls21{letter-spacing:-0.408000px;}
.ls11{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.357000px;}
.ls15{letter-spacing:-0.300000px;}
.ls24{letter-spacing:-0.255000px;}
.ls7{letter-spacing:-0.240000px;}
.ls5{letter-spacing:-0.180000px;}
.ls23{letter-spacing:-0.153000px;}
.ls6{letter-spacing:-0.120000px;}
.ls20{letter-spacing:-0.102000px;}
.ls8{letter-spacing:-0.060000px;}
.ls25{letter-spacing:-0.051000px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.153000px;}
.ls1{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.240000px;}
.ls1a{letter-spacing:0.255000px;}
.lsc{letter-spacing:0.300000px;}
.ls1e{letter-spacing:0.306000px;}
.lsf{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.420000px;}
.ls1f{letter-spacing:0.433500px;}
.lsb{letter-spacing:0.480000px;}
.ls14{letter-spacing:0.540000px;}
.ls1c{letter-spacing:0.561000px;}
.ls13{letter-spacing:0.600000px;}
.ls1b{letter-spacing:0.612000px;}
.ls17{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.810000px;}
.lsd{letter-spacing:0.900000px;}
.ls12{letter-spacing:1.080000px;}
.lsa{letter-spacing:1.350000px;}
.ls19{letter-spacing:3.687023px;}
.ls1d{letter-spacing:4.478317px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws39{word-spacing:-13.878000px;}
.ws22{word-spacing:-12.600000px;}
.ws0{word-spacing:-11.880000px;}
.ws23{word-spacing:-11.700000px;}
.ws48{word-spacing:-11.640000px;}
.ws3a{word-spacing:-11.580000px;}
.ws1{word-spacing:-11.460000px;}
.ws67{word-spacing:-11.322000px;}
.ws69{word-spacing:-11.016000px;}
.ws5e{word-spacing:-10.863000px;}
.ws65{word-spacing:-10.608000px;}
.ws62{word-spacing:-10.302000px;}
.ws56{word-spacing:-10.098000px;}
.ws57{word-spacing:-9.945000px;}
.ws15{word-spacing:-3.000000px;}
.ws55{word-spacing:-2.820000px;}
.ws14{word-spacing:-2.640000px;}
.wse{word-spacing:-2.580000px;}
.wsb{word-spacing:-2.520000px;}
.wsa{word-spacing:-2.400000px;}
.ws63{word-spacing:-2.397000px;}
.ws34{word-spacing:-2.340000px;}
.ws10{word-spacing:-2.220000px;}
.ws61{word-spacing:-2.142000px;}
.ws45{word-spacing:-2.100000px;}
.ws3d{word-spacing:-2.040000px;}
.ws5c{word-spacing:-1.989000px;}
.ws16{word-spacing:-1.980000px;}
.ws31{word-spacing:-1.800000px;}
.ws3b{word-spacing:-1.740000px;}
.ws37{word-spacing:-1.620000px;}
.ws2f{word-spacing:-1.560000px;}
.ws6c{word-spacing:-1.479000px;}
.wsf{word-spacing:-1.440000px;}
.ws17{word-spacing:-1.380000px;}
.ws6b{word-spacing:-1.377000px;}
.ws24{word-spacing:-1.350000px;}
.ws12{word-spacing:-1.320000px;}
.ws13{word-spacing:-1.200000px;}
.ws11{word-spacing:-1.140000px;}
.ws4{word-spacing:-1.020000px;}
.ws5{word-spacing:-0.960000px;}
.ws42{word-spacing:-0.900000px;}
.ws1a{word-spacing:-0.840000px;}
.ws58{word-spacing:-0.780000px;}
.ws7{word-spacing:-0.720000px;}
.ws25{word-spacing:-0.540000px;}
.ws38{word-spacing:-0.480000px;}
.ws5a{word-spacing:-0.306000px;}
.ws36{word-spacing:-0.240000px;}
.ws35{word-spacing:-0.180000px;}
.ws4b{word-spacing:-0.120000px;}
.ws3c{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws50{word-spacing:0.060000px;}
.ws5d{word-spacing:0.102000px;}
.ws8{word-spacing:0.120000px;}
.ws9{word-spacing:0.180000px;}
.ws2e{word-spacing:0.360000px;}
.ws30{word-spacing:0.420000px;}
.ws2c{word-spacing:0.480000px;}
.ws66{word-spacing:0.561000px;}
.ws29{word-spacing:0.720000px;}
.ws18{word-spacing:0.780000px;}
.ws19{word-spacing:0.840000px;}
.ws49{word-spacing:0.900000px;}
.ws3f{word-spacing:1.020000px;}
.ws5b{word-spacing:1.173000px;}
.ws4f{word-spacing:1.200000px;}
.ws64{word-spacing:1.377000px;}
.ws26{word-spacing:1.440000px;}
.ws1e{word-spacing:1.500000px;}
.ws1c{word-spacing:1.560000px;}
.ws59{word-spacing:1.860000px;}
.ws40{word-spacing:1.920000px;}
.wsc{word-spacing:1.980000px;}
.ws27{word-spacing:2.040000px;}
.wsd{word-spacing:2.160000px;}
.ws4e{word-spacing:2.220000px;}
.ws2d{word-spacing:2.340000px;}
.ws53{word-spacing:2.400000px;}
.ws41{word-spacing:2.520000px;}
.ws6f{word-spacing:2.550000px;}
.ws1b{word-spacing:2.580000px;}
.ws4a{word-spacing:2.700000px;}
.ws6e{word-spacing:2.754000px;}
.ws4d{word-spacing:2.760000px;}
.ws3e{word-spacing:2.820000px;}
.ws33{word-spacing:2.880000px;}
.ws1f{word-spacing:2.940000px;}
.ws46{word-spacing:3.000000px;}
.ws6d{word-spacing:3.111000px;}
.ws1d{word-spacing:3.120000px;}
.ws44{word-spacing:3.180000px;}
.ws6a{word-spacing:3.213000px;}
.ws5f{word-spacing:3.264000px;}
.ws51{word-spacing:3.360000px;}
.ws60{word-spacing:3.519000px;}
.ws32{word-spacing:3.540000px;}
.ws68{word-spacing:3.621000px;}
.ws20{word-spacing:3.720000px;}
.ws6{word-spacing:3.840000px;}
.ws28{word-spacing:3.900000px;}
.ws4c{word-spacing:3.960000px;}
.ws52{word-spacing:4.020000px;}
.ws2a{word-spacing:4.080000px;}
.ws3{word-spacing:4.140000px;}
.ws43{word-spacing:4.200000px;}
.ws54{word-spacing:4.560000px;}
.ws2b{word-spacing:5.760000px;}
.ws47{word-spacing:1731.620400px;}
.ws21{word-spacing:1735.508400px;}
._f{margin-left:-2178.089400px;}
._3{margin-left:-21.206400px;}
._e{margin-left:-18.043200px;}
._5{margin-left:-16.576800px;}
._d{margin-left:-15.240000px;}
._11{margin-left:-14.220000px;}
._c{margin-left:-13.020000px;}
._2{margin-left:-10.569600px;}
._8{margin-left:-9.093521px;}
._b{margin-left:-7.041859px;}
._4{margin-left:-5.887200px;}
._0{margin-left:-4.339200px;}
._7{margin-left:-2.965459px;}
._1{margin-left:-1.920000px;}
._9{width:1.101859px;}
._15{width:2.610600px;}
._6{width:3.834000px;}
._a{width:5.095459px;}
._13{width:7.061576px;}
._10{width:12.600000px;}
._12{width:13.607179px;}
._14{width:15.770139px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:59.527500px;}
.y28{bottom:78.236250px;}
.y27{bottom:96.944850px;}
.y26{bottom:115.653600px;}
.y25{bottom:134.362200px;}
.y24{bottom:153.070800px;}
.y23{bottom:171.779550px;}
.y22{bottom:190.488150px;}
.y21{bottom:209.196750px;}
.y20{bottom:227.905500px;}
.y55{bottom:241.541250px;}
.y1f{bottom:246.614100px;}
.y54{bottom:258.791250px;}
.y1e{bottom:265.322850px;}
.y53{bottom:276.041250px;}
.y1d{bottom:284.031450px;}
.y52{bottom:293.291250px;}
.y1c{bottom:302.740200px;}
.y51{bottom:310.541250px;}
.y1b{bottom:321.448800px;}
.y50{bottom:327.791250px;}
.y1a{bottom:340.157400px;}
.y4f{bottom:345.041250px;}
.y19{bottom:358.866150px;}
.y4e{bottom:362.291250px;}
.y18{bottom:377.574750px;}
.y4d{bottom:379.541250px;}
.y17{bottom:396.283500px;}
.y4c{bottom:396.791250px;}
.y4b{bottom:414.041250px;}
.y16{bottom:414.992100px;}
.y4a{bottom:431.291250px;}
.y15{bottom:433.700850px;}
.y49{bottom:448.541250px;}
.y14{bottom:452.409450px;}
.y48{bottom:465.791250px;}
.y13{bottom:471.118050px;}
.y47{bottom:483.041250px;}
.y12{bottom:489.826800px;}
.y46{bottom:500.291250px;}
.y11{bottom:508.535400px;}
.y45{bottom:517.541250px;}
.y10{bottom:527.244000px;}
.y44{bottom:534.791250px;}
.yf{bottom:545.952750px;}
.y43{bottom:552.041250px;}
.ye{bottom:564.661350px;}
.y42{bottom:569.291250px;}
.yd{bottom:583.370100px;}
.y41{bottom:586.541250px;}
.yc{bottom:602.078700px;}
.y40{bottom:603.791250px;}
.yb{bottom:620.787300px;}
.y3f{bottom:621.041250px;}
.y3e{bottom:638.291250px;}
.ya{bottom:639.496050px;}
.y3d{bottom:655.541250px;}
.y9{bottom:658.204650px;}
.y3c{bottom:672.791250px;}
.y8{bottom:676.913400px;}
.y3b{bottom:690.041250px;}
.y7{bottom:695.622000px;}
.y3a{bottom:707.291250px;}
.y6{bottom:714.330750px;}
.y39{bottom:724.541250px;}
.y5{bottom:733.039350px;}
.y38{bottom:741.791250px;}
.y4{bottom:751.747950px;}
.y37{bottom:759.041250px;}
.y32{bottom:770.456700px;}
.y36{bottom:776.291250px;}
.y31{bottom:789.165300px;}
.y35{bottom:793.541250px;}
.y30{bottom:807.873900px;}
.y34{bottom:810.791250px;}
.y2f{bottom:826.582650px;}
.y3{bottom:827.693400px;}
.y33{bottom:828.041250px;}
.y2e{bottom:845.291250px;}
.y2d{bottom:864.000000px;}
.y2{bottom:871.205250px;}
.y2c{bottom:882.708600px;}
.y1{bottom:899.705250px;}
.y2b{bottom:901.417350px;}
.y2a{bottom:954.666900px;}
.h7{height:45.798000px;}
.h6{height:45.900000px;}
.h5{height:50.868000px;}
.h4{height:54.000000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x4{left:72.283500px;}
.x7{left:76.373850px;}
.x2{left:79.307850px;}
.x1{left:81.023250px;}
.x5{left:93.824100px;}
.x3{left:102.261450px;}
.x9{left:105.872550px;}
.x8{left:106.918350px;}
.x6{left:608.475300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-2.666667pt;}
.ls9{letter-spacing:-0.373333pt;}
.ls21{letter-spacing:-0.362667pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.317333pt;}
.ls15{letter-spacing:-0.266667pt;}
.ls24{letter-spacing:-0.226667pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls23{letter-spacing:-0.136000pt;}
.ls6{letter-spacing:-0.106667pt;}
.ls20{letter-spacing:-0.090667pt;}
.ls8{letter-spacing:-0.053333pt;}
.ls25{letter-spacing:-0.045333pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.136000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.213333pt;}
.ls1a{letter-spacing:0.226667pt;}
.lsc{letter-spacing:0.266667pt;}
.ls1e{letter-spacing:0.272000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.373333pt;}
.ls1f{letter-spacing:0.385333pt;}
.lsb{letter-spacing:0.426667pt;}
.ls14{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:0.498667pt;}
.ls13{letter-spacing:0.533333pt;}
.ls1b{letter-spacing:0.544000pt;}
.ls17{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.720000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls12{letter-spacing:0.960000pt;}
.lsa{letter-spacing:1.200000pt;}
.ls19{letter-spacing:3.277354pt;}
.ls1d{letter-spacing:3.980726pt;}
.ws39{word-spacing:-12.336000pt;}
.ws22{word-spacing:-11.200000pt;}
.ws0{word-spacing:-10.560000pt;}
.ws23{word-spacing:-10.400000pt;}
.ws48{word-spacing:-10.346667pt;}
.ws3a{word-spacing:-10.293333pt;}
.ws1{word-spacing:-10.186667pt;}
.ws67{word-spacing:-10.064000pt;}
.ws69{word-spacing:-9.792000pt;}
.ws5e{word-spacing:-9.656000pt;}
.ws65{word-spacing:-9.429333pt;}
.ws62{word-spacing:-9.157333pt;}
.ws56{word-spacing:-8.976000pt;}
.ws57{word-spacing:-8.840000pt;}
.ws15{word-spacing:-2.666667pt;}
.ws55{word-spacing:-2.506667pt;}
.ws14{word-spacing:-2.346667pt;}
.wse{word-spacing:-2.293333pt;}
.wsb{word-spacing:-2.240000pt;}
.wsa{word-spacing:-2.133333pt;}
.ws63{word-spacing:-2.130667pt;}
.ws34{word-spacing:-2.080000pt;}
.ws10{word-spacing:-1.973333pt;}
.ws61{word-spacing:-1.904000pt;}
.ws45{word-spacing:-1.866667pt;}
.ws3d{word-spacing:-1.813333pt;}
.ws5c{word-spacing:-1.768000pt;}
.ws16{word-spacing:-1.760000pt;}
.ws31{word-spacing:-1.600000pt;}
.ws3b{word-spacing:-1.546667pt;}
.ws37{word-spacing:-1.440000pt;}
.ws2f{word-spacing:-1.386667pt;}
.ws6c{word-spacing:-1.314667pt;}
.wsf{word-spacing:-1.280000pt;}
.ws17{word-spacing:-1.226667pt;}
.ws6b{word-spacing:-1.224000pt;}
.ws24{word-spacing:-1.200000pt;}
.ws12{word-spacing:-1.173333pt;}
.ws13{word-spacing:-1.066667pt;}
.ws11{word-spacing:-1.013333pt;}
.ws4{word-spacing:-0.906667pt;}
.ws5{word-spacing:-0.853333pt;}
.ws42{word-spacing:-0.800000pt;}
.ws1a{word-spacing:-0.746667pt;}
.ws58{word-spacing:-0.693333pt;}
.ws7{word-spacing:-0.640000pt;}
.ws25{word-spacing:-0.480000pt;}
.ws38{word-spacing:-0.426667pt;}
.ws5a{word-spacing:-0.272000pt;}
.ws36{word-spacing:-0.213333pt;}
.ws35{word-spacing:-0.160000pt;}
.ws4b{word-spacing:-0.106667pt;}
.ws3c{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws50{word-spacing:0.053333pt;}
.ws5d{word-spacing:0.090667pt;}
.ws8{word-spacing:0.106667pt;}
.ws9{word-spacing:0.160000pt;}
.ws2e{word-spacing:0.320000pt;}
.ws30{word-spacing:0.373333pt;}
.ws2c{word-spacing:0.426667pt;}
.ws66{word-spacing:0.498667pt;}
.ws29{word-spacing:0.640000pt;}
.ws18{word-spacing:0.693333pt;}
.ws19{word-spacing:0.746667pt;}
.ws49{word-spacing:0.800000pt;}
.ws3f{word-spacing:0.906667pt;}
.ws5b{word-spacing:1.042667pt;}
.ws4f{word-spacing:1.066667pt;}
.ws64{word-spacing:1.224000pt;}
.ws26{word-spacing:1.280000pt;}
.ws1e{word-spacing:1.333333pt;}
.ws1c{word-spacing:1.386667pt;}
.ws59{word-spacing:1.653333pt;}
.ws40{word-spacing:1.706667pt;}
.wsc{word-spacing:1.760000pt;}
.ws27{word-spacing:1.813333pt;}
.wsd{word-spacing:1.920000pt;}
.ws4e{word-spacing:1.973333pt;}
.ws2d{word-spacing:2.080000pt;}
.ws53{word-spacing:2.133333pt;}
.ws41{word-spacing:2.240000pt;}
.ws6f{word-spacing:2.266667pt;}
.ws1b{word-spacing:2.293333pt;}
.ws4a{word-spacing:2.400000pt;}
.ws6e{word-spacing:2.448000pt;}
.ws4d{word-spacing:2.453333pt;}
.ws3e{word-spacing:2.506667pt;}
.ws33{word-spacing:2.560000pt;}
.ws1f{word-spacing:2.613333pt;}
.ws46{word-spacing:2.666667pt;}
.ws6d{word-spacing:2.765333pt;}
.ws1d{word-spacing:2.773333pt;}
.ws44{word-spacing:2.826667pt;}
.ws6a{word-spacing:2.856000pt;}
.ws5f{word-spacing:2.901333pt;}
.ws51{word-spacing:2.986667pt;}
.ws60{word-spacing:3.128000pt;}
.ws32{word-spacing:3.146667pt;}
.ws68{word-spacing:3.218667pt;}
.ws20{word-spacing:3.306667pt;}
.ws6{word-spacing:3.413333pt;}
.ws28{word-spacing:3.466667pt;}
.ws4c{word-spacing:3.520000pt;}
.ws52{word-spacing:3.573333pt;}
.ws2a{word-spacing:3.626667pt;}
.ws3{word-spacing:3.680000pt;}
.ws43{word-spacing:3.733333pt;}
.ws54{word-spacing:4.053333pt;}
.ws2b{word-spacing:5.120000pt;}
.ws47{word-spacing:1539.218133pt;}
.ws21{word-spacing:1542.674133pt;}
._f{margin-left:-1936.079467pt;}
._3{margin-left:-18.850133pt;}
._e{margin-left:-16.038400pt;}
._5{margin-left:-14.734933pt;}
._d{margin-left:-13.546667pt;}
._11{margin-left:-12.640000pt;}
._c{margin-left:-11.573333pt;}
._2{margin-left:-9.395200pt;}
._8{margin-left:-8.083130pt;}
._b{margin-left:-6.259431pt;}
._4{margin-left:-5.233067pt;}
._0{margin-left:-3.857067pt;}
._7{margin-left:-2.635964pt;}
._1{margin-left:-1.706667pt;}
._9{width:0.979431pt;}
._15{width:2.320533pt;}
._6{width:3.408000pt;}
._a{width:4.529297pt;}
._13{width:6.276956pt;}
._10{width:11.200000pt;}
._12{width:12.095271pt;}
._14{width:14.017901pt;}
.fs4{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:52.913333pt;}
.y28{bottom:69.543333pt;}
.y27{bottom:86.173200pt;}
.y26{bottom:102.803200pt;}
.y25{bottom:119.433067pt;}
.y24{bottom:136.062933pt;}
.y23{bottom:152.692933pt;}
.y22{bottom:169.322800pt;}
.y21{bottom:185.952667pt;}
.y20{bottom:202.582667pt;}
.y55{bottom:214.703333pt;}
.y1f{bottom:219.212533pt;}
.y54{bottom:230.036667pt;}
.y1e{bottom:235.842533pt;}
.y53{bottom:245.370000pt;}
.y1d{bottom:252.472400pt;}
.y52{bottom:260.703333pt;}
.y1c{bottom:269.102400pt;}
.y51{bottom:276.036667pt;}
.y1b{bottom:285.732267pt;}
.y50{bottom:291.370000pt;}
.y1a{bottom:302.362133pt;}
.y4f{bottom:306.703333pt;}
.y19{bottom:318.992133pt;}
.y4e{bottom:322.036667pt;}
.y18{bottom:335.622000pt;}
.y4d{bottom:337.370000pt;}
.y17{bottom:352.252000pt;}
.y4c{bottom:352.703333pt;}
.y4b{bottom:368.036667pt;}
.y16{bottom:368.881867pt;}
.y4a{bottom:383.370000pt;}
.y15{bottom:385.511867pt;}
.y49{bottom:398.703333pt;}
.y14{bottom:402.141733pt;}
.y48{bottom:414.036667pt;}
.y13{bottom:418.771600pt;}
.y47{bottom:429.370000pt;}
.y12{bottom:435.401600pt;}
.y46{bottom:444.703333pt;}
.y11{bottom:452.031467pt;}
.y45{bottom:460.036667pt;}
.y10{bottom:468.661333pt;}
.y44{bottom:475.370000pt;}
.yf{bottom:485.291333pt;}
.y43{bottom:490.703333pt;}
.ye{bottom:501.921200pt;}
.y42{bottom:506.036667pt;}
.yd{bottom:518.551200pt;}
.y41{bottom:521.370000pt;}
.yc{bottom:535.181067pt;}
.y40{bottom:536.703333pt;}
.yb{bottom:551.810933pt;}
.y3f{bottom:552.036667pt;}
.y3e{bottom:567.370000pt;}
.ya{bottom:568.440933pt;}
.y3d{bottom:582.703333pt;}
.y9{bottom:585.070800pt;}
.y3c{bottom:598.036667pt;}
.y8{bottom:601.700800pt;}
.y3b{bottom:613.370000pt;}
.y7{bottom:618.330667pt;}
.y3a{bottom:628.703333pt;}
.y6{bottom:634.960667pt;}
.y39{bottom:644.036667pt;}
.y5{bottom:651.590533pt;}
.y38{bottom:659.370000pt;}
.y4{bottom:668.220400pt;}
.y37{bottom:674.703333pt;}
.y32{bottom:684.850400pt;}
.y36{bottom:690.036667pt;}
.y31{bottom:701.480267pt;}
.y35{bottom:705.370000pt;}
.y30{bottom:718.110133pt;}
.y34{bottom:720.703333pt;}
.y2f{bottom:734.740133pt;}
.y3{bottom:735.727467pt;}
.y33{bottom:736.036667pt;}
.y2e{bottom:751.370000pt;}
.y2d{bottom:768.000000pt;}
.y2{bottom:774.404667pt;}
.y2c{bottom:784.629867pt;}
.y1{bottom:799.738000pt;}
.y2b{bottom:801.259867pt;}
.y2a{bottom:848.592800pt;}
.h7{height:40.709333pt;}
.h6{height:40.800000pt;}
.h5{height:45.216000pt;}
.h4{height:48.000000pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x4{left:64.252000pt;}
.x7{left:67.887867pt;}
.x2{left:70.495867pt;}
.x1{left:72.020667pt;}
.x5{left:83.399200pt;}
.x3{left:90.899067pt;}
.x9{left:94.108933pt;}
.x8{left:95.038533pt;}
.x6{left:540.866933pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  