
    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_86d4c8c17f42c58df6323d68.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.947754;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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_e530bf4bc139cd439816fd94.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.947266;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_1425aa1567eedc15a1437d54.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_5bfaebc485891294d4c38a04.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);}
.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.561600px;}
.ls3{letter-spacing:-0.331200px;}
.ls7{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.115200px;}
.ls9{letter-spacing:-0.100800px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.158400px;}
.ls4{letter-spacing:0.187200px;}
.ls0{letter-spacing:0.201600px;}
.lsb{letter-spacing:0.388800px;}
.lsa{letter-spacing:35.226720px;}
.ls2{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;}
}
.ws4{word-spacing:-59.760000px;}
.ws1{word-spacing:-24.480000px;}
.ws0{word-spacing:-22.723200px;}
.ws2{word-spacing:-20.318400px;}
.ws9{word-spacing:-20.217600px;}
.wsb{word-spacing:-19.512000px;}
.ws6{word-spacing:-19.310400px;}
.wsa{word-spacing:-19.281600px;}
.ws7{word-spacing:-19.008000px;}
.ws8{word-spacing:-18.835200px;}
.ws5{word-spacing:-18.792000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.126080px;}
._1{width:1.093440px;}
._7{width:2.249280px;}
._2{width:3.335040px;}
._3{width:5.079600px;}
._4{width:6.103200px;}
._11{width:7.589520px;}
._f{width:8.946240px;}
._a{width:10.218960px;}
._b{width:12.043680px;}
._d{width:13.386240px;}
._c{width:14.641200px;}
._e{width:16.322160px;}
._16{width:17.372400px;}
._1e{width:20.139120px;}
._12{width:21.155040px;}
._14{width:22.870320px;}
._17{width:23.897520px;}
._10{width:25.338240px;}
._5{width:27.190800px;}
._6{width:28.368240px;}
._19{width:29.521440px;}
._1a{width:30.664080px;}
._13{width:31.665600px;}
._18{width:33.054480px;}
._15{width:35.079120px;}
._9{width:36.334080px;}
._1d{width:37.529280px;}
._1b{width:38.844000px;}
._1c{width:39.884160px;}
._21{width:41.234400px;}
._20{width:42.310080px;}
._1f{width:45.537120px;}
._8{width:197.020800px;}
.fc2{color:rgb(255,0,0);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y95{bottom:3.420000px;}
.y8f{bottom:3.600000px;}
.y5{bottom:3.780000px;}
.y6{bottom:4.500000px;}
.y96{bottom:12.240000px;}
.y92{bottom:12.420000px;}
.y8d{bottom:12.465000px;}
.y94{bottom:21.060000px;}
.ycb{bottom:21.090000px;}
.y8e{bottom:21.105000px;}
.y91{bottom:21.240000px;}
.ya8{bottom:21.285000px;}
.y4{bottom:25.380000px;}
.ye1{bottom:29.880000px;}
.ydb{bottom:30.060000px;}
.ye0{bottom:38.694000px;}
.y133{bottom:38.700000px;}
.y138{bottom:38.745000px;}
.ydc{bottom:38.880000px;}
.y131{bottom:47.520000px;}
.y132{bottom:56.340000px;}
.ye4{bottom:61.200000px;}
.y44{bottom:63.900000px;}
.y108{bottom:64.080000px;}
.y109{bottom:66.960000px;}
.y163{bottom:72.900000px;}
.y12f{bottom:77.400000px;}
.ye3{bottom:78.840000px;}
.y43{bottom:81.540000px;}
.y107{bottom:81.720000px;}
.y7f{bottom:84.600000px;}
.yb5{bottom:85.140000px;}
.y162{bottom:90.540000px;}
.y12e{bottom:95.040000px;}
.ye2{bottom:96.480000px;}
.y42{bottom:99.216000px;}
.y106{bottom:99.396000px;}
.y7e{bottom:102.276000px;}
.yb4{bottom:102.636000px;}
.y161{bottom:108.216000px;}
.y12d{bottom:112.716000px;}
.ydf{bottom:113.976000px;}
.y41{bottom:116.856000px;}
.y105{bottom:117.036000px;}
.y7d{bottom:119.736000px;}
.yb3{bottom:120.276000px;}
.y160{bottom:125.856000px;}
.y12c{bottom:130.356000px;}
.y40{bottom:134.496000px;}
.y104{bottom:134.676000px;}
.y7c{bottom:137.376000px;}
.yb2{bottom:137.916000px;}
.y15f{bottom:143.316000px;}
.y12b{bottom:147.816000px;}
.y3f{bottom:151.950000px;}
.y103{bottom:152.130000px;}
.y7b{bottom:155.010000px;}
.yb1{bottom:155.550000px;}
.y15e{bottom:160.950000px;}
.y12a{bottom:165.450000px;}
.y3e{bottom:169.590000px;}
.y102{bottom:169.770000px;}
.yde{bottom:171.210000px;}
.y7a{bottom:172.650000px;}
.yb0{bottom:173.190000px;}
.y15d{bottom:178.590000px;}
.y129{bottom:183.090000px;}
.y3d{bottom:187.230000px;}
.y101{bottom:187.410000px;}
.y79{bottom:190.290000px;}
.yaf{bottom:190.650000px;}
.y15c{bottom:196.230000px;}
.y128{bottom:200.730000px;}
.y3c{bottom:204.870000px;}
.y100{bottom:205.050000px;}
.y78{bottom:207.750000px;}
.yae{bottom:208.290000px;}
.ydd{bottom:210.990000px;}
.y15b{bottom:213.870000px;}
.y127{bottom:218.370000px;}
.y3b{bottom:222.510000px;}
.y77{bottom:225.390000px;}
.yad{bottom:225.930000px;}
.y15a{bottom:231.330000px;}
.y126{bottom:235.830000px;}
.y3a{bottom:239.970000px;}
.yff{bottom:241.230000px;}
.y76{bottom:243.030000px;}
.yac{bottom:243.570000px;}
.y159{bottom:248.970000px;}
.yda{bottom:250.590000px;}
.y125{bottom:253.470000px;}
.y39{bottom:257.610000px;}
.yfe{bottom:258.870000px;}
.y75{bottom:260.670000px;}
.yab{bottom:261.210000px;}
.y158{bottom:266.610000px;}
.y124{bottom:271.110000px;}
.y38{bottom:275.250000px;}
.yfd{bottom:276.330000px;}
.y74{bottom:278.310000px;}
.yaa{bottom:278.670000px;}
.y157{bottom:284.250000px;}
.y123{bottom:288.750000px;}
.y37{bottom:292.890000px;}
.yfc{bottom:293.970000px;}
.y73{bottom:295.950000px;}
.ya9{bottom:297.210000px;}
.y156{bottom:301.890000px;}
.y122{bottom:306.390000px;}
.yd9{bottom:308.010000px;}
.y36{bottom:310.530000px;}
.yfb{bottom:311.610000px;}
.y72{bottom:313.410000px;}
.y155{bottom:319.530000px;}
.y121{bottom:324.030000px;}
.y35{bottom:328.170000px;}
.yfa{bottom:329.250000px;}
.y71{bottom:331.050000px;}
.ya7{bottom:336.810000px;}
.y154{bottom:336.990000px;}
.y120{bottom:341.490000px;}
.y34{bottom:345.630000px;}
.yf9{bottom:346.890000px;}
.y70{bottom:348.690000px;}
.yd8{bottom:350.130000px;}
.y153{bottom:354.630000px;}
.y11f{bottom:359.175000px;}
.y33{bottom:363.315000px;}
.yf8{bottom:364.395000px;}
.y6f{bottom:366.375000px;}
.yd7{bottom:367.815000px;}
.y152{bottom:372.315000px;}
.ya6{bottom:376.635000px;}
.y11e{bottom:376.815000px;}
.y32{bottom:380.955000px;}
.yf7{bottom:382.035000px;}
.y6e{bottom:384.015000px;}
.yd6{bottom:385.455000px;}
.y151{bottom:389.955000px;}
.y11d{bottom:394.455000px;}
.y31{bottom:398.595000px;}
.yf6{bottom:399.675000px;}
.y6d{bottom:401.475000px;}
.yd5{bottom:403.095000px;}
.y150{bottom:407.595000px;}
.y11c{bottom:412.095000px;}
.y30{bottom:416.235000px;}
.yf5{bottom:417.135000px;}
.y6c{bottom:419.115000px;}
.yd4{bottom:420.555000px;}
.y14f{bottom:425.055000px;}
.y11b{bottom:429.555000px;}
.y2f{bottom:433.695000px;}
.yf4{bottom:435.855000px;}
.y6b{bottom:436.755000px;}
.yd3{bottom:438.195000px;}
.y14e{bottom:442.695000px;}
.y11a{bottom:447.195000px;}
.y2e{bottom:451.335000px;}
.yf3{bottom:453.495000px;}
.y6a{bottom:454.395000px;}
.yd2{bottom:455.835000px;}
.ya5{bottom:456.015000px;}
.y14d{bottom:460.335000px;}
.y119{bottom:464.835000px;}
.y2d{bottom:468.975000px;}
.yf2{bottom:471.135000px;}
.y69{bottom:472.035000px;}
.yd1{bottom:473.475000px;}
.y14c{bottom:477.975000px;}
.y118{bottom:482.475000px;}
.y2c{bottom:486.615000px;}
.yf1{bottom:488.595000px;}
.y68{bottom:489.675000px;}
.yd0{bottom:491.115000px;}
.y14b{bottom:495.615000px;}
.ya4{bottom:498.135000px;}
.y117{bottom:500.115000px;}
.y2b{bottom:504.255000px;}
.yf0{bottom:506.235000px;}
.y67{bottom:507.135000px;}
.ycf{bottom:508.575000px;}
.y14a{bottom:513.255000px;}
.ya3{bottom:515.775000px;}
.y116{bottom:517.755000px;}
.y2a{bottom:521.895000px;}
.yef{bottom:523.875000px;}
.y66{bottom:524.775000px;}
.yce{bottom:526.215000px;}
.y149{bottom:530.715000px;}
.ya2{bottom:533.415000px;}
.y115{bottom:535.215000px;}
.y29{bottom:539.355000px;}
.yee{bottom:541.515000px;}
.y65{bottom:542.415000px;}
.ycd{bottom:543.675000px;}
.y148{bottom:548.355000px;}
.ya1{bottom:551.055000px;}
.y114{bottom:552.855000px;}
.y28{bottom:556.995000px;}
.yed{bottom:559.155000px;}
.y64{bottom:560.055000px;}
.ycc{bottom:562.215000px;}
.y147{bottom:565.995000px;}
.ya0{bottom:568.695000px;}
.y113{bottom:570.495000px;}
.y27{bottom:574.635000px;}
.yec{bottom:576.615000px;}
.y63{bottom:577.695000px;}
.y146{bottom:583.635000px;}
.y9f{bottom:586.155000px;}
.y112{bottom:588.135000px;}
.y26{bottom:592.275000px;}
.yeb{bottom:594.255000px;}
.y62{bottom:595.155000px;}
.y145{bottom:601.275000px;}
.yca{bottom:601.995000px;}
.y9e{bottom:603.795000px;}
.y111{bottom:605.775000px;}
.y25{bottom:609.915000px;}
.yea{bottom:611.895000px;}
.y61{bottom:612.795000px;}
.y144{bottom:618.765000px;}
.y9d{bottom:621.465000px;}
.y110{bottom:623.265000px;}
.y24{bottom:627.405000px;}
.ye9{bottom:629.565000px;}
.y60{bottom:630.465000px;}
.y143{bottom:636.405000px;}
.y9c{bottom:639.105000px;}
.y10f{bottom:640.905000px;}
.yc9{bottom:641.625000px;}
.y23{bottom:645.045000px;}
.ye8{bottom:647.205000px;}
.y5f{bottom:648.105000px;}
.y142{bottom:654.045000px;}
.y9b{bottom:656.745000px;}
.y10e{bottom:658.365000px;}
.y22{bottom:662.685000px;}
.ye7{bottom:664.845000px;}
.y5e{bottom:665.745000px;}
.y141{bottom:671.685000px;}
.y9a{bottom:674.205000px;}
.y21{bottom:680.325000px;}
.y10d{bottom:680.505000px;}
.yc8{bottom:681.405000px;}
.ye6{bottom:682.305000px;}
.y5d{bottom:683.385000px;}
.y140{bottom:689.325000px;}
.y99{bottom:691.845000px;}
.y20{bottom:697.965000px;}
.ye5{bottom:699.765000px;}
.y5c{bottom:700.845000px;}
.y10c{bottom:702.645000px;}
.y13f{bottom:706.965000px;}
.y98{bottom:710.205000px;}
.y1f{bottom:715.605000px;}
.y5b{bottom:718.485000px;}
.yc7{bottom:721.185000px;}
.y13e{bottom:724.425000px;}
.y10b{bottom:724.605000px;}
.y1e{bottom:733.065000px;}
.y5a{bottom:736.125000px;}
.y13d{bottom:742.065000px;}
.y10a{bottom:746.745000px;}
.y97{bottom:749.985000px;}
.y1d{bottom:750.705000px;}
.y59{bottom:753.765000px;}
.y13c{bottom:759.705000px;}
.yc6{bottom:763.305000px;}
.y1c{bottom:768.345000px;}
.y58{bottom:771.405000px;}
.y13b{bottom:777.345000px;}
.yc5{bottom:780.945000px;}
.y1b{bottom:785.985000px;}
.y57{bottom:788.865000px;}
.y93{bottom:789.765000px;}
.y13a{bottom:794.985000px;}
.yc4{bottom:798.405000px;}
.y1a{bottom:803.625000px;}
.y56{bottom:806.505000px;}
.y139{bottom:812.265000px;}
.yc3{bottom:816.045000px;}
.y19{bottom:821.085000px;}
.y55{bottom:824.145000px;}
.y90{bottom:829.365000px;}
.yc2{bottom:833.685000px;}
.y18{bottom:838.725000px;}
.y54{bottom:841.785000px;}
.yc1{bottom:851.325000px;}
.y17{bottom:856.365000px;}
.y53{bottom:859.425000px;}
.yc0{bottom:868.965000px;}
.y8c{bottom:869.145000px;}
.y137{bottom:869.685000px;}
.y16{bottom:874.770000px;}
.y52{bottom:877.110000px;}
.ybf{bottom:886.650000px;}
.y15{bottom:892.410000px;}
.y51{bottom:894.570000px;}
.ybe{bottom:904.110000px;}
.y14{bottom:910.050000px;}
.y8b{bottom:911.310000px;}
.y50{bottom:912.210000px;}
.ybd{bottom:921.750000px;}
.y136{bottom:926.970000px;}
.y13{bottom:927.690000px;}
.y8a{bottom:928.950000px;}
.y4f{bottom:929.850000px;}
.ybc{bottom:939.390000px;}
.y12{bottom:945.150000px;}
.y89{bottom:946.590000px;}
.y4e{bottom:947.490000px;}
.ybb{bottom:956.850000px;}
.y11{bottom:962.790000px;}
.y88{bottom:964.050000px;}
.y4d{bottom:965.130000px;}
.yba{bottom:975.390000px;}
.y10{bottom:980.430000px;}
.y87{bottom:981.690000px;}
.y4c{bottom:982.770000px;}
.y135{bottom:984.390000px;}
.yf{bottom:997.890000px;}
.y86{bottom:999.330000px;}
.y4b{bottom:1000.230000px;}
.yb9{bottom:1014.990000px;}
.y85{bottom:1016.970000px;}
.ye{bottom:1017.870000px;}
.y134{bottom:1023.990000px;}
.y84{bottom:1034.610000px;}
.yd{bottom:1035.510000px;}
.y83{bottom:1052.250000px;}
.yc{bottom:1053.150000px;}
.yb8{bottom:1054.770000px;}
.y130{bottom:1063.770000px;}
.y82{bottom:1069.710000px;}
.y4a{bottom:1070.790000px;}
.yb{bottom:1071.330000px;}
.y81{bottom:1087.350000px;}
.y49{bottom:1088.250000px;}
.ya{bottom:1092.570000px;}
.yb7{bottom:1094.550000px;}
.y80{bottom:1104.810000px;}
.y48{bottom:1105.890000px;}
.y9{bottom:1113.630000px;}
.y47{bottom:1123.530000px;}
.yb6{bottom:1134.180000px;}
.y8{bottom:1134.720000px;}
.y46{bottom:1141.200000px;}
.y7{bottom:1155.960000px;}
.y45{bottom:1158.840000px;}
.y3{bottom:1176.660000px;}
.y2{bottom:1196.100000px;}
.y1{bottom:1215.360000px;}
.h11{height:17.460000px;}
.h10{height:17.640000px;}
.h4{height:19.260000px;}
.hc{height:35.100000px;}
.ha{height:35.136000px;}
.hb{height:35.280000px;}
.hd{height:35.316000px;}
.h7{height:42.806602px;}
.h8{height:42.835781px;}
.h2{height:47.480625px;}
.h6{height:51.609375px;}
.hf{height:52.740000px;}
.h13{height:52.776000px;}
.he{height:52.920000px;}
.h9{height:61.423863px;}
.h5{height:65.884219px;}
.h3{height:67.824844px;}
.h12{height:70.416000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:45.540000px;}
.wf{width:45.576000px;}
.w3{width:61.416000px;}
.w5{width:81.000000px;}
.w14{width:94.140000px;}
.w10{width:99.360000px;}
.w18{width:99.576000px;}
.w17{width:102.780000px;}
.w6{width:104.976000px;}
.wa{width:105.876000px;}
.w1b{width:109.296000px;}
.w1d{width:109.836000px;}
.w1c{width:110.520000px;}
.w1a{width:127.296000px;}
.w1e{width:132.696000px;}
.w13{width:140.436000px;}
.w1f{width:186.150000px;}
.w15{width:211.395000px;}
.w11{width:277.095000px;}
.w16{width:279.615000px;}
.w4{width:288.975000px;}
.w19{width:298.875000px;}
.wb{width:304.095000px;}
.w7{width:305.895000px;}
.wd{width:309.315000px;}
.wc{width:320.835000px;}
.w8{width:325.155000px;}
.w12{width:334.695000px;}
.we{width:358.635000px;}
.w2{width:734.910000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:1.080000px;}
.x3c{left:2.160000px;}
.x25{left:3.600000px;}
.x34{left:5.400000px;}
.x2e{left:6.660000px;}
.x5{left:8.640000px;}
.x45{left:10.620000px;}
.x1c{left:12.600000px;}
.x7{left:14.220000px;}
.x16{left:16.200000px;}
.x58{left:17.325000px;}
.x22{left:18.720000px;}
.x17{left:19.800000px;}
.x26{left:21.420000px;}
.x3f{left:22.500000px;}
.x1e{left:24.480000px;}
.x4d{left:25.740000px;}
.x49{left:26.820000px;}
.x28{left:28.260000px;}
.x51{left:30.060000px;}
.x2f{left:31.320000px;}
.x56{left:32.445000px;}
.x1f{left:33.690000px;}
.x19{left:35.490000px;}
.x32{left:37.980000px;}
.x54{left:40.545000px;}
.x40{left:41.760000px;}
.x20{left:43.380000px;}
.x57{left:45.180000px;}
.x68{left:46.296000px;}
.x55{left:47.340000px;}
.x4{left:48.420000px;}
.x66{left:49.860000px;}
.x13{left:52.920000px;}
.x8{left:54.000000px;}
.x5e{left:55.296000px;}
.x4c{left:58.140000px;}
.x67{left:61.560000px;}
.x10{left:64.620000px;}
.x27{left:65.916000px;}
.x29{left:67.500000px;}
.x30{left:71.280000px;}
.x3d{left:73.260000px;}
.x41{left:76.500000px;}
.x4a{left:79.605000px;}
.x11{left:81.000000px;}
.x53{left:83.925000px;}
.x4b{left:86.436000px;}
.x69{left:88.380000px;}
.x3e{left:92.736000px;}
.x21{left:94.716000px;}
.x1d{left:98.310000px;}
.x4e{left:100.116000px;}
.x35{left:103.365000px;}
.x31{left:106.245000px;}
.x14{left:108.570000px;}
.x33{left:115.605000px;}
.x47{left:116.865000px;}
.x23{left:121.365000px;}
.x37{left:124.590000px;}
.x24{left:125.850000px;}
.x1b{left:130.905000px;}
.x3b{left:132.705000px;}
.x48{left:134.130000px;}
.x59{left:135.936000px;}
.x43{left:143.490000px;}
.x2a{left:148.536000px;}
.x42{left:149.796000px;}
.x12{left:151.410000px;}
.x36{left:154.650000px;}
.x61{left:182.550000px;}
.x1{left:192.810000px;}
.xc{left:210.630000px;}
.xa{left:233.670000px;}
.xe{left:244.470000px;}
.x9{left:245.550000px;}
.x3{left:260.490000px;}
.x62{left:294.015000px;}
.x5b{left:334.695000px;}
.x15{left:344.235000px;}
.x2{left:347.295000px;}
.x60{left:361.695000px;}
.x38{left:376.095000px;}
.x2b{left:380.235000px;}
.x4f{left:389.775000px;}
.x63{left:406.875000px;}
.x5a{left:411.015000px;}
.xd{left:413.535000px;}
.x39{left:423.795000px;}
.x18{left:427.395000px;}
.x5c{left:439.815000px;}
.x5f{left:446.475000px;}
.xb{left:450.795000px;}
.xf{left:460.365000px;}
.x44{left:461.625000px;}
.x64{left:519.045000px;}
.x3a{left:530.925000px;}
.x50{left:532.545000px;}
.x1a{left:534.525000px;}
.x2d{left:536.145000px;}
.x5d{left:541.545000px;}
.x46{left:563.145000px;}
.x52{left:628.845000px;}
.x65{left:654.090000px;}
.x6{left:783.330000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.499200pt;}
.ls3{letter-spacing:-0.294400pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.102400pt;}
.ls9{letter-spacing:-0.089600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.140800pt;}
.ls4{letter-spacing:0.166400pt;}
.ls0{letter-spacing:0.179200pt;}
.lsb{letter-spacing:0.345600pt;}
.lsa{letter-spacing:31.312640pt;}
.ls2{letter-spacing:57.040640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws1{word-spacing:-21.760000pt;}
.ws0{word-spacing:-20.198400pt;}
.ws2{word-spacing:-18.060800pt;}
.ws9{word-spacing:-17.971200pt;}
.wsb{word-spacing:-17.344000pt;}
.ws6{word-spacing:-17.164800pt;}
.wsa{word-spacing:-17.139200pt;}
.ws7{word-spacing:-16.896000pt;}
.ws8{word-spacing:-16.742400pt;}
.ws5{word-spacing:-16.704000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.000960pt;}
._1{width:0.971947pt;}
._7{width:1.999360pt;}
._2{width:2.964480pt;}
._3{width:4.515200pt;}
._4{width:5.425067pt;}
._11{width:6.746240pt;}
._f{width:7.952213pt;}
._a{width:9.083520pt;}
._b{width:10.705493pt;}
._d{width:11.898880pt;}
._c{width:13.014400pt;}
._e{width:14.508587pt;}
._16{width:15.442133pt;}
._1e{width:17.901440pt;}
._12{width:18.804480pt;}
._14{width:20.329173pt;}
._17{width:21.242240pt;}
._10{width:22.522880pt;}
._5{width:24.169600pt;}
._6{width:25.216213pt;}
._19{width:26.241280pt;}
._1a{width:27.256960pt;}
._13{width:28.147200pt;}
._18{width:29.381760pt;}
._15{width:31.181440pt;}
._9{width:32.296960pt;}
._1d{width:33.359360pt;}
._1b{width:34.528000pt;}
._1c{width:35.452587pt;}
._21{width:36.652800pt;}
._20{width:37.608960pt;}
._1f{width:40.477440pt;}
._8{width:175.129600pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:3.040000pt;}
.y8f{bottom:3.200000pt;}
.y5{bottom:3.360000pt;}
.y6{bottom:4.000000pt;}
.y96{bottom:10.880000pt;}
.y92{bottom:11.040000pt;}
.y8d{bottom:11.080000pt;}
.y94{bottom:18.720000pt;}
.ycb{bottom:18.746667pt;}
.y8e{bottom:18.760000pt;}
.y91{bottom:18.880000pt;}
.ya8{bottom:18.920000pt;}
.y4{bottom:22.560000pt;}
.ye1{bottom:26.560000pt;}
.ydb{bottom:26.720000pt;}
.ye0{bottom:34.394667pt;}
.y133{bottom:34.400000pt;}
.y138{bottom:34.440000pt;}
.ydc{bottom:34.560000pt;}
.y131{bottom:42.240000pt;}
.y132{bottom:50.080000pt;}
.ye4{bottom:54.400000pt;}
.y44{bottom:56.800000pt;}
.y108{bottom:56.960000pt;}
.y109{bottom:59.520000pt;}
.y163{bottom:64.800000pt;}
.y12f{bottom:68.800000pt;}
.ye3{bottom:70.080000pt;}
.y43{bottom:72.480000pt;}
.y107{bottom:72.640000pt;}
.y7f{bottom:75.200000pt;}
.yb5{bottom:75.680000pt;}
.y162{bottom:80.480000pt;}
.y12e{bottom:84.480000pt;}
.ye2{bottom:85.760000pt;}
.y42{bottom:88.192000pt;}
.y106{bottom:88.352000pt;}
.y7e{bottom:90.912000pt;}
.yb4{bottom:91.232000pt;}
.y161{bottom:96.192000pt;}
.y12d{bottom:100.192000pt;}
.ydf{bottom:101.312000pt;}
.y41{bottom:103.872000pt;}
.y105{bottom:104.032000pt;}
.y7d{bottom:106.432000pt;}
.yb3{bottom:106.912000pt;}
.y160{bottom:111.872000pt;}
.y12c{bottom:115.872000pt;}
.y40{bottom:119.552000pt;}
.y104{bottom:119.712000pt;}
.y7c{bottom:122.112000pt;}
.yb2{bottom:122.592000pt;}
.y15f{bottom:127.392000pt;}
.y12b{bottom:131.392000pt;}
.y3f{bottom:135.066667pt;}
.y103{bottom:135.226667pt;}
.y7b{bottom:137.786667pt;}
.yb1{bottom:138.266667pt;}
.y15e{bottom:143.066667pt;}
.y12a{bottom:147.066667pt;}
.y3e{bottom:150.746667pt;}
.y102{bottom:150.906667pt;}
.yde{bottom:152.186667pt;}
.y7a{bottom:153.466667pt;}
.yb0{bottom:153.946667pt;}
.y15d{bottom:158.746667pt;}
.y129{bottom:162.746667pt;}
.y3d{bottom:166.426667pt;}
.y101{bottom:166.586667pt;}
.y79{bottom:169.146667pt;}
.yaf{bottom:169.466667pt;}
.y15c{bottom:174.426667pt;}
.y128{bottom:178.426667pt;}
.y3c{bottom:182.106667pt;}
.y100{bottom:182.266667pt;}
.y78{bottom:184.666667pt;}
.yae{bottom:185.146667pt;}
.ydd{bottom:187.546667pt;}
.y15b{bottom:190.106667pt;}
.y127{bottom:194.106667pt;}
.y3b{bottom:197.786667pt;}
.y77{bottom:200.346667pt;}
.yad{bottom:200.826667pt;}
.y15a{bottom:205.626667pt;}
.y126{bottom:209.626667pt;}
.y3a{bottom:213.306667pt;}
.yff{bottom:214.426667pt;}
.y76{bottom:216.026667pt;}
.yac{bottom:216.506667pt;}
.y159{bottom:221.306667pt;}
.yda{bottom:222.746667pt;}
.y125{bottom:225.306667pt;}
.y39{bottom:228.986667pt;}
.yfe{bottom:230.106667pt;}
.y75{bottom:231.706667pt;}
.yab{bottom:232.186667pt;}
.y158{bottom:236.986667pt;}
.y124{bottom:240.986667pt;}
.y38{bottom:244.666667pt;}
.yfd{bottom:245.626667pt;}
.y74{bottom:247.386667pt;}
.yaa{bottom:247.706667pt;}
.y157{bottom:252.666667pt;}
.y123{bottom:256.666667pt;}
.y37{bottom:260.346667pt;}
.yfc{bottom:261.306667pt;}
.y73{bottom:263.066667pt;}
.ya9{bottom:264.186667pt;}
.y156{bottom:268.346667pt;}
.y122{bottom:272.346667pt;}
.yd9{bottom:273.786667pt;}
.y36{bottom:276.026667pt;}
.yfb{bottom:276.986667pt;}
.y72{bottom:278.586667pt;}
.y155{bottom:284.026667pt;}
.y121{bottom:288.026667pt;}
.y35{bottom:291.706667pt;}
.yfa{bottom:292.666667pt;}
.y71{bottom:294.266667pt;}
.ya7{bottom:299.386667pt;}
.y154{bottom:299.546667pt;}
.y120{bottom:303.546667pt;}
.y34{bottom:307.226667pt;}
.yf9{bottom:308.346667pt;}
.y70{bottom:309.946667pt;}
.yd8{bottom:311.226667pt;}
.y153{bottom:315.226667pt;}
.y11f{bottom:319.266667pt;}
.y33{bottom:322.946667pt;}
.yf8{bottom:323.906667pt;}
.y6f{bottom:325.666667pt;}
.yd7{bottom:326.946667pt;}
.y152{bottom:330.946667pt;}
.ya6{bottom:334.786667pt;}
.y11e{bottom:334.946667pt;}
.y32{bottom:338.626667pt;}
.yf7{bottom:339.586667pt;}
.y6e{bottom:341.346667pt;}
.yd6{bottom:342.626667pt;}
.y151{bottom:346.626667pt;}
.y11d{bottom:350.626667pt;}
.y31{bottom:354.306667pt;}
.yf6{bottom:355.266667pt;}
.y6d{bottom:356.866667pt;}
.yd5{bottom:358.306667pt;}
.y150{bottom:362.306667pt;}
.y11c{bottom:366.306667pt;}
.y30{bottom:369.986667pt;}
.yf5{bottom:370.786667pt;}
.y6c{bottom:372.546667pt;}
.yd4{bottom:373.826667pt;}
.y14f{bottom:377.826667pt;}
.y11b{bottom:381.826667pt;}
.y2f{bottom:385.506667pt;}
.yf4{bottom:387.426667pt;}
.y6b{bottom:388.226667pt;}
.yd3{bottom:389.506667pt;}
.y14e{bottom:393.506667pt;}
.y11a{bottom:397.506667pt;}
.y2e{bottom:401.186667pt;}
.yf3{bottom:403.106667pt;}
.y6a{bottom:403.906667pt;}
.yd2{bottom:405.186667pt;}
.ya5{bottom:405.346667pt;}
.y14d{bottom:409.186667pt;}
.y119{bottom:413.186667pt;}
.y2d{bottom:416.866667pt;}
.yf2{bottom:418.786667pt;}
.y69{bottom:419.586667pt;}
.yd1{bottom:420.866667pt;}
.y14c{bottom:424.866667pt;}
.y118{bottom:428.866667pt;}
.y2c{bottom:432.546667pt;}
.yf1{bottom:434.306667pt;}
.y68{bottom:435.266667pt;}
.yd0{bottom:436.546667pt;}
.y14b{bottom:440.546667pt;}
.ya4{bottom:442.786667pt;}
.y117{bottom:444.546667pt;}
.y2b{bottom:448.226667pt;}
.yf0{bottom:449.986667pt;}
.y67{bottom:450.786667pt;}
.ycf{bottom:452.066667pt;}
.y14a{bottom:456.226667pt;}
.ya3{bottom:458.466667pt;}
.y116{bottom:460.226667pt;}
.y2a{bottom:463.906667pt;}
.yef{bottom:465.666667pt;}
.y66{bottom:466.466667pt;}
.yce{bottom:467.746667pt;}
.y149{bottom:471.746667pt;}
.ya2{bottom:474.146667pt;}
.y115{bottom:475.746667pt;}
.y29{bottom:479.426667pt;}
.yee{bottom:481.346667pt;}
.y65{bottom:482.146667pt;}
.ycd{bottom:483.266667pt;}
.y148{bottom:487.426667pt;}
.ya1{bottom:489.826667pt;}
.y114{bottom:491.426667pt;}
.y28{bottom:495.106667pt;}
.yed{bottom:497.026667pt;}
.y64{bottom:497.826667pt;}
.ycc{bottom:499.746667pt;}
.y147{bottom:503.106667pt;}
.ya0{bottom:505.506667pt;}
.y113{bottom:507.106667pt;}
.y27{bottom:510.786667pt;}
.yec{bottom:512.546667pt;}
.y63{bottom:513.506667pt;}
.y146{bottom:518.786667pt;}
.y9f{bottom:521.026667pt;}
.y112{bottom:522.786667pt;}
.y26{bottom:526.466667pt;}
.yeb{bottom:528.226667pt;}
.y62{bottom:529.026667pt;}
.y145{bottom:534.466667pt;}
.yca{bottom:535.106667pt;}
.y9e{bottom:536.706667pt;}
.y111{bottom:538.466667pt;}
.y25{bottom:542.146667pt;}
.yea{bottom:543.906667pt;}
.y61{bottom:544.706667pt;}
.y144{bottom:550.013333pt;}
.y9d{bottom:552.413333pt;}
.y110{bottom:554.013333pt;}
.y24{bottom:557.693333pt;}
.ye9{bottom:559.613333pt;}
.y60{bottom:560.413333pt;}
.y143{bottom:565.693333pt;}
.y9c{bottom:568.093333pt;}
.y10f{bottom:569.693333pt;}
.yc9{bottom:570.333333pt;}
.y23{bottom:573.373333pt;}
.ye8{bottom:575.293333pt;}
.y5f{bottom:576.093333pt;}
.y142{bottom:581.373333pt;}
.y9b{bottom:583.773333pt;}
.y10e{bottom:585.213333pt;}
.y22{bottom:589.053333pt;}
.ye7{bottom:590.973333pt;}
.y5e{bottom:591.773333pt;}
.y141{bottom:597.053333pt;}
.y9a{bottom:599.293333pt;}
.y21{bottom:604.733333pt;}
.y10d{bottom:604.893333pt;}
.yc8{bottom:605.693333pt;}
.ye6{bottom:606.493333pt;}
.y5d{bottom:607.453333pt;}
.y140{bottom:612.733333pt;}
.y99{bottom:614.973333pt;}
.y20{bottom:620.413333pt;}
.ye5{bottom:622.013333pt;}
.y5c{bottom:622.973333pt;}
.y10c{bottom:624.573333pt;}
.y13f{bottom:628.413333pt;}
.y98{bottom:631.293333pt;}
.y1f{bottom:636.093333pt;}
.y5b{bottom:638.653333pt;}
.yc7{bottom:641.053333pt;}
.y13e{bottom:643.933333pt;}
.y10b{bottom:644.093333pt;}
.y1e{bottom:651.613333pt;}
.y5a{bottom:654.333333pt;}
.y13d{bottom:659.613333pt;}
.y10a{bottom:663.773333pt;}
.y97{bottom:666.653333pt;}
.y1d{bottom:667.293333pt;}
.y59{bottom:670.013333pt;}
.y13c{bottom:675.293333pt;}
.yc6{bottom:678.493333pt;}
.y1c{bottom:682.973333pt;}
.y58{bottom:685.693333pt;}
.y13b{bottom:690.973333pt;}
.yc5{bottom:694.173333pt;}
.y1b{bottom:698.653333pt;}
.y57{bottom:701.213333pt;}
.y93{bottom:702.013333pt;}
.y13a{bottom:706.653333pt;}
.yc4{bottom:709.693333pt;}
.y1a{bottom:714.333333pt;}
.y56{bottom:716.893333pt;}
.y139{bottom:722.013333pt;}
.yc3{bottom:725.373333pt;}
.y19{bottom:729.853333pt;}
.y55{bottom:732.573333pt;}
.y90{bottom:737.213333pt;}
.yc2{bottom:741.053333pt;}
.y18{bottom:745.533333pt;}
.y54{bottom:748.253333pt;}
.yc1{bottom:756.733333pt;}
.y17{bottom:761.213333pt;}
.y53{bottom:763.933333pt;}
.yc0{bottom:772.413333pt;}
.y8c{bottom:772.573333pt;}
.y137{bottom:773.053333pt;}
.y16{bottom:777.573333pt;}
.y52{bottom:779.653333pt;}
.ybf{bottom:788.133333pt;}
.y15{bottom:793.253333pt;}
.y51{bottom:795.173333pt;}
.ybe{bottom:803.653333pt;}
.y14{bottom:808.933333pt;}
.y8b{bottom:810.053333pt;}
.y50{bottom:810.853333pt;}
.ybd{bottom:819.333333pt;}
.y136{bottom:823.973333pt;}
.y13{bottom:824.613333pt;}
.y8a{bottom:825.733333pt;}
.y4f{bottom:826.533333pt;}
.ybc{bottom:835.013333pt;}
.y12{bottom:840.133333pt;}
.y89{bottom:841.413333pt;}
.y4e{bottom:842.213333pt;}
.ybb{bottom:850.533333pt;}
.y11{bottom:855.813333pt;}
.y88{bottom:856.933333pt;}
.y4d{bottom:857.893333pt;}
.yba{bottom:867.013333pt;}
.y10{bottom:871.493333pt;}
.y87{bottom:872.613333pt;}
.y4c{bottom:873.573333pt;}
.y135{bottom:875.013333pt;}
.yf{bottom:887.013333pt;}
.y86{bottom:888.293333pt;}
.y4b{bottom:889.093333pt;}
.yb9{bottom:902.213333pt;}
.y85{bottom:903.973333pt;}
.ye{bottom:904.773333pt;}
.y134{bottom:910.213333pt;}
.y84{bottom:919.653333pt;}
.yd{bottom:920.453333pt;}
.y83{bottom:935.333333pt;}
.yc{bottom:936.133333pt;}
.yb8{bottom:937.573333pt;}
.y130{bottom:945.573333pt;}
.y82{bottom:950.853333pt;}
.y4a{bottom:951.813333pt;}
.yb{bottom:952.293333pt;}
.y81{bottom:966.533333pt;}
.y49{bottom:967.333333pt;}
.ya{bottom:971.173333pt;}
.yb7{bottom:972.933333pt;}
.y80{bottom:982.053333pt;}
.y48{bottom:983.013333pt;}
.y9{bottom:989.893333pt;}
.y47{bottom:998.693333pt;}
.yb6{bottom:1008.160000pt;}
.y8{bottom:1008.640000pt;}
.y46{bottom:1014.400000pt;}
.y7{bottom:1027.520000pt;}
.y45{bottom:1030.080000pt;}
.y3{bottom:1045.920000pt;}
.y2{bottom:1063.200000pt;}
.y1{bottom:1080.320000pt;}
.h11{height:15.520000pt;}
.h10{height:15.680000pt;}
.h4{height:17.120000pt;}
.hc{height:31.200000pt;}
.ha{height:31.232000pt;}
.hb{height:31.360000pt;}
.hd{height:31.392000pt;}
.h7{height:38.050313pt;}
.h8{height:38.076250pt;}
.h2{height:42.205000pt;}
.h6{height:45.875000pt;}
.hf{height:46.880000pt;}
.h13{height:46.912000pt;}
.he{height:47.040000pt;}
.h9{height:54.598989pt;}
.h5{height:58.563750pt;}
.h3{height:60.288750pt;}
.h12{height:62.592000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:40.480000pt;}
.wf{width:40.512000pt;}
.w3{width:54.592000pt;}
.w5{width:72.000000pt;}
.w14{width:83.680000pt;}
.w10{width:88.320000pt;}
.w18{width:88.512000pt;}
.w17{width:91.360000pt;}
.w6{width:93.312000pt;}
.wa{width:94.112000pt;}
.w1b{width:97.152000pt;}
.w1d{width:97.632000pt;}
.w1c{width:98.240000pt;}
.w1a{width:113.152000pt;}
.w1e{width:117.952000pt;}
.w13{width:124.832000pt;}
.w1f{width:165.466667pt;}
.w15{width:187.906667pt;}
.w11{width:246.306667pt;}
.w16{width:248.546667pt;}
.w4{width:256.866667pt;}
.w19{width:265.666667pt;}
.wb{width:270.306667pt;}
.w7{width:271.906667pt;}
.wd{width:274.946667pt;}
.wc{width:285.186667pt;}
.w8{width:289.026667pt;}
.w12{width:297.506667pt;}
.we{width:318.786667pt;}
.w2{width:653.253333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:0.960000pt;}
.x3c{left:1.920000pt;}
.x25{left:3.200000pt;}
.x34{left:4.800000pt;}
.x2e{left:5.920000pt;}
.x5{left:7.680000pt;}
.x45{left:9.440000pt;}
.x1c{left:11.200000pt;}
.x7{left:12.640000pt;}
.x16{left:14.400000pt;}
.x58{left:15.400000pt;}
.x22{left:16.640000pt;}
.x17{left:17.600000pt;}
.x26{left:19.040000pt;}
.x3f{left:20.000000pt;}
.x1e{left:21.760000pt;}
.x4d{left:22.880000pt;}
.x49{left:23.840000pt;}
.x28{left:25.120000pt;}
.x51{left:26.720000pt;}
.x2f{left:27.840000pt;}
.x56{left:28.840000pt;}
.x1f{left:29.946667pt;}
.x19{left:31.546667pt;}
.x32{left:33.760000pt;}
.x54{left:36.040000pt;}
.x40{left:37.120000pt;}
.x20{left:38.560000pt;}
.x57{left:40.160000pt;}
.x68{left:41.152000pt;}
.x55{left:42.080000pt;}
.x4{left:43.040000pt;}
.x66{left:44.320000pt;}
.x13{left:47.040000pt;}
.x8{left:48.000000pt;}
.x5e{left:49.152000pt;}
.x4c{left:51.680000pt;}
.x67{left:54.720000pt;}
.x10{left:57.440000pt;}
.x27{left:58.592000pt;}
.x29{left:60.000000pt;}
.x30{left:63.360000pt;}
.x3d{left:65.120000pt;}
.x41{left:68.000000pt;}
.x4a{left:70.760000pt;}
.x11{left:72.000000pt;}
.x53{left:74.600000pt;}
.x4b{left:76.832000pt;}
.x69{left:78.560000pt;}
.x3e{left:82.432000pt;}
.x21{left:84.192000pt;}
.x1d{left:87.386667pt;}
.x4e{left:88.992000pt;}
.x35{left:91.880000pt;}
.x31{left:94.440000pt;}
.x14{left:96.506667pt;}
.x33{left:102.760000pt;}
.x47{left:103.880000pt;}
.x23{left:107.880000pt;}
.x37{left:110.746667pt;}
.x24{left:111.866667pt;}
.x1b{left:116.360000pt;}
.x3b{left:117.960000pt;}
.x48{left:119.226667pt;}
.x59{left:120.832000pt;}
.x43{left:127.546667pt;}
.x2a{left:132.032000pt;}
.x42{left:133.152000pt;}
.x12{left:134.586667pt;}
.x36{left:137.466667pt;}
.x61{left:162.266667pt;}
.x1{left:171.386667pt;}
.xc{left:187.226667pt;}
.xa{left:207.706667pt;}
.xe{left:217.306667pt;}
.x9{left:218.266667pt;}
.x3{left:231.546667pt;}
.x62{left:261.346667pt;}
.x5b{left:297.506667pt;}
.x15{left:305.986667pt;}
.x2{left:308.706667pt;}
.x60{left:321.506667pt;}
.x38{left:334.306667pt;}
.x2b{left:337.986667pt;}
.x4f{left:346.466667pt;}
.x63{left:361.666667pt;}
.x5a{left:365.346667pt;}
.xd{left:367.586667pt;}
.x39{left:376.706667pt;}
.x18{left:379.906667pt;}
.x5c{left:390.946667pt;}
.x5f{left:396.866667pt;}
.xb{left:400.706667pt;}
.xf{left:409.213333pt;}
.x44{left:410.333333pt;}
.x64{left:461.373333pt;}
.x3a{left:471.933333pt;}
.x50{left:473.373333pt;}
.x1a{left:475.133333pt;}
.x2d{left:476.573333pt;}
.x5d{left:481.373333pt;}
.x46{left:500.573333pt;}
.x52{left:558.973333pt;}
.x65{left:581.413333pt;}
.x6{left:696.293333pt;}
}




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