
    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_f97da91f777800c05a99049b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_54d6305bb003a315ab5e5a99.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_2223b002466737a8f167b183.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_2f9b2d217298faa72362ced6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_02d1883929a124948c337dc0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_ad34d8dcd9398f3dae612d38.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_ce4119cee4b624af96819412.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_86b8fe9fb5a77da2468b9287.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_b93d771b4a9672c6d7e65a77.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874023;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_1d504722ead67de28532fba1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024902;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_1f08c3d29de6ea6c4cb39ba6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;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_a04e16542e4b4939a5b672dc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;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_0fe998b5f1ffbb3028812d66.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.024902;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_da7a7271cc6cdb73c150f474.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.971191;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_3c20cff5e14a26c0c4a46dc8.woff2')format("woff");}.fff{font-family:fff;line-height:0.986816;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_1d504722ead67de28532fba1.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.024902;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_1d504722ead67de28532fba1.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.024902;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;}
.m3{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);}
.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.638000px;}
.ls8{letter-spacing:-1.404000px;}
.ls9{letter-spacing:-1.170000px;}
.ls3{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.624000px;}
.ls4{letter-spacing:-0.468000px;}
.ls5{letter-spacing:-0.330000px;}
.ls6{letter-spacing:-0.234000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.032400px;}
.ls2{letter-spacing:24.480000px;}
.ls1{letter-spacing:45.672000px;}
.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;}
}
.ws3{word-spacing:-45.672000px;}
.ws6{word-spacing:-28.476000px;}
.ws4{word-spacing:-24.480000px;}
.wsf{word-spacing:-20.340000px;}
.wsc{word-spacing:-16.272000px;}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.678320px;}
.ws7{word-spacing:-12.204000px;}
.ws13{word-spacing:-0.972000px;}
.ws1{word-spacing:0.000000px;}
.wsa{word-spacing:0.156000px;}
.ws9{word-spacing:0.330000px;}
.ws8{word-spacing:0.390000px;}
.wsb{word-spacing:0.546000px;}
.ws5{word-spacing:0.858000px;}
.wse{word-spacing:1.092000px;}
.wsd{word-spacing:1.326000px;}
.ws10{word-spacing:1.560000px;}
.ws12{word-spacing:2.052000px;}
.ws11{word-spacing:6.696000px;}
._f{margin-left:-26.516400px;}
._10{margin-left:-15.615600px;}
._11{margin-left:-14.440800px;}
._1c{margin-left:-6.964200px;}
._16{margin-left:-5.615400px;}
._c{margin-left:-4.435200px;}
._e{margin-left:-3.254400px;}
._d{margin-left:-1.465200px;}
._a{width:1.385992px;}
._3{width:2.870984px;}
._6{width:4.124977px;}
._12{width:5.987439px;}
._4{width:7.193961px;}
._15{width:8.209161px;}
._14{width:9.259912px;}
._9{width:10.262944px;}
._13{width:11.345400px;}
._8{width:13.265928px;}
._2{width:15.377916px;}
._17{width:16.592400px;}
._1b{width:17.970600px;}
._1d{width:19.293000px;}
._5{width:20.492888px;}
._18{width:22.935000px;}
._19{width:23.952000px;}
._1a{width:24.980400px;}
._1{width:28.313846px;}
._7{width:33.164819px;}
._b{width:45.209753px;}
._0{width:820.875237px;}
.fc5{color:rgb(76,142,165);}
.fc2{color:rgb(65,160,17);}
.fc3{color:rgb(0,94,126);}
.fc1{color:rgb(255,101,0);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:32.999820px;}
.fse{font-size:36.000000px;}
.fs3{font-size:37.714080px;}
.fs6{font-size:41.485488px;}
.fs7{font-size:42.428340px;}
.fs2{font-size:47.142600px;}
.fs1{font-size:51.856860px;}
.fs5{font-size:52.799712px;}
.fs10{font-size:54.000000px;}
.fs13{font-size:60.000000px;}
.fs0{font-size:65.999640px;}
.fsb{font-size:66.000000px;}
.fs11{font-size:72.000000px;}
.fsd{font-size:78.000000px;}
.fs12{font-size:90.000000px;}
.fsc{font-size:114.000000px;}
.fsf{font-size:126.000000px;}
.fs8{font-size:252.000000px;}
.fsa{font-size:288.000000px;}
.fs9{font-size:519.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.298365px;}
.y34{bottom:46.346400px;}
.y20{bottom:50.265797px;}
.y1f{bottom:63.630724px;}
.y1e{bottom:76.995651px;}
.y1d{bottom:90.360579px;}
.y1c{bottom:101.780873px;}
.y33{bottom:102.047250px;}
.ya0{bottom:102.157350px;}
.ydc{bottom:102.409200px;}
.yed{bottom:102.696600px;}
.y69{bottom:102.964350px;}
.y8e{bottom:104.569950px;}
.y142{bottom:106.564350px;}
.y45{bottom:108.908850px;}
.yb9{bottom:111.060150px;}
.y102{bottom:117.386850px;}
.y9f{bottom:122.864850px;}
.y141{bottom:122.912850px;}
.ydb{bottom:123.034200px;}
.yec{bottom:123.404100px;}
.y1b{bottom:123.419327px;}
.y68{bottom:123.671850px;}
.y111{bottom:124.187100px;}
.y44{bottom:125.108850px;}
.y8d{bottom:125.277450px;}
.yb8{bottom:131.767650px;}
.y21{bottom:136.778700px;}
.y101{bottom:138.094350px;}
.y140{bottom:139.261350px;}
.y110{bottom:140.535600px;}
.y43{bottom:141.308850px;}
.y28{bottom:142.439400px;}
.y9e{bottom:143.572350px;}
.yda{bottom:143.659200px;}
.yeb{bottom:144.111600px;}
.y67{bottom:144.379350px;}
.y8c{bottom:145.984950px;}
.yb7{bottom:152.475150px;}
.y13f{bottom:155.609850px;}
.y10f{bottom:156.884100px;}
.y42{bottom:157.508850px;}
.y100{bottom:158.801850px;}
.y9d{bottom:164.279850px;}
.yea{bottom:164.819100px;}
.y66{bottom:165.086850px;}
.y8b{bottom:166.692450px;}
.y13e{bottom:171.958350px;}
.yb6{bottom:173.182650px;}
.yd9{bottom:173.213400px;}
.y10e{bottom:173.232600px;}
.y41{bottom:173.708850px;}
.yff{bottom:179.509350px;}
.y1a{bottom:179.601520px;}
.y27{bottom:184.431900px;}
.y9c{bottom:184.987350px;}
.ye9{bottom:185.526600px;}
.y65{bottom:185.794350px;}
.y8a{bottom:187.399950px;}
.y13d{bottom:188.306850px;}
.y10d{bottom:189.581100px;}
.y19{bottom:189.619323px;}
.y40{bottom:189.908850px;}
.yb5{bottom:193.890150px;}
.y18{bottom:198.812130px;}
.y13c{bottom:204.655350px;}
.y26{bottom:205.436400px;}
.y9b{bottom:205.694850px;}
.y10c{bottom:205.929600px;}
.y3f{bottom:206.108850px;}
.ye8{bottom:206.234100px;}
.y64{bottom:206.501850px;}
.y17{bottom:207.156370px;}
.y89{bottom:208.107450px;}
.yfe{bottom:209.138400px;}
.yd8{bottom:213.571650px;}
.yb4{bottom:214.597650px;}
.y16{bottom:215.512396px;}
.y13b{bottom:221.003850px;}
.y10b{bottom:222.278100px;}
.y3e{bottom:222.308850px;}
.y15{bottom:223.868422px;}
.y9a{bottom:226.402350px;}
.y25{bottom:226.440900px;}
.y63{bottom:227.209350px;}
.yfd{bottom:228.188400px;}
.y88{bottom:228.814950px;}
.y14{bottom:232.212662px;}
.yd7{bottom:234.196650px;}
.yb3{bottom:235.305150px;}
.ye7{bottom:235.863150px;}
.y13a{bottom:237.352350px;}
.y3d{bottom:238.508850px;}
.y10a{bottom:238.626600px;}
.y13{bottom:240.568688px;}
.y99{bottom:247.109850px;}
.yfc{bottom:247.238400px;}
.y12{bottom:248.924714px;}
.y87{bottom:249.522450px;}
.y139{bottom:253.700850px;}
.y3c{bottom:254.708850px;}
.yd6{bottom:254.821650px;}
.ye6{bottom:254.913150px;}
.y109{bottom:254.975100px;}
.yb2{bottom:256.012650px;}
.y11{bottom:257.268954px;}
.y10{bottom:265.624980px;}
.y62{bottom:265.767600px;}
.yfb{bottom:266.288400px;}
.y98{bottom:267.817350px;}
.y138{bottom:270.049350px;}
.y86{bottom:270.229950px;}
.y108{bottom:271.323600px;}
.ye5{bottom:273.963150px;}
.yf{bottom:273.981006px;}
.yd5{bottom:275.446650px;}
.yb1{bottom:276.720150px;}
.y32{bottom:284.429700px;}
.yfa{bottom:285.338400px;}
.y137{bottom:286.397850px;}
.y107{bottom:287.672100px;}
.y97{bottom:288.524850px;}
.y85{bottom:290.937450px;}
.ye{bottom:291.164483px;}
.ye4{bottom:293.013150px;}
.yd4{bottom:296.071650px;}
.yb0{bottom:297.427650px;}
.y136{bottom:302.746350px;}
.y106{bottom:304.020600px;}
.yf9{bottom:304.388400px;}
.y31{bottom:305.434200px;}
.y96{bottom:309.232350px;}
.y84{bottom:311.644950px;}
.ye3{bottom:312.063150px;}
.yd3{bottom:316.696650px;}
.yaf{bottom:318.135150px;}
.y135{bottom:319.094850px;}
.y105{bottom:320.369100px;}
.y30{bottom:326.438700px;}
.y61{bottom:328.296600px;}
.y95{bottom:329.939850px;}
.ye2{bottom:331.113150px;}
.yf8{bottom:332.300100px;}
.y83{bottom:332.352450px;}
.y134{bottom:335.443350px;}
.y104{bottom:336.717600px;}
.yd2{bottom:337.321650px;}
.yae{bottom:338.842650px;}
.y2f{bottom:347.443200px;}
.y60{bottom:349.004100px;}
.ye1{bottom:350.163150px;}
.y94{bottom:350.647350px;}
.y133{bottom:351.791850px;}
.yf7{bottom:353.007600px;}
.y82{bottom:353.059950px;}
.yd1{bottom:357.946650px;}
.yad{bottom:359.550150px;}
.y132{bottom:368.140350px;}
.y2e{bottom:368.447700px;}
.ye0{bottom:369.213150px;}
.y5f{bottom:369.711600px;}
.y103{bottom:370.925850px;}
.y93{bottom:371.354850px;}
.yf6{bottom:373.715100px;}
.y81{bottom:373.767450px;}
.yd0{bottom:378.571650px;}
.yac{bottom:380.257650px;}
.y131{bottom:384.488850px;}
.ydf{bottom:388.263150px;}
.y2d{bottom:389.452200px;}
.y5e{bottom:390.419100px;}
.y92{bottom:392.062350px;}
.yf5{bottom:394.422600px;}
.y130{bottom:400.837350px;}
.yab{bottom:400.965150px;}
.yde{bottom:407.313150px;}
.ycf{bottom:408.125850px;}
.y2c{bottom:410.456700px;}
.y5d{bottom:411.126600px;}
.yd{bottom:412.250251px;}
.y80{bottom:412.325850px;}
.y91{bottom:412.769850px;}
.yf4{bottom:415.130100px;}
.y12f{bottom:417.185850px;}
.yaa{bottom:421.672650px;}
.ydd{bottom:426.363150px;}
.yce{bottom:427.175850px;}
.y5c{bottom:431.834100px;}
.y90{bottom:433.477350px;}
.y12e{bottom:433.534350px;}
.yf3{bottom:435.837600px;}
.ya9{bottom:442.380150px;}
.ycd{bottom:446.225850px;}
.y12d{bottom:449.882850px;}
.y5b{bottom:452.541600px;}
.y8f{bottom:454.184850px;}
.yf2{bottom:456.545100px;}
.ycc{bottom:465.275850px;}
.y12c{bottom:466.231350px;}
.ya8{bottom:472.009350px;}
.y5a{bottom:473.249100px;}
.y7f{bottom:474.892350px;}
.yf1{bottom:477.252600px;}
.y12b{bottom:482.579850px;}
.ycb{bottom:484.325850px;}
.y59{bottom:493.956600px;}
.y7e{bottom:495.599850px;}
.yf0{bottom:497.960100px;}
.y2b{bottom:498.056700px;}
.y12a{bottom:498.928350px;}
.yca{bottom:503.375850px;}
.ya7{bottom:512.337600px;}
.y58{bottom:514.664100px;}
.y129{bottom:515.276850px;}
.y7d{bottom:516.307350px;}
.yef{bottom:518.667600px;}
.yc9{bottom:531.444900px;}
.y128{bottom:531.625350px;}
.y2a{bottom:532.256700px;}
.ya6{bottom:533.045100px;}
.y57{bottom:535.371600px;}
.y7c{bottom:537.014850px;}
.y127{bottom:547.973850px;}
.yc8{bottom:551.987400px;}
.ya5{bottom:553.752600px;}
.y56{bottom:556.079100px;}
.yee{bottom:557.225850px;}
.y7b{bottom:557.722350px;}
.y126{bottom:564.322350px;}
.y29{bottom:566.456700px;}
.yc7{bottom:572.529900px;}
.yc{bottom:574.420795px;}
.ya4{bottom:574.460100px;}
.y55{bottom:576.786600px;}
.y7a{bottom:578.429850px;}
.y125{bottom:580.670850px;}
.yc6{bottom:593.072400px;}
.ya3{bottom:595.167600px;}
.y124{bottom:597.019350px;}
.y54{bottom:597.494100px;}
.y79{bottom:599.137350px;}
.yb{bottom:600.184226px;}
.y3b{bottom:613.192350px;}
.y123{bottom:613.367850px;}
.ya{bottom:613.549153px;}
.yc5{bottom:613.614900px;}
.y53{bottom:618.201600px;}
.y78{bottom:619.844850px;}
.y152{bottom:621.953250px;}
.y122{bottom:629.716350px;}
.ya2{bottom:633.725850px;}
.yc4{bottom:634.157400px;}
.y52{bottom:638.909100px;}
.y9{bottom:639.571869px;}
.y151{bottom:640.434750px;}
.y77{bottom:640.552350px;}
.y121{bottom:646.064850px;}
.y3a{bottom:650.992350px;}
.y8{bottom:652.936796px;}
.yc3{bottom:654.699900px;}
.y150{bottom:656.783250px;}
.y24{bottom:657.176850px;}
.y51{bottom:659.616600px;}
.ya1{bottom:660.725850px;}
.y76{bottom:661.259850px;}
.y120{bottom:662.413350px;}
.y6a{bottom:665.395650px;}
.y7{bottom:666.301723px;}
.y14f{bottom:673.131750px;}
.yc2{bottom:675.242400px;}
.y11f{bottom:678.761850px;}
.y6{bottom:679.666650px;}
.y50{bottom:680.324100px;}
.y75{bottom:681.967350px;}
.y39{bottom:688.792350px;}
.y14e{bottom:689.480250px;}
.y11e{bottom:695.110350px;}
.yc1{bottom:695.784900px;}
.y4f{bottom:701.031600px;}
.y74{bottom:702.674850px;}
.y14d{bottom:705.828750px;}
.y11d{bottom:711.458850px;}
.yc0{bottom:716.327400px;}
.y4e{bottom:721.739100px;}
.y14c{bottom:722.177250px;}
.y23{bottom:723.200850px;}
.y73{bottom:723.382350px;}
.y38{bottom:726.592350px;}
.y11c{bottom:727.807350px;}
.ybf{bottom:736.869900px;}
.y5{bottom:741.942024px;}
.y4d{bottom:742.446600px;}
.y72{bottom:744.089850px;}
.y11b{bottom:744.155850px;}
.y14b{bottom:751.283250px;}
.ybe{bottom:757.412400px;}
.y11a{bottom:760.504350px;}
.y4{bottom:761.765488px;}
.y4c{bottom:763.154100px;}
.y71{bottom:764.797350px;}
.y14a{bottom:769.764750px;}
.y119{bottom:776.852850px;}
.ybd{bottom:777.954900px;}
.y4b{bottom:783.861600px;}
.y3{bottom:785.148217px;}
.y70{bottom:785.504850px;}
.y149{bottom:786.113250px;}
.y118{bottom:793.201350px;}
.y37{bottom:802.192350px;}
.y148{bottom:802.461750px;}
.y4a{bottom:804.569100px;}
.y6f{bottom:806.212350px;}
.ybc{bottom:807.434100px;}
.y2{bottom:808.542733px;}
.y117{bottom:809.549850px;}
.y22{bottom:811.700850px;}
.y147{bottom:818.810250px;}
.y49{bottom:825.276600px;}
.y116{bottom:825.898350px;}
.y6e{bottom:826.919850px;}
.y146{bottom:835.158750px;}
.y36{bottom:839.992350px;}
.y115{bottom:842.246850px;}
.y48{bottom:845.984100px;}
.y6d{bottom:847.627350px;}
.ybb{bottom:847.792350px;}
.y145{bottom:851.507250px;}
.y114{bottom:858.595350px;}
.y144{bottom:867.855750px;}
.y6c{bottom:868.334850px;}
.yba{bottom:868.417350px;}
.y113{bottom:874.943850px;}
.y35{bottom:877.792350px;}
.y143{bottom:884.204250px;}
.y47{bottom:884.542350px;}
.y6b{bottom:889.042350px;}
.y112{bottom:891.292350px;}
.y46{bottom:952.015800px;}
.h9{height:24.452867px;}
.h7{height:27.946133px;}
.h8{height:28.021561px;}
.h16{height:30.480469px;}
.hc{height:31.439400px;}
.h6{height:34.932667px;}
.ha{height:35.026952px;}
.h5{height:38.425933px;}
.hb{height:39.124587px;}
.h1f{height:42.820312px;}
.h20{height:43.664062px;}
.h1a{height:45.720703px;}
.h3{height:48.905733px;}
.h4{height:49.037733px;}
.h1e{height:50.800781px;}
.h12{height:52.335938px;}
.h15{height:54.272461px;}
.h13{height:55.880859px;}
.h1d{height:58.218750px;}
.h1b{height:60.960938px;}
.h1c{height:72.773438px;}
.h17{height:87.670898px;}
.h14{height:96.521484px;}
.h18{height:99.914062px;}
.h19{height:106.681641px;}
.hf{height:172.265625px;}
.h11{height:228.375000px;}
.h10{height:354.785156px;}
.h2{height:992.222088px;}
.h0{height:992.820000px;}
.h1{height:993.000000px;}
.he{height:999.000000px;}
.hd{height:999.213000px;}
.w1{width:701.250000px;}
.w3{width:701.575500px;}
.w2{width:701.576173px;}
.w0{width:701.580000px;}
.x0{left:0.000000px;}
.x3{left:36.747657px;}
.x1{left:43.430120px;}
.x15{left:46.771650px;}
.x1b{left:60.271650px;}
.x13{left:69.335400px;}
.xf{left:73.097400px;}
.x1a{left:76.535400px;}
.x8{left:80.205750px;}
.x1d{left:97.795200px;}
.xd{left:106.916700px;}
.x12{left:112.598400px;}
.x14{left:114.182400px;}
.xb{left:115.780200px;}
.x2{left:116.925434px;}
.xc{left:124.159200px;}
.x9{left:135.959250px;}
.x17{left:161.574750px;}
.x10{left:170.727900px;}
.x1c{left:182.834550px;}
.x7{left:190.392750px;}
.x11{left:218.627400px;}
.xa{left:281.522250px;}
.xe{left:307.133400px;}
.x4{left:344.105623px;}
.x16{left:407.083800px;}
.x5{left:449.502150px;}
.x6{left:481.152750px;}
.x18{left:625.317000px;}
.x19{left:642.001350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.456000pt;}
.ls8{letter-spacing:-1.248000pt;}
.ls9{letter-spacing:-1.040000pt;}
.ls3{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.554667pt;}
.ls4{letter-spacing:-0.416000pt;}
.ls5{letter-spacing:-0.293333pt;}
.ls6{letter-spacing:-0.208000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.028800pt;}
.ls2{letter-spacing:21.760000pt;}
.ls1{letter-spacing:40.597333pt;}
.ws3{word-spacing:-40.597333pt;}
.ws6{word-spacing:-25.312000pt;}
.ws4{word-spacing:-21.760000pt;}
.wsf{word-spacing:-18.080000pt;}
.wsc{word-spacing:-14.464000pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-13.047395pt;}
.ws7{word-spacing:-10.848000pt;}
.ws13{word-spacing:-0.864000pt;}
.ws1{word-spacing:0.000000pt;}
.wsa{word-spacing:0.138667pt;}
.ws9{word-spacing:0.293333pt;}
.ws8{word-spacing:0.346667pt;}
.wsb{word-spacing:0.485333pt;}
.ws5{word-spacing:0.762667pt;}
.wse{word-spacing:0.970667pt;}
.wsd{word-spacing:1.178667pt;}
.ws10{word-spacing:1.386667pt;}
.ws12{word-spacing:1.824000pt;}
.ws11{word-spacing:5.952000pt;}
._f{margin-left:-23.570133pt;}
._10{margin-left:-13.880533pt;}
._11{margin-left:-12.836267pt;}
._1c{margin-left:-6.190400pt;}
._16{margin-left:-4.991467pt;}
._c{margin-left:-3.942400pt;}
._e{margin-left:-2.892800pt;}
._d{margin-left:-1.302400pt;}
._a{width:1.231993pt;}
._3{width:2.551986pt;}
._6{width:3.666647pt;}
._12{width:5.322168pt;}
._4{width:6.394632pt;}
._15{width:7.297032pt;}
._14{width:8.231033pt;}
._9{width:9.122617pt;}
._13{width:10.084800pt;}
._8{width:11.791936pt;}
._2{width:13.669259pt;}
._17{width:14.748800pt;}
._1b{width:15.973867pt;}
._1d{width:17.149333pt;}
._5{width:18.215901pt;}
._18{width:20.386667pt;}
._19{width:21.290667pt;}
._1a{width:22.204800pt;}
._1{width:25.167863pt;}
._7{width:29.479839pt;}
._b{width:40.186447pt;}
._0{width:729.666877pt;}
.fs4{font-size:29.333173pt;}
.fse{font-size:32.000000pt;}
.fs3{font-size:33.523627pt;}
.fs6{font-size:36.875989pt;}
.fs7{font-size:37.714080pt;}
.fs2{font-size:41.904533pt;}
.fs1{font-size:46.094987pt;}
.fs5{font-size:46.933077pt;}
.fs10{font-size:48.000000pt;}
.fs13{font-size:53.333333pt;}
.fs0{font-size:58.666347pt;}
.fsb{font-size:58.666667pt;}
.fs11{font-size:64.000000pt;}
.fsd{font-size:69.333333pt;}
.fs12{font-size:80.000000pt;}
.fsc{font-size:101.333333pt;}
.fsf{font-size:112.000000pt;}
.fs8{font-size:224.000000pt;}
.fsa{font-size:256.000000pt;}
.fs9{font-size:461.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.265213pt;}
.y34{bottom:41.196800pt;}
.y20{bottom:44.680709pt;}
.y1f{bottom:56.560644pt;}
.y1e{bottom:68.440579pt;}
.y1d{bottom:80.320514pt;}
.y1c{bottom:90.471887pt;}
.y33{bottom:90.708667pt;}
.ya0{bottom:90.806533pt;}
.ydc{bottom:91.030400pt;}
.yed{bottom:91.285867pt;}
.y69{bottom:91.523867pt;}
.y8e{bottom:92.951067pt;}
.y142{bottom:94.723867pt;}
.y45{bottom:96.807867pt;}
.yb9{bottom:98.720133pt;}
.y102{bottom:104.343867pt;}
.y9f{bottom:109.213200pt;}
.y141{bottom:109.255867pt;}
.ydb{bottom:109.363733pt;}
.yec{bottom:109.692533pt;}
.y1b{bottom:109.706068pt;}
.y68{bottom:109.930533pt;}
.y111{bottom:110.388533pt;}
.y44{bottom:111.207867pt;}
.y8d{bottom:111.357733pt;}
.yb8{bottom:117.126800pt;}
.y21{bottom:121.581067pt;}
.y101{bottom:122.750533pt;}
.y140{bottom:123.787867pt;}
.y110{bottom:124.920533pt;}
.y43{bottom:125.607867pt;}
.y28{bottom:126.612800pt;}
.y9e{bottom:127.619867pt;}
.yda{bottom:127.697067pt;}
.yeb{bottom:128.099200pt;}
.y67{bottom:128.337200pt;}
.y8c{bottom:129.764400pt;}
.yb7{bottom:135.533467pt;}
.y13f{bottom:138.319867pt;}
.y10f{bottom:139.452533pt;}
.y42{bottom:140.007867pt;}
.y100{bottom:141.157200pt;}
.y9d{bottom:146.026533pt;}
.yea{bottom:146.505867pt;}
.y66{bottom:146.743867pt;}
.y8b{bottom:148.171067pt;}
.y13e{bottom:152.851867pt;}
.yb6{bottom:153.940133pt;}
.yd9{bottom:153.967467pt;}
.y10e{bottom:153.984533pt;}
.y41{bottom:154.407867pt;}
.yff{bottom:159.563867pt;}
.y1a{bottom:159.645796pt;}
.y27{bottom:163.939467pt;}
.y9c{bottom:164.433200pt;}
.ye9{bottom:164.912533pt;}
.y65{bottom:165.150533pt;}
.y8a{bottom:166.577733pt;}
.y13d{bottom:167.383867pt;}
.y10d{bottom:168.516533pt;}
.y19{bottom:168.550509pt;}
.y40{bottom:168.807867pt;}
.yb5{bottom:172.346800pt;}
.y18{bottom:176.721893pt;}
.y13c{bottom:181.915867pt;}
.y26{bottom:182.610133pt;}
.y9b{bottom:182.839867pt;}
.y10c{bottom:183.048533pt;}
.y3f{bottom:183.207867pt;}
.ye8{bottom:183.319200pt;}
.y64{bottom:183.557200pt;}
.y17{bottom:184.138996pt;}
.y89{bottom:184.984400pt;}
.yfe{bottom:185.900800pt;}
.yd8{bottom:189.841467pt;}
.yb4{bottom:190.753467pt;}
.y16{bottom:191.566574pt;}
.y13b{bottom:196.447867pt;}
.y10b{bottom:197.580533pt;}
.y3e{bottom:197.607867pt;}
.y15{bottom:198.994153pt;}
.y9a{bottom:201.246533pt;}
.y25{bottom:201.280800pt;}
.y63{bottom:201.963867pt;}
.yfd{bottom:202.834133pt;}
.y88{bottom:203.391067pt;}
.y14{bottom:206.411255pt;}
.yd7{bottom:208.174800pt;}
.yb3{bottom:209.160133pt;}
.ye7{bottom:209.656133pt;}
.y13a{bottom:210.979867pt;}
.y3d{bottom:212.007867pt;}
.y10a{bottom:212.112533pt;}
.y13{bottom:213.838834pt;}
.y99{bottom:219.653200pt;}
.yfc{bottom:219.767467pt;}
.y12{bottom:221.266412pt;}
.y87{bottom:221.797733pt;}
.y139{bottom:225.511867pt;}
.y3c{bottom:226.407867pt;}
.yd6{bottom:226.508133pt;}
.ye6{bottom:226.589467pt;}
.y109{bottom:226.644533pt;}
.yb2{bottom:227.566800pt;}
.y11{bottom:228.683515pt;}
.y10{bottom:236.111093pt;}
.y62{bottom:236.237867pt;}
.yfb{bottom:236.700800pt;}
.y98{bottom:238.059867pt;}
.y138{bottom:240.043867pt;}
.y86{bottom:240.204400pt;}
.y108{bottom:241.176533pt;}
.ye5{bottom:243.522800pt;}
.yf{bottom:243.538672pt;}
.yd5{bottom:244.841467pt;}
.yb1{bottom:245.973467pt;}
.y32{bottom:252.826400pt;}
.yfa{bottom:253.634133pt;}
.y137{bottom:254.575867pt;}
.y107{bottom:255.708533pt;}
.y97{bottom:256.466533pt;}
.y85{bottom:258.611067pt;}
.ye{bottom:258.812874pt;}
.ye4{bottom:260.456133pt;}
.yd4{bottom:263.174800pt;}
.yb0{bottom:264.380133pt;}
.y136{bottom:269.107867pt;}
.y106{bottom:270.240533pt;}
.yf9{bottom:270.567467pt;}
.y31{bottom:271.497067pt;}
.y96{bottom:274.873200pt;}
.y84{bottom:277.017733pt;}
.ye3{bottom:277.389467pt;}
.yd3{bottom:281.508133pt;}
.yaf{bottom:282.786800pt;}
.y135{bottom:283.639867pt;}
.y105{bottom:284.772533pt;}
.y30{bottom:290.167733pt;}
.y61{bottom:291.819200pt;}
.y95{bottom:293.279867pt;}
.ye2{bottom:294.322800pt;}
.yf8{bottom:295.377867pt;}
.y83{bottom:295.424400pt;}
.y134{bottom:298.171867pt;}
.y104{bottom:299.304533pt;}
.yd2{bottom:299.841467pt;}
.yae{bottom:301.193467pt;}
.y2f{bottom:308.838400pt;}
.y60{bottom:310.225867pt;}
.ye1{bottom:311.256133pt;}
.y94{bottom:311.686533pt;}
.y133{bottom:312.703867pt;}
.yf7{bottom:313.784533pt;}
.y82{bottom:313.831067pt;}
.yd1{bottom:318.174800pt;}
.yad{bottom:319.600133pt;}
.y132{bottom:327.235867pt;}
.y2e{bottom:327.509067pt;}
.ye0{bottom:328.189467pt;}
.y5f{bottom:328.632533pt;}
.y103{bottom:329.711867pt;}
.y93{bottom:330.093200pt;}
.yf6{bottom:332.191200pt;}
.y81{bottom:332.237733pt;}
.yd0{bottom:336.508133pt;}
.yac{bottom:338.006800pt;}
.y131{bottom:341.767867pt;}
.ydf{bottom:345.122800pt;}
.y2d{bottom:346.179733pt;}
.y5e{bottom:347.039200pt;}
.y92{bottom:348.499867pt;}
.yf5{bottom:350.597867pt;}
.y130{bottom:356.299867pt;}
.yab{bottom:356.413467pt;}
.yde{bottom:362.056133pt;}
.ycf{bottom:362.778533pt;}
.y2c{bottom:364.850400pt;}
.y5d{bottom:365.445867pt;}
.yd{bottom:366.444668pt;}
.y80{bottom:366.511867pt;}
.y91{bottom:366.906533pt;}
.yf4{bottom:369.004533pt;}
.y12f{bottom:370.831867pt;}
.yaa{bottom:374.820133pt;}
.ydd{bottom:378.989467pt;}
.yce{bottom:379.711867pt;}
.y5c{bottom:383.852533pt;}
.y90{bottom:385.313200pt;}
.y12e{bottom:385.363867pt;}
.yf3{bottom:387.411200pt;}
.ya9{bottom:393.226800pt;}
.ycd{bottom:396.645200pt;}
.y12d{bottom:399.895867pt;}
.y5b{bottom:402.259200pt;}
.y8f{bottom:403.719867pt;}
.yf2{bottom:405.817867pt;}
.ycc{bottom:413.578533pt;}
.y12c{bottom:414.427867pt;}
.ya8{bottom:419.563867pt;}
.y5a{bottom:420.665867pt;}
.y7f{bottom:422.126533pt;}
.yf1{bottom:424.224533pt;}
.y12b{bottom:428.959867pt;}
.ycb{bottom:430.511867pt;}
.y59{bottom:439.072533pt;}
.y7e{bottom:440.533200pt;}
.yf0{bottom:442.631200pt;}
.y2b{bottom:442.717067pt;}
.y12a{bottom:443.491867pt;}
.yca{bottom:447.445200pt;}
.ya7{bottom:455.411200pt;}
.y58{bottom:457.479200pt;}
.y129{bottom:458.023867pt;}
.y7d{bottom:458.939867pt;}
.yef{bottom:461.037867pt;}
.yc9{bottom:472.395467pt;}
.y128{bottom:472.555867pt;}
.y2a{bottom:473.117067pt;}
.ya6{bottom:473.817867pt;}
.y57{bottom:475.885867pt;}
.y7c{bottom:477.346533pt;}
.y127{bottom:487.087867pt;}
.yc8{bottom:490.655467pt;}
.ya5{bottom:492.224533pt;}
.y56{bottom:494.292533pt;}
.yee{bottom:495.311867pt;}
.y7b{bottom:495.753200pt;}
.y126{bottom:501.619867pt;}
.y29{bottom:503.517067pt;}
.yc7{bottom:508.915467pt;}
.yc{bottom:510.596263pt;}
.ya4{bottom:510.631200pt;}
.y55{bottom:512.699200pt;}
.y7a{bottom:514.159867pt;}
.y125{bottom:516.151867pt;}
.yc6{bottom:527.175467pt;}
.ya3{bottom:529.037867pt;}
.y124{bottom:530.683867pt;}
.y54{bottom:531.105867pt;}
.y79{bottom:532.566533pt;}
.yb{bottom:533.497090pt;}
.y3b{bottom:545.059867pt;}
.y123{bottom:545.215867pt;}
.ya{bottom:545.377025pt;}
.yc5{bottom:545.435467pt;}
.y53{bottom:549.512533pt;}
.y78{bottom:550.973200pt;}
.y152{bottom:552.847333pt;}
.y122{bottom:559.747867pt;}
.ya2{bottom:563.311867pt;}
.yc4{bottom:563.695467pt;}
.y52{bottom:567.919200pt;}
.y9{bottom:568.508328pt;}
.y151{bottom:569.275333pt;}
.y77{bottom:569.379867pt;}
.y121{bottom:574.279867pt;}
.y3a{bottom:578.659867pt;}
.y8{bottom:580.388263pt;}
.yc3{bottom:581.955467pt;}
.y150{bottom:583.807333pt;}
.y24{bottom:584.157200pt;}
.y51{bottom:586.325867pt;}
.ya1{bottom:587.311867pt;}
.y76{bottom:587.786533pt;}
.y120{bottom:588.811867pt;}
.y6a{bottom:591.462800pt;}
.y7{bottom:592.268198pt;}
.y14f{bottom:598.339333pt;}
.yc2{bottom:600.215467pt;}
.y11f{bottom:603.343867pt;}
.y6{bottom:604.148133pt;}
.y50{bottom:604.732533pt;}
.y75{bottom:606.193200pt;}
.y39{bottom:612.259867pt;}
.y14e{bottom:612.871333pt;}
.y11e{bottom:617.875867pt;}
.yc1{bottom:618.475467pt;}
.y4f{bottom:623.139200pt;}
.y74{bottom:624.599867pt;}
.y14d{bottom:627.403333pt;}
.y11d{bottom:632.407867pt;}
.yc0{bottom:636.735467pt;}
.y4e{bottom:641.545867pt;}
.y14c{bottom:641.935333pt;}
.y23{bottom:642.845200pt;}
.y73{bottom:643.006533pt;}
.y38{bottom:645.859867pt;}
.y11c{bottom:646.939867pt;}
.ybf{bottom:654.995467pt;}
.y5{bottom:659.504022pt;}
.y4d{bottom:659.952533pt;}
.y72{bottom:661.413200pt;}
.y11b{bottom:661.471867pt;}
.y14b{bottom:667.807333pt;}
.ybe{bottom:673.255467pt;}
.y11a{bottom:676.003867pt;}
.y4{bottom:677.124878pt;}
.y4c{bottom:678.359200pt;}
.y71{bottom:679.819867pt;}
.y14a{bottom:684.235333pt;}
.y119{bottom:690.535867pt;}
.ybd{bottom:691.515467pt;}
.y4b{bottom:696.765867pt;}
.y3{bottom:697.909527pt;}
.y70{bottom:698.226533pt;}
.y149{bottom:698.767333pt;}
.y118{bottom:705.067867pt;}
.y37{bottom:713.059867pt;}
.y148{bottom:713.299333pt;}
.y4a{bottom:715.172533pt;}
.y6f{bottom:716.633200pt;}
.ybc{bottom:717.719200pt;}
.y2{bottom:718.704651pt;}
.y117{bottom:719.599867pt;}
.y22{bottom:721.511867pt;}
.y147{bottom:727.831333pt;}
.y49{bottom:733.579200pt;}
.y116{bottom:734.131867pt;}
.y6e{bottom:735.039867pt;}
.y146{bottom:742.363333pt;}
.y36{bottom:746.659867pt;}
.y115{bottom:748.663867pt;}
.y48{bottom:751.985867pt;}
.y6d{bottom:753.446533pt;}
.ybb{bottom:753.593200pt;}
.y145{bottom:756.895333pt;}
.y114{bottom:763.195867pt;}
.y144{bottom:771.427333pt;}
.y6c{bottom:771.853200pt;}
.yba{bottom:771.926533pt;}
.y113{bottom:777.727867pt;}
.y35{bottom:780.259867pt;}
.y143{bottom:785.959333pt;}
.y47{bottom:786.259867pt;}
.y6b{bottom:790.259867pt;}
.y112{bottom:792.259867pt;}
.y46{bottom:846.236267pt;}
.h9{height:21.735881pt;}
.h7{height:24.841007pt;}
.h8{height:24.908055pt;}
.h16{height:27.093750pt;}
.hc{height:27.946133pt;}
.h6{height:31.051259pt;}
.ha{height:31.135068pt;}
.h5{height:34.156385pt;}
.hb{height:34.777410pt;}
.h1f{height:38.062500pt;}
.h20{height:38.812500pt;}
.h1a{height:40.640625pt;}
.h3{height:43.471763pt;}
.h4{height:43.589096pt;}
.h1e{height:45.156250pt;}
.h12{height:46.520833pt;}
.h15{height:48.242188pt;}
.h13{height:49.671875pt;}
.h1d{height:51.750000pt;}
.h1b{height:54.187500pt;}
.h1c{height:64.687500pt;}
.h17{height:77.929688pt;}
.h14{height:85.796875pt;}
.h18{height:88.812500pt;}
.h19{height:94.828125pt;}
.hf{height:153.125000pt;}
.h11{height:203.000000pt;}
.h10{height:315.364583pt;}
.h2{height:881.975189pt;}
.h0{height:882.506667pt;}
.h1{height:882.666667pt;}
.he{height:888.000000pt;}
.hd{height:888.189333pt;}
.w1{width:623.333333pt;}
.w3{width:623.622667pt;}
.w2{width:623.623265pt;}
.w0{width:623.626667pt;}
.x0{left:0.000000pt;}
.x3{left:32.664584pt;}
.x1{left:38.604551pt;}
.x15{left:41.574800pt;}
.x1b{left:53.574800pt;}
.x13{left:61.631467pt;}
.xf{left:64.975467pt;}
.x1a{left:68.031467pt;}
.x8{left:71.294000pt;}
.x1d{left:86.929067pt;}
.xd{left:95.037067pt;}
.x12{left:100.087467pt;}
.x14{left:101.495467pt;}
.xb{left:102.915733pt;}
.x2{left:103.933719pt;}
.xc{left:110.363733pt;}
.x9{left:120.852667pt;}
.x17{left:143.622000pt;}
.x10{left:151.758133pt;}
.x1c{left:162.519600pt;}
.x7{left:169.238000pt;}
.x11{left:194.335467pt;}
.xa{left:250.242000pt;}
.xe{left:273.007467pt;}
.x4{left:305.871665pt;}
.x16{left:361.852267pt;}
.x5{left:399.557467pt;}
.x6{left:427.691333pt;}
.x18{left:555.837333pt;}
.x19{left:570.667867pt;}
}




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