
    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_d7b933bcc2879d98fdb1ae7d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_12beefd2bfff90ea1cad69c8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104492;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_09c6bcd9f4f5e63d9f8c8029.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104492;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_2f1f36938108e96a2d7dfbea.woff')format("woff");}.ff4{font-family:ff4;line-height:0.942871;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_09fe4b61808e345bcb4f6414.woff')format("woff");}.ff5{font-family:ff5;line-height:1.115234;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_dffa88661ce7047218d1d7d6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.107422;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_cf48fdaf83b34bc180c35171.woff')format("woff");}.ff7{font-family:ff7;line-height:0.687500;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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls14{letter-spacing:-0.702000px;}
.ls6{letter-spacing:-0.612000px;}
.ls13{letter-spacing:-0.594000px;}
.ls7{letter-spacing:-0.504000px;}
.ls11{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.053280px;}
.ls12{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.073440px;}
.ls1{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.162000px;}
.ls0{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.612000px;}
.lsb{letter-spacing:0.666000px;}
.lsd{letter-spacing:0.720000px;}
.ls3{letter-spacing:847.542720px;}
.ls9{letter-spacing:1170.984000px;}
.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;}
}
.ws7{word-spacing:-17.225280px;}
.ws3{word-spacing:-16.613280px;}
.ws6{word-spacing:-16.506480px;}
.ws0{word-spacing:-15.228000px;}
.ws4{word-spacing:-15.174000px;}
.ws1{word-spacing:-15.012000px;}
.ws9{word-spacing:-14.994000px;}
.ws8{word-spacing:-14.904000px;}
.ws2{word-spacing:-14.508000px;}
.wsa{word-spacing:-14.418000px;}
.ws5{word-spacing:0.000000px;}
._1b{margin-left:-5.616000px;}
._17{margin-left:-4.183200px;}
._b{margin-left:-3.047760px;}
._0{margin-left:-1.134000px;}
._2{width:1.110000px;}
._1{width:2.184000px;}
._f{width:3.770640px;}
._15{width:5.736960px;}
._11{width:7.230960px;}
._10{width:8.605440px;}
._18{width:9.633600px;}
._d{width:10.722480px;}
._c{width:11.952000px;}
._16{width:13.120560px;}
._e{width:15.028320px;}
._1c{width:17.748720px;}
._19{width:19.268160px;}
._1a{width:20.276400px;}
._12{width:21.513600px;}
._13{width:22.589280px;}
._14{width:24.375120px;}
._5{width:26.028000px;}
._7{width:63.930000px;}
._6{width:144.972000px;}
._9{width:168.924000px;}
._a{width:180.936000px;}
._3{width:192.978000px;}
._8{width:201.168000px;}
._1d{width:847.686720px;}
._4{width:1260.408000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:95.760000px;}
.y43{bottom:-2.340000px;}
.y0{bottom:0.000000px;}
.y13c{bottom:4.140000px;}
.y8f{bottom:4.320000px;}
.y141{bottom:4.365000px;}
.y9b{bottom:5.760000px;}
.y116{bottom:5.790000px;}
.yc3{bottom:5.940000px;}
.ycd{bottom:5.985000px;}
.y94{bottom:7.200000px;}
.yaf{bottom:7.380000px;}
.yb3{bottom:7.560000px;}
.y163{bottom:8.640000px;}
.y125{bottom:9.720000px;}
.y13b{bottom:11.880000px;}
.y139{bottom:19.800000px;}
.y9f{bottom:19.980000px;}
.y95{bottom:21.240000px;}
.y9a{bottom:21.420000px;}
.y92{bottom:22.680000px;}
.y93{bottom:22.860000px;}
.y42{bottom:23.940000px;}
.y138{bottom:24.660000px;}
.y13a{bottom:27.540000px;}
.yc5{bottom:28.080000px;}
.y114{bottom:28.110000px;}
.ycb{bottom:28.125000px;}
.y10e{bottom:28.260000px;}
.yb1{bottom:32.760000px;}
.ya1{bottom:35.280000px;}
.y9e{bottom:36.900000px;}
.y91{bottom:38.340000px;}
.y41{bottom:39.420000px;}
.y98{bottom:39.780000px;}
.y2{bottom:45.360000px;}
.yc0{bottom:50.400000px;}
.y121{bottom:50.445000px;}
.y118{bottom:50.580000px;}
.ya0{bottom:52.380000px;}
.y9d{bottom:52.560000px;}
.y40{bottom:54.900000px;}
.y97{bottom:55.440000px;}
.yb5{bottom:57.960000px;}
.y9c{bottom:95.040000px;}
.y203{bottom:95.580000px;}
.y134{bottom:100.980000px;}
.yfb{bottom:102.060000px;}
.y1ca{bottom:102.780000px;}
.y7b{bottom:103.140000px;}
.ybd{bottom:104.400000px;}
.y3e{bottom:106.380000px;}
.y1a2{bottom:109.980000px;}
.y16b{bottom:111.960000px;}
.y202{bottom:117.000000px;}
.yba{bottom:117.720000px;}
.y133{bottom:118.260000px;}
.y1c9{bottom:118.620000px;}
.yfa{bottom:119.340000px;}
.y7a{bottom:120.420000px;}
.y3d{bottom:123.480000px;}
.y16a{bottom:125.280000px;}
.y201{bottom:132.660000px;}
.y1c8{bottom:134.100000px;}
.y132{bottom:135.540000px;}
.yf9{bottom:136.620000px;}
.y79{bottom:137.700000px;}
.y3c{bottom:140.760000px;}
.y1a1{bottom:142.200000px;}
.ybc{bottom:142.920000px;}
.y200{bottom:148.140000px;}
.y131{bottom:152.640000px;}
.yf8{bottom:153.900000px;}
.y78{bottom:154.980000px;}
.y1c7{bottom:155.340000px;}
.y3b{bottom:158.040000px;}
.y1a0{bottom:159.480000px;}
.y99{bottom:162.360000px;}
.y169{bottom:163.080000px;}
.ybb{bottom:168.300000px;}
.y1ff{bottom:169.560000px;}
.y130{bottom:169.920000px;}
.yf7{bottom:171.180000px;}
.y77{bottom:172.260000px;}
.y3a{bottom:175.320000px;}
.y19f{bottom:176.760000px;}
.y1fe{bottom:185.220000px;}
.y168{bottom:185.400000px;}
.y12f{bottom:187.200000px;}
.yf6{bottom:188.280000px;}
.y76{bottom:189.570000px;}
.y39{bottom:192.630000px;}
.yb8{bottom:193.530000px;}
.y19e{bottom:194.070000px;}
.y1c6{bottom:195.690000px;}
.y96{bottom:198.750000px;}
.y1fd{bottom:200.730000px;}
.y12e{bottom:204.510000px;}
.yf5{bottom:205.590000px;}
.y75{bottom:206.670000px;}
.y167{bottom:207.570000px;}
.y38{bottom:209.910000px;}
.y19d{bottom:211.170000px;}
.yb9{bottom:218.730000px;}
.y12d{bottom:219.270000px;}
.y1fc{bottom:222.150000px;}
.yf4{bottom:222.870000px;}
.y74{bottom:223.950000px;}
.y1c5{bottom:224.670000px;}
.y37{bottom:227.010000px;}
.y19c{bottom:228.450000px;}
.y166{bottom:229.890000px;}
.y1fb{bottom:237.810000px;}
.yf3{bottom:240.150000px;}
.y73{bottom:241.230000px;}
.y12b{bottom:241.590000px;}
.yb4{bottom:244.110000px;}
.y36{bottom:244.290000px;}
.y19b{bottom:245.730000px;}
.y165{bottom:252.210000px;}
.y1c4{bottom:255.810000px;}
.yf2{bottom:257.430000px;}
.y1fa{bottom:259.230000px;}
.y35{bottom:261.570000px;}
.y19a{bottom:263.010000px;}
.y12c{bottom:263.730000px;}
.y90{bottom:269.130000px;}
.yb7{bottom:269.310000px;}
.y1c3{bottom:271.290000px;}
.y72{bottom:272.010000px;}
.yf1{bottom:274.530000px;}
.y1f9{bottom:274.890000px;}
.y34{bottom:278.850000px;}
.y199{bottom:280.290000px;}
.y129{bottom:286.050000px;}
.y71{bottom:289.290000px;}
.yf0{bottom:291.810000px;}
.yb6{bottom:294.690000px;}
.y33{bottom:296.130000px;}
.y1f8{bottom:296.310000px;}
.y164{bottom:296.670000px;}
.y1c2{bottom:299.910000px;}
.y70{bottom:306.570000px;}
.y12a{bottom:308.370000px;}
.yef{bottom:309.090000px;}
.y1f7{bottom:311.970000px;}
.y198{bottom:312.510000px;}
.y32{bottom:313.230000px;}
.y162{bottom:318.990000px;}
.yb0{bottom:319.890000px;}
.y8e{bottom:322.410000px;}
.y6f{bottom:323.670000px;}
.yee{bottom:326.370000px;}
.y1c1{bottom:328.530000px;}
.y197{bottom:329.790000px;}
.y31{bottom:330.510000px;}
.y127{bottom:330.690000px;}
.y1f6{bottom:333.210000px;}
.y6e{bottom:340.950000px;}
.yed{bottom:343.650000px;}
.yb2{bottom:345.090000px;}
.y1c0{bottom:345.450000px;}
.y196{bottom:347.070000px;}
.y1f5{bottom:349.050000px;}
.y30{bottom:349.590000px;}
.y128{bottom:352.830000px;}
.y8d{bottom:353.550000px;}
.y161{bottom:356.070000px;}
.y6d{bottom:358.230000px;}
.yec{bottom:360.930000px;}
.y1bf{bottom:362.190000px;}
.y195{bottom:364.170000px;}
.y1f4{bottom:364.530000px;}
.yae{bottom:370.470000px;}
.y160{bottom:371.550000px;}
.y124{bottom:375.150000px;}
.y6c{bottom:375.510000px;}
.y2f{bottom:377.310000px;}
.yeb{bottom:378.030000px;}
.y194{bottom:381.450000px;}
.y8c{bottom:382.890000px;}
.y1f3{bottom:385.770000px;}
.y15f{bottom:387.030000px;}
.y1be{bottom:391.350000px;}
.y6b{bottom:392.790000px;}
.yea{bottom:395.310000px;}
.y126{bottom:397.470000px;}
.y193{bottom:398.730000px;}
.y8b{bottom:400.170000px;}
.y1f2{bottom:401.610000px;}
.y15e{bottom:402.870000px;}
.y2e{bottom:404.850000px;}
.yad{bottom:407.550000px;}
.ye9{bottom:412.590000px;}
.y1bd{bottom:415.830000px;}
.y192{bottom:416.010000px;}
.y1f1{bottom:417.090000px;}
.y8a{bottom:417.450000px;}
.y120{bottom:419.790000px;}
.y15d{bottom:420.150000px;}
.y6a{bottom:423.390000px;}
.ye8{bottom:429.915000px;}
.y2d{bottom:430.635000px;}
.y1bc{bottom:431.355000px;}
.y1f0{bottom:432.615000px;}
.y191{bottom:433.335000px;}
.y15c{bottom:437.475000px;}
.y69{bottom:440.715000px;}
.y123{bottom:441.975000px;}
.y1bb{bottom:446.835000px;}
.ye7{bottom:447.195000px;}
.y2c{bottom:447.915000px;}
.y89{bottom:448.275000px;}
.y190{bottom:450.435000px;}
.y1ef{bottom:454.035000px;}
.y15b{bottom:454.755000px;}
.y68{bottom:457.995000px;}
.y122{bottom:464.295000px;}
.ye6{bottom:464.475000px;}
.y2b{bottom:465.195000px;}
.y1ee{bottom:469.695000px;}
.y1ba{bottom:471.495000px;}
.y15a{bottom:472.035000px;}
.y67{bottom:475.275000px;}
.y88{bottom:479.055000px;}
.ye5{bottom:481.575000px;}
.y2a{bottom:482.475000px;}
.y18f{bottom:482.655000px;}
.y1ed{bottom:485.175000px;}
.y11e{bottom:486.615000px;}
.y159{bottom:489.135000px;}
.y66{bottom:492.555000px;}
.y87{bottom:496.335000px;}
.ye4{bottom:498.855000px;}
.y29{bottom:499.575000px;}
.y18e{bottom:499.935000px;}
.y1b9{bottom:502.275000px;}
.y158{bottom:506.415000px;}
.y1ec{bottom:506.595000px;}
.y11f{bottom:508.755000px;}
.yac{bottom:509.835000px;}
.y86{bottom:513.435000px;}
.ye3{bottom:516.135000px;}
.y28{bottom:516.855000px;}
.y18d{bottom:517.215000px;}
.y1b8{bottom:519.555000px;}
.y1eb{bottom:522.255000px;}
.y65{bottom:523.155000px;}
.y157{bottom:523.695000px;}
.yab{bottom:526.935000px;}
.y85{bottom:530.715000px;}
.y11b{bottom:531.075000px;}
.ye2{bottom:533.415000px;}
.y27{bottom:534.135000px;}
.y18c{bottom:534.495000px;}
.y1b7{bottom:536.835000px;}
.y1ea{bottom:537.735000px;}
.y64{bottom:540.435000px;}
.y156{bottom:540.975000px;}
.yaa{bottom:544.215000px;}
.y84{bottom:547.995000px;}
.ye1{bottom:550.695000px;}
.y26{bottom:551.415000px;}
.y18b{bottom:551.775000px;}
.y11d{bottom:553.395000px;}
.y1b6{bottom:553.935000px;}
.y63{bottom:557.715000px;}
.y155{bottom:558.255000px;}
.y1e9{bottom:559.155000px;}
.ya9{bottom:561.495000px;}
.y83{bottom:565.275000px;}
.ye0{bottom:567.795000px;}
.y25{bottom:568.695000px;}
.y18a{bottom:569.055000px;}
.y1b5{bottom:571.215000px;}
.y1e8{bottom:574.815000px;}
.y62{bottom:574.995000px;}
.y154{bottom:575.535000px;}
.y11c{bottom:575.715000px;}
.ya8{bottom:578.775000px;}
.y82{bottom:582.555000px;}
.ydf{bottom:585.075000px;}
.y24{bottom:585.975000px;}
.y189{bottom:586.335000px;}
.y1b4{bottom:588.495000px;}
.y1e7{bottom:590.295000px;}
.y61{bottom:592.275000px;}
.y153{bottom:592.635000px;}
.ya7{bottom:596.055000px;}
.y117{bottom:597.855000px;}
.yde{bottom:602.355000px;}
.y23{bottom:603.075000px;}
.y188{bottom:603.435000px;}
.y1b3{bottom:605.775000px;}
.y60{bottom:609.555000px;}
.y152{bottom:609.915000px;}
.y1e6{bottom:611.715000px;}
.y81{bottom:613.155000px;}
.ya6{bottom:613.335000px;}
.ydd{bottom:619.635000px;}
.y11a{bottom:620.175000px;}
.y22{bottom:620.355000px;}
.y187{bottom:620.715000px;}
.y1b2{bottom:623.055000px;}
.y5f{bottom:626.835000px;}
.y151{bottom:627.195000px;}
.y1e5{bottom:627.375000px;}
.ya5{bottom:630.435000px;}
.ydc{bottom:636.915000px;}
.y21{bottom:637.635000px;}
.y1b1{bottom:640.335000px;}
.y119{bottom:642.495000px;}
.y5e{bottom:643.935000px;}
.y150{bottom:644.475000px;}
.y1e4{bottom:648.795000px;}
.y186{bottom:652.935000px;}
.ydb{bottom:654.195000px;}
.y20{bottom:654.915000px;}
.y5d{bottom:661.215000px;}
.y14f{bottom:661.755000px;}
.y1e3{bottom:664.455000px;}
.y113{bottom:664.815000px;}
.y185{bottom:670.245000px;}
.yda{bottom:671.325000px;}
.y1f{bottom:672.225000px;}
.y1b0{bottom:672.585000px;}
.y5c{bottom:678.525000px;}
.y14e{bottom:679.065000px;}
.y1e2{bottom:679.965000px;}
.y115{bottom:686.985000px;}
.y184{bottom:687.525000px;}
.yd9{bottom:688.605000px;}
.y1e{bottom:689.145000px;}
.y1af{bottom:689.865000px;}
.y5b{bottom:695.805000px;}
.y14d{bottom:696.165000px;}
.y1e1{bottom:701.385000px;}
.y1d{bottom:704.625000px;}
.y183{bottom:704.805000px;}
.yd8{bottom:705.885000px;}
.y1ae{bottom:706.965000px;}
.y110{bottom:709.305000px;}
.y80{bottom:713.085000px;}
.y14c{bottom:713.445000px;}
.y1e0{bottom:717.045000px;}
.y1c{bottom:720.105000px;}
.y182{bottom:722.085000px;}
.yd7{bottom:723.165000px;}
.y1ad{bottom:724.245000px;}
.y5a{bottom:726.585000px;}
.ya4{bottom:730.365000px;}
.y14b{bottom:730.725000px;}
.y112{bottom:731.625000px;}
.y1df{bottom:732.525000px;}
.y1b{bottom:735.585000px;}
.y181{bottom:739.365000px;}
.yd6{bottom:740.445000px;}
.y1ac{bottom:741.525000px;}
.y7f{bottom:743.685000px;}
.y59{bottom:743.865000px;}
.ya3{bottom:747.465000px;}
.y14a{bottom:748.005000px;}
.y1a{bottom:751.245000px;}
.y111{bottom:753.945000px;}
.y180{bottom:756.465000px;}
.yd5{bottom:757.725000px;}
.y1ab{bottom:758.805000px;}
.y58{bottom:760.965000px;}
.y149{bottom:765.285000px;}
.y19{bottom:766.725000px;}
.y1de{bottom:769.605000px;}
.y17f{bottom:773.745000px;}
.yd4{bottom:774.825000px;}
.y10d{bottom:776.085000px;}
.y57{bottom:778.245000px;}
.y148{bottom:782.565000px;}
.y18{bottom:786.705000px;}
.y1aa{bottom:791.025000px;}
.yd3{bottom:792.105000px;}
.y56{bottom:795.525000px;}
.y17{bottom:797.685000px;}
.y10f{bottom:798.405000px;}
.y147{bottom:799.665000px;}
.y17e{bottom:805.965000px;}
.y1dd{bottom:806.685000px;}
.y1a9{bottom:808.305000px;}
.yd2{bottom:809.385000px;}
.y55{bottom:812.805000px;}
.y16{bottom:813.345000px;}
.y146{bottom:816.945000px;}
.y10c{bottom:820.725000px;}
.y1dc{bottom:822.165000px;}
.y17d{bottom:823.245000px;}
.y1a8{bottom:825.585000px;}
.yd1{bottom:826.665000px;}
.y15{bottom:828.825000px;}
.y54{bottom:830.085000px;}
.y145{bottom:834.225000px;}
.y17c{bottom:840.525000px;}
.yd0{bottom:841.425000px;}
.y1a7{bottom:842.685000px;}
.y1db{bottom:843.585000px;}
.y14{bottom:844.305000px;}
.y7e{bottom:847.185000px;}
.y144{bottom:848.985000px;}
.y10b{bottom:854.925000px;}
.y17b{bottom:857.805000px;}
.y1da{bottom:859.245000px;}
.y13{bottom:859.785000px;}
.y1a6{bottom:859.965000px;}
.y53{bottom:860.685000px;}
.yce{bottom:863.745000px;}
.ya2{bottom:864.465000px;}
.y143{bottom:868.245000px;}
.y10a{bottom:870.405000px;}
.y17a{bottom:875.085000px;}
.y12{bottom:875.445000px;}
.y1a5{bottom:877.245000px;}
.y52{bottom:877.965000px;}
.y1d9{bottom:880.665000px;}
.ycf{bottom:885.885000px;}
.y142{bottom:887.505000px;}
.y179{bottom:892.185000px;}
.y11{bottom:893.085000px;}
.y51{bottom:895.245000px;}
.y1d8{bottom:896.325000px;}
.y109{bottom:898.305000px;}
.y140{bottom:906.765000px;}
.yca{bottom:908.205000px;}
.y178{bottom:909.465000px;}
.y50{bottom:912.570000px;}
.y108{bottom:915.630000px;}
.y1d7{bottom:917.610000px;}
.y10{bottom:920.670000px;}
.y13f{bottom:926.070000px;}
.y177{bottom:926.790000px;}
.y4f{bottom:929.850000px;}
.ycc{bottom:930.570000px;}
.y107{bottom:932.730000px;}
.y1d6{bottom:933.450000px;}
.y176{bottom:944.070000px;}
.y13e{bottom:945.330000px;}
.y4e{bottom:947.130000px;}
.yf{bottom:948.390000px;}
.y106{bottom:950.010000px;}
.yc7{bottom:952.890000px;}
.y1d5{bottom:954.690000px;}
.y175{bottom:961.350000px;}
.y4d{bottom:964.230000px;}
.y13d{bottom:964.590000px;}
.y105{bottom:967.290000px;}
.y1d4{bottom:970.350000px;}
.ye{bottom:974.130000px;}
.yc9{bottom:975.030000px;}
.y174{bottom:978.630000px;}
.y4c{bottom:981.510000px;}
.y137{bottom:984.030000px;}
.y104{bottom:984.570000px;}
.yd{bottom:991.230000px;}
.y1d3{bottom:991.770000px;}
.y7d{bottom:995.010000px;}
.y1a4{bottom:995.730000px;}
.yc8{bottom:997.350000px;}
.y4b{bottom:998.790000px;}
.y103{bottom:1001.850000px;}
.y1d2{bottom:1007.430000px;}
.yc{bottom:1008.510000px;}
.y173{bottom:1010.850000px;}
.y7c{bottom:1012.290000px;}
.y102{bottom:1019.130000px;}
.yc4{bottom:1019.670000px;}
.yb{bottom:1025.790000px;}
.y1a3{bottom:1027.950000px;}
.y172{bottom:1028.130000px;}
.y1d1{bottom:1028.850000px;}
.y4a{bottom:1029.570000px;}
.yc6{bottom:1041.990000px;}
.ya{bottom:1043.070000px;}
.y1d0{bottom:1044.510000px;}
.y171{bottom:1045.230000px;}
.y136{bottom:1046.130000px;}
.y49{bottom:1046.850000px;}
.y101{bottom:1048.290000px;}
.y1cf{bottom:1059.990000px;}
.y9{bottom:1060.350000px;}
.y135{bottom:1061.790000px;}
.y170{bottom:1062.510000px;}
.y48{bottom:1064.130000px;}
.y100{bottom:1065.570000px;}
.y8{bottom:1077.630000px;}
.y16f{bottom:1079.790000px;}
.y47{bottom:1081.230000px;}
.y1ce{bottom:1081.410000px;}
.yff{bottom:1082.850000px;}
.yc2{bottom:1086.450000px;}
.y7{bottom:1094.730000px;}
.y16e{bottom:1097.070000px;}
.y46{bottom:1098.510000px;}
.yfe{bottom:1100.130000px;}
.yc1{bottom:1108.770000px;}
.y6{bottom:1112.010000px;}
.y1cd{bottom:1112.550000px;}
.y16d{bottom:1114.350000px;}
.y45{bottom:1115.790000px;}
.yfd{bottom:1117.230000px;}
.y5{bottom:1129.290000px;}
.ybf{bottom:1131.090000px;}
.y16c{bottom:1131.630000px;}
.y44{bottom:1133.070000px;}
.y1cc{bottom:1133.970000px;}
.yfc{bottom:1134.510000px;}
.y4{bottom:1146.570000px;}
.y1cb{bottom:1149.630000px;}
.y3f{bottom:1156.500000px;}
.y3{bottom:1163.880000px;}
.ybe{bottom:1165.320000px;}
.y1{bottom:1207.800000px;}
.hd{height:18.540000px;}
.h23{height:18.576000px;}
.h1a{height:21.420000px;}
.h18{height:21.456000px;}
.h1b{height:21.600000px;}
.h1e{height:21.636000px;}
.h24{height:24.300000px;}
.h12{height:24.480000px;}
.h17{height:24.516000px;}
.h14{height:24.660000px;}
.h7{height:32.291016px;}
.h10{height:35.676000px;}
.h25{height:37.080000px;}
.h1c{height:43.740000px;}
.h1d{height:43.776000px;}
.h1f{height:43.920000px;}
.hc{height:44.860781px;}
.h8{height:48.278320px;}
.h2{height:48.436523px;}
.h5{height:48.858398px;}
.h22{height:49.500000px;}
.h13{height:49.860000px;}
.h6{height:50.572266px;}
.he{height:52.560000px;}
.ha{height:53.428008px;}
.h3{height:53.603086px;}
.h9{height:54.069961px;}
.h19{height:66.060000px;}
.h21{height:66.096000px;}
.h20{height:66.240000px;}
.h11{height:66.600000px;}
.hb{height:67.500000px;}
.hf{height:69.660000px;}
.h15{height:75.060000px;}
.h16{height:75.096000px;}
.h4{height:86.642227px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:72.900000px;}
.w12{width:75.060000px;}
.w13{width:81.180000px;}
.w16{width:83.376000px;}
.w17{width:88.020000px;}
.w15{width:91.620000px;}
.wb{width:94.500000px;}
.w14{width:99.756000px;}
.w8{width:105.516000px;}
.w5{width:105.660000px;}
.wa{width:105.696000px;}
.w10{width:124.776000px;}
.w9{width:126.720000px;}
.w18{width:137.196000px;}
.we{width:137.376000px;}
.wf{width:137.556000px;}
.wd{width:147.780000px;}
.wc{width:158.790000px;}
.w19{width:180.030000px;}
.w7{width:190.110000px;}
.w6{width:201.270000px;}
.w4{width:222.555000px;}
.w3{width:754.530000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.596000px;}
.xa{left:11.340000px;}
.x2a{left:13.500000px;}
.x14{left:14.940000px;}
.x23{left:16.020000px;}
.x2f{left:18.000000px;}
.x12{left:19.290000px;}
.x30{left:20.520000px;}
.x2e{left:22.140000px;}
.x31{left:23.580000px;}
.x26{left:25.200000px;}
.x2b{left:27.000000px;}
.xe{left:28.260000px;}
.x17{left:30.420000px;}
.x6{left:31.680000px;}
.x2d{left:32.760000px;}
.x15{left:34.200000px;}
.x1e{left:37.080000px;}
.x8{left:38.700000px;}
.x10{left:40.500000px;}
.x16{left:41.970000px;}
.x4{left:46.116000px;}
.x1f{left:47.550000px;}
.x39{left:49.860000px;}
.x1c{left:51.120000px;}
.x20{left:52.920000px;}
.x1a{left:54.900000px;}
.x38{left:60.480000px;}
.x21{left:62.496000px;}
.x37{left:69.300000px;}
.x36{left:80.460000px;}
.x1{left:84.959987px;}
.x2{left:87.119987px;}
.x19{left:154.650000px;}
.x18{left:169.949987px;}
.x33{left:186.510000px;}
.xc{left:201.629987px;}
.x3{left:206.669987px;}
.x22{left:211.530000px;}
.xd{left:229.170000px;}
.x24{left:285.195000px;}
.x5{left:308.775000px;}
.x1b{left:314.175000px;}
.x34{left:324.435000px;}
.xf{left:335.595000px;}
.x32{left:355.214987px;}
.x25{left:360.975000px;}
.x7{left:415.155000px;}
.x27{left:442.875000px;}
.x11{left:463.035000px;}
.x35{left:526.425000px;}
.x28{left:543.345000px;}
.x13{left:569.445000px;}
.x1d{left:600.945000px;}
.x9{left:617.145000px;}
.x29{left:635.685000px;}
.x2c{left:719.790000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls14{letter-spacing:-0.624000pt;}
.ls6{letter-spacing:-0.544000pt;}
.ls13{letter-spacing:-0.528000pt;}
.ls7{letter-spacing:-0.448000pt;}
.ls11{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls12{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.065280pt;}
.ls1{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.144000pt;}
.ls0{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.544000pt;}
.lsb{letter-spacing:0.592000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls3{letter-spacing:753.371307pt;}
.ls9{letter-spacing:1040.874667pt;}
.ws7{word-spacing:-15.311360pt;}
.ws3{word-spacing:-14.767360pt;}
.ws6{word-spacing:-14.672427pt;}
.ws0{word-spacing:-13.536000pt;}
.ws4{word-spacing:-13.488000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws9{word-spacing:-13.328000pt;}
.ws8{word-spacing:-13.248000pt;}
.ws2{word-spacing:-12.896000pt;}
.wsa{word-spacing:-12.816000pt;}
.ws5{word-spacing:0.000000pt;}
._1b{margin-left:-4.992000pt;}
._17{margin-left:-3.718400pt;}
._b{margin-left:-2.709120pt;}
._0{margin-left:-1.008000pt;}
._2{width:0.986667pt;}
._1{width:1.941333pt;}
._f{width:3.351680pt;}
._15{width:5.099520pt;}
._11{width:6.427520pt;}
._10{width:7.649280pt;}
._18{width:8.563200pt;}
._d{width:9.531093pt;}
._c{width:10.624000pt;}
._16{width:11.662720pt;}
._e{width:13.358507pt;}
._1c{width:15.776640pt;}
._19{width:17.127253pt;}
._1a{width:18.023467pt;}
._12{width:19.123200pt;}
._13{width:20.079360pt;}
._14{width:21.666773pt;}
._5{width:23.136000pt;}
._7{width:56.826667pt;}
._6{width:128.864000pt;}
._9{width:150.154667pt;}
._a{width:160.832000pt;}
._3{width:171.536000pt;}
._8{width:178.816000pt;}
._1d{width:753.499307pt;}
._4{width:1120.362667pt;}
.fs4{font-size:32.000000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:85.120000pt;}
.y43{bottom:-2.080000pt;}
.y0{bottom:0.000000pt;}
.y13c{bottom:3.680000pt;}
.y8f{bottom:3.840000pt;}
.y141{bottom:3.880000pt;}
.y9b{bottom:5.120000pt;}
.y116{bottom:5.146667pt;}
.yc3{bottom:5.280000pt;}
.ycd{bottom:5.320000pt;}
.y94{bottom:6.400000pt;}
.yaf{bottom:6.560000pt;}
.yb3{bottom:6.720000pt;}
.y163{bottom:7.680000pt;}
.y125{bottom:8.640000pt;}
.y13b{bottom:10.560000pt;}
.y139{bottom:17.600000pt;}
.y9f{bottom:17.760000pt;}
.y95{bottom:18.880000pt;}
.y9a{bottom:19.040000pt;}
.y92{bottom:20.160000pt;}
.y93{bottom:20.320000pt;}
.y42{bottom:21.280000pt;}
.y138{bottom:21.920000pt;}
.y13a{bottom:24.480000pt;}
.yc5{bottom:24.960000pt;}
.y114{bottom:24.986667pt;}
.ycb{bottom:25.000000pt;}
.y10e{bottom:25.120000pt;}
.yb1{bottom:29.120000pt;}
.ya1{bottom:31.360000pt;}
.y9e{bottom:32.800000pt;}
.y91{bottom:34.080000pt;}
.y41{bottom:35.040000pt;}
.y98{bottom:35.360000pt;}
.y2{bottom:40.320000pt;}
.yc0{bottom:44.800000pt;}
.y121{bottom:44.840000pt;}
.y118{bottom:44.960000pt;}
.ya0{bottom:46.560000pt;}
.y9d{bottom:46.720000pt;}
.y40{bottom:48.800000pt;}
.y97{bottom:49.280000pt;}
.yb5{bottom:51.520000pt;}
.y9c{bottom:84.480000pt;}
.y203{bottom:84.960000pt;}
.y134{bottom:89.760000pt;}
.yfb{bottom:90.720000pt;}
.y1ca{bottom:91.360000pt;}
.y7b{bottom:91.680000pt;}
.ybd{bottom:92.800000pt;}
.y3e{bottom:94.560000pt;}
.y1a2{bottom:97.760000pt;}
.y16b{bottom:99.520000pt;}
.y202{bottom:104.000000pt;}
.yba{bottom:104.640000pt;}
.y133{bottom:105.120000pt;}
.y1c9{bottom:105.440000pt;}
.yfa{bottom:106.080000pt;}
.y7a{bottom:107.040000pt;}
.y3d{bottom:109.760000pt;}
.y16a{bottom:111.360000pt;}
.y201{bottom:117.920000pt;}
.y1c8{bottom:119.200000pt;}
.y132{bottom:120.480000pt;}
.yf9{bottom:121.440000pt;}
.y79{bottom:122.400000pt;}
.y3c{bottom:125.120000pt;}
.y1a1{bottom:126.400000pt;}
.ybc{bottom:127.040000pt;}
.y200{bottom:131.680000pt;}
.y131{bottom:135.680000pt;}
.yf8{bottom:136.800000pt;}
.y78{bottom:137.760000pt;}
.y1c7{bottom:138.080000pt;}
.y3b{bottom:140.480000pt;}
.y1a0{bottom:141.760000pt;}
.y99{bottom:144.320000pt;}
.y169{bottom:144.960000pt;}
.ybb{bottom:149.600000pt;}
.y1ff{bottom:150.720000pt;}
.y130{bottom:151.040000pt;}
.yf7{bottom:152.160000pt;}
.y77{bottom:153.120000pt;}
.y3a{bottom:155.840000pt;}
.y19f{bottom:157.120000pt;}
.y1fe{bottom:164.640000pt;}
.y168{bottom:164.800000pt;}
.y12f{bottom:166.400000pt;}
.yf6{bottom:167.360000pt;}
.y76{bottom:168.506667pt;}
.y39{bottom:171.226667pt;}
.yb8{bottom:172.026667pt;}
.y19e{bottom:172.506667pt;}
.y1c6{bottom:173.946667pt;}
.y96{bottom:176.666667pt;}
.y1fd{bottom:178.426667pt;}
.y12e{bottom:181.786667pt;}
.yf5{bottom:182.746667pt;}
.y75{bottom:183.706667pt;}
.y167{bottom:184.506667pt;}
.y38{bottom:186.586667pt;}
.y19d{bottom:187.706667pt;}
.yb9{bottom:194.426667pt;}
.y12d{bottom:194.906667pt;}
.y1fc{bottom:197.466667pt;}
.yf4{bottom:198.106667pt;}
.y74{bottom:199.066667pt;}
.y1c5{bottom:199.706667pt;}
.y37{bottom:201.786667pt;}
.y19c{bottom:203.066667pt;}
.y166{bottom:204.346667pt;}
.y1fb{bottom:211.386667pt;}
.yf3{bottom:213.466667pt;}
.y73{bottom:214.426667pt;}
.y12b{bottom:214.746667pt;}
.yb4{bottom:216.986667pt;}
.y36{bottom:217.146667pt;}
.y19b{bottom:218.426667pt;}
.y165{bottom:224.186667pt;}
.y1c4{bottom:227.386667pt;}
.yf2{bottom:228.826667pt;}
.y1fa{bottom:230.426667pt;}
.y35{bottom:232.506667pt;}
.y19a{bottom:233.786667pt;}
.y12c{bottom:234.426667pt;}
.y90{bottom:239.226667pt;}
.yb7{bottom:239.386667pt;}
.y1c3{bottom:241.146667pt;}
.y72{bottom:241.786667pt;}
.yf1{bottom:244.026667pt;}
.y1f9{bottom:244.346667pt;}
.y34{bottom:247.866667pt;}
.y199{bottom:249.146667pt;}
.y129{bottom:254.266667pt;}
.y71{bottom:257.146667pt;}
.yf0{bottom:259.386667pt;}
.yb6{bottom:261.946667pt;}
.y33{bottom:263.226667pt;}
.y1f8{bottom:263.386667pt;}
.y164{bottom:263.706667pt;}
.y1c2{bottom:266.586667pt;}
.y70{bottom:272.506667pt;}
.y12a{bottom:274.106667pt;}
.yef{bottom:274.746667pt;}
.y1f7{bottom:277.306667pt;}
.y198{bottom:277.786667pt;}
.y32{bottom:278.426667pt;}
.y162{bottom:283.546667pt;}
.yb0{bottom:284.346667pt;}
.y8e{bottom:286.586667pt;}
.y6f{bottom:287.706667pt;}
.yee{bottom:290.106667pt;}
.y1c1{bottom:292.026667pt;}
.y197{bottom:293.146667pt;}
.y31{bottom:293.786667pt;}
.y127{bottom:293.946667pt;}
.y1f6{bottom:296.186667pt;}
.y6e{bottom:303.066667pt;}
.yed{bottom:305.466667pt;}
.yb2{bottom:306.746667pt;}
.y1c0{bottom:307.066667pt;}
.y196{bottom:308.506667pt;}
.y1f5{bottom:310.266667pt;}
.y30{bottom:310.746667pt;}
.y128{bottom:313.626667pt;}
.y8d{bottom:314.266667pt;}
.y161{bottom:316.506667pt;}
.y6d{bottom:318.426667pt;}
.yec{bottom:320.826667pt;}
.y1bf{bottom:321.946667pt;}
.y195{bottom:323.706667pt;}
.y1f4{bottom:324.026667pt;}
.yae{bottom:329.306667pt;}
.y160{bottom:330.266667pt;}
.y124{bottom:333.466667pt;}
.y6c{bottom:333.786667pt;}
.y2f{bottom:335.386667pt;}
.yeb{bottom:336.026667pt;}
.y194{bottom:339.066667pt;}
.y8c{bottom:340.346667pt;}
.y1f3{bottom:342.906667pt;}
.y15f{bottom:344.026667pt;}
.y1be{bottom:347.866667pt;}
.y6b{bottom:349.146667pt;}
.yea{bottom:351.386667pt;}
.y126{bottom:353.306667pt;}
.y193{bottom:354.426667pt;}
.y8b{bottom:355.706667pt;}
.y1f2{bottom:356.986667pt;}
.y15e{bottom:358.106667pt;}
.y2e{bottom:359.866667pt;}
.yad{bottom:362.266667pt;}
.ye9{bottom:366.746667pt;}
.y1bd{bottom:369.626667pt;}
.y192{bottom:369.786667pt;}
.y1f1{bottom:370.746667pt;}
.y8a{bottom:371.066667pt;}
.y120{bottom:373.146667pt;}
.y15d{bottom:373.466667pt;}
.y6a{bottom:376.346667pt;}
.ye8{bottom:382.146667pt;}
.y2d{bottom:382.786667pt;}
.y1bc{bottom:383.426667pt;}
.y1f0{bottom:384.546667pt;}
.y191{bottom:385.186667pt;}
.y15c{bottom:388.866667pt;}
.y69{bottom:391.746667pt;}
.y123{bottom:392.866667pt;}
.y1bb{bottom:397.186667pt;}
.ye7{bottom:397.506667pt;}
.y2c{bottom:398.146667pt;}
.y89{bottom:398.466667pt;}
.y190{bottom:400.386667pt;}
.y1ef{bottom:403.586667pt;}
.y15b{bottom:404.226667pt;}
.y68{bottom:407.106667pt;}
.y122{bottom:412.706667pt;}
.ye6{bottom:412.866667pt;}
.y2b{bottom:413.506667pt;}
.y1ee{bottom:417.506667pt;}
.y1ba{bottom:419.106667pt;}
.y15a{bottom:419.586667pt;}
.y67{bottom:422.466667pt;}
.y88{bottom:425.826667pt;}
.ye5{bottom:428.066667pt;}
.y2a{bottom:428.866667pt;}
.y18f{bottom:429.026667pt;}
.y1ed{bottom:431.266667pt;}
.y11e{bottom:432.546667pt;}
.y159{bottom:434.786667pt;}
.y66{bottom:437.826667pt;}
.y87{bottom:441.186667pt;}
.ye4{bottom:443.426667pt;}
.y29{bottom:444.066667pt;}
.y18e{bottom:444.386667pt;}
.y1b9{bottom:446.466667pt;}
.y158{bottom:450.146667pt;}
.y1ec{bottom:450.306667pt;}
.y11f{bottom:452.226667pt;}
.yac{bottom:453.186667pt;}
.y86{bottom:456.386667pt;}
.ye3{bottom:458.786667pt;}
.y28{bottom:459.426667pt;}
.y18d{bottom:459.746667pt;}
.y1b8{bottom:461.826667pt;}
.y1eb{bottom:464.226667pt;}
.y65{bottom:465.026667pt;}
.y157{bottom:465.506667pt;}
.yab{bottom:468.386667pt;}
.y85{bottom:471.746667pt;}
.y11b{bottom:472.066667pt;}
.ye2{bottom:474.146667pt;}
.y27{bottom:474.786667pt;}
.y18c{bottom:475.106667pt;}
.y1b7{bottom:477.186667pt;}
.y1ea{bottom:477.986667pt;}
.y64{bottom:480.386667pt;}
.y156{bottom:480.866667pt;}
.yaa{bottom:483.746667pt;}
.y84{bottom:487.106667pt;}
.ye1{bottom:489.506667pt;}
.y26{bottom:490.146667pt;}
.y18b{bottom:490.466667pt;}
.y11d{bottom:491.906667pt;}
.y1b6{bottom:492.386667pt;}
.y63{bottom:495.746667pt;}
.y155{bottom:496.226667pt;}
.y1e9{bottom:497.026667pt;}
.ya9{bottom:499.106667pt;}
.y83{bottom:502.466667pt;}
.ye0{bottom:504.706667pt;}
.y25{bottom:505.506667pt;}
.y18a{bottom:505.826667pt;}
.y1b5{bottom:507.746667pt;}
.y1e8{bottom:510.946667pt;}
.y62{bottom:511.106667pt;}
.y154{bottom:511.586667pt;}
.y11c{bottom:511.746667pt;}
.ya8{bottom:514.466667pt;}
.y82{bottom:517.826667pt;}
.ydf{bottom:520.066667pt;}
.y24{bottom:520.866667pt;}
.y189{bottom:521.186667pt;}
.y1b4{bottom:523.106667pt;}
.y1e7{bottom:524.706667pt;}
.y61{bottom:526.466667pt;}
.y153{bottom:526.786667pt;}
.ya7{bottom:529.826667pt;}
.y117{bottom:531.426667pt;}
.yde{bottom:535.426667pt;}
.y23{bottom:536.066667pt;}
.y188{bottom:536.386667pt;}
.y1b3{bottom:538.466667pt;}
.y60{bottom:541.826667pt;}
.y152{bottom:542.146667pt;}
.y1e6{bottom:543.746667pt;}
.y81{bottom:545.026667pt;}
.ya6{bottom:545.186667pt;}
.ydd{bottom:550.786667pt;}
.y11a{bottom:551.266667pt;}
.y22{bottom:551.426667pt;}
.y187{bottom:551.746667pt;}
.y1b2{bottom:553.826667pt;}
.y5f{bottom:557.186667pt;}
.y151{bottom:557.506667pt;}
.y1e5{bottom:557.666667pt;}
.ya5{bottom:560.386667pt;}
.ydc{bottom:566.146667pt;}
.y21{bottom:566.786667pt;}
.y1b1{bottom:569.186667pt;}
.y119{bottom:571.106667pt;}
.y5e{bottom:572.386667pt;}
.y150{bottom:572.866667pt;}
.y1e4{bottom:576.706667pt;}
.y186{bottom:580.386667pt;}
.ydb{bottom:581.506667pt;}
.y20{bottom:582.146667pt;}
.y5d{bottom:587.746667pt;}
.y14f{bottom:588.226667pt;}
.y1e3{bottom:590.626667pt;}
.y113{bottom:590.946667pt;}
.y185{bottom:595.773333pt;}
.yda{bottom:596.733333pt;}
.y1f{bottom:597.533333pt;}
.y1b0{bottom:597.853333pt;}
.y5c{bottom:603.133333pt;}
.y14e{bottom:603.613333pt;}
.y1e2{bottom:604.413333pt;}
.y115{bottom:610.653333pt;}
.y184{bottom:611.133333pt;}
.yd9{bottom:612.093333pt;}
.y1e{bottom:612.573333pt;}
.y1af{bottom:613.213333pt;}
.y5b{bottom:618.493333pt;}
.y14d{bottom:618.813333pt;}
.y1e1{bottom:623.453333pt;}
.y1d{bottom:626.333333pt;}
.y183{bottom:626.493333pt;}
.yd8{bottom:627.453333pt;}
.y1ae{bottom:628.413333pt;}
.y110{bottom:630.493333pt;}
.y80{bottom:633.853333pt;}
.y14c{bottom:634.173333pt;}
.y1e0{bottom:637.373333pt;}
.y1c{bottom:640.093333pt;}
.y182{bottom:641.853333pt;}
.yd7{bottom:642.813333pt;}
.y1ad{bottom:643.773333pt;}
.y5a{bottom:645.853333pt;}
.ya4{bottom:649.213333pt;}
.y14b{bottom:649.533333pt;}
.y112{bottom:650.333333pt;}
.y1df{bottom:651.133333pt;}
.y1b{bottom:653.853333pt;}
.y181{bottom:657.213333pt;}
.yd6{bottom:658.173333pt;}
.y1ac{bottom:659.133333pt;}
.y7f{bottom:661.053333pt;}
.y59{bottom:661.213333pt;}
.ya3{bottom:664.413333pt;}
.y14a{bottom:664.893333pt;}
.y1a{bottom:667.773333pt;}
.y111{bottom:670.173333pt;}
.y180{bottom:672.413333pt;}
.yd5{bottom:673.533333pt;}
.y1ab{bottom:674.493333pt;}
.y58{bottom:676.413333pt;}
.y149{bottom:680.253333pt;}
.y19{bottom:681.533333pt;}
.y1de{bottom:684.093333pt;}
.y17f{bottom:687.773333pt;}
.yd4{bottom:688.733333pt;}
.y10d{bottom:689.853333pt;}
.y57{bottom:691.773333pt;}
.y148{bottom:695.613333pt;}
.y18{bottom:699.293333pt;}
.y1aa{bottom:703.133333pt;}
.yd3{bottom:704.093333pt;}
.y56{bottom:707.133333pt;}
.y17{bottom:709.053333pt;}
.y10f{bottom:709.693333pt;}
.y147{bottom:710.813333pt;}
.y17e{bottom:716.413333pt;}
.y1dd{bottom:717.053333pt;}
.y1a9{bottom:718.493333pt;}
.yd2{bottom:719.453333pt;}
.y55{bottom:722.493333pt;}
.y16{bottom:722.973333pt;}
.y146{bottom:726.173333pt;}
.y10c{bottom:729.533333pt;}
.y1dc{bottom:730.813333pt;}
.y17d{bottom:731.773333pt;}
.y1a8{bottom:733.853333pt;}
.yd1{bottom:734.813333pt;}
.y15{bottom:736.733333pt;}
.y54{bottom:737.853333pt;}
.y145{bottom:741.533333pt;}
.y17c{bottom:747.133333pt;}
.yd0{bottom:747.933333pt;}
.y1a7{bottom:749.053333pt;}
.y1db{bottom:749.853333pt;}
.y14{bottom:750.493333pt;}
.y7e{bottom:753.053333pt;}
.y144{bottom:754.653333pt;}
.y10b{bottom:759.933333pt;}
.y17b{bottom:762.493333pt;}
.y1da{bottom:763.773333pt;}
.y13{bottom:764.253333pt;}
.y1a6{bottom:764.413333pt;}
.y53{bottom:765.053333pt;}
.yce{bottom:767.773333pt;}
.ya2{bottom:768.413333pt;}
.y143{bottom:771.773333pt;}
.y10a{bottom:773.693333pt;}
.y17a{bottom:777.853333pt;}
.y12{bottom:778.173333pt;}
.y1a5{bottom:779.773333pt;}
.y52{bottom:780.413333pt;}
.y1d9{bottom:782.813333pt;}
.ycf{bottom:787.453333pt;}
.y142{bottom:788.893333pt;}
.y179{bottom:793.053333pt;}
.y11{bottom:793.853333pt;}
.y51{bottom:795.773333pt;}
.y1d8{bottom:796.733333pt;}
.y109{bottom:798.493333pt;}
.y140{bottom:806.013333pt;}
.yca{bottom:807.293333pt;}
.y178{bottom:808.413333pt;}
.y50{bottom:811.173333pt;}
.y108{bottom:813.893333pt;}
.y1d7{bottom:815.653333pt;}
.y10{bottom:818.373333pt;}
.y13f{bottom:823.173333pt;}
.y177{bottom:823.813333pt;}
.y4f{bottom:826.533333pt;}
.ycc{bottom:827.173333pt;}
.y107{bottom:829.093333pt;}
.y1d6{bottom:829.733333pt;}
.y176{bottom:839.173333pt;}
.y13e{bottom:840.293333pt;}
.y4e{bottom:841.893333pt;}
.yf{bottom:843.013333pt;}
.y106{bottom:844.453333pt;}
.yc7{bottom:847.013333pt;}
.y1d5{bottom:848.613333pt;}
.y175{bottom:854.533333pt;}
.y4d{bottom:857.093333pt;}
.y13d{bottom:857.413333pt;}
.y105{bottom:859.813333pt;}
.y1d4{bottom:862.533333pt;}
.ye{bottom:865.893333pt;}
.yc9{bottom:866.693333pt;}
.y174{bottom:869.893333pt;}
.y4c{bottom:872.453333pt;}
.y137{bottom:874.693333pt;}
.y104{bottom:875.173333pt;}
.yd{bottom:881.093333pt;}
.y1d3{bottom:881.573333pt;}
.y7d{bottom:884.453333pt;}
.y1a4{bottom:885.093333pt;}
.yc8{bottom:886.533333pt;}
.y4b{bottom:887.813333pt;}
.y103{bottom:890.533333pt;}
.y1d2{bottom:895.493333pt;}
.yc{bottom:896.453333pt;}
.y173{bottom:898.533333pt;}
.y7c{bottom:899.813333pt;}
.y102{bottom:905.893333pt;}
.yc4{bottom:906.373333pt;}
.yb{bottom:911.813333pt;}
.y1a3{bottom:913.733333pt;}
.y172{bottom:913.893333pt;}
.y1d1{bottom:914.533333pt;}
.y4a{bottom:915.173333pt;}
.yc6{bottom:926.213333pt;}
.ya{bottom:927.173333pt;}
.y1d0{bottom:928.453333pt;}
.y171{bottom:929.093333pt;}
.y136{bottom:929.893333pt;}
.y49{bottom:930.533333pt;}
.y101{bottom:931.813333pt;}
.y1cf{bottom:942.213333pt;}
.y9{bottom:942.533333pt;}
.y135{bottom:943.813333pt;}
.y170{bottom:944.453333pt;}
.y48{bottom:945.893333pt;}
.y100{bottom:947.173333pt;}
.y8{bottom:957.893333pt;}
.y16f{bottom:959.813333pt;}
.y47{bottom:961.093333pt;}
.y1ce{bottom:961.253333pt;}
.yff{bottom:962.533333pt;}
.yc2{bottom:965.733333pt;}
.y7{bottom:973.093333pt;}
.y16e{bottom:975.173333pt;}
.y46{bottom:976.453333pt;}
.yfe{bottom:977.893333pt;}
.yc1{bottom:985.573333pt;}
.y6{bottom:988.453333pt;}
.y1cd{bottom:988.933333pt;}
.y16d{bottom:990.533333pt;}
.y45{bottom:991.813333pt;}
.yfd{bottom:993.093333pt;}
.y5{bottom:1003.813333pt;}
.ybf{bottom:1005.413333pt;}
.y16c{bottom:1005.893333pt;}
.y44{bottom:1007.173333pt;}
.y1cc{bottom:1007.973333pt;}
.yfc{bottom:1008.453333pt;}
.y4{bottom:1019.173333pt;}
.y1cb{bottom:1021.893333pt;}
.y3f{bottom:1028.000000pt;}
.y3{bottom:1034.560000pt;}
.ybe{bottom:1035.840000pt;}
.y1{bottom:1073.600000pt;}
.hd{height:16.480000pt;}
.h23{height:16.512000pt;}
.h1a{height:19.040000pt;}
.h18{height:19.072000pt;}
.h1b{height:19.200000pt;}
.h1e{height:19.232000pt;}
.h24{height:21.600000pt;}
.h12{height:21.760000pt;}
.h17{height:21.792000pt;}
.h14{height:21.920000pt;}
.h7{height:28.703125pt;}
.h10{height:31.712000pt;}
.h25{height:32.960000pt;}
.h1c{height:38.880000pt;}
.h1d{height:38.912000pt;}
.h1f{height:39.040000pt;}
.hc{height:39.876250pt;}
.h8{height:42.914062pt;}
.h2{height:43.054688pt;}
.h5{height:43.429688pt;}
.h22{height:44.000000pt;}
.h13{height:44.320000pt;}
.h6{height:44.953125pt;}
.he{height:46.720000pt;}
.ha{height:47.491563pt;}
.h3{height:47.647188pt;}
.h9{height:48.062188pt;}
.h19{height:58.720000pt;}
.h21{height:58.752000pt;}
.h20{height:58.880000pt;}
.h11{height:59.200000pt;}
.hb{height:60.000000pt;}
.hf{height:61.920000pt;}
.h15{height:66.720000pt;}
.h16{height:66.752000pt;}
.h4{height:77.015312pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:64.800000pt;}
.w12{width:66.720000pt;}
.w13{width:72.160000pt;}
.w16{width:74.112000pt;}
.w17{width:78.240000pt;}
.w15{width:81.440000pt;}
.wb{width:84.000000pt;}
.w14{width:88.672000pt;}
.w8{width:93.792000pt;}
.w5{width:93.920000pt;}
.wa{width:93.952000pt;}
.w10{width:110.912000pt;}
.w9{width:112.640000pt;}
.w18{width:121.952000pt;}
.we{width:122.112000pt;}
.wf{width:122.272000pt;}
.wd{width:131.360000pt;}
.wc{width:141.146667pt;}
.w19{width:160.026667pt;}
.w7{width:168.986667pt;}
.w6{width:178.906667pt;}
.w4{width:197.826667pt;}
.w3{width:670.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.752000pt;}
.xa{left:10.080000pt;}
.x2a{left:12.000000pt;}
.x14{left:13.280000pt;}
.x23{left:14.240000pt;}
.x2f{left:16.000000pt;}
.x12{left:17.146667pt;}
.x30{left:18.240000pt;}
.x2e{left:19.680000pt;}
.x31{left:20.960000pt;}
.x26{left:22.400000pt;}
.x2b{left:24.000000pt;}
.xe{left:25.120000pt;}
.x17{left:27.040000pt;}
.x6{left:28.160000pt;}
.x2d{left:29.120000pt;}
.x15{left:30.400000pt;}
.x1e{left:32.960000pt;}
.x8{left:34.400000pt;}
.x10{left:36.000000pt;}
.x16{left:37.306667pt;}
.x4{left:40.992000pt;}
.x1f{left:42.266667pt;}
.x39{left:44.320000pt;}
.x1c{left:45.440000pt;}
.x20{left:47.040000pt;}
.x1a{left:48.800000pt;}
.x38{left:53.760000pt;}
.x21{left:55.552000pt;}
.x37{left:61.600000pt;}
.x36{left:71.520000pt;}
.x1{left:75.519988pt;}
.x2{left:77.439988pt;}
.x19{left:137.466667pt;}
.x18{left:151.066655pt;}
.x33{left:165.786667pt;}
.xc{left:179.226655pt;}
.x3{left:183.706655pt;}
.x22{left:188.026667pt;}
.xd{left:203.706667pt;}
.x24{left:253.506667pt;}
.x5{left:274.466667pt;}
.x1b{left:279.266667pt;}
.x34{left:288.386667pt;}
.xf{left:298.306667pt;}
.x32{left:315.746655pt;}
.x25{left:320.866667pt;}
.x7{left:369.026667pt;}
.x27{left:393.666667pt;}
.x11{left:411.586667pt;}
.x35{left:467.933333pt;}
.x28{left:482.973333pt;}
.x13{left:506.173333pt;}
.x1d{left:534.173333pt;}
.x9{left:548.573333pt;}
.x29{left:565.053333pt;}
.x2c{left:639.813333pt;}
}




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