
    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_c0deee4b593e4b866673eec6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.983398;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_883b35aa12943786fd8f48e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_b27b48a42583ecb727945dcd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c6bcace439ca5a912cd110cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_37429ea94b7054f2f3bf6a17.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933105;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_513e6e042bd39c8951a3e00e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f4197b03916c315533f99802.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.695312;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);}
.v3{vertical-align:-109.439757px;}
.v2{vertical-align:-36.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.759996px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.049861px;}
.ls0{letter-spacing:0.116792px;}
.ls1{letter-spacing:0.116797px;}
.ls5{letter-spacing:0.318779px;}
.ls8{letter-spacing:0.347442px;}
.ls4{letter-spacing:8.958775px;}
.ls2{letter-spacing:46.117887px;}
.ls6{letter-spacing:795.079837px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-21.600775px;}
.ws2{word-spacing:-16.241185px;}
.ws5{word-spacing:-14.941866px;}
.ws1{word-spacing:-13.480132px;}
.ws0{word-spacing:-10.881595px;}
.ws3{word-spacing:0.000000px;}
._3a{margin-left:-9.583481px;}
._c{margin-left:-3.839009px;}
._b{margin-left:-2.385864px;}
._2{margin-left:-1.208539px;}
._0{width:1.614885px;}
._10{width:2.720362px;}
._9{width:4.042331px;}
._a{width:5.157048px;}
._3{width:6.212612px;}
._6{width:7.653463px;}
._4{width:8.684273px;}
._5{width:9.887759px;}
._d{width:10.991770px;}
._e{width:12.379157px;}
._f{width:13.673216px;}
._1d{width:15.225912px;}
._37{width:16.287614px;}
._8{width:17.313046px;}
._7{width:18.363541px;}
._20{width:19.363751px;}
._17{width:20.731591px;}
._16{width:21.890061px;}
._1e{width:23.115817px;}
._1a{width:24.495536px;}
._19{width:25.908112px;}
._18{width:27.544122px;}
._1f{width:28.961659px;}
._14{width:42.465604px;}
._1b{width:70.291715px;}
._1c{width:72.177492px;}
._39{width:172.760215px;}
._21{width:192.887785px;}
._15{width:200.068402px;}
._24{width:215.538716px;}
._25{width:230.658648px;}
._23{width:237.138662px;}
._2d{width:245.719895px;}
._30{width:251.997099px;}
._2e{width:254.359819px;}
._34{width:262.718178px;}
._2c{width:267.319841px;}
._26{width:269.479751px;}
._27{width:278.178779px;}
._31{width:284.681768px;}
._2a{width:293.112707px;}
._2f{width:318.825057px;}
._32{width:335.284237px;}
._28{width:350.119814px;}
._35{width:609.368072px;}
._33{width:638.619837px;}
._2b{width:652.602125px;}
._22{width:729.759910px;}
._29{width:750.059956px;}
._36{width:768.947726px;}
._12{width:990.036401px;}
._38{width:1226.572682px;}
._13{width:1256.992448px;}
._1{width:1298.523258px;}
._11{width:2137.448454px;}
.fc4{color:rgb(118,113,113);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs4{font-size:48.148650px;}
.fs0{font-size:59.646600px;}
.fs6{font-size:66.114450px;}
.fs3{font-size:71.863650px;}
.fs5{font-size:95.578650px;}
.fs2{font-size:120.012296px;}
.fs1{font-size:131.510255px;}
.y0{bottom:0.000000px;}
.y30{bottom:21.599945px;}
.y31{bottom:58.679970px;}
.y2f{bottom:70.559967px;}
.y2e{bottom:86.220017px;}
.y1c1{bottom:91.259994px;}
.y163{bottom:92.519989px;}
.y17e{bottom:93.419975px;}
.y5f{bottom:97.019989px;}
.y14b{bottom:99.899986px;}
.y1f3{bottom:100.440033px;}
.y2d{bottom:102.059967px;}
.y111{bottom:107.100013px;}
.y19c{bottom:109.980011px;}
.y162{bottom:110.879998px;}
.y1c0{bottom:111.419975px;}
.y180{bottom:111.779983px;}
.y17d{bottom:115.379998px;}
.y2c{bottom:117.899986px;}
.y14a{bottom:118.080025px;}
.y5e{bottom:118.980011px;}
.yb0{bottom:119.700027px;}
.y1f2{bottom:120.600013px;}
.y110{bottom:125.460022px;}
.ye0{bottom:126.360008px;}
.y161{bottom:129.059967px;}
.y130{bottom:129.960022px;}
.y1bf{bottom:131.580025px;}
.y2b{bottom:133.740006px;}
.y149{bottom:136.440033px;}
.y17c{bottom:137.340019px;}
.y1f1{bottom:140.580025px;}
.y5d{bottom:140.940033px;}
.yaf{bottom:141.659981px;}
.y10f{bottom:143.820030px;}
.y160{bottom:147.419975px;}
.ydf{bottom:148.320030px;}
.y2a{bottom:149.580025px;}
.y1be{bottom:151.559967px;}
.y12f{bottom:152.100013px;}
.y148{bottom:154.799973px;}
.y7e{bottom:155.700027px;}
.y17f{bottom:157.320030px;}
.y17b{bottom:159.299973px;}
.y1f0{bottom:160.740006px;}
.y10e{bottom:162.000000px;}
.y5c{bottom:163.080025px;}
.yae{bottom:163.620002px;}
.y29{bottom:165.240006px;}
.y15f{bottom:165.779983px;}
.y19b{bottom:166.679970px;}
.yde{bottom:170.279983px;}
.y1bd{bottom:171.720017px;}
.y12e{bottom:173.159981px;}
.y7d{bottom:177.659981px;}
.y10d{bottom:180.360008px;}
.y1ef{bottom:180.899986px;}
.y28{bottom:181.080025px;}
.y17a{bottom:181.259994px;}
.y15e{bottom:184.139992px;}
.y5b{bottom:185.039977px;}
.yad{bottom:185.580025px;}
.y19a{bottom:186.840019px;}
.y12d{bottom:191.340019px;}
.y1bc{bottom:191.879998px;}
.ydd{bottom:192.240006px;}
.y10c{bottom:198.720017px;}
.y7c{bottom:199.620002px;}
.y1ee{bottom:201.059967px;}
.y15d{bottom:203.220017px;}
.y5a{bottom:207.000000px;}
.yac{bottom:207.539977px;}
.y12c{bottom:209.700027px;}
.y27{bottom:210.240006px;}
.y1bb{bottom:212.039977px;}
.ydc{bottom:214.200027px;}
.y10b{bottom:217.080025px;}
.y1ed{bottom:221.220017px;}
.y7b{bottom:221.580025px;}
.y15c{bottom:225.179970px;}
.y199{bottom:226.980011px;}
.y12b{bottom:228.059967px;}
.y59{bottom:228.960022px;}
.yab{bottom:229.500000px;}
.y1ba{bottom:232.200027px;}
.y10a{bottom:235.259994px;}
.ydb{bottom:236.159981px;}
.y1ec{bottom:241.379998px;}
.y7a{bottom:243.539977px;}
.y26{bottom:244.440033px;}
.y12a{bottom:246.240006px;}
.y147{bottom:247.139992px;}
.yaa{bottom:250.559967px;}
.y58{bottom:250.919975px;}
.y1b9{bottom:252.360008px;}
.y109{bottom:253.620002px;}
.yda{bottom:258.299973px;}
.y1eb{bottom:261.539977px;}
.y129{bottom:264.600013px;}
.y198{bottom:265.139992px;}
.y79{bottom:265.500000px;}
.y25{bottom:266.399986px;}
.ya9{bottom:268.919975px;}
.y146{bottom:269.279983px;}
.y108{bottom:271.980011px;}
.y1b8{bottom:272.519989px;}
.y57{bottom:272.879998px;}
.yd9{bottom:280.259994px;}
.y1ea{bottom:281.700027px;}
.y128{bottom:282.960022px;}
.y197{bottom:285.299973px;}
.ya8{bottom:287.279983px;}
.y78{bottom:287.460022px;}
.y24{bottom:288.360008px;}
.y107{bottom:290.340019px;}
.y145{bottom:291.240006px;}
.y1b7{bottom:292.679970px;}
.y56{bottom:294.840019px;}
.y127{bottom:301.320030px;}
.y1e9{bottom:301.860008px;}
.yd8{bottom:302.220017px;}
.y196{bottom:305.460022px;}
.ya7{bottom:305.639992px;}
.y106{bottom:308.519989px;}
.y77{bottom:309.419975px;}
.y23{bottom:310.320030px;}
.y1b6{bottom:312.840019px;}
.y144{bottom:313.200027px;}
.y55{bottom:316.799973px;}
.y126{bottom:319.500000px;}
.y1e8{bottom:321.840019px;}
.ya6{bottom:323.820030px;}
.yd7{bottom:324.179970px;}
.y105{bottom:326.879998px;}
.y76{bottom:331.379998px;}
.y22{bottom:332.460022px;}
.y1b5{bottom:333.000000px;}
.y15b{bottom:334.259994px;}
.y143{bottom:335.159981px;}
.y125{bottom:337.860008px;}
.y54{bottom:338.759994px;}
.y1e7{bottom:342.000000px;}
.ya5{bottom:342.179970px;}
.y195{bottom:343.620002px;}
.y104{bottom:345.240006px;}
.yd6{bottom:346.139992px;}
.y15a{bottom:352.440033px;}
.y1b4{bottom:352.980011px;}
.y75{bottom:353.340019px;}
.y21{bottom:356.039977px;}
.y124{bottom:356.220017px;}
.y179{bottom:357.120002px;}
.ya4{bottom:360.539977px;}
.y53{bottom:360.720017px;}
.y1e6{bottom:362.159981px;}
.y103{bottom:363.419975px;}
.y194{bottom:363.779983px;}
.yd5{bottom:368.100013px;}
.y159{bottom:370.799973px;}
.y1b3{bottom:373.139992px;}
.y142{bottom:374.399986px;}
.y74{bottom:375.480011px;}
.ya3{bottom:378.899986px;}
.y178{bottom:379.080025px;}
.y102{bottom:381.779983px;}
.y1e5{bottom:382.320030px;}
.y52{bottom:382.679970px;}
.y20{bottom:385.200027px;}
.y158{bottom:389.159981px;}
.yd4{bottom:390.059967px;}
.y141{bottom:392.759994px;}
.y1b2{bottom:393.299973px;}
.ya2{bottom:397.080025px;}
.y73{bottom:397.440033px;}
.y101{bottom:401.039977px;}
.y193{bottom:401.940033px;}
.y1e4{bottom:402.480011px;}
.y177{bottom:402.659981px;}
.y51{bottom:404.639992px;}
.y157{bottom:407.519989px;}
.y140{bottom:411.120002px;}
.yd3{bottom:412.019989px;}
.y1b1{bottom:413.460022px;}
.y1f{bottom:415.259994px;}
.ya1{bottom:416.340019px;}
.y72{bottom:419.399986px;}
.y192{bottom:422.100013px;}
.y1e3{bottom:422.639992px;}
.y100{bottom:423.000000px;}
.y156{bottom:425.700027px;}
.y50{bottom:426.600013px;}
.y13f{bottom:429.480011px;}
.y176{bottom:430.379998px;}
.y1b0{bottom:433.620002px;}
.yd2{bottom:433.980011px;}
.y1e{bottom:437.220017px;}
.ya0{bottom:438.299973px;}
.y71{bottom:441.360008px;}
.y191{bottom:442.259994px;}
.y1e2{bottom:442.799973px;}
.y155{bottom:444.059967px;}
.yff{bottom:444.960022px;}
.y13e{bottom:447.659981px;}
.y4f{bottom:448.559967px;}
.y175{bottom:452.340019px;}
.y1af{bottom:453.779983px;}
.yd1{bottom:455.940033px;}
.y1d{bottom:459.179970px;}
.y9f{bottom:460.259994px;}
.y190{bottom:462.240006px;}
.y1e1{bottom:462.960022px;}
.y70{bottom:463.320030px;}
.y13d{bottom:466.019989px;}
.yfe{bottom:466.919975px;}
.y4e{bottom:470.700027px;}
.y1ae{bottom:473.940033px;}
.y174{bottom:474.299973px;}
.yd0{bottom:477.899986px;}
.y1c{bottom:481.139992px;}
.y9e{bottom:482.220017px;}
.y18f{bottom:482.399986px;}
.y1e0{bottom:483.120002px;}
.y13c{bottom:484.379998px;}
.y6f{bottom:485.279983px;}
.yfd{bottom:488.879998px;}
.y4d{bottom:492.659981px;}
.y1ad{bottom:494.100013px;}
.y173{bottom:496.259994px;}
.ycf{bottom:498.960022px;}
.y18e{bottom:502.559967px;}
.y13b{bottom:502.740006px;}
.y1b{bottom:503.100013px;}
.y1df{bottom:503.279983px;}
.y9d{bottom:504.179970px;}
.y6e{bottom:507.240006px;}
.yfc{bottom:510.840019px;}
.y1ac{bottom:514.259994px;}
.y4c{bottom:514.620002px;}
.yce{bottom:517.320030px;}
.y172{bottom:518.220017px;}
.y13a{bottom:520.919975px;}
.y18d{bottom:522.720017px;}
.y1de{bottom:523.259994px;}
.y1a{bottom:525.059967px;}
.y9c{bottom:526.139992px;}
.y154{bottom:528.299973px;}
.y6d{bottom:529.200027px;}
.yfb{bottom:532.799973px;}
.y1ab{bottom:534.240006px;}
.ycd{bottom:535.679970px;}
.y4b{bottom:536.580025px;}
.y139{bottom:540.179970px;}
.y18c{bottom:542.879998px;}
.y1dd{bottom:543.419975px;}
.y153{bottom:546.659981px;}
.y19{bottom:547.019989px;}
.y9b{bottom:548.100013px;}
.y6c{bottom:551.159981px;}
.ycc{bottom:553.860008px;}
.y1aa{bottom:554.399986px;}
.yfa{bottom:554.759994px;}
.y4a{bottom:558.539977px;}
.y171{bottom:561.240006px;}
.y138{bottom:562.139992px;}
.y1dc{bottom:563.580025px;}
.y152{bottom:564.840019px;}
.y18{bottom:568.980011px;}
.y9a{bottom:570.240006px;}
.ycb{bottom:572.220017px;}
.y6b{bottom:573.120002px;}
.y1a9{bottom:574.559967px;}
.yf9{bottom:576.899986px;}
.y170{bottom:579.600013px;}
.y49{bottom:580.500000px;}
.y18b{bottom:581.039977px;}
.y151{bottom:583.200027px;}
.y1db{bottom:583.740006px;}
.y137{bottom:584.100013px;}
.yca{bottom:590.580025px;}
.y17{bottom:590.940033px;}
.y99{bottom:592.200027px;}
.y1a8{bottom:594.720017px;}
.y6a{bottom:595.080025px;}
.y16f{bottom:597.960022px;}
.yf8{bottom:598.860008px;}
.y18a{bottom:601.200027px;}
.y150{bottom:601.559967px;}
.y48{bottom:602.460022px;}
.y1da{bottom:603.899986px;}
.y136{bottom:606.059967px;}
.yc9{bottom:608.940033px;}
.y16{bottom:612.899986px;}
.y98{bottom:614.160015px;}
.y1a7{bottom:614.879998px;}
.y123{bottom:616.139992px;}
.y69{bottom:617.040012px;}
.yf7{bottom:619.920010px;}
.y1d9{bottom:624.060001px;}
.y47{bottom:624.420010px;}
.yc8{bottom:627.120002px;}
.y135{bottom:628.019989px;}
.y122{bottom:634.500000px;}
.y15{bottom:634.860008px;}
.y1a6{bottom:635.040012px;}
.y97{bottom:636.120002px;}
.yf6{bottom:638.100013px;}
.y68{bottom:639.000000px;}
.y189{bottom:639.360008px;}
.y1d8{bottom:644.220017px;}
.yc7{bottom:645.480011px;}
.y46{bottom:646.379998px;}
.y134{bottom:649.980011px;}
.y121{bottom:652.860008px;}
.y1a5{bottom:655.199993px;}
.yf5{bottom:656.459988px;}
.y14{bottom:656.819995px;}
.y96{bottom:658.079990px;}
.y188{bottom:659.519989px;}
.y67{bottom:660.959988px;}
.yc6{bottom:663.839985px;}
.y1d7{bottom:664.379998px;}
.y45{bottom:668.339985px;}
.y120{bottom:671.040012px;}
.y133{bottom:672.120002px;}
.yf4{bottom:674.819995px;}
.y1a4{bottom:675.360008px;}
.y13{bottom:678.779983px;}
.y187{bottom:679.680004px;}
.y95{bottom:680.040012px;}
.yc5{bottom:682.019989px;}
.y66{bottom:683.100013px;}
.y1d6{bottom:684.540012px;}
.y11f{bottom:689.399986px;}
.y44{bottom:690.300007px;}
.yf3{bottom:693.180004px;}
.y132{bottom:694.079990px;}
.y1a3{bottom:695.519989px;}
.y186{bottom:699.660015px;}
.yc4{bottom:700.379998px;}
.y12{bottom:700.920010px;}
.y94{bottom:702.000000px;}
.y1d5{bottom:704.699993px;}
.y65{bottom:705.060001px;}
.y11e{bottom:707.759994px;}
.yf2{bottom:711.360008px;}
.y43{bottom:712.259994px;}
.y1a2{bottom:715.680004px;}
.y131{bottom:716.040012px;}
.yc3{bottom:718.740006px;}
.y11{bottom:722.879998px;}
.y93{bottom:723.959988px;}
.y1d4{bottom:724.680004px;}
.y16e{bottom:726.120002px;}
.y64{bottom:727.019989px;}
.yf1{bottom:729.720017px;}
.y42{bottom:734.220017px;}
.y1a1{bottom:735.660015px;}
.y185{bottom:737.819995px;}
.yc2{bottom:738.000000px;}
.y16d{bottom:744.300007px;}
.y10{bottom:744.839985px;}
.y92{bottom:745.740006px;}
.yf0{bottom:748.079990px;}
.y63{bottom:748.980011px;}
.y1a0{bottom:755.819995px;}
.y41{bottom:756.180004px;}
.y184{bottom:757.980011px;}
.yc1{bottom:759.959988px;}
.y16c{bottom:763.560001px;}
.y91{bottom:764.819995px;}
.y1d3{bottom:765.000000px;}
.yef{bottom:766.259994px;}
.yf{bottom:766.800007px;}
.y62{bottom:770.939999px;}
.y19f{bottom:775.980011px;}
.y14f{bottom:777.240006px;}
.y183{bottom:778.139992px;}
.y40{bottom:778.319995px;}
.yc0{bottom:781.920010px;}
.y90{bottom:783.180004px;}
.yee{bottom:784.620002px;}
.y1d2{bottom:785.160015px;}
.y16b{bottom:785.519989px;}
.ye{bottom:790.379998px;}
.y61{bottom:792.899986px;}
.y14e{bottom:795.600013px;}
.y19e{bottom:796.139992px;}
.y182{bottom:798.300007px;}
.y3f{bottom:800.279983px;}
.y8f{bottom:801.540012px;}
.yed{bottom:802.980011px;}
.ybf{bottom:803.879998px;}
.y1d1{bottom:805.319995px;}
.y16a{bottom:807.480011px;}
.y11d{bottom:813.959988px;}
.y19d{bottom:816.300007px;}
.y60{bottom:816.480011px;}
.yd{bottom:817.199993px;}
.y8e{bottom:819.720017px;}
.yec{bottom:821.339985px;}
.y3e{bottom:822.240006px;}
.y1d0{bottom:825.480011px;}
.ybe{bottom:825.839985px;}
.y169{bottom:829.439999px;}
.y11c{bottom:832.319995px;}
.y8d{bottom:838.079990px;}
.y181{bottom:838.439999px;}
.yeb{bottom:839.519989px;}
.yc{bottom:840.240006px;}
.y3d{bottom:844.199993px;}
.y1cf{bottom:845.639992px;}
.ybd{bottom:847.800007px;}
.y11b{bottom:850.500000px;}
.y168{bottom:851.399986px;}
.y8c{bottom:856.439999px;}
.yea{bottom:857.879998px;}
.y1ce{bottom:865.800007px;}
.y3c{bottom:866.160015px;}
.yb{bottom:866.879998px;}
.y11a{bottom:868.860008px;}
.ybc{bottom:869.759994px;}
.y167{bottom:873.360008px;}
.y8b{bottom:874.620002px;}
.ye9{bottom:876.240006px;}
.y1cd{bottom:885.959988px;}
.ya{bottom:886.139992px;}
.y119{bottom:887.220017px;}
.y3b{bottom:888.120002px;}
.ybb{bottom:891.720017px;}
.y8a{bottom:892.980011px;}
.ye8{bottom:894.420010px;}
.y166{bottom:895.500000px;}
.y118{bottom:905.580008px;}
.y1cc{bottom:906.120002px;}
.y9{bottom:908.099997px;}
.y3a{bottom:910.080008px;}
.y89{bottom:912.060001px;}
.ye7{bottom:912.780001px;}
.yba{bottom:913.680004px;}
.y165{bottom:917.460004px;}
.y86{bottom:921.240006px;}
.y117{bottom:923.759994px;}
.y1cb{bottom:926.099997px;}
.y88{bottom:930.419992px;}
.ye6{bottom:931.139992px;}
.y39{bottom:932.039995px;}
.y8{bottom:933.479994px;}
.yb9{bottom:935.639992px;}
.y164{bottom:939.419992px;}
.y87{bottom:939.599997px;}
.y14d{bottom:942.120002px;}
.y116{bottom:943.020006px;}
.y1ca{bottom:946.259994px;}
.y85{bottom:948.599997px;}
.ye5{bottom:949.500000px;}
.y38{bottom:954.000000px;}
.yb8{bottom:957.599997px;}
.y14c{bottom:960.479994px;}
.y115{bottom:964.979994px;}
.y1c9{bottom:966.419992px;}
.ye4{bottom:967.680004px;}
.y84{bottom:968.580008px;}
.y7{bottom:970.740006px;}
.y37{bottom:975.960004px;}
.yb7{bottom:978.659998px;}
.ye3{bottom:986.039995px;}
.y1c8{bottom:986.580008px;}
.y114{bottom:986.939999px;}
.y83{bottom:990.719999px;}
.yb6{bottom:997.020006px;}
.y36{bottom:997.919992px;}
.ye2{bottom:1004.400003px;}
.y1c7{bottom:1006.740006px;}
.y113{bottom:1008.900003px;}
.y6{bottom:1011.060001px;}
.y82{bottom:1012.680004px;}
.yb5{bottom:1015.379998px;}
.y35{bottom:1019.879998px;}
.ye1{bottom:1022.759994px;}
.y1c6{bottom:1026.900003px;}
.y112{bottom:1030.860008px;}
.yb4{bottom:1033.740006px;}
.y81{bottom:1034.639992px;}
.y34{bottom:1041.840002px;}
.y5{bottom:1046.340002px;}
.y1c5{bottom:1047.060001px;}
.yb3{bottom:1051.920001px;}
.y80{bottom:1056.599997px;}
.y33{bottom:1063.799998px;}
.y4{bottom:1064.700002px;}
.y1c4{bottom:1067.219999px;}
.yb2{bottom:1070.280001px;}
.y7f{bottom:1080.180004px;}
.y3{bottom:1083.060001px;}
.y32{bottom:1085.939999px;}
.y1c3{bottom:1087.379998px;}
.yb1{bottom:1088.640000px;}
.y2{bottom:1101.420001px;}
.y1c2{bottom:1118.340002px;}
.y1{bottom:1119.600001px;}
.hb{height:47.890039px;}
.h1{height:47.996873px;}
.hd{height:48.669376px;}
.hc{height:48.940189px;}
.he{height:54.318814px;}
.h9{height:57.827781px;}
.h6{height:59.326233px;}
.h8{height:61.073692px;}
.hf{height:65.759343px;}
.h10{height:67.696290px;}
.h5{height:71.477664px;}
.h4{height:71.650035px;}
.ha{height:73.583044px;}
.h7{height:97.865444px;}
.h3{height:119.367698px;}
.h2{height:134.656740px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:52.200002px;}
.x1{left:84.959997px;}
.x6{left:87.659998px;}
.xb{left:93.060001px;}
.x1e{left:95.579999px;}
.x2{left:111.959997px;}
.x8{left:138.959997px;}
.x19{left:179.639992px;}
.x16{left:191.340002px;}
.x1a{left:265.680005px;}
.xc{left:303.300007px;}
.x5{left:370.980011px;}
.xd{left:373.500000px;}
.x18{left:384.839985px;}
.x17{left:390.240006px;}
.x4{left:400.860008px;}
.x9{left:402.480011px;}
.xa{left:410.759994px;}
.xf{left:438.300007px;}
.xe{left:439.740006px;}
.x3{left:458.819996px;}
.x1c{left:471.420010px;}
.x1d{left:482.040012px;}
.x11{left:503.100014px;}
.x10{left:505.259994px;}
.x12{left:565.019989px;}
.x13{left:575.639992px;}
.x14{left:577.620002px;}
.x1b{left:582.299973px;}
.x15{left:648.000000px;}
@media print{
.v3{vertical-align:-97.279784pt;}
.v2{vertical-align:-32.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.119996pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.044321pt;}
.ls0{letter-spacing:0.103815pt;}
.ls1{letter-spacing:0.103819pt;}
.ls5{letter-spacing:0.283359pt;}
.ls8{letter-spacing:0.308837pt;}
.ls4{letter-spacing:7.963355pt;}
.ls2{letter-spacing:40.993678pt;}
.ls6{letter-spacing:706.737633pt;}
.ws4{word-spacing:-19.200689pt;}
.ws2{word-spacing:-14.436609pt;}
.ws5{word-spacing:-13.281658pt;}
.ws1{word-spacing:-11.982339pt;}
.ws0{word-spacing:-9.672529pt;}
.ws3{word-spacing:0.000000pt;}
._3a{margin-left:-8.518650pt;}
._c{margin-left:-3.412452pt;}
._b{margin-left:-2.120768pt;}
._2{margin-left:-1.074257pt;}
._0{width:1.435453pt;}
._10{width:2.418100pt;}
._9{width:3.593183pt;}
._a{width:4.584043pt;}
._3{width:5.522322pt;}
._6{width:6.803078pt;}
._4{width:7.719354pt;}
._5{width:8.789119pt;}
._d{width:9.770462pt;}
._e{width:11.003696pt;}
._f{width:12.153970pt;}
._1d{width:13.534144pt;}
._37{width:14.477879pt;}
._8{width:15.389374pt;}
._7{width:16.323148pt;}
._20{width:17.212223pt;}
._17{width:18.428081pt;}
._16{width:19.457832pt;}
._1e{width:20.547393pt;}
._1a{width:21.773810pt;}
._19{width:23.029433pt;}
._18{width:24.483664pt;}
._1f{width:25.743697pt;}
._14{width:37.747204pt;}
._1b{width:62.481524pt;}
._1c{width:64.157771pt;}
._39{width:153.564635pt;}
._21{width:171.455808pt;}
._15{width:177.838579pt;}
._24{width:191.589970pt;}
._25{width:205.029910pt;}
._23{width:210.789922pt;}
._2d{width:218.417685pt;}
._30{width:223.997422pt;}
._2e{width:226.097617pt;}
._34{width:233.527269pt;}
._2c{width:237.617637pt;}
._26{width:239.537557pt;}
._27{width:247.270026pt;}
._31{width:253.050461pt;}
._2a{width:260.544629pt;}
._2f{width:283.400050pt;}
._32{width:298.030433pt;}
._28{width:311.217613pt;}
._35{width:541.660509pt;}
._33{width:567.662077pt;}
._2b{width:580.090778pt;}
._22{width:648.675475pt;}
._29{width:666.719961pt;}
._36{width:683.509090pt;}
._12{width:880.032357pt;}
._38{width:1090.286829pt;}
._13{width:1117.326621pt;}
._1{width:1154.242896pt;}
._11{width:1899.954182pt;}
.fs4{font-size:42.798800pt;}
.fs0{font-size:53.019200pt;}
.fs6{font-size:58.768400pt;}
.fs3{font-size:63.878800pt;}
.fs5{font-size:84.958800pt;}
.fs2{font-size:106.677596pt;}
.fs1{font-size:116.898004pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:19.199951pt;}
.y31{bottom:52.159973pt;}
.y2f{bottom:62.719971pt;}
.y2e{bottom:76.640015pt;}
.y1c1{bottom:81.119995pt;}
.y163{bottom:82.239990pt;}
.y17e{bottom:83.039978pt;}
.y5f{bottom:86.239990pt;}
.y14b{bottom:88.799988pt;}
.y1f3{bottom:89.280029pt;}
.y2d{bottom:90.719971pt;}
.y111{bottom:95.200012pt;}
.y19c{bottom:97.760010pt;}
.y162{bottom:98.559998pt;}
.y1c0{bottom:99.039978pt;}
.y180{bottom:99.359985pt;}
.y17d{bottom:102.559998pt;}
.y2c{bottom:104.799988pt;}
.y14a{bottom:104.960022pt;}
.y5e{bottom:105.760010pt;}
.yb0{bottom:106.400024pt;}
.y1f2{bottom:107.200012pt;}
.y110{bottom:111.520020pt;}
.ye0{bottom:112.320007pt;}
.y161{bottom:114.719971pt;}
.y130{bottom:115.520020pt;}
.y1bf{bottom:116.960022pt;}
.y2b{bottom:118.880005pt;}
.y149{bottom:121.280029pt;}
.y17c{bottom:122.080017pt;}
.y1f1{bottom:124.960022pt;}
.y5d{bottom:125.280029pt;}
.yaf{bottom:125.919983pt;}
.y10f{bottom:127.840027pt;}
.y160{bottom:131.039978pt;}
.ydf{bottom:131.840027pt;}
.y2a{bottom:132.960022pt;}
.y1be{bottom:134.719971pt;}
.y12f{bottom:135.200012pt;}
.y148{bottom:137.599976pt;}
.y7e{bottom:138.400024pt;}
.y17f{bottom:139.840027pt;}
.y17b{bottom:141.599976pt;}
.y1f0{bottom:142.880005pt;}
.y10e{bottom:144.000000pt;}
.y5c{bottom:144.960022pt;}
.yae{bottom:145.440002pt;}
.y29{bottom:146.880005pt;}
.y15f{bottom:147.359985pt;}
.y19b{bottom:148.159973pt;}
.yde{bottom:151.359985pt;}
.y1bd{bottom:152.640015pt;}
.y12e{bottom:153.919983pt;}
.y7d{bottom:157.919983pt;}
.y10d{bottom:160.320007pt;}
.y1ef{bottom:160.799988pt;}
.y28{bottom:160.960022pt;}
.y17a{bottom:161.119995pt;}
.y15e{bottom:163.679993pt;}
.y5b{bottom:164.479980pt;}
.yad{bottom:164.960022pt;}
.y19a{bottom:166.080017pt;}
.y12d{bottom:170.080017pt;}
.y1bc{bottom:170.559998pt;}
.ydd{bottom:170.880005pt;}
.y10c{bottom:176.640015pt;}
.y7c{bottom:177.440002pt;}
.y1ee{bottom:178.719971pt;}
.y15d{bottom:180.640015pt;}
.y5a{bottom:184.000000pt;}
.yac{bottom:184.479980pt;}
.y12c{bottom:186.400024pt;}
.y27{bottom:186.880005pt;}
.y1bb{bottom:188.479980pt;}
.ydc{bottom:190.400024pt;}
.y10b{bottom:192.960022pt;}
.y1ed{bottom:196.640015pt;}
.y7b{bottom:196.960022pt;}
.y15c{bottom:200.159973pt;}
.y199{bottom:201.760010pt;}
.y12b{bottom:202.719971pt;}
.y59{bottom:203.520020pt;}
.yab{bottom:204.000000pt;}
.y1ba{bottom:206.400024pt;}
.y10a{bottom:209.119995pt;}
.ydb{bottom:209.919983pt;}
.y1ec{bottom:214.559998pt;}
.y7a{bottom:216.479980pt;}
.y26{bottom:217.280029pt;}
.y12a{bottom:218.880005pt;}
.y147{bottom:219.679993pt;}
.yaa{bottom:222.719971pt;}
.y58{bottom:223.039978pt;}
.y1b9{bottom:224.320007pt;}
.y109{bottom:225.440002pt;}
.yda{bottom:229.599976pt;}
.y1eb{bottom:232.479980pt;}
.y129{bottom:235.200012pt;}
.y198{bottom:235.679993pt;}
.y79{bottom:236.000000pt;}
.y25{bottom:236.799988pt;}
.ya9{bottom:239.039978pt;}
.y146{bottom:239.359985pt;}
.y108{bottom:241.760010pt;}
.y1b8{bottom:242.239990pt;}
.y57{bottom:242.559998pt;}
.yd9{bottom:249.119995pt;}
.y1ea{bottom:250.400024pt;}
.y128{bottom:251.520020pt;}
.y197{bottom:253.599976pt;}
.ya8{bottom:255.359985pt;}
.y78{bottom:255.520020pt;}
.y24{bottom:256.320007pt;}
.y107{bottom:258.080017pt;}
.y145{bottom:258.880005pt;}
.y1b7{bottom:260.159973pt;}
.y56{bottom:262.080017pt;}
.y127{bottom:267.840027pt;}
.y1e9{bottom:268.320007pt;}
.yd8{bottom:268.640015pt;}
.y196{bottom:271.520020pt;}
.ya7{bottom:271.679993pt;}
.y106{bottom:274.239990pt;}
.y77{bottom:275.039978pt;}
.y23{bottom:275.840027pt;}
.y1b6{bottom:278.080017pt;}
.y144{bottom:278.400024pt;}
.y55{bottom:281.599976pt;}
.y126{bottom:284.000000pt;}
.y1e8{bottom:286.080017pt;}
.ya6{bottom:287.840027pt;}
.yd7{bottom:288.159973pt;}
.y105{bottom:290.559998pt;}
.y76{bottom:294.559998pt;}
.y22{bottom:295.520020pt;}
.y1b5{bottom:296.000000pt;}
.y15b{bottom:297.119995pt;}
.y143{bottom:297.919983pt;}
.y125{bottom:300.320007pt;}
.y54{bottom:301.119995pt;}
.y1e7{bottom:304.000000pt;}
.ya5{bottom:304.159973pt;}
.y195{bottom:305.440002pt;}
.y104{bottom:306.880005pt;}
.yd6{bottom:307.679993pt;}
.y15a{bottom:313.280029pt;}
.y1b4{bottom:313.760010pt;}
.y75{bottom:314.080017pt;}
.y21{bottom:316.479980pt;}
.y124{bottom:316.640015pt;}
.y179{bottom:317.440002pt;}
.ya4{bottom:320.479980pt;}
.y53{bottom:320.640015pt;}
.y1e6{bottom:321.919983pt;}
.y103{bottom:323.039978pt;}
.y194{bottom:323.359985pt;}
.yd5{bottom:327.200012pt;}
.y159{bottom:329.599976pt;}
.y1b3{bottom:331.679993pt;}
.y142{bottom:332.799988pt;}
.y74{bottom:333.760010pt;}
.ya3{bottom:336.799988pt;}
.y178{bottom:336.960022pt;}
.y102{bottom:339.359985pt;}
.y1e5{bottom:339.840027pt;}
.y52{bottom:340.159973pt;}
.y20{bottom:342.400024pt;}
.y158{bottom:345.919983pt;}
.yd4{bottom:346.719971pt;}
.y141{bottom:349.119995pt;}
.y1b2{bottom:349.599976pt;}
.ya2{bottom:352.960022pt;}
.y73{bottom:353.280029pt;}
.y101{bottom:356.479980pt;}
.y193{bottom:357.280029pt;}
.y1e4{bottom:357.760010pt;}
.y177{bottom:357.919983pt;}
.y51{bottom:359.679993pt;}
.y157{bottom:362.239990pt;}
.y140{bottom:365.440002pt;}
.yd3{bottom:366.239990pt;}
.y1b1{bottom:367.520020pt;}
.y1f{bottom:369.119995pt;}
.ya1{bottom:370.080017pt;}
.y72{bottom:372.799988pt;}
.y192{bottom:375.200012pt;}
.y1e3{bottom:375.679993pt;}
.y100{bottom:376.000000pt;}
.y156{bottom:378.400024pt;}
.y50{bottom:379.200012pt;}
.y13f{bottom:381.760010pt;}
.y176{bottom:382.559998pt;}
.y1b0{bottom:385.440002pt;}
.yd2{bottom:385.760010pt;}
.y1e{bottom:388.640015pt;}
.ya0{bottom:389.599976pt;}
.y71{bottom:392.320007pt;}
.y191{bottom:393.119995pt;}
.y1e2{bottom:393.599976pt;}
.y155{bottom:394.719971pt;}
.yff{bottom:395.520020pt;}
.y13e{bottom:397.919983pt;}
.y4f{bottom:398.719971pt;}
.y175{bottom:402.080017pt;}
.y1af{bottom:403.359985pt;}
.yd1{bottom:405.280029pt;}
.y1d{bottom:408.159973pt;}
.y9f{bottom:409.119995pt;}
.y190{bottom:410.880005pt;}
.y1e1{bottom:411.520020pt;}
.y70{bottom:411.840027pt;}
.y13d{bottom:414.239990pt;}
.yfe{bottom:415.039978pt;}
.y4e{bottom:418.400024pt;}
.y1ae{bottom:421.280029pt;}
.y174{bottom:421.599976pt;}
.yd0{bottom:424.799988pt;}
.y1c{bottom:427.679993pt;}
.y9e{bottom:428.640015pt;}
.y18f{bottom:428.799988pt;}
.y1e0{bottom:429.440002pt;}
.y13c{bottom:430.559998pt;}
.y6f{bottom:431.359985pt;}
.yfd{bottom:434.559998pt;}
.y4d{bottom:437.919983pt;}
.y1ad{bottom:439.200012pt;}
.y173{bottom:441.119995pt;}
.ycf{bottom:443.520020pt;}
.y18e{bottom:446.719971pt;}
.y13b{bottom:446.880005pt;}
.y1b{bottom:447.200012pt;}
.y1df{bottom:447.359985pt;}
.y9d{bottom:448.159973pt;}
.y6e{bottom:450.880005pt;}
.yfc{bottom:454.080017pt;}
.y1ac{bottom:457.119995pt;}
.y4c{bottom:457.440002pt;}
.yce{bottom:459.840027pt;}
.y172{bottom:460.640015pt;}
.y13a{bottom:463.039978pt;}
.y18d{bottom:464.640015pt;}
.y1de{bottom:465.119995pt;}
.y1a{bottom:466.719971pt;}
.y9c{bottom:467.679993pt;}
.y154{bottom:469.599976pt;}
.y6d{bottom:470.400024pt;}
.yfb{bottom:473.599976pt;}
.y1ab{bottom:474.880005pt;}
.ycd{bottom:476.159973pt;}
.y4b{bottom:476.960022pt;}
.y139{bottom:480.159973pt;}
.y18c{bottom:482.559998pt;}
.y1dd{bottom:483.039978pt;}
.y153{bottom:485.919983pt;}
.y19{bottom:486.239990pt;}
.y9b{bottom:487.200012pt;}
.y6c{bottom:489.919983pt;}
.ycc{bottom:492.320007pt;}
.y1aa{bottom:492.799988pt;}
.yfa{bottom:493.119995pt;}
.y4a{bottom:496.479980pt;}
.y171{bottom:498.880005pt;}
.y138{bottom:499.679993pt;}
.y1dc{bottom:500.960022pt;}
.y152{bottom:502.080017pt;}
.y18{bottom:505.760010pt;}
.y9a{bottom:506.880005pt;}
.ycb{bottom:508.640015pt;}
.y6b{bottom:509.440002pt;}
.y1a9{bottom:510.719971pt;}
.yf9{bottom:512.799988pt;}
.y170{bottom:515.200012pt;}
.y49{bottom:516.000000pt;}
.y18b{bottom:516.479980pt;}
.y151{bottom:518.400024pt;}
.y1db{bottom:518.880005pt;}
.y137{bottom:519.200012pt;}
.yca{bottom:524.960022pt;}
.y17{bottom:525.280029pt;}
.y99{bottom:526.400024pt;}
.y1a8{bottom:528.640015pt;}
.y6a{bottom:528.960022pt;}
.y16f{bottom:531.520020pt;}
.yf8{bottom:532.320007pt;}
.y18a{bottom:534.400024pt;}
.y150{bottom:534.719971pt;}
.y48{bottom:535.520020pt;}
.y1da{bottom:536.799988pt;}
.y136{bottom:538.719971pt;}
.yc9{bottom:541.280029pt;}
.y16{bottom:544.799988pt;}
.y98{bottom:545.920013pt;}
.y1a7{bottom:546.559998pt;}
.y123{bottom:547.679993pt;}
.y69{bottom:548.480011pt;}
.yf7{bottom:551.040009pt;}
.y1d9{bottom:554.720001pt;}
.y47{bottom:555.040009pt;}
.yc8{bottom:557.440002pt;}
.y135{bottom:558.239990pt;}
.y122{bottom:564.000000pt;}
.y15{bottom:564.320007pt;}
.y1a6{bottom:564.480011pt;}
.y97{bottom:565.440002pt;}
.yf6{bottom:567.200012pt;}
.y68{bottom:568.000000pt;}
.y189{bottom:568.320007pt;}
.y1d8{bottom:572.640015pt;}
.yc7{bottom:573.760010pt;}
.y46{bottom:574.559998pt;}
.y134{bottom:577.760010pt;}
.y121{bottom:580.320007pt;}
.y1a5{bottom:582.399994pt;}
.yf5{bottom:583.519989pt;}
.y14{bottom:583.839996pt;}
.y96{bottom:584.959991pt;}
.y188{bottom:586.239990pt;}
.y67{bottom:587.519989pt;}
.yc6{bottom:590.079987pt;}
.y1d7{bottom:590.559998pt;}
.y45{bottom:594.079987pt;}
.y120{bottom:596.480011pt;}
.y133{bottom:597.440002pt;}
.yf4{bottom:599.839996pt;}
.y1a4{bottom:600.320007pt;}
.y13{bottom:603.359985pt;}
.y187{bottom:604.160004pt;}
.y95{bottom:604.480011pt;}
.yc5{bottom:606.239990pt;}
.y66{bottom:607.200012pt;}
.y1d6{bottom:608.480011pt;}
.y11f{bottom:612.799988pt;}
.y44{bottom:613.600006pt;}
.yf3{bottom:616.160004pt;}
.y132{bottom:616.959991pt;}
.y1a3{bottom:618.239990pt;}
.y186{bottom:621.920013pt;}
.yc4{bottom:622.559998pt;}
.y12{bottom:623.040009pt;}
.y94{bottom:624.000000pt;}
.y1d5{bottom:626.399994pt;}
.y65{bottom:626.720001pt;}
.y11e{bottom:629.119995pt;}
.yf2{bottom:632.320007pt;}
.y43{bottom:633.119995pt;}
.y1a2{bottom:636.160004pt;}
.y131{bottom:636.480011pt;}
.yc3{bottom:638.880005pt;}
.y11{bottom:642.559998pt;}
.y93{bottom:643.519989pt;}
.y1d4{bottom:644.160004pt;}
.y16e{bottom:645.440002pt;}
.y64{bottom:646.239990pt;}
.yf1{bottom:648.640015pt;}
.y42{bottom:652.640015pt;}
.y1a1{bottom:653.920013pt;}
.y185{bottom:655.839996pt;}
.yc2{bottom:656.000000pt;}
.y16d{bottom:661.600006pt;}
.y10{bottom:662.079987pt;}
.y92{bottom:662.880005pt;}
.yf0{bottom:664.959991pt;}
.y63{bottom:665.760010pt;}
.y1a0{bottom:671.839996pt;}
.y41{bottom:672.160004pt;}
.y184{bottom:673.760010pt;}
.yc1{bottom:675.519989pt;}
.y16c{bottom:678.720001pt;}
.y91{bottom:679.839996pt;}
.y1d3{bottom:680.000000pt;}
.yef{bottom:681.119995pt;}
.yf{bottom:681.600006pt;}
.y62{bottom:685.279999pt;}
.y19f{bottom:689.760010pt;}
.y14f{bottom:690.880005pt;}
.y183{bottom:691.679993pt;}
.y40{bottom:691.839996pt;}
.yc0{bottom:695.040009pt;}
.y90{bottom:696.160004pt;}
.yee{bottom:697.440002pt;}
.y1d2{bottom:697.920013pt;}
.y16b{bottom:698.239990pt;}
.ye{bottom:702.559998pt;}
.y61{bottom:704.799988pt;}
.y14e{bottom:707.200012pt;}
.y19e{bottom:707.679993pt;}
.y182{bottom:709.600006pt;}
.y3f{bottom:711.359985pt;}
.y8f{bottom:712.480011pt;}
.yed{bottom:713.760010pt;}
.ybf{bottom:714.559998pt;}
.y1d1{bottom:715.839996pt;}
.y16a{bottom:717.760010pt;}
.y11d{bottom:723.519989pt;}
.y19d{bottom:725.600006pt;}
.y60{bottom:725.760010pt;}
.yd{bottom:726.399994pt;}
.y8e{bottom:728.640015pt;}
.yec{bottom:730.079987pt;}
.y3e{bottom:730.880005pt;}
.y1d0{bottom:733.760010pt;}
.ybe{bottom:734.079987pt;}
.y169{bottom:737.279999pt;}
.y11c{bottom:739.839996pt;}
.y8d{bottom:744.959991pt;}
.y181{bottom:745.279999pt;}
.yeb{bottom:746.239990pt;}
.yc{bottom:746.880005pt;}
.y3d{bottom:750.399994pt;}
.y1cf{bottom:751.679993pt;}
.ybd{bottom:753.600006pt;}
.y11b{bottom:756.000000pt;}
.y168{bottom:756.799988pt;}
.y8c{bottom:761.279999pt;}
.yea{bottom:762.559998pt;}
.y1ce{bottom:769.600006pt;}
.y3c{bottom:769.920013pt;}
.yb{bottom:770.559998pt;}
.y11a{bottom:772.320007pt;}
.ybc{bottom:773.119995pt;}
.y167{bottom:776.320007pt;}
.y8b{bottom:777.440002pt;}
.ye9{bottom:778.880005pt;}
.y1cd{bottom:787.519989pt;}
.ya{bottom:787.679993pt;}
.y119{bottom:788.640015pt;}
.y3b{bottom:789.440002pt;}
.ybb{bottom:792.640015pt;}
.y8a{bottom:793.760010pt;}
.ye8{bottom:795.040009pt;}
.y166{bottom:796.000000pt;}
.y118{bottom:804.960007pt;}
.y1cc{bottom:805.440002pt;}
.y9{bottom:807.199997pt;}
.y3a{bottom:808.960007pt;}
.y89{bottom:810.720001pt;}
.ye7{bottom:811.360001pt;}
.yba{bottom:812.160004pt;}
.y165{bottom:815.520004pt;}
.y86{bottom:818.880005pt;}
.y117{bottom:821.119995pt;}
.y1cb{bottom:823.199997pt;}
.y88{bottom:827.039993pt;}
.ye6{bottom:827.679993pt;}
.y39{bottom:828.479996pt;}
.y8{bottom:829.759995pt;}
.yb9{bottom:831.679993pt;}
.y164{bottom:835.039993pt;}
.y87{bottom:835.199997pt;}
.y14d{bottom:837.440002pt;}
.y116{bottom:838.240005pt;}
.y1ca{bottom:841.119995pt;}
.y85{bottom:843.199997pt;}
.ye5{bottom:844.000000pt;}
.y38{bottom:848.000000pt;}
.yb8{bottom:851.199997pt;}
.y14c{bottom:853.759995pt;}
.y115{bottom:857.759995pt;}
.y1c9{bottom:859.039993pt;}
.ye4{bottom:860.160004pt;}
.y84{bottom:860.960007pt;}
.y7{bottom:862.880005pt;}
.y37{bottom:867.520004pt;}
.yb7{bottom:869.919998pt;}
.ye3{bottom:876.479996pt;}
.y1c8{bottom:876.960007pt;}
.y114{bottom:877.279999pt;}
.y83{bottom:880.639999pt;}
.yb6{bottom:886.240005pt;}
.y36{bottom:887.039993pt;}
.ye2{bottom:892.800003pt;}
.y1c7{bottom:894.880005pt;}
.y113{bottom:896.800003pt;}
.y6{bottom:898.720001pt;}
.y82{bottom:900.160004pt;}
.yb5{bottom:902.559998pt;}
.y35{bottom:906.559998pt;}
.ye1{bottom:909.119995pt;}
.y1c6{bottom:912.800003pt;}
.y112{bottom:916.320007pt;}
.yb4{bottom:918.880005pt;}
.y81{bottom:919.679993pt;}
.y34{bottom:926.080002pt;}
.y5{bottom:930.080002pt;}
.y1c5{bottom:930.720001pt;}
.yb3{bottom:935.040001pt;}
.y80{bottom:939.199997pt;}
.y33{bottom:945.599998pt;}
.y4{bottom:946.400002pt;}
.y1c4{bottom:948.639999pt;}
.yb2{bottom:951.360001pt;}
.y7f{bottom:960.160004pt;}
.y3{bottom:962.720001pt;}
.y32{bottom:965.279999pt;}
.y1c3{bottom:966.559998pt;}
.yb1{bottom:967.680000pt;}
.y2{bottom:979.040001pt;}
.y1c2{bottom:994.080002pt;}
.y1{bottom:995.200001pt;}
.hb{height:42.568924pt;}
.h1{height:42.663888pt;}
.hd{height:43.261668pt;}
.hc{height:43.502390pt;}
.he{height:48.283390pt;}
.h9{height:51.402472pt;}
.h6{height:52.734429pt;}
.h8{height:54.287726pt;}
.hf{height:58.452749pt;}
.h10{height:60.174480pt;}
.h5{height:63.535701pt;}
.h4{height:63.688920pt;}
.ha{height:65.407150pt;}
.h7{height:86.991506pt;}
.h3{height:106.104621pt;}
.h2{height:119.694880pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:46.400002pt;}
.x1{left:75.519997pt;}
.x6{left:77.919998pt;}
.xb{left:82.720001pt;}
.x1e{left:84.959999pt;}
.x2{left:99.519997pt;}
.x8{left:123.519997pt;}
.x19{left:159.679993pt;}
.x16{left:170.080002pt;}
.x1a{left:236.160004pt;}
.xc{left:269.600006pt;}
.x5{left:329.760010pt;}
.xd{left:332.000000pt;}
.x18{left:342.079987pt;}
.x17{left:346.880005pt;}
.x4{left:356.320007pt;}
.x9{left:357.760010pt;}
.xa{left:365.119995pt;}
.xf{left:389.600006pt;}
.xe{left:390.880005pt;}
.x3{left:407.839996pt;}
.x1c{left:419.040009pt;}
.x1d{left:428.480011pt;}
.x11{left:447.200012pt;}
.x10{left:449.119995pt;}
.x12{left:502.239990pt;}
.x13{left:511.679993pt;}
.x14{left:513.440002pt;}
.x1b{left:517.599976pt;}
.x15{left:576.000000pt;}
}




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