
    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_441445143f8c1cca7df313cd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_06e778961ec53ac6bbc66483.woff')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_4e29faa584e607d9b9a14530.woff')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_e4f7575e579eeb089751616c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.959961;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_9fb26f5eeda71a507cba37bb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.592000;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;}
.m33{transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m1c{transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249999,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);}
.m8{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:47.182809px;}
.v2{vertical-align:94.380019px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.067800px;}
.ls2{letter-spacing:0.084600px;}
.ls5{letter-spacing:1.250558px;}
.ls6{letter-spacing:1.308894px;}
.ls4{letter-spacing:1.380000px;}
.ls3{letter-spacing:1.500000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-19.224004px;}
.ws2{word-spacing:-19.152004px;}
.ws3{word-spacing:-1.380000px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:1.344000px;}
.ws5{word-spacing:324.564065px;}
.ws6{word-spacing:346.044069px;}
._a{width:1.848000px;}
._6{width:3.888001px;}
._0{width:12.336007px;}
._9{width:16.452003px;}
._4{width:20.484004px;}
._7{width:21.684004px;}
._5{width:23.208005px;}
._8{width:24.492005px;}
._e{width:27.360005px;}
._d{width:28.728006px;}
._c{width:30.144006px;}
._f{width:31.452006px;}
._1{width:32.880007px;}
._2{width:36.828007px;}
._3{width:40.932008px;}
._b{width:61.764012px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000014px;}
.y0{bottom:0.000000px;}
.yed{bottom:19.005004px;}
.yb8{bottom:42.603759px;}
.ydc{bottom:89.801568px;}
.ybf{bottom:113.400173px;}
.yd3{bottom:113.400323px;}
.yb4{bottom:115.421035px;}
.y12f{bottom:115.826036px;}
.y6a{bottom:117.026036px;}
.ye6{bottom:131.759489px;}
.yb3{bottom:139.016040px;}
.y84{bottom:139.061040px;}
.y107{bottom:139.751040px;}
.y69{bottom:140.636041px;}
.y3f{bottom:140.651041px;}
.ye5{bottom:144.761041px;}
.ye9{bottom:150.761043px;}
.y144{bottom:151.016043px;}
.y11d{bottom:151.391043px;}
.y12e{bottom:151.421043px;}
.y9a{bottom:151.436043px;}
.y22{bottom:152.666043px;}
.y83{bottom:162.671045px;}
.y68{bottom:164.231045px;}
.y3e{bottom:164.246045px;}
.y54{bottom:164.261045px;}
.ye4{bottom:168.356046px;}
.ye8{bottom:174.356047px;}
.ye1{bottom:174.367147px;}
.yb2{bottom:174.611047px;}
.y11c{bottom:174.986047px;}
.y99{bottom:175.031047px;}
.y106{bottom:175.361047px;}
.y21{bottom:176.261048px;}
.y82{bottom:186.266050px;}
.y12d{bottom:187.031050px;}
.y3d{bottom:187.856050px;}
.ye3{bottom:191.966051px;}
.ye0{bottom:197.962302px;}
.ye7{bottom:197.966052px;}
.y105{bottom:198.956052px;}
.y67{bottom:199.826052px;}
.y20{bottom:199.871052px;}
.yb1{bottom:210.206054px;}
.y11b{bottom:210.581055px;}
.y98{bottom:210.626055px;}
.y3c{bottom:211.451055px;}
.y152{bottom:211.841055px;}
.ye2{bottom:215.561056px;}
.y81{bottom:221.861057px;}
.y1f{bottom:223.466057px;}
.y104{bottom:234.566059px;}
.y53{bottom:235.046059px;}
.y66{bottom:235.421059px;}
.y151{bottom:235.451059px;}
.ydb{bottom:242.654511px;}
.yb0{bottom:245.801062px;}
.y11a{bottom:246.176062px;}
.y97{bottom:246.221062px;}
.y3b{bottom:247.046062px;}
.y80{bottom:257.456064px;}
.y103{bottom:258.161064px;}
.y52{bottom:258.656064px;}
.y150{bottom:259.046064px;}
.y1e{bottom:259.061064px;}
.ydf{bottom:261.656065px;}
.y3a{bottom:270.641067px;}
.y65{bottom:271.016067px;}
.yda{bottom:273.451617px;}
.yaf{bottom:281.396069px;}
.y12c{bottom:281.816069px;}
.y96{bottom:281.831069px;}
.y51{bottom:282.251069px;}
.y1d{bottom:282.656069px;}
.yde{bottom:285.251069px;}
.y7f{bottom:293.051071px;}
.y102{bottom:293.756071px;}
.y39{bottom:294.251071px;}
.y64{bottom:294.626071px;}
.y14f{bottom:294.641071px;}
.yd9{bottom:297.061622px;}
.y95{bottom:305.426073px;}
.y1c{bottom:306.251074px;}
.ydd{bottom:308.861074px;}
.yae{bottom:316.991076px;}
.y143{bottom:317.006076px;}
.y119{bottom:317.381076px;}
.y12b{bottom:317.411076px;}
.y38{bottom:317.846076px;}
.y63{bottom:318.221076px;}
.y14e{bottom:318.251076px;}
.yd8{bottom:320.656627px;}
.y7e{bottom:328.646078px;}
.y101{bottom:329.366078px;}
.y1b{bottom:329.861078px;}
.y142{bottom:340.601081px;}
.y118{bottom:340.976081px;}
.y94{bottom:341.036081px;}
.y14d{bottom:341.846081px;}
.yad{bottom:352.601083px;}
.y100{bottom:352.961083px;}
.y12a{bottom:353.021083px;}
.y50{bottom:353.441083px;}
.y1a{bottom:353.456083px;}
.yd2{bottom:353.545783px;}
.y62{bottom:353.816083px;}
.y7d{bottom:364.241085px;}
.y93{bottom:364.631085px;}
.yd7{bottom:372.551087px;}
.yac{bottom:376.196088px;}
.y141{bottom:376.211088px;}
.y117{bottom:376.586088px;}
.y129{bottom:376.616088px;}
.y37{bottom:377.051088px;}
.y61{bottom:377.411088px;}
.y14c{bottom:377.441088px;}
.yd1{bottom:384.346639px;}
.yff{bottom:388.556090px;}
.y19{bottom:389.051090px;}
.ycd{bottom:396.142342px;}
.yd6{bottom:396.146092px;}
.y140{bottom:399.806092px;}
.y7c{bottom:399.836092px;}
.y116{bottom:400.181092px;}
.y92{bottom:400.226092px;}
.y60{bottom:401.021093px;}
.y14b{bottom:401.036093px;}
.yd0{bottom:407.941644px;}
.yab{bottom:411.791095px;}
.y128{bottom:412.226095px;}
.y18{bottom:412.646095px;}
.yd5{bottom:419.741096px;}
.ycc{bottom:419.752346px;}
.yfe{bottom:424.166097px;}
.y5f{bottom:424.616097px;}
.y4f{bottom:424.631097px;}
.ycf{bottom:431.551649px;}
.y13f{bottom:435.416099px;}
.y7b{bottom:435.431099px;}
.y115{bottom:435.791100px;}
.y91{bottom:435.821100px;}
.y17{bottom:436.241100px;}
.ycb{bottom:443.347201px;}
.yd4{bottom:443.351101px;}
.yaa{bottom:447.401102px;}
.yfd{bottom:447.761102px;}
.y4e{bottom:448.226102px;}
.y36{bottom:448.241102px;}
.yce{bottom:455.146653px;}
.y13e{bottom:459.011104px;}
.y114{bottom:459.386104px;}
.y16{bottom:459.851104px;}
.y5e{bottom:460.211104px;}
.ya9{bottom:470.996107px;}
.y7a{bottom:471.026107px;}
.y127{bottom:471.416107px;}
.y90{bottom:471.431107px;}
.y4d{bottom:471.836107px;}
.yfc{bottom:483.371109px;}
.y15{bottom:483.446109px;}
.y5d{bottom:483.821109px;}
.yc8{bottom:488.035960px;}
.y13d{bottom:494.621111px;}
.y113{bottom:494.996111px;}
.y8f{bottom:495.026111px;}
.y4c{bottom:495.431111px;}
.ya8{bottom:506.606114px;}
.y79{bottom:506.621114px;}
.yfb{bottom:506.966114px;}
.y126{bottom:507.011114px;}
.yca{bottom:507.041114px;}
.y5c{bottom:507.416114px;}
.y14a{bottom:507.431114px;}
.y13c{bottom:518.216116px;}
.y112{bottom:518.591116px;}
.yc7{bottom:518.836666px;}
.y14{bottom:519.041116px;}
.y35{bottom:519.431116px;}
.ya7{bottom:530.201118px;}
.y8e{bottom:530.636119px;}
.y4b{bottom:531.026119px;}
.y78{bottom:542.216121px;}
.yc6{bottom:542.431671px;}
.yfa{bottom:542.576121px;}
.y125{bottom:542.606121px;}
.y13{bottom:542.651121px;}
.y34{bottom:543.026121px;}
.y13b{bottom:553.811123px;}
.y111{bottom:554.201123px;}
.y8d{bottom:554.231123px;}
.y149{bottom:554.636123px;}
.ya6{bottom:565.796126px;}
.yc5{bottom:566.041826px;}
.yf9{bottom:566.171126px;}
.y12{bottom:566.246126px;}
.y4a{bottom:566.621126px;}
.y33{bottom:566.636126px;}
.y110{bottom:577.796128px;}
.y77{bottom:577.811128px;}
.yc9{bottom:577.841128px;}
.y148{bottom:578.231128px;}
.y13a{bottom:589.421130px;}
.yc4{bottom:589.636680px;}
.y11{bottom:589.841130px;}
.y32{bottom:590.231130px;}
.ya5{bottom:601.391133px;}
.yf8{bottom:601.766133px;}
.y5b{bottom:602.231133px;}
.y139{bottom:613.016135px;}
.y10f{bottom:613.391135px;}
.y76{bottom:613.406135px;}
.y10{bottom:613.436135px;}
.y124{bottom:613.811135px;}
.y49{bottom:613.826135px;}
.ybe{bottom:622.525987px;}
.y31{bottom:625.826138px;}
.ya4{bottom:637.001140px;}
.yf{bottom:637.046140px;}
.yf7{bottom:637.376140px;}
.y123{bottom:637.406140px;}
.yc3{bottom:641.531141px;}
.y138{bottom:648.626142px;}
.y10e{bottom:648.986142px;}
.y75{bottom:649.001142px;}
.y8c{bottom:649.031142px;}
.y30{bottom:649.421142px;}
.ybd{bottom:653.326843px;}
.ya3{bottom:660.596145px;}
.ye{bottom:660.641145px;}
.yf6{bottom:660.971145px;}
.y5a{bottom:661.421145px;}
.yc2{bottom:665.126145px;}
.y137{bottom:672.221147px;}
.y122{bottom:673.001147px;}
.y2f{bottom:673.031147px;}
.ybc{bottom:676.921698px;}
.y74{bottom:684.596149px;}
.y8b{bottom:684.626149px;}
.y59{bottom:685.016149px;}
.yc1{bottom:688.721150px;}
.ya2{bottom:696.206152px;}
.yd{bottom:696.236152px;}
.yf5{bottom:696.581152px;}
.y121{bottom:696.611152px;}
.y2e{bottom:696.626152px;}
.ybb{bottom:700.531703px;}
.y136{bottom:707.816154px;}
.y10d{bottom:708.191154px;}
.y157{bottom:708.206154px;}
.y58{bottom:708.611154px;}
.yc0{bottom:712.331155px;}
.ya1{bottom:719.801156px;}
.yc{bottom:719.831156px;}
.yf4{bottom:720.176156px;}
.y120{bottom:720.206156px;}
.y8a{bottom:720.236156px;}
.yba{bottom:724.126707px;}
.y156{bottom:731.801159px;}
.y147{bottom:732.206159px;}
.y2d{bottom:732.221159px;}
.y135{bottom:743.411161px;}
.yb{bottom:743.426161px;}
.y10c{bottom:743.801161px;}
.y89{bottom:743.831161px;}
.ya0{bottom:755.411163px;}
.yf3{bottom:755.786164px;}
.y73{bottom:755.801164px;}
.y2c{bottom:755.816164px;}
.y48{bottom:755.831164px;}
.yb7{bottom:757.027414px;}
.ya{bottom:767.036166px;}
.y10b{bottom:767.396166px;}
.yb9{bottom:776.036168px;}
.y9f{bottom:779.006168px;}
.yf2{bottom:779.381168px;}
.y72{bottom:779.396168px;}
.y11f{bottom:779.411168px;}
.y2b{bottom:779.426168px;}
.y9{bottom:790.631171px;}
.y57{bottom:791.411171px;}
.y155{bottom:802.991173px;}
.y10a{bottom:803.006173px;}
.y2a{bottom:803.021173px;}
.y88{bottom:803.036173px;}
.y9e{bottom:814.601175px;}
.y134{bottom:814.616175px;}
.yf1{bottom:814.976175px;}
.y71{bottom:815.006175px;}
.y47{bottom:815.021175px;}
.y8{bottom:826.226178px;}
.y109{bottom:826.601178px;}
.y87{bottom:826.631178px;}
.y133{bottom:838.211180px;}
.y154{bottom:838.586180px;}
.y70{bottom:838.601180px;}
.y29{bottom:838.616180px;}
.y46{bottom:838.631180px;}
.y9d{bottom:850.211182px;}
.yf0{bottom:850.571183px;}
.y146{bottom:850.616183px;}
.y7{bottom:861.836185px;}
.y108{bottom:862.196185px;}
.y28{bottom:862.211185px;}
.y45{bottom:862.226185px;}
.y9c{bottom:873.806187px;}
.y132{bottom:873.821187px;}
.y6f{bottom:874.196187px;}
.y56{bottom:874.211187px;}
.y6{bottom:885.431189px;}
.y153{bottom:885.791190px;}
.y27{bottom:885.806190px;}
.y86{bottom:885.821190px;}
.yef{bottom:886.166190px;}
.y131{bottom:897.416192px;}
.yb6{bottom:897.791192px;}
.y6e{bottom:897.806192px;}
.y44{bottom:897.821192px;}
.y26{bottom:909.416194px;}
.y55{bottom:909.821194px;}
.y5{bottom:921.026197px;}
.y6d{bottom:921.401197px;}
.y25{bottom:933.011199px;}
.y85{bottom:933.026199px;}
.y43{bottom:933.416199px;}
.yb5{bottom:944.996201px;}
.y145{bottom:945.011201px;}
.y4{bottom:956.621204px;}
.y11e{bottom:956.996204px;}
.y6c{bottom:957.011204px;}
.yee{bottom:957.356204px;}
.y24{bottom:968.606206px;}
.y130{bottom:968.621206px;}
.y42{bottom:969.011206px;}
.yec{bottom:977.321208px;}
.y6b{bottom:980.606209px;}
.y3{bottom:992.216211px;}
.y41{bottom:992.606211px;}
.y9b{bottom:1004.201213px;}
.y40{bottom:1016.201216px;}
.y2{bottom:1027.811218px;}
.yeb{bottom:1036.436220px;}
.y23{bottom:1039.811220px;}
.yea{bottom:1060.031224px;}
.y1{bottom:1063.406225px;}
.hb{height:36.303757px;}
.h2{height:54.000011px;}
.h3{height:59.722512px;}
.h1{height:76.824015px;}
.hc{height:78.048016px;}
.h9{height:106.740321px;}
.h8{height:107.220321px;}
.h4{height:124.006825px;}
.h5{height:130.098926px;}
.h7{height:130.204076px;}
.h6{height:130.713926px;}
.ha{height:171.204034px;}
.h0{height:1188.000000px;}
.w1{width:150.225030px;}
.w4{width:159.375032px;}
.w2{width:188.025038px;}
.w3{width:194.625039px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1e{left:1.125000px;}
.x1{left:108.000022px;}
.x1d{left:110.250022px;}
.x1f{left:111.375022px;}
.x30{left:141.810028px;}
.x9{left:162.000032px;}
.x2{left:163.005033px;}
.x14{left:166.230033px;}
.x35{left:175.155035px;}
.x6{left:193.080039px;}
.x3b{left:206.085041px;}
.x1a{left:207.990042px;}
.x10{left:218.790044px;}
.x37{left:247.470049px;}
.x31{left:254.385051px;}
.x18{left:255.720051px;}
.x24{left:262.125052px;}
.x33{left:263.265053px;}
.xc{left:264.615053px;}
.x28{left:270.825054px;}
.x2b{left:275.220055px;}
.x32{left:279.195056px;}
.xb{left:290.220058px;}
.x17{left:301.650060px;}
.x2a{left:306.540061px;}
.x7{left:310.950062px;}
.x2c{left:318.090064px;}
.xa{left:321.255064px;}
.x11{left:323.145065px;}
.x27{left:327.465065px;}
.x39{left:333.600067px;}
.x19{left:349.245070px;}
.x38{left:351.015070px;}
.x25{left:358.080072px;}
.x16{left:364.515073px;}
.x15{left:384.615077px;}
.xd{left:394.215079px;}
.x36{left:404.805081px;}
.x12{left:407.775082px;}
.x29{left:417.255083px;}
.xf{left:419.205084px;}
.x20{left:423.000085px;}
.x21{left:424.875085px;}
.x13{left:426.510085px;}
.x3c{left:438.615088px;}
.x34{left:444.405089px;}
.xe{left:456.795091px;}
.x8{left:458.280092px;}
.x3{left:474.390095px;}
.x26{left:499.965100px;}
.x3a{left:519.825104px;}
.x4{left:529.500106px;}
.x1c{left:560.955112px;}
.x3d{left:562.365112px;}
.x3e{left:583.365117px;}
.x22{left:613.125123px;}
.x23{left:614.400123px;}
.x3f{left:616.935123px;}
.x2d{left:620.985124px;}
.x2f{left:630.885126px;}
.x5{left:666.045133px;}
.x2e{left:668.115134px;}
.x1b{left:680.340136px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:41.940275pt;}
.v2{vertical-align:83.893350pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.060267pt;}
.ls2{letter-spacing:0.075200pt;}
.ls5{letter-spacing:1.111607pt;}
.ls6{letter-spacing:1.163462pt;}
.ls4{letter-spacing:1.226667pt;}
.ls3{letter-spacing:1.333334pt;}
.ws1{word-spacing:-17.088003pt;}
.ws2{word-spacing:-17.024003pt;}
.ws3{word-spacing:-1.226667pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:1.194667pt;}
.ws5{word-spacing:288.501391pt;}
.ws6{word-spacing:307.594728pt;}
._a{width:1.642667pt;}
._6{width:3.456001pt;}
._0{width:10.965340pt;}
._9{width:14.624003pt;}
._4{width:18.208004pt;}
._7{width:19.274671pt;}
._5{width:20.629337pt;}
._8{width:21.770671pt;}
._e{width:24.320005pt;}
._d{width:25.536005pt;}
._c{width:26.794672pt;}
._f{width:27.957339pt;}
._1{width:29.226673pt;}
._2{width:32.736007pt;}
._3{width:36.384007pt;}
._b{width:54.901344pt;}
.fs0{font-size:64.000013pt;}
.y0{bottom:0.000000pt;}
.yed{bottom:16.893337pt;}
.yb8{bottom:37.870008pt;}
.ydc{bottom:79.823616pt;}
.ybf{bottom:100.800153pt;}
.yd3{bottom:100.800287pt;}
.yb4{bottom:102.596476pt;}
.y12f{bottom:102.956476pt;}
.y6a{bottom:104.023143pt;}
.ye6{bottom:117.119546pt;}
.yb3{bottom:123.569814pt;}
.y84{bottom:123.609814pt;}
.y107{bottom:124.223147pt;}
.y69{bottom:125.009814pt;}
.y3f{bottom:125.023147pt;}
.ye5{bottom:128.676481pt;}
.ye9{bottom:134.009816pt;}
.y144{bottom:134.236482pt;}
.y11d{bottom:134.569816pt;}
.y12e{bottom:134.596482pt;}
.y9a{bottom:134.609816pt;}
.y22{bottom:135.703149pt;}
.y83{bottom:144.596484pt;}
.y68{bottom:145.983151pt;}
.y3e{bottom:145.996485pt;}
.y54{bottom:146.009818pt;}
.ye4{bottom:149.649819pt;}
.ye8{bottom:154.983153pt;}
.ye1{bottom:154.993020pt;}
.yb2{bottom:155.209820pt;}
.y11c{bottom:155.543153pt;}
.y99{bottom:155.583153pt;}
.y106{bottom:155.876487pt;}
.y21{bottom:156.676487pt;}
.y82{bottom:165.569822pt;}
.y12d{bottom:166.249822pt;}
.y3d{bottom:166.983156pt;}
.ye3{bottom:170.636490pt;}
.ye0{bottom:175.966491pt;}
.ye7{bottom:175.969824pt;}
.y105{bottom:176.849824pt;}
.y67{bottom:177.623158pt;}
.y20{bottom:177.663158pt;}
.yb1{bottom:186.849826pt;}
.y11b{bottom:187.183160pt;}
.y98{bottom:187.223160pt;}
.y3c{bottom:187.956493pt;}
.y152{bottom:188.303160pt;}
.ye2{bottom:191.609827pt;}
.y81{bottom:197.209828pt;}
.y1f{bottom:198.636495pt;}
.y104{bottom:208.503164pt;}
.y53{bottom:208.929831pt;}
.y66{bottom:209.263164pt;}
.y151{bottom:209.289831pt;}
.ydb{bottom:215.692899pt;}
.yb0{bottom:218.489832pt;}
.y11a{bottom:218.823166pt;}
.y97{bottom:218.863166pt;}
.y3b{bottom:219.596499pt;}
.y80{bottom:228.849835pt;}
.y103{bottom:229.476501pt;}
.y52{bottom:229.916501pt;}
.y150{bottom:230.263168pt;}
.y1e{bottom:230.276502pt;}
.ydf{bottom:232.583169pt;}
.y3a{bottom:240.569837pt;}
.y65{bottom:240.903170pt;}
.yda{bottom:243.068104pt;}
.yaf{bottom:250.129839pt;}
.y12c{bottom:250.503172pt;}
.y96{bottom:250.516506pt;}
.y51{bottom:250.889839pt;}
.y1d{bottom:251.249839pt;}
.yde{bottom:253.556506pt;}
.y7f{bottom:260.489841pt;}
.y102{bottom:261.116508pt;}
.y39{bottom:261.556508pt;}
.y64{bottom:261.889841pt;}
.y14f{bottom:261.903175pt;}
.yd9{bottom:264.054775pt;}
.y95{bottom:271.489843pt;}
.y1c{bottom:272.223177pt;}
.ydd{bottom:274.543177pt;}
.yae{bottom:281.769845pt;}
.y143{bottom:281.783178pt;}
.y119{bottom:282.116512pt;}
.y12b{bottom:282.143179pt;}
.y38{bottom:282.529845pt;}
.y63{bottom:282.863179pt;}
.y14e{bottom:282.889845pt;}
.yd8{bottom:285.028112pt;}
.y7e{bottom:292.129847pt;}
.y101{bottom:292.769847pt;}
.y1b{bottom:293.209847pt;}
.y142{bottom:302.756516pt;}
.y118{bottom:303.089849pt;}
.y94{bottom:303.143183pt;}
.y14d{bottom:303.863183pt;}
.yad{bottom:313.423185pt;}
.y100{bottom:313.743185pt;}
.y12a{bottom:313.796518pt;}
.y50{bottom:314.169852pt;}
.y1a{bottom:314.183185pt;}
.yd2{bottom:314.262918pt;}
.y62{bottom:314.503185pt;}
.y7d{bottom:323.769854pt;}
.y93{bottom:324.116520pt;}
.yd7{bottom:331.156522pt;}
.yac{bottom:334.396522pt;}
.y141{bottom:334.409856pt;}
.y117{bottom:334.743189pt;}
.y129{bottom:334.769856pt;}
.y37{bottom:335.156522pt;}
.y61{bottom:335.476523pt;}
.y14c{bottom:335.503189pt;}
.yd1{bottom:341.641457pt;}
.yff{bottom:345.383191pt;}
.y19{bottom:345.823191pt;}
.ycd{bottom:352.126526pt;}
.yd6{bottom:352.129859pt;}
.y140{bottom:355.383193pt;}
.y7c{bottom:355.409860pt;}
.y116{bottom:355.716527pt;}
.y92{bottom:355.756527pt;}
.y60{bottom:356.463193pt;}
.y14b{bottom:356.476527pt;}
.yd0{bottom:362.614795pt;}
.yab{bottom:366.036529pt;}
.y128{bottom:366.423195pt;}
.y18{bottom:366.796529pt;}
.yd5{bottom:373.103197pt;}
.ycc{bottom:373.113197pt;}
.yfe{bottom:377.036531pt;}
.y5f{bottom:377.436531pt;}
.y4f{bottom:377.449864pt;}
.ycf{bottom:383.601466pt;}
.y13f{bottom:387.036533pt;}
.y7b{bottom:387.049866pt;}
.y115{bottom:387.369866pt;}
.y91{bottom:387.396533pt;}
.y17{bottom:387.769866pt;}
.ycb{bottom:394.086401pt;}
.yd4{bottom:394.089868pt;}
.yaa{bottom:397.689868pt;}
.yfd{bottom:398.009868pt;}
.y4e{bottom:398.423202pt;}
.y36{bottom:398.436535pt;}
.yce{bottom:404.574803pt;}
.y13e{bottom:408.009870pt;}
.y114{bottom:408.343204pt;}
.y16{bottom:408.756537pt;}
.y5e{bottom:409.076537pt;}
.ya9{bottom:418.663206pt;}
.y7a{bottom:418.689873pt;}
.y127{bottom:419.036539pt;}
.y90{bottom:419.049873pt;}
.y4d{bottom:419.409873pt;}
.yfc{bottom:429.663208pt;}
.y15{bottom:429.729875pt;}
.y5d{bottom:430.063208pt;}
.yc8{bottom:433.809742pt;}
.y13d{bottom:439.663210pt;}
.y113{bottom:439.996543pt;}
.y8f{bottom:440.023210pt;}
.y4c{bottom:440.383210pt;}
.ya8{bottom:450.316546pt;}
.y79{bottom:450.329879pt;}
.yfb{bottom:450.636546pt;}
.y126{bottom:450.676546pt;}
.yca{bottom:450.703212pt;}
.y5c{bottom:451.036546pt;}
.y14a{bottom:451.049879pt;}
.y13c{bottom:460.636548pt;}
.y112{bottom:460.969881pt;}
.yc7{bottom:461.188148pt;}
.y14{bottom:461.369881pt;}
.y35{bottom:461.716548pt;}
.ya7{bottom:471.289883pt;}
.y8e{bottom:471.676550pt;}
.y4b{bottom:472.023217pt;}
.y78{bottom:481.969885pt;}
.yc6{bottom:482.161485pt;}
.yfa{bottom:482.289885pt;}
.y125{bottom:482.316552pt;}
.y13{bottom:482.356552pt;}
.y34{bottom:482.689885pt;}
.y13b{bottom:492.276554pt;}
.y111{bottom:492.623221pt;}
.y8d{bottom:492.649887pt;}
.y149{bottom:493.009887pt;}
.ya6{bottom:502.929889pt;}
.yc5{bottom:503.148289pt;}
.yf9{bottom:503.263223pt;}
.y12{bottom:503.329889pt;}
.y4a{bottom:503.663223pt;}
.y33{bottom:503.676556pt;}
.y110{bottom:513.596558pt;}
.y77{bottom:513.609892pt;}
.yc9{bottom:513.636558pt;}
.y148{bottom:513.983225pt;}
.y13a{bottom:523.929894pt;}
.yc4{bottom:524.121494pt;}
.y11{bottom:524.303227pt;}
.y32{bottom:524.649894pt;}
.ya5{bottom:534.569896pt;}
.yf8{bottom:534.903229pt;}
.y5b{bottom:535.316563pt;}
.y139{bottom:544.903231pt;}
.y10f{bottom:545.236565pt;}
.y76{bottom:545.249898pt;}
.y10{bottom:545.276565pt;}
.y124{bottom:545.609898pt;}
.y49{bottom:545.623231pt;}
.ybe{bottom:553.356433pt;}
.y31{bottom:556.289900pt;}
.ya4{bottom:566.223235pt;}
.yf{bottom:566.263235pt;}
.yf7{bottom:566.556569pt;}
.y123{bottom:566.583235pt;}
.yc3{bottom:570.249903pt;}
.y138{bottom:576.556571pt;}
.y10e{bottom:576.876571pt;}
.y75{bottom:576.889904pt;}
.y8c{bottom:576.916571pt;}
.y30{bottom:577.263238pt;}
.ybd{bottom:580.734972pt;}
.ya3{bottom:587.196573pt;}
.ye{bottom:587.236573pt;}
.yf6{bottom:587.529906pt;}
.y5a{bottom:587.929906pt;}
.yc2{bottom:591.223240pt;}
.y137{bottom:597.529908pt;}
.y122{bottom:598.223242pt;}
.y2f{bottom:598.249908pt;}
.ybc{bottom:601.708176pt;}
.y74{bottom:608.529911pt;}
.y8b{bottom:608.556577pt;}
.y59{bottom:608.903244pt;}
.yc1{bottom:612.196578pt;}
.ya2{bottom:618.849913pt;}
.yd{bottom:618.876579pt;}
.yf5{bottom:619.183246pt;}
.y121{bottom:619.209913pt;}
.y2e{bottom:619.223246pt;}
.ybb{bottom:622.694847pt;}
.y136{bottom:629.169915pt;}
.y10d{bottom:629.503248pt;}
.y157{bottom:629.516581pt;}
.y58{bottom:629.876581pt;}
.yc0{bottom:633.183249pt;}
.ya1{bottom:639.823250pt;}
.yc{bottom:639.849917pt;}
.yf4{bottom:640.156583pt;}
.y120{bottom:640.183250pt;}
.y8a{bottom:640.209917pt;}
.yba{bottom:643.668184pt;}
.y156{bottom:650.489919pt;}
.y147{bottom:650.849919pt;}
.y2d{bottom:650.863252pt;}
.y135{bottom:660.809921pt;}
.yb{bottom:660.823254pt;}
.y10c{bottom:661.156588pt;}
.y89{bottom:661.183254pt;}
.ya0{bottom:671.476590pt;}
.yf3{bottom:671.809923pt;}
.y73{bottom:671.823256pt;}
.y2c{bottom:671.836590pt;}
.y48{bottom:671.849923pt;}
.yb7{bottom:672.913257pt;}
.ya{bottom:681.809925pt;}
.y10b{bottom:682.129925pt;}
.yb9{bottom:689.809927pt;}
.y9f{bottom:692.449927pt;}
.yf2{bottom:692.783261pt;}
.y72{bottom:692.796594pt;}
.y11f{bottom:692.809927pt;}
.y2b{bottom:692.823261pt;}
.y9{bottom:702.783263pt;}
.y57{bottom:703.476596pt;}
.y155{bottom:713.769932pt;}
.y10a{bottom:713.783265pt;}
.y2a{bottom:713.796598pt;}
.y88{bottom:713.809932pt;}
.y9e{bottom:724.089934pt;}
.y134{bottom:724.103267pt;}
.yf1{bottom:724.423267pt;}
.y71{bottom:724.449934pt;}
.y47{bottom:724.463267pt;}
.y8{bottom:734.423269pt;}
.y109{bottom:734.756602pt;}
.y87{bottom:734.783269pt;}
.y133{bottom:745.076604pt;}
.y154{bottom:745.409938pt;}
.y70{bottom:745.423271pt;}
.y29{bottom:745.436605pt;}
.y46{bottom:745.449938pt;}
.y9d{bottom:755.743273pt;}
.yf0{bottom:756.063273pt;}
.y146{bottom:756.103273pt;}
.y7{bottom:766.076609pt;}
.y108{bottom:766.396609pt;}
.y28{bottom:766.409942pt;}
.y45{bottom:766.423275pt;}
.y9c{bottom:776.716611pt;}
.y132{bottom:776.729944pt;}
.y6f{bottom:777.063278pt;}
.y56{bottom:777.076611pt;}
.y6{bottom:787.049946pt;}
.y153{bottom:787.369946pt;}
.y27{bottom:787.383280pt;}
.y86{bottom:787.396613pt;}
.yef{bottom:787.703280pt;}
.y131{bottom:797.703282pt;}
.yb6{bottom:798.036615pt;}
.y6e{bottom:798.049948pt;}
.y44{bottom:798.063282pt;}
.y26{bottom:808.369950pt;}
.y55{bottom:808.729951pt;}
.y5{bottom:818.689953pt;}
.y6d{bottom:819.023286pt;}
.y25{bottom:829.343288pt;}
.y85{bottom:829.356621pt;}
.y43{bottom:829.703288pt;}
.yb5{bottom:839.996623pt;}
.y145{bottom:840.009957pt;}
.y4{bottom:850.329959pt;}
.y11e{bottom:850.663292pt;}
.y6c{bottom:850.676626pt;}
.yee{bottom:850.983292pt;}
.y24{bottom:860.983294pt;}
.y130{bottom:860.996628pt;}
.y42{bottom:861.343294pt;}
.yec{bottom:868.729963pt;}
.y6b{bottom:871.649963pt;}
.y3{bottom:881.969965pt;}
.y41{bottom:882.316632pt;}
.y9b{bottom:892.623301pt;}
.y40{bottom:903.289969pt;}
.y2{bottom:913.609972pt;}
.yeb{bottom:921.276640pt;}
.y23{bottom:924.276640pt;}
.yea{bottom:942.249977pt;}
.y1{bottom:945.249978pt;}
.hb{height:32.270006pt;}
.h2{height:48.000010pt;}
.h3{height:53.086677pt;}
.h1{height:68.288014pt;}
.hc{height:69.376014pt;}
.h9{height:94.880286pt;}
.h8{height:95.306952pt;}
.h4{height:110.228289pt;}
.h5{height:115.643490pt;}
.h7{height:115.736956pt;}
.h6{height:116.190157pt;}
.ha{height:152.181364pt;}
.h0{height:1056.000000pt;}
.w1{width:133.533360pt;}
.w4{width:141.666695pt;}
.w2{width:167.133367pt;}
.w3{width:173.000035pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:1.000000pt;}
.x1{left:96.000019pt;}
.x1d{left:98.000020pt;}
.x1f{left:99.000020pt;}
.x30{left:126.053359pt;}
.x9{left:144.000029pt;}
.x2{left:144.893362pt;}
.x14{left:147.760030pt;}
.x35{left:155.693364pt;}
.x6{left:171.626701pt;}
.x3b{left:183.186703pt;}
.x1a{left:184.880037pt;}
.x10{left:194.480039pt;}
.x37{left:219.973377pt;}
.x31{left:226.120045pt;}
.x18{left:227.306712pt;}
.x24{left:233.000047pt;}
.x33{left:234.013380pt;}
.xc{left:235.213380pt;}
.x28{left:240.733381pt;}
.x2b{left:244.640049pt;}
.x32{left:248.173383pt;}
.xb{left:257.973385pt;}
.x17{left:268.133387pt;}
.x2a{left:272.480054pt;}
.x7{left:276.400055pt;}
.x2c{left:282.746723pt;}
.xa{left:285.560057pt;}
.x11{left:287.240057pt;}
.x27{left:291.080058pt;}
.x39{left:296.533393pt;}
.x19{left:310.440062pt;}
.x38{left:312.013396pt;}
.x25{left:318.293397pt;}
.x16{left:324.013398pt;}
.x15{left:341.880068pt;}
.xd{left:350.413403pt;}
.x36{left:359.826739pt;}
.x12{left:362.466739pt;}
.x29{left:370.893408pt;}
.xf{left:372.626741pt;}
.x20{left:376.000075pt;}
.x21{left:377.666742pt;}
.x13{left:379.120076pt;}
.x3c{left:389.880078pt;}
.x34{left:395.026746pt;}
.xe{left:406.040081pt;}
.x8{left:407.360081pt;}
.x3{left:421.680084pt;}
.x26{left:444.413422pt;}
.x3a{left:462.066759pt;}
.x4{left:470.666761pt;}
.x1c{left:498.626766pt;}
.x3d{left:499.880100pt;}
.x3e{left:518.546770pt;}
.x22{left:545.000109pt;}
.x23{left:546.133443pt;}
.x3f{left:548.386776pt;}
.x2d{left:551.986777pt;}
.x2f{left:560.786779pt;}
.x5{left:592.040118pt;}
.x2e{left:593.880119pt;}
.x1b{left:604.746788pt;}
}




    .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; }
  