
    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_de5e901b4aa97bc933db4ff6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_503acc27407b1c71de321a81.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_7ed9a300f6e6b97484a7c032.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6a9d180eef690e9c5b3506b8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5aac859e214658e4cbb97cdd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_87a982aee704956636da86ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_36a97e59bf32a6bf5653bfdc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_05341467bdbb03fb46ab8d07.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_8cafdc98f5df1c5c08e4d1e0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls10{letter-spacing:-0.450600px;}
.lse{letter-spacing:-0.223800px;}
.ls8{letter-spacing:-0.181200px;}
.ls2{letter-spacing:-0.106800px;}
.ls19{letter-spacing:-0.100200px;}
.lsc{letter-spacing:-0.090600px;}
.ls17{letter-spacing:-0.053280px;}
.ls18{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.269280px;}
.lsf{letter-spacing:0.269400px;}
.ls9{letter-spacing:0.311760px;}
.ls14{letter-spacing:0.613440px;}
.ls7{letter-spacing:0.666000px;}
.ls16{letter-spacing:0.666720px;}
.lsd{letter-spacing:0.672000px;}
.ls1{letter-spacing:0.714000px;}
.ls12{letter-spacing:4.986720px;}
.ls4{letter-spacing:5.706720px;}
.ls6{letter-spacing:10.746720px;}
.ls13{letter-spacing:15.066720px;}
.ls15{letter-spacing:43.266720px;}
.ls3{letter-spacing:64.200000px;}
.lsa{letter-spacing:102.485280px;}
.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;}
}
.ws6{word-spacing:-16.873080px;}
.wsc{word-spacing:-16.666560px;}
.wsb{word-spacing:-16.613280px;}
.wse{word-spacing:-16.513080px;}
.ws1{word-spacing:-16.506480px;}
.ws8{word-spacing:-14.082720px;}
.wsa{word-spacing:-13.680120px;}
.ws4{word-spacing:-13.410720px;}
.ws7{word-spacing:-13.320120px;}
.ws5{word-spacing:-13.229520px;}
.ws9{word-spacing:-13.186920px;}
.ws0{word-spacing:-11.522640px;}
.wsd{word-spacing:-10.800000px;}
.ws3{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.374480px;}
._0{width:1.374480px;}
._4{width:2.868480px;}
._3{width:4.123440px;}
._10{width:5.375280px;}
._11{width:6.636480px;}
._b{width:8.007840px;}
._c{width:9.143280px;}
._d{width:10.940880px;}
._8{width:11.949600px;}
._7{width:13.147200px;}
._6{width:14.402160px;}
._f{width:15.538800px;}
._5{width:17.808480px;}
._2{width:19.661040px;}
._e{width:20.975760px;}
._9{width:22.051440px;}
._a{width:23.067360px;}
._14{width:24.740640px;}
._12{width:26.652960px;}
._34{width:28.678320px;}
._25{width:30.373200px;}
._2a{width:31.957920px;}
._22{width:33.671520px;}
._1c{width:36.276480px;}
._1d{width:37.940400px;}
._21{width:39.774240px;}
._30{width:41.530320px;}
._20{width:42.547680px;}
._1e{width:43.854480px;}
._1f{width:45.779760px;}
._28{width:47.612880px;}
._29{width:48.842640px;}
._2d{width:50.096880px;}
._24{width:53.353440px;}
._32{width:54.993600px;}
._13{width:58.242720px;}
._1a{width:61.722720px;}
._2e{width:65.485440px;}
._23{width:68.283360px;}
._2c{width:71.250480px;}
._2b{width:72.769680px;}
._26{width:75.592080px;}
._27{width:76.918320px;}
._35{width:83.068560px;}
._2f{width:84.829680px;}
._1b{width:90.450000px;}
._17{width:93.778560px;}
._33{width:102.317040px;}
._15{width:111.675600px;}
._31{width:119.273040px;}
._16{width:128.656080px;}
._18{width:155.260080px;}
._19{width:206.105040px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ye9{bottom:2.685000px;}
.yee{bottom:2.692500px;}
.y13b{bottom:2.700000px;}
.yad{bottom:2.865000px;}
.yb1{bottom:2.872500px;}
.y8d{bottom:2.880000px;}
.y136{bottom:3.060000px;}
.y14d{bottom:4.140000px;}
.y151{bottom:4.320000px;}
.y112{bottom:6.510000px;}
.yeb{bottom:6.645000px;}
.y64{bottom:6.660000px;}
.ydf{bottom:6.840000px;}
.ye4{bottom:6.870000px;}
.ye6{bottom:9.705000px;}
.yf0{bottom:9.712500px;}
.ye1{bottom:9.720000px;}
.y137{bottom:9.900000px;}
.y127{bottom:10.065000px;}
.y125{bottom:10.245000px;}
.y134{bottom:10.440000px;}
.y147{bottom:14.940000px;}
.y9f{bottom:15.120000px;}
.y85{bottom:16.200000px;}
.ye7{bottom:16.545000px;}
.yb0{bottom:16.552500px;}
.y90{bottom:16.560000px;}
.yac{bottom:16.725000px;}
.y8c{bottom:16.740000px;}
.yb4{bottom:16.770000px;}
.y135{bottom:16.920000px;}
.y14c{bottom:18.000000px;}
.yef{bottom:23.386500px;}
.y145{bottom:28.290000px;}
.y9e{bottom:28.800000px;}
.yab{bottom:30.405000px;}
.yed{bottom:30.406500px;}
.yaf{bottom:30.412500px;}
.y8b{bottom:30.420000px;}
.yb3{bottom:30.450000px;}
.y149{bottom:31.680000px;}
.y14f{bottom:31.860000px;}
.y9d{bottom:42.660000px;}
.yaa{bottom:44.265000px;}
.y8a{bottom:44.280000px;}
.y97{bottom:44.310000px;}
.y14b{bottom:45.540000px;}
.y150{bottom:45.720000px;}
.y9c{bottom:56.520000px;}
.y8f{bottom:57.960000px;}
.y96{bottom:57.990000px;}
.ya9{bottom:58.125000px;}
.y89{bottom:58.140000px;}
.y14a{bottom:59.400000px;}
.y9b{bottom:70.200000px;}
.ya8{bottom:71.805000px;}
.y88{bottom:71.820000px;}
.y95{bottom:71.850000px;}
.y9a{bottom:84.060000px;}
.ya7{bottom:85.665000px;}
.y87{bottom:85.680000px;}
.y94{bottom:85.710000px;}
.y99{bottom:97.920000px;}
.y93{bottom:99.390000px;}
.ya6{bottom:99.525000px;}
.ya3{bottom:99.540000px;}
.yae{bottom:109.303500px;}
.ya5{bottom:113.205000px;}
.ya2{bottom:113.220000px;}
.y92{bottom:113.250000px;}
.yf1{bottom:117.216000px;}
.y18d{bottom:122.796000px;}
.y15d{bottom:126.936000px;}
.ya1{bottom:127.080000px;}
.y3a{bottom:131.796000px;}
.yec{bottom:131.983500px;}
.y18c{bottom:139.896000px;}
.y73{bottom:141.876000px;}
.y15c{bottom:144.216000px;}
.y12a{bottom:148.356000px;}
.y39{bottom:150.510000px;}
.ya4{bottom:151.425000px;}
.y18b{bottom:157.350000px;}
.y15b{bottom:161.490000px;}
.y72{bottom:161.670000px;}
.y129{bottom:162.945000px;}
.y38{bottom:169.050000px;}
.yea{bottom:174.105000px;}
.y18a{bottom:174.630000px;}
.y15a{bottom:178.770000px;}
.y71{bottom:181.470000px;}
.y128{bottom:184.905000px;}
.y37{bottom:187.770000px;}
.y189{bottom:191.910000px;}
.y159{bottom:196.050000px;}
.ye8{bottom:196.065000px;}
.y70{bottom:201.450000px;}
.y36{bottom:206.310000px;}
.y126{bottom:207.045000px;}
.y188{bottom:209.010000px;}
.y158{bottom:213.330000px;}
.y6f{bottom:221.250000px;}
.y35{bottom:224.850000px;}
.y187{bottom:226.110000px;}
.y124{bottom:229.005000px;}
.y157{bottom:230.430000px;}
.ye5{bottom:238.185000px;}
.y6e{bottom:238.890000px;}
.y34{bottom:243.570000px;}
.y156{bottom:247.890000px;}
.y123{bottom:250.965000px;}
.y6d{bottom:257.250000px;}
.y186{bottom:260.850000px;}
.y33{bottom:262.110000px;}
.y155{bottom:265.170000px;}
.ye3{bottom:266.445000px;}
.y6c{bottom:276.015000px;}
.ya0{bottom:276.375000px;}
.y122{bottom:276.555000px;}
.y185{bottom:278.175000px;}
.y32{bottom:279.435000px;}
.y154{bottom:282.315000px;}
.ye2{bottom:288.435000px;}
.y121{bottom:293.475000px;}
.y6b{bottom:294.555000px;}
.y184{bottom:295.275000px;}
.y31{bottom:296.715000px;}
.y153{bottom:299.595000px;}
.y120{bottom:310.755000px;}
.y183{bottom:312.555000px;}
.y6a{bottom:313.095000px;}
.y30{bottom:313.995000px;}
.y152{bottom:314.175000px;}
.ye0{bottom:316.875000px;}
.y11f{bottom:328.035000px;}
.y182{bottom:329.835000px;}
.y2f{bottom:331.275000px;}
.y69{bottom:331.815000px;}
.yde{bottom:345.135000px;}
.y11e{bottom:345.315000px;}
.y181{bottom:347.115000px;}
.y2e{bottom:348.375000px;}
.y68{bottom:350.355000px;}
.y11d{bottom:362.595000px;}
.y180{bottom:364.395000px;}
.y67{bottom:364.935000px;}
.y2d{bottom:365.655000px;}
.ydd{bottom:367.275000px;}
.y11c{bottom:379.875000px;}
.y17f{bottom:381.495000px;}
.y2c{bottom:382.935000px;}
.y14e{bottom:386.535000px;}
.y66{bottom:386.895000px;}
.ydc{bottom:392.655000px;}
.y11b{bottom:396.975000px;}
.y17e{bottom:398.955000px;}
.y2b{bottom:400.215000px;}
.y65{bottom:408.855000px;}
.ydb{bottom:409.755000px;}
.y11a{bottom:414.255000px;}
.y98{bottom:415.155000px;}
.y17d{bottom:416.055000px;}
.y2a{bottom:417.495000px;}
.yda{bottom:427.035000px;}
.y63{bottom:430.995000px;}
.y119{bottom:431.535000px;}
.y17c{bottom:433.335000px;}
.y29{bottom:434.775000px;}
.yd9{bottom:444.315000px;}
.y118{bottom:448.815000px;}
.y17b{bottom:450.615000px;}
.y28{bottom:451.875000px;}
.y62{bottom:457.815000px;}
.y148{bottom:459.075000px;}
.yd8{bottom:461.595000px;}
.y117{bottom:466.095000px;}
.y17a{bottom:467.715000px;}
.y27{bottom:469.155000px;}
.y61{bottom:476.175000px;}
.yd7{bottom:478.875000px;}
.y116{bottom:483.375000px;}
.y179{bottom:485.175000px;}
.y26{bottom:486.435000px;}
.y60{bottom:493.455000px;}
.yd6{bottom:495.975000px;}
.y115{bottom:500.475000px;}
.y178{bottom:502.455000px;}
.y25{bottom:503.715000px;}
.y5f{bottom:510.735000px;}
.yd5{bottom:513.255000px;}
.y114{bottom:517.755000px;}
.y177{bottom:519.375000px;}
.y24{bottom:520.995000px;}
.y91{bottom:524.775000px;}
.y5e{bottom:528.015000px;}
.yd4{bottom:530.535000px;}
.y144{bottom:531.435000px;}
.y113{bottom:535.035000px;}
.y176{bottom:536.835000px;}
.y23{bottom:538.275000px;}
.y5d{bottom:545.295000px;}
.yd3{bottom:547.815000px;}
.y111{bottom:549.615000px;}
.y175{bottom:553.935000px;}
.y22{bottom:555.405000px;}
.y146{bottom:558.105000px;}
.y5c{bottom:562.605000px;}
.yd2{bottom:565.125000px;}
.y174{bottom:571.425000px;}
.y110{bottom:571.605000px;}
.y21{bottom:572.685000px;}
.y5b{bottom:579.705000px;}
.yd1{bottom:582.405000px;}
.y143{bottom:588.165000px;}
.y173{bottom:588.525000px;}
.y20{bottom:589.965000px;}
.y10f{bottom:593.565000px;}
.y5a{bottom:596.985000px;}
.yd0{bottom:599.505000px;}
.y142{bottom:605.265000px;}
.y172{bottom:605.805000px;}
.y1f{bottom:607.245000px;}
.y59{bottom:614.265000px;}
.y10e{bottom:615.525000px;}
.ycf{bottom:616.785000px;}
.y141{bottom:622.545000px;}
.y171{bottom:622.905000px;}
.y1e{bottom:624.525000px;}
.y58{bottom:631.545000px;}
.yce{bottom:634.065000px;}
.y140{bottom:639.825000px;}
.y170{bottom:640.365000px;}
.y10d{bottom:641.085000px;}
.y1d{bottom:641.625000px;}
.y57{bottom:648.825000px;}
.y8e{bottom:649.725000px;}
.ycd{bottom:651.345000px;}
.y13f{bottom:657.105000px;}
.y16f{bottom:657.645000px;}
.y1c{bottom:658.905000px;}
.y56{bottom:666.105000px;}
.ycc{bottom:668.805000px;}
.y10c{bottom:670.245000px;}
.y13e{bottom:674.205000px;}
.y16e{bottom:674.745000px;}
.y1b{bottom:676.185000px;}
.y55{bottom:683.205000px;}
.ycb{bottom:685.725000px;}
.y10b{bottom:687.525000px;}
.y13d{bottom:691.485000px;}
.y16d{bottom:692.205000px;}
.y1a{bottom:693.465000px;}
.y54{bottom:700.485000px;}
.yca{bottom:703.005000px;}
.y10a{bottom:704.625000px;}
.y13c{bottom:706.065000px;}
.y16c{bottom:709.305000px;}
.y19{bottom:710.925000px;}
.y53{bottom:717.765000px;}
.y86{bottom:719.385000px;}
.yc9{bottom:720.285000px;}
.y16b{bottom:726.405000px;}
.y18{bottom:728.025000px;}
.y109{bottom:734.145000px;}
.y13a{bottom:734.505000px;}
.y52{bottom:735.045000px;}
.yc8{bottom:737.565000px;}
.y16a{bottom:743.865000px;}
.y17{bottom:745.305000px;}
.y51{bottom:752.325000px;}
.yc7{bottom:754.845000px;}
.y169{bottom:760.965000px;}
.y16{bottom:762.405000px;}
.y139{bottom:762.765000px;}
.y108{bottom:763.125000px;}
.y50{bottom:769.425000px;}
.yc6{bottom:772.125000px;}
.y168{bottom:778.425000px;}
.y15{bottom:779.865000px;}
.y107{bottom:780.405000px;}
.y138{bottom:784.725000px;}
.y4f{bottom:786.705000px;}
.yc5{bottom:789.225000px;}
.y167{bottom:795.705000px;}
.y14{bottom:797.145000px;}
.y106{bottom:797.685000px;}
.y4e{bottom:803.985000px;}
.yc4{bottom:806.505000px;}
.y133{bottom:806.685000px;}
.y166{bottom:813.705000px;}
.y13{bottom:814.245000px;}
.y105{bottom:814.965000px;}
.y84{bottom:816.765000px;}
.y4d{bottom:821.265000px;}
.yc3{bottom:823.785000px;}
.y12{bottom:831.525000px;}
.y165{bottom:831.705000px;}
.y104{bottom:832.245000px;}
.y4c{bottom:838.590000px;}
.y132{bottom:838.770000px;}
.yc2{bottom:841.110000px;}
.y83{bottom:848.130000px;}
.y11{bottom:848.670000px;}
.y103{bottom:849.570000px;}
.y164{bottom:849.750000px;}
.y4b{bottom:855.870000px;}
.yc1{bottom:858.390000px;}
.y82{bottom:865.230000px;}
.y10{bottom:865.950000px;}
.y102{bottom:866.670000px;}
.y163{bottom:866.850000px;}
.y4a{bottom:872.970000px;}
.yc0{bottom:875.670000px;}
.y81{bottom:882.330000px;}
.yf{bottom:883.230000px;}
.y101{bottom:883.950000px;}
.y162{bottom:884.130000px;}
.y49{bottom:890.250000px;}
.ybf{bottom:892.770000px;}
.y80{bottom:899.610000px;}
.ye{bottom:900.510000px;}
.y100{bottom:901.230000px;}
.y48{bottom:907.530000px;}
.ybe{bottom:910.050000px;}
.yd{bottom:917.790000px;}
.yff{bottom:918.510000px;}
.y161{bottom:918.690000px;}
.y7f{bottom:919.230000px;}
.y47{bottom:924.810000px;}
.ybd{bottom:927.330000px;}
.yc{bottom:935.070000px;}
.yfe{bottom:935.790000px;}
.y160{bottom:935.970000px;}
.y7e{bottom:939.210000px;}
.y46{bottom:942.090000px;}
.ybc{bottom:944.610000px;}
.yb{bottom:952.170000px;}
.yfd{bottom:953.070000px;}
.y15f{bottom:953.250000px;}
.y7d{bottom:959.010000px;}
.y131{bottom:959.190000px;}
.y45{bottom:959.370000px;}
.ybb{bottom:961.890000px;}
.ya{bottom:969.450000px;}
.yfc{bottom:970.350000px;}
.y44{bottom:976.470000px;}
.y7c{bottom:978.990000px;}
.y130{bottom:979.350000px;}
.y9{bottom:986.730000px;}
.yfb{bottom:987.630000px;}
.y43{bottom:993.570000px;}
.yba{bottom:996.270000px;}
.y12f{bottom:996.450000px;}
.y7b{bottom:999.690000px;}
.y8{bottom:1004.010000px;}
.yfa{bottom:1004.730000px;}
.y15e{bottom:1004.910000px;}
.y42{bottom:1013.550000px;}
.y12e{bottom:1016.430000px;}
.y7a{bottom:1019.490000px;}
.y7{bottom:1021.290000px;}
.yf9{bottom:1022.010000px;}
.yb9{bottom:1030.830000px;}
.y12d{bottom:1033.530000px;}
.y41{bottom:1033.710000px;}
.y6{bottom:1038.570000px;}
.yf8{bottom:1039.290000px;}
.y79{bottom:1039.470000px;}
.yb8{bottom:1048.110000px;}
.y40{bottom:1050.810000px;}
.y12c{bottom:1053.690000px;}
.y5{bottom:1055.850000px;}
.yf7{bottom:1056.390000px;}
.y78{bottom:1060.350000px;}
.yb7{bottom:1065.390000px;}
.y12b{bottom:1070.790000px;}
.y3f{bottom:1070.970000px;}
.y4{bottom:1073.130000px;}
.yf6{bottom:1073.670000px;}
.y77{bottom:1081.050000px;}
.yb6{bottom:1082.490000px;}
.y3e{bottom:1088.250000px;}
.y3{bottom:1090.410000px;}
.yf5{bottom:1090.950000px;}
.yb5{bottom:1099.770000px;}
.y76{bottom:1101.930000px;}
.y3d{bottom:1105.530000px;}
.y2{bottom:1107.690000px;}
.yf4{bottom:1108.230000px;}
.yb2{bottom:1114.350000px;}
.y75{bottom:1121.760000px;}
.y3c{bottom:1124.100000px;}
.yf3{bottom:1125.540000px;}
.y1{bottom:1134.000000px;}
.y74{bottom:1141.740000px;}
.y3b{bottom:1142.820000px;}
.yf2{bottom:1143.000000px;}
.h6{height:21.045000px;}
.h8{height:21.225000px;}
.h17{height:21.240000px;}
.h14{height:21.261000px;}
.h18{height:21.270000px;}
.h1c{height:25.740000px;}
.h1d{height:25.950000px;}
.h9{height:27.022500px;}
.h12{height:27.525000px;}
.h1a{height:27.540000px;}
.h13{height:27.705000px;}
.h19{height:27.720000px;}
.h16{height:41.385000px;}
.h10{height:41.392500px;}
.h11{height:41.430000px;}
.h3{height:43.536094px;}
.h20{height:43.565273px;}
.h7{height:50.312812px;}
.h1b{height:52.410000px;}
.h15{height:56.320312px;}
.h2{height:62.327813px;}
.hb{height:68.940000px;}
.h4{height:70.790625px;}
.h1e{height:71.625000px;}
.h1f{height:71.805000px;}
.h5{height:75.093750px;}
.ha{height:96.660000px;}
.hd{height:108.885000px;}
.hf{height:124.221000px;}
.hc{height:124.230000px;}
.he{height:138.045000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:110.869500px;}
.w9{width:147.949500px;}
.w15{width:160.549500px;}
.w12{width:161.115000px;}
.w10{width:161.295000px;}
.wd{width:163.095000px;}
.we{width:163.110000px;}
.w8{width:169.215000px;}
.wf{width:170.629500px;}
.w11{width:189.570000px;}
.wb{width:190.635000px;}
.wc{width:193.309500px;}
.w2{width:194.749500px;}
.w6{width:201.255000px;}
.w7{width:201.270000px;}
.w18{width:211.875000px;}
.w14{width:215.835000px;}
.w17{width:233.700000px;}
.w3{width:243.780000px;}
.w4{width:247.875000px;}
.wa{width:254.400000px;}
.w13{width:275.640000px;}
.w16{width:446.310000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:4.849500px;}
.xa{left:7.729500px;}
.xc{left:9.349500px;}
.x6{left:15.649500px;}
.x1f{left:16.909500px;}
.x1c{left:27.030000px;}
.x26{left:35.085000px;}
.x21{left:36.525000px;}
.x10{left:42.660000px;}
.x12{left:48.945000px;}
.x9{left:60.105000px;}
.x20{left:67.710000px;}
.xe{left:74.505000px;}
.x24{left:79.770000px;}
.xb{left:101.386500px;}
.x5{left:102.646500px;}
.x16{left:104.086500px;}
.x1d{left:105.150000px;}
.x1{left:106.236000px;}
.x4{left:124.056000px;}
.x2{left:133.236000px;}
.x23{left:148.350000px;}
.x3{left:160.230000px;}
.xd{left:212.985000px;}
.x14{left:255.645000px;}
.x22{left:268.245000px;}
.x19{left:275.445000px;}
.x7{left:298.125000px;}
.xf{left:414.975000px;}
.x1a{left:437.475000px;}
.x17{left:461.955000px;}
.x25{left:502.680000px;}
.x15{left:510.780000px;}
.x8{left:542.640000px;}
.x1e{left:574.500000px;}
.x11{left:617.160000px;}
.x18{left:625.800000px;}
.x1b{left:627.780000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls10{letter-spacing:-0.400533pt;}
.lse{letter-spacing:-0.198933pt;}
.ls8{letter-spacing:-0.161067pt;}
.ls2{letter-spacing:-0.094933pt;}
.ls19{letter-spacing:-0.089067pt;}
.lsc{letter-spacing:-0.080533pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls18{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.239360pt;}
.lsf{letter-spacing:0.239467pt;}
.ls9{letter-spacing:0.277120pt;}
.ls14{letter-spacing:0.545280pt;}
.ls7{letter-spacing:0.592000pt;}
.ls16{letter-spacing:0.592640pt;}
.lsd{letter-spacing:0.597333pt;}
.ls1{letter-spacing:0.634667pt;}
.ls12{letter-spacing:4.432640pt;}
.ls4{letter-spacing:5.072640pt;}
.ls6{letter-spacing:9.552640pt;}
.ls13{letter-spacing:13.392640pt;}
.ls15{letter-spacing:38.459307pt;}
.ls3{letter-spacing:57.066667pt;}
.lsa{letter-spacing:91.098027pt;}
.ws6{word-spacing:-14.998293pt;}
.wsc{word-spacing:-14.814720pt;}
.wsb{word-spacing:-14.767360pt;}
.wse{word-spacing:-14.678293pt;}
.ws1{word-spacing:-14.672427pt;}
.ws8{word-spacing:-12.517973pt;}
.wsa{word-spacing:-12.160107pt;}
.ws4{word-spacing:-11.920640pt;}
.ws7{word-spacing:-11.840107pt;}
.ws5{word-spacing:-11.759573pt;}
.ws9{word-spacing:-11.721707pt;}
.ws0{word-spacing:-10.242347pt;}
.wsd{word-spacing:-9.600000pt;}
.ws3{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-1.221760pt;}
._0{width:1.221760pt;}
._4{width:2.549760pt;}
._3{width:3.665280pt;}
._10{width:4.778027pt;}
._11{width:5.899093pt;}
._b{width:7.118080pt;}
._c{width:8.127360pt;}
._d{width:9.725227pt;}
._8{width:10.621867pt;}
._7{width:11.686400pt;}
._6{width:12.801920pt;}
._f{width:13.812267pt;}
._5{width:15.829760pt;}
._2{width:17.476480pt;}
._e{width:18.645120pt;}
._9{width:19.601280pt;}
._a{width:20.504320pt;}
._14{width:21.991680pt;}
._12{width:23.691520pt;}
._34{width:25.491840pt;}
._25{width:26.998400pt;}
._2a{width:28.407040pt;}
._22{width:29.930240pt;}
._1c{width:32.245760pt;}
._1d{width:33.724800pt;}
._21{width:35.354880pt;}
._30{width:36.915840pt;}
._20{width:37.820160pt;}
._1e{width:38.981760pt;}
._1f{width:40.693120pt;}
._28{width:42.322560pt;}
._29{width:43.415680pt;}
._2d{width:44.530560pt;}
._24{width:47.425280pt;}
._32{width:48.883200pt;}
._13{width:51.771307pt;}
._1a{width:54.864640pt;}
._2e{width:58.209280pt;}
._23{width:60.696320pt;}
._2c{width:63.333760pt;}
._2b{width:64.684160pt;}
._26{width:67.192960pt;}
._27{width:68.371840pt;}
._35{width:73.838720pt;}
._2f{width:75.404160pt;}
._1b{width:80.400000pt;}
._17{width:83.358720pt;}
._33{width:90.948480pt;}
._15{width:99.267200pt;}
._31{width:106.020480pt;}
._16{width:114.360960pt;}
._18{width:138.008960pt;}
._19{width:183.204480pt;}
.fs1{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:2.386667pt;}
.yee{bottom:2.393333pt;}
.y13b{bottom:2.400000pt;}
.yad{bottom:2.546667pt;}
.yb1{bottom:2.553333pt;}
.y8d{bottom:2.560000pt;}
.y136{bottom:2.720000pt;}
.y14d{bottom:3.680000pt;}
.y151{bottom:3.840000pt;}
.y112{bottom:5.786667pt;}
.yeb{bottom:5.906667pt;}
.y64{bottom:5.920000pt;}
.ydf{bottom:6.080000pt;}
.ye4{bottom:6.106667pt;}
.ye6{bottom:8.626667pt;}
.yf0{bottom:8.633333pt;}
.ye1{bottom:8.640000pt;}
.y137{bottom:8.800000pt;}
.y127{bottom:8.946667pt;}
.y125{bottom:9.106667pt;}
.y134{bottom:9.280000pt;}
.y147{bottom:13.280000pt;}
.y9f{bottom:13.440000pt;}
.y85{bottom:14.400000pt;}
.ye7{bottom:14.706667pt;}
.yb0{bottom:14.713333pt;}
.y90{bottom:14.720000pt;}
.yac{bottom:14.866667pt;}
.y8c{bottom:14.880000pt;}
.yb4{bottom:14.906667pt;}
.y135{bottom:15.040000pt;}
.y14c{bottom:16.000000pt;}
.yef{bottom:20.788000pt;}
.y145{bottom:25.146667pt;}
.y9e{bottom:25.600000pt;}
.yab{bottom:27.026667pt;}
.yed{bottom:27.028000pt;}
.yaf{bottom:27.033333pt;}
.y8b{bottom:27.040000pt;}
.yb3{bottom:27.066667pt;}
.y149{bottom:28.160000pt;}
.y14f{bottom:28.320000pt;}
.y9d{bottom:37.920000pt;}
.yaa{bottom:39.346667pt;}
.y8a{bottom:39.360000pt;}
.y97{bottom:39.386667pt;}
.y14b{bottom:40.480000pt;}
.y150{bottom:40.640000pt;}
.y9c{bottom:50.240000pt;}
.y8f{bottom:51.520000pt;}
.y96{bottom:51.546667pt;}
.ya9{bottom:51.666667pt;}
.y89{bottom:51.680000pt;}
.y14a{bottom:52.800000pt;}
.y9b{bottom:62.400000pt;}
.ya8{bottom:63.826667pt;}
.y88{bottom:63.840000pt;}
.y95{bottom:63.866667pt;}
.y9a{bottom:74.720000pt;}
.ya7{bottom:76.146667pt;}
.y87{bottom:76.160000pt;}
.y94{bottom:76.186667pt;}
.y99{bottom:87.040000pt;}
.y93{bottom:88.346667pt;}
.ya6{bottom:88.466667pt;}
.ya3{bottom:88.480000pt;}
.yae{bottom:97.158667pt;}
.ya5{bottom:100.626667pt;}
.ya2{bottom:100.640000pt;}
.y92{bottom:100.666667pt;}
.yf1{bottom:104.192000pt;}
.y18d{bottom:109.152000pt;}
.y15d{bottom:112.832000pt;}
.ya1{bottom:112.960000pt;}
.y3a{bottom:117.152000pt;}
.yec{bottom:117.318667pt;}
.y18c{bottom:124.352000pt;}
.y73{bottom:126.112000pt;}
.y15c{bottom:128.192000pt;}
.y12a{bottom:131.872000pt;}
.y39{bottom:133.786667pt;}
.ya4{bottom:134.600000pt;}
.y18b{bottom:139.866667pt;}
.y15b{bottom:143.546667pt;}
.y72{bottom:143.706667pt;}
.y129{bottom:144.840000pt;}
.y38{bottom:150.266667pt;}
.yea{bottom:154.760000pt;}
.y18a{bottom:155.226667pt;}
.y15a{bottom:158.906667pt;}
.y71{bottom:161.306667pt;}
.y128{bottom:164.360000pt;}
.y37{bottom:166.906667pt;}
.y189{bottom:170.586667pt;}
.y159{bottom:174.266667pt;}
.ye8{bottom:174.280000pt;}
.y70{bottom:179.066667pt;}
.y36{bottom:183.386667pt;}
.y126{bottom:184.040000pt;}
.y188{bottom:185.786667pt;}
.y158{bottom:189.626667pt;}
.y6f{bottom:196.666667pt;}
.y35{bottom:199.866667pt;}
.y187{bottom:200.986667pt;}
.y124{bottom:203.560000pt;}
.y157{bottom:204.826667pt;}
.ye5{bottom:211.720000pt;}
.y6e{bottom:212.346667pt;}
.y34{bottom:216.506667pt;}
.y156{bottom:220.346667pt;}
.y123{bottom:223.080000pt;}
.y6d{bottom:228.666667pt;}
.y186{bottom:231.866667pt;}
.y33{bottom:232.986667pt;}
.y155{bottom:235.706667pt;}
.ye3{bottom:236.840000pt;}
.y6c{bottom:245.346667pt;}
.ya0{bottom:245.666667pt;}
.y122{bottom:245.826667pt;}
.y185{bottom:247.266667pt;}
.y32{bottom:248.386667pt;}
.y154{bottom:250.946667pt;}
.ye2{bottom:256.386667pt;}
.y121{bottom:260.866667pt;}
.y6b{bottom:261.826667pt;}
.y184{bottom:262.466667pt;}
.y31{bottom:263.746667pt;}
.y153{bottom:266.306667pt;}
.y120{bottom:276.226667pt;}
.y183{bottom:277.826667pt;}
.y6a{bottom:278.306667pt;}
.y30{bottom:279.106667pt;}
.y152{bottom:279.266667pt;}
.ye0{bottom:281.666667pt;}
.y11f{bottom:291.586667pt;}
.y182{bottom:293.186667pt;}
.y2f{bottom:294.466667pt;}
.y69{bottom:294.946667pt;}
.yde{bottom:306.786667pt;}
.y11e{bottom:306.946667pt;}
.y181{bottom:308.546667pt;}
.y2e{bottom:309.666667pt;}
.y68{bottom:311.426667pt;}
.y11d{bottom:322.306667pt;}
.y180{bottom:323.906667pt;}
.y67{bottom:324.386667pt;}
.y2d{bottom:325.026667pt;}
.ydd{bottom:326.466667pt;}
.y11c{bottom:337.666667pt;}
.y17f{bottom:339.106667pt;}
.y2c{bottom:340.386667pt;}
.y14e{bottom:343.586667pt;}
.y66{bottom:343.906667pt;}
.ydc{bottom:349.026667pt;}
.y11b{bottom:352.866667pt;}
.y17e{bottom:354.626667pt;}
.y2b{bottom:355.746667pt;}
.y65{bottom:363.426667pt;}
.ydb{bottom:364.226667pt;}
.y11a{bottom:368.226667pt;}
.y98{bottom:369.026667pt;}
.y17d{bottom:369.826667pt;}
.y2a{bottom:371.106667pt;}
.yda{bottom:379.586667pt;}
.y63{bottom:383.106667pt;}
.y119{bottom:383.586667pt;}
.y17c{bottom:385.186667pt;}
.y29{bottom:386.466667pt;}
.yd9{bottom:394.946667pt;}
.y118{bottom:398.946667pt;}
.y17b{bottom:400.546667pt;}
.y28{bottom:401.666667pt;}
.y62{bottom:406.946667pt;}
.y148{bottom:408.066667pt;}
.yd8{bottom:410.306667pt;}
.y117{bottom:414.306667pt;}
.y17a{bottom:415.746667pt;}
.y27{bottom:417.026667pt;}
.y61{bottom:423.266667pt;}
.yd7{bottom:425.666667pt;}
.y116{bottom:429.666667pt;}
.y179{bottom:431.266667pt;}
.y26{bottom:432.386667pt;}
.y60{bottom:438.626667pt;}
.yd6{bottom:440.866667pt;}
.y115{bottom:444.866667pt;}
.y178{bottom:446.626667pt;}
.y25{bottom:447.746667pt;}
.y5f{bottom:453.986667pt;}
.yd5{bottom:456.226667pt;}
.y114{bottom:460.226667pt;}
.y177{bottom:461.666667pt;}
.y24{bottom:463.106667pt;}
.y91{bottom:466.466667pt;}
.y5e{bottom:469.346667pt;}
.yd4{bottom:471.586667pt;}
.y144{bottom:472.386667pt;}
.y113{bottom:475.586667pt;}
.y176{bottom:477.186667pt;}
.y23{bottom:478.466667pt;}
.y5d{bottom:484.706667pt;}
.yd3{bottom:486.946667pt;}
.y111{bottom:488.546667pt;}
.y175{bottom:492.386667pt;}
.y22{bottom:493.693333pt;}
.y146{bottom:496.093333pt;}
.y5c{bottom:500.093333pt;}
.yd2{bottom:502.333333pt;}
.y174{bottom:507.933333pt;}
.y110{bottom:508.093333pt;}
.y21{bottom:509.053333pt;}
.y5b{bottom:515.293333pt;}
.yd1{bottom:517.693333pt;}
.y143{bottom:522.813333pt;}
.y173{bottom:523.133333pt;}
.y20{bottom:524.413333pt;}
.y10f{bottom:527.613333pt;}
.y5a{bottom:530.653333pt;}
.yd0{bottom:532.893333pt;}
.y142{bottom:538.013333pt;}
.y172{bottom:538.493333pt;}
.y1f{bottom:539.773333pt;}
.y59{bottom:546.013333pt;}
.y10e{bottom:547.133333pt;}
.ycf{bottom:548.253333pt;}
.y141{bottom:553.373333pt;}
.y171{bottom:553.693333pt;}
.y1e{bottom:555.133333pt;}
.y58{bottom:561.373333pt;}
.yce{bottom:563.613333pt;}
.y140{bottom:568.733333pt;}
.y170{bottom:569.213333pt;}
.y10d{bottom:569.853333pt;}
.y1d{bottom:570.333333pt;}
.y57{bottom:576.733333pt;}
.y8e{bottom:577.533333pt;}
.ycd{bottom:578.973333pt;}
.y13f{bottom:584.093333pt;}
.y16f{bottom:584.573333pt;}
.y1c{bottom:585.693333pt;}
.y56{bottom:592.093333pt;}
.ycc{bottom:594.493333pt;}
.y10c{bottom:595.773333pt;}
.y13e{bottom:599.293333pt;}
.y16e{bottom:599.773333pt;}
.y1b{bottom:601.053333pt;}
.y55{bottom:607.293333pt;}
.ycb{bottom:609.533333pt;}
.y10b{bottom:611.133333pt;}
.y13d{bottom:614.653333pt;}
.y16d{bottom:615.293333pt;}
.y1a{bottom:616.413333pt;}
.y54{bottom:622.653333pt;}
.yca{bottom:624.893333pt;}
.y10a{bottom:626.333333pt;}
.y13c{bottom:627.613333pt;}
.y16c{bottom:630.493333pt;}
.y19{bottom:631.933333pt;}
.y53{bottom:638.013333pt;}
.y86{bottom:639.453333pt;}
.yc9{bottom:640.253333pt;}
.y16b{bottom:645.693333pt;}
.y18{bottom:647.133333pt;}
.y109{bottom:652.573333pt;}
.y13a{bottom:652.893333pt;}
.y52{bottom:653.373333pt;}
.yc8{bottom:655.613333pt;}
.y16a{bottom:661.213333pt;}
.y17{bottom:662.493333pt;}
.y51{bottom:668.733333pt;}
.yc7{bottom:670.973333pt;}
.y169{bottom:676.413333pt;}
.y16{bottom:677.693333pt;}
.y139{bottom:678.013333pt;}
.y108{bottom:678.333333pt;}
.y50{bottom:683.933333pt;}
.yc6{bottom:686.333333pt;}
.y168{bottom:691.933333pt;}
.y15{bottom:693.213333pt;}
.y107{bottom:693.693333pt;}
.y138{bottom:697.533333pt;}
.y4f{bottom:699.293333pt;}
.yc5{bottom:701.533333pt;}
.y167{bottom:707.293333pt;}
.y14{bottom:708.573333pt;}
.y106{bottom:709.053333pt;}
.y4e{bottom:714.653333pt;}
.yc4{bottom:716.893333pt;}
.y133{bottom:717.053333pt;}
.y166{bottom:723.293333pt;}
.y13{bottom:723.773333pt;}
.y105{bottom:724.413333pt;}
.y84{bottom:726.013333pt;}
.y4d{bottom:730.013333pt;}
.yc3{bottom:732.253333pt;}
.y12{bottom:739.133333pt;}
.y165{bottom:739.293333pt;}
.y104{bottom:739.773333pt;}
.y4c{bottom:745.413333pt;}
.y132{bottom:745.573333pt;}
.yc2{bottom:747.653333pt;}
.y83{bottom:753.893333pt;}
.y11{bottom:754.373333pt;}
.y103{bottom:755.173333pt;}
.y164{bottom:755.333333pt;}
.y4b{bottom:760.773333pt;}
.yc1{bottom:763.013333pt;}
.y82{bottom:769.093333pt;}
.y10{bottom:769.733333pt;}
.y102{bottom:770.373333pt;}
.y163{bottom:770.533333pt;}
.y4a{bottom:775.973333pt;}
.yc0{bottom:778.373333pt;}
.y81{bottom:784.293333pt;}
.yf{bottom:785.093333pt;}
.y101{bottom:785.733333pt;}
.y162{bottom:785.893333pt;}
.y49{bottom:791.333333pt;}
.ybf{bottom:793.573333pt;}
.y80{bottom:799.653333pt;}
.ye{bottom:800.453333pt;}
.y100{bottom:801.093333pt;}
.y48{bottom:806.693333pt;}
.ybe{bottom:808.933333pt;}
.yd{bottom:815.813333pt;}
.yff{bottom:816.453333pt;}
.y161{bottom:816.613333pt;}
.y7f{bottom:817.093333pt;}
.y47{bottom:822.053333pt;}
.ybd{bottom:824.293333pt;}
.yc{bottom:831.173333pt;}
.yfe{bottom:831.813333pt;}
.y160{bottom:831.973333pt;}
.y7e{bottom:834.853333pt;}
.y46{bottom:837.413333pt;}
.ybc{bottom:839.653333pt;}
.yb{bottom:846.373333pt;}
.yfd{bottom:847.173333pt;}
.y15f{bottom:847.333333pt;}
.y7d{bottom:852.453333pt;}
.y131{bottom:852.613333pt;}
.y45{bottom:852.773333pt;}
.ybb{bottom:855.013333pt;}
.ya{bottom:861.733333pt;}
.yfc{bottom:862.533333pt;}
.y44{bottom:867.973333pt;}
.y7c{bottom:870.213333pt;}
.y130{bottom:870.533333pt;}
.y9{bottom:877.093333pt;}
.yfb{bottom:877.893333pt;}
.y43{bottom:883.173333pt;}
.yba{bottom:885.573333pt;}
.y12f{bottom:885.733333pt;}
.y7b{bottom:888.613333pt;}
.y8{bottom:892.453333pt;}
.yfa{bottom:893.093333pt;}
.y15e{bottom:893.253333pt;}
.y42{bottom:900.933333pt;}
.y12e{bottom:903.493333pt;}
.y7a{bottom:906.213333pt;}
.y7{bottom:907.813333pt;}
.yf9{bottom:908.453333pt;}
.yb9{bottom:916.293333pt;}
.y12d{bottom:918.693333pt;}
.y41{bottom:918.853333pt;}
.y6{bottom:923.173333pt;}
.yf8{bottom:923.813333pt;}
.y79{bottom:923.973333pt;}
.yb8{bottom:931.653333pt;}
.y40{bottom:934.053333pt;}
.y12c{bottom:936.613333pt;}
.y5{bottom:938.533333pt;}
.yf7{bottom:939.013333pt;}
.y78{bottom:942.533333pt;}
.yb7{bottom:947.013333pt;}
.y12b{bottom:951.813333pt;}
.y3f{bottom:951.973333pt;}
.y4{bottom:953.893333pt;}
.yf6{bottom:954.373333pt;}
.y77{bottom:960.933333pt;}
.yb6{bottom:962.213333pt;}
.y3e{bottom:967.333333pt;}
.y3{bottom:969.253333pt;}
.yf5{bottom:969.733333pt;}
.yb5{bottom:977.573333pt;}
.y76{bottom:979.493333pt;}
.y3d{bottom:982.693333pt;}
.y2{bottom:984.613333pt;}
.yf4{bottom:985.093333pt;}
.yb2{bottom:990.533333pt;}
.y75{bottom:997.120000pt;}
.y3c{bottom:999.200000pt;}
.yf3{bottom:1000.480000pt;}
.y1{bottom:1008.000000pt;}
.y74{bottom:1014.880000pt;}
.y3b{bottom:1015.840000pt;}
.yf2{bottom:1016.000000pt;}
.h6{height:18.706667pt;}
.h8{height:18.866667pt;}
.h17{height:18.880000pt;}
.h14{height:18.898667pt;}
.h18{height:18.906667pt;}
.h1c{height:22.880000pt;}
.h1d{height:23.066667pt;}
.h9{height:24.020000pt;}
.h12{height:24.466667pt;}
.h1a{height:24.480000pt;}
.h13{height:24.626667pt;}
.h19{height:24.640000pt;}
.h16{height:36.786667pt;}
.h10{height:36.793333pt;}
.h11{height:36.826667pt;}
.h3{height:38.698750pt;}
.h20{height:38.724688pt;}
.h7{height:44.722500pt;}
.h1b{height:46.586667pt;}
.h15{height:50.062500pt;}
.h2{height:55.402500pt;}
.hb{height:61.280000pt;}
.h4{height:62.925000pt;}
.h1e{height:63.666667pt;}
.h1f{height:63.826667pt;}
.h5{height:66.750000pt;}
.ha{height:85.920000pt;}
.hd{height:96.786667pt;}
.hf{height:110.418667pt;}
.hc{height:110.426667pt;}
.he{height:122.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:98.550667pt;}
.w9{width:131.510667pt;}
.w15{width:142.710667pt;}
.w12{width:143.213333pt;}
.w10{width:143.373333pt;}
.wd{width:144.973333pt;}
.we{width:144.986667pt;}
.w8{width:150.413333pt;}
.wf{width:151.670667pt;}
.w11{width:168.506667pt;}
.wb{width:169.453333pt;}
.wc{width:171.830667pt;}
.w2{width:173.110667pt;}
.w6{width:178.893333pt;}
.w7{width:178.906667pt;}
.w18{width:188.333333pt;}
.w14{width:191.853333pt;}
.w17{width:207.733333pt;}
.w3{width:216.693333pt;}
.w4{width:220.333333pt;}
.wa{width:226.133333pt;}
.w13{width:245.013333pt;}
.w16{width:396.720000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:4.310667pt;}
.xa{left:6.870667pt;}
.xc{left:8.310667pt;}
.x6{left:13.910667pt;}
.x1f{left:15.030667pt;}
.x1c{left:24.026667pt;}
.x26{left:31.186667pt;}
.x21{left:32.466667pt;}
.x10{left:37.920000pt;}
.x12{left:43.506667pt;}
.x9{left:53.426667pt;}
.x20{left:60.186667pt;}
.xe{left:66.226667pt;}
.x24{left:70.906667pt;}
.xb{left:90.121333pt;}
.x5{left:91.241333pt;}
.x16{left:92.521333pt;}
.x1d{left:93.466667pt;}
.x1{left:94.432000pt;}
.x4{left:110.272000pt;}
.x2{left:118.432000pt;}
.x23{left:131.866667pt;}
.x3{left:142.426667pt;}
.xd{left:189.320000pt;}
.x14{left:227.240000pt;}
.x22{left:238.440000pt;}
.x19{left:244.840000pt;}
.x7{left:265.000000pt;}
.xf{left:368.866667pt;}
.x1a{left:388.866667pt;}
.x17{left:410.626667pt;}
.x25{left:446.826667pt;}
.x15{left:454.026667pt;}
.x8{left:482.346667pt;}
.x1e{left:510.666667pt;}
.x11{left:548.586667pt;}
.x18{left:556.266667pt;}
.x1b{left:558.026667pt;}
}




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