
    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_0835c62cb4434867fe728168.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_b1d616e41bf1fb4d6224ba62.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.130371;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_7f23ba6af353996d7deac6c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.087891;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_50910ff7a081a59d1efcaf3e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_20d90f68230d6b5272fb8578.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_c165cff9b0413dd0f2ccb68f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_74d5fd1d332cbb8f966ca28e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ad732f873f045e51a816450f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.751953;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:50.400059px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.046318px;}
.ls7{letter-spacing:0.050529px;}
.lsa{letter-spacing:0.060074px;}
.ls4{letter-spacing:0.212040px;}
.ls8{letter-spacing:0.356975px;}
.ls9{letter-spacing:34.093769px;}
.ls5{letter-spacing:55.477892px;}
.ls1{letter-spacing:64.117883px;}
.ls6{letter-spacing:150.798793px;}
.ls3{letter-spacing:311.358829px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-71.863650px;}
.ws2{word-spacing:-59.646600px;}
.ws1{word-spacing:-16.241185px;}
.ws3{word-spacing:-14.615962px;}
.ws0{word-spacing:0.000000px;}
._16{margin-left:-13.268169px;}
._17{margin-left:-10.956047px;}
._b{margin-left:-8.537947px;}
._0{margin-left:-6.613202px;}
._18{margin-left:-5.489351px;}
._4{margin-left:-4.448882px;}
._2{margin-left:-2.525041px;}
._1{margin-left:-1.202400px;}
._3{width:1.202400px;}
._e{width:2.561827px;}
._d{width:3.734422px;}
._1a{width:4.760481px;}
._12{width:5.767707px;}
._7{width:7.008659px;}
._8{width:8.066742px;}
._c{width:9.584467px;}
._f{width:11.119981px;}
._a{width:12.243661px;}
._9{width:13.341374px;}
._19{width:15.185605px;}
._20{width:17.985153px;}
._14{width:19.045832px;}
._1f{width:20.566451px;}
._13{width:21.872095px;}
._22{width:22.915481px;}
._6{width:24.598984px;}
._5{width:25.722415px;}
._21{width:27.081207px;}
._1b{width:29.071314px;}
._1c{width:30.671021px;}
._23{width:32.044158px;}
._1e{width:33.217359px;}
._1d{width:34.547327px;}
._10{width:35.735042px;}
._11{width:37.135822px;}
._67{width:38.540532px;}
._54{width:41.287070px;}
._45{width:45.998350px;}
._2a{width:50.125738px;}
._53{width:51.133225px;}
._2c{width:56.697525px;}
._2d{width:57.699804px;}
._68{width:60.518436px;}
._29{width:62.673524px;}
._36{width:68.319874px;}
._27{width:70.625125px;}
._28{width:72.020659px;}
._26{width:75.302719px;}
._3e{width:79.734512px;}
._64{width:88.875123px;}
._24{width:97.825709px;}
._62{width:111.724115px;}
._50{width:128.426238px;}
._60{width:136.157756px;}
._4f{width:148.076592px;}
._5a{width:153.879356px;}
._4c{width:169.717616px;}
._61{width:200.932771px;}
._39{width:223.910507px;}
._4a{width:227.424591px;}
._4e{width:232.137082px;}
._48{width:248.073320px;}
._5f{width:255.371130px;}
._65{width:256.931830px;}
._3b{width:262.321604px;}
._51{width:264.695703px;}
._63{width:266.615264px;}
._5d{width:268.966360px;}
._3a{width:273.528404px;}
._52{width:287.354268px;}
._2f{width:300.265418px;}
._2e{width:301.477632px;}
._3c{width:306.306043px;}
._40{width:307.418161px;}
._43{width:312.584199px;}
._49{width:314.149050px;}
._5c{width:316.056333px;}
._44{width:336.687657px;}
._38{width:357.342589px;}
._2b{width:359.449345px;}
._25{width:369.954070px;}
._5e{width:371.631514px;}
._3f{width:376.246960px;}
._42{width:392.076751px;}
._4b{width:399.009442px;}
._41{width:416.186530px;}
._66{width:428.594809px;}
._46{width:435.584864px;}
._3d{width:437.677106px;}
._34{width:478.683773px;}
._35{width:488.150493px;}
._47{width:513.413542px;}
._37{width:543.405588px;}
._59{width:550.102438px;}
._5b{width:552.794477px;}
._58{width:554.791327px;}
._56{width:566.514874px;}
._57{width:578.369851px;}
._55{width:586.570393px;}
._4d{width:613.990193px;}
._15{width:847.559888px;}
._31{width:2140.315088px;}
._30{width:2176.965549px;}
._32{width:2210.022828px;}
._33{width:2211.460101px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(15,71,97);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.646600px;}
.fs0{font-size:71.863650px;}
.fs5{font-size:71.999814px;}
.fs4{font-size:95.578650px;}
.fs3{font-size:95.759399px;}
.fs1{font-size:120.240044px;}
.y0{bottom:0.000000px;}
.yf1{bottom:4.859973px;}
.ye5{bottom:4.859991px;}
.yed{bottom:4.859992px;}
.ye2{bottom:4.860008px;}
.y122{bottom:4.860009px;}
.y2{bottom:58.139992px;}
.y1{bottom:80.100013px;}
.y3{bottom:105.299973px;}
.y10f{bottom:115.200027px;}
.y133{bottom:116.460022px;}
.y15a{bottom:121.139992px;}
.y110{bottom:121.860008px;}
.y1c9{bottom:127.080025px;}
.y112{bottom:129.600013px;}
.y6b{bottom:132.117650px;}
.y1d2{bottom:133.919975px;}
.y16e{bottom:134.460022px;}
.y10e{bottom:140.399986px;}
.y132{bottom:141.659981px;}
.y137{bottom:144.000000px;}
.y159{bottom:146.519989px;}
.yca{bottom:147.059967px;}
.y1c8{bottom:152.460022px;}
.y111{bottom:154.980011px;}
.y135{bottom:156.779983px;}
.y1d1{bottom:159.120002px;}
.y16d{bottom:159.659981px;}
.y136{bottom:164.519989px;}
.y192{bottom:165.240006px;}
.y10d{bottom:165.779983px;}
.y131{bottom:167.039977px;}
.y6a{bottom:167.944039px;}
.y158{bottom:171.720017px;}
.yb9{bottom:172.440033px;}
.y1c7{bottom:177.659981px;}
.yde{bottom:180.179970px;}
.y1d0{bottom:184.500000px;}
.y16c{bottom:185.039977px;}
.y191{bottom:190.440033px;}
.y10c{bottom:190.980011px;}
.y130{bottom:192.240006px;}
.y157{bottom:197.100013px;}
.yb8{bottom:197.639992px;}
.y134{bottom:200.700027px;}
.y1c6{bottom:202.860008px;}
.y69{bottom:203.946166px;}
.ydd{bottom:205.559967px;}
.y1cf{bottom:209.700027px;}
.y16b{bottom:210.240006px;}
.y190{bottom:215.820030px;}
.y10b{bottom:216.360008px;}
.y12f{bottom:217.620002px;}
.y156{bottom:222.299973px;}
.yb7{bottom:222.840019px;}
.y1c5{bottom:228.240006px;}
.y24{bottom:228.600013px;}
.ydc{bottom:230.759994px;}
.y1ce{bottom:234.899986px;}
.y16a{bottom:235.620002px;}
.y68{bottom:239.761504px;}
.y18f{bottom:241.019989px;}
.y10a{bottom:241.559967px;}
.y12e{bottom:242.820030px;}
.y155{bottom:247.500000px;}
.yb6{bottom:248.220017px;}
.y1c4{bottom:253.440033px;}
.y23{bottom:253.980011px;}
.ydb{bottom:255.960022px;}
.y1cd{bottom:260.279983px;}
.y169{bottom:260.820030px;}
.y18e{bottom:266.399986px;}
.y109{bottom:266.759994px;}
.y12d{bottom:268.019989px;}
.y154{bottom:272.879998px;}
.yb5{bottom:273.419975px;}
.y67{bottom:275.758051px;}
.y1c3{bottom:278.639992px;}
.y22{bottom:279.179970px;}
.yda{bottom:281.340019px;}
.y1cc{bottom:285.480011px;}
.y168{bottom:286.019989px;}
.y18d{bottom:291.600013px;}
.y108{bottom:292.139992px;}
.y12c{bottom:293.399986px;}
.y153{bottom:298.080025px;}
.yb4{bottom:298.799973px;}
.y1c2{bottom:304.019989px;}
.y21{bottom:304.379998px;}
.yd9{bottom:306.539977px;}
.y1cb{bottom:310.679970px;}
.y167{bottom:311.399986px;}
.y66{bottom:311.584386px;}
.y18c{bottom:316.799973px;}
.y107{bottom:317.340019px;}
.y12b{bottom:318.600013px;}
.y152{bottom:323.279983px;}
.yb3{bottom:324.000000px;}
.y1c1{bottom:329.220017px;}
.y20{bottom:329.759994px;}
.yd8{bottom:331.919975px;}
.y1ca{bottom:336.059967px;}
.y166{bottom:336.600013px;}
.y18b{bottom:342.179970px;}
.y106{bottom:342.539977px;}
.y12a{bottom:343.980011px;}
.y65{bottom:347.580987px;}
.y151{bottom:348.659981px;}
.yb2{bottom:349.200027px;}
.y1c0{bottom:354.600013px;}
.y1f{bottom:354.960022px;}
.y8a{bottom:355.320030px;}
.yd7{bottom:357.120002px;}
.y50{bottom:361.259994px;}
.y165{bottom:361.980011px;}
.y18a{bottom:367.379998px;}
.y105{bottom:367.919975px;}
.y129{bottom:369.179970px;}
.y150{bottom:373.860008px;}
.yb1{bottom:374.580025px;}
.y1bf{bottom:379.799973px;}
.y1e{bottom:380.159981px;}
.y89{bottom:380.519989px;}
.yd6{bottom:382.320030px;}
.y64{bottom:383.583114px;}
.y4f{bottom:386.639992px;}
.y164{bottom:387.179970px;}
.y189{bottom:392.580025px;}
.y104{bottom:393.120002px;}
.y128{bottom:394.379998px;}
.y14f{bottom:399.240006px;}
.yb0{bottom:399.779983px;}
.y1be{bottom:405.000000px;}
.y1d{bottom:405.539977px;}
.y88{bottom:405.899986px;}
.yd5{bottom:407.700027px;}
.y4e{bottom:411.840019px;}
.y163{bottom:412.379998px;}
.y188{bottom:417.960022px;}
.y103{bottom:418.500000px;}
.y63{bottom:419.398452px;}
.y127{bottom:419.759994px;}
.y14e{bottom:424.440033px;}
.yaf{bottom:425.159981px;}
.y1bd{bottom:430.379998px;}
.y1c{bottom:430.740006px;}
.y87{bottom:431.100013px;}
.yd4{bottom:432.899986px;}
.y4d{bottom:437.039977px;}
.y162{bottom:437.759994px;}
.y187{bottom:443.159981px;}
.y102{bottom:443.700027px;}
.y126{bottom:444.960022px;}
.y14d{bottom:449.639992px;}
.yae{bottom:450.360008px;}
.y62{bottom:455.400579px;}
.y1bc{bottom:455.580025px;}
.y1b{bottom:456.120002px;}
.y86{bottom:456.299973px;}
.yd3{bottom:458.100013px;}
.y4c{bottom:462.419975px;}
.y161{bottom:467.820030px;}
.y186{bottom:468.539977px;}
.y101{bottom:468.899986px;}
.y125{bottom:470.159981px;}
.y14c{bottom:475.019989px;}
.yad{bottom:475.559967px;}
.y1bb{bottom:480.779983px;}
.y1a{bottom:481.320030px;}
.y85{bottom:481.679970px;}
.yd2{bottom:483.480011px;}
.y4b{bottom:487.620002px;}
.y61{bottom:491.397180px;}
.y185{bottom:493.740006px;}
.y100{bottom:494.279983px;}
.y124{bottom:495.539977px;}
.y160{bottom:499.139992px;}
.y14b{bottom:500.220017px;}
.yac{bottom:500.940033px;}
.y1ba{bottom:506.159981px;}
.y19{bottom:506.519989px;}
.y84{bottom:506.879998px;}
.yd1{bottom:508.679970px;}
.y4a{bottom:513.000000px;}
.y184{bottom:518.940033px;}
.yff{bottom:519.480011px;}
.y123{bottom:520.740006px;}
.y14a{bottom:525.419975px;}
.yab{bottom:526.139992px;}
.y60{bottom:527.223515px;}
.y15f{bottom:530.460022px;}
.y1b9{bottom:531.360008px;}
.y18{bottom:531.899986px;}
.y83{bottom:532.259994px;}
.yd0{bottom:534.059967px;}
.y49{bottom:538.200027px;}
.y183{bottom:544.320030px;}
.yfe{bottom:544.860008px;}
.y121{bottom:546.120002px;}
.y149{bottom:550.799973px;}
.y120{bottom:550.980011px;}
.yaa{bottom:551.340019px;}
.y1b8{bottom:556.740006px;}
.y17{bottom:557.100013px;}
.y82{bottom:557.460022px;}
.ycf{bottom:559.259994px;}
.y15e{bottom:561.600013px;}
.y5f{bottom:563.220116px;}
.y48{bottom:563.399986px;}
.y182{bottom:569.519989px;}
.yfd{bottom:570.059967px;}
.y148{bottom:576.000000px;}
.ya9{bottom:576.720017px;}
.y35{bottom:580.860008px;}
.y1b7{bottom:581.940033px;}
.y11f{bottom:582.120002px;}
.y16{bottom:582.299973px;}
.y81{bottom:582.659981px;}
.yce{bottom:584.460022px;}
.y47{bottom:588.779983px;}
.y15d{bottom:592.919975px;}
.y181{bottom:594.720017px;}
.yfc{bottom:595.259994px;}
.y5e{bottom:599.035454px;}
.y147{bottom:601.379998px;}
.ya8{bottom:601.919975px;}
.y34{bottom:606.240006px;}
.y1b6{bottom:607.139992px;}
.y15{bottom:607.679970px;}
.y80{bottom:608.039977px;}
.ycd{bottom:609.840019px;}
.y11e{bottom:613.439999px;}
.y46{bottom:613.980011px;}
.y180{bottom:620.100013px;}
.yfb{bottom:620.639992px;}
.y15c{bottom:624.240006px;}
.y1a5{bottom:625.500000px;}
.y146{bottom:626.579990px;}
.ya7{bottom:627.300007px;}
.y33{bottom:631.439999px;}
.y1b5{bottom:632.519989px;}
.y14{bottom:632.879998px;}
.y7f{bottom:633.240006px;}
.y5d{bottom:635.037527px;}
.ycc{bottom:635.040012px;}
.y1a4{bottom:638.100013px;}
.y45{bottom:639.180004px;}
.y11d{bottom:644.759994px;}
.y17f{bottom:645.300007px;}
.yfa{bottom:645.839985px;}
.y1a6{bottom:650.699993px;}
.y145{bottom:651.779983px;}
.ya6{bottom:652.500000px;}
.y15b{bottom:655.379998px;}
.y32{bottom:656.639992px;}
.y1b4{bottom:657.720017px;}
.y13{bottom:658.259994px;}
.y7e{bottom:658.439999px;}
.ycb{bottom:660.240006px;}
.y44{bottom:664.560001px;}
.y17e{bottom:670.680004px;}
.y5c{bottom:671.037454px;}
.yf9{bottom:671.040012px;}
.y11c{bottom:676.079990px;}
.y144{bottom:677.160015px;}
.ya5{bottom:677.699993px;}
.y31{bottom:682.019989px;}
.y1b3{bottom:683.100013px;}
.y12{bottom:683.459988px;}
.y7d{bottom:683.819995px;}
.yc9{bottom:685.620002px;}
.y43{bottom:689.759994px;}
.y1ac{bottom:690.300007px;}
.y1a3{bottom:694.620002px;}
.y17d{bottom:695.879998px;}
.yf8{bottom:696.420010px;}
.y97{bottom:697.139992px;}
.y143{bottom:702.360008px;}
.ya4{bottom:703.079990px;}
.y5b{bottom:706.861590px;}
.y30{bottom:707.220017px;}
.y1b2{bottom:708.300007px;}
.y11{bottom:708.660015px;}
.y7c{bottom:709.019989px;}
.yc8{bottom:710.819995px;}
.y1a2{bottom:714.959988px;}
.y42{bottom:715.139992px;}
.y1ab{bottom:715.680004px;}
.y17c{bottom:721.079990px;}
.yf7{bottom:721.620002px;}
.y96{bottom:722.339985px;}
.y11b{bottom:727.740006px;}
.ya3{bottom:728.279983px;}
.y2f{bottom:732.420010px;}
.y1b1{bottom:733.500000px;}
.y10{bottom:734.040012px;}
.y7b{bottom:734.399986px;}
.yc7{bottom:736.199993px;}
.y41{bottom:740.339985px;}
.y5a{bottom:742.861490px;}
.y1aa{bottom:745.740006px;}
.y17b{bottom:746.459988px;}
.yf6{bottom:747.000000px;}
.y95{bottom:747.540012px;}
.y142{bottom:752.939999px;}
.ya2{bottom:753.480011px;}
.y2e{bottom:757.800007px;}
.y1b0{bottom:758.879998px;}
.yf{bottom:759.240006px;}
.y7a{bottom:759.600013px;}
.yc6{bottom:761.399986px;}
.y11a{bottom:763.740006px;}
.y40{bottom:765.540012px;}
.y17a{bottom:771.660015px;}
.y94{bottom:772.920010px;}
.y1a1{bottom:776.519989px;}
.yf4{bottom:777.060001px;}
.y141{bottom:778.139992px;}
.y59{bottom:778.676828px;}
.ya1{bottom:778.860008px;}
.y2d{bottom:783.000000px;}
.y1af{bottom:784.079990px;}
.y1a0{bottom:784.259994px;}
.ye{bottom:784.620002px;}
.y79{bottom:784.800007px;}
.yc5{bottom:786.600013px;}
.y19e{bottom:789.120002px;}
.yf2{bottom:789.660015px;}
.y3f{bottom:790.920010px;}
.y119{bottom:795.060001px;}
.y179{bottom:797.040012px;}
.yf3{bottom:797.399986px;}
.y93{bottom:798.120002px;}
.yf5{bottom:802.259994px;}
.y140{bottom:803.519989px;}
.ya0{bottom:804.060001px;}
.y117{bottom:807.660015px;}
.y2c{bottom:808.379998px;}
.y1ae{bottom:809.279983px;}
.yd{bottom:809.819995px;}
.y78{bottom:810.180004px;}
.yc4{bottom:811.980011px;}
.y19f{bottom:814.319995px;}
.y58{bottom:814.676728px;}
.y118{bottom:815.399986px;}
.y3e{bottom:816.120002px;}
.y178{bottom:822.240006px;}
.y92{bottom:823.319995px;}
.y13f{bottom:828.720017px;}
.y9f{bottom:829.439999px;}
.y2b{bottom:833.579990px;}
.y1ad{bottom:834.839985px;}
.yc{bottom:835.019989px;}
.y77{bottom:835.379998px;}
.yc3{bottom:837.180004px;}
.y1a9{bottom:839.519989px;}
.y3d{bottom:841.319995px;}
.y19a{bottom:845.639992px;}
.yef{bottom:846.180004px;}
.y177{bottom:847.439999px;}
.y91{bottom:848.699993px;}
.y57{bottom:850.500864px;}
.y116{bottom:851.579990px;}
.yf0{bottom:853.920010px;}
.y9e{bottom:854.639992px;}
.y19c{bottom:858.240006px;}
.y2a{bottom:858.779983px;}
.yb{bottom:860.399986px;}
.y76{bottom:860.759994px;}
.yc2{bottom:862.560001px;}
.y114{bottom:864.180004px;}
.y3c{bottom:866.699993px;}
.y198{bottom:870.839985px;}
.y115{bottom:871.920010px;}
.y176{bottom:872.819996px;}
.y90{bottom:873.899987px;}
.y19d{bottom:878.579990px;}
.y13e{bottom:879.300007px;}
.y9d{bottom:879.839985px;}
.y19b{bottom:883.439999px;}
.y29{bottom:884.160015px;}
.ya{bottom:885.600013px;}
.y75{bottom:885.959988px;}
.y56{bottom:886.500764px;}
.yc1{bottom:887.759994px;}
.yee{bottom:890.100013px;}
.y199{bottom:891.360008px;}
.y3b{bottom:891.899987px;}
.yeb{bottom:897.839985px;}
.y175{bottom:898.019989px;}
.y8f{bottom:899.279983px;}
.y1a8{bottom:902.159998px;}
.yea{bottom:902.699993px;}
.y9c{bottom:905.219999px;}
.y113{bottom:908.099997px;}
.y28{bottom:909.360008px;}
.yec{bottom:910.620002px;}
.y9{bottom:910.800007px;}
.y74{bottom:911.159998px;}
.yc0{bottom:912.960004px;}
.y13d{bottom:915.479994px;}
.y3a{bottom:917.280001px;}
.y55{bottom:922.500691px;}
.y174{bottom:923.219999px;}
.y8e{bottom:924.479994px;}
.y196{bottom:927.360008px;}
.y13b{bottom:928.080008px;}
.y9b{bottom:930.419992px;}
.y1a7{bottom:933.479994px;}
.y27{bottom:934.560001px;}
.y13c{bottom:935.819996px;}
.y8{bottom:936.180004px;}
.y73{bottom:936.539995px;}
.ybf{bottom:938.340002px;}
.y39{bottom:942.479994px;}
.ye8{bottom:946.620002px;}
.y197{bottom:947.879998px;}
.y173{bottom:948.599997px;}
.y8d{bottom:949.680004px;}
.y195{bottom:952.740006px;}
.y6f{bottom:955.439999px;}
.y9a{bottom:955.800007px;}
.y54{bottom:958.324800px;}
.ye6{bottom:959.219999px;}
.y7{bottom:961.379998px;}
.y72{bottom:961.740006px;}
.ybe{bottom:963.539995px;}
.y26{bottom:965.516028px;}
.ye7{bottom:967.139992px;}
.y38{bottom:967.680004px;}
.ye9{bottom:972.000000px;}
.y172{bottom:973.800007px;}
.y8c{bottom:975.060001px;}
.y99{bottom:981.000000px;}
.y194{bottom:983.879998px;}
.y139{bottom:984.599997px;}
.y6{bottom:986.759994px;}
.y71{bottom:986.939999px;}
.ybd{bottom:988.740006px;}
.y13a{bottom:992.340002px;}
.y6e{bottom:992.879998px;}
.y37{bottom:993.060001px;}
.y53{bottom:994.324714px;}
.y193{bottom:996.659998px;}
.ye4{bottom:998.280001px;}
.y171{bottom:999.180004px;}
.ye3{bottom:1003.139992px;}
.y25{bottom:1006.025375px;}
.y98{bottom:1011.782596px;}
.y5{bottom:1011.960004px;}
.y70{bottom:1012.319996px;}
.y8b{bottom:1012.500000px;}
.ybc{bottom:1014.120002px;}
.ye0{bottom:1015.919992px;}
.y36{bottom:1018.259994px;}
.ye1{bottom:1023.659998px;}
.y170{bottom:1026.360762px;}
.y6d{bottom:1027.977942px;}
.y138{bottom:1028.520006px;}
.y52{bottom:1030.140052px;}
.ybb{bottom:1039.319996px;}
.y4{bottom:1052.465754px;}
.y16f{bottom:1058.224507px;}
.y51{bottom:1059.120002px;}
.ydf{bottom:1059.659998px;}
.y6c{bottom:1063.977856px;}
.yba{bottom:1064.700002px;}
.hb{height:21.959988px;}
.h8{height:21.960004px;}
.ha{height:21.960006px;}
.h9{height:21.960021px;}
.he{height:21.960022px;}
.h1{height:62.284169px;}
.h6{height:62.402183px;}
.h2{height:68.424862px;}
.h7{height:68.554511px;}
.h5{height:82.604595px;}
.h4{height:82.760809px;}
.h3{height:103.918397px;}
.hd{height:118.824777px;}
.h10{height:118.824849px;}
.hc{height:118.824921px;}
.hf{height:119.544795px;}
.h13{height:119.544867px;}
.h12{height:119.544934px;}
.h11{height:169.944988px;}
.h0{height:1188.000000px;}
.w4{width:1.079990px;}
.w5{width:3.059984px;}
.w13{width:5.399986px;}
.w3{width:6.120003px;}
.w9{width:7.920045px;}
.w12{width:96.299973px;}
.w11{width:135.539979px;}
.wc{width:143.100015px;}
.w8{width:150.120003px;}
.wa{width:151.379963px;}
.wd{width:157.680005px;}
.w10{width:159.659998px;}
.w6{width:181.260011px;}
.w1{width:187.020006px;}
.wb{width:188.279984px;}
.we{width:255.240006px;}
.wf{width:275.040012px;}
.w7{width:313.740006px;}
.w2{width:357.120037px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:127.620002px;}
.x6{left:132.120002px;}
.x4{left:145.616808px;}
.x3{left:154.620002px;}
.x5{left:181.620002px;}
.xf{left:208.620002px;}
.xb{left:229.860008px;}
.xa{left:231.840002px;}
.x7{left:237.780001px;}
.x13{left:251.819996px;}
.x16{left:269.280001px;}
.xc{left:287.099997px;}
.x11{left:294.660015px;}
.x8{left:429.839985px;}
.x17{left:433.800007px;}
.xd{left:473.220017px;}
.x10{left:487.800007px;}
.x14{left:511.920010px;}
.x19{left:563.939999px;}
.x18{left:574.199993px;}
.x12{left:644.039978px;}
.x15{left:690.840019px;}
.x2{left:777.779983px;}
.xe{left:779.039978px;}
.x9{left:780.840019px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:44.800052pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.041172pt;}
.ls7{letter-spacing:0.044915pt;}
.lsa{letter-spacing:0.053399pt;}
.ls4{letter-spacing:0.188480pt;}
.ls8{letter-spacing:0.317311pt;}
.ls9{letter-spacing:30.305572pt;}
.ls5{letter-spacing:49.313682pt;}
.ls1{letter-spacing:56.993674pt;}
.ls6{letter-spacing:134.043371pt;}
.ls3{letter-spacing:276.763403pt;}
.ws4{word-spacing:-63.878800pt;}
.ws2{word-spacing:-53.019200pt;}
.ws1{word-spacing:-14.436609pt;}
.ws3{word-spacing:-12.991966pt;}
.ws0{word-spacing:0.000000pt;}
._16{margin-left:-11.793928pt;}
._17{margin-left:-9.738708pt;}
._b{margin-left:-7.589286pt;}
._0{margin-left:-5.878402pt;}
._18{margin-left:-4.879423pt;}
._4{margin-left:-3.954561pt;}
._2{margin-left:-2.244481pt;}
._1{margin-left:-1.068800pt;}
._3{width:1.068800pt;}
._e{width:2.277179pt;}
._d{width:3.319486pt;}
._1a{width:4.231539pt;}
._12{width:5.126851pt;}
._7{width:6.229919pt;}
._8{width:7.170438pt;}
._c{width:8.519526pt;}
._f{width:9.884427pt;}
._a{width:10.883254pt;}
._9{width:11.858999pt;}
._19{width:13.498315pt;}
._20{width:15.986803pt;}
._14{width:16.929629pt;}
._1f{width:18.281290pt;}
._13{width:19.441862pt;}
._22{width:20.369316pt;}
._6{width:21.865763pt;}
._5{width:22.864368pt;}
._21{width:24.072184pt;}
._1b{width:25.841168pt;}
._1c{width:27.263130pt;}
._23{width:28.483696pt;}
._1e{width:29.526541pt;}
._1d{width:30.708735pt;}
._10{width:31.764482pt;}
._11{width:33.009619pt;}
._67{width:34.258250pt;}
._54{width:36.699618pt;}
._45{width:40.887423pt;}
._2a{width:44.556212pt;}
._53{width:45.451756pt;}
._2c{width:50.397800pt;}
._2d{width:51.288714pt;}
._68{width:53.794166pt;}
._29{width:55.709799pt;}
._36{width:60.728777pt;}
._27{width:62.777889pt;}
._28{width:64.018363pt;}
._26{width:66.935750pt;}
._3e{width:70.875122pt;}
._64{width:79.000110pt;}
._24{width:86.956186pt;}
._62{width:99.310324pt;}
._50{width:114.156656pt;}
._60{width:121.029116pt;}
._4f{width:131.623637pt;}
._5a{width:136.781650pt;}
._4c{width:150.860103pt;}
._61{width:178.606908pt;}
._39{width:199.031562pt;}
._4a{width:202.155192pt;}
._4e{width:206.344073pt;}
._48{width:220.509618pt;}
._5f{width:226.996560pt;}
._65{width:228.383849pt;}
._3b{width:233.174759pt;}
._51{width:235.285069pt;}
._63{width:236.991346pt;}
._5d{width:239.081209pt;}
._3a{width:243.136359pt;}
._52{width:255.426016pt;}
._2f{width:266.902594pt;}
._2e{width:267.980117pt;}
._3c{width:272.272038pt;}
._40{width:273.260588pt;}
._43{width:277.852622pt;}
._49{width:279.243600pt;}
._5c{width:280.938962pt;}
._44{width:299.277917pt;}
._38{width:317.637857pt;}
._2b{width:319.510529pt;}
._25{width:328.848062pt;}
._5e{width:330.339123pt;}
._3f{width:334.441742pt;}
._42{width:348.512668pt;}
._4b{width:354.675060pt;}
._41{width:369.943582pt;}
._66{width:380.973163pt;}
._46{width:387.186546pt;}
._3d{width:389.046317pt;}
._34{width:425.496687pt;}
._35{width:433.911549pt;}
._47{width:456.367593pt;}
._37{width:483.027190pt;}
._59{width:488.979945pt;}
._5b{width:491.372869pt;}
._58{width:493.147846pt;}
._56{width:503.568777pt;}
._57{width:514.106534pt;}
._55{width:521.395905pt;}
._4d{width:545.769061pt;}
._15{width:753.386567pt;}
._31{width:1902.502300pt;}
._30{width:1935.080488pt;}
._32{width:1964.464736pt;}
._33{width:1965.742312pt;}
.fs2{font-size:53.019200pt;}
.fs0{font-size:63.878800pt;}
.fs5{font-size:63.999835pt;}
.fs4{font-size:84.958800pt;}
.fs3{font-size:85.119466pt;}
.fs1{font-size:106.880039pt;}
.y0{bottom:0.000000pt;}
.yf1{bottom:4.319976pt;}
.ye5{bottom:4.319992pt;}
.yed{bottom:4.319993pt;}
.ye2{bottom:4.320007pt;}
.y122{bottom:4.320008pt;}
.y2{bottom:51.679993pt;}
.y1{bottom:71.200012pt;}
.y3{bottom:93.599976pt;}
.y10f{bottom:102.400024pt;}
.y133{bottom:103.520020pt;}
.y15a{bottom:107.679993pt;}
.y110{bottom:108.320007pt;}
.y1c9{bottom:112.960022pt;}
.y112{bottom:115.200012pt;}
.y6b{bottom:117.437911pt;}
.y1d2{bottom:119.039978pt;}
.y16e{bottom:119.520020pt;}
.y10e{bottom:124.799988pt;}
.y132{bottom:125.919983pt;}
.y137{bottom:128.000000pt;}
.y159{bottom:130.239990pt;}
.yca{bottom:130.719971pt;}
.y1c8{bottom:135.520020pt;}
.y111{bottom:137.760010pt;}
.y135{bottom:139.359985pt;}
.y1d1{bottom:141.440002pt;}
.y16d{bottom:141.919983pt;}
.y136{bottom:146.239990pt;}
.y192{bottom:146.880005pt;}
.y10d{bottom:147.359985pt;}
.y131{bottom:148.479980pt;}
.y6a{bottom:149.283590pt;}
.y158{bottom:152.640015pt;}
.yb9{bottom:153.280029pt;}
.y1c7{bottom:157.919983pt;}
.yde{bottom:160.159973pt;}
.y1d0{bottom:164.000000pt;}
.y16c{bottom:164.479980pt;}
.y191{bottom:169.280029pt;}
.y10c{bottom:169.760010pt;}
.y130{bottom:170.880005pt;}
.y157{bottom:175.200012pt;}
.yb8{bottom:175.679993pt;}
.y134{bottom:178.400024pt;}
.y1c6{bottom:180.320007pt;}
.y69{bottom:181.285481pt;}
.ydd{bottom:182.719971pt;}
.y1cf{bottom:186.400024pt;}
.y16b{bottom:186.880005pt;}
.y190{bottom:191.840027pt;}
.y10b{bottom:192.320007pt;}
.y12f{bottom:193.440002pt;}
.y156{bottom:197.599976pt;}
.yb7{bottom:198.080017pt;}
.y1c5{bottom:202.880005pt;}
.y24{bottom:203.200012pt;}
.ydc{bottom:205.119995pt;}
.y1ce{bottom:208.799988pt;}
.y16a{bottom:209.440002pt;}
.y68{bottom:213.121337pt;}
.y18f{bottom:214.239990pt;}
.y10a{bottom:214.719971pt;}
.y12e{bottom:215.840027pt;}
.y155{bottom:220.000000pt;}
.yb6{bottom:220.640015pt;}
.y1c4{bottom:225.280029pt;}
.y23{bottom:225.760010pt;}
.ydb{bottom:227.520020pt;}
.y1cd{bottom:231.359985pt;}
.y169{bottom:231.840027pt;}
.y18e{bottom:236.799988pt;}
.y109{bottom:237.119995pt;}
.y12d{bottom:238.239990pt;}
.y154{bottom:242.559998pt;}
.yb5{bottom:243.039978pt;}
.y67{bottom:245.118268pt;}
.y1c3{bottom:247.679993pt;}
.y22{bottom:248.159973pt;}
.yda{bottom:250.080017pt;}
.y1cc{bottom:253.760010pt;}
.y168{bottom:254.239990pt;}
.y18d{bottom:259.200012pt;}
.y108{bottom:259.679993pt;}
.y12c{bottom:260.799988pt;}
.y153{bottom:264.960022pt;}
.yb4{bottom:265.599976pt;}
.y1c2{bottom:270.239990pt;}
.y21{bottom:270.559998pt;}
.yd9{bottom:272.479980pt;}
.y1cb{bottom:276.159973pt;}
.y167{bottom:276.799988pt;}
.y66{bottom:276.963899pt;}
.y18c{bottom:281.599976pt;}
.y107{bottom:282.080017pt;}
.y12b{bottom:283.200012pt;}
.y152{bottom:287.359985pt;}
.yb3{bottom:288.000000pt;}
.y1c1{bottom:292.640015pt;}
.y20{bottom:293.119995pt;}
.yd8{bottom:295.039978pt;}
.y1ca{bottom:298.719971pt;}
.y166{bottom:299.200012pt;}
.y18b{bottom:304.159973pt;}
.y106{bottom:304.479980pt;}
.y12a{bottom:305.760010pt;}
.y65{bottom:308.960878pt;}
.y151{bottom:309.919983pt;}
.yb2{bottom:310.400024pt;}
.y1c0{bottom:315.200012pt;}
.y1f{bottom:315.520020pt;}
.y8a{bottom:315.840027pt;}
.yd7{bottom:317.440002pt;}
.y50{bottom:321.119995pt;}
.y165{bottom:321.760010pt;}
.y18a{bottom:326.559998pt;}
.y105{bottom:327.039978pt;}
.y129{bottom:328.159973pt;}
.y150{bottom:332.320007pt;}
.yb1{bottom:332.960022pt;}
.y1bf{bottom:337.599976pt;}
.y1e{bottom:337.919983pt;}
.y89{bottom:338.239990pt;}
.yd6{bottom:339.840027pt;}
.y64{bottom:340.962768pt;}
.y4f{bottom:343.679993pt;}
.y164{bottom:344.159973pt;}
.y189{bottom:348.960022pt;}
.y104{bottom:349.440002pt;}
.y128{bottom:350.559998pt;}
.y14f{bottom:354.880005pt;}
.yb0{bottom:355.359985pt;}
.y1be{bottom:360.000000pt;}
.y1d{bottom:360.479980pt;}
.y88{bottom:360.799988pt;}
.yd5{bottom:362.400024pt;}
.y4e{bottom:366.080017pt;}
.y163{bottom:366.559998pt;}
.y188{bottom:371.520020pt;}
.y103{bottom:372.000000pt;}
.y63{bottom:372.798624pt;}
.y127{bottom:373.119995pt;}
.y14e{bottom:377.280029pt;}
.yaf{bottom:377.919983pt;}
.y1bd{bottom:382.559998pt;}
.y1c{bottom:382.880005pt;}
.y87{bottom:383.200012pt;}
.yd4{bottom:384.799988pt;}
.y4d{bottom:388.479980pt;}
.y162{bottom:389.119995pt;}
.y187{bottom:393.919983pt;}
.y102{bottom:394.400024pt;}
.y126{bottom:395.520020pt;}
.y14d{bottom:399.679993pt;}
.yae{bottom:400.320007pt;}
.y62{bottom:404.800514pt;}
.y1bc{bottom:404.960022pt;}
.y1b{bottom:405.440002pt;}
.y86{bottom:405.599976pt;}
.yd3{bottom:407.200012pt;}
.y4c{bottom:411.039978pt;}
.y161{bottom:415.840027pt;}
.y186{bottom:416.479980pt;}
.y101{bottom:416.799988pt;}
.y125{bottom:417.919983pt;}
.y14c{bottom:422.239990pt;}
.yad{bottom:422.719971pt;}
.y1bb{bottom:427.359985pt;}
.y1a{bottom:427.840027pt;}
.y85{bottom:428.159973pt;}
.yd2{bottom:429.760010pt;}
.y4b{bottom:433.440002pt;}
.y61{bottom:436.797493pt;}
.y185{bottom:438.880005pt;}
.y100{bottom:439.359985pt;}
.y124{bottom:440.479980pt;}
.y160{bottom:443.679993pt;}
.y14b{bottom:444.640015pt;}
.yac{bottom:445.280029pt;}
.y1ba{bottom:449.919983pt;}
.y19{bottom:450.239990pt;}
.y84{bottom:450.559998pt;}
.yd1{bottom:452.159973pt;}
.y4a{bottom:456.000000pt;}
.y184{bottom:461.280029pt;}
.yff{bottom:461.760010pt;}
.y123{bottom:462.880005pt;}
.y14a{bottom:467.039978pt;}
.yab{bottom:467.679993pt;}
.y60{bottom:468.643124pt;}
.y15f{bottom:471.520020pt;}
.y1b9{bottom:472.320007pt;}
.y18{bottom:472.799988pt;}
.y83{bottom:473.119995pt;}
.yd0{bottom:474.719971pt;}
.y49{bottom:478.400024pt;}
.y183{bottom:483.840027pt;}
.yfe{bottom:484.320007pt;}
.y121{bottom:485.440002pt;}
.y149{bottom:489.599976pt;}
.y120{bottom:489.760010pt;}
.yaa{bottom:490.080017pt;}
.y1b8{bottom:494.880005pt;}
.y17{bottom:495.200012pt;}
.y82{bottom:495.520020pt;}
.ycf{bottom:497.119995pt;}
.y15e{bottom:499.200012pt;}
.y5f{bottom:500.640103pt;}
.y48{bottom:500.799988pt;}
.y182{bottom:506.239990pt;}
.yfd{bottom:506.719971pt;}
.y148{bottom:512.000000pt;}
.ya9{bottom:512.640015pt;}
.y35{bottom:516.320007pt;}
.y1b7{bottom:517.280029pt;}
.y11f{bottom:517.440002pt;}
.y16{bottom:517.599976pt;}
.y81{bottom:517.919983pt;}
.yce{bottom:519.520020pt;}
.y47{bottom:523.359985pt;}
.y15d{bottom:527.039978pt;}
.y181{bottom:528.640015pt;}
.yfc{bottom:529.119995pt;}
.y5e{bottom:532.475959pt;}
.y147{bottom:534.559998pt;}
.ya8{bottom:535.039978pt;}
.y34{bottom:538.880005pt;}
.y1b6{bottom:539.679993pt;}
.y15{bottom:540.159973pt;}
.y80{bottom:540.479980pt;}
.ycd{bottom:542.080017pt;}
.y11e{bottom:545.279999pt;}
.y46{bottom:545.760010pt;}
.y180{bottom:551.200012pt;}
.yfb{bottom:551.679993pt;}
.y15c{bottom:554.880005pt;}
.y1a5{bottom:556.000000pt;}
.y146{bottom:556.959991pt;}
.ya7{bottom:557.600006pt;}
.y33{bottom:561.279999pt;}
.y1b5{bottom:562.239990pt;}
.y14{bottom:562.559998pt;}
.y7f{bottom:562.880005pt;}
.y5d{bottom:564.477802pt;}
.ycc{bottom:564.480011pt;}
.y1a4{bottom:567.200012pt;}
.y45{bottom:568.160004pt;}
.y11d{bottom:573.119995pt;}
.y17f{bottom:573.600006pt;}
.yfa{bottom:574.079987pt;}
.y1a6{bottom:578.399994pt;}
.y145{bottom:579.359985pt;}
.ya6{bottom:580.000000pt;}
.y15b{bottom:582.559998pt;}
.y32{bottom:583.679993pt;}
.y1b4{bottom:584.640015pt;}
.y13{bottom:585.119995pt;}
.y7e{bottom:585.279999pt;}
.ycb{bottom:586.880005pt;}
.y44{bottom:590.720001pt;}
.y17e{bottom:596.160004pt;}
.y5c{bottom:596.477737pt;}
.yf9{bottom:596.480011pt;}
.y11c{bottom:600.959991pt;}
.y144{bottom:601.920013pt;}
.ya5{bottom:602.399994pt;}
.y31{bottom:606.239990pt;}
.y1b3{bottom:607.200012pt;}
.y12{bottom:607.519989pt;}
.y7d{bottom:607.839996pt;}
.yc9{bottom:609.440002pt;}
.y43{bottom:613.119995pt;}
.y1ac{bottom:613.600006pt;}
.y1a3{bottom:617.440002pt;}
.y17d{bottom:618.559998pt;}
.yf8{bottom:619.040009pt;}
.y97{bottom:619.679993pt;}
.y143{bottom:624.320007pt;}
.ya4{bottom:624.959991pt;}
.y5b{bottom:628.321413pt;}
.y30{bottom:628.640015pt;}
.y1b2{bottom:629.600006pt;}
.y11{bottom:629.920013pt;}
.y7c{bottom:630.239990pt;}
.yc8{bottom:631.839996pt;}
.y1a2{bottom:635.519989pt;}
.y42{bottom:635.679993pt;}
.y1ab{bottom:636.160004pt;}
.y17c{bottom:640.959991pt;}
.yf7{bottom:641.440002pt;}
.y96{bottom:642.079987pt;}
.y11b{bottom:646.880005pt;}
.ya3{bottom:647.359985pt;}
.y2f{bottom:651.040009pt;}
.y1b1{bottom:652.000000pt;}
.y10{bottom:652.480011pt;}
.y7b{bottom:652.799988pt;}
.yc7{bottom:654.399994pt;}
.y41{bottom:658.079987pt;}
.y5a{bottom:660.321324pt;}
.y1aa{bottom:662.880005pt;}
.y17b{bottom:663.519989pt;}
.yf6{bottom:664.000000pt;}
.y95{bottom:664.480011pt;}
.y142{bottom:669.279999pt;}
.ya2{bottom:669.760010pt;}
.y2e{bottom:673.600006pt;}
.y1b0{bottom:674.559998pt;}
.yf{bottom:674.880005pt;}
.y7a{bottom:675.200012pt;}
.yc6{bottom:676.799988pt;}
.y11a{bottom:678.880005pt;}
.y40{bottom:680.480011pt;}
.y17a{bottom:685.920013pt;}
.y94{bottom:687.040009pt;}
.y1a1{bottom:690.239990pt;}
.yf4{bottom:690.720001pt;}
.y141{bottom:691.679993pt;}
.y59{bottom:692.157180pt;}
.ya1{bottom:692.320007pt;}
.y2d{bottom:696.000000pt;}
.y1af{bottom:696.959991pt;}
.y1a0{bottom:697.119995pt;}
.ye{bottom:697.440002pt;}
.y79{bottom:697.600006pt;}
.yc5{bottom:699.200012pt;}
.y19e{bottom:701.440002pt;}
.yf2{bottom:701.920013pt;}
.y3f{bottom:703.040009pt;}
.y119{bottom:706.720001pt;}
.y179{bottom:708.480011pt;}
.yf3{bottom:708.799988pt;}
.y93{bottom:709.440002pt;}
.yf5{bottom:713.119995pt;}
.y140{bottom:714.239990pt;}
.ya0{bottom:714.720001pt;}
.y117{bottom:717.920013pt;}
.y2c{bottom:718.559998pt;}
.y1ae{bottom:719.359985pt;}
.yd{bottom:719.839996pt;}
.y78{bottom:720.160004pt;}
.yc4{bottom:721.760010pt;}
.y19f{bottom:723.839996pt;}
.y58{bottom:724.157092pt;}
.y118{bottom:724.799988pt;}
.y3e{bottom:725.440002pt;}
.y178{bottom:730.880005pt;}
.y92{bottom:731.839996pt;}
.y13f{bottom:736.640015pt;}
.y9f{bottom:737.279999pt;}
.y2b{bottom:740.959991pt;}
.y1ad{bottom:742.079987pt;}
.yc{bottom:742.239990pt;}
.y77{bottom:742.559998pt;}
.yc3{bottom:744.160004pt;}
.y1a9{bottom:746.239990pt;}
.y3d{bottom:747.839996pt;}
.y19a{bottom:751.679993pt;}
.yef{bottom:752.160004pt;}
.y177{bottom:753.279999pt;}
.y91{bottom:754.399994pt;}
.y57{bottom:756.000768pt;}
.y116{bottom:756.959991pt;}
.yf0{bottom:759.040009pt;}
.y9e{bottom:759.679993pt;}
.y19c{bottom:762.880005pt;}
.y2a{bottom:763.359985pt;}
.yb{bottom:764.799988pt;}
.y76{bottom:765.119995pt;}
.yc2{bottom:766.720001pt;}
.y114{bottom:768.160004pt;}
.y3c{bottom:770.399994pt;}
.y198{bottom:774.079987pt;}
.y115{bottom:775.040009pt;}
.y176{bottom:775.839996pt;}
.y90{bottom:776.799988pt;}
.y19d{bottom:780.959991pt;}
.y13e{bottom:781.600006pt;}
.y9d{bottom:782.079987pt;}
.y19b{bottom:785.279999pt;}
.y29{bottom:785.920013pt;}
.ya{bottom:787.200012pt;}
.y75{bottom:787.519989pt;}
.y56{bottom:788.000679pt;}
.yc1{bottom:789.119995pt;}
.yee{bottom:791.200012pt;}
.y199{bottom:792.320007pt;}
.y3b{bottom:792.799988pt;}
.yeb{bottom:798.079987pt;}
.y175{bottom:798.239990pt;}
.y8f{bottom:799.359985pt;}
.y1a8{bottom:801.919998pt;}
.yea{bottom:802.399994pt;}
.y9c{bottom:804.639999pt;}
.y113{bottom:807.199997pt;}
.y28{bottom:808.320007pt;}
.yec{bottom:809.440002pt;}
.y9{bottom:809.600006pt;}
.y74{bottom:809.919998pt;}
.yc0{bottom:811.520004pt;}
.y13d{bottom:813.759995pt;}
.y3a{bottom:815.360001pt;}
.y55{bottom:820.000615pt;}
.y174{bottom:820.639999pt;}
.y8e{bottom:821.759995pt;}
.y196{bottom:824.320007pt;}
.y13b{bottom:824.960007pt;}
.y9b{bottom:827.039993pt;}
.y1a7{bottom:829.759995pt;}
.y27{bottom:830.720001pt;}
.y13c{bottom:831.839996pt;}
.y8{bottom:832.160004pt;}
.y73{bottom:832.479996pt;}
.ybf{bottom:834.080002pt;}
.y39{bottom:837.759995pt;}
.ye8{bottom:841.440002pt;}
.y197{bottom:842.559998pt;}
.y173{bottom:843.199997pt;}
.y8d{bottom:844.160004pt;}
.y195{bottom:846.880005pt;}
.y6f{bottom:849.279999pt;}
.y9a{bottom:849.600006pt;}
.y54{bottom:851.844267pt;}
.ye6{bottom:852.639999pt;}
.y7{bottom:854.559998pt;}
.y72{bottom:854.880005pt;}
.ybe{bottom:856.479996pt;}
.y26{bottom:858.236470pt;}
.ye7{bottom:859.679993pt;}
.y38{bottom:860.160004pt;}
.ye9{bottom:864.000000pt;}
.y172{bottom:865.600006pt;}
.y8c{bottom:866.720001pt;}
.y99{bottom:872.000000pt;}
.y194{bottom:874.559998pt;}
.y139{bottom:875.199997pt;}
.y6{bottom:877.119995pt;}
.y71{bottom:877.279999pt;}
.ybd{bottom:878.880005pt;}
.y13a{bottom:882.080002pt;}
.y6e{bottom:882.559998pt;}
.y37{bottom:882.720001pt;}
.y53{bottom:883.844190pt;}
.y193{bottom:885.919998pt;}
.ye4{bottom:887.360001pt;}
.y171{bottom:888.160004pt;}
.ye3{bottom:891.679993pt;}
.y25{bottom:894.244777pt;}
.y98{bottom:899.362308pt;}
.y5{bottom:899.520004pt;}
.y70{bottom:899.839996pt;}
.y8b{bottom:900.000000pt;}
.ybc{bottom:901.440002pt;}
.ye0{bottom:903.039993pt;}
.y36{bottom:905.119995pt;}
.ye1{bottom:909.919998pt;}
.y170{bottom:912.320677pt;}
.y6d{bottom:913.758171pt;}
.y138{bottom:914.240005pt;}
.y52{bottom:915.680046pt;}
.ybb{bottom:923.839996pt;}
.y4{bottom:935.525115pt;}
.y16f{bottom:940.644006pt;}
.y51{bottom:941.440002pt;}
.ydf{bottom:941.919998pt;}
.y6c{bottom:945.758094pt;}
.yba{bottom:946.400002pt;}
.hb{height:19.519989pt;}
.h8{height:19.520004pt;}
.ha{height:19.520005pt;}
.h9{height:19.520019pt;}
.he{height:19.520020pt;}
.h1{height:55.363706pt;}
.h6{height:55.468607pt;}
.h2{height:60.822100pt;}
.h7{height:60.937343pt;}
.h5{height:73.426307pt;}
.h4{height:73.565163pt;}
.h3{height:92.371908pt;}
.hd{height:105.622024pt;}
.h10{height:105.622088pt;}
.hc{height:105.622152pt;}
.hf{height:106.262040pt;}
.h13{height:106.262104pt;}
.h12{height:106.262164pt;}
.h11{height:151.062212pt;}
.h0{height:1056.000000pt;}
.w4{width:0.959991pt;}
.w5{width:2.719986pt;}
.w13{width:4.799988pt;}
.w3{width:5.440003pt;}
.w9{width:7.040040pt;}
.w12{width:85.599976pt;}
.w11{width:120.479981pt;}
.wc{width:127.200013pt;}
.w8{width:133.440003pt;}
.wa{width:134.559967pt;}
.wd{width:140.160004pt;}
.w10{width:141.919998pt;}
.w6{width:161.120010pt;}
.w1{width:166.240005pt;}
.wb{width:167.359986pt;}
.we{width:226.880005pt;}
.wf{width:244.480011pt;}
.w7{width:278.880005pt;}
.w2{width:317.440033pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440002pt;}
.x6{left:117.440002pt;}
.x4{left:129.437163pt;}
.x3{left:137.440002pt;}
.x5{left:161.440002pt;}
.xf{left:185.440002pt;}
.xb{left:204.320007pt;}
.xa{left:206.080002pt;}
.x7{left:211.360001pt;}
.x13{left:223.839996pt;}
.x16{left:239.360001pt;}
.xc{left:255.199997pt;}
.x11{left:261.920013pt;}
.x8{left:382.079987pt;}
.x17{left:385.600006pt;}
.xd{left:420.640015pt;}
.x10{left:433.600006pt;}
.x14{left:455.040009pt;}
.x19{left:501.279999pt;}
.x18{left:510.399994pt;}
.x12{left:572.479980pt;}
.x15{left:614.080017pt;}
.x2{left:691.359985pt;}
.xe{left:692.479980pt;}
.x9{left:694.080017pt;}
}




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