
    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_61bbb8d326b1b19264d50803.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.961914;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_b9d55994c2e8ec4f41f6edf9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_3e66b8177eeeb134f2dd0106.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.974609;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_48e5144d45723ea7e7404d2c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.799805;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_36dd6674474f7595bf69e833.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734375;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.014400px;}
.ls2{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000600px;}
.ls5{letter-spacing:0.014400px;}
.lsd{letter-spacing:0.322800px;}
.ls0{letter-spacing:0.475200px;}
.ls4{letter-spacing:0.494208px;}
.ls3{letter-spacing:0.522720px;}
.ls1{letter-spacing:0.532224px;}
.lsb{letter-spacing:0.636768px;}
.lsf{letter-spacing:0.680400px;}
.ls8{letter-spacing:0.712800px;}
.ls12{letter-spacing:0.725760px;}
.ls13{letter-spacing:0.731808px;}
.ls10{letter-spacing:0.797040px;}
.ls14{letter-spacing:0.798336px;}
.ls11{letter-spacing:0.874800px;}
.ls9{letter-spacing:2.435400px;}
.ls15{letter-spacing:9.415800px;}
.ls6{letter-spacing:22.749600px;}
.lse{letter-spacing:23.964600px;}
.ls7{letter-spacing:25.669800px;}
.lsc{letter-spacing:31.300800px;}
.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;}
}
.ws8e{word-spacing:-72.000000px;}
.ws41{word-spacing:-0.893376px;}
.ws31{word-spacing:-0.861840px;}
.ws3f{word-spacing:-0.826848px;}
.ws7{word-spacing:-0.807840px;}
.ws33{word-spacing:-0.790560px;}
.ws30{word-spacing:-0.745200px;}
.ws28{word-spacing:-0.731808px;}
.ws2{word-spacing:-0.627264px;}
.ws4{word-spacing:-0.617760px;}
.ws5{word-spacing:-0.589248px;}
.ws3{word-spacing:-0.570240px;}
.ws1{word-spacing:-0.216000px;}
.ws2c{word-spacing:-0.095040px;}
.ws8{word-spacing:-0.086400px;}
.ws0{word-spacing:-0.072000px;}
.ws18{word-spacing:-0.057600px;}
.ws6{word-spacing:0.000000px;}
.ws88{word-spacing:11.901600px;}
.ws32{word-spacing:12.150000px;}
.ws42{word-spacing:12.211200px;}
.ws57{word-spacing:12.225600px;}
.ws6f{word-spacing:12.290400px;}
.ws2a{word-spacing:12.312000px;}
.wse{word-spacing:12.664800px;}
.ws6a{word-spacing:12.758400px;}
.ws4a{word-spacing:12.801600px;}
.ws78{word-spacing:13.341600px;}
.ws79{word-spacing:13.370400px;}
.ws50{word-spacing:13.392000px;}
.ws49{word-spacing:13.428000px;}
.ws81{word-spacing:13.557600px;}
.ws82{word-spacing:13.716000px;}
.ws1d{word-spacing:13.817400px;}
.ws1e{word-spacing:13.881600px;}
.ws1c{word-spacing:13.910400px;}
.ws86{word-spacing:14.047200px;}
.ws17{word-spacing:14.385600px;}
.ws26{word-spacing:14.392800px;}
.ws3d{word-spacing:14.436000px;}
.ws65{word-spacing:14.508000px;}
.ws48{word-spacing:14.587200px;}
.ws89{word-spacing:14.680800px;}
.ws36{word-spacing:14.688000px;}
.ws15{word-spacing:14.695200px;}
.ws8b{word-spacing:14.773800px;}
.ws8a{word-spacing:14.781600px;}
.ws73{word-spacing:15.537600px;}
.ws87{word-spacing:15.580800px;}
.ws59{word-spacing:15.876000px;}
.ws80{word-spacing:15.883200px;}
.ws3c{word-spacing:15.890400px;}
.ws1f{word-spacing:16.293600px;}
.wsb{word-spacing:16.502400px;}
.ws5a{word-spacing:16.574400px;}
.ws6c{word-spacing:16.812000px;}
.ws21{word-spacing:16.840800px;}
.ws72{word-spacing:16.884000px;}
.ws6e{word-spacing:17.107200px;}
.ws3e{word-spacing:17.287200px;}
.ws4d{word-spacing:17.964000px;}
.ws19{word-spacing:18.079200px;}
.ws5c{word-spacing:18.316800px;}
.ws2e{word-spacing:18.374400px;}
.ws22{word-spacing:18.446400px;}
.ws8c{word-spacing:18.972000px;}
.ws46{word-spacing:19.497600px;}
.ws47{word-spacing:19.519200px;}
.ws16{word-spacing:19.555200px;}
.ws75{word-spacing:19.854600px;}
.ws77{word-spacing:19.879200px;}
.ws23{word-spacing:19.893600px;}
.ws76{word-spacing:19.958400px;}
.wsf{word-spacing:20.232000px;}
.ws7f{word-spacing:20.901600px;}
.ws2b{word-spacing:21.024000px;}
.ws5d{word-spacing:21.700800px;}
.ws12{word-spacing:21.708000px;}
.ws68{word-spacing:21.729600px;}
.ws44{word-spacing:22.334400px;}
.ws55{word-spacing:22.435200px;}
.ws37{word-spacing:22.449600px;}
.ws38{word-spacing:22.485600px;}
.ws10{word-spacing:22.651200px;}
.ws69{word-spacing:22.896000px;}
.wsa{word-spacing:23.083200px;}
.ws29{word-spacing:23.551200px;}
.ws7e{word-spacing:23.863620px;}
.ws7d{word-spacing:23.863680px;}
.ws34{word-spacing:23.863800px;}
.ws4c{word-spacing:23.889600px;}
.ws7c{word-spacing:23.892480px;}
.ws35{word-spacing:23.892600px;}
.ws4e{word-spacing:23.918400px;}
.ws71{word-spacing:24.343200px;}
.ws1b{word-spacing:24.609600px;}
.ws45{word-spacing:24.768000px;}
.ws5e{word-spacing:25.012800px;}
.ws11{word-spacing:25.243200px;}
.ws7a{word-spacing:25.279200px;}
.ws54{word-spacing:25.473600px;}
.ws53{word-spacing:25.480800px;}
.ws13{word-spacing:25.567200px;}
.ws9{word-spacing:25.617600px;}
.wsd{word-spacing:26.294400px;}
.ws85{word-spacing:26.539200px;}
.ws3b{word-spacing:26.704800px;}
.ws8d{word-spacing:27.007200px;}
.ws56{word-spacing:27.388800px;}
.ws5f{word-spacing:27.453600px;}
.ws2d{word-spacing:27.468000px;}
.ws61{word-spacing:27.523200px;}
.ws62{word-spacing:27.554400px;}
.ws60{word-spacing:27.561600px;}
.ws4f{word-spacing:27.836400px;}
.ws6d{word-spacing:27.865200px;}
.ws25{word-spacing:27.885600px;}
.ws27{word-spacing:27.921600px;}
.ws7b{word-spacing:28.245600px;}
.ws2f{word-spacing:28.396800px;}
.ws3a{word-spacing:29.224800px;}
.ws67{word-spacing:29.541600px;}
.ws70{word-spacing:29.908800px;}
.ws74{word-spacing:31.600800px;}
.ws39{word-spacing:32.904000px;}
.ws58{word-spacing:32.911200px;}
.ws20{word-spacing:33.170400px;}
.ws64{word-spacing:33.206400px;}
.ws14{word-spacing:36.381600px;}
.ws1a{word-spacing:37.108800px;}
.ws6b{word-spacing:37.245600px;}
.ws83{word-spacing:39.016800px;}
.ws84{word-spacing:39.974400px;}
.ws5b{word-spacing:43.423200px;}
.ws24{word-spacing:44.474400px;}
.ws40{word-spacing:46.735200px;}
.ws51{word-spacing:49.932000px;}
.ws4b{word-spacing:61.070400px;}
.ws43{word-spacing:61.912800px;}
.ws63{word-spacing:64.908000px;}
.ws66{word-spacing:66.074400px;}
.wsc{word-spacing:69.926400px;}
.ws52{word-spacing:85.039200px;}
._0{margin-left:-1.286640px;}
._1{width:1.468800px;}
._3{width:2.520000px;}
._2{width:3.895200px;}
._9{width:5.220000px;}
._4{width:6.588000px;}
._6{width:7.732800px;}
._5{width:8.978400px;}
._8{width:10.149180px;}
._7{width:11.289600px;}
._a{width:23.932800px;}
._b{width:27.892800px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:95.040000px;}
.fs1{font-size:216.000000px;}
.y2{bottom:-3.779970px;}
.y0{bottom:0.000000px;}
.y8c{bottom:7.200000px;}
.yf2{bottom:25.200000px;}
.y112{bottom:25.560000px;}
.y8f{bottom:30.960000px;}
.y8b{bottom:31.320000px;}
.y110{bottom:48.960000px;}
.yf1{bottom:49.320000px;}
.y161{bottom:54.540030px;}
.y8e{bottom:54.720000px;}
.y8a{bottom:55.080000px;}
.y6d{bottom:56.700030px;}
.yb6{bottom:57.420015px;}
.y146{bottom:58.500030px;}
.y88{bottom:59.220030px;}
.y19d{bottom:61.020030px;}
.y1{bottom:61.500000px;}
.y1d{bottom:64.620030px;}
.yd4{bottom:65.700030px;}
.y10d{bottom:66.960000px;}
.y98{bottom:68.040000px;}
.y137{bottom:68.220030px;}
.y10f{bottom:72.720000px;}
.y117{bottom:73.080000px;}
.y160{bottom:78.300030px;}
.y9e{bottom:78.480000px;}
.y46{bottom:79.020030px;}
.y6c{bottom:80.460015px;}
.y145{bottom:82.260030px;}
.y19c{bottom:84.780030px;}
.yd3{bottom:89.460000px;}
.y97{bottom:90.000000px;}
.y139{bottom:90.720000px;}
.y10c{bottom:91.079850px;}
.yf0{bottom:91.080000px;}
.y136{bottom:92.340000px;}
.y1c{bottom:95.580000px;}
.y116{bottom:96.840000px;}
.yb5{bottom:99.180000px;}
.y87{bottom:100.980000px;}
.y15f{bottom:102.060000px;}
.y9d{bottom:102.240000px;}
.y45{bottom:102.780000px;}
.y108{bottom:103.140000px;}
.y6b{bottom:104.220000px;}
.y144{bottom:106.020000px;}
.y17d{bottom:106.380000px;}
.y19b{bottom:108.540000px;}
.y96{bottom:111.600000px;}
.yd2{bottom:113.220000px;}
.y135{bottom:116.100000px;}
.yb4{bottom:122.940000px;}
.y15e{bottom:125.820000px;}
.y9c{bottom:126.000000px;}
.y44{bottom:126.540000px;}
.y107{bottom:126.900000px;}
.y6a{bottom:127.980000px;}
.y143{bottom:129.780000px;}
.y17c{bottom:130.140000px;}
.yee{bottom:131.220000px;}
.y19a{bottom:132.300000px;}
.y10a{bottom:132.840000px;}
.y95{bottom:133.560000px;}
.yd1{bottom:136.980000px;}
.y134{bottom:139.860000px;}
.y86{bottom:142.740000px;}
.yb3{bottom:146.700000px;}
.y15d{bottom:149.580000px;}
.y9b{bottom:149.760000px;}
.y43{bottom:150.300000px;}
.y106{bottom:150.660000px;}
.y1b{bottom:153.540000px;}
.y17b{bottom:153.900000px;}
.y94{bottom:155.160000px;}
.y199{bottom:156.060000px;}
.yd0{bottom:160.740000px;}
.y133{bottom:163.620000px;}
.y11a{bottom:165.000000px;}
.y69{bottom:169.740000px;}
.yb2{bottom:170.460000px;}
.yed{bottom:172.980000px;}
.y15c{bottom:173.700000px;}
.y9a{bottom:173.880000px;}
.y42{bottom:174.060000px;}
.y105{bottom:174.420000px;}
.y93{bottom:177.120000px;}
.y198{bottom:179.820000px;}
.y1a{bottom:182.700000px;}
.y85{bottom:184.500000px;}
.y68{bottom:193.860000px;}
.yb1{bottom:194.220000px;}
.y142{bottom:195.300000px;}
.y17a{bottom:196.020000px;}
.y99{bottom:197.640000px;}
.y41{bottom:197.820000px;}
.y104{bottom:198.180000px;}
.y92{bottom:199.080000px;}
.y197{bottom:203.580000px;}
.y132{bottom:205.380000px;}
.ycf{bottom:208.260000px;}
.y19{bottom:212.220000px;}
.yec{bottom:214.740000px;}
.y15b{bottom:215.460000px;}
.y67{bottom:217.620000px;}
.yb0{bottom:218.340000px;}
.y179{bottom:219.780000px;}
.y91{bottom:221.400000px;}
.y40{bottom:221.580000px;}
.y103{bottom:222.300000px;}
.y84{bottom:226.260000px;}
.y196{bottom:227.700000px;}
.y131{bottom:229.140000px;}
.y141{bottom:237.060000px;}
.y15a{bottom:239.220000px;}
.y18{bottom:241.380000px;}
.yaf{bottom:242.100000px;}
.y178{bottom:243.540000px;}
.y3f{bottom:245.700000px;}
.y102{bottom:246.060000px;}
.yce{bottom:250.020000px;}
.y195{bottom:251.460000px;}
.y130{bottom:252.900000px;}
.yeb{bottom:256.500000px;}
.y66{bottom:259.380000px;}
.y140{bottom:260.820000px;}
.y159{bottom:262.980000px;}
.y177{bottom:267.300000px;}
.y83{bottom:268.020000px;}
.y101{bottom:269.820000px;}
.y17{bottom:270.900000px;}
.y3e{bottom:271.260000px;}
.y119{bottom:273.360000px;}
.ycd{bottom:274.140000px;}
.y194{bottom:275.220000px;}
.y12f{bottom:276.660000px;}
.y65{bottom:283.140000px;}
.yae{bottom:283.860000px;}
.y158{bottom:286.740000px;}
.y176{bottom:291.060000px;}
.y100{bottom:293.580000px;}
.ycc{bottom:297.900000px;}
.yea{bottom:298.260000px;}
.y193{bottom:298.980000px;}
.y16{bottom:300.060000px;}
.y12e{bottom:300.420000px;}
.y3d{bottom:302.940000px;}
.yad{bottom:307.620000px;}
.y82{bottom:310.140000px;}
.y157{bottom:310.500000px;}
.y175{bottom:314.820000px;}
.yff{bottom:317.340000px;}
.ycb{bottom:321.660000px;}
.ye9{bottom:322.020000px;}
.y192{bottom:322.740000px;}
.y12d{bottom:324.540000px;}
.y64{bottom:324.900000px;}
.y15{bottom:329.220000px;}
.yac{bottom:331.380000px;}
.y3c{bottom:332.820000px;}
.y156{bottom:334.260000px;}
.yca{bottom:345.420000px;}
.ye8{bottom:346.140000px;}
.y191{bottom:346.500000px;}
.y63{bottom:348.660000px;}
.y81{bottom:351.900000px;}
.yab{bottom:355.140000px;}
.y3b{bottom:356.580000px;}
.y155{bottom:358.020000px;}
.y174{bottom:358.380000px;}
.y14{bottom:358.740000px;}
.yfe{bottom:359.100000px;}
.y12c{bottom:366.300000px;}
.ye7{bottom:369.900000px;}
.y190{bottom:370.260000px;}
.y62{bottom:372.420000px;}
.y80{bottom:375.660000px;}
.yaa{bottom:378.900000px;}
.y3a{bottom:380.340000px;}
.y118{bottom:381.360000px;}
.y13f{bottom:381.720000px;}
.y154{bottom:382.140000px;}
.yfd{bottom:382.860000px;}
.y173{bottom:383.580000px;}
.y13{bottom:387.900000px;}
.yc9{bottom:388.980000px;}
.y12b{bottom:390.060000px;}
.ye6{bottom:393.660000px;}
.y18f{bottom:394.020000px;}
.y61{bottom:396.180000px;}
.y7f{bottom:399.420000px;}
.ya9{bottom:402.660000px;}
.y39{bottom:404.100000px;}
.y153{bottom:405.900000px;}
.y12a{bottom:413.820000px;}
.y12{bottom:417.420000px;}
.y18e{bottom:418.140000px;}
.y60{bottom:419.940000px;}
.y7e{bottom:423.180000px;}
.yfc{bottom:424.620000px;}
.y172{bottom:425.340000px;}
.ya8{bottom:426.420000px;}
.y38{bottom:428.220000px;}
.y152{bottom:429.660000px;}
.ye5{bottom:435.420000px;}
.yc8{bottom:436.860000px;}
.y129{bottom:437.580000px;}
.y18d{bottom:441.900000px;}
.y13e{bottom:442.200000px;}
.y5f{bottom:444.060000px;}
.y11{bottom:446.580000px;}
.y7d{bottom:446.940000px;}
.y171{bottom:449.100000px;}
.ya7{bottom:450.540000px;}
.y37{bottom:451.980000px;}
.y151{bottom:453.420000px;}
.ye4{bottom:459.180000px;}
.y18c{bottom:465.660000px;}
.y5e{bottom:467.820000px;}
.y7c{bottom:470.700000px;}
.y170{bottom:472.860000px;}
.ya6{bottom:474.300000px;}
.y36{bottom:475.740000px;}
.yc7{bottom:478.620000px;}
.y128{bottom:479.340000px;}
.ye3{bottom:482.940000px;}
.y10{bottom:483.660000px;}
.y115{bottom:489.360000px;}
.y18b{bottom:489.420000px;}
.y5d{bottom:491.580000px;}
.y150{bottom:495.180000px;}
.y35{bottom:499.500000px;}
.yc6{bottom:502.380000px;}
.y13d{bottom:502.680000px;}
.y127{bottom:503.100000px;}
.yfb{bottom:503.760000px;}
.ye2{bottom:506.700000px;}
.y18a{bottom:513.180000px;}
.y7b{bottom:514.260000px;}
.y16f{bottom:514.620000px;}
.y5c{bottom:515.340000px;}
.ya5{bottom:516.060000px;}
.y14f{bottom:518.940000px;}
.y34{bottom:523.260000px;}
.yc5{bottom:526.500000px;}
.y126{bottom:526.860000px;}
.ye1{bottom:530.460000px;}
.y189{bottom:536.940000px;}
.y16e{bottom:538.380000px;}
.ya4{bottom:539.820000px;}
.y5b{bottom:540.900000px;}
.y14e{bottom:542.700000px;}
.y33{bottom:547.020000px;}
.yf{bottom:549.540000px;}
.yc4{bottom:550.260000px;}
.y125{bottom:550.980000px;}
.ye0{bottom:554.580000px;}
.y188{bottom:560.700000px;}
.y7a{bottom:562.500000px;}
.y13c{bottom:563.160000px;}
.ya3{bottom:563.580000px;}
.yfa{bottom:564.240000px;}
.y14d{bottom:566.460000px;}
.y32{bottom:570.780000px;}
.y5a{bottom:572.580000px;}
.yc3{bottom:574.020000px;}
.y124{bottom:574.740000px;}
.ydf{bottom:578.340000px;}
.y187{bottom:584.460000px;}
.y79{bottom:586.260000px;}
.ya2{bottom:587.340000px;}
.y14c{bottom:590.580000px;}
.y31{bottom:594.540000px;}
.yc2{bottom:597.780000px;}
.y123{bottom:598.500000px;}
.y59{bottom:602.460000px;}
.y186{bottom:608.580000px;}
.y78{bottom:610.020000px;}
.ya1{bottom:611.100000px;}
.y16d{bottom:611.820000px;}
.y14b{bottom:614.340000px;}
.ye{bottom:615.420000px;}
.y30{bottom:618.300000px;}
.yde{bottom:620.100000px;}
.y114{bottom:621.480000px;}
.yc1{bottom:621.540000px;}
.y122{bottom:622.260000px;}
.y13b{bottom:624.000000px;}
.yf9{bottom:624.720000px;}
.y58{bottom:626.580000px;}
.y185{bottom:632.340000px;}
.y77{bottom:633.780000px;}
.y14a{bottom:638.100000px;}
.y2f{bottom:642.420000px;}
.ydd{bottom:643.860000px;}
.yc0{bottom:645.300000px;}
.y121{bottom:646.020000px;}
.y57{bottom:650.340000px;}
.ya0{bottom:652.860000px;}
.y184{bottom:656.100000px;}
.y76{bottom:657.540000px;}
.y16c{bottom:659.700000px;}
.y149{bottom:661.860000px;}
.y2e{bottom:666.180000px;}
.ybf{bottom:669.060000px;}
.y120{bottom:669.780000px;}
.y56{bottom:674.100000px;}
.y183{bottom:679.860000px;}
.yd{bottom:681.300000px;}
.y13a{bottom:684.480000px;}
.yf8{bottom:685.200000px;}
.ydc{bottom:685.620000px;}
.y2d{bottom:689.940000px;}
.y9f{bottom:694.980000px;}
.y55{bottom:697.860000px;}
.y16b{bottom:701.460000px;}
.y182{bottom:703.620000px;}
.y113{bottom:706.080000px;}
.ydb{bottom:709.380000px;}
.y11f{bottom:711.540000px;}
.ybe{bottom:712.620000px;}
.y2c{bottom:713.700000px;}
.y54{bottom:721.620000px;}
.y75{bottom:723.060000px;}
.y16a{bottom:725.220000px;}
.y181{bottom:727.380000px;}
.yda{bottom:733.140000px;}
.y11e{bottom:735.300000px;}
.y2b{bottom:737.460000px;}
.y138{bottom:744.960000px;}
.y53{bottom:745.380000px;}
.yf7{bottom:745.680000px;}
.y74{bottom:746.820000px;}
.yc{bottom:747.180000px;}
.y169{bottom:748.980000px;}
.y180{bottom:751.140000px;}
.ybd{bottom:760.860000px;}
.y2a{bottom:761.220000px;}
.y52{bottom:769.140000px;}
.y73{bottom:770.940000px;}
.y168{bottom:772.740000px;}
.y90{bottom:773.760000px;}
.yd9{bottom:774.900000px;}
.y11d{bottom:777.420000px;}
.y29{bottom:784.980000px;}
.y51{bottom:792.900000px;}
.y72{bottom:794.700000px;}
.y167{bottom:796.860000px;}
.yd8{bottom:798.660000px;}
.ybc{bottom:802.620000px;}
.yf6{bottom:806.520000px;}
.y28{bottom:808.740000px;}
.yb{bottom:813.420000px;}
.y111{bottom:814.080000px;}
.y50{bottom:816.660000px;}
.y71{bottom:818.460000px;}
.y166{bottom:820.620000px;}
.yd7{bottom:822.780000px;}
.ybb{bottom:826.380000px;}
.y27{bottom:832.860000px;}
.y4f{bottom:840.780000px;}
.y165{bottom:844.380000px;}
.yd6{bottom:846.540000px;}
.yba{bottom:850.140000px;}
.y11c{bottom:856.200000px;}
.y26{bottom:856.620000px;}
.y70{bottom:862.020000px;}
.y4e{bottom:864.540000px;}
.yf5{bottom:867.000000px;}
.y164{bottom:868.140000px;}
.ya{bottom:868.860000px;}
.yd5{bottom:870.300000px;}
.yb9{bottom:873.900000px;}
.y25{bottom:880.380000px;}
.y4d{bottom:888.300000px;}
.y9{bottom:889.740000px;}
.y163{bottom:891.900000px;}
.y6f{bottom:893.700000px;}
.y148{bottom:894.060000px;}
.y10e{bottom:898.680000px;}
.y24{bottom:904.140000px;}
.y8{bottom:910.260000px;}
.y4c{bottom:912.060000px;}
.yb8{bottom:917.460000px;}
.y147{bottom:917.820000px;}
.yf4{bottom:927.480000px;}
.y23{bottom:927.900000px;}
.y7{bottom:931.140000px;}
.y162{bottom:935.460000px;}
.y4b{bottom:935.820000px;}
.y6e{bottom:941.580000px;}
.y6{bottom:951.660000px;}
.y4a{bottom:959.580000px;}
.y11b{bottom:964.200000px;}
.yb7{bottom:965.340000px;}
.y5{bottom:968.220000px;}
.y22{bottom:975.420000px;}
.y49{bottom:983.340000px;}
.yf3{bottom:987.960000px;}
.y17f{bottom:989.100000px;}
.y21{bottom:999.180000px;}
.y109{bottom:1006.680000px;}
.y10b{bottom:1006.680150px;}
.y48{bottom:1007.100000px;}
.y8d{bottom:1012.440000px;}
.y17e{bottom:1013.220000px;}
.y20{bottom:1023.300000px;}
.y47{bottom:1031.220000px;}
.y1f{bottom:1047.060000px;}
.yef{bottom:1048.440000px;}
.y4{bottom:1054.980000px;}
.y1e{bottom:1072.620000px;}
.y3{bottom:1078.740000px;}
.y89{bottom:1084.440000px;}
.h3{height:13.500023px;}
.hd{height:58.092188px;}
.h2{height:59.378906px;}
.h11{height:59.759955px;}
.h10{height:59.760000px;}
.hf{height:59.760045px;}
.h4{height:64.546875px;}
.h9{height:65.003906px;}
.hb{height:71.279940px;}
.ha{height:71.280030px;}
.h8{height:71.640015px;}
.h6{height:78.380156px;}
.h1c{height:83.519985px;}
.h15{height:83.879880px;}
.h16{height:83.879970px;}
.h7{height:85.805156px;}
.h18{height:107.279940px;}
.h17{height:107.279985px;}
.h1b{height:107.280000px;}
.h14{height:107.280030px;}
.he{height:107.640015px;}
.h1a{height:131.399970px;}
.h19{height:131.400015px;}
.h13{height:149.399865px;}
.h12{height:149.399970px;}
.h5{height:178.136719px;}
.hc{height:237.960000px;}
.h1{height:1174.500000px;}
.h0{height:1263.000000px;}
.w2{width:9.000000px;}
.wc{width:18.359985px;}
.w8{width:211.320000px;}
.wa{width:211.680000px;}
.w9{width:223.560000px;}
.w6{width:354.599850px;}
.w5{width:354.960000px;}
.wb{width:620.640000px;}
.wd{width:635.760000px;}
.w7{width:648.000000px;}
.w4{width:710.280000px;}
.w3{width:838.499850px;}
.w1{width:838.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x14{left:7.560000px;}
.x1b{left:12.545955px;}
.x2c{left:17.749815px;}
.x27{left:19.438350px;}
.x1f{left:23.425800px;}
.x1{left:27.000000px;}
.x23{left:31.933500px;}
.x1e{left:33.430650px;}
.x15{left:34.560000px;}
.x24{left:37.041150px;}
.x10{left:38.727450px;}
.x28{left:43.039650px;}
.x12{left:44.229450px;}
.x21{left:47.544000px;}
.x25{left:48.943350px;}
.x20{left:50.035650px;}
.x22{left:52.438500px;}
.x19{left:59.787150px;}
.x16{left:61.559985px;}
.x26{left:62.937000px;}
.x2a{left:71.678400px;}
.xe{left:92.022150px;}
.x2{left:100.440000px;}
.x5{left:116.432790px;}
.xc{left:119.880000px;}
.x13{left:127.747500px;}
.x8{left:140.690670px;}
.x17{left:154.440060px;}
.xf{left:177.247500px;}
.x1a{left:213.793485px;}
.x7{left:216.113970px;}
.x29{left:310.222350px;}
.x9{left:312.367320px;}
.x2b{left:317.760120px;}
.xa{left:321.175455px;}
.x18{left:323.797350px;}
.x1c{left:331.920000px;}
.xd{left:355.034850px;}
.xb{left:365.823855px;}
.x6{left:419.114970px;}
.x4{left:437.759835px;}
.x3{left:441.720000px;}
.x11{left:475.560000px;}
.x1d{left:556.200000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000533pt;}
.ls5{letter-spacing:0.012800pt;}
.lsd{letter-spacing:0.286933pt;}
.ls0{letter-spacing:0.422400pt;}
.ls4{letter-spacing:0.439296pt;}
.ls3{letter-spacing:0.464640pt;}
.ls1{letter-spacing:0.473088pt;}
.lsb{letter-spacing:0.566016pt;}
.lsf{letter-spacing:0.604800pt;}
.ls8{letter-spacing:0.633600pt;}
.ls12{letter-spacing:0.645120pt;}
.ls13{letter-spacing:0.650496pt;}
.ls10{letter-spacing:0.708480pt;}
.ls14{letter-spacing:0.709632pt;}
.ls11{letter-spacing:0.777600pt;}
.ls9{letter-spacing:2.164800pt;}
.ls15{letter-spacing:8.369600pt;}
.ls6{letter-spacing:20.221867pt;}
.lse{letter-spacing:21.301867pt;}
.ls7{letter-spacing:22.817600pt;}
.lsc{letter-spacing:27.822933pt;}
.ws8e{word-spacing:-64.000000pt;}
.ws41{word-spacing:-0.794112pt;}
.ws31{word-spacing:-0.766080pt;}
.ws3f{word-spacing:-0.734976pt;}
.ws7{word-spacing:-0.718080pt;}
.ws33{word-spacing:-0.702720pt;}
.ws30{word-spacing:-0.662400pt;}
.ws28{word-spacing:-0.650496pt;}
.ws2{word-spacing:-0.557568pt;}
.ws4{word-spacing:-0.549120pt;}
.ws5{word-spacing:-0.523776pt;}
.ws3{word-spacing:-0.506880pt;}
.ws1{word-spacing:-0.192000pt;}
.ws2c{word-spacing:-0.084480pt;}
.ws8{word-spacing:-0.076800pt;}
.ws0{word-spacing:-0.064000pt;}
.ws18{word-spacing:-0.051200pt;}
.ws6{word-spacing:0.000000pt;}
.ws88{word-spacing:10.579200pt;}
.ws32{word-spacing:10.800000pt;}
.ws42{word-spacing:10.854400pt;}
.ws57{word-spacing:10.867200pt;}
.ws6f{word-spacing:10.924800pt;}
.ws2a{word-spacing:10.944000pt;}
.wse{word-spacing:11.257600pt;}
.ws6a{word-spacing:11.340800pt;}
.ws4a{word-spacing:11.379200pt;}
.ws78{word-spacing:11.859200pt;}
.ws79{word-spacing:11.884800pt;}
.ws50{word-spacing:11.904000pt;}
.ws49{word-spacing:11.936000pt;}
.ws81{word-spacing:12.051200pt;}
.ws82{word-spacing:12.192000pt;}
.ws1d{word-spacing:12.282133pt;}
.ws1e{word-spacing:12.339200pt;}
.ws1c{word-spacing:12.364800pt;}
.ws86{word-spacing:12.486400pt;}
.ws17{word-spacing:12.787200pt;}
.ws26{word-spacing:12.793600pt;}
.ws3d{word-spacing:12.832000pt;}
.ws65{word-spacing:12.896000pt;}
.ws48{word-spacing:12.966400pt;}
.ws89{word-spacing:13.049600pt;}
.ws36{word-spacing:13.056000pt;}
.ws15{word-spacing:13.062400pt;}
.ws8b{word-spacing:13.132267pt;}
.ws8a{word-spacing:13.139200pt;}
.ws73{word-spacing:13.811200pt;}
.ws87{word-spacing:13.849600pt;}
.ws59{word-spacing:14.112000pt;}
.ws80{word-spacing:14.118400pt;}
.ws3c{word-spacing:14.124800pt;}
.ws1f{word-spacing:14.483200pt;}
.wsb{word-spacing:14.668800pt;}
.ws5a{word-spacing:14.732800pt;}
.ws6c{word-spacing:14.944000pt;}
.ws21{word-spacing:14.969600pt;}
.ws72{word-spacing:15.008000pt;}
.ws6e{word-spacing:15.206400pt;}
.ws3e{word-spacing:15.366400pt;}
.ws4d{word-spacing:15.968000pt;}
.ws19{word-spacing:16.070400pt;}
.ws5c{word-spacing:16.281600pt;}
.ws2e{word-spacing:16.332800pt;}
.ws22{word-spacing:16.396800pt;}
.ws8c{word-spacing:16.864000pt;}
.ws46{word-spacing:17.331200pt;}
.ws47{word-spacing:17.350400pt;}
.ws16{word-spacing:17.382400pt;}
.ws75{word-spacing:17.648533pt;}
.ws77{word-spacing:17.670400pt;}
.ws23{word-spacing:17.683200pt;}
.ws76{word-spacing:17.740800pt;}
.wsf{word-spacing:17.984000pt;}
.ws7f{word-spacing:18.579200pt;}
.ws2b{word-spacing:18.688000pt;}
.ws5d{word-spacing:19.289600pt;}
.ws12{word-spacing:19.296000pt;}
.ws68{word-spacing:19.315200pt;}
.ws44{word-spacing:19.852800pt;}
.ws55{word-spacing:19.942400pt;}
.ws37{word-spacing:19.955200pt;}
.ws38{word-spacing:19.987200pt;}
.ws10{word-spacing:20.134400pt;}
.ws69{word-spacing:20.352000pt;}
.wsa{word-spacing:20.518400pt;}
.ws29{word-spacing:20.934400pt;}
.ws7e{word-spacing:21.212107pt;}
.ws7d{word-spacing:21.212160pt;}
.ws34{word-spacing:21.212267pt;}
.ws4c{word-spacing:21.235200pt;}
.ws7c{word-spacing:21.237760pt;}
.ws35{word-spacing:21.237867pt;}
.ws4e{word-spacing:21.260800pt;}
.ws71{word-spacing:21.638400pt;}
.ws1b{word-spacing:21.875200pt;}
.ws45{word-spacing:22.016000pt;}
.ws5e{word-spacing:22.233600pt;}
.ws11{word-spacing:22.438400pt;}
.ws7a{word-spacing:22.470400pt;}
.ws54{word-spacing:22.643200pt;}
.ws53{word-spacing:22.649600pt;}
.ws13{word-spacing:22.726400pt;}
.ws9{word-spacing:22.771200pt;}
.wsd{word-spacing:23.372800pt;}
.ws85{word-spacing:23.590400pt;}
.ws3b{word-spacing:23.737600pt;}
.ws8d{word-spacing:24.006400pt;}
.ws56{word-spacing:24.345600pt;}
.ws5f{word-spacing:24.403200pt;}
.ws2d{word-spacing:24.416000pt;}
.ws61{word-spacing:24.465067pt;}
.ws62{word-spacing:24.492800pt;}
.ws60{word-spacing:24.499200pt;}
.ws4f{word-spacing:24.743467pt;}
.ws6d{word-spacing:24.769067pt;}
.ws25{word-spacing:24.787200pt;}
.ws27{word-spacing:24.819200pt;}
.ws7b{word-spacing:25.107200pt;}
.ws2f{word-spacing:25.241600pt;}
.ws3a{word-spacing:25.977600pt;}
.ws67{word-spacing:26.259200pt;}
.ws70{word-spacing:26.585600pt;}
.ws74{word-spacing:28.089600pt;}
.ws39{word-spacing:29.248000pt;}
.ws58{word-spacing:29.254400pt;}
.ws20{word-spacing:29.484800pt;}
.ws64{word-spacing:29.516800pt;}
.ws14{word-spacing:32.339200pt;}
.ws1a{word-spacing:32.985600pt;}
.ws6b{word-spacing:33.107200pt;}
.ws83{word-spacing:34.681600pt;}
.ws84{word-spacing:35.532800pt;}
.ws5b{word-spacing:38.598400pt;}
.ws24{word-spacing:39.532800pt;}
.ws40{word-spacing:41.542400pt;}
.ws51{word-spacing:44.384000pt;}
.ws4b{word-spacing:54.284800pt;}
.ws43{word-spacing:55.033600pt;}
.ws63{word-spacing:57.696000pt;}
.ws66{word-spacing:58.732800pt;}
.wsc{word-spacing:62.156800pt;}
.ws52{word-spacing:75.590400pt;}
._0{margin-left:-1.143680pt;}
._1{width:1.305600pt;}
._3{width:2.240000pt;}
._2{width:3.462400pt;}
._9{width:4.640000pt;}
._4{width:5.856000pt;}
._6{width:6.873600pt;}
._5{width:7.980800pt;}
._8{width:9.021493pt;}
._7{width:10.035200pt;}
._a{width:21.273600pt;}
._b{width:24.793600pt;}
.fs3{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:84.480000pt;}
.fs1{font-size:192.000000pt;}
.y2{bottom:-3.359973pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:6.400000pt;}
.yf2{bottom:22.400000pt;}
.y112{bottom:22.720000pt;}
.y8f{bottom:27.520000pt;}
.y8b{bottom:27.840000pt;}
.y110{bottom:43.520000pt;}
.yf1{bottom:43.840000pt;}
.y161{bottom:48.480027pt;}
.y8e{bottom:48.640000pt;}
.y8a{bottom:48.960000pt;}
.y6d{bottom:50.400027pt;}
.yb6{bottom:51.040013pt;}
.y146{bottom:52.000027pt;}
.y88{bottom:52.640027pt;}
.y19d{bottom:54.240027pt;}
.y1{bottom:54.666667pt;}
.y1d{bottom:57.440027pt;}
.yd4{bottom:58.400027pt;}
.y10d{bottom:59.520000pt;}
.y98{bottom:60.480000pt;}
.y137{bottom:60.640027pt;}
.y10f{bottom:64.640000pt;}
.y117{bottom:64.960000pt;}
.y160{bottom:69.600027pt;}
.y9e{bottom:69.760000pt;}
.y46{bottom:70.240027pt;}
.y6c{bottom:71.520013pt;}
.y145{bottom:73.120027pt;}
.y19c{bottom:75.360027pt;}
.yd3{bottom:79.520000pt;}
.y97{bottom:80.000000pt;}
.y139{bottom:80.640000pt;}
.y10c{bottom:80.959867pt;}
.yf0{bottom:80.960000pt;}
.y136{bottom:82.080000pt;}
.y1c{bottom:84.960000pt;}
.y116{bottom:86.080000pt;}
.yb5{bottom:88.160000pt;}
.y87{bottom:89.760000pt;}
.y15f{bottom:90.720000pt;}
.y9d{bottom:90.880000pt;}
.y45{bottom:91.360000pt;}
.y108{bottom:91.680000pt;}
.y6b{bottom:92.640000pt;}
.y144{bottom:94.240000pt;}
.y17d{bottom:94.560000pt;}
.y19b{bottom:96.480000pt;}
.y96{bottom:99.200000pt;}
.yd2{bottom:100.640000pt;}
.y135{bottom:103.200000pt;}
.yb4{bottom:109.280000pt;}
.y15e{bottom:111.840000pt;}
.y9c{bottom:112.000000pt;}
.y44{bottom:112.480000pt;}
.y107{bottom:112.800000pt;}
.y6a{bottom:113.760000pt;}
.y143{bottom:115.360000pt;}
.y17c{bottom:115.680000pt;}
.yee{bottom:116.640000pt;}
.y19a{bottom:117.600000pt;}
.y10a{bottom:118.080000pt;}
.y95{bottom:118.720000pt;}
.yd1{bottom:121.760000pt;}
.y134{bottom:124.320000pt;}
.y86{bottom:126.880000pt;}
.yb3{bottom:130.400000pt;}
.y15d{bottom:132.960000pt;}
.y9b{bottom:133.120000pt;}
.y43{bottom:133.600000pt;}
.y106{bottom:133.920000pt;}
.y1b{bottom:136.480000pt;}
.y17b{bottom:136.800000pt;}
.y94{bottom:137.920000pt;}
.y199{bottom:138.720000pt;}
.yd0{bottom:142.880000pt;}
.y133{bottom:145.440000pt;}
.y11a{bottom:146.666667pt;}
.y69{bottom:150.880000pt;}
.yb2{bottom:151.520000pt;}
.yed{bottom:153.760000pt;}
.y15c{bottom:154.400000pt;}
.y9a{bottom:154.560000pt;}
.y42{bottom:154.720000pt;}
.y105{bottom:155.040000pt;}
.y93{bottom:157.440000pt;}
.y198{bottom:159.840000pt;}
.y1a{bottom:162.400000pt;}
.y85{bottom:164.000000pt;}
.y68{bottom:172.320000pt;}
.yb1{bottom:172.640000pt;}
.y142{bottom:173.600000pt;}
.y17a{bottom:174.240000pt;}
.y99{bottom:175.680000pt;}
.y41{bottom:175.840000pt;}
.y104{bottom:176.160000pt;}
.y92{bottom:176.960000pt;}
.y197{bottom:180.960000pt;}
.y132{bottom:182.560000pt;}
.ycf{bottom:185.120000pt;}
.y19{bottom:188.640000pt;}
.yec{bottom:190.880000pt;}
.y15b{bottom:191.520000pt;}
.y67{bottom:193.440000pt;}
.yb0{bottom:194.080000pt;}
.y179{bottom:195.360000pt;}
.y91{bottom:196.800000pt;}
.y40{bottom:196.960000pt;}
.y103{bottom:197.600000pt;}
.y84{bottom:201.120000pt;}
.y196{bottom:202.400000pt;}
.y131{bottom:203.680000pt;}
.y141{bottom:210.720000pt;}
.y15a{bottom:212.640000pt;}
.y18{bottom:214.560000pt;}
.yaf{bottom:215.200000pt;}
.y178{bottom:216.480000pt;}
.y3f{bottom:218.400000pt;}
.y102{bottom:218.720000pt;}
.yce{bottom:222.240000pt;}
.y195{bottom:223.520000pt;}
.y130{bottom:224.800000pt;}
.yeb{bottom:228.000000pt;}
.y66{bottom:230.560000pt;}
.y140{bottom:231.840000pt;}
.y159{bottom:233.760000pt;}
.y177{bottom:237.600000pt;}
.y83{bottom:238.240000pt;}
.y101{bottom:239.840000pt;}
.y17{bottom:240.800000pt;}
.y3e{bottom:241.120000pt;}
.y119{bottom:242.986667pt;}
.ycd{bottom:243.680000pt;}
.y194{bottom:244.640000pt;}
.y12f{bottom:245.920000pt;}
.y65{bottom:251.680000pt;}
.yae{bottom:252.320000pt;}
.y158{bottom:254.880000pt;}
.y176{bottom:258.720000pt;}
.y100{bottom:260.960000pt;}
.ycc{bottom:264.800000pt;}
.yea{bottom:265.120000pt;}
.y193{bottom:265.760000pt;}
.y16{bottom:266.720000pt;}
.y12e{bottom:267.040000pt;}
.y3d{bottom:269.280000pt;}
.yad{bottom:273.440000pt;}
.y82{bottom:275.680000pt;}
.y157{bottom:276.000000pt;}
.y175{bottom:279.840000pt;}
.yff{bottom:282.080000pt;}
.ycb{bottom:285.920000pt;}
.ye9{bottom:286.240000pt;}
.y192{bottom:286.880000pt;}
.y12d{bottom:288.480000pt;}
.y64{bottom:288.800000pt;}
.y15{bottom:292.640000pt;}
.yac{bottom:294.560000pt;}
.y3c{bottom:295.840000pt;}
.y156{bottom:297.120000pt;}
.yca{bottom:307.040000pt;}
.ye8{bottom:307.680000pt;}
.y191{bottom:308.000000pt;}
.y63{bottom:309.920000pt;}
.y81{bottom:312.800000pt;}
.yab{bottom:315.680000pt;}
.y3b{bottom:316.960000pt;}
.y155{bottom:318.240000pt;}
.y174{bottom:318.560000pt;}
.y14{bottom:318.880000pt;}
.yfe{bottom:319.200000pt;}
.y12c{bottom:325.600000pt;}
.ye7{bottom:328.800000pt;}
.y190{bottom:329.120000pt;}
.y62{bottom:331.040000pt;}
.y80{bottom:333.920000pt;}
.yaa{bottom:336.800000pt;}
.y3a{bottom:338.080000pt;}
.y118{bottom:338.986667pt;}
.y13f{bottom:339.306667pt;}
.y154{bottom:339.680000pt;}
.yfd{bottom:340.320000pt;}
.y173{bottom:340.960000pt;}
.y13{bottom:344.800000pt;}
.yc9{bottom:345.760000pt;}
.y12b{bottom:346.720000pt;}
.ye6{bottom:349.920000pt;}
.y18f{bottom:350.240000pt;}
.y61{bottom:352.160000pt;}
.y7f{bottom:355.040000pt;}
.ya9{bottom:357.920000pt;}
.y39{bottom:359.200000pt;}
.y153{bottom:360.800000pt;}
.y12a{bottom:367.840000pt;}
.y12{bottom:371.040000pt;}
.y18e{bottom:371.680000pt;}
.y60{bottom:373.280000pt;}
.y7e{bottom:376.160000pt;}
.yfc{bottom:377.440000pt;}
.y172{bottom:378.080000pt;}
.ya8{bottom:379.040000pt;}
.y38{bottom:380.640000pt;}
.y152{bottom:381.920000pt;}
.ye5{bottom:387.040000pt;}
.yc8{bottom:388.320000pt;}
.y129{bottom:388.960000pt;}
.y18d{bottom:392.800000pt;}
.y13e{bottom:393.066667pt;}
.y5f{bottom:394.720000pt;}
.y11{bottom:396.960000pt;}
.y7d{bottom:397.280000pt;}
.y171{bottom:399.200000pt;}
.ya7{bottom:400.480000pt;}
.y37{bottom:401.760000pt;}
.y151{bottom:403.040000pt;}
.ye4{bottom:408.160000pt;}
.y18c{bottom:413.920000pt;}
.y5e{bottom:415.840000pt;}
.y7c{bottom:418.400000pt;}
.y170{bottom:420.320000pt;}
.ya6{bottom:421.600000pt;}
.y36{bottom:422.880000pt;}
.yc7{bottom:425.440000pt;}
.y128{bottom:426.080000pt;}
.ye3{bottom:429.280000pt;}
.y10{bottom:429.920000pt;}
.y115{bottom:434.986667pt;}
.y18b{bottom:435.040000pt;}
.y5d{bottom:436.960000pt;}
.y150{bottom:440.160000pt;}
.y35{bottom:444.000000pt;}
.yc6{bottom:446.560000pt;}
.y13d{bottom:446.826667pt;}
.y127{bottom:447.200000pt;}
.yfb{bottom:447.786667pt;}
.ye2{bottom:450.400000pt;}
.y18a{bottom:456.160000pt;}
.y7b{bottom:457.120000pt;}
.y16f{bottom:457.440000pt;}
.y5c{bottom:458.080000pt;}
.ya5{bottom:458.720000pt;}
.y14f{bottom:461.280000pt;}
.y34{bottom:465.120000pt;}
.yc5{bottom:468.000000pt;}
.y126{bottom:468.320000pt;}
.ye1{bottom:471.520000pt;}
.y189{bottom:477.280000pt;}
.y16e{bottom:478.560000pt;}
.ya4{bottom:479.840000pt;}
.y5b{bottom:480.800000pt;}
.y14e{bottom:482.400000pt;}
.y33{bottom:486.240000pt;}
.yf{bottom:488.480000pt;}
.yc4{bottom:489.120000pt;}
.y125{bottom:489.760000pt;}
.ye0{bottom:492.960000pt;}
.y188{bottom:498.400000pt;}
.y7a{bottom:500.000000pt;}
.y13c{bottom:500.586667pt;}
.ya3{bottom:500.960000pt;}
.yfa{bottom:501.546667pt;}
.y14d{bottom:503.520000pt;}
.y32{bottom:507.360000pt;}
.y5a{bottom:508.960000pt;}
.yc3{bottom:510.240000pt;}
.y124{bottom:510.880000pt;}
.ydf{bottom:514.080000pt;}
.y187{bottom:519.520000pt;}
.y79{bottom:521.120000pt;}
.ya2{bottom:522.080000pt;}
.y14c{bottom:524.960000pt;}
.y31{bottom:528.480000pt;}
.yc2{bottom:531.360000pt;}
.y123{bottom:532.000000pt;}
.y59{bottom:535.520000pt;}
.y186{bottom:540.960000pt;}
.y78{bottom:542.240000pt;}
.ya1{bottom:543.200000pt;}
.y16d{bottom:543.840000pt;}
.y14b{bottom:546.080000pt;}
.ye{bottom:547.040000pt;}
.y30{bottom:549.600000pt;}
.yde{bottom:551.200000pt;}
.y114{bottom:552.426667pt;}
.yc1{bottom:552.480000pt;}
.y122{bottom:553.120000pt;}
.y13b{bottom:554.666667pt;}
.yf9{bottom:555.306667pt;}
.y58{bottom:556.960000pt;}
.y185{bottom:562.080000pt;}
.y77{bottom:563.360000pt;}
.y14a{bottom:567.200000pt;}
.y2f{bottom:571.040000pt;}
.ydd{bottom:572.320000pt;}
.yc0{bottom:573.600000pt;}
.y121{bottom:574.240000pt;}
.y57{bottom:578.080000pt;}
.ya0{bottom:580.320000pt;}
.y184{bottom:583.200000pt;}
.y76{bottom:584.480000pt;}
.y16c{bottom:586.400000pt;}
.y149{bottom:588.320000pt;}
.y2e{bottom:592.160000pt;}
.ybf{bottom:594.720000pt;}
.y120{bottom:595.360000pt;}
.y56{bottom:599.200000pt;}
.y183{bottom:604.320000pt;}
.yd{bottom:605.600000pt;}
.y13a{bottom:608.426667pt;}
.yf8{bottom:609.066667pt;}
.ydc{bottom:609.440000pt;}
.y2d{bottom:613.280000pt;}
.y9f{bottom:617.760000pt;}
.y55{bottom:620.320000pt;}
.y16b{bottom:623.520000pt;}
.y182{bottom:625.440000pt;}
.y113{bottom:627.626667pt;}
.ydb{bottom:630.560000pt;}
.y11f{bottom:632.480000pt;}
.ybe{bottom:633.440000pt;}
.y2c{bottom:634.400000pt;}
.y54{bottom:641.440000pt;}
.y75{bottom:642.720000pt;}
.y16a{bottom:644.640000pt;}
.y181{bottom:646.560000pt;}
.yda{bottom:651.680000pt;}
.y11e{bottom:653.600000pt;}
.y2b{bottom:655.520000pt;}
.y138{bottom:662.186667pt;}
.y53{bottom:662.560000pt;}
.yf7{bottom:662.826667pt;}
.y74{bottom:663.840000pt;}
.yc{bottom:664.160000pt;}
.y169{bottom:665.760000pt;}
.y180{bottom:667.680000pt;}
.ybd{bottom:676.320000pt;}
.y2a{bottom:676.640000pt;}
.y52{bottom:683.680000pt;}
.y73{bottom:685.280000pt;}
.y168{bottom:686.880000pt;}
.y90{bottom:687.786667pt;}
.yd9{bottom:688.800000pt;}
.y11d{bottom:691.040000pt;}
.y29{bottom:697.760000pt;}
.y51{bottom:704.800000pt;}
.y72{bottom:706.400000pt;}
.y167{bottom:708.320000pt;}
.yd8{bottom:709.920000pt;}
.ybc{bottom:713.440000pt;}
.yf6{bottom:716.906667pt;}
.y28{bottom:718.880000pt;}
.yb{bottom:723.040000pt;}
.y111{bottom:723.626667pt;}
.y50{bottom:725.920000pt;}
.y71{bottom:727.520000pt;}
.y166{bottom:729.440000pt;}
.yd7{bottom:731.360000pt;}
.ybb{bottom:734.560000pt;}
.y27{bottom:740.320000pt;}
.y4f{bottom:747.360000pt;}
.y165{bottom:750.560000pt;}
.yd6{bottom:752.480000pt;}
.yba{bottom:755.680000pt;}
.y11c{bottom:761.066667pt;}
.y26{bottom:761.440000pt;}
.y70{bottom:766.240000pt;}
.y4e{bottom:768.480000pt;}
.yf5{bottom:770.666667pt;}
.y164{bottom:771.680000pt;}
.ya{bottom:772.320000pt;}
.yd5{bottom:773.600000pt;}
.yb9{bottom:776.800000pt;}
.y25{bottom:782.560000pt;}
.y4d{bottom:789.600000pt;}
.y9{bottom:790.880000pt;}
.y163{bottom:792.800000pt;}
.y6f{bottom:794.400000pt;}
.y148{bottom:794.720000pt;}
.y10e{bottom:798.826667pt;}
.y24{bottom:803.680000pt;}
.y8{bottom:809.120000pt;}
.y4c{bottom:810.720000pt;}
.yb8{bottom:815.520000pt;}
.y147{bottom:815.840000pt;}
.yf4{bottom:824.426667pt;}
.y23{bottom:824.800000pt;}
.y7{bottom:827.680000pt;}
.y162{bottom:831.520000pt;}
.y4b{bottom:831.840000pt;}
.y6e{bottom:836.960000pt;}
.y6{bottom:845.920000pt;}
.y4a{bottom:852.960000pt;}
.y11b{bottom:857.066667pt;}
.yb7{bottom:858.080000pt;}
.y5{bottom:860.640000pt;}
.y22{bottom:867.040000pt;}
.y49{bottom:874.080000pt;}
.yf3{bottom:878.186667pt;}
.y17f{bottom:879.200000pt;}
.y21{bottom:888.160000pt;}
.y109{bottom:894.826667pt;}
.y10b{bottom:894.826800pt;}
.y48{bottom:895.200000pt;}
.y8d{bottom:899.946667pt;}
.y17e{bottom:900.640000pt;}
.y20{bottom:909.600000pt;}
.y47{bottom:916.640000pt;}
.y1f{bottom:930.720000pt;}
.yef{bottom:931.946667pt;}
.y4{bottom:937.760000pt;}
.y1e{bottom:953.440000pt;}
.y3{bottom:958.880000pt;}
.y89{bottom:963.946667pt;}
.h3{height:12.000020pt;}
.hd{height:51.637500pt;}
.h2{height:52.781250pt;}
.h11{height:53.119960pt;}
.h10{height:53.120000pt;}
.hf{height:53.120040pt;}
.h4{height:57.375000pt;}
.h9{height:57.781250pt;}
.hb{height:63.359947pt;}
.ha{height:63.360027pt;}
.h8{height:63.680013pt;}
.h6{height:69.671250pt;}
.h1c{height:74.239987pt;}
.h15{height:74.559893pt;}
.h16{height:74.559973pt;}
.h7{height:76.271250pt;}
.h18{height:95.359947pt;}
.h17{height:95.359987pt;}
.h1b{height:95.360000pt;}
.h14{height:95.360027pt;}
.he{height:95.680013pt;}
.h1a{height:116.799973pt;}
.h19{height:116.800013pt;}
.h13{height:132.799880pt;}
.h12{height:132.799973pt;}
.h5{height:158.343750pt;}
.hc{height:211.520000pt;}
.h1{height:1044.000000pt;}
.h0{height:1122.666667pt;}
.w2{width:8.000000pt;}
.wc{width:16.319987pt;}
.w8{width:187.840000pt;}
.wa{width:188.160000pt;}
.w9{width:198.720000pt;}
.w6{width:315.199867pt;}
.w5{width:315.520000pt;}
.wb{width:551.680000pt;}
.wd{width:565.120000pt;}
.w7{width:576.000000pt;}
.w4{width:631.360000pt;}
.w3{width:745.333200pt;}
.w1{width:745.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x14{left:6.720000pt;}
.x1b{left:11.151960pt;}
.x2c{left:15.777613pt;}
.x27{left:17.278533pt;}
.x1f{left:20.822933pt;}
.x1{left:24.000000pt;}
.x23{left:28.385333pt;}
.x1e{left:29.716133pt;}
.x15{left:30.720000pt;}
.x24{left:32.925467pt;}
.x10{left:34.424400pt;}
.x28{left:38.257467pt;}
.x12{left:39.315067pt;}
.x21{left:42.261333pt;}
.x25{left:43.505200pt;}
.x20{left:44.476133pt;}
.x22{left:46.612000pt;}
.x19{left:53.144133pt;}
.x16{left:54.719987pt;}
.x26{left:55.944000pt;}
.x2a{left:63.714133pt;}
.xe{left:81.797467pt;}
.x2{left:89.280000pt;}
.x5{left:103.495813pt;}
.xc{left:106.560000pt;}
.x13{left:113.553333pt;}
.x8{left:125.058373pt;}
.x17{left:137.280053pt;}
.xf{left:157.553333pt;}
.x1a{left:190.038653pt;}
.x7{left:192.101307pt;}
.x29{left:275.753200pt;}
.x9{left:277.659840pt;}
.x2b{left:282.453440pt;}
.xa{left:285.489293pt;}
.x18{left:287.819867pt;}
.x1c{left:295.040000pt;}
.xd{left:315.586533pt;}
.xb{left:325.176760pt;}
.x6{left:372.546640pt;}
.x4{left:389.119853pt;}
.x3{left:392.640000pt;}
.x11{left:422.720000pt;}
.x1d{left:494.400000pt;}
}




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