
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cb55be92e6516fe2f75cd2e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_d9204467d4c5eb9fa5de6b89.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a0e2e70cb14e61950a7bbda2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_5f1d0c1fff94fb222f9378d8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666000;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_b63de3a55bdae5ea86d64b4b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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);}
.v1{vertical-align:-17.999999px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:22.499999px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017556px;}
.ls3{letter-spacing:0.017578px;}
.ls0{letter-spacing:0.024609px;}
.ls1{letter-spacing:0.048960px;}
.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;}
}
.ws7{word-spacing:-20.302734px;}
.ws2{word-spacing:-18.984374px;}
.ws1c{word-spacing:-18.457031px;}
.ws8{word-spacing:-16.242188px;}
.ws31{word-spacing:-15.820312px;}
.ws4{word-spacing:-14.238281px;}
.ws1f{word-spacing:-13.273242px;}
.ws9{word-spacing:-12.904541px;}
.ws1{word-spacing:-12.656249px;}
.ws3{word-spacing:-9.689941px;}
.ws1b{word-spacing:-3.234582px;}
.ws2a{word-spacing:-2.065460px;}
.ws17{word-spacing:-0.578720px;}
.ws0{word-spacing:0.000000px;}
.ws1a{word-spacing:1.437820px;}
.ws2b{word-spacing:2.690795px;}
.ws27{word-spacing:2.983092px;}
.ws12{word-spacing:10.124793px;}
.ws28{word-spacing:10.297299px;}
.ws26{word-spacing:10.297321px;}
.wsf{word-spacing:12.780655px;}
.wsc{word-spacing:13.334805px;}
.ws29{word-spacing:13.488440px;}
.ws11{word-spacing:14.797194px;}
.wsa{word-spacing:24.535117px;}
.wsd{word-spacing:35.577917px;}
.ws30{word-spacing:38.305760px;}
.ws2f{word-spacing:42.946430px;}
.ws2c{word-spacing:75.988019px;}
.ws24{word-spacing:78.383929px;}
.ws20{word-spacing:79.016719px;}
.ws21{word-spacing:93.726352px;}
.ws25{word-spacing:98.788852px;}
.ws22{word-spacing:102.386308px;}
.ws1d{word-spacing:103.019098px;}
.ws18{word-spacing:115.605013px;}
.ws23{word-spacing:116.120385px;}
.ws1e{word-spacing:116.753175px;}
.ws2e{word-spacing:124.930802px;}
.ws15{word-spacing:125.929475px;}
.ws19{word-spacing:129.339089px;}
.ws14{word-spacing:190.462049px;}
.ws16{word-spacing:205.487546px;}
.wsb{word-spacing:213.172986px;}
.ws2d{word-spacing:223.663174px;}
.ws10{word-spacing:226.040150px;}
.wse{word-spacing:226.440670px;}
.ws13{word-spacing:238.253170px;}
.ws5{word-spacing:441.210941px;}
.ws6{word-spacing:525.023438px;}
._a{margin-left:-7.949806px;}
._1{margin-left:-6.723632px;}
._d{margin-left:-5.009766px;}
._75{margin-left:-3.393228px;}
._1e{margin-left:-2.285156px;}
._0{margin-left:-1.146974px;}
._e{width:1.461879px;}
._9{width:2.638777px;}
._f{width:3.742837px;}
._6{width:4.754196px;}
._7{width:5.903092px;}
._c{width:7.084528px;}
._20{width:8.258899px;}
._5{width:10.162974px;}
._3{width:11.535984px;}
._4{width:12.959821px;}
._2c{width:14.028302px;}
._23{width:15.066923px;}
._80{width:16.070251px;}
._2{width:17.070280px;}
._59{width:18.857097px;}
._22{width:20.519505px;}
._8{width:21.739332px;}
._2e{width:22.893998px;}
._13{width:24.551095px;}
._b{width:25.658157px;}
._32{width:27.375047px;}
._2f{width:28.792963px;}
._2b{width:30.058595px;}
._25{width:31.113280px;}
._37{width:32.270828px;}
._28{width:33.458655px;}
._12{width:34.509358px;}
._26{width:36.104439px;}
._35{width:37.564453px;}
._2d{width:39.445310px;}
._33{width:40.881637px;}
._34{width:41.983562px;}
._27{width:43.312498px;}
._36{width:44.496070px;}
._30{width:45.591749px;}
._2a{width:47.197265px;}
._21{width:48.691402px;}
._31{width:50.036137px;}
._3d{width:51.046875px;}
._29{width:52.171873px;}
._66{width:53.402343px;}
._7c{width:56.702375px;}
._38{width:61.967285px;}
._7f{width:63.123037px;}
._24{width:64.251546px;}
._3b{width:66.867184px;}
._3f{width:68.062497px;}
._40{width:69.944206px;}
._3e{width:73.139005px;}
._39{width:75.339841px;}
._57{width:78.574214px;}
._3c{width:80.507809px;}
._43{width:82.248870px;}
._79{width:83.620102px;}
._72{width:85.049792px;}
._67{width:89.345107px;}
._65{width:92.289785px;}
._55{width:104.619442px;}
._3a{width:106.165965px;}
._41{width:107.691380px;}
._74{width:110.702907px;}
._73{width:112.204121px;}
._77{width:114.055240px;}
._70{width:121.612026px;}
._5c{width:122.709212px;}
._44{width:127.308589px;}
._4b{width:139.162336px;}
._48{width:148.603040px;}
._76{width:150.322121px;}
._68{width:152.868491px;}
._5b{width:154.279546px;}
._7a{width:167.509719px;}
._4a{width:172.912335px;}
._58{width:175.090676px;}
._71{width:178.355350px;}
._5a{width:179.388973px;}
._61{width:184.448223px;}
._78{width:196.985071px;}
._49{width:199.146608px;}
._51{width:200.901347px;}
._7d{width:208.656945px;}
._6c{width:214.476429px;}
._60{width:216.515491px;}
._46{width:218.382246px;}
._47{width:219.548283px;}
._7b{width:223.299210px;}
._50{width:234.651346px;}
._42{width:239.713763px;}
._7e{width:247.199884px;}
._45{width:251.526169px;}
._69{width:259.045121px;}
._5d{width:261.224831px;}
._15{width:264.638683px;}
._64{width:265.957922px;}
._4f{width:271.780915px;}
._4c{width:287.381080px;}
._6a{width:288.742902px;}
._5e{width:290.078817px;}
._56{width:292.398282px;}
._14{width:297.421862px;}
._1b{width:304.998056px;}
._4d{width:316.656986px;}
._6d{width:320.784132px;}
._1c{width:322.111024px;}
._6e{width:326.479467px;}
._62{width:328.668200px;}
._17{width:330.521470px;}
._1a{width:344.935533px;}
._52{width:349.120091px;}
._53{width:354.393551px;}
._16{width:360.544884px;}
._19{width:396.404279px;}
._6b{width:408.388756px;}
._5f{width:410.287216px;}
._4e{width:446.920050px;}
._6f{width:470.127809px;}
._63{width:472.026269px;}
._11{width:488.860795px;}
._54{width:508.659102px;}
._1d{width:599.853490px;}
._1f{width:616.130811px;}
._10{width:644.326168px;}
._18{width:1648.546783px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,8,8);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:28.350000px;}
.fs2{font-size:35.999999px;}
.fsd{font-size:37.755000px;}
.fs9{font-size:40.499998px;}
.fs4{font-size:44.999998px;}
.fs7{font-size:47.249998px;}
.fsb{font-size:47.520000px;}
.fs1{font-size:53.999998px;}
.fsa{font-size:59.399997px;}
.fs3{font-size:66.599998px;}
.fs6{font-size:67.499997px;}
.fs5{font-size:91.799996px;}
.fsc{font-size:99.900000px;}
.fs0{font-size:107.999996px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.049955px;}
.y35{bottom:52.330066px;}
.yfc{bottom:82.705065px;}
.y34{bottom:86.080064px;}
.yde{bottom:87.205064px;}
.y192{bottom:89.455064px;}
.yaa{bottom:91.705064px;}
.y33{bottom:95.080064px;}
.y134{bottom:100.705064px;}
.yfb{bottom:102.955064px;}
.ydd{bottom:107.455064px;}
.y165{bottom:110.830063px;}
.ya9{bottom:111.955063px;}
.y32{bottom:115.330063px;}
.y60{bottom:116.455063px;}
.y133{bottom:120.955063px;}
.y31{bottom:126.580063px;}
.ydc{bottom:127.705063px;}
.y164{bottom:131.080063px;}
.ya8{bottom:132.205062px;}
.yfa{bottom:134.455062px;}
.y5f{bottom:136.705062px;}
.y15a{bottom:140.080062px;}
.y132{bottom:141.205062px;}
.y181{bottom:146.830062px;}
.ydb{bottom:147.955062px;}
.y30{bottom:149.080062px;}
.y12b{bottom:150.205062px;}
.y163{bottom:151.330062px;}
.ya7{bottom:152.455062px;}
.y5e{bottom:156.955061px;}
.y2f{bottom:160.330061px;}
.y131{bottom:161.455061px;}
.yf9{bottom:165.955061px;}
.y180{bottom:167.080061px;}
.yda{bottom:168.205061px;}
.y12a{bottom:170.455061px;}
.y162{bottom:171.580061px;}
.ya6{bottom:172.705061px;}
.y5d{bottom:177.205061px;}
.y159{bottom:180.580060px;}
.y130{bottom:181.705060px;}
.yf8{bottom:186.205060px;}
.yd9{bottom:188.455060px;}
.y129{bottom:190.705060px;}
.y161{bottom:191.830060px;}
.ya5{bottom:192.955060px;}
.y5c{bottom:197.455060px;}
.y158{bottom:200.830060px;}
.y12f{bottom:201.955060px;}
.yf7{bottom:206.455059px;}
.yd8{bottom:208.705059px;}
.y128{bottom:210.955059px;}
.y160{bottom:212.080059px;}
.yd3{bottom:213.205059px;}
.y5b{bottom:217.705059px;}
.y157{bottom:221.080059px;}
.y12e{bottom:222.205059px;}
.y191{bottom:224.455059px;}
.ya4{bottom:226.705059px;}
.y1bc{bottom:228.955058px;}
.y2e{bottom:230.080058px;}
.y127{bottom:231.205058px;}
.y15f{bottom:232.330058px;}
.yd2{bottom:233.455058px;}
.y5a{bottom:237.955058px;}
.yd7{bottom:240.205058px;}
.y156{bottom:241.330058px;}
.y12d{bottom:242.455058px;}
.y190{bottom:244.705058px;}
.yf6{bottom:246.955058px;}
.y1bb{bottom:249.205058px;}
.y2d{bottom:250.330058px;}
.y126{bottom:251.455058px;}
.y15e{bottom:252.580057px;}
.yd1{bottom:253.705057px;}
.y59{bottom:258.205057px;}
.y155{bottom:261.580057px;}
.y12c{bottom:262.705057px;}
.yf5{bottom:267.205057px;}
.y2c{bottom:270.580057px;}
.yd6{bottom:271.705057px;}
.y15d{bottom:272.830057px;}
.yd0{bottom:273.955057px;}
.y18f{bottom:276.205056px;}
.y58{bottom:278.455056px;}
.y1ba{bottom:280.705056px;}
.y154{bottom:281.830056px;}
.y125{bottom:282.955056px;}
.yf4{bottom:287.455056px;}
.ya3{bottom:289.705056px;}
.y2b{bottom:290.830056px;}
.yd5{bottom:291.955056px;}
.y15c{bottom:293.080056px;}
.ycf{bottom:294.205056px;}
.y18e{bottom:296.455056px;}
.y57{bottom:298.705056px;}
.y1b9{bottom:300.955055px;}
.y153{bottom:302.080055px;}
.yf3{bottom:307.705055px;}
.y88{bottom:309.955055px;}
.y2a{bottom:311.080055px;}
.yd4{bottom:312.205055px;}
.y15b{bottom:313.330055px;}
.yce{bottom:314.455055px;}
.y124{bottom:316.705055px;}
.y56{bottom:318.955055px;}
.y1b8{bottom:326.830054px;}
.yf2{bottom:327.955054px;}
.y87{bottom:330.205054px;}
.y29{bottom:331.330054px;}
.ya2{bottom:332.455054px;}
.y152{bottom:333.580054px;}
.ycd{bottom:334.705054px;}
.y18d{bottom:336.955054px;}
.y123{bottom:338.080054px;}
.y55{bottom:339.205054px;}
.yf1{bottom:348.205053px;}
.y86{bottom:350.455053px;}
.y28{bottom:351.580053px;}
.ya1{bottom:352.705053px;}
.ycc{bottom:354.955053px;}
.y195{bottom:357.205053px;}
.y1b7{bottom:358.330053px;}
.y54{bottom:359.455053px;}
.y151{bottom:367.330053px;}
.yf0{bottom:368.455053px;}
.y85{bottom:370.705053px;}
.ya0{bottom:372.955052px;}
.ycb{bottom:375.205052px;}
.y194{bottom:377.455052px;}
.y1b6{bottom:378.580052px;}
.y53{bottom:379.705052px;}
.y122{bottom:380.830052px;}
.y27{bottom:381.955052px;}
.y150{bottom:387.580052px;}
.yef{bottom:388.705052px;}
.y84{bottom:390.955052px;}
.y9f{bottom:393.205052px;}
.yca{bottom:395.455052px;}
.y17f{bottom:396.580051px;}
.y193{bottom:397.705051px;}
.y1b5{bottom:398.830051px;}
.y52{bottom:399.955051px;}
.y121{bottom:402.205051px;}
.yee{bottom:408.955051px;}
.y83{bottom:411.205051px;}
.y9e{bottom:413.455051px;}
.yc9{bottom:415.705051px;}
.y17e{bottom:416.830051px;}
.y1b4{bottom:419.080051px;}
.y51{bottom:420.205050px;}
.y120{bottom:423.580050px;}
.y26{bottom:429.205050px;}
.y14f{bottom:430.330050px;}
.y82{bottom:431.455050px;}
.y9d{bottom:433.705050px;}
.yc8{bottom:435.955050px;}
.y17d{bottom:437.080050px;}
.y1b3{bottom:439.330050px;}
.y50{bottom:440.455050px;}
.y11f{bottom:444.955049px;}
.y25{bottom:449.455049px;}
.y81{bottom:451.705049px;}
.y9c{bottom:453.955049px;}
.yc7{bottom:456.205049px;}
.y17c{bottom:458.455049px;}
.y4f{bottom:460.705049px;}
.y11e{bottom:466.330049px;}
.yed{bottom:469.705048px;}
.y1b2{bottom:470.830048px;}
.y80{bottom:471.955048px;}
.y14e{bottom:473.080048px;}
.y9b{bottom:474.205048px;}
.yc6{bottom:476.455048px;}
.y24{bottom:480.955048px;}
.y18c{bottom:483.205048px;}
.y11d{bottom:487.705048px;}
.yec{bottom:489.955048px;}
.y1b1{bottom:491.080048px;}
.y7f{bottom:492.205047px;}
.y9a{bottom:494.455047px;}
.yc5{bottom:496.705047px;}
.y23{bottom:501.205047px;}
.y11c{bottom:509.080047px;}
.yeb{bottom:510.205047px;}
.y1b0{bottom:511.330047px;}
.y7e{bottom:512.455047px;}
.y17b{bottom:513.580047px;}
.y99{bottom:514.705047px;}
.y14d{bottom:515.830047px;}
.yc4{bottom:516.955046px;}
.y22{bottom:521.455046px;}
.y18b{bottom:525.955046px;}
.y11b{bottom:529.330046px;}
.yea{bottom:530.455046px;}
.y7d{bottom:532.705046px;}
.y98{bottom:534.955046px;}
.y14c{bottom:536.080046px;}
.yc3{bottom:537.205046px;}
.y21{bottom:541.705045px;}
.y1af{bottom:542.830045px;}
.y18a{bottom:546.205045px;}
.ye9{bottom:550.705045px;}
.y97{bottom:555.205045px;}
.y17a{bottom:556.330045px;}
.yc2{bottom:557.455045px;}
.y11a{bottom:560.830045px;}
.y20{bottom:561.955045px;}
.y7c{bottom:564.205044px;}
.y189{bottom:566.455044px;}
.y1ae{bottom:568.705044px;}
.ye8{bottom:570.955044px;}
.y96{bottom:575.455044px;}
.yc1{bottom:577.705044px;}
.y14b{bottom:578.830044px;}
.y119{bottom:581.080044px;}
.y1f{bottom:582.205044px;}
.y188{bottom:586.705044px;}
.ye7{bottom:591.205043px;}
.y104{bottom:593.455043px;}
.y7b{bottom:595.705043px;}
.yc0{bottom:597.955043px;}
.y14a{bottom:600.205043px;}
.y118{bottom:601.330043px;}
.y1e{bottom:602.455043px;}
.y187{bottom:606.955043px;}
.ye6{bottom:611.455043px;}
.y103{bottom:614.830042px;}
.y7a{bottom:615.955042px;}
.ybf{bottom:618.205042px;}
.y1ad{bottom:620.455042px;}
.y117{bottom:621.580042px;}
.y1d{bottom:622.705042px;}
.y186{bottom:627.205042px;}
.ye5{bottom:631.705042px;}
.y4e{bottom:633.955042px;}
.y79{bottom:636.205041px;}
.ybe{bottom:638.455041px;}
.y1ac{bottom:640.705041px;}
.y116{bottom:641.830041px;}
.y1c{bottom:642.955041px;}
.y185{bottom:647.455041px;}
.y179{bottom:649.705041px;}
.ye4{bottom:651.955041px;}
.y4d{bottom:654.205041px;}
.y78{bottom:656.455041px;}
.y102{bottom:657.580041px;}
.ybd{bottom:658.705041px;}
.y115{bottom:662.080040px;}
.y1b{bottom:663.205040px;}
.y149{bottom:664.330040px;}
.y178{bottom:669.955040px;}
.ye3{bottom:672.205040px;}
.y4c{bottom:674.455040px;}
.y77{bottom:676.705040px;}
.ybc{bottom:678.955040px;}
.y114{bottom:682.330040px;}
.y1a{bottom:683.455040px;}
.y148{bottom:684.580039px;}
.y177{bottom:690.205039px;}
.y184{bottom:692.455039px;}
.y4b{bottom:694.705039px;}
.y76{bottom:696.955039px;}
.y1ab{bottom:698.080039px;}
.ybb{bottom:699.205039px;}
.y113{bottom:702.580039px;}
.y19{bottom:703.705039px;}
.ye2{bottom:705.955039px;}
.y183{bottom:712.705038px;}
.y4a{bottom:714.955038px;}
.y75{bottom:717.205038px;}
.y1aa{bottom:718.330038px;}
.yba{bottom:719.455038px;}
.y176{bottom:721.705038px;}
.y112{bottom:722.830038px;}
.y18{bottom:723.955038px;}
.y141{bottom:725.080038px;}
.y101{bottom:730.705038px;}
.y49{bottom:735.205037px;}
.y147{bottom:736.330037px;}
.y74{bottom:737.455037px;}
.yb9{bottom:739.705037px;}
.y175{bottom:741.955037px;}
.y111{bottom:743.080037px;}
.y17{bottom:744.205037px;}
.y140{bottom:745.330037px;}
.y182{bottom:746.455037px;}
.ye1{bottom:748.705037px;}
.y1a9{bottom:749.830037px;}
.y100{bottom:750.955037px;}
.y48{bottom:755.455037px;}
.y146{bottom:756.580036px;}
.y73{bottom:757.705036px;}
.yb8{bottom:759.955036px;}
.y174{bottom:762.205036px;}
.y110{bottom:763.330036px;}
.y16{bottom:764.455036px;}
.y13f{bottom:765.580036px;}
.ye0{bottom:768.955036px;}
.y1a8{bottom:770.080036px;}
.y47{bottom:775.705036px;}
.y145{bottom:776.830036px;}
.y72{bottom:777.955036px;}
.yb7{bottom:780.205035px;}
.y173{bottom:782.455035px;}
.y15{bottom:784.705035px;}
.y13e{bottom:785.830035px;}
.ydf{bottom:789.205035px;}
.y1a7{bottom:790.330035px;}
.y46{bottom:795.955035px;}
.y10f{bottom:797.080035px;}
.y71{bottom:798.205035px;}
.yb6{bottom:800.455035px;}
.y172{bottom:802.705035px;}
.y14{bottom:804.955034px;}
.yff{bottom:806.080034px;}
.y168{bottom:807.205034px;}
.y95{bottom:809.455034px;}
.y1c0{bottom:810.580034px;}
.y45{bottom:816.205034px;}
.y144{bottom:817.330034px;}
.y70{bottom:818.455034px;}
.yb5{bottom:820.705034px;}
.y1a6{bottom:821.830034px;}
.y171{bottom:822.955034px;}
.y13{bottom:825.205034px;}
.y13d{bottom:826.330034px;}
.yfe{bottom:827.455034px;}
.y10e{bottom:828.580033px;}
.y94{bottom:829.705033px;}
.y1bf{bottom:830.830033px;}
.y44{bottom:836.455033px;}
.y143{bottom:837.580033px;}
.y6f{bottom:838.705033px;}
.yb4{bottom:840.955033px;}
.y1a5{bottom:842.080033px;}
.y170{bottom:843.205033px;}
.y12{bottom:845.455033px;}
.y13c{bottom:846.580033px;}
.y167{bottom:847.705033px;}
.yfd{bottom:848.830033px;}
.y93{bottom:849.955033px;}
.y1be{bottom:851.080033px;}
.y43{bottom:856.705032px;}
.y142{bottom:857.830032px;}
.y6e{bottom:858.955032px;}
.yb3{bottom:861.205032px;}
.y1a4{bottom:862.330032px;}
.y16f{bottom:863.455032px;}
.y11{bottom:865.705032px;}
.y166{bottom:867.955032px;}
.y92{bottom:870.205032px;}
.y10d{bottom:871.330032px;}
.y42{bottom:876.955031px;}
.y13b{bottom:878.080031px;}
.y6d{bottom:879.205031px;}
.yb2{bottom:881.455031px;}
.y1a3{bottom:882.580031px;}
.y16e{bottom:883.705031px;}
.y10{bottom:885.955031px;}
.y91{bottom:890.455031px;}
.y10c{bottom:891.580031px;}
.y41{bottom:897.205031px;}
.y6c{bottom:899.455031px;}
.yb1{bottom:901.705030px;}
.y16d{bottom:903.955030px;}
.y90{bottom:910.705030px;}
.y10b{bottom:911.830030px;}
.y1a2{bottom:914.080030px;}
.y40{bottom:917.455030px;}
.y6b{bottom:919.705030px;}
.yb0{bottom:921.955030px;}
.yf{bottom:930.955029px;}
.y10a{bottom:932.080029px;}
.y13a{bottom:933.205029px;}
.y1a1{bottom:934.330029px;}
.y16c{bottom:935.455029px;}
.y3f{bottom:937.705029px;}
.y6a{bottom:939.955029px;}
.yaf{bottom:942.205029px;}
.y8f{bottom:951.205028px;}
.ye{bottom:954.580028px;}
.y3e{bottom:957.955028px;}
.yae{bottom:962.455028px;}
.y109{bottom:965.830028px;}
.y16b{bottom:969.205028px;}
.y16a{bottom:970.330028px;}
.y69{bottom:971.455028px;}
.y199{bottom:973.705027px;}
.y1a0{bottom:974.830027px;}
.yd{bottom:975.955027px;}
.y3d{bottom:978.205027px;}
.yad{bottom:982.705027px;}
.y1bd{bottom:986.080027px;}
.y108{bottom:987.205027px;}
.y169{bottom:990.580027px;}
.y68{bottom:991.705027px;}
.y198{bottom:993.955027px;}
.y139{bottom:996.205026px;}
.y3c{bottom:998.455026px;}
.yb{bottom:1000.705026px;}
.yac{bottom:1002.955026px;}
.y19f{bottom:1006.330026px;}
.yc{bottom:1007.455026px;}
.y107{bottom:1008.580026px;}
.y67{bottom:1011.955026px;}
.y197{bottom:1014.205026px;}
.y138{bottom:1017.580026px;}
.y3b{bottom:1018.705026px;}
.yab{bottom:1023.205025px;}
.y19e{bottom:1026.580025px;}
.y106{bottom:1029.955025px;}
.y66{bottom:1032.205025px;}
.ya{bottom:1033.330025px;}
.y196{bottom:1034.455025px;}
.y3a{bottom:1038.955025px;}
.y8e{bottom:1043.455025px;}
.y19d{bottom:1046.830024px;}
.y105{bottom:1051.330024px;}
.y65{bottom:1052.455024px;}
.y39{bottom:1059.205024px;}
.y137{bottom:1060.330024px;}
.y9{bottom:1061.455024px;}
.y8d{bottom:1063.705024px;}
.y19c{bottom:1067.080024px;}
.y64{bottom:1072.705023px;}
.y38{bottom:1079.455023px;}
.y136{bottom:1081.705023px;}
.y8c{bottom:1083.955023px;}
.y63{bottom:1092.955022px;}
.y19b{bottom:1098.580022px;}
.y37{bottom:1099.705022px;}
.y135{bottom:1103.080022px;}
.y8b{bottom:1104.205022px;}
.y62{bottom:1113.205022px;}
.y4{bottom:1116.580021px;}
.y19a{bottom:1118.830021px;}
.y8a{bottom:1124.455021px;}
.y8{bottom:1126.705021px;}
.y7{bottom:1131.205021px;}
.y36{bottom:1133.455021px;}
.y3{bottom:1143.580020px;}
.y61{bottom:1144.705020px;}
.y6{bottom:1157.080020px;}
.y2{bottom:1177.330019px;}
.y89{bottom:1198.705018px;}
.y5{bottom:1205.455018px;}
.hb{height:21.677783px;}
.h5{height:27.527343px;}
.h11{height:28.869302px;}
.hc{height:30.968260px;}
.ha{height:36.129637px;}
.hf{height:36.336094px;}
.h4{height:41.291014px;}
.h7{height:42.749998px;}
.hd{height:45.420115px;}
.he{height:56.429997px;}
.h12{height:56.909177px;}
.h6{height:63.269998px;}
.h9{height:64.124997px;}
.h8{height:87.209996px;}
.h10{height:94.905000px;}
.h3{height:102.599996px;}
.h2{height:1262.830015px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:62.683591px;}
.x20{left:65.179685px;}
.x33{left:67.078122px;}
.x30{left:68.238278px;}
.x32{left:69.873044px;}
.x26{left:71.736325px;}
.x25{left:74.531247px;}
.x27{left:77.273434px;}
.x39{left:84.779293px;}
.x35{left:86.976559px;}
.x13{left:92.074215px;}
.x38{left:93.076168px;}
.x10{left:94.324215px;}
.x31{left:96.732418px;}
.x15{left:100.037105px;}
.x11{left:102.199214px;}
.x17{left:104.343746px;}
.x7{left:107.701167px;}
.x29{left:112.728511px;}
.x24{left:123.978510px;}
.x16{left:125.314448px;}
.x18{left:134.419916px;}
.x9{left:141.205072px;}
.x22{left:144.843744px;}
.x36{left:147.744134px;}
.x12{left:166.183587px;}
.x4b{left:173.091790px;}
.x19{left:205.980460px;}
.x34{left:215.296866px;}
.x37{left:217.546866px;}
.x28{left:225.808584px;}
.x23{left:227.337887px;}
.x1{left:232.558584px;}
.xa{left:238.992178px;}
.x3a{left:266.291010px;}
.x46{left:269.841791px;}
.x3{left:321.732414px;}
.x3b{left:328.693351px;}
.x1a{left:334.265611px;}
.xf{left:338.009757px;}
.xb{left:349.400382px;}
.x45{left:377.929672px;}
.x14{left:381.550765px;}
.x2{left:391.113265px;}
.x47{left:396.509755px;}
.x4c{left:430.839826px;}
.xc{left:445.570294px;}
.x4e{left:446.607409px;}
.xd{left:453.972637px;}
.x48{left:463.746074px;}
.x21{left:469.107408px;}
.x3f{left:470.232408px;}
.x43{left:475.734355px;}
.x2d{left:477.667949px;}
.x2e{left:478.775376px;}
.x2c{left:485.050761px;}
.x3c{left:489.550761px;}
.x4d{left:496.107407px;}
.x49{left:499.236313px;}
.x2f{left:503.789042px;}
.x1b{left:524.179666px;}
.xe{left:527.027322px;}
.x40{left:532.511697px;}
.x1c{left:538.558571px;}
.x1d{left:543.480446px;}
.x1e{left:554.044904px;}
.x2b{left:570.462872px;}
.x4a{left:572.835914px;}
.x2a{left:594.474590px;}
.x44{left:608.695287px;}
.x3d{left:666.685525px;}
.x41{left:685.371065px;}
.x5{left:701.437471px;}
.x6{left:716.414033px;}
.x4{left:718.523408px;}
.x3e{left:731.039032px;}
.x42{left:741.779272px;}
.x1f{left:811.160122px;}
@media print{
.v1{vertical-align:-15.999999pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.999999pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015605pt;}
.ls3{letter-spacing:0.015625pt;}
.ls0{letter-spacing:0.021874pt;}
.ls1{letter-spacing:0.043520pt;}
.ws7{word-spacing:-18.046874pt;}
.ws2{word-spacing:-16.874999pt;}
.ws1c{word-spacing:-16.406250pt;}
.ws8{word-spacing:-14.437500pt;}
.ws31{word-spacing:-14.062499pt;}
.ws4{word-spacing:-12.656249pt;}
.ws1f{word-spacing:-11.798437pt;}
.ws9{word-spacing:-11.470703pt;}
.ws1{word-spacing:-11.250000pt;}
.ws3{word-spacing:-8.613281pt;}
.ws1b{word-spacing:-2.875184pt;}
.ws2a{word-spacing:-1.835964pt;}
.ws17{word-spacing:-0.514418pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a{word-spacing:1.278062pt;}
.ws2b{word-spacing:2.391818pt;}
.ws27{word-spacing:2.651637pt;}
.ws12{word-spacing:8.999816pt;}
.ws28{word-spacing:9.153154pt;}
.ws26{word-spacing:9.153174pt;}
.wsf{word-spacing:11.360582pt;}
.wsc{word-spacing:11.853160pt;}
.ws29{word-spacing:11.989724pt;}
.ws11{word-spacing:13.153062pt;}
.wsa{word-spacing:21.808993pt;}
.wsd{word-spacing:31.624815pt;}
.ws30{word-spacing:34.049565pt;}
.ws2f{word-spacing:38.174605pt;}
.ws2c{word-spacing:67.544906pt;}
.ws24{word-spacing:69.674603pt;}
.ws20{word-spacing:70.237083pt;}
.ws21{word-spacing:83.312313pt;}
.ws25{word-spacing:87.812313pt;}
.ws22{word-spacing:91.010052pt;}
.ws1d{word-spacing:91.572532pt;}
.ws18{word-spacing:102.760011pt;}
.ws23{word-spacing:103.218120pt;}
.ws1e{word-spacing:103.780600pt;}
.ws2e{word-spacing:111.049602pt;}
.ws15{word-spacing:111.937312pt;}
.ws19{word-spacing:114.968079pt;}
.ws14{word-spacing:169.299599pt;}
.ws16{word-spacing:182.655597pt;}
.wsb{word-spacing:189.487098pt;}
.ws2d{word-spacing:198.811710pt;}
.ws10{word-spacing:200.924578pt;}
.wse{word-spacing:201.280596pt;}
.ws13{word-spacing:211.780595pt;}
.ws5{word-spacing:392.187503pt;}
.ws6{word-spacing:466.687501pt;}
._a{margin-left:-7.066495pt;}
._1{margin-left:-5.976562pt;}
._d{margin-left:-4.453126pt;}
._75{margin-left:-3.016203pt;}
._1e{margin-left:-2.031250pt;}
._0{margin-left:-1.019532pt;}
._e{width:1.299448pt;}
._9{width:2.345579pt;}
._f{width:3.326966pt;}
._6{width:4.225952pt;}
._7{width:5.247193pt;}
._c{width:6.297359pt;}
._20{width:7.341244pt;}
._5{width:9.033755pt;}
._3{width:10.254208pt;}
._4{width:11.519841pt;}
._2c{width:12.469602pt;}
._23{width:13.392821pt;}
._80{width:14.284668pt;}
._2{width:15.173582pt;}
._59{width:16.761864pt;}
._22{width:18.239560pt;}
._8{width:19.323851pt;}
._2e{width:20.350221pt;}
._13{width:21.823196pt;}
._b{width:22.807251pt;}
._32{width:24.333375pt;}
._2f{width:25.593745pt;}
._2b{width:26.718751pt;}
._25{width:27.656248pt;}
._37{width:28.685181pt;}
._28{width:29.741026pt;}
._12{width:30.674985pt;}
._26{width:32.092835pt;}
._35{width:33.390625pt;}
._2d{width:35.062498pt;}
._33{width:36.339233pt;}
._34{width:37.318722pt;}
._27{width:38.499998pt;}
._36{width:39.552062pt;}
._30{width:40.525999pt;}
._2a{width:41.953124pt;}
._21{width:43.281247pt;}
._31{width:44.476566pt;}
._3d{width:45.375000pt;}
._29{width:46.374998pt;}
._66{width:47.468749pt;}
._7c{width:50.402111pt;}
._38{width:55.082031pt;}
._7f{width:56.109366pt;}
._24{width:57.112485pt;}
._3b{width:59.437497pt;}
._3f{width:60.499997pt;}
._40{width:62.172628pt;}
._3e{width:65.012449pt;}
._39{width:66.968747pt;}
._57{width:69.843746pt;}
._3c{width:71.562497pt;}
._43{width:73.110107pt;}
._79{width:74.328980pt;}
._72{width:75.599816pt;}
._67{width:79.417873pt;}
._65{width:82.035365pt;}
._55{width:92.995060pt;}
._3a{width:94.369747pt;}
._41{width:95.725671pt;}
._74{width:98.402584pt;}
._73{width:99.736996pt;}
._77{width:101.382436pt;}
._70{width:108.099578pt;}
._5c{width:109.074855pt;}
._44{width:113.163191pt;}
._4b{width:123.699854pt;}
._48{width:132.091591pt;}
._76{width:133.619663pt;}
._68{width:135.883103pt;}
._5b{width:137.137374pt;}
._7a{width:148.897528pt;}
._4a{width:153.699853pt;}
._58{width:155.636156pt;}
._71{width:158.538089pt;}
._5a{width:159.456865pt;}
._61{width:163.953976pt;}
._78{width:175.097841pt;}
._49{width:177.019207pt;}
._51{width:178.578975pt;}
._7d{width:185.472840pt;}
._6c{width:190.645715pt;}
._60{width:192.458214pt;}
._46{width:194.117552pt;}
._47{width:195.154030pt;}
._7b{width:198.488187pt;}
._50{width:208.578974pt;}
._42{width:213.078900pt;}
._7e{width:219.733230pt;}
._45{width:223.578817pt;}
._69{width:230.262330pt;}
._5d{width:232.199850pt;}
._15{width:235.234385pt;}
._64{width:236.407042pt;}
._4f{width:241.583036pt;}
._4c{width:255.449849pt;}
._6a{width:256.660357pt;}
._5e{width:257.847837pt;}
._56{width:259.909584pt;}
._14{width:264.374989pt;}
._1b{width:271.109383pt;}
._4d{width:281.472876pt;}
._6d{width:285.141451pt;}
._1c{width:286.320910pt;}
._6e{width:290.203971pt;}
._62{width:292.149511pt;}
._17{width:293.796863pt;}
._1a{width:306.609362pt;}
._52{width:310.328970pt;}
._53{width:315.016490pt;}
._16{width:320.484342pt;}
._19{width:352.359359pt;}
._6b{width:363.012228pt;}
._5f{width:364.699748pt;}
._4e{width:397.262266pt;}
._6f{width:417.891386pt;}
._63{width:419.578906pt;}
._11{width:434.542929pt;}
._54{width:452.141424pt;}
._1d{width:533.203103pt;}
._1f{width:547.671832pt;}
._10{width:572.734371pt;}
._18{width:1465.374918pt;}
.fs8{font-size:25.200000pt;}
.fs2{font-size:31.999999pt;}
.fsd{font-size:33.560000pt;}
.fs9{font-size:35.999999pt;}
.fs4{font-size:39.999998pt;}
.fs7{font-size:41.999998pt;}
.fsb{font-size:42.240000pt;}
.fs1{font-size:47.999998pt;}
.fsa{font-size:52.799997pt;}
.fs3{font-size:59.199998pt;}
.fs6{font-size:59.999998pt;}
.fs5{font-size:81.599997pt;}
.fsc{font-size:88.800000pt;}
.fs0{font-size:95.999996pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.044404pt;}
.y35{bottom:46.515614pt;}
.yfc{bottom:73.515613pt;}
.y34{bottom:76.515613pt;}
.yde{bottom:77.515613pt;}
.y192{bottom:79.515613pt;}
.yaa{bottom:81.515613pt;}
.y33{bottom:84.515612pt;}
.y134{bottom:89.515612pt;}
.yfb{bottom:91.515612pt;}
.ydd{bottom:95.515612pt;}
.y165{bottom:98.515612pt;}
.ya9{bottom:99.515612pt;}
.y32{bottom:102.515612pt;}
.y60{bottom:103.515612pt;}
.y133{bottom:107.515612pt;}
.y31{bottom:112.515611pt;}
.ydc{bottom:113.515611pt;}
.y164{bottom:116.515611pt;}
.ya8{bottom:117.515611pt;}
.yfa{bottom:119.515611pt;}
.y5f{bottom:121.515611pt;}
.y15a{bottom:124.515611pt;}
.y132{bottom:125.515611pt;}
.y181{bottom:130.515611pt;}
.ydb{bottom:131.515611pt;}
.y30{bottom:132.515610pt;}
.y12b{bottom:133.515610pt;}
.y163{bottom:134.515610pt;}
.ya7{bottom:135.515610pt;}
.y5e{bottom:139.515610pt;}
.y2f{bottom:142.515610pt;}
.y131{bottom:143.515610pt;}
.yf9{bottom:147.515610pt;}
.y180{bottom:148.515610pt;}
.yda{bottom:149.515610pt;}
.y12a{bottom:151.515610pt;}
.y162{bottom:152.515610pt;}
.ya6{bottom:153.515610pt;}
.y5d{bottom:157.515609pt;}
.y159{bottom:160.515609pt;}
.y130{bottom:161.515609pt;}
.yf8{bottom:165.515609pt;}
.yd9{bottom:167.515609pt;}
.y129{bottom:169.515609pt;}
.y161{bottom:170.515609pt;}
.ya5{bottom:171.515609pt;}
.y5c{bottom:175.515609pt;}
.y158{bottom:178.515609pt;}
.y12f{bottom:179.515609pt;}
.yf7{bottom:183.515608pt;}
.yd8{bottom:185.515608pt;}
.y128{bottom:187.515608pt;}
.y160{bottom:188.515608pt;}
.yd3{bottom:189.515608pt;}
.y5b{bottom:193.515608pt;}
.y157{bottom:196.515608pt;}
.y12e{bottom:197.515608pt;}
.y191{bottom:199.515608pt;}
.ya4{bottom:201.515608pt;}
.y1bc{bottom:203.515608pt;}
.y2e{bottom:204.515607pt;}
.y127{bottom:205.515607pt;}
.y15f{bottom:206.515607pt;}
.yd2{bottom:207.515607pt;}
.y5a{bottom:211.515607pt;}
.yd7{bottom:213.515607pt;}
.y156{bottom:214.515607pt;}
.y12d{bottom:215.515607pt;}
.y190{bottom:217.515607pt;}
.yf6{bottom:219.515607pt;}
.y1bb{bottom:221.515607pt;}
.y2d{bottom:222.515607pt;}
.y126{bottom:223.515607pt;}
.y15e{bottom:224.515607pt;}
.yd1{bottom:225.515607pt;}
.y59{bottom:229.515606pt;}
.y155{bottom:232.515606pt;}
.y12c{bottom:233.515606pt;}
.yf5{bottom:237.515606pt;}
.y2c{bottom:240.515606pt;}
.yd6{bottom:241.515606pt;}
.y15d{bottom:242.515606pt;}
.yd0{bottom:243.515606pt;}
.y18f{bottom:245.515606pt;}
.y58{bottom:247.515606pt;}
.y1ba{bottom:249.515606pt;}
.y154{bottom:250.515606pt;}
.y125{bottom:251.515606pt;}
.yf4{bottom:255.515605pt;}
.ya3{bottom:257.515605pt;}
.y2b{bottom:258.515605pt;}
.yd5{bottom:259.515605pt;}
.y15c{bottom:260.515605pt;}
.ycf{bottom:261.515605pt;}
.y18e{bottom:263.515605pt;}
.y57{bottom:265.515605pt;}
.y1b9{bottom:267.515605pt;}
.y153{bottom:268.515605pt;}
.yf3{bottom:273.515605pt;}
.y88{bottom:275.515605pt;}
.y2a{bottom:276.515604pt;}
.yd4{bottom:277.515604pt;}
.y15b{bottom:278.515604pt;}
.yce{bottom:279.515604pt;}
.y124{bottom:281.515604pt;}
.y56{bottom:283.515604pt;}
.y1b8{bottom:290.515604pt;}
.yf2{bottom:291.515604pt;}
.y87{bottom:293.515604pt;}
.y29{bottom:294.515604pt;}
.ya2{bottom:295.515604pt;}
.y152{bottom:296.515604pt;}
.ycd{bottom:297.515604pt;}
.y18d{bottom:299.515604pt;}
.y123{bottom:300.515603pt;}
.y55{bottom:301.515603pt;}
.yf1{bottom:309.515603pt;}
.y86{bottom:311.515603pt;}
.y28{bottom:312.515603pt;}
.ya1{bottom:313.515603pt;}
.ycc{bottom:315.515603pt;}
.y195{bottom:317.515603pt;}
.y1b7{bottom:318.515603pt;}
.y54{bottom:319.515603pt;}
.y151{bottom:326.515602pt;}
.yf0{bottom:327.515602pt;}
.y85{bottom:329.515602pt;}
.ya0{bottom:331.515602pt;}
.ycb{bottom:333.515602pt;}
.y194{bottom:335.515602pt;}
.y1b6{bottom:336.515602pt;}
.y53{bottom:337.515602pt;}
.y122{bottom:338.515602pt;}
.y27{bottom:339.515602pt;}
.y150{bottom:344.515602pt;}
.yef{bottom:345.515602pt;}
.y84{bottom:347.515602pt;}
.y9f{bottom:349.515601pt;}
.yca{bottom:351.515601pt;}
.y17f{bottom:352.515601pt;}
.y193{bottom:353.515601pt;}
.y1b5{bottom:354.515601pt;}
.y52{bottom:355.515601pt;}
.y121{bottom:357.515601pt;}
.yee{bottom:363.515601pt;}
.y83{bottom:365.515601pt;}
.y9e{bottom:367.515601pt;}
.yc9{bottom:369.515601pt;}
.y17e{bottom:370.515601pt;}
.y1b4{bottom:372.515600pt;}
.y51{bottom:373.515600pt;}
.y120{bottom:376.515600pt;}
.y26{bottom:381.515600pt;}
.y14f{bottom:382.515600pt;}
.y82{bottom:383.515600pt;}
.y9d{bottom:385.515600pt;}
.yc8{bottom:387.515600pt;}
.y17d{bottom:388.515600pt;}
.y1b3{bottom:390.515600pt;}
.y50{bottom:391.515600pt;}
.y11f{bottom:395.515600pt;}
.y25{bottom:399.515599pt;}
.y81{bottom:401.515599pt;}
.y9c{bottom:403.515599pt;}
.yc7{bottom:405.515599pt;}
.y17c{bottom:407.515599pt;}
.y4f{bottom:409.515599pt;}
.y11e{bottom:414.515599pt;}
.yed{bottom:417.515599pt;}
.y1b2{bottom:418.515599pt;}
.y80{bottom:419.515599pt;}
.y14e{bottom:420.515598pt;}
.y9b{bottom:421.515598pt;}
.yc6{bottom:423.515598pt;}
.y24{bottom:427.515598pt;}
.y18c{bottom:429.515598pt;}
.y11d{bottom:433.515598pt;}
.yec{bottom:435.515598pt;}
.y1b1{bottom:436.515598pt;}
.y7f{bottom:437.515598pt;}
.y9a{bottom:439.515598pt;}
.yc5{bottom:441.515598pt;}
.y23{bottom:445.515597pt;}
.y11c{bottom:452.515597pt;}
.yeb{bottom:453.515597pt;}
.y1b0{bottom:454.515597pt;}
.y7e{bottom:455.515597pt;}
.y17b{bottom:456.515597pt;}
.y99{bottom:457.515597pt;}
.y14d{bottom:458.515597pt;}
.yc4{bottom:459.515597pt;}
.y22{bottom:463.515597pt;}
.y18b{bottom:467.515597pt;}
.y11b{bottom:470.515596pt;}
.yea{bottom:471.515596pt;}
.y7d{bottom:473.515596pt;}
.y98{bottom:475.515596pt;}
.y14c{bottom:476.515596pt;}
.yc3{bottom:477.515596pt;}
.y21{bottom:481.515596pt;}
.y1af{bottom:482.515596pt;}
.y18a{bottom:485.515596pt;}
.ye9{bottom:489.515596pt;}
.y97{bottom:493.515595pt;}
.y17a{bottom:494.515595pt;}
.yc2{bottom:495.515595pt;}
.y11a{bottom:498.515595pt;}
.y20{bottom:499.515595pt;}
.y7c{bottom:501.515595pt;}
.y189{bottom:503.515595pt;}
.y1ae{bottom:505.515595pt;}
.ye8{bottom:507.515595pt;}
.y96{bottom:511.515595pt;}
.yc1{bottom:513.515595pt;}
.y14b{bottom:514.515595pt;}
.y119{bottom:516.515594pt;}
.y1f{bottom:517.515594pt;}
.y188{bottom:521.515594pt;}
.ye7{bottom:525.515594pt;}
.y104{bottom:527.515594pt;}
.y7b{bottom:529.515594pt;}
.yc0{bottom:531.515594pt;}
.y14a{bottom:533.515594pt;}
.y118{bottom:534.515594pt;}
.y1e{bottom:535.515594pt;}
.y187{bottom:539.515594pt;}
.ye6{bottom:543.515593pt;}
.y103{bottom:546.515593pt;}
.y7a{bottom:547.515593pt;}
.ybf{bottom:549.515593pt;}
.y1ad{bottom:551.515593pt;}
.y117{bottom:552.515593pt;}
.y1d{bottom:553.515593pt;}
.y186{bottom:557.515593pt;}
.ye5{bottom:561.515593pt;}
.y4e{bottom:563.515593pt;}
.y79{bottom:565.515592pt;}
.ybe{bottom:567.515592pt;}
.y1ac{bottom:569.515592pt;}
.y116{bottom:570.515592pt;}
.y1c{bottom:571.515592pt;}
.y185{bottom:575.515592pt;}
.y179{bottom:577.515592pt;}
.ye4{bottom:579.515592pt;}
.y4d{bottom:581.515592pt;}
.y78{bottom:583.515592pt;}
.y102{bottom:584.515592pt;}
.ybd{bottom:585.515592pt;}
.y115{bottom:588.515591pt;}
.y1b{bottom:589.515591pt;}
.y149{bottom:590.515591pt;}
.y178{bottom:595.515591pt;}
.ye3{bottom:597.515591pt;}
.y4c{bottom:599.515591pt;}
.y77{bottom:601.515591pt;}
.ybc{bottom:603.515591pt;}
.y114{bottom:606.515591pt;}
.y1a{bottom:607.515591pt;}
.y148{bottom:608.515591pt;}
.y177{bottom:613.515590pt;}
.y184{bottom:615.515590pt;}
.y4b{bottom:617.515590pt;}
.y76{bottom:619.515590pt;}
.y1ab{bottom:620.515590pt;}
.ybb{bottom:621.515590pt;}
.y113{bottom:624.515590pt;}
.y19{bottom:625.515590pt;}
.ye2{bottom:627.515590pt;}
.y183{bottom:633.515590pt;}
.y4a{bottom:635.515590pt;}
.y75{bottom:637.515589pt;}
.y1aa{bottom:638.515589pt;}
.yba{bottom:639.515589pt;}
.y176{bottom:641.515589pt;}
.y112{bottom:642.515589pt;}
.y18{bottom:643.515589pt;}
.y141{bottom:644.515589pt;}
.y101{bottom:649.515589pt;}
.y49{bottom:653.515589pt;}
.y147{bottom:654.515589pt;}
.y74{bottom:655.515589pt;}
.yb9{bottom:657.515589pt;}
.y175{bottom:659.515589pt;}
.y111{bottom:660.515588pt;}
.y17{bottom:661.515588pt;}
.y140{bottom:662.515588pt;}
.y182{bottom:663.515588pt;}
.ye1{bottom:665.515588pt;}
.y1a9{bottom:666.515588pt;}
.y100{bottom:667.515588pt;}
.y48{bottom:671.515588pt;}
.y146{bottom:672.515588pt;}
.y73{bottom:673.515588pt;}
.yb8{bottom:675.515588pt;}
.y174{bottom:677.515588pt;}
.y110{bottom:678.515588pt;}
.y16{bottom:679.515588pt;}
.y13f{bottom:680.515588pt;}
.ye0{bottom:683.515588pt;}
.y1a8{bottom:684.515587pt;}
.y47{bottom:689.515587pt;}
.y145{bottom:690.515587pt;}
.y72{bottom:691.515587pt;}
.yb7{bottom:693.515587pt;}
.y173{bottom:695.515587pt;}
.y15{bottom:697.515587pt;}
.y13e{bottom:698.515587pt;}
.ydf{bottom:701.515587pt;}
.y1a7{bottom:702.515587pt;}
.y46{bottom:707.515587pt;}
.y10f{bottom:708.515586pt;}
.y71{bottom:709.515586pt;}
.yb6{bottom:711.515586pt;}
.y172{bottom:713.515586pt;}
.y14{bottom:715.515586pt;}
.yff{bottom:716.515586pt;}
.y168{bottom:717.515586pt;}
.y95{bottom:719.515586pt;}
.y1c0{bottom:720.515586pt;}
.y45{bottom:725.515586pt;}
.y144{bottom:726.515586pt;}
.y70{bottom:727.515586pt;}
.yb5{bottom:729.515586pt;}
.y1a6{bottom:730.515586pt;}
.y171{bottom:731.515586pt;}
.y13{bottom:733.515585pt;}
.y13d{bottom:734.515585pt;}
.yfe{bottom:735.515585pt;}
.y10e{bottom:736.515585pt;}
.y94{bottom:737.515585pt;}
.y1bf{bottom:738.515585pt;}
.y44{bottom:743.515585pt;}
.y143{bottom:744.515585pt;}
.y6f{bottom:745.515585pt;}
.yb4{bottom:747.515585pt;}
.y1a5{bottom:748.515585pt;}
.y170{bottom:749.515585pt;}
.y12{bottom:751.515585pt;}
.y13c{bottom:752.515585pt;}
.y167{bottom:753.515585pt;}
.yfd{bottom:754.515585pt;}
.y93{bottom:755.515585pt;}
.y1be{bottom:756.515584pt;}
.y43{bottom:761.515584pt;}
.y142{bottom:762.515584pt;}
.y6e{bottom:763.515584pt;}
.yb3{bottom:765.515584pt;}
.y1a4{bottom:766.515584pt;}
.y16f{bottom:767.515584pt;}
.y11{bottom:769.515584pt;}
.y166{bottom:771.515584pt;}
.y92{bottom:773.515584pt;}
.y10d{bottom:774.515584pt;}
.y42{bottom:779.515584pt;}
.y13b{bottom:780.515583pt;}
.y6d{bottom:781.515583pt;}
.yb2{bottom:783.515583pt;}
.y1a3{bottom:784.515583pt;}
.y16e{bottom:785.515583pt;}
.y10{bottom:787.515583pt;}
.y91{bottom:791.515583pt;}
.y10c{bottom:792.515583pt;}
.y41{bottom:797.515583pt;}
.y6c{bottom:799.515583pt;}
.yb1{bottom:801.515583pt;}
.y16d{bottom:803.515583pt;}
.y90{bottom:809.515582pt;}
.y10b{bottom:810.515582pt;}
.y1a2{bottom:812.515582pt;}
.y40{bottom:815.515582pt;}
.y6b{bottom:817.515582pt;}
.yb0{bottom:819.515582pt;}
.yf{bottom:827.515582pt;}
.y10a{bottom:828.515581pt;}
.y13a{bottom:829.515581pt;}
.y1a1{bottom:830.515581pt;}
.y16c{bottom:831.515581pt;}
.y3f{bottom:833.515581pt;}
.y6a{bottom:835.515581pt;}
.yaf{bottom:837.515581pt;}
.y8f{bottom:845.515581pt;}
.ye{bottom:848.515581pt;}
.y3e{bottom:851.515581pt;}
.yae{bottom:855.515580pt;}
.y109{bottom:858.515580pt;}
.y16b{bottom:861.515580pt;}
.y16a{bottom:862.515580pt;}
.y69{bottom:863.515580pt;}
.y199{bottom:865.515580pt;}
.y1a0{bottom:866.515580pt;}
.yd{bottom:867.515580pt;}
.y3d{bottom:869.515580pt;}
.yad{bottom:873.515580pt;}
.y1bd{bottom:876.515579pt;}
.y108{bottom:877.515579pt;}
.y169{bottom:880.515579pt;}
.y68{bottom:881.515579pt;}
.y198{bottom:883.515579pt;}
.y139{bottom:885.515579pt;}
.y3c{bottom:887.515579pt;}
.yb{bottom:889.515579pt;}
.yac{bottom:891.515579pt;}
.y19f{bottom:894.515579pt;}
.yc{bottom:895.515579pt;}
.y107{bottom:896.515579pt;}
.y67{bottom:899.515579pt;}
.y197{bottom:901.515578pt;}
.y138{bottom:904.515578pt;}
.y3b{bottom:905.515578pt;}
.yab{bottom:909.515578pt;}
.y19e{bottom:912.515578pt;}
.y106{bottom:915.515578pt;}
.y66{bottom:917.515578pt;}
.ya{bottom:918.515578pt;}
.y196{bottom:919.515578pt;}
.y3a{bottom:923.515578pt;}
.y8e{bottom:927.515577pt;}
.y19d{bottom:930.515577pt;}
.y105{bottom:934.515577pt;}
.y65{bottom:935.515577pt;}
.y39{bottom:941.515577pt;}
.y137{bottom:942.515577pt;}
.y9{bottom:943.515577pt;}
.y8d{bottom:945.515577pt;}
.y19c{bottom:948.515576pt;}
.y64{bottom:953.515576pt;}
.y38{bottom:959.515576pt;}
.y136{bottom:961.515576pt;}
.y8c{bottom:963.515576pt;}
.y63{bottom:971.515576pt;}
.y19b{bottom:976.515575pt;}
.y37{bottom:977.515575pt;}
.y135{bottom:980.515575pt;}
.y8b{bottom:981.515575pt;}
.y62{bottom:989.515575pt;}
.y4{bottom:992.515575pt;}
.y19a{bottom:994.515575pt;}
.y8a{bottom:999.515574pt;}
.y8{bottom:1001.515574pt;}
.y7{bottom:1005.515574pt;}
.y36{bottom:1007.515574pt;}
.y3{bottom:1016.515574pt;}
.y61{bottom:1017.515574pt;}
.y6{bottom:1028.515573pt;}
.y2{bottom:1046.515572pt;}
.y89{bottom:1065.515572pt;}
.y5{bottom:1071.515571pt;}
.hb{height:19.269140pt;}
.h5{height:24.468749pt;}
.h11{height:25.661601pt;}
.hc{height:27.527343pt;}
.ha{height:32.115233pt;}
.hf{height:32.298750pt;}
.h4{height:36.703123pt;}
.h7{height:37.999998pt;}
.hd{height:40.373435pt;}
.he{height:50.159997pt;}
.h12{height:50.585935pt;}
.h6{height:56.239998pt;}
.h9{height:56.999998pt;}
.h8{height:77.519997pt;}
.h10{height:84.360000pt;}
.h3{height:91.199996pt;}
.h2{height:1122.515569pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:55.718748pt;}
.x20{left:57.937498pt;}
.x33{left:59.624998pt;}
.x30{left:60.656247pt;}
.x32{left:62.109372pt;}
.x26{left:63.765622pt;}
.x25{left:66.249997pt;}
.x27{left:68.687497pt;}
.x39{left:75.359372pt;}
.x35{left:77.312497pt;}
.x13{left:81.843747pt;}
.x38{left:82.734372pt;}
.x10{left:83.843747pt;}
.x31{left:85.984371pt;}
.x15{left:88.921871pt;}
.x11{left:90.843746pt;}
.x17{left:92.749996pt;}
.x7{left:95.734371pt;}
.x29{left:100.203121pt;}
.x24{left:110.203120pt;}
.x16{left:111.390620pt;}
.x18{left:119.484370pt;}
.x9{left:125.515620pt;}
.x22{left:128.749995pt;}
.x36{left:131.328120pt;}
.x12{left:147.718744pt;}
.x4b{left:153.859369pt;}
.x19{left:183.093742pt;}
.x34{left:191.374992pt;}
.x37{left:193.374992pt;}
.x28{left:200.718742pt;}
.x23{left:202.078122pt;}
.x1{left:206.718741pt;}
.xa{left:212.437491pt;}
.x3a{left:236.703120pt;}
.x46{left:239.859370pt;}
.x3{left:285.984368pt;}
.x3b{left:292.171868pt;}
.x1a{left:297.124988pt;}
.xf{left:300.453117pt;}
.xb{left:310.578117pt;}
.x45{left:335.937486pt;}
.x14{left:339.156236pt;}
.x2{left:347.656236pt;}
.x47{left:352.453115pt;}
.x4c{left:382.968734pt;}
.xc{left:396.062483pt;}
.x4e{left:396.984363pt;}
.xd{left:403.531233pt;}
.x48{left:412.218733pt;}
.x21{left:416.984363pt;}
.x3f{left:417.984363pt;}
.x43{left:422.874982pt;}
.x2d{left:424.593732pt;}
.x2e{left:425.578112pt;}
.x2c{left:431.156232pt;}
.x3c{left:435.156232pt;}
.x4d{left:440.984362pt;}
.x49{left:443.765612pt;}
.x2f{left:447.812481pt;}
.x1b{left:465.937481pt;}
.xe{left:468.468730pt;}
.x40{left:473.343730pt;}
.x1c{left:478.718730pt;}
.x1d{left:483.093730pt;}
.x1e{left:492.484359pt;}
.x2b{left:507.078109pt;}
.x4a{left:509.187479pt;}
.x2a{left:528.421858pt;}
.x44{left:541.062477pt;}
.x3d{left:592.609355pt;}
.x41{left:609.218725pt;}
.x5{left:623.499974pt;}
.x6{left:636.812473pt;}
.x4{left:638.687473pt;}
.x3e{left:649.812473pt;}
.x42{left:659.359353pt;}
.x1f{left:721.031220pt;}
}




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