
    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_5c1d6b124377f72c010d6c57.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0d07e195b9279b9474c84112.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_64c7223772a2d2ae0d880262.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_91db93fd2682241641cd7cc9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_ad148048ecf47934afe4abd0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_ac75282636d36b3463017193.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_3559d75a1542e5d00dfce7a8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.752441;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_7b61b99e2e9028430b8b4b10.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.741699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-26.640198px;}
.v4{vertical-align:-10.079955px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:10.799973px;}
.v1{vertical-align:23.039982px;}
.v2{vertical-align:26.639991px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.071901px;}
.lsf{letter-spacing:0.072175px;}
.lsc{letter-spacing:0.072180px;}
.lsa{letter-spacing:0.072450px;}
.ls4{letter-spacing:0.282231px;}
.ls0{letter-spacing:0.282366px;}
.ls1{letter-spacing:0.282371px;}
.ls3{letter-spacing:0.282506px;}
.ls8{letter-spacing:0.469552px;}
.ls6{letter-spacing:0.479362px;}
.ls14{letter-spacing:31.707071px;}
.ls5{letter-spacing:33.147170px;}
.ls7{letter-spacing:44.667125px;}
.ls9{letter-spacing:48.267107px;}
.lsd{letter-spacing:84.000698px;}
.ls10{letter-spacing:84.000702px;}
.ls12{letter-spacing:84.000977px;}
.lsb{letter-spacing:84.720581px;}
.ls11{letter-spacing:84.720851px;}
.lse{letter-spacing:84.720855px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-17.520638px;}
.ws5{word-spacing:-17.519289px;}
.ws1{word-spacing:-14.571576px;}
.ws4{word-spacing:-14.570457px;}
.ws6{word-spacing:-14.542200px;}
.ws3{word-spacing:-11.738813px;}
.ws2{word-spacing:0.000000px;}
._1d{margin-left:-4.294774px;}
._1c{margin-left:-2.242778px;}
._1{margin-left:-1.235874px;}
._4{width:1.097099px;}
._9{width:2.360581px;}
._a{width:3.391479px;}
._5{width:4.515466px;}
._3{width:5.982639px;}
._2{width:7.082034px;}
._0{width:8.177622px;}
._1a{width:9.778139px;}
._20{width:10.822661px;}
._11{width:11.846700px;}
._10{width:12.919411px;}
._f{width:14.134774px;}
._e{width:16.106198px;}
._d{width:18.992371px;}
._1b{width:20.465423px;}
._17{width:21.798411px;}
._18{width:22.825558px;}
._12{width:23.901018px;}
._13{width:25.476805px;}
._8{width:26.531577px;}
._7{width:27.636068px;}
._6{width:29.402641px;}
._16{width:31.070753px;}
._14{width:32.194171px;}
._15{width:33.892709px;}
._1f{width:34.924534px;}
._50{width:36.704210px;}
._51{width:37.856349px;}
._23{width:40.334676px;}
._24{width:41.582921px;}
._19{width:50.636559px;}
._2e{width:51.868865px;}
._3c{width:53.025778px;}
._33{width:56.120030px;}
._4e{width:57.503320px;}
._3b{width:63.313340px;}
._45{width:72.938547px;}
._27{width:82.702813px;}
._21{width:87.628921px;}
._22{width:88.669613px;}
._40{width:89.908989px;}
._4f{width:91.951043px;}
._30{width:94.721866px;}
._47{width:106.236966px;}
._3a{width:108.677896px;}
._2c{width:123.418187px;}
._36{width:125.648338px;}
._3d{width:129.760444px;}
._43{width:135.840681px;}
._34{width:136.952333px;}
._4a{width:138.322240px;}
._2d{width:150.598041px;}
._c{width:210.867968px;}
._28{width:220.042265px;}
._2a{width:255.080842px;}
._29{width:257.183157px;}
._25{width:267.853001px;}
._b{width:269.050849px;}
._1e{width:270.057753px;}
._38{width:312.836188px;}
._49{width:359.215494px;}
._41{width:363.910663px;}
._31{width:386.753560px;}
._3e{width:390.411051px;}
._26{width:873.803263px;}
._46{width:1103.951740px;}
._37{width:1289.264205px;}
._44{width:1344.094879px;}
._35{width:1396.324806px;}
._2b{width:1470.908250px;}
._32{width:1530.569640px;}
._4c{width:1559.137623px;}
._39{width:1576.143925px;}
._42{width:1577.484378px;}
._4d{width:1578.817533px;}
._3f{width:1608.972562px;}
._48{width:1610.865740px;}
._2f{width:1654.989164px;}
._4b{width:1684.586907px;}
.fc5{color:rgb(112,48,160);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc6{color:rgb(38,38,38);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.606595px;}
.fs6{font-size:40.647960px;}
.fs3{font-size:46.955250px;}
.fs9{font-size:58.168800px;}
.fs8{font-size:64.471050px;}
.fs0{font-size:64.476000px;}
.fs7{font-size:70.077155px;}
.fs2{font-size:70.082550px;}
.fs1{font-size:81.996750px;}
.fs4{font-size:93.209855px;}
.y0{bottom:0.000000px;}
.yff{bottom:3.239937px;}
.yfa{bottom:3.240006px;}
.y14{bottom:3.779983px;}
.y44{bottom:3.779984px;}
.y81{bottom:3.780000px;}
.y7f{bottom:3.780001px;}
.y91{bottom:3.780018px;}
.y48{bottom:3.959953px;}
.y87{bottom:3.959988px;}
.y83{bottom:3.960004px;}
.y85{bottom:3.960006px;}
.y46{bottom:3.960021px;}
.y8f{bottom:3.960022px;}
.y9e{bottom:4.319962px;}
.y99{bottom:4.319996px;}
.yb3{bottom:4.320004px;}
.yb8{bottom:4.320012px;}
.y30{bottom:4.320030px;}
.yd{bottom:5.039996px;}
.y7b{bottom:56.340018px;}
.y7a{bottom:77.039978px;}
.y3{bottom:95.580093px;}
.y1{bottom:109.800110px;}
.y2{bottom:114.120072px;}
.yaf{bottom:126.720016px;}
.y2f{bottom:130.500068px;}
.yb0{bottom:131.039978px;}
.yae{bottom:133.740005px;}
.yac{bottom:150.659980px;}
.y2d{bottom:154.080093px;}
.yad{bottom:154.980010px;}
.yab{bottom:157.680037px;}
.y75{bottom:162.720085px;}
.y2c{bottom:169.380066px;}
.ydd{bottom:170.100083px;}
.yf6{bottom:177.660049px;}
.yaa{bottom:181.620003px;}
.y54{bottom:183.420043px;}
.y2b{bottom:188.640060px;}
.y74{bottom:193.140060px;}
.y103{bottom:195.120072px;}
.ya8{bottom:198.720016px;}
.y102{bottom:198.900055px;}
.ydc{bottom:199.260064px;}
.ya9{bottom:203.039978px;}
.y2a{bottom:204.480079px;}
.ya7{bottom:205.740005px;}
.y53{bottom:213.660049px;}
.y101{bottom:215.640060px;}
.ya5{bottom:222.659980px;}
.y77{bottom:223.200096px;}
.ya6{bottom:226.980010px;}
.ydb{bottom:228.420043px;}
.yfe{bottom:229.320099px;}
.ya4{bottom:229.680037px;}
.y73{bottom:229.860077px;}
.y29{bottom:230.220085px;}
.y100{bottom:232.560036px;}
.y52{bottom:243.900055px;}
.yfc{bottom:246.960091px;}
.yfd{bottom:250.200096px;}
.y72{bottom:253.440033px;}
.ya3{bottom:253.800041px;}
.yda{bottom:257.760064px;}
.y28{bottom:260.280052px;}
.yf9{bottom:264.780052px;}
.yfb{bottom:268.020058px;}
.ya1{bottom:270.899986px;}
.y51{bottom:273.960091px;}
.ya2{bottom:275.220016px;}
.ya0{bottom:277.920043px;}
.y76{bottom:283.680039px;}
.yf8{bottom:286.020058px;}
.yd9{bottom:286.740074px;}
.y71{bottom:290.340088px;}
.y27{bottom:290.520058px;}
.y9d{bottom:294.840018px;}
.y9f{bottom:299.159980px;}
.yf7{bottom:299.520058px;}
.y9c{bottom:301.860008px;}
.y50{bottom:304.380066px;}
.y70{bottom:313.920043px;}
.yd8{bottom:316.080093px;}
.y26{bottom:320.760064px;}
.y9b{bottom:325.800006px;}
.y4f{bottom:334.440033px;}
.y98{bottom:342.900021px;}
.y6f{bottom:344.160049px;}
.yd7{bottom:345.240074px;}
.y9a{bottom:347.220016px;}
.y97{bottom:349.920009px;}
.y25{bottom:351.000068px;}
.y4e{bottom:364.860077px;}
.y96{bottom:374.040012px;}
.y6e{bottom:374.400055px;}
.yd6{bottom:374.580093px;}
.y24{bottom:381.240074px;}
.y4d{bottom:394.920043px;}
.y95{bottom:397.980010px;}
.yf5{bottom:399.600083px;}
.yd5{bottom:403.740074px;}
.y6d{bottom:404.460091px;}
.y78{bottom:411.120072px;}
.y23{bottom:411.300041px;}
.y94{bottom:418.860008px;}
.y4c{bottom:425.160049px;}
.yf4{bottom:428.940033px;}
.yd4{bottom:432.900055px;}
.y6c{bottom:434.880066px;}
.y22{bottom:441.720085px;}
.y93{bottom:449.640025px;}
.y4b{bottom:455.400055px;}
.yf3{bottom:458.100083px;}
.yd3{bottom:462.240074px;}
.y6b{bottom:464.940033px;}
.y92{bottom:466.920009px;}
.y21{bottom:471.780052px;}
.yf2{bottom:487.440033px;}
.y90{bottom:487.800006px;}
.y4a{bottom:489.780052px;}
.yd2{bottom:491.400055px;}
.y6a{bottom:495.360077px;}
.y20{bottom:502.200096px;}
.y8e{bottom:508.499999px;}
.y49{bottom:509.940033px;}
.yf1{bottom:516.420043px;}
.yd1{bottom:520.560036px;}
.y69{bottom:525.420043px;}
.y8d{bottom:529.379997px;}
.y47{bottom:530.100083px;}
.y1f{bottom:532.260064px;}
.yf0{bottom:545.760064px;}
.yd0{bottom:549.720085px;}
.y45{bottom:550.260064px;}
.y8c{bottom:553.499999px;}
.y68{bottom:555.660049px;}
.y1e{bottom:562.500068px;}
.y43{bottom:571.320099px;}
.y8b{bottom:573.660015px;}
.y42{bottom:575.100083px;}
.ycf{bottom:579.060036px;}
.y67{bottom:585.900055px;}
.y8a{bottom:590.580024px;}
.y1d{bottom:592.740074px;}
.yef{bottom:604.260064px;}
.y41{bottom:606.060036px;}
.yce{bottom:608.220085px;}
.y89{bottom:611.460005px;}
.y66{bottom:616.140060px;}
.y1c{bottom:622.980079px;}
.y88{bottom:632.520006px;}
.yee{bottom:633.420043px;}
.y40{bottom:636.300041px;}
.ycd{bottom:637.380066px;}
.y65{bottom:646.380066px;}
.y86{bottom:653.220016px;}
.y1b{bottom:653.220085px;}
.yed{bottom:662.580093px;}
.y3f{bottom:666.540047px;}
.ycc{bottom:666.720085px;}
.ybb{bottom:668.520006px;}
.y84{bottom:674.100013px;}
.y64{bottom:676.620072px;}
.y1a{bottom:683.460091px;}
.yec{bottom:691.920078px;}
.y82{bottom:694.980010px;}
.ycb{bottom:695.880066px;}
.y3e{bottom:696.780052px;}
.yba{bottom:698.760012px;}
.y63{bottom:706.680073px;}
.y19{bottom:713.520058px;}
.yb7{bottom:715.680004px;}
.y80{bottom:715.860008px;}
.yb9{bottom:720.000016px;}
.yeb{bottom:721.080059px;}
.yb6{bottom:722.700009px;}
.yca{bottom:725.220051px;}
.y3d{bottom:726.840054px;}
.y7e{bottom:736.740005px;}
.y62{bottom:737.100083px;}
.y7d{bottom:740.520006px;}
.y18{bottom:743.940067px;}
.yb5{bottom:746.820013px;}
.yea{bottom:750.240074px;}
.yc9{bottom:754.200061px;}
.y3c{bottom:757.260064px;}
.yb2{bottom:763.920009px;}
.y61{bottom:767.160049px;}
.yb4{bottom:768.240014px;}
.yb1{bottom:770.940007px;}
.y7c{bottom:771.480010px;}
.y17{bottom:774.000068px;}
.ye9{bottom:779.400055px;}
.yc8{bottom:783.540081px;}
.y3b{bottom:787.320065px;}
.y60{bottom:797.580059px;}
.y16{bottom:806.400055px;}
.ye8{bottom:808.740074px;}
.yc7{bottom:812.700061px;}
.y3a{bottom:817.740074px;}
.y5f{bottom:827.640060px;}
.y15{bottom:829.620072px;}
.ye7{bottom:837.900055px;}
.y13{bottom:843.120072px;}
.yc6{bottom:845.100083px;}
.y39{bottom:850.140060px;}
.y79{bottom:850.500013px;}
.y5e{bottom:857.880066px;}
.y12{bottom:867.060070px;}
.yc5{bottom:878.040081px;}
.y38{bottom:883.080059px;}
.y11{bottom:887.220051px;}
.y5d{bottom:888.120072px;}
.ye6{bottom:896.400055px;}
.y10{bottom:907.380066px;}
.yc4{bottom:908.460056px;}
.y37{bottom:913.320065px;}
.y5c{bottom:918.360077px;}
.ye5{bottom:925.560070px;}
.yf{bottom:927.540081px;}
.yc3{bottom:940.860077px;}
.y36{bottom:943.380066px;}
.y5b{bottom:948.600083px;}
.ye{bottom:948.960056px;}
.ye4{bottom:954.720051px;}
.yc{bottom:970.740074px;}
.y35{bottom:973.800076px;}
.yc2{bottom:973.980079px;}
.yb{bottom:975.780069px;}
.y5a{bottom:978.840070px;}
.ye3{bottom:983.880066px;}
.ya{bottom:997.560070px;}
.y34{bottom:1003.860060px;}
.yc1{bottom:1004.040064px;}
.y59{bottom:1008.900072px;}
.ye2{bottom:1013.220068px;}
.y9{bottom:1014.840070px;}
.y33{bottom:1034.280069px;}
.yc0{bottom:1034.460074px;}
.y8{bottom:1035.000068px;}
.y58{bottom:1039.320065px;}
.ye1{bottom:1042.380066px;}
.y7{bottom:1054.980063px;}
.y32{bottom:1064.340070px;}
.ybf{bottom:1064.520058px;}
.y57{bottom:1069.380066px;}
.ye0{bottom:1071.540064px;}
.y6{bottom:1075.140060px;}
.y5{bottom:1091.520058px;}
.y31{bottom:1094.580059px;}
.ybe{bottom:1094.760064px;}
.y56{bottom:1099.800058px;}
.ydf{bottom:1100.700061px;}
.y4{bottom:1126.980063px;}
.ybd{bottom:1127.160067px;}
.y55{bottom:1129.860068px;}
.yde{bottom:1130.040064px;}
.y2e{bottom:1166.580068px;}
.ybc{bottom:1166.760064px;}
.he{height:5.026225px;}
.h2c{height:16.379997px;}
.h2f{height:16.379998px;}
.h30{height:19.259994px;}
.h11{height:19.439965px;}
.h23{height:19.439982px;}
.h21{height:19.439998px;}
.hc{height:19.439999px;}
.h1c{height:19.440033px;}
.h15{height:19.620002px;}
.h22{height:19.620003px;}
.h20{height:19.800007px;}
.h24{height:23.219982px;}
.h29{height:23.219999px;}
.h27{height:23.220017px;}
.h9{height:26.279984px;}
.hf{height:36.440261px;}
.h2e{height:41.041951px;}
.h7{height:42.094648px;}
.h2d{height:42.348477px;}
.h31{height:42.462088px;}
.h2a{height:47.205345px;}
.h1f{height:49.444086px;}
.h6{height:49.447893px;}
.h2b{height:51.158893px;}
.h25{height:51.873519px;}
.ha{height:56.170029px;}
.h1b{height:56.869253px;}
.h10{height:56.873632px;}
.hb{height:57.763352px;}
.h3{height:57.801727px;}
.h4{height:57.854152px;}
.h1e{height:62.823074px;}
.h5{height:62.827911px;}
.h1d{height:64.124770px;}
.h2{height:64.129693px;}
.h8{height:65.765742px;}
.h16{height:68.734571px;}
.h12{height:68.734639px;}
.h18{height:68.734643px;}
.h13{height:68.734706px;}
.h17{height:68.734711px;}
.h14{height:68.734846px;}
.hd{height:73.508805px;}
.h26{height:73.623047px;}
.h28{height:73.623182px;}
.h19{height:892.980015px;}
.h1a{height:893.250000px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.wd{width:4.500000px;}
.w4a{width:5.039996px;}
.w33{width:5.939964px;}
.w4d{width:5.939965px;}
.wb{width:5.939999px;}
.w27{width:5.940033px;}
.w54{width:7.200028px;}
.w30{width:7.379998px;}
.w3c{width:7.559966px;}
.w38{width:7.559967px;}
.w36{width:7.560001px;}
.w2c{width:7.560002px;}
.w3a{width:7.560035px;}
.w37{width:7.560036px;}
.w16{width:7.919975px;}
.w8{width:7.920009px;}
.w1b{width:7.920044px;}
.w7{width:8.100013px;}
.w52{width:8.100015px;}
.w13{width:8.819961px;}
.w24{width:8.819962px;}
.w4{width:8.819996px;}
.we{width:8.819997px;}
.w23{width:8.820029px;}
.w9{width:8.820030px;}
.w53{width:10.439999px;}
.w2{width:10.980011px;}
.w45{width:11.880014px;}
.w50{width:13.139922px;}
.w4f{width:13.139991px;}
.w4e{width:13.139992px;}
.w51{width:16.379997px;}
.w26{width:17.639992px;}
.w1d{width:18.720017px;}
.w49{width:21.420009px;}
.w3e{width:21.959954px;}
.w25{width:21.960021px;}
.w21{width:21.960023px;}
.w1e{width:25.560002px;}
.w41{width:26.279984px;}
.w43{width:26.280018px;}
.w44{width:26.280052px;}
.w22{width:30.779983px;}
.w20{width:30.779984px;}
.w1f{width:30.780018px;}
.w2a{width:30.780052px;}
.w40{width:30.780053px;}
.w2e{width:35.099980px;}
.w2d{width:35.100014px;}
.w32{width:35.100015px;}
.w47{width:39.419975px;}
.w29{width:39.420044px;}
.w46{width:41.939999px;}
.w31{width:43.919975px;}
.w35{width:43.920009px;}
.w2f{width:43.920044px;}
.w39{width:52.559967px;}
.w3b{width:52.560036px;}
.w11{width:87.120003px;}
.wf{width:98.819997px;}
.w5{width:104.759996px;}
.w19{width:104.760002px;}
.w14{width:105.660016px;}
.w3f{width:109.620019px;}
.w1c{width:114.299989px;}
.w3d{width:127.620019px;}
.w4c{width:131.580007px;}
.w4b{width:151.379981px;}
.wa{width:153.179988px;}
.w34{width:169.020006px;}
.wc{width:173.879998px;}
.w28{width:175.859991px;}
.w10{width:182.700028px;}
.w12{width:196.919975px;}
.w42{width:209.340001px;}
.w3{width:212.759994px;}
.w48{width:219.060018px;}
.w1a{width:237.059984px;}
.w6{width:237.060001px;}
.w2b{width:245.880014px;}
.w15{width:303.659981px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.w17{width:1262.880060px;}
.w18{width:1263.000000px;}
.x8a{left:-9.180004px;}
.x0{left:0.000000px;}
.x76{left:93.780001px;}
.x1{left:105.120002px;}
.xd{left:106.379998px;}
.x7{left:108.000000px;}
.x24{left:131.400003px;}
.x26{left:134.280001px;}
.x27{left:135.360000px;}
.x2a{left:137.700002px;}
.xb{left:140.939999px;}
.x28{left:152.280001px;}
.x25{left:157.680005px;}
.x29{left:165.780001px;}
.x14{left:202.319996px;}
.x10{left:209.699993px;}
.xa{left:220.319996px;}
.x70{left:230.400003px;}
.x71{left:236.159998px;}
.x72{left:241.020006px;}
.x2b{left:242.280001px;}
.x6c{left:262.620002px;}
.x6d{left:268.379998px;}
.x20{left:289.439999px;}
.xc{left:299.519989px;}
.x1d{left:301.139992px;}
.x21{left:307.980011px;}
.x66{left:318.600013px;}
.x3c{left:323.279983px;}
.x13{left:325.980011px;}
.x61{left:336.600014px;}
.xe{left:340.379998px;}
.x3d{left:341.819996px;}
.x18{left:355.139992px;}
.x15{left:367.379998px;}
.x5b{left:378.000000px;}
.x16{left:383.220017px;}
.x4b{left:384.839985px;}
.x19{left:391.860008px;}
.x1a{left:397.620002px;}
.x68{left:418.319996px;}
.x6f{left:428.040012px;}
.x9{left:446.759994px;}
.x2f{left:448.920010px;}
.x51{left:454.860008px;}
.x89{left:462.959988px;}
.x3e{left:470.699993px;}
.x88{left:473.399987px;}
.x2c{left:479.339985px;}
.x75{left:484.560001px;}
.x62{left:492.480011px;}
.x69{left:496.980011px;}
.x3f{left:501.300007px;}
.x52{left:505.620002px;}
.x30{left:513.899987px;}
.x31{left:530.100014px;}
.xf{left:553.139992px;}
.x40{left:560.879998px;}
.x53{left:565.199993px;}
.x1b{left:571.500000px;}
.x32{left:573.480011px;}
.x1c{left:575.819996px;}
.x1e{left:580.320030px;}
.x1f{left:584.639992px;}
.x33{left:589.679970px;}
.x5{left:595.620002px;}
.x6{left:602.820030px;}
.x41{left:611.639992px;}
.x67{left:620.460023px;}
.x54{left:624.779983px;}
.x4c{left:629.100014px;}
.x34{left:633.059967px;}
.x35{left:649.259994px;}
.x2{left:659.700027px;}
.x17{left:661.139992px;}
.x4{left:668.700027px;}
.x42{left:671.220017px;}
.x87{left:672.480011px;}
.x4d{left:680.039978px;}
.x55{left:684.360008px;}
.x22{left:686.700027px;}
.x23{left:691.200027px;}
.x36{left:692.639992px;}
.x37{left:708.840019px;}
.x43{left:739.620002px;}
.x56{left:743.940033px;}
.x6e{left:748.259994px;}
.x38{left:752.220017px;}
.x85{left:753.480011px;}
.x11{left:757.799973px;}
.x12{left:765.720017px;}
.x39{left:768.419975px;}
.x86{left:769.860008px;}
.x8{left:785.340019px;}
.x3{left:788.399987px;}
.x2d{left:790.379998px;}
.x2e{left:798.480011px;}
.x3a{left:811.799973px;}
.x3b{left:828.000000px;}
.x4e{left:845.460023px;}
.x44{left:858.600014px;}
.x57{left:871.740006px;}
.x5c{left:880.559967px;}
.x77{left:894.779983px;}
.x45{left:896.399987px;}
.x78{left:907.919975px;}
.x46{left:918.179970px;}
.x4f{left:927.000000px;}
.x79{left:933.480011px;}
.x58{left:940.139992px;}
.x7a{left:946.620002px;}
.x5d{left:948.960023px;}
.x47{left:964.620002px;}
.x7b{left:972.000000px;}
.x73{left:973.440033px;}
.x74{left:979.200027px;}
.x48{left:982.259994px;}
.x7c{left:985.139992px;}
.x63{left:986.580025px;}
.x49{left:988.019989px;}
.x6a{left:990.899987px;}
.x64{left:992.340019px;}
.x6b{left:996.659981px;}
.x59{left:999.720017px;}
.x50{left:1005.480011px;}
.x7d{left:1010.700027px;}
.x65{left:1014.299973px;}
.x5e{left:1017.179970px;}
.x4a{left:1018.620002px;}
.x5f{left:1022.940033px;}
.x5a{left:1049.220017px;}
.x7e{left:1062.360008px;}
.x60{left:1075.500000px;}
.x7f{left:1087.919975px;}
.x80{left:1101.059967px;}
.x81{left:1126.620002px;}
.x82{left:1139.759994px;}
.x83{left:1165.140061px;}
.x84{left:1178.279983px;}
@media print{
.v3{vertical-align:-23.680176pt;}
.v4{vertical-align:-8.959960pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:9.599976pt;}
.v1{vertical-align:20.479984pt;}
.v2{vertical-align:23.679992pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.063912pt;}
.lsf{letter-spacing:0.064156pt;}
.lsc{letter-spacing:0.064160pt;}
.lsa{letter-spacing:0.064400pt;}
.ls4{letter-spacing:0.250872pt;}
.ls0{letter-spacing:0.250992pt;}
.ls1{letter-spacing:0.250996pt;}
.ls3{letter-spacing:0.251116pt;}
.ls8{letter-spacing:0.417380pt;}
.ls6{letter-spacing:0.426100pt;}
.ls14{letter-spacing:28.184063pt;}
.ls5{letter-spacing:29.464151pt;}
.ls7{letter-spacing:39.704111pt;}
.ls9{letter-spacing:42.904095pt;}
.lsd{letter-spacing:74.667287pt;}
.ls10{letter-spacing:74.667291pt;}
.ls12{letter-spacing:74.667535pt;}
.lsb{letter-spacing:75.307183pt;}
.ls11{letter-spacing:75.307423pt;}
.lse{letter-spacing:75.307427pt;}
.ws0{word-spacing:-15.573900pt;}
.ws5{word-spacing:-15.572701pt;}
.ws1{word-spacing:-12.952512pt;}
.ws4{word-spacing:-12.951518pt;}
.ws6{word-spacing:-12.926400pt;}
.ws3{word-spacing:-10.434500pt;}
.ws2{word-spacing:0.000000pt;}
._1d{margin-left:-3.817577pt;}
._1c{margin-left:-1.993581pt;}
._1{margin-left:-1.098555pt;}
._4{width:0.975199pt;}
._9{width:2.098295pt;}
._a{width:3.014648pt;}
._5{width:4.013748pt;}
._3{width:5.317902pt;}
._2{width:6.295141pt;}
._0{width:7.268997pt;}
._1a{width:8.691679pt;}
._20{width:9.620143pt;}
._11{width:10.530400pt;}
._10{width:11.483920pt;}
._f{width:12.564244pt;}
._e{width:14.316620pt;}
._d{width:16.882108pt;}
._1b{width:18.191487pt;}
._17{width:19.376365pt;}
._18{width:20.289385pt;}
._12{width:21.245349pt;}
._13{width:22.646049pt;}
._8{width:23.583624pt;}
._7{width:24.565394pt;}
._6{width:26.135681pt;}
._16{width:27.618447pt;}
._14{width:28.617041pt;}
._15{width:30.126852pt;}
._1f{width:31.044030pt;}
._50{width:32.625964pt;}
._51{width:33.650088pt;}
._23{width:35.853045pt;}
._24{width:36.962597pt;}
._19{width:45.010274pt;}
._2e{width:46.105658pt;}
._3c{width:47.134025pt;}
._33{width:49.884471pt;}
._4e{width:51.114062pt;}
._3b{width:56.278525pt;}
._45{width:64.834264pt;}
._27{width:73.513612pt;}
._21{width:77.892374pt;}
._22{width:78.817434pt;}
._40{width:79.919102pt;}
._4f{width:81.734261pt;}
._30{width:84.197214pt;}
._47{width:94.432859pt;}
._3a{width:96.602574pt;}
._2c{width:109.705055pt;}
._36{width:111.687412pt;}
._3d{width:115.342616pt;}
._43{width:120.747272pt;}
._34{width:121.735407pt;}
._4a{width:122.953102pt;}
._2d{width:133.864925pt;}
._c{width:187.438194pt;}
._28{width:195.593125pt;}
._2a{width:226.738527pt;}
._29{width:228.607251pt;}
._25{width:238.091556pt;}
._b{width:239.156310pt;}
._1e{width:240.051336pt;}
._38{width:278.076612pt;}
._49{width:319.302661pt;}
._41{width:323.476145pt;}
._31{width:343.780943pt;}
._3e{width:347.032045pt;}
._26{width:776.714011pt;}
._46{width:981.290435pt;}
._37{width:1146.012627pt;}
._44{width:1194.751003pt;}
._35{width:1241.177605pt;}
._2b{width:1307.474000pt;}
._32{width:1360.506346pt;}
._4c{width:1385.900109pt;}
._39{width:1401.016822pt;}
._42{width:1402.208336pt;}
._4d{width:1403.393362pt;}
._3f{width:1430.197833pt;}
._48{width:1431.880658pt;}
._2f{width:1471.101479pt;}
._4b{width:1497.410584pt;}
.fs5{font-size:4.983640pt;}
.fs6{font-size:36.131520pt;}
.fs3{font-size:41.738000pt;}
.fs9{font-size:51.705600pt;}
.fs8{font-size:57.307600pt;}
.fs0{font-size:57.312000pt;}
.fs7{font-size:62.290804pt;}
.fs2{font-size:62.295600pt;}
.fs1{font-size:72.886000pt;}
.fs4{font-size:82.853204pt;}
.y0{bottom:0.000000pt;}
.yff{bottom:2.879944pt;}
.yfa{bottom:2.880005pt;}
.y14{bottom:3.359985pt;}
.y44{bottom:3.359986pt;}
.y81{bottom:3.360000pt;}
.y7f{bottom:3.360001pt;}
.y91{bottom:3.360016pt;}
.y48{bottom:3.519958pt;}
.y87{bottom:3.519989pt;}
.y83{bottom:3.520004pt;}
.y85{bottom:3.520005pt;}
.y46{bottom:3.520019pt;}
.y8f{bottom:3.520020pt;}
.y9e{bottom:3.839966pt;}
.y99{bottom:3.839996pt;}
.yb3{bottom:3.840004pt;}
.yb8{bottom:3.840011pt;}
.y30{bottom:3.840027pt;}
.yd{bottom:4.479996pt;}
.y7b{bottom:50.080016pt;}
.y7a{bottom:68.479980pt;}
.y3{bottom:84.960083pt;}
.y1{bottom:97.600098pt;}
.y2{bottom:101.440064pt;}
.yaf{bottom:112.640014pt;}
.y2f{bottom:116.000061pt;}
.yb0{bottom:116.479980pt;}
.yae{bottom:118.880004pt;}
.yac{bottom:133.919982pt;}
.y2d{bottom:136.960083pt;}
.yad{bottom:137.760009pt;}
.yab{bottom:140.160033pt;}
.y75{bottom:144.640076pt;}
.y2c{bottom:150.560059pt;}
.ydd{bottom:151.200074pt;}
.yf6{bottom:157.920044pt;}
.yaa{bottom:161.440002pt;}
.y54{bottom:163.040039pt;}
.y2b{bottom:167.680054pt;}
.y74{bottom:171.680054pt;}
.y103{bottom:173.440064pt;}
.ya8{bottom:176.640014pt;}
.y102{bottom:176.800049pt;}
.ydc{bottom:177.120057pt;}
.ya9{bottom:180.479980pt;}
.y2a{bottom:181.760071pt;}
.ya7{bottom:182.880004pt;}
.y53{bottom:189.920044pt;}
.y101{bottom:191.680054pt;}
.ya5{bottom:197.919982pt;}
.y77{bottom:198.400086pt;}
.ya6{bottom:201.760009pt;}
.ydb{bottom:203.040039pt;}
.yfe{bottom:203.840088pt;}
.ya4{bottom:204.160033pt;}
.y73{bottom:204.320069pt;}
.y29{bottom:204.640076pt;}
.y100{bottom:206.720032pt;}
.y52{bottom:216.800049pt;}
.yfc{bottom:219.520081pt;}
.yfd{bottom:222.400086pt;}
.y72{bottom:225.280030pt;}
.ya3{bottom:225.600036pt;}
.yda{bottom:229.120057pt;}
.y28{bottom:231.360047pt;}
.yf9{bottom:235.360047pt;}
.yfb{bottom:238.240052pt;}
.ya1{bottom:240.799987pt;}
.y51{bottom:243.520081pt;}
.ya2{bottom:244.640014pt;}
.ya0{bottom:247.040038pt;}
.y76{bottom:252.160035pt;}
.yf8{bottom:254.240052pt;}
.yd9{bottom:254.880066pt;}
.y71{bottom:258.080079pt;}
.y27{bottom:258.240052pt;}
.y9d{bottom:262.080016pt;}
.y9f{bottom:265.919982pt;}
.yf7{bottom:266.240052pt;}
.y9c{bottom:268.320007pt;}
.y50{bottom:270.560059pt;}
.y70{bottom:279.040039pt;}
.yd8{bottom:280.960083pt;}
.y26{bottom:285.120057pt;}
.y9b{bottom:289.600005pt;}
.y4f{bottom:297.280030pt;}
.y98{bottom:304.800018pt;}
.y6f{bottom:305.920044pt;}
.yd7{bottom:306.880066pt;}
.y9a{bottom:308.640014pt;}
.y97{bottom:311.040008pt;}
.y25{bottom:312.000061pt;}
.y4e{bottom:324.320069pt;}
.y96{bottom:332.480010pt;}
.y6e{bottom:332.800049pt;}
.yd6{bottom:332.960083pt;}
.y24{bottom:338.880066pt;}
.y4d{bottom:351.040039pt;}
.y95{bottom:353.760009pt;}
.yf5{bottom:355.200074pt;}
.yd5{bottom:358.880066pt;}
.y6d{bottom:359.520081pt;}
.y78{bottom:365.440064pt;}
.y23{bottom:365.600037pt;}
.y94{bottom:372.320007pt;}
.y4c{bottom:377.920044pt;}
.yf4{bottom:381.280030pt;}
.yd4{bottom:384.800049pt;}
.y6c{bottom:386.560059pt;}
.y22{bottom:392.640076pt;}
.y93{bottom:399.680022pt;}
.y4b{bottom:404.800049pt;}
.yf3{bottom:407.200074pt;}
.yd3{bottom:410.880066pt;}
.y6b{bottom:413.280030pt;}
.y92{bottom:415.040008pt;}
.y21{bottom:419.360047pt;}
.yf2{bottom:433.280030pt;}
.y90{bottom:433.600005pt;}
.y4a{bottom:435.360047pt;}
.yd2{bottom:436.800049pt;}
.y6a{bottom:440.320069pt;}
.y20{bottom:446.400086pt;}
.y8e{bottom:451.999999pt;}
.y49{bottom:453.280030pt;}
.yf1{bottom:459.040039pt;}
.yd1{bottom:462.720032pt;}
.y69{bottom:467.040039pt;}
.y8d{bottom:470.559997pt;}
.y47{bottom:471.200074pt;}
.y1f{bottom:473.120057pt;}
.yf0{bottom:485.120057pt;}
.yd0{bottom:488.640076pt;}
.y45{bottom:489.120057pt;}
.y8c{bottom:491.999999pt;}
.y68{bottom:493.920044pt;}
.y1e{bottom:500.000061pt;}
.y43{bottom:507.840088pt;}
.y8b{bottom:509.920013pt;}
.y42{bottom:511.200074pt;}
.ycf{bottom:514.720032pt;}
.y67{bottom:520.800049pt;}
.y8a{bottom:524.960021pt;}
.y1d{bottom:526.880066pt;}
.yef{bottom:537.120057pt;}
.y41{bottom:538.720032pt;}
.yce{bottom:540.640076pt;}
.y89{bottom:543.520004pt;}
.y66{bottom:547.680054pt;}
.y1c{bottom:553.760071pt;}
.y88{bottom:562.240005pt;}
.yee{bottom:563.040039pt;}
.y40{bottom:565.600037pt;}
.ycd{bottom:566.560059pt;}
.y65{bottom:574.560059pt;}
.y86{bottom:580.640014pt;}
.y1b{bottom:580.640076pt;}
.yed{bottom:588.960083pt;}
.y3f{bottom:592.480042pt;}
.ycc{bottom:592.640076pt;}
.ybb{bottom:594.240005pt;}
.y84{bottom:599.200011pt;}
.y64{bottom:601.440064pt;}
.y1a{bottom:607.520081pt;}
.yec{bottom:615.040070pt;}
.y82{bottom:617.760009pt;}
.ycb{bottom:618.560059pt;}
.y3e{bottom:619.360047pt;}
.yba{bottom:621.120010pt;}
.y63{bottom:628.160065pt;}
.y19{bottom:634.240052pt;}
.yb7{bottom:636.160003pt;}
.y80{bottom:636.320007pt;}
.yb9{bottom:640.000014pt;}
.yeb{bottom:640.960053pt;}
.yb6{bottom:642.400008pt;}
.yca{bottom:644.640046pt;}
.y3d{bottom:646.080048pt;}
.y7e{bottom:654.880004pt;}
.y62{bottom:655.200074pt;}
.y7d{bottom:658.240005pt;}
.y18{bottom:661.280060pt;}
.yb5{bottom:663.840011pt;}
.yea{bottom:666.880066pt;}
.yc9{bottom:670.400055pt;}
.y3c{bottom:673.120057pt;}
.yb2{bottom:679.040008pt;}
.y61{bottom:681.920044pt;}
.yb4{bottom:682.880012pt;}
.yb1{bottom:685.280006pt;}
.y7c{bottom:685.760009pt;}
.y17{bottom:688.000061pt;}
.ye9{bottom:692.800049pt;}
.yc8{bottom:696.480072pt;}
.y3b{bottom:699.840058pt;}
.y60{bottom:708.960053pt;}
.y16{bottom:716.800049pt;}
.ye8{bottom:718.880066pt;}
.yc7{bottom:722.400055pt;}
.y3a{bottom:726.880066pt;}
.y5f{bottom:735.680054pt;}
.y15{bottom:737.440064pt;}
.ye7{bottom:744.800049pt;}
.y13{bottom:749.440064pt;}
.yc6{bottom:751.200074pt;}
.y39{bottom:755.680054pt;}
.y79{bottom:756.000011pt;}
.y5e{bottom:762.560059pt;}
.y12{bottom:770.720063pt;}
.yc5{bottom:780.480072pt;}
.y38{bottom:784.960053pt;}
.y11{bottom:788.640046pt;}
.y5d{bottom:789.440064pt;}
.ye6{bottom:796.800049pt;}
.y10{bottom:806.560059pt;}
.yc4{bottom:807.520050pt;}
.y37{bottom:811.840058pt;}
.y5c{bottom:816.320069pt;}
.ye5{bottom:822.720063pt;}
.yf{bottom:824.480072pt;}
.yc3{bottom:836.320069pt;}
.y36{bottom:838.560059pt;}
.y5b{bottom:843.200074pt;}
.ye{bottom:843.520050pt;}
.ye4{bottom:848.640046pt;}
.yc{bottom:862.880066pt;}
.y35{bottom:865.600068pt;}
.yc2{bottom:865.760071pt;}
.yb{bottom:867.360062pt;}
.y5a{bottom:870.080063pt;}
.ye3{bottom:874.560059pt;}
.ya{bottom:886.720063pt;}
.y34{bottom:892.320054pt;}
.yc1{bottom:892.480057pt;}
.y59{bottom:896.800064pt;}
.ye2{bottom:900.640061pt;}
.y9{bottom:902.080063pt;}
.y33{bottom:919.360062pt;}
.yc0{bottom:919.520066pt;}
.y8{bottom:920.000061pt;}
.y58{bottom:923.840058pt;}
.ye1{bottom:926.560059pt;}
.y7{bottom:937.760056pt;}
.y32{bottom:946.080063pt;}
.ybf{bottom:946.240052pt;}
.y57{bottom:950.560059pt;}
.ye0{bottom:952.480057pt;}
.y6{bottom:955.680054pt;}
.y5{bottom:970.240052pt;}
.y31{bottom:972.960053pt;}
.ybe{bottom:973.120057pt;}
.y56{bottom:977.600052pt;}
.ydf{bottom:978.400055pt;}
.y4{bottom:1001.760056pt;}
.ybd{bottom:1001.920060pt;}
.y55{bottom:1004.320061pt;}
.yde{bottom:1004.480057pt;}
.y2e{bottom:1036.960061pt;}
.ybc{bottom:1037.120057pt;}
.he{height:4.467755pt;}
.h2c{height:14.559997pt;}
.h2f{height:14.559998pt;}
.h30{height:17.119995pt;}
.h11{height:17.279969pt;}
.h23{height:17.279984pt;}
.h21{height:17.279998pt;}
.hc{height:17.279999pt;}
.h1c{height:17.280029pt;}
.h15{height:17.440002pt;}
.h22{height:17.440003pt;}
.h20{height:17.600006pt;}
.h24{height:20.639984pt;}
.h29{height:20.639999pt;}
.h27{height:20.640015pt;}
.h9{height:23.359986pt;}
.hf{height:32.391343pt;}
.h2e{height:36.481734pt;}
.h7{height:37.417465pt;}
.h2d{height:37.643091pt;}
.h31{height:37.744078pt;}
.h2a{height:41.960306pt;}
.h1f{height:43.950299pt;}
.h6{height:43.953683pt;}
.h2b{height:45.474571pt;}
.h25{height:46.109794pt;}
.ha{height:49.928915pt;}
.h1b{height:50.550447pt;}
.h10{height:50.554339pt;}
.hb{height:51.345202pt;}
.h3{height:51.379313pt;}
.h4{height:51.425913pt;}
.h1e{height:55.842732pt;}
.h5{height:55.847032pt;}
.h1d{height:56.999796pt;}
.h2{height:57.004172pt;}
.h8{height:58.458437pt;}
.h16{height:61.097397pt;}
.h12{height:61.097457pt;}
.h18{height:61.097461pt;}
.h13{height:61.097517pt;}
.h17{height:61.097521pt;}
.h14{height:61.097641pt;}
.hd{height:65.341160pt;}
.h26{height:65.442708pt;}
.h28{height:65.442828pt;}
.h19{height:793.760013pt;}
.h1a{height:794.000000pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.wd{width:4.000000pt;}
.w4a{width:4.479996pt;}
.w33{width:5.279968pt;}
.w4d{width:5.279969pt;}
.wb{width:5.279999pt;}
.w27{width:5.280029pt;}
.w54{width:6.400025pt;}
.w30{width:6.559998pt;}
.w3c{width:6.719970pt;}
.w38{width:6.719971pt;}
.w36{width:6.720001pt;}
.w2c{width:6.720002pt;}
.w3a{width:6.720031pt;}
.w37{width:6.720032pt;}
.w16{width:7.039978pt;}
.w8{width:7.040008pt;}
.w1b{width:7.040039pt;}
.w7{width:7.200012pt;}
.w52{width:7.200013pt;}
.w13{width:7.839965pt;}
.w24{width:7.839966pt;}
.w4{width:7.839996pt;}
.we{width:7.839997pt;}
.w23{width:7.840026pt;}
.w9{width:7.840027pt;}
.w53{width:9.279999pt;}
.w2{width:9.760010pt;}
.w45{width:10.560012pt;}
.w50{width:11.679931pt;}
.w4f{width:11.679992pt;}
.w4e{width:11.679993pt;}
.w51{width:14.559997pt;}
.w26{width:15.679993pt;}
.w1d{width:16.640015pt;}
.w49{width:19.040008pt;}
.w3e{width:19.519959pt;}
.w25{width:19.520019pt;}
.w21{width:19.520020pt;}
.w1e{width:22.720002pt;}
.w41{width:23.359986pt;}
.w43{width:23.360016pt;}
.w44{width:23.360046pt;}
.w22{width:27.359985pt;}
.w20{width:27.359986pt;}
.w1f{width:27.360016pt;}
.w2a{width:27.360046pt;}
.w40{width:27.360047pt;}
.w2e{width:31.199982pt;}
.w2d{width:31.200012pt;}
.w32{width:31.200013pt;}
.w47{width:35.039978pt;}
.w29{width:35.040039pt;}
.w46{width:37.279999pt;}
.w31{width:39.039978pt;}
.w35{width:39.040008pt;}
.w2f{width:39.040039pt;}
.w39{width:46.719971pt;}
.w3b{width:46.720032pt;}
.w11{width:77.440003pt;}
.wf{width:87.839997pt;}
.w5{width:93.119996pt;}
.w19{width:93.120002pt;}
.w14{width:93.920014pt;}
.w3f{width:97.440017pt;}
.w1c{width:101.599990pt;}
.w3d{width:113.440017pt;}
.w4c{width:116.960006pt;}
.w4b{width:134.559983pt;}
.wa{width:136.159989pt;}
.w34{width:150.240005pt;}
.wc{width:154.559998pt;}
.w28{width:156.319992pt;}
.w10{width:162.400025pt;}
.w12{width:175.039978pt;}
.w42{width:186.080001pt;}
.w3{width:189.119995pt;}
.w48{width:194.720016pt;}
.w1a{width:210.719986pt;}
.w6{width:210.720001pt;}
.w2b{width:218.560012pt;}
.w15{width:269.919983pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.w17{width:1122.560053pt;}
.w18{width:1122.666667pt;}
.x8a{left:-8.160004pt;}
.x0{left:0.000000pt;}
.x76{left:83.360001pt;}
.x1{left:93.440002pt;}
.xd{left:94.559998pt;}
.x7{left:96.000000pt;}
.x24{left:116.800003pt;}
.x26{left:119.360001pt;}
.x27{left:120.320000pt;}
.x2a{left:122.400002pt;}
.xb{left:125.279999pt;}
.x28{left:135.360001pt;}
.x25{left:140.160004pt;}
.x29{left:147.360001pt;}
.x14{left:179.839996pt;}
.x10{left:186.399994pt;}
.xa{left:195.839996pt;}
.x70{left:204.800003pt;}
.x71{left:209.919998pt;}
.x72{left:214.240005pt;}
.x2b{left:215.360001pt;}
.x6c{left:233.440002pt;}
.x6d{left:238.559998pt;}
.x20{left:257.279999pt;}
.xc{left:266.239990pt;}
.x1d{left:267.679993pt;}
.x21{left:273.760010pt;}
.x66{left:283.200012pt;}
.x3c{left:287.359985pt;}
.x13{left:289.760010pt;}
.x61{left:299.200012pt;}
.xe{left:302.559998pt;}
.x3d{left:303.839996pt;}
.x18{left:315.679993pt;}
.x15{left:326.559998pt;}
.x5b{left:336.000000pt;}
.x16{left:340.640015pt;}
.x4b{left:342.079987pt;}
.x19{left:348.320007pt;}
.x1a{left:353.440002pt;}
.x68{left:371.839996pt;}
.x6f{left:380.480011pt;}
.x9{left:397.119995pt;}
.x2f{left:399.040009pt;}
.x51{left:404.320007pt;}
.x89{left:411.519989pt;}
.x3e{left:418.399994pt;}
.x88{left:420.799988pt;}
.x2c{left:426.079987pt;}
.x75{left:430.720001pt;}
.x62{left:437.760010pt;}
.x69{left:441.760010pt;}
.x3f{left:445.600006pt;}
.x52{left:449.440002pt;}
.x30{left:456.799988pt;}
.x31{left:471.200012pt;}
.xf{left:491.679993pt;}
.x40{left:498.559998pt;}
.x53{left:502.399994pt;}
.x1b{left:508.000000pt;}
.x32{left:509.760010pt;}
.x1c{left:511.839996pt;}
.x1e{left:515.840027pt;}
.x1f{left:519.679993pt;}
.x33{left:524.159973pt;}
.x5{left:529.440002pt;}
.x6{left:535.840027pt;}
.x41{left:543.679993pt;}
.x67{left:551.520020pt;}
.x54{left:555.359985pt;}
.x4c{left:559.200012pt;}
.x34{left:562.719971pt;}
.x35{left:577.119995pt;}
.x2{left:586.400024pt;}
.x17{left:587.679993pt;}
.x4{left:594.400024pt;}
.x42{left:596.640015pt;}
.x87{left:597.760010pt;}
.x4d{left:604.479980pt;}
.x55{left:608.320007pt;}
.x22{left:610.400024pt;}
.x23{left:614.400024pt;}
.x36{left:615.679993pt;}
.x37{left:630.080017pt;}
.x43{left:657.440002pt;}
.x56{left:661.280029pt;}
.x6e{left:665.119995pt;}
.x38{left:668.640015pt;}
.x85{left:669.760010pt;}
.x11{left:673.599976pt;}
.x12{left:680.640015pt;}
.x39{left:683.039978pt;}
.x86{left:684.320007pt;}
.x8{left:698.080017pt;}
.x3{left:700.799988pt;}
.x2d{left:702.559998pt;}
.x2e{left:709.760010pt;}
.x3a{left:721.599976pt;}
.x3b{left:736.000000pt;}
.x4e{left:751.520020pt;}
.x44{left:763.200012pt;}
.x57{left:774.880005pt;}
.x5c{left:782.719971pt;}
.x77{left:795.359985pt;}
.x45{left:796.799988pt;}
.x78{left:807.039978pt;}
.x46{left:816.159973pt;}
.x4f{left:824.000000pt;}
.x79{left:829.760010pt;}
.x58{left:835.679993pt;}
.x7a{left:841.440002pt;}
.x5d{left:843.520020pt;}
.x47{left:857.440002pt;}
.x7b{left:864.000000pt;}
.x73{left:865.280029pt;}
.x74{left:870.400024pt;}
.x48{left:873.119995pt;}
.x7c{left:875.679993pt;}
.x63{left:876.960022pt;}
.x49{left:878.239990pt;}
.x6a{left:880.799988pt;}
.x64{left:882.080017pt;}
.x6b{left:885.919983pt;}
.x59{left:888.640015pt;}
.x50{left:893.760010pt;}
.x7d{left:898.400024pt;}
.x65{left:901.599976pt;}
.x5e{left:904.159973pt;}
.x4a{left:905.440002pt;}
.x5f{left:909.280029pt;}
.x5a{left:932.640015pt;}
.x7e{left:944.320007pt;}
.x60{left:956.000000pt;}
.x7f{left:967.039978pt;}
.x80{left:978.719971pt;}
.x81{left:1001.440002pt;}
.x82{left:1013.119995pt;}
.x83{left:1035.680054pt;}
.x84{left:1047.359985pt;}
}




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