
    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_f32dcdfa37863d454f1a57de.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_459c4ccd64fe85f8580d6779.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5d13fd49e7aab2fd3e447458.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_a066908703c96c952c618d48.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f13246f4a7bd45cf1f4521a7.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;}
.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);}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:30.240000px;}
.v4{vertical-align:33.120000px;}
.ls1b{letter-spacing:-1.800000px;}
.ls18{letter-spacing:-1.440000px;}
.ls23{letter-spacing:-1.134000px;}
.ls8{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.612000px;}
.ls17{letter-spacing:-0.567600px;}
.ls1c{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.538800px;}
.ls2b{letter-spacing:-0.457800px;}
.ls2a{letter-spacing:-0.414600px;}
.ls4{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.090600px;}
.lsa{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017280px;}
.lse{letter-spacing:0.089280px;}
.ls1a{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.109200px;}
.lsd{letter-spacing:0.109440px;}
.ls27{letter-spacing:0.135600px;}
.ls19{letter-spacing:0.152400px;}
.ls10{letter-spacing:0.152640px;}
.ls9{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.181200px;}
.ls13{letter-spacing:0.181440px;}
.lsb{letter-spacing:0.262200px;}
.ls25{letter-spacing:0.269400px;}
.ls7{letter-spacing:0.305400px;}
.ls11{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.513600px;}
.ls6{letter-spacing:0.696000px;}
.lsc{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.728640px;}
.ls5{letter-spacing:0.792000px;}
.ls12{letter-spacing:1.440000px;}
.ls20{letter-spacing:5.040000px;}
.ls1f{letter-spacing:6.840000px;}
.ls2{letter-spacing:10.080000px;}
.lsf{letter-spacing:11.160000px;}
.ls22{letter-spacing:13.860000px;}
.ls1d{letter-spacing:14.400000px;}
.ls1e{letter-spacing:20.520000px;}
.ls28{letter-spacing:20.880000px;}
.ls21{letter-spacing:21.960000px;}
.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;}
}
.ws1b{word-spacing:-59.760000px;}
.wsa{word-spacing:-48.240000px;}
.ws15{word-spacing:-41.760000px;}
.ws2{word-spacing:-20.136000px;}
.ws5{word-spacing:-17.928000px;}
.ws1c{word-spacing:-17.280000px;}
.ws3{word-spacing:-16.865400px;}
.ws6{word-spacing:-16.822200px;}
.ws10{word-spacing:-16.712400px;}
.wsd{word-spacing:-16.669200px;}
.wsf{word-spacing:-16.560000px;}
.ws1d{word-spacing:-16.145400px;}
.ws16{word-spacing:-15.840000px;}
.ws19{word-spacing:-15.453600px;}
.ws14{word-spacing:-15.426000px;}
.ws11{word-spacing:-15.300000px;}
.ws1a{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.140000px;}
.ws17{word-spacing:-12.329400px;}
.ws18{word-spacing:-12.241200px;}
.wsb{word-spacing:-12.060000px;}
.ws9{word-spacing:-11.969400px;}
.ws12{word-spacing:-11.700000px;}
.wsc{word-spacing:-11.521200px;}
.ws7{word-spacing:-10.440000px;}
.ws13{word-spacing:-10.260000px;}
.ws1{word-spacing:-9.792000px;}
.ws8{word-spacing:-9.720000px;}
.wse{word-spacing:-9.000000px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-11.935680px;}
._2{margin-left:-9.678240px;}
._2c{margin-left:-7.511040px;}
._f{margin-left:-5.646240px;}
._c{margin-left:-4.519200px;}
._0{margin-left:-3.402000px;}
._5{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._4{width:1.115040px;}
._d{width:2.836800px;}
._8{width:3.841920px;}
._9{width:5.140800px;}
._2a{width:6.145920px;}
._6{width:7.153920px;}
._10{width:8.599680px;}
._7{width:9.967680px;}
._b{width:11.478240px;}
._a{width:12.651840px;}
._12{width:13.722720px;}
._11{width:15.220800px;}
._27{width:16.639920px;}
._19{width:18.149760px;}
._16{width:19.607040px;}
._15{width:21.012000px;}
._17{width:22.786560px;}
._e{width:24.508800px;}
._13{width:25.608000px;}
._26{width:26.654880px;}
._1b{width:27.797280px;}
._1a{width:28.814400px;}
._21{width:29.975040px;}
._18{width:31.132800px;}
._23{width:32.220960px;}
._1f{width:33.318720px;}
._20{width:34.378560px;}
._28{width:36.630720px;}
._29{width:38.327040px;}
._2b{width:39.740160px;}
._22{width:41.400000px;}
._1d{width:42.989760px;}
._1e{width:44.115840px;}
._1c{width:46.647840px;}
._14{width:48.090240px;}
._24{width:49.359840px;}
._25{width:50.570880px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs6{font-size:18.000000px;}
.fs9{font-size:30.240000px;}
.fs1{font-size:36.000000px;}
.fsd{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fsb{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs2{font-size:102.240000px;}
.fs3{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.yef{bottom:55.260000px;}
.y85{bottom:55.440000px;}
.y4f{bottom:62.640000px;}
.y1{bottom:96.300000px;}
.yb8{bottom:110.880000px;}
.yee{bottom:115.200000px;}
.y14a{bottom:118.080000px;}
.y12b{bottom:118.620000px;}
.y123{bottom:123.480000px;}
.yb7{bottom:124.560000px;}
.y15d{bottom:126.720000px;}
.y84{bottom:130.680000px;}
.yed{bottom:134.100000px;}
.y149{bottom:136.980000px;}
.y12a{bottom:137.700000px;}
.yb6{bottom:138.420000px;}
.y122{bottom:140.760000px;}
.y77{bottom:141.120000px;}
.y15c{bottom:145.620000px;}
.y83{bottom:149.760000px;}
.yb5{bottom:152.280000px;}
.yec{bottom:153.180000px;}
.y148{bottom:156.060000px;}
.y129{bottom:156.600000px;}
.y121{bottom:158.040000px;}
.y76{bottom:160.020000px;}
.y15b{bottom:164.700000px;}
.yb4{bottom:166.680000px;}
.y82{bottom:168.660000px;}
.yeb{bottom:172.080000px;}
.yb3{bottom:174.240000px;}
.y147{bottom:174.960000px;}
.y120{bottom:175.320000px;}
.y128{bottom:175.500000px;}
.y75{bottom:179.100000px;}
.y15a{bottom:183.600000px;}
.y36{bottom:186.120000px;}
.yb2{bottom:186.480000px;}
.y81{bottom:187.560000px;}
.yea{bottom:191.160000px;}
.y11f{bottom:192.600000px;}
.y146{bottom:193.860000px;}
.y127{bottom:194.580000px;}
.y4d{bottom:194.760000px;}
.y74{bottom:198.000000px;}
.y159{bottom:202.500000px;}
.y35{bottom:205.200000px;}
.y80{bottom:206.670000px;}
.y11e{bottom:209.730000px;}
.ye9{bottom:210.090000px;}
.y145{bottom:212.970000px;}
.yb1{bottom:213.510000px;}
.y4c{bottom:213.870000px;}
.y73{bottom:216.930000px;}
.y158{bottom:221.610000px;}
.y34{bottom:224.130000px;}
.y7f{bottom:225.570000px;}
.y11d{bottom:227.010000px;}
.ye8{bottom:228.990000px;}
.y144{bottom:231.870000px;}
.yb0{bottom:232.590000px;}
.y4b{bottom:232.770000px;}
.y72{bottom:236.010000px;}
.y157{bottom:240.510000px;}
.y33{bottom:243.210000px;}
.y11c{bottom:244.290000px;}
.y7e{bottom:244.650000px;}
.ye7{bottom:248.070000px;}
.y143{bottom:250.950000px;}
.yaf{bottom:251.490000px;}
.y4a{bottom:251.670000px;}
.y71{bottom:254.910000px;}
.y156{bottom:259.590000px;}
.y32{bottom:262.110000px;}
.y11b{bottom:262.290000px;}
.y7d{bottom:263.550000px;}
.ye6{bottom:266.970000px;}
.y142{bottom:269.850000px;}
.yae{bottom:270.390000px;}
.y49{bottom:270.750000px;}
.y70{bottom:273.990000px;}
.y155{bottom:278.490000px;}
.y31{bottom:281.010000px;}
.y7c{bottom:282.450000px;}
.y11a{bottom:282.990000px;}
.ye5{bottom:286.050000px;}
.y141{bottom:288.750000px;}
.yad{bottom:289.470000px;}
.y48{bottom:289.650000px;}
.y6f{bottom:292.890000px;}
.y154{bottom:297.390000px;}
.y30{bottom:300.090000px;}
.y7b{bottom:301.530000px;}
.y119{bottom:303.690000px;}
.ye4{bottom:304.950000px;}
.y140{bottom:307.830000px;}
.yac{bottom:308.370000px;}
.y47{bottom:308.730000px;}
.y6e{bottom:311.790000px;}
.y153{bottom:316.470000px;}
.y2f{bottom:318.990000px;}
.y7a{bottom:320.430000px;}
.ye3{bottom:323.850000px;}
.y118{bottom:324.390000px;}
.y13f{bottom:326.730000px;}
.yab{bottom:327.450000px;}
.y46{bottom:327.630000px;}
.y6d{bottom:330.870000px;}
.y152{bottom:335.370000px;}
.y2e{bottom:338.070000px;}
.y79{bottom:339.510000px;}
.ye2{bottom:342.930000px;}
.y117{bottom:345.090000px;}
.y13e{bottom:345.810000px;}
.yaa{bottom:346.350000px;}
.y45{bottom:346.710000px;}
.y6c{bottom:347.610000px;}
.y151{bottom:354.450000px;}
.y2d{bottom:356.970000px;}
.y6b{bottom:358.050000px;}
.y78{bottom:358.410000px;}
.ye1{bottom:361.830000px;}
.y13d{bottom:364.710000px;}
.ya9{bottom:365.250000px;}
.y44{bottom:365.610000px;}
.y116{bottom:365.790000px;}
.y150{bottom:373.350000px;}
.y2c{bottom:375.870000px;}
.ye0{bottom:380.910000px;}
.y13c{bottom:383.790000px;}
.ya8{bottom:384.330000px;}
.y43{bottom:384.510000px;}
.y115{bottom:386.490000px;}
.y14f{bottom:392.250000px;}
.y2b{bottom:394.950000px;}
.y6a{bottom:398.190000px;}
.ydf{bottom:399.810000px;}
.y13b{bottom:402.690000px;}
.ya7{bottom:403.230000px;}
.y42{bottom:403.590000px;}
.y114{bottom:407.190000px;}
.y14e{bottom:411.330000px;}
.y2a{bottom:413.850000px;}
.y69{bottom:417.090000px;}
.yde{bottom:418.710000px;}
.y13a{bottom:421.590000px;}
.ya6{bottom:422.310000px;}
.y41{bottom:422.490000px;}
.y113{bottom:427.890000px;}
.y14d{bottom:430.230000px;}
.y29{bottom:432.930000px;}
.y68{bottom:435.990000px;}
.ydd{bottom:437.790000px;}
.y139{bottom:440.670000px;}
.ya5{bottom:441.255000px;}
.y40{bottom:441.615000px;}
.y112{bottom:448.635000px;}
.y14c{bottom:449.355000px;}
.y28{bottom:451.875000px;}
.y67{bottom:455.115000px;}
.ydc{bottom:456.735000px;}
.y138{bottom:457.455000px;}
.ya4{bottom:460.155000px;}
.y3f{bottom:460.515000px;}
.y137{bottom:467.895000px;}
.y14b{bottom:468.255000px;}
.y111{bottom:469.335000px;}
.y27{bottom:470.775000px;}
.y66{bottom:474.015000px;}
.ydb{bottom:475.815000px;}
.ya3{bottom:479.235000px;}
.y3e{bottom:479.415000px;}
.y136{bottom:486.795000px;}
.y26{bottom:489.855000px;}
.y110{bottom:490.035000px;}
.y65{bottom:493.095000px;}
.yda{bottom:494.715000px;}
.ya2{bottom:498.135000px;}
.y3d{bottom:498.495000px;}
.y135{bottom:502.635000px;}
.y25{bottom:508.755000px;}
.y10f{bottom:510.735000px;}
.y64{bottom:511.995000px;}
.y134{bottom:513.435000px;}
.yd9{bottom:513.795000px;}
.ya1{bottom:517.215000px;}
.y3c{bottom:517.395000px;}
.y24{bottom:527.835000px;}
.y133{bottom:530.715000px;}
.y63{bottom:530.895000px;}
.yd8{bottom:532.695000px;}
.ya0{bottom:536.115000px;}
.y3b{bottom:536.475000px;}
.y23{bottom:546.735000px;}
.y132{bottom:547.995000px;}
.y10e{bottom:549.255000px;}
.y62{bottom:549.975000px;}
.yd7{bottom:551.595000px;}
.y9f{bottom:555.195000px;}
.y3a{bottom:555.375000px;}
.y10d{bottom:564.735000px;}
.y131{bottom:565.095000px;}
.y22{bottom:565.815000px;}
.y61{bottom:568.875000px;}
.yd6{bottom:570.675000px;}
.y9e{bottom:574.095000px;}
.y39{bottom:574.275000px;}
.y10c{bottom:580.215000px;}
.y130{bottom:582.375000px;}
.y21{bottom:584.715000px;}
.y60{bottom:587.955000px;}
.yd5{bottom:589.575000px;}
.y9d{bottom:592.995000px;}
.y38{bottom:593.355000px;}
.y10b{bottom:596.955000px;}
.y12c{bottom:597.135000px;}
.y12f{bottom:599.655000px;}
.y20{bottom:601.455000px;}
.y163{bottom:606.495000px;}
.y5f{bottom:606.855000px;}
.yd4{bottom:608.655000px;}
.y1f{bottom:611.895000px;}
.y9c{bottom:612.075000px;}
.y37{bottom:612.255000px;}
.y162{bottom:616.755000px;}
.y12e{bottom:616.935000px;}
.y10a{bottom:617.655000px;}
.y5e{bottom:625.755000px;}
.yd3{bottom:627.555000px;}
.y9b{bottom:630.975000px;}
.y1e{bottom:631.335000px;}
.y12d{bottom:633.315000px;}
.y161{bottom:636.195000px;}
.y109{bottom:637.635000px;}
.y5d{bottom:644.835000px;}
.yd2{bottom:646.455000px;}
.y9a{bottom:650.055000px;}
.y1d{bottom:650.235000px;}
.y108{bottom:654.915000px;}
.y160{bottom:656.895000px;}
.y5c{bottom:663.735000px;}
.yd1{bottom:665.535000px;}
.y99{bottom:668.955000px;}
.y1c{bottom:669.135000px;}
.y15f{bottom:673.815000px;}
.y107{bottom:679.065000px;}
.y5b{bottom:682.845000px;}
.y15e{bottom:684.105000px;}
.yd0{bottom:684.465000px;}
.y98{bottom:687.885000px;}
.y1b{bottom:688.245000px;}
.y106{bottom:696.165000px;}
.y5a{bottom:701.745000px;}
.ycf{bottom:703.545000px;}
.y1a{bottom:706.785000px;}
.y97{bottom:706.965000px;}
.y105{bottom:715.605000px;}
.y59{bottom:720.645000px;}
.yce{bottom:722.445000px;}
.y126{bottom:724.785000px;}
.y95{bottom:725.865000px;}
.y19{bottom:726.225000px;}
.y104{bottom:728.025000px;}
.y96{bottom:733.425000px;}
.y125{bottom:739.365000px;}
.y58{bottom:739.725000px;}
.ycd{bottom:741.345000px;}
.y94{bottom:744.945000px;}
.y18{bottom:745.125000px;}
.y103{bottom:748.725000px;}
.y124{bottom:756.645000px;}
.y57{bottom:758.625000px;}
.ycc{bottom:760.425000px;}
.y93{bottom:763.845000px;}
.y17{bottom:764.025000px;}
.y102{bottom:769.425000px;}
.y56{bottom:777.705000px;}
.ycb{bottom:779.325000px;}
.y92{bottom:782.745000px;}
.y16{bottom:783.105000px;}
.y101{bottom:790.125000px;}
.y55{bottom:796.605000px;}
.yca{bottom:798.405000px;}
.y91{bottom:801.825000px;}
.y15{bottom:802.005000px;}
.y100{bottom:810.825000px;}
.y54{bottom:815.505000px;}
.yc9{bottom:817.305000px;}
.y90{bottom:820.725000px;}
.y14{bottom:821.085000px;}
.yff{bottom:831.525000px;}
.y53{bottom:834.585000px;}
.yc8{bottom:836.205000px;}
.y8f{bottom:839.805000px;}
.y13{bottom:839.985000px;}
.yfe{bottom:852.225000px;}
.y52{bottom:853.305000px;}
.yc7{bottom:855.285000px;}
.y8e{bottom:858.705000px;}
.y12{bottom:859.065000px;}
.y51{bottom:870.225000px;}
.yfd{bottom:872.925000px;}
.yc6{bottom:874.185000px;}
.y8d{bottom:877.605000px;}
.y11{bottom:877.965000px;}
.yc5{bottom:893.265000px;}
.yfc{bottom:893.625000px;}
.y8c{bottom:896.685000px;}
.y10{bottom:896.865000px;}
.yc4{bottom:912.210000px;}
.yfb{bottom:914.370000px;}
.y8b{bottom:914.730000px;}
.yf{bottom:915.990000px;}
.y8a{bottom:929.130000px;}
.yc3{bottom:931.290000px;}
.ye{bottom:934.890000px;}
.yfa{bottom:935.070000px;}
.y89{bottom:946.410000px;}
.yc2{bottom:950.190000px;}
.yd{bottom:953.970000px;}
.yf9{bottom:955.770000px;}
.y88{bottom:963.690000px;}
.yc1{bottom:969.090000px;}
.yc{bottom:972.510000px;}
.yf8{bottom:976.110000px;}
.yc0{bottom:988.170000px;}
.yf7{bottom:994.290000px;}
.yb{bottom:1000.050000px;}
.ybf{bottom:1007.070000px;}
.yf6{bottom:1009.770000px;}
.yf5{bottom:1025.250000px;}
.ybe{bottom:1026.150000px;}
.ya{bottom:1033.170000px;}
.yf4{bottom:1041.990000px;}
.ybd{bottom:1045.050000px;}
.y9{bottom:1049.910000px;}
.yf3{bottom:1062.330000px;}
.y8{bottom:1062.690000px;}
.ybc{bottom:1063.950000px;}
.y7{bottom:1065.210000px;}
.y6{bottom:1072.410000px;}
.yf2{bottom:1081.050000px;}
.ybb{bottom:1083.030000px;}
.y5{bottom:1085.910000px;}
.y4{bottom:1094.550000px;}
.yf1{bottom:1098.690000px;}
.y87{bottom:1101.570000px;}
.yba{bottom:1101.930000px;}
.y3{bottom:1119.390000px;}
.yf0{bottom:1119.750000px;}
.y86{bottom:1120.650000px;}
.yb9{bottom:1121.010000px;}
.y50{bottom:1127.850000px;}
.y2{bottom:1154.880000px;}
.y4e{bottom:1161.540000px;}
.h8{height:4.021875px;}
.h1a{height:4.064063px;}
.h6{height:12.568359px;}
.h1b{height:21.114844px;}
.he{height:21.336328px;}
.h18{height:27.147656px;}
.h14{height:29.464453px;}
.h12{height:33.683203px;}
.h19{height:34.036523px;}
.h7{height:37.705078px;}
.h9{height:41.726953px;}
.h11{height:42.164648px;}
.hc{height:46.251562px;}
.hb{height:46.736719px;}
.h2{height:48.896719px;}
.h10{height:50.273438px;}
.h16{height:50.800781px;}
.hf{height:52.628906px;}
.h5{height:54.295313px;}
.hd{height:54.864844px;}
.h15{height:59.398594px;}
.h17{height:66.803203px;}
.h3{height:71.388281px;}
.h4{height:87.978516px;}
.ha{height:88.901367px;}
.h13{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.960000px;}
.x12{left:90.216000px;}
.x1a{left:105.336000px;}
.xf{left:133.954125px;}
.x10{left:139.176000px;}
.x15{left:171.750000px;}
.x8{left:172.830000px;}
.x9{left:192.990000px;}
.x2{left:207.750000px;}
.x13{left:257.610000px;}
.xa{left:274.035000px;}
.x11{left:301.035000px;}
.x6{left:347.655000px;}
.x4{left:376.995000px;}
.x5{left:393.735000px;}
.x7{left:401.295000px;}
.xd{left:438.915000px;}
.x3{left:446.145000px;}
.xb{left:462.705000px;}
.x19{left:467.925000px;}
.xe{left:559.545000px;}
.x14{left:635.370000px;}
.x16{left:654.628125px;}
.x17{left:659.850000px;}
.x18{left:678.750000px;}
.xc{left:702.330000px;}
@media print{
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:26.880000pt;}
.v4{vertical-align:29.440000pt;}
.ls1b{letter-spacing:-1.600000pt;}
.ls18{letter-spacing:-1.280000pt;}
.ls23{letter-spacing:-1.008000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.544000pt;}
.ls17{letter-spacing:-0.504533pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.478933pt;}
.ls2b{letter-spacing:-0.406933pt;}
.ls2a{letter-spacing:-0.368533pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.080533pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015360pt;}
.lse{letter-spacing:0.079360pt;}
.ls1a{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.097067pt;}
.lsd{letter-spacing:0.097280pt;}
.ls27{letter-spacing:0.120533pt;}
.ls19{letter-spacing:0.135467pt;}
.ls10{letter-spacing:0.135680pt;}
.ls9{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.161067pt;}
.ls13{letter-spacing:0.161280pt;}
.lsb{letter-spacing:0.233067pt;}
.ls25{letter-spacing:0.239467pt;}
.ls7{letter-spacing:0.271467pt;}
.ls11{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.456533pt;}
.ls6{letter-spacing:0.618667pt;}
.lsc{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.647680pt;}
.ls5{letter-spacing:0.704000pt;}
.ls12{letter-spacing:1.280000pt;}
.ls20{letter-spacing:4.480000pt;}
.ls1f{letter-spacing:6.080000pt;}
.ls2{letter-spacing:8.960000pt;}
.lsf{letter-spacing:9.920000pt;}
.ls22{letter-spacing:12.320000pt;}
.ls1d{letter-spacing:12.800000pt;}
.ls1e{letter-spacing:18.240000pt;}
.ls28{letter-spacing:18.560000pt;}
.ls21{letter-spacing:19.520000pt;}
.ws1b{word-spacing:-53.120000pt;}
.wsa{word-spacing:-42.880000pt;}
.ws15{word-spacing:-37.120000pt;}
.ws2{word-spacing:-17.898667pt;}
.ws5{word-spacing:-15.936000pt;}
.ws1c{word-spacing:-15.360000pt;}
.ws3{word-spacing:-14.991467pt;}
.ws6{word-spacing:-14.953067pt;}
.ws10{word-spacing:-14.855467pt;}
.wsd{word-spacing:-14.817067pt;}
.wsf{word-spacing:-14.720000pt;}
.ws1d{word-spacing:-14.351467pt;}
.ws16{word-spacing:-14.080000pt;}
.ws19{word-spacing:-13.736533pt;}
.ws14{word-spacing:-13.712000pt;}
.ws11{word-spacing:-13.600000pt;}
.ws1a{word-spacing:-13.280000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws17{word-spacing:-10.959467pt;}
.ws18{word-spacing:-10.881067pt;}
.wsb{word-spacing:-10.720000pt;}
.ws9{word-spacing:-10.639467pt;}
.ws12{word-spacing:-10.400000pt;}
.wsc{word-spacing:-10.241067pt;}
.ws7{word-spacing:-9.280000pt;}
.ws13{word-spacing:-9.120000pt;}
.ws1{word-spacing:-8.704000pt;}
.ws8{word-spacing:-8.640000pt;}
.wse{word-spacing:-8.000000pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-10.609493pt;}
._2{margin-left:-8.602880pt;}
._2c{margin-left:-6.676480pt;}
._f{margin-left:-5.018880pt;}
._c{margin-left:-4.017067pt;}
._0{margin-left:-3.024000pt;}
._5{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._4{width:0.991147pt;}
._d{width:2.521600pt;}
._8{width:3.415040pt;}
._9{width:4.569600pt;}
._2a{width:5.463040pt;}
._6{width:6.359040pt;}
._10{width:7.644160pt;}
._7{width:8.860160pt;}
._b{width:10.202880pt;}
._a{width:11.246080pt;}
._12{width:12.197973pt;}
._11{width:13.529600pt;}
._27{width:14.791040pt;}
._19{width:16.133120pt;}
._16{width:17.428480pt;}
._15{width:18.677333pt;}
._17{width:20.254720pt;}
._e{width:21.785600pt;}
._13{width:22.762667pt;}
._26{width:23.693227pt;}
._1b{width:24.708693pt;}
._1a{width:25.612800pt;}
._21{width:26.644480pt;}
._18{width:27.673600pt;}
._23{width:28.640853pt;}
._1f{width:29.616640pt;}
._20{width:30.558720pt;}
._28{width:32.560640pt;}
._29{width:34.068480pt;}
._2b{width:35.324587pt;}
._22{width:36.800000pt;}
._1d{width:38.213120pt;}
._1e{width:39.214080pt;}
._1c{width:41.464747pt;}
._14{width:42.746880pt;}
._24{width:43.875413pt;}
._25{width:44.951893pt;}
.fs7{font-size:5.120000pt;}
.fs6{font-size:16.000000pt;}
.fs9{font-size:26.880000pt;}
.fs1{font-size:32.000000pt;}
.fsd{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fsb{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs2{font-size:90.880000pt;}
.fs3{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.yef{bottom:49.120000pt;}
.y85{bottom:49.280000pt;}
.y4f{bottom:55.680000pt;}
.y1{bottom:85.600000pt;}
.yb8{bottom:98.560000pt;}
.yee{bottom:102.400000pt;}
.y14a{bottom:104.960000pt;}
.y12b{bottom:105.440000pt;}
.y123{bottom:109.760000pt;}
.yb7{bottom:110.720000pt;}
.y15d{bottom:112.640000pt;}
.y84{bottom:116.160000pt;}
.yed{bottom:119.200000pt;}
.y149{bottom:121.760000pt;}
.y12a{bottom:122.400000pt;}
.yb6{bottom:123.040000pt;}
.y122{bottom:125.120000pt;}
.y77{bottom:125.440000pt;}
.y15c{bottom:129.440000pt;}
.y83{bottom:133.120000pt;}
.yb5{bottom:135.360000pt;}
.yec{bottom:136.160000pt;}
.y148{bottom:138.720000pt;}
.y129{bottom:139.200000pt;}
.y121{bottom:140.480000pt;}
.y76{bottom:142.240000pt;}
.y15b{bottom:146.400000pt;}
.yb4{bottom:148.160000pt;}
.y82{bottom:149.920000pt;}
.yeb{bottom:152.960000pt;}
.yb3{bottom:154.880000pt;}
.y147{bottom:155.520000pt;}
.y120{bottom:155.840000pt;}
.y128{bottom:156.000000pt;}
.y75{bottom:159.200000pt;}
.y15a{bottom:163.200000pt;}
.y36{bottom:165.440000pt;}
.yb2{bottom:165.760000pt;}
.y81{bottom:166.720000pt;}
.yea{bottom:169.920000pt;}
.y11f{bottom:171.200000pt;}
.y146{bottom:172.320000pt;}
.y127{bottom:172.960000pt;}
.y4d{bottom:173.120000pt;}
.y74{bottom:176.000000pt;}
.y159{bottom:180.000000pt;}
.y35{bottom:182.400000pt;}
.y80{bottom:183.706667pt;}
.y11e{bottom:186.426667pt;}
.ye9{bottom:186.746667pt;}
.y145{bottom:189.306667pt;}
.yb1{bottom:189.786667pt;}
.y4c{bottom:190.106667pt;}
.y73{bottom:192.826667pt;}
.y158{bottom:196.986667pt;}
.y34{bottom:199.226667pt;}
.y7f{bottom:200.506667pt;}
.y11d{bottom:201.786667pt;}
.ye8{bottom:203.546667pt;}
.y144{bottom:206.106667pt;}
.yb0{bottom:206.746667pt;}
.y4b{bottom:206.906667pt;}
.y72{bottom:209.786667pt;}
.y157{bottom:213.786667pt;}
.y33{bottom:216.186667pt;}
.y11c{bottom:217.146667pt;}
.y7e{bottom:217.466667pt;}
.ye7{bottom:220.506667pt;}
.y143{bottom:223.066667pt;}
.yaf{bottom:223.546667pt;}
.y4a{bottom:223.706667pt;}
.y71{bottom:226.586667pt;}
.y156{bottom:230.746667pt;}
.y32{bottom:232.986667pt;}
.y11b{bottom:233.146667pt;}
.y7d{bottom:234.266667pt;}
.ye6{bottom:237.306667pt;}
.y142{bottom:239.866667pt;}
.yae{bottom:240.346667pt;}
.y49{bottom:240.666667pt;}
.y70{bottom:243.546667pt;}
.y155{bottom:247.546667pt;}
.y31{bottom:249.786667pt;}
.y7c{bottom:251.066667pt;}
.y11a{bottom:251.546667pt;}
.ye5{bottom:254.266667pt;}
.y141{bottom:256.666667pt;}
.yad{bottom:257.306667pt;}
.y48{bottom:257.466667pt;}
.y6f{bottom:260.346667pt;}
.y154{bottom:264.346667pt;}
.y30{bottom:266.746667pt;}
.y7b{bottom:268.026667pt;}
.y119{bottom:269.946667pt;}
.ye4{bottom:271.066667pt;}
.y140{bottom:273.626667pt;}
.yac{bottom:274.106667pt;}
.y47{bottom:274.426667pt;}
.y6e{bottom:277.146667pt;}
.y153{bottom:281.306667pt;}
.y2f{bottom:283.546667pt;}
.y7a{bottom:284.826667pt;}
.ye3{bottom:287.866667pt;}
.y118{bottom:288.346667pt;}
.y13f{bottom:290.426667pt;}
.yab{bottom:291.066667pt;}
.y46{bottom:291.226667pt;}
.y6d{bottom:294.106667pt;}
.y152{bottom:298.106667pt;}
.y2e{bottom:300.506667pt;}
.y79{bottom:301.786667pt;}
.ye2{bottom:304.826667pt;}
.y117{bottom:306.746667pt;}
.y13e{bottom:307.386667pt;}
.yaa{bottom:307.866667pt;}
.y45{bottom:308.186667pt;}
.y6c{bottom:308.986667pt;}
.y151{bottom:315.066667pt;}
.y2d{bottom:317.306667pt;}
.y6b{bottom:318.266667pt;}
.y78{bottom:318.586667pt;}
.ye1{bottom:321.626667pt;}
.y13d{bottom:324.186667pt;}
.ya9{bottom:324.666667pt;}
.y44{bottom:324.986667pt;}
.y116{bottom:325.146667pt;}
.y150{bottom:331.866667pt;}
.y2c{bottom:334.106667pt;}
.ye0{bottom:338.586667pt;}
.y13c{bottom:341.146667pt;}
.ya8{bottom:341.626667pt;}
.y43{bottom:341.786667pt;}
.y115{bottom:343.546667pt;}
.y14f{bottom:348.666667pt;}
.y2b{bottom:351.066667pt;}
.y6a{bottom:353.946667pt;}
.ydf{bottom:355.386667pt;}
.y13b{bottom:357.946667pt;}
.ya7{bottom:358.426667pt;}
.y42{bottom:358.746667pt;}
.y114{bottom:361.946667pt;}
.y14e{bottom:365.626667pt;}
.y2a{bottom:367.866667pt;}
.y69{bottom:370.746667pt;}
.yde{bottom:372.186667pt;}
.y13a{bottom:374.746667pt;}
.ya6{bottom:375.386667pt;}
.y41{bottom:375.546667pt;}
.y113{bottom:380.346667pt;}
.y14d{bottom:382.426667pt;}
.y29{bottom:384.826667pt;}
.y68{bottom:387.546667pt;}
.ydd{bottom:389.146667pt;}
.y139{bottom:391.706667pt;}
.ya5{bottom:392.226667pt;}
.y40{bottom:392.546667pt;}
.y112{bottom:398.786667pt;}
.y14c{bottom:399.426667pt;}
.y28{bottom:401.666667pt;}
.y67{bottom:404.546667pt;}
.ydc{bottom:405.986667pt;}
.y138{bottom:406.626667pt;}
.ya4{bottom:409.026667pt;}
.y3f{bottom:409.346667pt;}
.y137{bottom:415.906667pt;}
.y14b{bottom:416.226667pt;}
.y111{bottom:417.186667pt;}
.y27{bottom:418.466667pt;}
.y66{bottom:421.346667pt;}
.ydb{bottom:422.946667pt;}
.ya3{bottom:425.986667pt;}
.y3e{bottom:426.146667pt;}
.y136{bottom:432.706667pt;}
.y26{bottom:435.426667pt;}
.y110{bottom:435.586667pt;}
.y65{bottom:438.306667pt;}
.yda{bottom:439.746667pt;}
.ya2{bottom:442.786667pt;}
.y3d{bottom:443.106667pt;}
.y135{bottom:446.786667pt;}
.y25{bottom:452.226667pt;}
.y10f{bottom:453.986667pt;}
.y64{bottom:455.106667pt;}
.y134{bottom:456.386667pt;}
.yd9{bottom:456.706667pt;}
.ya1{bottom:459.746667pt;}
.y3c{bottom:459.906667pt;}
.y24{bottom:469.186667pt;}
.y133{bottom:471.746667pt;}
.y63{bottom:471.906667pt;}
.yd8{bottom:473.506667pt;}
.ya0{bottom:476.546667pt;}
.y3b{bottom:476.866667pt;}
.y23{bottom:485.986667pt;}
.y132{bottom:487.106667pt;}
.y10e{bottom:488.226667pt;}
.y62{bottom:488.866667pt;}
.yd7{bottom:490.306667pt;}
.y9f{bottom:493.506667pt;}
.y3a{bottom:493.666667pt;}
.y10d{bottom:501.986667pt;}
.y131{bottom:502.306667pt;}
.y22{bottom:502.946667pt;}
.y61{bottom:505.666667pt;}
.yd6{bottom:507.266667pt;}
.y9e{bottom:510.306667pt;}
.y39{bottom:510.466667pt;}
.y10c{bottom:515.746667pt;}
.y130{bottom:517.666667pt;}
.y21{bottom:519.746667pt;}
.y60{bottom:522.626667pt;}
.yd5{bottom:524.066667pt;}
.y9d{bottom:527.106667pt;}
.y38{bottom:527.426667pt;}
.y10b{bottom:530.626667pt;}
.y12c{bottom:530.786667pt;}
.y12f{bottom:533.026667pt;}
.y20{bottom:534.626667pt;}
.y163{bottom:539.106667pt;}
.y5f{bottom:539.426667pt;}
.yd4{bottom:541.026667pt;}
.y1f{bottom:543.906667pt;}
.y9c{bottom:544.066667pt;}
.y37{bottom:544.226667pt;}
.y162{bottom:548.226667pt;}
.y12e{bottom:548.386667pt;}
.y10a{bottom:549.026667pt;}
.y5e{bottom:556.226667pt;}
.yd3{bottom:557.826667pt;}
.y9b{bottom:560.866667pt;}
.y1e{bottom:561.186667pt;}
.y12d{bottom:562.946667pt;}
.y161{bottom:565.506667pt;}
.y109{bottom:566.786667pt;}
.y5d{bottom:573.186667pt;}
.yd2{bottom:574.626667pt;}
.y9a{bottom:577.826667pt;}
.y1d{bottom:577.986667pt;}
.y108{bottom:582.146667pt;}
.y160{bottom:583.906667pt;}
.y5c{bottom:589.986667pt;}
.yd1{bottom:591.586667pt;}
.y99{bottom:594.626667pt;}
.y1c{bottom:594.786667pt;}
.y15f{bottom:598.946667pt;}
.y107{bottom:603.613333pt;}
.y5b{bottom:606.973333pt;}
.y15e{bottom:608.093333pt;}
.yd0{bottom:608.413333pt;}
.y98{bottom:611.453333pt;}
.y1b{bottom:611.773333pt;}
.y106{bottom:618.813333pt;}
.y5a{bottom:623.773333pt;}
.ycf{bottom:625.373333pt;}
.y1a{bottom:628.253333pt;}
.y97{bottom:628.413333pt;}
.y105{bottom:636.093333pt;}
.y59{bottom:640.573333pt;}
.yce{bottom:642.173333pt;}
.y126{bottom:644.253333pt;}
.y95{bottom:645.213333pt;}
.y19{bottom:645.533333pt;}
.y104{bottom:647.133333pt;}
.y96{bottom:651.933333pt;}
.y125{bottom:657.213333pt;}
.y58{bottom:657.533333pt;}
.ycd{bottom:658.973333pt;}
.y94{bottom:662.173333pt;}
.y18{bottom:662.333333pt;}
.y103{bottom:665.533333pt;}
.y124{bottom:672.573333pt;}
.y57{bottom:674.333333pt;}
.ycc{bottom:675.933333pt;}
.y93{bottom:678.973333pt;}
.y17{bottom:679.133333pt;}
.y102{bottom:683.933333pt;}
.y56{bottom:691.293333pt;}
.ycb{bottom:692.733333pt;}
.y92{bottom:695.773333pt;}
.y16{bottom:696.093333pt;}
.y101{bottom:702.333333pt;}
.y55{bottom:708.093333pt;}
.yca{bottom:709.693333pt;}
.y91{bottom:712.733333pt;}
.y15{bottom:712.893333pt;}
.y100{bottom:720.733333pt;}
.y54{bottom:724.893333pt;}
.yc9{bottom:726.493333pt;}
.y90{bottom:729.533333pt;}
.y14{bottom:729.853333pt;}
.yff{bottom:739.133333pt;}
.y53{bottom:741.853333pt;}
.yc8{bottom:743.293333pt;}
.y8f{bottom:746.493333pt;}
.y13{bottom:746.653333pt;}
.yfe{bottom:757.533333pt;}
.y52{bottom:758.493333pt;}
.yc7{bottom:760.253333pt;}
.y8e{bottom:763.293333pt;}
.y12{bottom:763.613333pt;}
.y51{bottom:773.533333pt;}
.yfd{bottom:775.933333pt;}
.yc6{bottom:777.053333pt;}
.y8d{bottom:780.093333pt;}
.y11{bottom:780.413333pt;}
.yc5{bottom:794.013333pt;}
.yfc{bottom:794.333333pt;}
.y8c{bottom:797.053333pt;}
.y10{bottom:797.213333pt;}
.yc4{bottom:810.853333pt;}
.yfb{bottom:812.773333pt;}
.y8b{bottom:813.093333pt;}
.yf{bottom:814.213333pt;}
.y8a{bottom:825.893333pt;}
.yc3{bottom:827.813333pt;}
.ye{bottom:831.013333pt;}
.yfa{bottom:831.173333pt;}
.y89{bottom:841.253333pt;}
.yc2{bottom:844.613333pt;}
.yd{bottom:847.973333pt;}
.yf9{bottom:849.573333pt;}
.y88{bottom:856.613333pt;}
.yc1{bottom:861.413333pt;}
.yc{bottom:864.453333pt;}
.yf8{bottom:867.653333pt;}
.yc0{bottom:878.373333pt;}
.yf7{bottom:883.813333pt;}
.yb{bottom:888.933333pt;}
.ybf{bottom:895.173333pt;}
.yf6{bottom:897.573333pt;}
.yf5{bottom:911.333333pt;}
.ybe{bottom:912.133333pt;}
.ya{bottom:918.373333pt;}
.yf4{bottom:926.213333pt;}
.ybd{bottom:928.933333pt;}
.y9{bottom:933.253333pt;}
.yf3{bottom:944.293333pt;}
.y8{bottom:944.613333pt;}
.ybc{bottom:945.733333pt;}
.y7{bottom:946.853333pt;}
.y6{bottom:953.253333pt;}
.yf2{bottom:960.933333pt;}
.ybb{bottom:962.693333pt;}
.y5{bottom:965.253333pt;}
.y4{bottom:972.933333pt;}
.yf1{bottom:976.613333pt;}
.y87{bottom:979.173333pt;}
.yba{bottom:979.493333pt;}
.y3{bottom:995.013333pt;}
.yf0{bottom:995.333333pt;}
.y86{bottom:996.133333pt;}
.yb9{bottom:996.453333pt;}
.y50{bottom:1002.533333pt;}
.y2{bottom:1026.560000pt;}
.y4e{bottom:1032.480000pt;}
.h8{height:3.575000pt;}
.h1a{height:3.612500pt;}
.h6{height:11.171875pt;}
.h1b{height:18.768750pt;}
.he{height:18.965625pt;}
.h18{height:24.131250pt;}
.h14{height:26.190625pt;}
.h12{height:29.940625pt;}
.h19{height:30.254687pt;}
.h7{height:33.515625pt;}
.h9{height:37.090625pt;}
.h11{height:37.479688pt;}
.hc{height:41.112500pt;}
.hb{height:41.543750pt;}
.h2{height:43.463750pt;}
.h10{height:44.687500pt;}
.h16{height:45.156250pt;}
.hf{height:46.781250pt;}
.h5{height:48.262500pt;}
.hd{height:48.768750pt;}
.h15{height:52.798750pt;}
.h17{height:59.380625pt;}
.h3{height:63.456250pt;}
.h4{height:78.203125pt;}
.ha{height:79.023438pt;}
.h13{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.520000pt;}
.x12{left:80.192000pt;}
.x1a{left:93.632000pt;}
.xf{left:119.070333pt;}
.x10{left:123.712000pt;}
.x15{left:152.666667pt;}
.x8{left:153.626667pt;}
.x9{left:171.546667pt;}
.x2{left:184.666667pt;}
.x13{left:228.986667pt;}
.xa{left:243.586667pt;}
.x11{left:267.586667pt;}
.x6{left:309.026667pt;}
.x4{left:335.106667pt;}
.x5{left:349.986667pt;}
.x7{left:356.706667pt;}
.xd{left:390.146667pt;}
.x3{left:396.573333pt;}
.xb{left:411.293333pt;}
.x19{left:415.933333pt;}
.xe{left:497.373333pt;}
.x14{left:564.773333pt;}
.x16{left:581.891667pt;}
.x17{left:586.533333pt;}
.x18{left:603.333333pt;}
.xc{left:624.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; }
  