
    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_7374d164c47037b529368539.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_242c11dc0ea8764420d26c8a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.191000;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_e65298112d3aecb7ca75da28.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.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:ff4;src:url('chunks/assets/font_31539648bdc5198378603276.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.665000;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_e3242da6e532bf5d93f3fcbe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_af9fc83e08420e41dd06a557.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_6d32d75b26576a01e3441a6b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.907000;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_27622a249c6ce516f2153199.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.440000;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_d87940a8e61f5569defb798b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.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:ffa;src:url('chunks/assets/font_5f451ea830a8f99c04e6ad52.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.899000;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_a90cb94dfdc52d1b1cf59036.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.735000;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_9d31fdac35beea5cf52df361.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.049000;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_1beba030bea36d2136539043.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.482000;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_0ffd7479d423f66e0ad9c5db.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.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:fff;src:url('chunks/assets/font_82bb70f847f8ab9826ebe073.woff2')format("woff");}.fff{font-family:fff;line-height:1.735000;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_f72b6819dd118532d683c6c4.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.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:ff11;src:url('chunks/assets/font_033820f0123ca3e003d5ef0b.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.009000;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_9bf67c2d5db9304f75b3ff78.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.009000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.va{vertical-align:-107.676396px;}
.v2{vertical-align:-50.822725px;}
.v3{vertical-align:-19.947486px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.915830px;}
.vd{vertical-align:21.143188px;}
.v5{vertical-align:32.863316px;}
.vc{vertical-align:37.519954px;}
.vb{vertical-align:48.234222px;}
.v4{vertical-align:54.878936px;}
.v1{vertical-align:69.462617px;}
.v7{vertical-align:87.742253px;}
.v8{vertical-align:107.676396px;}
.v9{vertical-align:140.539712px;}
.ls23{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000695px;}
.lsf{letter-spacing:0.001874px;}
.ls8{letter-spacing:0.007270px;}
.lsd{letter-spacing:0.010191px;}
.ls12{letter-spacing:0.020991px;}
.ls19{letter-spacing:0.023522px;}
.ls1a{letter-spacing:0.026702px;}
.ls15{letter-spacing:0.034333px;}
.ls21{letter-spacing:0.045454px;}
.ls9{letter-spacing:5.396901px;}
.ls20{letter-spacing:6.643532px;}
.ls3{letter-spacing:6.645897px;}
.ls1b{letter-spacing:6.653160px;}
.ls1{letter-spacing:9.494390px;}
.ls0{letter-spacing:9.647525px;}
.ls2{letter-spacing:11.430777px;}
.ls1c{letter-spacing:13.760599px;}
.ls11{letter-spacing:22.150922px;}
.ls22{letter-spacing:26.984583px;}
.ls7{letter-spacing:29.510233px;}
.lse{letter-spacing:29.546159px;}
.ls5{letter-spacing:36.174866px;}
.ls6{letter-spacing:36.188209px;}
.ls18{letter-spacing:36.821327px;}
.ls13{letter-spacing:36.954256px;}
.lsa{letter-spacing:41.555947px;}
.lsb{letter-spacing:41.569290px;}
.ls14{letter-spacing:43.566778px;}
.ls16{letter-spacing:48.961201px;}
.ls1d{letter-spacing:55.564313px;}
.ls10{letter-spacing:132.927441px;}
.ls17{letter-spacing:155.128119px;}
.ls1e{letter-spacing:166.151416px;}
.lsc{letter-spacing:176.220895px;}
.ls1f{letter-spacing:195.665689px;}
.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;}
}
.ws48{word-spacing:-191.418477px;}
.ws21{word-spacing:-86.589937px;}
.ws20{word-spacing:-70.345814px;}
.ws3b{word-spacing:-64.390798px;}
.ws29{word-spacing:-57.080593px;}
.ws2b{word-spacing:-57.001394px;}
.ws2{word-spacing:-47.854619px;}
.ws24{word-spacing:-41.578691px;}
.ws22{word-spacing:-41.498012px;}
.ws46{word-spacing:-36.927670px;}
.ws25{word-spacing:-36.196060px;}
.ws27{word-spacing:-36.183688px;}
.ws23{word-spacing:-34.199151px;}
.ws30{word-spacing:-34.164338px;}
.ws2c{word-spacing:-34.151966px;}
.ws2f{word-spacing:-34.150995px;}
.ws1f{word-spacing:-33.232245px;}
.ws26{word-spacing:-28.804149px;}
.ws2a{word-spacing:-28.790138px;}
.ws31{word-spacing:-28.784228px;}
.ws33{word-spacing:-28.783257px;}
.ws34{word-spacing:-28.769915px;}
.ws37{word-spacing:-26.821554px;}
.ws36{word-spacing:-26.820583px;}
.ws2e{word-spacing:-26.808211px;}
.ws49{word-spacing:-26.585863px;}
.ws19{word-spacing:-23.260168px;}
.ws39{word-spacing:-21.426551px;}
.ws38{word-spacing:-21.425580px;}
.ws32{word-spacing:-21.413209px;}
.ws35{word-spacing:-21.412238px;}
.ws4d{word-spacing:-16.138853px;}
.wsb{word-spacing:-9.647525px;}
.ws3{word-spacing:-8.417508px;}
.ws8{word-spacing:-8.330494px;}
.ws2d{word-spacing:-7.417437px;}
.ws4a{word-spacing:-6.380591px;}
.ws53{word-spacing:-6.247662px;}
.ws4b{word-spacing:-6.114733px;}
.ws52{word-spacing:-5.848875px;}
.ws5a{word-spacing:-5.450088px;}
.ws5{word-spacing:-3.675434px;}
.ws56{word-spacing:-3.456153px;}
.ws1e{word-spacing:-2.924438px;}
.ws59{word-spacing:-2.392722px;}
.ws4c{word-spacing:-1.993935px;}
.ws17{word-spacing:-0.797574px;}
.ws0{word-spacing:-0.330729px;}
.ws1a{word-spacing:-0.191418px;}
.ws13{word-spacing:-0.153135px;}
.ws11{word-spacing:0.000000px;}
.ws4e{word-spacing:0.044921px;}
.ws41{word-spacing:0.797574px;}
.wsd{word-spacing:1.196361px;}
.ws1c{word-spacing:1.728077px;}
.ws54{word-spacing:2.658580px;}
.ws40{word-spacing:3.057367px;}
.wsc{word-spacing:3.456153px;}
.wsf{word-spacing:3.722011px;}
.ws10{word-spacing:3.854940px;}
.ws50{word-spacing:5.554377px;}
.ws44{word-spacing:5.583017px;}
.ws4{word-spacing:5.933973px;}
.ws57{word-spacing:7.709881px;}
.ws45{word-spacing:7.975739px;}
.ws4f{word-spacing:8.423563px;}
.ws3d{word-spacing:9.836744px;}
.ws6{word-spacing:10.631882px;}
.ws51{word-spacing:10.634318px;}
.ws7{word-spacing:10.730757px;}
.wse{word-spacing:10.767247px;}
.ws55{word-spacing:10.900176px;}
.ws43{word-spacing:11.166034px;}
.ws15{word-spacing:12.229466px;}
.ws3a{word-spacing:13.824614px;}
.ws3c{word-spacing:13.957543px;}
.ws9{word-spacing:14.356426px;}
.ws1{word-spacing:15.504763px;}
.ws14{word-spacing:15.818549px;}
.ws3f{word-spacing:18.078341px;}
.ws1d{word-spacing:19.540560px;}
.ws58{word-spacing:20.338134px;}
.ws3e{word-spacing:22.332069px;}
.ws42{word-spacing:24.990648px;}
.ws47{word-spacing:33.099316px;}
.wsa{word-spacing:36.489249px;}
.ws12{word-spacing:38.283629px;}
.ws16{word-spacing:46.525143px;}
.ws1b{word-spacing:57.080989px;}
.ws28{word-spacing:99.696734px;}
.ws18{word-spacing:408.889540px;}
._8{margin-left:-46.538747px;}
._3{margin-left:-37.518019px;}
._b{margin-left:-14.170200px;}
._12{margin-left:-12.229466px;}
._6{margin-left:-10.886956px;}
._2{margin-left:-9.188119px;}
._5{margin-left:-6.891089px;}
._18{margin-left:-4.577157px;}
._a{margin-left:-3.190296px;}
._9{margin-left:-2.153464px;}
._16{margin-left:-1.113612px;}
._1c{width:2.073192px;}
._17{width:4.687051px;}
._1d{width:5.707694px;}
._7{width:6.819302px;}
._1{width:9.341254px;}
._4{width:10.566337px;}
._1a{width:11.572336px;}
._1b{width:13.505496px;}
._19{width:15.482610px;}
._30{width:28.313873px;}
._2d{width:31.966886px;}
._11{width:33.498103px;}
._d{width:38.948191px;}
._0{width:44.317729px;}
._c{width:46.923930px;}
._e{width:53.357721px;}
._20{width:56.255558px;}
._21{width:57.824106px;}
._f{width:66.464490px;}
._39{width:74.839015px;}
._10{width:91.455138px;}
._1f{width:95.469607px;}
._1e{width:109.267621px;}
._23{width:158.999079px;}
._31{width:160.195439px;}
._24{width:166.028295px;}
._25{width:188.094506px;}
._14{width:201.121546px;}
._22{width:207.103350px;}
._34{width:223.187756px;}
._36{width:225.713407px;}
._29{width:230.631779px;}
._15{width:236.480654px;}
._2b{width:237.942873px;}
._27{width:239.006305px;}
._38{width:248.468231px;}
._37{width:272.238550px;}
._13{width:282.341152px;}
._35{width:289.386388px;}
._28{width:294.437689px;}
._2f{width:297.096269px;}
._2c{width:309.059877px;}
._2a{width:352.527653px;}
._2e{width:360.902179px;}
._26{width:368.213273px;}
._32{width:381.373242px;}
._33{width:629.131641px;}
.fc2{color:transparent;}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(229,241,251);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:40.784104px;}
.fsa{font-size:58.263006px;}
.fs4{font-size:79.757921px;}
.fs7{font-size:83.669668px;}
.fsc{font-size:87.394509px;}
.fs9{font-size:93.050019px;}
.fs8{font-size:106.343450px;}
.fs5{font-size:119.636882px;}
.fs6{font-size:125.504502px;}
.fs3{font-size:132.928979px;}
.fs2{font-size:153.135316px;}
.fs1{font-size:191.418477px;}
.fs0{font-size:330.729318px;}
.y1a{bottom:-59.568302px;}
.y0{bottom:0.000000px;}
.y68{bottom:14.154717px;}
.y69{bottom:43.537470px;}
.y1d{bottom:46.336712px;}
.y73{bottom:50.494643px;}
.y72{bottom:70.871318px;}
.y71{bottom:91.247993px;}
.y70{bottom:111.624667px;}
.y6f{bottom:132.001342px;}
.y6a{bottom:133.896794px;}
.y83{bottom:160.247338px;}
.y50{bottom:160.577572px;}
.y1f{bottom:174.928934px;}
.y6e{bottom:181.835203px;}
.y82{bottom:200.125631px;}
.y4f{bottom:200.455866px;}
.y6b{bottom:224.256119px;}
.y81{bottom:240.003925px;}
.y1b{bottom:262.524148px;}
.y4e{bottom:266.919688px;}
.y80{bottom:279.882218px;}
.y4d{bottom:306.797982px;}
.y6c{bottom:314.615443px;}
.y7f{bottom:319.763847px;}
.y1e{bottom:350.542982px;}
.y4c{bottom:373.265140px;}
.y7e{bottom:377.838384px;}
.y6d{bottom:404.974768px;}
.y4b{bottom:413.143433px;}
.y4a{bottom:479.607256px;}
.y1c{bottom:481.013253px;}
.y7d{bottom:486.105199px;}
.y49{bottom:519.485549px;}
.y7c{bottom:525.986829px;}
.y48{bottom:559.363843px;}
.y7b{bottom:565.865122px;}
.y7a{bottom:605.743416px;}
.y47{bottom:616.497712px;}
.y79{bottom:645.621709px;}
.y78{bottom:685.500003px;}
.y77{bottom:725.381632px;}
.y46{bottom:725.708530px;}
.y76{bottom:765.259925px;}
.y45{bottom:765.586824px;}
.y44{bottom:813.030485px;}
.y75{bottom:822.390459px;}
.y43{bottom:886.142358px;}
.y74{bottom:929.729949px;}
.y42{bottom:935.991058px;}
.y67{bottom:969.608243px;}
.y41{bottom:985.839759px;}
.y40{bottom:1035.688460px;}
.y3f{bottom:1085.537161px;}
.y3e{bottom:1135.385862px;}
.y3d{bottom:1184.440666px;}
.y3a{bottom:1215.432654px;}
.y39{bottom:1223.648484px;}
.y3c{bottom:1255.220884px;}
.y3b{bottom:1265.191291px;}
.y38{bottom:1303.962132px;}
.y35{bottom:1343.169950px;}
.y37{bottom:1374.742351px;}
.y36{bottom:1384.712758px;}
.y34{bottom:1418.960390px;}
.y31{bottom:1458.168208px;}
.y66{bottom:1483.049194px;}
.y33{bottom:1489.740608px;}
.y32{bottom:1499.711016px;}
.y2f{bottom:1534.188811px;}
.y65{bottom:1557.048363px;}
.y30{bottom:1565.184135px;}
.y2c{bottom:1573.399964px;}
.y2e{bottom:1604.969029px;}
.y2d{bottom:1614.939436px;}
.y64{bottom:1631.050867px;}
.y2a{bottom:1649.187068px;}
.y27{bottom:1666.963014px;}
.y2b{bottom:1680.182393px;}
.y26{bottom:1688.398222px;}
.y63{bottom:1690.866640px;}
.y29{bottom:1719.967287px;}
.y28{bottom:1729.937694px;}
.y62{bottom:1758.661407px;}
.y25{bottom:1785.273621px;}
.y61{bottom:1812.683068px;}
.y24{bottom:1825.151915px;}
.y23{bottom:1865.033544px;}
.y60{bottom:1879.150226px;}
.y22{bottom:1904.911837px;}
.y5f{bottom:1919.028520px;}
.y5e{bottom:1958.906813px;}
.y21{bottom:1962.042371px;}
.y5d{bottom:1998.785107px;}
.y5c{bottom:2065.248929px;}
.y20{bottom:2086.093719px;}
.y5b{bottom:2105.130558px;}
.y18{bottom:2108.983292px;}
.y19{bottom:2125.972012px;}
.y5a{bottom:2146.963572px;}
.y17{bottom:2156.837244px;}
.y16{bottom:2204.691196px;}
.y59{bottom:2220.962741px;}
.y15{bottom:2253.876093px;}
.y58{bottom:2294.965245px;}
.y14{bottom:2349.914232px;}
.y57{bottom:2354.781018px;}
.y13{bottom:2389.795861px;}
.y56{bottom:2422.575785px;}
.y12{bottom:2429.674154px;}
.y11{bottom:2469.552448px;}
.y55{bottom:2476.597446px;}
.y10{bottom:2536.016270px;}
.y54{bottom:2543.064604px;}
.yf{bottom:2575.894564px;}
.y53{bottom:2582.942898px;}
.y52{bottom:2622.821191px;}
.ye{bottom:2679.951725px;}
.y51{bottom:2680.895728px;}
.yd{bottom:2790.953814px;}
.yc{bottom:2830.832108px;}
.yb{bottom:2870.713737px;}
.ya{bottom:2910.592030px;}
.y9{bottom:2950.470324px;}
.y8{bottom:2990.348617px;}
.y7{bottom:3050.214425px;}
.y6{bottom:3174.839513px;}
.y5{bottom:3227.423488px;}
.y4{bottom:3251.273743px;}
.y3{bottom:3300.535360px;}
.y2{bottom:3348.312591px;}
.y1{bottom:3452.923479px;}
.he{height:5.317159px;}
.h1c{height:44.221622px;}
.h19{height:45.153830px;}
.h1a{height:51.731266px;}
.h4{height:57.807564px;}
.hd{height:65.414163px;}
.h1b{height:66.245038px;}
.hf{height:69.787514px;}
.ha{height:87.264849px;}
.h12{height:93.714930px;}
.hb{height:96.559853px;}
.hc{height:99.696734px;}
.h16{height:103.019959px;}
.h5{height:108.630289px;}
.h14{height:120.306442px;}
.h7{height:120.699513px;}
.h10{height:124.666450px;}
.h9{height:130.897274px;}
.h13{height:132.560051px;}
.h6{height:137.821304px;}
.h15{height:145.856872px;}
.h17{height:148.349320px;}
.h11{height:157.529767px;}
.h3{height:173.807977px;}
.h2{height:238.125109px;}
.h18{height:457.617678px;}
.h8{height:520.895774px;}
.h0{height:3575.905500px;}
.h1{height:3576.000000px;}
.w2{width:472.780903px;}
.w3{width:1121.382617px;}
.w0{width:2525.670000px;}
.w1{width:2526.000000px;}
.x0{left:0.000000px;}
.x4e{left:22.457401px;}
.x4d{left:32.553857px;}
.x10{left:40.926404px;}
.x4c{left:60.891374px;}
.x18{left:79.552387px;}
.x11{left:91.643139px;}
.x4f{left:117.255392px;}
.x19{left:121.018474px;}
.x3d{left:125.878589px;}
.x8{left:129.401088px;}
.xa{left:139.925222px;}
.x3e{left:162.634667px;}
.xb{left:176.677964px;}
.x23{left:225.255763px;}
.xd{left:227.947673px;}
.xe{left:236.770600px;}
.x12{left:240.474986px;}
.xc{left:248.035259px;}
.x3b{left:251.104103px;}
.x1b{left:256.641365px;}
.x1c{left:259.116454px;}
.x2c{left:260.964432px;}
.x13{left:267.115980px;}
.x1a{left:274.370610px;}
.x2b{left:276.218588px;}
.x24{left:277.469476px;}
.x1{left:299.288289px;}
.x1d{left:310.182685px;}
.x25{left:312.030663px;}
.x17{left:320.693476px;}
.x15{left:324.492964px;}
.x14{left:325.905030px;}
.x3c{left:374.098033px;}
.x9{left:385.629548px;}
.x35{left:393.812020px;}
.x1f{left:478.412044px;}
.x20{left:480.887133px;}
.x37{left:482.351505px;}
.x38{left:483.355551px;}
.x1e{left:496.141289px;}
.x36{left:501.331638px;}
.x27{left:503.016167px;}
.x28{left:504.023548px;}
.x2{left:510.448106px;}
.x26{left:521.996300px;}
.x21{left:531.953364px;}
.x39{left:535.889490px;}
.x22{left:549.519160px;}
.x29{left:556.557487px;}
.x2a{left:574.123284px;}
.x2e{left:582.542590px;}
.x2f{left:585.021016px;}
.x2d{left:600.271836px;}
.x32{left:602.713568px;}
.x33{left:603.720950px;}
.x31{left:621.693701px;}
.x30{left:636.083911px;}
.x34{left:656.254889px;}
.x4{left:661.121675px;}
.xf{left:748.550372px;}
.x3a{left:799.763374px;}
.x3{left:802.451949px;}
.x16{left:864.679432px;}
.x5{left:887.382206px;}
.x6{left:1094.742661px;}
.x7{left:1143.450553px;}
.x41{left:1296.102192px;}
.x46{left:1310.549108px;}
.x40{left:1345.950892px;}
.x43{left:1351.785032px;}
.x47{left:1384.958568px;}
.x50{left:1386.659775px;}
.x4a{left:1398.464818px;}
.x44{left:1400.035932px;}
.x4b{left:1410.710172px;}
.x49{left:1418.685831px;}
.x42{left:1429.703648px;}
.x48{left:1596.301849px;}
.x52{left:1629.672192px;}
.x51{left:1707.003725px;}
.x3f{left:1773.761089px;}
.x45{left:1839.240880px;}
@media print{
.va{vertical-align:-95.712352pt;}
.v2{vertical-align:-45.175756pt;}
.v3{vertical-align:-17.731099pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:11.480738pt;}
.vd{vertical-align:18.793945pt;}
.v5{vertical-align:29.211837pt;}
.vc{vertical-align:33.351070pt;}
.vb{vertical-align:42.874864pt;}
.v4{vertical-align:48.781277pt;}
.v1{vertical-align:61.744548pt;}
.v7{vertical-align:77.993114pt;}
.v8{vertical-align:95.712352pt;}
.v9{vertical-align:124.924189pt;}
.ls23{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000618pt;}
.lsf{letter-spacing:0.001665pt;}
.ls8{letter-spacing:0.006462pt;}
.lsd{letter-spacing:0.009059pt;}
.ls12{letter-spacing:0.018658pt;}
.ls19{letter-spacing:0.020908pt;}
.ls1a{letter-spacing:0.023735pt;}
.ls15{letter-spacing:0.030519pt;}
.ls21{letter-spacing:0.040404pt;}
.ls9{letter-spacing:4.797245pt;}
.ls20{letter-spacing:5.905362pt;}
.ls3{letter-spacing:5.907464pt;}
.ls1b{letter-spacing:5.913920pt;}
.ls1{letter-spacing:8.439457pt;}
.ls0{letter-spacing:8.575578pt;}
.ls2{letter-spacing:10.160690pt;}
.ls1c{letter-spacing:12.231644pt;}
.ls11{letter-spacing:19.689708pt;}
.ls22{letter-spacing:23.986296pt;}
.ls7{letter-spacing:26.231319pt;}
.lse{letter-spacing:26.263253pt;}
.ls5{letter-spacing:32.155437pt;}
.ls6{letter-spacing:32.167297pt;}
.ls18{letter-spacing:32.730069pt;}
.ls13{letter-spacing:32.848228pt;}
.lsa{letter-spacing:36.938620pt;}
.lsb{letter-spacing:36.950480pt;}
.ls14{letter-spacing:38.726025pt;}
.ls16{letter-spacing:43.521068pt;}
.ls1d{letter-spacing:49.390501pt;}
.ls10{letter-spacing:118.157726pt;}
.ls17{letter-spacing:137.891661pt;}
.ls1e{letter-spacing:147.690147pt;}
.lsc{letter-spacing:156.640796pt;}
.ls1f{letter-spacing:173.925057pt;}
.ws48{word-spacing:-170.149758pt;}
.ws21{word-spacing:-76.968833pt;}
.ws20{word-spacing:-62.529613pt;}
.ws3b{word-spacing:-57.236265pt;}
.ws29{word-spacing:-50.738305pt;}
.ws2b{word-spacing:-50.667906pt;}
.ws2{word-spacing:-42.537439pt;}
.ws24{word-spacing:-36.958836pt;}
.ws22{word-spacing:-36.887122pt;}
.ws46{word-spacing:-32.824596pt;}
.ws25{word-spacing:-32.174275pt;}
.ws27{word-spacing:-32.163278pt;}
.ws23{word-spacing:-30.399245pt;}
.ws30{word-spacing:-30.368300pt;}
.ws2c{word-spacing:-30.357303pt;}
.ws2f{word-spacing:-30.356440pt;}
.ws1f{word-spacing:-29.539773pt;}
.ws26{word-spacing:-25.603688pt;}
.ws2a{word-spacing:-25.591234pt;}
.ws31{word-spacing:-25.585981pt;}
.ws33{word-spacing:-25.585118pt;}
.ws34{word-spacing:-25.573257pt;}
.ws37{word-spacing:-23.841381pt;}
.ws36{word-spacing:-23.840518pt;}
.ws2e{word-spacing:-23.829521pt;}
.ws49{word-spacing:-23.631878pt;}
.ws19{word-spacing:-20.675705pt;}
.ws39{word-spacing:-19.045823pt;}
.ws38{word-spacing:-19.044960pt;}
.ws32{word-spacing:-19.033963pt;}
.ws35{word-spacing:-19.033100pt;}
.ws4d{word-spacing:-14.345647pt;}
.wsb{word-spacing:-8.575578pt;}
.ws3{word-spacing:-7.482230pt;}
.ws8{word-spacing:-7.404884pt;}
.ws2d{word-spacing:-6.593277pt;}
.ws4a{word-spacing:-5.671636pt;}
.ws53{word-spacing:-5.553477pt;}
.ws4b{word-spacing:-5.435318pt;}
.ws52{word-spacing:-5.199000pt;}
.ws5a{word-spacing:-4.844523pt;}
.ws5{word-spacing:-3.267053pt;}
.ws56{word-spacing:-3.072136pt;}
.ws1e{word-spacing:-2.599500pt;}
.ws59{word-spacing:-2.126864pt;}
.ws4c{word-spacing:-1.772386pt;}
.ws17{word-spacing:-0.708955pt;}
.ws0{word-spacing:-0.293982pt;}
.ws1a{word-spacing:-0.170150pt;}
.ws13{word-spacing:-0.136120pt;}
.ws11{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.039929pt;}
.ws41{word-spacing:0.708955pt;}
.wsd{word-spacing:1.063432pt;}
.ws1c{word-spacing:1.536068pt;}
.ws54{word-spacing:2.363182pt;}
.ws40{word-spacing:2.717659pt;}
.wsc{word-spacing:3.072136pt;}
.wsf{word-spacing:3.308455pt;}
.ws10{word-spacing:3.426614pt;}
.ws50{word-spacing:4.937224pt;}
.ws44{word-spacing:4.962682pt;}
.ws4{word-spacing:5.274642pt;}
.ws57{word-spacing:6.853227pt;}
.ws45{word-spacing:7.089546pt;}
.ws4f{word-spacing:7.487612pt;}
.ws3d{word-spacing:8.743773pt;}
.ws6{word-spacing:9.450562pt;}
.ws51{word-spacing:9.452727pt;}
.ws7{word-spacing:9.538451pt;}
.wse{word-spacing:9.570887pt;}
.ws55{word-spacing:9.689046pt;}
.ws43{word-spacing:9.925364pt;}
.ws15{word-spacing:10.870637pt;}
.ws3a{word-spacing:12.288546pt;}
.ws3c{word-spacing:12.406705pt;}
.ws9{word-spacing:12.761267pt;}
.ws1{word-spacing:13.782012pt;}
.ws14{word-spacing:14.060932pt;}
.ws3f{word-spacing:16.069637pt;}
.ws1d{word-spacing:17.369387pt;}
.ws58{word-spacing:18.078341pt;}
.ws3e{word-spacing:19.850728pt;}
.ws42{word-spacing:22.213909pt;}
.ws47{word-spacing:29.421614pt;}
.wsa{word-spacing:32.434888pt;}
.ws12{word-spacing:34.029892pt;}
.ws16{word-spacing:41.355682pt;}
.ws1b{word-spacing:50.738657pt;}
.ws28{word-spacing:88.619320pt;}
.ws18{word-spacing:363.457369pt;}
._8{margin-left:-41.367775pt;}
._3{margin-left:-33.349350pt;}
._b{margin-left:-12.595734pt;}
._12{margin-left:-10.870637pt;}
._6{margin-left:-9.677294pt;}
._2{margin-left:-8.167217pt;}
._5{margin-left:-6.125413pt;}
._18{margin-left:-4.068584pt;}
._a{margin-left:-2.835818pt;}
._9{margin-left:-1.914190pt;}
._16{margin-left:-0.989878pt;}
._1c{width:1.842837pt;}
._17{width:4.166267pt;}
._1d{width:5.073506pt;}
._7{width:6.061602pt;}
._1{width:8.303337pt;}
._4{width:9.392299pt;}
._1a{width:10.286521pt;}
._1b{width:12.004885pt;}
._19{width:13.762320pt;}
._30{width:25.167887pt;}
._2d{width:28.415010pt;}
._11{width:29.776091pt;}
._d{width:34.620614pt;}
._0{width:39.393537pt;}
._c{width:41.710160pt;}
._e{width:47.429085pt;}
._20{width:50.004941pt;}
._21{width:51.399205pt;}
._f{width:59.079546pt;}
._39{width:66.523569pt;}
._10{width:81.293456pt;}
._1f{width:84.861873pt;}
._1e{width:97.126774pt;}
._23{width:141.332514pt;}
._31{width:142.395946pt;}
._24{width:147.580707pt;}
._25{width:167.195116pt;}
._14{width:178.774707pt;}
._22{width:184.091866pt;}
._34{width:198.389117pt;}
._36{width:200.634139pt;}
._29{width:205.006026pt;}
._15{width:210.205026pt;}
._2b{width:211.504776pt;}
._27{width:212.450049pt;}
._38{width:220.860650pt;}
._37{width:241.989822pt;}
._13{width:250.969913pt;}
._35{width:257.232345pt;}
._28{width:261.722390pt;}
._2f{width:264.085572pt;}
._2c{width:274.719891pt;}
._2a{width:313.357914pt;}
._2e{width:320.801937pt;}
._26{width:327.300687pt;}
._32{width:338.998437pt;}
._33{width:559.228126pt;}
.fsb{font-size:36.252537pt;}
.fsa{font-size:51.789339pt;}
.fs4{font-size:70.895930pt;}
.fs7{font-size:74.373038pt;}
.fsc{font-size:77.684008pt;}
.fs9{font-size:82.711128pt;}
.fs8{font-size:94.527511pt;}
.fs5{font-size:106.343895pt;}
.fs6{font-size:111.559557pt;}
.fs3{font-size:118.159093pt;}
.fs2{font-size:136.120281pt;}
.fs1{font-size:170.149758pt;}
.fs0{font-size:293.981616pt;}
.y1a{bottom:-52.949602pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:12.581970pt;}
.y69{bottom:38.699973pt;}
.y1d{bottom:41.188189pt;}
.y73{bottom:44.884127pt;}
.y72{bottom:62.996727pt;}
.y71{bottom:81.109327pt;}
.y70{bottom:99.221927pt;}
.y6f{bottom:117.334526pt;}
.y6a{bottom:119.019373pt;}
.y83{bottom:142.442078pt;}
.y50{bottom:142.735620pt;}
.y1f{bottom:155.492386pt;}
.y6e{bottom:161.631291pt;}
.y82{bottom:177.889450pt;}
.y4f{bottom:178.182992pt;}
.y6b{bottom:199.338772pt;}
.y81{bottom:213.336822pt;}
.y1b{bottom:233.354798pt;}
.y4e{bottom:237.261945pt;}
.y80{bottom:248.784194pt;}
.y4d{bottom:272.709317pt;}
.y6c{bottom:279.658172pt;}
.y7f{bottom:284.234531pt;}
.y1e{bottom:311.593762pt;}
.y4c{bottom:331.791235pt;}
.y7e{bottom:335.856342pt;}
.y6d{bottom:359.977571pt;}
.y4b{bottom:367.238607pt;}
.y4a{bottom:426.317561pt;}
.y1c{bottom:427.567336pt;}
.y7d{bottom:432.093511pt;}
.y49{bottom:461.764933pt;}
.y7c{bottom:467.543848pt;}
.y48{bottom:497.212305pt;}
.y7b{bottom:502.991220pt;}
.y7a{bottom:538.438592pt;}
.y47{bottom:547.997967pt;}
.y79{bottom:573.885964pt;}
.y78{bottom:609.333336pt;}
.y77{bottom:644.783673pt;}
.y46{bottom:645.074249pt;}
.y76{bottom:680.231045pt;}
.y45{bottom:680.521621pt;}
.y44{bottom:722.693764pt;}
.y75{bottom:731.013741pt;}
.y43{bottom:787.682096pt;}
.y74{bottom:826.426622pt;}
.y42{bottom:831.992052pt;}
.y67{bottom:861.873994pt;}
.y41{bottom:876.302008pt;}
.y40{bottom:920.611964pt;}
.y3f{bottom:964.921921pt;}
.y3e{bottom:1009.231877pt;}
.y3d{bottom:1052.836147pt;}
.y3a{bottom:1080.384582pt;}
.y39{bottom:1087.687541pt;}
.y3c{bottom:1115.751897pt;}
.y3b{bottom:1124.614481pt;}
.y38{bottom:1159.077451pt;}
.y35{bottom:1193.928845pt;}
.y37{bottom:1221.993201pt;}
.y36{bottom:1230.855785pt;}
.y34{bottom:1261.298124pt;}
.y31{bottom:1296.149518pt;}
.y66{bottom:1318.265950pt;}
.y33{bottom:1324.213874pt;}
.y32{bottom:1333.076458pt;}
.y2f{bottom:1363.723387pt;}
.y65{bottom:1384.042989pt;}
.y30{bottom:1391.274787pt;}
.y2c{bottom:1398.577746pt;}
.y2e{bottom:1426.639137pt;}
.y2d{bottom:1435.501721pt;}
.y64{bottom:1449.822993pt;}
.y2a{bottom:1465.944061pt;}
.y27{bottom:1481.744901pt;}
.y2b{bottom:1493.495460pt;}
.y26{bottom:1500.798419pt;}
.y63{bottom:1502.992569pt;}
.y29{bottom:1528.859810pt;}
.y28{bottom:1537.722395pt;}
.y62{bottom:1563.254584pt;}
.y25{bottom:1586.909885pt;}
.y61{bottom:1611.273838pt;}
.y24{bottom:1622.357257pt;}
.y23{bottom:1657.807595pt;}
.y60{bottom:1670.355757pt;}
.y22{bottom:1693.254967pt;}
.y5f{bottom:1705.803129pt;}
.y5e{bottom:1741.250501pt;}
.y21{bottom:1744.037663pt;}
.y5d{bottom:1776.697873pt;}
.y5c{bottom:1835.776826pt;}
.y20{bottom:1854.305528pt;}
.y5b{bottom:1871.227163pt;}
.y18{bottom:1874.651815pt;}
.y19{bottom:1889.752900pt;}
.y5a{bottom:1908.412064pt;}
.y17{bottom:1917.188661pt;}
.y16{bottom:1959.725508pt;}
.y59{bottom:1974.189103pt;}
.y15{bottom:2003.445416pt;}
.y58{bottom:2039.969107pt;}
.y14{bottom:2088.812650pt;}
.y57{bottom:2093.138683pt;}
.y13{bottom:2124.262987pt;}
.y56{bottom:2153.400697pt;}
.y12{bottom:2159.710359pt;}
.y11{bottom:2195.157731pt;}
.y55{bottom:2201.419952pt;}
.y10{bottom:2254.236685pt;}
.y54{bottom:2260.501871pt;}
.yf{bottom:2289.684057pt;}
.y53{bottom:2295.949243pt;}
.y52{bottom:2331.396615pt;}
.ye{bottom:2382.179311pt;}
.y51{bottom:2383.018425pt;}
.yd{bottom:2480.847835pt;}
.yc{bottom:2516.295207pt;}
.yb{bottom:2551.745544pt;}
.ya{bottom:2587.192916pt;}
.y9{bottom:2622.640288pt;}
.y8{bottom:2658.087660pt;}
.y7{bottom:2711.301711pt;}
.y6{bottom:2822.079567pt;}
.y5{bottom:2868.820878pt;}
.y4{bottom:2890.021105pt;}
.y3{bottom:2933.809209pt;}
.y2{bottom:2976.277859pt;}
.y1{bottom:3069.265315pt;}
.he{height:4.726364pt;}
.h1c{height:39.308108pt;}
.h19{height:40.136738pt;}
.h1a{height:45.983347pt;}
.h4{height:51.384501pt;}
.hd{height:58.145923pt;}
.h1b{height:58.884478pt;}
.hf{height:62.033346pt;}
.ha{height:77.568755pt;}
.h12{height:83.302160pt;}
.hb{height:85.830980pt;}
.hc{height:88.619320pt;}
.h16{height:91.573297pt;}
.h5{height:96.560257pt;}
.h14{height:106.939060pt;}
.h7{height:107.288456pt;}
.h10{height:110.814623pt;}
.h9{height:116.353132pt;}
.h13{height:117.831156pt;}
.h6{height:122.507826pt;}
.h15{height:129.650553pt;}
.h17{height:131.866062pt;}
.h11{height:140.026459pt;}
.h3{height:154.495980pt;}
.h2{height:211.666763pt;}
.h18{height:406.771269pt;}
.h8{height:463.018465pt;}
.h0{height:3178.582667pt;}
.h1{height:3178.666667pt;}
.w2{width:420.249692pt;}
.w3{width:996.784548pt;}
.w0{width:2245.040000pt;}
.w1{width:2245.333333pt;}
.x0{left:0.000000pt;}
.x4e{left:19.962134pt;}
.x4d{left:28.936762pt;}
.x10{left:36.379026pt;}
.x4c{left:54.125666pt;}
.x18{left:70.713233pt;}
.x11{left:81.460568pt;}
.x4f{left:104.227015pt;}
.x19{left:107.571977pt;}
.x3d{left:111.892079pt;}
.x8{left:115.023190pt;}
.xa{left:124.377975pt;}
.x3e{left:144.564149pt;}
.xb{left:157.047079pt;}
.x23{left:200.227345pt;}
.xd{left:202.620154pt;}
.xe{left:210.462755pt;}
.x12{left:213.755543pt;}
.xc{left:220.475786pt;}
.x3b{left:223.203647pt;}
.x1b{left:228.125658pt;}
.x1c{left:230.325737pt;}
.x2c{left:231.968384pt;}
.x13{left:237.436427pt;}
.x1a{left:243.884987pt;}
.x2b{left:245.527634pt;}
.x24{left:246.639534pt;}
.x1{left:266.034035pt;}
.x1d{left:275.717943pt;}
.x25{left:277.360590pt;}
.x17{left:285.060868pt;}
.x15{left:288.438190pt;}
.x14{left:289.693360pt;}
.x3c{left:332.531585pt;}
.x9{left:342.781821pt;}
.x35{left:350.055129pt;}
.x1f{left:425.255150pt;}
.x20{left:427.455229pt;}
.x37{left:428.756894pt;}
.x38{left:429.649379pt;}
.x1e{left:441.014479pt;}
.x36{left:445.628123pt;}
.x27{left:447.125482pt;}
.x28{left:448.020932pt;}
.x2{left:453.731650pt;}
.x26{left:463.996711pt;}
.x21{left:472.847435pt;}
.x39{left:476.346214pt;}
.x22{left:488.461476pt;}
.x29{left:494.717767pt;}
.x2a{left:510.331808pt;}
.x2e{left:517.815636pt;}
.x2f{left:520.018681pt;}
.x2d{left:533.574965pt;}
.x32{left:535.745394pt;}
.x33{left:536.640844pt;}
.x31{left:552.616623pt;}
.x30{left:565.407921pt;}
.x34{left:583.337679pt;}
.x4{left:587.663711pt;}
.xf{left:665.378109pt;}
.x3a{left:710.900777pt;}
.x3{left:713.290621pt;}
.x16{left:768.603940pt;}
.x5{left:788.784183pt;}
.x6{left:973.104588pt;}
.x7{left:1016.400491pt;}
.x41{left:1152.090837pt;}
.x46{left:1164.932541pt;}
.x40{left:1196.400793pt;}
.x43{left:1201.586695pt;}
.x47{left:1231.074283pt;}
.x50{left:1232.586467pt;}
.x4a{left:1243.079838pt;}
.x44{left:1244.476384pt;}
.x4b{left:1253.964598pt;}
.x49{left:1261.054072pt;}
.x42{left:1270.847687pt;}
.x48{left:1418.934977pt;}
.x52{left:1448.597504pt;}
.x51{left:1517.336644pt;}
.x3f{left:1576.676523pt;}
.x45{left:1634.880782pt;}
}




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