
    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_83757d6178bdd424f58709ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.950684;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_9e74c9ab5c37d21ca5e01220.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_7d0ac9a3f2df32fbaad72e58.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6dba8439b9b2702600a25ca4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761230;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_fe6b4caafd9345617502761b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_18f63b177aeea34ab62fffe9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_45f67530f897fec9e3c71a7a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.752441;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_cbc9b1b0b99d67f55c6132c7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.074707;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;}
.ls5{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.720000px;}
.ls1{letter-spacing:17.280000px;}
.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;}
}
.ws2{word-spacing:-23.940000px;}
.ws3{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.576000px;}
.ws5{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws1{word-spacing:-15.840000px;}
.ws0{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._20{margin-left:-8.329680px;}
._5{margin-left:-6.912000px;}
._6{margin-left:-5.890560px;}
._3{margin-left:-4.633200px;}
._4{margin-left:-3.610800px;}
._2{margin-left:-1.890000px;}
._0{width:1.435680px;}
._1{width:2.484480px;}
._11{width:3.648000px;}
._e{width:4.680000px;}
._8{width:6.480000px;}
._9{width:7.866000px;}
._15{width:9.432000px;}
._18{width:10.560000px;}
._19{width:11.562960px;}
._f{width:12.600000px;}
._10{width:13.638960px;}
._a{width:14.760000px;}
._b{width:15.812640px;}
._7{width:16.848000px;}
._1b{width:19.152000px;}
._1a{width:21.083760px;}
._14{width:22.400640px;}
._12{width:23.472000px;}
._13{width:25.218000px;}
._d{width:26.400960px;}
._c{width:27.450000px;}
._21{width:28.852320px;}
._38{width:31.032000px;}
._4a{width:32.040000px;}
._1d{width:33.552000px;}
._1e{width:34.654320px;}
._1f{width:35.912640px;}
._16{width:41.256000px;}
._17{width:42.408000px;}
._1c{width:43.510320px;}
._22{width:48.024000px;}
._30{width:49.612320px;}
._29{width:52.344000px;}
._3f{width:54.792000px;}
._40{width:55.872000px;}
._46{width:67.464000px;}
._33{width:71.424000px;}
._23{width:73.224000px;}
._25{width:75.816000px;}
._2c{width:80.136000px;}
._2a{width:81.864000px;}
._42{width:84.816000px;}
._43{width:85.896000px;}
._44{width:86.904000px;}
._3d{width:89.784000px;}
._49{width:95.976000px;}
._31{width:100.584000px;}
._26{width:104.184000px;}
._2d{width:105.624000px;}
._4b{width:108.936000px;}
._4c{width:110.088000px;}
._47{width:112.824000px;}
._36{width:115.704000px;}
._41{width:118.296000px;}
._4d{width:119.600640px;}
._35{width:127.872000px;}
._34{width:129.096000px;}
._28{width:131.976000px;}
._2f{width:133.416000px;}
._39{width:142.254000px;}
._24{width:144.162000px;}
._2b{width:148.482000px;}
._45{width:151.704000px;}
._3c{width:153.144000px;}
._3b{width:154.296000px;}
._3e{width:157.464000px;}
._48{width:164.250000px;}
._4e{width:171.216000px;}
._32{width:179.364000px;}
._27{width:185.544000px;}
._2e{width:188.424000px;}
._37{width:208.584000px;}
._3a{width:229.464000px;}
.fc6{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc8{color:transparent;}
.fc2{color:rgb(196,89,17);}
.fc7{color:rgb(50,50,50);}
.fc5{color:rgb(12,12,12);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(13,13,13);}
.fs1{font-size:54.000000px;}
.fs2{font-size:63.360000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs6{font-size:120.240000px;}
.y1f{bottom:-10.335000px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.060000px;}
.ybf{bottom:3.960000px;}
.yc6{bottom:4.125000px;}
.ya8{bottom:4.140000px;}
.yae{bottom:4.185000px;}
.y2f{bottom:4.320000px;}
.yd0{bottom:4.485000px;}
.yb5{bottom:4.500000px;}
.yb2{bottom:14.400000px;}
.ycd{bottom:14.565000px;}
.ye1{bottom:14.580000px;}
.yab{bottom:14.760000px;}
.yaf{bottom:14.805000px;}
.yc9{bottom:14.925000px;}
.ybd{bottom:14.940000px;}
.ye9{bottom:14.970000px;}
.y2c{bottom:17.100000px;}
.yaa{bottom:24.660000px;}
.yc8{bottom:24.825000px;}
.yb7{bottom:24.840000px;}
.ye8{bottom:24.870000px;}
.yad{bottom:24.885000px;}
.yd2{bottom:25.020000px;}
.ycf{bottom:25.185000px;}
.yb4{bottom:25.200000px;}
.yfd{bottom:25.230000px;}
.yda{bottom:25.245000px;}
.yb1{bottom:35.100000px;}
.ycc{bottom:35.265000px;}
.yce{bottom:45.885000px;}
.yb3{bottom:45.900000px;}
.y6{bottom:53.640000px;}
.y5{bottom:57.060000px;}
.y2e{bottom:58.320000px;}
.y1c{bottom:65.265000px;}
.y5f{bottom:113.760000px;}
.y90{bottom:119.880000px;}
.y133{bottom:121.860000px;}
.yd4{bottom:126.180000px;}
.yf2{bottom:128.880000px;}
.y5e{bottom:134.460000px;}
.y8f{bottom:140.580000px;}
.y132{bottom:142.560000px;}
.yd3{bottom:147.780000px;}
.yf1{bottom:154.080000px;}
.y5d{bottom:155.160000px;}
.y8e{bottom:161.280000px;}
.y131{bottom:163.260000px;}
.yd1{bottom:172.980000px;}
.y10a{bottom:174.780000px;}
.y5c{bottom:175.860000px;}
.yf0{bottom:179.280000px;}
.y8d{bottom:181.620000px;}
.y98{bottom:181.980000px;}
.y130{bottom:183.960000px;}
.y5b{bottom:196.560000px;}
.y8c{bottom:202.320000px;}
.y97{bottom:202.680000px;}
.y12f{bottom:204.660000px;}
.yef{bottom:209.010000px;}
.y5a{bottom:217.290000px;}
.ycb{bottom:218.745000px;}
.y109{bottom:220.725000px;}
.y8b{bottom:223.410000px;}
.y12e{bottom:225.390000px;}
.yee{bottom:230.070000px;}
.y59{bottom:237.990000px;}
.y8a{bottom:244.110000px;}
.y12d{bottom:246.090000px;}
.yed{bottom:251.145000px;}
.y58{bottom:258.690000px;}
.y89{bottom:264.810000px;}
.y108{bottom:266.625000px;}
.y12c{bottom:266.790000px;}
.y57{bottom:279.390000px;}
.yca{bottom:285.345000px;}
.y88{bottom:285.510000px;}
.y12b{bottom:287.490000px;}
.y107{bottom:296.670000px;}
.yec{bottom:297.045000px;}
.y56{bottom:300.090000px;}
.ya3{bottom:305.850000px;}
.y87{bottom:306.210000px;}
.y12a{bottom:308.190000px;}
.y106{bottom:317.745000px;}
.y55{bottom:320.790000px;}
.ya2{bottom:326.550000px;}
.y86{bottom:326.910000px;}
.y129{bottom:328.890000px;}
.yc7{bottom:331.245000px;}
.y54{bottom:341.490000px;}
.yeb{bottom:342.945000px;}
.y85{bottom:347.610000px;}
.y128{bottom:349.590000px;}
.y53{bottom:362.190000px;}
.y105{bottom:363.645000px;}
.y84{bottom:368.310000px;}
.y127{bottom:370.290000px;}
.yc5{bottom:377.145000px;}
.y52{bottom:382.890000px;}
.yea{bottom:388.845000px;}
.y83{bottom:389.010000px;}
.y126{bottom:390.990000px;}
.y51{bottom:403.590000px;}
.yc4{bottom:406.830000px;}
.y96{bottom:409.350000px;}
.y104{bottom:409.545000px;}
.y82{bottom:409.710000px;}
.y125{bottom:411.690000px;}
.y2a{bottom:420.870000px;}
.y50{bottom:424.290000px;}
.yc3{bottom:427.890000px;}
.y95{bottom:430.050000px;}
.y81{bottom:430.410000px;}
.y124{bottom:432.390000px;}
.ye7{bottom:434.745000px;}
.y29{bottom:442.290000px;}
.y4f{bottom:445.035000px;}
.yc2{bottom:449.175000px;}
.y80{bottom:451.155000px;}
.y123{bottom:453.135000px;}
.y103{bottom:455.475000px;}
.y28{bottom:462.675000px;}
.y4e{bottom:465.735000px;}
.y7f{bottom:471.855000px;}
.y122{bottom:473.835000px;}
.ye6{bottom:480.675000px;}
.y27{bottom:483.375000px;}
.y4d{bottom:486.435000px;}
.y7e{bottom:492.555000px;}
.y121{bottom:494.535000px;}
.yc1{bottom:495.075000px;}
.y102{bottom:501.375000px;}
.y26{bottom:504.435000px;}
.y4c{bottom:507.135000px;}
.ye5{bottom:510.375000px;}
.ya1{bottom:512.895000px;}
.y7d{bottom:513.255000px;}
.y120{bottom:515.235000px;}
.y25{bottom:525.135000px;}
.y4b{bottom:527.835000px;}
.ye4{bottom:531.435000px;}
.ya0{bottom:533.595000px;}
.y7c{bottom:533.955000px;}
.y11f{bottom:535.935000px;}
.yc0{bottom:540.975000px;}
.y24{bottom:545.475000px;}
.y101{bottom:547.275000px;}
.y4a{bottom:548.535000px;}
.ye3{bottom:552.675000px;}
.y94{bottom:554.295000px;}
.y7b{bottom:554.655000px;}
.y11e{bottom:556.635000px;}
.y23{bottom:566.175000px;}
.y49{bottom:569.235000px;}
.y93{bottom:574.995000px;}
.y7a{bottom:575.355000px;}
.y100{bottom:576.975000px;}
.y11d{bottom:577.335000px;}
.ybe{bottom:586.875000px;}
.y22{bottom:587.235000px;}
.y48{bottom:589.935000px;}
.y9f{bottom:595.695000px;}
.y79{bottom:596.055000px;}
.yff{bottom:598.035000px;}
.ye2{bottom:598.395000px;}
.y21{bottom:607.935000px;}
.y47{bottom:610.635000px;}
.y9e{bottom:616.395000px;}
.y78{bottom:616.755000px;}
.y11c{bottom:618.735000px;}
.yfe{bottom:619.095000px;}
.y20{bottom:628.275000px;}
.y46{bottom:630.975000px;}
.ybc{bottom:632.595000px;}
.y9d{bottom:637.095000px;}
.y77{bottom:637.455000px;}
.y11b{bottom:639.435000px;}
.ye0{bottom:644.295000px;}
.y45{bottom:651.675000px;}
.y76{bottom:658.155000px;}
.y11a{bottom:660.135000px;}
.yfc{bottom:664.995000px;}
.y44{bottom:672.735000px;}
.ybb{bottom:678.525000px;}
.y75{bottom:678.885000px;}
.y119{bottom:680.865000px;}
.ydf{bottom:690.225000px;}
.y43{bottom:693.465000px;}
.y74{bottom:699.585000px;}
.y118{bottom:701.565000px;}
.yba{bottom:708.405000px;}
.yfb{bottom:710.925000px;}
.y42{bottom:713.805000px;}
.y73{bottom:720.285000px;}
.y117{bottom:722.265000px;}
.yb9{bottom:729.465000px;}
.y41{bottom:734.865000px;}
.yde{bottom:736.125000px;}
.y72{bottom:740.625000px;}
.y92{bottom:740.985000px;}
.y116{bottom:742.965000px;}
.yb8{bottom:750.525000px;}
.y40{bottom:755.565000px;}
.yfa{bottom:756.825000px;}
.y71{bottom:761.325000px;}
.y99{bottom:761.685000px;}
.y115{bottom:763.665000px;}
.y3f{bottom:776.265000px;}
.y91{bottom:782.025000px;}
.y70{bottom:782.385000px;}
.y114{bottom:784.185000px;}
.yb6{bottom:796.425000px;}
.y3e{bottom:796.965000px;}
.y9c{bottom:802.725000px;}
.y6f{bottom:803.085000px;}
.y113{bottom:804.885000px;}
.ydd{bottom:811.725000px;}
.y1b{bottom:815.040000px;}
.y3d{bottom:817.665000px;}
.y6e{bottom:823.785000px;}
.y112{bottom:825.585000px;}
.y1e{bottom:832.065000px;}
.ydc{bottom:832.785000px;}
.y3c{bottom:838.365000px;}
.yb0{bottom:842.325000px;}
.y6d{bottom:844.485000px;}
.y111{bottom:846.285000px;}
.yf9{bottom:848.625000px;}
.ydb{bottom:854.025000px;}
.y1d{bottom:856.185000px;}
.y3b{bottom:859.065000px;}
.y6c{bottom:865.185000px;}
.y110{bottom:866.985000px;}
.y14{bottom:868.425000px;}
.yf8{bottom:878.325000px;}
.y3a{bottom:879.765000px;}
.y9b{bottom:885.525000px;}
.y6b{bottom:885.885000px;}
.y13{bottom:886.605000px;}
.y10f{bottom:887.685000px;}
.yf7{bottom:899.385000px;}
.yd9{bottom:899.925000px;}
.y39{bottom:900.465000px;}
.y12{bottom:904.605000px;}
.y9a{bottom:906.225000px;}
.y6a{bottom:906.585000px;}
.y10e{bottom:908.385000px;}
.yac{bottom:908.925000px;}
.yf6{bottom:920.670000px;}
.y38{bottom:921.210000px;}
.y11{bottom:922.830000px;}
.y69{bottom:927.330000px;}
.y10d{bottom:929.130000px;}
.y10{bottom:941.010000px;}
.y37{bottom:941.910000px;}
.yd8{bottom:945.870000px;}
.y68{bottom:948.030000px;}
.y10c{bottom:949.470000px;}
.ya9{bottom:954.870000px;}
.yf{bottom:959.010000px;}
.y36{bottom:962.610000px;}
.yf5{bottom:966.570000px;}
.y135{bottom:968.370000px;}
.y67{bottom:968.730000px;}
.y10b{bottom:970.170000px;}
.ye{bottom:977.190000px;}
.y35{bottom:983.310000px;}
.y134{bottom:989.070000px;}
.y66{bottom:989.430000px;}
.yd7{bottom:991.590000px;}
.yd{bottom:995.370000px;}
.ya7{bottom:1000.590000px;}
.y1a{bottom:1001.670000px;}
.y34{bottom:1004.010000px;}
.y65{bottom:1010.130000px;}
.yf4{bottom:1012.290000px;}
.yc{bottom:1013.370000px;}
.y19{bottom:1021.470000px;}
.y33{bottom:1027.230000px;}
.ya6{bottom:1030.470000px;}
.y64{bottom:1030.830000px;}
.yb{bottom:1031.550000px;}
.yd6{bottom:1037.490000px;}
.y18{bottom:1041.990000px;}
.ya{bottom:1049.550000px;}
.ya5{bottom:1051.170000px;}
.y63{bottom:1051.530000px;}
.yf3{bottom:1058.190000px;}
.y32{bottom:1058.550000px;}
.y60{bottom:1058.730000px;}
.y9{bottom:1067.730000px;}
.y17{bottom:1069.890000px;}
.ya4{bottom:1071.870000px;}
.y62{bottom:1072.230000px;}
.y31{bottom:1076.730000px;}
.yd5{bottom:1083.390000px;}
.y8{bottom:1086.990000px;}
.y61{bottom:1092.930000px;}
.y30{bottom:1094.910000px;}
.y16{bottom:1100.310000px;}
.y4{bottom:1113.810000px;}
.y15{bottom:1130.730000px;}
.y3{bottom:1132.530000px;}
.y2{bottom:1159.560000px;}
.y1{bottom:1186.740000px;}
.y2b{bottom:1201.860000px;}
.y2d{bottom:1218.960000px;}
.h4{height:15.480000px;}
.h1b{height:20.685000px;}
.h1e{height:20.695500px;}
.h11{height:20.700000px;}
.h1a{height:41.205000px;}
.h14{height:41.220000px;}
.h1d{height:41.256000px;}
.h19{height:41.385000px;}
.h21{height:41.395500px;}
.h18{height:41.400000px;}
.h20{height:41.421000px;}
.h1f{height:41.430000px;}
.h16{height:41.436000px;}
.h13{height:50.273438px;}
.h15{height:50.800781px;}
.he{height:51.480000px;}
.h3{height:52.998047px;}
.h7{height:53.648438px;}
.ha{height:59.436914px;}
.h1c{height:62.085000px;}
.h17{height:62.100000px;}
.h5{height:62.184375px;}
.hb{height:62.357344px;}
.hf{height:69.637852px;}
.hd{height:70.664062px;}
.hc{height:72.562500px;}
.h2{height:76.355508px;}
.h10{height:82.676953px;}
.h8{height:84.780000px;}
.h9{height:84.898125px;}
.h6{height:86.115234px;}
.h12{height:118.008984px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:26.460000px;}
.w5{width:36.000000px;}
.w6{width:210.090000px;}
.wa{width:212.250000px;}
.w18{width:220.170000px;}
.w16{width:229.710000px;}
.w14{width:231.150000px;}
.we{width:236.550000px;}
.w8{width:238.350000px;}
.wc{width:238.890000px;}
.w10{width:243.930000px;}
.w4{width:248.400000px;}
.w12{width:249.150000px;}
.w13{width:373.935000px;}
.w11{width:378.975000px;}
.wd{width:384.015000px;}
.w9{width:384.735000px;}
.wf{width:386.535000px;}
.w15{width:391.935000px;}
.w17{width:393.375000px;}
.w19{width:402.915000px;}
.wb{width:410.655000px;}
.w7{width:412.815000px;}
.w3{width:692.280000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.440000px;}
.x12{left:10.800000px;}
.xc{left:34.956000px;}
.xa{left:57.600000px;}
.xb{left:97.200000px;}
.x17{left:133.956000px;}
.x4{left:135.036000px;}
.x6{left:149.616000px;}
.xd{left:158.070000px;}
.x1f{left:175.530000px;}
.x1{left:185.970000px;}
.x13{left:225.750000px;}
.x9{left:260.535000px;}
.x8{left:303.195000px;}
.x7{left:313.635000px;}
.x3{left:322.455000px;}
.x2{left:331.815000px;}
.xf{left:346.245000px;}
.x19{left:348.555000px;}
.x1e{left:356.295000px;}
.x10{left:364.935000px;}
.x1d{left:367.275000px;}
.x1a{left:372.675000px;}
.x18{left:374.475000px;}
.x1b{left:380.235000px;}
.x1c{left:385.275000px;}
.xe{left:390.315000px;}
.x16{left:409.395000px;}
.x15{left:428.400000px;}
.x5{left:433.260000px;}
.x14{left:446.505000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls1{letter-spacing:15.360000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.512000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._20{margin-left:-7.404160pt;}
._5{margin-left:-6.144000pt;}
._6{margin-left:-5.236053pt;}
._3{margin-left:-4.118400pt;}
._4{margin-left:-3.209600pt;}
._2{margin-left:-1.680000pt;}
._0{width:1.276160pt;}
._1{width:2.208427pt;}
._11{width:3.242667pt;}
._e{width:4.160000pt;}
._8{width:5.760000pt;}
._9{width:6.992000pt;}
._15{width:8.384000pt;}
._18{width:9.386667pt;}
._19{width:10.278187pt;}
._f{width:11.200000pt;}
._10{width:12.123520pt;}
._a{width:13.120000pt;}
._b{width:14.055680pt;}
._7{width:14.976000pt;}
._1b{width:17.024000pt;}
._1a{width:18.741120pt;}
._14{width:19.911680pt;}
._12{width:20.864000pt;}
._13{width:22.416000pt;}
._d{width:23.467520pt;}
._c{width:24.400000pt;}
._21{width:25.646507pt;}
._38{width:27.584000pt;}
._4a{width:28.480000pt;}
._1d{width:29.824000pt;}
._1e{width:30.803840pt;}
._1f{width:31.922347pt;}
._16{width:36.672000pt;}
._17{width:37.696000pt;}
._1c{width:38.675840pt;}
._22{width:42.688000pt;}
._30{width:44.099840pt;}
._29{width:46.528000pt;}
._3f{width:48.704000pt;}
._40{width:49.664000pt;}
._46{width:59.968000pt;}
._33{width:63.488000pt;}
._23{width:65.088000pt;}
._25{width:67.392000pt;}
._2c{width:71.232000pt;}
._2a{width:72.768000pt;}
._42{width:75.392000pt;}
._43{width:76.352000pt;}
._44{width:77.248000pt;}
._3d{width:79.808000pt;}
._49{width:85.312000pt;}
._31{width:89.408000pt;}
._26{width:92.608000pt;}
._2d{width:93.888000pt;}
._4b{width:96.832000pt;}
._4c{width:97.856000pt;}
._47{width:100.288000pt;}
._36{width:102.848000pt;}
._41{width:105.152000pt;}
._4d{width:106.311680pt;}
._35{width:113.664000pt;}
._34{width:114.752000pt;}
._28{width:117.312000pt;}
._2f{width:118.592000pt;}
._39{width:126.448000pt;}
._24{width:128.144000pt;}
._2b{width:131.984000pt;}
._45{width:134.848000pt;}
._3c{width:136.128000pt;}
._3b{width:137.152000pt;}
._3e{width:139.968000pt;}
._48{width:146.000000pt;}
._4e{width:152.192000pt;}
._32{width:159.434667pt;}
._27{width:164.928000pt;}
._2e{width:167.488000pt;}
._37{width:185.408000pt;}
._3a{width:203.968000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:56.320000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs6{font-size:106.880000pt;}
.y1f{bottom:-9.186667pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.720000pt;}
.ybf{bottom:3.520000pt;}
.yc6{bottom:3.666667pt;}
.ya8{bottom:3.680000pt;}
.yae{bottom:3.720000pt;}
.y2f{bottom:3.840000pt;}
.yd0{bottom:3.986667pt;}
.yb5{bottom:4.000000pt;}
.yb2{bottom:12.800000pt;}
.ycd{bottom:12.946667pt;}
.ye1{bottom:12.960000pt;}
.yab{bottom:13.120000pt;}
.yaf{bottom:13.160000pt;}
.yc9{bottom:13.266667pt;}
.ybd{bottom:13.280000pt;}
.ye9{bottom:13.306667pt;}
.y2c{bottom:15.200000pt;}
.yaa{bottom:21.920000pt;}
.yc8{bottom:22.066667pt;}
.yb7{bottom:22.080000pt;}
.ye8{bottom:22.106667pt;}
.yad{bottom:22.120000pt;}
.yd2{bottom:22.240000pt;}
.ycf{bottom:22.386667pt;}
.yb4{bottom:22.400000pt;}
.yfd{bottom:22.426667pt;}
.yda{bottom:22.440000pt;}
.yb1{bottom:31.200000pt;}
.ycc{bottom:31.346667pt;}
.yce{bottom:40.786667pt;}
.yb3{bottom:40.800000pt;}
.y6{bottom:47.680000pt;}
.y5{bottom:50.720000pt;}
.y2e{bottom:51.840000pt;}
.y1c{bottom:58.013333pt;}
.y5f{bottom:101.120000pt;}
.y90{bottom:106.560000pt;}
.y133{bottom:108.320000pt;}
.yd4{bottom:112.160000pt;}
.yf2{bottom:114.560000pt;}
.y5e{bottom:119.520000pt;}
.y8f{bottom:124.960000pt;}
.y132{bottom:126.720000pt;}
.yd3{bottom:131.360000pt;}
.yf1{bottom:136.960000pt;}
.y5d{bottom:137.920000pt;}
.y8e{bottom:143.360000pt;}
.y131{bottom:145.120000pt;}
.yd1{bottom:153.760000pt;}
.y10a{bottom:155.360000pt;}
.y5c{bottom:156.320000pt;}
.yf0{bottom:159.360000pt;}
.y8d{bottom:161.440000pt;}
.y98{bottom:161.760000pt;}
.y130{bottom:163.520000pt;}
.y5b{bottom:174.720000pt;}
.y8c{bottom:179.840000pt;}
.y97{bottom:180.160000pt;}
.y12f{bottom:181.920000pt;}
.yef{bottom:185.786667pt;}
.y5a{bottom:193.146667pt;}
.ycb{bottom:194.440000pt;}
.y109{bottom:196.200000pt;}
.y8b{bottom:198.586667pt;}
.y12e{bottom:200.346667pt;}
.yee{bottom:204.506667pt;}
.y59{bottom:211.546667pt;}
.y8a{bottom:216.986667pt;}
.y12d{bottom:218.746667pt;}
.yed{bottom:223.240000pt;}
.y58{bottom:229.946667pt;}
.y89{bottom:235.386667pt;}
.y108{bottom:237.000000pt;}
.y12c{bottom:237.146667pt;}
.y57{bottom:248.346667pt;}
.yca{bottom:253.640000pt;}
.y88{bottom:253.786667pt;}
.y12b{bottom:255.546667pt;}
.y107{bottom:263.706667pt;}
.yec{bottom:264.040000pt;}
.y56{bottom:266.746667pt;}
.ya3{bottom:271.866667pt;}
.y87{bottom:272.186667pt;}
.y12a{bottom:273.946667pt;}
.y106{bottom:282.440000pt;}
.y55{bottom:285.146667pt;}
.ya2{bottom:290.266667pt;}
.y86{bottom:290.586667pt;}
.y129{bottom:292.346667pt;}
.yc7{bottom:294.440000pt;}
.y54{bottom:303.546667pt;}
.yeb{bottom:304.840000pt;}
.y85{bottom:308.986667pt;}
.y128{bottom:310.746667pt;}
.y53{bottom:321.946667pt;}
.y105{bottom:323.240000pt;}
.y84{bottom:327.386667pt;}
.y127{bottom:329.146667pt;}
.yc5{bottom:335.240000pt;}
.y52{bottom:340.346667pt;}
.yea{bottom:345.640000pt;}
.y83{bottom:345.786667pt;}
.y126{bottom:347.546667pt;}
.y51{bottom:358.746667pt;}
.yc4{bottom:361.626667pt;}
.y96{bottom:363.866667pt;}
.y104{bottom:364.040000pt;}
.y82{bottom:364.186667pt;}
.y125{bottom:365.946667pt;}
.y2a{bottom:374.106667pt;}
.y50{bottom:377.146667pt;}
.yc3{bottom:380.346667pt;}
.y95{bottom:382.266667pt;}
.y81{bottom:382.586667pt;}
.y124{bottom:384.346667pt;}
.ye7{bottom:386.440000pt;}
.y29{bottom:393.146667pt;}
.y4f{bottom:395.586667pt;}
.yc2{bottom:399.266667pt;}
.y80{bottom:401.026667pt;}
.y123{bottom:402.786667pt;}
.y103{bottom:404.866667pt;}
.y28{bottom:411.266667pt;}
.y4e{bottom:413.986667pt;}
.y7f{bottom:419.426667pt;}
.y122{bottom:421.186667pt;}
.ye6{bottom:427.266667pt;}
.y27{bottom:429.666667pt;}
.y4d{bottom:432.386667pt;}
.y7e{bottom:437.826667pt;}
.y121{bottom:439.586667pt;}
.yc1{bottom:440.066667pt;}
.y102{bottom:445.666667pt;}
.y26{bottom:448.386667pt;}
.y4c{bottom:450.786667pt;}
.ye5{bottom:453.666667pt;}
.ya1{bottom:455.906667pt;}
.y7d{bottom:456.226667pt;}
.y120{bottom:457.986667pt;}
.y25{bottom:466.786667pt;}
.y4b{bottom:469.186667pt;}
.ye4{bottom:472.386667pt;}
.ya0{bottom:474.306667pt;}
.y7c{bottom:474.626667pt;}
.y11f{bottom:476.386667pt;}
.yc0{bottom:480.866667pt;}
.y24{bottom:484.866667pt;}
.y101{bottom:486.466667pt;}
.y4a{bottom:487.586667pt;}
.ye3{bottom:491.266667pt;}
.y94{bottom:492.706667pt;}
.y7b{bottom:493.026667pt;}
.y11e{bottom:494.786667pt;}
.y23{bottom:503.266667pt;}
.y49{bottom:505.986667pt;}
.y93{bottom:511.106667pt;}
.y7a{bottom:511.426667pt;}
.y100{bottom:512.866667pt;}
.y11d{bottom:513.186667pt;}
.ybe{bottom:521.666667pt;}
.y22{bottom:521.986667pt;}
.y48{bottom:524.386667pt;}
.y9f{bottom:529.506667pt;}
.y79{bottom:529.826667pt;}
.yff{bottom:531.586667pt;}
.ye2{bottom:531.906667pt;}
.y21{bottom:540.386667pt;}
.y47{bottom:542.786667pt;}
.y9e{bottom:547.906667pt;}
.y78{bottom:548.226667pt;}
.y11c{bottom:549.986667pt;}
.yfe{bottom:550.306667pt;}
.y20{bottom:558.466667pt;}
.y46{bottom:560.866667pt;}
.ybc{bottom:562.306667pt;}
.y9d{bottom:566.306667pt;}
.y77{bottom:566.626667pt;}
.y11b{bottom:568.386667pt;}
.ye0{bottom:572.706667pt;}
.y45{bottom:579.266667pt;}
.y76{bottom:585.026667pt;}
.y11a{bottom:586.786667pt;}
.yfc{bottom:591.106667pt;}
.y44{bottom:597.986667pt;}
.ybb{bottom:603.133333pt;}
.y75{bottom:603.453333pt;}
.y119{bottom:605.213333pt;}
.ydf{bottom:613.533333pt;}
.y43{bottom:616.413333pt;}
.y74{bottom:621.853333pt;}
.y118{bottom:623.613333pt;}
.yba{bottom:629.693333pt;}
.yfb{bottom:631.933333pt;}
.y42{bottom:634.493333pt;}
.y73{bottom:640.253333pt;}
.y117{bottom:642.013333pt;}
.yb9{bottom:648.413333pt;}
.y41{bottom:653.213333pt;}
.yde{bottom:654.333333pt;}
.y72{bottom:658.333333pt;}
.y92{bottom:658.653333pt;}
.y116{bottom:660.413333pt;}
.yb8{bottom:667.133333pt;}
.y40{bottom:671.613333pt;}
.yfa{bottom:672.733333pt;}
.y71{bottom:676.733333pt;}
.y99{bottom:677.053333pt;}
.y115{bottom:678.813333pt;}
.y3f{bottom:690.013333pt;}
.y91{bottom:695.133333pt;}
.y70{bottom:695.453333pt;}
.y114{bottom:697.053333pt;}
.yb6{bottom:707.933333pt;}
.y3e{bottom:708.413333pt;}
.y9c{bottom:713.533333pt;}
.y6f{bottom:713.853333pt;}
.y113{bottom:715.453333pt;}
.ydd{bottom:721.533333pt;}
.y1b{bottom:724.480000pt;}
.y3d{bottom:726.813333pt;}
.y6e{bottom:732.253333pt;}
.y112{bottom:733.853333pt;}
.y1e{bottom:739.613333pt;}
.ydc{bottom:740.253333pt;}
.y3c{bottom:745.213333pt;}
.yb0{bottom:748.733333pt;}
.y6d{bottom:750.653333pt;}
.y111{bottom:752.253333pt;}
.yf9{bottom:754.333333pt;}
.ydb{bottom:759.133333pt;}
.y1d{bottom:761.053333pt;}
.y3b{bottom:763.613333pt;}
.y6c{bottom:769.053333pt;}
.y110{bottom:770.653333pt;}
.y14{bottom:771.933333pt;}
.yf8{bottom:780.733333pt;}
.y3a{bottom:782.013333pt;}
.y9b{bottom:787.133333pt;}
.y6b{bottom:787.453333pt;}
.y13{bottom:788.093333pt;}
.y10f{bottom:789.053333pt;}
.yf7{bottom:799.453333pt;}
.yd9{bottom:799.933333pt;}
.y39{bottom:800.413333pt;}
.y12{bottom:804.093333pt;}
.y9a{bottom:805.533333pt;}
.y6a{bottom:805.853333pt;}
.y10e{bottom:807.453333pt;}
.yac{bottom:807.933333pt;}
.yf6{bottom:818.373333pt;}
.y38{bottom:818.853333pt;}
.y11{bottom:820.293333pt;}
.y69{bottom:824.293333pt;}
.y10d{bottom:825.893333pt;}
.y10{bottom:836.453333pt;}
.y37{bottom:837.253333pt;}
.yd8{bottom:840.773333pt;}
.y68{bottom:842.693333pt;}
.y10c{bottom:843.973333pt;}
.ya9{bottom:848.773333pt;}
.yf{bottom:852.453333pt;}
.y36{bottom:855.653333pt;}
.yf5{bottom:859.173333pt;}
.y135{bottom:860.773333pt;}
.y67{bottom:861.093333pt;}
.y10b{bottom:862.373333pt;}
.ye{bottom:868.613333pt;}
.y35{bottom:874.053333pt;}
.y134{bottom:879.173333pt;}
.y66{bottom:879.493333pt;}
.yd7{bottom:881.413333pt;}
.yd{bottom:884.773333pt;}
.ya7{bottom:889.413333pt;}
.y1a{bottom:890.373333pt;}
.y34{bottom:892.453333pt;}
.y65{bottom:897.893333pt;}
.yf4{bottom:899.813333pt;}
.yc{bottom:900.773333pt;}
.y19{bottom:907.973333pt;}
.y33{bottom:913.093333pt;}
.ya6{bottom:915.973333pt;}
.y64{bottom:916.293333pt;}
.yb{bottom:916.933333pt;}
.yd6{bottom:922.213333pt;}
.y18{bottom:926.213333pt;}
.ya{bottom:932.933333pt;}
.ya5{bottom:934.373333pt;}
.y63{bottom:934.693333pt;}
.yf3{bottom:940.613333pt;}
.y32{bottom:940.933333pt;}
.y60{bottom:941.093333pt;}
.y9{bottom:949.093333pt;}
.y17{bottom:951.013333pt;}
.ya4{bottom:952.773333pt;}
.y62{bottom:953.093333pt;}
.y31{bottom:957.093333pt;}
.yd5{bottom:963.013333pt;}
.y8{bottom:966.213333pt;}
.y61{bottom:971.493333pt;}
.y30{bottom:973.253333pt;}
.y16{bottom:978.053333pt;}
.y4{bottom:990.053333pt;}
.y15{bottom:1005.093333pt;}
.y3{bottom:1006.693333pt;}
.y2{bottom:1030.720000pt;}
.y1{bottom:1054.880000pt;}
.y2b{bottom:1068.320000pt;}
.y2d{bottom:1083.520000pt;}
.h4{height:13.760000pt;}
.h1b{height:18.386667pt;}
.h1e{height:18.396000pt;}
.h11{height:18.400000pt;}
.h1a{height:36.626667pt;}
.h14{height:36.640000pt;}
.h1d{height:36.672000pt;}
.h19{height:36.786667pt;}
.h21{height:36.796000pt;}
.h18{height:36.800000pt;}
.h20{height:36.818667pt;}
.h1f{height:36.826667pt;}
.h16{height:36.832000pt;}
.h13{height:44.687500pt;}
.h15{height:45.156250pt;}
.he{height:45.760000pt;}
.h3{height:47.109375pt;}
.h7{height:47.687500pt;}
.ha{height:52.832812pt;}
.h1c{height:55.186667pt;}
.h17{height:55.200000pt;}
.h5{height:55.275000pt;}
.hb{height:55.428750pt;}
.hf{height:61.900312pt;}
.hd{height:62.812500pt;}
.hc{height:64.500000pt;}
.h2{height:67.871563pt;}
.h10{height:73.490625pt;}
.h8{height:75.360000pt;}
.h9{height:75.465000pt;}
.h6{height:76.546875pt;}
.h12{height:104.896875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:23.520000pt;}
.w5{width:32.000000pt;}
.w6{width:186.746667pt;}
.wa{width:188.666667pt;}
.w18{width:195.706667pt;}
.w16{width:204.186667pt;}
.w14{width:205.466667pt;}
.we{width:210.266667pt;}
.w8{width:211.866667pt;}
.wc{width:212.346667pt;}
.w10{width:216.826667pt;}
.w4{width:220.800000pt;}
.w12{width:221.466667pt;}
.w13{width:332.386667pt;}
.w11{width:336.866667pt;}
.wd{width:341.346667pt;}
.w9{width:341.986667pt;}
.wf{width:343.586667pt;}
.w15{width:348.386667pt;}
.w17{width:349.666667pt;}
.w19{width:358.146667pt;}
.wb{width:365.026667pt;}
.w7{width:366.946667pt;}
.w3{width:615.360000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:1.280000pt;}
.x12{left:9.600000pt;}
.xc{left:31.072000pt;}
.xa{left:51.200000pt;}
.xb{left:86.400000pt;}
.x17{left:119.072000pt;}
.x4{left:120.032000pt;}
.x6{left:132.992000pt;}
.xd{left:140.506667pt;}
.x1f{left:156.026667pt;}
.x1{left:165.306667pt;}
.x13{left:200.666667pt;}
.x9{left:231.586667pt;}
.x8{left:269.506667pt;}
.x7{left:278.786667pt;}
.x3{left:286.626667pt;}
.x2{left:294.946667pt;}
.xf{left:307.773333pt;}
.x19{left:309.826667pt;}
.x1e{left:316.706667pt;}
.x10{left:324.386667pt;}
.x1d{left:326.466667pt;}
.x1a{left:331.266667pt;}
.x18{left:332.866667pt;}
.x1b{left:337.986667pt;}
.x1c{left:342.466667pt;}
.xe{left:346.946667pt;}
.x16{left:363.906667pt;}
.x15{left:380.800000pt;}
.x5{left:385.120000pt;}
.x14{left:396.893333pt;}
}




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