
    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_73c0edb56c872d54854f2f3c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_737a4b956a312af37b249456.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b6544d8c7af9affa3eae6e8c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_43465492932dc747d5261b73.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d158b9bc3fbd3cdc334bbed8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_dbfad6ebe278da6a97bf4a09.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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:ffa;src:url('chunks/assets/font_4839146a610d3d3f966b8cee.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.891113;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:-69.120000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-1.080000px;}
.ls13{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.206400px;}
.ls10{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.513600px;}
.ls17{letter-spacing:0.900000px;}
.lsd{letter-spacing:1.080000px;}
.ls16{letter-spacing:16.506720px;}
.ls15{letter-spacing:46.026720px;}
.lsa{letter-spacing:55.362720px;}
.lsb{letter-spacing:55.386720px;}
.lsc{letter-spacing:64.026720px;}
.ls4{letter-spacing:64.170720px;}
.ls6{letter-spacing:201.204000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-59.760000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.wsa{word-spacing:-14.733600px;}
.ws3{word-spacing:0.000000px;}
._d{margin-left:-2.171280px;}
._2{margin-left:-1.008000px;}
._0{width:1.195200px;}
._1{width:2.371920px;}
._7{width:4.123440px;}
._8{width:5.250960px;}
._a{width:6.280560px;}
._9{width:7.330320px;}
._b{width:8.891520px;}
._6{width:10.202400px;}
._3{width:11.234880px;}
._4{width:12.616560px;}
._5{width:13.804560px;}
._f{width:16.830960px;}
._e{width:18.047520px;}
._10{width:19.210320px;}
._15{width:20.618640px;}
._12{width:21.872160px;}
._11{width:23.007600px;}
._13{width:24.023520px;}
._14{width:25.361040px;}
._19{width:27.907920px;}
._1a{width:29.476800px;}
._17{width:32.441760px;}
._18{width:33.740640px;}
._1c{width:38.178720px;}
._1b{width:39.381840px;}
._1d{width:42.720240px;}
._16{width:164.690640px;}
._c{width:201.204000px;}
._1e{width:402.602160px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y19e{bottom:-5.040000px;}
.y19b{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.y120{bottom:3.240000px;}
.y124{bottom:3.420000px;}
.y129{bottom:3.600000px;}
.y122{bottom:3.780000px;}
.y5{bottom:4.500000px;}
.y143{bottom:5.220000px;}
.y145{bottom:5.760000px;}
.y18c{bottom:12.060000px;}
.y190{bottom:12.420000px;}
.y18d{bottom:20.700000px;}
.y18f{bottom:21.060000px;}
.y4{bottom:24.120000px;}
.yd5{bottom:58.320000px;}
.y73{bottom:60.660000px;}
.y132{bottom:61.200000px;}
.y12a{bottom:61.560000px;}
.y45{bottom:63.540000px;}
.y11e{bottom:67.500000px;}
.y147{bottom:70.920000px;}
.yd4{bottom:72.000000px;}
.y1a4{bottom:72.900000px;}
.y176{bottom:73.260000px;}
.y9a{bottom:74.160000px;}
.y72{bottom:77.940000px;}
.y131{bottom:78.480000px;}
.yba{bottom:78.840000px;}
.y44{bottom:80.820000px;}
.y11d{bottom:84.780000px;}
.y146{bottom:88.200000px;}
.y1a3{bottom:90.000000px;}
.y175{bottom:90.900000px;}
.y99{bottom:91.800000px;}
.y138{bottom:92.340000px;}
.ye1{bottom:92.700000px;}
.y71{bottom:95.040000px;}
.yb9{bottom:96.120000px;}
.y43{bottom:98.136000px;}
.y144{bottom:101.736000px;}
.y11c{bottom:102.456000px;}
.y1a2{bottom:107.316000px;}
.y174{bottom:108.036000px;}
.y98{bottom:109.116000px;}
.y137{bottom:109.656000px;}
.ye0{bottom:110.376000px;}
.y70{bottom:112.356000px;}
.yb8{bottom:113.436000px;}
.y42{bottom:115.416000px;}
.y11b{bottom:119.736000px;}
.y142{bottom:122.976000px;}
.y1a1{bottom:124.596000px;}
.y173{bottom:124.956000px;}
.y97{bottom:126.396000px;}
.ydf{bottom:127.656000px;}
.y6f{bottom:129.636000px;}
.yb7{bottom:130.716000px;}
.y41{bottom:132.516000px;}
.y11a{bottom:136.476000px;}
.y1a0{bottom:141.516000px;}
.y172{bottom:142.596000px;}
.y96{bottom:143.496000px;}
.y128{bottom:144.216000px;}
.yde{bottom:144.396000px;}
.y6e{bottom:146.916000px;}
.yb6{bottom:147.816000px;}
.y40{bottom:149.796000px;}
.y119{bottom:154.110000px;}
.y171{bottom:159.870000px;}
.y6d{bottom:160.410000px;}
.y127{bottom:161.310000px;}
.ydd{bottom:162.030000px;}
.y19f{bottom:163.290000px;}
.yb5{bottom:165.090000px;}
.y3f{bottom:167.070000px;}
.y118{bottom:171.390000px;}
.y170{bottom:177.150000px;}
.y95{bottom:178.050000px;}
.ydc{bottom:179.310000px;}
.yb4{bottom:182.370000px;}
.y3e{bottom:184.350000px;}
.y19d{bottom:185.070000px;}
.yf2{bottom:185.250000px;}
.y117{bottom:188.310000px;}
.y16f{bottom:194.430000px;}
.y94{bottom:195.330000px;}
.ydb{bottom:196.590000px;}
.yb3{bottom:199.650000px;}
.y3d{bottom:201.630000px;}
.yf1{bottom:202.890000px;}
.y116{bottom:205.950000px;}
.y19c{bottom:206.670000px;}
.y16e{bottom:211.530000px;}
.y93{bottom:212.610000px;}
.yda{bottom:213.870000px;}
.yb2{bottom:216.930000px;}
.y3c{bottom:218.730000px;}
.yf0{bottom:220.170000px;}
.y115{bottom:223.050000px;}
.y16d{bottom:228.450000px;}
.y92{bottom:229.890000px;}
.yd9{bottom:230.970000px;}
.yb1{bottom:234.030000px;}
.y3b{bottom:236.010000px;}
.yef{bottom:236.910000px;}
.y114{bottom:240.330000px;}
.yd8{bottom:244.650000px;}
.y91{bottom:246.990000px;}
.y16c{bottom:250.230000px;}
.y136{bottom:250.950000px;}
.yb0{bottom:251.310000px;}
.y3a{bottom:253.290000px;}
.yee{bottom:254.550000px;}
.y113{bottom:257.610000px;}
.y90{bottom:263.910000px;}
.y141{bottom:268.230000px;}
.yaf{bottom:268.590000px;}
.y39{bottom:270.570000px;}
.yed{bottom:271.830000px;}
.y16b{bottom:272.010000px;}
.y112{bottom:274.530000px;}
.y8f{bottom:281.190000px;}
.y1a6{bottom:285.510000px;}
.yae{bottom:285.870000px;}
.y38{bottom:287.850000px;}
.yec{bottom:289.110000px;}
.y111{bottom:292.170000px;}
.y16a{bottom:293.790000px;}
.y1d3{bottom:297.390000px;}
.y8e{bottom:298.830000px;}
.y13b{bottom:299.370000px;}
.y126{bottom:302.790000px;}
.yad{bottom:303.150000px;}
.y37{bottom:305.130000px;}
.yeb{bottom:306.390000px;}
.y110{bottom:309.450000px;}
.y1d2{bottom:315.030000px;}
.y169{bottom:315.390000px;}
.y8d{bottom:316.110000px;}
.y13a{bottom:316.650000px;}
.yea{bottom:319.890000px;}
.yac{bottom:320.430000px;}
.y36{bottom:322.230000px;}
.y10f{bottom:326.550000px;}
.y1d1{bottom:332.310000px;}
.y8c{bottom:332.850000px;}
.yab{bottom:337.530000px;}
.y35{bottom:339.510000px;}
.y168{bottom:339.870000px;}
.y10e{bottom:343.830000px;}
.y1d0{bottom:349.410000px;}
.y8b{bottom:350.490000px;}
.y130{bottom:351.030000px;}
.yaa{bottom:354.810000px;}
.y34{bottom:356.790000px;}
.y167{bottom:357.195000px;}
.y10d{bottom:360.795000px;}
.y1cf{bottom:366.735000px;}
.y8a{bottom:367.815000px;}
.y12f{bottom:368.355000px;}
.ya9{bottom:372.135000px;}
.y33{bottom:373.755000px;}
.y166{bottom:374.475000px;}
.y10c{bottom:378.435000px;}
.y1ce{bottom:384.015000px;}
.y89{bottom:386.175000px;}
.ya8{bottom:389.415000px;}
.y165{bottom:391.215000px;}
.y32{bottom:391.395000px;}
.y19a{bottom:391.575000px;}
.y10b{bottom:395.715000px;}
.y1cd{bottom:401.295000px;}
.y88{bottom:403.455000px;}
.ya7{bottom:406.695000px;}
.y199{bottom:408.495000px;}
.y31{bottom:408.675000px;}
.y164{bottom:408.855000px;}
.y10a{bottom:412.995000px;}
.yd3{bottom:416.415000px;}
.y1cc{bottom:418.575000px;}
.y87{bottom:421.815000px;}
.ya6{bottom:423.975000px;}
.y30{bottom:425.775000px;}
.y163{bottom:426.135000px;}
.y109{bottom:430.095000px;}
.yd2{bottom:433.515000px;}
.y1cb{bottom:435.675000px;}
.y86{bottom:438.915000px;}
.ya5{bottom:441.075000px;}
.y2f{bottom:443.055000px;}
.y162{bottom:443.415000px;}
.y108{bottom:447.375000px;}
.yd1{bottom:450.435000px;}
.y1ca{bottom:452.955000px;}
.y85{bottom:457.275000px;}
.y139{bottom:457.995000px;}
.ya4{bottom:458.355000px;}
.y2e{bottom:460.335000px;}
.y161{bottom:460.695000px;}
.y107{bottom:464.655000px;}
.yd0{bottom:468.075000px;}
.y1c9{bottom:470.235000px;}
.y84{bottom:474.555000px;}
.ya3{bottom:475.635000px;}
.y2d{bottom:477.615000px;}
.y160{bottom:477.795000px;}
.y106{bottom:481.935000px;}
.ycf{bottom:485.355000px;}
.y1c8{bottom:487.515000px;}
.y83{bottom:492.555000px;}
.ya2{bottom:492.915000px;}
.y2c{bottom:494.895000px;}
.y15f{bottom:495.075000px;}
.y105{bottom:499.215000px;}
.yce{bottom:502.635000px;}
.y1c7{bottom:504.795000px;}
.y6c{bottom:505.875000px;}
.y12e{bottom:509.835000px;}
.y82{bottom:510.195000px;}
.y2b{bottom:511.995000px;}
.y198{bottom:512.355000px;}
.y104{bottom:516.315000px;}
.ycd{bottom:519.915000px;}
.y1c6{bottom:522.075000px;}
.y6b{bottom:523.155000px;}
.y135{bottom:523.695000px;}
.y81{bottom:527.295000px;}
.y2a{bottom:529.275000px;}
.y197{bottom:529.635000px;}
.y103{bottom:533.595000px;}
.y15e{bottom:533.775000px;}
.ycc{bottom:536.655000px;}
.y1c5{bottom:539.175000px;}
.y6a{bottom:539.895000px;}
.y134{bottom:540.795000px;}
.y80{bottom:544.215000px;}
.ya1{bottom:544.575000px;}
.y29{bottom:546.195000px;}
.y196{bottom:546.915000px;}
.y102{bottom:550.875000px;}
.ycb{bottom:554.295000px;}
.y15d{bottom:555.555000px;}
.y1c4{bottom:556.455000px;}
.y69{bottom:557.535000px;}
.y140{bottom:558.075000px;}
.y7f{bottom:561.855000px;}
.y28{bottom:563.835000px;}
.y195{bottom:564.195000px;}
.y101{bottom:568.155000px;}
.yca{bottom:572.655000px;}
.y1c3{bottom:573.735000px;}
.y68{bottom:574.815000px;}
.y125{bottom:575.355000px;}
.y15c{bottom:577.335000px;}
.y7e{bottom:579.135000px;}
.y194{bottom:580.935000px;}
.y27{bottom:581.115000px;}
.y100{bottom:585.435000px;}
.yc9{bottom:590.655000px;}
.y1c2{bottom:591.015000px;}
.y67{bottom:592.095000px;}
.y123{bottom:592.635000px;}
.y7d{bottom:596.055000px;}
.ya0{bottom:596.415000px;}
.y26{bottom:598.395000px;}
.y15b{bottom:598.935000px;}
.yff{bottom:602.715000px;}
.yc8{bottom:608.295000px;}
.y66{bottom:609.375000px;}
.yd7{bottom:613.155000px;}
.y7c{bottom:613.695000px;}
.y25{bottom:615.135000px;}
.yfe{bottom:619.845000px;}
.y193{bottom:620.025000px;}
.y15a{bottom:623.445000px;}
.y1c1{bottom:625.605000px;}
.yc7{bottom:626.505000px;}
.y65{bottom:627.585000px;}
.y7b{bottom:630.825000px;}
.y24{bottom:632.805000px;}
.yfd{bottom:637.125000px;}
.y159{bottom:640.725000px;}
.y1c0{bottom:642.705000px;}
.yc6{bottom:644.505000px;}
.y64{bottom:645.945000px;}
.y7a{bottom:648.105000px;}
.y23{bottom:650.085000px;}
.yfc{bottom:654.405000px;}
.y158{bottom:657.825000px;}
.y192{bottom:659.085000px;}
.y1bf{bottom:659.985000px;}
.yc5{bottom:662.145000px;}
.y63{bottom:664.305000px;}
.y79{bottom:665.385000px;}
.y22{bottom:667.365000px;}
.yfb{bottom:671.685000px;}
.y157{bottom:674.745000px;}
.y1be{bottom:677.265000px;}
.yc4{bottom:679.425000px;}
.y191{bottom:680.685000px;}
.y133{bottom:682.305000px;}
.y62{bottom:682.665000px;}
.y21{bottom:684.645000px;}
.yfa{bottom:688.965000px;}
.y156{bottom:692.385000px;}
.ye9{bottom:692.745000px;}
.y1bd{bottom:694.545000px;}
.yc3{bottom:696.705000px;}
.y13f{bottom:699.585000px;}
.y61{bottom:699.945000px;}
.y20{bottom:701.925000px;}
.y18e{bottom:702.465000px;}
.yf9{bottom:706.245000px;}
.y155{bottom:709.665000px;}
.ye8{bottom:709.845000px;}
.y1bc{bottom:711.825000px;}
.yd6{bottom:713.445000px;}
.yc2{bottom:715.065000px;}
.y60{bottom:716.865000px;}
.y78{bottom:717.225000px;}
.y1f{bottom:719.025000px;}
.yf8{bottom:722.985000px;}
.ye7{bottom:726.765000px;}
.y154{bottom:726.945000px;}
.y1bb{bottom:728.925000px;}
.y14a{bottom:730.725000px;}
.yc1{bottom:732.165000px;}
.y5f{bottom:733.965000px;}
.y77{bottom:734.325000px;}
.y1e{bottom:736.305000px;}
.yf7{bottom:740.625000px;}
.y18b{bottom:741.525000px;}
.y153{bottom:744.225000px;}
.ye6{bottom:744.405000px;}
.y1ba{bottom:746.205000px;}
.y149{bottom:747.825000px;}
.yc0{bottom:749.445000px;}
.y5e{bottom:751.605000px;}
.y1d{bottom:753.585000px;}
.yf6{bottom:757.905000px;}
.y152{bottom:761.325000px;}
.ye5{bottom:761.685000px;}
.y1b9{bottom:763.485000px;}
.ybf{bottom:766.725000px;}
.y5d{bottom:768.885000px;}
.y1c{bottom:770.865000px;}
.yf5{bottom:775.185000px;}
.y151{bottom:778.605000px;}
.ye4{bottom:778.965000px;}
.y1b8{bottom:780.765000px;}
.y12d{bottom:782.385000px;}
.ybe{bottom:785.085000px;}
.y5c{bottom:786.165000px;}
.y1b{bottom:788.145000px;}
.yf4{bottom:792.465000px;}
.y150{bottom:795.885000px;}
.ye3{bottom:796.245000px;}
.y1b7{bottom:798.045000px;}
.y12c{bottom:799.665000px;}
.y18a{bottom:800.385000px;}
.ybd{bottom:802.365000px;}
.y9f{bottom:803.085000px;}
.y5b{bottom:803.445000px;}
.y1a{bottom:805.425000px;}
.ye2{bottom:809.745000px;}
.y14f{bottom:812.805000px;}
.y1b6{bottom:814.965000px;}
.y189{bottom:817.665000px;}
.ybc{bottom:819.645000px;}
.y5a{bottom:820.725000px;}
.y19{bottom:822.525000px;}
.yf3{bottom:823.245000px;}
.y1b5{bottom:832.425000px;}
.y14e{bottom:834.585000px;}
.y188{bottom:834.945000px;}
.ybb{bottom:837.465000px;}
.y59{bottom:837.825000px;}
.y18{bottom:839.805000px;}
.y1b4{bottom:849.705000px;}
.y187{bottom:852.045000px;}
.y58{bottom:855.105000px;}
.y14d{bottom:856.185000px;}
.y17{bottom:856.725000px;}
.y1b3{bottom:866.985000px;}
.y186{bottom:868.965000px;}
.y9e{bottom:872.025000px;}
.y57{bottom:872.385000px;}
.y16{bottom:874.770000px;}
.y14c{bottom:878.010000px;}
.y1b2{bottom:885.390000px;}
.y185{bottom:886.650000px;}
.y148{bottom:889.350000px;}
.y56{bottom:889.710000px;}
.y15{bottom:892.410000px;}
.y14b{bottom:899.790000px;}
.y1b1{bottom:902.670000px;}
.y184{bottom:903.930000px;}
.y55{bottom:906.990000px;}
.y14{bottom:909.690000px;}
.y1b0{bottom:919.950000px;}
.y183{bottom:921.210000px;}
.y54{bottom:923.730000px;}
.y76{bottom:924.090000px;}
.y13{bottom:926.790000px;}
.y1af{bottom:938.130000px;}
.y182{bottom:938.490000px;}
.y9d{bottom:941.010000px;}
.y53{bottom:941.370000px;}
.y12{bottom:944.070000px;}
.y1ae{bottom:955.410000px;}
.y181{bottom:955.590000px;}
.y52{bottom:958.650000px;}
.y11{bottom:961.350000px;}
.y13e{bottom:972.150000px;}
.y180{bottom:972.510000px;}
.y1ad{bottom:972.690000px;}
.y51{bottom:975.930000px;}
.y10{bottom:978.630000px;}
.y13d{bottom:989.430000px;}
.y17f{bottom:990.150000px;}
.y1ac{bottom:991.050000px;}
.y12b{bottom:992.850000px;}
.y50{bottom:993.210000px;}
.yf{bottom:995.910000px;}
.y121{bottom:1006.710000px;}
.y17e{bottom:1007.430000px;}
.y1ab{bottom:1008.330000px;}
.y9c{bottom:1010.130000px;}
.y4f{bottom:1010.490000px;}
.ye{bottom:1013.190000px;}
.y11f{bottom:1023.990000px;}
.y17d{bottom:1024.710000px;}
.y1aa{bottom:1025.430000px;}
.y1a5{bottom:1027.230000px;}
.y4e{bottom:1027.590000px;}
.yd{bottom:1030.290000px;}
.y17c{bottom:1041.990000px;}
.y1a9{bottom:1043.790000px;}
.y4d{bottom:1044.870000px;}
.yc{bottom:1047.570000px;}
.y17b{bottom:1059.090000px;}
.y1a8{bottom:1061.070000px;}
.y4c{bottom:1062.150000px;}
.yb{bottom:1065.570000px;}
.y17a{bottom:1076.010000px;}
.y1a7{bottom:1078.350000px;}
.y9b{bottom:1079.070000px;}
.y4b{bottom:1079.430000px;}
.ya{bottom:1082.850000px;}
.y4a{bottom:1096.350000px;}
.y75{bottom:1096.710000px;}
.y179{bottom:1097.790000px;}
.y9{bottom:1100.490000px;}
.y49{bottom:1113.990000px;}
.y178{bottom:1119.570000px;}
.y8{bottom:1121.190000px;}
.y13c{bottom:1130.730000px;}
.y48{bottom:1131.090000px;}
.y177{bottom:1141.380000px;}
.y7{bottom:1141.920000px;}
.y47{bottom:1148.400000px;}
.y6{bottom:1162.620000px;}
.y74{bottom:1165.320000px;}
.y46{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.hb{height:17.100000px;}
.hc{height:17.280000px;}
.hd{height:17.316000px;}
.he{height:21.240000px;}
.hf{height:34.560000px;}
.h8{height:41.726953px;}
.ha{height:52.998047px;}
.h2{height:58.621992px;}
.h6{height:58.651172px;}
.h7{height:60.226875px;}
.h9{height:61.423863px;}
.h4{height:65.884219px;}
.h5{height:72.562500px;}
.h3{height:73.722656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1b{width:68.760000px;}
.wa{width:80.460000px;}
.w1a{width:82.836000px;}
.w6{width:85.176000px;}
.w19{width:89.280000px;}
.w13{width:92.520000px;}
.w14{width:94.536000px;}
.w1c{width:103.356000px;}
.w9{width:111.996000px;}
.w18{width:121.536000px;}
.w12{width:127.476000px;}
.w15{width:129.636000px;}
.w5{width:141.696000px;}
.w2{width:160.230000px;}
.w3{width:160.410000px;}
.w11{width:160.950000px;}
.w7{width:169.770000px;}
.w16{width:171.210000px;}
.w10{width:189.930000px;}
.wb{width:223.995000px;}
.wd{width:241.050000px;}
.wf{width:286.995000px;}
.we{width:306.075000px;}
.w17{width:310.755000px;}
.w8{width:364.035000px;}
.w4{width:384.195000px;}
.wc{width:457.275000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5c{left:5.580000px;}
.x6d{left:9.000000px;}
.x63{left:11.160000px;}
.x5e{left:12.600000px;}
.x45{left:14.760000px;}
.x68{left:16.020000px;}
.x39{left:17.280000px;}
.x60{left:18.360000px;}
.x43{left:20.160000px;}
.x72{left:22.140000px;}
.x49{left:23.220000px;}
.x70{left:24.480000px;}
.x3e{left:25.740000px;}
.x37{left:27.750000px;}
.x67{left:29.340000px;}
.x65{left:30.450000px;}
.x5d{left:31.500000px;}
.x3b{left:32.940000px;}
.x62{left:34.920000px;}
.x75{left:36.360000px;}
.x71{left:37.800000px;}
.x47{left:39.105000px;}
.x6f{left:40.320000px;}
.x76{left:41.400000px;}
.x59{left:43.740000px;}
.x1d{left:45.900000px;}
.x66{left:47.880000px;}
.x64{left:49.896000px;}
.x73{left:51.480000px;}
.x34{left:52.920000px;}
.x5{left:54.000000px;}
.x3d{left:55.110000px;}
.x1f{left:61.740000px;}
.x4e{left:63.036000px;}
.x25{left:65.520000px;}
.x23{left:66.780000px;}
.x26{left:68.796000px;}
.x21{left:70.380000px;}
.x74{left:72.036000px;}
.x3f{left:73.080000px;}
.x1e{left:74.736000px;}
.x5a{left:78.660000px;}
.xd{left:81.000000px;}
.x6a{left:95.076000px;}
.x50{left:96.336000px;}
.x4c{left:98.670000px;}
.x4a{left:100.125000px;}
.x4d{left:102.645000px;}
.xe{left:108.036000px;}
.x55{left:109.614000px;}
.x4b{left:124.770000px;}
.x48{left:129.630000px;}
.x11{left:135.036000px;}
.x3c{left:139.710000px;}
.x54{left:145.254000px;}
.x41{left:154.110000px;}
.x13{left:162.030000px;}
.x35{left:164.190000px;}
.x53{left:171.354000px;}
.x52{left:176.259000px;}
.x2a{left:181.650000px;}
.xc{left:184.890000px;}
.x32{left:189.210000px;}
.x31{left:195.330000px;}
.x1c{left:200.010000px;}
.x6{left:207.030000px;}
.x2e{left:214.410000px;}
.x5b{left:216.030000px;}
.x2b{left:217.110000px;}
.x27{left:219.090000px;}
.x69{left:226.470000px;}
.x8{left:228.630000px;}
.x2c{left:233.670000px;}
.x28{left:236.730000px;}
.x30{left:238.710000px;}
.x2d{left:249.690000px;}
.x1a{left:251.490000px;}
.x10{left:256.530000px;}
.xa{left:259.230000px;}
.x3{left:261.210000px;}
.x2f{left:263.190000px;}
.x19{left:268.590000px;}
.x17{left:273.315000px;}
.x1b{left:285.555000px;}
.x4f{left:289.875000px;}
.x2{left:300.675000px;}
.x56{left:323.175000px;}
.x7{left:332.355000px;}
.x40{left:339.015000px;}
.x33{left:340.095000px;}
.x1{left:345.135000px;}
.x57{left:361.335000px;}
.x20{left:366.375000px;}
.x42{left:419.295000px;}
.x36{left:439.455000px;}
.xb{left:447.915000px;}
.x9{left:452.445000px;}
.x15{left:473.685000px;}
.x6b{left:489.705000px;}
.x22{left:526.605000px;}
.x44{left:533.625000px;}
.x5f{left:537.045000px;}
.x12{left:554.145000px;}
.x51{left:555.765000px;}
.x14{left:581.145000px;}
.x38{left:583.305000px;}
.x46{left:616.425000px;}
.x58{left:650.490000px;}
.x6c{left:666.150000px;}
.x61{left:669.030000px;}
.x3a{left:670.650000px;}
.x24{left:687.030000px;}
.xf{left:719.970000px;}
.x6e{left:737.070000px;}
.x16{left:773.430000px;}
.x18{left:797.550000px;}
.x29{left:821.160000px;}
.x4{left:830.160000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.960000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.183467pt;}
.ls10{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.456533pt;}
.ls17{letter-spacing:0.800000pt;}
.lsd{letter-spacing:0.960000pt;}
.ls16{letter-spacing:14.672640pt;}
.ls15{letter-spacing:40.912640pt;}
.lsa{letter-spacing:49.211307pt;}
.lsb{letter-spacing:49.232640pt;}
.lsc{letter-spacing:56.912640pt;}
.ls4{letter-spacing:57.040640pt;}
.ls6{letter-spacing:178.848000pt;}
.ws4{word-spacing:-53.120000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.wsa{word-spacing:-13.096533pt;}
.ws3{word-spacing:0.000000pt;}
._d{margin-left:-1.930027pt;}
._2{margin-left:-0.896000pt;}
._0{width:1.062400pt;}
._1{width:2.108373pt;}
._7{width:3.665280pt;}
._8{width:4.667520pt;}
._a{width:5.582720pt;}
._9{width:6.515840pt;}
._b{width:7.903573pt;}
._6{width:9.068800pt;}
._3{width:9.986560pt;}
._4{width:11.214720pt;}
._5{width:12.270720pt;}
._f{width:14.960853pt;}
._e{width:16.042240pt;}
._10{width:17.075840pt;}
._15{width:18.327680pt;}
._12{width:19.441920pt;}
._11{width:20.451200pt;}
._13{width:21.354240pt;}
._14{width:22.543147pt;}
._19{width:24.807040pt;}
._1a{width:26.201600pt;}
._17{width:28.837120pt;}
._18{width:29.991680pt;}
._1c{width:33.936640pt;}
._1b{width:35.006080pt;}
._1d{width:37.973547pt;}
._16{width:146.391680pt;}
._c{width:178.848000pt;}
._1e{width:357.868587pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y19e{bottom:-4.480000pt;}
.y19b{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.y120{bottom:2.880000pt;}
.y124{bottom:3.040000pt;}
.y129{bottom:3.200000pt;}
.y122{bottom:3.360000pt;}
.y5{bottom:4.000000pt;}
.y143{bottom:4.640000pt;}
.y145{bottom:5.120000pt;}
.y18c{bottom:10.720000pt;}
.y190{bottom:11.040000pt;}
.y18d{bottom:18.400000pt;}
.y18f{bottom:18.720000pt;}
.y4{bottom:21.440000pt;}
.yd5{bottom:51.840000pt;}
.y73{bottom:53.920000pt;}
.y132{bottom:54.400000pt;}
.y12a{bottom:54.720000pt;}
.y45{bottom:56.480000pt;}
.y11e{bottom:60.000000pt;}
.y147{bottom:63.040000pt;}
.yd4{bottom:64.000000pt;}
.y1a4{bottom:64.800000pt;}
.y176{bottom:65.120000pt;}
.y9a{bottom:65.920000pt;}
.y72{bottom:69.280000pt;}
.y131{bottom:69.760000pt;}
.yba{bottom:70.080000pt;}
.y44{bottom:71.840000pt;}
.y11d{bottom:75.360000pt;}
.y146{bottom:78.400000pt;}
.y1a3{bottom:80.000000pt;}
.y175{bottom:80.800000pt;}
.y99{bottom:81.600000pt;}
.y138{bottom:82.080000pt;}
.ye1{bottom:82.400000pt;}
.y71{bottom:84.480000pt;}
.yb9{bottom:85.440000pt;}
.y43{bottom:87.232000pt;}
.y144{bottom:90.432000pt;}
.y11c{bottom:91.072000pt;}
.y1a2{bottom:95.392000pt;}
.y174{bottom:96.032000pt;}
.y98{bottom:96.992000pt;}
.y137{bottom:97.472000pt;}
.ye0{bottom:98.112000pt;}
.y70{bottom:99.872000pt;}
.yb8{bottom:100.832000pt;}
.y42{bottom:102.592000pt;}
.y11b{bottom:106.432000pt;}
.y142{bottom:109.312000pt;}
.y1a1{bottom:110.752000pt;}
.y173{bottom:111.072000pt;}
.y97{bottom:112.352000pt;}
.ydf{bottom:113.472000pt;}
.y6f{bottom:115.232000pt;}
.yb7{bottom:116.192000pt;}
.y41{bottom:117.792000pt;}
.y11a{bottom:121.312000pt;}
.y1a0{bottom:125.792000pt;}
.y172{bottom:126.752000pt;}
.y96{bottom:127.552000pt;}
.y128{bottom:128.192000pt;}
.yde{bottom:128.352000pt;}
.y6e{bottom:130.592000pt;}
.yb6{bottom:131.392000pt;}
.y40{bottom:133.152000pt;}
.y119{bottom:136.986667pt;}
.y171{bottom:142.106667pt;}
.y6d{bottom:142.586667pt;}
.y127{bottom:143.386667pt;}
.ydd{bottom:144.026667pt;}
.y19f{bottom:145.146667pt;}
.yb5{bottom:146.746667pt;}
.y3f{bottom:148.506667pt;}
.y118{bottom:152.346667pt;}
.y170{bottom:157.466667pt;}
.y95{bottom:158.266667pt;}
.ydc{bottom:159.386667pt;}
.yb4{bottom:162.106667pt;}
.y3e{bottom:163.866667pt;}
.y19d{bottom:164.506667pt;}
.yf2{bottom:164.666667pt;}
.y117{bottom:167.386667pt;}
.y16f{bottom:172.826667pt;}
.y94{bottom:173.626667pt;}
.ydb{bottom:174.746667pt;}
.yb3{bottom:177.466667pt;}
.y3d{bottom:179.226667pt;}
.yf1{bottom:180.346667pt;}
.y116{bottom:183.066667pt;}
.y19c{bottom:183.706667pt;}
.y16e{bottom:188.026667pt;}
.y93{bottom:188.986667pt;}
.yda{bottom:190.106667pt;}
.yb2{bottom:192.826667pt;}
.y3c{bottom:194.426667pt;}
.yf0{bottom:195.706667pt;}
.y115{bottom:198.266667pt;}
.y16d{bottom:203.066667pt;}
.y92{bottom:204.346667pt;}
.yd9{bottom:205.306667pt;}
.yb1{bottom:208.026667pt;}
.y3b{bottom:209.786667pt;}
.yef{bottom:210.586667pt;}
.y114{bottom:213.626667pt;}
.yd8{bottom:217.466667pt;}
.y91{bottom:219.546667pt;}
.y16c{bottom:222.426667pt;}
.y136{bottom:223.066667pt;}
.yb0{bottom:223.386667pt;}
.y3a{bottom:225.146667pt;}
.yee{bottom:226.266667pt;}
.y113{bottom:228.986667pt;}
.y90{bottom:234.586667pt;}
.y141{bottom:238.426667pt;}
.yaf{bottom:238.746667pt;}
.y39{bottom:240.506667pt;}
.yed{bottom:241.626667pt;}
.y16b{bottom:241.786667pt;}
.y112{bottom:244.026667pt;}
.y8f{bottom:249.946667pt;}
.y1a6{bottom:253.786667pt;}
.yae{bottom:254.106667pt;}
.y38{bottom:255.866667pt;}
.yec{bottom:256.986667pt;}
.y111{bottom:259.706667pt;}
.y16a{bottom:261.146667pt;}
.y1d3{bottom:264.346667pt;}
.y8e{bottom:265.626667pt;}
.y13b{bottom:266.106667pt;}
.y126{bottom:269.146667pt;}
.yad{bottom:269.466667pt;}
.y37{bottom:271.226667pt;}
.yeb{bottom:272.346667pt;}
.y110{bottom:275.066667pt;}
.y1d2{bottom:280.026667pt;}
.y169{bottom:280.346667pt;}
.y8d{bottom:280.986667pt;}
.y13a{bottom:281.466667pt;}
.yea{bottom:284.346667pt;}
.yac{bottom:284.826667pt;}
.y36{bottom:286.426667pt;}
.y10f{bottom:290.266667pt;}
.y1d1{bottom:295.386667pt;}
.y8c{bottom:295.866667pt;}
.yab{bottom:300.026667pt;}
.y35{bottom:301.786667pt;}
.y168{bottom:302.106667pt;}
.y10e{bottom:305.626667pt;}
.y1d0{bottom:310.586667pt;}
.y8b{bottom:311.546667pt;}
.y130{bottom:312.026667pt;}
.yaa{bottom:315.386667pt;}
.y34{bottom:317.146667pt;}
.y167{bottom:317.506667pt;}
.y10d{bottom:320.706667pt;}
.y1cf{bottom:325.986667pt;}
.y8a{bottom:326.946667pt;}
.y12f{bottom:327.426667pt;}
.ya9{bottom:330.786667pt;}
.y33{bottom:332.226667pt;}
.y166{bottom:332.866667pt;}
.y10c{bottom:336.386667pt;}
.y1ce{bottom:341.346667pt;}
.y89{bottom:343.266667pt;}
.ya8{bottom:346.146667pt;}
.y165{bottom:347.746667pt;}
.y32{bottom:347.906667pt;}
.y19a{bottom:348.066667pt;}
.y10b{bottom:351.746667pt;}
.y1cd{bottom:356.706667pt;}
.y88{bottom:358.626667pt;}
.ya7{bottom:361.506667pt;}
.y199{bottom:363.106667pt;}
.y31{bottom:363.266667pt;}
.y164{bottom:363.426667pt;}
.y10a{bottom:367.106667pt;}
.yd3{bottom:370.146667pt;}
.y1cc{bottom:372.066667pt;}
.y87{bottom:374.946667pt;}
.ya6{bottom:376.866667pt;}
.y30{bottom:378.466667pt;}
.y163{bottom:378.786667pt;}
.y109{bottom:382.306667pt;}
.yd2{bottom:385.346667pt;}
.y1cb{bottom:387.266667pt;}
.y86{bottom:390.146667pt;}
.ya5{bottom:392.066667pt;}
.y2f{bottom:393.826667pt;}
.y162{bottom:394.146667pt;}
.y108{bottom:397.666667pt;}
.yd1{bottom:400.386667pt;}
.y1ca{bottom:402.626667pt;}
.y85{bottom:406.466667pt;}
.y139{bottom:407.106667pt;}
.ya4{bottom:407.426667pt;}
.y2e{bottom:409.186667pt;}
.y161{bottom:409.506667pt;}
.y107{bottom:413.026667pt;}
.yd0{bottom:416.066667pt;}
.y1c9{bottom:417.986667pt;}
.y84{bottom:421.826667pt;}
.ya3{bottom:422.786667pt;}
.y2d{bottom:424.546667pt;}
.y160{bottom:424.706667pt;}
.y106{bottom:428.386667pt;}
.ycf{bottom:431.426667pt;}
.y1c8{bottom:433.346667pt;}
.y83{bottom:437.826667pt;}
.ya2{bottom:438.146667pt;}
.y2c{bottom:439.906667pt;}
.y15f{bottom:440.066667pt;}
.y105{bottom:443.746667pt;}
.yce{bottom:446.786667pt;}
.y1c7{bottom:448.706667pt;}
.y6c{bottom:449.666667pt;}
.y12e{bottom:453.186667pt;}
.y82{bottom:453.506667pt;}
.y2b{bottom:455.106667pt;}
.y198{bottom:455.426667pt;}
.y104{bottom:458.946667pt;}
.ycd{bottom:462.146667pt;}
.y1c6{bottom:464.066667pt;}
.y6b{bottom:465.026667pt;}
.y135{bottom:465.506667pt;}
.y81{bottom:468.706667pt;}
.y2a{bottom:470.466667pt;}
.y197{bottom:470.786667pt;}
.y103{bottom:474.306667pt;}
.y15e{bottom:474.466667pt;}
.ycc{bottom:477.026667pt;}
.y1c5{bottom:479.266667pt;}
.y6a{bottom:479.906667pt;}
.y134{bottom:480.706667pt;}
.y80{bottom:483.746667pt;}
.ya1{bottom:484.066667pt;}
.y29{bottom:485.506667pt;}
.y196{bottom:486.146667pt;}
.y102{bottom:489.666667pt;}
.ycb{bottom:492.706667pt;}
.y15d{bottom:493.826667pt;}
.y1c4{bottom:494.626667pt;}
.y69{bottom:495.586667pt;}
.y140{bottom:496.066667pt;}
.y7f{bottom:499.426667pt;}
.y28{bottom:501.186667pt;}
.y195{bottom:501.506667pt;}
.y101{bottom:505.026667pt;}
.yca{bottom:509.026667pt;}
.y1c3{bottom:509.986667pt;}
.y68{bottom:510.946667pt;}
.y125{bottom:511.426667pt;}
.y15c{bottom:513.186667pt;}
.y7e{bottom:514.786667pt;}
.y194{bottom:516.386667pt;}
.y27{bottom:516.546667pt;}
.y100{bottom:520.386667pt;}
.yc9{bottom:525.026667pt;}
.y1c2{bottom:525.346667pt;}
.y67{bottom:526.306667pt;}
.y123{bottom:526.786667pt;}
.y7d{bottom:529.826667pt;}
.ya0{bottom:530.146667pt;}
.y26{bottom:531.906667pt;}
.y15b{bottom:532.386667pt;}
.yff{bottom:535.746667pt;}
.yc8{bottom:540.706667pt;}
.y66{bottom:541.666667pt;}
.yd7{bottom:545.026667pt;}
.y7c{bottom:545.506667pt;}
.y25{bottom:546.786667pt;}
.yfe{bottom:550.973333pt;}
.y193{bottom:551.133333pt;}
.y15a{bottom:554.173333pt;}
.y1c1{bottom:556.093333pt;}
.yc7{bottom:556.893333pt;}
.y65{bottom:557.853333pt;}
.y7b{bottom:560.733333pt;}
.y24{bottom:562.493333pt;}
.yfd{bottom:566.333333pt;}
.y159{bottom:569.533333pt;}
.y1c0{bottom:571.293333pt;}
.yc6{bottom:572.893333pt;}
.y64{bottom:574.173333pt;}
.y7a{bottom:576.093333pt;}
.y23{bottom:577.853333pt;}
.yfc{bottom:581.693333pt;}
.y158{bottom:584.733333pt;}
.y192{bottom:585.853333pt;}
.y1bf{bottom:586.653333pt;}
.yc5{bottom:588.573333pt;}
.y63{bottom:590.493333pt;}
.y79{bottom:591.453333pt;}
.y22{bottom:593.213333pt;}
.yfb{bottom:597.053333pt;}
.y157{bottom:599.773333pt;}
.y1be{bottom:602.013333pt;}
.yc4{bottom:603.933333pt;}
.y191{bottom:605.053333pt;}
.y133{bottom:606.493333pt;}
.y62{bottom:606.813333pt;}
.y21{bottom:608.573333pt;}
.yfa{bottom:612.413333pt;}
.y156{bottom:615.453333pt;}
.ye9{bottom:615.773333pt;}
.y1bd{bottom:617.373333pt;}
.yc3{bottom:619.293333pt;}
.y13f{bottom:621.853333pt;}
.y61{bottom:622.173333pt;}
.y20{bottom:623.933333pt;}
.y18e{bottom:624.413333pt;}
.yf9{bottom:627.773333pt;}
.y155{bottom:630.813333pt;}
.ye8{bottom:630.973333pt;}
.y1bc{bottom:632.733333pt;}
.yd6{bottom:634.173333pt;}
.yc2{bottom:635.613333pt;}
.y60{bottom:637.213333pt;}
.y78{bottom:637.533333pt;}
.y1f{bottom:639.133333pt;}
.yf8{bottom:642.653333pt;}
.ye7{bottom:646.013333pt;}
.y154{bottom:646.173333pt;}
.y1bb{bottom:647.933333pt;}
.y14a{bottom:649.533333pt;}
.yc1{bottom:650.813333pt;}
.y5f{bottom:652.413333pt;}
.y77{bottom:652.733333pt;}
.y1e{bottom:654.493333pt;}
.yf7{bottom:658.333333pt;}
.y18b{bottom:659.133333pt;}
.y153{bottom:661.533333pt;}
.ye6{bottom:661.693333pt;}
.y1ba{bottom:663.293333pt;}
.y149{bottom:664.733333pt;}
.yc0{bottom:666.173333pt;}
.y5e{bottom:668.093333pt;}
.y1d{bottom:669.853333pt;}
.yf6{bottom:673.693333pt;}
.y152{bottom:676.733333pt;}
.ye5{bottom:677.053333pt;}
.y1b9{bottom:678.653333pt;}
.ybf{bottom:681.533333pt;}
.y5d{bottom:683.453333pt;}
.y1c{bottom:685.213333pt;}
.yf5{bottom:689.053333pt;}
.y151{bottom:692.093333pt;}
.ye4{bottom:692.413333pt;}
.y1b8{bottom:694.013333pt;}
.y12d{bottom:695.453333pt;}
.ybe{bottom:697.853333pt;}
.y5c{bottom:698.813333pt;}
.y1b{bottom:700.573333pt;}
.yf4{bottom:704.413333pt;}
.y150{bottom:707.453333pt;}
.ye3{bottom:707.773333pt;}
.y1b7{bottom:709.373333pt;}
.y12c{bottom:710.813333pt;}
.y18a{bottom:711.453333pt;}
.ybd{bottom:713.213333pt;}
.y9f{bottom:713.853333pt;}
.y5b{bottom:714.173333pt;}
.y1a{bottom:715.933333pt;}
.ye2{bottom:719.773333pt;}
.y14f{bottom:722.493333pt;}
.y1b6{bottom:724.413333pt;}
.y189{bottom:726.813333pt;}
.ybc{bottom:728.573333pt;}
.y5a{bottom:729.533333pt;}
.y19{bottom:731.133333pt;}
.yf3{bottom:731.773333pt;}
.y1b5{bottom:739.933333pt;}
.y14e{bottom:741.853333pt;}
.y188{bottom:742.173333pt;}
.ybb{bottom:744.413333pt;}
.y59{bottom:744.733333pt;}
.y18{bottom:746.493333pt;}
.y1b4{bottom:755.293333pt;}
.y187{bottom:757.373333pt;}
.y58{bottom:760.093333pt;}
.y14d{bottom:761.053333pt;}
.y17{bottom:761.533333pt;}
.y1b3{bottom:770.653333pt;}
.y186{bottom:772.413333pt;}
.y9e{bottom:775.133333pt;}
.y57{bottom:775.453333pt;}
.y16{bottom:777.573333pt;}
.y14c{bottom:780.453333pt;}
.y1b2{bottom:787.013333pt;}
.y185{bottom:788.133333pt;}
.y148{bottom:790.533333pt;}
.y56{bottom:790.853333pt;}
.y15{bottom:793.253333pt;}
.y14b{bottom:799.813333pt;}
.y1b1{bottom:802.373333pt;}
.y184{bottom:803.493333pt;}
.y55{bottom:806.213333pt;}
.y14{bottom:808.613333pt;}
.y1b0{bottom:817.733333pt;}
.y183{bottom:818.853333pt;}
.y54{bottom:821.093333pt;}
.y76{bottom:821.413333pt;}
.y13{bottom:823.813333pt;}
.y1af{bottom:833.893333pt;}
.y182{bottom:834.213333pt;}
.y9d{bottom:836.453333pt;}
.y53{bottom:836.773333pt;}
.y12{bottom:839.173333pt;}
.y1ae{bottom:849.253333pt;}
.y181{bottom:849.413333pt;}
.y52{bottom:852.133333pt;}
.y11{bottom:854.533333pt;}
.y13e{bottom:864.133333pt;}
.y180{bottom:864.453333pt;}
.y1ad{bottom:864.613333pt;}
.y51{bottom:867.493333pt;}
.y10{bottom:869.893333pt;}
.y13d{bottom:879.493333pt;}
.y17f{bottom:880.133333pt;}
.y1ac{bottom:880.933333pt;}
.y12b{bottom:882.533333pt;}
.y50{bottom:882.853333pt;}
.yf{bottom:885.253333pt;}
.y121{bottom:894.853333pt;}
.y17e{bottom:895.493333pt;}
.y1ab{bottom:896.293333pt;}
.y9c{bottom:897.893333pt;}
.y4f{bottom:898.213333pt;}
.ye{bottom:900.613333pt;}
.y11f{bottom:910.213333pt;}
.y17d{bottom:910.853333pt;}
.y1aa{bottom:911.493333pt;}
.y1a5{bottom:913.093333pt;}
.y4e{bottom:913.413333pt;}
.yd{bottom:915.813333pt;}
.y17c{bottom:926.213333pt;}
.y1a9{bottom:927.813333pt;}
.y4d{bottom:928.773333pt;}
.yc{bottom:931.173333pt;}
.y17b{bottom:941.413333pt;}
.y1a8{bottom:943.173333pt;}
.y4c{bottom:944.133333pt;}
.yb{bottom:947.173333pt;}
.y17a{bottom:956.453333pt;}
.y1a7{bottom:958.533333pt;}
.y9b{bottom:959.173333pt;}
.y4b{bottom:959.493333pt;}
.ya{bottom:962.533333pt;}
.y4a{bottom:974.533333pt;}
.y75{bottom:974.853333pt;}
.y179{bottom:975.813333pt;}
.y9{bottom:978.213333pt;}
.y49{bottom:990.213333pt;}
.y178{bottom:995.173333pt;}
.y8{bottom:996.613333pt;}
.y13c{bottom:1005.093333pt;}
.y48{bottom:1005.413333pt;}
.y177{bottom:1014.560000pt;}
.y7{bottom:1015.040000pt;}
.y47{bottom:1020.800000pt;}
.y6{bottom:1033.440000pt;}
.y74{bottom:1035.840000pt;}
.y46{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.hb{height:15.200000pt;}
.hc{height:15.360000pt;}
.hd{height:15.392000pt;}
.he{height:18.880000pt;}
.hf{height:30.720000pt;}
.h8{height:37.090625pt;}
.ha{height:47.109375pt;}
.h2{height:52.108438pt;}
.h6{height:52.134375pt;}
.h7{height:53.535000pt;}
.h9{height:54.598989pt;}
.h4{height:58.563750pt;}
.h5{height:64.500000pt;}
.h3{height:65.531250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1b{width:61.120000pt;}
.wa{width:71.520000pt;}
.w1a{width:73.632000pt;}
.w6{width:75.712000pt;}
.w19{width:79.360000pt;}
.w13{width:82.240000pt;}
.w14{width:84.032000pt;}
.w1c{width:91.872000pt;}
.w9{width:99.552000pt;}
.w18{width:108.032000pt;}
.w12{width:113.312000pt;}
.w15{width:115.232000pt;}
.w5{width:125.952000pt;}
.w2{width:142.426667pt;}
.w3{width:142.586667pt;}
.w11{width:143.066667pt;}
.w7{width:150.906667pt;}
.w16{width:152.186667pt;}
.w10{width:168.826667pt;}
.wb{width:199.106667pt;}
.wd{width:214.266667pt;}
.wf{width:255.106667pt;}
.we{width:272.066667pt;}
.w17{width:276.226667pt;}
.w8{width:323.586667pt;}
.w4{width:341.506667pt;}
.wc{width:406.466667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5c{left:4.960000pt;}
.x6d{left:8.000000pt;}
.x63{left:9.920000pt;}
.x5e{left:11.200000pt;}
.x45{left:13.120000pt;}
.x68{left:14.240000pt;}
.x39{left:15.360000pt;}
.x60{left:16.320000pt;}
.x43{left:17.920000pt;}
.x72{left:19.680000pt;}
.x49{left:20.640000pt;}
.x70{left:21.760000pt;}
.x3e{left:22.880000pt;}
.x37{left:24.666667pt;}
.x67{left:26.080000pt;}
.x65{left:27.066667pt;}
.x5d{left:28.000000pt;}
.x3b{left:29.280000pt;}
.x62{left:31.040000pt;}
.x75{left:32.320000pt;}
.x71{left:33.600000pt;}
.x47{left:34.760000pt;}
.x6f{left:35.840000pt;}
.x76{left:36.800000pt;}
.x59{left:38.880000pt;}
.x1d{left:40.800000pt;}
.x66{left:42.560000pt;}
.x64{left:44.352000pt;}
.x73{left:45.760000pt;}
.x34{left:47.040000pt;}
.x5{left:48.000000pt;}
.x3d{left:48.986667pt;}
.x1f{left:54.880000pt;}
.x4e{left:56.032000pt;}
.x25{left:58.240000pt;}
.x23{left:59.360000pt;}
.x26{left:61.152000pt;}
.x21{left:62.560000pt;}
.x74{left:64.032000pt;}
.x3f{left:64.960000pt;}
.x1e{left:66.432000pt;}
.x5a{left:69.920000pt;}
.xd{left:72.000000pt;}
.x6a{left:84.512000pt;}
.x50{left:85.632000pt;}
.x4c{left:87.706667pt;}
.x4a{left:89.000000pt;}
.x4d{left:91.240000pt;}
.xe{left:96.032000pt;}
.x55{left:97.434667pt;}
.x4b{left:110.906667pt;}
.x48{left:115.226667pt;}
.x11{left:120.032000pt;}
.x3c{left:124.186667pt;}
.x54{left:129.114667pt;}
.x41{left:136.986667pt;}
.x13{left:144.026667pt;}
.x35{left:145.946667pt;}
.x53{left:152.314667pt;}
.x52{left:156.674667pt;}
.x2a{left:161.466667pt;}
.xc{left:164.346667pt;}
.x32{left:168.186667pt;}
.x31{left:173.626667pt;}
.x1c{left:177.786667pt;}
.x6{left:184.026667pt;}
.x2e{left:190.586667pt;}
.x5b{left:192.026667pt;}
.x2b{left:192.986667pt;}
.x27{left:194.746667pt;}
.x69{left:201.306667pt;}
.x8{left:203.226667pt;}
.x2c{left:207.706667pt;}
.x28{left:210.426667pt;}
.x30{left:212.186667pt;}
.x2d{left:221.946667pt;}
.x1a{left:223.546667pt;}
.x10{left:228.026667pt;}
.xa{left:230.426667pt;}
.x3{left:232.186667pt;}
.x2f{left:233.946667pt;}
.x19{left:238.746667pt;}
.x17{left:242.946667pt;}
.x1b{left:253.826667pt;}
.x4f{left:257.666667pt;}
.x2{left:267.266667pt;}
.x56{left:287.266667pt;}
.x7{left:295.426667pt;}
.x40{left:301.346667pt;}
.x33{left:302.306667pt;}
.x1{left:306.786667pt;}
.x57{left:321.186667pt;}
.x20{left:325.666667pt;}
.x42{left:372.706667pt;}
.x36{left:390.626667pt;}
.xb{left:398.146667pt;}
.x9{left:402.173333pt;}
.x15{left:421.053333pt;}
.x6b{left:435.293333pt;}
.x22{left:468.093333pt;}
.x44{left:474.333333pt;}
.x5f{left:477.373333pt;}
.x12{left:492.573333pt;}
.x51{left:494.013333pt;}
.x14{left:516.573333pt;}
.x38{left:518.493333pt;}
.x46{left:547.933333pt;}
.x58{left:578.213333pt;}
.x6c{left:592.133333pt;}
.x61{left:594.693333pt;}
.x3a{left:596.133333pt;}
.x24{left:610.693333pt;}
.xf{left:639.973333pt;}
.x6e{left:655.173333pt;}
.x16{left:687.493333pt;}
.x18{left:708.933333pt;}
.x29{left:729.920000pt;}
.x4{left:737.920000pt;}
}




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