
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_26fb9f59d3802a7134167bd7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_d54d05d3f70a1a133f5198cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_7ee30b3480ca270e365c5036.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_e2ef44a92e3c1633b07f2300.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_21497591fa3466765ada29f0.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_eb9d500f20a4a9d0bbc016c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls24{letter-spacing:-0.246600px;}
.ls11{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.162000px;}
.ls8{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls23{letter-spacing:-0.092400px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.018360px;}
.ls17{letter-spacing:-0.015480px;}
.ls1a{letter-spacing:-0.014760px;}
.ls1c{letter-spacing:-0.006120px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls1d{letter-spacing:0.016200px;}
.ls19{letter-spacing:0.023040px;}
.ls1e{letter-spacing:0.041760px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls15{letter-spacing:0.050760px;}
.ls18{letter-spacing:0.060480px;}
.ls1b{letter-spacing:0.060600px;}
.lsc{letter-spacing:0.064800px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.098400px;}
.ls22{letter-spacing:0.113400px;}
.ls14{letter-spacing:0.115800px;}
.ls6{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls20{letter-spacing:47.726640px;}
.lsd{letter-spacing:63.566640px;}
.ls1f{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.342200px;}
.ws14{word-spacing:-13.339800px;}
.wsa{word-spacing:-13.324800px;}
.ws10{word-spacing:-13.287000px;}
.ws9{word-spacing:-13.275360px;}
.ws13{word-spacing:-13.268160px;}
.ws12{word-spacing:-13.242600px;}
.ws2{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.220280px;}
.wsf{word-spacing:-13.211640px;}
.wsb{word-spacing:-13.208040px;}
.ws15{word-spacing:-13.134000px;}
.wsd{word-spacing:-13.064400px;}
.ws7{word-spacing:-13.039800px;}
.ws16{word-spacing:-12.979800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wse{word-spacing:-8.553600px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._c{margin-left:-3.561600px;}
._5{margin-left:-2.209800px;}
._0{margin-left:-1.110000px;}
._3{width:1.157809px;}
._8{width:2.751000px;}
._6{width:3.967800px;}
._7{width:5.022002px;}
._11{width:6.417121px;}
._d{width:7.432680px;}
._9{width:9.018000px;}
._4{width:10.881600px;}
._10{width:11.899681px;}
._f{width:14.998802px;}
._e{width:16.051800px;}
._2{width:17.590224px;}
._12{width:18.663522px;}
._b{width:19.692001px;}
._a{width:20.709000px;}
._14{width:22.605120px;}
._1{width:29.945412px;}
._15{width:37.514880px;}
._16{width:74.909520px;}
._17{width:80.741160px;}
._18{width:81.883440px;}
._13{width:84.107880px;}
.fc3{color:rgb(255,255,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y8b{bottom:-999.600000px;}
.y0{bottom:0.000000px;}
.ya8{bottom:4.500000px;}
.ybe{bottom:5.580000px;}
.ya9{bottom:6.750000px;}
.yc0{bottom:7.830000px;}
.yac{bottom:7.920000px;}
.yd0{bottom:9.270000px;}
.ycd{bottom:9.990000px;}
.yad{bottom:10.170000px;}
.yaa{bottom:11.250000px;}
.yd3{bottom:15.480000px;}
.yd5{bottom:25.470000px;}
.yf0{bottom:35.190000px;}
.y102{bottom:35.220000px;}
.y106{bottom:35.280000px;}
.yfd{bottom:62.550000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.yf9{bottom:89.820000px;}
.y1{bottom:101.640000px;}
.y127{bottom:113.880000px;}
.y192{bottom:114.150000px;}
.yea{bottom:117.300000px;}
.ya6{bottom:125.490000px;}
.y126{bottom:131.520000px;}
.y191{bottom:131.700000px;}
.yf8{bottom:133.410000px;}
.y166{bottom:139.980000px;}
.y13d{bottom:140.070000px;}
.ya5{bottom:143.130000px;}
.yf3{bottom:144.540000px;}
.y125{bottom:149.070000px;}
.y25{bottom:156.630000px;}
.y165{bottom:157.620000px;}
.y190{bottom:158.250000px;}
.ya4{bottom:160.680000px;}
.y124{bottom:166.620000px;}
.y114{bottom:171.930000px;}
.y24{bottom:174.180000px;}
.y164{bottom:175.170000px;}
.y13c{bottom:175.620000px;}
.y18f{bottom:175.890000px;}
.ya3{bottom:178.230000px;}
.y123{bottom:184.260000px;}
.yfb{bottom:188.040000px;}
.ycb{bottom:189.390000px;}
.y23{bottom:191.820000px;}
.y18e{bottom:193.440000px;}
.y89{bottom:193.980000px;}
.ya2{bottom:195.870000px;}
.y122{bottom:201.810000px;}
.y71{bottom:203.160000px;}
.y13b{bottom:207.840000px;}
.y22{bottom:209.370000px;}
.y163{bottom:210.810000px;}
.ya1{bottom:213.420000px;}
.yfa{bottom:215.400000px;}
.y121{bottom:219.450000px;}
.y18d{bottom:220.080000px;}
.y70{bottom:220.710000px;}
.yca{bottom:225.030000px;}
.y21{bottom:227.010000px;}
.y162{bottom:228.360000px;}
.y88{bottom:229.620000px;}
.ya0{bottom:231.060000px;}
.y14f{bottom:232.770000px;}
.y18c{bottom:237.630000px;}
.y6f{bottom:238.260000px;}
.yf2{bottom:242.760000px;}
.y20{bottom:244.560000px;}
.y14c{bottom:245.730000px;}
.y161{bottom:245.910000px;}
.y87{bottom:247.170000px;}
.y11e{bottom:252.390000px;}
.y18b{bottom:255.180000px;}
.y6e{bottom:255.900000px;}
.y9f{bottom:257.610000px;}
.yc9{bottom:260.580000px;}
.y14b{bottom:263.280000px;}
.y86{bottom:264.810000px;}
.yf7{bottom:270.030000px;}
.y1f{bottom:271.470000px;}
.y6d{bottom:273.450000px;}
.ybb{bottom:274.530000px;}
.yc8{bottom:278.130000px;}
.y120{bottom:279.750000px;}
.y14a{bottom:280.830000px;}
.y160{bottom:281.550000px;}
.y18a{bottom:281.820000px;}
.y85{bottom:282.360000px;}
.y9e{bottom:293.160000px;}
.yc7{bottom:295.770000px;}
.y5c{bottom:297.210000px;}
.yf6{bottom:297.390000px;}
.y149{bottom:298.470000px;}
.y15f{bottom:299.100000px;}
.y189{bottom:299.370000px;}
.y84{bottom:299.910000px;}
.y11f{bottom:307.020000px;}
.y6c{bottom:309.000000px;}
.yba{bottom:310.170000px;}
.y9d{bottom:310.800000px;}
.yc6{bottom:313.320000px;}
.y5b{bottom:314.760000px;}
.y148{bottom:316.020000px;}
.y15e{bottom:316.740000px;}
.y83{bottom:317.550000px;}
.y1e{bottom:320.070000px;}
.yf5{bottom:324.750000px;}
.y188{bottom:326.010000px;}
.y6b{bottom:326.640000px;}
.yb9{bottom:327.720000px;}
.y9c{bottom:328.350000px;}
.yc5{bottom:330.960000px;}
.y5a{bottom:332.400000px;}
.y147{bottom:333.660000px;}
.y15d{bottom:334.290000px;}
.y11b{bottom:334.380000px;}
.y82{bottom:335.100000px;}
.y187{bottom:343.560000px;}
.y6a{bottom:344.190000px;}
.yb8{bottom:345.360000px;}
.y9b{bottom:345.990000px;}
.y59{bottom:349.950000px;}
.y146{bottom:351.210000px;}
.y15c{bottom:351.840000px;}
.yf4{bottom:352.020000px;}
.y1d{bottom:357.060000px;}
.yc4{bottom:357.510000px;}
.y186{bottom:361.110000px;}
.y11d{bottom:361.740000px;}
.y69{bottom:361.830000px;}
.yb7{bottom:362.910000px;}
.y9a{bottom:363.540000px;}
.y58{bottom:367.500000px;}
.y145{bottom:368.760000px;}
.y15b{bottom:369.480000px;}
.y81{bottom:370.740000px;}
.y1c{bottom:374.700000px;}
.y68{bottom:379.380000px;}
.yb6{bottom:380.460000px;}
.y99{bottom:381.090000px;}
.y144{bottom:386.400000px;}
.y185{bottom:387.750000px;}
.y80{bottom:388.290000px;}
.y11c{bottom:389.100000px;}
.yc3{bottom:393.060000px;}
.y67{bottom:396.930000px;}
.yb5{bottom:398.100000px;}
.y98{bottom:398.730000px;}
.y57{bottom:403.140000px;}
.y143{bottom:403.950000px;}
.y15a{bottom:405.030000px;}
.y184{bottom:405.300000px;}
.y7f{bottom:405.840000px;}
.yef{bottom:406.740000px;}
.y48{bottom:408.990000px;}
.y1b{bottom:410.250000px;}
.y66{bottom:414.570000px;}
.yb4{bottom:415.650000px;}
.y113{bottom:416.370000px;}
.y56{bottom:420.690000px;}
.y159{bottom:422.670000px;}
.y183{bottom:422.940000px;}
.y7e{bottom:423.480000px;}
.y1a{bottom:427.800000px;}
.yc2{bottom:427.980000px;}
.y65{bottom:432.120000px;}
.yb3{bottom:433.290000px;}
.yf1{bottom:434.100000px;}
.y97{bottom:434.280000px;}
.y55{bottom:438.330000px;}
.y142{bottom:439.500000px;}
.y158{bottom:440.220000px;}
.y7d{bottom:441.030000px;}
.yc1{bottom:442.740000px;}
.y11a{bottom:443.730000px;}
.y47{bottom:444.630000px;}
.y19{bottom:445.440000px;}
.y182{bottom:449.490000px;}
.yb2{bottom:450.840000px;}
.y54{bottom:455.880000px;}
.ybf{bottom:456.960000px;}
.y7c{bottom:458.670000px;}
.y64{bottom:458.760000px;}
.ye9{bottom:461.370000px;}
.y46{bottom:462.180000px;}
.y18{bottom:462.990000px;}
.y96{bottom:466.500000px;}
.y181{bottom:467.040000px;}
.yb1{bottom:468.390000px;}
.y119{bottom:471.120000px;}
.y53{bottom:473.460000px;}
.y157{bottom:475.800000px;}
.y7b{bottom:476.250000px;}
.y45{bottom:479.760000px;}
.y17{bottom:480.660000px;}
.y132{bottom:487.860000px;}
.yee{bottom:488.760000px;}
.y141{bottom:489.390000px;}
.y156{bottom:493.440000px;}
.y180{bottom:493.710000px;}
.y63{bottom:494.340000px;}
.y44{bottom:497.400000px;}
.y118{bottom:498.480000px;}
.y7a{bottom:503.160000px;}
.yb0{bottom:503.340000px;}
.y131{bottom:505.410000px;}
.y52{bottom:509.100000px;}
.y155{bottom:510.990000px;}
.y17f{bottom:511.260000px;}
.y62{bottom:511.890000px;}
.yed{bottom:516.120000px;}
.y16{bottom:516.210000px;}
.yaf{bottom:517.380000px;}
.y130{bottom:522.960000px;}
.y43{bottom:523.950000px;}
.y117{bottom:525.750000px;}
.y51{bottom:526.650000px;}
.y17e{bottom:528.900000px;}
.y61{bottom:529.530000px;}
.y15{bottom:533.760000px;}
.y12f{bottom:540.600000px;}
.yec{bottom:543.480000px;}
.y50{bottom:544.290000px;}
.y154{bottom:546.540000px;}
.y60{bottom:547.080000px;}
.yae{bottom:550.140000px;}
.y14{bottom:551.400000px;}
.y116{bottom:553.110000px;}
.y17d{bottom:555.450000px;}
.y12e{bottom:558.150000px;}
.y42{bottom:559.860000px;}
.y4f{bottom:561.840000px;}
.y153{bottom:564.180000px;}
.y5f{bottom:564.720000px;}
.y13{bottom:568.950000px;}
.y79{bottom:569.040000px;}
.yeb{bottom:570.750000px;}
.y17c{bottom:573.000000px;}
.yab{bottom:573.360000px;}
.y12d{bottom:575.790000px;}
.y4e{bottom:579.390000px;}
.y115{bottom:580.470000px;}
.y152{bottom:581.730000px;}
.y78{bottom:586.590000px;}
.y4d{bottom:597.030000px;}
.ye8{bottom:598.110000px;}
.y17b{bottom:599.640000px;}
.y5e{bottom:600.270000px;}
.y77{bottom:604.140000px;}
.y12{bottom:604.590000px;}
.y111{bottom:607.740000px;}
.y41{bottom:608.190000px;}
.y151{bottom:608.640000px;}
.y12c{bottom:611.340000px;}
.y13a{bottom:614.040000px;}
.y4c{bottom:614.580000px;}
.y17a{bottom:617.190000px;}
.y76{bottom:621.780000px;}
.y11{bottom:622.140000px;}
.y40{bottom:625.740000px;}
.y139{bottom:631.590000px;}
.yd2{bottom:631.770000px;}
.y4b{bottom:632.220000px;}
.y5d{bottom:632.490000px;}
.yd1{bottom:634.290000px;}
.y112{bottom:635.100000px;}
.y75{bottom:639.330000px;}
.y10{bottom:639.690000px;}
.y12b{bottom:643.560000px;}
.y179{bottom:643.830000px;}
.ye7{bottom:646.800000px;}
.y138{bottom:649.140000px;}
.y74{bottom:656.970000px;}
.yf{bottom:657.330000px;}
.y3f{bottom:661.290000px;}
.y178{bottom:661.380000px;}
.y110{bottom:662.460000px;}
.y14e{bottom:663.180000px;}
.y137{bottom:666.780000px;}
.y4a{bottom:667.770000px;}
.ye{bottom:674.880000px;}
.y3e{bottom:678.930000px;}
.ye6{bottom:682.440000px;}
.y136{bottom:684.330000px;}
.ybd{bottom:686.490000px;}
.y177{bottom:687.930000px;}
.y10e{bottom:689.820000px;}
.y73{bottom:692.520000px;}
.y14d{bottom:695.490000px;}
.y3d{bottom:696.480000px;}
.y150{bottom:697.740000px;}
.ye5{bottom:699.990000px;}
.yd{bottom:701.790000px;}
.y135{bottom:701.970000px;}
.y176{bottom:705.570000px;}
.y49{bottom:706.740000px;}
.y3c{bottom:714.120000px;}
.y10f{bottom:717.090000px;}
.ye4{bottom:717.540000px;}
.y72{bottom:724.740000px;}
.y3b{bottom:731.670000px;}
.y175{bottom:732.120000px;}
.y1a2{bottom:734.190000px;}
.ye3{bottom:735.180000px;}
.y134{bottom:737.520000px;}
.y108{bottom:744.450000px;}
.y3a{bottom:749.220000px;}
.y174{bottom:749.670000px;}
.yc{bottom:750.030000px;}
.y1a1{bottom:751.740000px;}
.ye2{bottom:752.730000px;}
.y173{bottom:767.310000px;}
.y133{bottom:769.740000px;}
.ye1{bottom:770.280000px;}
.y10d{bottom:771.810000px;}
.y1a0{bottom:778.290000px;}
.y39{bottom:784.860000px;}
.yb{bottom:785.850000px;}
.ye0{bottom:787.920000px;}
.y172{bottom:793.860000px;}
.y19f{bottom:795.930000px;}
.y10c{bottom:799.170000px;}
.y38{bottom:802.410000px;}
.ydf{bottom:805.470000px;}
.y171{bottom:811.500000px;}
.y37{bottom:820.770000px;}
.ya{bottom:821.850000px;}
.y19e{bottom:822.480000px;}
.yde{bottom:823.110000px;}
.y10b{bottom:826.440000px;}
.ycf{bottom:827.340000px;}
.y170{bottom:829.050000px;}
.ya7{bottom:836.610000px;}
.y36{bottom:839.220000px;}
.y19d{bottom:840.030000px;}
.ydd{bottom:849.660000px;}
.y10a{bottom:853.800000px;}
.y16f{bottom:855.600000px;}
.y19c{bottom:857.670000px;}
.y9{bottom:857.850000px;}
.y16e{bottom:873.240000px;}
.y35{bottom:875.670000px;}
.y8{bottom:875.850000px;}
.y109{bottom:881.160000px;}
.ydc{bottom:882.600000px;}
.y19b{bottom:884.220000px;}
.y16d{bottom:890.790000px;}
.y34{bottom:893.220000px;}
.y7{bottom:893.850000px;}
.y19a{bottom:901.860000px;}
.y105{bottom:908.430000px;}
.ydb{bottom:909.960000px;}
.y33{bottom:910.860000px;}
.y140{bottom:911.220000px;}
.ybc{bottom:915.990000px;}
.y16c{bottom:917.430000px;}
.y95{bottom:924.450000px;}
.y32{bottom:928.410000px;}
.y13f{bottom:928.860000px;}
.y6{bottom:929.940000px;}
.y16b{bottom:934.980000px;}
.y107{bottom:935.790000px;}
.yda{bottom:937.320000px;}
.y94{bottom:942.000000px;}
.y199{bottom:945.960000px;}
.y13e{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y93{bottom:959.550000px;}
.y16a{bottom:961.890000px;}
.y104{bottom:963.150000px;}
.y198{bottom:963.600000px;}
.y31{bottom:963.960000px;}
.yd9{bottom:964.680000px;}
.y92{bottom:977.190000px;}
.y30{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y197{bottom:990.150000px;}
.y101{bottom:990.510000px;}
.yd8{bottom:991.950000px;}
.y91{bottom:994.740000px;}
.y2f{bottom:999.150000px;}
.y196{bottom:1007.790000px;}
.y169{bottom:1010.160000px;}
.y3{bottom:1012.320000px;}
.y103{bottom:1017.810000px;}
.yd7{bottom:1019.340000px;}
.y90{bottom:1029.960000px;}
.y195{bottom:1034.370000px;}
.y2e{bottom:1034.820000px;}
.y168{bottom:1037.070000px;}
.y100{bottom:1045.170000px;}
.yd6{bottom:1046.700000px;}
.y8f{bottom:1047.510000px;}
.y12a{bottom:1051.920000px;}
.y2d{bottom:1052.370000px;}
.y194{bottom:1060.920000px;}
.y8e{bottom:1065.150000px;}
.y129{bottom:1069.560000px;}
.y2c{bottom:1069.920000px;}
.yfc{bottom:1072.530000px;}
.yd4{bottom:1073.970000px;}
.y167{bottom:1074.420000px;}
.y193{bottom:1078.560000px;}
.y128{bottom:1087.110000px;}
.y2b{bottom:1087.560000px;}
.y8d{bottom:1091.700000px;}
.yff{bottom:1099.890000px;}
.y2a{bottom:1105.110000px;}
.yce{bottom:1107.090000px;}
.ycc{bottom:1109.880000px;}
.y29{bottom:1122.750000px;}
.yfe{bottom:1127.160000px;}
.y8c{bottom:1127.610000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.y8a{bottom:1262.520000px;}
.hd{height:-985.290000px;}
.h17{height:26.550000px;}
.h20{height:26.580000px;}
.h19{height:26.640000px;}
.h18{height:26.670000px;}
.h14{height:29.250000px;}
.h13{height:29.970000px;}
.h2{height:31.901133px;}
.h15{height:35.460000px;}
.h3{height:39.155273px;}
.h10{height:41.661211px;}
.h16{height:44.190000px;}
.h6{height:52.311445px;}
.hc{height:52.781133px;}
.h1b{height:53.910000px;}
.h1f{height:53.940000px;}
.h21{height:54.000000px;}
.h5{height:57.323320px;}
.h7{height:57.838008px;}
.h9{height:61.793886px;}
.hb{height:62.585859px;}
.h8{height:63.210938px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1e{height:81.270000px;}
.h1d{height:108.540000px;}
.h1a{height:136.020000px;}
.h1c{height:163.260000px;}
.h22{height:190.650000px;}
.h12{height:229.500000px;}
.he{height:229.530000px;}
.h11{height:238.530000px;}
.hf{height:263.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:-1359.749850px;}
.w3{width:-1325.819850px;}
.wa{width:21.960000px;}
.wb{width:26.730000px;}
.w1b{width:29.430000px;}
.wc{width:34.470000px;}
.wd{width:34.560000px;}
.we{width:36.540000px;}
.w17{width:42.480000px;}
.w1d{width:44.130000px;}
.w1f{width:45.990000px;}
.w20{width:51.750000px;}
.w1c{width:51.930000px;}
.w1a{width:52.560000px;}
.w1e{width:53.640000px;}
.w14{width:55.800000px;}
.w15{width:55.830000px;}
.w16{width:67.140000px;}
.w18{width:75.690000px;}
.w19{width:101.160000px;}
.w11{width:112.350000px;}
.w10{width:117.450000px;}
.w13{width:128.880000px;}
.w12{width:135.090000px;}
.w6{width:236.820000px;}
.w5{width:241.320000px;}
.wf{width:258.870000px;}
.w7{width:279.000000px;}
.w9{width:376.230000px;}
.w8{width:380.730000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:3.150000px;}
.x28{left:7.740000px;}
.x22{left:10.800000px;}
.x1{left:68.040000px;}
.x18{left:79.829987px;}
.x20{left:84.419987px;}
.x4{left:95.039987px;}
.x40{left:111.239987px;}
.x5{left:122.039987px;}
.x3c{left:145.979987px;}
.x30{left:190.470000px;}
.x3f{left:196.319987px;}
.x15{left:199.380000px;}
.x2{left:202.799987px;}
.x39{left:211.079987px;}
.x9{left:212.969987px;}
.x17{left:216.119987px;}
.x12{left:230.880000px;}
.x11{left:235.380000px;}
.x16{left:254.160000px;}
.x31{left:266.880000px;}
.x14{left:273.510000px;}
.x10{left:280.739987px;}
.xb{left:287.219987px;}
.x7{left:308.999987px;}
.x29{left:328.350000px;}
.x1f{left:350.130000px;}
.x1d{left:359.130000px;}
.x19{left:360.210000px;}
.x1b{left:368.130000px;}
.x1e{left:369.210000px;}
.x1c{left:372.630000px;}
.x26{left:376.860000px;}
.x24{left:385.860000px;}
.x21{left:388.650000px;}
.x32{left:422.130000px;}
.x6{left:446.609987px;}
.x1a{left:448.860000px;}
.x33{left:452.280000px;}
.x27{left:463.170000px;}
.x2c{left:503.040000px;}
.x34{left:504.930000px;}
.x13{left:546.180000px;}
.x35{left:549.870000px;}
.x2a{left:559.680000px;}
.x36{left:604.320000px;}
.x2d{left:627.630000px;}
.x37{left:651.030000px;}
.xf{left:687.389987px;}
.x2b{left:695.580000px;}
.x3d{left:732.389987px;}
.x2e{left:738.780000px;}
.xa{left:744.809987px;}
.x3e{left:747.059987px;}
.x23{left:769.470000px;}
.x25{left:770.730000px;}
.x2f{left:781.980000px;}
.x3{left:792.059987px;}
.x8{left:795.389987px;}
.x3b{left:798.809987px;}
.x3a{left:802.139987px;}
.x38{left:803.309987px;}
.xc{left:1325.820000px;}
.xe{left:1359.750000px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls24{letter-spacing:-0.219200pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.144000pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls23{letter-spacing:-0.082133pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.016320pt;}
.ls17{letter-spacing:-0.013760pt;}
.ls1a{letter-spacing:-0.013120pt;}
.ls1c{letter-spacing:-0.005440pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls1d{letter-spacing:0.014400pt;}
.ls19{letter-spacing:0.020480pt;}
.ls1e{letter-spacing:0.037120pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls15{letter-spacing:0.045120pt;}
.ls18{letter-spacing:0.053760pt;}
.ls1b{letter-spacing:0.053867pt;}
.lsc{letter-spacing:0.057600pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.087467pt;}
.ls22{letter-spacing:0.100800pt;}
.ls14{letter-spacing:0.102933pt;}
.ls6{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls20{letter-spacing:42.423680pt;}
.lsd{letter-spacing:56.503680pt;}
.ls1f{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.859733pt;}
.ws14{word-spacing:-11.857600pt;}
.wsa{word-spacing:-11.844267pt;}
.ws10{word-spacing:-11.810667pt;}
.ws9{word-spacing:-11.800320pt;}
.ws13{word-spacing:-11.793920pt;}
.ws12{word-spacing:-11.771200pt;}
.ws2{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.751360pt;}
.wsf{word-spacing:-11.743680pt;}
.wsb{word-spacing:-11.740480pt;}
.ws15{word-spacing:-11.674667pt;}
.wsd{word-spacing:-11.612800pt;}
.ws7{word-spacing:-11.590933pt;}
.ws16{word-spacing:-11.537600pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wse{word-spacing:-7.603200pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._c{margin-left:-3.165867pt;}
._5{margin-left:-1.964266pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.029164pt;}
._8{width:2.445333pt;}
._6{width:3.526933pt;}
._7{width:4.464002pt;}
._11{width:5.704108pt;}
._d{width:6.606826pt;}
._9{width:8.016000pt;}
._4{width:9.672533pt;}
._10{width:10.577494pt;}
._f{width:13.332269pt;}
._e{width:14.268266pt;}
._2{width:15.635754pt;}
._12{width:16.589798pt;}
._b{width:17.504001pt;}
._a{width:18.408000pt;}
._14{width:20.093440pt;}
._1{width:26.618144pt;}
._15{width:33.346560pt;}
._16{width:66.586240pt;}
._17{width:71.769920pt;}
._18{width:72.785280pt;}
._13{width:74.762560pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y8b{bottom:-888.533333pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:4.000000pt;}
.ybe{bottom:4.960000pt;}
.ya9{bottom:6.000000pt;}
.yc0{bottom:6.960000pt;}
.yac{bottom:7.040000pt;}
.yd0{bottom:8.240000pt;}
.ycd{bottom:8.880000pt;}
.yad{bottom:9.040000pt;}
.yaa{bottom:10.000000pt;}
.yd3{bottom:13.760000pt;}
.yd5{bottom:22.640000pt;}
.yf0{bottom:31.280000pt;}
.y102{bottom:31.306667pt;}
.y106{bottom:31.360000pt;}
.yfd{bottom:55.600000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.yf9{bottom:79.840000pt;}
.y1{bottom:90.346667pt;}
.y127{bottom:101.226667pt;}
.y192{bottom:101.466667pt;}
.yea{bottom:104.266667pt;}
.ya6{bottom:111.546667pt;}
.y126{bottom:116.906667pt;}
.y191{bottom:117.066667pt;}
.yf8{bottom:118.586667pt;}
.y166{bottom:124.426667pt;}
.y13d{bottom:124.506667pt;}
.ya5{bottom:127.226667pt;}
.yf3{bottom:128.480000pt;}
.y125{bottom:132.506667pt;}
.y25{bottom:139.226667pt;}
.y165{bottom:140.106667pt;}
.y190{bottom:140.666667pt;}
.ya4{bottom:142.826667pt;}
.y124{bottom:148.106667pt;}
.y114{bottom:152.826667pt;}
.y24{bottom:154.826667pt;}
.y164{bottom:155.706667pt;}
.y13c{bottom:156.106667pt;}
.y18f{bottom:156.346667pt;}
.ya3{bottom:158.426667pt;}
.y123{bottom:163.786667pt;}
.yfb{bottom:167.146667pt;}
.ycb{bottom:168.346667pt;}
.y23{bottom:170.506667pt;}
.y18e{bottom:171.946667pt;}
.y89{bottom:172.426667pt;}
.ya2{bottom:174.106667pt;}
.y122{bottom:179.386667pt;}
.y71{bottom:180.586667pt;}
.y13b{bottom:184.746667pt;}
.y22{bottom:186.106667pt;}
.y163{bottom:187.386667pt;}
.ya1{bottom:189.706667pt;}
.yfa{bottom:191.466667pt;}
.y121{bottom:195.066667pt;}
.y18d{bottom:195.626667pt;}
.y70{bottom:196.186667pt;}
.yca{bottom:200.026667pt;}
.y21{bottom:201.786667pt;}
.y162{bottom:202.986667pt;}
.y88{bottom:204.106667pt;}
.ya0{bottom:205.386667pt;}
.y14f{bottom:206.906667pt;}
.y18c{bottom:211.226667pt;}
.y6f{bottom:211.786667pt;}
.yf2{bottom:215.786667pt;}
.y20{bottom:217.386667pt;}
.y14c{bottom:218.426667pt;}
.y161{bottom:218.586667pt;}
.y87{bottom:219.706667pt;}
.y11e{bottom:224.346667pt;}
.y18b{bottom:226.826667pt;}
.y6e{bottom:227.466667pt;}
.y9f{bottom:228.986667pt;}
.yc9{bottom:231.626667pt;}
.y14b{bottom:234.026667pt;}
.y86{bottom:235.386667pt;}
.yf7{bottom:240.026667pt;}
.y1f{bottom:241.306667pt;}
.y6d{bottom:243.066667pt;}
.ybb{bottom:244.026667pt;}
.yc8{bottom:247.226667pt;}
.y120{bottom:248.666667pt;}
.y14a{bottom:249.626667pt;}
.y160{bottom:250.266667pt;}
.y18a{bottom:250.506667pt;}
.y85{bottom:250.986667pt;}
.y9e{bottom:260.586667pt;}
.yc7{bottom:262.906667pt;}
.y5c{bottom:264.186667pt;}
.yf6{bottom:264.346667pt;}
.y149{bottom:265.306667pt;}
.y15f{bottom:265.866667pt;}
.y189{bottom:266.106667pt;}
.y84{bottom:266.586667pt;}
.y11f{bottom:272.906667pt;}
.y6c{bottom:274.666667pt;}
.yba{bottom:275.706667pt;}
.y9d{bottom:276.266667pt;}
.yc6{bottom:278.506667pt;}
.y5b{bottom:279.786667pt;}
.y148{bottom:280.906667pt;}
.y15e{bottom:281.546667pt;}
.y83{bottom:282.266667pt;}
.y1e{bottom:284.506667pt;}
.yf5{bottom:288.666667pt;}
.y188{bottom:289.786667pt;}
.y6b{bottom:290.346667pt;}
.yb9{bottom:291.306667pt;}
.y9c{bottom:291.866667pt;}
.yc5{bottom:294.186667pt;}
.y5a{bottom:295.466667pt;}
.y147{bottom:296.586667pt;}
.y15d{bottom:297.146667pt;}
.y11b{bottom:297.226667pt;}
.y82{bottom:297.866667pt;}
.y187{bottom:305.386667pt;}
.y6a{bottom:305.946667pt;}
.yb8{bottom:306.986667pt;}
.y9b{bottom:307.546667pt;}
.y59{bottom:311.066667pt;}
.y146{bottom:312.186667pt;}
.y15c{bottom:312.746667pt;}
.yf4{bottom:312.906667pt;}
.y1d{bottom:317.386667pt;}
.yc4{bottom:317.786667pt;}
.y186{bottom:320.986667pt;}
.y11d{bottom:321.546667pt;}
.y69{bottom:321.626667pt;}
.yb7{bottom:322.586667pt;}
.y9a{bottom:323.146667pt;}
.y58{bottom:326.666667pt;}
.y145{bottom:327.786667pt;}
.y15b{bottom:328.426667pt;}
.y81{bottom:329.546667pt;}
.y1c{bottom:333.066667pt;}
.y68{bottom:337.226667pt;}
.yb6{bottom:338.186667pt;}
.y99{bottom:338.746667pt;}
.y144{bottom:343.466667pt;}
.y185{bottom:344.666667pt;}
.y80{bottom:345.146667pt;}
.y11c{bottom:345.866667pt;}
.yc3{bottom:349.386667pt;}
.y67{bottom:352.826667pt;}
.yb5{bottom:353.866667pt;}
.y98{bottom:354.426667pt;}
.y57{bottom:358.346667pt;}
.y143{bottom:359.066667pt;}
.y15a{bottom:360.026667pt;}
.y184{bottom:360.266667pt;}
.y7f{bottom:360.746667pt;}
.yef{bottom:361.546667pt;}
.y48{bottom:363.546667pt;}
.y1b{bottom:364.666667pt;}
.y66{bottom:368.506667pt;}
.yb4{bottom:369.466667pt;}
.y113{bottom:370.106667pt;}
.y56{bottom:373.946667pt;}
.y159{bottom:375.706667pt;}
.y183{bottom:375.946667pt;}
.y7e{bottom:376.426667pt;}
.y1a{bottom:380.266667pt;}
.yc2{bottom:380.426667pt;}
.y65{bottom:384.106667pt;}
.yb3{bottom:385.146667pt;}
.yf1{bottom:385.866667pt;}
.y97{bottom:386.026667pt;}
.y55{bottom:389.626667pt;}
.y142{bottom:390.666667pt;}
.y158{bottom:391.306667pt;}
.y7d{bottom:392.026667pt;}
.yc1{bottom:393.546667pt;}
.y11a{bottom:394.426667pt;}
.y47{bottom:395.226667pt;}
.y19{bottom:395.946667pt;}
.y182{bottom:399.546667pt;}
.yb2{bottom:400.746667pt;}
.y54{bottom:405.226667pt;}
.ybf{bottom:406.186667pt;}
.y7c{bottom:407.706667pt;}
.y64{bottom:407.786667pt;}
.ye9{bottom:410.106667pt;}
.y46{bottom:410.826667pt;}
.y18{bottom:411.546667pt;}
.y96{bottom:414.666667pt;}
.y181{bottom:415.146667pt;}
.yb1{bottom:416.346667pt;}
.y119{bottom:418.773333pt;}
.y53{bottom:420.853333pt;}
.y157{bottom:422.933333pt;}
.y7b{bottom:423.333333pt;}
.y45{bottom:426.453333pt;}
.y17{bottom:427.253333pt;}
.y132{bottom:433.653333pt;}
.yee{bottom:434.453333pt;}
.y141{bottom:435.013333pt;}
.y156{bottom:438.613333pt;}
.y180{bottom:438.853333pt;}
.y63{bottom:439.413333pt;}
.y44{bottom:442.133333pt;}
.y118{bottom:443.093333pt;}
.y7a{bottom:447.253333pt;}
.yb0{bottom:447.413333pt;}
.y131{bottom:449.253333pt;}
.y52{bottom:452.533333pt;}
.y155{bottom:454.213333pt;}
.y17f{bottom:454.453333pt;}
.y62{bottom:455.013333pt;}
.yed{bottom:458.773333pt;}
.y16{bottom:458.853333pt;}
.yaf{bottom:459.893333pt;}
.y130{bottom:464.853333pt;}
.y43{bottom:465.733333pt;}
.y117{bottom:467.333333pt;}
.y51{bottom:468.133333pt;}
.y17e{bottom:470.133333pt;}
.y61{bottom:470.693333pt;}
.y15{bottom:474.453333pt;}
.y12f{bottom:480.533333pt;}
.yec{bottom:483.093333pt;}
.y50{bottom:483.813333pt;}
.y154{bottom:485.813333pt;}
.y60{bottom:486.293333pt;}
.yae{bottom:489.013333pt;}
.y14{bottom:490.133333pt;}
.y116{bottom:491.653333pt;}
.y17d{bottom:493.733333pt;}
.y12e{bottom:496.133333pt;}
.y42{bottom:497.653333pt;}
.y4f{bottom:499.413333pt;}
.y153{bottom:501.493333pt;}
.y5f{bottom:501.973333pt;}
.y13{bottom:505.733333pt;}
.y79{bottom:505.813333pt;}
.yeb{bottom:507.333333pt;}
.y17c{bottom:509.333333pt;}
.yab{bottom:509.653333pt;}
.y12d{bottom:511.813333pt;}
.y4e{bottom:515.013333pt;}
.y115{bottom:515.973333pt;}
.y152{bottom:517.093333pt;}
.y78{bottom:521.413333pt;}
.y4d{bottom:530.693333pt;}
.ye8{bottom:531.653333pt;}
.y17b{bottom:533.013333pt;}
.y5e{bottom:533.573333pt;}
.y77{bottom:537.013333pt;}
.y12{bottom:537.413333pt;}
.y111{bottom:540.213333pt;}
.y41{bottom:540.613333pt;}
.y151{bottom:541.013333pt;}
.y12c{bottom:543.413333pt;}
.y13a{bottom:545.813333pt;}
.y4c{bottom:546.293333pt;}
.y17a{bottom:548.613333pt;}
.y76{bottom:552.693333pt;}
.y11{bottom:553.013333pt;}
.y40{bottom:556.213333pt;}
.y139{bottom:561.413333pt;}
.yd2{bottom:561.573333pt;}
.y4b{bottom:561.973333pt;}
.y5d{bottom:562.213333pt;}
.yd1{bottom:563.813333pt;}
.y112{bottom:564.533333pt;}
.y75{bottom:568.293333pt;}
.y10{bottom:568.613333pt;}
.y12b{bottom:572.053333pt;}
.y179{bottom:572.293333pt;}
.ye7{bottom:574.933333pt;}
.y138{bottom:577.013333pt;}
.y74{bottom:583.973333pt;}
.yf{bottom:584.293333pt;}
.y3f{bottom:587.813333pt;}
.y178{bottom:587.893333pt;}
.y110{bottom:588.853333pt;}
.y14e{bottom:589.493333pt;}
.y137{bottom:592.693333pt;}
.y4a{bottom:593.573333pt;}
.ye{bottom:599.893333pt;}
.y3e{bottom:603.493333pt;}
.ye6{bottom:606.613333pt;}
.y136{bottom:608.293333pt;}
.ybd{bottom:610.213333pt;}
.y177{bottom:611.493333pt;}
.y10e{bottom:613.173333pt;}
.y73{bottom:615.573333pt;}
.y14d{bottom:618.213333pt;}
.y3d{bottom:619.093333pt;}
.y150{bottom:620.213333pt;}
.ye5{bottom:622.213333pt;}
.yd{bottom:623.813333pt;}
.y135{bottom:623.973333pt;}
.y176{bottom:627.173333pt;}
.y49{bottom:628.213333pt;}
.y3c{bottom:634.773333pt;}
.y10f{bottom:637.413333pt;}
.ye4{bottom:637.813333pt;}
.y72{bottom:644.213333pt;}
.y3b{bottom:650.373333pt;}
.y175{bottom:650.773333pt;}
.y1a2{bottom:652.613333pt;}
.ye3{bottom:653.493333pt;}
.y134{bottom:655.573333pt;}
.y108{bottom:661.733333pt;}
.y3a{bottom:665.973333pt;}
.y174{bottom:666.373333pt;}
.yc{bottom:666.693333pt;}
.y1a1{bottom:668.213333pt;}
.ye2{bottom:669.093333pt;}
.y173{bottom:682.053333pt;}
.y133{bottom:684.213333pt;}
.ye1{bottom:684.693333pt;}
.y10d{bottom:686.053333pt;}
.y1a0{bottom:691.813333pt;}
.y39{bottom:697.653333pt;}
.yb{bottom:698.533333pt;}
.ye0{bottom:700.373333pt;}
.y172{bottom:705.653333pt;}
.y19f{bottom:707.493333pt;}
.y10c{bottom:710.373333pt;}
.y38{bottom:713.253333pt;}
.ydf{bottom:715.973333pt;}
.y171{bottom:721.333333pt;}
.y37{bottom:729.573333pt;}
.ya{bottom:730.533333pt;}
.y19e{bottom:731.093333pt;}
.yde{bottom:731.653333pt;}
.y10b{bottom:734.613333pt;}
.ycf{bottom:735.413333pt;}
.y170{bottom:736.933333pt;}
.ya7{bottom:743.653333pt;}
.y36{bottom:745.973333pt;}
.y19d{bottom:746.693333pt;}
.ydd{bottom:755.253333pt;}
.y10a{bottom:758.933333pt;}
.y16f{bottom:760.533333pt;}
.y19c{bottom:762.373333pt;}
.y9{bottom:762.533333pt;}
.y16e{bottom:776.213333pt;}
.y35{bottom:778.373333pt;}
.y8{bottom:778.533333pt;}
.y109{bottom:783.253333pt;}
.ydc{bottom:784.533333pt;}
.y19b{bottom:785.973333pt;}
.y16d{bottom:791.813333pt;}
.y34{bottom:793.973333pt;}
.y7{bottom:794.533333pt;}
.y19a{bottom:801.653333pt;}
.y105{bottom:807.493333pt;}
.ydb{bottom:808.853333pt;}
.y33{bottom:809.653333pt;}
.y140{bottom:809.973333pt;}
.ybc{bottom:814.213333pt;}
.y16c{bottom:815.493333pt;}
.y95{bottom:821.733333pt;}
.y32{bottom:825.253333pt;}
.y13f{bottom:825.653333pt;}
.y6{bottom:826.613333pt;}
.y16b{bottom:831.093333pt;}
.y107{bottom:831.813333pt;}
.yda{bottom:833.173333pt;}
.y94{bottom:837.333333pt;}
.y199{bottom:840.853333pt;}
.y13e{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y93{bottom:852.933333pt;}
.y16a{bottom:855.013333pt;}
.y104{bottom:856.133333pt;}
.y198{bottom:856.533333pt;}
.y31{bottom:856.853333pt;}
.yd9{bottom:857.493333pt;}
.y92{bottom:868.613333pt;}
.y30{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y197{bottom:880.133333pt;}
.y101{bottom:880.453333pt;}
.yd8{bottom:881.733333pt;}
.y91{bottom:884.213333pt;}
.y2f{bottom:888.133333pt;}
.y196{bottom:895.813333pt;}
.y169{bottom:897.920000pt;}
.y3{bottom:899.840000pt;}
.y103{bottom:904.720000pt;}
.yd7{bottom:906.080000pt;}
.y90{bottom:915.520000pt;}
.y195{bottom:919.440000pt;}
.y2e{bottom:919.840000pt;}
.y168{bottom:921.840000pt;}
.y100{bottom:929.040000pt;}
.yd6{bottom:930.400000pt;}
.y8f{bottom:931.120000pt;}
.y12a{bottom:935.040000pt;}
.y2d{bottom:935.440000pt;}
.y194{bottom:943.040000pt;}
.y8e{bottom:946.800000pt;}
.y129{bottom:950.720000pt;}
.y2c{bottom:951.040000pt;}
.yfc{bottom:953.360000pt;}
.yd4{bottom:954.640000pt;}
.y167{bottom:955.040000pt;}
.y193{bottom:958.720000pt;}
.y128{bottom:966.320000pt;}
.y2b{bottom:966.720000pt;}
.y8d{bottom:970.400000pt;}
.yff{bottom:977.680000pt;}
.y2a{bottom:982.320000pt;}
.yce{bottom:984.080000pt;}
.ycc{bottom:986.560000pt;}
.y29{bottom:998.000000pt;}
.yfe{bottom:1001.920000pt;}
.y8c{bottom:1002.320000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.y8a{bottom:1122.240000pt;}
.hd{height:-875.813333pt;}
.h17{height:23.600000pt;}
.h20{height:23.626667pt;}
.h19{height:23.680000pt;}
.h18{height:23.706667pt;}
.h14{height:26.000000pt;}
.h13{height:26.640000pt;}
.h2{height:28.356562pt;}
.h15{height:31.520000pt;}
.h3{height:34.804688pt;}
.h10{height:37.032187pt;}
.h16{height:39.280000pt;}
.h6{height:46.499062pt;}
.hc{height:46.916562pt;}
.h1b{height:47.920000pt;}
.h1f{height:47.946667pt;}
.h21{height:48.000000pt;}
.h5{height:50.954062pt;}
.h7{height:51.411562pt;}
.h9{height:54.927899pt;}
.hb{height:55.631875pt;}
.h8{height:56.187500pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1e{height:72.240000pt;}
.h1d{height:96.480000pt;}
.h1a{height:120.906667pt;}
.h1c{height:145.120000pt;}
.h22{height:169.466667pt;}
.h12{height:204.000000pt;}
.he{height:204.026667pt;}
.h11{height:212.026667pt;}
.hf{height:234.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:-1208.666533pt;}
.w3{width:-1178.506533pt;}
.wa{width:19.520000pt;}
.wb{width:23.760000pt;}
.w1b{width:26.160000pt;}
.wc{width:30.640000pt;}
.wd{width:30.720000pt;}
.we{width:32.480000pt;}
.w17{width:37.760000pt;}
.w1d{width:39.226667pt;}
.w1f{width:40.880000pt;}
.w20{width:46.000000pt;}
.w1c{width:46.160000pt;}
.w1a{width:46.720000pt;}
.w1e{width:47.680000pt;}
.w14{width:49.600000pt;}
.w15{width:49.626667pt;}
.w16{width:59.680000pt;}
.w18{width:67.280000pt;}
.w19{width:89.920000pt;}
.w11{width:99.866667pt;}
.w10{width:104.400000pt;}
.w13{width:114.560000pt;}
.w12{width:120.080000pt;}
.w6{width:210.506667pt;}
.w5{width:214.506667pt;}
.wf{width:230.106667pt;}
.w7{width:248.000000pt;}
.w9{width:334.426667pt;}
.w8{width:338.426667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:2.800000pt;}
.x28{left:6.880000pt;}
.x22{left:9.600000pt;}
.x1{left:60.480000pt;}
.x18{left:70.959988pt;}
.x20{left:75.039988pt;}
.x4{left:84.479988pt;}
.x40{left:98.879988pt;}
.x5{left:108.479988pt;}
.x3c{left:129.759988pt;}
.x30{left:169.306667pt;}
.x3f{left:174.506655pt;}
.x15{left:177.226667pt;}
.x2{left:180.266655pt;}
.x39{left:187.626655pt;}
.x9{left:189.306655pt;}
.x17{left:192.106655pt;}
.x12{left:205.226667pt;}
.x11{left:209.226667pt;}
.x16{left:225.920000pt;}
.x31{left:237.226667pt;}
.x14{left:243.120000pt;}
.x10{left:249.546655pt;}
.xb{left:255.306655pt;}
.x7{left:274.666655pt;}
.x29{left:291.866667pt;}
.x1f{left:311.226667pt;}
.x1d{left:319.226667pt;}
.x19{left:320.186667pt;}
.x1b{left:327.226667pt;}
.x1e{left:328.186667pt;}
.x1c{left:331.226667pt;}
.x26{left:334.986667pt;}
.x24{left:342.986667pt;}
.x21{left:345.466667pt;}
.x32{left:375.226667pt;}
.x6{left:396.986655pt;}
.x1a{left:398.986667pt;}
.x33{left:402.026667pt;}
.x27{left:411.706667pt;}
.x2c{left:447.146667pt;}
.x34{left:448.826667pt;}
.x13{left:485.493333pt;}
.x35{left:488.773333pt;}
.x2a{left:497.493333pt;}
.x36{left:537.173333pt;}
.x2d{left:557.893333pt;}
.x37{left:578.693333pt;}
.xf{left:611.013322pt;}
.x2b{left:618.293333pt;}
.x3d{left:651.013322pt;}
.x2e{left:656.693333pt;}
.xa{left:662.053322pt;}
.x3e{left:664.053322pt;}
.x23{left:683.973333pt;}
.x25{left:685.093333pt;}
.x2f{left:695.093333pt;}
.x3{left:704.053322pt;}
.x8{left:707.013322pt;}
.x3b{left:710.053322pt;}
.x3a{left:713.013322pt;}
.x38{left:714.053322pt;}
.xc{left:1178.506667pt;}
.xe{left:1208.666667pt;}
}




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