
    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_51a45c5845f99f8afe98e70f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_9dfd919f2e0b842503786fd7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.978027;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_f48a28406b090d3d65c1b6a4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.939941;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_d6ce6fb4de875e02db356c8d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-27.360077px;}
.v3{vertical-align:-20.879793px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.879995px;}
.v2{vertical-align:27.359973px;}
.v6{vertical-align:34.560103px;}
.v5{vertical-align:41.039978px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.059908px;}
.ls5{letter-spacing:0.061034px;}
.ls7{letter-spacing:0.287497px;}
.ls4{letter-spacing:0.359041px;}
.ls3{letter-spacing:0.359046px;}
.ls1{letter-spacing:0.359109px;}
.ls2{letter-spacing:0.359114px;}
.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;}
}
.ws6{word-spacing:-18.061710px;}
.ws7{word-spacing:-18.060585px;}
.ws3{word-spacing:-18.000676px;}
.ws4{word-spacing:-16.560675px;}
.ws0{word-spacing:-14.940563px;}
.ws8{word-spacing:-13.500563px;}
.ws5{word-spacing:-12.060450px;}
.ws1{word-spacing:-9.720371px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-5.143693px;}
._13{margin-left:-4.126093px;}
._12{margin-left:-2.819637px;}
._2{margin-left:-1.036968px;}
._1{width:1.304731px;}
._d{width:2.585102px;}
._8{width:4.144139px;}
._5{width:5.557889px;}
._4{width:6.685201px;}
._6{width:8.257229px;}
._7{width:9.433331px;}
._c{width:10.860877px;}
._10{width:12.761073px;}
._11{width:14.460449px;}
._14{width:15.912035px;}
._17{width:16.920034px;}
._f{width:19.452824px;}
._e{width:20.620337px;}
._3{width:21.623896px;}
._0{width:22.869332px;}
._a{width:24.674989px;}
._b{width:25.857482px;}
._1d{width:26.966383px;}
._19{width:28.860990px;}
._1a{width:30.086083px;}
._1b{width:33.619124px;}
._1c{width:34.833790px;}
._9{width:46.230454px;}
._27{width:146.408408px;}
._29{width:165.541433px;}
._25{width:179.286750px;}
._28{width:180.481995px;}
._2d{width:185.097240px;}
._26{width:186.458220px;}
._1e{width:191.302784px;}
._23{width:194.117826px;}
._24{width:195.422558px;}
._21{width:201.401830px;}
._2b{width:203.231336px;}
._20{width:209.765498px;}
._2e{width:221.276488px;}
._2c{width:234.259383px;}
._1f{width:236.759826px;}
._2f{width:252.156075px;}
._22{width:269.288698px;}
._2a{width:273.035511px;}
._18{width:301.090384px;}
._15{width:894.273590px;}
.fc1{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.881485px;}
.fs6{font-size:48.241800px;}
.fs0{font-size:54.002250px;}
.fs1{font-size:59.762250px;}
.fs5{font-size:66.242700px;}
.fs7{font-size:69.122700px;}
.fs3{font-size:72.002705px;}
.fs4{font-size:84.243145px;}
.y0{bottom:0.000000px;}
.yfd{bottom:3.240004px;}
.y8{bottom:3.240006px;}
.y11e{bottom:3.419975px;}
.y9b{bottom:3.959953px;}
.y95{bottom:3.959954px;}
.y86{bottom:3.959988px;}
.y8c{bottom:3.960021px;}
.y97{bottom:3.960022px;}
.ya{bottom:56.340088px;}
.y3a{bottom:56.880066px;}
.y9{bottom:73.260132px;}
.y39{bottom:75.780121px;}
.y7{bottom:85.860077px;}
.y2{bottom:104.940033px;}
.y6{bottom:106.380066px;}
.yb1{bottom:115.560036px;}
.y63{bottom:117.000068px;}
.ye5{bottom:120.240074px;}
.y5{bottom:123.660049px;}
.ye8{bottom:123.840088px;}
.ye1{bottom:126.540047px;}
.y62{bottom:130.680039px;}
.y81{bottom:135.900055px;}
.yb0{bottom:136.260064px;}
.y4{bottom:140.940033px;}
.ye7{bottom:142.740074px;}
.ye0{bottom:146.880066px;}
.y80{bottom:149.580093px;}
.y61{bottom:156.780052px;}
.yaf{bottom:156.960091px;}
.y3{bottom:158.220085px;}
.y11d{bottom:158.760064px;}
.ye4{bottom:161.640060px;}
.ydf{bottom:165.960091px;}
.y60{bottom:170.280052px;}
.y7f{bottom:173.880066px;}
.y1{bottom:175.860077px;}
.y11c{bottom:176.400055px;}
.yae{bottom:177.660049px;}
.ye3{bottom:182.340088px;}
.yde{bottom:184.860077px;}
.y7e{bottom:188.820099px;}
.y11b{bottom:193.680039px;}
.y5f{bottom:194.580093px;}
.yad{bottom:198.360077px;}
.ydd{bottom:200.880066px;}
.ye2{bottom:203.040047px;}
.y5e{bottom:208.260064px;}
.y11a{bottom:210.960091px;}
.yac{bottom:219.060036px;}
.ydc{bottom:221.580093px;}
.y119{bottom:222.840088px;}
.y7d{bottom:223.740074px;}
.y5d{bottom:232.560036px;}
.yab{bottom:239.760064px;}
.ydb{bottom:242.280052px;}
.y7c{bottom:244.440033px;}
.y117{bottom:245.520058px;}
.y5c{bottom:251.460091px;}
.y118{bottom:257.220085px;}
.yaa{bottom:260.460091px;}
.yda{bottom:262.980079px;}
.y11f{bottom:264.780052px;}
.y5b{bottom:265.140060px;}
.y116{bottom:265.860077px;}
.y35{bottom:275.760064px;}
.y115{bottom:279.900055px;}
.ya9{bottom:281.160049px;}
.yd9{bottom:283.680039px;}
.y7b{bottom:285.840088px;}
.y5a{bottom:289.440033px;}
.y34{bottom:296.460091px;}
.y114{bottom:297.180039px;}
.ya8{bottom:301.860077px;}
.y59{bottom:304.380066px;}
.y7a{bottom:306.540047px;}
.y113{bottom:309.060036px;}
.y33{bottom:317.160049px;}
.ya7{bottom:322.560036px;}
.yd8{bottom:325.080093px;}
.y79{bottom:327.240074px;}
.y112{bottom:331.740074px;}
.y32{bottom:337.860077px;}
.ya6{bottom:343.260064px;}
.yd7{bottom:345.780052px;}
.y78{bottom:347.940033px;}
.y111{bottom:348.840088px;}
.y31{bottom:358.560036px;}
.y58{bottom:360.360077px;}
.ya5{bottom:363.960091px;}
.y110{bottom:366.120072px;}
.yd6{bottom:366.480079px;}
.y77{bottom:368.640060px;}
.y10f{bottom:378.000068px;}
.y30{bottom:379.260064px;}
.y57{bottom:381.060036px;}
.ya4{bottom:384.660049px;}
.yd5{bottom:387.180039px;}
.y76{bottom:389.340088px;}
.y2f{bottom:399.960091px;}
.y10e{bottom:400.680039px;}
.y56{bottom:401.760064px;}
.ya3{bottom:405.360077px;}
.yd4{bottom:407.880066px;}
.y75{bottom:410.040047px;}
.y10d{bottom:417.960091px;}
.y2e{bottom:420.660049px;}
.y55{bottom:422.280052px;}
.ya2{bottom:426.060036px;}
.yd3{bottom:428.580093px;}
.y74{bottom:430.740074px;}
.y10c{bottom:435.240074px;}
.y2d{bottom:441.360077px;}
.y54{bottom:442.260064px;}
.ya1{bottom:446.760064px;}
.yd2{bottom:449.280052px;}
.y73{bottom:451.440033px;}
.y10b{bottom:452.340088px;}
.y53{bottom:458.280052px;}
.y2c{bottom:462.060036px;}
.y10a{bottom:464.220085px;}
.ya0{bottom:467.460091px;}
.yd1{bottom:469.980079px;}
.y72{bottom:472.140060px;}
.y2b{bottom:482.760064px;}
.y109{bottom:486.900055px;}
.y9f{bottom:488.160049px;}
.yd0{bottom:490.680039px;}
.y71{bottom:492.840088px;}
.y2a{bottom:503.460091px;}
.y108{bottom:504.180039px;}
.y9e{bottom:508.860077px;}
.ycf{bottom:511.380066px;}
.y70{bottom:513.360077px;}
.y107{bottom:521.460091px;}
.y29{bottom:524.160049px;}
.y9d{bottom:529.560036px;}
.yce{bottom:532.080093px;}
.y6f{bottom:534.060036px;}
.y106{bottom:538.740074px;}
.y28{bottom:544.860077px;}
.y9c{bottom:550.260064px;}
.ycd{bottom:552.780052px;}
.y6e{bottom:554.760064px;}
.y105{bottom:555.840088px;}
.y27{bottom:565.560036px;}
.y9a{bottom:570.960091px;}
.y104{bottom:573.120072px;}
.ycc{bottom:573.480079px;}
.y6d{bottom:575.460091px;}
.y26{bottom:586.260064px;}
.y103{bottom:590.400055px;}
.y99{bottom:591.480079px;}
.ycb{bottom:594.180039px;}
.y6c{bottom:596.160049px;}
.y25{bottom:606.960091px;}
.y101{bottom:607.680039px;}
.y98{bottom:612.180039px;}
.yca{bottom:614.880066px;}
.y6b{bottom:616.860077px;}
.y102{bottom:619.560036px;}
.y24{bottom:627.660049px;}
.y100{bottom:628.200096px;}
.y96{bottom:632.880066px;}
.yc9{bottom:635.580093px;}
.y6a{bottom:637.560036px;}
.yff{bottom:642.060036px;}
.y23{bottom:648.360077px;}
.y94{bottom:653.580093px;}
.yc8{bottom:656.280052px;}
.y69{bottom:658.260064px;}
.yfc{bottom:659.340088px;}
.y52{bottom:660.960091px;}
.y22{bottom:669.060036px;}
.yfe{bottom:671.220085px;}
.y93{bottom:674.280052px;}
.yc7{bottom:676.980079px;}
.y68{bottom:678.960091px;}
.yfb{bottom:679.860077px;}
.y51{bottom:681.660049px;}
.y21{bottom:689.760064px;}
.yfa{bottom:693.900055px;}
.y92{bottom:694.980079px;}
.yc6{bottom:697.680073px;}
.y67{bottom:699.660049px;}
.y50{bottom:702.180073px;}
.y20{bottom:710.460056px;}
.yf9{bottom:711.180073px;}
.y91{bottom:715.680073px;}
.yc5{bottom:718.380066px;}
.y66{bottom:720.360077px;}
.y4f{bottom:722.160049px;}
.yf8{bottom:728.460056px;}
.y1f{bottom:731.160049px;}
.y90{bottom:736.380066px;}
.yc4{bottom:739.080059px;}
.yf7{bottom:740.340054px;}
.y65{bottom:741.060070px;}
.y4e{bottom:742.680073px;}
.y1e{bottom:751.860077px;}
.yc3{bottom:759.780052px;}
.y8f{bottom:761.040081px;}
.y64{bottom:761.760064px;}
.y4d{bottom:762.480079px;}
.yf6{bottom:762.840054px;}
.y1d{bottom:772.560070px;}
.y8e{bottom:777.780052px;}
.yf5{bottom:780.120072px;}
.yc2{bottom:780.480079px;}
.y4c{bottom:782.460056px;}
.y1c{bottom:793.260064px;}
.yf4{bottom:797.400055px;}
.y8d{bottom:798.480079px;}
.yc1{bottom:801.180073px;}
.y4b{bottom:803.160049px;}
.yf3{bottom:809.280052px;}
.y1b{bottom:813.780052px;}
.y8b{bottom:820.080059px;}
.yc0{bottom:821.880066px;}
.y4a{bottom:823.860077px;}
.yf2{bottom:831.960056px;}
.y1a{bottom:834.480079px;}
.ybf{bottom:842.580059px;}
.y49{bottom:844.560070px;}
.y88{bottom:844.740074px;}
.yea{bottom:849.960056px;}
.y19{bottom:855.180073px;}
.yef{bottom:859.860077px;}
.y8a{bottom:861.480079px;}
.ybe{bottom:863.280052px;}
.y48{bottom:865.260064px;}
.y87{bottom:865.440067px;}
.yf1{bottom:867.600083px;}
.ye9{bottom:870.300076px;}
.yee{bottom:875.340054px;}
.y18{bottom:875.880066px;}
.yf0{bottom:883.080059px;}
.ybd{bottom:883.980079px;}
.y47{bottom:885.960056px;}
.y89{bottom:886.140060px;}
.yed{bottom:890.820065px;}
.y17{bottom:896.580059px;}
.y85{bottom:903.600083px;}
.ybb{bottom:905.400055px;}
.y46{bottom:906.660049px;}
.yec{bottom:911.340054px;}
.y16{bottom:917.280052px;}
.yba{bottom:919.800076px;}
.y45{bottom:927.360077px;}
.y84{bottom:928.260064px;}
.ybc{bottom:930.060070px;}
.yeb{bottom:931.860077px;}
.y15{bottom:938.700061px;}
.yb9{bottom:947.520058px;}
.y44{bottom:948.060070px;}
.y83{bottom:948.960056px;}
.ye6{bottom:949.500068px;}
.y14{bottom:962.820065px;}
.y43{bottom:968.760064px;}
.y82{bottom:969.480079px;}
.yb8{bottom:972.180073px;}
.y13{bottom:986.400072px;}
.y42{bottom:989.460074px;}
.yb7{bottom:992.160067px;}
.y12{bottom:1007.100065px;}
.y41{bottom:1010.160067px;}
.yb6{bottom:1012.860060px;}
.y11{bottom:1027.800058px;}
.y40{bottom:1030.860060px;}
.yb5{bottom:1033.380066px;}
.y10{bottom:1048.500068px;}
.y3f{bottom:1051.560070px;}
.yb4{bottom:1053.360060px;}
.yf{bottom:1069.200061px;}
.y3e{bottom:1072.260064px;}
.yb3{bottom:1073.880066px;}
.ye{bottom:1089.180073px;}
.y3d{bottom:1092.960074px;}
.yb2{bottom:1093.680073px;}
.yd{bottom:1106.460074px;}
.y3c{bottom:1113.660067px;}
.yc{bottom:1123.560070px;}
.y3b{bottom:1134.360068px;}
.yb{bottom:1140.840063px;}
.y38{bottom:1155.060070px;}
.y37{bottom:1175.580068px;}
.y36{bottom:1194.480067px;}
.h4{height:16.559966px;}
.h26{height:16.559967px;}
.h20{height:16.560001px;}
.h1f{height:16.560002px;}
.h24{height:16.560035px;}
.h23{height:16.560036px;}
.h29{height:16.740004px;}
.h1a{height:20.159980px;}
.h17{height:20.159981px;}
.h18{height:20.160015px;}
.h1d{height:20.160016px;}
.h19{height:20.160049px;}
.h12{height:28.116933px;}
.h13{height:34.885794px;}
.h2{height:39.051432px;}
.h3{height:43.216744px;}
.h5{height:45.551207px;}
.ha{height:47.903046px;}
.he{height:49.985702px;}
.hd{height:50.053205px;}
.h1e{height:50.490652px;}
.h6{height:50.515737px;}
.h7{height:52.068362px;}
.h9{height:52.138677px;}
.h1b{height:52.685808px;}
.h16{height:54.880968px;}
.h8{height:61.002239px;}
.h15{height:62.245596px;}
.hc{height:62.245731px;}
.hb{height:62.245767px;}
.h14{height:62.245798px;}
.h10{height:62.245870px;}
.hf{height:64.130316px;}
.h11{height:71.615971px;}
.h22{height:77.056834px;}
.h28{height:77.776708px;}
.h27{height:77.776713px;}
.h21{height:77.776848px;}
.h25{height:77.776987px;}
.h1c{height:93.108339px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w5{width:3.600014px;}
.w98{width:3.779983px;}
.w60{width:3.780001px;}
.w10{width:6.120002px;}
.w6e{width:7.559966px;}
.w6{width:7.559967px;}
.w68{width:7.559984px;}
.w7e{width:7.559993px;}
.w62{width:7.560001px;}
.w6b{width:7.560002px;}
.w6d{width:7.560035px;}
.w65{width:7.560036px;}
.w43{width:8.099980px;}
.w45{width:8.280017px;}
.w8{width:9.000000px;}
.w48{width:9.000034px;}
.w28{width:9.000035px;}
.w73{width:14.939964px;}
.w74{width:14.939965px;}
.w6a{width:14.939998px;}
.w69{width:14.939999px;}
.w72{width:14.940033px;}
.w4f{width:17.999983px;}
.w20{width:18.000000px;}
.w5c{width:18.000034px;}
.w59{width:21.960004px;}
.w80{width:22.500000px;}
.w93{width:23.400021px;}
.w77{width:25.379998px;}
.w7d{width:25.380006px;}
.w67{width:25.380014px;}
.w99{width:25.380031px;}
.w6f{width:25.740006px;}
.w1a{width:27.000000px;}
.w82{width:29.340002px;}
.w7f{width:30.060001px;}
.w8d{width:30.960004px;}
.w33{width:32.039979px;}
.w22{width:32.039995px;}
.w79{width:33.300007px;}
.w83{width:34.200028px;}
.w32{width:34.920009px;}
.w88{width:35.819996px;}
.w96{width:36.719999px;}
.w95{width:36.720017px;}
.w5e{width:37.080008px;}
.w85{width:39.240006px;}
.wb{width:39.960004px;}
.w19{width:41.039979px;}
.w2e{width:41.039995px;}
.w7b{width:41.760011px;}
.w97{width:42.480011px;}
.w91{width:43.379998px;}
.w3b{width:43.919975px;}
.w51{width:43.920009px;}
.w66{width:44.099997px;}
.w23{width:45.000000px;}
.w58{width:45.180005px;}
.w5b{width:45.539995px;}
.w24{width:45.899987px;}
.w29{width:45.900003px;}
.w41{width:46.079990px;}
.w40{width:46.079991px;}
.w7{width:46.080008px;}
.w9{width:46.080025px;}
.w8f{width:46.620003px;}
.w5a{width:46.980011px;}
.w8e{width:47.520024px;}
.w81{width:48.420010px;}
.w4a{width:48.960005px;}
.w4b{width:49.140009px;}
.w52{width:50.039995px;}
.w7a{width:50.040012px;}
.w92{width:50.759994px;}
.w50{width:50.939999px;}
.w78{width:51.660016px;}
.wc{width:52.019990px;}
.w14{width:52.020006px;}
.w4e{width:53.099997px;}
.w2{width:53.460005px;}
.w16{width:54.000000px;}
.w86{width:54.180005px;}
.w4c{width:54.900003px;}
.w3f{width:55.079991px;}
.w38{width:55.080008px;}
.w17{width:55.979978px;}
.w1e{width:55.980011px;}
.w1c{width:57.060001px;}
.w15{width:57.060002px;}
.w4d{width:57.960005px;}
.w8a{width:58.319996px;}
.w3a{width:59.039979px;}
.w30{width:59.039995px;}
.w9a{width:59.219999px;}
.we{width:59.939999px;}
.w3{width:60.839985px;}
.w3c{width:61.019990px;}
.w35{width:61.020006px;}
.w61{width:61.560001px;}
.w64{width:61.740006px;}
.w2d{width:61.919975px;}
.w25{width:61.920009px;}
.w6c{width:62.460022px;}
.wa{width:63.000000px;}
.w46{width:63.000034px;}
.w76{width:63.360009px;}
.w54{width:63.900003px;}
.w84{width:64.080008px;}
.w1b{width:64.979978px;}
.w89{width:64.980011px;}
.w75{width:65.879998px;}
.w47{width:66.060001px;}
.w8b{width:66.600013px;}
.w7c{width:68.220017px;}
.w71{width:70.020024px;}
.w49{width:70.920009px;}
.w8c{width:70.920010px;}
.w87{width:71.640026px;}
.w5d{width:72.000000px;}
.w94{width:73.260011px;}
.w57{width:73.980011px;}
.w18{width:75.060001px;}
.w31{width:75.959988px;}
.w53{width:75.960005px;}
.w90{width:76.680005px;}
.w37{width:77.039979px;}
.w2a{width:77.039995px;}
.w13{width:77.939999px;}
.w70{width:78.300007px;}
.w2f{width:79.019990px;}
.w56{width:80.280009px;}
.w2c{width:84.060001px;}
.w39{width:84.060002px;}
.w5f{width:84.960005px;}
.w44{width:85.859974px;}
.w42{width:85.860008px;}
.w11{width:88.019990px;}
.w12{width:88.020006px;}
.w55{width:88.920009px;}
.w63{width:89.639992px;}
.w3d{width:91.979978px;}
.w34{width:91.980011px;}
.wf{width:93.780001px;}
.w21{width:93.959988px;}
.w26{width:93.960005px;}
.w3e{width:99.899987px;}
.w36{width:99.900003px;}
.w1d{width:111.959988px;}
.wd{width:129.060001px;}
.w27{width:129.959988px;}
.w1f{width:146.159981px;}
.w2b{width:160.019990px;}
.w4{width:202.500034px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x14{left:116.099997px;}
.x6e{left:119.879998px;}
.x48{left:125.099997px;}
.x8{left:129.239997px;}
.x68{left:138.060001px;}
.xaa{left:141.480002px;}
.xae{left:145.259994px;}
.xb4{left:146.879998px;}
.x3b{left:148.139992px;}
.xa8{left:149.400003px;}
.xb1{left:151.919992px;}
.x6d{left:153.180005px;}
.x1d{left:156.060001px;}
.x45{left:157.139992px;}
.x49{left:160.020006px;}
.x41{left:162.000000px;}
.x69{left:163.080008px;}
.x61{left:165.060001px;}
.x64{left:167.039996px;}
.x29{left:168.120002px;}
.x2b{left:170.099997px;}
.x35{left:172.080008px;}
.x33{left:173.159998px;}
.xb3{left:174.419992px;}
.x2f{left:176.039996px;}
.x3e{left:178.020006px;}
.x65{left:180.000000px;}
.x5a{left:182.159998px;}
.x5f{left:187.020006px;}
.x6c{left:188.099997px;}
.x67{left:190.080008px;}
.x2d{left:191.159998px;}
.xb5{left:192.780001px;}
.x31{left:194.039996px;}
.x66{left:196.020006px;}
.x43{left:200.159998px;}
.x27{left:204.120002px;}
.x4b{left:208.080008px;}
.x24{left:209.879998px;}
.x25{left:216.000000px;}
.x79{left:220.139992px;}
.x6f{left:222.300007px;}
.x78{left:224.460005px;}
.x89{left:227.699993px;}
.xa5{left:231.479994px;}
.xa6{left:239.039996px;}
.x8a{left:242.639992px;}
.x22{left:245.159998px;}
.x2{left:247.319996px;}
.x10{left:249.840002px;}
.x55{left:253.439999px;}
.x38{left:259.379998px;}
.x3{left:270.539996px;}
.x7b{left:275.400003px;}
.x7a{left:281.159998px;}
.x9{left:282.419992px;}
.x39{left:286.379998px;}
.x62{left:287.460005px;}
.x5b{left:291.959988px;}
.x11{left:295.920010px;}
.x5c{left:300.959988px;}
.x8b{left:302.759994px;}
.x63{left:305.459988px;}
.x70{left:311.939999px;}
.x52{left:314.819996px;}
.x4{left:324.000000px;}
.x56{left:339.300007px;}
.xa{left:343.439999px;}
.x7d{left:347.579990px;}
.x71{left:349.740006px;}
.x7c{left:351.899987px;}
.x8c{left:355.139992px;}
.x16{left:358.199993px;}
.x53{left:360.899987px;}
.x1b{left:366.300007px;}
.x8d{left:370.079990px;}
.xac{left:373.860008px;}
.x3c{left:376.199993px;}
.x15{left:380.699993px;}
.x5{left:384.839985px;}
.x4d{left:389.699993px;}
.x1e{left:394.199993px;}
.x3f{left:398.699993px;}
.x7f{left:402.660015px;}
.x7e{left:408.600014px;}
.xd{left:417.240006px;}
.xa2{left:418.860008px;}
.x17{left:421.199993px;}
.x8e{left:422.459988px;}
.x8f{left:430.019989px;}
.xa3{left:433.800007px;}
.x51{left:435.420010px;}
.xf{left:437.759994px;}
.xe{left:440.100014px;}
.xc{left:442.259994px;}
.xb{left:446.399987px;}
.x57{left:467.279983px;}
.x60{left:472.500000px;}
.x4a{left:477.899987px;}
.x72{left:484.019989px;}
.x2e{left:486.899987px;}
.x4e{left:489.779983px;}
.x3d{left:491.759994px;}
.x1f{left:497.879998px;}
.x54{left:500.040012px;}
.x2c{left:501.839985px;}
.x2a{left:502.920010px;}
.x23{left:505.800007px;}
.x44{left:507.779983px;}
.x98{left:509.759994px;}
.x32{left:510.839985px;}
.xab{left:514.079990px;}
.xaf{left:518.220017px;}
.xb7{left:520.740006px;}
.x47{left:521.819996px;}
.x28{left:523.800007px;}
.x46{left:524.879998px;}
.xb6{left:527.399987px;}
.x4c{left:529.920010px;}
.xad{left:532.439999px;}
.x26{left:533.879998px;}
.xa7{left:535.680005px;}
.x4f{left:537.839985px;}
.x3a{left:539.819996px;}
.x59{left:542.699993px;}
.x50{left:545.759994px;}
.xa4{left:547.379998px;}
.xb2{left:549.000000px;}
.x58{left:550.620002px;}
.xa9{left:552.240006px;}
.x99{left:554.040012px;}
.xb0{left:555.660015px;}
.x34{left:557.819996px;}
.x6a{left:565.199993px;}
.x5d{left:569.699993px;}
.x40{left:575.819996px;}
.x12{left:577.259994px;}
.x5e{left:578.700027px;}
.x81{left:581.940033px;}
.x6b{left:583.200027px;}
.x80{left:586.259994px;}
.x6{left:587.340019px;}
.x9a{left:589.500000px;}
.x7{left:590.940033px;}
.x36{left:592.019989px;}
.x90{left:593.279983px;}
.xb8{left:597.059967px;}
.x91{left:600.840019px;}
.x9b{left:604.440033px;}
.x42{left:605.879998px;}
.x73{left:609.659981px;}
.x30{left:613.799973px;}
.x13{left:623.340019px;}
.x83{left:637.200027px;}
.x82{left:642.960023px;}
.x9c{left:653.220017px;}
.x92{left:657.000000px;}
.xb9{left:660.779983px;}
.x93{left:664.559967px;}
.x9d{left:668.159981px;}
.x74{left:673.740006px;}
.x19{left:683.460023px;}
.x1c{left:691.559967px;}
.x86{left:704.879998px;}
.x18{left:705.960023px;}
.x85{left:709.379998px;}
.x20{left:710.460023px;}
.x76{left:711.539978px;}
.x84{left:713.700027px;}
.x9e{left:716.940033px;}
.x21{left:719.460023px;}
.x94{left:720.720017px;}
.x37{left:723.960023px;}
.x95{left:728.279983px;}
.x9f{left:731.879998px;}
.x75{left:737.100014px;}
.x1a{left:746.460023px;}
.x88{left:764.639992px;}
.x87{left:770.399987px;}
.xa0{left:780.659981px;}
.x96{left:784.440033px;}
.xba{left:788.220017px;}
.x97{left:792.000000px;}
.xa1{left:795.600014px;}
.x77{left:801.179970px;}
@media print{
.v4{vertical-align:-24.320068pt;}
.v3{vertical-align:-18.559816pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.559996pt;}
.v2{vertical-align:24.319976pt;}
.v6{vertical-align:30.720092pt;}
.v5{vertical-align:36.479980pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.053252pt;}
.ls5{letter-spacing:0.054252pt;}
.ls7{letter-spacing:0.255553pt;}
.ls4{letter-spacing:0.319148pt;}
.ls3{letter-spacing:0.319152pt;}
.ls1{letter-spacing:0.319208pt;}
.ls2{letter-spacing:0.319212pt;}
.ws6{word-spacing:-16.054853pt;}
.ws7{word-spacing:-16.053853pt;}
.ws3{word-spacing:-16.000601pt;}
.ws4{word-spacing:-14.720600pt;}
.ws0{word-spacing:-13.280500pt;}
.ws8{word-spacing:-12.000500pt;}
.ws5{word-spacing:-10.720400pt;}
.ws1{word-spacing:-8.640330pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-4.572172pt;}
._13{margin-left:-3.667638pt;}
._12{margin-left:-2.506344pt;}
._2{margin-left:-0.921750pt;}
._1{width:1.159761pt;}
._d{width:2.297869pt;}
._8{width:3.683679pt;}
._5{width:4.940346pt;}
._4{width:5.942401pt;}
._6{width:7.339759pt;}
._7{width:8.385183pt;}
._c{width:9.654113pt;}
._10{width:11.343176pt;}
._11{width:12.853733pt;}
._14{width:14.144031pt;}
._17{width:15.040030pt;}
._f{width:17.291399pt;}
._e{width:18.329188pt;}
._3{width:19.221241pt;}
._0{width:20.328295pt;}
._a{width:21.933324pt;}
._b{width:22.984428pt;}
._1d{width:23.970118pt;}
._19{width:25.654214pt;}
._1a{width:26.743185pt;}
._1b{width:29.883666pt;}
._1c{width:30.963369pt;}
._9{width:41.093737pt;}
._27{width:130.140807pt;}
._29{width:147.147940pt;}
._25{width:159.366000pt;}
._28{width:160.428440pt;}
._2d{width:164.530880pt;}
._26{width:165.740640pt;}
._1e{width:170.046919pt;}
._23{width:172.549179pt;}
._24{width:173.708940pt;}
._21{width:179.023848pt;}
._2b{width:180.650076pt;}
._20{width:186.458220pt;}
._2e{width:196.690212pt;}
._2c{width:208.230562pt;}
._1f{width:210.453178pt;}
._2f{width:224.138734pt;}
._22{width:239.367732pt;}
._2a{width:242.698232pt;}
._18{width:267.635897pt;}
._15{width:794.909858pt;}
.fs2{font-size:34.561320pt;}
.fs6{font-size:42.881600pt;}
.fs0{font-size:48.002000pt;}
.fs1{font-size:53.122000pt;}
.fs5{font-size:58.882400pt;}
.fs7{font-size:61.442400pt;}
.fs3{font-size:64.002404pt;}
.fs4{font-size:74.882796pt;}
.y0{bottom:0.000000pt;}
.yfd{bottom:2.880004pt;}
.y8{bottom:2.880005pt;}
.y11e{bottom:3.039978pt;}
.y9b{bottom:3.519958pt;}
.y95{bottom:3.519959pt;}
.y86{bottom:3.519989pt;}
.y8c{bottom:3.520019pt;}
.y97{bottom:3.520020pt;}
.ya{bottom:50.080079pt;}
.y3a{bottom:50.560059pt;}
.y9{bottom:65.120118pt;}
.y39{bottom:67.360108pt;}
.y7{bottom:76.320069pt;}
.y2{bottom:93.280030pt;}
.y6{bottom:94.560059pt;}
.yb1{bottom:102.720032pt;}
.y63{bottom:104.000061pt;}
.ye5{bottom:106.880066pt;}
.y5{bottom:109.920044pt;}
.ye8{bottom:110.080079pt;}
.ye1{bottom:112.480042pt;}
.y62{bottom:116.160035pt;}
.y81{bottom:120.800049pt;}
.yb0{bottom:121.120057pt;}
.y4{bottom:125.280030pt;}
.ye7{bottom:126.880066pt;}
.ye0{bottom:130.560059pt;}
.y80{bottom:132.960083pt;}
.y61{bottom:139.360047pt;}
.yaf{bottom:139.520081pt;}
.y3{bottom:140.640076pt;}
.y11d{bottom:141.120057pt;}
.ye4{bottom:143.680054pt;}
.ydf{bottom:147.520081pt;}
.y60{bottom:151.360047pt;}
.y7f{bottom:154.560059pt;}
.y1{bottom:156.320069pt;}
.y11c{bottom:156.800049pt;}
.yae{bottom:157.920044pt;}
.ye3{bottom:162.080079pt;}
.yde{bottom:164.320069pt;}
.y7e{bottom:167.840088pt;}
.y11b{bottom:172.160035pt;}
.y5f{bottom:172.960083pt;}
.yad{bottom:176.320069pt;}
.ydd{bottom:178.560059pt;}
.ye2{bottom:180.480042pt;}
.y5e{bottom:185.120057pt;}
.y11a{bottom:187.520081pt;}
.yac{bottom:194.720032pt;}
.ydc{bottom:196.960083pt;}
.y119{bottom:198.080079pt;}
.y7d{bottom:198.880066pt;}
.y5d{bottom:206.720032pt;}
.yab{bottom:213.120057pt;}
.ydb{bottom:215.360047pt;}
.y7c{bottom:217.280030pt;}
.y117{bottom:218.240052pt;}
.y5c{bottom:223.520081pt;}
.y118{bottom:228.640076pt;}
.yaa{bottom:231.520081pt;}
.yda{bottom:233.760071pt;}
.y11f{bottom:235.360047pt;}
.y5b{bottom:235.680054pt;}
.y116{bottom:236.320069pt;}
.y35{bottom:245.120057pt;}
.y115{bottom:248.800049pt;}
.ya9{bottom:249.920044pt;}
.yd9{bottom:252.160035pt;}
.y7b{bottom:254.080079pt;}
.y5a{bottom:257.280030pt;}
.y34{bottom:263.520081pt;}
.y114{bottom:264.160035pt;}
.ya8{bottom:268.320069pt;}
.y59{bottom:270.560059pt;}
.y7a{bottom:272.480042pt;}
.y113{bottom:274.720032pt;}
.y33{bottom:281.920044pt;}
.ya7{bottom:286.720032pt;}
.yd8{bottom:288.960083pt;}
.y79{bottom:290.880066pt;}
.y112{bottom:294.880066pt;}
.y32{bottom:300.320069pt;}
.ya6{bottom:305.120057pt;}
.yd7{bottom:307.360047pt;}
.y78{bottom:309.280030pt;}
.y111{bottom:310.080079pt;}
.y31{bottom:318.720032pt;}
.y58{bottom:320.320069pt;}
.ya5{bottom:323.520081pt;}
.y110{bottom:325.440064pt;}
.yd6{bottom:325.760071pt;}
.y77{bottom:327.680054pt;}
.y10f{bottom:336.000061pt;}
.y30{bottom:337.120057pt;}
.y57{bottom:338.720032pt;}
.ya4{bottom:341.920044pt;}
.yd5{bottom:344.160035pt;}
.y76{bottom:346.080079pt;}
.y2f{bottom:355.520081pt;}
.y10e{bottom:356.160035pt;}
.y56{bottom:357.120057pt;}
.ya3{bottom:360.320069pt;}
.yd4{bottom:362.560059pt;}
.y75{bottom:364.480042pt;}
.y10d{bottom:371.520081pt;}
.y2e{bottom:373.920044pt;}
.y55{bottom:375.360047pt;}
.ya2{bottom:378.720032pt;}
.yd3{bottom:380.960083pt;}
.y74{bottom:382.880066pt;}
.y10c{bottom:386.880066pt;}
.y2d{bottom:392.320069pt;}
.y54{bottom:393.120057pt;}
.ya1{bottom:397.120057pt;}
.yd2{bottom:399.360047pt;}
.y73{bottom:401.280030pt;}
.y10b{bottom:402.080079pt;}
.y53{bottom:407.360047pt;}
.y2c{bottom:410.720032pt;}
.y10a{bottom:412.640076pt;}
.ya0{bottom:415.520081pt;}
.yd1{bottom:417.760071pt;}
.y72{bottom:419.680054pt;}
.y2b{bottom:429.120057pt;}
.y109{bottom:432.800049pt;}
.y9f{bottom:433.920044pt;}
.yd0{bottom:436.160035pt;}
.y71{bottom:438.080079pt;}
.y2a{bottom:447.520081pt;}
.y108{bottom:448.160035pt;}
.y9e{bottom:452.320069pt;}
.ycf{bottom:454.560059pt;}
.y70{bottom:456.320069pt;}
.y107{bottom:463.520081pt;}
.y29{bottom:465.920044pt;}
.y9d{bottom:470.720032pt;}
.yce{bottom:472.960083pt;}
.y6f{bottom:474.720032pt;}
.y106{bottom:478.880066pt;}
.y28{bottom:484.320069pt;}
.y9c{bottom:489.120057pt;}
.ycd{bottom:491.360047pt;}
.y6e{bottom:493.120057pt;}
.y105{bottom:494.080079pt;}
.y27{bottom:502.720032pt;}
.y9a{bottom:507.520081pt;}
.y104{bottom:509.440064pt;}
.ycc{bottom:509.760071pt;}
.y6d{bottom:511.520081pt;}
.y26{bottom:521.120057pt;}
.y103{bottom:524.800049pt;}
.y99{bottom:525.760071pt;}
.ycb{bottom:528.160035pt;}
.y6c{bottom:529.920044pt;}
.y25{bottom:539.520081pt;}
.y101{bottom:540.160035pt;}
.y98{bottom:544.160035pt;}
.yca{bottom:546.560059pt;}
.y6b{bottom:548.320069pt;}
.y102{bottom:550.720032pt;}
.y24{bottom:557.920044pt;}
.y100{bottom:558.400086pt;}
.y96{bottom:562.560059pt;}
.yc9{bottom:564.960083pt;}
.y6a{bottom:566.720032pt;}
.yff{bottom:570.720032pt;}
.y23{bottom:576.320069pt;}
.y94{bottom:580.960083pt;}
.yc8{bottom:583.360047pt;}
.y69{bottom:585.120057pt;}
.yfc{bottom:586.080079pt;}
.y52{bottom:587.520081pt;}
.y22{bottom:594.720032pt;}
.yfe{bottom:596.640076pt;}
.y93{bottom:599.360047pt;}
.yc7{bottom:601.760071pt;}
.y68{bottom:603.520081pt;}
.yfb{bottom:604.320069pt;}
.y51{bottom:605.920044pt;}
.y21{bottom:613.120057pt;}
.yfa{bottom:616.800049pt;}
.y92{bottom:617.760071pt;}
.yc6{bottom:620.160065pt;}
.y67{bottom:621.920044pt;}
.y50{bottom:624.160065pt;}
.y20{bottom:631.520050pt;}
.yf9{bottom:632.160065pt;}
.y91{bottom:636.160065pt;}
.yc5{bottom:638.560059pt;}
.y66{bottom:640.320069pt;}
.y4f{bottom:641.920044pt;}
.yf8{bottom:647.520050pt;}
.y1f{bottom:649.920044pt;}
.y90{bottom:654.560059pt;}
.yc4{bottom:656.960053pt;}
.yf7{bottom:658.080048pt;}
.y65{bottom:658.720063pt;}
.y4e{bottom:660.160065pt;}
.y1e{bottom:668.320069pt;}
.yc3{bottom:675.360047pt;}
.y8f{bottom:676.480072pt;}
.y64{bottom:677.120057pt;}
.y4d{bottom:677.760071pt;}
.yf6{bottom:678.080048pt;}
.y1d{bottom:686.720063pt;}
.y8e{bottom:691.360047pt;}
.yf5{bottom:693.440064pt;}
.yc2{bottom:693.760071pt;}
.y4c{bottom:695.520050pt;}
.y1c{bottom:705.120057pt;}
.yf4{bottom:708.800049pt;}
.y8d{bottom:709.760071pt;}
.yc1{bottom:712.160065pt;}
.y4b{bottom:713.920044pt;}
.yf3{bottom:719.360047pt;}
.y1b{bottom:723.360047pt;}
.y8b{bottom:728.960053pt;}
.yc0{bottom:730.560059pt;}
.y4a{bottom:732.320069pt;}
.yf2{bottom:739.520050pt;}
.y1a{bottom:741.760071pt;}
.ybf{bottom:748.960053pt;}
.y49{bottom:750.720063pt;}
.y88{bottom:750.880066pt;}
.yea{bottom:755.520050pt;}
.y19{bottom:760.160065pt;}
.yef{bottom:764.320069pt;}
.y8a{bottom:765.760071pt;}
.ybe{bottom:767.360047pt;}
.y48{bottom:769.120057pt;}
.y87{bottom:769.280060pt;}
.yf1{bottom:771.200074pt;}
.ye9{bottom:773.600068pt;}
.yee{bottom:778.080048pt;}
.y18{bottom:778.560059pt;}
.yf0{bottom:784.960053pt;}
.ybd{bottom:785.760071pt;}
.y47{bottom:787.520050pt;}
.y89{bottom:787.680054pt;}
.yed{bottom:791.840058pt;}
.y17{bottom:796.960053pt;}
.y85{bottom:803.200074pt;}
.ybb{bottom:804.800049pt;}
.y46{bottom:805.920044pt;}
.yec{bottom:810.080048pt;}
.y16{bottom:815.360047pt;}
.yba{bottom:817.600068pt;}
.y45{bottom:824.320069pt;}
.y84{bottom:825.120057pt;}
.ybc{bottom:826.720063pt;}
.yeb{bottom:828.320069pt;}
.y15{bottom:834.400055pt;}
.yb9{bottom:842.240052pt;}
.y44{bottom:842.720063pt;}
.y83{bottom:843.520050pt;}
.ye6{bottom:844.000061pt;}
.y14{bottom:855.840058pt;}
.y43{bottom:861.120057pt;}
.y82{bottom:861.760071pt;}
.yb8{bottom:864.160065pt;}
.y13{bottom:876.800064pt;}
.y42{bottom:879.520066pt;}
.yb7{bottom:881.920060pt;}
.y12{bottom:895.200058pt;}
.y41{bottom:897.920060pt;}
.yb6{bottom:900.320054pt;}
.y11{bottom:913.600052pt;}
.y40{bottom:916.320054pt;}
.yb5{bottom:918.560059pt;}
.y10{bottom:932.000061pt;}
.y3f{bottom:934.720063pt;}
.yb4{bottom:936.320054pt;}
.yf{bottom:950.400055pt;}
.y3e{bottom:953.120057pt;}
.yb3{bottom:954.560059pt;}
.ye{bottom:968.160065pt;}
.y3d{bottom:971.520066pt;}
.yb2{bottom:972.160065pt;}
.yd{bottom:983.520066pt;}
.y3c{bottom:989.920060pt;}
.yc{bottom:998.720063pt;}
.y3b{bottom:1008.320061pt;}
.yb{bottom:1014.080056pt;}
.y38{bottom:1026.720063pt;}
.y37{bottom:1044.960061pt;}
.y36{bottom:1061.760060pt;}
.h4{height:14.719970pt;}
.h26{height:14.719971pt;}
.h20{height:14.720001pt;}
.h1f{height:14.720002pt;}
.h24{height:14.720031pt;}
.h23{height:14.720032pt;}
.h29{height:14.880004pt;}
.h1a{height:17.919982pt;}
.h17{height:17.919983pt;}
.h18{height:17.920013pt;}
.h1d{height:17.920014pt;}
.h19{height:17.920044pt;}
.h12{height:24.992830pt;}
.h13{height:31.009595pt;}
.h2{height:34.712384pt;}
.h3{height:38.414884pt;}
.h5{height:40.489962pt;}
.ha{height:42.580486pt;}
.he{height:44.431736pt;}
.hd{height:44.491738pt;}
.h1e{height:44.880579pt;}
.h6{height:44.902877pt;}
.h7{height:46.282988pt;}
.h9{height:46.345491pt;}
.h1b{height:46.831829pt;}
.h16{height:48.783082pt;}
.h8{height:54.224212pt;}
.h15{height:55.329419pt;}
.hc{height:55.329539pt;}
.hb{height:55.329571pt;}
.h14{height:55.329599pt;}
.h10{height:55.329663pt;}
.hf{height:57.004725pt;}
.h11{height:63.658641pt;}
.h22{height:68.494964pt;}
.h28{height:69.134852pt;}
.h27{height:69.134856pt;}
.h21{height:69.134976pt;}
.h25{height:69.135100pt;}
.h1c{height:82.762968pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w5{width:3.200012pt;}
.w98{width:3.359985pt;}
.w60{width:3.360001pt;}
.w10{width:5.440002pt;}
.w6e{width:6.719970pt;}
.w6{width:6.719971pt;}
.w68{width:6.719986pt;}
.w7e{width:6.719994pt;}
.w62{width:6.720001pt;}
.w6b{width:6.720002pt;}
.w6d{width:6.720031pt;}
.w65{width:6.720032pt;}
.w43{width:7.199982pt;}
.w45{width:7.360015pt;}
.w8{width:8.000000pt;}
.w48{width:8.000030pt;}
.w28{width:8.000031pt;}
.w73{width:13.279968pt;}
.w74{width:13.279969pt;}
.w6a{width:13.279998pt;}
.w69{width:13.279999pt;}
.w72{width:13.280029pt;}
.w4f{width:15.999985pt;}
.w20{width:16.000000pt;}
.w5c{width:16.000030pt;}
.w59{width:19.520004pt;}
.w80{width:20.000000pt;}
.w93{width:20.800019pt;}
.w77{width:22.559998pt;}
.w7d{width:22.560005pt;}
.w67{width:22.560012pt;}
.w99{width:22.560028pt;}
.w6f{width:22.880005pt;}
.w1a{width:24.000000pt;}
.w82{width:26.080002pt;}
.w7f{width:26.720001pt;}
.w8d{width:27.520004pt;}
.w33{width:28.479981pt;}
.w22{width:28.479996pt;}
.w79{width:29.600006pt;}
.w83{width:30.400025pt;}
.w32{width:31.040008pt;}
.w88{width:31.839996pt;}
.w96{width:32.639999pt;}
.w95{width:32.640015pt;}
.w5e{width:32.960007pt;}
.w85{width:34.880005pt;}
.wb{width:35.520004pt;}
.w19{width:36.479981pt;}
.w2e{width:36.479996pt;}
.w7b{width:37.120010pt;}
.w97{width:37.760010pt;}
.w91{width:38.559998pt;}
.w3b{width:39.039978pt;}
.w51{width:39.040008pt;}
.w66{width:39.199997pt;}
.w23{width:40.000000pt;}
.w58{width:40.160004pt;}
.w5b{width:40.479996pt;}
.w24{width:40.799988pt;}
.w29{width:40.800003pt;}
.w41{width:40.959991pt;}
.w40{width:40.959992pt;}
.w7{width:40.960007pt;}
.w9{width:40.960022pt;}
.w8f{width:41.440003pt;}
.w5a{width:41.760010pt;}
.w8e{width:42.240021pt;}
.w81{width:43.040009pt;}
.w4a{width:43.520004pt;}
.w4b{width:43.680008pt;}
.w52{width:44.479996pt;}
.w7a{width:44.480011pt;}
.w92{width:45.119995pt;}
.w50{width:45.279999pt;}
.w78{width:45.920014pt;}
.wc{width:46.239991pt;}
.w14{width:46.240005pt;}
.w4e{width:47.199997pt;}
.w2{width:47.520004pt;}
.w16{width:48.000000pt;}
.w86{width:48.160004pt;}
.w4c{width:48.800003pt;}
.w3f{width:48.959992pt;}
.w38{width:48.960007pt;}
.w17{width:49.759980pt;}
.w1e{width:49.760010pt;}
.w1c{width:50.720001pt;}
.w15{width:50.720002pt;}
.w4d{width:51.520004pt;}
.w8a{width:51.839996pt;}
.w3a{width:52.479981pt;}
.w30{width:52.479996pt;}
.w9a{width:52.639999pt;}
.we{width:53.279999pt;}
.w3{width:54.079987pt;}
.w3c{width:54.239991pt;}
.w35{width:54.240005pt;}
.w61{width:54.720001pt;}
.w64{width:54.880005pt;}
.w2d{width:55.039978pt;}
.w25{width:55.040008pt;}
.w6c{width:55.520020pt;}
.wa{width:56.000000pt;}
.w46{width:56.000030pt;}
.w76{width:56.320008pt;}
.w54{width:56.800003pt;}
.w84{width:56.960007pt;}
.w1b{width:57.759980pt;}
.w89{width:57.760010pt;}
.w75{width:58.559998pt;}
.w47{width:58.720001pt;}
.w8b{width:59.200012pt;}
.w7c{width:60.640015pt;}
.w71{width:62.240021pt;}
.w49{width:63.040008pt;}
.w8c{width:63.040009pt;}
.w87{width:63.680023pt;}
.w5d{width:64.000000pt;}
.w94{width:65.120010pt;}
.w57{width:65.760010pt;}
.w18{width:66.720001pt;}
.w31{width:67.519989pt;}
.w53{width:67.520004pt;}
.w90{width:68.160004pt;}
.w37{width:68.479981pt;}
.w2a{width:68.479996pt;}
.w13{width:69.279999pt;}
.w70{width:69.600006pt;}
.w2f{width:70.239991pt;}
.w56{width:71.360008pt;}
.w2c{width:74.720001pt;}
.w39{width:74.720002pt;}
.w5f{width:75.520004pt;}
.w44{width:76.319977pt;}
.w42{width:76.320007pt;}
.w11{width:78.239991pt;}
.w12{width:78.240005pt;}
.w55{width:79.040008pt;}
.w63{width:79.679993pt;}
.w3d{width:81.759980pt;}
.w34{width:81.760010pt;}
.wf{width:83.360001pt;}
.w21{width:83.519989pt;}
.w26{width:83.520004pt;}
.w3e{width:88.799988pt;}
.w36{width:88.800003pt;}
.w1d{width:99.519989pt;}
.wd{width:114.720001pt;}
.w27{width:115.519989pt;}
.w1f{width:129.919983pt;}
.w2b{width:142.239991pt;}
.w4{width:180.000030pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x14{left:103.199997pt;}
.x6e{left:106.559998pt;}
.x48{left:111.199997pt;}
.x8{left:114.879997pt;}
.x68{left:122.720001pt;}
.xaa{left:125.760002pt;}
.xae{left:129.119995pt;}
.xb4{left:130.559998pt;}
.x3b{left:131.679993pt;}
.xa8{left:132.800003pt;}
.xb1{left:135.039993pt;}
.x6d{left:136.160004pt;}
.x1d{left:138.720001pt;}
.x45{left:139.679993pt;}
.x49{left:142.240005pt;}
.x41{left:144.000000pt;}
.x69{left:144.960007pt;}
.x61{left:146.720001pt;}
.x64{left:148.479996pt;}
.x29{left:149.440002pt;}
.x2b{left:151.199997pt;}
.x35{left:152.960007pt;}
.x33{left:153.919998pt;}
.xb3{left:155.039993pt;}
.x2f{left:156.479996pt;}
.x3e{left:158.240005pt;}
.x65{left:160.000000pt;}
.x5a{left:161.919998pt;}
.x5f{left:166.240005pt;}
.x6c{left:167.199997pt;}
.x67{left:168.960007pt;}
.x2d{left:169.919998pt;}
.xb5{left:171.360001pt;}
.x31{left:172.479996pt;}
.x66{left:174.240005pt;}
.x43{left:177.919998pt;}
.x27{left:181.440002pt;}
.x4b{left:184.960007pt;}
.x24{left:186.559998pt;}
.x25{left:192.000000pt;}
.x79{left:195.679993pt;}
.x6f{left:197.600006pt;}
.x78{left:199.520004pt;}
.x89{left:202.399994pt;}
.xa5{left:205.759995pt;}
.xa6{left:212.479996pt;}
.x8a{left:215.679993pt;}
.x22{left:217.919998pt;}
.x2{left:219.839996pt;}
.x10{left:222.080002pt;}
.x55{left:225.279999pt;}
.x38{left:230.559998pt;}
.x3{left:240.479996pt;}
.x7b{left:244.800003pt;}
.x7a{left:249.919998pt;}
.x9{left:251.039993pt;}
.x39{left:254.559998pt;}
.x62{left:255.520004pt;}
.x5b{left:259.519989pt;}
.x11{left:263.040009pt;}
.x5c{left:267.519989pt;}
.x8b{left:269.119995pt;}
.x63{left:271.519989pt;}
.x70{left:277.279999pt;}
.x52{left:279.839996pt;}
.x4{left:288.000000pt;}
.x56{left:301.600006pt;}
.xa{left:305.279999pt;}
.x7d{left:308.959991pt;}
.x71{left:310.880005pt;}
.x7c{left:312.799988pt;}
.x8c{left:315.679993pt;}
.x16{left:318.399994pt;}
.x53{left:320.799988pt;}
.x1b{left:325.600006pt;}
.x8d{left:328.959991pt;}
.xac{left:332.320007pt;}
.x3c{left:334.399994pt;}
.x15{left:338.399994pt;}
.x5{left:342.079987pt;}
.x4d{left:346.399994pt;}
.x1e{left:350.399994pt;}
.x3f{left:354.399994pt;}
.x7f{left:357.920013pt;}
.x7e{left:363.200012pt;}
.xd{left:370.880005pt;}
.xa2{left:372.320007pt;}
.x17{left:374.399994pt;}
.x8e{left:375.519989pt;}
.x8f{left:382.239990pt;}
.xa3{left:385.600006pt;}
.x51{left:387.040009pt;}
.xf{left:389.119995pt;}
.xe{left:391.200012pt;}
.xc{left:393.119995pt;}
.xb{left:396.799988pt;}
.x57{left:415.359985pt;}
.x60{left:420.000000pt;}
.x4a{left:424.799988pt;}
.x72{left:430.239990pt;}
.x2e{left:432.799988pt;}
.x4e{left:435.359985pt;}
.x3d{left:437.119995pt;}
.x1f{left:442.559998pt;}
.x54{left:444.480011pt;}
.x2c{left:446.079987pt;}
.x2a{left:447.040009pt;}
.x23{left:449.600006pt;}
.x44{left:451.359985pt;}
.x98{left:453.119995pt;}
.x32{left:454.079987pt;}
.xab{left:456.959991pt;}
.xaf{left:460.640015pt;}
.xb7{left:462.880005pt;}
.x47{left:463.839996pt;}
.x28{left:465.600006pt;}
.x46{left:466.559998pt;}
.xb6{left:468.799988pt;}
.x4c{left:471.040009pt;}
.xad{left:473.279999pt;}
.x26{left:474.559998pt;}
.xa7{left:476.160004pt;}
.x4f{left:478.079987pt;}
.x3a{left:479.839996pt;}
.x59{left:482.399994pt;}
.x50{left:485.119995pt;}
.xa4{left:486.559998pt;}
.xb2{left:488.000000pt;}
.x58{left:489.440002pt;}
.xa9{left:490.880005pt;}
.x99{left:492.480011pt;}
.xb0{left:493.920013pt;}
.x34{left:495.839996pt;}
.x6a{left:502.399994pt;}
.x5d{left:506.399994pt;}
.x40{left:511.839996pt;}
.x12{left:513.119995pt;}
.x5e{left:514.400024pt;}
.x81{left:517.280029pt;}
.x6b{left:518.400024pt;}
.x80{left:521.119995pt;}
.x6{left:522.080017pt;}
.x9a{left:524.000000pt;}
.x7{left:525.280029pt;}
.x36{left:526.239990pt;}
.x90{left:527.359985pt;}
.xb8{left:530.719971pt;}
.x91{left:534.080017pt;}
.x9b{left:537.280029pt;}
.x42{left:538.559998pt;}
.x73{left:541.919983pt;}
.x30{left:545.599976pt;}
.x13{left:554.080017pt;}
.x83{left:566.400024pt;}
.x82{left:571.520020pt;}
.x9c{left:580.640015pt;}
.x92{left:584.000000pt;}
.xb9{left:587.359985pt;}
.x93{left:590.719971pt;}
.x9d{left:593.919983pt;}
.x74{left:598.880005pt;}
.x19{left:607.520020pt;}
.x1c{left:614.719971pt;}
.x86{left:626.559998pt;}
.x18{left:627.520020pt;}
.x85{left:630.559998pt;}
.x20{left:631.520020pt;}
.x76{left:632.479980pt;}
.x84{left:634.400024pt;}
.x9e{left:637.280029pt;}
.x21{left:639.520020pt;}
.x94{left:640.640015pt;}
.x37{left:643.520020pt;}
.x95{left:647.359985pt;}
.x9f{left:650.559998pt;}
.x75{left:655.200012pt;}
.x1a{left:663.520020pt;}
.x88{left:679.679993pt;}
.x87{left:684.799988pt;}
.xa0{left:693.919983pt;}
.x96{left:697.280029pt;}
.xba{left:700.640015pt;}
.x97{left:704.000000pt;}
.xa1{left:707.200012pt;}
.x77{left:712.159973pt;}
}




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