
    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_98073d431d89477d500df4bb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3259774be5519079de2a90c3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c694f5d93a5466187ae5213a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c7868b31a78eda85e28833aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_28334d2647a4c6b2e46aad58.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ed303b908a4dac07162a7c31.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_004aa8a20fbace1c43b369c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_fc6a3df382e1858a806464be.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.856934;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_4d3bbebeb3f1d5ce01d98751.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_d5e59808f5ba274f8ea0c182.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-60.480000px;}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.v5{vertical-align:62.640000px;}
.v4{vertical-align:70.560000px;}
.ls9{letter-spacing:-0.936000px;}
.lsb{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.450600px;}
.lsf{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.226200px;}
.ls11{letter-spacing:-0.216000px;}
.ls7{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.018000px;}
.ls8{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.144720px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.334080px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.900000px;}
.ls4{letter-spacing:1.080000px;}
.ls3{letter-spacing:1.800000px;}
.lse{letter-spacing:1496.760000px;}
.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;}
}
.ws9{word-spacing:-54.000000px;}
.ws8{word-spacing:-48.240000px;}
.ws3{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.608000px;}
.wsd{word-spacing:-13.518000px;}
.ws2{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.140000px;}
.wse{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.700000px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.ws1{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.260000px;}
._1{width:1.080000px;}
._a{width:2.118000px;}
._2{width:3.120000px;}
._9{width:4.170000px;}
._8{width:5.322000px;}
._4{width:6.624000px;}
._7{width:7.680000px;}
._3{width:8.694000px;}
._5{width:9.828000px;}
._6{width:11.016000px;}
._23{width:12.366000px;}
._1b{width:14.724000px;}
._d{width:15.732000px;}
._c{width:16.956000px;}
._32{width:17.964000px;}
._12{width:18.972000px;}
._17{width:20.034000px;}
._16{width:21.258000px;}
._1c{width:22.320000px;}
._1f{width:23.598000px;}
._1e{width:24.768000px;}
._1d{width:26.730000px;}
._b{width:28.350000px;}
._13{width:29.646000px;}
._14{width:30.726000px;}
._24{width:31.968000px;}
._19{width:33.858000px;}
._21{width:34.992000px;}
._22{width:36.180000px;}
._25{width:37.476000px;}
._11{width:39.258000px;}
._28{width:41.202000px;}
._2a{width:42.948000px;}
._15{width:44.442000px;}
._2f{width:45.594000px;}
._1a{width:46.602000px;}
._31{width:47.730000px;}
._18{width:49.032000px;}
._f{width:50.058000px;}
._10{width:51.084000px;}
._27{width:52.812000px;}
._20{width:53.892000px;}
._26{width:56.160000px;}
._2b{width:67.608000px;}
._2c{width:76.086000px;}
._29{width:80.298000px;}
._30{width:92.664000px;}
._2d{width:99.324000px;}
._e{width:718.860000px;}
._33{width:1162.320000px;}
._2e{width:1285.224000px;}
.fc4{color:transparent;}
.fc3{color:rgb(47,84,150);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(128,128,128);}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:56.920429px;}
.fs4{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:90.000000px;}
.y42{bottom:-3.600000px;}
.y81{bottom:-3.060000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:2.520000px;}
.y29{bottom:3.240000px;}
.yc{bottom:3.780000px;}
.y82{bottom:4.320000px;}
.y3f{bottom:5.250000px;}
.ybd{bottom:5.400000px;}
.y7d{bottom:6.120000px;}
.y7e{bottom:6.480000px;}
.y2d{bottom:14.580000px;}
.y28{bottom:18.720000px;}
.y4{bottom:20.700000px;}
.y27{bottom:34.380000px;}
.y2c{bottom:35.685000px;}
.y43{bottom:43.560000px;}
.y2b{bottom:48.105000px;}
.y26{bottom:49.860000px;}
.y3{bottom:53.640000px;}
.y25{bottom:65.340000px;}
.y41{bottom:69.840000px;}
.y80{bottom:72.000000px;}
.y3d{bottom:79.380000px;}
.y24{bottom:80.820000px;}
.y7b{bottom:86.760000px;}
.y12c{bottom:91.620000px;}
.yf9{bottom:93.420000px;}
.y23{bottom:96.300000px;}
.ybb{bottom:97.560000px;}
.y3c{bottom:99.180000px;}
.y7a{bottom:102.240000px;}
.y12b{bottom:107.100000px;}
.yf8{bottom:108.900000px;}
.y22{bottom:111.960000px;}
.y13f{bottom:112.680000px;}
.yba{bottom:113.040000px;}
.y79{bottom:117.720000px;}
.y12a{bottom:122.760000px;}
.yf7{bottom:124.380000px;}
.y13e{bottom:126.540000px;}
.y3b{bottom:126.720000px;}
.y21{bottom:127.440000px;}
.yb9{bottom:128.520000px;}
.y78{bottom:133.200000px;}
.y129{bottom:138.240000px;}
.yf6{bottom:139.860000px;}
.y13d{bottom:140.400000px;}
.y1c{bottom:142.920000px;}
.yb8{bottom:144.000000px;}
.y3a{bottom:145.800000px;}
.y77{bottom:148.860000px;}
.y128{bottom:153.720000px;}
.y13c{bottom:154.080000px;}
.yf5{bottom:155.520000px;}
.y1b{bottom:158.400000px;}
.yb7{bottom:159.660000px;}
.y39{bottom:163.080000px;}
.y76{bottom:164.340000px;}
.y13b{bottom:167.940000px;}
.y127{bottom:169.200000px;}
.yf4{bottom:171.000000px;}
.y1a{bottom:174.060000px;}
.yb6{bottom:175.140000px;}
.y75{bottom:179.820000px;}
.y38{bottom:180.390000px;}
.y13a{bottom:181.830000px;}
.y126{bottom:184.890000px;}
.yf3{bottom:186.510000px;}
.y19{bottom:189.570000px;}
.yb5{bottom:190.650000px;}
.y74{bottom:195.330000px;}
.y139{bottom:195.510000px;}
.y37{bottom:197.490000px;}
.y125{bottom:200.370000px;}
.yf2{bottom:201.990000px;}
.y18{bottom:205.050000px;}
.yb4{bottom:206.130000px;}
.y138{bottom:209.370000px;}
.y73{bottom:210.990000px;}
.y36{bottom:214.770000px;}
.y124{bottom:215.850000px;}
.yf1{bottom:217.650000px;}
.y17{bottom:220.530000px;}
.yb3{bottom:221.790000px;}
.y137{bottom:223.230000px;}
.y140{bottom:224.490000px;}
.y72{bottom:226.470000px;}
.y123{bottom:230.970000px;}
.y35{bottom:232.050000px;}
.yf0{bottom:233.130000px;}
.y16{bottom:236.190000px;}
.y136{bottom:236.910000px;}
.yb2{bottom:237.270000px;}
.y71{bottom:241.950000px;}
.y122{bottom:246.990000px;}
.yef{bottom:248.610000px;}
.y34{bottom:249.330000px;}
.y135{bottom:250.770000px;}
.y15{bottom:251.670000px;}
.yb1{bottom:252.750000px;}
.y70{bottom:257.430000px;}
.y121{bottom:262.470000px;}
.yed{bottom:263.730000px;}
.yee{bottom:264.090000px;}
.y134{bottom:264.630000px;}
.y33{bottom:266.610000px;}
.y14{bottom:267.150000px;}
.yb0{bottom:268.230000px;}
.y6f{bottom:273.090000px;}
.y120{bottom:277.950000px;}
.y133{bottom:278.310000px;}
.yec{bottom:279.750000px;}
.y13{bottom:282.630000px;}
.y32{bottom:283.890000px;}
.y6e{bottom:288.570000px;}
.y132{bottom:292.170000px;}
.y11f{bottom:293.430000px;}
.yeb{bottom:295.230000px;}
.y12{bottom:297.930000px;}
.y20{bottom:298.290000px;}
.yaf{bottom:299.370000px;}
.y31{bottom:300.990000px;}
.y6d{bottom:304.050000px;}
.y131{bottom:306.030000px;}
.y11e{bottom:309.090000px;}
.yea{bottom:310.710000px;}
.y11{bottom:313.410000px;}
.y1f{bottom:313.770000px;}
.yae{bottom:314.850000px;}
.y30{bottom:318.270000px;}
.y6c{bottom:319.530000px;}
.y130{bottom:319.710000px;}
.y11d{bottom:324.570000px;}
.ye9{bottom:326.190000px;}
.y10{bottom:328.890000px;}
.y1e{bottom:329.250000px;}
.yad{bottom:330.330000px;}
.y12f{bottom:333.570000px;}
.y6b{bottom:335.190000px;}
.y2f{bottom:336.270000px;}
.y11c{bottom:340.050000px;}
.ye8{bottom:341.850000px;}
.yf{bottom:344.730000px;}
.yac{bottom:345.990000px;}
.y12e{bottom:347.430000px;}
.y6a{bottom:350.670000px;}
.y2a{bottom:354.810000px;}
.y11b{bottom:355.530000px;}
.ye7{bottom:357.330000px;}
.ye{bottom:360.030000px;}
.y1d{bottom:360.390000px;}
.yab{bottom:361.470000px;}
.y69{bottom:366.150000px;}
.y11a{bottom:371.190000px;}
.ye6{bottom:372.810000px;}
.y12d{bottom:376.590000px;}
.yaa{bottom:376.950000px;}
.y68{bottom:381.630000px;}
.y119{bottom:386.670000px;}
.ye5{bottom:388.335000px;}
.ya9{bottom:392.475000px;}
.y67{bottom:397.335000px;}
.y118{bottom:402.195000px;}
.ye4{bottom:403.995000px;}
.ya8{bottom:408.135000px;}
.y66{bottom:412.815000px;}
.y117{bottom:417.675000px;}
.yd{bottom:419.115000px;}
.ye3{bottom:419.475000px;}
.ya7{bottom:423.615000px;}
.y65{bottom:428.295000px;}
.y116{bottom:433.155000px;}
.ye2{bottom:434.955000px;}
.ya6{bottom:439.095000px;}
.y64{bottom:443.775000px;}
.y115{bottom:448.815000px;}
.ye1{bottom:450.435000px;}
.ya5{bottom:454.575000px;}
.y63{bottom:459.255000px;}
.y114{bottom:464.295000px;}
.ye0{bottom:466.095000px;}
.ya4{bottom:470.235000px;}
.y62{bottom:474.915000px;}
.y113{bottom:479.775000px;}
.ydf{bottom:481.575000px;}
.ya3{bottom:485.715000px;}
.y61{bottom:490.395000px;}
.y112{bottom:495.255000px;}
.yde{bottom:497.055000px;}
.ya2{bottom:501.195000px;}
.y60{bottom:505.875000px;}
.y111{bottom:510.915000px;}
.ydd{bottom:512.535000px;}
.ya1{bottom:516.675000px;}
.y5f{bottom:521.355000px;}
.y110{bottom:526.395000px;}
.ydc{bottom:528.195000px;}
.ya0{bottom:532.335000px;}
.y5e{bottom:537.015000px;}
.y10f{bottom:541.875000px;}
.ydb{bottom:543.315000px;}
.y9f{bottom:547.815000px;}
.y5d{bottom:552.495000px;}
.y10e{bottom:557.355000px;}
.yda{bottom:559.155000px;}
.y9e{bottom:563.295000px;}
.y5c{bottom:567.975000px;}
.y10d{bottom:573.015000px;}
.yd9{bottom:574.635000px;}
.y9d{bottom:578.775000px;}
.y5b{bottom:583.455000px;}
.y10c{bottom:588.495000px;}
.yd8{bottom:590.295000px;}
.y9c{bottom:594.435000px;}
.y5a{bottom:599.145000px;}
.y10b{bottom:604.005000px;}
.yd7{bottom:605.805000px;}
.y9b{bottom:609.945000px;}
.y59{bottom:614.625000px;}
.y10a{bottom:619.485000px;}
.yd6{bottom:621.285000px;}
.y9a{bottom:625.425000px;}
.y58{bottom:630.105000px;}
.y109{bottom:635.145000px;}
.yd5{bottom:636.765000px;}
.y99{bottom:640.905000px;}
.y57{bottom:645.585000px;}
.y108{bottom:650.625000px;}
.yd4{bottom:652.245000px;}
.y98{bottom:656.385000px;}
.y56{bottom:661.245000px;}
.y107{bottom:666.105000px;}
.yd3{bottom:667.905000px;}
.y97{bottom:672.045000px;}
.y55{bottom:676.725000px;}
.y106{bottom:681.585000px;}
.yd2{bottom:683.385000px;}
.y96{bottom:687.525000px;}
.y54{bottom:692.205000px;}
.y105{bottom:697.245000px;}
.yd1{bottom:698.865000px;}
.y95{bottom:703.005000px;}
.y53{bottom:707.685000px;}
.y104{bottom:712.725000px;}
.yd0{bottom:714.345000px;}
.y94{bottom:718.485000px;}
.y52{bottom:723.345000px;}
.y103{bottom:728.205000px;}
.ycf{bottom:730.005000px;}
.y93{bottom:734.145000px;}
.y51{bottom:738.825000px;}
.y102{bottom:743.685000px;}
.yce{bottom:745.485000px;}
.y92{bottom:749.625000px;}
.y50{bottom:754.305000px;}
.y101{bottom:759.345000px;}
.ycd{bottom:760.965000px;}
.y91{bottom:765.105000px;}
.y4f{bottom:769.785000px;}
.y100{bottom:774.825000px;}
.ycc{bottom:776.445000px;}
.y90{bottom:780.585000px;}
.y4e{bottom:785.445000px;}
.yff{bottom:790.305000px;}
.ycb{bottom:792.105000px;}
.yb{bottom:793.905000px;}
.y8f{bottom:796.245000px;}
.y4d{bottom:800.925000px;}
.yfe{bottom:805.830000px;}
.yca{bottom:807.630000px;}
.y8e{bottom:811.770000px;}
.y4c{bottom:816.450000px;}
.ya{bottom:818.070000px;}
.yfd{bottom:821.490000px;}
.yc9{bottom:823.110000px;}
.y8d{bottom:827.250000px;}
.y4b{bottom:831.930000px;}
.yfc{bottom:836.970000px;}
.yc8{bottom:838.590000px;}
.y9{bottom:840.030000px;}
.y8c{bottom:842.730000px;}
.y4a{bottom:847.590000px;}
.y8{bottom:848.130000px;}
.yfb{bottom:852.450000px;}
.yc7{bottom:854.250000px;}
.y8b{bottom:858.390000px;}
.y7{bottom:863.070000px;}
.yfa{bottom:868.110000px;}
.yc6{bottom:869.730000px;}
.y8a{bottom:873.870000px;}
.y49{bottom:878.550000px;}
.yc5{bottom:885.210000px;}
.y89{bottom:889.350000px;}
.y48{bottom:894.030000px;}
.y6{bottom:898.170000px;}
.yc4{bottom:900.690000px;}
.y88{bottom:904.830000px;}
.y47{bottom:909.690000px;}
.yc3{bottom:916.350000px;}
.y87{bottom:920.490000px;}
.y5{bottom:924.090000px;}
.y46{bottom:925.170000px;}
.yc2{bottom:931.830000px;}
.y86{bottom:935.970000px;}
.y45{bottom:942.450000px;}
.yc1{bottom:947.310000px;}
.y85{bottom:951.450000px;}
.y44{bottom:959.730000px;}
.yc0{bottom:962.790000px;}
.y84{bottom:966.930000px;}
.ybf{bottom:978.450000px;}
.y83{bottom:982.590000px;}
.y2{bottom:983.850000px;}
.y40{bottom:994.470000px;}
.y3e{bottom:1008.870000px;}
.ybe{bottom:1011.600000px;}
.y7f{bottom:1014.840000px;}
.y1{bottom:1017.000000px;}
.y7c{bottom:1024.740000px;}
.ybc{bottom:1025.820000px;}
.h18{height:8.640000px;}
.h1d{height:9.180000px;}
.h19{height:15.480000px;}
.h1e{height:17.640000px;}
.h16{height:17.856000px;}
.h1f{height:18.000000px;}
.h1c{height:19.080000px;}
.h9{height:19.116000px;}
.h15{height:26.464922px;}
.h7{height:38.139609px;}
.h12{height:40.985156px;}
.h13{height:42.922699px;}
.h17{height:47.321367px;}
.h2{height:47.344922px;}
.h8{height:52.971680px;}
.he{height:52.998047px;}
.h3{height:54.421875px;}
.hc{height:55.503491px;}
.hd{height:56.214844px;}
.hf{height:58.505231px;}
.h6{height:58.621992px;}
.h11{height:58.651172px;}
.h1a{height:60.226875px;}
.h10{height:61.956000px;}
.ha{height:68.956875px;}
.h14{height:70.664062px;}
.h5{height:80.464922px;}
.h4{height:90.703125px;}
.h20{height:117.061875px;}
.h1b{height:129.211172px;}
.hb{height:372.630000px;}
.h1{height:1113.750000px;}
.h0{height:1114.020000px;}
.w2{width:174.810000px;}
.w9{width:345.855000px;}
.w8{width:355.965000px;}
.w7{width:358.995000px;}
.wb{width:359.355000px;}
.w6{width:360.105000px;}
.wa{width:360.465000px;}
.w3{width:524.490000px;}
.w4{width:699.300000px;}
.w5{width:701.820000px;}
.w0{width:816.480000px;}
.w1{width:816.750000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.xa{left:29.340000px;}
.x7{left:47.160000px;}
.x2{left:55.260000px;}
.x3{left:61.200000px;}
.xb{left:64.296000px;}
.xd{left:72.036000px;}
.x13{left:82.296000px;}
.xc{left:85.356000px;}
.x4{left:98.856000px;}
.xe{left:121.716000px;}
.x6{left:191.010000px;}
.x9{left:221.970000px;}
.x5{left:325.155000px;}
.x12{left:330.915000px;}
.xf{left:350.355000px;}
.x11{left:403.125000px;}
.x1{left:406.185000px;}
.x16{left:411.945000px;}
.x10{left:433.185000px;}
.x14{left:438.945000px;}
.x15{left:460.185000px;}
@media print{
.v6{vertical-align:-53.760000pt;}
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.v5{vertical-align:55.680000pt;}
.v4{vertical-align:62.720000pt;}
.ls9{letter-spacing:-0.832000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.400533pt;}
.lsf{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.201067pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.016000pt;}
.ls8{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.128640pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.296960pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.800000pt;}
.ls4{letter-spacing:0.960000pt;}
.ls3{letter-spacing:1.600000pt;}
.lse{letter-spacing:1330.453333pt;}
.ws9{word-spacing:-48.000000pt;}
.ws8{word-spacing:-42.880000pt;}
.ws3{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.096000pt;}
.wsd{word-spacing:-12.016000pt;}
.ws2{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.680000pt;}
.wse{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.400000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.ws1{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.120000pt;}
._1{width:0.960000pt;}
._a{width:1.882667pt;}
._2{width:2.773333pt;}
._9{width:3.706667pt;}
._8{width:4.730667pt;}
._4{width:5.888000pt;}
._7{width:6.826667pt;}
._3{width:7.728000pt;}
._5{width:8.736000pt;}
._6{width:9.792000pt;}
._23{width:10.992000pt;}
._1b{width:13.088000pt;}
._d{width:13.984000pt;}
._c{width:15.072000pt;}
._32{width:15.968000pt;}
._12{width:16.864000pt;}
._17{width:17.808000pt;}
._16{width:18.896000pt;}
._1c{width:19.840000pt;}
._1f{width:20.976000pt;}
._1e{width:22.016000pt;}
._1d{width:23.760000pt;}
._b{width:25.200000pt;}
._13{width:26.352000pt;}
._14{width:27.312000pt;}
._24{width:28.416000pt;}
._19{width:30.096000pt;}
._21{width:31.104000pt;}
._22{width:32.160000pt;}
._25{width:33.312000pt;}
._11{width:34.896000pt;}
._28{width:36.624000pt;}
._2a{width:38.176000pt;}
._15{width:39.504000pt;}
._2f{width:40.528000pt;}
._1a{width:41.424000pt;}
._31{width:42.426667pt;}
._18{width:43.584000pt;}
._f{width:44.496000pt;}
._10{width:45.408000pt;}
._27{width:46.944000pt;}
._20{width:47.904000pt;}
._26{width:49.920000pt;}
._2b{width:60.096000pt;}
._2c{width:67.632000pt;}
._29{width:71.376000pt;}
._30{width:82.368000pt;}
._2d{width:88.288000pt;}
._e{width:638.986667pt;}
._33{width:1033.173333pt;}
._2e{width:1142.421333pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.595937pt;}
.fs4{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:80.000000pt;}
.y42{bottom:-3.200000pt;}
.y81{bottom:-2.720000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:2.240000pt;}
.y29{bottom:2.880000pt;}
.yc{bottom:3.360000pt;}
.y82{bottom:3.840000pt;}
.y3f{bottom:4.666667pt;}
.ybd{bottom:4.800000pt;}
.y7d{bottom:5.440000pt;}
.y7e{bottom:5.760000pt;}
.y2d{bottom:12.960000pt;}
.y28{bottom:16.640000pt;}
.y4{bottom:18.400000pt;}
.y27{bottom:30.560000pt;}
.y2c{bottom:31.720000pt;}
.y43{bottom:38.720000pt;}
.y2b{bottom:42.760000pt;}
.y26{bottom:44.320000pt;}
.y3{bottom:47.680000pt;}
.y25{bottom:58.080000pt;}
.y41{bottom:62.080000pt;}
.y80{bottom:64.000000pt;}
.y3d{bottom:70.560000pt;}
.y24{bottom:71.840000pt;}
.y7b{bottom:77.120000pt;}
.y12c{bottom:81.440000pt;}
.yf9{bottom:83.040000pt;}
.y23{bottom:85.600000pt;}
.ybb{bottom:86.720000pt;}
.y3c{bottom:88.160000pt;}
.y7a{bottom:90.880000pt;}
.y12b{bottom:95.200000pt;}
.yf8{bottom:96.800000pt;}
.y22{bottom:99.520000pt;}
.y13f{bottom:100.160000pt;}
.yba{bottom:100.480000pt;}
.y79{bottom:104.640000pt;}
.y12a{bottom:109.120000pt;}
.yf7{bottom:110.560000pt;}
.y13e{bottom:112.480000pt;}
.y3b{bottom:112.640000pt;}
.y21{bottom:113.280000pt;}
.yb9{bottom:114.240000pt;}
.y78{bottom:118.400000pt;}
.y129{bottom:122.880000pt;}
.yf6{bottom:124.320000pt;}
.y13d{bottom:124.800000pt;}
.y1c{bottom:127.040000pt;}
.yb8{bottom:128.000000pt;}
.y3a{bottom:129.600000pt;}
.y77{bottom:132.320000pt;}
.y128{bottom:136.640000pt;}
.y13c{bottom:136.960000pt;}
.yf5{bottom:138.240000pt;}
.y1b{bottom:140.800000pt;}
.yb7{bottom:141.920000pt;}
.y39{bottom:144.960000pt;}
.y76{bottom:146.080000pt;}
.y13b{bottom:149.280000pt;}
.y127{bottom:150.400000pt;}
.yf4{bottom:152.000000pt;}
.y1a{bottom:154.720000pt;}
.yb6{bottom:155.680000pt;}
.y75{bottom:159.840000pt;}
.y38{bottom:160.346667pt;}
.y13a{bottom:161.626667pt;}
.y126{bottom:164.346667pt;}
.yf3{bottom:165.786667pt;}
.y19{bottom:168.506667pt;}
.yb5{bottom:169.466667pt;}
.y74{bottom:173.626667pt;}
.y139{bottom:173.786667pt;}
.y37{bottom:175.546667pt;}
.y125{bottom:178.106667pt;}
.yf2{bottom:179.546667pt;}
.y18{bottom:182.266667pt;}
.yb4{bottom:183.226667pt;}
.y138{bottom:186.106667pt;}
.y73{bottom:187.546667pt;}
.y36{bottom:190.906667pt;}
.y124{bottom:191.866667pt;}
.yf1{bottom:193.466667pt;}
.y17{bottom:196.026667pt;}
.yb3{bottom:197.146667pt;}
.y137{bottom:198.426667pt;}
.y140{bottom:199.546667pt;}
.y72{bottom:201.306667pt;}
.y123{bottom:205.306667pt;}
.y35{bottom:206.266667pt;}
.yf0{bottom:207.226667pt;}
.y16{bottom:209.946667pt;}
.y136{bottom:210.586667pt;}
.yb2{bottom:210.906667pt;}
.y71{bottom:215.066667pt;}
.y122{bottom:219.546667pt;}
.yef{bottom:220.986667pt;}
.y34{bottom:221.626667pt;}
.y135{bottom:222.906667pt;}
.y15{bottom:223.706667pt;}
.yb1{bottom:224.666667pt;}
.y70{bottom:228.826667pt;}
.y121{bottom:233.306667pt;}
.yed{bottom:234.426667pt;}
.yee{bottom:234.746667pt;}
.y134{bottom:235.226667pt;}
.y33{bottom:236.986667pt;}
.y14{bottom:237.466667pt;}
.yb0{bottom:238.426667pt;}
.y6f{bottom:242.746667pt;}
.y120{bottom:247.066667pt;}
.y133{bottom:247.386667pt;}
.yec{bottom:248.666667pt;}
.y13{bottom:251.226667pt;}
.y32{bottom:252.346667pt;}
.y6e{bottom:256.506667pt;}
.y132{bottom:259.706667pt;}
.y11f{bottom:260.826667pt;}
.yeb{bottom:262.426667pt;}
.y12{bottom:264.826667pt;}
.y20{bottom:265.146667pt;}
.yaf{bottom:266.106667pt;}
.y31{bottom:267.546667pt;}
.y6d{bottom:270.266667pt;}
.y131{bottom:272.026667pt;}
.y11e{bottom:274.746667pt;}
.yea{bottom:276.186667pt;}
.y11{bottom:278.586667pt;}
.y1f{bottom:278.906667pt;}
.yae{bottom:279.866667pt;}
.y30{bottom:282.906667pt;}
.y6c{bottom:284.026667pt;}
.y130{bottom:284.186667pt;}
.y11d{bottom:288.506667pt;}
.ye9{bottom:289.946667pt;}
.y10{bottom:292.346667pt;}
.y1e{bottom:292.666667pt;}
.yad{bottom:293.626667pt;}
.y12f{bottom:296.506667pt;}
.y6b{bottom:297.946667pt;}
.y2f{bottom:298.906667pt;}
.y11c{bottom:302.266667pt;}
.ye8{bottom:303.866667pt;}
.yf{bottom:306.426667pt;}
.yac{bottom:307.546667pt;}
.y12e{bottom:308.826667pt;}
.y6a{bottom:311.706667pt;}
.y2a{bottom:315.386667pt;}
.y11b{bottom:316.026667pt;}
.ye7{bottom:317.626667pt;}
.ye{bottom:320.026667pt;}
.y1d{bottom:320.346667pt;}
.yab{bottom:321.306667pt;}
.y69{bottom:325.466667pt;}
.y11a{bottom:329.946667pt;}
.ye6{bottom:331.386667pt;}
.y12d{bottom:334.746667pt;}
.yaa{bottom:335.066667pt;}
.y68{bottom:339.226667pt;}
.y119{bottom:343.706667pt;}
.ye5{bottom:345.186667pt;}
.ya9{bottom:348.866667pt;}
.y67{bottom:353.186667pt;}
.y118{bottom:357.506667pt;}
.ye4{bottom:359.106667pt;}
.ya8{bottom:362.786667pt;}
.y66{bottom:366.946667pt;}
.y117{bottom:371.266667pt;}
.yd{bottom:372.546667pt;}
.ye3{bottom:372.866667pt;}
.ya7{bottom:376.546667pt;}
.y65{bottom:380.706667pt;}
.y116{bottom:385.026667pt;}
.ye2{bottom:386.626667pt;}
.ya6{bottom:390.306667pt;}
.y64{bottom:394.466667pt;}
.y115{bottom:398.946667pt;}
.ye1{bottom:400.386667pt;}
.ya5{bottom:404.066667pt;}
.y63{bottom:408.226667pt;}
.y114{bottom:412.706667pt;}
.ye0{bottom:414.306667pt;}
.ya4{bottom:417.986667pt;}
.y62{bottom:422.146667pt;}
.y113{bottom:426.466667pt;}
.ydf{bottom:428.066667pt;}
.ya3{bottom:431.746667pt;}
.y61{bottom:435.906667pt;}
.y112{bottom:440.226667pt;}
.yde{bottom:441.826667pt;}
.ya2{bottom:445.506667pt;}
.y60{bottom:449.666667pt;}
.y111{bottom:454.146667pt;}
.ydd{bottom:455.586667pt;}
.ya1{bottom:459.266667pt;}
.y5f{bottom:463.426667pt;}
.y110{bottom:467.906667pt;}
.ydc{bottom:469.506667pt;}
.ya0{bottom:473.186667pt;}
.y5e{bottom:477.346667pt;}
.y10f{bottom:481.666667pt;}
.ydb{bottom:482.946667pt;}
.y9f{bottom:486.946667pt;}
.y5d{bottom:491.106667pt;}
.y10e{bottom:495.426667pt;}
.yda{bottom:497.026667pt;}
.y9e{bottom:500.706667pt;}
.y5c{bottom:504.866667pt;}
.y10d{bottom:509.346667pt;}
.yd9{bottom:510.786667pt;}
.y9d{bottom:514.466667pt;}
.y5b{bottom:518.626667pt;}
.y10c{bottom:523.106667pt;}
.yd8{bottom:524.706667pt;}
.y9c{bottom:528.386667pt;}
.y5a{bottom:532.573333pt;}
.y10b{bottom:536.893333pt;}
.yd7{bottom:538.493333pt;}
.y9b{bottom:542.173333pt;}
.y59{bottom:546.333333pt;}
.y10a{bottom:550.653333pt;}
.yd6{bottom:552.253333pt;}
.y9a{bottom:555.933333pt;}
.y58{bottom:560.093333pt;}
.y109{bottom:564.573333pt;}
.yd5{bottom:566.013333pt;}
.y99{bottom:569.693333pt;}
.y57{bottom:573.853333pt;}
.y108{bottom:578.333333pt;}
.yd4{bottom:579.773333pt;}
.y98{bottom:583.453333pt;}
.y56{bottom:587.773333pt;}
.y107{bottom:592.093333pt;}
.yd3{bottom:593.693333pt;}
.y97{bottom:597.373333pt;}
.y55{bottom:601.533333pt;}
.y106{bottom:605.853333pt;}
.yd2{bottom:607.453333pt;}
.y96{bottom:611.133333pt;}
.y54{bottom:615.293333pt;}
.y105{bottom:619.773333pt;}
.yd1{bottom:621.213333pt;}
.y95{bottom:624.893333pt;}
.y53{bottom:629.053333pt;}
.y104{bottom:633.533333pt;}
.yd0{bottom:634.973333pt;}
.y94{bottom:638.653333pt;}
.y52{bottom:642.973333pt;}
.y103{bottom:647.293333pt;}
.ycf{bottom:648.893333pt;}
.y93{bottom:652.573333pt;}
.y51{bottom:656.733333pt;}
.y102{bottom:661.053333pt;}
.yce{bottom:662.653333pt;}
.y92{bottom:666.333333pt;}
.y50{bottom:670.493333pt;}
.y101{bottom:674.973333pt;}
.ycd{bottom:676.413333pt;}
.y91{bottom:680.093333pt;}
.y4f{bottom:684.253333pt;}
.y100{bottom:688.733333pt;}
.ycc{bottom:690.173333pt;}
.y90{bottom:693.853333pt;}
.y4e{bottom:698.173333pt;}
.yff{bottom:702.493333pt;}
.ycb{bottom:704.093333pt;}
.yb{bottom:705.693333pt;}
.y8f{bottom:707.773333pt;}
.y4d{bottom:711.933333pt;}
.yfe{bottom:716.293333pt;}
.yca{bottom:717.893333pt;}
.y8e{bottom:721.573333pt;}
.y4c{bottom:725.733333pt;}
.ya{bottom:727.173333pt;}
.yfd{bottom:730.213333pt;}
.yc9{bottom:731.653333pt;}
.y8d{bottom:735.333333pt;}
.y4b{bottom:739.493333pt;}
.yfc{bottom:743.973333pt;}
.yc8{bottom:745.413333pt;}
.y9{bottom:746.693333pt;}
.y8c{bottom:749.093333pt;}
.y4a{bottom:753.413333pt;}
.y8{bottom:753.893333pt;}
.yfb{bottom:757.733333pt;}
.yc7{bottom:759.333333pt;}
.y8b{bottom:763.013333pt;}
.y7{bottom:767.173333pt;}
.yfa{bottom:771.653333pt;}
.yc6{bottom:773.093333pt;}
.y8a{bottom:776.773333pt;}
.y49{bottom:780.933333pt;}
.yc5{bottom:786.853333pt;}
.y89{bottom:790.533333pt;}
.y48{bottom:794.693333pt;}
.y6{bottom:798.373333pt;}
.yc4{bottom:800.613333pt;}
.y88{bottom:804.293333pt;}
.y47{bottom:808.613333pt;}
.yc3{bottom:814.533333pt;}
.y87{bottom:818.213333pt;}
.y5{bottom:821.413333pt;}
.y46{bottom:822.373333pt;}
.yc2{bottom:828.293333pt;}
.y86{bottom:831.973333pt;}
.y45{bottom:837.733333pt;}
.yc1{bottom:842.053333pt;}
.y85{bottom:845.733333pt;}
.y44{bottom:853.093333pt;}
.yc0{bottom:855.813333pt;}
.y84{bottom:859.493333pt;}
.ybf{bottom:869.733333pt;}
.y83{bottom:873.413333pt;}
.y2{bottom:874.533333pt;}
.y40{bottom:883.973333pt;}
.y3e{bottom:896.773333pt;}
.ybe{bottom:899.200000pt;}
.y7f{bottom:902.080000pt;}
.y1{bottom:904.000000pt;}
.y7c{bottom:910.880000pt;}
.ybc{bottom:911.840000pt;}
.h18{height:7.680000pt;}
.h1d{height:8.160000pt;}
.h19{height:13.760000pt;}
.h1e{height:15.680000pt;}
.h16{height:15.872000pt;}
.h1f{height:16.000000pt;}
.h1c{height:16.960000pt;}
.h9{height:16.992000pt;}
.h15{height:23.524375pt;}
.h7{height:33.901875pt;}
.h12{height:36.431250pt;}
.h13{height:38.153511pt;}
.h17{height:42.063437pt;}
.h2{height:42.084375pt;}
.h8{height:47.085938pt;}
.he{height:47.109375pt;}
.h3{height:48.375000pt;}
.hc{height:49.336436pt;}
.hd{height:49.968750pt;}
.hf{height:52.004650pt;}
.h6{height:52.108438pt;}
.h11{height:52.134375pt;}
.h1a{height:53.535000pt;}
.h10{height:55.072000pt;}
.ha{height:61.295000pt;}
.h14{height:62.812500pt;}
.h5{height:71.524375pt;}
.h4{height:80.625000pt;}
.h20{height:104.055000pt;}
.h1b{height:114.854375pt;}
.hb{height:331.226667pt;}
.h1{height:990.000000pt;}
.h0{height:990.240000pt;}
.w2{width:155.386667pt;}
.w9{width:307.426667pt;}
.w8{width:316.413333pt;}
.w7{width:319.106667pt;}
.wb{width:319.426667pt;}
.w6{width:320.093333pt;}
.wa{width:320.413333pt;}
.w3{width:466.213333pt;}
.w4{width:621.600000pt;}
.w5{width:623.840000pt;}
.w0{width:725.760000pt;}
.w1{width:726.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.xa{left:26.080000pt;}
.x7{left:41.920000pt;}
.x2{left:49.120000pt;}
.x3{left:54.400000pt;}
.xb{left:57.152000pt;}
.xd{left:64.032000pt;}
.x13{left:73.152000pt;}
.xc{left:75.872000pt;}
.x4{left:87.872000pt;}
.xe{left:108.192000pt;}
.x6{left:169.786667pt;}
.x9{left:197.306667pt;}
.x5{left:289.026667pt;}
.x12{left:294.146667pt;}
.xf{left:311.426667pt;}
.x11{left:358.333333pt;}
.x1{left:361.053333pt;}
.x16{left:366.173333pt;}
.x10{left:385.053333pt;}
.x14{left:390.173333pt;}
.x15{left:409.053333pt;}
}




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