
    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_bfdafa569657c39381ed6de5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.074000;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_eecd51365aa67e2a3a1d3241.woff')format("woff");}.ff2{font-family:ff2;line-height:0.911000;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_d3d3fe2b46119bf4e8744453.woff')format("woff");}.ff3{font-family:ff3;line-height:1.146000;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_612cd61e34bf2cfacca22a2c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933000;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_ead08be93a95a71f4d643c18.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933000;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_97b144765f19fe2d1726b5e1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.036000;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_744e28cb270d0620a3407537.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bfdafa569657c39381ed6de5.woff')format("woff");}.ff8{font-family:ff8;line-height:1.074000;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_6c2c3e1b55d820d87616c09f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.918000;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_2faa378531f40818a7c15ac1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.895000;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_ac12a0595efb20c300543e9d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.074000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.983600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.lse{letter-spacing:-1.020000px;}
.lsb{letter-spacing:-0.960000px;}
.ls5{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.408000px;}
.ls9{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.300000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000300px;}
.ls4{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.300000px;}
.ls8{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.699120px;}
.ls0{letter-spacing:1.200000px;}
.lsc{letter-spacing:7.194000px;}
.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;}
}
.ws10{word-spacing:-15.600000px;}
.wse{word-spacing:-15.240000px;}
.ws7{word-spacing:-15.120000px;}
.ws6{word-spacing:-15.000000px;}
.wsc{word-spacing:-14.700000px;}
.ws16{word-spacing:-14.544000px;}
.wsa{word-spacing:-14.400000px;}
.ws3{word-spacing:-12.750000px;}
.wsb{word-spacing:-12.474000px;}
.ws17{word-spacing:-12.342000px;}
.ws1{word-spacing:-12.120000px;}
.ws19{word-spacing:-11.730000px;}
.ws2{word-spacing:-11.520000px;}
.ws4{word-spacing:-7.433250px;}
.ws11{word-spacing:-0.600000px;}
.ws14{word-spacing:-0.300000px;}
.wsf{word-spacing:-0.240000px;}
.ws12{word-spacing:-0.198000px;}
.ws8{word-spacing:-0.120000px;}
.ws0{word-spacing:-0.051000px;}
.ws5{word-spacing:0.000000px;}
.wsd{word-spacing:0.300000px;}
.ws13{word-spacing:0.360000px;}
.ws18{word-spacing:0.408000px;}
.ws9{word-spacing:0.600000px;}
.ws15{word-spacing:0.960000px;}
.ws1a{word-spacing:1.020000px;}
._13{margin-left:-15.000000px;}
._b{margin-left:-12.478500px;}
._2a{margin-left:-9.867600px;}
._29{margin-left:-8.337600px;}
._19{margin-left:-6.119400px;}
._9{margin-left:-4.560000px;}
._11{margin-left:-3.516600px;}
._4{margin-left:-2.451000px;}
._0{margin-left:-1.071000px;}
._1{width:1.142400px;}
._2{width:2.496000px;}
._8{width:3.537000px;}
._3{width:4.542000px;}
._7{width:5.646000px;}
._5{width:6.822000px;}
._6{width:8.154000px;}
._a{width:9.389100px;}
._e{width:10.393800px;}
._d{width:11.766000px;}
._c{width:13.008000px;}
._28{width:14.137200px;}
._1d{width:15.163800px;}
._15{width:16.242000px;}
._f{width:17.430000px;}
._10{width:18.675000px;}
._1a{width:19.743000px;}
._16{width:21.177000px;}
._22{width:22.351500px;}
._1f{width:23.592600px;}
._25{width:25.023600px;}
._1e{width:27.038100px;}
._1b{width:28.620000px;}
._23{width:31.800000px;}
._17{width:33.000000px;}
._20{width:35.065500px;}
._18{width:36.360000px;}
._1c{width:37.800000px;}
._24{width:39.112200px;}
._2b{width:40.723800px;}
._27{width:42.085500px;}
._26{width:43.572300px;}
._2c{width:45.230700px;}
._14{width:47.158500px;}
._12{width:48.864000px;}
._21{width:54.549600px;}
.fc1{color:rgb(59,75,167);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:29.733000px;}
.fs3{font-size:34.980000px;}
.fs0{font-size:51.000000px;}
.fs1{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:63.750000px;}
.y102{bottom:112.299150px;}
.y88{bottom:112.500000px;}
.y59{bottom:112.824150px;}
.y70{bottom:113.424150px;}
.y1ad{bottom:113.574300px;}
.y17d{bottom:115.111650px;}
.y11c{bottom:117.699300px;}
.y123{bottom:118.299150px;}
.y98{bottom:118.874850px;}
.yf6{bottom:127.599300px;}
.y1ac{bottom:128.574300px;}
.y17c{bottom:130.111650px;}
.y101{bottom:131.049150px;}
.y87{bottom:131.250000px;}
.y58{bottom:131.574150px;}
.y13a{bottom:131.793300px;}
.y6f{bottom:132.174150px;}
.y97{bottom:134.174850px;}
.y11b{bottom:136.449300px;}
.y122{bottom:137.049150px;}
.y25{bottom:142.299150px;}
.y1ab{bottom:143.574300px;}
.y17b{bottom:145.111650px;}
.yf5{bottom:146.349300px;}
.y100{bottom:149.799150px;}
.y86{bottom:150.000000px;}
.y57{bottom:150.324150px;}
.y139{bottom:150.543300px;}
.y6e{bottom:150.924150px;}
.y96{bottom:155.474850px;}
.y121{bottom:155.799150px;}
.y1aa{bottom:158.574300px;}
.y17a{bottom:160.111650px;}
.y24{bottom:161.544900px;}
.yf4{bottom:165.099300px;}
.yff{bottom:168.549150px;}
.y85{bottom:168.750000px;}
.y56{bottom:169.074150px;}
.y138{bottom:169.293300px;}
.y6d{bottom:169.674150px;}
.y95{bottom:170.774850px;}
.y11a{bottom:171.699300px;}
.y1a9{bottom:173.574300px;}
.y120{bottom:174.549150px;}
.y179{bottom:175.111650px;}
.y23{bottom:176.049150px;}
.yf3{bottom:183.849300px;}
.y71{bottom:185.574150px;}
.yfe{bottom:187.299150px;}
.y84{bottom:187.500000px;}
.y55{bottom:187.824150px;}
.y137{bottom:188.043300px;}
.y6c{bottom:188.424150px;}
.y1a8{bottom:188.574300px;}
.y178{bottom:190.111650px;}
.y94{bottom:192.074850px;}
.y11f{bottom:193.299150px;}
.y22{bottom:195.295050px;}
.yf2{bottom:202.599300px;}
.y1a7{bottom:203.574300px;}
.y177{bottom:205.111650px;}
.yfd{bottom:206.049150px;}
.y83{bottom:206.250000px;}
.y54{bottom:206.574150px;}
.y136{bottom:206.793300px;}
.y6b{bottom:207.174150px;}
.y21{bottom:209.799150px;}
.y11e{bottom:212.049150px;}
.y93{bottom:213.374850px;}
.y1a6{bottom:218.574300px;}
.y176{bottom:220.111650px;}
.yfc{bottom:224.799150px;}
.y82{bottom:225.000000px;}
.y53{bottom:225.324150px;}
.y135{bottom:225.543300px;}
.y6a{bottom:225.924150px;}
.y92{bottom:228.674850px;}
.y20{bottom:229.045050px;}
.y119{bottom:230.799150px;}
.y1a5{bottom:233.574300px;}
.y175{bottom:235.111650px;}
.yf1{bottom:237.849300px;}
.y1f{bottom:243.549150px;}
.y81{bottom:243.750000px;}
.y52{bottom:244.074150px;}
.y134{bottom:244.293300px;}
.y69{bottom:244.674150px;}
.y1a4{bottom:248.574300px;}
.y118{bottom:249.549150px;}
.y91{bottom:249.974850px;}
.y174{bottom:250.111650px;}
.yf0{bottom:259.449150px;}
.yfb{bottom:262.299150px;}
.y80{bottom:262.500000px;}
.y1e{bottom:262.795050px;}
.y51{bottom:262.824150px;}
.y133{bottom:263.043300px;}
.y68{bottom:263.424150px;}
.y1a3{bottom:263.574300px;}
.y173{bottom:265.111650px;}
.y90{bottom:265.274850px;}
.y117{bottom:268.299150px;}
.y1a2{bottom:278.574300px;}
.y172{bottom:280.111650px;}
.yfa{bottom:281.049150px;}
.y7f{bottom:281.250000px;}
.y50{bottom:281.574150px;}
.y132{bottom:281.793300px;}
.y67{bottom:282.174150px;}
.y8f{bottom:286.574850px;}
.y116{bottom:287.049150px;}
.y1a1{bottom:293.574300px;}
.y171{bottom:295.111650px;}
.ybf{bottom:297.750000px;}
.yef{bottom:299.799150px;}
.y7e{bottom:300.000000px;}
.y4f{bottom:300.324150px;}
.y131{bottom:300.543300px;}
.y66{bottom:300.924150px;}
.y8e{bottom:301.874850px;}
.y115{bottom:305.799150px;}
.y1a0{bottom:308.574300px;}
.y170{bottom:310.111650px;}
.yee{bottom:318.549150px;}
.y7d{bottom:318.750000px;}
.y4e{bottom:319.074150px;}
.y130{bottom:319.293300px;}
.ybe{bottom:319.350000px;}
.y65{bottom:319.674150px;}
.y8d{bottom:323.174850px;}
.y19f{bottom:323.574300px;}
.y114{bottom:324.549150px;}
.y16f{bottom:325.111650px;}
.yed{bottom:337.299150px;}
.y7c{bottom:337.500000px;}
.y4d{bottom:337.824300px;}
.y12f{bottom:338.043300px;}
.y64{bottom:338.424150px;}
.y8c{bottom:338.474850px;}
.y19e{bottom:338.574300px;}
.y16e{bottom:340.111650px;}
.y113{bottom:343.299150px;}
.y19d{bottom:353.574300px;}
.y16d{bottom:355.111650px;}
.yec{bottom:356.049150px;}
.y7b{bottom:356.250000px;}
.y4c{bottom:356.574300px;}
.y12e{bottom:356.793300px;}
.y63{bottom:357.174150px;}
.y8b{bottom:360.037350px;}
.y11d{bottom:362.049150px;}
.y19c{bottom:368.574300px;}
.y16c{bottom:370.111650px;}
.yeb{bottom:374.799150px;}
.y7a{bottom:375.000000px;}
.y4b{bottom:375.324300px;}
.y12d{bottom:375.543300px;}
.ybd{bottom:375.624300px;}
.y62{bottom:375.924150px;}
.y1d{bottom:377.399400px;}
.y112{bottom:380.799150px;}
.y19b{bottom:383.574300px;}
.y16b{bottom:385.111650px;}
.y8a{bottom:387.974850px;}
.ybc{bottom:390.924300px;}
.yea{bottom:393.549150px;}
.y79{bottom:393.750000px;}
.y4a{bottom:394.074300px;}
.y12c{bottom:394.293300px;}
.y61{bottom:394.674150px;}
.y19a{bottom:398.574300px;}
.y111{bottom:399.549150px;}
.y16a{bottom:400.111650px;}
.ybb{bottom:406.224300px;}
.ye9{bottom:412.299150px;}
.y78{bottom:412.500000px;}
.y49{bottom:412.824300px;}
.y12b{bottom:413.043300px;}
.y60{bottom:413.424150px;}
.y199{bottom:413.574300px;}
.y1c{bottom:414.149400px;}
.y169{bottom:415.111650px;}
.y89{bottom:415.974600px;}
.y110{bottom:418.299150px;}
.yba{bottom:421.524300px;}
.y198{bottom:428.574300px;}
.y168{bottom:430.111650px;}
.ye8{bottom:431.049150px;}
.y77{bottom:431.250000px;}
.y48{bottom:431.574300px;}
.y12a{bottom:431.793300px;}
.y5f{bottom:432.174150px;}
.y1b{bottom:432.899400px;}
.y10f{bottom:437.049150px;}
.yb9{bottom:442.824300px;}
.y197{bottom:443.574300px;}
.y167{bottom:445.111650px;}
.ye7{bottom:449.799150px;}
.y76{bottom:450.000000px;}
.y47{bottom:450.324300px;}
.y129{bottom:450.543300px;}
.y5e{bottom:450.924150px;}
.y1a{bottom:451.649400px;}
.y10e{bottom:455.799150px;}
.yb8{bottom:458.124300px;}
.y196{bottom:458.574300px;}
.y166{bottom:460.111650px;}
.ye6{bottom:468.549150px;}
.y75{bottom:468.750000px;}
.y128{bottom:469.293300px;}
.y5d{bottom:469.674150px;}
.y19{bottom:470.399400px;}
.yb7{bottom:473.424300px;}
.y195{bottom:473.574300px;}
.y10d{bottom:474.549150px;}
.y165{bottom:475.111650px;}
.y46{bottom:485.574300px;}
.ye5{bottom:487.299150px;}
.y74{bottom:487.500000px;}
.y127{bottom:488.043300px;}
.y5c{bottom:488.424150px;}
.y194{bottom:488.574300px;}
.y18{bottom:489.149400px;}
.y164{bottom:490.111650px;}
.y10c{bottom:493.299150px;}
.yb6{bottom:494.724300px;}
.yf7{bottom:503.079300px;}
.y193{bottom:503.574300px;}
.y163{bottom:505.111650px;}
.ye4{bottom:506.049150px;}
.y73{bottom:506.250000px;}
.y126{bottom:506.793300px;}
.y5b{bottom:507.174150px;}
.y17{bottom:507.899400px;}
.yb5{bottom:510.024300px;}
.y10b{bottom:512.049150px;}
.y192{bottom:518.574300px;}
.y162{bottom:520.111650px;}
.ye3{bottom:524.799150px;}
.yc6{bottom:525.000000px;}
.yb4{bottom:525.324300px;}
.y125{bottom:525.543300px;}
.y45{bottom:525.924150px;}
.y16{bottom:526.649400px;}
.y10a{bottom:530.799150px;}
.y191{bottom:533.574300px;}
.y161{bottom:535.111650px;}
.ye2{bottom:543.549150px;}
.yc5{bottom:543.750000px;}
.y124{bottom:544.293300px;}
.y44{bottom:544.674150px;}
.y15{bottom:545.399400px;}
.yb3{bottom:546.624300px;}
.y190{bottom:548.574300px;}
.y109{bottom:549.549150px;}
.y160{bottom:550.111650px;}
.yb2{bottom:561.924300px;}
.ye1{bottom:562.299150px;}
.yc4{bottom:562.500000px;}
.y43{bottom:563.424150px;}
.y18f{bottom:563.574300px;}
.y14{bottom:564.149400px;}
.y15f{bottom:565.111650px;}
.y108{bottom:568.299150px;}
.yb1{bottom:577.224300px;}
.y18e{bottom:578.574300px;}
.y15e{bottom:580.111650px;}
.ye0{bottom:581.049150px;}
.yc3{bottom:581.250000px;}
.y42{bottom:582.174150px;}
.y13{bottom:582.899400px;}
.y107{bottom:587.049150px;}
.y18d{bottom:593.574300px;}
.y15d{bottom:595.111650px;}
.yb0{bottom:598.786800px;}
.ydf{bottom:599.799150px;}
.yc2{bottom:600.000000px;}
.y41{bottom:600.924150px;}
.y12{bottom:601.649400px;}
.y106{bottom:605.799150px;}
.y18c{bottom:608.574300px;}
.y15c{bottom:610.111650px;}
.yde{bottom:618.549150px;}
.yc1{bottom:618.750000px;}
.y40{bottom:619.674150px;}
.yaf{bottom:620.349300px;}
.y11{bottom:620.399400px;}
.y18b{bottom:623.574300px;}
.y105{bottom:624.549150px;}
.y15b{bottom:625.111650px;}
.ydd{bottom:637.299150px;}
.yc0{bottom:637.500000px;}
.y3f{bottom:638.424150px;}
.y18a{bottom:638.574300px;}
.y15a{bottom:640.111650px;}
.yae{bottom:641.649300px;}
.y104{bottom:643.299150px;}
.y189{bottom:653.574300px;}
.y159{bottom:655.111650px;}
.ydc{bottom:656.049150px;}
.y10{bottom:656.399400px;}
.y3e{bottom:657.174150px;}
.y103{bottom:662.049150px;}
.yad{bottom:662.949300px;}
.y188{bottom:668.574300px;}
.y158{bottom:670.111650px;}
.ydb{bottom:674.799150px;}
.y3d{bottom:675.924150px;}
.y187{bottom:683.574300px;}
.yac{bottom:684.249300px;}
.y157{bottom:685.111650px;}
.yf{bottom:693.149400px;}
.yda{bottom:693.549150px;}
.y3c{bottom:694.674150px;}
.y186{bottom:698.574300px;}
.y156{bottom:700.111650px;}
.yab{bottom:705.549300px;}
.ye{bottom:711.899400px;}
.yd9{bottom:712.299150px;}
.y3b{bottom:713.424150px;}
.y185{bottom:713.574300px;}
.y155{bottom:715.111650px;}
.yaa{bottom:726.849300px;}
.y184{bottom:728.574300px;}
.y154{bottom:730.111650px;}
.yd{bottom:730.649400px;}
.yd8{bottom:731.049150px;}
.y3a{bottom:732.174150px;}
.y183{bottom:743.574300px;}
.y153{bottom:745.111650px;}
.ya9{bottom:748.411800px;}
.yc{bottom:749.399400px;}
.yd7{bottom:749.799150px;}
.y39{bottom:750.924150px;}
.y182{bottom:758.574300px;}
.y152{bottom:760.111650px;}
.yb{bottom:768.149400px;}
.yd6{bottom:768.549150px;}
.y38{bottom:769.674150px;}
.ya8{bottom:769.974300px;}
.y181{bottom:773.574300px;}
.y151{bottom:775.111650px;}
.ya{bottom:786.899400px;}
.yf9{bottom:787.299150px;}
.y37{bottom:788.424150px;}
.y180{bottom:788.574300px;}
.y150{bottom:790.111650px;}
.ya7{bottom:791.274300px;}
.y17f{bottom:803.574300px;}
.y14f{bottom:805.111650px;}
.y9{bottom:805.649400px;}
.yd5{bottom:806.049150px;}
.y36{bottom:807.174150px;}
.ya6{bottom:812.574300px;}
.y14e{bottom:820.111650px;}
.yd4{bottom:824.799150px;}
.y35{bottom:825.924150px;}
.ya5{bottom:833.874150px;}
.y17e{bottom:835.074300px;}
.y14d{bottom:835.111650px;}
.yd3{bottom:843.549150px;}
.y34{bottom:844.674150px;}
.y14c{bottom:850.111650px;}
.y8{bottom:850.649400px;}
.ya4{bottom:855.174150px;}
.yd2{bottom:862.299150px;}
.y33{bottom:863.424150px;}
.y14b{bottom:865.111650px;}
.ya3{bottom:876.474300px;}
.y14a{bottom:880.111650px;}
.yd1{bottom:881.049150px;}
.y32{bottom:882.174150px;}
.y7{bottom:892.949400px;}
.y149{bottom:895.111650px;}
.ya2{bottom:897.774300px;}
.yd0{bottom:899.799150px;}
.y31{bottom:900.924150px;}
.y148{bottom:910.111650px;}
.ycf{bottom:918.549150px;}
.ya1{bottom:919.074150px;}
.y30{bottom:919.674150px;}
.y147{bottom:925.111650px;}
.yce{bottom:937.299150px;}
.y6{bottom:937.949400px;}
.y2f{bottom:938.424150px;}
.y146{bottom:940.111650px;}
.ya0{bottom:940.374150px;}
.y145{bottom:955.111650px;}
.ycd{bottom:956.049150px;}
.y2e{bottom:957.174150px;}
.y9f{bottom:961.674150px;}
.y144{bottom:970.111650px;}
.ycc{bottom:974.799150px;}
.y2d{bottom:975.924150px;}
.y5{bottom:980.249400px;}
.y9e{bottom:982.974300px;}
.y143{bottom:985.111650px;}
.ycb{bottom:993.549150px;}
.y2c{bottom:994.674150px;}
.y142{bottom:1000.111650px;}
.y9d{bottom:1004.274300px;}
.y4{bottom:1009.049400px;}
.yca{bottom:1012.299150px;}
.y2b{bottom:1013.424150px;}
.y141{bottom:1015.111650px;}
.y9c{bottom:1025.574150px;}
.y140{bottom:1030.111650px;}
.yc9{bottom:1031.049150px;}
.y2a{bottom:1032.174150px;}
.y13f{bottom:1045.111650px;}
.y9b{bottom:1046.874150px;}
.yf8{bottom:1049.799150px;}
.y29{bottom:1050.924150px;}
.y13e{bottom:1060.111650px;}
.y9a{bottom:1062.174150px;}
.yc8{bottom:1068.549150px;}
.y28{bottom:1069.674150px;}
.y13d{bottom:1075.111650px;}
.y99{bottom:1083.736650px;}
.y5a{bottom:1086.174150px;}
.yc7{bottom:1087.299150px;}
.y13b{bottom:1088.382600px;}
.y27{bottom:1088.424150px;}
.y13c{bottom:1090.111650px;}
.y72{bottom:1090.111800px;}
.y2{bottom:1091.061900px;}
.y1{bottom:1107.861900px;}
.y26{bottom:1127.493150px;}
.h8{height:30.344400px;}
.ha{height:30.345000px;}
.hf{height:34.986000px;}
.h3{height:35.955000px;}
.hd{height:36.363000px;}
.he{height:41.160000px;}
.h2{height:42.024000px;}
.h7{height:43.260000px;}
.h9{height:47.328000px;}
.h6{height:49.800000px;}
.hb{height:51.912000px;}
.hc{height:54.780000px;}
.h4{height:55.680000px;}
.h5{height:68.640000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x8{left:82.500750px;}
.x6{left:93.375900px;}
.xa{left:95.285400px;}
.x9{left:97.500750px;}
.xe{left:102.036900px;}
.x7{left:111.036900px;}
.x2{left:438.956700px;}
.x4{left:459.206700px;}
.x5{left:476.081700px;}
.xb{left:477.956700px;}
.xd{left:484.742700px;}
.xc{left:493.742700px;}
.x3{left:550.312950px;}
@media print{
.v2{vertical-align:-15.096533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.lse{letter-spacing:-0.906667pt;}
.lsb{letter-spacing:-0.853333pt;}
.ls5{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.362667pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.266667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000267pt;}
.ls4{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.266667pt;}
.ls8{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.621440pt;}
.ls0{letter-spacing:1.066667pt;}
.lsc{letter-spacing:6.394667pt;}
.ws10{word-spacing:-13.866667pt;}
.wse{word-spacing:-13.546667pt;}
.ws7{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.333333pt;}
.wsc{word-spacing:-13.066667pt;}
.ws16{word-spacing:-12.928000pt;}
.wsa{word-spacing:-12.800000pt;}
.ws3{word-spacing:-11.333333pt;}
.wsb{word-spacing:-11.088000pt;}
.ws17{word-spacing:-10.970667pt;}
.ws1{word-spacing:-10.773333pt;}
.ws19{word-spacing:-10.426667pt;}
.ws2{word-spacing:-10.240000pt;}
.ws4{word-spacing:-6.607333pt;}
.ws11{word-spacing:-0.533333pt;}
.ws14{word-spacing:-0.266667pt;}
.wsf{word-spacing:-0.213333pt;}
.ws12{word-spacing:-0.176000pt;}
.ws8{word-spacing:-0.106667pt;}
.ws0{word-spacing:-0.045333pt;}
.ws5{word-spacing:0.000000pt;}
.wsd{word-spacing:0.266667pt;}
.ws13{word-spacing:0.320000pt;}
.ws18{word-spacing:0.362667pt;}
.ws9{word-spacing:0.533333pt;}
.ws15{word-spacing:0.853333pt;}
.ws1a{word-spacing:0.906667pt;}
._13{margin-left:-13.333333pt;}
._b{margin-left:-11.092000pt;}
._2a{margin-left:-8.771200pt;}
._29{margin-left:-7.411200pt;}
._19{margin-left:-5.439467pt;}
._9{margin-left:-4.053333pt;}
._11{margin-left:-3.125867pt;}
._4{margin-left:-2.178667pt;}
._0{margin-left:-0.952000pt;}
._1{width:1.015467pt;}
._2{width:2.218667pt;}
._8{width:3.144000pt;}
._3{width:4.037333pt;}
._7{width:5.018667pt;}
._5{width:6.064000pt;}
._6{width:7.248000pt;}
._a{width:8.345867pt;}
._e{width:9.238933pt;}
._d{width:10.458667pt;}
._c{width:11.562667pt;}
._28{width:12.566400pt;}
._1d{width:13.478933pt;}
._15{width:14.437333pt;}
._f{width:15.493333pt;}
._10{width:16.600000pt;}
._1a{width:17.549333pt;}
._16{width:18.824000pt;}
._22{width:19.868000pt;}
._1f{width:20.971200pt;}
._25{width:22.243200pt;}
._1e{width:24.033867pt;}
._1b{width:25.440000pt;}
._23{width:28.266667pt;}
._17{width:29.333333pt;}
._20{width:31.169333pt;}
._18{width:32.320000pt;}
._1c{width:33.600000pt;}
._24{width:34.766400pt;}
._2b{width:36.198933pt;}
._27{width:37.409333pt;}
._26{width:38.730933pt;}
._2c{width:40.205067pt;}
._14{width:41.918667pt;}
._12{width:43.434667pt;}
._21{width:48.488533pt;}
.fs4{font-size:26.429333pt;}
.fs3{font-size:31.093333pt;}
.fs0{font-size:45.333333pt;}
.fs1{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:56.666667pt;}
.y102{bottom:99.821467pt;}
.y88{bottom:100.000000pt;}
.y59{bottom:100.288133pt;}
.y70{bottom:100.821467pt;}
.y1ad{bottom:100.954933pt;}
.y17d{bottom:102.321467pt;}
.y11c{bottom:104.621600pt;}
.y123{bottom:105.154800pt;}
.y98{bottom:105.666533pt;}
.yf6{bottom:113.421600pt;}
.y1ac{bottom:114.288267pt;}
.y17c{bottom:115.654800pt;}
.y101{bottom:116.488133pt;}
.y87{bottom:116.666667pt;}
.y58{bottom:116.954800pt;}
.y13a{bottom:117.149600pt;}
.y6f{bottom:117.488133pt;}
.y97{bottom:119.266533pt;}
.y11b{bottom:121.288267pt;}
.y122{bottom:121.821467pt;}
.y25{bottom:126.488133pt;}
.y1ab{bottom:127.621600pt;}
.y17b{bottom:128.988133pt;}
.yf5{bottom:130.088267pt;}
.y100{bottom:133.154800pt;}
.y86{bottom:133.333333pt;}
.y57{bottom:133.621467pt;}
.y139{bottom:133.816267pt;}
.y6e{bottom:134.154800pt;}
.y96{bottom:138.199867pt;}
.y121{bottom:138.488133pt;}
.y1aa{bottom:140.954933pt;}
.y17a{bottom:142.321467pt;}
.y24{bottom:143.595467pt;}
.yf4{bottom:146.754933pt;}
.yff{bottom:149.821467pt;}
.y85{bottom:150.000000pt;}
.y56{bottom:150.288133pt;}
.y138{bottom:150.482933pt;}
.y6d{bottom:150.821467pt;}
.y95{bottom:151.799867pt;}
.y11a{bottom:152.621600pt;}
.y1a9{bottom:154.288267pt;}
.y120{bottom:155.154800pt;}
.y179{bottom:155.654800pt;}
.y23{bottom:156.488133pt;}
.yf3{bottom:163.421600pt;}
.y71{bottom:164.954800pt;}
.yfe{bottom:166.488133pt;}
.y84{bottom:166.666667pt;}
.y55{bottom:166.954800pt;}
.y137{bottom:167.149600pt;}
.y6c{bottom:167.488133pt;}
.y1a8{bottom:167.621600pt;}
.y178{bottom:168.988133pt;}
.y94{bottom:170.733200pt;}
.y11f{bottom:171.821467pt;}
.y22{bottom:173.595600pt;}
.yf2{bottom:180.088267pt;}
.y1a7{bottom:180.954933pt;}
.y177{bottom:182.321467pt;}
.yfd{bottom:183.154800pt;}
.y83{bottom:183.333333pt;}
.y54{bottom:183.621467pt;}
.y136{bottom:183.816267pt;}
.y6b{bottom:184.154800pt;}
.y21{bottom:186.488133pt;}
.y11e{bottom:188.488133pt;}
.y93{bottom:189.666533pt;}
.y1a6{bottom:194.288267pt;}
.y176{bottom:195.654800pt;}
.yfc{bottom:199.821467pt;}
.y82{bottom:200.000000pt;}
.y53{bottom:200.288133pt;}
.y135{bottom:200.482933pt;}
.y6a{bottom:200.821467pt;}
.y92{bottom:203.266533pt;}
.y20{bottom:203.595600pt;}
.y119{bottom:205.154800pt;}
.y1a5{bottom:207.621600pt;}
.y175{bottom:208.988133pt;}
.yf1{bottom:211.421600pt;}
.y1f{bottom:216.488133pt;}
.y81{bottom:216.666667pt;}
.y52{bottom:216.954800pt;}
.y134{bottom:217.149600pt;}
.y69{bottom:217.488133pt;}
.y1a4{bottom:220.954933pt;}
.y118{bottom:221.821467pt;}
.y91{bottom:222.199867pt;}
.y174{bottom:222.321467pt;}
.yf0{bottom:230.621467pt;}
.yfb{bottom:233.154800pt;}
.y80{bottom:233.333333pt;}
.y1e{bottom:233.595600pt;}
.y51{bottom:233.621467pt;}
.y133{bottom:233.816267pt;}
.y68{bottom:234.154800pt;}
.y1a3{bottom:234.288267pt;}
.y173{bottom:235.654800pt;}
.y90{bottom:235.799867pt;}
.y117{bottom:238.488133pt;}
.y1a2{bottom:247.621600pt;}
.y172{bottom:248.988133pt;}
.yfa{bottom:249.821467pt;}
.y7f{bottom:250.000000pt;}
.y50{bottom:250.288133pt;}
.y132{bottom:250.482933pt;}
.y67{bottom:250.821467pt;}
.y8f{bottom:254.733200pt;}
.y116{bottom:255.154800pt;}
.y1a1{bottom:260.954933pt;}
.y171{bottom:262.321467pt;}
.ybf{bottom:264.666667pt;}
.yef{bottom:266.488133pt;}
.y7e{bottom:266.666667pt;}
.y4f{bottom:266.954800pt;}
.y131{bottom:267.149600pt;}
.y66{bottom:267.488133pt;}
.y8e{bottom:268.333200pt;}
.y115{bottom:271.821467pt;}
.y1a0{bottom:274.288267pt;}
.y170{bottom:275.654800pt;}
.yee{bottom:283.154800pt;}
.y7d{bottom:283.333333pt;}
.y4e{bottom:283.621467pt;}
.y130{bottom:283.816267pt;}
.ybe{bottom:283.866667pt;}
.y65{bottom:284.154800pt;}
.y8d{bottom:287.266533pt;}
.y19f{bottom:287.621600pt;}
.y114{bottom:288.488133pt;}
.y16f{bottom:288.988133pt;}
.yed{bottom:299.821467pt;}
.y7c{bottom:300.000000pt;}
.y4d{bottom:300.288267pt;}
.y12f{bottom:300.482933pt;}
.y64{bottom:300.821467pt;}
.y8c{bottom:300.866533pt;}
.y19e{bottom:300.954933pt;}
.y16e{bottom:302.321467pt;}
.y113{bottom:305.154800pt;}
.y19d{bottom:314.288267pt;}
.y16d{bottom:315.654800pt;}
.yec{bottom:316.488133pt;}
.y7b{bottom:316.666667pt;}
.y4c{bottom:316.954933pt;}
.y12e{bottom:317.149600pt;}
.y63{bottom:317.488133pt;}
.y8b{bottom:320.033200pt;}
.y11d{bottom:321.821467pt;}
.y19c{bottom:327.621600pt;}
.y16c{bottom:328.988133pt;}
.yeb{bottom:333.154800pt;}
.y7a{bottom:333.333333pt;}
.y4b{bottom:333.621600pt;}
.y12d{bottom:333.816267pt;}
.ybd{bottom:333.888267pt;}
.y62{bottom:334.154800pt;}
.y1d{bottom:335.466133pt;}
.y112{bottom:338.488133pt;}
.y19b{bottom:340.954933pt;}
.y16b{bottom:342.321467pt;}
.y8a{bottom:344.866533pt;}
.ybc{bottom:347.488267pt;}
.yea{bottom:349.821467pt;}
.y79{bottom:350.000000pt;}
.y4a{bottom:350.288267pt;}
.y12c{bottom:350.482933pt;}
.y61{bottom:350.821467pt;}
.y19a{bottom:354.288267pt;}
.y111{bottom:355.154800pt;}
.y16a{bottom:355.654800pt;}
.ybb{bottom:361.088267pt;}
.ye9{bottom:366.488133pt;}
.y78{bottom:366.666667pt;}
.y49{bottom:366.954933pt;}
.y12b{bottom:367.149600pt;}
.y60{bottom:367.488133pt;}
.y199{bottom:367.621600pt;}
.y1c{bottom:368.132800pt;}
.y169{bottom:368.988133pt;}
.y89{bottom:369.755200pt;}
.y110{bottom:371.821467pt;}
.yba{bottom:374.688267pt;}
.y198{bottom:380.954933pt;}
.y168{bottom:382.321467pt;}
.ye8{bottom:383.154800pt;}
.y77{bottom:383.333333pt;}
.y48{bottom:383.621600pt;}
.y12a{bottom:383.816267pt;}
.y5f{bottom:384.154800pt;}
.y1b{bottom:384.799467pt;}
.y10f{bottom:388.488133pt;}
.yb9{bottom:393.621600pt;}
.y197{bottom:394.288267pt;}
.y167{bottom:395.654800pt;}
.ye7{bottom:399.821467pt;}
.y76{bottom:400.000000pt;}
.y47{bottom:400.288267pt;}
.y129{bottom:400.482933pt;}
.y5e{bottom:400.821467pt;}
.y1a{bottom:401.466133pt;}
.y10e{bottom:405.154800pt;}
.yb8{bottom:407.221600pt;}
.y196{bottom:407.621600pt;}
.y166{bottom:408.988133pt;}
.ye6{bottom:416.488133pt;}
.y75{bottom:416.666667pt;}
.y128{bottom:417.149600pt;}
.y5d{bottom:417.488133pt;}
.y19{bottom:418.132800pt;}
.yb7{bottom:420.821600pt;}
.y195{bottom:420.954933pt;}
.y10d{bottom:421.821467pt;}
.y165{bottom:422.321467pt;}
.y46{bottom:431.621600pt;}
.ye5{bottom:433.154800pt;}
.y74{bottom:433.333333pt;}
.y127{bottom:433.816267pt;}
.y5c{bottom:434.154800pt;}
.y194{bottom:434.288267pt;}
.y18{bottom:434.799467pt;}
.y164{bottom:435.654800pt;}
.y10c{bottom:438.488133pt;}
.yb6{bottom:439.754933pt;}
.yf7{bottom:447.181600pt;}
.y193{bottom:447.621600pt;}
.y163{bottom:448.988133pt;}
.ye4{bottom:449.821467pt;}
.y73{bottom:450.000000pt;}
.y126{bottom:450.482933pt;}
.y5b{bottom:450.821467pt;}
.y17{bottom:451.466133pt;}
.yb5{bottom:453.354933pt;}
.y10b{bottom:455.154800pt;}
.y192{bottom:460.954933pt;}
.y162{bottom:462.321467pt;}
.ye3{bottom:466.488133pt;}
.yc6{bottom:466.666667pt;}
.yb4{bottom:466.954933pt;}
.y125{bottom:467.149600pt;}
.y45{bottom:467.488133pt;}
.y16{bottom:468.132800pt;}
.y10a{bottom:471.821467pt;}
.y191{bottom:474.288267pt;}
.y161{bottom:475.654800pt;}
.ye2{bottom:483.154800pt;}
.yc5{bottom:483.333333pt;}
.y124{bottom:483.816267pt;}
.y44{bottom:484.154800pt;}
.y15{bottom:484.799467pt;}
.yb3{bottom:485.888267pt;}
.y190{bottom:487.621600pt;}
.y109{bottom:488.488133pt;}
.y160{bottom:488.988133pt;}
.yb2{bottom:499.488267pt;}
.ye1{bottom:499.821467pt;}
.yc4{bottom:500.000000pt;}
.y43{bottom:500.821467pt;}
.y18f{bottom:500.954933pt;}
.y14{bottom:501.466133pt;}
.y15f{bottom:502.321467pt;}
.y108{bottom:505.154800pt;}
.yb1{bottom:513.088267pt;}
.y18e{bottom:514.288267pt;}
.y15e{bottom:515.654800pt;}
.ye0{bottom:516.488133pt;}
.yc3{bottom:516.666667pt;}
.y42{bottom:517.488133pt;}
.y13{bottom:518.132800pt;}
.y107{bottom:521.821467pt;}
.y18d{bottom:527.621600pt;}
.y15d{bottom:528.988133pt;}
.yb0{bottom:532.254933pt;}
.ydf{bottom:533.154800pt;}
.yc2{bottom:533.333333pt;}
.y41{bottom:534.154800pt;}
.y12{bottom:534.799467pt;}
.y106{bottom:538.488133pt;}
.y18c{bottom:540.954933pt;}
.y15c{bottom:542.321467pt;}
.yde{bottom:549.821467pt;}
.yc1{bottom:550.000000pt;}
.y40{bottom:550.821467pt;}
.yaf{bottom:551.421600pt;}
.y11{bottom:551.466133pt;}
.y18b{bottom:554.288267pt;}
.y105{bottom:555.154800pt;}
.y15b{bottom:555.654800pt;}
.ydd{bottom:566.488133pt;}
.yc0{bottom:566.666667pt;}
.y3f{bottom:567.488133pt;}
.y18a{bottom:567.621600pt;}
.y15a{bottom:568.988133pt;}
.yae{bottom:570.354933pt;}
.y104{bottom:571.821467pt;}
.y189{bottom:580.954933pt;}
.y159{bottom:582.321467pt;}
.ydc{bottom:583.154800pt;}
.y10{bottom:583.466133pt;}
.y3e{bottom:584.154800pt;}
.y103{bottom:588.488133pt;}
.yad{bottom:589.288267pt;}
.y188{bottom:594.288267pt;}
.y158{bottom:595.654800pt;}
.ydb{bottom:599.821467pt;}
.y3d{bottom:600.821467pt;}
.y187{bottom:607.621600pt;}
.yac{bottom:608.221600pt;}
.y157{bottom:608.988133pt;}
.yf{bottom:616.132800pt;}
.yda{bottom:616.488133pt;}
.y3c{bottom:617.488133pt;}
.y186{bottom:620.954933pt;}
.y156{bottom:622.321467pt;}
.yab{bottom:627.154933pt;}
.ye{bottom:632.799467pt;}
.yd9{bottom:633.154800pt;}
.y3b{bottom:634.154800pt;}
.y185{bottom:634.288267pt;}
.y155{bottom:635.654800pt;}
.yaa{bottom:646.088267pt;}
.y184{bottom:647.621600pt;}
.y154{bottom:648.988133pt;}
.yd{bottom:649.466133pt;}
.yd8{bottom:649.821467pt;}
.y3a{bottom:650.821467pt;}
.y183{bottom:660.954933pt;}
.y153{bottom:662.321467pt;}
.ya9{bottom:665.254933pt;}
.yc{bottom:666.132800pt;}
.yd7{bottom:666.488133pt;}
.y39{bottom:667.488133pt;}
.y182{bottom:674.288267pt;}
.y152{bottom:675.654800pt;}
.yb{bottom:682.799467pt;}
.yd6{bottom:683.154800pt;}
.y38{bottom:684.154800pt;}
.ya8{bottom:684.421600pt;}
.y181{bottom:687.621600pt;}
.y151{bottom:688.988133pt;}
.ya{bottom:699.466133pt;}
.yf9{bottom:699.821467pt;}
.y37{bottom:700.821467pt;}
.y180{bottom:700.954933pt;}
.y150{bottom:702.321467pt;}
.ya7{bottom:703.354933pt;}
.y17f{bottom:714.288267pt;}
.y14f{bottom:715.654800pt;}
.y9{bottom:716.132800pt;}
.yd5{bottom:716.488133pt;}
.y36{bottom:717.488133pt;}
.ya6{bottom:722.288267pt;}
.y14e{bottom:728.988133pt;}
.yd4{bottom:733.154800pt;}
.y35{bottom:734.154800pt;}
.ya5{bottom:741.221467pt;}
.y17e{bottom:742.288267pt;}
.y14d{bottom:742.321467pt;}
.yd3{bottom:749.821467pt;}
.y34{bottom:750.821467pt;}
.y14c{bottom:755.654800pt;}
.y8{bottom:756.132800pt;}
.ya4{bottom:760.154800pt;}
.yd2{bottom:766.488133pt;}
.y33{bottom:767.488133pt;}
.y14b{bottom:768.988133pt;}
.ya3{bottom:779.088267pt;}
.y14a{bottom:782.321467pt;}
.yd1{bottom:783.154800pt;}
.y32{bottom:784.154800pt;}
.y7{bottom:793.732800pt;}
.y149{bottom:795.654800pt;}
.ya2{bottom:798.021600pt;}
.yd0{bottom:799.821467pt;}
.y31{bottom:800.821467pt;}
.y148{bottom:808.988133pt;}
.ycf{bottom:816.488133pt;}
.ya1{bottom:816.954800pt;}
.y30{bottom:817.488133pt;}
.y147{bottom:822.321467pt;}
.yce{bottom:833.154800pt;}
.y6{bottom:833.732800pt;}
.y2f{bottom:834.154800pt;}
.y146{bottom:835.654800pt;}
.ya0{bottom:835.888133pt;}
.y145{bottom:848.988133pt;}
.ycd{bottom:849.821467pt;}
.y2e{bottom:850.821467pt;}
.y9f{bottom:854.821467pt;}
.y144{bottom:862.321467pt;}
.ycc{bottom:866.488133pt;}
.y2d{bottom:867.488133pt;}
.y5{bottom:871.332800pt;}
.y9e{bottom:873.754933pt;}
.y143{bottom:875.654800pt;}
.ycb{bottom:883.154800pt;}
.y2c{bottom:884.154800pt;}
.y142{bottom:888.988133pt;}
.y9d{bottom:892.688267pt;}
.y4{bottom:896.932800pt;}
.yca{bottom:899.821467pt;}
.y2b{bottom:900.821467pt;}
.y141{bottom:902.321467pt;}
.y9c{bottom:911.621467pt;}
.y140{bottom:915.654800pt;}
.yc9{bottom:916.488133pt;}
.y2a{bottom:917.488133pt;}
.y13f{bottom:928.988133pt;}
.y9b{bottom:930.554800pt;}
.yf8{bottom:933.154800pt;}
.y29{bottom:934.154800pt;}
.y13e{bottom:942.321467pt;}
.y9a{bottom:944.154800pt;}
.yc8{bottom:949.821467pt;}
.y28{bottom:950.821467pt;}
.y13d{bottom:955.654800pt;}
.y99{bottom:963.321467pt;}
.y5a{bottom:965.488133pt;}
.yc7{bottom:966.488133pt;}
.y13b{bottom:967.451200pt;}
.y27{bottom:967.488133pt;}
.y13c{bottom:968.988133pt;}
.y72{bottom:968.988267pt;}
.y2{bottom:969.832800pt;}
.y1{bottom:984.766133pt;}
.y26{bottom:1002.216133pt;}
.h8{height:26.972800pt;}
.ha{height:26.973333pt;}
.hf{height:31.098667pt;}
.h3{height:31.960000pt;}
.hd{height:32.322667pt;}
.he{height:36.586667pt;}
.h2{height:37.354667pt;}
.h7{height:38.453333pt;}
.h9{height:42.069333pt;}
.h6{height:44.266667pt;}
.hb{height:46.144000pt;}
.hc{height:48.693333pt;}
.h4{height:49.493333pt;}
.h5{height:61.013333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x8{left:73.334000pt;}
.x6{left:83.000800pt;}
.xa{left:84.698133pt;}
.x9{left:86.667333pt;}
.xe{left:90.699467pt;}
.x7{left:98.699467pt;}
.x2{left:390.183733pt;}
.x4{left:408.183733pt;}
.x5{left:423.183733pt;}
.xb{left:424.850400pt;}
.xd{left:430.882400pt;}
.xc{left:438.882400pt;}
.x3{left:489.167067pt;}
}




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