
    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_926f635974477240ab31c1ca.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_a96649658f9a6a90df3dee19.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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_1000f4bad108decdd6ad5d6e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_36345b311b187fd5cf13909b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3ed492ec818e9af509deffc6.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.666000px;}
.lsd{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.206400px;}
.ls4{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.666000px;}
.lsc{letter-spacing:0.978000px;}
.lse{letter-spacing:16.506720px;}
.lsb{letter-spacing:46.026720px;}
.ls1{letter-spacing:64.170720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-15.918000px;}
.ws7{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.246600px;}
.ws6{word-spacing:-15.199800px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.580000px;}
.ws3{word-spacing:-14.274000px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-2.298960px;}
._1{margin-left:-1.080000px;}
._0{width:1.195200px;}
._2{width:2.407200px;}
._3{width:3.816720px;}
._7{width:4.840560px;}
._8{width:6.824880px;}
._e{width:7.827840px;}
._5{width:8.831520px;}
._4{width:10.039680px;}
._b{width:11.055600px;}
._d{width:12.223440px;}
._6{width:13.804560px;}
._c{width:15.955920px;}
._9{width:16.986240px;}
._a{width:18.302160px;}
._11{width:19.411920px;}
._f{width:21.384000px;}
._10{width:22.669680px;}
._19{width:24.202800px;}
._17{width:29.141760px;}
._16{width:30.600000px;}
._18{width:31.907520px;}
._12{width:201.204000px;}
._13{width:777.244800px;}
._15{width:817.222800px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd7{bottom:3.240000px;}
.ya8{bottom:3.420000px;}
.yae{bottom:3.600000px;}
.yaa{bottom:3.780000px;}
.y5{bottom:4.500000px;}
.y4{bottom:24.120000px;}
.y12a{bottom:57.780000px;}
.y66{bottom:60.660000px;}
.yfe{bottom:65.340000px;}
.y44{bottom:72.000000px;}
.yc6{bottom:72.180000px;}
.y129{bottom:75.060000px;}
.y14b{bottom:75.780000px;}
.y65{bottom:77.760000px;}
.ya2{bottom:78.840000px;}
.y11c{bottom:82.620000px;}
.y128{bottom:88.560000px;}
.yc5{bottom:89.280000px;}
.y43{bottom:89.640000px;}
.y14a{bottom:93.060000px;}
.y64{bottom:95.040000px;}
.ya1{bottom:96.120000px;}
.yfd{bottom:99.936000px;}
.y42{bottom:106.956000px;}
.y149{bottom:110.376000px;}
.y63{bottom:111.996000px;}
.ya0{bottom:113.436000px;}
.y11b{bottom:116.676000px;}
.yfc{bottom:117.036000px;}
.yc4{bottom:123.876000px;}
.y41{bottom:124.236000px;}
.y148{bottom:127.296000px;}
.y62{bottom:129.636000px;}
.y9f{bottom:130.716000px;}
.y11a{bottom:133.956000px;}
.yfb{bottom:134.316000px;}
.yc3{bottom:141.156000px;}
.y40{bottom:142.596000px;}
.y147{bottom:144.756000px;}
.y61{bottom:146.916000px;}
.y9e{bottom:147.816000px;}
.yfa{bottom:151.590000px;}
.yc2{bottom:158.430000px;}
.y3f{bottom:159.690000px;}
.y146{bottom:162.030000px;}
.y60{bottom:164.190000px;}
.y9d{bottom:164.730000px;}
.y153{bottom:165.090000px;}
.yf9{bottom:168.870000px;}
.yc1{bottom:175.530000px;}
.y3e{bottom:176.970000px;}
.y145{bottom:179.310000px;}
.y5f{bottom:181.290000px;}
.y9c{bottom:182.370000px;}
.yf8{bottom:186.150000px;}
.yc0{bottom:192.810000px;}
.y3d{bottom:195.330000px;}
.y144{bottom:196.590000px;}
.y5e{bottom:198.570000px;}
.y152{bottom:199.290000px;}
.y9b{bottom:199.650000px;}
.yf7{bottom:203.070000px;}
.y119{bottom:203.430000px;}
.ybf{bottom:210.090000px;}
.y3c{bottom:212.610000px;}
.y143{bottom:213.870000px;}
.y5d{bottom:215.850000px;}
.y9a{bottom:216.930000px;}
.y118{bottom:220.530000px;}
.yf6{bottom:224.670000px;}
.ybe{bottom:227.010000px;}
.y3b{bottom:229.890000px;}
.y142{bottom:230.790000px;}
.y5c{bottom:233.130000px;}
.y99{bottom:234.030000px;}
.y117{bottom:237.450000px;}
.yf5{bottom:246.450000px;}
.y3a{bottom:248.070000px;}
.y141{bottom:248.250000px;}
.ybd{bottom:248.790000px;}
.y5b{bottom:250.410000px;}
.y98{bottom:251.310000px;}
.y116{bottom:259.230000px;}
.y39{bottom:265.350000px;}
.y140{bottom:265.530000px;}
.y5a{bottom:267.510000px;}
.yf4{bottom:268.230000px;}
.y97{bottom:268.590000px;}
.ybc{bottom:270.570000px;}
.y115{bottom:281.010000px;}
.y38{bottom:282.630000px;}
.y13f{bottom:282.810000px;}
.y59{bottom:284.430000px;}
.y96{bottom:285.870000px;}
.yf3{bottom:290.010000px;}
.ybb{bottom:292.170000px;}
.y13e{bottom:300.090000px;}
.y37{bottom:300.990000px;}
.y58{bottom:302.070000px;}
.y114{bottom:302.790000px;}
.y95{bottom:303.150000px;}
.yf2{bottom:311.790000px;}
.yba{bottom:313.950000px;}
.y13d{bottom:317.370000px;}
.y36{bottom:318.270000px;}
.y57{bottom:319.350000px;}
.y94{bottom:320.070000px;}
.y151{bottom:320.430000px;}
.y113{bottom:324.390000px;}
.y13c{bottom:334.650000px;}
.y35{bottom:335.550000px;}
.yb9{bottom:335.730000px;}
.yf1{bottom:336.090000px;}
.y56{bottom:336.630000px;}
.y93{bottom:337.530000px;}
.y112{bottom:346.170000px;}
.y13b{bottom:351.390000px;}
.y34{bottom:353.370000px;}
.y55{bottom:353.910000px;}
.y92{bottom:354.810000px;}
.yb8{bottom:360.075000px;}
.y13a{bottom:369.075000px;}
.yf0{bottom:370.695000px;}
.y33{bottom:371.055000px;}
.y91{bottom:372.135000px;}
.yb7{bottom:377.355000px;}
.y139{bottom:386.355000px;}
.yef{bottom:387.975000px;}
.y32{bottom:388.335000px;}
.y150{bottom:389.055000px;}
.y90{bottom:389.415000px;}
.yb6{bottom:394.635000px;}
.y138{bottom:403.635000px;}
.yee{bottom:405.075000px;}
.y31{bottom:405.615000px;}
.y8f{bottom:406.695000px;}
.yb5{bottom:411.915000px;}
.y137{bottom:420.915000px;}
.yed{bottom:422.355000px;}
.y30{bottom:422.895000px;}
.y8e{bottom:423.615000px;}
.y14f{bottom:423.975000px;}
.yb4{bottom:429.195000px;}
.y136{bottom:438.015000px;}
.yec{bottom:439.635000px;}
.y2f{bottom:440.175000px;}
.y8d{bottom:441.075000px;}
.yb3{bottom:446.475000px;}
.y135{bottom:455.295000px;}
.yeb{bottom:456.915000px;}
.y2e{bottom:457.275000px;}
.y54{bottom:457.455000px;}
.y8c{bottom:458.355000px;}
.yb2{bottom:463.575000px;}
.y134{bottom:472.215000px;}
.yea{bottom:473.835000px;}
.y111{bottom:474.195000px;}
.y2d{bottom:474.555000px;}
.y8b{bottom:475.635000px;}
.yb1{bottom:480.855000px;}
.y133{bottom:489.495000px;}
.y110{bottom:490.935000px;}
.y2c{bottom:491.835000px;}
.y8a{bottom:492.915000px;}
.ye9{bottom:495.435000px;}
.yb0{bottom:498.135000px;}
.y132{bottom:507.135000px;}
.y53{bottom:508.755000px;}
.y2b{bottom:509.115000px;}
.y89{bottom:510.195000px;}
.y10f{bottom:512.715000px;}
.yaf{bottom:515.055000px;}
.ye8{bottom:517.215000px;}
.y131{bottom:524.415000px;}
.y2a{bottom:526.395000px;}
.y88{bottom:527.295000px;}
.y10e{bottom:534.495000px;}
.yad{bottom:536.835000px;}
.ye7{bottom:538.995000px;}
.y130{bottom:541.515000px;}
.y29{bottom:543.495000px;}
.y87{bottom:544.575000px;}
.y52{bottom:544.755000px;}
.y10d{bottom:556.275000px;}
.yac{bottom:558.435000px;}
.y12f{bottom:558.795000px;}
.y28{bottom:560.775000px;}
.y86{bottom:561.855000px;}
.y51{bottom:562.935000px;}
.y127{bottom:569.415000px;}
.y12e{bottom:576.075000px;}
.y27{bottom:578.055000px;}
.y85{bottom:579.135000px;}
.yab{bottom:580.215000px;}
.y50{bottom:581.295000px;}
.ye6{bottom:582.555000px;}
.y126{bottom:586.515000px;}
.y12d{bottom:593.355000px;}
.y26{bottom:595.335000px;}
.y14e{bottom:596.055000px;}
.y84{bottom:596.415000px;}
.y4f{bottom:598.215000px;}
.y10c{bottom:599.835000px;}
.ya9{bottom:601.995000px;}
.y125{bottom:603.435000px;}
.ye5{bottom:606.855000px;}
.y12c{bottom:610.635000px;}
.y25{bottom:612.615000px;}
.y83{bottom:613.695000px;}
.y4e{bottom:615.885000px;}
.y124{bottom:621.105000px;}
.ya7{bottom:623.805000px;}
.ye4{bottom:624.165000px;}
.y24{bottom:629.925000px;}
.y82{bottom:630.825000px;}
.y4d{bottom:633.165000px;}
.y123{bottom:638.385000px;}
.ye3{bottom:641.445000px;}
.y23{bottom:647.025000px;}
.y81{bottom:648.105000px;}
.y4c{bottom:650.445000px;}
.y122{bottom:655.665000px;}
.ye2{bottom:658.725000px;}
.y22{bottom:663.945000px;}
.y80{bottom:665.385000px;}
.y4b{bottom:667.545000px;}
.y121{bottom:672.945000px;}
.ye1{bottom:675.825000px;}
.y4a{bottom:681.225000px;}
.y21{bottom:681.585000px;}
.y7f{bottom:682.665000px;}
.y120{bottom:690.045000px;}
.ye0{bottom:693.105000px;}
.y20{bottom:698.865000px;}
.ya6{bottom:699.585000px;}
.y7e{bottom:699.945000px;}
.y11f{bottom:707.325000px;}
.ydf{bottom:710.385000px;}
.y1f{bottom:716.145000px;}
.y7d{bottom:717.225000px;}
.y11e{bottom:724.605000px;}
.yde{bottom:727.665000px;}
.y1e{bottom:733.425000px;}
.y7c{bottom:734.325000px;}
.y11d{bottom:738.105000px;}
.y10b{bottom:744.585000px;}
.ydd{bottom:744.945000px;}
.y1d{bottom:750.525000px;}
.y7b{bottom:751.605000px;}
.ydc{bottom:761.685000px;}
.y10a{bottom:766.185000px;}
.y1c{bottom:767.805000px;}
.y7a{bottom:768.885000px;}
.ydb{bottom:783.465000px;}
.y1b{bottom:785.085000px;}
.y79{bottom:786.165000px;}
.y109{bottom:787.965000px;}
.y1a{bottom:802.365000px;}
.y78{bottom:803.445000px;}
.yda{bottom:805.245000px;}
.y108{bottom:809.745000px;}
.y19{bottom:819.645000px;}
.y77{bottom:820.725000px;}
.yd9{bottom:827.025000px;}
.y107{bottom:831.525000px;}
.y18{bottom:836.925000px;}
.ya5{bottom:837.465000px;}
.y76{bottom:837.825000px;}
.yd8{bottom:848.805000px;}
.y106{bottom:853.305000px;}
.y17{bottom:854.025000px;}
.y75{bottom:855.105000px;}
.yd6{bottom:870.585000px;}
.y16{bottom:871.305000px;}
.y14d{bottom:872.025000px;}
.y74{bottom:872.385000px;}
.y105{bottom:877.650000px;}
.y15{bottom:888.270000px;}
.y73{bottom:889.710000px;}
.yd5{bottom:894.930000px;}
.y72{bottom:906.990000px;}
.y14{bottom:907.530000px;}
.yd4{bottom:912.210000px;}
.y71{bottom:924.090000px;}
.y13{bottom:925.350000px;}
.yd3{bottom:929.490000px;}
.y70{bottom:941.370000px;}
.y12{bottom:942.630000px;}
.yd2{bottom:946.590000px;}
.y6f{bottom:958.650000px;}
.y11{bottom:959.910000px;}
.yd1{bottom:963.870000px;}
.ya4{bottom:975.570000px;}
.y6e{bottom:975.930000px;}
.y10{bottom:977.190000px;}
.yd0{bottom:981.150000px;}
.y6d{bottom:993.210000px;}
.yf{bottom:994.290000px;}
.y104{bottom:998.070000px;}
.ycf{bottom:998.430000px;}
.y6c{bottom:1010.490000px;}
.ye{bottom:1011.570000px;}
.yce{bottom:1015.710000px;}
.y103{bottom:1019.850000px;}
.y6b{bottom:1027.590000px;}
.yd{bottom:1031.190000px;}
.ycd{bottom:1032.990000px;}
.y102{bottom:1041.450000px;}
.y6a{bottom:1044.870000px;}
.yc{bottom:1048.290000px;}
.ycc{bottom:1049.730000px;}
.y69{bottom:1062.150000px;}
.y101{bottom:1063.230000px;}
.yb{bottom:1065.570000px;}
.ycb{bottom:1071.510000px;}
.y68{bottom:1079.430000px;}
.ya{bottom:1082.850000px;}
.y100{bottom:1085.010000px;}
.yca{bottom:1093.290000px;}
.y12b{bottom:1096.350000px;}
.y49{bottom:1096.710000px;}
.y9{bottom:1100.490000px;}
.yff{bottom:1106.790000px;}
.y14c{bottom:1113.630000px;}
.y48{bottom:1113.990000px;}
.yc9{bottom:1115.070000px;}
.y8{bottom:1121.190000px;}
.ya3{bottom:1130.730000px;}
.y47{bottom:1131.090000px;}
.yc8{bottom:1136.880000px;}
.y7{bottom:1141.920000px;}
.y46{bottom:1148.400000px;}
.yc7{bottom:1158.480000px;}
.y6{bottom:1162.620000px;}
.y45{bottom:1165.320000px;}
.y67{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.hb{height:17.100000px;}
.hc{height:17.136000px;}
.h9{height:17.280000px;}
.ha{height:17.316000px;}
.h7{height:41.726953px;}
.h2{height:58.621992px;}
.h5{height:58.651172px;}
.h6{height:60.226875px;}
.h8{height:61.423863px;}
.h4{height:65.884219px;}
.h3{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:53.676000px;}
.w1d{width:62.136000px;}
.w17{width:64.836000px;}
.w1a{width:65.916000px;}
.w14{width:70.776000px;}
.w2{width:72.576000px;}
.we{width:74.196000px;}
.wc{width:76.536000px;}
.w11{width:81.036000px;}
.w5{width:87.336000px;}
.wb{width:202.710000px;}
.w19{width:225.975000px;}
.wa{width:240.015000px;}
.w9{width:284.070000px;}
.w7{width:285.555000px;}
.w1e{width:293.610000px;}
.w12{width:315.075000px;}
.wd{width:321.915000px;}
.w10{width:324.615000px;}
.w4{width:325.335000px;}
.w13{width:325.830000px;}
.w1b{width:351.975000px;}
.w15{width:355.215000px;}
.w16{width:357.015000px;}
.w1c{width:365.115000px;}
.wf{width:384.195000px;}
.w3{width:384.735000px;}
.w6{width:410.295000px;}
.w1f{width:427.065000px;}
.w18{width:492.375000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:10.800000px;}
.x4b{left:15.120000px;}
.x41{left:16.380000px;}
.x48{left:17.820000px;}
.x11{left:20.340000px;}
.x28{left:22.320000px;}
.x36{left:24.696000px;}
.x19{left:27.720000px;}
.x23{left:38.880000px;}
.x21{left:45.720000px;}
.x38{left:48.600000px;}
.x3a{left:50.040000px;}
.x10{left:52.920000px;}
.x5{left:54.000000px;}
.x44{left:55.485000px;}
.x4d{left:68.394000px;}
.x26{left:79.380000px;}
.xd{left:81.000000px;}
.x35{left:83.340000px;}
.x46{left:87.294000px;}
.x15{left:88.380000px;}
.x31{left:89.820000px;}
.x2c{left:91.260000px;}
.x3e{left:94.134000px;}
.x4f{left:99.030000px;}
.x25{left:102.990000px;}
.x13{left:104.394000px;}
.x30{left:106.014000px;}
.xc{left:108.036000px;}
.x2a{left:109.074000px;}
.x4c{left:117.396000px;}
.x42{left:119.916000px;}
.x45{left:120.996000px;}
.x24{left:124.914000px;}
.x3d{left:126.036000px;}
.x12{left:127.836000px;}
.x2f{left:129.456000px;}
.x29{left:131.616000px;}
.x1c{left:135.225000px;}
.x1e{left:138.825000px;}
.x1a{left:142.416000px;}
.x2e{left:143.865000px;}
.x17{left:145.665000px;}
.x3b{left:149.985000px;}
.x33{left:154.845000px;}
.x3f{left:156.999000px;}
.x37{left:166.530000px;}
.x40{left:169.245000px;}
.x2d{left:171.759000px;}
.x16{left:175.359000px;}
.x49{left:178.785000px;}
.x4a{left:181.470000px;}
.x32{left:184.539000px;}
.x34{left:186.150000px;}
.x1d{left:188.139000px;}
.xa{left:193.170000px;}
.x7{left:198.930000px;}
.x50{left:205.950000px;}
.x27{left:214.410000px;}
.x9{left:218.730000px;}
.xf{left:238.890000px;}
.x6{left:244.830000px;}
.x3{left:256.710000px;}
.x18{left:261.210000px;}
.x2{left:268.770000px;}
.x1{left:309.315000px;}
.xb{left:353.055000px;}
.x20{left:395.175000px;}
.x4e{left:413.355000px;}
.x8{left:430.815000px;}
.x3c{left:446.475000px;}
.x47{left:475.125000px;}
.x39{left:483.945000px;}
.x14{left:514.905000px;}
.x2b{left:518.505000px;}
.x1b{left:554.865000px;}
.x43{left:614.445000px;}
.x22{left:637.530000px;}
.xe{left:795.390000px;}
.x51{left:796.470000px;}
.x4{left:812.130000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.592000pt;}
.lsd{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.592000pt;}
.lsc{letter-spacing:0.869333pt;}
.lse{letter-spacing:14.672640pt;}
.lsb{letter-spacing:40.912640pt;}
.ls1{letter-spacing:57.040640pt;}
.ws1{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.149333pt;}
.ws7{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.552533pt;}
.ws6{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.096533pt;}
.wsa{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.688000pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-2.043520pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.062400pt;}
._2{width:2.139733pt;}
._3{width:3.392640pt;}
._7{width:4.302720pt;}
._8{width:6.066560pt;}
._e{width:6.958080pt;}
._5{width:7.850240pt;}
._4{width:8.924160pt;}
._b{width:9.827200pt;}
._d{width:10.865280pt;}
._6{width:12.270720pt;}
._c{width:14.183040pt;}
._9{width:15.098880pt;}
._a{width:16.268587pt;}
._11{width:17.255040pt;}
._f{width:19.008000pt;}
._10{width:20.150827pt;}
._19{width:21.513600pt;}
._17{width:25.903787pt;}
._16{width:27.200000pt;}
._18{width:28.362240pt;}
._12{width:178.848000pt;}
._13{width:690.884267pt;}
._15{width:726.420267pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:2.880000pt;}
.ya8{bottom:3.040000pt;}
.yae{bottom:3.200000pt;}
.yaa{bottom:3.360000pt;}
.y5{bottom:4.000000pt;}
.y4{bottom:21.440000pt;}
.y12a{bottom:51.360000pt;}
.y66{bottom:53.920000pt;}
.yfe{bottom:58.080000pt;}
.y44{bottom:64.000000pt;}
.yc6{bottom:64.160000pt;}
.y129{bottom:66.720000pt;}
.y14b{bottom:67.360000pt;}
.y65{bottom:69.120000pt;}
.ya2{bottom:70.080000pt;}
.y11c{bottom:73.440000pt;}
.y128{bottom:78.720000pt;}
.yc5{bottom:79.360000pt;}
.y43{bottom:79.680000pt;}
.y14a{bottom:82.720000pt;}
.y64{bottom:84.480000pt;}
.ya1{bottom:85.440000pt;}
.yfd{bottom:88.832000pt;}
.y42{bottom:95.072000pt;}
.y149{bottom:98.112000pt;}
.y63{bottom:99.552000pt;}
.ya0{bottom:100.832000pt;}
.y11b{bottom:103.712000pt;}
.yfc{bottom:104.032000pt;}
.yc4{bottom:110.112000pt;}
.y41{bottom:110.432000pt;}
.y148{bottom:113.152000pt;}
.y62{bottom:115.232000pt;}
.y9f{bottom:116.192000pt;}
.y11a{bottom:119.072000pt;}
.yfb{bottom:119.392000pt;}
.yc3{bottom:125.472000pt;}
.y40{bottom:126.752000pt;}
.y147{bottom:128.672000pt;}
.y61{bottom:130.592000pt;}
.y9e{bottom:131.392000pt;}
.yfa{bottom:134.746667pt;}
.yc2{bottom:140.826667pt;}
.y3f{bottom:141.946667pt;}
.y146{bottom:144.026667pt;}
.y60{bottom:145.946667pt;}
.y9d{bottom:146.426667pt;}
.y153{bottom:146.746667pt;}
.yf9{bottom:150.106667pt;}
.yc1{bottom:156.026667pt;}
.y3e{bottom:157.306667pt;}
.y145{bottom:159.386667pt;}
.y5f{bottom:161.146667pt;}
.y9c{bottom:162.106667pt;}
.yf8{bottom:165.466667pt;}
.yc0{bottom:171.386667pt;}
.y3d{bottom:173.626667pt;}
.y144{bottom:174.746667pt;}
.y5e{bottom:176.506667pt;}
.y152{bottom:177.146667pt;}
.y9b{bottom:177.466667pt;}
.yf7{bottom:180.506667pt;}
.y119{bottom:180.826667pt;}
.ybf{bottom:186.746667pt;}
.y3c{bottom:188.986667pt;}
.y143{bottom:190.106667pt;}
.y5d{bottom:191.866667pt;}
.y9a{bottom:192.826667pt;}
.y118{bottom:196.026667pt;}
.yf6{bottom:199.706667pt;}
.ybe{bottom:201.786667pt;}
.y3b{bottom:204.346667pt;}
.y142{bottom:205.146667pt;}
.y5c{bottom:207.226667pt;}
.y99{bottom:208.026667pt;}
.y117{bottom:211.066667pt;}
.yf5{bottom:219.066667pt;}
.y3a{bottom:220.506667pt;}
.y141{bottom:220.666667pt;}
.ybd{bottom:221.146667pt;}
.y5b{bottom:222.586667pt;}
.y98{bottom:223.386667pt;}
.y116{bottom:230.426667pt;}
.y39{bottom:235.866667pt;}
.y140{bottom:236.026667pt;}
.y5a{bottom:237.786667pt;}
.yf4{bottom:238.426667pt;}
.y97{bottom:238.746667pt;}
.ybc{bottom:240.506667pt;}
.y115{bottom:249.786667pt;}
.y38{bottom:251.226667pt;}
.y13f{bottom:251.386667pt;}
.y59{bottom:252.826667pt;}
.y96{bottom:254.106667pt;}
.yf3{bottom:257.786667pt;}
.ybb{bottom:259.706667pt;}
.y13e{bottom:266.746667pt;}
.y37{bottom:267.546667pt;}
.y58{bottom:268.506667pt;}
.y114{bottom:269.146667pt;}
.y95{bottom:269.466667pt;}
.yf2{bottom:277.146667pt;}
.yba{bottom:279.066667pt;}
.y13d{bottom:282.106667pt;}
.y36{bottom:282.906667pt;}
.y57{bottom:283.866667pt;}
.y94{bottom:284.506667pt;}
.y151{bottom:284.826667pt;}
.y113{bottom:288.346667pt;}
.y13c{bottom:297.466667pt;}
.y35{bottom:298.266667pt;}
.yb9{bottom:298.426667pt;}
.yf1{bottom:298.746667pt;}
.y56{bottom:299.226667pt;}
.y93{bottom:300.026667pt;}
.y112{bottom:307.706667pt;}
.y13b{bottom:312.346667pt;}
.y34{bottom:314.106667pt;}
.y55{bottom:314.586667pt;}
.y92{bottom:315.386667pt;}
.yb8{bottom:320.066667pt;}
.y13a{bottom:328.066667pt;}
.yf0{bottom:329.506667pt;}
.y33{bottom:329.826667pt;}
.y91{bottom:330.786667pt;}
.yb7{bottom:335.426667pt;}
.y139{bottom:343.426667pt;}
.yef{bottom:344.866667pt;}
.y32{bottom:345.186667pt;}
.y150{bottom:345.826667pt;}
.y90{bottom:346.146667pt;}
.yb6{bottom:350.786667pt;}
.y138{bottom:358.786667pt;}
.yee{bottom:360.066667pt;}
.y31{bottom:360.546667pt;}
.y8f{bottom:361.506667pt;}
.yb5{bottom:366.146667pt;}
.y137{bottom:374.146667pt;}
.yed{bottom:375.426667pt;}
.y30{bottom:375.906667pt;}
.y8e{bottom:376.546667pt;}
.y14f{bottom:376.866667pt;}
.yb4{bottom:381.506667pt;}
.y136{bottom:389.346667pt;}
.yec{bottom:390.786667pt;}
.y2f{bottom:391.266667pt;}
.y8d{bottom:392.066667pt;}
.yb3{bottom:396.866667pt;}
.y135{bottom:404.706667pt;}
.yeb{bottom:406.146667pt;}
.y2e{bottom:406.466667pt;}
.y54{bottom:406.626667pt;}
.y8c{bottom:407.426667pt;}
.yb2{bottom:412.066667pt;}
.y134{bottom:419.746667pt;}
.yea{bottom:421.186667pt;}
.y111{bottom:421.506667pt;}
.y2d{bottom:421.826667pt;}
.y8b{bottom:422.786667pt;}
.yb1{bottom:427.426667pt;}
.y133{bottom:435.106667pt;}
.y110{bottom:436.386667pt;}
.y2c{bottom:437.186667pt;}
.y8a{bottom:438.146667pt;}
.ye9{bottom:440.386667pt;}
.yb0{bottom:442.786667pt;}
.y132{bottom:450.786667pt;}
.y53{bottom:452.226667pt;}
.y2b{bottom:452.546667pt;}
.y89{bottom:453.506667pt;}
.y10f{bottom:455.746667pt;}
.yaf{bottom:457.826667pt;}
.ye8{bottom:459.746667pt;}
.y131{bottom:466.146667pt;}
.y2a{bottom:467.906667pt;}
.y88{bottom:468.706667pt;}
.y10e{bottom:475.106667pt;}
.yad{bottom:477.186667pt;}
.ye7{bottom:479.106667pt;}
.y130{bottom:481.346667pt;}
.y29{bottom:483.106667pt;}
.y87{bottom:484.066667pt;}
.y52{bottom:484.226667pt;}
.y10d{bottom:494.466667pt;}
.yac{bottom:496.386667pt;}
.y12f{bottom:496.706667pt;}
.y28{bottom:498.466667pt;}
.y86{bottom:499.426667pt;}
.y51{bottom:500.386667pt;}
.y127{bottom:506.146667pt;}
.y12e{bottom:512.066667pt;}
.y27{bottom:513.826667pt;}
.y85{bottom:514.786667pt;}
.yab{bottom:515.746667pt;}
.y50{bottom:516.706667pt;}
.ye6{bottom:517.826667pt;}
.y126{bottom:521.346667pt;}
.y12d{bottom:527.426667pt;}
.y26{bottom:529.186667pt;}
.y14e{bottom:529.826667pt;}
.y84{bottom:530.146667pt;}
.y4f{bottom:531.746667pt;}
.y10c{bottom:533.186667pt;}
.ya9{bottom:535.106667pt;}
.y125{bottom:536.386667pt;}
.ye5{bottom:539.426667pt;}
.y12c{bottom:542.786667pt;}
.y25{bottom:544.546667pt;}
.y83{bottom:545.506667pt;}
.y4e{bottom:547.453333pt;}
.y124{bottom:552.093333pt;}
.ya7{bottom:554.493333pt;}
.ye4{bottom:554.813333pt;}
.y24{bottom:559.933333pt;}
.y82{bottom:560.733333pt;}
.y4d{bottom:562.813333pt;}
.y123{bottom:567.453333pt;}
.ye3{bottom:570.173333pt;}
.y23{bottom:575.133333pt;}
.y81{bottom:576.093333pt;}
.y4c{bottom:578.173333pt;}
.y122{bottom:582.813333pt;}
.ye2{bottom:585.533333pt;}
.y22{bottom:590.173333pt;}
.y80{bottom:591.453333pt;}
.y4b{bottom:593.373333pt;}
.y121{bottom:598.173333pt;}
.ye1{bottom:600.733333pt;}
.y4a{bottom:605.533333pt;}
.y21{bottom:605.853333pt;}
.y7f{bottom:606.813333pt;}
.y120{bottom:613.373333pt;}
.ye0{bottom:616.093333pt;}
.y20{bottom:621.213333pt;}
.ya6{bottom:621.853333pt;}
.y7e{bottom:622.173333pt;}
.y11f{bottom:628.733333pt;}
.ydf{bottom:631.453333pt;}
.y1f{bottom:636.573333pt;}
.y7d{bottom:637.533333pt;}
.y11e{bottom:644.093333pt;}
.yde{bottom:646.813333pt;}
.y1e{bottom:651.933333pt;}
.y7c{bottom:652.733333pt;}
.y11d{bottom:656.093333pt;}
.y10b{bottom:661.853333pt;}
.ydd{bottom:662.173333pt;}
.y1d{bottom:667.133333pt;}
.y7b{bottom:668.093333pt;}
.ydc{bottom:677.053333pt;}
.y10a{bottom:681.053333pt;}
.y1c{bottom:682.493333pt;}
.y7a{bottom:683.453333pt;}
.ydb{bottom:696.413333pt;}
.y1b{bottom:697.853333pt;}
.y79{bottom:698.813333pt;}
.y109{bottom:700.413333pt;}
.y1a{bottom:713.213333pt;}
.y78{bottom:714.173333pt;}
.yda{bottom:715.773333pt;}
.y108{bottom:719.773333pt;}
.y19{bottom:728.573333pt;}
.y77{bottom:729.533333pt;}
.yd9{bottom:735.133333pt;}
.y107{bottom:739.133333pt;}
.y18{bottom:743.933333pt;}
.ya5{bottom:744.413333pt;}
.y76{bottom:744.733333pt;}
.yd8{bottom:754.493333pt;}
.y106{bottom:758.493333pt;}
.y17{bottom:759.133333pt;}
.y75{bottom:760.093333pt;}
.yd6{bottom:773.853333pt;}
.y16{bottom:774.493333pt;}
.y14d{bottom:775.133333pt;}
.y74{bottom:775.453333pt;}
.y105{bottom:780.133333pt;}
.y15{bottom:789.573333pt;}
.y73{bottom:790.853333pt;}
.yd5{bottom:795.493333pt;}
.y72{bottom:806.213333pt;}
.y14{bottom:806.693333pt;}
.yd4{bottom:810.853333pt;}
.y71{bottom:821.413333pt;}
.y13{bottom:822.533333pt;}
.yd3{bottom:826.213333pt;}
.y70{bottom:836.773333pt;}
.y12{bottom:837.893333pt;}
.yd2{bottom:841.413333pt;}
.y6f{bottom:852.133333pt;}
.y11{bottom:853.253333pt;}
.yd1{bottom:856.773333pt;}
.ya4{bottom:867.173333pt;}
.y6e{bottom:867.493333pt;}
.y10{bottom:868.613333pt;}
.yd0{bottom:872.133333pt;}
.y6d{bottom:882.853333pt;}
.yf{bottom:883.813333pt;}
.y104{bottom:887.173333pt;}
.ycf{bottom:887.493333pt;}
.y6c{bottom:898.213333pt;}
.ye{bottom:899.173333pt;}
.yce{bottom:902.853333pt;}
.y103{bottom:906.533333pt;}
.y6b{bottom:913.413333pt;}
.yd{bottom:916.613333pt;}
.ycd{bottom:918.213333pt;}
.y102{bottom:925.733333pt;}
.y6a{bottom:928.773333pt;}
.yc{bottom:931.813333pt;}
.ycc{bottom:933.093333pt;}
.y69{bottom:944.133333pt;}
.y101{bottom:945.093333pt;}
.yb{bottom:947.173333pt;}
.ycb{bottom:952.453333pt;}
.y68{bottom:959.493333pt;}
.ya{bottom:962.533333pt;}
.y100{bottom:964.453333pt;}
.yca{bottom:971.813333pt;}
.y12b{bottom:974.533333pt;}
.y49{bottom:974.853333pt;}
.y9{bottom:978.213333pt;}
.yff{bottom:983.813333pt;}
.y14c{bottom:989.893333pt;}
.y48{bottom:990.213333pt;}
.yc9{bottom:991.173333pt;}
.y8{bottom:996.613333pt;}
.ya3{bottom:1005.093333pt;}
.y47{bottom:1005.413333pt;}
.yc8{bottom:1010.560000pt;}
.y7{bottom:1015.040000pt;}
.y46{bottom:1020.800000pt;}
.yc7{bottom:1029.760000pt;}
.y6{bottom:1033.440000pt;}
.y45{bottom:1035.840000pt;}
.y67{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.hb{height:15.200000pt;}
.hc{height:15.232000pt;}
.h9{height:15.360000pt;}
.ha{height:15.392000pt;}
.h7{height:37.090625pt;}
.h2{height:52.108438pt;}
.h5{height:52.134375pt;}
.h6{height:53.535000pt;}
.h8{height:54.598989pt;}
.h4{height:58.563750pt;}
.h3{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:47.712000pt;}
.w1d{width:55.232000pt;}
.w17{width:57.632000pt;}
.w1a{width:58.592000pt;}
.w14{width:62.912000pt;}
.w2{width:64.512000pt;}
.we{width:65.952000pt;}
.wc{width:68.032000pt;}
.w11{width:72.032000pt;}
.w5{width:77.632000pt;}
.wb{width:180.186667pt;}
.w19{width:200.866667pt;}
.wa{width:213.346667pt;}
.w9{width:252.506667pt;}
.w7{width:253.826667pt;}
.w1e{width:260.986667pt;}
.w12{width:280.066667pt;}
.wd{width:286.146667pt;}
.w10{width:288.546667pt;}
.w4{width:289.186667pt;}
.w13{width:289.626667pt;}
.w1b{width:312.866667pt;}
.w15{width:315.746667pt;}
.w16{width:317.346667pt;}
.w1c{width:324.546667pt;}
.wf{width:341.506667pt;}
.w3{width:341.986667pt;}
.w6{width:364.706667pt;}
.w1f{width:379.613333pt;}
.w18{width:437.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:9.600000pt;}
.x4b{left:13.440000pt;}
.x41{left:14.560000pt;}
.x48{left:15.840000pt;}
.x11{left:18.080000pt;}
.x28{left:19.840000pt;}
.x36{left:21.952000pt;}
.x19{left:24.640000pt;}
.x23{left:34.560000pt;}
.x21{left:40.640000pt;}
.x38{left:43.200000pt;}
.x3a{left:44.480000pt;}
.x10{left:47.040000pt;}
.x5{left:48.000000pt;}
.x44{left:49.320000pt;}
.x4d{left:60.794667pt;}
.x26{left:70.560000pt;}
.xd{left:72.000000pt;}
.x35{left:74.080000pt;}
.x46{left:77.594667pt;}
.x15{left:78.560000pt;}
.x31{left:79.840000pt;}
.x2c{left:81.120000pt;}
.x3e{left:83.674667pt;}
.x4f{left:88.026667pt;}
.x25{left:91.546667pt;}
.x13{left:92.794667pt;}
.x30{left:94.234667pt;}
.xc{left:96.032000pt;}
.x2a{left:96.954667pt;}
.x4c{left:104.352000pt;}
.x42{left:106.592000pt;}
.x45{left:107.552000pt;}
.x24{left:111.034667pt;}
.x3d{left:112.032000pt;}
.x12{left:113.632000pt;}
.x2f{left:115.072000pt;}
.x29{left:116.992000pt;}
.x1c{left:120.200000pt;}
.x1e{left:123.400000pt;}
.x1a{left:126.592000pt;}
.x2e{left:127.880000pt;}
.x17{left:129.480000pt;}
.x3b{left:133.320000pt;}
.x33{left:137.640000pt;}
.x3f{left:139.554667pt;}
.x37{left:148.026667pt;}
.x40{left:150.440000pt;}
.x2d{left:152.674667pt;}
.x16{left:155.874667pt;}
.x49{left:158.920000pt;}
.x4a{left:161.306667pt;}
.x32{left:164.034667pt;}
.x34{left:165.466667pt;}
.x1d{left:167.234667pt;}
.xa{left:171.706667pt;}
.x7{left:176.826667pt;}
.x50{left:183.066667pt;}
.x27{left:190.586667pt;}
.x9{left:194.426667pt;}
.xf{left:212.346667pt;}
.x6{left:217.626667pt;}
.x3{left:228.186667pt;}
.x18{left:232.186667pt;}
.x2{left:238.906667pt;}
.x1{left:274.946667pt;}
.xb{left:313.826667pt;}
.x20{left:351.266667pt;}
.x4e{left:367.426667pt;}
.x8{left:382.946667pt;}
.x3c{left:396.866667pt;}
.x47{left:422.333333pt;}
.x39{left:430.173333pt;}
.x14{left:457.693333pt;}
.x2b{left:460.893333pt;}
.x1b{left:493.213333pt;}
.x43{left:546.173333pt;}
.x22{left:566.693333pt;}
.xe{left:707.013333pt;}
.x51{left:707.973333pt;}
.x4{left:721.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; }
  