
    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_2019ddf79d7b8472463bfd28.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_2403fe237acd727e898ac514.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_540731b382056b101ff1cec5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_6245ef12f0f6184b7a47bedd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_ee6003893fec20f77936d035.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.975586;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);}
.v1{vertical-align:-23.940000px;}
.v3{vertical-align:-20.880000px;}
.v8{vertical-align:-9.360000px;}
.v5{vertical-align:-5.760000px;}
.vd{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:2.880000px;}
.va{vertical-align:5.760000px;}
.vf{vertical-align:13.680000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:23.940000px;}
.v9{vertical-align:30.960000px;}
.v7{vertical-align:32.400000px;}
.vb{vertical-align:37.440000px;}
.v6{vertical-align:41.760000px;}
.ve{vertical-align:69.120000px;}
.ls6{letter-spacing:-0.526200px;}
.ls1c{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.499200px;}
.lsa{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.343200px;}
.ls20{letter-spacing:-0.334200px;}
.ls1a{letter-spacing:-0.296400px;}
.ls10{letter-spacing:-0.219000px;}
.ls9{letter-spacing:-0.206400px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.053280px;}
.ls22{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.131760px;}
.ls11{letter-spacing:0.178560px;}
.lsf{letter-spacing:0.178800px;}
.ls4{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.195600px;}
.ls1b{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.265200px;}
.ls3{letter-spacing:0.284400px;}
.ls19{letter-spacing:0.315600px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.540000px;}
.ls14{letter-spacing:1.368000px;}
.ls21{letter-spacing:1.440000px;}
.ls18{letter-spacing:1.620000px;}
.ls13{letter-spacing:2.088000px;}
.lsc{letter-spacing:2.124000px;}
.ls12{letter-spacing:2.208000px;}
.lse{letter-spacing:9.273600px;}
.ls8{letter-spacing:9.360000px;}
.ls16{letter-spacing:26.296560px;}
.lsd{letter-spacing:43.884000px;}
.ls15{letter-spacing:246.135600px;}
.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;}
}
.ws8{word-spacing:-16.560000px;}
.wsf{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.621000px;}
.ws15{word-spacing:-15.505800px;}
.ws2{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.220000px;}
.ws13{word-spacing:-14.134800px;}
.wsd{word-spacing:-14.118000px;}
.wsb{word-spacing:-13.939200px;}
.ws17{word-spacing:-13.860000px;}
.ws0{word-spacing:-12.060000px;}
.wse{word-spacing:-10.755600px;}
.ws9{word-spacing:-10.440000px;}
.wsc{word-spacing:-9.979200px;}
.ws1{word-spacing:-9.720000px;}
.ws10{word-spacing:-9.682800px;}
.ws14{word-spacing:-9.636000px;}
.ws4{word-spacing:-9.000000px;}
.ws11{word-spacing:-8.136000px;}
.ws12{word-spacing:-7.416000px;}
.ws6{word-spacing:0.000000px;}
._10{margin-left:-4.692480px;}
._f{margin-left:-3.549120px;}
._2{margin-left:-2.461680px;}
._0{margin-left:-1.324800px;}
._1{width:1.528800px;}
._9{width:3.185280px;}
._8{width:4.266000px;}
._4{width:5.289840px;}
._5{width:6.541200px;}
._3{width:7.621920px;}
._7{width:9.354000px;}
._6{width:10.579680px;}
._a{width:12.530160px;}
._11{width:14.307840px;}
._14{width:15.433920px;}
._17{width:16.479360px;}
._18{width:17.650080px;}
._e{width:19.054800px;}
._d{width:20.363040px;}
._1a{width:28.275840px;}
._c{width:36.403200px;}
._b{width:37.540800px;}
._13{width:39.375360px;}
._12{width:40.829760px;}
._1b{width:76.965120px;}
._1c{width:105.864720px;}
._15{width:165.894240px;}
._16{width:200.160000px;}
._19{width:313.580160px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:18.000000px;}
.fs8{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fsc{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fs7{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsd{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs9{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.240000px;}
.yce{bottom:3.420000px;}
.ycc{bottom:12.420000px;}
.y12{bottom:14.400000px;}
.y19{bottom:21.240000px;}
.yca{bottom:21.420000px;}
.y33{bottom:29.340000px;}
.ycb{bottom:30.600000px;}
.y18{bottom:38.520000px;}
.ycd{bottom:39.600000px;}
.y32{bottom:45.720000px;}
.y17{bottom:55.620000px;}
.y31{bottom:62.100000px;}
.y16{bottom:72.900000px;}
.y30{bottom:78.480000px;}
.y15{bottom:90.210000px;}
.y2f{bottom:94.860000px;}
.y1a{bottom:95.430000px;}
.y14{bottom:105.150000px;}
.y2e{bottom:111.240000px;}
.y2d{bottom:127.620000px;}
.y2c{bottom:144.045000px;}
.y2b{bottom:160.425000px;}
.yf0{bottom:161.670000px;}
.ya1{bottom:163.830000px;}
.y11d{bottom:169.950000px;}
.y41{bottom:171.390000px;}
.y75{bottom:176.070000px;}
.y2a{bottom:176.805000px;}
.yef{bottom:179.850000px;}
.y11c{bottom:186.330000px;}
.y40{bottom:190.290000px;}
.ya0{bottom:190.830000px;}
.y3b{bottom:191.205000px;}
.y29{bottom:193.185000px;}
.y74{bottom:195.150000px;}
.yee{bottom:197.850000px;}
.y11b{bottom:207.210000px;}
.y3a{bottom:208.485000px;}
.y3f{bottom:209.190000px;}
.y28{bottom:209.565000px;}
.y73{bottom:214.050000px;}
.yed{bottom:216.030000px;}
.y9f{bottom:216.930000px;}
.y11a{bottom:223.590000px;}
.y9e{bottom:224.670000px;}
.y39{bottom:225.765000px;}
.y27{bottom:225.945000px;}
.yc7{bottom:232.050000px;}
.y3e{bottom:237.090000px;}
.y72{bottom:237.450000px;}
.y26{bottom:242.505000px;}
.y38{bottom:243.045000px;}
.yec{bottom:244.470000px;}
.y3d{bottom:255.810000px;}
.y71{bottom:256.530000px;}
.y9d{bottom:257.070000px;}
.y25{bottom:258.885000px;}
.y37{bottom:260.325000px;}
.y119{bottom:260.850000px;}
.yeb{bottom:264.090000px;}
.y1b{bottom:272.010000px;}
.y9c{bottom:275.250000px;}
.y24{bottom:275.265000px;}
.y70{bottom:275.610000px;}
.y36{bottom:277.605000px;}
.y118{bottom:281.730000px;}
.y3c{bottom:282.645000px;}
.yea{bottom:283.530000px;}
.yc6{bottom:284.970000px;}
.y23{bottom:291.645000px;}
.y35{bottom:292.365000px;}
.y9b{bottom:293.430000px;}
.y6f{bottom:294.510000px;}
.y117{bottom:298.110000px;}
.ye9{bottom:303.150000px;}
.y22{bottom:308.025000px;}
.yc5{bottom:308.730000px;}
.y6e{bottom:313.410000px;}
.y9a{bottom:320.610000px;}
.ye8{bottom:322.770000px;}
.y21{bottom:324.405000px;}
.y6d{bottom:332.490000px;}
.y116{bottom:333.030000px;}
.y20{bottom:340.785000px;}
.ye7{bottom:342.210000px;}
.y99{bottom:348.510000px;}
.y6c{bottom:351.390000px;}
.y1f{bottom:357.165000px;}
.yc4{bottom:360.210000px;}
.y115{bottom:360.930000px;}
.ye6{bottom:361.830000px;}
.y6b{bottom:370.470000px;}
.y1e{bottom:373.545000px;}
.y98{bottom:376.410000px;}
.ye5{bottom:381.270000px;}
.yc3{bottom:387.210000px;}
.y114{bottom:389.010000px;}
.y6a{bottom:389.370000px;}
.y1d{bottom:389.955000px;}
.y97{bottom:394.590000px;}
.ye4{bottom:400.890000px;}
.y1c{bottom:404.175000px;}
.yc2{bottom:405.390000px;}
.y69{bottom:412.635000px;}
.y113{bottom:416.775000px;}
.yc1{bottom:423.615000px;}
.ye3{bottom:429.735000px;}
.y96{bottom:430.815000px;}
.y68{bottom:431.895000px;}
.y112{bottom:434.955000px;}
.yc0{bottom:441.795000px;}
.y95{bottom:448.995000px;}
.y67{bottom:450.795000px;}
.ye2{bottom:457.455000px;}
.ybf{bottom:459.795000px;}
.y111{bottom:462.135000px;}
.y94{bottom:466.995000px;}
.y66{bottom:469.875000px;}
.ye1{bottom:475.635000px;}
.ybe{bottom:477.975000px;}
.y93{bottom:485.175000px;}
.y65{bottom:488.775000px;}
.y110{bottom:490.035000px;}
.ye0{bottom:493.815000px;}
.ybd{bottom:495.975000px;}
.y92{bottom:503.175000px;}
.y64{bottom:507.675000px;}
.y10f{bottom:508.215000px;}
.ydf{bottom:511.995000px;}
.ybc{bottom:514.155000px;}
.y91{bottom:521.355000px;}
.y10e{bottom:526.395000px;}
.y63{bottom:526.755000px;}
.yde{bottom:529.995000px;}
.ybb{bottom:532.335000px;}
.ydd{bottom:548.175000px;}
.y90{bottom:548.535000px;}
.y62{bottom:549.975000px;}
.yba{bottom:550.335000px;}
.y10d{bottom:553.395000px;}
.ydc{bottom:566.175000px;}
.y61{bottom:569.235000px;}
.y13{bottom:571.035000px;}
.y10c{bottom:571.575000px;}
.y8f{bottom:576.435000px;}
.yb9{bottom:579.135000px;}
.ydb{bottom:584.355000px;}
.y13b{bottom:585.795000px;}
.y60{bottom:588.135000px;}
.y10b{bottom:589.575000px;}
.y8e{bottom:594.615000px;}
.yda{bottom:602.535000px;}
.y5f{bottom:607.035000px;}
.y13a{bottom:610.095000px;}
.y8d{bottom:612.615000px;}
.y10a{bottom:616.755000px;}
.yd9{bottom:620.535000px;}
.y5e{bottom:626.115000px;}
.y8c{bottom:630.795000px;}
.y139{bottom:630.975000px;}
.yb8{bottom:634.935000px;}
.yd8{bottom:638.715000px;}
.y5d{bottom:645.015000px;}
.y138{bottom:647.535000px;}
.y8b{bottom:648.975000px;}
.y109{bottom:652.935000px;}
.yb7{bottom:661.965000px;}
.y137{bottom:663.945000px;}
.y5c{bottom:664.125000px;}
.y8a{bottom:667.005000px;}
.yd7{bottom:667.365000px;}
.y108{bottom:679.965000px;}
.y11{bottom:682.665000px;}
.y5b{bottom:683.025000px;}
.y136{bottom:684.825000px;}
.y89{bottom:685.185000px;}
.yb6{bottom:689.145000px;}
.yd6{bottom:695.265000px;}
.y107{bottom:698.145000px;}
.y135{bottom:701.205000px;}
.y5a{bottom:701.925000px;}
.y88{bottom:703.185000px;}
.yd5{bottom:713.445000px;}
.yb5{bottom:716.145000px;}
.y106{bottom:716.325000px;}
.y134{bottom:722.085000px;}
.y59{bottom:725.325000px;}
.y10{bottom:727.125000px;}
.y87{bottom:730.365000px;}
.yd4{bottom:731.445000px;}
.y105{bottom:734.505000px;}
.y133{bottom:738.465000px;}
.yb4{bottom:739.905000px;}
.yf{bottom:744.405000px;}
.yb3{bottom:747.825000px;}
.y86{bottom:748.545000px;}
.yd3{bottom:749.625000px;}
.y104{bottom:752.505000px;}
.y132{bottom:759.345000px;}
.ye{bottom:761.505000px;}
.y58{bottom:763.485000px;}
.y85{bottom:766.545000px;}
.yd2{bottom:773.385000px;}
.y131{bottom:775.725000px;}
.yd{bottom:778.785000px;}
.yb2{bottom:779.325000px;}
.y103{bottom:779.685000px;}
.y57{bottom:782.385000px;}
.y84{bottom:784.725000px;}
.y130{bottom:792.105000px;}
.yc{bottom:797.505000px;}
.y56{bottom:801.465000px;}
.y83{bottom:802.725000px;}
.y102{bottom:807.585000px;}
.y12f{bottom:812.985000px;}
.yb1{bottom:815.505000px;}
.yb{bottom:820.005000px;}
.y55{bottom:820.365000px;}
.y82{bottom:820.905000px;}
.y101{bottom:825.765000px;}
.y12e{bottom:829.365000px;}
.ya{bottom:838.725000px;}
.y54{bottom:839.265000px;}
.yb0{bottom:842.685000px;}
.y100{bottom:843.945000px;}
.y12d{bottom:845.745000px;}
.y81{bottom:848.085000px;}
.yff{bottom:861.945000px;}
.y53{bottom:862.665000px;}
.y12c{bottom:866.625000px;}
.yaf{bottom:869.685000px;}
.y80{bottom:875.985000px;}
.yae{bottom:877.605000px;}
.y9{bottom:878.505000px;}
.yfe{bottom:880.125000px;}
.y52{bottom:881.745000px;}
.y12b{bottom:883.005000px;}
.y7f{bottom:894.165000px;}
.yfd{bottom:898.125000px;}
.y51{bottom:900.870000px;}
.y8{bottom:902.490000px;}
.y12a{bottom:903.930000px;}
.yad{bottom:910.770000px;}
.yfc{bottom:916.350000px;}
.yac{bottom:918.690000px;}
.y50{bottom:919.770000px;}
.y129{bottom:920.310000px;}
.y7e{bottom:921.390000px;}
.yfb{bottom:934.530000px;}
.y128{bottom:936.690000px;}
.y7{bottom:938.310000px;}
.y4f{bottom:938.670000px;}
.y7d{bottom:949.110000px;}
.yab{bottom:954.330000px;}
.y127{bottom:957.570000px;}
.y4e{bottom:957.750000px;}
.yfa{bottom:961.530000px;}
.y6{bottom:962.070000px;}
.yaa{bottom:962.250000px;}
.y7c{bottom:967.290000px;}
.y126{bottom:973.950000px;}
.yf9{bottom:979.710000px;}
.y4d{bottom:980.970000px;}
.y7b{bottom:985.470000px;}
.y125{bottom:990.330000px;}
.ya9{bottom:996.810000px;}
.yf8{bottom:997.890000px;}
.y4c{bottom:1000.230000px;}
.yd1{bottom:1003.110000px;}
.y7a{bottom:1003.650000px;}
.y5{bottom:1003.830000px;}
.y124{bottom:1011.210000px;}
.ya8{bottom:1014.990000px;}
.yf7{bottom:1015.890000px;}
.y4b{bottom:1019.130000px;}
.y79{bottom:1021.650000px;}
.yd0{bottom:1027.590000px;}
.ya7{bottom:1033.170000px;}
.yf6{bottom:1034.070000px;}
.y4a{bottom:1038.030000px;}
.y4{bottom:1038.570000px;}
.y123{bottom:1043.970000px;}
.ycf{bottom:1045.770000px;}
.y78{bottom:1048.830000px;}
.ya6{bottom:1051.350000px;}
.y49{bottom:1057.110000px;}
.yf5{bottom:1061.070000px;}
.yc9{bottom:1064.670000px;}
.y122{bottom:1064.850000px;}
.ya5{bottom:1069.350000px;}
.y48{bottom:1076.010000px;}
.y77{bottom:1076.910000px;}
.yf4{bottom:1079.250000px;}
.y121{bottom:1081.230000px;}
.ya4{bottom:1087.530000px;}
.y47{bottom:1095.090000px;}
.yf3{bottom:1097.430000px;}
.y120{bottom:1097.610000px;}
.ya3{bottom:1105.530000px;}
.y76{bottom:1113.810000px;}
.y46{bottom:1113.990000px;}
.yf2{bottom:1115.430000px;}
.y11f{bottom:1118.490000px;}
.ya2{bottom:1132.710000px;}
.y45{bottom:1132.890000px;}
.yc8{bottom:1133.430000px;}
.yf1{bottom:1133.610000px;}
.y11e{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y44{bottom:1169.460000px;}
.y43{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y42{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hd{height:17.657227px;}
.h21{height:18.180000px;}
.h7{height:38.158594px;}
.ha{height:40.500000px;}
.h15{height:46.251562px;}
.h5{height:48.622500px;}
.h6{height:48.802500px;}
.h20{height:54.360000px;}
.h10{height:55.796836px;}
.h22{height:55.824609px;}
.h11{height:56.194453px;}
.h23{height:57.324375px;}
.he{height:58.621992px;}
.h8{height:58.651172px;}
.h9{height:60.226875px;}
.h16{height:62.184375px;}
.h19{height:63.855000px;}
.h1f{height:64.724766px;}
.h2{height:65.010937px;}
.hb{height:66.757500px;}
.h13{height:70.664062px;}
.h4{height:72.562500px;}
.h1e{height:84.898125px;}
.h1c{height:93.864375px;}
.h1d{height:95.203125px;}
.h3{height:96.508125px;}
.h1a{height:98.083125px;}
.h17{height:99.523125px;}
.hc{height:109.476000px;}
.h18{height:112.365000px;}
.h1b{height:126.883125px;}
.h14{height:153.341016px;}
.h12{height:296.670000px;}
.hf{height:408.495000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.w9{width:108.036000px;}
.w6{width:114.696000px;}
.wa{width:125.856000px;}
.w8{width:128.160000px;}
.wb{width:131.040000px;}
.w7{width:141.876000px;}
.w3{width:237.990000px;}
.w5{width:406.875000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x31{left:9.900000px;}
.x25{left:13.890000px;}
.x1d{left:18.216000px;}
.x2a{left:28.980000px;}
.x26{left:30.450000px;}
.x21{left:34.740000px;}
.x22{left:37.800000px;}
.x32{left:40.170000px;}
.x2b{left:42.840000px;}
.x2e{left:44.130000px;}
.x2c{left:45.360000px;}
.x30{left:47.880000px;}
.x2f{left:48.960000px;}
.x28{left:50.940000px;}
.x23{left:52.200000px;}
.x1f{left:59.040000px;}
.x2d{left:61.020000px;}
.x1c{left:71.820000px;}
.x5{left:108.035987px;}
.x6{left:122.796000px;}
.x2{left:131.255987px;}
.xc{left:156.989987px;}
.x17{left:162.029987px;}
.xa{left:185.250000px;}
.x1e{left:186.510000px;}
.x13{left:189.209987px;}
.x11{left:193.169987px;}
.xe{left:194.789987px;}
.x33{left:196.049987px;}
.x1b{left:199.289987px;}
.xf{left:212.789987px;}
.x1a{left:270.029987px;}
.x18{left:279.254987px;}
.x10{left:297.614987px;}
.x3{left:314.354987px;}
.x20{left:328.395000px;}
.x12{left:344.774987px;}
.x8{left:360.795000px;}
.xd{left:375.374987px;}
.x16{left:376.634987px;}
.x9{left:378.435000px;}
.x14{left:414.254987px;}
.x24{left:456.555000px;}
.x27{left:564.585000px;}
.x15{left:607.424987px;}
.x29{left:690.450000px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x4{left:781.349987px;}
.x19{left:796.649987px;}
.x34{left:814.469987px;}
@media print{
.v1{vertical-align:-21.280000pt;}
.v3{vertical-align:-18.560000pt;}
.v8{vertical-align:-8.320000pt;}
.v5{vertical-align:-5.120000pt;}
.vd{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:2.560000pt;}
.va{vertical-align:5.120000pt;}
.vf{vertical-align:12.160000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:21.280000pt;}
.v9{vertical-align:27.520000pt;}
.v7{vertical-align:28.800000pt;}
.vb{vertical-align:33.280000pt;}
.v6{vertical-align:37.120000pt;}
.ve{vertical-align:61.440000pt;}
.ls6{letter-spacing:-0.467733pt;}
.ls1c{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.443733pt;}
.lsa{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.305067pt;}
.ls20{letter-spacing:-0.297067pt;}
.ls1a{letter-spacing:-0.263467pt;}
.ls10{letter-spacing:-0.194667pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls22{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.117120pt;}
.ls11{letter-spacing:0.158720pt;}
.lsf{letter-spacing:0.158933pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.173867pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.235733pt;}
.ls3{letter-spacing:0.252800pt;}
.ls19{letter-spacing:0.280533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.480000pt;}
.ls14{letter-spacing:1.216000pt;}
.ls21{letter-spacing:1.280000pt;}
.ls18{letter-spacing:1.440000pt;}
.ls13{letter-spacing:1.856000pt;}
.lsc{letter-spacing:1.888000pt;}
.ls12{letter-spacing:1.962667pt;}
.lse{letter-spacing:8.243200pt;}
.ls8{letter-spacing:8.320000pt;}
.ls16{letter-spacing:23.374720pt;}
.lsd{letter-spacing:39.008000pt;}
.ls15{letter-spacing:218.787200pt;}
.ws8{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.885333pt;}
.ws15{word-spacing:-13.782933pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.640000pt;}
.ws13{word-spacing:-12.564267pt;}
.wsd{word-spacing:-12.549333pt;}
.wsb{word-spacing:-12.390400pt;}
.ws17{word-spacing:-12.320000pt;}
.ws0{word-spacing:-10.720000pt;}
.wse{word-spacing:-9.560533pt;}
.ws9{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.870400pt;}
.ws1{word-spacing:-8.640000pt;}
.ws10{word-spacing:-8.606933pt;}
.ws14{word-spacing:-8.565333pt;}
.ws4{word-spacing:-8.000000pt;}
.ws11{word-spacing:-7.232000pt;}
.ws12{word-spacing:-6.592000pt;}
.ws6{word-spacing:0.000000pt;}
._10{margin-left:-4.171093pt;}
._f{margin-left:-3.154773pt;}
._2{margin-left:-2.188160pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.358933pt;}
._9{width:2.831360pt;}
._8{width:3.792000pt;}
._4{width:4.702080pt;}
._5{width:5.814400pt;}
._3{width:6.775040pt;}
._7{width:8.314667pt;}
._6{width:9.404160pt;}
._a{width:11.137920pt;}
._11{width:12.718080pt;}
._14{width:13.719040pt;}
._17{width:14.648320pt;}
._18{width:15.688960pt;}
._e{width:16.937600pt;}
._d{width:18.100480pt;}
._1a{width:25.134080pt;}
._c{width:32.358400pt;}
._b{width:33.369600pt;}
._13{width:35.000320pt;}
._12{width:36.293120pt;}
._1b{width:68.413440pt;}
._1c{width:94.101973pt;}
._15{width:147.461547pt;}
._16{width:177.920000pt;}
._19{width:278.737920pt;}
.fs6{font-size:16.000000pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fsc{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsd{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs9{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.880000pt;}
.yce{bottom:3.040000pt;}
.ycc{bottom:11.040000pt;}
.y12{bottom:12.800000pt;}
.y19{bottom:18.880000pt;}
.yca{bottom:19.040000pt;}
.y33{bottom:26.080000pt;}
.ycb{bottom:27.200000pt;}
.y18{bottom:34.240000pt;}
.ycd{bottom:35.200000pt;}
.y32{bottom:40.640000pt;}
.y17{bottom:49.440000pt;}
.y31{bottom:55.200000pt;}
.y16{bottom:64.800000pt;}
.y30{bottom:69.760000pt;}
.y15{bottom:80.186667pt;}
.y2f{bottom:84.320000pt;}
.y1a{bottom:84.826667pt;}
.y14{bottom:93.466667pt;}
.y2e{bottom:98.880000pt;}
.y2d{bottom:113.440000pt;}
.y2c{bottom:128.040000pt;}
.y2b{bottom:142.600000pt;}
.yf0{bottom:143.706667pt;}
.ya1{bottom:145.626667pt;}
.y11d{bottom:151.066667pt;}
.y41{bottom:152.346667pt;}
.y75{bottom:156.506667pt;}
.y2a{bottom:157.160000pt;}
.yef{bottom:159.866667pt;}
.y11c{bottom:165.626667pt;}
.y40{bottom:169.146667pt;}
.ya0{bottom:169.626667pt;}
.y3b{bottom:169.960000pt;}
.y29{bottom:171.720000pt;}
.y74{bottom:173.466667pt;}
.yee{bottom:175.866667pt;}
.y11b{bottom:184.186667pt;}
.y3a{bottom:185.320000pt;}
.y3f{bottom:185.946667pt;}
.y28{bottom:186.280000pt;}
.y73{bottom:190.266667pt;}
.yed{bottom:192.026667pt;}
.y9f{bottom:192.826667pt;}
.y11a{bottom:198.746667pt;}
.y9e{bottom:199.706667pt;}
.y39{bottom:200.680000pt;}
.y27{bottom:200.840000pt;}
.yc7{bottom:206.266667pt;}
.y3e{bottom:210.746667pt;}
.y72{bottom:211.066667pt;}
.y26{bottom:215.560000pt;}
.y38{bottom:216.040000pt;}
.yec{bottom:217.306667pt;}
.y3d{bottom:227.386667pt;}
.y71{bottom:228.026667pt;}
.y9d{bottom:228.506667pt;}
.y25{bottom:230.120000pt;}
.y37{bottom:231.400000pt;}
.y119{bottom:231.866667pt;}
.yeb{bottom:234.746667pt;}
.y1b{bottom:241.786667pt;}
.y9c{bottom:244.666667pt;}
.y24{bottom:244.680000pt;}
.y70{bottom:244.986667pt;}
.y36{bottom:246.760000pt;}
.y118{bottom:250.426667pt;}
.y3c{bottom:251.240000pt;}
.yea{bottom:252.026667pt;}
.yc6{bottom:253.306667pt;}
.y23{bottom:259.240000pt;}
.y35{bottom:259.880000pt;}
.y9b{bottom:260.826667pt;}
.y6f{bottom:261.786667pt;}
.y117{bottom:264.986667pt;}
.ye9{bottom:269.466667pt;}
.y22{bottom:273.800000pt;}
.yc5{bottom:274.426667pt;}
.y6e{bottom:278.586667pt;}
.y9a{bottom:284.986667pt;}
.ye8{bottom:286.906667pt;}
.y21{bottom:288.360000pt;}
.y6d{bottom:295.546667pt;}
.y116{bottom:296.026667pt;}
.y20{bottom:302.920000pt;}
.ye7{bottom:304.186667pt;}
.y99{bottom:309.786667pt;}
.y6c{bottom:312.346667pt;}
.y1f{bottom:317.480000pt;}
.yc4{bottom:320.186667pt;}
.y115{bottom:320.826667pt;}
.ye6{bottom:321.626667pt;}
.y6b{bottom:329.306667pt;}
.y1e{bottom:332.040000pt;}
.y98{bottom:334.586667pt;}
.ye5{bottom:338.906667pt;}
.yc3{bottom:344.186667pt;}
.y114{bottom:345.786667pt;}
.y6a{bottom:346.106667pt;}
.y1d{bottom:346.626667pt;}
.y97{bottom:350.746667pt;}
.ye4{bottom:356.346667pt;}
.y1c{bottom:359.266667pt;}
.yc2{bottom:360.346667pt;}
.y69{bottom:366.786667pt;}
.y113{bottom:370.466667pt;}
.yc1{bottom:376.546667pt;}
.ye3{bottom:381.986667pt;}
.y96{bottom:382.946667pt;}
.y68{bottom:383.906667pt;}
.y112{bottom:386.626667pt;}
.yc0{bottom:392.706667pt;}
.y95{bottom:399.106667pt;}
.y67{bottom:400.706667pt;}
.ye2{bottom:406.626667pt;}
.ybf{bottom:408.706667pt;}
.y111{bottom:410.786667pt;}
.y94{bottom:415.106667pt;}
.y66{bottom:417.666667pt;}
.ye1{bottom:422.786667pt;}
.ybe{bottom:424.866667pt;}
.y93{bottom:431.266667pt;}
.y65{bottom:434.466667pt;}
.y110{bottom:435.586667pt;}
.ye0{bottom:438.946667pt;}
.ybd{bottom:440.866667pt;}
.y92{bottom:447.266667pt;}
.y64{bottom:451.266667pt;}
.y10f{bottom:451.746667pt;}
.ydf{bottom:455.106667pt;}
.ybc{bottom:457.026667pt;}
.y91{bottom:463.426667pt;}
.y10e{bottom:467.906667pt;}
.y63{bottom:468.226667pt;}
.yde{bottom:471.106667pt;}
.ybb{bottom:473.186667pt;}
.ydd{bottom:487.266667pt;}
.y90{bottom:487.586667pt;}
.y62{bottom:488.866667pt;}
.yba{bottom:489.186667pt;}
.y10d{bottom:491.906667pt;}
.ydc{bottom:503.266667pt;}
.y61{bottom:505.986667pt;}
.y13{bottom:507.586667pt;}
.y10c{bottom:508.066667pt;}
.y8f{bottom:512.386667pt;}
.yb9{bottom:514.786667pt;}
.ydb{bottom:519.426667pt;}
.y13b{bottom:520.706667pt;}
.y60{bottom:522.786667pt;}
.y10b{bottom:524.066667pt;}
.y8e{bottom:528.546667pt;}
.yda{bottom:535.586667pt;}
.y5f{bottom:539.586667pt;}
.y13a{bottom:542.306667pt;}
.y8d{bottom:544.546667pt;}
.y10a{bottom:548.226667pt;}
.yd9{bottom:551.586667pt;}
.y5e{bottom:556.546667pt;}
.y8c{bottom:560.706667pt;}
.y139{bottom:560.866667pt;}
.yb8{bottom:564.386667pt;}
.yd8{bottom:567.746667pt;}
.y5d{bottom:573.346667pt;}
.y138{bottom:575.586667pt;}
.y8b{bottom:576.866667pt;}
.y109{bottom:580.386667pt;}
.yb7{bottom:588.413333pt;}
.y137{bottom:590.173333pt;}
.y5c{bottom:590.333333pt;}
.y8a{bottom:592.893333pt;}
.yd7{bottom:593.213333pt;}
.y108{bottom:604.413333pt;}
.y11{bottom:606.813333pt;}
.y5b{bottom:607.133333pt;}
.y136{bottom:608.733333pt;}
.y89{bottom:609.053333pt;}
.yb6{bottom:612.573333pt;}
.yd6{bottom:618.013333pt;}
.y107{bottom:620.573333pt;}
.y135{bottom:623.293333pt;}
.y5a{bottom:623.933333pt;}
.y88{bottom:625.053333pt;}
.yd5{bottom:634.173333pt;}
.yb5{bottom:636.573333pt;}
.y106{bottom:636.733333pt;}
.y134{bottom:641.853333pt;}
.y59{bottom:644.733333pt;}
.y10{bottom:646.333333pt;}
.y87{bottom:649.213333pt;}
.yd4{bottom:650.173333pt;}
.y105{bottom:652.893333pt;}
.y133{bottom:656.413333pt;}
.yb4{bottom:657.693333pt;}
.yf{bottom:661.693333pt;}
.yb3{bottom:664.733333pt;}
.y86{bottom:665.373333pt;}
.yd3{bottom:666.333333pt;}
.y104{bottom:668.893333pt;}
.y132{bottom:674.973333pt;}
.ye{bottom:676.893333pt;}
.y58{bottom:678.653333pt;}
.y85{bottom:681.373333pt;}
.yd2{bottom:687.453333pt;}
.y131{bottom:689.533333pt;}
.yd{bottom:692.253333pt;}
.yb2{bottom:692.733333pt;}
.y103{bottom:693.053333pt;}
.y57{bottom:695.453333pt;}
.y84{bottom:697.533333pt;}
.y130{bottom:704.093333pt;}
.yc{bottom:708.893333pt;}
.y56{bottom:712.413333pt;}
.y83{bottom:713.533333pt;}
.y102{bottom:717.853333pt;}
.y12f{bottom:722.653333pt;}
.yb1{bottom:724.893333pt;}
.yb{bottom:728.893333pt;}
.y55{bottom:729.213333pt;}
.y82{bottom:729.693333pt;}
.y101{bottom:734.013333pt;}
.y12e{bottom:737.213333pt;}
.ya{bottom:745.533333pt;}
.y54{bottom:746.013333pt;}
.yb0{bottom:749.053333pt;}
.y100{bottom:750.173333pt;}
.y12d{bottom:751.773333pt;}
.y81{bottom:753.853333pt;}
.yff{bottom:766.173333pt;}
.y53{bottom:766.813333pt;}
.y12c{bottom:770.333333pt;}
.yaf{bottom:773.053333pt;}
.y80{bottom:778.653333pt;}
.yae{bottom:780.093333pt;}
.y9{bottom:780.893333pt;}
.yfe{bottom:782.333333pt;}
.y52{bottom:783.773333pt;}
.y12b{bottom:784.893333pt;}
.y7f{bottom:794.813333pt;}
.yfd{bottom:798.333333pt;}
.y51{bottom:800.773333pt;}
.y8{bottom:802.213333pt;}
.y12a{bottom:803.493333pt;}
.yad{bottom:809.573333pt;}
.yfc{bottom:814.533333pt;}
.yac{bottom:816.613333pt;}
.y50{bottom:817.573333pt;}
.y129{bottom:818.053333pt;}
.y7e{bottom:819.013333pt;}
.yfb{bottom:830.693333pt;}
.y128{bottom:832.613333pt;}
.y7{bottom:834.053333pt;}
.y4f{bottom:834.373333pt;}
.y7d{bottom:843.653333pt;}
.yab{bottom:848.293333pt;}
.y127{bottom:851.173333pt;}
.y4e{bottom:851.333333pt;}
.yfa{bottom:854.693333pt;}
.y6{bottom:855.173333pt;}
.yaa{bottom:855.333333pt;}
.y7c{bottom:859.813333pt;}
.y126{bottom:865.733333pt;}
.yf9{bottom:870.853333pt;}
.y4d{bottom:871.973333pt;}
.y7b{bottom:875.973333pt;}
.y125{bottom:880.293333pt;}
.ya9{bottom:886.053333pt;}
.yf8{bottom:887.013333pt;}
.y4c{bottom:889.093333pt;}
.yd1{bottom:891.653333pt;}
.y7a{bottom:892.133333pt;}
.y5{bottom:892.293333pt;}
.y124{bottom:898.853333pt;}
.ya8{bottom:902.213333pt;}
.yf7{bottom:903.013333pt;}
.y4b{bottom:905.893333pt;}
.y79{bottom:908.133333pt;}
.yd0{bottom:913.413333pt;}
.ya7{bottom:918.373333pt;}
.yf6{bottom:919.173333pt;}
.y4a{bottom:922.693333pt;}
.y4{bottom:923.173333pt;}
.y123{bottom:927.973333pt;}
.ycf{bottom:929.573333pt;}
.y78{bottom:932.293333pt;}
.ya6{bottom:934.533333pt;}
.y49{bottom:939.653333pt;}
.yf5{bottom:943.173333pt;}
.yc9{bottom:946.373333pt;}
.y122{bottom:946.533333pt;}
.ya5{bottom:950.533333pt;}
.y48{bottom:956.453333pt;}
.y77{bottom:957.253333pt;}
.yf4{bottom:959.333333pt;}
.y121{bottom:961.093333pt;}
.ya4{bottom:966.693333pt;}
.y47{bottom:973.413333pt;}
.yf3{bottom:975.493333pt;}
.y120{bottom:975.653333pt;}
.ya3{bottom:982.693333pt;}
.y76{bottom:990.053333pt;}
.y46{bottom:990.213333pt;}
.yf2{bottom:991.493333pt;}
.y11f{bottom:994.213333pt;}
.ya2{bottom:1006.853333pt;}
.y45{bottom:1007.013333pt;}
.yc8{bottom:1007.493333pt;}
.yf1{bottom:1007.653333pt;}
.y11e{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y44{bottom:1039.520000pt;}
.y43{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y42{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hd{height:15.695312pt;}
.h21{height:16.160000pt;}
.h7{height:33.918750pt;}
.ha{height:36.000000pt;}
.h15{height:41.112500pt;}
.h5{height:43.220000pt;}
.h6{height:43.380000pt;}
.h20{height:48.320000pt;}
.h10{height:49.597187pt;}
.h22{height:49.621875pt;}
.h11{height:49.950625pt;}
.h23{height:50.955000pt;}
.he{height:52.108438pt;}
.h8{height:52.134375pt;}
.h9{height:53.535000pt;}
.h16{height:55.275000pt;}
.h19{height:56.760000pt;}
.h1f{height:57.533125pt;}
.h2{height:57.787500pt;}
.hb{height:59.340000pt;}
.h13{height:62.812500pt;}
.h4{height:64.500000pt;}
.h1e{height:75.465000pt;}
.h1c{height:83.435000pt;}
.h1d{height:84.625000pt;}
.h3{height:85.785000pt;}
.h1a{height:87.185000pt;}
.h17{height:88.465000pt;}
.hc{height:97.312000pt;}
.h18{height:99.880000pt;}
.h1b{height:112.785000pt;}
.h14{height:136.303125pt;}
.h12{height:263.706667pt;}
.hf{height:363.106667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.w9{width:96.032000pt;}
.w6{width:101.952000pt;}
.wa{width:111.872000pt;}
.w8{width:113.920000pt;}
.wb{width:116.480000pt;}
.w7{width:126.112000pt;}
.w3{width:211.546667pt;}
.w5{width:361.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x31{left:8.800000pt;}
.x25{left:12.346667pt;}
.x1d{left:16.192000pt;}
.x2a{left:25.760000pt;}
.x26{left:27.066667pt;}
.x21{left:30.880000pt;}
.x22{left:33.600000pt;}
.x32{left:35.706667pt;}
.x2b{left:38.080000pt;}
.x2e{left:39.226667pt;}
.x2c{left:40.320000pt;}
.x30{left:42.560000pt;}
.x2f{left:43.520000pt;}
.x28{left:45.280000pt;}
.x23{left:46.400000pt;}
.x1f{left:52.480000pt;}
.x2d{left:54.240000pt;}
.x1c{left:63.840000pt;}
.x5{left:96.031988pt;}
.x6{left:109.152000pt;}
.x2{left:116.671988pt;}
.xc{left:139.546655pt;}
.x17{left:144.026655pt;}
.xa{left:164.666667pt;}
.x1e{left:165.786667pt;}
.x13{left:168.186655pt;}
.x11{left:171.706655pt;}
.xe{left:173.146655pt;}
.x33{left:174.266655pt;}
.x1b{left:177.146655pt;}
.xf{left:189.146655pt;}
.x1a{left:240.026655pt;}
.x18{left:248.226655pt;}
.x10{left:264.546655pt;}
.x3{left:279.426655pt;}
.x20{left:291.906667pt;}
.x12{left:306.466655pt;}
.x8{left:320.706667pt;}
.xd{left:333.666655pt;}
.x16{left:334.786655pt;}
.x9{left:336.386667pt;}
.x14{left:368.226655pt;}
.x24{left:405.826667pt;}
.x27{left:501.853333pt;}
.x15{left:539.933322pt;}
.x29{left:613.733333pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x4{left:694.533322pt;}
.x19{left:708.133322pt;}
.x34{left:723.973322pt;}
}




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