
    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_2539da9a09bf7d8e736393a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.149000;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_422191c757c214b84ad389b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.141000;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_c7eb77c554af738c63acc2a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783000;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_3c156e313bfb901a7989a883.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.777000;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_2326b16c719c254769f6a638.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_5fd2d643e339a802278b55a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675781;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);}
.v4{vertical-align:-26.893129px;}
.v2{vertical-align:-20.771992px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.773192px;}
.v1{vertical-align:26.898709px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000054px;}
.ls13{letter-spacing:0.000180px;}
.ls7{letter-spacing:0.002355px;}
.ls23{letter-spacing:0.002530px;}
.ls5{letter-spacing:0.004230px;}
.ls0{letter-spacing:0.005220px;}
.ls25{letter-spacing:0.021168px;}
.ls20{letter-spacing:0.022822px;}
.ls19{letter-spacing:0.028374px;}
.ls18{letter-spacing:0.033954px;}
.ls22{letter-spacing:0.042461px;}
.ls24{letter-spacing:0.054948px;}
.ls1e{letter-spacing:13.354003px;}
.ls8{letter-spacing:14.171694px;}
.lsa{letter-spacing:14.357694px;}
.ls1b{letter-spacing:14.818471px;}
.lsb{letter-spacing:15.053694px;}
.lsf{letter-spacing:15.383694px;}
.lsd{letter-spacing:15.743694px;}
.ls9{letter-spacing:17.051693px;}
.ls10{letter-spacing:17.201693px;}
.ls1d{letter-spacing:19.628681px;}
.ls1c{letter-spacing:20.326180px;}
.ls3{letter-spacing:20.368360px;}
.ls1f{letter-spacing:20.370487px;}
.ls1a{letter-spacing:20.373307px;}
.ls21{letter-spacing:20.373874px;}
.ls12{letter-spacing:20.374000px;}
.lse{letter-spacing:20.471692px;}
.ls14{letter-spacing:20.567479px;}
.ls17{letter-spacing:22.545279px;}
.ls16{letter-spacing:23.201691px;}
.ls4{letter-spacing:23.837360px;}
.ls15{letter-spacing:29.888677px;}
.ls11{letter-spacing:40.741619px;}
.lsc{letter-spacing:40.746254px;}
.ls6{letter-spacing:40.851812px;}
.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;}
}
.ws5{word-spacing:-20.371492px;}
.wsa{word-spacing:-18.519593px;}
.ws30{word-spacing:-15.760194px;}
.ws2{word-spacing:-15.741594px;}
.ws1{word-spacing:-15.278694px;}
.ws4{word-spacing:-14.260059px;}
.ws11{word-spacing:-13.889664px;}
.ws31{word-spacing:-11.819185px;}
.ws35{word-spacing:-11.806225px;}
.ws37{word-spacing:-0.886795px;}
.wse{word-spacing:-0.002953px;}
.ws3{word-spacing:0.000000px;}
.ws19{word-spacing:0.004875px;}
.ws33{word-spacing:1.145028px;}
.ws40{word-spacing:2.160211px;}
.ws41{word-spacing:2.161218px;}
.ws2f{word-spacing:2.313398px;}
.ws26{word-spacing:2.499398px;}
.ws17{word-spacing:3.070785px;}
.ws10{word-spacing:3.070790px;}
.ws2b{word-spacing:3.114164px;}
.ws14{word-spacing:3.117398px;}
.ws3f{word-spacing:3.131794px;}
.ws3d{word-spacing:3.132820px;}
.ws3e{word-spacing:3.133614px;}
.ws2d{word-spacing:3.179411px;}
.ws7{word-spacing:3.588446px;}
.ws2e{word-spacing:3.908248px;}
.ws1a{word-spacing:3.944248px;}
.ws36{word-spacing:4.041397px;}
.ws46{word-spacing:4.224316px;}
.ws9{word-spacing:4.641353px;}
.wsc{word-spacing:4.717906px;}
.wsd{word-spacing:4.723906px;}
.ws20{word-spacing:4.724248px;}
.ws42{word-spacing:4.911993px;}
.ws34{word-spacing:5.048248px;}
.ws0{word-spacing:5.097523px;}
.ws32{word-spacing:5.216248px;}
.ws1c{word-spacing:5.336248px;}
.ws1f{word-spacing:5.402248px;}
.ws44{word-spacing:5.537571px;}
.ws25{word-spacing:5.552248px;}
.ws2a{word-spacing:5.594248px;}
.ws45{word-spacing:5.658171px;}
.ws15{word-spacing:5.684248px;}
.ws38{word-spacing:5.857971px;}
.ws22{word-spacing:6.111073px;}
.ws6{word-spacing:6.111445px;}
.ws3c{word-spacing:6.114610px;}
.ws12{word-spacing:6.120587px;}
.ws2c{word-spacing:6.120675px;}
.ws24{word-spacing:7.137672px;}
.ws27{word-spacing:7.178247px;}
.ws28{word-spacing:7.724247px;}
.ws1e{word-spacing:7.809709px;}
.ws43{word-spacing:8.023970px;}
.ws39{word-spacing:8.296623px;}
.ws21{word-spacing:8.324472px;}
.wsb{word-spacing:8.365905px;}
.ws29{word-spacing:9.482246px;}
.ws16{word-spacing:10.340246px;}
.ws3b{word-spacing:11.557343px;}
.ws1d{word-spacing:11.881503px;}
.ws3a{word-spacing:16.459515px;}
.ws1b{word-spacing:21.626241px;}
.ws13{word-spacing:23.391066px;}
.ws18{word-spacing:26.479637px;}
.ws23{word-spacing:26.497354px;}
.ws8{word-spacing:897.258241px;}
.wsf{word-spacing:901.704239px;}
._0{margin-left:-10.512097px;}
._3{margin-left:-9.045513px;}
._1d{margin-left:-7.496986px;}
._2{margin-left:-6.034180px;}
._8{margin-left:-4.655740px;}
._9{margin-left:-3.311960px;}
._1{margin-left:-2.263007px;}
._a{margin-left:-1.016163px;}
._6{width:1.259781px;}
._c{width:2.263520px;}
._4{width:4.030578px;}
._7{width:5.271967px;}
._14{width:7.279247px;}
._5{width:8.440202px;}
._b{width:9.615507px;}
._f{width:11.408035px;}
._17{width:12.874783px;}
._1b{width:14.097072px;}
._10{width:15.726955px;}
._16{width:16.867432px;}
._19{width:18.133997px;}
._18{width:21.431787px;}
._1c{width:23.142096px;}
._15{width:24.201251px;}
._13{width:26.198046px;}
._e{width:30.777954px;}
._1e{width:32.952815px;}
._11{width:35.611127px;}
._d{width:40.168299px;}
._12{width:47.807888px;}
._1a{width:58.772000px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:44.076582px;}
.fs8{font-size:44.128422px;}
.fsa{font-size:47.224901px;}
.fs9{font-size:47.276741px;}
.fs5{font-size:55.558658px;}
.fs4{font-size:57.040237px;}
.fs1{font-size:61.114776px;}
.fs2{font-size:62.966375px;}
.fs7{font-size:63.040775px;}
.fs3{font-size:74.078370px;}
.fs0{font-size:81.485967px;}
.fsb{font-size:103.709359px;}
.y0{bottom:0.000000px;}
.y1{bottom:1.603125px;}
.y90{bottom:83.882741px;}
.y68{bottom:91.783088px;}
.y3f{bottom:118.051977px;}
.y119{bottom:118.989636px;}
.yd8{bottom:118.993827px;}
.yf9{bottom:118.995477px;}
.y65{bottom:118.999677px;}
.y18{bottom:120.039176px;}
.y8d{bottom:124.181725px;}
.y138{bottom:134.761820px;}
.y3e{bottom:137.587669px;}
.yd7{bottom:138.528019px;}
.yf8{bottom:138.531169px;}
.y118{bottom:138.532969px;}
.y64{bottom:138.534619px;}
.y8c{bottom:138.545119px;}
.y15a{bottom:140.288598px;}
.yb7{bottom:143.719367px;}
.y17{bottom:144.607817px;}
.y3d{bottom:157.123362px;}
.yf7{bottom:158.066861px;}
.y117{bottom:158.068661px;}
.y63{bottom:158.068811px;}
.y8b{bottom:158.079311px;}
.y137{bottom:158.612966px;}
.yb6{bottom:163.258809px;}
.y159{bottom:164.183589px;}
.y16{bottom:169.176457px;}
.y17d{bottom:176.810572px;}
.y116{bottom:177.603603px;}
.y62{bottom:177.605103px;}
.yd6{bottom:177.607803px;}
.y8a{bottom:177.615603px;}
.y3c{bottom:181.851302px;}
.y136{bottom:182.507956px;}
.yb5{bottom:182.794801px;}
.y158{bottom:188.079929px;}
.y15{bottom:193.742997px;}
.y3b{bottom:196.200596px;}
.y17c{bottom:196.249158px;}
.yf6{bottom:197.131955px;}
.yd5{bottom:197.144096px;}
.y89{bottom:197.149795px;}
.yb4{bottom:202.335293px;}
.y61{bottom:202.336793px;}
.y135{bottom:206.404297px;}
.y157{bottom:211.976270px;}
.yf5{bottom:216.673947px;}
.yb3{bottom:216.680838px;}
.y88{bottom:216.686088px;}
.y115{bottom:216.689903px;}
.y60{bottom:216.691488px;}
.y14{bottom:218.311637px;}
.y3a{bottom:220.929286px;}
.yd4{bottom:221.872786px;}
.y134{bottom:230.299287px;}
.y17b{bottom:235.147443px;}
.y39{bottom:235.278280px;}
.y156{bottom:235.871260px;}
.y114{bottom:236.131246px;}
.yf4{bottom:236.203930px;}
.yd3{bottom:236.217580px;}
.y87{bottom:236.220280px;}
.y5f{bottom:236.226430px;}
.yb2{bottom:241.411778px;}
.y13{bottom:242.880277px;}
.y133{bottom:254.195628px;}
.y17a{bottom:254.597982px;}
.y38{bottom:254.814572px;}
.y113{bottom:255.572588px;}
.yf3{bottom:255.745922px;}
.y86{bottom:255.756572px;}
.yb1{bottom:255.761822px;}
.y5e{bottom:255.762122px;}
.y155{bottom:259.767600px;}
.yd2{bottom:260.949270px;}
.y179{bottom:274.037974px;}
.y112{bottom:275.012580px;}
.yf2{bottom:275.289264px;}
.yd1{bottom:275.294964px;}
.y5d{bottom:275.297064px;}
.yb0{bottom:275.298114px;}
.y132{bottom:278.090618px;}
.y37{bottom:279.544763px;}
.y85{bottom:280.488262px;}
.y178{bottom:293.488457px;}
.y36{bottom:293.890307px;}
.y111{bottom:294.559457px;}
.y154{bottom:294.765586px;}
.yf1{bottom:294.817906px;}
.yaf{bottom:294.833806px;}
.y84{bottom:300.025754px;}
.y5c{bottom:300.027254px;}
.y131{bottom:301.986959px;}
.y12{bottom:307.705301px;}
.y177{bottom:312.929799px;}
.y35{bottom:313.427949px;}
.y110{bottom:314.095749px;}
.yf0{bottom:314.359899px;}
.yd0{bottom:314.370549px;}
.y5b{bottom:314.376249px;}
.y83{bottom:314.380599px;}
.y153{bottom:318.660577px;}
.yae{bottom:319.561747px;}
.y130{bottom:325.881949px;}
.y176{bottom:332.378229px;}
.y10f{bottom:333.632041px;}
.yef{bottom:333.903241px;}
.yad{bottom:333.912091px;}
.y5a{bottom:333.912541px;}
.y82{bottom:333.914791px;}
.y34{bottom:338.157239px;}
.ycf{bottom:339.102239px;}
.y152{bottom:342.539337px;}
.y11{bottom:347.956435px;}
.y12f{bottom:349.778289px;}
.y175{bottom:351.820321px;}
.yac{bottom:353.447783px;}
.yce{bottom:353.447933px;}
.y81{bottom:353.451083px;}
.y10e{bottom:358.362231px;}
.yee{bottom:358.639731px;}
.y59{bottom:358.641231px;}
.y139{bottom:367.851227px;}
.y10{bottom:368.089727px;}
.y174{bottom:371.275023px;}
.y80{bottom:372.986775px;}
.yed{bottom:372.991425px;}
.y12e{bottom:373.673280px;}
.yab{bottom:378.178723px;}
.y58{bottom:378.180223px;}
.yf{bottom:388.223769px;}
.y173{bottom:390.716365px;}
.yaa{bottom:392.525017px;}
.yec{bottom:392.527717px;}
.ycd{bottom:392.537467px;}
.y12d{bottom:397.569620px;}
.y7f{bottom:397.714715px;}
.y40{bottom:398.736215px;}
.ye{bottom:408.357061px;}
.y32{bottom:408.670351px;}
.y172{bottom:410.156357px;}
.yeb{bottom:412.061910px;}
.ycc{bottom:412.073160px;}
.y151{bottom:414.206009px;}
.ya9{bottom:417.255207px;}
.y10d{bottom:419.412702px;}
.yd{bottom:428.491703px;}
.y171{bottom:429.611059px;}
.ya8{bottom:431.601802px;}
.ycb{bottom:431.608102px;}
.yea{bottom:436.792700px;}
.y150{bottom:438.100999px;}
.y31{bottom:443.664827px;}
.y12c{bottom:445.342051px;}
.y56{bottom:447.373485px;}
.y170{bottom:449.053151px;}
.ya7{bottom:451.137494px;}
.yca{bottom:451.144394px;}
.y10c{bottom:454.400143px;}
.y66{bottom:454.893192px;}
.y7e{bottom:456.427437px;}
.y14f{bottom:461.997340px;}
.y30{bottom:467.561917px;}
.y16f{bottom:468.492393px;}
.yc{bottom:468.742837px;}
.y8e{bottom:469.707186px;}
.yc9{bottom:470.680686px;}
.y55{bottom:471.268476px;}
.ya6{bottom:475.869184px;}
.y7d{bottom:480.322427px;}
.y14e{bottom:485.892330px;}
.y16e{bottom:487.952064px;}
.y10b{bottom:489.398129px;}
.yc8{bottom:490.214878px;}
.ya5{bottom:490.217278px;}
.y2f{bottom:491.456908px;}
.y54{bottom:495.164816px;}
.y7c{bottom:504.218768px;}
.y12b{bottom:504.235028px;}
.y16d{bottom:507.393406px;}
.ye9{bottom:507.929691px;}
.ya4{bottom:509.751470px;}
.y14d{bottom:509.788670px;}
.y10a{bottom:513.294469px;}
.yc7{bottom:514.944168px;}
.y2e{bottom:526.449974px;}
.y16c{bottom:526.834748px;}
.y7b{bottom:528.115108px;}
.yb{bottom:529.126513px;}
.ya3{bottom:529.287163px;}
.y53{bottom:530.162802px;}
.ye8{bottom:531.824637px;}
.y14c{bottom:533.658911px;}
.y12a{bottom:539.232414px;}
.y16b{bottom:546.274740px;}
.y109{bottom:548.292455px;}
.ya{bottom:549.261155px;}
.y2d{bottom:550.344964px;}
.ye7{bottom:555.719627px;}
.y14b{bottom:557.553901px;}
.y129{bottom:563.104949px;}
.y7a{bottom:563.113094px;}
.y52{bottom:565.160788px;}
.y16a{bottom:565.709098px;}
.y108{bottom:572.187445px;}
.y2c{bottom:574.235725px;}
.yc6{bottom:579.606728px;}
.y14a{bottom:581.450242px;}
.ya2{bottom:585.929705px;}
.y128{bottom:586.999940px;}
.y79{bottom:587.008085px;}
.y51{bottom:589.043824px;}
.y9{bottom:589.512289px;}
.ye6{bottom:590.709888px;}
.y107{bottom:596.083786px;}
.y2b{bottom:598.120155px;}
.yc5{bottom:603.487003px;}
.y169{bottom:604.606633px;}
.y149{bottom:605.346582px;}
.y8{bottom:609.644831px;}
.y78{bottom:610.884745px;}
.y127{bottom:610.896280px;}
.y50{bottom:612.940164px;}
.ya1{bottom:613.330494px;}
.ye5{bottom:614.606229px;}
.y8f{bottom:619.104127px;}
.y67{bottom:619.816626px;}
.y106{bottom:619.977576px;}
.y2a{bottom:621.974316px;}
.y7{bottom:629.779472px;}
.y126{bottom:634.791270px;}
.y4f{bottom:636.835155px;}
.yc4{bottom:638.484989px;}
.ye4{bottom:638.501219px;}
.ya0{bottom:640.729183px;}
.y29{bottom:645.870656px;}
.y77{bottom:645.884231px;}
.y148{bottom:653.116913px;}
.y105{bottom:654.977062px;}
.yc3{bottom:662.381329px;}
.y9f{bottom:668.139122px;}
.y28{bottom:669.765646px;}
.y76{bottom:669.779221px;}
.y125{bottom:669.791356px;}
.y6{bottom:670.030606px;}
.y4e{bottom:671.781811px;}
.y168{bottom:671.783806px;}
.ye3{bottom:673.504215px;}
.y104{bottom:678.872053px;}
.y147{bottom:688.114899px;}
.y124{bottom:693.647272px;}
.y27{bottom:693.661987px;}
.y75{bottom:693.676312px;}
.y9e{bottom:695.547891px;}
.y4d{bottom:695.676801px;}
.y167{bottom:695.678796px;}
.yc2{bottom:697.379315px;}
.ye2{bottom:708.505126px;}
.y146{bottom:712.011240px;}
.y103{bottom:713.870039px;}
.y123{bottom:717.543612px;}
.y26{bottom:717.558327px;}
.y74{bottom:717.571302px;}
.y4c{bottom:719.573892px;}
.y166{bottom:719.575137px;}
.yc1{bottom:721.275656px;}
.y9d{bottom:722.946580px;}
.ye1{bottom:732.400116px;}
.y102{bottom:737.766379px;}
.y122{bottom:741.438603px;}
.y73{bottom:741.455688px;}
.y4b{bottom:743.468132px;}
.y165{bottom:743.470127px;}
.yc0{bottom:745.174861px;}
.y145{bottom:747.009226px;}
.y9c{bottom:750.356549px;}
.y25{bottom:752.556313px;}
.y121{bottom:765.334943px;}
.y72{bottom:765.352028px;}
.y164{bottom:767.366467px;}
.y144{bottom:770.905566px;}
.y101{bottom:772.772810px;}
.y24{bottom:776.451304px;}
.y9b{bottom:777.764403px;}
.y4a{bottom:778.468218px;}
.ybf{bottom:780.171452px;}
.y71{bottom:789.223049px;}
.y120{bottom:789.229934px;}
.y163{bottom:791.262808px;}
.y143{bottom:794.800556px;}
.y5{bottom:795.172556px;}
.y23{bottom:800.347644px;}
.y49{bottom:802.363208px;}
.ybe{bottom:804.066443px;}
.ye0{bottom:804.066788px;}
.y9a{bottom:805.173607px;}
.y100{bottom:807.772296px;}
.y70{bottom:813.119389px;}
.y11f{bottom:813.126274px;}
.y162{bottom:815.157798px;}
.y142{bottom:818.697647px;}
.y4{bottom:819.067547px;}
.y22{bottom:824.242635px;}
.y48{bottom:826.259549px;}
.yff{bottom:831.667287px;}
.y99{bottom:832.583576px;}
.y6f{bottom:837.015730px;}
.y11e{bottom:837.021265px;}
.ydf{bottom:839.033139px;}
.y161{bottom:839.054139px;}
.ybd{bottom:839.059509px;}
.y21{bottom:848.133395px;}
.y47{bottom:850.154539px;}
.y141{bottom:853.690683px;}
.y98{bottom:859.991430px;}
.yde{bottom:862.929479px;}
.ybc{bottom:862.953149px;}
.y6e{bottom:872.013716px;}
.y11d{bottom:872.020751px;}
.y20{bottom:872.032556px;}
.y46{bottom:874.050880px;}
.y140{bottom:877.587023px;}
.y160{bottom:886.824470px;}
.ybb{bottom:886.848140px;}
.y97{bottom:887.400634px;}
.y6d{bottom:895.908706px;}
.y11c{bottom:895.915741px;}
.ydd{bottom:897.927465px;}
.y45{bottom:897.945870px;}
.yfe{bottom:899.626410px;}
.y13f{bottom:901.482014px;}
.y1f{bottom:907.032042px;}
.y15f{bottom:910.720810px;}
.y3{bottom:913.561509px;}
.y96{bottom:914.810603px;}
.y6c{bottom:919.805046px;}
.y11b{bottom:919.812081px;}
.ydc{bottom:921.822456px;}
.y44{bottom:921.842211px;}
.yba{bottom:921.849036px;}
.y15e{bottom:934.615801px;}
.yfd{bottom:934.628716px;}
.y13e{bottom:936.480000px;}
.y1e{bottom:942.031498px;}
.y95{bottom:942.240957px;}
.y6b{bottom:943.700037px;}
.y11a{bottom:943.707072px;}
.ydb{bottom:945.718796px;}
.y43{bottom:945.735731px;}
.yb9{bottom:956.847022px;}
.y13d{bottom:960.376340px;}
.y15d{bottom:969.613787px;}
.yfc{bottom:969.622862px;}
.y42{bottom:969.632072px;}
.y94{bottom:969.639647px;}
.y6a{bottom:978.705058px;}
.yda{bottom:980.716782px;}
.y1d{bottom:980.737782px;}
.yb8{bottom:980.744112px;}
.y15c{bottom:993.510127px;}
.yfb{bottom:993.516457px;}
.y13c{bottom:995.374326px;}
.yd9{bottom:1004.613123px;}
.y41{bottom:1004.623728px;}
.y69{bottom:1013.698919px;}
.y15b{bottom:1017.406467px;}
.y93{bottom:1017.412077px;}
.y19{bottom:1018.634967px;}
.y13b{bottom:1019.270667px;}
.y1c{bottom:1028.508113px;}
.yfa{bottom:1028.514443px;}
.y13a{bottom:1048.706955px;}
.y92{bottom:1052.403733px;}
.y1b{bottom:1052.404453px;}
.y1a{bottom:1076.299444px;}
.y91{bottom:1076.304994px;}
.y2{bottom:1122.695925px;}
.y17e{bottom:1127.534192px;}
.y33{bottom:1127.534923px;}
.y57{bottom:1127.945923px;}
.h11{height:40.858992px;}
.h3e{height:55.186053px;}
.h4{height:57.866098px;}
.h3{height:58.369829px;}
.h43{height:58.375454px;}
.h42{height:58.400767px;}
.h33{height:58.438798px;}
.h35{height:58.492236px;}
.h19{height:61.278371px;}
.h21{height:61.284371px;}
.h22{height:61.284971px;}
.h20{height:61.290371px;}
.h13{height:61.626784px;}
.h12{height:61.632184px;}
.h34{height:61.762439px;}
.h5{height:68.670649px;}
.ha{height:74.885604px;}
.h39{height:74.895804px;}
.h3b{height:75.038904px;}
.h2{height:75.537492px;}
.h3f{height:75.554892px;}
.h40{height:75.618492px;}
.h3d{height:75.712872px;}
.h28{height:79.273687px;}
.h38{height:79.276507px;}
.h2d{height:79.293427px;}
.h37{height:79.296187px;}
.h31{height:79.299007px;}
.h8{height:79.301827px;}
.h26{height:79.304647px;}
.h7{height:79.307467px;}
.he{height:79.313107px;}
.h2c{height:79.318687px;}
.hf{height:79.329967px;}
.h2b{height:79.332787px;}
.hc{height:79.335607px;}
.h17{height:79.341187px;}
.h10{height:79.344007px;}
.h2e{height:79.346827px;}
.h3a{height:79.372147px;}
.h41{height:79.383427px;}
.h3c{height:79.386187px;}
.h1e{height:79.391827px;}
.h1f{height:79.408687px;}
.h30{height:79.439647px;}
.h29{height:79.659749px;}
.h24{height:79.679429px;}
.h27{height:79.729109px;}
.h23{height:79.749749px;}
.h1b{height:79.758149px;}
.h25{height:79.760969px;}
.h2f{height:79.763789px;}
.hd{height:79.766609px;}
.h1a{height:79.769429px;}
.h15{height:79.772249px;}
.h6{height:79.775009px;}
.h18{height:79.780649px;}
.h36{height:79.784789px;}
.h2a{height:79.786289px;}
.h9{height:79.791929px;}
.h32{height:79.797509px;}
.h1d{height:79.814429px;}
.h14{height:79.817249px;}
.h1c{height:79.862249px;}
.hb{height:79.935329px;}
.h16{height:79.974749px;}
.h1{height:1259.915400px;}
.h0{height:1263.000000px;}
.w1{width:892.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:118.114603px;}
.x26{left:131.215763px;}
.x9{left:136.490495px;}
.x1a{left:138.489815px;}
.x27{left:141.665643px;}
.x21{left:149.768670px;}
.x25{left:151.707839px;}
.x22{left:153.170384px;}
.x3{left:159.886436px;}
.x17{left:163.895934px;}
.x4{left:165.161979px;}
.xa{left:178.496629px;}
.x11{left:182.641427px;}
.x16{left:192.725923px;}
.x2a{left:212.602070px;}
.x1{left:218.659413px;}
.x1e{left:229.493908px;}
.xd{left:245.501902px;}
.x8{left:253.493899px;}
.x18{left:329.450868px;}
.x19{left:331.036368px;}
.x2{left:368.620503px;}
.x29{left:379.874848px;}
.x5{left:391.829843px;}
.x7{left:397.244841px;}
.x12{left:403.220839px;}
.x13{left:478.589989px;}
.x15{left:480.181368px;}
.xe{left:493.848402px;}
.x14{left:520.581167px;}
.xf{left:535.857911px;}
.x1b{left:537.136885px;}
.x1f{left:546.421281px;}
.xb{left:556.062828px;}
.x1c{left:579.150668px;}
.x24{left:584.017266px;}
.xc{left:598.062346px;}
.x1d{left:614.452704px;}
.x20{left:629.466498px;}
.x28{left:638.445345px;}
.x23{left:656.818132px;}
.x10{left:728.168709px;}
@media print{
.v4{vertical-align:-23.905004pt;}
.v2{vertical-align:-18.463993pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.465059pt;}
.v1{vertical-align:23.909964pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000048pt;}
.ls13{letter-spacing:0.000160pt;}
.ls7{letter-spacing:0.002093pt;}
.ls23{letter-spacing:0.002249pt;}
.ls5{letter-spacing:0.003760pt;}
.ls0{letter-spacing:0.004640pt;}
.ls25{letter-spacing:0.018816pt;}
.ls20{letter-spacing:0.020286pt;}
.ls19{letter-spacing:0.025221pt;}
.ls18{letter-spacing:0.030181pt;}
.ls22{letter-spacing:0.037743pt;}
.ls24{letter-spacing:0.048843pt;}
.ls1e{letter-spacing:11.870225pt;}
.ls8{letter-spacing:12.597062pt;}
.lsa{letter-spacing:12.762395pt;}
.ls1b{letter-spacing:13.171974pt;}
.lsb{letter-spacing:13.381061pt;}
.lsf{letter-spacing:13.674395pt;}
.lsd{letter-spacing:13.994394pt;}
.ls9{letter-spacing:15.157061pt;}
.ls10{letter-spacing:15.290394pt;}
.ls1d{letter-spacing:17.447716pt;}
.ls1c{letter-spacing:18.067716pt;}
.ls3{letter-spacing:18.105209pt;}
.ls1f{letter-spacing:18.107099pt;}
.ls1a{letter-spacing:18.109606pt;}
.ls21{letter-spacing:18.110110pt;}
.ls12{letter-spacing:18.110223pt;}
.lse{letter-spacing:18.197059pt;}
.ls14{letter-spacing:18.282204pt;}
.ls17{letter-spacing:20.040248pt;}
.ls16{letter-spacing:20.623725pt;}
.ls4{letter-spacing:21.188765pt;}
.ls15{letter-spacing:26.567712pt;}
.ls11{letter-spacing:36.214772pt;}
.lsc{letter-spacing:36.218892pt;}
.ls6{letter-spacing:36.312722pt;}
.ws5{word-spacing:-18.107993pt;}
.wsa{word-spacing:-16.461860pt;}
.ws30{word-spacing:-14.009061pt;}
.ws2{word-spacing:-13.992528pt;}
.ws1{word-spacing:-13.581061pt;}
.ws4{word-spacing:-12.675608pt;}
.ws11{word-spacing:-12.346368pt;}
.ws31{word-spacing:-10.505942pt;}
.ws35{word-spacing:-10.494422pt;}
.ws37{word-spacing:-0.788262pt;}
.wse{word-spacing:-0.002625pt;}
.ws3{word-spacing:0.000000pt;}
.ws19{word-spacing:0.004333pt;}
.ws33{word-spacing:1.017802pt;}
.ws40{word-spacing:1.920188pt;}
.ws41{word-spacing:1.921082pt;}
.ws2f{word-spacing:2.056354pt;}
.ws26{word-spacing:2.221687pt;}
.ws17{word-spacing:2.729586pt;}
.ws10{word-spacing:2.729591pt;}
.ws2b{word-spacing:2.768146pt;}
.ws14{word-spacing:2.771020pt;}
.ws3f{word-spacing:2.783817pt;}
.ws3d{word-spacing:2.784729pt;}
.ws3e{word-spacing:2.785435pt;}
.ws2d{word-spacing:2.826143pt;}
.ws7{word-spacing:3.189730pt;}
.ws2e{word-spacing:3.473999pt;}
.ws1a{word-spacing:3.505999pt;}
.ws36{word-spacing:3.592353pt;}
.ws46{word-spacing:3.754948pt;}
.ws9{word-spacing:4.125647pt;}
.wsc{word-spacing:4.193694pt;}
.wsd{word-spacing:4.199028pt;}
.ws20{word-spacing:4.199332pt;}
.ws42{word-spacing:4.366216pt;}
.ws34{word-spacing:4.487332pt;}
.ws0{word-spacing:4.531132pt;}
.ws32{word-spacing:4.636665pt;}
.ws1c{word-spacing:4.743331pt;}
.ws1f{word-spacing:4.801998pt;}
.ws44{word-spacing:4.922286pt;}
.ws25{word-spacing:4.935331pt;}
.ws2a{word-spacing:4.972665pt;}
.ws45{word-spacing:5.029486pt;}
.ws15{word-spacing:5.052665pt;}
.ws38{word-spacing:5.207086pt;}
.ws22{word-spacing:5.432064pt;}
.ws6{word-spacing:5.432396pt;}
.ws3c{word-spacing:5.435209pt;}
.ws12{word-spacing:5.440522pt;}
.ws2c{word-spacing:5.440600pt;}
.ws24{word-spacing:6.344597pt;}
.ws27{word-spacing:6.380664pt;}
.ws28{word-spacing:6.865997pt;}
.ws1e{word-spacing:6.941964pt;}
.ws43{word-spacing:7.132418pt;}
.ws39{word-spacing:7.374776pt;}
.ws21{word-spacing:7.399530pt;}
.wsb{word-spacing:7.436360pt;}
.ws29{word-spacing:8.428663pt;}
.ws16{word-spacing:9.191330pt;}
.ws3b{word-spacing:10.273194pt;}
.ws1d{word-spacing:10.561336pt;}
.ws3a{word-spacing:14.630680pt;}
.ws1b{word-spacing:19.223326pt;}
.ws13{word-spacing:20.792058pt;}
.ws18{word-spacing:23.537455pt;}
.ws23{word-spacing:23.553204pt;}
.ws8{word-spacing:797.562881pt;}
.wsf{word-spacing:801.514879pt;}
._0{margin-left:-9.344086pt;}
._3{margin-left:-8.040456pt;}
._1d{margin-left:-6.663988pt;}
._2{margin-left:-5.363716pt;}
._8{margin-left:-4.138436pt;}
._9{margin-left:-2.943964pt;}
._1{margin-left:-2.011562pt;}
._a{margin-left:-0.903256pt;}
._6{width:1.119805pt;}
._c{width:2.012017pt;}
._4{width:3.582736pt;}
._7{width:4.686192pt;}
._14{width:6.470442pt;}
._5{width:7.502402pt;}
._b{width:8.547117pt;}
._f{width:10.140476pt;}
._17{width:11.444251pt;}
._1b{width:12.530731pt;}
._10{width:13.979515pt;}
._16{width:14.993273pt;}
._19{width:16.119109pt;}
._18{width:19.050478pt;}
._1c{width:20.570752pt;}
._15{width:21.512223pt;}
._13{width:23.287152pt;}
._e{width:27.358181pt;}
._1e{width:29.291391pt;}
._11{width:31.654335pt;}
._d{width:35.705154pt;}
._12{width:42.495900pt;}
._1a{width:52.241777pt;}
.fs6{font-size:39.179184pt;}
.fs8{font-size:39.225264pt;}
.fsa{font-size:41.977690pt;}
.fs9{font-size:42.023770pt;}
.fs5{font-size:49.385474pt;}
.fs4{font-size:50.702433pt;}
.fs1{font-size:54.324245pt;}
.fs2{font-size:55.970111pt;}
.fs7{font-size:56.036244pt;}
.fs3{font-size:65.847440pt;}
.fs0{font-size:72.431971pt;}
.fsb{font-size:92.186096pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:1.425000pt;}
.y90{bottom:74.562436pt;}
.y68{bottom:81.584967pt;}
.y3f{bottom:104.935091pt;}
.y119{bottom:105.768565pt;}
.yd8{bottom:105.772290pt;}
.yf9{bottom:105.773757pt;}
.y65{bottom:105.777490pt;}
.y18{bottom:106.701490pt;}
.y8d{bottom:110.383755pt;}
.y138{bottom:119.788285pt;}
.y3e{bottom:122.300151pt;}
.yd7{bottom:123.136017pt;}
.yf8{bottom:123.138817pt;}
.y118{bottom:123.140417pt;}
.y64{bottom:123.141884pt;}
.y8c{bottom:123.151217pt;}
.y15a{bottom:124.700976pt;}
.yb7{bottom:127.750548pt;}
.y17{bottom:128.540281pt;}
.y3d{bottom:139.665210pt;}
.yf7{bottom:140.503877pt;}
.y117{bottom:140.505477pt;}
.y63{bottom:140.505610pt;}
.y8b{bottom:140.514943pt;}
.y137{bottom:140.989303pt;}
.yb6{bottom:145.118941pt;}
.y159{bottom:145.940968pt;}
.y16{bottom:150.379073pt;}
.y17d{bottom:157.164953pt;}
.y116{bottom:157.869870pt;}
.y62{bottom:157.871203pt;}
.yd6{bottom:157.873603pt;}
.y8a{bottom:157.880536pt;}
.y3c{bottom:161.645601pt;}
.y136{bottom:162.229295pt;}
.yb5{bottom:162.484268pt;}
.y158{bottom:167.182159pt;}
.y15{bottom:172.215997pt;}
.y3b{bottom:174.400530pt;}
.y17c{bottom:174.443696pt;}
.yf6{bottom:175.228404pt;}
.yd5{bottom:175.239196pt;}
.y89{bottom:175.244263pt;}
.yb4{bottom:179.853594pt;}
.y61{bottom:179.854927pt;}
.y135{bottom:183.470486pt;}
.y157{bottom:188.423351pt;}
.yf5{bottom:192.599064pt;}
.yb3{bottom:192.605189pt;}
.y88{bottom:192.609856pt;}
.y115{bottom:192.613247pt;}
.y60{bottom:192.614656pt;}
.y14{bottom:194.054788pt;}
.y3a{bottom:196.381588pt;}
.yd4{bottom:197.220254pt;}
.y134{bottom:204.710478pt;}
.y17b{bottom:209.019949pt;}
.y39{bottom:209.136249pt;}
.y156{bottom:209.663342pt;}
.y114{bottom:209.894440pt;}
.yf4{bottom:209.959049pt;}
.yd3{bottom:209.971182pt;}
.y87{bottom:209.973582pt;}
.y5f{bottom:209.979049pt;}
.yb2{bottom:214.588247pt;}
.y13{bottom:215.893580pt;}
.y133{bottom:225.951669pt;}
.y17a{bottom:226.309317pt;}
.y38{bottom:226.501842pt;}
.y113{bottom:227.175634pt;}
.yf3{bottom:227.329708pt;}
.y86{bottom:227.339175pt;}
.yb1{bottom:227.343842pt;}
.y5e{bottom:227.344108pt;}
.y155{bottom:230.904534pt;}
.yd2{bottom:231.954907pt;}
.y179{bottom:243.589310pt;}
.y112{bottom:244.455627pt;}
.yf2{bottom:244.701568pt;}
.yd1{bottom:244.706635pt;}
.y5d{bottom:244.708502pt;}
.yb0{bottom:244.709435pt;}
.y132{bottom:247.191661pt;}
.y37{bottom:248.484233pt;}
.y85{bottom:249.322900pt;}
.y178{bottom:260.878628pt;}
.y36{bottom:261.235828pt;}
.y111{bottom:261.830628pt;}
.y154{bottom:262.013855pt;}
.yf1{bottom:262.060361pt;}
.yaf{bottom:262.074495pt;}
.y84{bottom:266.689559pt;}
.y5c{bottom:266.690893pt;}
.y131{bottom:268.432852pt;}
.y12{bottom:273.515823pt;}
.y177{bottom:278.159821pt;}
.y35{bottom:278.602621pt;}
.y110{bottom:279.196221pt;}
.yf0{bottom:279.431021pt;}
.yd0{bottom:279.440488pt;}
.y5b{bottom:279.445554pt;}
.y83{bottom:279.449421pt;}
.y153{bottom:283.253846pt;}
.yae{bottom:284.054886pt;}
.y130{bottom:289.672844pt;}
.y176{bottom:295.447315pt;}
.y10f{bottom:296.561814pt;}
.yef{bottom:296.802881pt;}
.yad{bottom:296.810747pt;}
.y5a{bottom:296.811147pt;}
.y82{bottom:296.813147pt;}
.y34{bottom:300.584213pt;}
.ycf{bottom:301.424212pt;}
.y152{bottom:304.479411pt;}
.y11{bottom:309.294609pt;}
.y12f{bottom:310.914035pt;}
.y175{bottom:312.729174pt;}
.yac{bottom:314.175807pt;}
.yce{bottom:314.175940pt;}
.y81{bottom:314.178740pt;}
.y10e{bottom:318.544205pt;}
.yee{bottom:318.790872pt;}
.y59{bottom:318.792205pt;}
.y139{bottom:326.978869pt;}
.y10{bottom:327.190869pt;}
.y174{bottom:330.022242pt;}
.y80{bottom:331.543800pt;}
.yed{bottom:331.547933pt;}
.y12e{bottom:332.154027pt;}
.yab{bottom:336.158865pt;}
.y58{bottom:336.160198pt;}
.yf{bottom:345.087795pt;}
.y173{bottom:347.303435pt;}
.yaa{bottom:348.911127pt;}
.yec{bottom:348.913527pt;}
.ycd{bottom:348.922193pt;}
.y12d{bottom:353.395218pt;}
.y7f{bottom:353.524191pt;}
.y40{bottom:354.432191pt;}
.ye{bottom:362.984054pt;}
.y32{bottom:363.262534pt;}
.y172{bottom:364.583429pt;}
.yeb{bottom:366.277253pt;}
.ycc{bottom:366.287253pt;}
.y151{bottom:368.183119pt;}
.ya9{bottom:370.893518pt;}
.y10d{bottom:372.811290pt;}
.yd{bottom:380.881514pt;}
.y171{bottom:381.876497pt;}
.ya8{bottom:383.646046pt;}
.ycb{bottom:383.651646pt;}
.yea{bottom:388.260177pt;}
.y150{bottom:389.423110pt;}
.y31{bottom:394.368735pt;}
.y12c{bottom:395.859601pt;}
.y56{bottom:397.665320pt;}
.y170{bottom:399.158356pt;}
.ya7{bottom:401.011106pt;}
.yca{bottom:401.017239pt;}
.y10c{bottom:403.911238pt;}
.y66{bottom:404.349504pt;}
.y7e{bottom:405.713277pt;}
.y14f{bottom:410.664302pt;}
.y30{bottom:415.610593pt;}
.y16f{bottom:416.437683pt;}
.yc{bottom:416.660299pt;}
.y8e{bottom:417.517499pt;}
.yc9{bottom:418.382832pt;}
.y55{bottom:418.905312pt;}
.ya6{bottom:422.994830pt;}
.y7d{bottom:426.953269pt;}
.y14e{bottom:431.904293pt;}
.y16e{bottom:433.735168pt;}
.y10b{bottom:435.020559pt;}
.yc8{bottom:435.746558pt;}
.ya5{bottom:435.748692pt;}
.y2f{bottom:436.850585pt;}
.y54{bottom:440.146503pt;}
.y7c{bottom:448.194460pt;}
.y12b{bottom:448.208913pt;}
.y16d{bottom:451.016361pt;}
.ye9{bottom:451.493059pt;}
.ya4{bottom:453.112418pt;}
.y14d{bottom:453.145485pt;}
.y10a{bottom:456.261750pt;}
.yc7{bottom:457.728150pt;}
.y2e{bottom:467.955532pt;}
.y16c{bottom:468.297554pt;}
.y7b{bottom:469.435652pt;}
.yb{bottom:470.334678pt;}
.ya3{bottom:470.477478pt;}
.y53{bottom:471.255824pt;}
.ye8{bottom:472.733010pt;}
.y14c{bottom:474.363476pt;}
.y12a{bottom:479.317701pt;}
.y16b{bottom:485.577547pt;}
.y109{bottom:487.371071pt;}
.ya{bottom:488.232137pt;}
.y2d{bottom:489.195524pt;}
.ye7{bottom:493.973002pt;}
.y14b{bottom:495.603468pt;}
.y129{bottom:500.537733pt;}
.y7a{bottom:500.544973pt;}
.y52{bottom:502.365145pt;}
.y16a{bottom:502.852532pt;}
.y108{bottom:508.611063pt;}
.y2c{bottom:510.431755pt;}
.yc6{bottom:515.205980pt;}
.y14a{bottom:516.844659pt;}
.ya2{bottom:520.826404pt;}
.y128{bottom:521.777724pt;}
.y79{bottom:521.784964pt;}
.y51{bottom:523.594510pt;}
.y9{bottom:524.010923pt;}
.ye6{bottom:525.075456pt;}
.y107{bottom:529.852254pt;}
.y2b{bottom:531.662360pt;}
.yc5{bottom:536.432892pt;}
.y169{bottom:537.428118pt;}
.y149{bottom:538.085851pt;}
.y8{bottom:541.906516pt;}
.y78{bottom:543.008662pt;}
.y127{bottom:543.018916pt;}
.y50{bottom:544.835701pt;}
.ya1{bottom:545.182661pt;}
.ye5{bottom:546.316648pt;}
.y8f{bottom:550.314779pt;}
.y67{bottom:550.948112pt;}
.y106{bottom:551.091179pt;}
.y2a{bottom:552.866058pt;}
.y7{bottom:559.803976pt;}
.y126{bottom:564.258907pt;}
.y4f{bottom:566.075693pt;}
.yc4{bottom:567.542212pt;}
.ye4{bottom:567.556639pt;}
.ya0{bottom:569.537052pt;}
.y29{bottom:574.107250pt;}
.y77{bottom:574.119316pt;}
.y148{bottom:580.548367pt;}
.y105{bottom:582.201833pt;}
.yc3{bottom:588.783404pt;}
.y9f{bottom:593.901442pt;}
.y28{bottom:595.347241pt;}
.y76{bottom:595.359308pt;}
.y125{bottom:595.370095pt;}
.y6{bottom:595.582761pt;}
.y4e{bottom:597.139387pt;}
.y168{bottom:597.141161pt;}
.ye3{bottom:598.670413pt;}
.y104{bottom:603.441825pt;}
.y147{bottom:611.657688pt;}
.y124{bottom:616.575353pt;}
.y27{bottom:616.588433pt;}
.y75{bottom:616.601166pt;}
.y9e{bottom:618.264792pt;}
.y4d{bottom:618.379379pt;}
.y167{bottom:618.381152pt;}
.yc2{bottom:619.892725pt;}
.ye2{bottom:629.782334pt;}
.y146{bottom:632.898880pt;}
.y103{bottom:634.551146pt;}
.y123{bottom:637.816544pt;}
.y26{bottom:637.829624pt;}
.y74{bottom:637.841158pt;}
.y4c{bottom:639.621237pt;}
.y166{bottom:639.622344pt;}
.yc1{bottom:641.133916pt;}
.y9d{bottom:642.619182pt;}
.ye1{bottom:651.022326pt;}
.y102{bottom:655.792337pt;}
.y122{bottom:659.056536pt;}
.y73{bottom:659.071722pt;}
.y4b{bottom:660.860562pt;}
.y165{bottom:660.862335pt;}
.yc0{bottom:662.377654pt;}
.y145{bottom:664.008200pt;}
.y9c{bottom:666.983599pt;}
.y25{bottom:668.938945pt;}
.y121{bottom:680.297727pt;}
.y72{bottom:680.312914pt;}
.y164{bottom:682.103527pt;}
.y144{bottom:685.249392pt;}
.y101{bottom:686.909165pt;}
.y24{bottom:690.178937pt;}
.y9b{bottom:691.346136pt;}
.y4a{bottom:691.971749pt;}
.ybf{bottom:693.485735pt;}
.y71{bottom:701.531599pt;}
.y120{bottom:701.537719pt;}
.y163{bottom:703.344718pt;}
.y143{bottom:706.489384pt;}
.y5{bottom:706.820050pt;}
.y23{bottom:711.420128pt;}
.y49{bottom:713.211741pt;}
.ybe{bottom:714.725727pt;}
.ye0{bottom:714.726034pt;}
.y9a{bottom:715.709873pt;}
.y100{bottom:718.019819pt;}
.y70{bottom:722.772790pt;}
.y11f{bottom:722.778910pt;}
.y162{bottom:724.584710pt;}
.y142{bottom:727.731242pt;}
.y4{bottom:728.060042pt;}
.y22{bottom:732.660120pt;}
.y48{bottom:734.452932pt;}
.yff{bottom:739.259810pt;}
.y99{bottom:740.074290pt;}
.y6f{bottom:744.013982pt;}
.y11e{bottom:744.018902pt;}
.ydf{bottom:745.807234pt;}
.y161{bottom:745.825901pt;}
.ybd{bottom:745.830674pt;}
.y21{bottom:753.896351pt;}
.y47{bottom:755.692924pt;}
.y141{bottom:758.836163pt;}
.y98{bottom:764.436827pt;}
.yde{bottom:767.048426pt;}
.ybc{bottom:767.069466pt;}
.y6e{bottom:775.123303pt;}
.y11d{bottom:775.129556pt;}
.y20{bottom:775.140049pt;}
.y46{bottom:776.934115pt;}
.y140{bottom:780.077354pt;}
.y160{bottom:788.288417pt;}
.ybb{bottom:788.309457pt;}
.y97{bottom:788.800564pt;}
.y6d{bottom:796.363294pt;}
.y11c{bottom:796.369548pt;}
.ydd{bottom:798.157747pt;}
.y45{bottom:798.174107pt;}
.yfe{bottom:799.667920pt;}
.y13f{bottom:801.317346pt;}
.y1f{bottom:806.250704pt;}
.y15f{bottom:809.529609pt;}
.y3{bottom:812.054675pt;}
.y96{bottom:813.164981pt;}
.y6c{bottom:817.604486pt;}
.y11b{bottom:817.610739pt;}
.ydc{bottom:819.397738pt;}
.y44{bottom:819.415298pt;}
.yba{bottom:819.421365pt;}
.y15e{bottom:830.769600pt;}
.yfd{bottom:830.781080pt;}
.y13e{bottom:832.426666pt;}
.y1e{bottom:837.361331pt;}
.y95{bottom:837.547518pt;}
.y6b{bottom:838.844477pt;}
.y11a{bottom:838.850731pt;}
.ydb{bottom:840.638930pt;}
.y43{bottom:840.653983pt;}
.yb9{bottom:850.530686pt;}
.y13d{bottom:853.667858pt;}
.y15d{bottom:861.878921pt;}
.yfc{bottom:861.886988pt;}
.y42{bottom:861.895175pt;}
.y94{bottom:861.901908pt;}
.y6a{bottom:869.960051pt;}
.yda{bottom:871.748251pt;}
.y1d{bottom:871.766917pt;}
.yb8{bottom:871.772544pt;}
.y15c{bottom:883.120113pt;}
.yfb{bottom:883.125740pt;}
.y13c{bottom:884.777179pt;}
.yd9{bottom:892.989442pt;}
.y41{bottom:892.998869pt;}
.y69{bottom:901.065706pt;}
.y15b{bottom:904.361304pt;}
.y93{bottom:904.366291pt;}
.y19{bottom:905.453304pt;}
.y13b{bottom:906.018370pt;}
.y1c{bottom:914.229434pt;}
.yfa{bottom:914.235060pt;}
.y13a{bottom:932.183960pt;}
.y92{bottom:935.469985pt;}
.y1b{bottom:935.470625pt;}
.y1a{bottom:956.710617pt;}
.y91{bottom:956.715550pt;}
.y2{bottom:997.951934pt;}
.y17e{bottom:1002.252615pt;}
.y33{bottom:1002.253265pt;}
.y57{bottom:1002.618598pt;}
.h11{height:36.319104pt;}
.h3e{height:49.054269pt;}
.h4{height:51.436532pt;}
.h3{height:51.884293pt;}
.h43{height:51.889293pt;}
.h42{height:51.911793pt;}
.h33{height:51.945598pt;}
.h35{height:51.993098pt;}
.h19{height:54.469663pt;}
.h21{height:54.474996pt;}
.h22{height:54.475530pt;}
.h20{height:54.480330pt;}
.h13{height:54.779363pt;}
.h12{height:54.784163pt;}
.h34{height:54.899946pt;}
.h5{height:61.040577pt;}
.ha{height:66.564981pt;}
.h39{height:66.574048pt;}
.h3b{height:66.701248pt;}
.h2{height:67.144437pt;}
.h3f{height:67.159904pt;}
.h40{height:67.216437pt;}
.h3d{height:67.300330pt;}
.h28{height:70.465500pt;}
.h38{height:70.468006pt;}
.h2d{height:70.483046pt;}
.h37{height:70.485500pt;}
.h31{height:70.488006pt;}
.h8{height:70.490513pt;}
.h26{height:70.493020pt;}
.h7{height:70.495526pt;}
.he{height:70.500540pt;}
.h2c{height:70.505500pt;}
.hf{height:70.515526pt;}
.h2b{height:70.518033pt;}
.hc{height:70.520540pt;}
.h17{height:70.525500pt;}
.h10{height:70.528006pt;}
.h2e{height:70.530513pt;}
.h3a{height:70.553020pt;}
.h41{height:70.563046pt;}
.h3c{height:70.565500pt;}
.h1e{height:70.570513pt;}
.h1f{height:70.585500pt;}
.h30{height:70.613020pt;}
.h29{height:70.808666pt;}
.h24{height:70.826159pt;}
.h27{height:70.870319pt;}
.h23{height:70.888666pt;}
.h1b{height:70.896133pt;}
.h25{height:70.898639pt;}
.h2f{height:70.901146pt;}
.hd{height:70.903653pt;}
.h1a{height:70.906159pt;}
.h15{height:70.908666pt;}
.h6{height:70.911119pt;}
.h18{height:70.916133pt;}
.h36{height:70.919813pt;}
.h2a{height:70.921146pt;}
.h9{height:70.926159pt;}
.h32{height:70.931119pt;}
.h1d{height:70.946159pt;}
.h14{height:70.948666pt;}
.h1c{height:70.988666pt;}
.hb{height:71.053626pt;}
.h16{height:71.088666pt;}
.h1{height:1119.924800pt;}
.h0{height:1122.666667pt;}
.w1{width:793.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:104.990758pt;}
.x26{left:116.636233pt;}
.x9{left:121.324885pt;}
.x1a{left:123.102057pt;}
.x27{left:125.925016pt;}
.x21{left:133.127707pt;}
.x25{left:134.851413pt;}
.x22{left:136.151452pt;}
.x3{left:142.121276pt;}
.x17{left:145.685275pt;}
.x4{left:146.810648pt;}
.xa{left:158.663670pt;}
.x11{left:162.347935pt;}
.x16{left:171.311931pt;}
.x2a{left:188.979618pt;}
.x1{left:194.363922pt;}
.x1e{left:203.994585pt;}
.xd{left:218.223913pt;}
.x8{left:225.327910pt;}
.x18{left:292.845216pt;}
.x19{left:294.254549pt;}
.x2{left:327.662669pt;}
.x29{left:337.666532pt;}
.x5{left:348.293194pt;}
.x7{left:353.106525pt;}
.x12{left:358.418523pt;}
.x13{left:425.413323pt;}
.x15{left:426.827883pt;}
.xe{left:438.976358pt;}
.x14{left:462.738815pt;}
.xf{left:476.318143pt;}
.x1b{left:477.455009pt;}
.x1f{left:485.707806pt;}
.xb{left:494.278069pt;}
.x1c{left:514.800594pt;}
.x24{left:519.126459pt;}
.xc{left:531.610974pt;}
.x1d{left:546.180182pt;}
.x20{left:559.525776pt;}
.x28{left:567.506973pt;}
.x23{left:583.838340pt;}
.x10{left:647.261074pt;}
}




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