
    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_19a805f533f112ac7b896260.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_fdd7500eaa992f28834c2e60.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_817734591d3e157b8020c3a2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c04bd1de8333fc418ecc4332.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_de2560fe6f3a4f821028e0cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966309;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_aaf3cb8bba50bb0453032543.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921875;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_14c923609e6b93b649c57589.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3ed26b9efa23524c44d4f335.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_85b57515e6f0d65e7b959dc3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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:ffb;src:url('chunks/assets/font_353a95044e8244f14da5b8cb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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:ffc;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5f3e13315177ce7aa2e8f2cb.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_bd1d3f0757e82948f33532ee.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_eec8220c182b657a277b59e7.woff2')format("woff");}.fff{font-family:fff;line-height:0.900391;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:ff10;src:url('chunks/assets/font_d7dabd3f969b60a6a4bdc397.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.172852;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.008000px;}
.lse{letter-spacing:-0.229800px;}
.ls7{letter-spacing:-0.226200px;}
.lsa{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.089400px;}
.lsb{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.234000px;}
.ls4{letter-spacing:0.262200px;}
.ls6{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.493800px;}
.ls1{letter-spacing:13.109760px;}
.lsf{letter-spacing:16.506720px;}
.lsc{letter-spacing:46.026720px;}
.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;}
}
.ws3{word-spacing:-84.240000px;}
.wsa{word-spacing:-54.000000px;}
.ws1{word-spacing:-16.822200px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.wsd{word-spacing:-14.993280px;}
.ws11{word-spacing:-14.940000px;}
.wsb{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.392000px;}
.ws6{word-spacing:-10.933800px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.wsf{word-spacing:-9.437760px;}
.ws9{word-spacing:-8.928000px;}
.wsc{word-spacing:0.000000px;}
.ws10{word-spacing:200.770080px;}
.wse{word-spacing:224.853120px;}
._0{margin-left:-1.093680px;}
._1{width:1.414320px;}
._4{width:3.078000px;}
._a{width:4.279680px;}
._6{width:5.454000px;}
._5{width:6.696000px;}
._b{width:7.927680px;}
._13{width:8.948880px;}
._3{width:10.422000px;}
._d{width:12.297360px;}
._14{width:13.346400px;}
._9{width:15.120000px;}
._35{width:16.374240px;}
._8{width:17.481600px;}
._7{width:18.892080px;}
._2{width:19.964880px;}
._c{width:21.060000px;}
._36{width:22.126560px;}
._28{width:23.505600px;}
._2d{width:25.158960px;}
._44{width:26.257440px;}
._12{width:27.329040px;}
._11{width:28.702800px;}
._10{width:29.760480px;}
._2a{width:31.473600px;}
._29{width:32.688720px;}
._e{width:34.680720px;}
._f{width:36.632880px;}
._21{width:39.182640px;}
._18{width:40.716480px;}
._19{width:41.832000px;}
._3a{width:43.206480px;}
._42{width:44.939520px;}
._39{width:48.584880px;}
._17{width:49.839840px;}
._16{width:50.855760px;}
._3e{width:52.708320px;}
._1a{width:53.843760px;}
._26{width:57.190320px;}
._27{width:58.413120px;}
._15{width:60.975120px;}
._22{width:63.783840px;}
._1b{width:65.855520px;}
._1e{width:72.309600px;}
._25{width:74.301600px;}
._1c{width:76.154160px;}
._3d{width:78.106320px;}
._38{width:79.660080px;}
._40{width:81.650160px;}
._2b{width:84.739680px;}
._20{width:89.341200px;}
._24{width:90.795360px;}
._1d{width:92.508480px;}
._2c{width:100.098000px;}
._30{width:106.850880px;}
._23{width:111.930480px;}
._2f{width:118.743120px;}
._34{width:126.332640px;}
._3c{width:140.734800px;}
._3b{width:141.930000px;}
._43{width:158.563200px;}
._37{width:160.754400px;}
._32{width:168.483360px;}
._41{width:179.578800px;}
._31{width:198.223920px;}
._33{width:224.518320px;}
._1f{width:261.748800px;}
._2e{width:276.330240px;}
._3f{width:293.959440px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(64,64,64);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:2.340000px;}
.y45{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y5a{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y58{bottom:10.980000px;}
.yef{bottom:14.910000px;}
.ye4{bottom:16.554000px;}
.y6c{bottom:16.560000px;}
.y73{bottom:16.590000px;}
.y7a{bottom:16.605000px;}
.y69{bottom:16.740000px;}
.y44{bottom:20.520000px;}
.y4{bottom:22.710000px;}
.y57{bottom:26.640000px;}
.yee{bottom:27.720000px;}
.y91{bottom:28.620000px;}
.ye3{bottom:35.094000px;}
.y6b{bottom:35.100000px;}
.y79{bottom:35.145000px;}
.y6e{bottom:35.280000px;}
.y72{bottom:35.310000px;}
.y43{bottom:37.800000px;}
.yed{bottom:40.530000px;}
.y4d{bottom:42.120000px;}
.y90{bottom:47.160000px;}
.y94{bottom:47.190000px;}
.y3{bottom:47.910000px;}
.ya1{bottom:49.320000px;}
.y4c{bottom:51.834000px;}
.ye7{bottom:52.770000px;}
.y8e{bottom:53.640000px;}
.ye2{bottom:53.814000px;}
.y8b{bottom:53.820000px;}
.y42{bottom:54.945000px;}
.y7{bottom:57.060000px;}
.y56{bottom:59.934000px;}
.y4b{bottom:63.534000px;}
.y41{bottom:72.225000px;}
.y55{bottom:75.414000px;}
.y4a{bottom:76.494000px;}
.ye8{bottom:82.830000px;}
.ya2{bottom:84.675000px;}
.y40{bottom:89.505000px;}
.y49{bottom:89.634000px;}
.y123{bottom:91.656000px;}
.y54{bottom:93.234000px;}
.y9f{bottom:94.176000px;}
.ye5{bottom:97.416000px;}
.y46{bottom:99.936000px;}
.y3f{bottom:106.785000px;}
.y53{bottom:108.714000px;}
.y122{bottom:108.936000px;}
.y9e{bottom:111.456000px;}
.ye9{bottom:112.890000px;}
.y87{bottom:117.216000px;}
.ya3{bottom:120.060000px;}
.y3e{bottom:124.065000px;}
.y52{bottom:124.194000px;}
.y121{bottom:126.216000px;}
.y9d{bottom:128.736000px;}
.y86{bottom:134.496000px;}
.y51{bottom:139.674000px;}
.y3d{bottom:141.345000px;}
.yea{bottom:142.950000px;}
.y120{bottom:143.496000px;}
.y9c{bottom:145.836000px;}
.ye1{bottom:147.456000px;}
.y48{bottom:151.554000px;}
.y85{bottom:151.770000px;}
.y50{bottom:155.334000px;}
.ya4{bottom:155.445000px;}
.y3c{bottom:158.445000px;}
.y11f{bottom:160.770000px;}
.y47{bottom:162.174000px;}
.y9b{bottom:163.110000px;}
.yf2{bottom:163.290000px;}
.y84{bottom:168.870000px;}
.y4f{bottom:170.814000px;}
.yeb{bottom:173.010000px;}
.y3b{bottom:175.725000px;}
.ya9{bottom:176.010000px;}
.y11e{bottom:178.050000px;}
.y9a{bottom:180.390000px;}
.y83{bottom:186.150000px;}
.ya5{bottom:190.830000px;}
.y3a{bottom:193.005000px;}
.yf1{bottom:193.350000px;}
.y11d{bottom:195.150000px;}
.y99{bottom:197.670000px;}
.yec{bottom:203.070000px;}
.y82{bottom:203.430000px;}
.y39{bottom:210.285000px;}
.ya8{bottom:211.395000px;}
.y11c{bottom:212.430000px;}
.y98{bottom:214.950000px;}
.ye0{bottom:216.030000px;}
.y81{bottom:220.710000px;}
.yf0{bottom:223.410000px;}
.ya6{bottom:226.185000px;}
.y38{bottom:227.565000px;}
.y97{bottom:228.810000px;}
.y11b{bottom:229.710000px;}
.ya0{bottom:231.120000px;}
.y80{bottom:237.990000px;}
.y37{bottom:244.845000px;}
.ya7{bottom:246.780000px;}
.y11a{bottom:246.990000px;}
.yf3{bottom:251.430000px;}
.y7f{bottom:255.270000px;}
.y36{bottom:261.945000px;}
.y119{bottom:264.270000px;}
.y7e{bottom:272.370000px;}
.yaa{bottom:276.915000px;}
.y35{bottom:279.225000px;}
.y118{bottom:281.550000px;}
.ydf{bottom:284.610000px;}
.y7d{bottom:289.650000px;}
.yf{bottom:292.170000px;}
.y34{bottom:296.505000px;}
.y117{bottom:298.650000px;}
.y7c{bottom:306.930000px;}
.y33{bottom:313.815000px;}
.y116{bottom:315.930000px;}
.y7b{bottom:324.210000px;}
.yc2{bottom:326.550000px;}
.y32{bottom:331.095000px;}
.y115{bottom:333.210000px;}
.yde{bottom:337.890000px;}
.y78{bottom:338.970000px;}
.yc1{bottom:341.355000px;}
.y1d{bottom:342.615000px;}
.y31{bottom:348.195000px;}
.y114{bottom:350.535000px;}
.ydd{bottom:355.215000px;}
.y1c{bottom:366.735000px;}
.y113{bottom:367.815000px;}
.ydc{bottom:372.315000px;}
.y30{bottom:374.295000px;}
.y112{bottom:384.915000px;}
.y77{bottom:389.055000px;}
.ydb{bottom:389.595000px;}
.y2f{bottom:389.775000px;}
.y1b{bottom:390.855000px;}
.yc0{bottom:391.215000px;}
.y111{bottom:402.195000px;}
.y2e{bottom:405.255000px;}
.yda{bottom:406.875000px;}
.y1a{bottom:414.975000px;}
.y110{bottom:419.475000px;}
.y2d{bottom:420.735000px;}
.yd9{bottom:424.155000px;}
.y2c{bottom:436.395000px;}
.y76{bottom:438.915000px;}
.y19{bottom:439.275000px;}
.ybf{bottom:441.255000px;}
.yd8{bottom:441.435000px;}
.y10f{bottom:445.755000px;}
.y2b{bottom:451.875000px;}
.yd7{bottom:458.715000px;}
.y10e{bottom:463.035000px;}
.y18{bottom:463.395000px;}
.y2a{bottom:467.355000px;}
.yd6{bottom:475.815000px;}
.y10d{bottom:480.315000px;}
.y29{bottom:482.835000px;}
.y17{bottom:487.515000px;}
.y75{bottom:488.955000px;}
.ybe{bottom:491.295000px;}
.yd5{bottom:493.095000px;}
.y10c{bottom:497.415000px;}
.y28{bottom:498.315000px;}
.yd4{bottom:510.375000px;}
.y16{bottom:511.635000px;}
.y27{bottom:513.975000px;}
.y10b{bottom:514.695000px;}
.yd3{bottom:527.655000px;}
.y26{bottom:529.455000px;}
.y10a{bottom:531.975000px;}
.y15{bottom:535.755000px;}
.y96{bottom:538.095000px;}
.y74{bottom:538.815000px;}
.ybd{bottom:541.155000px;}
.y25{bottom:544.935000px;}
.y109{bottom:549.255000px;}
.y95{bottom:555.375000px;}
.y14{bottom:559.875000px;}
.y24{bottom:560.415000px;}
.yd2{bottom:562.215000px;}
.y108{bottom:566.535000px;}
.y93{bottom:570.135000px;}
.y23{bottom:576.120000px;}
.yd1{bottom:579.315000px;}
.y107{bottom:583.815000px;}
.y13{bottom:584.040000px;}
.y71{bottom:588.855000px;}
.ybc{bottom:591.195000px;}
.y22{bottom:591.600000px;}
.yd0{bottom:596.595000px;}
.y106{bottom:600.915000px;}
.y21{bottom:607.080000px;}
.y12{bottom:608.340000px;}
.ycf{bottom:613.905000px;}
.y105{bottom:618.225000px;}
.y20{bottom:622.560000px;}
.yce{bottom:631.185000px;}
.y92{bottom:632.265000px;}
.y11{bottom:632.460000px;}
.y1f{bottom:638.220000px;}
.y70{bottom:638.925000px;}
.ybb{bottom:641.265000px;}
.y104{bottom:644.505000px;}
.ycd{bottom:648.465000px;}
.y1e{bottom:653.700000px;}
.y10{bottom:656.580000px;}
.y103{bottom:661.785000px;}
.ycc{bottom:665.565000px;}
.y102{bottom:679.065000px;}
.y8f{bottom:682.125000px;}
.ycb{bottom:682.845000px;}
.y6f{bottom:688.785000px;}
.yba{bottom:691.125000px;}
.y101{bottom:696.345000px;}
.yca{bottom:700.125000px;}
.y100{bottom:713.445000px;}
.yc9{bottom:717.405000px;}
.yff{bottom:730.725000px;}
.yc8{bottom:734.685000px;}
.y6d{bottom:738.825000px;}
.y8d{bottom:744.225000px;}
.yb9{bottom:744.405000px;}
.yfe{bottom:748.005000px;}
.yc7{bottom:751.965000px;}
.yb8{bottom:761.685000px;}
.yfd{bottom:765.285000px;}
.yc6{bottom:769.065000px;}
.yb7{bottom:778.965000px;}
.yfc{bottom:782.565000px;}
.yc5{bottom:786.345000px;}
.y6a{bottom:788.865000px;}
.yb6{bottom:796.245000px;}
.yfb{bottom:799.665000px;}
.yc4{bottom:803.625000px;}
.y8c{bottom:812.805000px;}
.yb5{bottom:813.345000px;}
.yfa{bottom:816.945000px;}
.yc3{bottom:817.665000px;}
.ye6{bottom:820.800000px;}
.yb4{bottom:830.625000px;}
.yf9{bottom:834.225000px;}
.y68{bottom:838.725000px;}
.yb3{bottom:847.905000px;}
.yf8{bottom:851.505000px;}
.yb2{bottom:865.185000px;}
.yf7{bottom:866.265000px;}
.y67{bottom:873.510000px;}
.y8a{bottom:881.430000px;}
.yb1{bottom:882.510000px;}
.y66{bottom:890.610000px;}
.yb0{bottom:899.610000px;}
.y65{bottom:907.890000px;}
.yf6{bottom:916.350000px;}
.yaf{bottom:916.890000px;}
.y64{bottom:925.170000px;}
.yae{bottom:934.170000px;}
.y63{bottom:942.450000px;}
.y89{bottom:950.010000px;}
.yad{bottom:951.450000px;}
.y62{bottom:959.730000px;}
.ye{bottom:960.990000px;}
.yd{bottom:965.670000px;}
.yf5{bottom:966.210000px;}
.yac{bottom:968.730000px;}
.y61{bottom:977.010000px;}
.yc{bottom:982.950000px;}
.yab{bottom:986.010000px;}
.y60{bottom:994.110000px;}
.yb{bottom:1000.230000px;}
.y88{bottom:1003.110000px;}
.ya{bottom:1018.950000px;}
.y5f{bottom:1020.390000px;}
.yf4{bottom:1034.790000px;}
.y5e{bottom:1037.670000px;}
.y9{bottom:1043.250000px;}
.y5d{bottom:1054.950000px;}
.y8{bottom:1071.870000px;}
.y5c{bottom:1072.230000px;}
.y59{bottom:1075.140000px;}
.y5b{bottom:1089.510000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.ha{height:4.064063px;}
.h12{height:21.114844px;}
.h11{height:25.136719px;}
.h15{height:27.720000px;}
.hd{height:29.158594px;}
.hc{height:29.464453px;}
.h17{height:30.816000px;}
.hf{height:37.705078px;}
.he{height:38.100586px;}
.h13{height:38.997070px;}
.h14{height:39.471680px;}
.h7{height:40.132617px;}
.h26{height:41.535703px;}
.h6{height:41.726953px;}
.h9{height:42.164648px;}
.h1c{height:43.506914px;}
.h5{height:46.251562px;}
.h24{height:49.097812px;}
.h18{height:49.140000px;}
.h1b{height:49.176000px;}
.h19{height:49.320000px;}
.h1a{height:49.356000px;}
.h27{height:51.329531px;}
.h23{height:53.709961px;}
.h20{height:61.200000px;}
.h21{height:61.236000px;}
.h16{height:64.002656px;}
.h8{height:64.126055px;}
.h3{height:65.884219px;}
.h1f{height:67.680000px;}
.h1d{height:67.860000px;}
.h1e{height:67.896000px;}
.h28{height:83.787539px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h10{height:191.520000px;}
.h25{height:282.600000px;}
.h22{height:303.840000px;}
.hb{height:666.285000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:37.620000px;}
.we{width:42.840000px;}
.w19{width:43.020000px;}
.w14{width:44.100000px;}
.w1d{width:92.556000px;}
.w18{width:99.216000px;}
.w2{width:104.076000px;}
.w12{width:117.936000px;}
.wa{width:121.716000px;}
.w15{width:123.336000px;}
.wf{width:128.016000px;}
.w1a{width:131.436000px;}
.w5{width:131.940000px;}
.wb{width:143.820000px;}
.wd{width:145.116000px;}
.w8{width:162.900000px;}
.w10{width:177.510000px;}
.w17{width:184.170000px;}
.w11{width:186.510000px;}
.w1b{width:189.570000px;}
.w1c{width:192.450000px;}
.wc{width:200.415000px;}
.w16{width:216.930000px;}
.w13{width:487.260000px;}
.w1e{width:516.240000px;}
.w6{width:593.430000px;}
.w7{width:594.150000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.056000px;}
.x18{left:8.100000px;}
.x15{left:10.440000px;}
.x4{left:12.780000px;}
.x16{left:18.180000px;}
.x6{left:19.260000px;}
.xf{left:25.560000px;}
.x10{left:28.980000px;}
.xe{left:31.140000px;}
.x14{left:37.260000px;}
.x12{left:42.480000px;}
.x13{left:45.540000px;}
.x1b{left:47.340000px;}
.x3b{left:51.630000px;}
.x1c{left:56.700000px;}
.x19{left:62.145000px;}
.x11{left:65.874000px;}
.x2f{left:75.165000px;}
.x1{left:78.300000px;}
.x45{left:79.380000px;}
.x2b{left:85.350000px;}
.x9{left:86.435987px;}
.x4b{left:91.835987px;}
.x2{left:95.790000px;}
.x1a{left:106.374000px;}
.x30{left:111.276000px;}
.x23{left:113.435987px;}
.x24{left:118.656000px;}
.x1e{left:120.816000px;}
.x46{left:138.030000px;}
.x5{left:141.345000px;}
.x2c{left:149.610000px;}
.x31{left:156.270000px;}
.x1f{left:159.150000px;}
.x25{left:162.390000px;}
.x36{left:164.370000px;}
.x3c{left:172.185000px;}
.x3d{left:175.965000px;}
.x3{left:182.370000px;}
.x3a{left:187.740000px;}
.x2a{left:201.240000px;}
.x17{left:218.370000px;}
.x3e{left:228.885000px;}
.x3f{left:244.905000px;}
.x47{left:255.270000px;}
.x2d{left:278.130000px;}
.x32{left:280.335000px;}
.x20{left:281.595000px;}
.x41{left:288.930000px;}
.x26{left:291.315000px;}
.x37{left:296.535000px;}
.x40{left:299.775000px;}
.x48{left:313.920000px;}
.x2e{left:342.390000px;}
.x42{left:347.190000px;}
.x49{left:372.525000px;}
.x44{left:404.490000px;}
.x43{left:405.510000px;}
.x21{left:426.135000px;}
.x4a{left:431.175000px;}
.x27{left:469.545000px;}
.x38{left:487.005000px;}
.x33{left:497.985000px;}
.xc{left:563.144987px;}
.xb{left:608.909987px;}
.x22{left:627.270000px;}
.x28{left:656.790000px;}
.xa{left:658.049987px;}
.x39{left:680.190000px;}
.x34{left:682.890000px;}
.x29{left:691.889987px;}
.x35{left:705.389987px;}
.x8{left:766.049987px;}
.x7{left:791.999987px;}
.xd{left:806.939987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.896000pt;}
.lse{letter-spacing:-0.204267pt;}
.ls7{letter-spacing:-0.201067pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.079467pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.208000pt;}
.ls4{letter-spacing:0.233067pt;}
.ls6{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.438933pt;}
.ls1{letter-spacing:11.653120pt;}
.lsf{letter-spacing:14.672640pt;}
.lsc{letter-spacing:40.912640pt;}
.ws3{word-spacing:-74.880000pt;}
.wsa{word-spacing:-48.000000pt;}
.ws1{word-spacing:-14.953067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.327360pt;}
.ws11{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.904000pt;}
.ws6{word-spacing:-9.718933pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.wsf{word-spacing:-8.389120pt;}
.ws9{word-spacing:-7.936000pt;}
.wsc{word-spacing:0.000000pt;}
.ws10{word-spacing:178.462293pt;}
.wse{word-spacing:199.869440pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.257173pt;}
._4{width:2.736000pt;}
._a{width:3.804160pt;}
._6{width:4.848000pt;}
._5{width:5.952000pt;}
._b{width:7.046827pt;}
._13{width:7.954560pt;}
._3{width:9.264000pt;}
._d{width:10.930987pt;}
._14{width:11.863467pt;}
._9{width:13.440000pt;}
._35{width:14.554880pt;}
._8{width:15.539200pt;}
._7{width:16.792960pt;}
._2{width:17.746560pt;}
._c{width:18.720000pt;}
._36{width:19.668053pt;}
._28{width:20.893867pt;}
._2d{width:22.363520pt;}
._44{width:23.339947pt;}
._12{width:24.292480pt;}
._11{width:25.513600pt;}
._10{width:26.453760pt;}
._2a{width:27.976533pt;}
._29{width:29.056640pt;}
._e{width:30.827307pt;}
._f{width:32.562560pt;}
._21{width:34.829013pt;}
._18{width:36.192427pt;}
._19{width:37.184000pt;}
._3a{width:38.405760pt;}
._42{width:39.946240pt;}
._39{width:43.186560pt;}
._17{width:44.302080pt;}
._16{width:45.205120pt;}
._3e{width:46.851840pt;}
._1a{width:47.861120pt;}
._26{width:50.835840pt;}
._27{width:51.922773pt;}
._15{width:54.200107pt;}
._22{width:56.696747pt;}
._1b{width:58.538240pt;}
._1e{width:64.275200pt;}
._25{width:66.045867pt;}
._1c{width:67.692587pt;}
._3d{width:69.427840pt;}
._38{width:70.808960pt;}
._40{width:72.577920pt;}
._2b{width:75.324160pt;}
._20{width:79.414400pt;}
._24{width:80.706987pt;}
._1d{width:82.229760pt;}
._2c{width:88.976000pt;}
._30{width:94.978560pt;}
._23{width:99.493760pt;}
._2f{width:105.549440pt;}
._34{width:112.295680pt;}
._3c{width:125.097600pt;}
._3b{width:126.160000pt;}
._43{width:140.945067pt;}
._37{width:142.892800pt;}
._32{width:149.762987pt;}
._41{width:159.625600pt;}
._31{width:176.199040pt;}
._33{width:199.571840pt;}
._1f{width:232.665600pt;}
._2e{width:245.626880pt;}
._3f{width:261.297280pt;}
.fs5{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:2.080000pt;}
.y45{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y5a{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y58{bottom:9.760000pt;}
.yef{bottom:13.253333pt;}
.ye4{bottom:14.714667pt;}
.y6c{bottom:14.720000pt;}
.y73{bottom:14.746667pt;}
.y7a{bottom:14.760000pt;}
.y69{bottom:14.880000pt;}
.y44{bottom:18.240000pt;}
.y4{bottom:20.186667pt;}
.y57{bottom:23.680000pt;}
.yee{bottom:24.640000pt;}
.y91{bottom:25.440000pt;}
.ye3{bottom:31.194667pt;}
.y6b{bottom:31.200000pt;}
.y79{bottom:31.240000pt;}
.y6e{bottom:31.360000pt;}
.y72{bottom:31.386667pt;}
.y43{bottom:33.600000pt;}
.yed{bottom:36.026667pt;}
.y4d{bottom:37.440000pt;}
.y90{bottom:41.920000pt;}
.y94{bottom:41.946667pt;}
.y3{bottom:42.586667pt;}
.ya1{bottom:43.840000pt;}
.y4c{bottom:46.074667pt;}
.ye7{bottom:46.906667pt;}
.y8e{bottom:47.680000pt;}
.ye2{bottom:47.834667pt;}
.y8b{bottom:47.840000pt;}
.y42{bottom:48.840000pt;}
.y7{bottom:50.720000pt;}
.y56{bottom:53.274667pt;}
.y4b{bottom:56.474667pt;}
.y41{bottom:64.200000pt;}
.y55{bottom:67.034667pt;}
.y4a{bottom:67.994667pt;}
.ye8{bottom:73.626667pt;}
.ya2{bottom:75.266667pt;}
.y40{bottom:79.560000pt;}
.y49{bottom:79.674667pt;}
.y123{bottom:81.472000pt;}
.y54{bottom:82.874667pt;}
.y9f{bottom:83.712000pt;}
.ye5{bottom:86.592000pt;}
.y46{bottom:88.832000pt;}
.y3f{bottom:94.920000pt;}
.y53{bottom:96.634667pt;}
.y122{bottom:96.832000pt;}
.y9e{bottom:99.072000pt;}
.ye9{bottom:100.346667pt;}
.y87{bottom:104.192000pt;}
.ya3{bottom:106.720000pt;}
.y3e{bottom:110.280000pt;}
.y52{bottom:110.394667pt;}
.y121{bottom:112.192000pt;}
.y9d{bottom:114.432000pt;}
.y86{bottom:119.552000pt;}
.y51{bottom:124.154667pt;}
.y3d{bottom:125.640000pt;}
.yea{bottom:127.066667pt;}
.y120{bottom:127.552000pt;}
.y9c{bottom:129.632000pt;}
.ye1{bottom:131.072000pt;}
.y48{bottom:134.714667pt;}
.y85{bottom:134.906667pt;}
.y50{bottom:138.074667pt;}
.ya4{bottom:138.173333pt;}
.y3c{bottom:140.840000pt;}
.y11f{bottom:142.906667pt;}
.y47{bottom:144.154667pt;}
.y9b{bottom:144.986667pt;}
.yf2{bottom:145.146667pt;}
.y84{bottom:150.106667pt;}
.y4f{bottom:151.834667pt;}
.yeb{bottom:153.786667pt;}
.y3b{bottom:156.200000pt;}
.ya9{bottom:156.453333pt;}
.y11e{bottom:158.266667pt;}
.y9a{bottom:160.346667pt;}
.y83{bottom:165.466667pt;}
.ya5{bottom:169.626667pt;}
.y3a{bottom:171.560000pt;}
.yf1{bottom:171.866667pt;}
.y11d{bottom:173.466667pt;}
.y99{bottom:175.706667pt;}
.yec{bottom:180.506667pt;}
.y82{bottom:180.826667pt;}
.y39{bottom:186.920000pt;}
.ya8{bottom:187.906667pt;}
.y11c{bottom:188.826667pt;}
.y98{bottom:191.066667pt;}
.ye0{bottom:192.026667pt;}
.y81{bottom:196.186667pt;}
.yf0{bottom:198.586667pt;}
.ya6{bottom:201.053333pt;}
.y38{bottom:202.280000pt;}
.y97{bottom:203.386667pt;}
.y11b{bottom:204.186667pt;}
.ya0{bottom:205.440000pt;}
.y80{bottom:211.546667pt;}
.y37{bottom:217.640000pt;}
.ya7{bottom:219.360000pt;}
.y11a{bottom:219.546667pt;}
.yf3{bottom:223.493333pt;}
.y7f{bottom:226.906667pt;}
.y36{bottom:232.840000pt;}
.y119{bottom:234.906667pt;}
.y7e{bottom:242.106667pt;}
.yaa{bottom:246.146667pt;}
.y35{bottom:248.200000pt;}
.y118{bottom:250.266667pt;}
.ydf{bottom:252.986667pt;}
.y7d{bottom:257.466667pt;}
.yf{bottom:259.706667pt;}
.y34{bottom:263.560000pt;}
.y117{bottom:265.466667pt;}
.y7c{bottom:272.826667pt;}
.y33{bottom:278.946667pt;}
.y116{bottom:280.826667pt;}
.y7b{bottom:288.186667pt;}
.yc2{bottom:290.266667pt;}
.y32{bottom:294.306667pt;}
.y115{bottom:296.186667pt;}
.yde{bottom:300.346667pt;}
.y78{bottom:301.306667pt;}
.yc1{bottom:303.426667pt;}
.y1d{bottom:304.546667pt;}
.y31{bottom:309.506667pt;}
.y114{bottom:311.586667pt;}
.ydd{bottom:315.746667pt;}
.y1c{bottom:325.986667pt;}
.y113{bottom:326.946667pt;}
.ydc{bottom:330.946667pt;}
.y30{bottom:332.706667pt;}
.y112{bottom:342.146667pt;}
.y77{bottom:345.826667pt;}
.ydb{bottom:346.306667pt;}
.y2f{bottom:346.466667pt;}
.y1b{bottom:347.426667pt;}
.yc0{bottom:347.746667pt;}
.y111{bottom:357.506667pt;}
.y2e{bottom:360.226667pt;}
.yda{bottom:361.666667pt;}
.y1a{bottom:368.866667pt;}
.y110{bottom:372.866667pt;}
.y2d{bottom:373.986667pt;}
.yd9{bottom:377.026667pt;}
.y2c{bottom:387.906667pt;}
.y76{bottom:390.146667pt;}
.y19{bottom:390.466667pt;}
.ybf{bottom:392.226667pt;}
.yd8{bottom:392.386667pt;}
.y10f{bottom:396.226667pt;}
.y2b{bottom:401.666667pt;}
.yd7{bottom:407.746667pt;}
.y10e{bottom:411.586667pt;}
.y18{bottom:411.906667pt;}
.y2a{bottom:415.426667pt;}
.yd6{bottom:422.946667pt;}
.y10d{bottom:426.946667pt;}
.y29{bottom:429.186667pt;}
.y17{bottom:433.346667pt;}
.y75{bottom:434.626667pt;}
.ybe{bottom:436.706667pt;}
.yd5{bottom:438.306667pt;}
.y10c{bottom:442.146667pt;}
.y28{bottom:442.946667pt;}
.yd4{bottom:453.666667pt;}
.y16{bottom:454.786667pt;}
.y27{bottom:456.866667pt;}
.y10b{bottom:457.506667pt;}
.yd3{bottom:469.026667pt;}
.y26{bottom:470.626667pt;}
.y10a{bottom:472.866667pt;}
.y15{bottom:476.226667pt;}
.y96{bottom:478.306667pt;}
.y74{bottom:478.946667pt;}
.ybd{bottom:481.026667pt;}
.y25{bottom:484.386667pt;}
.y109{bottom:488.226667pt;}
.y95{bottom:493.666667pt;}
.y14{bottom:497.666667pt;}
.y24{bottom:498.146667pt;}
.yd2{bottom:499.746667pt;}
.y108{bottom:503.586667pt;}
.y93{bottom:506.786667pt;}
.y23{bottom:512.106667pt;}
.yd1{bottom:514.946667pt;}
.y107{bottom:518.946667pt;}
.y13{bottom:519.146667pt;}
.y71{bottom:523.426667pt;}
.ybc{bottom:525.506667pt;}
.y22{bottom:525.866667pt;}
.yd0{bottom:530.306667pt;}
.y106{bottom:534.146667pt;}
.y21{bottom:539.626667pt;}
.y12{bottom:540.746667pt;}
.ycf{bottom:545.693333pt;}
.y105{bottom:549.533333pt;}
.y20{bottom:553.386667pt;}
.yce{bottom:561.053333pt;}
.y92{bottom:562.013333pt;}
.y11{bottom:562.186667pt;}
.y1f{bottom:567.306667pt;}
.y70{bottom:567.933333pt;}
.ybb{bottom:570.013333pt;}
.y104{bottom:572.893333pt;}
.ycd{bottom:576.413333pt;}
.y1e{bottom:581.066667pt;}
.y10{bottom:583.626667pt;}
.y103{bottom:588.253333pt;}
.ycc{bottom:591.613333pt;}
.y102{bottom:603.613333pt;}
.y8f{bottom:606.333333pt;}
.ycb{bottom:606.973333pt;}
.y6f{bottom:612.253333pt;}
.yba{bottom:614.333333pt;}
.y101{bottom:618.973333pt;}
.yca{bottom:622.333333pt;}
.y100{bottom:634.173333pt;}
.yc9{bottom:637.693333pt;}
.yff{bottom:649.533333pt;}
.yc8{bottom:653.053333pt;}
.y6d{bottom:656.733333pt;}
.y8d{bottom:661.533333pt;}
.yb9{bottom:661.693333pt;}
.yfe{bottom:664.893333pt;}
.yc7{bottom:668.413333pt;}
.yb8{bottom:677.053333pt;}
.yfd{bottom:680.253333pt;}
.yc6{bottom:683.613333pt;}
.yb7{bottom:692.413333pt;}
.yfc{bottom:695.613333pt;}
.yc5{bottom:698.973333pt;}
.y6a{bottom:701.213333pt;}
.yb6{bottom:707.773333pt;}
.yfb{bottom:710.813333pt;}
.yc4{bottom:714.333333pt;}
.y8c{bottom:722.493333pt;}
.yb5{bottom:722.973333pt;}
.yfa{bottom:726.173333pt;}
.yc3{bottom:726.813333pt;}
.ye6{bottom:729.600000pt;}
.yb4{bottom:738.333333pt;}
.yf9{bottom:741.533333pt;}
.y68{bottom:745.533333pt;}
.yb3{bottom:753.693333pt;}
.yf8{bottom:756.893333pt;}
.yb2{bottom:769.053333pt;}
.yf7{bottom:770.013333pt;}
.y67{bottom:776.453333pt;}
.y8a{bottom:783.493333pt;}
.yb1{bottom:784.453333pt;}
.y66{bottom:791.653333pt;}
.yb0{bottom:799.653333pt;}
.y65{bottom:807.013333pt;}
.yf6{bottom:814.533333pt;}
.yaf{bottom:815.013333pt;}
.y64{bottom:822.373333pt;}
.yae{bottom:830.373333pt;}
.y63{bottom:837.733333pt;}
.y89{bottom:844.453333pt;}
.yad{bottom:845.733333pt;}
.y62{bottom:853.093333pt;}
.ye{bottom:854.213333pt;}
.yd{bottom:858.373333pt;}
.yf5{bottom:858.853333pt;}
.yac{bottom:861.093333pt;}
.y61{bottom:868.453333pt;}
.yc{bottom:873.733333pt;}
.yab{bottom:876.453333pt;}
.y60{bottom:883.653333pt;}
.yb{bottom:889.093333pt;}
.y88{bottom:891.653333pt;}
.ya{bottom:905.733333pt;}
.y5f{bottom:907.013333pt;}
.yf4{bottom:919.813333pt;}
.y5e{bottom:922.373333pt;}
.y9{bottom:927.333333pt;}
.y5d{bottom:937.733333pt;}
.y8{bottom:952.773333pt;}
.y5c{bottom:953.093333pt;}
.y59{bottom:955.680000pt;}
.y5b{bottom:968.453333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.ha{height:3.612500pt;}
.h12{height:18.768750pt;}
.h11{height:22.343750pt;}
.h15{height:24.640000pt;}
.hd{height:25.918750pt;}
.hc{height:26.190625pt;}
.h17{height:27.392000pt;}
.hf{height:33.515625pt;}
.he{height:33.867188pt;}
.h13{height:34.664062pt;}
.h14{height:35.085938pt;}
.h7{height:35.673437pt;}
.h26{height:36.920625pt;}
.h6{height:37.090625pt;}
.h9{height:37.479688pt;}
.h1c{height:38.672812pt;}
.h5{height:41.112500pt;}
.h24{height:43.642500pt;}
.h18{height:43.680000pt;}
.h1b{height:43.712000pt;}
.h19{height:43.840000pt;}
.h1a{height:43.872000pt;}
.h27{height:45.626250pt;}
.h23{height:47.742188pt;}
.h20{height:54.400000pt;}
.h21{height:54.432000pt;}
.h16{height:56.891250pt;}
.h8{height:57.000937pt;}
.h3{height:58.563750pt;}
.h1f{height:60.160000pt;}
.h1d{height:60.320000pt;}
.h1e{height:60.352000pt;}
.h28{height:74.477812pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h10{height:170.240000pt;}
.h25{height:251.200000pt;}
.h22{height:270.080000pt;}
.hb{height:592.253333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:33.440000pt;}
.we{width:38.080000pt;}
.w19{width:38.240000pt;}
.w14{width:39.200000pt;}
.w1d{width:82.272000pt;}
.w18{width:88.192000pt;}
.w2{width:92.512000pt;}
.w12{width:104.832000pt;}
.wa{width:108.192000pt;}
.w15{width:109.632000pt;}
.wf{width:113.792000pt;}
.w1a{width:116.832000pt;}
.w5{width:117.280000pt;}
.wb{width:127.840000pt;}
.wd{width:128.992000pt;}
.w8{width:144.800000pt;}
.w10{width:157.786667pt;}
.w17{width:163.706667pt;}
.w11{width:165.786667pt;}
.w1b{width:168.506667pt;}
.w1c{width:171.066667pt;}
.wc{width:178.146667pt;}
.w16{width:192.826667pt;}
.w13{width:433.120000pt;}
.w1e{width:458.880000pt;}
.w6{width:527.493333pt;}
.w7{width:528.133333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.272000pt;}
.x18{left:7.200000pt;}
.x15{left:9.280000pt;}
.x4{left:11.360000pt;}
.x16{left:16.160000pt;}
.x6{left:17.120000pt;}
.xf{left:22.720000pt;}
.x10{left:25.760000pt;}
.xe{left:27.680000pt;}
.x14{left:33.120000pt;}
.x12{left:37.760000pt;}
.x13{left:40.480000pt;}
.x1b{left:42.080000pt;}
.x3b{left:45.893333pt;}
.x1c{left:50.400000pt;}
.x19{left:55.240000pt;}
.x11{left:58.554667pt;}
.x2f{left:66.813333pt;}
.x1{left:69.600000pt;}
.x45{left:70.560000pt;}
.x2b{left:75.866667pt;}
.x9{left:76.831988pt;}
.x4b{left:81.631988pt;}
.x2{left:85.146667pt;}
.x1a{left:94.554667pt;}
.x30{left:98.912000pt;}
.x23{left:100.831988pt;}
.x24{left:105.472000pt;}
.x1e{left:107.392000pt;}
.x46{left:122.693333pt;}
.x5{left:125.640000pt;}
.x2c{left:132.986667pt;}
.x31{left:138.906667pt;}
.x1f{left:141.466667pt;}
.x25{left:144.346667pt;}
.x36{left:146.106667pt;}
.x3c{left:153.053333pt;}
.x3d{left:156.413333pt;}
.x3{left:162.106667pt;}
.x3a{left:166.880000pt;}
.x2a{left:178.880000pt;}
.x17{left:194.106667pt;}
.x3e{left:203.453333pt;}
.x3f{left:217.693333pt;}
.x47{left:226.906667pt;}
.x2d{left:247.226667pt;}
.x32{left:249.186667pt;}
.x20{left:250.306667pt;}
.x41{left:256.826667pt;}
.x26{left:258.946667pt;}
.x37{left:263.586667pt;}
.x40{left:266.466667pt;}
.x48{left:279.040000pt;}
.x2e{left:304.346667pt;}
.x42{left:308.613333pt;}
.x49{left:331.133333pt;}
.x44{left:359.546667pt;}
.x43{left:360.453333pt;}
.x21{left:378.786667pt;}
.x4a{left:383.266667pt;}
.x27{left:417.373333pt;}
.x38{left:432.893333pt;}
.x33{left:442.653333pt;}
.xc{left:500.573322pt;}
.xb{left:541.253322pt;}
.x22{left:557.573333pt;}
.x28{left:583.813333pt;}
.xa{left:584.933322pt;}
.x39{left:604.613333pt;}
.x34{left:607.013333pt;}
.x29{left:615.013322pt;}
.x35{left:627.013322pt;}
.x8{left:680.933322pt;}
.x7{left:703.999988pt;}
.xd{left:717.279988pt;}
}




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