
    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_f6ce620db4dc3d62f95583cf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_a88df78dda2b5bf8af55e919.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_881f9c5076e2dcbdd3363922.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_64a4467ee4126dc72c7315ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_1444bfd0672f0b59c7b220d7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_77956d1aa23f05f0cc7cc69f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.035156;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_e085c79755eff757403d8eba.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091309;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_3cbef3a71b6bdee58dd5727e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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_83b250efd17f0c5a7f4c5aa4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.091309;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_d950e48fb2d8f5b9bf921b50.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.088379;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_490206086ee8121dc10ec363.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.061523;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.v3{vertical-align:33.120000px;}
.v2{vertical-align:38.880000px;}
.lsd{letter-spacing:-0.358800px;}
.ls8{letter-spacing:-0.334200px;}
.lsb{letter-spacing:-0.172800px;}
.lse{letter-spacing:-0.092400px;}
.ls5{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.051840px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.011520px;}
.ls0{letter-spacing:0.023040px;}
.ls10{letter-spacing:0.100800px;}
.ls13{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.144720px;}
.lsc{letter-spacing:0.190800px;}
.ls9{letter-spacing:0.285000px;}
.ls16{letter-spacing:0.305400px;}
.ls14{letter-spacing:0.316800px;}
.ls6{letter-spacing:0.324000px;}
.ls15{letter-spacing:0.354000px;}
.ls11{letter-spacing:0.469440px;}
.lsa{letter-spacing:0.743040px;}
.ls2{letter-spacing:1.404000px;}
.ls3{letter-spacing:1.632000px;}
.ls12{letter-spacing:14.947200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-24.408000px;}
.wsa{word-spacing:-14.926800px;}
.ws9{word-spacing:-14.889600px;}
.wsb{word-spacing:-14.878200px;}
.ws8{word-spacing:-14.679600px;}
.wsc{word-spacing:-14.595840px;}
.ws0{word-spacing:-14.572800px;}
.ws6{word-spacing:-14.238600px;}
.ws2{word-spacing:-13.093920px;}
.ws4{word-spacing:-12.204000px;}
.ws7{word-spacing:-9.472200px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:3.047040px;}
._22{margin-left:-6.226560px;}
._20{margin-left:-4.636800px;}
._1f{margin-left:-2.384640px;}
._0{margin-left:-1.126080px;}
._2{width:1.004400px;}
._9{width:2.246400px;}
._3{width:3.568800px;}
._14{width:4.651920px;}
._d{width:6.215040px;}
._e{width:7.479360px;}
._4{width:8.519760px;}
._11{width:9.740880px;}
._c{width:10.816560px;}
._13{width:12.118800px;}
._7{width:13.941360px;}
._8{width:15.050880px;}
._f{width:16.203600px;}
._10{width:17.384400px;}
._15{width:18.783360px;}
._16{width:20.004480px;}
._12{width:21.155040px;}
._a{width:22.708800px;}
._b{width:23.947920px;}
._17{width:25.568640px;}
._1a{width:27.290880px;}
._1b{width:29.278080px;}
._1e{width:31.331520px;}
._19{width:32.391360px;}
._18{width:33.451200px;}
._1c{width:34.577280px;}
._1d{width:35.902080px;}
._23{width:37.202160px;}
._5{width:40.569840px;}
._6{width:42.425760px;}
._2d{width:59.282160px;}
._2c{width:64.139520px;}
._30{width:72.400320px;}
._31{width:77.837760px;}
._34{width:93.928320px;}
._37{width:107.308800px;}
._35{width:111.945600px;}
._36{width:113.220000px;}
._25{width:162.396000px;}
._24{width:167.852160px;}
._32{width:193.752000px;}
._33{width:197.952240px;}
._1{width:201.403200px;}
._21{width:258.209760px;}
._2e{width:314.706240px;}
._2f{width:320.167920px;}
._26{width:407.044800px;}
._27{width:411.550320px;}
._29{width:487.592640px;}
._28{width:488.851200px;}
._2a{width:556.349760px;}
._2b{width:557.475840px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(79,129,189);}
.fc2{color:transparent;}
.fc1{color:rgb(23,54,93);}
.fc4{color:rgb(40,40,40);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y144{bottom:6.472500px;}
.ydc{bottom:6.480000px;}
.ye5{bottom:6.645000px;}
.y118{bottom:6.660000px;}
.y114{bottom:6.705000px;}
.y111{bottom:12.600000px;}
.ye3{bottom:27.165000px;}
.ye0{bottom:27.390000px;}
.y143{bottom:28.786500px;}
.ydb{bottom:28.800000px;}
.y11a{bottom:28.830000px;}
.y113{bottom:28.845000px;}
.y117{bottom:28.980000px;}
.y14a{bottom:29.025000px;}
.ye2{bottom:49.485000px;}
.ydf{bottom:49.710000px;}
.y142{bottom:50.926500px;}
.y119{bottom:50.940000px;}
.y116{bottom:51.120000px;}
.y139{bottom:51.150000px;}
.y149{bottom:51.165000px;}
.y32{bottom:57.420000px;}
.yd{bottom:58.176000px;}
.y141{bottom:73.246500px;}
.y130{bottom:73.305000px;}
.y138{bottom:73.470000px;}
.y148{bottom:73.485000px;}
.yc{bottom:73.656000px;}
.yb{bottom:89.136000px;}
.y140{bottom:95.566500px;}
.y137{bottom:95.610000px;}
.y12f{bottom:95.625000px;}
.ya{bottom:104.616000px;}
.y10b{bottom:112.176000px;}
.y13f{bottom:117.706500px;}
.y136{bottom:117.930000px;}
.y12e{bottom:117.945000px;}
.y9{bottom:120.096000px;}
.y5b{bottom:122.616000px;}
.y13c{bottom:122.623500px;}
.y85{bottom:123.156000px;}
.y127{bottom:125.676000px;}
.ya0{bottom:129.816000px;}
.y171{bottom:130.356000px;}
.y167{bottom:131.076000px;}
.y10a{bottom:134.496000px;}
.y8{bottom:135.576000px;}
.ye8{bottom:139.716000px;}
.y13e{bottom:140.026500px;}
.y135{bottom:140.070000px;}
.y12d{bottom:140.085000px;}
.y5a{bottom:144.936000px;}
.y84{bottom:145.296000px;}
.y126{bottom:147.816000px;}
.y9f{bottom:152.130000px;}
.y170{bottom:152.670000px;}
.y166{bottom:153.390000px;}
.y109{bottom:156.810000px;}
.y13d{bottom:162.166500px;}
.y134{bottom:162.390000px;}
.y12c{bottom:162.405000px;}
.y59{bottom:167.070000px;}
.y30{bottom:167.430000px;}
.y83{bottom:167.610000px;}
.ybf{bottom:168.150000px;}
.ye7{bottom:168.690000px;}
.y125{bottom:170.130000px;}
.y9e{bottom:174.450000px;}
.y16f{bottom:174.810000px;}
.y165{bottom:175.530000px;}
.y108{bottom:178.950000px;}
.y133{bottom:184.530000px;}
.y12b{bottom:184.545000px;}
.y13b{bottom:184.710000px;}
.y147{bottom:184.725000px;}
.y58{bottom:189.390000px;}
.y82{bottom:189.930000px;}
.ybe{bottom:190.290000px;}
.ye6{bottom:191.010000px;}
.y124{bottom:192.270000px;}
.y9d{bottom:196.590000px;}
.y16e{bottom:197.130000px;}
.y164{bottom:197.850000px;}
.y176{bottom:203.790000px;}
.y2f{bottom:204.690000px;}
.ye4{bottom:206.685000px;}
.y132{bottom:206.850000px;}
.y12a{bottom:206.865000px;}
.y57{bottom:211.530000px;}
.y81{bottom:212.070000px;}
.ybd{bottom:212.610000px;}
.y123{bottom:214.590000px;}
.y9c{bottom:218.910000px;}
.y16d{bottom:219.270000px;}
.y163{bottom:220.170000px;}
.y107{bottom:222.150000px;}
.y2e{bottom:228.990000px;}
.ye1{bottom:229.005000px;}
.y56{bottom:233.850000px;}
.y80{bottom:234.390000px;}
.ybc{bottom:234.750000px;}
.y122{bottom:236.730000px;}
.y9b{bottom:241.050000px;}
.y16c{bottom:241.590000px;}
.y162{bottom:242.310000px;}
.y106{bottom:244.470000px;}
.y55{bottom:255.990000px;}
.y7f{bottom:256.530000px;}
.ybb{bottom:257.070000px;}
.y121{bottom:259.050000px;}
.y9a{bottom:263.370000px;}
.y16b{bottom:263.910000px;}
.y161{bottom:264.630000px;}
.y105{bottom:266.790000px;}
.y2d{bottom:269.670000px;}
.y54{bottom:278.310000px;}
.y7e{bottom:278.850000px;}
.yba{bottom:279.390000px;}
.y120{bottom:281.370000px;}
.y99{bottom:285.510000px;}
.y16a{bottom:286.050000px;}
.y160{bottom:286.770000px;}
.y104{bottom:288.930000px;}
.y2c{bottom:290.010000px;}
.yde{bottom:294.165000px;}
.y13a{bottom:300.465000px;}
.y53{bottom:300.630000px;}
.y7d{bottom:300.990000px;}
.yb9{bottom:301.530000px;}
.y11f{bottom:303.510000px;}
.y98{bottom:307.830000px;}
.y169{bottom:308.370000px;}
.y15f{bottom:309.135000px;}
.y2b{bottom:310.215000px;}
.y103{bottom:311.295000px;}
.y7c{bottom:323.355000px;}
.y11e{bottom:325.875000px;}
.y52{bottom:329.655000px;}
.y97{bottom:330.195000px;}
.y2a{bottom:330.375000px;}
.yb8{bottom:330.555000px;}
.y15e{bottom:331.455000px;}
.y102{bottom:333.435000px;}
.y7b{bottom:345.675000px;}
.y11d{bottom:348.015000px;}
.y29{bottom:350.715000px;}
.y96{bottom:352.335000px;}
.yb7{bottom:352.875000px;}
.y15d{bottom:353.595000px;}
.y101{bottom:355.755000px;}
.ydd{bottom:359.535000px;}
.y51{bottom:366.915000px;}
.y7a{bottom:367.815000px;}
.y28{bottom:370.875000px;}
.y95{bottom:374.655000px;}
.yb6{bottom:375.015000px;}
.y15c{bottom:375.915000px;}
.y100{bottom:378.075000px;}
.y50{bottom:389.055000px;}
.y79{bottom:390.135000px;}
.y27{bottom:391.035000px;}
.y11c{bottom:391.395000px;}
.y94{bottom:396.795000px;}
.yb5{bottom:397.335000px;}
.y15b{bottom:398.055000px;}
.yda{bottom:404.715000px;}
.yff{bottom:407.055000px;}
.y26{bottom:411.375000px;}
.y78{bottom:412.275000px;}
.y11b{bottom:413.535000px;}
.y93{bottom:419.115000px;}
.yb4{bottom:419.655000px;}
.y15a{bottom:420.375000px;}
.y4f{bottom:426.315000px;}
.y168{bottom:426.495000px;}
.yfe{bottom:429.195000px;}
.y25{bottom:431.535000px;}
.y77{bottom:434.595000px;}
.y92{bottom:441.435000px;}
.yb3{bottom:441.795000px;}
.y159{bottom:442.695000px;}
.y4e{bottom:448.635000px;}
.yfd{bottom:451.515000px;}
.y24{bottom:451.695000px;}
.y76{bottom:456.915000px;}
.yd9{bottom:462.495000px;}
.y91{bottom:463.575000px;}
.yb2{bottom:464.115000px;}
.y158{bottom:464.835000px;}
.y4d{bottom:470.775000px;}
.y23{bottom:472.035000px;}
.yfc{bottom:473.655000px;}
.y75{bottom:479.055000px;}
.y90{bottom:485.895000px;}
.yb1{bottom:486.255000px;}
.y157{bottom:487.155000px;}
.yd8{bottom:491.475000px;}
.y22{bottom:492.195000px;}
.y4c{bottom:493.095000px;}
.yfb{bottom:495.975000px;}
.y74{bottom:501.375000px;}
.y8f{bottom:508.035000px;}
.yb0{bottom:508.575000px;}
.y156{bottom:509.295000px;}
.y21{bottom:512.535000px;}
.yd7{bottom:513.795000px;}
.y4b{bottom:515.415000px;}
.yfa{bottom:518.295000px;}
.y131{bottom:522.975000px;}
.y73{bottom:523.515000px;}
.y8e{bottom:530.355000px;}
.yaf{bottom:530.895000px;}
.y155{bottom:531.615000px;}
.y20{bottom:532.695000px;}
.yd6{bottom:536.115000px;}
.y4a{bottom:537.555000px;}
.yf9{bottom:540.435000px;}
.y72{bottom:545.835000px;}
.y8d{bottom:552.675000px;}
.y1f{bottom:552.855000px;}
.yae{bottom:553.035000px;}
.y154{bottom:553.755000px;}
.yd5{bottom:558.255000px;}
.y49{bottom:559.875000px;}
.yf8{bottom:562.785000px;}
.y71{bottom:568.005000px;}
.y1e{bottom:573.225000px;}
.y8c{bottom:574.845000px;}
.yad{bottom:575.385000px;}
.y153{bottom:576.105000px;}
.yd4{bottom:580.605000px;}
.y48{bottom:582.045000px;}
.yf7{bottom:584.925000px;}
.y70{bottom:590.325000px;}
.y1d{bottom:593.385000px;}
.y8b{bottom:597.165000px;}
.yac{bottom:597.525000px;}
.y152{bottom:598.425000px;}
.yd3{bottom:602.745000px;}
.y47{bottom:604.365000px;}
.yf6{bottom:607.245000px;}
.y6f{bottom:612.645000px;}
.y1c{bottom:613.545000px;}
.y8a{bottom:619.305000px;}
.yab{bottom:619.845000px;}
.y151{bottom:620.565000px;}
.yd2{bottom:625.065000px;}
.y46{bottom:626.685000px;}
.yf5{bottom:629.565000px;}
.y1b{bottom:633.885000px;}
.y6e{bottom:634.785000px;}
.y89{bottom:641.625000px;}
.yaa{bottom:642.165000px;}
.y150{bottom:642.885000px;}
.yd1{bottom:647.385000px;}
.y45{bottom:648.825000px;}
.yf4{bottom:651.705000px;}
.y1a{bottom:654.045000px;}
.y6d{bottom:657.105000px;}
.y88{bottom:663.765000px;}
.ya9{bottom:664.305000px;}
.y14f{bottom:665.025000px;}
.yd0{bottom:669.525000px;}
.y44{bottom:671.145000px;}
.yf3{bottom:674.025000px;}
.y19{bottom:674.205000px;}
.y6c{bottom:679.245000px;}
.y87{bottom:686.085000px;}
.ya8{bottom:686.625000px;}
.y14e{bottom:687.345000px;}
.ycf{bottom:691.845000px;}
.y43{bottom:693.285000px;}
.y18{bottom:694.545000px;}
.yf2{bottom:696.165000px;}
.y6b{bottom:701.565000px;}
.y86{bottom:708.405000px;}
.ya7{bottom:708.765000px;}
.y14d{bottom:709.665000px;}
.yce{bottom:713.985000px;}
.y17{bottom:714.705000px;}
.y42{bottom:715.605000px;}
.y175{bottom:723.885000px;}
.y6a{bottom:730.545000px;}
.ya6{bottom:731.085000px;}
.y14c{bottom:731.805000px;}
.ycd{bottom:736.305000px;}
.y41{bottom:737.745000px;}
.y16{bottom:738.465000px;}
.yf1{bottom:739.545000px;}
.y115{bottom:740.625000px;}
.y129{bottom:745.485000px;}
.y174{bottom:746.025000px;}
.y69{bottom:752.865000px;}
.ya5{bottom:753.225000px;}
.y14b{bottom:753.945000px;}
.ycc{bottom:758.445000px;}
.y40{bottom:760.065000px;}
.yf0{bottom:761.685000px;}
.y15{bottom:764.925000px;}
.y173{bottom:768.345000px;}
.y68{bottom:775.005000px;}
.ya4{bottom:775.545000px;}
.y3f{bottom:782.385000px;}
.yef{bottom:784.005000px;}
.y14{bottom:787.245000px;}
.ycb{bottom:787.605000px;}
.y172{bottom:790.485000px;}
.y146{bottom:790.665000px;}
.y67{bottom:797.325000px;}
.ya3{bottom:797.865000px;}
.y3e{bottom:804.525000px;}
.yee{bottom:806.145000px;}
.y112{bottom:807.405000px;}
.y13{bottom:809.565000px;}
.yca{bottom:812.850000px;}
.y66{bottom:819.690000px;}
.ya2{bottom:820.050000px;}
.y3d{bottom:826.890000px;}
.yed{bottom:828.510000px;}
.y12{bottom:831.750000px;}
.yc9{bottom:835.170000px;}
.y65{bottom:841.830000px;}
.ya1{bottom:842.370000px;}
.y3c{bottom:849.030000px;}
.yec{bottom:850.830000px;}
.y110{bottom:852.810000px;}
.y11{bottom:854.070000px;}
.yc8{bottom:857.310000px;}
.y64{bottom:864.150000px;}
.y3b{bottom:871.350000px;}
.yeb{bottom:872.970000px;}
.yc7{bottom:879.630000px;}
.y63{bottom:886.290000px;}
.y10f{bottom:887.550000px;}
.y3a{bottom:893.670000px;}
.yc6{bottom:901.770000px;}
.y10{bottom:906.990000px;}
.y62{bottom:908.610000px;}
.y10e{bottom:909.870000px;}
.yea{bottom:915.270000px;}
.y39{bottom:915.810000px;}
.ye9{bottom:923.550000px;}
.yc5{bottom:924.090000px;}
.y61{bottom:930.750000px;}
.y10d{bottom:932.010000px;}
.y38{bottom:938.130000px;}
.yf{bottom:939.930000px;}
.yc4{bottom:946.230000px;}
.y60{bottom:953.070000px;}
.y10c{bottom:954.330000px;}
.y37{bottom:960.270000px;}
.yc3{bottom:968.550000px;}
.ye{bottom:972.870000px;}
.y5f{bottom:975.390000px;}
.y36{bottom:982.590000px;}
.yc2{bottom:990.870000px;}
.y128{bottom:991.050000px;}
.y5e{bottom:997.530000px;}
.y7{bottom:1002.210000px;}
.y35{bottom:1004.730000px;}
.yc1{bottom:1013.010000px;}
.y145{bottom:1013.190000px;}
.y5d{bottom:1019.850000px;}
.y6{bottom:1021.650000px;}
.y34{bottom:1027.050000px;}
.yc0{bottom:1035.330000px;}
.y5{bottom:1040.910000px;}
.y5c{bottom:1041.990000px;}
.y4{bottom:1060.350000px;}
.y33{bottom:1064.340000px;}
.y3{bottom:1079.640000px;}
.y2{bottom:1099.080000px;}
.y1{bottom:1118.340000px;}
.y31{bottom:1121.220000px;}
.h18{height:22.125000px;}
.hd{height:22.305000px;}
.h10{height:28.245000px;}
.h3{height:40.843828px;}
.ha{height:44.445000px;}
.h14{height:44.460000px;}
.h11{height:44.482500px;}
.h16{height:44.490000px;}
.h15{height:44.640000px;}
.h8{height:46.986328px;}
.h6{height:50.597578px;}
.h1{height:56.084062px;}
.h2{height:57.636562px;}
.h9{height:58.154062px;}
.hc{height:65.145000px;}
.hb{height:65.361000px;}
.h13{height:66.600000px;}
.h17{height:66.765000px;}
.h12{height:66.780000px;}
.h1d{height:66.810000px;}
.h7{height:71.324297px;}
.he{height:79.535391px;}
.h5{height:86.255508px;}
.hf{height:89.204062px;}
.h4{height:110.583984px;}
.h1c{height:177.832500px;}
.h1b{height:222.495000px;}
.h1a{height:222.510000px;}
.h19{height:244.650000px;}
.h0{height:1188.000000px;}
.w5{width:62.661000px;}
.w3{width:72.036000px;}
.w4{width:78.105000px;}
.wb{width:83.685000px;}
.w9{width:83.700000px;}
.wc{width:83.721000px;}
.wa{width:89.136000px;}
.wd{width:89.805000px;}
.we{width:90.165000px;}
.w2{width:90.180000px;}
.w12{width:95.400000px;}
.w6{width:107.625000px;}
.w14{width:114.289500px;}
.w10{width:114.649500px;}
.w11{width:126.921000px;}
.wf{width:211.699500px;}
.w8{width:212.059500px;}
.w7{width:253.279500px;}
.w1{width:253.639500px;}
.w13{width:327.315000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:8.089500px;}
.xc{left:126.946500px;}
.x1{left:135.036000px;}
.x4{left:165.270000px;}
.x1e{left:189.030000px;}
.x1d{left:203.790000px;}
.x1a{left:241.605000px;}
.x7{left:244.110000px;}
.x3{left:262.470000px;}
.x6{left:300.495000px;}
.x5{left:327.135000px;}
.x13{left:336.135000px;}
.x14{left:339.015000px;}
.x9{left:350.895000px;}
.x1b{left:368.535000px;}
.xe{left:380.595000px;}
.x8{left:393.195000px;}
.xb{left:412.275000px;}
.x15{left:422.715000px;}
.xa{left:459.075000px;}
.x1c{left:463.935000px;}
.xf{left:470.775000px;}
.x16{left:511.860000px;}
.x10{left:542.820000px;}
.x17{left:595.560000px;}
.x11{left:620.940000px;}
.x18{left:679.290000px;}
.x12{left:683.610000px;}
.x19{left:769.110000px;}
.x2{left:783.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.v3{vertical-align:29.440000pt;}
.v2{vertical-align:34.560000pt;}
.lsd{letter-spacing:-0.318933pt;}
.ls8{letter-spacing:-0.297067pt;}
.lsb{letter-spacing:-0.153600pt;}
.lse{letter-spacing:-0.082133pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.046080pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.010240pt;}
.ls0{letter-spacing:0.020480pt;}
.ls10{letter-spacing:0.089600pt;}
.ls13{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.128640pt;}
.lsc{letter-spacing:0.169600pt;}
.ls9{letter-spacing:0.253333pt;}
.ls16{letter-spacing:0.271467pt;}
.ls14{letter-spacing:0.281600pt;}
.ls6{letter-spacing:0.288000pt;}
.ls15{letter-spacing:0.314667pt;}
.ls11{letter-spacing:0.417280pt;}
.lsa{letter-spacing:0.660480pt;}
.ls2{letter-spacing:1.248000pt;}
.ls3{letter-spacing:1.450667pt;}
.ls12{letter-spacing:13.286400pt;}
.ws1{word-spacing:-21.696000pt;}
.wsa{word-spacing:-13.268267pt;}
.ws9{word-spacing:-13.235200pt;}
.wsb{word-spacing:-13.225067pt;}
.ws8{word-spacing:-13.048533pt;}
.wsc{word-spacing:-12.974080pt;}
.ws0{word-spacing:-12.953600pt;}
.ws6{word-spacing:-12.656533pt;}
.ws2{word-spacing:-11.639040pt;}
.ws4{word-spacing:-10.848000pt;}
.ws7{word-spacing:-8.419733pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:2.708480pt;}
._22{margin-left:-5.534720pt;}
._20{margin-left:-4.121600pt;}
._1f{margin-left:-2.119680pt;}
._0{margin-left:-1.000960pt;}
._2{width:0.892800pt;}
._9{width:1.996800pt;}
._3{width:3.172267pt;}
._14{width:4.135040pt;}
._d{width:5.524480pt;}
._e{width:6.648320pt;}
._4{width:7.573120pt;}
._11{width:8.658560pt;}
._c{width:9.614720pt;}
._13{width:10.772267pt;}
._7{width:12.392320pt;}
._8{width:13.378560pt;}
._f{width:14.403200pt;}
._10{width:15.452800pt;}
._15{width:16.696320pt;}
._16{width:17.781760pt;}
._12{width:18.804480pt;}
._a{width:20.185600pt;}
._b{width:21.287040pt;}
._17{width:22.727680pt;}
._1a{width:24.258560pt;}
._1b{width:26.024960pt;}
._1e{width:27.850240pt;}
._19{width:28.792320pt;}
._18{width:29.734400pt;}
._1c{width:30.735360pt;}
._1d{width:31.912960pt;}
._23{width:33.068587pt;}
._5{width:36.062080pt;}
._6{width:37.711787pt;}
._2d{width:52.695253pt;}
._2c{width:57.012907pt;}
._30{width:64.355840pt;}
._31{width:69.189120pt;}
._34{width:83.491840pt;}
._37{width:95.385600pt;}
._35{width:99.507200pt;}
._36{width:100.640000pt;}
._25{width:144.352000pt;}
._24{width:149.201920pt;}
._32{width:172.224000pt;}
._33{width:175.957547pt;}
._1{width:179.025067pt;}
._21{width:229.519787pt;}
._2e{width:279.738880pt;}
._2f{width:284.593707pt;}
._26{width:361.817600pt;}
._27{width:365.822507pt;}
._29{width:433.415680pt;}
._28{width:434.534400pt;}
._2a{width:494.533120pt;}
._2b{width:495.534080pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y144{bottom:5.753333pt;}
.ydc{bottom:5.760000pt;}
.ye5{bottom:5.906667pt;}
.y118{bottom:5.920000pt;}
.y114{bottom:5.960000pt;}
.y111{bottom:11.200000pt;}
.ye3{bottom:24.146667pt;}
.ye0{bottom:24.346667pt;}
.y143{bottom:25.588000pt;}
.ydb{bottom:25.600000pt;}
.y11a{bottom:25.626667pt;}
.y113{bottom:25.640000pt;}
.y117{bottom:25.760000pt;}
.y14a{bottom:25.800000pt;}
.ye2{bottom:43.986667pt;}
.ydf{bottom:44.186667pt;}
.y142{bottom:45.268000pt;}
.y119{bottom:45.280000pt;}
.y116{bottom:45.440000pt;}
.y139{bottom:45.466667pt;}
.y149{bottom:45.480000pt;}
.y32{bottom:51.040000pt;}
.yd{bottom:51.712000pt;}
.y141{bottom:65.108000pt;}
.y130{bottom:65.160000pt;}
.y138{bottom:65.306667pt;}
.y148{bottom:65.320000pt;}
.yc{bottom:65.472000pt;}
.yb{bottom:79.232000pt;}
.y140{bottom:84.948000pt;}
.y137{bottom:84.986667pt;}
.y12f{bottom:85.000000pt;}
.ya{bottom:92.992000pt;}
.y10b{bottom:99.712000pt;}
.y13f{bottom:104.628000pt;}
.y136{bottom:104.826667pt;}
.y12e{bottom:104.840000pt;}
.y9{bottom:106.752000pt;}
.y5b{bottom:108.992000pt;}
.y13c{bottom:108.998667pt;}
.y85{bottom:109.472000pt;}
.y127{bottom:111.712000pt;}
.ya0{bottom:115.392000pt;}
.y171{bottom:115.872000pt;}
.y167{bottom:116.512000pt;}
.y10a{bottom:119.552000pt;}
.y8{bottom:120.512000pt;}
.ye8{bottom:124.192000pt;}
.y13e{bottom:124.468000pt;}
.y135{bottom:124.506667pt;}
.y12d{bottom:124.520000pt;}
.y5a{bottom:128.832000pt;}
.y84{bottom:129.152000pt;}
.y126{bottom:131.392000pt;}
.y9f{bottom:135.226667pt;}
.y170{bottom:135.706667pt;}
.y166{bottom:136.346667pt;}
.y109{bottom:139.386667pt;}
.y13d{bottom:144.148000pt;}
.y134{bottom:144.346667pt;}
.y12c{bottom:144.360000pt;}
.y59{bottom:148.506667pt;}
.y30{bottom:148.826667pt;}
.y83{bottom:148.986667pt;}
.ybf{bottom:149.466667pt;}
.ye7{bottom:149.946667pt;}
.y125{bottom:151.226667pt;}
.y9e{bottom:155.066667pt;}
.y16f{bottom:155.386667pt;}
.y165{bottom:156.026667pt;}
.y108{bottom:159.066667pt;}
.y133{bottom:164.026667pt;}
.y12b{bottom:164.040000pt;}
.y13b{bottom:164.186667pt;}
.y147{bottom:164.200000pt;}
.y58{bottom:168.346667pt;}
.y82{bottom:168.826667pt;}
.ybe{bottom:169.146667pt;}
.ye6{bottom:169.786667pt;}
.y124{bottom:170.906667pt;}
.y9d{bottom:174.746667pt;}
.y16e{bottom:175.226667pt;}
.y164{bottom:175.866667pt;}
.y176{bottom:181.146667pt;}
.y2f{bottom:181.946667pt;}
.ye4{bottom:183.720000pt;}
.y132{bottom:183.866667pt;}
.y12a{bottom:183.880000pt;}
.y57{bottom:188.026667pt;}
.y81{bottom:188.506667pt;}
.ybd{bottom:188.986667pt;}
.y123{bottom:190.746667pt;}
.y9c{bottom:194.586667pt;}
.y16d{bottom:194.906667pt;}
.y163{bottom:195.706667pt;}
.y107{bottom:197.466667pt;}
.y2e{bottom:203.546667pt;}
.ye1{bottom:203.560000pt;}
.y56{bottom:207.866667pt;}
.y80{bottom:208.346667pt;}
.ybc{bottom:208.666667pt;}
.y122{bottom:210.426667pt;}
.y9b{bottom:214.266667pt;}
.y16c{bottom:214.746667pt;}
.y162{bottom:215.386667pt;}
.y106{bottom:217.306667pt;}
.y55{bottom:227.546667pt;}
.y7f{bottom:228.026667pt;}
.ybb{bottom:228.506667pt;}
.y121{bottom:230.266667pt;}
.y9a{bottom:234.106667pt;}
.y16b{bottom:234.586667pt;}
.y161{bottom:235.226667pt;}
.y105{bottom:237.146667pt;}
.y2d{bottom:239.706667pt;}
.y54{bottom:247.386667pt;}
.y7e{bottom:247.866667pt;}
.yba{bottom:248.346667pt;}
.y120{bottom:250.106667pt;}
.y99{bottom:253.786667pt;}
.y16a{bottom:254.266667pt;}
.y160{bottom:254.906667pt;}
.y104{bottom:256.826667pt;}
.y2c{bottom:257.786667pt;}
.yde{bottom:261.480000pt;}
.y13a{bottom:267.080000pt;}
.y53{bottom:267.226667pt;}
.y7d{bottom:267.546667pt;}
.yb9{bottom:268.026667pt;}
.y11f{bottom:269.786667pt;}
.y98{bottom:273.626667pt;}
.y169{bottom:274.106667pt;}
.y15f{bottom:274.786667pt;}
.y2b{bottom:275.746667pt;}
.y103{bottom:276.706667pt;}
.y7c{bottom:287.426667pt;}
.y11e{bottom:289.666667pt;}
.y52{bottom:293.026667pt;}
.y97{bottom:293.506667pt;}
.y2a{bottom:293.666667pt;}
.yb8{bottom:293.826667pt;}
.y15e{bottom:294.626667pt;}
.y102{bottom:296.386667pt;}
.y7b{bottom:307.266667pt;}
.y11d{bottom:309.346667pt;}
.y29{bottom:311.746667pt;}
.y96{bottom:313.186667pt;}
.yb7{bottom:313.666667pt;}
.y15d{bottom:314.306667pt;}
.y101{bottom:316.226667pt;}
.ydd{bottom:319.586667pt;}
.y51{bottom:326.146667pt;}
.y7a{bottom:326.946667pt;}
.y28{bottom:329.666667pt;}
.y95{bottom:333.026667pt;}
.yb6{bottom:333.346667pt;}
.y15c{bottom:334.146667pt;}
.y100{bottom:336.066667pt;}
.y50{bottom:345.826667pt;}
.y79{bottom:346.786667pt;}
.y27{bottom:347.586667pt;}
.y11c{bottom:347.906667pt;}
.y94{bottom:352.706667pt;}
.yb5{bottom:353.186667pt;}
.y15b{bottom:353.826667pt;}
.yda{bottom:359.746667pt;}
.yff{bottom:361.826667pt;}
.y26{bottom:365.666667pt;}
.y78{bottom:366.466667pt;}
.y11b{bottom:367.586667pt;}
.y93{bottom:372.546667pt;}
.yb4{bottom:373.026667pt;}
.y15a{bottom:373.666667pt;}
.y4f{bottom:378.946667pt;}
.y168{bottom:379.106667pt;}
.yfe{bottom:381.506667pt;}
.y25{bottom:383.586667pt;}
.y77{bottom:386.306667pt;}
.y92{bottom:392.386667pt;}
.yb3{bottom:392.706667pt;}
.y159{bottom:393.506667pt;}
.y4e{bottom:398.786667pt;}
.yfd{bottom:401.346667pt;}
.y24{bottom:401.506667pt;}
.y76{bottom:406.146667pt;}
.yd9{bottom:411.106667pt;}
.y91{bottom:412.066667pt;}
.yb2{bottom:412.546667pt;}
.y158{bottom:413.186667pt;}
.y4d{bottom:418.466667pt;}
.y23{bottom:419.586667pt;}
.yfc{bottom:421.026667pt;}
.y75{bottom:425.826667pt;}
.y90{bottom:431.906667pt;}
.yb1{bottom:432.226667pt;}
.y157{bottom:433.026667pt;}
.yd8{bottom:436.866667pt;}
.y22{bottom:437.506667pt;}
.y4c{bottom:438.306667pt;}
.yfb{bottom:440.866667pt;}
.y74{bottom:445.666667pt;}
.y8f{bottom:451.586667pt;}
.yb0{bottom:452.066667pt;}
.y156{bottom:452.706667pt;}
.y21{bottom:455.586667pt;}
.yd7{bottom:456.706667pt;}
.y4b{bottom:458.146667pt;}
.yfa{bottom:460.706667pt;}
.y131{bottom:464.866667pt;}
.y73{bottom:465.346667pt;}
.y8e{bottom:471.426667pt;}
.yaf{bottom:471.906667pt;}
.y155{bottom:472.546667pt;}
.y20{bottom:473.506667pt;}
.yd6{bottom:476.546667pt;}
.y4a{bottom:477.826667pt;}
.yf9{bottom:480.386667pt;}
.y72{bottom:485.186667pt;}
.y8d{bottom:491.266667pt;}
.y1f{bottom:491.426667pt;}
.yae{bottom:491.586667pt;}
.y154{bottom:492.226667pt;}
.yd5{bottom:496.226667pt;}
.y49{bottom:497.666667pt;}
.yf8{bottom:500.253333pt;}
.y71{bottom:504.893333pt;}
.y1e{bottom:509.533333pt;}
.y8c{bottom:510.973333pt;}
.yad{bottom:511.453333pt;}
.y153{bottom:512.093333pt;}
.yd4{bottom:516.093333pt;}
.y48{bottom:517.373333pt;}
.yf7{bottom:519.933333pt;}
.y70{bottom:524.733333pt;}
.y1d{bottom:527.453333pt;}
.y8b{bottom:530.813333pt;}
.yac{bottom:531.133333pt;}
.y152{bottom:531.933333pt;}
.yd3{bottom:535.773333pt;}
.y47{bottom:537.213333pt;}
.yf6{bottom:539.773333pt;}
.y6f{bottom:544.573333pt;}
.y1c{bottom:545.373333pt;}
.y8a{bottom:550.493333pt;}
.yab{bottom:550.973333pt;}
.y151{bottom:551.613333pt;}
.yd2{bottom:555.613333pt;}
.y46{bottom:557.053333pt;}
.yf5{bottom:559.613333pt;}
.y1b{bottom:563.453333pt;}
.y6e{bottom:564.253333pt;}
.y89{bottom:570.333333pt;}
.yaa{bottom:570.813333pt;}
.y150{bottom:571.453333pt;}
.yd1{bottom:575.453333pt;}
.y45{bottom:576.733333pt;}
.yf4{bottom:579.293333pt;}
.y1a{bottom:581.373333pt;}
.y6d{bottom:584.093333pt;}
.y88{bottom:590.013333pt;}
.ya9{bottom:590.493333pt;}
.y14f{bottom:591.133333pt;}
.yd0{bottom:595.133333pt;}
.y44{bottom:596.573333pt;}
.yf3{bottom:599.133333pt;}
.y19{bottom:599.293333pt;}
.y6c{bottom:603.773333pt;}
.y87{bottom:609.853333pt;}
.ya8{bottom:610.333333pt;}
.y14e{bottom:610.973333pt;}
.ycf{bottom:614.973333pt;}
.y43{bottom:616.253333pt;}
.y18{bottom:617.373333pt;}
.yf2{bottom:618.813333pt;}
.y6b{bottom:623.613333pt;}
.y86{bottom:629.693333pt;}
.ya7{bottom:630.013333pt;}
.y14d{bottom:630.813333pt;}
.yce{bottom:634.653333pt;}
.y17{bottom:635.293333pt;}
.y42{bottom:636.093333pt;}
.y175{bottom:643.453333pt;}
.y6a{bottom:649.373333pt;}
.ya6{bottom:649.853333pt;}
.y14c{bottom:650.493333pt;}
.ycd{bottom:654.493333pt;}
.y41{bottom:655.773333pt;}
.y16{bottom:656.413333pt;}
.yf1{bottom:657.373333pt;}
.y115{bottom:658.333333pt;}
.y129{bottom:662.653333pt;}
.y174{bottom:663.133333pt;}
.y69{bottom:669.213333pt;}
.ya5{bottom:669.533333pt;}
.y14b{bottom:670.173333pt;}
.ycc{bottom:674.173333pt;}
.y40{bottom:675.613333pt;}
.yf0{bottom:677.053333pt;}
.y15{bottom:679.933333pt;}
.y173{bottom:682.973333pt;}
.y68{bottom:688.893333pt;}
.ya4{bottom:689.373333pt;}
.y3f{bottom:695.453333pt;}
.yef{bottom:696.893333pt;}
.y14{bottom:699.773333pt;}
.ycb{bottom:700.093333pt;}
.y172{bottom:702.653333pt;}
.y146{bottom:702.813333pt;}
.y67{bottom:708.733333pt;}
.ya3{bottom:709.213333pt;}
.y3e{bottom:715.133333pt;}
.yee{bottom:716.573333pt;}
.y112{bottom:717.693333pt;}
.y13{bottom:719.613333pt;}
.yca{bottom:722.533333pt;}
.y66{bottom:728.613333pt;}
.ya2{bottom:728.933333pt;}
.y3d{bottom:735.013333pt;}
.yed{bottom:736.453333pt;}
.y12{bottom:739.333333pt;}
.yc9{bottom:742.373333pt;}
.y65{bottom:748.293333pt;}
.ya1{bottom:748.773333pt;}
.y3c{bottom:754.693333pt;}
.yec{bottom:756.293333pt;}
.y110{bottom:758.053333pt;}
.y11{bottom:759.173333pt;}
.yc8{bottom:762.053333pt;}
.y64{bottom:768.133333pt;}
.y3b{bottom:774.533333pt;}
.yeb{bottom:775.973333pt;}
.yc7{bottom:781.893333pt;}
.y63{bottom:787.813333pt;}
.y10f{bottom:788.933333pt;}
.y3a{bottom:794.373333pt;}
.yc6{bottom:801.573333pt;}
.y10{bottom:806.213333pt;}
.y62{bottom:807.653333pt;}
.y10e{bottom:808.773333pt;}
.yea{bottom:813.573333pt;}
.y39{bottom:814.053333pt;}
.ye9{bottom:820.933333pt;}
.yc5{bottom:821.413333pt;}
.y61{bottom:827.333333pt;}
.y10d{bottom:828.453333pt;}
.y38{bottom:833.893333pt;}
.yf{bottom:835.493333pt;}
.yc4{bottom:841.093333pt;}
.y60{bottom:847.173333pt;}
.y10c{bottom:848.293333pt;}
.y37{bottom:853.573333pt;}
.yc3{bottom:860.933333pt;}
.ye{bottom:864.773333pt;}
.y5f{bottom:867.013333pt;}
.y36{bottom:873.413333pt;}
.yc2{bottom:880.773333pt;}
.y128{bottom:880.933333pt;}
.y5e{bottom:886.693333pt;}
.y7{bottom:890.853333pt;}
.y35{bottom:893.093333pt;}
.yc1{bottom:900.453333pt;}
.y145{bottom:900.613333pt;}
.y5d{bottom:906.533333pt;}
.y6{bottom:908.133333pt;}
.y34{bottom:912.933333pt;}
.yc0{bottom:920.293333pt;}
.y5{bottom:925.253333pt;}
.y5c{bottom:926.213333pt;}
.y4{bottom:942.533333pt;}
.y33{bottom:946.080000pt;}
.y3{bottom:959.680000pt;}
.y2{bottom:976.960000pt;}
.y1{bottom:994.080000pt;}
.y31{bottom:996.640000pt;}
.h18{height:19.666667pt;}
.hd{height:19.826667pt;}
.h10{height:25.106667pt;}
.h3{height:36.305625pt;}
.ha{height:39.506667pt;}
.h14{height:39.520000pt;}
.h11{height:39.540000pt;}
.h16{height:39.546667pt;}
.h15{height:39.680000pt;}
.h8{height:41.765625pt;}
.h6{height:44.975625pt;}
.h1{height:49.852500pt;}
.h2{height:51.232500pt;}
.h9{height:51.692500pt;}
.hc{height:57.906667pt;}
.hb{height:58.098667pt;}
.h13{height:59.200000pt;}
.h17{height:59.346667pt;}
.h12{height:59.360000pt;}
.h1d{height:59.386667pt;}
.h7{height:63.399375pt;}
.he{height:70.698125pt;}
.h5{height:76.671562pt;}
.hf{height:79.292500pt;}
.h4{height:98.296875pt;}
.h1c{height:158.073333pt;}
.h1b{height:197.773333pt;}
.h1a{height:197.786667pt;}
.h19{height:217.466667pt;}
.h0{height:1056.000000pt;}
.w5{width:55.698667pt;}
.w3{width:64.032000pt;}
.w4{width:69.426667pt;}
.wb{width:74.386667pt;}
.w9{width:74.400000pt;}
.wc{width:74.418667pt;}
.wa{width:79.232000pt;}
.wd{width:79.826667pt;}
.we{width:80.146667pt;}
.w2{width:80.160000pt;}
.w12{width:84.800000pt;}
.w6{width:95.666667pt;}
.w14{width:101.590667pt;}
.w10{width:101.910667pt;}
.w11{width:112.818667pt;}
.wf{width:188.177333pt;}
.w8{width:188.497333pt;}
.w7{width:225.137333pt;}
.w1{width:225.457333pt;}
.w13{width:290.946667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.190667pt;}
.xc{left:112.841333pt;}
.x1{left:120.032000pt;}
.x4{left:146.906667pt;}
.x1e{left:168.026667pt;}
.x1d{left:181.146667pt;}
.x1a{left:214.760000pt;}
.x7{left:216.986667pt;}
.x3{left:233.306667pt;}
.x6{left:267.106667pt;}
.x5{left:290.786667pt;}
.x13{left:298.786667pt;}
.x14{left:301.346667pt;}
.x9{left:311.906667pt;}
.x1b{left:327.586667pt;}
.xe{left:338.306667pt;}
.x8{left:349.506667pt;}
.xb{left:366.466667pt;}
.x15{left:375.746667pt;}
.xa{left:408.066667pt;}
.x1c{left:412.386667pt;}
.xf{left:418.466667pt;}
.x16{left:454.986667pt;}
.x10{left:482.506667pt;}
.x17{left:529.386667pt;}
.x11{left:551.946667pt;}
.x18{left:603.813333pt;}
.x12{left:607.653333pt;}
.x19{left:683.653333pt;}
.x2{left:696.133333pt;}
}




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