
    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_5b0e0bd70547a1db90b0f145.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_3da8b22350fe5811b6fd84f9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_7f70b7765ac1732d9301cf33.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.258000;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_9bbab2a204d4a0c9597be080.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.899000;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_b45b3a54998f9702397bdd14.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_aa165b697be4fe04701dfa38.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908000;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);}
.v1{vertical-align:-2.969970px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.025405px;}
.lsa{letter-spacing:-0.023910px;}
.lse{letter-spacing:-0.020324px;}
.lsb{letter-spacing:-0.017933px;}
.ls10{letter-spacing:-0.015243px;}
.ls9{letter-spacing:-0.011955px;}
.lsf{letter-spacing:-0.010162px;}
.ls7{letter-spacing:-0.009564px;}
.ls18{letter-spacing:-0.007173px;}
.ls8{letter-spacing:-0.005978px;}
.lsd{letter-spacing:-0.005081px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.005081px;}
.ls1a{letter-spacing:0.005978px;}
.ls15{letter-spacing:0.007173px;}
.ls0{letter-spacing:0.009564px;}
.ls5{letter-spacing:0.010162px;}
.ls13{letter-spacing:0.015243px;}
.lsc{letter-spacing:0.017933px;}
.ls19{letter-spacing:0.019009px;}
.ls16{letter-spacing:0.020722px;}
.ls17{letter-spacing:0.021332px;}
.ls1c{letter-spacing:0.021446px;}
.ls12{letter-spacing:0.023910px;}
.ls1b{letter-spacing:0.035566px;}
.ls14{letter-spacing:0.894242px;}
.ls1d{letter-spacing:9.618180px;}
.ls3{letter-spacing:14.913191px;}
.ls1{letter-spacing:14.913281px;}
.ls2{letter-spacing:14.967294px;}
.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;}
}
.ws0{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.050809px;}
.ws6{word-spacing:-0.041843px;}
.ws4{word-spacing:-0.035865px;}
.ws7{word-spacing:-0.035566px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:12.605761px;}
.ws5{word-spacing:12.676893px;}
._17{margin-left:-6.641068px;}
._19{margin-left:-5.117970px;}
._9{margin-left:-3.869914px;}
._3{margin-left:-2.805913px;}
._1{margin-left:-1.798065px;}
._16{width:1.068308px;}
._1d{width:6.755802px;}
._15{width:7.818648px;}
._13{width:8.960361px;}
._14{width:10.400955px;}
._c{width:11.435071px;}
._11{width:12.789286px;}
._5{width:14.145596px;}
._2{width:15.319304px;}
._7{width:17.113751px;}
._d{width:18.168241px;}
._8{width:20.024824px;}
._f{width:21.417594px;}
._10{width:22.628436px;}
._0{width:23.900885px;}
._a{width:24.986198px;}
._b{width:26.017712px;}
._e{width:27.394383px;}
._1a{width:29.332350px;}
._1b{width:30.336057px;}
._1c{width:31.752851px;}
._4{width:35.146869px;}
._6{width:65.762609px;}
._18{width:651.993723px;}
._12{width:1553.922944px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:50.809193px;}
.fs1{font-size:59.775593px;}
.fs3{font-size:71.730595px;}
.fs5{font-size:73.673996px;}
.fs2{font-size:83.686192px;}
.fs0{font-size:95.641800px;}
.y0{bottom:0.000000px;}
.y21{bottom:56.480243px;}
.y20{bottom:71.424496px;}
.y1f{bottom:86.368738px;}
.y1e{bottom:101.312991px;}
.y13b{bottom:110.020141px;}
.y101{bottom:110.020343px;}
.y192{bottom:110.021171px;}
.y81{bottom:118.997000px;}
.yca{bottom:118.997788px;}
.ydc{bottom:121.319765px;}
.y118{bottom:122.870758px;}
.y191{bottom:124.965412px;}
.y13a{bottom:127.961785px;}
.y100{bottom:127.961972px;}
.y15c{bottom:127.962519px;}
.y1d{bottom:132.282721px;}
.y80{bottom:136.925180px;}
.yc9{bottom:136.925968px;}
.ydb{bottom:139.247960px;}
.y190{bottom:139.909653px;}
.y117{bottom:140.798938px;}
.y15b{bottom:142.906760px;}
.y139{bottom:145.889965px;}
.yff{bottom:145.890152px;}
.y1c{bottom:147.212989px;}
.y18f{bottom:154.003912px;}
.y7f{bottom:154.853360px;}
.yc8{bottom:154.854149px;}
.yda{bottom:157.175484px;}
.y15a{bottom:157.851001px;}
.y116{bottom:158.740582px;}
.y1b{bottom:162.157496px;}
.y138{bottom:163.817032px;}
.y4c{bottom:163.817649px;}
.yfe{bottom:163.817865px;}
.y18e{bottom:168.948153px;}
.yc7{bottom:172.794493px;}
.y7e{bottom:172.795005px;}
.y159{bottom:172.795763px;}
.yd9{bottom:175.117128px;}
.y115{bottom:176.668777px;}
.y137{bottom:181.758676px;}
.y4b{bottom:181.759278px;}
.yfd{bottom:181.759494px;}
.y18d{bottom:183.042415px;}
.y1a{bottom:186.079494px;}
.y158{bottom:187.740004px;}
.yc6{bottom:190.722673px;}
.y7d{bottom:190.723185px;}
.yd8{bottom:193.045308px;}
.y114{bottom:194.596972px;}
.y18c{bottom:197.986656px;}
.y136{bottom:199.686857px;}
.ya1{bottom:199.687313px;}
.y4a{bottom:199.687473px;}
.y19{bottom:201.024255px;}
.y157{bottom:202.671666px;}
.yc5{bottom:208.650854px;}
.y7c{bottom:208.651365px;}
.yd7{bottom:210.973503px;}
.y18b{bottom:212.067263px;}
.y113{bottom:212.538600px;}
.y18{bottom:215.968496px;}
.y5b{bottom:216.522265px;}
.y135{bottom:217.615037px;}
.y49{bottom:217.615362px;}
.ya0{bottom:217.615507px;}
.y156{bottom:217.615907px;}
.yfc{bottom:223.595992px;}
.yc4{bottom:226.592498px;}
.y7b{bottom:226.592968px;}
.y18a{bottom:227.011505px;}
.yd6{bottom:228.914814px;}
.y112{bottom:230.466795px;}
.y17{bottom:230.899489px;}
.y5a{bottom:231.466506px;}
.y155{bottom:232.560148px;}
.y9f{bottom:235.555291px;}
.y134{bottom:235.556681px;}
.y48{bottom:235.556965px;}
.y189{bottom:241.106009px;}
.yc3{bottom:244.520678px;}
.y7a{bottom:244.521148px;}
.yd5{bottom:246.843009px;}
.y154{bottom:247.504763px;}
.y111{bottom:248.394990px;}
.y9e{bottom:253.483486px;}
.y133{bottom:253.484862px;}
.y47{bottom:253.485146px;}
.y188{bottom:256.050250px;}
.yc2{bottom:262.448859px;}
.y153{bottom:262.449005px;}
.yd4{bottom:264.784114px;}
.y110{bottom:266.336618px;}
.y16{bottom:270.237661px;}
.y187{bottom:270.994491px;}
.y46{bottom:271.424589px;}
.y9d{bottom:271.425114px;}
.y132{bottom:271.426506px;}
.yc1{bottom:280.390315px;}
.yd3{bottom:282.712308px;}
.y10f{bottom:284.264813px;}
.y186{bottom:285.088763px;}
.y79{bottom:286.357064px;}
.y15{bottom:288.165825px;}
.y45{bottom:289.352784px;}
.yfb{bottom:289.352938px;}
.y9c{bottom:289.353309px;}
.y131{bottom:289.354182px;}
.yc0{bottom:298.318496px;}
.y185{bottom:300.033005px;}
.yd2{bottom:300.640356px;}
.y152{bottom:301.301994px;}
.y10e{bottom:302.193008px;}
.y14{bottom:306.107469px;}
.y44{bottom:307.280979px;}
.yfa{bottom:307.281133px;}
.y9b{bottom:307.281504px;}
.y130{bottom:307.282362px;}
.y78{bottom:307.282653px;}
.y184{bottom:314.114165px;}
.ybf{bottom:316.245682px;}
.yd1{bottom:318.582000px;}
.y10d{bottom:320.133331px;}
.y13{bottom:324.035664px;}
.y43{bottom:325.222607px;}
.yf9{bottom:325.222761px;}
.y9a{bottom:325.223132px;}
.y12f{bottom:325.223494px;}
.y183{bottom:329.058406px;}
.y1b6{bottom:331.191251px;}
.ybe{bottom:334.187327px;}
.y10c{bottom:338.061495px;}
.y12{bottom:341.963859px;}
.y42{bottom:343.150802px;}
.yf8{bottom:343.150956px;}
.y99{bottom:343.151327px;}
.y12e{bottom:343.151674px;}
.y182{bottom:344.002647px;}
.y1b5{bottom:346.135505px;}
.ybd{bottom:352.115507px;}
.y10b{bottom:356.003140px;}
.y181{bottom:358.096757px;}
.y11{bottom:359.905487px;}
.yd0{bottom:360.417897px;}
.y41{bottom:361.078996px;}
.yf7{bottom:361.079151px;}
.y98{bottom:361.079522px;}
.y12d{bottom:361.079854px;}
.y1b4{bottom:361.080486px;}
.ybc{bottom:370.043687px;}
.y77{bottom:373.039820px;}
.y180{bottom:373.040999px;}
.y10a{bottom:373.931334px;}
.y1b3{bottom:376.024740px;}
.y10{bottom:377.832853px;}
.y40{bottom:379.020625px;}
.yf6{bottom:379.020779px;}
.y12c{bottom:379.020996px;}
.y97{bottom:379.021150px;}
.y151{bottom:379.023253px;}
.ycf{bottom:381.343504px;}
.y17f{bottom:387.135960px;}
.ybb{bottom:387.985332px;}
.y76{bottom:390.968001px;}
.y1b2{bottom:390.968994px;}
.y109{bottom:391.859529px;}
.y150{bottom:393.967494px;}
.yf{bottom:395.761048px;}
.y3f{bottom:396.948820px;}
.yf5{bottom:396.948974px;}
.y12b{bottom:396.949176px;}
.y96{bottom:396.949345px;}
.y17e{bottom:402.080201px;}
.yba{bottom:405.912645px;}
.y1b1{bottom:405.913733px;}
.y75{bottom:408.909645px;}
.y14f{bottom:408.911735px;}
.y108{bottom:409.801157px;}
.ye{bottom:413.702676px;}
.y3e{bottom:414.877014px;}
.yf4{bottom:414.877169px;}
.y12a{bottom:414.877356px;}
.y95{bottom:414.877539px;}
.y17d{bottom:417.010482px;}
.y1b0{bottom:420.857986px;}
.yb9{bottom:423.854274px;}
.y14e{bottom:423.855976px;}
.y74{bottom:426.837825px;}
.y107{bottom:427.729352px;}
.y17c{bottom:431.105031px;}
.yd{bottom:431.630841px;}
.y3d{bottom:432.818643px;}
.yf3{bottom:432.818797px;}
.y129{bottom:432.818985px;}
.y94{bottom:432.819168px;}
.y1af{bottom:435.802642px;}
.y14d{bottom:438.786257px;}
.yb8{bottom:441.782468px;}
.y73{bottom:444.766006px;}
.y106{bottom:445.657184px;}
.y17b{bottom:446.049272px;}
.yce{bottom:447.088538px;}
.yc{bottom:449.572469px;}
.y128{bottom:450.745466px;}
.yf2{bottom:450.746520px;}
.y3c{bottom:450.746838px;}
.y1ae{bottom:450.747509px;}
.y14c{bottom:453.730498px;}
.yb7{bottom:459.710663px;}
.y17a{bottom:460.993513px;}
.y72{bottom:462.707650px;}
.y105{bottom:463.598813px;}
.ycd{bottom:465.030166px;}
.y1ad{bottom:465.691763px;}
.yb{bottom:467.500664px;}
.y127{bottom:468.673646px;}
.yf1{bottom:468.674700px;}
.y3b{bottom:468.675018px;}
.y93{bottom:474.655516px;}
.y179{bottom:475.088018px;}
.yb6{bottom:477.652291px;}
.y71{bottom:480.635830px;}
.y1ac{bottom:480.636016px;}
.y104{bottom:481.527007px;}
.y3a{bottom:486.615103px;}
.y126{bottom:486.615290px;}
.y14b{bottom:486.616142px;}
.yf0{bottom:486.616329px;}
.y178{bottom:490.032259px;}
.yb5{bottom:495.580486px;}
.y1ab{bottom:495.580974px;}
.y70{bottom:498.564010px;}
.y39{bottom:504.543298px;}
.y125{bottom:504.543471px;}
.yef{bottom:504.543989px;}
.y14a{bottom:504.544323px;}
.y177{bottom:504.976500px;}
.ya{bottom:509.337013px;}
.y1aa{bottom:510.525228px;}
.ycc{bottom:512.617769px;}
.yb4{bottom:513.508666px;}
.y6f{bottom:516.505271px;}
.y176{bottom:519.057269px;}
.y38{bottom:522.471492px;}
.y149{bottom:522.471504px;}
.y124{bottom:522.471651px;}
.yee{bottom:522.472169px;}
.y1a9{bottom:525.469482px;}
.ycb{bottom:527.562010px;}
.y103{bottom:529.114886px;}
.yb3{bottom:531.449624px;}
.y175{bottom:534.001510px;}
.y6e{bottom:534.433452px;}
.y92{bottom:540.412399px;}
.y37{bottom:540.413121px;}
.y148{bottom:540.413148px;}
.y123{bottom:540.413295px;}
.yed{bottom:540.413814px;}
.y1a8{bottom:540.414266px;}
.y102{bottom:544.059127px;}
.y174{bottom:548.096151px;}
.yb2{bottom:549.377819px;}
.y6d{bottom:552.360961px;}
.y1a7{bottom:555.358519px;}
.y91{bottom:558.340594px;}
.yec{bottom:558.341190px;}
.y36{bottom:558.341315px;}
.y147{bottom:558.341328px;}
.y122{bottom:558.341476px;}
.y173{bottom:563.040392px;}
.yb1{bottom:567.305302px;}
.y6c{bottom:570.302605px;}
.y1a6{bottom:570.302992px;}
.y9{bottom:575.095498px;}
.y90{bottom:576.268789px;}
.yeb{bottom:576.269370px;}
.y146{bottom:576.269509px;}
.y35{bottom:576.269510px;}
.y121{bottom:576.269656px;}
.y172{bottom:577.984633px;}
.yb0{bottom:585.246931px;}
.y1a5{bottom:585.247914px;}
.y6b{bottom:588.230786px;}
.y171{bottom:592.078768px;}
.y8{bottom:593.023492px;}
.y8f{bottom:594.210417px;}
.yea{bottom:594.210999px;}
.y34{bottom:594.211139px;}
.y145{bottom:594.211153px;}
.y120{bottom:594.211300px;}
.y1a4{bottom:600.192168px;}
.yaf{bottom:603.175125px;}
.y6a{bottom:606.158159px;}
.y170{bottom:607.023009px;}
.y11f{bottom:612.138468px;}
.y8e{bottom:612.138612px;}
.ye9{bottom:612.139193px;}
.y33{bottom:612.139333px;}
.y1a3{bottom:615.136724px;}
.yae{bottom:621.103320px;}
.y16f{bottom:621.103777px;}
.y69{bottom:624.099803px;}
.y11e{bottom:630.080096px;}
.y8d{bottom:630.080241px;}
.y32{bottom:630.080822px;}
.y144{bottom:630.080978px;}
.y16e{bottom:636.048018px;}
.y59{bottom:639.044679px;}
.yad{bottom:639.044949px;}
.y68{bottom:642.027984px;}
.y1a2{bottom:645.024974px;}
.y11d{bottom:648.008291px;}
.y8c{bottom:648.008435px;}
.y143{bottom:648.008830px;}
.y31{bottom:648.009016px;}
.y16d{bottom:650.142522px;}
.y58{bottom:656.972843px;}
.yac{bottom:656.972973px;}
.y67{bottom:659.956164px;}
.y1a1{bottom:659.956512px;}
.y16c{bottom:665.086763px;}
.ye8{bottom:665.935815px;}
.y11c{bottom:665.936486px;}
.y142{bottom:665.936492px;}
.y8b{bottom:665.936630px;}
.y30{bottom:665.936865px;}
.y57{bottom:674.901038px;}
.yab{bottom:674.901168px;}
.y1a0{bottom:674.901263px;}
.y66{bottom:677.897808px;}
.y16b{bottom:680.031005px;}
.ye7{bottom:683.877443px;}
.y2f{bottom:683.878114px;}
.y141{bottom:683.878136px;}
.y8a{bottom:683.878258px;}
.y19f{bottom:689.845504px;}
.y56{bottom:692.841236px;}
.yaa{bottom:692.842141px;}
.y16a{bottom:694.125277px;}
.y65{bottom:695.824451px;}
.ye6{bottom:701.805638px;}
.y2e{bottom:701.806309px;}
.y140{bottom:701.806317px;}
.y89{bottom:701.806453px;}
.y19e{bottom:704.790534px;}
.y169{bottom:709.069518px;}
.y55{bottom:710.769430px;}
.ya9{bottom:710.770336px;}
.y64{bottom:713.766079px;}
.y13f{bottom:719.733354px;}
.ye5{bottom:719.733833px;}
.y88{bottom:719.733978px;}
.y2d{bottom:719.734503px;}
.y19d{bottom:719.734775px;}
.y168{bottom:723.150241px;}
.y54{bottom:728.697595px;}
.ya8{bottom:728.698008px;}
.y7{bottom:729.616176px;}
.y63{bottom:731.694274px;}
.y19c{bottom:734.679016px;}
.y1be{bottom:734.680181px;}
.y13e{bottom:737.674999px;}
.ye4{bottom:737.675461px;}
.y2c{bottom:737.675607px;}
.y11b{bottom:737.676132px;}
.y167{bottom:738.094482px;}
.y53{bottom:746.639223px;}
.ya7{bottom:746.639636px;}
.y6{bottom:747.544371px;}
.y62{bottom:749.622469px;}
.y19b{bottom:749.623766px;}
.y1bd{bottom:749.624422px;}
.y166{bottom:752.188891px;}
.y11a{bottom:755.602683px;}
.y13d{bottom:755.603179px;}
.ye3{bottom:755.603656px;}
.y2b{bottom:755.603802px;}
.y52{bottom:764.567418px;}
.ya6{bottom:764.567831px;}
.y19a{bottom:764.568008px;}
.y1bc{bottom:764.568701px;}
.y5{bottom:765.485999px;}
.y165{bottom:767.133132px;}
.y61{bottom:767.564097px;}
.y119{bottom:773.530878px;}
.y13c{bottom:773.531359px;}
.y2a{bottom:773.531802px;}
.ye2{bottom:773.531850px;}
.y87{bottom:773.531982px;}
.y1bb{bottom:779.512942px;}
.y199{bottom:779.513129px;}
.y164{bottom:781.227545px;}
.y51{bottom:782.509047px;}
.ya5{bottom:782.509164px;}
.y60{bottom:785.492292px;}
.y86{bottom:791.472506px;}
.ye1{bottom:791.473003px;}
.y29{bottom:791.473431px;}
.y1ba{bottom:794.457183px;}
.y198{bottom:794.457370px;}
.y163{bottom:796.171786px;}
.y50{bottom:800.437241px;}
.ya4{bottom:800.437359px;}
.y5f{bottom:803.420487px;}
.y85{bottom:809.400701px;}
.ye0{bottom:809.401198px;}
.y28{bottom:809.401287px;}
.y197{bottom:809.401611px;}
.y1b9{bottom:809.402449px;}
.y162{bottom:811.116027px;}
.y4{bottom:817.148711px;}
.y4f{bottom:818.365361px;}
.ya3{bottom:818.365407px;}
.y5e{bottom:821.362115px;}
.y196{bottom:824.346224px;}
.y1b8{bottom:824.346780px;}
.y161{bottom:825.197027px;}
.y84{bottom:827.328896px;}
.ydf{bottom:827.329379px;}
.y27{bottom:827.329467px;}
.y4e{bottom:836.307036px;}
.y5d{bottom:839.290310px;}
.y195{bottom:839.290465px;}
.y1b7{bottom:839.291021px;}
.y160{bottom:840.141268px;}
.y3{bottom:844.040771px;}
.y83{bottom:845.270524px;}
.y26{bottom:845.270683px;}
.yde{bottom:845.271007px;}
.y194{bottom:854.235262px;}
.y15f{bottom:855.085509px;}
.y5c{bottom:857.218505px;}
.y82{bottom:863.198719px;}
.y25{bottom:863.198863px;}
.ydd{bottom:863.199187px;}
.y193{bottom:869.179503px;}
.y15e{bottom:869.180060px;}
.y2{bottom:870.947200px;}
.ya2{bottom:878.142953px;}
.y4d{bottom:878.142987px;}
.y24{bottom:881.126913px;}
.y15d{bottom:884.124301px;}
.y1{bottom:897.853629px;}
.y23{bottom:899.068542px;}
.y22{bottom:935.747955px;}
.h9{height:34.956725px;}
.h16{height:35.159961px;}
.h4{height:41.125608px;}
.h13{height:41.125711px;}
.ha{height:41.126128px;}
.h20{height:41.126134px;}
.h10{height:41.126191px;}
.h27{height:41.126196px;}
.h11{height:41.126231px;}
.hd{height:41.126328px;}
.h1c{height:41.126353px;}
.h25{height:41.126359px;}
.h26{height:41.126457px;}
.h1b{height:41.126553px;}
.hb{height:41.126739px;}
.h14{height:41.126770px;}
.h21{height:41.126790px;}
.hc{height:41.126905px;}
.h2d{height:41.126937px;}
.hf{height:41.127187px;}
.h2c{height:41.127439px;}
.h29{height:41.127510px;}
.h30{height:41.127619px;}
.h22{height:41.127643px;}
.h34{height:41.127682px;}
.h2b{height:41.127688px;}
.he{height:41.127708px;}
.h28{height:41.127764px;}
.h6{height:41.128209px;}
.h1e{height:41.128228px;}
.h31{height:41.128240px;}
.h1a{height:41.128291px;}
.h23{height:41.128453px;}
.h19{height:41.128893px;}
.h24{height:41.129076px;}
.h2a{height:41.129377px;}
.h7{height:41.129556px;}
.h2e{height:41.129659px;}
.h32{height:41.130061px;}
.h35{height:41.130151px;}
.h1d{height:41.130209px;}
.h33{height:41.130724px;}
.h12{height:41.131261px;}
.h15{height:41.131331px;}
.h2f{height:41.131655px;}
.h18{height:41.131817px;}
.h1f{height:41.133050px;}
.h3{height:41.364710px;}
.h5{height:49.637571px;}
.h17{height:50.426608px;}
.h8{height:63.262952px;}
.h2{height:66.184126px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x1{left:80.365490px;}
.x7{left:86.710499px;}
.x2{left:98.293490px;}
.x8{left:103.707000px;}
.x5{left:105.772476px;}
.x6{left:119.218359px;}
.x3{left:163.039490px;}
.x4{left:558.792014px;}
@media print{
.v1{vertical-align:-2.639973pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.022582pt;}
.lsa{letter-spacing:-0.021254pt;}
.lse{letter-spacing:-0.018065pt;}
.lsb{letter-spacing:-0.015940pt;}
.ls10{letter-spacing:-0.013549pt;}
.ls9{letter-spacing:-0.010627pt;}
.lsf{letter-spacing:-0.009033pt;}
.ls7{letter-spacing:-0.008501pt;}
.ls18{letter-spacing:-0.006376pt;}
.ls8{letter-spacing:-0.005313pt;}
.lsd{letter-spacing:-0.004516pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.004516pt;}
.ls1a{letter-spacing:0.005313pt;}
.ls15{letter-spacing:0.006376pt;}
.ls0{letter-spacing:0.008501pt;}
.ls5{letter-spacing:0.009033pt;}
.ls13{letter-spacing:0.013549pt;}
.lsc{letter-spacing:0.015940pt;}
.ls19{letter-spacing:0.016897pt;}
.ls16{letter-spacing:0.018420pt;}
.ls17{letter-spacing:0.018962pt;}
.ls1c{letter-spacing:0.019063pt;}
.ls12{letter-spacing:0.021254pt;}
.ls1b{letter-spacing:0.031615pt;}
.ls14{letter-spacing:0.794882pt;}
.ls1d{letter-spacing:8.549494pt;}
.ls3{letter-spacing:13.256170pt;}
.ls1{letter-spacing:13.256250pt;}
.ls2{letter-spacing:13.304262pt;}
.ws0{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.045164pt;}
.ws6{word-spacing:-0.037194pt;}
.ws4{word-spacing:-0.031880pt;}
.ws7{word-spacing:-0.031615pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:11.205121pt;}
.ws5{word-spacing:11.268350pt;}
._17{margin-left:-5.903172pt;}
._19{margin-left:-4.549306pt;}
._9{margin-left:-3.439924pt;}
._3{margin-left:-2.494145pt;}
._1{margin-left:-1.598280pt;}
._16{width:0.949607pt;}
._1d{width:6.005158pt;}
._15{width:6.949909pt;}
._13{width:7.964765pt;}
._14{width:9.245293pt;}
._c{width:10.164508pt;}
._11{width:11.368254pt;}
._5{width:12.573863pt;}
._2{width:13.617160pt;}
._7{width:15.212224pt;}
._d{width:16.149548pt;}
._8{width:17.799843pt;}
._f{width:19.037861pt;}
._10{width:20.114165pt;}
._0{width:21.245231pt;}
._a{width:22.209954pt;}
._b{width:23.126855pt;}
._e{width:24.350562pt;}
._1a{width:26.073200pt;}
._1b{width:26.965384pt;}
._1c{width:28.224757pt;}
._4{width:31.241662pt;}
._6{width:58.455653pt;}
._18{width:579.549976pt;}
._12{width:1381.264839pt;}
.fs4{font-size:45.163727pt;}
.fs1{font-size:53.133860pt;}
.fs3{font-size:63.760529pt;}
.fs5{font-size:65.487996pt;}
.fs2{font-size:74.387726pt;}
.fs0{font-size:85.014933pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:50.204660pt;}
.y20{bottom:63.488441pt;}
.y1f{bottom:76.772211pt;}
.y1e{bottom:90.055992pt;}
.y13b{bottom:97.795680pt;}
.y101{bottom:97.795860pt;}
.y192{bottom:97.796596pt;}
.y81{bottom:105.775111pt;}
.yca{bottom:105.775811pt;}
.ydc{bottom:107.839791pt;}
.y118{bottom:109.218451pt;}
.y191{bottom:111.080366pt;}
.y13a{bottom:113.743809pt;}
.y100{bottom:113.743975pt;}
.y15c{bottom:113.744462pt;}
.y1d{bottom:117.584641pt;}
.y80{bottom:121.711271pt;}
.yc9{bottom:121.711972pt;}
.ydb{bottom:123.775964pt;}
.y190{bottom:124.364136pt;}
.y117{bottom:125.154612pt;}
.y15b{bottom:127.028231pt;}
.y139{bottom:129.679969pt;}
.yff{bottom:129.680135pt;}
.y1c{bottom:130.855990pt;}
.y18f{bottom:136.892366pt;}
.y7f{bottom:137.647432pt;}
.yc8{bottom:137.648132pt;}
.yda{bottom:139.711541pt;}
.y15a{bottom:140.312001pt;}
.y116{bottom:141.102740pt;}
.y1b{bottom:144.139997pt;}
.y138{bottom:145.615140pt;}
.y4c{bottom:145.615688pt;}
.yfe{bottom:145.615880pt;}
.y18e{bottom:150.176136pt;}
.yc7{bottom:153.595105pt;}
.y7e{bottom:153.595560pt;}
.y159{bottom:153.596234pt;}
.yd9{bottom:155.659669pt;}
.y115{bottom:157.038913pt;}
.y137{bottom:161.563268pt;}
.y4b{bottom:161.563803pt;}
.yfd{bottom:161.563995pt;}
.y18d{bottom:162.704369pt;}
.y1a{bottom:165.403994pt;}
.y158{bottom:166.880004pt;}
.yc6{bottom:169.531265pt;}
.y7d{bottom:169.531720pt;}
.yd8{bottom:171.595830pt;}
.y114{bottom:172.975086pt;}
.y18c{bottom:175.988139pt;}
.y136{bottom:177.499428pt;}
.ya1{bottom:177.499833pt;}
.y4a{bottom:177.499976pt;}
.y19{bottom:178.688227pt;}
.y157{bottom:180.152592pt;}
.yc5{bottom:185.467426pt;}
.y7c{bottom:185.467880pt;}
.yd7{bottom:187.532003pt;}
.y18b{bottom:188.504234pt;}
.y113{bottom:188.923200pt;}
.y18{bottom:191.971997pt;}
.y5b{bottom:192.464235pt;}
.y135{bottom:193.435589pt;}
.y49{bottom:193.435878pt;}
.ya0{bottom:193.436007pt;}
.y156{bottom:193.436362pt;}
.yfc{bottom:198.751993pt;}
.yc4{bottom:201.415554pt;}
.y7b{bottom:201.415972pt;}
.y18a{bottom:201.788004pt;}
.yd6{bottom:203.479835pt;}
.y112{bottom:204.859373pt;}
.y17{bottom:205.243990pt;}
.y5a{bottom:205.748005pt;}
.y155{bottom:206.720132pt;}
.y9f{bottom:209.382481pt;}
.y134{bottom:209.383717pt;}
.y48{bottom:209.383969pt;}
.y189{bottom:214.316452pt;}
.yc3{bottom:217.351714pt;}
.y7a{bottom:217.352132pt;}
.yd5{bottom:219.416008pt;}
.y154{bottom:220.004234pt;}
.y111{bottom:220.795546pt;}
.y9e{bottom:225.318654pt;}
.y133{bottom:225.319877pt;}
.y47{bottom:225.320129pt;}
.y188{bottom:227.600222pt;}
.yc2{bottom:233.287874pt;}
.y153{bottom:233.288004pt;}
.yd4{bottom:235.363657pt;}
.y110{bottom:236.743661pt;}
.y16{bottom:240.211254pt;}
.y187{bottom:240.883992pt;}
.y46{bottom:241.266302pt;}
.y9d{bottom:241.266768pt;}
.y132{bottom:241.268005pt;}
.yc1{bottom:249.235836pt;}
.yd3{bottom:251.299830pt;}
.y10f{bottom:252.679834pt;}
.y186{bottom:253.412234pt;}
.y79{bottom:254.539612pt;}
.y15{bottom:256.147400pt;}
.y45{bottom:257.202475pt;}
.yfb{bottom:257.202612pt;}
.y9c{bottom:257.202941pt;}
.y131{bottom:257.203717pt;}
.yc0{bottom:265.171996pt;}
.y185{bottom:266.696004pt;}
.yd2{bottom:267.235872pt;}
.y152{bottom:267.823995pt;}
.y10e{bottom:268.616007pt;}
.y14{bottom:272.095528pt;}
.y44{bottom:273.138648pt;}
.yfa{bottom:273.138785pt;}
.y9b{bottom:273.139114pt;}
.y130{bottom:273.139878pt;}
.y78{bottom:273.140136pt;}
.y184{bottom:279.212591pt;}
.ybf{bottom:281.107273pt;}
.yd1{bottom:283.184000pt;}
.y10d{bottom:284.562961pt;}
.y13{bottom:288.031701pt;}
.y43{bottom:289.086762pt;}
.yf9{bottom:289.086899pt;}
.y9a{bottom:289.087229pt;}
.y12f{bottom:289.087550pt;}
.y183{bottom:292.496361pt;}
.y1b6{bottom:294.392223pt;}
.ybe{bottom:297.055401pt;}
.y10c{bottom:300.499107pt;}
.y12{bottom:303.967874pt;}
.y42{bottom:305.022935pt;}
.yf8{bottom:305.023072pt;}
.y99{bottom:305.023402pt;}
.y12e{bottom:305.023710pt;}
.y182{bottom:305.780131pt;}
.y1b5{bottom:307.676004pt;}
.ybd{bottom:312.991562pt;}
.y10b{bottom:316.447235pt;}
.y181{bottom:318.308229pt;}
.y11{bottom:319.915989pt;}
.yd0{bottom:320.371464pt;}
.y41{bottom:320.959108pt;}
.yf7{bottom:320.959245pt;}
.y98{bottom:320.959575pt;}
.y12d{bottom:320.959871pt;}
.y1b4{bottom:320.960432pt;}
.ybc{bottom:328.927722pt;}
.y77{bottom:331.590951pt;}
.y180{bottom:331.591999pt;}
.y10a{bottom:332.383408pt;}
.y1b3{bottom:334.244214pt;}
.y10{bottom:335.851425pt;}
.y40{bottom:336.907222pt;}
.yf6{bottom:336.907359pt;}
.y12c{bottom:336.907552pt;}
.y97{bottom:336.907689pt;}
.y151{bottom:336.909558pt;}
.ycf{bottom:338.972004pt;}
.y17f{bottom:344.120853pt;}
.ybb{bottom:344.875850pt;}
.y76{bottom:347.527112pt;}
.y1b2{bottom:347.527995pt;}
.y109{bottom:348.319581pt;}
.y150{bottom:350.193328pt;}
.yf{bottom:351.787598pt;}
.y3f{bottom:352.843395pt;}
.yf5{bottom:352.843532pt;}
.y12b{bottom:352.843712pt;}
.y96{bottom:352.843862pt;}
.y17e{bottom:357.404623pt;}
.yba{bottom:360.811240pt;}
.y1b1{bottom:360.812207pt;}
.y75{bottom:363.475240pt;}
.y14f{bottom:363.477098pt;}
.y108{bottom:364.267696pt;}
.ye{bottom:367.735712pt;}
.y3e{bottom:368.779568pt;}
.yf4{bottom:368.779705pt;}
.y12a{bottom:368.779872pt;}
.y95{bottom:368.780035pt;}
.y17d{bottom:370.675984pt;}
.y1b0{bottom:374.095988pt;}
.yb9{bottom:376.759354pt;}
.y14e{bottom:376.760868pt;}
.y74{bottom:379.411400pt;}
.y107{bottom:380.203869pt;}
.y17c{bottom:383.204472pt;}
.yd{bottom:383.671859pt;}
.y3d{bottom:384.727683pt;}
.yf3{bottom:384.727820pt;}
.y129{bottom:384.727987pt;}
.y94{bottom:384.728149pt;}
.y1af{bottom:387.380127pt;}
.y14d{bottom:390.032229pt;}
.yb8{bottom:392.695527pt;}
.y73{bottom:395.347560pt;}
.y106{bottom:396.139719pt;}
.y17b{bottom:396.488242pt;}
.yce{bottom:397.412034pt;}
.yc{bottom:399.619973pt;}
.y128{bottom:400.662636pt;}
.yf2{bottom:400.663573pt;}
.y3c{bottom:400.663856pt;}
.y1ae{bottom:400.664452pt;}
.y14c{bottom:403.315999pt;}
.yb7{bottom:408.631700pt;}
.y17a{bottom:409.772012pt;}
.y72{bottom:411.295689pt;}
.y105{bottom:412.087834pt;}
.ycd{bottom:413.360148pt;}
.y1ad{bottom:413.948234pt;}
.yb{bottom:415.556146pt;}
.y127{bottom:416.598796pt;}
.yf1{bottom:416.599733pt;}
.y3b{bottom:416.600016pt;}
.y93{bottom:421.916015pt;}
.y179{bottom:422.300460pt;}
.yb6{bottom:424.579815pt;}
.y71{bottom:427.231849pt;}
.y1ac{bottom:427.232015pt;}
.y104{bottom:428.024007pt;}
.y3a{bottom:432.546758pt;}
.y126{bottom:432.546925pt;}
.y14b{bottom:432.547682pt;}
.yf0{bottom:432.547848pt;}
.y178{bottom:435.584230pt;}
.yb5{bottom:440.515988pt;}
.y1ab{bottom:440.516422pt;}
.y70{bottom:443.168009pt;}
.y39{bottom:448.482931pt;}
.y125{bottom:448.483085pt;}
.yef{bottom:448.483546pt;}
.y14a{bottom:448.483842pt;}
.y177{bottom:448.868000pt;}
.ya{bottom:452.744011pt;}
.y1aa{bottom:453.800203pt;}
.ycc{bottom:455.660239pt;}
.yb4{bottom:456.452148pt;}
.y6f{bottom:459.115797pt;}
.y176{bottom:461.384239pt;}
.y38{bottom:464.419104pt;}
.y149{bottom:464.419114pt;}
.y124{bottom:464.419245pt;}
.yee{bottom:464.419706pt;}
.y1a9{bottom:467.083984pt;}
.ycb{bottom:468.944009pt;}
.y103{bottom:470.324343pt;}
.yb3{bottom:472.399666pt;}
.y175{bottom:474.668009pt;}
.y6e{bottom:475.051957pt;}
.y92{bottom:480.366577pt;}
.y37{bottom:480.367218pt;}
.y148{bottom:480.367243pt;}
.y123{bottom:480.367373pt;}
.yed{bottom:480.367834pt;}
.y1a8{bottom:480.368236pt;}
.y102{bottom:483.608113pt;}
.y174{bottom:487.196579pt;}
.yb2{bottom:488.335839pt;}
.y6d{bottom:490.987521pt;}
.y1a7{bottom:493.652017pt;}
.y91{bottom:496.302750pt;}
.yec{bottom:496.303280pt;}
.y36{bottom:496.303391pt;}
.y147{bottom:496.303403pt;}
.y122{bottom:496.303534pt;}
.y173{bottom:500.480349pt;}
.yb1{bottom:504.271380pt;}
.y6c{bottom:506.935649pt;}
.y1a6{bottom:506.935993pt;}
.y9{bottom:511.195998pt;}
.y90{bottom:512.238923pt;}
.yeb{bottom:512.239440pt;}
.y146{bottom:512.239563pt;}
.y35{bottom:512.239565pt;}
.y121{bottom:512.239694pt;}
.y172{bottom:513.764119pt;}
.yb0{bottom:520.219494pt;}
.y1a5{bottom:520.220368pt;}
.y6b{bottom:522.871810pt;}
.y171{bottom:526.292238pt;}
.y8{bottom:527.131993pt;}
.y8f{bottom:528.187038pt;}
.yea{bottom:528.187554pt;}
.y34{bottom:528.187679pt;}
.y145{bottom:528.187691pt;}
.y120{bottom:528.187822pt;}
.y1a4{bottom:533.504149pt;}
.yaf{bottom:536.155667pt;}
.y6a{bottom:538.807253pt;}
.y170{bottom:539.576008pt;}
.y11f{bottom:544.123082pt;}
.y8e{bottom:544.123211pt;}
.ye9{bottom:544.123727pt;}
.y33{bottom:544.123852pt;}
.y1a3{bottom:546.788199pt;}
.yae{bottom:552.091840pt;}
.y16f{bottom:552.092246pt;}
.y69{bottom:554.755381pt;}
.y11e{bottom:560.071197pt;}
.y8d{bottom:560.071325pt;}
.y32{bottom:560.071842pt;}
.y144{bottom:560.071980pt;}
.y16e{bottom:565.376016pt;}
.y59{bottom:568.039715pt;}
.yad{bottom:568.039954pt;}
.y68{bottom:570.691541pt;}
.y1a2{bottom:573.355532pt;}
.y11d{bottom:576.007370pt;}
.y8c{bottom:576.007498pt;}
.y143{bottom:576.007849pt;}
.y31{bottom:576.008015pt;}
.y16d{bottom:577.904464pt;}
.y58{bottom:583.975861pt;}
.yac{bottom:583.975976pt;}
.y67{bottom:586.627701pt;}
.y1a1{bottom:586.628011pt;}
.y16c{bottom:591.188234pt;}
.ye8{bottom:591.942946pt;}
.y11c{bottom:591.943543pt;}
.y142{bottom:591.943548pt;}
.y8b{bottom:591.943671pt;}
.y30{bottom:591.943880pt;}
.y57{bottom:599.912034pt;}
.yab{bottom:599.912149pt;}
.y1a0{bottom:599.912234pt;}
.y66{bottom:602.575830pt;}
.y16b{bottom:604.472004pt;}
.ye7{bottom:607.891061pt;}
.y2f{bottom:607.891657pt;}
.y141{bottom:607.891677pt;}
.y8a{bottom:607.891785pt;}
.y19f{bottom:613.196004pt;}
.y56{bottom:615.858876pt;}
.yaa{bottom:615.859681pt;}
.y16a{bottom:617.000246pt;}
.y65{bottom:618.510623pt;}
.ye6{bottom:623.827234pt;}
.y2e{bottom:623.827830pt;}
.y140{bottom:623.827837pt;}
.y89{bottom:623.827958pt;}
.y19e{bottom:626.480475pt;}
.y169{bottom:630.284016pt;}
.y55{bottom:631.795049pt;}
.ya9{bottom:631.795854pt;}
.y64{bottom:634.458737pt;}
.y13f{bottom:639.762982pt;}
.ye5{bottom:639.763407pt;}
.y88{bottom:639.763536pt;}
.y2d{bottom:639.764003pt;}
.y19d{bottom:639.764244pt;}
.y168{bottom:642.800214pt;}
.y54{bottom:647.731195pt;}
.ya8{bottom:647.731562pt;}
.y7{bottom:648.547712pt;}
.y63{bottom:650.394910pt;}
.y19c{bottom:653.048014pt;}
.y1be{bottom:653.049049pt;}
.y13e{bottom:655.711110pt;}
.ye4{bottom:655.711521pt;}
.y2c{bottom:655.711651pt;}
.y11b{bottom:655.712117pt;}
.y167{bottom:656.083984pt;}
.y53{bottom:663.679310pt;}
.ya7{bottom:663.679677pt;}
.y6{bottom:664.483885pt;}
.y62{bottom:666.331083pt;}
.y19b{bottom:666.332237pt;}
.y1bd{bottom:666.332819pt;}
.y166{bottom:668.612347pt;}
.y11a{bottom:671.646829pt;}
.y13d{bottom:671.647270pt;}
.ye3{bottom:671.647694pt;}
.y2b{bottom:671.647824pt;}
.y52{bottom:679.615483pt;}
.ya6{bottom:679.615850pt;}
.y19a{bottom:679.616007pt;}
.y1bc{bottom:679.616623pt;}
.y5{bottom:680.431999pt;}
.y165{bottom:681.896117pt;}
.y61{bottom:682.279198pt;}
.y119{bottom:687.583002pt;}
.y13c{bottom:687.583431pt;}
.y2a{bottom:687.583824pt;}
.ye2{bottom:687.583867pt;}
.y87{bottom:687.583984pt;}
.y1bb{bottom:692.900393pt;}
.y199{bottom:692.900559pt;}
.y164{bottom:694.424484pt;}
.y51{bottom:695.563597pt;}
.ya5{bottom:695.563701pt;}
.y60{bottom:698.215371pt;}
.y86{bottom:703.531117pt;}
.ye1{bottom:703.531559pt;}
.y29{bottom:703.531938pt;}
.y1ba{bottom:706.184163pt;}
.y198{bottom:706.184329pt;}
.y163{bottom:707.708254pt;}
.y50{bottom:711.499770pt;}
.ya4{bottom:711.499874pt;}
.y5f{bottom:714.151544pt;}
.y85{bottom:719.467290pt;}
.ye0{bottom:719.467732pt;}
.y28{bottom:719.467810pt;}
.y197{bottom:719.468099pt;}
.y1b9{bottom:719.468844pt;}
.y162{bottom:720.992024pt;}
.y4{bottom:726.354410pt;}
.y4f{bottom:727.435877pt;}
.ya3{bottom:727.435918pt;}
.y5e{bottom:730.099658pt;}
.y196{bottom:732.752199pt;}
.y1b8{bottom:732.752693pt;}
.y161{bottom:733.508468pt;}
.y84{bottom:735.403463pt;}
.ydf{bottom:735.403892pt;}
.y27{bottom:735.403971pt;}
.y4e{bottom:743.384032pt;}
.y5d{bottom:746.035831pt;}
.y195{bottom:746.035969pt;}
.y1b7{bottom:746.036463pt;}
.y160{bottom:746.792238pt;}
.y3{bottom:750.258463pt;}
.y83{bottom:751.351577pt;}
.y26{bottom:751.351718pt;}
.yde{bottom:751.352006pt;}
.y194{bottom:759.320233pt;}
.y15f{bottom:760.076008pt;}
.y5c{bottom:761.972004pt;}
.y82{bottom:767.287750pt;}
.y25{bottom:767.287878pt;}
.ydd{bottom:767.288167pt;}
.y193{bottom:772.604003pt;}
.y15e{bottom:772.604498pt;}
.y2{bottom:774.175289pt;}
.ya2{bottom:780.571514pt;}
.y4d{bottom:780.571544pt;}
.y24{bottom:783.223923pt;}
.y15d{bottom:785.888267pt;}
.y1{bottom:798.092115pt;}
.y23{bottom:799.172037pt;}
.y22{bottom:831.775960pt;}
.h9{height:31.072644pt;}
.h16{height:31.253299pt;}
.h4{height:36.556096pt;}
.h13{height:36.556188pt;}
.ha{height:36.556558pt;}
.h20{height:36.556564pt;}
.h10{height:36.556614pt;}
.h27{height:36.556619pt;}
.h11{height:36.556649pt;}
.hd{height:36.556736pt;}
.h1c{height:36.556759pt;}
.h25{height:36.556764pt;}
.h26{height:36.556851pt;}
.h1b{height:36.556936pt;}
.hb{height:36.557101pt;}
.h14{height:36.557129pt;}
.h21{height:36.557147pt;}
.hc{height:36.557249pt;}
.h2d{height:36.557277pt;}
.hf{height:36.557500pt;}
.h2c{height:36.557724pt;}
.h29{height:36.557787pt;}
.h30{height:36.557884pt;}
.h22{height:36.557905pt;}
.h34{height:36.557939pt;}
.h2b{height:36.557945pt;}
.he{height:36.557963pt;}
.h28{height:36.558013pt;}
.h6{height:36.558408pt;}
.h1e{height:36.558425pt;}
.h31{height:36.558435pt;}
.h1a{height:36.558481pt;}
.h23{height:36.558625pt;}
.h19{height:36.559016pt;}
.h24{height:36.559179pt;}
.h2a{height:36.559446pt;}
.h7{height:36.559605pt;}
.h2e{height:36.559697pt;}
.h32{height:36.560054pt;}
.h35{height:36.560134pt;}
.h1d{height:36.560186pt;}
.h33{height:36.560644pt;}
.h12{height:36.561121pt;}
.h15{height:36.561183pt;}
.h2f{height:36.561471pt;}
.h18{height:36.561615pt;}
.h1f{height:36.562711pt;}
.h3{height:36.768631pt;}
.h5{height:44.122286pt;}
.h17{height:44.823652pt;}
.h8{height:56.233735pt;}
.h2{height:58.830334pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x1{left:71.435991pt;}
.x7{left:77.075999pt;}
.x2{left:87.371991pt;}
.x8{left:92.184000pt;}
.x5{left:94.019979pt;}
.x6{left:105.971874pt;}
.x3{left:144.923991pt;}
.x4{left:496.704013pt;}
}




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