
    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_ae282cdbb9c4c2c93cc00be8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_506cafa76644203734ccf63d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_3947261f85725f93b66101a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.866000;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_fb73aad2f0f7f3dd8f7003f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.151000;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_ac7c41df2b75de371ffc9042.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.689453;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:ff6;src:url('chunks/assets/font_733eccc558daef926bd8307e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.103000;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:ff7;src:url('chunks/assets/font_e3440d04718b0302e794d324.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984048;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:ff8;src:url('chunks/assets/font_c190f19c7c782bcae709072e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984000;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:ff9;src:url('chunks/assets/font_bedb4e0a9a1e80b155f9e4b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.984000;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:ffa;src:url('chunks/assets/font_1c016c092beea373f0facd35.woff2')format("woff");}.ffa{font-family:ffa;line-height:973.000000;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:ffb;src:url('chunks/assets/font_2d1f022da6a54be25b01b6ae.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.984000;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:ffc;src:url('chunks/assets/font_57b048255a62022ecb9669ed.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.984000;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:ffd;src:url('chunks/assets/font_3f8958a80028d3012cdcec22.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;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:ffe;src:url('chunks/assets/font_9ec87082b02a6c9e2f986457.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.971000;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:fff;src:url('chunks/assets/font_e4c39c0e0e975091e7092cc7.woff2')format("woff");}.fff{font-family:fff;line-height:0.970000;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:ff10;src:url('chunks/assets/font_51dbc7ba1abe50afcfccc2aa.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.984000;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:ff11;src:url('chunks/assets/font_2de2561e5ee40cf488419c23.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.971000;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:ff12;src:url('chunks/assets/font_3d7f41468efe87f0719749a5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.971000;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:ff13;src:url('chunks/assets/font_f58d48d65b54adf9334c00a4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.984048;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:ff14;src:url('chunks/assets/font_75986877a668e5dc2133f079.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.984000;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:ff15;src:url('chunks/assets/font_ce570ec1693c27077388f8bb.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.984000;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:ff16;src:url('chunks/assets/font_13d75faf0dba7e4db20ba9b1.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.984000;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:ff17;src:url('chunks/assets/font_db80b12aa7a88da0c5e42d4d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.984000;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:ff18;src:url('chunks/assets/font_c85137d5371a1ffaf7e4b349.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.155000;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:ff19;src:url('chunks/assets/font_e1b38975b10ab697e8ad2302.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.984000;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:ff1a;src:url('chunks/assets/font_829bce253d0c3ca7920856c9.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.984000;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:ff1b;src:url('chunks/assets/font_32f0bc074869c4d5abe287ca.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.984000;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;}
.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);}
.m1{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-79.199968px;}
.v2{vertical-align:-17.983133px;}
.v3{vertical-align:-2.267999px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:17.983133px;}
.v5{vertical-align:19.979992px;}
.v1{vertical-align:21.976851px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000540px;}
.ls3{letter-spacing:0.001140px;}
.ls4{letter-spacing:0.270540px;}
.ls6{letter-spacing:0.460320px;}
.ls5{letter-spacing:0.462360px;}
.ls2{letter-spacing:322.379871px;}
.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;}
}
.ws1{word-spacing:-29.999988px;}
.ws0{word-spacing:-26.999989px;}
.ws3{word-spacing:-16.499993px;}
.ws7{word-spacing:-16.301993px;}
.ws2{word-spacing:-15.839994px;}
.ws5{word-spacing:-13.499995px;}
.wsb{word-spacing:-12.257995px;}
.ws8{word-spacing:-9.619496px;}
.ws4{word-spacing:-9.234716px;}
.ws9{word-spacing:-7.940457px;}
.wsa{word-spacing:-7.146411px;}
.ws6{word-spacing:0.000000px;}
._17{margin-left:-1211.093840px;}
._18{margin-left:-1209.421658px;}
._5c{margin-left:-15.934425px;}
._5b{margin-left:-11.880523px;}
._b{margin-left:-10.477200px;}
._29{margin-left:-8.708673px;}
._c{margin-left:-6.978669px;}
._d{margin-left:-5.020658px;}
._0{margin-left:-3.995858px;}
._2{margin-left:-2.373573px;}
._3{margin-left:-1.187664px;}
._1{width:1.108828px;}
._8{width:2.382681px;}
._4{width:3.959781px;}
._5{width:5.280543px;}
._6{width:6.525677px;}
._e{width:7.911236px;}
._9{width:9.042356px;}
._a{width:10.308244px;}
._13{width:11.878411px;}
._14{width:13.660477px;}
._11{width:15.444648px;}
._12{width:17.555135px;}
._10{width:18.745610px;}
._15{width:19.800513px;}
._f{width:21.053497px;}
._1a{width:22.110651px;}
._16{width:23.612836px;}
._2a{width:24.617660px;}
._48{width:25.673528px;}
._7{width:27.588583px;}
._4b{width:29.236338px;}
._19{width:30.293790px;}
._4a{width:31.481558px;}
._39{width:33.387737px;}
._49{width:35.512170px;}
._4d{width:37.115441px;}
._4e{width:39.631757px;}
._5d{width:42.174313px;}
._5e{width:43.367520px;}
._51{width:48.299981px;}
._56{width:49.979080px;}
._2b{width:55.681252px;}
._2e{width:60.301176px;}
._4f{width:61.881637px;}
._50{width:65.099374px;}
._32{width:69.550717px;}
._2d{width:72.119371px;}
._3c{width:74.313493px;}
._5a{width:77.102369px;}
._3b{width:82.760299px;}
._36{width:85.885154px;}
._44{width:87.977965px;}
._3e{width:89.232624px;}
._54{width:97.088077px;}
._45{width:105.997938px;}
._59{width:112.473699px;}
._47{width:119.658321px;}
._40{width:120.912612px;}
._41{width:123.436571px;}
._52{width:125.101150px;}
._2f{width:130.721141px;}
._43{width:135.959286px;}
._57{width:138.879482px;}
._34{width:160.380536px;}
._38{width:166.748839px;}
._46{width:167.903691px;}
._58{width:182.972135px;}
._42{width:187.913745px;}
._22{width:194.586204px;}
._53{width:198.171280px;}
._3d{width:203.146038px;}
._55{width:247.480280px;}
._24{width:306.951918px;}
._33{width:322.378071px;}
._26{width:331.678089px;}
._23{width:343.372505px;}
._3f{width:363.129204px;}
._37{width:415.756156px;}
._2c{width:432.653481px;}
._30{width:465.562795px;}
._1d{width:468.936329px;}
._1e{width:481.582267px;}
._21{width:490.387106px;}
._20{width:515.465371px;}
._28{width:529.415332px;}
._1c{width:585.155042px;}
._3a{width:608.917736px;}
._25{width:649.597949px;}
._4c{width:661.499735px;}
._27{width:690.337765px;}
._31{width:715.679650px;}
._1f{width:760.051162px;}
._1b{width:768.596847px;}
._35{width:982.380807px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:25.799990px;}
.fs7{font-size:31.481987px;}
.fs8{font-size:34.979986px;}
.fs6{font-size:38.477985px;}
.fs0{font-size:53.999978px;}
.fs1{font-size:59.999976px;}
.fs4{font-size:65.999974px;}
.fs3{font-size:71.999971px;}
.fs5{font-size:83.999966px;}
.y0{bottom:0.000000px;}
.y4{bottom:9.222828px;}
.y2c{bottom:9.224028px;}
.ye9{bottom:54.487700px;}
.y8{bottom:54.487850px;}
.y2d{bottom:55.551349px;}
.y6{bottom:56.118349px;}
.y2a{bottom:56.330314px;}
.y28{bottom:57.154849px;}
.y2{bottom:57.580848px;}
.y1a0{bottom:57.676848px;}
.y19f{bottom:58.527348px;}
.y5{bottom:63.618346px;}
.y29{bottom:63.830311px;}
.y78{bottom:94.109584px;}
.yd{bottom:100.176331px;}
.y191{bottom:102.003331px;}
.ye8{bottom:102.522330px;}
.y173{bottom:102.627330px;}
.yc6{bottom:103.108830px;}
.y59{bottom:103.109580px;}
.y9e{bottom:103.110330px;}
.y16f{bottom:104.223330px;}
.y14d{bottom:104.731830px;}
.yfa{bottom:104.938079px;}
.y10a{bottom:104.938229px;}
.y13d{bottom:105.049079px;}
.y169{bottom:106.114829px;}
.y142{bottom:110.486277px;}
.y77{bottom:113.909576px;}
.ye7{bottom:118.722324px;}
.y172{bottom:118.827324px;}
.yc{bottom:119.976323px;}
.y16e{bottom:120.423323px;}
.y14c{bottom:120.931823px;}
.y1{bottom:121.325580px;}
.y190{bottom:121.803323px;}
.yc5{bottom:122.908822px;}
.y58{bottom:122.909572px;}
.y9d{bottom:122.910322px;}
.yf9{bottom:124.737322px;}
.y109{bottom:124.737472px;}
.y13c{bottom:124.849072px;}
.y168{bottom:125.914821px;}
.y141{bottom:130.286269px;}
.y76{bottom:133.709568px;}
.ye6{bottom:134.922318px;}
.y171{bottom:135.027317px;}
.y16d{bottom:136.623317px;}
.yb{bottom:139.776316px;}
.y18f{bottom:141.603315px;}
.yc4{bottom:142.708814px;}
.y57{bottom:142.709564px;}
.y9c{bottom:142.710314px;}
.yf8{bottom:144.536564px;}
.y108{bottom:144.536714px;}
.y13b{bottom:144.649064px;}
.y167{bottom:145.714813px;}
.y140{bottom:150.086261px;}
.ye5{bottom:151.122311px;}
.y170{bottom:151.227311px;}
.y16c{bottom:152.823310px;}
.y75{bottom:153.509560px;}
.ya{bottom:159.576308px;}
.y18e{bottom:161.403307px;}
.yc3{bottom:162.508806px;}
.y56{bottom:162.509556px;}
.y9b{bottom:162.510306px;}
.yf7{bottom:164.335806px;}
.y107{bottom:164.335956px;}
.y13a{bottom:164.449056px;}
.y166{bottom:165.514805px;}
.y3{bottom:169.797600px;}
.y13f{bottom:169.886254px;}
.y2b{bottom:170.222400px;}
.y74{bottom:173.309552px;}
.y9{bottom:179.376300px;}
.y18d{bottom:181.203299px;}
.yc2{bottom:182.308799px;}
.y55{bottom:182.309549px;}
.y9a{bottom:182.310299px;}
.yf6{bottom:184.137898px;}
.y106{bottom:184.138048px;}
.y139{bottom:184.249048px;}
.y165{bottom:185.314797px;}
.y73{bottom:193.109544px;}
.y18c{bottom:201.003291px;}
.y13e{bottom:201.685791px;}
.yc1{bottom:202.108791px;}
.y54{bottom:202.109541px;}
.y99{bottom:202.110291px;}
.yf5{bottom:203.937890px;}
.y138{bottom:204.049040px;}
.y164{bottom:205.114789px;}
.y105{bottom:211.737737px;}
.y72{bottom:212.909536px;}
.y18b{bottom:220.803283px;}
.yc0{bottom:221.908783px;}
.y53{bottom:221.909533px;}
.y98{bottom:221.910283px;}
.yf4{bottom:223.737882px;}
.y137{bottom:223.849032px;}
.y163{bottom:224.914782px;}
.y7{bottom:229.146280px;}
.y71{bottom:232.709528px;}
.y145{bottom:237.457776px;}
.y18a{bottom:240.603275px;}
.ybf{bottom:241.708775px;}
.y52{bottom:241.709525px;}
.y97{bottom:241.710275px;}
.yf3{bottom:243.535774px;}
.y104{bottom:243.535924px;}
.y136{bottom:243.649024px;}
.y162{bottom:244.714774px;}
.y70{bottom:252.509520px;}
.y144{bottom:253.657770px;}
.y189{bottom:260.403267px;}
.ybe{bottom:261.508767px;}
.y51{bottom:261.509517px;}
.y96{bottom:261.510267px;}
.yf2{bottom:263.337866px;}
.y103{bottom:263.338016px;}
.y135{bottom:263.449016px;}
.y161{bottom:264.514766px;}
.y143{bottom:269.857764px;}
.y6f{bottom:272.309513px;}
.y27{bottom:274.708702px;}
.y188{bottom:280.203259px;}
.ybd{bottom:281.308759px;}
.y50{bottom:281.309509px;}
.y95{bottom:281.310259px;}
.yf1{bottom:283.135758px;}
.y102{bottom:283.135908px;}
.y134{bottom:283.249008px;}
.y160{bottom:284.314758px;}
.y6e{bottom:292.109505px;}
.y187{bottom:300.003251px;}
.ybc{bottom:301.108751px;}
.y4f{bottom:301.109501px;}
.y94{bottom:301.110251px;}
.yf0{bottom:302.937100px;}
.y101{bottom:302.937250px;}
.y133{bottom:303.049000px;}
.y15f{bottom:304.114750px;}
.y26{bottom:307.108689px;}
.y6d{bottom:311.909497px;}
.y186{bottom:319.803244px;}
.ybb{bottom:320.908743px;}
.y4e{bottom:320.909493px;}
.y93{bottom:320.910243px;}
.yef{bottom:322.737092px;}
.y100{bottom:322.737242px;}
.y132{bottom:322.848992px;}
.y131{bottom:322.849742px;}
.y25{bottom:323.308682px;}
.y15e{bottom:323.914742px;}
.y6c{bottom:331.709489px;}
.y24{bottom:339.508676px;}
.y185{bottom:339.603236px;}
.yba{bottom:340.708735px;}
.y4d{bottom:340.709485px;}
.y92{bottom:340.710235px;}
.yee{bottom:342.535734px;}
.yff{bottom:342.535884px;}
.y130{bottom:342.649734px;}
.y15d{bottom:343.714734px;}
.y6b{bottom:351.509481px;}
.y23{bottom:355.708669px;}
.y184{bottom:359.403228px;}
.yb9{bottom:360.508727px;}
.y4c{bottom:360.509477px;}
.ycb{bottom:360.510227px;}
.yed{bottom:362.337077px;}
.yfe{bottom:362.337227px;}
.y12f{bottom:362.449726px;}
.y15c{bottom:363.514726px;}
.y6a{bottom:371.309473px;}
.y22{bottom:371.908663px;}
.y183{bottom:379.203220px;}
.yb8{bottom:380.308719px;}
.y4b{bottom:380.309469px;}
.yca{bottom:380.310219px;}
.yec{bottom:382.135719px;}
.yfd{bottom:382.135869px;}
.y12e{bottom:382.249719px;}
.y15b{bottom:383.314718px;}
.y21{bottom:388.108656px;}
.y69{bottom:391.109465px;}
.y182{bottom:399.001862px;}
.yb7{bottom:400.108711px;}
.y4a{bottom:400.109461px;}
.y91{bottom:400.110211px;}
.yeb{bottom:401.937061px;}
.yfc{bottom:401.937211px;}
.y12d{bottom:402.049711px;}
.y15a{bottom:403.114710px;}
.y20{bottom:404.308650px;}
.y68{bottom:410.909457px;}
.y181{bottom:418.803204px;}
.yb6{bottom:419.908704px;}
.y49{bottom:419.909454px;}
.y90{bottom:419.910204px;}
.y1f{bottom:420.508643px;}
.yea{bottom:421.735703px;}
.yfb{bottom:421.736453px;}
.y12c{bottom:421.849703px;}
.y158{bottom:422.914702px;}
.y67{bottom:430.709449px;}
.y14b{bottom:434.814198px;}
.y1e{bottom:436.708637px;}
.y180{bottom:438.603196px;}
.yb5{bottom:439.708696px;}
.y48{bottom:439.709446px;}
.y8f{bottom:439.710196px;}
.y12b{bottom:441.649695px;}
.y157{bottom:442.714694px;}
.y14a{bottom:451.014191px;}
.y1d{bottom:452.908630px;}
.y1b7{bottom:454.915690px;}
.y17f{bottom:458.403188px;}
.yb4{bottom:459.508688px;}
.y47{bottom:459.509438px;}
.y8e{bottom:459.510188px;}
.y12a{bottom:461.449687px;}
.y156{bottom:462.514686px;}
.y149{bottom:467.214185px;}
.y1c{bottom:469.108624px;}
.y66{bottom:470.309433px;}
.y120{bottom:471.454683px;}
.y1b6{bottom:474.715682px;}
.y17e{bottom:478.203180px;}
.yb3{bottom:479.308680px;}
.y46{bottom:479.309430px;}
.y8d{bottom:479.310180px;}
.y129{bottom:481.249679px;}
.y155{bottom:482.314679px;}
.y148{bottom:483.414178px;}
.y1b{bottom:485.308617px;}
.y11f{bottom:489.454676px;}
.y65{bottom:490.109425px;}
.y1b5{bottom:494.515674px;}
.ydf{bottom:495.502673px;}
.y17d{bottom:498.001072px;}
.yb2{bottom:499.108672px;}
.y45{bottom:499.109422px;}
.y8c{bottom:499.110172px;}
.y128{bottom:501.049671px;}
.y1a{bottom:501.508611px;}
.y154{bottom:502.114671px;}
.y11e{bottom:507.454668px;}
.yde{bottom:513.502666px;}
.y1b4{bottom:514.315666px;}
.y19{bottom:517.708604px;}
.y17c{bottom:517.803164px;}
.yb1{bottom:518.908664px;}
.y44{bottom:518.909414px;}
.y8b{bottom:518.910164px;}
.y127{bottom:520.849663px;}
.y153{bottom:521.914663px;}
.y11d{bottom:525.454661px;}
.y64{bottom:529.709410px;}
.ydd{bottom:531.502659px;}
.y18{bottom:533.908598px;}
.y1b3{bottom:534.115658px;}
.y17b{bottom:537.603156px;}
.yb0{bottom:538.708656px;}
.y43{bottom:538.709406px;}
.y8a{bottom:538.710156px;}
.y126{bottom:540.649655px;}
.y152{bottom:541.714655px;}
.y11c{bottom:543.454654px;}
.ydc{bottom:549.502652px;}
.y63{bottom:549.509402px;}
.y17{bottom:550.108591px;}
.y1b2{bottom:553.915650px;}
.yaf{bottom:558.508648px;}
.y42{bottom:558.509398px;}
.y89{bottom:558.510148px;}
.y125{bottom:560.449647px;}
.y11b{bottom:561.454647px;}
.y151{bottom:561.514647px;}
.y16{bottom:566.308585px;}
.ydb{bottom:567.502644px;}
.y1b1{bottom:573.715642px;}
.yae{bottom:578.308640px;}
.y41{bottom:578.309390px;}
.y88{bottom:578.310140px;}
.y11a{bottom:579.454640px;}
.y124{bottom:580.249639px;}
.y150{bottom:581.314639px;}
.yda{bottom:585.502637px;}
.y19d{bottom:585.841637px;}
.y62{bottom:589.109386px;}
.y1b0{bottom:593.515634px;}
.y119{bottom:597.454632px;}
.yad{bottom:598.108632px;}
.y40{bottom:598.109382px;}
.y87{bottom:598.110132px;}
.y123{bottom:600.049631px;}
.y159{bottom:601.114631px;}
.y19c{bottom:602.041631px;}
.y15{bottom:602.308571px;}
.yd9{bottom:603.502630px;}
.y1af{bottom:613.315626px;}
.y118{bottom:615.454625px;}
.yac{bottom:617.908624px;}
.y3f{bottom:617.909374px;}
.y86{bottom:617.910124px;}
.y19b{bottom:618.241624px;}
.y122{bottom:619.849624px;}
.y14f{bottom:620.914623px;}
.yd8{bottom:621.502623px;}
.y14{bottom:623.004347px;}
.y61{bottom:628.709370px;}
.y1ae{bottom:633.115618px;}
.y117{bottom:633.454618px;}
.y19a{bottom:634.441618px;}
.yc7{bottom:637.708616px;}
.y3e{bottom:637.709366px;}
.y85{bottom:637.710116px;}
.yd7{bottom:639.502616px;}
.y121{bottom:639.649616px;}
.y14e{bottom:640.714615px;}
.y13{bottom:642.203875px;}
.y60{bottom:648.509362px;}
.y199{bottom:650.641611px;}
.y116{bottom:651.454611px;}
.y1ad{bottom:652.915610px;}
.y12{bottom:656.908324px;}
.yd6{bottom:657.502608px;}
.yab{bottom:657.508608px;}
.y3d{bottom:657.509358px;}
.y84{bottom:657.510108px;}
.y198{bottom:666.841605px;}
.y5f{bottom:668.309354px;}
.y115{bottom:669.454604px;}
.y147{bottom:671.308453px;}
.y1ac{bottom:672.715602px;}
.yd5{bottom:675.502601px;}
.yaa{bottom:677.308601px;}
.y3c{bottom:677.309351px;}
.y83{bottom:677.310101px;}
.y11{bottom:677.604100px;}
.y197{bottom:683.041598px;}
.y114{bottom:687.454596px;}
.y146{bottom:687.507096px;}
.y5e{bottom:688.109346px;}
.y16b{bottom:690.654095px;}
.y1ab{bottom:692.515594px;}
.yd4{bottom:693.502594px;}
.ya9{bottom:697.108593px;}
.y3b{bottom:697.109343px;}
.y19e{bottom:697.110093px;}
.y196{bottom:699.241592px;}
.y10{bottom:704.308890px;}
.y113{bottom:705.454589px;}
.y16a{bottom:706.854089px;}
.y5d{bottom:707.909338px;}
.yd3{bottom:711.502587px;}
.y1aa{bottom:712.315587px;}
.y195{bottom:715.441585px;}
.ya8{bottom:716.908585px;}
.y3a{bottom:716.909335px;}
.y82{bottom:716.910085px;}
.y112{bottom:723.454582px;}
.y194{bottom:731.641579px;}
.y1a9{bottom:732.115579px;}
.yd2{bottom:735.502577px;}
.ya7{bottom:736.708577px;}
.y39{bottom:736.709327px;}
.y81{bottom:736.710077px;}
.yf{bottom:739.108576px;}
.y111{bottom:741.454575px;}
.y193{bottom:747.841572px;}
.y1a8{bottom:751.915571px;}
.yd1{bottom:753.502570px;}
.ya6{bottom:756.508569px;}
.y38{bottom:756.509319px;}
.y80{bottom:756.510069px;}
.y17a{bottom:757.999568px;}
.y110{bottom:759.454568px;}
.ye{bottom:761.608567px;}
.y192{bottom:764.041566px;}
.yd0{bottom:771.502563px;}
.y1a7{bottom:771.715563px;}
.y179{bottom:775.999561px;}
.ya5{bottom:776.306461px;}
.y37{bottom:776.307211px;}
.y7f{bottom:776.307961px;}
.yc9{bottom:776.309311px;}
.y10f{bottom:777.454560px;}
.ycf{bottom:789.502556px;}
.y1a6{bottom:791.515555px;}
.y178{bottom:793.999554px;}
.y10e{bottom:795.454553px;}
.ya4{bottom:796.108553px;}
.y36{bottom:796.109303px;}
.y7e{bottom:796.110053px;}
.yce{bottom:807.502548px;}
.y1a5{bottom:811.315547px;}
.y177{bottom:811.999547px;}
.y10d{bottom:813.454546px;}
.ya3{bottom:815.908545px;}
.y35{bottom:815.909295px;}
.y7d{bottom:815.910045px;}
.y176{bottom:829.999539px;}
.y1a4{bottom:831.115539px;}
.y10c{bottom:831.454539px;}
.ycd{bottom:831.502539px;}
.ya2{bottom:835.708537px;}
.y34{bottom:835.709287px;}
.y7c{bottom:835.710037px;}
.y175{bottom:847.999532px;}
.y1a3{bottom:850.915531px;}
.ycc{bottom:855.502529px;}
.ya1{bottom:855.508529px;}
.y33{bottom:855.509279px;}
.y7b{bottom:855.510029px;}
.y10b{bottom:861.454527px;}
.y1a2{bottom:870.715523px;}
.ya0{bottom:875.306421px;}
.y32{bottom:875.307171px;}
.y7a{bottom:875.307921px;}
.yc8{bottom:875.309271px;}
.y174{bottom:877.999520px;}
.y1a1{bottom:890.515515px;}
.ye4{bottom:891.856365px;}
.y9f{bottom:895.108513px;}
.y31{bottom:895.109263px;}
.y79{bottom:895.110013px;}
.ye3{bottom:908.056358px;}
.y30{bottom:914.908506px;}
.y5c{bottom:914.909256px;}
.ye2{bottom:924.256352px;}
.y2f{bottom:934.708498px;}
.y5b{bottom:934.709248px;}
.ye1{bottom:940.454995px;}
.y2e{bottom:954.508490px;}
.y5a{bottom:954.509240px;}
.ye0{bottom:956.654989px;}
.hb{height:22.509621px;}
.h5{height:23.968190px;}
.h3{height:29.763360px;}
.hf{height:29.764620px;}
.h1a{height:38.501985px;}
.h17{height:38.555985px;}
.hc{height:38.609985px;}
.hd{height:38.612556px;}
.h18{height:40.461272px;}
.h4{height:42.179983px;}
.h14{height:42.719983px;}
.h19{height:42.779983px;}
.h15{height:42.839983px;}
.h2{height:42.899983px;}
.h16{height:44.955702px;}
.he{height:45.035982px;}
.h10{height:46.388231px;}
.h1b{height:46.991981px;}
.h1c{height:47.057981px;}
.h9{height:47.189981px;}
.h8{height:47.193124px;}
.h6{height:48.656231px;}
.h12{height:49.488610px;}
.h13{height:49.491430px;}
.h7{height:55.043978px;}
.h1d{height:58.475977px;}
.ha{height:60.059976px;}
.h1{height:1020.472200px;}
.h0{height:1263.000000px;}
.h11{height:47189.981124px;}
.w2{width:72.284040px;}
.w1{width:722.835000px;}
.w0{width:892.500000px;}
.x4{left:-79.441915px;}
.x0{left:0.000000px;}
.xc{left:52.936895px;}
.x2{left:53.999944px;}
.xf{left:55.063144px;}
.x1c{left:56.111494px;}
.x1d{left:58.251693px;}
.xd{left:71.008738px;}
.x12{left:80.786934px;}
.x1{left:84.802500px;}
.xa{left:85.889932px;}
.x14{left:99.707926px;}
.x13{left:102.046425px;}
.x10{left:348.281827px;}
.x5{left:359.291822px;}
.x3{left:367.984800px;}
.x8{left:370.417318px;}
.xe{left:387.424311px;}
.x1b{left:416.692359px;}
.x19{left:422.008747px;}
.x1a{left:433.701003px;}
.x18{left:439.015290px;}
.xb{left:446.857200px;}
.x16{left:453.047245px;}
.x17{left:458.679503px;}
.x15{left:463.675686px;}
.x6{left:472.109777px;}
.x9{left:529.964754px;}
.x11{left:640.984210px;}
.x7{left:644.956208px;}
.x1e{left:646.085708px;}
@media print{
.v4{vertical-align:-70.399972pt;}
.v2{vertical-align:-15.985007pt;}
.v3{vertical-align:-2.015999pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:15.985007pt;}
.v5{vertical-align:17.759993pt;}
.v1{vertical-align:19.534979pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000480pt;}
.ls3{letter-spacing:0.001013pt;}
.ls4{letter-spacing:0.240480pt;}
.ls6{letter-spacing:0.409173pt;}
.ls5{letter-spacing:0.410987pt;}
.ls2{letter-spacing:286.559885pt;}
.ws1{word-spacing:-26.666656pt;}
.ws0{word-spacing:-23.999990pt;}
.ws3{word-spacing:-14.666661pt;}
.ws7{word-spacing:-14.490661pt;}
.ws2{word-spacing:-14.079994pt;}
.ws5{word-spacing:-11.999995pt;}
.wsb{word-spacing:-10.895996pt;}
.ws8{word-spacing:-8.550663pt;}
.ws4{word-spacing:-8.208637pt;}
.ws9{word-spacing:-7.058184pt;}
.wsa{word-spacing:-6.352365pt;}
.ws6{word-spacing:0.000000pt;}
._17{margin-left:-1076.527857pt;}
._18{margin-left:-1075.041474pt;}
._5c{margin-left:-14.163933pt;}
._5b{margin-left:-10.560465pt;}
._b{margin-left:-9.313067pt;}
._29{margin-left:-7.741042pt;}
._c{margin-left:-6.203262pt;}
._d{margin-left:-4.462807pt;}
._0{margin-left:-3.551874pt;}
._2{margin-left:-2.109843pt;}
._3{margin-left:-1.055701pt;}
._1{width:0.985625pt;}
._8{width:2.117939pt;}
._4{width:3.519805pt;}
._5{width:4.693816pt;}
._6{width:5.800602pt;}
._e{width:7.032210pt;}
._9{width:8.037650pt;}
._a{width:9.162883pt;}
._13{width:10.558588pt;}
._14{width:12.142646pt;}
._11{width:13.728576pt;}
._12{width:15.604564pt;}
._10{width:16.662764pt;}
._15{width:17.600456pt;}
._f{width:18.714219pt;}
._1a{width:19.653912pt;}
._16{width:20.989187pt;}
._2a{width:21.882365pt;}
._48{width:22.820914pt;}
._7{width:24.523185pt;}
._4b{width:25.987856pt;}
._19{width:26.927813pt;}
._4a{width:27.983607pt;}
._39{width:29.677988pt;}
._49{width:31.566373pt;}
._4d{width:32.991503pt;}
._4e{width:35.228228pt;}
._5d{width:37.488278pt;}
._5e{width:38.548907pt;}
._51{width:42.933316pt;}
._56{width:44.425849pt;}
._2b{width:49.494446pt;}
._2e{width:53.601045pt;}
._4f{width:55.005900pt;}
._50{width:57.866110pt;}
._32{width:61.822859pt;}
._2d{width:64.106108pt;}
._3c{width:66.056438pt;}
._5a{width:68.535439pt;}
._3b{width:73.564710pt;}
._36{width:76.342359pt;}
._44{width:78.202635pt;}
._3e{width:79.317888pt;}
._54{width:86.300513pt;}
._45{width:94.220389pt;}
._59{width:99.976621pt;}
._47{width:106.362952pt;}
._40{width:107.477877pt;}
._41{width:109.721396pt;}
._52{width:111.201022pt;}
._2f{width:116.196570pt;}
._43{width:120.852698pt;}
._57{width:123.448429pt;}
._34{width:142.560476pt;}
._38{width:148.221190pt;}
._46{width:149.247725pt;}
._58{width:162.641898pt;}
._42{width:167.034440pt;}
._22{width:172.965515pt;}
._53{width:176.152249pt;}
._3d{width:180.574256pt;}
._55{width:219.982471pt;}
._24{width:272.846149pt;}
._33{width:286.558285pt;}
._26{width:294.824968pt;}
._23{width:305.220004pt;}
._3f{width:322.781515pt;}
._37{width:369.561028pt;}
._2c{width:384.580872pt;}
._30{width:413.833596pt;}
._1d{width:416.832292pt;}
._1e{width:428.073126pt;}
._21{width:435.899649pt;}
._20{width:458.191441pt;}
._28{width:470.591406pt;}
._1c{width:520.137815pt;}
._3a{width:541.260210pt;}
._25{width:577.420399pt;}
._4c{width:587.999765pt;}
._27{width:613.633569pt;}
._31{width:636.159689pt;}
._1f{width:675.601033pt;}
._1b{width:683.197197pt;}
._35{width:873.227384pt;}
.fs2{font-size:22.933324pt;}
.fs7{font-size:27.983989pt;}
.fs8{font-size:31.093321pt;}
.fs6{font-size:34.202653pt;}
.fs0{font-size:47.999981pt;}
.fs1{font-size:53.333312pt;}
.fs4{font-size:58.666643pt;}
.fs3{font-size:63.999974pt;}
.fs5{font-size:74.666637pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:8.198070pt;}
.y2c{bottom:8.199136pt;}
.ye9{bottom:48.433511pt;}
.y8{bottom:48.433644pt;}
.y2d{bottom:49.378977pt;}
.y6{bottom:49.882977pt;}
.y2a{bottom:50.071390pt;}
.y28{bottom:50.804310pt;}
.y2{bottom:51.182976pt;}
.y1a0{bottom:51.268310pt;}
.y19f{bottom:52.024309pt;}
.y5{bottom:56.549641pt;}
.y29{bottom:56.738054pt;}
.y78{bottom:83.652963pt;}
.yd{bottom:89.045628pt;}
.y191{bottom:90.669627pt;}
.ye8{bottom:91.130960pt;}
.y173{bottom:91.224294pt;}
.yc6{bottom:91.652294pt;}
.y59{bottom:91.652960pt;}
.y9e{bottom:91.653627pt;}
.y16f{bottom:92.642960pt;}
.y14d{bottom:93.094960pt;}
.yfa{bottom:93.278293pt;}
.y10a{bottom:93.278426pt;}
.y13d{bottom:93.376960pt;}
.y169{bottom:94.324292pt;}
.y142{bottom:98.210024pt;}
.y77{bottom:101.252956pt;}
.ye7{bottom:105.530955pt;}
.y172{bottom:105.624288pt;}
.yc{bottom:106.645621pt;}
.y16e{bottom:107.042954pt;}
.y14c{bottom:107.494954pt;}
.y1{bottom:107.844960pt;}
.y190{bottom:108.269620pt;}
.yc5{bottom:109.252286pt;}
.y58{bottom:109.252953pt;}
.y9d{bottom:109.253620pt;}
.yf9{bottom:110.877619pt;}
.y109{bottom:110.877753pt;}
.y13c{bottom:110.976952pt;}
.y168{bottom:111.924285pt;}
.y141{bottom:115.810017pt;}
.y76{bottom:118.852949pt;}
.ye6{bottom:119.930949pt;}
.y171{bottom:120.024282pt;}
.y16d{bottom:121.442948pt;}
.yb{bottom:124.245614pt;}
.y18f{bottom:125.869613pt;}
.yc4{bottom:126.852279pt;}
.y57{bottom:126.852946pt;}
.y9c{bottom:126.853613pt;}
.yf8{bottom:128.476945pt;}
.y108{bottom:128.477079pt;}
.y13b{bottom:128.576945pt;}
.y167{bottom:129.524278pt;}
.y140{bottom:133.410010pt;}
.ye5{bottom:134.330943pt;}
.y170{bottom:134.424276pt;}
.y16c{bottom:135.842943pt;}
.y75{bottom:136.452942pt;}
.ya{bottom:141.845607pt;}
.y18e{bottom:143.469606pt;}
.yc3{bottom:144.452272pt;}
.y56{bottom:144.452939pt;}
.y9b{bottom:144.453606pt;}
.yf7{bottom:146.076272pt;}
.y107{bottom:146.076405pt;}
.y13a{bottom:146.176938pt;}
.y166{bottom:147.124271pt;}
.y3{bottom:150.931200pt;}
.y13f{bottom:151.010003pt;}
.y2b{bottom:151.308800pt;}
.y74{bottom:154.052935pt;}
.y9{bottom:159.445600pt;}
.y18d{bottom:161.069599pt;}
.yc2{bottom:162.052265pt;}
.y55{bottom:162.052932pt;}
.y9a{bottom:162.053599pt;}
.yf6{bottom:163.678131pt;}
.y106{bottom:163.678265pt;}
.y139{bottom:163.776931pt;}
.y165{bottom:164.724264pt;}
.y73{bottom:171.652928pt;}
.y18c{bottom:178.669592pt;}
.y13e{bottom:179.276258pt;}
.yc1{bottom:179.652258pt;}
.y54{bottom:179.652925pt;}
.y99{bottom:179.653592pt;}
.yf5{bottom:181.278124pt;}
.y138{bottom:181.376924pt;}
.y164{bottom:182.324257pt;}
.y105{bottom:188.211322pt;}
.y72{bottom:189.252921pt;}
.y18b{bottom:196.269585pt;}
.yc0{bottom:197.252251pt;}
.y53{bottom:197.252918pt;}
.y98{bottom:197.253585pt;}
.yf4{bottom:198.878117pt;}
.y137{bottom:198.976917pt;}
.y163{bottom:199.924250pt;}
.y7{bottom:203.685582pt;}
.y71{bottom:206.852914pt;}
.y145{bottom:211.073579pt;}
.y18a{bottom:213.869578pt;}
.ybf{bottom:214.852244pt;}
.y52{bottom:214.852911pt;}
.y97{bottom:214.853578pt;}
.yf3{bottom:216.476244pt;}
.y104{bottom:216.476377pt;}
.y136{bottom:216.576910pt;}
.y162{bottom:217.524243pt;}
.y70{bottom:224.452907pt;}
.y144{bottom:225.473573pt;}
.y189{bottom:231.469571pt;}
.ybe{bottom:232.452237pt;}
.y51{bottom:232.452904pt;}
.y96{bottom:232.453571pt;}
.yf2{bottom:234.078103pt;}
.y103{bottom:234.078237pt;}
.y135{bottom:234.176903pt;}
.y161{bottom:235.124236pt;}
.y143{bottom:239.873568pt;}
.y6f{bottom:242.052900pt;}
.y27{bottom:244.185513pt;}
.y188{bottom:249.069564pt;}
.ybd{bottom:250.052230pt;}
.y50{bottom:250.052897pt;}
.y95{bottom:250.053564pt;}
.yf1{bottom:251.676230pt;}
.y102{bottom:251.676363pt;}
.y134{bottom:251.776896pt;}
.y160{bottom:252.724229pt;}
.y6e{bottom:259.652893pt;}
.y187{bottom:266.669557pt;}
.ybc{bottom:267.652223pt;}
.y4f{bottom:267.652890pt;}
.y94{bottom:267.653556pt;}
.yf0{bottom:269.277422pt;}
.y101{bottom:269.277556pt;}
.y133{bottom:269.376889pt;}
.y15f{bottom:270.324222pt;}
.y26{bottom:272.985501pt;}
.y6d{bottom:277.252886pt;}
.y186{bottom:284.269550pt;}
.ybb{bottom:285.252216pt;}
.y4e{bottom:285.252883pt;}
.y93{bottom:285.253549pt;}
.yef{bottom:286.877415pt;}
.y100{bottom:286.877549pt;}
.y132{bottom:286.976882pt;}
.y131{bottom:286.977549pt;}
.y25{bottom:287.385495pt;}
.y15e{bottom:287.924215pt;}
.y6c{bottom:294.852879pt;}
.y24{bottom:301.785489pt;}
.y185{bottom:301.869543pt;}
.yba{bottom:302.852209pt;}
.y4d{bottom:302.852876pt;}
.y92{bottom:302.853542pt;}
.yee{bottom:304.476208pt;}
.yff{bottom:304.476342pt;}
.y130{bottom:304.577542pt;}
.y15d{bottom:305.524208pt;}
.y6b{bottom:312.452872pt;}
.y23{bottom:316.185484pt;}
.y184{bottom:319.469536pt;}
.yb9{bottom:320.452202pt;}
.y4c{bottom:320.452869pt;}
.ycb{bottom:320.453535pt;}
.yed{bottom:322.077401pt;}
.yfe{bottom:322.077535pt;}
.y12f{bottom:322.177535pt;}
.y15c{bottom:323.124201pt;}
.y6a{bottom:330.052865pt;}
.y22{bottom:330.585478pt;}
.y183{bottom:337.069529pt;}
.yb8{bottom:338.052195pt;}
.y4b{bottom:338.052862pt;}
.yca{bottom:338.053528pt;}
.yec{bottom:339.676194pt;}
.yfd{bottom:339.676328pt;}
.y12e{bottom:339.777528pt;}
.y15b{bottom:340.724194pt;}
.y21{bottom:344.985472pt;}
.y69{bottom:347.652858pt;}
.y182{bottom:354.668322pt;}
.yb7{bottom:355.652188pt;}
.y4a{bottom:355.652855pt;}
.y91{bottom:355.653521pt;}
.yeb{bottom:357.277387pt;}
.yfc{bottom:357.277521pt;}
.y12d{bottom:357.377521pt;}
.y15a{bottom:358.324187pt;}
.y20{bottom:359.385466pt;}
.y68{bottom:365.252851pt;}
.y181{bottom:372.269515pt;}
.yb6{bottom:373.252181pt;}
.y49{bottom:373.252848pt;}
.y90{bottom:373.253514pt;}
.y1f{bottom:373.785461pt;}
.yea{bottom:374.876180pt;}
.yfb{bottom:374.876847pt;}
.y12c{bottom:374.977514pt;}
.y158{bottom:375.924180pt;}
.y67{bottom:382.852844pt;}
.y14b{bottom:386.501509pt;}
.y1e{bottom:388.185455pt;}
.y180{bottom:389.869508pt;}
.yb5{bottom:390.852174pt;}
.y48{bottom:390.852841pt;}
.y8f{bottom:390.853507pt;}
.y12b{bottom:392.577506pt;}
.y157{bottom:393.524173pt;}
.y14a{bottom:400.901503pt;}
.y1d{bottom:402.585449pt;}
.y1b7{bottom:404.369502pt;}
.y17f{bottom:407.469501pt;}
.yb4{bottom:408.452167pt;}
.y47{bottom:408.452833pt;}
.y8e{bottom:408.453500pt;}
.y12a{bottom:410.177499pt;}
.y156{bottom:411.124166pt;}
.y149{bottom:415.301497pt;}
.y1c{bottom:416.985443pt;}
.y66{bottom:418.052830pt;}
.y120{bottom:419.070829pt;}
.y1b6{bottom:421.969495pt;}
.y17e{bottom:425.069494pt;}
.yb3{bottom:426.052160pt;}
.y46{bottom:426.052826pt;}
.y8d{bottom:426.053493pt;}
.y129{bottom:427.777492pt;}
.y155{bottom:428.724159pt;}
.y148{bottom:429.701492pt;}
.y1b{bottom:431.385438pt;}
.y11f{bottom:435.070823pt;}
.y65{bottom:435.652823pt;}
.y1b5{bottom:439.569488pt;}
.ydf{bottom:440.446821pt;}
.y17d{bottom:442.667620pt;}
.yb2{bottom:443.652153pt;}
.y45{bottom:443.652819pt;}
.y8c{bottom:443.653486pt;}
.y128{bottom:445.377485pt;}
.y1a{bottom:445.785432pt;}
.y154{bottom:446.324152pt;}
.y11e{bottom:451.070816pt;}
.yde{bottom:456.446814pt;}
.y1b4{bottom:457.169481pt;}
.y19{bottom:460.185426pt;}
.y17c{bottom:460.269479pt;}
.yb1{bottom:461.252146pt;}
.y44{bottom:461.252812pt;}
.y8b{bottom:461.253479pt;}
.y127{bottom:462.977478pt;}
.y153{bottom:463.924145pt;}
.y11d{bottom:467.070810pt;}
.y64{bottom:470.852809pt;}
.ydd{bottom:472.446808pt;}
.y18{bottom:474.585420pt;}
.y1b3{bottom:474.769474pt;}
.y17b{bottom:477.869472pt;}
.yb0{bottom:478.852139pt;}
.y43{bottom:478.852805pt;}
.y8a{bottom:478.853472pt;}
.y126{bottom:480.577471pt;}
.y152{bottom:481.524138pt;}
.y11c{bottom:483.070804pt;}
.ydc{bottom:488.446801pt;}
.y63{bottom:488.452801pt;}
.y17{bottom:488.985415pt;}
.y1b2{bottom:492.369467pt;}
.yaf{bottom:496.452132pt;}
.y42{bottom:496.452798pt;}
.y89{bottom:496.453465pt;}
.y125{bottom:498.177464pt;}
.y11b{bottom:499.070797pt;}
.y151{bottom:499.124131pt;}
.y16{bottom:503.385409pt;}
.ydb{bottom:504.446795pt;}
.y1b1{bottom:509.969460pt;}
.yae{bottom:514.052125pt;}
.y41{bottom:514.052791pt;}
.y88{bottom:514.053458pt;}
.y11a{bottom:515.070791pt;}
.y124{bottom:515.777457pt;}
.y150{bottom:516.724124pt;}
.yda{bottom:520.446789pt;}
.y19d{bottom:520.748122pt;}
.y62{bottom:523.652787pt;}
.y1b0{bottom:527.569453pt;}
.y119{bottom:531.070784pt;}
.yad{bottom:531.652118pt;}
.y40{bottom:531.652784pt;}
.y87{bottom:531.653451pt;}
.y123{bottom:533.377450pt;}
.y159{bottom:534.324116pt;}
.y19c{bottom:535.148116pt;}
.y15{bottom:535.385396pt;}
.yd9{bottom:536.446782pt;}
.y1af{bottom:545.169445pt;}
.y118{bottom:547.070778pt;}
.yac{bottom:549.252110pt;}
.y3f{bottom:549.252777pt;}
.y86{bottom:549.253444pt;}
.y19b{bottom:549.548110pt;}
.y122{bottom:550.977443pt;}
.y14f{bottom:551.924109pt;}
.yd8{bottom:552.446776pt;}
.y14{bottom:553.781642pt;}
.y61{bottom:558.852773pt;}
.y1ae{bottom:562.769438pt;}
.y117{bottom:563.070772pt;}
.y19a{bottom:563.948105pt;}
.yc7{bottom:566.852103pt;}
.y3e{bottom:566.852770pt;}
.y85{bottom:566.853437pt;}
.yd7{bottom:568.446769pt;}
.y121{bottom:568.577436pt;}
.y14e{bottom:569.524102pt;}
.y13{bottom:570.847889pt;}
.y60{bottom:576.452766pt;}
.y199{bottom:578.348099pt;}
.y116{bottom:579.070765pt;}
.y1ad{bottom:580.369431pt;}
.y12{bottom:583.918510pt;}
.yd6{bottom:584.446763pt;}
.yab{bottom:584.452096pt;}
.y3d{bottom:584.452763pt;}
.y84{bottom:584.453430pt;}
.y198{bottom:592.748093pt;}
.y5f{bottom:594.052759pt;}
.y115{bottom:595.070759pt;}
.y147{bottom:596.718625pt;}
.y1ac{bottom:597.969424pt;}
.yd5{bottom:600.446757pt;}
.yaa{bottom:602.052089pt;}
.y3c{bottom:602.052756pt;}
.y83{bottom:602.053423pt;}
.y11{bottom:602.314756pt;}
.y197{bottom:607.148087pt;}
.y114{bottom:611.070752pt;}
.y146{bottom:611.117419pt;}
.y5e{bottom:611.652752pt;}
.y16b{bottom:613.914751pt;}
.y1ab{bottom:615.569417pt;}
.yd4{bottom:616.446750pt;}
.ya9{bottom:619.652082pt;}
.y3b{bottom:619.652749pt;}
.y19e{bottom:619.653416pt;}
.y196{bottom:621.548082pt;}
.y10{bottom:626.052346pt;}
.y113{bottom:627.070746pt;}
.y16a{bottom:628.314746pt;}
.y5d{bottom:629.252745pt;}
.yd3{bottom:632.446744pt;}
.y1aa{bottom:633.169410pt;}
.y195{bottom:635.948076pt;}
.ya8{bottom:637.252075pt;}
.y3a{bottom:637.252742pt;}
.y82{bottom:637.253409pt;}
.y112{bottom:643.070740pt;}
.y194{bottom:650.348070pt;}
.y1a9{bottom:650.769403pt;}
.yd2{bottom:653.780069pt;}
.ya7{bottom:654.852068pt;}
.y39{bottom:654.852735pt;}
.y81{bottom:654.853402pt;}
.yf{bottom:656.985401pt;}
.y111{bottom:659.070733pt;}
.y193{bottom:664.748064pt;}
.y1a8{bottom:668.369396pt;}
.yd1{bottom:669.780062pt;}
.ya6{bottom:672.452061pt;}
.y38{bottom:672.452728pt;}
.y80{bottom:672.453395pt;}
.y17a{bottom:673.777394pt;}
.y110{bottom:675.070727pt;}
.ye{bottom:676.985393pt;}
.y192{bottom:679.148059pt;}
.yd0{bottom:685.780056pt;}
.y1a7{bottom:685.969389pt;}
.y179{bottom:689.777388pt;}
.ya5{bottom:690.050188pt;}
.y37{bottom:690.050854pt;}
.y7f{bottom:690.051521pt;}
.yc9{bottom:690.052721pt;}
.y10f{bottom:691.070720pt;}
.ycf{bottom:701.780049pt;}
.y1a6{bottom:703.569382pt;}
.y178{bottom:705.777381pt;}
.y10e{bottom:707.070714pt;}
.ya4{bottom:707.652047pt;}
.y36{bottom:707.652714pt;}
.y7e{bottom:707.653380pt;}
.yce{bottom:717.780043pt;}
.y1a5{bottom:721.169375pt;}
.y177{bottom:721.777375pt;}
.y10d{bottom:723.070708pt;}
.ya3{bottom:725.252040pt;}
.y35{bottom:725.252707pt;}
.y7d{bottom:725.253373pt;}
.y176{bottom:737.777368pt;}
.y1a4{bottom:738.769368pt;}
.y10c{bottom:739.070701pt;}
.ycd{bottom:739.113368pt;}
.ya2{bottom:742.852033pt;}
.y34{bottom:742.852700pt;}
.y7c{bottom:742.853366pt;}
.y175{bottom:753.777362pt;}
.y1a3{bottom:756.369361pt;}
.ycc{bottom:760.446693pt;}
.ya1{bottom:760.452026pt;}
.y33{bottom:760.452693pt;}
.y7b{bottom:760.453359pt;}
.y10b{bottom:765.737357pt;}
.y1a2{bottom:773.969354pt;}
.ya0{bottom:778.050152pt;}
.y32{bottom:778.050819pt;}
.y7a{bottom:778.051486pt;}
.yc8{bottom:778.052686pt;}
.y174{bottom:780.444018pt;}
.y1a1{bottom:791.569347pt;}
.ye4{bottom:792.761213pt;}
.y9f{bottom:795.652012pt;}
.y31{bottom:795.652679pt;}
.y79{bottom:795.653345pt;}
.ye3{bottom:807.161207pt;}
.y30{bottom:813.252005pt;}
.y5c{bottom:813.252672pt;}
.ye2{bottom:821.561202pt;}
.y2f{bottom:830.851998pt;}
.y5b{bottom:830.852665pt;}
.ye1{bottom:835.959996pt;}
.y2e{bottom:848.451991pt;}
.y5a{bottom:848.452657pt;}
.ye0{bottom:850.359990pt;}
.hb{height:20.008552pt;}
.h5{height:21.305058pt;}
.h3{height:26.456320pt;}
.hf{height:26.457440pt;}
.h1a{height:34.223986pt;}
.h17{height:34.271986pt;}
.hc{height:34.319986pt;}
.hd{height:34.322272pt;}
.h18{height:35.965575pt;}
.h4{height:37.493318pt;}
.h14{height:37.973318pt;}
.h19{height:38.026651pt;}
.h15{height:38.079985pt;}
.h2{height:38.133318pt;}
.h16{height:39.960624pt;}
.he{height:40.031984pt;}
.h10{height:41.233984pt;}
.h1b{height:41.770650pt;}
.h1c{height:41.829317pt;}
.h9{height:41.946650pt;}
.h8{height:41.949444pt;}
.h6{height:43.249983pt;}
.h12{height:43.989876pt;}
.h13{height:43.992382pt;}
.h7{height:48.927980pt;}
.h1d{height:51.978646pt;}
.ha{height:53.386645pt;}
.h1{height:907.086400pt;}
.h0{height:1122.666667pt;}
.h11{height:41946.649888pt;}
.w2{width:64.252480pt;}
.w1{width:642.520000pt;}
.w0{width:793.333333pt;}
.x4{left:-70.615036pt;}
.x0{left:0.000000pt;}
.xc{left:47.055018pt;}
.x2{left:47.999951pt;}
.xf{left:48.945017pt;}
.x1c{left:49.876883pt;}
.x1d{left:51.779282pt;}
.xd{left:63.118878pt;}
.x12{left:71.810608pt;}
.x1{left:75.380000pt;}
.xa{left:76.346606pt;}
.x14{left:88.629268pt;}
.x13{left:90.707934pt;}
.x10{left:309.583846pt;}
.x5{left:319.370509pt;}
.x3{left:327.097600pt;}
.x8{left:329.259838pt;}
.xe{left:344.377165pt;}
.x1b{left:370.393208pt;}
.x19{left:375.118886pt;}
.x1a{left:385.512002pt;}
.x18{left:390.235814pt;}
.xb{left:397.206400pt;}
.x16{left:402.708662pt;}
.x17{left:407.715113pt;}
.x15{left:412.156165pt;}
.x6{left:419.653135pt;}
.x9{left:471.079781pt;}
.x11{left:569.763742pt;}
.x7{left:573.294407pt;}
.x1e{left:574.298407pt;}
}




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