
    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_d081bd7d9b9bf7f7c9131533.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3810a70b1de5073f9c8039b1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.049805;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_72a930bccddca93467a02e85.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008789;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_bb29acef347689b490b82044.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_42b9f639ea2a9c29b74de2eb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.897461;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_1f398fa9d2bbeba105eeb594.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_ff66506e70af8911d1404be2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049805;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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:-27.360000px;}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.034560px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.341280px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.720000px;}
.lsc{letter-spacing:2.880000px;}
.lsf{letter-spacing:3.600000px;}
.lsd{letter-spacing:5.760000px;}
.lsa{letter-spacing:6.480000px;}
.lse{letter-spacing:9.360000px;}
.ls10{letter-spacing:15.840000px;}
.ls9{letter-spacing:33.960000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.060000px;}
.ws7{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws2{word-spacing:-12.060000px;}
.ws4{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-88.394400px;}
._1c{margin-left:-5.256000px;}
._11{margin-left:-4.248000px;}
._15{margin-left:-3.211920px;}
._16{margin-left:-2.179680px;}
._4{margin-left:-1.108080px;}
._0{width:1.274400px;}
._5{width:2.489280px;}
._6{width:3.558720px;}
._7{width:4.588320px;}
._a{width:5.923680px;}
._8{width:7.776000px;}
._9{width:9.072000px;}
._d{width:10.416000px;}
._e{width:11.848080px;}
._17{width:13.032000px;}
._1a{width:14.349600px;}
._23{width:15.386400px;}
._14{width:16.416000px;}
._19{width:19.224000px;}
._1b{width:20.304000px;}
._b{width:21.384000px;}
._c{width:23.184000px;}
._1d{width:24.187680px;}
._12{width:25.272000px;}
._13{width:26.400000px;}
._18{width:28.324080px;}
._1e{width:30.240000px;}
._f{width:31.680000px;}
._10{width:32.844000px;}
._25{width:34.344000px;}
._26{width:35.911200px;}
._20{width:37.512000px;}
._29{width:43.848000px;}
._21{width:49.032000px;}
._3{width:83.380080px;}
._1{width:109.380000px;}
._27{width:112.968000px;}
._28{width:114.175200px;}
._1f{width:130.680000px;}
._22{width:135.216000px;}
._24{width:198.000000px;}
._2a{width:229.068000px;}
.fc3{color:transparent;}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:87.120000px;}
.fs4{font-size:95.760000px;}
.ya{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.yde{bottom:3.960000px;}
.yea{bottom:4.005000px;}
.yfe{bottom:4.140000px;}
.yf6{bottom:4.320000px;}
.y33{bottom:6.120000px;}
.y9{bottom:6.300000px;}
.y31{bottom:10.800000px;}
.y127{bottom:19.980000px;}
.y129{bottom:20.160000px;}
.y134{bottom:20.190000px;}
.ye1{bottom:20.700000px;}
.ye9{bottom:20.745000px;}
.y7{bottom:21.600000px;}
.ydd{bottom:24.660000px;}
.yfd{bottom:25.020000px;}
.yf5{bottom:25.200000px;}
.y115{bottom:25.230000px;}
.y32{bottom:31.500000px;}
.y8{bottom:31.680000px;}
.y12b{bottom:35.100000px;}
.y136{bottom:40.860000px;}
.y12d{bottom:40.905000px;}
.y12f{bottom:41.040000px;}
.y133{bottom:41.070000px;}
.yfc{bottom:41.760000px;}
.yf9{bottom:41.940000px;}
.yf4{bottom:46.080000px;}
.y12a{bottom:55.980000px;}
.y126{bottom:56.700000px;}
.y6{bottom:57.780000px;}
.yf3{bottom:67.185000px;}
.y5{bottom:78.516000px;}
.y125{bottom:93.600000px;}
.y7f{bottom:113.436000px;}
.y16b{bottom:120.096000px;}
.y143{bottom:125.136000px;}
.yc4{bottom:129.456000px;}
.y2f{bottom:129.996000px;}
.y5c{bottom:130.176000px;}
.y123{bottom:133.956000px;}
.y7e{bottom:134.136000px;}
.y9b{bottom:135.576000px;}
.y16a{bottom:140.796000px;}
.yc3{bottom:150.150000px;}
.y2e{bottom:150.690000px;}
.y5b{bottom:150.870000px;}
.y122{bottom:154.650000px;}
.y7d{bottom:154.830000px;}
.y9a{bottom:156.270000px;}
.y169{bottom:161.490000px;}
.y142{bottom:161.670000px;}
.yf0{bottom:168.510000px;}
.yc2{bottom:170.850000px;}
.y172{bottom:171.030000px;}
.y2d{bottom:171.390000px;}
.y5a{bottom:171.570000px;}
.y121{bottom:175.350000px;}
.y7c{bottom:175.530000px;}
.y99{bottom:176.970000px;}
.y168{bottom:182.190000px;}
.y141{bottom:182.370000px;}
.y18a{bottom:190.110000px;}
.y171{bottom:191.730000px;}
.y2c{bottom:192.090000px;}
.y59{bottom:192.270000px;}
.y120{bottom:196.050000px;}
.y7b{bottom:196.230000px;}
.y98{bottom:197.670000px;}
.y167{bottom:202.890000px;}
.y140{bottom:203.070000px;}
.yef{bottom:205.050000px;}
.y189{bottom:210.810000px;}
.yc1{bottom:212.430000px;}
.y2b{bottom:212.790000px;}
.y58{bottom:212.970000px;}
.y11f{bottom:216.750000px;}
.y7a{bottom:216.930000px;}
.y97{bottom:218.370000px;}
.yee{bottom:222.510000px;}
.y166{bottom:223.590000px;}
.y13f{bottom:223.770000px;}
.yc0{bottom:233.130000px;}
.y170{bottom:233.310000px;}
.y2a{bottom:233.490000px;}
.y57{bottom:233.670000px;}
.yd5{bottom:234.030000px;}
.y11e{bottom:237.450000px;}
.y79{bottom:237.630000px;}
.y96{bottom:239.070000px;}
.yed{bottom:243.210000px;}
.y165{bottom:244.290000px;}
.y13e{bottom:244.470000px;}
.y188{bottom:252.570000px;}
.ybf{bottom:253.830000px;}
.y16f{bottom:254.010000px;}
.y29{bottom:254.190000px;}
.yd4{bottom:254.730000px;}
.y11d{bottom:258.150000px;}
.y78{bottom:258.330000px;}
.y95{bottom:259.770000px;}
.yec{bottom:263.910000px;}
.y164{bottom:264.990000px;}
.y13d{bottom:265.170000px;}
.y106{bottom:265.890000px;}
.y187{bottom:273.270000px;}
.ybe{bottom:274.530000px;}
.y16e{bottom:274.710000px;}
.y28{bottom:274.890000px;}
.y56{bottom:275.430000px;}
.y11c{bottom:278.850000px;}
.y77{bottom:279.030000px;}
.y94{bottom:280.470000px;}
.y105{bottom:283.530000px;}
.yeb{bottom:284.610000px;}
.y163{bottom:285.690000px;}
.y13c{bottom:285.870000px;}
.y186{bottom:293.970000px;}
.ybd{bottom:295.230000px;}
.y16d{bottom:295.410000px;}
.yd3{bottom:296.130000px;}
.y76{bottom:299.730000px;}
.y93{bottom:301.170000px;}
.y27{bottom:301.890000px;}
.ye8{bottom:305.310000px;}
.y162{bottom:306.390000px;}
.y13b{bottom:306.570000px;}
.y11b{bottom:315.435000px;}
.ybc{bottom:315.975000px;}
.yd2{bottom:316.875000px;}
.y55{bottom:317.055000px;}
.y75{bottom:320.475000px;}
.y104{bottom:325.335000px;}
.ye7{bottom:326.055000px;}
.y13a{bottom:327.315000px;}
.y11a{bottom:332.895000px;}
.y185{bottom:335.775000px;}
.ybb{bottom:336.675000px;}
.y16c{bottom:337.215000px;}
.yd1{bottom:337.575000px;}
.y54{bottom:337.755000px;}
.y92{bottom:342.975000px;}
.y26{bottom:343.695000px;}
.ye6{bottom:346.755000px;}
.y161{bottom:348.195000px;}
.y184{bottom:356.475000px;}
.y74{bottom:357.015000px;}
.yba{bottom:357.375000px;}
.yd0{bottom:358.275000px;}
.y53{bottom:358.455000px;}
.y91{bottom:363.675000px;}
.y139{bottom:363.855000px;}
.y103{bottom:367.275000px;}
.ye5{bottom:367.455000px;}
.y160{bottom:368.895000px;}
.y119{bottom:374.835000px;}
.y199{bottom:377.355000px;}
.yb9{bottom:378.075000px;}
.ycf{bottom:378.975000px;}
.y52{bottom:379.155000px;}
.y138{bottom:381.315000px;}
.y90{bottom:384.375000px;}
.y25{bottom:385.275000px;}
.ye4{bottom:388.155000px;}
.y15f{bottom:389.595000px;}
.y183{bottom:398.055000px;}
.y73{bottom:398.775000px;}
.y51{bottom:399.855000px;}
.y8f{bottom:405.075000px;}
.y24{bottom:405.975000px;}
.ye3{bottom:408.855000px;}
.y102{bottom:409.215000px;}
.y15e{bottom:410.295000px;}
.y118{bottom:416.775000px;}
.y182{bottom:418.755000px;}
.y198{bottom:419.115000px;}
.yb8{bottom:419.835000px;}
.y50{bottom:420.555000px;}
.y8e{bottom:425.775000px;}
.y23{bottom:426.675000px;}
.ye2{bottom:429.555000px;}
.y15d{bottom:430.995000px;}
.y137{bottom:439.095000px;}
.y197{bottom:439.815000px;}
.y72{bottom:440.355000px;}
.yb7{bottom:440.535000px;}
.y4f{bottom:441.255000px;}
.y8d{bottom:446.475000px;}
.y22{bottom:447.375000px;}
.ye0{bottom:450.255000px;}
.y101{bottom:451.155000px;}
.y15c{bottom:451.695000px;}
.y117{bottom:458.715000px;}
.y181{bottom:460.515000px;}
.y71{bottom:461.055000px;}
.yb6{bottom:461.235000px;}
.y4e{bottom:461.955000px;}
.y8c{bottom:467.175000px;}
.y21{bottom:468.075000px;}
.ydf{bottom:470.955000px;}
.y15b{bottom:472.395000px;}
.y180{bottom:481.215000px;}
.y70{bottom:481.755000px;}
.yb5{bottom:481.935000px;}
.y4d{bottom:482.655000px;}
.y8b{bottom:487.875000px;}
.y20{bottom:488.775000px;}
.ydc{bottom:492.375000px;}
.y100{bottom:493.095000px;}
.y135{bottom:496.875000px;}
.y116{bottom:500.475000px;}
.y17f{bottom:501.915000px;}
.y196{bottom:502.275000px;}
.y6f{bottom:502.455000px;}
.yb4{bottom:502.635000px;}
.y4c{bottom:503.355000px;}
.y8a{bottom:508.575000px;}
.y1f{bottom:509.475000px;}
.y15a{bottom:513.795000px;}
.y195{bottom:522.975000px;}
.y6e{bottom:523.155000px;}
.yb3{bottom:523.335000px;}
.yce{bottom:524.055000px;}
.y89{bottom:529.275000px;}
.y1e{bottom:530.175000px;}
.y159{bottom:534.495000px;}
.yff{bottom:535.035000px;}
.y114{bottom:542.415000px;}
.y17e{bottom:543.675000px;}
.yb2{bottom:544.035000px;}
.ycd{bottom:544.755000px;}
.y4b{bottom:545.115000px;}
.y88{bottom:549.975000px;}
.y1d{bottom:550.875000px;}
.y132{bottom:554.475000px;}
.y158{bottom:555.195000px;}
.y17d{bottom:564.405000px;}
.y194{bottom:564.585000px;}
.yb1{bottom:564.765000px;}
.y6d{bottom:564.945000px;}
.ycc{bottom:565.485000px;}
.y4a{bottom:565.845000px;}
.y1c{bottom:571.605000px;}
.y157{bottom:575.925000px;}
.yfb{bottom:577.005000px;}
.y113{bottom:584.385000px;}
.y193{bottom:585.285000px;}
.yb0{bottom:585.465000px;}
.ycb{bottom:586.185000px;}
.y49{bottom:586.545000px;}
.y1b{bottom:592.305000px;}
.y156{bottom:596.625000px;}
.y17c{bottom:605.985000px;}
.yaf{bottom:606.165000px;}
.y6c{bottom:606.705000px;}
.yca{bottom:606.885000px;}
.y48{bottom:607.245000px;}
.y131{bottom:612.285000px;}
.y1a{bottom:613.005000px;}
.y155{bottom:617.325000px;}
.yfa{bottom:618.765000px;}
.y112{bottom:626.325000px;}
.y17b{bottom:626.685000px;}
.yae{bottom:626.865000px;}
.y192{bottom:627.045000px;}
.yc9{bottom:627.585000px;}
.y47{bottom:627.945000px;}
.y87{bottom:628.305000px;}
.y19{bottom:633.705000px;}
.y154{bottom:638.025000px;}
.y17a{bottom:647.385000px;}
.yad{bottom:647.565000px;}
.y191{bottom:647.745000px;}
.y6b{bottom:648.285000px;}
.y46{bottom:648.645000px;}
.y86{bottom:649.005000px;}
.y18{bottom:654.405000px;}
.y153{bottom:658.725000px;}
.yf8{bottom:660.705000px;}
.yac{bottom:668.265000px;}
.y6a{bottom:668.985000px;}
.y45{bottom:669.345000px;}
.y85{bottom:669.705000px;}
.y130{bottom:670.065000px;}
.y17{bottom:675.105000px;}
.y152{bottom:679.425000px;}
.yab{bottom:688.965000px;}
.y179{bottom:689.145000px;}
.y190{bottom:689.325000px;}
.y69{bottom:689.685000px;}
.y44{bottom:690.045000px;}
.y84{bottom:690.405000px;}
.y16{bottom:695.805000px;}
.y151{bottom:700.125000px;}
.yf7{bottom:702.645000px;}
.yaa{bottom:709.665000px;}
.y178{bottom:709.845000px;}
.y18f{bottom:710.025000px;}
.y111{bottom:710.205000px;}
.y68{bottom:710.385000px;}
.y43{bottom:710.745000px;}
.y83{bottom:710.925000px;}
.y150{bottom:720.825000px;}
.y15{bottom:722.805000px;}
.y12e{bottom:727.845000px;}
.y177{bottom:730.545000px;}
.y18e{bottom:730.725000px;}
.y67{bottom:731.085000px;}
.y42{bottom:731.445000px;}
.y82{bottom:731.625000px;}
.ya9{bottom:736.665000px;}
.yf2{bottom:745.305000px;}
.y66{bottom:751.785000px;}
.y41{bottom:752.145000px;}
.y81{bottom:752.325000px;}
.y14f{bottom:762.405000px;}
.y14{bottom:764.565000px;}
.y176{bottom:772.125000px;}
.y18d{bottom:772.485000px;}
.ydb{bottom:772.845000px;}
.y80{bottom:773.025000px;}
.ya8{bottom:778.245000px;}
.y14e{bottom:783.105000px;}
.y13{bottom:785.265000px;}
.y12c{bottom:785.625000px;}
.y175{bottom:792.825000px;}
.y18c{bottom:793.185000px;}
.y65{bottom:793.545000px;}
.y40{bottom:793.725000px;}
.y110{bottom:793.905000px;}
.ya7{bottom:798.945000px;}
.y14d{bottom:803.805000px;}
.y12{bottom:812.850000px;}
.y18b{bottom:813.930000px;}
.y64{bottom:814.290000px;}
.y3f{bottom:814.470000px;}
.y10f{bottom:815.730000px;}
.ya6{bottom:819.690000px;}
.y14c{bottom:824.550000px;}
.y11{bottom:826.710000px;}
.y174{bottom:834.630000px;}
.y63{bottom:834.990000px;}
.y3e{bottom:835.170000px;}
.yc8{bottom:835.530000px;}
.yf1{bottom:840.210000px;}
.ya5{bottom:840.390000px;}
.y124{bottom:844.170000px;}
.y14b{bottom:845.250000px;}
.y10{bottom:854.250000px;}
.y173{bottom:855.330000px;}
.yda{bottom:855.690000px;}
.y3d{bottom:855.870000px;}
.yc7{bottom:856.230000px;}
.ya4{bottom:861.090000px;}
.y14a{bottom:865.950000px;}
.yf{bottom:874.950000px;}
.yd9{bottom:876.390000px;}
.y3c{bottom:876.570000px;}
.yc6{bottom:876.930000px;}
.ya3{bottom:881.790000px;}
.y149{bottom:886.650000px;}
.ye{bottom:888.810000px;}
.y10e{bottom:889.530000px;}
.yd8{bottom:897.090000px;}
.y3b{bottom:897.270000px;}
.yc5{bottom:897.630000px;}
.ya2{bottom:902.490000px;}
.y148{bottom:907.350000px;}
.yd{bottom:915.450000px;}
.y10d{bottom:916.530000px;}
.y128{bottom:917.610000px;}
.yd7{bottom:917.790000px;}
.y3a{bottom:917.970000px;}
.y62{bottom:918.330000px;}
.ya1{bottom:923.190000px;}
.y147{bottom:928.050000px;}
.y10c{bottom:937.410000px;}
.yd6{bottom:938.490000px;}
.y39{bottom:938.670000px;}
.y61{bottom:939.030000px;}
.ya0{bottom:943.890000px;}
.y146{bottom:948.750000px;}
.yc{bottom:951.090000px;}
.y10b{bottom:958.470000px;}
.y38{bottom:959.370000px;}
.y60{bottom:959.730000px;}
.y9f{bottom:964.590000px;}
.y145{bottom:969.450000px;}
.yb{bottom:971.790000px;}
.y10a{bottom:979.350000px;}
.y37{bottom:980.070000px;}
.y5f{bottom:980.430000px;}
.y9e{bottom:985.290000px;}
.y144{bottom:990.150000px;}
.y109{bottom:1000.410000px;}
.y36{bottom:1000.770000px;}
.y5e{bottom:1001.130000px;}
.y9d{bottom:1005.990000px;}
.y4{bottom:1013.550000px;}
.y108{bottom:1021.290000px;}
.y5d{bottom:1021.830000px;}
.y9c{bottom:1026.690000px;}
.y107{bottom:1042.350000px;}
.y35{bottom:1042.530000px;}
.y3{bottom:1055.850000px;}
.y34{bottom:1063.260000px;}
.y2{bottom:1093.140000px;}
.y1{bottom:1115.820000px;}
.y30{bottom:1117.260000px;}
.ha{height:20.700000px;}
.hb{height:20.736000px;}
.h12{height:21.096000px;}
.h7{height:34.036523px;}
.h14{height:36.900000px;}
.h8{height:40.231406px;}
.h9{height:41.400000px;}
.he{height:41.760000px;}
.h10{height:41.796000px;}
.hd{height:41.940000px;}
.hf{height:41.976000px;}
.h5{height:49.500000px;}
.h2{height:50.800781px;}
.h19{height:57.600000px;}
.h16{height:57.636000px;}
.h17{height:57.780000px;}
.h18{height:57.816000px;}
.h6{height:58.320000px;}
.h4{height:60.046875px;}
.h1{height:61.468945px;}
.h11{height:62.820000px;}
.h3{height:70.254844px;}
.h15{height:72.720000px;}
.hc{height:83.916000px;}
.h13{height:110.340000px;}
.h0{height:1188.000000px;}
.wd{width:44.280000px;}
.w15{width:46.980000px;}
.w6{width:48.960000px;}
.w8{width:68.220000px;}
.wf{width:69.156000px;}
.w19{width:74.196000px;}
.w1a{width:75.960000px;}
.w18{width:78.120000px;}
.w13{width:79.056000px;}
.w14{width:79.200000px;}
.wa{width:81.000000px;}
.wc{width:87.876000px;}
.wb{width:94.500000px;}
.w9{width:97.776000px;}
.w11{width:99.216000px;}
.w10{width:104.760000px;}
.w5{width:108.036000px;}
.we{width:111.420000px;}
.w12{width:115.020000px;}
.w4{width:148.500000px;}
.w3{width:162.030000px;}
.w7{width:169.410000px;}
.w16{width:198.570000px;}
.w2{width:222.330000px;}
.w17{width:228.270000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1a{left:7.020000px;}
.x7{left:9.719986px;}
.x21{left:12.960000px;}
.x18{left:14.040000px;}
.x31{left:17.100000px;}
.x24{left:19.665000px;}
.x27{left:21.060000px;}
.x20{left:24.660000px;}
.x29{left:26.460000px;}
.x26{left:27.720000px;}
.x1f{left:30.420000px;}
.x2c{left:33.840000px;}
.x15{left:35.820000px;}
.x8{left:38.339986px;}
.x19{left:40.365000px;}
.x13{left:41.940000px;}
.x16{left:45.000000px;}
.x1c{left:55.440000px;}
.x11{left:79.554000px;}
.x38{left:82.080000px;}
.x36{left:90.540000px;}
.x34{left:98.640000px;}
.x6{left:106.955986px;}
.x10{left:108.036000px;}
.x39{left:113.625000px;}
.xa{left:128.015986px;}
.xc{left:133.775986px;}
.xe{left:135.035986px;}
.x28{left:152.310000px;}
.x33{left:155.010000px;}
.x1b{left:156.990000px;}
.xf{left:162.029986px;}
.x1{left:176.249986px;}
.x3{left:206.309986px;}
.x4{left:236.549986px;}
.x2a{left:263.730000px;}
.x2{left:284.249986px;}
.x1d{left:326.415000px;}
.x12{left:330.375000px;}
.x2b{left:332.895000px;}
.x35{left:353.595000px;}
.xb{left:380.774986px;}
.x1e{left:394.635000px;}
.x9{left:423.074986px;}
.x3a{left:431.715000px;}
.x2d{left:437.655000px;}
.xd{left:458.534986px;}
.x14{left:492.405000px;}
.x3b{left:505.905000px;}
.x2e{left:536.865000px;}
.x22{left:573.405000px;}
.x37{left:581.865000px;}
.x17{left:640.905000px;}
.x2f{left:651.885000px;}
.x3c{left:659.985000px;}
.x23{left:667.905000px;}
.x30{left:730.950000px;}
.x3d{left:734.190000px;}
.x25{left:755.790000px;}
.x32{left:792.149986px;}
.x5{left:801.149986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.030720pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.303360pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.640000pt;}
.lsc{letter-spacing:2.560000pt;}
.lsf{letter-spacing:3.200000pt;}
.lsd{letter-spacing:5.120000pt;}
.lsa{letter-spacing:5.760000pt;}
.lse{letter-spacing:8.320000pt;}
.ls10{letter-spacing:14.080000pt;}
.ls9{letter-spacing:30.186667pt;}
.ws1{word-spacing:-18.720000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws4{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-78.572800pt;}
._1c{margin-left:-4.672000pt;}
._11{margin-left:-3.776000pt;}
._15{margin-left:-2.855040pt;}
._16{margin-left:-1.937493pt;}
._4{margin-left:-0.984960pt;}
._0{width:1.132800pt;}
._5{width:2.212693pt;}
._6{width:3.163307pt;}
._7{width:4.078507pt;}
._a{width:5.265493pt;}
._8{width:6.912000pt;}
._9{width:8.064000pt;}
._d{width:9.258667pt;}
._e{width:10.531627pt;}
._17{width:11.584000pt;}
._1a{width:12.755200pt;}
._23{width:13.676800pt;}
._14{width:14.592000pt;}
._19{width:17.088000pt;}
._1b{width:18.048000pt;}
._b{width:19.008000pt;}
._c{width:20.608000pt;}
._1d{width:21.500160pt;}
._12{width:22.464000pt;}
._13{width:23.466667pt;}
._18{width:25.176960pt;}
._1e{width:26.880000pt;}
._f{width:28.160000pt;}
._10{width:29.194667pt;}
._25{width:30.528000pt;}
._26{width:31.921067pt;}
._20{width:33.344000pt;}
._29{width:38.976000pt;}
._21{width:43.584000pt;}
._3{width:74.115627pt;}
._1{width:97.226667pt;}
._27{width:100.416000pt;}
._28{width:101.489067pt;}
._1f{width:116.160000pt;}
._22{width:120.192000pt;}
._24{width:176.000000pt;}
._2a{width:203.616000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:77.440000pt;}
.fs4{font-size:85.120000pt;}
.ya{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:3.520000pt;}
.yea{bottom:3.560000pt;}
.yfe{bottom:3.680000pt;}
.yf6{bottom:3.840000pt;}
.y33{bottom:5.440000pt;}
.y9{bottom:5.600000pt;}
.y31{bottom:9.600000pt;}
.y127{bottom:17.760000pt;}
.y129{bottom:17.920000pt;}
.y134{bottom:17.946667pt;}
.ye1{bottom:18.400000pt;}
.ye9{bottom:18.440000pt;}
.y7{bottom:19.200000pt;}
.ydd{bottom:21.920000pt;}
.yfd{bottom:22.240000pt;}
.yf5{bottom:22.400000pt;}
.y115{bottom:22.426667pt;}
.y32{bottom:28.000000pt;}
.y8{bottom:28.160000pt;}
.y12b{bottom:31.200000pt;}
.y136{bottom:36.320000pt;}
.y12d{bottom:36.360000pt;}
.y12f{bottom:36.480000pt;}
.y133{bottom:36.506667pt;}
.yfc{bottom:37.120000pt;}
.yf9{bottom:37.280000pt;}
.yf4{bottom:40.960000pt;}
.y12a{bottom:49.760000pt;}
.y126{bottom:50.400000pt;}
.y6{bottom:51.360000pt;}
.yf3{bottom:59.720000pt;}
.y5{bottom:69.792000pt;}
.y125{bottom:83.200000pt;}
.y7f{bottom:100.832000pt;}
.y16b{bottom:106.752000pt;}
.y143{bottom:111.232000pt;}
.yc4{bottom:115.072000pt;}
.y2f{bottom:115.552000pt;}
.y5c{bottom:115.712000pt;}
.y123{bottom:119.072000pt;}
.y7e{bottom:119.232000pt;}
.y9b{bottom:120.512000pt;}
.y16a{bottom:125.152000pt;}
.yc3{bottom:133.466667pt;}
.y2e{bottom:133.946667pt;}
.y5b{bottom:134.106667pt;}
.y122{bottom:137.466667pt;}
.y7d{bottom:137.626667pt;}
.y9a{bottom:138.906667pt;}
.y169{bottom:143.546667pt;}
.y142{bottom:143.706667pt;}
.yf0{bottom:149.786667pt;}
.yc2{bottom:151.866667pt;}
.y172{bottom:152.026667pt;}
.y2d{bottom:152.346667pt;}
.y5a{bottom:152.506667pt;}
.y121{bottom:155.866667pt;}
.y7c{bottom:156.026667pt;}
.y99{bottom:157.306667pt;}
.y168{bottom:161.946667pt;}
.y141{bottom:162.106667pt;}
.y18a{bottom:168.986667pt;}
.y171{bottom:170.426667pt;}
.y2c{bottom:170.746667pt;}
.y59{bottom:170.906667pt;}
.y120{bottom:174.266667pt;}
.y7b{bottom:174.426667pt;}
.y98{bottom:175.706667pt;}
.y167{bottom:180.346667pt;}
.y140{bottom:180.506667pt;}
.yef{bottom:182.266667pt;}
.y189{bottom:187.386667pt;}
.yc1{bottom:188.826667pt;}
.y2b{bottom:189.146667pt;}
.y58{bottom:189.306667pt;}
.y11f{bottom:192.666667pt;}
.y7a{bottom:192.826667pt;}
.y97{bottom:194.106667pt;}
.yee{bottom:197.786667pt;}
.y166{bottom:198.746667pt;}
.y13f{bottom:198.906667pt;}
.yc0{bottom:207.226667pt;}
.y170{bottom:207.386667pt;}
.y2a{bottom:207.546667pt;}
.y57{bottom:207.706667pt;}
.yd5{bottom:208.026667pt;}
.y11e{bottom:211.066667pt;}
.y79{bottom:211.226667pt;}
.y96{bottom:212.506667pt;}
.yed{bottom:216.186667pt;}
.y165{bottom:217.146667pt;}
.y13e{bottom:217.306667pt;}
.y188{bottom:224.506667pt;}
.ybf{bottom:225.626667pt;}
.y16f{bottom:225.786667pt;}
.y29{bottom:225.946667pt;}
.yd4{bottom:226.426667pt;}
.y11d{bottom:229.466667pt;}
.y78{bottom:229.626667pt;}
.y95{bottom:230.906667pt;}
.yec{bottom:234.586667pt;}
.y164{bottom:235.546667pt;}
.y13d{bottom:235.706667pt;}
.y106{bottom:236.346667pt;}
.y187{bottom:242.906667pt;}
.ybe{bottom:244.026667pt;}
.y16e{bottom:244.186667pt;}
.y28{bottom:244.346667pt;}
.y56{bottom:244.826667pt;}
.y11c{bottom:247.866667pt;}
.y77{bottom:248.026667pt;}
.y94{bottom:249.306667pt;}
.y105{bottom:252.026667pt;}
.yeb{bottom:252.986667pt;}
.y163{bottom:253.946667pt;}
.y13c{bottom:254.106667pt;}
.y186{bottom:261.306667pt;}
.ybd{bottom:262.426667pt;}
.y16d{bottom:262.586667pt;}
.yd3{bottom:263.226667pt;}
.y76{bottom:266.426667pt;}
.y93{bottom:267.706667pt;}
.y27{bottom:268.346667pt;}
.ye8{bottom:271.386667pt;}
.y162{bottom:272.346667pt;}
.y13b{bottom:272.506667pt;}
.y11b{bottom:280.386667pt;}
.ybc{bottom:280.866667pt;}
.yd2{bottom:281.666667pt;}
.y55{bottom:281.826667pt;}
.y75{bottom:284.866667pt;}
.y104{bottom:289.186667pt;}
.ye7{bottom:289.826667pt;}
.y13a{bottom:290.946667pt;}
.y11a{bottom:295.906667pt;}
.y185{bottom:298.466667pt;}
.ybb{bottom:299.266667pt;}
.y16c{bottom:299.746667pt;}
.yd1{bottom:300.066667pt;}
.y54{bottom:300.226667pt;}
.y92{bottom:304.866667pt;}
.y26{bottom:305.506667pt;}
.ye6{bottom:308.226667pt;}
.y161{bottom:309.506667pt;}
.y184{bottom:316.866667pt;}
.y74{bottom:317.346667pt;}
.yba{bottom:317.666667pt;}
.yd0{bottom:318.466667pt;}
.y53{bottom:318.626667pt;}
.y91{bottom:323.266667pt;}
.y139{bottom:323.426667pt;}
.y103{bottom:326.466667pt;}
.ye5{bottom:326.626667pt;}
.y160{bottom:327.906667pt;}
.y119{bottom:333.186667pt;}
.y199{bottom:335.426667pt;}
.yb9{bottom:336.066667pt;}
.ycf{bottom:336.866667pt;}
.y52{bottom:337.026667pt;}
.y138{bottom:338.946667pt;}
.y90{bottom:341.666667pt;}
.y25{bottom:342.466667pt;}
.ye4{bottom:345.026667pt;}
.y15f{bottom:346.306667pt;}
.y183{bottom:353.826667pt;}
.y73{bottom:354.466667pt;}
.y51{bottom:355.426667pt;}
.y8f{bottom:360.066667pt;}
.y24{bottom:360.866667pt;}
.ye3{bottom:363.426667pt;}
.y102{bottom:363.746667pt;}
.y15e{bottom:364.706667pt;}
.y118{bottom:370.466667pt;}
.y182{bottom:372.226667pt;}
.y198{bottom:372.546667pt;}
.yb8{bottom:373.186667pt;}
.y50{bottom:373.826667pt;}
.y8e{bottom:378.466667pt;}
.y23{bottom:379.266667pt;}
.ye2{bottom:381.826667pt;}
.y15d{bottom:383.106667pt;}
.y137{bottom:390.306667pt;}
.y197{bottom:390.946667pt;}
.y72{bottom:391.426667pt;}
.yb7{bottom:391.586667pt;}
.y4f{bottom:392.226667pt;}
.y8d{bottom:396.866667pt;}
.y22{bottom:397.666667pt;}
.ye0{bottom:400.226667pt;}
.y101{bottom:401.026667pt;}
.y15c{bottom:401.506667pt;}
.y117{bottom:407.746667pt;}
.y181{bottom:409.346667pt;}
.y71{bottom:409.826667pt;}
.yb6{bottom:409.986667pt;}
.y4e{bottom:410.626667pt;}
.y8c{bottom:415.266667pt;}
.y21{bottom:416.066667pt;}
.ydf{bottom:418.626667pt;}
.y15b{bottom:419.906667pt;}
.y180{bottom:427.746667pt;}
.y70{bottom:428.226667pt;}
.yb5{bottom:428.386667pt;}
.y4d{bottom:429.026667pt;}
.y8b{bottom:433.666667pt;}
.y20{bottom:434.466667pt;}
.ydc{bottom:437.666667pt;}
.y100{bottom:438.306667pt;}
.y135{bottom:441.666667pt;}
.y116{bottom:444.866667pt;}
.y17f{bottom:446.146667pt;}
.y196{bottom:446.466667pt;}
.y6f{bottom:446.626667pt;}
.yb4{bottom:446.786667pt;}
.y4c{bottom:447.426667pt;}
.y8a{bottom:452.066667pt;}
.y1f{bottom:452.866667pt;}
.y15a{bottom:456.706667pt;}
.y195{bottom:464.866667pt;}
.y6e{bottom:465.026667pt;}
.yb3{bottom:465.186667pt;}
.yce{bottom:465.826667pt;}
.y89{bottom:470.466667pt;}
.y1e{bottom:471.266667pt;}
.y159{bottom:475.106667pt;}
.yff{bottom:475.586667pt;}
.y114{bottom:482.146667pt;}
.y17e{bottom:483.266667pt;}
.yb2{bottom:483.586667pt;}
.ycd{bottom:484.226667pt;}
.y4b{bottom:484.546667pt;}
.y88{bottom:488.866667pt;}
.y1d{bottom:489.666667pt;}
.y132{bottom:492.866667pt;}
.y158{bottom:493.506667pt;}
.y17d{bottom:501.693333pt;}
.y194{bottom:501.853333pt;}
.yb1{bottom:502.013333pt;}
.y6d{bottom:502.173333pt;}
.ycc{bottom:502.653333pt;}
.y4a{bottom:502.973333pt;}
.y1c{bottom:508.093333pt;}
.y157{bottom:511.933333pt;}
.yfb{bottom:512.893333pt;}
.y113{bottom:519.453333pt;}
.y193{bottom:520.253333pt;}
.yb0{bottom:520.413333pt;}
.ycb{bottom:521.053333pt;}
.y49{bottom:521.373333pt;}
.y1b{bottom:526.493333pt;}
.y156{bottom:530.333333pt;}
.y17c{bottom:538.653333pt;}
.yaf{bottom:538.813333pt;}
.y6c{bottom:539.293333pt;}
.yca{bottom:539.453333pt;}
.y48{bottom:539.773333pt;}
.y131{bottom:544.253333pt;}
.y1a{bottom:544.893333pt;}
.y155{bottom:548.733333pt;}
.yfa{bottom:550.013333pt;}
.y112{bottom:556.733333pt;}
.y17b{bottom:557.053333pt;}
.yae{bottom:557.213333pt;}
.y192{bottom:557.373333pt;}
.yc9{bottom:557.853333pt;}
.y47{bottom:558.173333pt;}
.y87{bottom:558.493333pt;}
.y19{bottom:563.293333pt;}
.y154{bottom:567.133333pt;}
.y17a{bottom:575.453333pt;}
.yad{bottom:575.613333pt;}
.y191{bottom:575.773333pt;}
.y6b{bottom:576.253333pt;}
.y46{bottom:576.573333pt;}
.y86{bottom:576.893333pt;}
.y18{bottom:581.693333pt;}
.y153{bottom:585.533333pt;}
.yf8{bottom:587.293333pt;}
.yac{bottom:594.013333pt;}
.y6a{bottom:594.653333pt;}
.y45{bottom:594.973333pt;}
.y85{bottom:595.293333pt;}
.y130{bottom:595.613333pt;}
.y17{bottom:600.093333pt;}
.y152{bottom:603.933333pt;}
.yab{bottom:612.413333pt;}
.y179{bottom:612.573333pt;}
.y190{bottom:612.733333pt;}
.y69{bottom:613.053333pt;}
.y44{bottom:613.373333pt;}
.y84{bottom:613.693333pt;}
.y16{bottom:618.493333pt;}
.y151{bottom:622.333333pt;}
.yf7{bottom:624.573333pt;}
.yaa{bottom:630.813333pt;}
.y178{bottom:630.973333pt;}
.y18f{bottom:631.133333pt;}
.y111{bottom:631.293333pt;}
.y68{bottom:631.453333pt;}
.y43{bottom:631.773333pt;}
.y83{bottom:631.933333pt;}
.y150{bottom:640.733333pt;}
.y15{bottom:642.493333pt;}
.y12e{bottom:646.973333pt;}
.y177{bottom:649.373333pt;}
.y18e{bottom:649.533333pt;}
.y67{bottom:649.853333pt;}
.y42{bottom:650.173333pt;}
.y82{bottom:650.333333pt;}
.ya9{bottom:654.813333pt;}
.yf2{bottom:662.493333pt;}
.y66{bottom:668.253333pt;}
.y41{bottom:668.573333pt;}
.y81{bottom:668.733333pt;}
.y14f{bottom:677.693333pt;}
.y14{bottom:679.613333pt;}
.y176{bottom:686.333333pt;}
.y18d{bottom:686.653333pt;}
.ydb{bottom:686.973333pt;}
.y80{bottom:687.133333pt;}
.ya8{bottom:691.773333pt;}
.y14e{bottom:696.093333pt;}
.y13{bottom:698.013333pt;}
.y12c{bottom:698.333333pt;}
.y175{bottom:704.733333pt;}
.y18c{bottom:705.053333pt;}
.y65{bottom:705.373333pt;}
.y40{bottom:705.533333pt;}
.y110{bottom:705.693333pt;}
.ya7{bottom:710.173333pt;}
.y14d{bottom:714.493333pt;}
.y12{bottom:722.533333pt;}
.y18b{bottom:723.493333pt;}
.y64{bottom:723.813333pt;}
.y3f{bottom:723.973333pt;}
.y10f{bottom:725.093333pt;}
.ya6{bottom:728.613333pt;}
.y14c{bottom:732.933333pt;}
.y11{bottom:734.853333pt;}
.y174{bottom:741.893333pt;}
.y63{bottom:742.213333pt;}
.y3e{bottom:742.373333pt;}
.yc8{bottom:742.693333pt;}
.yf1{bottom:746.853333pt;}
.ya5{bottom:747.013333pt;}
.y124{bottom:750.373333pt;}
.y14b{bottom:751.333333pt;}
.y10{bottom:759.333333pt;}
.y173{bottom:760.293333pt;}
.yda{bottom:760.613333pt;}
.y3d{bottom:760.773333pt;}
.yc7{bottom:761.093333pt;}
.ya4{bottom:765.413333pt;}
.y14a{bottom:769.733333pt;}
.yf{bottom:777.733333pt;}
.yd9{bottom:779.013333pt;}
.y3c{bottom:779.173333pt;}
.yc6{bottom:779.493333pt;}
.ya3{bottom:783.813333pt;}
.y149{bottom:788.133333pt;}
.ye{bottom:790.053333pt;}
.y10e{bottom:790.693333pt;}
.yd8{bottom:797.413333pt;}
.y3b{bottom:797.573333pt;}
.yc5{bottom:797.893333pt;}
.ya2{bottom:802.213333pt;}
.y148{bottom:806.533333pt;}
.yd{bottom:813.733333pt;}
.y10d{bottom:814.693333pt;}
.y128{bottom:815.653333pt;}
.yd7{bottom:815.813333pt;}
.y3a{bottom:815.973333pt;}
.y62{bottom:816.293333pt;}
.ya1{bottom:820.613333pt;}
.y147{bottom:824.933333pt;}
.y10c{bottom:833.253333pt;}
.yd6{bottom:834.213333pt;}
.y39{bottom:834.373333pt;}
.y61{bottom:834.693333pt;}
.ya0{bottom:839.013333pt;}
.y146{bottom:843.333333pt;}
.yc{bottom:845.413333pt;}
.y10b{bottom:851.973333pt;}
.y38{bottom:852.773333pt;}
.y60{bottom:853.093333pt;}
.y9f{bottom:857.413333pt;}
.y145{bottom:861.733333pt;}
.yb{bottom:863.813333pt;}
.y10a{bottom:870.533333pt;}
.y37{bottom:871.173333pt;}
.y5f{bottom:871.493333pt;}
.y9e{bottom:875.813333pt;}
.y144{bottom:880.133333pt;}
.y109{bottom:889.253333pt;}
.y36{bottom:889.573333pt;}
.y5e{bottom:889.893333pt;}
.y9d{bottom:894.213333pt;}
.y4{bottom:900.933333pt;}
.y108{bottom:907.813333pt;}
.y5d{bottom:908.293333pt;}
.y9c{bottom:912.613333pt;}
.y107{bottom:926.533333pt;}
.y35{bottom:926.693333pt;}
.y3{bottom:938.533333pt;}
.y34{bottom:945.120000pt;}
.y2{bottom:971.680000pt;}
.y1{bottom:991.840000pt;}
.y30{bottom:993.120000pt;}
.ha{height:18.400000pt;}
.hb{height:18.432000pt;}
.h12{height:18.752000pt;}
.h7{height:30.254687pt;}
.h14{height:32.800000pt;}
.h8{height:35.761250pt;}
.h9{height:36.800000pt;}
.he{height:37.120000pt;}
.h10{height:37.152000pt;}
.hd{height:37.280000pt;}
.hf{height:37.312000pt;}
.h5{height:44.000000pt;}
.h2{height:45.156250pt;}
.h19{height:51.200000pt;}
.h16{height:51.232000pt;}
.h17{height:51.360000pt;}
.h18{height:51.392000pt;}
.h6{height:51.840000pt;}
.h4{height:53.375000pt;}
.h1{height:54.639063pt;}
.h11{height:55.840000pt;}
.h3{height:62.448750pt;}
.h15{height:64.640000pt;}
.hc{height:74.592000pt;}
.h13{height:98.080000pt;}
.h0{height:1056.000000pt;}
.wd{width:39.360000pt;}
.w15{width:41.760000pt;}
.w6{width:43.520000pt;}
.w8{width:60.640000pt;}
.wf{width:61.472000pt;}
.w19{width:65.952000pt;}
.w1a{width:67.520000pt;}
.w18{width:69.440000pt;}
.w13{width:70.272000pt;}
.w14{width:70.400000pt;}
.wa{width:72.000000pt;}
.wc{width:78.112000pt;}
.wb{width:84.000000pt;}
.w9{width:86.912000pt;}
.w11{width:88.192000pt;}
.w10{width:93.120000pt;}
.w5{width:96.032000pt;}
.we{width:99.040000pt;}
.w12{width:102.240000pt;}
.w4{width:132.000000pt;}
.w3{width:144.026667pt;}
.w7{width:150.586667pt;}
.w16{width:176.506667pt;}
.w2{width:197.626667pt;}
.w17{width:202.906667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.240000pt;}
.x7{left:8.639988pt;}
.x21{left:11.520000pt;}
.x18{left:12.480000pt;}
.x31{left:15.200000pt;}
.x24{left:17.480000pt;}
.x27{left:18.720000pt;}
.x20{left:21.920000pt;}
.x29{left:23.520000pt;}
.x26{left:24.640000pt;}
.x1f{left:27.040000pt;}
.x2c{left:30.080000pt;}
.x15{left:31.840000pt;}
.x8{left:34.079988pt;}
.x19{left:35.880000pt;}
.x13{left:37.280000pt;}
.x16{left:40.000000pt;}
.x1c{left:49.280000pt;}
.x11{left:70.714667pt;}
.x38{left:72.960000pt;}
.x36{left:80.480000pt;}
.x34{left:87.680000pt;}
.x6{left:95.071988pt;}
.x10{left:96.032000pt;}
.x39{left:101.000000pt;}
.xa{left:113.791988pt;}
.xc{left:118.911988pt;}
.xe{left:120.031988pt;}
.x28{left:135.386667pt;}
.x33{left:137.786667pt;}
.x1b{left:139.546667pt;}
.xf{left:144.026655pt;}
.x1{left:156.666655pt;}
.x3{left:183.386655pt;}
.x4{left:210.266655pt;}
.x2a{left:234.426667pt;}
.x2{left:252.666655pt;}
.x1d{left:290.146667pt;}
.x12{left:293.666667pt;}
.x2b{left:295.906667pt;}
.x35{left:314.306667pt;}
.xb{left:338.466655pt;}
.x1e{left:350.786667pt;}
.x9{left:376.066655pt;}
.x3a{left:383.746667pt;}
.x2d{left:389.026667pt;}
.xd{left:407.586655pt;}
.x14{left:437.693333pt;}
.x3b{left:449.693333pt;}
.x2e{left:477.213333pt;}
.x22{left:509.693333pt;}
.x37{left:517.213333pt;}
.x17{left:569.693333pt;}
.x2f{left:579.453333pt;}
.x3c{left:586.653333pt;}
.x23{left:593.693333pt;}
.x30{left:649.733333pt;}
.x3d{left:652.613333pt;}
.x25{left:671.813333pt;}
.x32{left:704.133321pt;}
.x5{left:712.133321pt;}
}




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