
    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_40785bc51f0eb4a0324878ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5fa22d3e75af1f2e70f5c427.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2133048050ad6bc4d36af1e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_94c605d7110800d386cb9abb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_75d7789decac9f780c9b3bf0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932129;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_7f5b5e470beff995f4939498.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.039062;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_56f583f4b420bed77d0c279a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.201172;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_894fb405a92b8f3174b86837.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.884277;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-26.640000px;}
.v6{vertical-align:-20.880000px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.v4{vertical-align:31.680000px;}
.v3{vertical-align:37.440000px;}
.ls13{letter-spacing:-0.774000px;}
.ls6{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.463800px;}
.ls4{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.291000px;}
.lsa{letter-spacing:-0.270000px;}
.ls3{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.081600px;}
.ls9{letter-spacing:-0.076800px;}
.ls12{letter-spacing:-0.051840px;}
.ls19{letter-spacing:-0.027360px;}
.ls15{letter-spacing:-0.007620px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.024480px;}
.ls0{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.207360px;}
.ls11{letter-spacing:0.219000px;}
.ls10{letter-spacing:0.238800px;}
.ls16{letter-spacing:0.284400px;}
.ls14{letter-spacing:0.334200px;}
.ls7{letter-spacing:0.335400px;}
.ls1{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.540000px;}
.lsc{letter-spacing:14.531040px;}
.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;}
}
.ws14{word-spacing:-20.340000px;}
.ws7{word-spacing:-16.560000px;}
.wse{word-spacing:-16.059000px;}
.ws4{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.993280px;}
.wsd{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.220000px;}
.ws17{word-spacing:-13.860000px;}
.ws6{word-spacing:-10.440000px;}
.ws8{word-spacing:-10.314600px;}
.wsb{word-spacing:-10.003680px;}
.wsa{word-spacing:-9.902400px;}
.ws9{word-spacing:-9.897600px;}
.ws1{word-spacing:-9.720000px;}
.wsf{word-spacing:-0.066240px;}
.ws12{word-spacing:-0.063504px;}
.ws3{word-spacing:0.000000px;}
.ws13{word-spacing:116.742240px;}
.wsc{word-spacing:241.243680px;}
.ws11{word-spacing:246.383388px;}
.ws10{word-spacing:307.087680px;}
.ws15{word-spacing:349.747680px;}
._5{margin-left:-4.365840px;}
._4{margin-left:-3.167280px;}
._0{margin-left:-1.324800px;}
._1{width:1.960800px;}
._3{width:3.569760px;}
._2{width:5.145120px;}
._7{width:6.812640px;}
._11{width:8.081280px;}
._c{width:9.621360px;}
._12{width:11.310480px;}
._16{width:12.689280px;}
._b{width:13.864320px;}
._a{width:16.515600px;}
._9{width:17.796720px;}
._8{width:19.063440px;}
._17{width:22.366080px;}
._18{width:23.829600px;}
._6{width:27.728640px;}
._d{width:29.340000px;}
._e{width:30.410640px;}
._10{width:35.986800px;}
._f{width:37.110960px;}
._13{width:82.640160px;}
._15{width:110.591760px;}
._14{width:199.462080px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:18.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsa{font-size:43.920000px;}
.fs9{font-size:45.360000px;}
.fsd{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fsb{font-size:63.504000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsc{font-size:90.000000px;}
.fs1{font-size:95.760000px;}
.fs7{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.yf1{bottom:1.110000px;}
.y2e{bottom:3.240000px;}
.yb2{bottom:5.940000px;}
.y10d{bottom:6.660000px;}
.yae{bottom:6.840000px;}
.y9d{bottom:10.950000px;}
.yb0{bottom:11.160000px;}
.ye{bottom:14.400000px;}
.y10b{bottom:20.595000px;}
.y15{bottom:21.240000px;}
.y2d{bottom:29.340000px;}
.y98{bottom:32.400000px;}
.y14{bottom:38.520000px;}
.y104{bottom:42.045000px;}
.ye4{bottom:42.735000px;}
.y2c{bottom:46.665000px;}
.y90{bottom:53.895000px;}
.y13{bottom:55.620000px;}
.y2b{bottom:63.945000px;}
.ye5{bottom:66.570000px;}
.y12{bottom:72.900000px;}
.y105{bottom:77.475000px;}
.y2a{bottom:81.225000px;}
.y91{bottom:89.430000px;}
.y11{bottom:90.180000px;}
.ye6{bottom:90.435000px;}
.y16{bottom:95.400000px;}
.y29{bottom:98.505000px;}
.yef{bottom:101.235000px;}
.y10{bottom:105.120000px;}
.y10c{bottom:110.310000px;}
.y106{bottom:112.935000px;}
.ye7{bottom:114.270000px;}
.y28{bottom:115.785000px;}
.yf2{bottom:122.970000px;}
.y92{bottom:124.950000px;}
.y9b{bottom:128.160000px;}
.yee{bottom:130.350000px;}
.y27{bottom:132.885000px;}
.ye8{bottom:138.135000px;}
.y107{bottom:148.350000px;}
.y26{bottom:150.165000px;}
.y9a{bottom:157.110000px;}
.y36{bottom:159.345000px;}
.yed{bottom:159.480000px;}
.y93{bottom:160.485000px;}
.y71{bottom:160.590000px;}
.ye9{bottom:161.970000px;}
.y8e{bottom:162.930000px;}
.y25{bottom:167.445000px;}
.y142{bottom:167.610000px;}
.y41{bottom:173.370000px;}
.y35{bottom:176.625000px;}
.y70{bottom:181.470000px;}
.y8d{bottom:183.810000px;}
.y141{bottom:183.990000px;}
.y24{bottom:184.725000px;}
.yea{bottom:185.835000px;}
.y99{bottom:186.045000px;}
.y102{bottom:189.030000px;}
.y40{bottom:192.450000px;}
.yc8{bottom:192.630000px;}
.y34{bottom:193.725000px;}
.y94{bottom:196.020000px;}
.y23{bottom:202.005000px;}
.y6f{bottom:202.350000px;}
.y140{bottom:204.870000px;}
.yeb{bottom:209.670000px;}
.y33{bottom:211.005000px;}
.y3f{bottom:211.350000px;}
.y8c{bottom:213.510000px;}
.y108{bottom:219.270000px;}
.y22{bottom:219.285000px;}
.y13f{bottom:221.250000px;}
.y6e{bottom:223.050000px;}
.y101{bottom:225.930000px;}
.y8b{bottom:228.270000px;}
.y32{bottom:228.285000px;}
.y9c{bottom:228.420000px;}
.y8f{bottom:228.600000px;}
.y3e{bottom:230.250000px;}
.y95{bottom:231.555000px;}
.yec{bottom:233.535000px;}
.yc7{bottom:234.390000px;}
.y21{bottom:236.385000px;}
.y13e{bottom:237.630000px;}
.y31{bottom:245.565000px;}
.y6d{bottom:253.110000px;}
.y3d{bottom:253.650000px;}
.y20{bottom:253.665000px;}
.y100{bottom:254.010000px;}
.y109{bottom:254.700000px;}
.yc6{bottom:255.090000px;}
.y13d{bottom:258.510000px;}
.y30{bottom:262.845000px;}
.y96{bottom:267.090000px;}
.y37{bottom:267.885000px;}
.y1f{bottom:270.945000px;}
.y3c{bottom:272.730000px;}
.y13c{bottom:275.070000px;}
.yc5{bottom:275.970000px;}
.y2f{bottom:277.605000px;}
.yff{bottom:281.910000px;}
.y6c{bottom:283.710000px;}
.y1e{bottom:288.255000px;}
.y10a{bottom:290.160000px;}
.y3b{bottom:291.810000px;}
.y13b{bottom:295.950000px;}
.y97{bottom:302.610000px;}
.y6b{bottom:304.590000px;}
.y1d{bottom:305.535000px;}
.yc4{bottom:305.850000px;}
.yfe{bottom:309.990000px;}
.y3a{bottom:310.710000px;}
.y13a{bottom:312.330000px;}
.ye2{bottom:319.710000px;}
.y1c{bottom:322.815000px;}
.y6a{bottom:325.470000px;}
.yc3{bottom:326.730000px;}
.yfd{bottom:328.890000px;}
.y139{bottom:333.210000px;}
.y39{bottom:338.430000px;}
.y1b{bottom:339.915000px;}
.ye1{bottom:340.590000px;}
.yfc{bottom:346.890000px;}
.yc2{bottom:347.430000px;}
.y138{bottom:349.590000px;}
.y69{bottom:355.530000px;}
.y38{bottom:357.150000px;}
.y1a{bottom:357.195000px;}
.ye0{bottom:361.290000px;}
.yfb{bottom:365.070000px;}
.y137{bottom:365.970000px;}
.yc1{bottom:368.310000px;}
.y17{bottom:373.530000px;}
.y19{bottom:374.475000px;}
.yfa{bottom:383.070000px;}
.y68{bottom:384.870000px;}
.y136{bottom:386.850000px;}
.yc0{bottom:389.190000px;}
.y18{bottom:389.415000px;}
.ydf{bottom:391.170000px;}
.y67{bottom:392.790000px;}
.yf9{bottom:401.250000px;}
.y135{bottom:403.230000px;}
.ybf{bottom:409.935000px;}
.yde{bottom:412.095000px;}
.y66{bottom:418.215000px;}
.y134{bottom:419.655000px;}
.ybe{bottom:430.815000px;}
.yf8{bottom:431.355000px;}
.ydd{bottom:432.795000px;}
.y133{bottom:440.535000px;}
.y65{bottom:448.455000px;}
.ybd{bottom:451.695000px;}
.ydc{bottom:453.675000px;}
.y132{bottom:456.915000px;}
.yf7{bottom:468.255000px;}
.ybc{bottom:472.575000px;}
.ydb{bottom:474.555000px;}
.y131{bottom:477.795000px;}
.y64{bottom:479.235000px;}
.yf6{bottom:483.015000px;}
.ybb{bottom:493.275000px;}
.y130{bottom:494.175000px;}
.yda{bottom:495.255000px;}
.y63{bottom:509.835000px;}
.yba{bottom:514.155000px;}
.y12f{bottom:515.055000px;}
.yd9{bottom:516.135000px;}
.y62{bottom:530.535000px;}
.y12e{bottom:531.435000px;}
.yb9{bottom:535.035000px;}
.yd8{bottom:537.015000px;}
.y61{bottom:551.415000px;}
.y12d{bottom:552.315000px;}
.yd7{bottom:557.895000px;}
.y8a{bottom:567.435000px;}
.y12c{bottom:568.695000px;}
.y60{bottom:572.295000px;}
.yb8{bottom:573.735000px;}
.yd6{bottom:578.595000px;}
.y12b{bottom:585.075000px;}
.y89{bottom:588.315000px;}
.yb7{bottom:589.395000px;}
.y5f{bottom:592.995000px;}
.y12a{bottom:605.955000px;}
.yd5{bottom:608.835000px;}
.y88{bottom:609.195000px;}
.yb6{bottom:611.895000px;}
.y5e{bottom:613.875000px;}
.y129{bottom:622.335000px;}
.y87{bottom:629.895000px;}
.yb5{bottom:634.395000px;}
.y5d{bottom:634.755000px;}
.yd4{bottom:639.255000px;}
.y128{bottom:643.215000px;}
.y5c{bottom:655.845000px;}
.yb4{bottom:656.925000px;}
.yf{bottom:657.825000px;}
.y127{bottom:659.625000px;}
.y86{bottom:660.165000px;}
.yb3{bottom:679.425000px;}
.y126{bottom:680.505000px;}
.yd3{bottom:681.045000px;}
.y5b{bottom:683.745000px;}
.y85{bottom:690.945000px;}
.y125{bottom:696.885000px;}
.yd2{bottom:701.745000px;}
.yb1{bottom:701.925000px;}
.y124{bottom:717.765000px;}
.y5a{bottom:720.825000px;}
.y84{bottom:721.365000px;}
.yd1{bottom:722.625000px;}
.yaf{bottom:725.145000px;}
.y123{bottom:734.145000px;}
.y59{bottom:739.905000px;}
.y83{bottom:742.245000px;}
.yd0{bottom:743.505000px;}
.yad{bottom:748.365000px;}
.y122{bottom:755.025000px;}
.y58{bottom:758.985000px;}
.y82{bottom:760.065000px;}
.y81{bottom:767.985000px;}
.yd{bottom:769.425000px;}
.y121{bottom:771.405000px;}
.ycf{bottom:773.205000px;}
.yac{bottom:777.705000px;}
.y57{bottom:782.205000px;}
.y120{bottom:792.285000px;}
.y80{bottom:793.005000px;}
.yce{bottom:794.085000px;}
.yab{bottom:798.405000px;}
.y56{bottom:801.465000px;}
.yf5{bottom:802.545000px;}
.y11f{bottom:808.665000px;}
.yc{bottom:813.885000px;}
.ycd{bottom:814.965000px;}
.y55{bottom:820.365000px;}
.yf4{bottom:820.725000px;}
.y11e{bottom:825.225000px;}
.yaa{bottom:825.585000px;}
.yb{bottom:831.165000px;}
.y7f{bottom:834.765000px;}
.yf3{bottom:835.485000px;}
.y103{bottom:835.560000px;}
.ycc{bottom:835.845000px;}
.y54{bottom:839.265000px;}
.ya9{bottom:843.765000px;}
.y11d{bottom:846.105000px;}
.ya{bottom:848.265000px;}
.y7e{bottom:855.465000px;}
.ycb{bottom:856.545000px;}
.y53{bottom:858.345000px;}
.y11c{bottom:862.485000px;}
.y9{bottom:868.425000px;}
.ya8{bottom:873.825000px;}
.y7d{bottom:876.345000px;}
.y52{bottom:877.245000px;}
.y11b{bottom:883.365000px;}
.yca{bottom:883.725000px;}
.y8{bottom:886.605000px;}
.y14f{bottom:895.965000px;}
.y51{bottom:896.325000px;}
.y7c{bottom:897.225000px;}
.yc9{bottom:898.485000px;}
.y11a{bottom:899.745000px;}
.yf0{bottom:899.820000px;}
.ye3{bottom:900.000000px;}
.ya7{bottom:904.470000px;}
.y50{bottom:915.270000px;}
.y119{bottom:916.170000px;}
.y7b{bottom:918.150000px;}
.y14e{bottom:920.310000px;}
.ya6{bottom:925.170000px;}
.y7{bottom:926.430000px;}
.y4f{bottom:934.170000px;}
.y14d{bottom:936.690000px;}
.y118{bottom:937.050000px;}
.y7a{bottom:938.850000px;}
.ya5{bottom:946.050000px;}
.y117{bottom:953.430000px;}
.y4e{bottom:957.570000px;}
.y6{bottom:965.130000px;}
.ya4{bottom:966.930000px;}
.y79{bottom:968.910000px;}
.y14c{bottom:973.950000px;}
.y116{bottom:974.310000px;}
.y4d{bottom:976.650000px;}
.ya3{bottom:987.630000px;}
.y14b{bottom:990.330000px;}
.y115{bottom:990.690000px;}
.y4c{bottom:995.730000px;}
.y78{bottom:999.510000px;}
.y5{bottom:1003.830000px;}
.ya2{bottom:1008.510000px;}
.y14a{bottom:1011.210000px;}
.y114{bottom:1011.570000px;}
.y4b{bottom:1014.630000px;}
.y77{bottom:1020.390000px;}
.y149{bottom:1027.590000px;}
.y113{bottom:1027.950000px;}
.ya1{bottom:1029.390000px;}
.y4a{bottom:1033.530000px;}
.y4{bottom:1038.570000px;}
.y76{bottom:1041.270000px;}
.y112{bottom:1044.330000px;}
.y148{bottom:1048.470000px;}
.ya0{bottom:1050.270000px;}
.y49{bottom:1052.610000px;}
.y75{bottom:1061.970000px;}
.y147{bottom:1064.850000px;}
.y111{bottom:1065.210000px;}
.y9f{bottom:1070.970000px;}
.y48{bottom:1071.510000px;}
.y146{bottom:1081.230000px;}
.y110{bottom:1081.590000px;}
.y74{bottom:1091.850000px;}
.y47{bottom:1094.910000px;}
.y9e{bottom:1097.070000px;}
.y10f{bottom:1097.970000px;}
.y145{bottom:1102.110000px;}
.y73{bottom:1112.730000px;}
.y46{bottom:1113.990000px;}
.y144{bottom:1118.490000px;}
.y10e{bottom:1132.710000px;}
.y45{bottom:1132.890000px;}
.y72{bottom:1133.430000px;}
.y143{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y44{bottom:1169.460000px;}
.y43{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y42{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hb{height:17.657227px;}
.h18{height:22.500000px;}
.h19{height:22.536000px;}
.h21{height:27.900000px;}
.h16{height:32.220000px;}
.h8{height:40.500000px;}
.h23{height:40.743633px;}
.h17{height:41.304375px;}
.h1d{height:48.045938px;}
.h1c{height:48.155133px;}
.h1b{height:50.229844px;}
.h22{height:55.824609px;}
.hc{height:58.621992px;}
.h6{height:58.651172px;}
.h7{height:60.226875px;}
.h5{height:62.184375px;}
.h11{height:63.855000px;}
.h2{height:65.010937px;}
.h9{height:66.757500px;}
.h15{height:67.824844px;}
.hf{height:70.664062px;}
.h4{height:72.562500px;}
.h12{height:75.668203px;}
.h1f{height:92.153320px;}
.h13{height:93.864375px;}
.h3{height:96.508125px;}
.ha{height:109.440000px;}
.h10{height:153.341016px;}
.h1a{height:248.220000px;}
.h1e{height:248.400000px;}
.he{height:281.955000px;}
.h20{height:312.660000px;}
.h14{height:323.820000px;}
.hd{height:393.735000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.we{width:17.820000px;}
.w15{width:32.760000px;}
.wc{width:33.300000px;}
.wb{width:47.340000px;}
.w8{width:72.036000px;}
.w14{width:87.660000px;}
.w9{width:88.200000px;}
.w12{width:108.000000px;}
.w11{width:108.036000px;}
.w10{width:109.440000px;}
.w13{width:116.676000px;}
.wf{width:121.896000px;}
.wd{width:186.510000px;}
.w3{width:237.990000px;}
.wa{width:278.535000px;}
.w5{width:406.875000px;}
.w16{width:414.180000px;}
.w6{width:540.000000px;}
.w7{width:540.180000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x1d{left:12.456000px;}
.x24{left:16.560000px;}
.x3a{left:21.090000px;}
.x22{left:23.580000px;}
.x2c{left:25.380000px;}
.x2e{left:30.060000px;}
.x35{left:31.785000px;}
.x16{left:35.460000px;}
.x20{left:40.365000px;}
.x27{left:41.940000px;}
.x15{left:43.845000px;}
.x2d{left:47.160000px;}
.x39{left:50.475000px;}
.x17{left:54.975000px;}
.x32{left:77.685000px;}
.x1c{left:84.780000px;}
.x5{left:108.035987px;}
.x13{left:114.875987px;}
.x6{left:122.796000px;}
.x1a{left:129.995987px;}
.x2{left:131.255987px;}
.x1e{left:156.810000px;}
.x31{left:165.269987px;}
.xc{left:168.149987px;}
.x36{left:171.389987px;}
.x14{left:176.580000px;}
.x3c{left:177.585000px;}
.xa{left:185.250000px;}
.x19{left:189.750000px;}
.xe{left:196.949987px;}
.x38{left:209.189987px;}
.x10{left:217.289987px;}
.x3b{left:221.940000px;}
.x1f{left:245.010000px;}
.x11{left:255.089987px;}
.x28{left:278.715000px;}
.x34{left:282.240000px;}
.x2f{left:295.634987px;}
.x1b{left:308.774987px;}
.x3{left:314.354987px;}
.xf{left:342.434987px;}
.x8{left:360.795000px;}
.xd{left:375.374987px;}
.x9{left:378.435000px;}
.x29{left:388.155000px;}
.x33{left:395.250000px;}
.x30{left:446.654987px;}
.x18{left:491.115000px;}
.x2a{left:496.185000px;}
.x21{left:523.545000px;}
.x23{left:570.885000px;}
.x25{left:604.185000px;}
.x12{left:716.729987px;}
.x2b{left:720.870000px;}
.x37{left:735.809987px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x4{left:781.349987px;}
.x26{left:790.710000px;}
@media print{
.v7{vertical-align:-23.680000pt;}
.v6{vertical-align:-18.560000pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.v4{vertical-align:28.160000pt;}
.v3{vertical-align:33.280000pt;}
.ls13{letter-spacing:-0.688000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.412267pt;}
.ls4{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.258667pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls3{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.072533pt;}
.ls9{letter-spacing:-0.068267pt;}
.ls12{letter-spacing:-0.046080pt;}
.ls19{letter-spacing:-0.024320pt;}
.ls15{letter-spacing:-0.006773pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.021760pt;}
.ls0{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.184320pt;}
.ls11{letter-spacing:0.194667pt;}
.ls10{letter-spacing:0.212267pt;}
.ls16{letter-spacing:0.252800pt;}
.ls14{letter-spacing:0.297067pt;}
.ls7{letter-spacing:0.298133pt;}
.ls1{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.480000pt;}
.lsc{letter-spacing:12.916480pt;}
.ws14{word-spacing:-18.080000pt;}
.ws7{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.274667pt;}
.ws4{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.327360pt;}
.wsd{word-spacing:-13.306880pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.640000pt;}
.ws17{word-spacing:-12.320000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws8{word-spacing:-9.168533pt;}
.wsb{word-spacing:-8.892160pt;}
.wsa{word-spacing:-8.802133pt;}
.ws9{word-spacing:-8.797867pt;}
.ws1{word-spacing:-8.640000pt;}
.wsf{word-spacing:-0.058880pt;}
.ws12{word-spacing:-0.056448pt;}
.ws3{word-spacing:0.000000pt;}
.ws13{word-spacing:103.770880pt;}
.wsc{word-spacing:214.438827pt;}
.ws11{word-spacing:219.007456pt;}
.ws10{word-spacing:272.966827pt;}
.ws15{word-spacing:310.886827pt;}
._5{margin-left:-3.880747pt;}
._4{margin-left:-2.815360pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.742933pt;}
._3{width:3.173120pt;}
._2{width:4.573440pt;}
._7{width:6.055680pt;}
._11{width:7.183360pt;}
._c{width:8.552320pt;}
._12{width:10.053760pt;}
._16{width:11.279360pt;}
._b{width:12.323840pt;}
._a{width:14.680533pt;}
._9{width:15.819307pt;}
._8{width:16.945280pt;}
._17{width:19.880960pt;}
._18{width:21.181867pt;}
._6{width:24.647680pt;}
._d{width:26.080000pt;}
._e{width:27.031680pt;}
._10{width:31.988267pt;}
._f{width:32.987520pt;}
._13{width:73.457920pt;}
._15{width:98.303787pt;}
._14{width:177.299627pt;}
.fs5{font-size:16.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsa{font-size:39.040000pt;}
.fs9{font-size:40.320000pt;}
.fsd{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fsb{font-size:56.448000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsc{font-size:80.000000pt;}
.fs1{font-size:85.120000pt;}
.fs7{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.yf1{bottom:0.986667pt;}
.y2e{bottom:2.880000pt;}
.yb2{bottom:5.280000pt;}
.y10d{bottom:5.920000pt;}
.yae{bottom:6.080000pt;}
.y9d{bottom:9.733333pt;}
.yb0{bottom:9.920000pt;}
.ye{bottom:12.800000pt;}
.y10b{bottom:18.306667pt;}
.y15{bottom:18.880000pt;}
.y2d{bottom:26.080000pt;}
.y98{bottom:28.800000pt;}
.y14{bottom:34.240000pt;}
.y104{bottom:37.373333pt;}
.ye4{bottom:37.986667pt;}
.y2c{bottom:41.480000pt;}
.y90{bottom:47.906667pt;}
.y13{bottom:49.440000pt;}
.y2b{bottom:56.840000pt;}
.ye5{bottom:59.173333pt;}
.y12{bottom:64.800000pt;}
.y105{bottom:68.866667pt;}
.y2a{bottom:72.200000pt;}
.y91{bottom:79.493333pt;}
.y11{bottom:80.160000pt;}
.ye6{bottom:80.386667pt;}
.y16{bottom:84.800000pt;}
.y29{bottom:87.560000pt;}
.yef{bottom:89.986667pt;}
.y10{bottom:93.440000pt;}
.y10c{bottom:98.053333pt;}
.y106{bottom:100.386667pt;}
.ye7{bottom:101.573333pt;}
.y28{bottom:102.920000pt;}
.yf2{bottom:109.306667pt;}
.y92{bottom:111.066667pt;}
.y9b{bottom:113.920000pt;}
.yee{bottom:115.866667pt;}
.y27{bottom:118.120000pt;}
.ye8{bottom:122.786667pt;}
.y107{bottom:131.866667pt;}
.y26{bottom:133.480000pt;}
.y9a{bottom:139.653333pt;}
.y36{bottom:141.640000pt;}
.yed{bottom:141.760000pt;}
.y93{bottom:142.653333pt;}
.y71{bottom:142.746667pt;}
.ye9{bottom:143.973333pt;}
.y8e{bottom:144.826667pt;}
.y25{bottom:148.840000pt;}
.y142{bottom:148.986667pt;}
.y41{bottom:154.106667pt;}
.y35{bottom:157.000000pt;}
.y70{bottom:161.306667pt;}
.y8d{bottom:163.386667pt;}
.y141{bottom:163.546667pt;}
.y24{bottom:164.200000pt;}
.yea{bottom:165.186667pt;}
.y99{bottom:165.373333pt;}
.y102{bottom:168.026667pt;}
.y40{bottom:171.066667pt;}
.yc8{bottom:171.226667pt;}
.y34{bottom:172.200000pt;}
.y94{bottom:174.240000pt;}
.y23{bottom:179.560000pt;}
.y6f{bottom:179.866667pt;}
.y140{bottom:182.106667pt;}
.yeb{bottom:186.373333pt;}
.y33{bottom:187.560000pt;}
.y3f{bottom:187.866667pt;}
.y8c{bottom:189.786667pt;}
.y108{bottom:194.906667pt;}
.y22{bottom:194.920000pt;}
.y13f{bottom:196.666667pt;}
.y6e{bottom:198.266667pt;}
.y101{bottom:200.826667pt;}
.y8b{bottom:202.906667pt;}
.y32{bottom:202.920000pt;}
.y9c{bottom:203.040000pt;}
.y8f{bottom:203.200000pt;}
.y3e{bottom:204.666667pt;}
.y95{bottom:205.826667pt;}
.yec{bottom:207.586667pt;}
.yc7{bottom:208.346667pt;}
.y21{bottom:210.120000pt;}
.y13e{bottom:211.226667pt;}
.y31{bottom:218.280000pt;}
.y6d{bottom:224.986667pt;}
.y3d{bottom:225.466667pt;}
.y20{bottom:225.480000pt;}
.y100{bottom:225.786667pt;}
.y109{bottom:226.400000pt;}
.yc6{bottom:226.746667pt;}
.y13d{bottom:229.786667pt;}
.y30{bottom:233.640000pt;}
.y96{bottom:237.413333pt;}
.y37{bottom:238.120000pt;}
.y1f{bottom:240.840000pt;}
.y3c{bottom:242.426667pt;}
.y13c{bottom:244.506667pt;}
.yc5{bottom:245.306667pt;}
.y2f{bottom:246.760000pt;}
.yff{bottom:250.586667pt;}
.y6c{bottom:252.186667pt;}
.y1e{bottom:256.226667pt;}
.y10a{bottom:257.920000pt;}
.y3b{bottom:259.386667pt;}
.y13b{bottom:263.066667pt;}
.y97{bottom:268.986667pt;}
.y6b{bottom:270.746667pt;}
.y1d{bottom:271.586667pt;}
.yc4{bottom:271.866667pt;}
.yfe{bottom:275.546667pt;}
.y3a{bottom:276.186667pt;}
.y13a{bottom:277.626667pt;}
.ye2{bottom:284.186667pt;}
.y1c{bottom:286.946667pt;}
.y6a{bottom:289.306667pt;}
.yc3{bottom:290.426667pt;}
.yfd{bottom:292.346667pt;}
.y139{bottom:296.186667pt;}
.y39{bottom:300.826667pt;}
.y1b{bottom:302.146667pt;}
.ye1{bottom:302.746667pt;}
.yfc{bottom:308.346667pt;}
.yc2{bottom:308.826667pt;}
.y138{bottom:310.746667pt;}
.y69{bottom:316.026667pt;}
.y38{bottom:317.466667pt;}
.y1a{bottom:317.506667pt;}
.ye0{bottom:321.146667pt;}
.yfb{bottom:324.506667pt;}
.y137{bottom:325.306667pt;}
.yc1{bottom:327.386667pt;}
.y17{bottom:332.026667pt;}
.y19{bottom:332.866667pt;}
.yfa{bottom:340.506667pt;}
.y68{bottom:342.106667pt;}
.y136{bottom:343.866667pt;}
.yc0{bottom:345.946667pt;}
.y18{bottom:346.146667pt;}
.ydf{bottom:347.706667pt;}
.y67{bottom:349.146667pt;}
.yf9{bottom:356.666667pt;}
.y135{bottom:358.426667pt;}
.ybf{bottom:364.386667pt;}
.yde{bottom:366.306667pt;}
.y66{bottom:371.746667pt;}
.y134{bottom:373.026667pt;}
.ybe{bottom:382.946667pt;}
.yf8{bottom:383.426667pt;}
.ydd{bottom:384.706667pt;}
.y133{bottom:391.586667pt;}
.y65{bottom:398.626667pt;}
.ybd{bottom:401.506667pt;}
.ydc{bottom:403.266667pt;}
.y132{bottom:406.146667pt;}
.yf7{bottom:416.226667pt;}
.ybc{bottom:420.066667pt;}
.ydb{bottom:421.826667pt;}
.y131{bottom:424.706667pt;}
.y64{bottom:425.986667pt;}
.yf6{bottom:429.346667pt;}
.ybb{bottom:438.466667pt;}
.y130{bottom:439.266667pt;}
.yda{bottom:440.226667pt;}
.y63{bottom:453.186667pt;}
.yba{bottom:457.026667pt;}
.y12f{bottom:457.826667pt;}
.yd9{bottom:458.786667pt;}
.y62{bottom:471.586667pt;}
.y12e{bottom:472.386667pt;}
.yb9{bottom:475.586667pt;}
.yd8{bottom:477.346667pt;}
.y61{bottom:490.146667pt;}
.y12d{bottom:490.946667pt;}
.yd7{bottom:495.906667pt;}
.y8a{bottom:504.386667pt;}
.y12c{bottom:505.506667pt;}
.y60{bottom:508.706667pt;}
.yb8{bottom:509.986667pt;}
.yd6{bottom:514.306667pt;}
.y12b{bottom:520.066667pt;}
.y89{bottom:522.946667pt;}
.yb7{bottom:523.906667pt;}
.y5f{bottom:527.106667pt;}
.y12a{bottom:538.626667pt;}
.yd5{bottom:541.186667pt;}
.y88{bottom:541.506667pt;}
.yb6{bottom:543.906667pt;}
.y5e{bottom:545.666667pt;}
.y129{bottom:553.186667pt;}
.y87{bottom:559.906667pt;}
.yb5{bottom:563.906667pt;}
.y5d{bottom:564.226667pt;}
.yd4{bottom:568.226667pt;}
.y128{bottom:571.746667pt;}
.y5c{bottom:582.973333pt;}
.yb4{bottom:583.933333pt;}
.yf{bottom:584.733333pt;}
.y127{bottom:586.333333pt;}
.y86{bottom:586.813333pt;}
.yb3{bottom:603.933333pt;}
.y126{bottom:604.893333pt;}
.yd3{bottom:605.373333pt;}
.y5b{bottom:607.773333pt;}
.y85{bottom:614.173333pt;}
.y125{bottom:619.453333pt;}
.yd2{bottom:623.773333pt;}
.yb1{bottom:623.933333pt;}
.y124{bottom:638.013333pt;}
.y5a{bottom:640.733333pt;}
.y84{bottom:641.213333pt;}
.yd1{bottom:642.333333pt;}
.yaf{bottom:644.573333pt;}
.y123{bottom:652.573333pt;}
.y59{bottom:657.693333pt;}
.y83{bottom:659.773333pt;}
.yd0{bottom:660.893333pt;}
.yad{bottom:665.213333pt;}
.y122{bottom:671.133333pt;}
.y58{bottom:674.653333pt;}
.y82{bottom:675.613333pt;}
.y81{bottom:682.653333pt;}
.yd{bottom:683.933333pt;}
.y121{bottom:685.693333pt;}
.ycf{bottom:687.293333pt;}
.yac{bottom:691.293333pt;}
.y57{bottom:695.293333pt;}
.y120{bottom:704.253333pt;}
.y80{bottom:704.893333pt;}
.yce{bottom:705.853333pt;}
.yab{bottom:709.693333pt;}
.y56{bottom:712.413333pt;}
.yf5{bottom:713.373333pt;}
.y11f{bottom:718.813333pt;}
.yc{bottom:723.453333pt;}
.ycd{bottom:724.413333pt;}
.y55{bottom:729.213333pt;}
.yf4{bottom:729.533333pt;}
.y11e{bottom:733.533333pt;}
.yaa{bottom:733.853333pt;}
.yb{bottom:738.813333pt;}
.y7f{bottom:742.013333pt;}
.yf3{bottom:742.653333pt;}
.y103{bottom:742.720000pt;}
.ycc{bottom:742.973333pt;}
.y54{bottom:746.013333pt;}
.ya9{bottom:750.013333pt;}
.y11d{bottom:752.093333pt;}
.ya{bottom:754.013333pt;}
.y7e{bottom:760.413333pt;}
.ycb{bottom:761.373333pt;}
.y53{bottom:762.973333pt;}
.y11c{bottom:766.653333pt;}
.y9{bottom:771.933333pt;}
.ya8{bottom:776.733333pt;}
.y7d{bottom:778.973333pt;}
.y52{bottom:779.773333pt;}
.y11b{bottom:785.213333pt;}
.yca{bottom:785.533333pt;}
.y8{bottom:788.093333pt;}
.y14f{bottom:796.413333pt;}
.y51{bottom:796.733333pt;}
.y7c{bottom:797.533333pt;}
.yc9{bottom:798.653333pt;}
.y11a{bottom:799.773333pt;}
.yf0{bottom:799.840000pt;}
.ye3{bottom:800.000000pt;}
.ya7{bottom:803.973333pt;}
.y50{bottom:813.573333pt;}
.y119{bottom:814.373333pt;}
.y7b{bottom:816.133333pt;}
.y14e{bottom:818.053333pt;}
.ya6{bottom:822.373333pt;}
.y7{bottom:823.493333pt;}
.y4f{bottom:830.373333pt;}
.y14d{bottom:832.613333pt;}
.y118{bottom:832.933333pt;}
.y7a{bottom:834.533333pt;}
.ya5{bottom:840.933333pt;}
.y117{bottom:847.493333pt;}
.y4e{bottom:851.173333pt;}
.y6{bottom:857.893333pt;}
.ya4{bottom:859.493333pt;}
.y79{bottom:861.253333pt;}
.y14c{bottom:865.733333pt;}
.y116{bottom:866.053333pt;}
.y4d{bottom:868.133333pt;}
.ya3{bottom:877.893333pt;}
.y14b{bottom:880.293333pt;}
.y115{bottom:880.613333pt;}
.y4c{bottom:885.093333pt;}
.y78{bottom:888.453333pt;}
.y5{bottom:892.293333pt;}
.ya2{bottom:896.453333pt;}
.y14a{bottom:898.853333pt;}
.y114{bottom:899.173333pt;}
.y4b{bottom:901.893333pt;}
.y77{bottom:907.013333pt;}
.y149{bottom:913.413333pt;}
.y113{bottom:913.733333pt;}
.ya1{bottom:915.013333pt;}
.y4a{bottom:918.693333pt;}
.y4{bottom:923.173333pt;}
.y76{bottom:925.573333pt;}
.y112{bottom:928.293333pt;}
.y148{bottom:931.973333pt;}
.ya0{bottom:933.573333pt;}
.y49{bottom:935.653333pt;}
.y75{bottom:943.973333pt;}
.y147{bottom:946.533333pt;}
.y111{bottom:946.853333pt;}
.y9f{bottom:951.973333pt;}
.y48{bottom:952.453333pt;}
.y146{bottom:961.093333pt;}
.y110{bottom:961.413333pt;}
.y74{bottom:970.533333pt;}
.y47{bottom:973.253333pt;}
.y9e{bottom:975.173333pt;}
.y10f{bottom:975.973333pt;}
.y145{bottom:979.653333pt;}
.y73{bottom:989.093333pt;}
.y46{bottom:990.213333pt;}
.y144{bottom:994.213333pt;}
.y10e{bottom:1006.853333pt;}
.y45{bottom:1007.013333pt;}
.y72{bottom:1007.493333pt;}
.y143{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y44{bottom:1039.520000pt;}
.y43{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y42{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hb{height:15.695312pt;}
.h18{height:20.000000pt;}
.h19{height:20.032000pt;}
.h21{height:24.800000pt;}
.h16{height:28.640000pt;}
.h8{height:36.000000pt;}
.h23{height:36.216563pt;}
.h17{height:36.715000pt;}
.h1d{height:42.707500pt;}
.h1c{height:42.804562pt;}
.h1b{height:44.648750pt;}
.h22{height:49.621875pt;}
.hc{height:52.108438pt;}
.h6{height:52.134375pt;}
.h7{height:53.535000pt;}
.h5{height:55.275000pt;}
.h11{height:56.760000pt;}
.h2{height:57.787500pt;}
.h9{height:59.340000pt;}
.h15{height:60.288750pt;}
.hf{height:62.812500pt;}
.h4{height:64.500000pt;}
.h12{height:67.260625pt;}
.h1f{height:81.914062pt;}
.h13{height:83.435000pt;}
.h3{height:85.785000pt;}
.ha{height:97.280000pt;}
.h10{height:136.303125pt;}
.h1a{height:220.640000pt;}
.h1e{height:220.800000pt;}
.he{height:250.626667pt;}
.h20{height:277.920000pt;}
.h14{height:287.840000pt;}
.hd{height:349.986667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.we{width:15.840000pt;}
.w15{width:29.120000pt;}
.wc{width:29.600000pt;}
.wb{width:42.080000pt;}
.w8{width:64.032000pt;}
.w14{width:77.920000pt;}
.w9{width:78.400000pt;}
.w12{width:96.000000pt;}
.w11{width:96.032000pt;}
.w10{width:97.280000pt;}
.w13{width:103.712000pt;}
.wf{width:108.352000pt;}
.wd{width:165.786667pt;}
.w3{width:211.546667pt;}
.wa{width:247.586667pt;}
.w5{width:361.666667pt;}
.w16{width:368.160000pt;}
.w6{width:480.000000pt;}
.w7{width:480.160000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x1d{left:11.072000pt;}
.x24{left:14.720000pt;}
.x3a{left:18.746667pt;}
.x22{left:20.960000pt;}
.x2c{left:22.560000pt;}
.x2e{left:26.720000pt;}
.x35{left:28.253333pt;}
.x16{left:31.520000pt;}
.x20{left:35.880000pt;}
.x27{left:37.280000pt;}
.x15{left:38.973333pt;}
.x2d{left:41.920000pt;}
.x39{left:44.866667pt;}
.x17{left:48.866667pt;}
.x32{left:69.053333pt;}
.x1c{left:75.360000pt;}
.x5{left:96.031988pt;}
.x13{left:102.111988pt;}
.x6{left:109.152000pt;}
.x1a{left:115.551988pt;}
.x2{left:116.671988pt;}
.x1e{left:139.386667pt;}
.x31{left:146.906655pt;}
.xc{left:149.466655pt;}
.x36{left:152.346655pt;}
.x14{left:156.960000pt;}
.x3c{left:157.853333pt;}
.xa{left:164.666667pt;}
.x19{left:168.666667pt;}
.xe{left:175.066655pt;}
.x38{left:185.946655pt;}
.x10{left:193.146655pt;}
.x3b{left:197.280000pt;}
.x1f{left:217.786667pt;}
.x11{left:226.746655pt;}
.x28{left:247.746667pt;}
.x34{left:250.880000pt;}
.x2f{left:262.786655pt;}
.x1b{left:274.466655pt;}
.x3{left:279.426655pt;}
.xf{left:304.386655pt;}
.x8{left:320.706667pt;}
.xd{left:333.666655pt;}
.x9{left:336.386667pt;}
.x29{left:345.026667pt;}
.x33{left:351.333333pt;}
.x30{left:397.026655pt;}
.x18{left:436.546667pt;}
.x2a{left:441.053333pt;}
.x21{left:465.373333pt;}
.x23{left:507.453333pt;}
.x25{left:537.053333pt;}
.x12{left:637.093322pt;}
.x2b{left:640.773333pt;}
.x37{left:654.053322pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x4{left:694.533322pt;}
.x26{left:702.853333pt;}
}




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