
    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_9367fadd8201e25196d9785c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_ede97ebe7b85a68f60b6c169.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_90f67acae96a0bdbf18820db.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_7b9b5a41d288967756afe041.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986816;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_da14666840fb64839c0ecf26.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_59e59ed6a5e7066d7a74a64e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.935059;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_af9a8f5e7dca3e665067089a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.975586;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_49b8a23f244cb8dba276fbd2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.677734;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_217bf574852ef0ae35a13e55.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734863;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_b14369e7b4ebb22560d37526.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_bab5753981a01daa5f7210d9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969000;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_310550dd9e066e2275f1d66c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.986816;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_95a192ee7cb53d64e03f4a4a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.986816;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_9e8258ae18ac987f6af60621.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_f847fbcbd5cd68fe50e148c7.woff2')format("woff");}.fff{font-family:fff;line-height:0.986816;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_bbb209212ab7bc2363baf16a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.975098;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;}
.v1{vertical-align:19.980000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-18.216000px;}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-13.248000px;}
.ws1{word-spacing:-9.584520px;}
.ws2{word-spacing:0.000000px;}
._31{margin-left:-16.044600px;}
._1f{margin-left:-15.006000px;}
._2a{margin-left:-13.884000px;}
._11{margin-left:-11.121600px;}
._12{margin-left:-9.346800px;}
._13{margin-left:-8.292600px;}
._f{margin-left:-6.958800px;}
._9{margin-left:-5.874000px;}
._a{margin-left:-4.560600px;}
._3{margin-left:-3.366000px;}
._c{margin-left:-2.196600px;}
._2{margin-left:-1.181400px;}
._6{width:1.075800px;}
._0{width:2.085600px;}
._b{width:3.973200px;}
._8{width:5.101800px;}
._10{width:6.763800px;}
._17{width:7.789800px;}
._14{width:8.797200px;}
._1{width:10.183800px;}
._7{width:11.266200px;}
._4{width:13.193400px;}
._5{width:14.447400px;}
._e{width:15.646800px;}
._15{width:17.446200px;}
._16{width:18.698400px;}
._1d{width:19.792800px;}
._1c{width:20.808600px;}
._1b{width:22.219800px;}
._25{width:23.220000px;}
._22{width:24.257400px;}
._23{width:25.260600px;}
._20{width:26.844000px;}
._21{width:28.230000px;}
._1a{width:29.347200px;}
._29{width:30.845400px;}
._28{width:32.250000px;}
._2e{width:33.550200px;}
._19{width:35.208000px;}
._24{width:36.798000px;}
._26{width:37.908000px;}
._27{width:39.174600px;}
._2f{width:40.604400px;}
._32{width:42.576000px;}
._1e{width:45.108000px;}
._18{width:46.656000px;}
._30{width:50.706000px;}
._33{width:52.062000px;}
._d{width:58.217700px;}
._35{width:61.320000px;}
._2c{width:66.791400px;}
._2b{width:68.730600px;}
._34{width:69.856200px;}
._2d{width:78.660000px;}
.fc3{color:rgb(80,150,150);}
.fc2{color:rgb(178,180,179);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:34.980000px;}
.fs3{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs7{font-size:69.000000px;}
.fs9{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:59.083800px;}
.y20{bottom:60.768300px;}
.y19{bottom:70.496700px;}
.y18{bottom:84.896700px;}
.ya0{bottom:97.398900px;}
.y17{bottom:99.296700px;}
.y6d{bottom:100.524450px;}
.ydd{bottom:101.412900px;}
.y16{bottom:113.696700px;}
.y102{bottom:113.922900px;}
.y53{bottom:113.998950px;}
.yc9{bottom:117.468900px;}
.y9f{bottom:118.404900px;}
.y6c{bottom:121.530450px;}
.y165{bottom:122.321100px;}
.ydc{bottom:122.418900px;}
.y101{bottom:134.928900px;}
.y52{bottom:135.004950px;}
.y19a{bottom:136.166100px;}
.yc8{bottom:138.474900px;}
.y9e{bottom:139.410900px;}
.y1d2{bottom:139.689900px;}
.y164{bottom:140.321100px;}
.y6b{bottom:142.536450px;}
.ydb{bottom:143.424900px;}
.y208{bottom:153.534900px;}
.y199{bottom:154.166100px;}
.y12f{bottom:154.761450px;}
.y100{bottom:155.934900px;}
.y51{bottom:156.010950px;}
.y1d1{bottom:157.689900px;}
.yc7{bottom:159.480900px;}
.y9d{bottom:160.416900px;}
.y163{bottom:162.566100px;}
.y6a{bottom:163.542450px;}
.yda{bottom:164.430900px;}
.y207{bottom:171.534900px;}
.y198{bottom:172.166100px;}
.y1d0{bottom:175.689900px;}
.y12e{bottom:176.361450px;}
.yff{bottom:176.940900px;}
.y50{bottom:177.016950px;}
.yc6{bottom:180.486900px;}
.y162{bottom:180.566100px;}
.y9c{bottom:181.422900px;}
.y69{bottom:184.548450px;}
.yd9{bottom:185.436900px;}
.y206{bottom:189.534900px;}
.y197{bottom:190.166100px;}
.y22c{bottom:193.689900px;}
.y1cf{bottom:197.934900px;}
.yfe{bottom:197.946900px;}
.y12d{bottom:197.961450px;}
.y4f{bottom:198.022950px;}
.y161{bottom:198.566100px;}
.yc5{bottom:201.492900px;}
.y9b{bottom:202.428900px;}
.y68{bottom:205.554450px;}
.yd8{bottom:206.442900px;}
.y205{bottom:211.779900px;}
.y196{bottom:212.411100px;}
.y1ce{bottom:215.934900px;}
.y160{bottom:216.566100px;}
.yfd{bottom:218.952900px;}
.y4e{bottom:219.028950px;}
.y12c{bottom:219.561450px;}
.yc4{bottom:222.498900px;}
.y9a{bottom:223.434900px;}
.y67{bottom:226.560450px;}
.yd7{bottom:227.448900px;}
.y204{bottom:229.779900px;}
.y195{bottom:230.411100px;}
.y1cd{bottom:233.934900px;}
.y15f{bottom:234.566100px;}
.yfc{bottom:239.958900px;}
.y4d{bottom:240.034950px;}
.y12b{bottom:241.161450px;}
.yc3{bottom:243.504900px;}
.y99{bottom:244.440900px;}
.y66{bottom:247.566450px;}
.y203{bottom:247.779900px;}
.y194{bottom:248.411100px;}
.yd6{bottom:248.454900px;}
.y1cc{bottom:251.934900px;}
.y15e{bottom:256.811100px;}
.yfb{bottom:260.964900px;}
.y4c{bottom:261.040950px;}
.y12a{bottom:262.761450px;}
.yc2{bottom:264.510900px;}
.y98{bottom:265.446900px;}
.y193{bottom:266.411100px;}
.y65{bottom:268.572450px;}
.yd5{bottom:269.460900px;}
.y22b{bottom:269.934900px;}
.y202{bottom:270.024900px;}
.y1cb{bottom:274.179900px;}
.y15d{bottom:274.811100px;}
.yfa{bottom:281.970900px;}
.y4b{bottom:282.046950px;}
.yc1{bottom:285.516900px;}
.y97{bottom:286.452900px;}
.y22a{bottom:287.934900px;}
.y201{bottom:288.024900px;}
.y192{bottom:288.656100px;}
.y64{bottom:289.578450px;}
.yd4{bottom:290.466900px;}
.y1ca{bottom:292.179900px;}
.y15c{bottom:292.811100px;}
.y4a{bottom:303.052950px;}
.y229{bottom:305.934900px;}
.y200{bottom:306.024900px;}
.yc0{bottom:306.522900px;}
.y191{bottom:306.656100px;}
.y96{bottom:307.458900px;}
.y129{bottom:309.867450px;}
.y1c9{bottom:310.179900px;}
.y63{bottom:310.584450px;}
.y15b{bottom:310.811100px;}
.yd3{bottom:311.472900px;}
.y49{bottom:324.058950px;}
.y190{bottom:324.656100px;}
.y1c8{bottom:328.179900px;}
.y1ff{bottom:328.269900px;}
.y95{bottom:328.464900px;}
.y128{bottom:330.873450px;}
.y62{bottom:331.590450px;}
.yd2{bottom:332.478900px;}
.y15a{bottom:333.056100px;}
.ybf{bottom:336.024900px;}
.yf9{bottom:340.974900px;}
.y18f{bottom:342.656100px;}
.y48{bottom:345.064950px;}
.y228{bottom:346.179900px;}
.y1fe{bottom:346.269900px;}
.y94{bottom:349.470900px;}
.y1c7{bottom:350.424900px;}
.y159{bottom:351.056100px;}
.y127{bottom:351.879450px;}
.yd1{bottom:353.484900px;}
.y61{bottom:361.092450px;}
.yf8{bottom:361.980900px;}
.y227{bottom:364.179900px;}
.y1fd{bottom:364.269900px;}
.y18e{bottom:364.901100px;}
.ybe{bottom:365.526900px;}
.y47{bottom:366.070950px;}
.y1c6{bottom:368.424900px;}
.y158{bottom:369.056100px;}
.y93{bottom:370.476900px;}
.y126{bottom:372.885450px;}
.yd0{bottom:374.490900px;}
.y226{bottom:382.179900px;}
.y1fc{bottom:382.269900px;}
.y18d{bottom:382.901100px;}
.yf7{bottom:382.986900px;}
.y1c5{bottom:386.424900px;}
.ybd{bottom:386.532900px;}
.y157{bottom:387.056100px;}
.y46{bottom:387.076950px;}
.y92{bottom:391.482900px;}
.y125{bottom:393.891450px;}
.ycf{bottom:395.496900px;}
.y60{bottom:399.059700px;}
.y225{bottom:400.179900px;}
.y1fb{bottom:400.269900px;}
.y18c{bottom:400.901100px;}
.yf6{bottom:403.992900px;}
.y1c4{bottom:404.424900px;}
.ybc{bottom:407.538900px;}
.y45{bottom:408.082950px;}
.y156{bottom:409.301100px;}
.y91{bottom:412.488900px;}
.y124{bottom:414.897450px;}
.yce{bottom:416.502900px;}
.y224{bottom:418.179900px;}
.y1fa{bottom:418.269900px;}
.y18b{bottom:418.901100px;}
.y5f{bottom:420.064200px;}
.yf5{bottom:424.998900px;}
.y1c3{bottom:426.669900px;}
.y155{bottom:427.301100px;}
.ybb{bottom:428.544900px;}
.y44{bottom:429.088950px;}
.y90{bottom:433.494900px;}
.y123{bottom:435.903450px;}
.ycd{bottom:437.508900px;}
.y223{bottom:440.424900px;}
.y1f9{bottom:440.514900px;}
.y5e{bottom:441.068700px;}
.y18a{bottom:441.146100px;}
.y1c2{bottom:444.669900px;}
.y154{bottom:445.301100px;}
.yf4{bottom:446.004900px;}
.yba{bottom:449.550900px;}
.y43{bottom:450.094950px;}
.y8f{bottom:454.500900px;}
.y10{bottom:455.937900px;}
.y222{bottom:458.424900px;}
.y1f8{bottom:458.514900px;}
.y189{bottom:459.146100px;}
.y5d{bottom:462.073200px;}
.y1c1{bottom:462.669900px;}
.y153{bottom:463.301100px;}
.y122{bottom:465.407400px;}
.ycc{bottom:467.010900px;}
.y42{bottom:471.100950px;}
.y8e{bottom:475.506900px;}
.y221{bottom:476.424900px;}
.y1f7{bottom:476.514900px;}
.y188{bottom:477.146100px;}
.yb9{bottom:479.052900px;}
.y1c0{bottom:480.669900px;}
.y5c{bottom:483.077700px;}
.y152{bottom:485.546100px;}
.yf{bottom:487.815900px;}
.yf3{bottom:488.016900px;}
.y41{bottom:492.106950px;}
.y8d{bottom:496.512900px;}
.y1bf{bottom:498.669900px;}
.y1f6{bottom:498.759900px;}
.y187{bottom:499.391100px;}
.yb8{bottom:500.058900px;}
.y151{bottom:503.546100px;}
.y5b{bottom:504.082200px;}
.ye{bottom:507.318900px;}
.y121{bottom:507.780900px;}
.yf2{bottom:509.022900px;}
.y40{bottom:513.112950px;}
.y220{bottom:516.669900px;}
.y1f5{bottom:516.759900px;}
.y186{bottom:517.391100px;}
.y8c{bottom:517.518900px;}
.y1be{bottom:520.914900px;}
.yb7{bottom:521.064900px;}
.y150{bottom:521.546100px;}
.y5a{bottom:525.086700px;}
.yd{bottom:526.821900px;}
.y120{bottom:528.786900px;}
.yf1{bottom:530.028900px;}
.y3f{bottom:534.118950px;}
.y21f{bottom:534.669900px;}
.y1f4{bottom:534.759900px;}
.y8b{bottom:538.524900px;}
.y1bd{bottom:538.914900px;}
.y14f{bottom:539.546100px;}
.y185{bottom:539.636100px;}
.y59{bottom:546.091200px;}
.yc{bottom:546.324900px;}
.y11f{bottom:548.280900px;}
.yb6{bottom:550.566900px;}
.yf0{bottom:551.034900px;}
.y21e{bottom:552.669900px;}
.y3e{bottom:555.124950px;}
.y1bc{bottom:556.914900px;}
.y1f3{bottom:557.004900px;}
.y184{bottom:557.636100px;}
.y8a{bottom:559.530900px;}
.y14e{bottom:561.791100px;}
.yb{bottom:565.827900px;}
.y58{bottom:567.095700px;}
.y11e{bottom:567.774900px;}
.yb5{bottom:571.572900px;}
.yef{bottom:572.040900px;}
.y1bb{bottom:574.914900px;}
.y1f2{bottom:575.004900px;}
.y183{bottom:575.636100px;}
.y3d{bottom:576.130950px;}
.y14d{bottom:579.791100px;}
.y89{bottom:580.536900px;}
.ya{bottom:585.330900px;}
.y11d{bottom:587.268900px;}
.y57{bottom:588.100200px;}
.y21d{bottom:592.914900px;}
.y1f1{bottom:593.004900px;}
.yee{bottom:593.046900px;}
.y3c{bottom:597.136950px;}
.y1ba{bottom:597.159900px;}
.y14c{bottom:597.791100px;}
.y182{bottom:597.881100px;}
.yb4{bottom:601.074900px;}
.ycb{bottom:601.542900px;}
.y9{bottom:604.833900px;}
.y11c{bottom:606.762900px;}
.y88{bottom:610.038900px;}
.y21c{bottom:610.914900px;}
.yed{bottom:614.052900px;}
.y1b9{bottom:615.159900px;}
.y1f0{bottom:615.249900px;}
.y181{bottom:615.881100px;}
.y3b{bottom:618.142950px;}
.y14b{bottom:620.036100px;}
.yb3{bottom:622.080900px;}
.y8{bottom:624.336900px;}
.y11b{bottom:626.256900px;}
.y21b{bottom:628.914900px;}
.yca{bottom:631.044900px;}
.y1b8{bottom:633.159900px;}
.y1ef{bottom:633.249900px;}
.y180{bottom:633.881100px;}
.yec{bottom:635.058900px;}
.y14a{bottom:638.036100px;}
.y3a{bottom:639.148950px;}
.y87{bottom:639.540900px;}
.yb2{bottom:643.086900px;}
.y7{bottom:643.839900px;}
.y11a{bottom:645.750900px;}
.y21a{bottom:646.914900px;}
.y1b7{bottom:651.159900px;}
.y1ee{bottom:651.249900px;}
.y17f{bottom:651.881100px;}
.y149{bottom:656.036100px;}
.yeb{bottom:656.064900px;}
.y39{bottom:660.154950px;}
.y86{bottom:660.546900px;}
.y6{bottom:663.342900px;}
.y119{bottom:665.244900px;}
.y219{bottom:669.159900px;}
.y1ed{bottom:669.249900px;}
.yb1{bottom:672.588900px;}
.y1b6{bottom:673.404900px;}
.y148{bottom:674.036100px;}
.y17e{bottom:674.126100px;}
.yea{bottom:677.070900px;}
.y38{bottom:681.160950px;}
.y85{bottom:681.552900px;}
.y5{bottom:682.845900px;}
.y118{bottom:684.738900px;}
.y218{bottom:687.159900px;}
.y1b5{bottom:691.404900px;}
.y1ec{bottom:691.494900px;}
.y147{bottom:692.036100px;}
.y17d{bottom:692.126100px;}
.ye9{bottom:698.076900px;}
.yb0{bottom:702.090900px;}
.y37{bottom:702.166950px;}
.y4{bottom:702.348900px;}
.y84{bottom:702.558900px;}
.y117{bottom:704.232900px;}
.y1b4{bottom:709.404900px;}
.y1eb{bottom:709.494900px;}
.y146{bottom:714.281100px;}
.y17c{bottom:714.371100px;}
.ye8{bottom:719.082900px;}
.y3{bottom:721.851900px;}
.yaf{bottom:723.096900px;}
.y36{bottom:723.172950px;}
.y83{bottom:723.564900px;}
.y116{bottom:723.726900px;}
.y1b3{bottom:727.404900px;}
.y1ea{bottom:727.494900px;}
.y145{bottom:732.281100px;}
.y17b{bottom:732.371100px;}
.ye7{bottom:740.088900px;}
.y2{bottom:741.354900px;}
.yae{bottom:744.102900px;}
.y35{bottom:744.178950px;}
.y82{bottom:744.570900px;}
.y1b2{bottom:745.404900px;}
.y1e9{bottom:745.494900px;}
.y144{bottom:750.281100px;}
.y17a{bottom:750.371100px;}
.y115{bottom:751.734900px;}
.ye6{bottom:761.094900px;}
.y217{bottom:763.404900px;}
.y1e8{bottom:763.494900px;}
.y34{bottom:765.184950px;}
.y81{bottom:765.576900px;}
.y1b1{bottom:767.649900px;}
.y143{bottom:768.281100px;}
.y179{bottom:772.616100px;}
.y1{bottom:773.232900px;}
.yad{bottom:773.604900px;}
.y114{bottom:779.742900px;}
.ye5{bottom:782.100900px;}
.y1b0{bottom:785.649900px;}
.y1e7{bottom:785.739900px;}
.y33{bottom:786.190950px;}
.y142{bottom:786.281100px;}
.y80{bottom:786.582900px;}
.y178{bottom:790.616100px;}
.yac{bottom:794.610900px;}
.y113{bottom:799.236900px;}
.ye4{bottom:803.106900px;}
.y1af{bottom:803.649900px;}
.y1e6{bottom:803.739900px;}
.y32{bottom:807.196950px;}
.y7f{bottom:807.588900px;}
.y141{bottom:808.526100px;}
.y177{bottom:808.616100px;}
.yab{bottom:815.616900px;}
.y112{bottom:818.730900px;}
.y216{bottom:821.649900px;}
.y1e5{bottom:821.739900px;}
.ye3{bottom:824.112900px;}
.y1ae{bottom:825.894900px;}
.y140{bottom:826.526100px;}
.y176{bottom:826.616100px;}
.y14{bottom:827.719050px;}
.y31{bottom:828.202950px;}
.y7e{bottom:828.594900px;}
.y111{bottom:838.224900px;}
.y215{bottom:839.649900px;}
.y1e4{bottom:839.739900px;}
.y1ad{bottom:843.894900px;}
.y13{bottom:843.919050px;}
.y13f{bottom:844.526100px;}
.y175{bottom:844.616100px;}
.yaa{bottom:845.118900px;}
.y30{bottom:849.208950px;}
.y7d{bottom:849.600900px;}
.y110{bottom:857.718900px;}
.y1ac{bottom:861.894900px;}
.y1e3{bottom:861.984900px;}
.y13e{bottom:862.526100px;}
.y174{bottom:862.616100px;}
.y1d{bottom:866.307600px;}
.y2f{bottom:870.214950px;}
.y7c{bottom:870.606900px;}
.ya9{bottom:874.620900px;}
.y214{bottom:879.894900px;}
.y1e2{bottom:879.984900px;}
.y13d{bottom:880.526100px;}
.y1ab{bottom:884.139900px;}
.y173{bottom:884.861100px;}
.y10f{bottom:885.726900px;}
.y2e{bottom:891.220950px;}
.y7b{bottom:891.612900px;}
.ya8{bottom:895.626900px;}
.y213{bottom:897.894900px;}
.y1e1{bottom:897.984900px;}
.y1aa{bottom:902.139900px;}
.y13c{bottom:902.771100px;}
.y172{bottom:902.861100px;}
.ye2{bottom:904.122900px;}
.y10e{bottom:905.220900px;}
.y2d{bottom:912.226950px;}
.y7a{bottom:912.618900px;}
.y1e0{bottom:915.984900px;}
.y12{bottom:916.459950px;}
.ya7{bottom:916.632900px;}
.y1a9{bottom:920.139900px;}
.y13b{bottom:920.771100px;}
.y171{bottom:920.861100px;}
.y10d{bottom:924.714900px;}
.ye1{bottom:925.128900px;}
.y79{bottom:933.624900px;}
.ya6{bottom:937.638900px;}
.y1a8{bottom:938.139900px;}
.y1df{bottom:938.229900px;}
.y13a{bottom:938.771100px;}
.y170{bottom:938.861100px;}
.y2c{bottom:941.728950px;}
.y10c{bottom:944.208900px;}
.ye0{bottom:946.134900px;}
.y11{bottom:952.459950px;}
.y78{bottom:954.630900px;}
.y212{bottom:956.139900px;}
.y1de{bottom:956.229900px;}
.ya5{bottom:958.644900px;}
.y1a7{bottom:960.384900px;}
.y139{bottom:961.016100px;}
.y16f{bottom:961.106100px;}
.y10b{bottom:963.702900px;}
.ydf{bottom:967.140900px;}
.y2b{bottom:971.230950px;}
.y211{bottom:974.139900px;}
.y1dd{bottom:974.229900px;}
.y77{bottom:975.636900px;}
.y1a6{bottom:978.384900px;}
.y231{bottom:978.474900px;}
.y138{bottom:979.016100px;}
.y16e{bottom:979.106100px;}
.ya4{bottom:979.650900px;}
.yde{bottom:988.146900px;}
.y10a{bottom:991.710900px;}
.y210{bottom:992.139900px;}
.y1dc{bottom:992.229900px;}
.y2a{bottom:992.236950px;}
.y230{bottom:996.474900px;}
.y76{bottom:996.642900px;}
.y137{bottom:997.016100px;}
.y16d{bottom:997.106100px;}
.y1a5{bottom:1000.629900px;}
.ya3{bottom:1000.656900px;}
.y109{bottom:1011.204900px;}
.y29{bottom:1013.242950px;}
.y20f{bottom:1014.384900px;}
.y1db{bottom:1014.474900px;}
.y16c{bottom:1015.106100px;}
.y75{bottom:1017.648900px;}
.y15{bottom:1018.228350px;}
.y1a4{bottom:1018.629900px;}
.y136{bottom:1019.261100px;}
.ya2{bottom:1021.662900px;}
.y108{bottom:1030.698900px;}
.y20e{bottom:1032.384900px;}
.y1da{bottom:1032.474900px;}
.y16b{bottom:1033.106100px;}
.y28{bottom:1034.248950px;}
.y1a3{bottom:1036.629900px;}
.y22f{bottom:1036.719900px;}
.y135{bottom:1037.261100px;}
.y74{bottom:1038.654900px;}
.y107{bottom:1050.192900px;}
.y20d{bottom:1050.384900px;}
.y1d9{bottom:1050.474900px;}
.ya1{bottom:1051.164900px;}
.y1a2{bottom:1054.629900px;}
.y22e{bottom:1054.719900px;}
.y27{bottom:1055.254950px;}
.y134{bottom:1055.261100px;}
.y16a{bottom:1055.351100px;}
.y73{bottom:1059.660900px;}
.y106{bottom:1069.686900px;}
.y20c{bottom:1072.629900px;}
.y1d8{bottom:1072.719900px;}
.y133{bottom:1073.261100px;}
.y169{bottom:1073.351100px;}
.y26{bottom:1076.260950px;}
.y1a1{bottom:1076.874900px;}
.y72{bottom:1080.666900px;}
.y1c{bottom:1082.645550px;}
.y105{bottom:1089.180900px;}
.y20b{bottom:1090.629900px;}
.y1d7{bottom:1090.719900px;}
.y168{bottom:1091.351100px;}
.y1a0{bottom:1094.874900px;}
.y132{bottom:1095.506100px;}
.y25{bottom:1097.266950px;}
.y71{bottom:1101.672900px;}
.y1b{bottom:1104.890550px;}
.y20a{bottom:1108.629900px;}
.y1d6{bottom:1108.719900px;}
.y167{bottom:1109.351100px;}
.y19f{bottom:1112.874900px;}
.y22d{bottom:1112.964900px;}
.y131{bottom:1113.506100px;}
.y104{bottom:1117.188900px;}
.y24{bottom:1118.272950px;}
.y56{bottom:1119.159150px;}
.y70{bottom:1122.678900px;}
.y209{bottom:1126.629900px;}
.y19e{bottom:1130.874900px;}
.y1d5{bottom:1130.964900px;}
.y130{bottom:1131.506100px;}
.y166{bottom:1131.596100px;}
.y1a{bottom:1134.975750px;}
.y103{bottom:1136.682900px;}
.y23{bottom:1139.278950px;}
.y55{bottom:1140.165150px;}
.y6f{bottom:1143.684900px;}
.y19d{bottom:1148.874900px;}
.y1d4{bottom:1148.964900px;}
.y54{bottom:1161.171150px;}
.y6e{bottom:1164.690900px;}
.y19b{bottom:1165.782750px;}
.y19c{bottom:1166.874900px;}
.y1d3{bottom:1166.964900px;}
.y22{bottom:1168.782900px;}
.y1e{bottom:1200.501600px;}
.y21{bottom:1200.878700px;}
.h6{height:36.093750px;}
.hc{height:38.448000px;}
.h5{height:40.605469px;}
.hb{height:41.330566px;}
.h8{height:44.414062px;}
.he{height:45.117188px;}
.h10{height:45.826172px;}
.h9{height:45.873398px;}
.ha{height:45.988770px;}
.hd{height:46.992000px;}
.h3{height:49.564453px;}
.h2{height:49.628906px;}
.h11{height:53.296875px;}
.hf{height:54.140625px;}
.h7{height:78.310547px;}
.h4{height:86.520000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:60.779550px;}
.x5{left:62.279550px;}
.x2{left:63.779550px;}
.x3{left:65.279550px;}
.x6{left:78.904950px;}
.xb{left:89.294550px;}
.xa{left:90.779550px;}
.x1{left:121.866150px;}
.xd{left:455.459550px;}
.xc{left:480.974550px;}
.x8{left:714.932700px;}
.x9{left:811.499550px;}
.x7{left:819.348150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-11.776000pt;}
.ws1{word-spacing:-8.519573pt;}
.ws2{word-spacing:0.000000pt;}
._31{margin-left:-14.261867pt;}
._1f{margin-left:-13.338667pt;}
._2a{margin-left:-12.341333pt;}
._11{margin-left:-9.885867pt;}
._12{margin-left:-8.308267pt;}
._13{margin-left:-7.371200pt;}
._f{margin-left:-6.185600pt;}
._9{margin-left:-5.221333pt;}
._a{margin-left:-4.053867pt;}
._3{margin-left:-2.992000pt;}
._c{margin-left:-1.952533pt;}
._2{margin-left:-1.050133pt;}
._6{width:0.956267pt;}
._0{width:1.853867pt;}
._b{width:3.531733pt;}
._8{width:4.534933pt;}
._10{width:6.012267pt;}
._17{width:6.924267pt;}
._14{width:7.819733pt;}
._1{width:9.052267pt;}
._7{width:10.014400pt;}
._4{width:11.727467pt;}
._5{width:12.842133pt;}
._e{width:13.908267pt;}
._15{width:15.507733pt;}
._16{width:16.620800pt;}
._1d{width:17.593600pt;}
._1c{width:18.496533pt;}
._1b{width:19.750933pt;}
._25{width:20.640000pt;}
._22{width:21.562133pt;}
._23{width:22.453867pt;}
._20{width:23.861333pt;}
._21{width:25.093333pt;}
._1a{width:26.086400pt;}
._29{width:27.418133pt;}
._28{width:28.666667pt;}
._2e{width:29.822400pt;}
._19{width:31.296000pt;}
._24{width:32.709333pt;}
._26{width:33.696000pt;}
._27{width:34.821867pt;}
._2f{width:36.092800pt;}
._32{width:37.845333pt;}
._1e{width:40.096000pt;}
._18{width:41.472000pt;}
._30{width:45.072000pt;}
._33{width:46.277333pt;}
._d{width:51.749067pt;}
._35{width:54.506667pt;}
._2c{width:59.370133pt;}
._2b{width:61.093867pt;}
._34{width:62.094400pt;}
._2d{width:69.920000pt;}
.fs6{font-size:31.093333pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs7{font-size:61.333333pt;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:52.518933pt;}
.y20{bottom:54.016267pt;}
.y19{bottom:62.663733pt;}
.y18{bottom:75.463733pt;}
.ya0{bottom:86.576800pt;}
.y17{bottom:88.263733pt;}
.y6d{bottom:89.355067pt;}
.ydd{bottom:90.144800pt;}
.y16{bottom:101.063733pt;}
.y102{bottom:101.264800pt;}
.y53{bottom:101.332400pt;}
.yc9{bottom:104.416800pt;}
.y9f{bottom:105.248800pt;}
.y6c{bottom:108.027067pt;}
.y165{bottom:108.729867pt;}
.ydc{bottom:108.816800pt;}
.y101{bottom:119.936800pt;}
.y52{bottom:120.004400pt;}
.y19a{bottom:121.036533pt;}
.yc8{bottom:123.088800pt;}
.y9e{bottom:123.920800pt;}
.y1d2{bottom:124.168800pt;}
.y164{bottom:124.729867pt;}
.y6b{bottom:126.699067pt;}
.ydb{bottom:127.488800pt;}
.y208{bottom:136.475467pt;}
.y199{bottom:137.036533pt;}
.y12f{bottom:137.565733pt;}
.y100{bottom:138.608800pt;}
.y51{bottom:138.676400pt;}
.y1d1{bottom:140.168800pt;}
.yc7{bottom:141.760800pt;}
.y9d{bottom:142.592800pt;}
.y163{bottom:144.503200pt;}
.y6a{bottom:145.371067pt;}
.yda{bottom:146.160800pt;}
.y207{bottom:152.475467pt;}
.y198{bottom:153.036533pt;}
.y1d0{bottom:156.168800pt;}
.y12e{bottom:156.765733pt;}
.yff{bottom:157.280800pt;}
.y50{bottom:157.348400pt;}
.yc6{bottom:160.432800pt;}
.y162{bottom:160.503200pt;}
.y9c{bottom:161.264800pt;}
.y69{bottom:164.043067pt;}
.yd9{bottom:164.832800pt;}
.y206{bottom:168.475467pt;}
.y197{bottom:169.036533pt;}
.y22c{bottom:172.168800pt;}
.y1cf{bottom:175.942133pt;}
.yfe{bottom:175.952800pt;}
.y12d{bottom:175.965733pt;}
.y4f{bottom:176.020400pt;}
.y161{bottom:176.503200pt;}
.yc5{bottom:179.104800pt;}
.y9b{bottom:179.936800pt;}
.y68{bottom:182.715067pt;}
.yd8{bottom:183.504800pt;}
.y205{bottom:188.248800pt;}
.y196{bottom:188.809867pt;}
.y1ce{bottom:191.942133pt;}
.y160{bottom:192.503200pt;}
.yfd{bottom:194.624800pt;}
.y4e{bottom:194.692400pt;}
.y12c{bottom:195.165733pt;}
.yc4{bottom:197.776800pt;}
.y9a{bottom:198.608800pt;}
.y67{bottom:201.387067pt;}
.yd7{bottom:202.176800pt;}
.y204{bottom:204.248800pt;}
.y195{bottom:204.809867pt;}
.y1cd{bottom:207.942133pt;}
.y15f{bottom:208.503200pt;}
.yfc{bottom:213.296800pt;}
.y4d{bottom:213.364400pt;}
.y12b{bottom:214.365733pt;}
.yc3{bottom:216.448800pt;}
.y99{bottom:217.280800pt;}
.y66{bottom:220.059067pt;}
.y203{bottom:220.248800pt;}
.y194{bottom:220.809867pt;}
.yd6{bottom:220.848800pt;}
.y1cc{bottom:223.942133pt;}
.y15e{bottom:228.276533pt;}
.yfb{bottom:231.968800pt;}
.y4c{bottom:232.036400pt;}
.y12a{bottom:233.565733pt;}
.yc2{bottom:235.120800pt;}
.y98{bottom:235.952800pt;}
.y193{bottom:236.809867pt;}
.y65{bottom:238.731067pt;}
.yd5{bottom:239.520800pt;}
.y22b{bottom:239.942133pt;}
.y202{bottom:240.022133pt;}
.y1cb{bottom:243.715467pt;}
.y15d{bottom:244.276533pt;}
.yfa{bottom:250.640800pt;}
.y4b{bottom:250.708400pt;}
.yc1{bottom:253.792800pt;}
.y97{bottom:254.624800pt;}
.y22a{bottom:255.942133pt;}
.y201{bottom:256.022133pt;}
.y192{bottom:256.583200pt;}
.y64{bottom:257.403067pt;}
.yd4{bottom:258.192800pt;}
.y1ca{bottom:259.715467pt;}
.y15c{bottom:260.276533pt;}
.y4a{bottom:269.380400pt;}
.y229{bottom:271.942133pt;}
.y200{bottom:272.022133pt;}
.yc0{bottom:272.464800pt;}
.y191{bottom:272.583200pt;}
.y96{bottom:273.296800pt;}
.y129{bottom:275.437733pt;}
.y1c9{bottom:275.715467pt;}
.y63{bottom:276.075067pt;}
.y15b{bottom:276.276533pt;}
.yd3{bottom:276.864800pt;}
.y49{bottom:288.052400pt;}
.y190{bottom:288.583200pt;}
.y1c8{bottom:291.715467pt;}
.y1ff{bottom:291.795467pt;}
.y95{bottom:291.968800pt;}
.y128{bottom:294.109733pt;}
.y62{bottom:294.747067pt;}
.yd2{bottom:295.536800pt;}
.y15a{bottom:296.049867pt;}
.ybf{bottom:298.688800pt;}
.yf9{bottom:303.088800pt;}
.y18f{bottom:304.583200pt;}
.y48{bottom:306.724400pt;}
.y228{bottom:307.715467pt;}
.y1fe{bottom:307.795467pt;}
.y94{bottom:310.640800pt;}
.y1c7{bottom:311.488800pt;}
.y159{bottom:312.049867pt;}
.y127{bottom:312.781733pt;}
.yd1{bottom:314.208800pt;}
.y61{bottom:320.971067pt;}
.yf8{bottom:321.760800pt;}
.y227{bottom:323.715467pt;}
.y1fd{bottom:323.795467pt;}
.y18e{bottom:324.356533pt;}
.ybe{bottom:324.912800pt;}
.y47{bottom:325.396400pt;}
.y1c6{bottom:327.488800pt;}
.y158{bottom:328.049867pt;}
.y93{bottom:329.312800pt;}
.y126{bottom:331.453733pt;}
.yd0{bottom:332.880800pt;}
.y226{bottom:339.715467pt;}
.y1fc{bottom:339.795467pt;}
.y18d{bottom:340.356533pt;}
.yf7{bottom:340.432800pt;}
.y1c5{bottom:343.488800pt;}
.ybd{bottom:343.584800pt;}
.y157{bottom:344.049867pt;}
.y46{bottom:344.068400pt;}
.y92{bottom:347.984800pt;}
.y125{bottom:350.125733pt;}
.ycf{bottom:351.552800pt;}
.y60{bottom:354.719733pt;}
.y225{bottom:355.715467pt;}
.y1fb{bottom:355.795467pt;}
.y18c{bottom:356.356533pt;}
.yf6{bottom:359.104800pt;}
.y1c4{bottom:359.488800pt;}
.ybc{bottom:362.256800pt;}
.y45{bottom:362.740400pt;}
.y156{bottom:363.823200pt;}
.y91{bottom:366.656800pt;}
.y124{bottom:368.797733pt;}
.yce{bottom:370.224800pt;}
.y224{bottom:371.715467pt;}
.y1fa{bottom:371.795467pt;}
.y18b{bottom:372.356533pt;}
.y5f{bottom:373.390400pt;}
.yf5{bottom:377.776800pt;}
.y1c3{bottom:379.262133pt;}
.y155{bottom:379.823200pt;}
.ybb{bottom:380.928800pt;}
.y44{bottom:381.412400pt;}
.y90{bottom:385.328800pt;}
.y123{bottom:387.469733pt;}
.ycd{bottom:388.896800pt;}
.y223{bottom:391.488800pt;}
.y1f9{bottom:391.568800pt;}
.y5e{bottom:392.061067pt;}
.y18a{bottom:392.129867pt;}
.y1c2{bottom:395.262133pt;}
.y154{bottom:395.823200pt;}
.yf4{bottom:396.448800pt;}
.yba{bottom:399.600800pt;}
.y43{bottom:400.084400pt;}
.y8f{bottom:404.000800pt;}
.y10{bottom:405.278133pt;}
.y222{bottom:407.488800pt;}
.y1f8{bottom:407.568800pt;}
.y189{bottom:408.129867pt;}
.y5d{bottom:410.731733pt;}
.y1c1{bottom:411.262133pt;}
.y153{bottom:411.823200pt;}
.y122{bottom:413.695467pt;}
.ycc{bottom:415.120800pt;}
.y42{bottom:418.756400pt;}
.y8e{bottom:422.672800pt;}
.y221{bottom:423.488800pt;}
.y1f7{bottom:423.568800pt;}
.y188{bottom:424.129867pt;}
.yb9{bottom:425.824800pt;}
.y1c0{bottom:427.262133pt;}
.y5c{bottom:429.402400pt;}
.y152{bottom:431.596533pt;}
.yf{bottom:433.614133pt;}
.yf3{bottom:433.792800pt;}
.y41{bottom:437.428400pt;}
.y8d{bottom:441.344800pt;}
.y1bf{bottom:443.262133pt;}
.y1f6{bottom:443.342133pt;}
.y187{bottom:443.903200pt;}
.yb8{bottom:444.496800pt;}
.y151{bottom:447.596533pt;}
.y5b{bottom:448.073067pt;}
.ye{bottom:450.950133pt;}
.y121{bottom:451.360800pt;}
.yf2{bottom:452.464800pt;}
.y40{bottom:456.100400pt;}
.y220{bottom:459.262133pt;}
.y1f5{bottom:459.342133pt;}
.y186{bottom:459.903200pt;}
.y8c{bottom:460.016800pt;}
.y1be{bottom:463.035467pt;}
.yb7{bottom:463.168800pt;}
.y150{bottom:463.596533pt;}
.y5a{bottom:466.743733pt;}
.yd{bottom:468.286133pt;}
.y120{bottom:470.032800pt;}
.yf1{bottom:471.136800pt;}
.y3f{bottom:474.772400pt;}
.y21f{bottom:475.262133pt;}
.y1f4{bottom:475.342133pt;}
.y8b{bottom:478.688800pt;}
.y1bd{bottom:479.035467pt;}
.y14f{bottom:479.596533pt;}
.y185{bottom:479.676533pt;}
.y59{bottom:485.414400pt;}
.yc{bottom:485.622133pt;}
.y11f{bottom:487.360800pt;}
.yb6{bottom:489.392800pt;}
.yf0{bottom:489.808800pt;}
.y21e{bottom:491.262133pt;}
.y3e{bottom:493.444400pt;}
.y1bc{bottom:495.035467pt;}
.y1f3{bottom:495.115467pt;}
.y184{bottom:495.676533pt;}
.y8a{bottom:497.360800pt;}
.y14e{bottom:499.369867pt;}
.yb{bottom:502.958133pt;}
.y58{bottom:504.085067pt;}
.y11e{bottom:504.688800pt;}
.yb5{bottom:508.064800pt;}
.yef{bottom:508.480800pt;}
.y1bb{bottom:511.035467pt;}
.y1f2{bottom:511.115467pt;}
.y183{bottom:511.676533pt;}
.y3d{bottom:512.116400pt;}
.y14d{bottom:515.369867pt;}
.y89{bottom:516.032800pt;}
.ya{bottom:520.294133pt;}
.y11d{bottom:522.016800pt;}
.y57{bottom:522.755733pt;}
.y21d{bottom:527.035467pt;}
.y1f1{bottom:527.115467pt;}
.yee{bottom:527.152800pt;}
.y3c{bottom:530.788400pt;}
.y1ba{bottom:530.808800pt;}
.y14c{bottom:531.369867pt;}
.y182{bottom:531.449867pt;}
.yb4{bottom:534.288800pt;}
.ycb{bottom:534.704800pt;}
.y9{bottom:537.630133pt;}
.y11c{bottom:539.344800pt;}
.y88{bottom:542.256800pt;}
.y21c{bottom:543.035467pt;}
.yed{bottom:545.824800pt;}
.y1b9{bottom:546.808800pt;}
.y1f0{bottom:546.888800pt;}
.y181{bottom:547.449867pt;}
.y3b{bottom:549.460400pt;}
.y14b{bottom:551.143200pt;}
.yb3{bottom:552.960800pt;}
.y8{bottom:554.966133pt;}
.y11b{bottom:556.672800pt;}
.y21b{bottom:559.035467pt;}
.yca{bottom:560.928800pt;}
.y1b8{bottom:562.808800pt;}
.y1ef{bottom:562.888800pt;}
.y180{bottom:563.449867pt;}
.yec{bottom:564.496800pt;}
.y14a{bottom:567.143200pt;}
.y3a{bottom:568.132400pt;}
.y87{bottom:568.480800pt;}
.yb2{bottom:571.632800pt;}
.y7{bottom:572.302133pt;}
.y11a{bottom:574.000800pt;}
.y21a{bottom:575.035467pt;}
.y1b7{bottom:578.808800pt;}
.y1ee{bottom:578.888800pt;}
.y17f{bottom:579.449867pt;}
.y149{bottom:583.143200pt;}
.yeb{bottom:583.168800pt;}
.y39{bottom:586.804400pt;}
.y86{bottom:587.152800pt;}
.y6{bottom:589.638133pt;}
.y119{bottom:591.328800pt;}
.y219{bottom:594.808800pt;}
.y1ed{bottom:594.888800pt;}
.yb1{bottom:597.856800pt;}
.y1b6{bottom:598.582133pt;}
.y148{bottom:599.143200pt;}
.y17e{bottom:599.223200pt;}
.yea{bottom:601.840800pt;}
.y38{bottom:605.476400pt;}
.y85{bottom:605.824800pt;}
.y5{bottom:606.974133pt;}
.y118{bottom:608.656800pt;}
.y218{bottom:610.808800pt;}
.y1b5{bottom:614.582133pt;}
.y1ec{bottom:614.662133pt;}
.y147{bottom:615.143200pt;}
.y17d{bottom:615.223200pt;}
.ye9{bottom:620.512800pt;}
.yb0{bottom:624.080800pt;}
.y37{bottom:624.148400pt;}
.y4{bottom:624.310133pt;}
.y84{bottom:624.496800pt;}
.y117{bottom:625.984800pt;}
.y1b4{bottom:630.582133pt;}
.y1eb{bottom:630.662133pt;}
.y146{bottom:634.916533pt;}
.y17c{bottom:634.996533pt;}
.ye8{bottom:639.184800pt;}
.y3{bottom:641.646133pt;}
.yaf{bottom:642.752800pt;}
.y36{bottom:642.820400pt;}
.y83{bottom:643.168800pt;}
.y116{bottom:643.312800pt;}
.y1b3{bottom:646.582133pt;}
.y1ea{bottom:646.662133pt;}
.y145{bottom:650.916533pt;}
.y17b{bottom:650.996533pt;}
.ye7{bottom:657.856800pt;}
.y2{bottom:658.982133pt;}
.yae{bottom:661.424800pt;}
.y35{bottom:661.492400pt;}
.y82{bottom:661.840800pt;}
.y1b2{bottom:662.582133pt;}
.y1e9{bottom:662.662133pt;}
.y144{bottom:666.916533pt;}
.y17a{bottom:666.996533pt;}
.y115{bottom:668.208800pt;}
.ye6{bottom:676.528800pt;}
.y217{bottom:678.582133pt;}
.y1e8{bottom:678.662133pt;}
.y34{bottom:680.164400pt;}
.y81{bottom:680.512800pt;}
.y1b1{bottom:682.355467pt;}
.y143{bottom:682.916533pt;}
.y179{bottom:686.769867pt;}
.y1{bottom:687.318133pt;}
.yad{bottom:687.648800pt;}
.y114{bottom:693.104800pt;}
.ye5{bottom:695.200800pt;}
.y1b0{bottom:698.355467pt;}
.y1e7{bottom:698.435467pt;}
.y33{bottom:698.836400pt;}
.y142{bottom:698.916533pt;}
.y80{bottom:699.184800pt;}
.y178{bottom:702.769867pt;}
.yac{bottom:706.320800pt;}
.y113{bottom:710.432800pt;}
.ye4{bottom:713.872800pt;}
.y1af{bottom:714.355467pt;}
.y1e6{bottom:714.435467pt;}
.y32{bottom:717.508400pt;}
.y7f{bottom:717.856800pt;}
.y141{bottom:718.689867pt;}
.y177{bottom:718.769867pt;}
.yab{bottom:724.992800pt;}
.y112{bottom:727.760800pt;}
.y216{bottom:730.355467pt;}
.y1e5{bottom:730.435467pt;}
.ye3{bottom:732.544800pt;}
.y1ae{bottom:734.128800pt;}
.y140{bottom:734.689867pt;}
.y176{bottom:734.769867pt;}
.y14{bottom:735.750267pt;}
.y31{bottom:736.180400pt;}
.y7e{bottom:736.528800pt;}
.y111{bottom:745.088800pt;}
.y215{bottom:746.355467pt;}
.y1e4{bottom:746.435467pt;}
.y1ad{bottom:750.128800pt;}
.y13{bottom:750.150267pt;}
.y13f{bottom:750.689867pt;}
.y175{bottom:750.769867pt;}
.yaa{bottom:751.216800pt;}
.y30{bottom:754.852400pt;}
.y7d{bottom:755.200800pt;}
.y110{bottom:762.416800pt;}
.y1ac{bottom:766.128800pt;}
.y1e3{bottom:766.208800pt;}
.y13e{bottom:766.689867pt;}
.y174{bottom:766.769867pt;}
.y1d{bottom:770.051200pt;}
.y2f{bottom:773.524400pt;}
.y7c{bottom:773.872800pt;}
.ya9{bottom:777.440800pt;}
.y214{bottom:782.128800pt;}
.y1e2{bottom:782.208800pt;}
.y13d{bottom:782.689867pt;}
.y1ab{bottom:785.902133pt;}
.y173{bottom:786.543200pt;}
.y10f{bottom:787.312800pt;}
.y2e{bottom:792.196400pt;}
.y7b{bottom:792.544800pt;}
.ya8{bottom:796.112800pt;}
.y213{bottom:798.128800pt;}
.y1e1{bottom:798.208800pt;}
.y1aa{bottom:801.902133pt;}
.y13c{bottom:802.463200pt;}
.y172{bottom:802.543200pt;}
.ye2{bottom:803.664800pt;}
.y10e{bottom:804.640800pt;}
.y2d{bottom:810.868400pt;}
.y7a{bottom:811.216800pt;}
.y1e0{bottom:814.208800pt;}
.y12{bottom:814.631067pt;}
.ya7{bottom:814.784800pt;}
.y1a9{bottom:817.902133pt;}
.y13b{bottom:818.463200pt;}
.y171{bottom:818.543200pt;}
.y10d{bottom:821.968800pt;}
.ye1{bottom:822.336800pt;}
.y79{bottom:829.888800pt;}
.ya6{bottom:833.456800pt;}
.y1a8{bottom:833.902133pt;}
.y1df{bottom:833.982133pt;}
.y13a{bottom:834.463200pt;}
.y170{bottom:834.543200pt;}
.y2c{bottom:837.092400pt;}
.y10c{bottom:839.296800pt;}
.ye0{bottom:841.008800pt;}
.y11{bottom:846.631067pt;}
.y78{bottom:848.560800pt;}
.y212{bottom:849.902133pt;}
.y1de{bottom:849.982133pt;}
.ya5{bottom:852.128800pt;}
.y1a7{bottom:853.675467pt;}
.y139{bottom:854.236533pt;}
.y16f{bottom:854.316533pt;}
.y10b{bottom:856.624800pt;}
.ydf{bottom:859.680800pt;}
.y2b{bottom:863.316400pt;}
.y211{bottom:865.902133pt;}
.y1dd{bottom:865.982133pt;}
.y77{bottom:867.232800pt;}
.y1a6{bottom:869.675467pt;}
.y231{bottom:869.755467pt;}
.y138{bottom:870.236533pt;}
.y16e{bottom:870.316533pt;}
.ya4{bottom:870.800800pt;}
.yde{bottom:878.352800pt;}
.y10a{bottom:881.520800pt;}
.y210{bottom:881.902133pt;}
.y1dc{bottom:881.982133pt;}
.y2a{bottom:881.988400pt;}
.y230{bottom:885.755467pt;}
.y76{bottom:885.904800pt;}
.y137{bottom:886.236533pt;}
.y16d{bottom:886.316533pt;}
.y1a5{bottom:889.448800pt;}
.ya3{bottom:889.472800pt;}
.y109{bottom:898.848800pt;}
.y29{bottom:900.660400pt;}
.y20f{bottom:901.675467pt;}
.y1db{bottom:901.755467pt;}
.y16c{bottom:902.316533pt;}
.y75{bottom:904.576800pt;}
.y15{bottom:905.091867pt;}
.y1a4{bottom:905.448800pt;}
.y136{bottom:906.009867pt;}
.ya2{bottom:908.144800pt;}
.y108{bottom:916.176800pt;}
.y20e{bottom:917.675467pt;}
.y1da{bottom:917.755467pt;}
.y16b{bottom:918.316533pt;}
.y28{bottom:919.332400pt;}
.y1a3{bottom:921.448800pt;}
.y22f{bottom:921.528800pt;}
.y135{bottom:922.009867pt;}
.y74{bottom:923.248800pt;}
.y107{bottom:933.504800pt;}
.y20d{bottom:933.675467pt;}
.y1d9{bottom:933.755467pt;}
.ya1{bottom:934.368800pt;}
.y1a2{bottom:937.448800pt;}
.y22e{bottom:937.528800pt;}
.y27{bottom:938.004400pt;}
.y134{bottom:938.009867pt;}
.y16a{bottom:938.089867pt;}
.y73{bottom:941.920800pt;}
.y106{bottom:950.832800pt;}
.y20c{bottom:953.448800pt;}
.y1d8{bottom:953.528800pt;}
.y133{bottom:954.009867pt;}
.y169{bottom:954.089867pt;}
.y26{bottom:956.676400pt;}
.y1a1{bottom:957.222133pt;}
.y72{bottom:960.592800pt;}
.y1c{bottom:962.351600pt;}
.y105{bottom:968.160800pt;}
.y20b{bottom:969.448800pt;}
.y1d7{bottom:969.528800pt;}
.y168{bottom:970.089867pt;}
.y1a0{bottom:973.222133pt;}
.y132{bottom:973.783200pt;}
.y25{bottom:975.348400pt;}
.y71{bottom:979.264800pt;}
.y1b{bottom:982.124933pt;}
.y20a{bottom:985.448800pt;}
.y1d6{bottom:985.528800pt;}
.y167{bottom:986.089867pt;}
.y19f{bottom:989.222133pt;}
.y22d{bottom:989.302133pt;}
.y131{bottom:989.783200pt;}
.y104{bottom:993.056800pt;}
.y24{bottom:994.020400pt;}
.y56{bottom:994.808133pt;}
.y70{bottom:997.936800pt;}
.y209{bottom:1001.448800pt;}
.y19e{bottom:1005.222133pt;}
.y1d5{bottom:1005.302133pt;}
.y130{bottom:1005.783200pt;}
.y166{bottom:1005.863200pt;}
.y1a{bottom:1008.867333pt;}
.y103{bottom:1010.384800pt;}
.y23{bottom:1012.692400pt;}
.y55{bottom:1013.480133pt;}
.y6f{bottom:1016.608800pt;}
.y19d{bottom:1021.222133pt;}
.y1d4{bottom:1021.302133pt;}
.y54{bottom:1032.152133pt;}
.y6e{bottom:1035.280800pt;}
.y19b{bottom:1036.251333pt;}
.y19c{bottom:1037.222133pt;}
.y1d3{bottom:1037.302133pt;}
.y22{bottom:1038.918133pt;}
.y1e{bottom:1067.112533pt;}
.y21{bottom:1067.447733pt;}
.h6{height:32.083333pt;}
.hc{height:34.176000pt;}
.h5{height:36.093750pt;}
.hb{height:36.738281pt;}
.h8{height:39.479167pt;}
.he{height:40.104167pt;}
.h10{height:40.734375pt;}
.h9{height:40.776354pt;}
.ha{height:40.878906pt;}
.hd{height:41.770667pt;}
.h3{height:44.057292pt;}
.h2{height:44.114583pt;}
.h11{height:47.375000pt;}
.hf{height:48.125000pt;}
.h7{height:69.609375pt;}
.h4{height:76.906667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:54.026267pt;}
.x5{left:55.359600pt;}
.x2{left:56.692933pt;}
.x3{left:58.026267pt;}
.x6{left:70.137733pt;}
.xb{left:79.372933pt;}
.xa{left:80.692933pt;}
.x1{left:108.325467pt;}
.xd{left:404.852933pt;}
.xc{left:427.532933pt;}
.x8{left:635.495733pt;}
.x9{left:721.332933pt;}
.x7{left:728.309467pt;}
}




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