
    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_18c2ded14f20de370524355a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_21cd00ec616d8fc68cf9baf3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_c606d77c34ea490a37e11a61.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.745117;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_8c71e2121de453b3d695d4de.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4e77f84706327d3668a42256.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d6b749a585ecf8972517a90a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_8117b800757e86f96b969697.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_23098b310fb416db9360b496.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-82.080027px;}
.v5{vertical-align:-20.879789px;}
.v3{vertical-align:-15.119937px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.879789px;}
.v2{vertical-align:27.360009px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.007225px;}
.lsf{letter-spacing:0.007230px;}
.lsd{letter-spacing:0.007365px;}
.lsb{letter-spacing:0.007369px;}
.ls11{letter-spacing:0.007504px;}
.ls5{letter-spacing:0.009721px;}
.ls6{letter-spacing:0.045132px;}
.lsa{letter-spacing:0.049946px;}
.ls4{letter-spacing:0.055031px;}
.ls1{letter-spacing:0.058199px;}
.ls10{letter-spacing:0.176920px;}
.lse{letter-spacing:0.176925px;}
.ls7{letter-spacing:0.896803px;}
.ls8{letter-spacing:0.896871px;}
.ls2{letter-spacing:22.329721px;}
.ls0{letter-spacing:368.287149px;}
.ls9{letter-spacing:1431.536929px;}
.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:-59.748300px;}
.wsa{word-spacing:-13.553062px;}
.ws3{word-spacing:-13.503116px;}
.ws8{word-spacing:-12.246691px;}
.ws7{word-spacing:-12.201559px;}
.ws5{word-spacing:-12.057638px;}
.ws2{word-spacing:-10.900104px;}
.ws0{word-spacing:-9.970031px;}
.ws9{word-spacing:-8.785141px;}
.ws1{word-spacing:-6.832887px;}
.ws4{word-spacing:0.000000px;}
._1e{margin-left:-4.088383px;}
._c{margin-left:-2.294201px;}
._1{margin-left:-1.231951px;}
._0{width:1.453645px;}
._2{width:2.809553px;}
._b{width:3.887096px;}
._a{width:5.416027px;}
._8{width:7.110739px;}
._7{width:8.364071px;}
._9{width:9.379792px;}
._f{width:10.416581px;}
._1b{width:12.309236px;}
._1a{width:14.906725px;}
._1c{width:16.489225px;}
._1d{width:17.491462px;}
._18{width:18.502979px;}
._15{width:19.617819px;}
._17{width:21.035550px;}
._16{width:22.045049px;}
._1f{width:23.394639px;}
._10{width:24.921264px;}
._d{width:26.406674px;}
._e{width:27.825096px;}
._24{width:29.608136px;}
._2b{width:30.610456px;}
._3{width:31.869933px;}
._4{width:33.320557px;}
._2c{width:35.220223px;}
._14{width:37.043255px;}
._13{width:38.061050px;}
._12{width:39.853499px;}
._11{width:41.208716px;}
._5{width:52.839257px;}
._19{width:71.456907px;}
._6{width:80.739639px;}
._28{width:84.726981px;}
._25{width:88.930546px;}
._2e{width:97.709476px;}
._23{width:105.907763px;}
._2d{width:111.127682px;}
._2a{width:115.593619px;}
._21{width:133.048863px;}
._22{width:140.134045px;}
._26{width:151.539094px;}
._20{width:303.138879px;}
._29{width:322.555523px;}
._27{width:442.456452px;}
.fc1{color:rgb(192,0,0);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.234015px;}
.fs3{font-size:35.992890px;}
.fsa{font-size:38.872305px;}
.fs1{font-size:41.751720px;}
.fs0{font-size:48.230550px;}
.fs8{font-size:51.110100px;}
.fs9{font-size:53.989200px;}
.fs6{font-size:59.748300px;}
.fs5{font-size:71.985600px;}
.fs2{font-size:77.744700px;}
.fs4{font-size:84.223355px;}
.y0{bottom:0.000000px;}
.y7c{bottom:2.340019px;}
.yac{bottom:3.600014px;}
.ybd{bottom:3.600015px;}
.y32{bottom:3.960021px;}
.y7b{bottom:53.820054px;}
.y7a{bottom:55.800065px;}
.ya{bottom:56.520081px;}
.y79{bottom:69.660073px;}
.y9{bottom:73.080048px;}
.y8{bottom:86.760018px;}
.y132{bottom:89.820054px;}
.yf4{bottom:90.360031px;}
.y1b5{bottom:94.140015px;}
.y117{bottom:98.820054px;}
.y16a{bottom:99.720040px;}
.y1c5{bottom:101.520081px;}
.y76{bottom:103.140015px;}
.y114{bottom:103.500023px;}
.y165{bottom:104.400078px;}
.y46{bottom:104.940056px;}
.ybb{bottom:107.460046px;}
.y131{bottom:108.000023px;}
.yf3{bottom:108.540070px;}
.y19c{bottom:112.320054px;}
.y1b4{bottom:112.500023px;}
.y116{bottom:117.000023px;}
.y169{bottom:118.080048px;}
.y18c{bottom:119.880021px;}
.y75{bottom:121.320054px;}
.y113{bottom:121.860031px;}
.y164{bottom:122.760018px;}
.y45{bottom:123.120025px;}
.yb9{bottom:123.840042px;}
.yba{bottom:124.020081px;}
.y130{bottom:126.360031px;}
.yf2{bottom:130.500023px;}
.y19b{bottom:130.680061px;}
.y115{bottom:131.400078px;}
.y18b{bottom:138.240029px;}
.y74{bottom:139.680061px;}
.y112{bottom:140.220040px;}
.yb8{bottom:140.400078px;}
.y163{bottom:141.120025px;}
.y44{bottom:141.480034px;}
.y12f{bottom:144.720040px;}
.yf1{bottom:146.880021px;}
.y168{bottom:147.240029px;}
.y19a{bottom:149.040070px;}
.ybc{bottom:153.360031px;}
.y18a{bottom:156.600037px;}
.yb7{bottom:156.960046px;}
.y73{bottom:158.040070px;}
.y111{bottom:158.400078px;}
.y162{bottom:159.300065px;}
.y43{bottom:159.840042px;}
.y12e{bottom:163.080048px;}
.yf0{bottom:163.260018px;}
.yef{bottom:163.440056px;}
.y167{bottom:165.600037px;}
.y199{bottom:167.400078px;}
.y72{bottom:176.400078px;}
.y110{bottom:176.760018px;}
.yb6{bottom:176.940056px;}
.y161{bottom:177.660073px;}
.y42{bottom:178.200050px;}
.yee{bottom:179.820054px;}
.y12d{bottom:181.260018px;}
.y166{bottom:183.780075px;}
.y189{bottom:185.580048px;}
.y1c4{bottom:185.760018px;}
.yb4{bottom:193.500023px;}
.y71{bottom:194.580048px;}
.y10f{bottom:195.120025px;}
.y160{bottom:196.020081px;}
.yed{bottom:196.200050px;}
.y41{bottom:196.380021px;}
.y1a3{bottom:196.560059px;}
.y12c{bottom:199.620025px;}
.y188{bottom:203.940056px;}
.yb5{bottom:209.880021px;}
.yb3{bottom:210.060059px;}
.y70{bottom:212.940056px;}
.y10e{bottom:213.480034px;}
.y40{bottom:214.740029px;}
.yec{bottom:215.820054px;}
.y12b{bottom:217.980034px;}
.y15f{bottom:218.160073px;}
.y187{bottom:222.300065px;}
.yb2{bottom:226.440056px;}
.y6f{bottom:231.300065px;}
.y10d{bottom:231.660073px;}
.yeb{bottom:232.200050px;}
.yea{bottom:232.380021px;}
.y3f{bottom:233.100037px;}
.y12a{bottom:236.160073px;}
.y15e{bottom:236.340042px;}
.y198{bottom:243.900078px;}
.yb1{bottom:246.420067px;}
.ye9{bottom:248.760018px;}
.y6e{bottom:249.480034px;}
.y10c{bottom:250.020081px;}
.y3e{bottom:251.280075px;}
.y186{bottom:251.460046px;}
.y129{bottom:254.520081px;}
.y15d{bottom:254.700050px;}
.y197{bottom:262.260018px;}
.yaf{bottom:262.980034px;}
.y6d{bottom:267.840042px;}
.ye7{bottom:268.200050px;}
.y10b{bottom:268.380021px;}
.y185{bottom:269.820054px;}
.y128{bottom:272.880021px;}
.y15c{bottom:273.060059px;}
.y3d{bottom:273.240029px;}
.yb0{bottom:279.360031px;}
.yae{bottom:279.540070px;}
.y196{bottom:280.620025px;}
.ye6{bottom:284.580048px;}
.y6c{bottom:286.200050px;}
.y10a{bottom:286.740029px;}
.y127{bottom:291.240029px;}
.y15a{bottom:294.480034px;}
.y3c{bottom:295.200050px;}
.y184{bottom:298.800065px;}
.yad{bottom:299.520081px;}
.ye5{bottom:301.140015px;}
.y6b{bottom:304.560059px;}
.y109{bottom:304.920067px;}
.y126{bottom:309.420067px;}
.y1b3{bottom:309.600037px;}
.yab{bottom:312.480034px;}
.y159{bottom:312.660073px;}
.ya9{bottom:316.080048px;}
.y25{bottom:317.160073px;}
.y3b{bottom:317.520081px;}
.ye8{bottom:317.700050px;}
.y6a{bottom:322.740029px;}
.y108{bottom:323.280075px;}
.y125{bottom:327.780075px;}
.y195{bottom:327.960046px;}
.y3a{bottom:328.500023px;}
.y158{bottom:331.020081px;}
.yaa{bottom:332.460046px;}
.ya8{bottom:332.640015px;}
.ye4{bottom:334.080048px;}
.ye3{bottom:334.260018px;}
.y183{bottom:335.520081px;}
.y24{bottom:338.220040px;}
.y39{bottom:339.480034px;}
.y69{bottom:341.100037px;}
.y107{bottom:341.640015px;}
.y124{bottom:346.140015px;}
.y194{bottom:346.320054px;}
.ya7{bottom:349.020081px;}
.y15b{bottom:349.200050px;}
.y157{bottom:349.380021px;}
.y38{bottom:350.460046px;}
.ye2{bottom:350.640015px;}
.y23{bottom:359.280075px;}
.y68{bottom:359.460046px;}
.y106{bottom:359.820054px;}
.y123{bottom:364.500023px;}
.ya6{bottom:369.000023px;}
.ye1{bottom:370.080048px;}
.y156{bottom:370.620025px;}
.y37{bottom:372.240029px;}
.y67{bottom:377.820054px;}
.y105{bottom:378.180061px;}
.y22{bottom:380.340042px;}
.y122{bottom:382.680061px;}
.y182{bottom:382.860031px;}
.ya5{bottom:385.560059px;}
.ye0{bottom:386.460046px;}
.y155{bottom:388.980034px;}
.y36{bottom:393.300065px;}
.y1b2{bottom:393.660073px;}
.y66{bottom:396.000023px;}
.y104{bottom:396.540070px;}
.y121{bottom:401.040070px;}
.y181{bottom:401.220040px;}
.y21{bottom:401.400078px;}
.ydf{bottom:403.020081px;}
.ya4{bottom:405.540070px;}
.y152{bottom:410.220040px;}
.y193{bottom:412.020081px;}
.y35{bottom:414.360031px;}
.y103{bottom:414.900078px;}
.yde{bottom:419.400078px;}
.y180{bottom:419.580048px;}
.ya2{bottom:422.100037px;}
.y20{bottom:422.460046px;}
.y151{bottom:428.400078px;}
.y1c3{bottom:430.200050px;}
.y192{bottom:430.380021px;}
.y65{bottom:432.720040px;}
.y102{bottom:433.080048px;}
.ydd{bottom:435.960046px;}
.ydc{bottom:436.140015px;}
.y120{bottom:437.580048px;}
.ya3{bottom:438.480034px;}
.ya1{bottom:438.660073px;}
.y34{bottom:441.720040px;}
.y1f{bottom:443.520081px;}
.y150{bottom:446.760018px;}
.y154{bottom:446.940056px;}
.y17f{bottom:448.560059px;}
.y64{bottom:450.900078px;}
.y101{bottom:451.440056px;}
.ydb{bottom:452.520081px;}
.y11f{bottom:455.940056px;}
.y9f{bottom:458.640015px;}
.y1b1{bottom:459.360031px;}
.y33{bottom:462.600037px;}
.y1e{bottom:464.580048px;}
.y153{bottom:465.120025px;}
.y14f{bottom:465.300065px;}
.y17e{bottom:466.920067px;}
.y63{bottom:469.260018px;}
.y100{bottom:469.800065px;}
.yda{bottom:471.960046px;}
.y11e{bottom:474.300065px;}
.y9e{bottom:475.200050px;}
.y1b0{bottom:477.720040px;}
.y31{bottom:478.980034px;}
.y30{bottom:482.940056px;}
.y17d{bottom:485.280075px;}
.y1d{bottom:485.640015px;}
.y14e{bottom:486.540070px;}
.y62{bottom:487.620060px;}
.yff{bottom:488.160038px;}
.yd9{bottom:488.340042px;}
.ya0{bottom:491.580048px;}
.y9d{bottom:491.760052px;}
.y11d{bottom:492.660038px;}
.y1a2{bottom:496.080048px;}
.y1c2{bottom:503.640049px;}
.y14d{bottom:504.720040px;}
.yd8{bottom:504.900043px;}
.y61{bottom:505.980034px;}
.yfe{bottom:506.340042px;}
.y1c{bottom:506.700050px;}
.y1af{bottom:506.880055px;}
.y2f{bottom:510.480034px;}
.y11c{bottom:510.840042px;}
.y9a{bottom:511.740063px;}
.y17c{bottom:514.260052px;}
.y1a1{bottom:514.440056px;}
.yd7{bottom:521.280041px;}
.y14c{bottom:523.080048px;}
.y60{bottom:524.160038px;}
.yfd{bottom:524.700050px;}
.y1ae{bottom:525.240063px;}
.y1b{bottom:527.760052px;}
.y9c{bottom:528.120060px;}
.y99{bottom:528.300065px;}
.y11b{bottom:529.200050px;}
.y2e{bottom:531.540036px;}
.y17b{bottom:532.620060px;}
.yd6{bottom:537.840042px;}
.yd5{bottom:538.020047px;}
.y14b{bottom:541.260052px;}
.y5f{bottom:542.520047px;}
.yfc{bottom:543.060059px;}
.y1ad{bottom:543.420033px;}
.y98{bottom:544.680061px;}
.y11a{bottom:547.560059px;}
.y1a{bottom:548.820054px;}
.y2d{bottom:549.900043px;}
.y17a{bottom:550.980034px;}
.yd4{bottom:554.400043px;}
.y14a{bottom:559.620060px;}
.y5e{bottom:560.880055px;}
.y9b{bottom:561.060059px;}
.y97{bottom:561.240063px;}
.y1a0{bottom:561.780041px;}
.y119{bottom:565.920033px;}
.y2c{bottom:568.080048px;}
.y1c1{bottom:569.340042px;}
.y19{bottom:569.880055px;}
.yd3{bottom:573.840042px;}
.y96{bottom:577.620060px;}
.y149{bottom:578.160038px;}
.y5d{bottom:579.240063px;}
.yfb{bottom:579.600037px;}
.y179{bottom:579.960046px;}
.y19f{bottom:580.140049px;}
.y118{bottom:580.320054px;}
.y2b{bottom:586.440056px;}
.yd2{bottom:590.220040px;}
.y1ac{bottom:590.760053px;}
.y18{bottom:590.940056px;}
.y5c{bottom:597.420033px;}
.y95{bottom:597.600037px;}
.yfa{bottom:597.960046px;}
.y178{bottom:598.320054px;}
.y147{bottom:599.400043px;}
.y2a{bottom:604.800065px;}
.yd1{bottom:606.780041px;}
.y1ab{bottom:609.120060px;}
.y17{bottom:612.000058px;}
.y94{bottom:614.160038px;}
.y5b{bottom:615.780041px;}
.yf9{bottom:616.320054px;}
.y177{bottom:616.680061px;}
.y146{bottom:617.580048px;}
.y29{bottom:623.160038px;}
.y19e{bottom:627.480034px;}
.y93{bottom:630.720040px;}
.y16{bottom:633.060059px;}
.y5a{bottom:634.140049px;}
.yf8{bottom:634.500058px;}
.y191{bottom:635.040036px;}
.y145{bottom:635.940056px;}
.y148{bottom:636.120060px;}
.yd0{bottom:639.720040px;}
.y28{bottom:641.340042px;}
.y176{bottom:645.840042px;}
.y91{bottom:650.700050px;}
.y59{bottom:652.320054px;}
.yf7{bottom:652.860031px;}
.y1c0{bottom:653.400043px;}
.y15{bottom:654.120060px;}
.y144{bottom:654.300065px;}
.ycf{bottom:656.100037px;}
.yce{bottom:656.280041px;}
.y1aa{bottom:656.640049px;}
.y27{bottom:659.700050px;}
.y190{bottom:664.020047px;}
.y175{bottom:664.200050px;}
.y90{bottom:667.260053px;}
.y58{bottom:670.680061px;}
.yf6{bottom:671.220040px;}
.ycd{bottom:672.660038px;}
.y1a9{bottom:675.000058px;}
.y14{bottom:675.180061px;}
.y143{bottom:675.720040px;}
.y26{bottom:678.060059px;}
.y174{bottom:682.380055px;}
.y92{bottom:683.640049px;}
.y8f{bottom:683.820054px;}
.yf5{bottom:685.620060px;}
.y57{bottom:689.040036px;}
.ycc{bottom:692.280041px;}
.y19d{bottom:693.180061px;}
.y142{bottom:693.900043px;}
.y13{bottom:696.240063px;}
.y18f{bottom:700.740063px;}
.y8d{bottom:703.800065px;}
.y56{bottom:707.400043px;}
.ycb{bottom:708.660038px;}
.y173{bottom:711.540036px;}
.y13f{bottom:715.320054px;}
.y1bf{bottom:719.100037px;}
.y8e{bottom:720.180061px;}
.y8c{bottom:720.360031px;}
.y12{bottom:721.260053px;}
.y1a8{bottom:722.340042px;}
.yca{bottom:725.040036px;}
.yc9{bottom:725.220040px;}
.y55{bottom:725.580048px;}
.y172{bottom:729.900043px;}
.y13e{bottom:733.500058px;}
.y1be{bottom:737.460046px;}
.y11{bottom:739.800065px;}
.y8a{bottom:740.340042px;}
.y1a7{bottom:740.700050px;}
.yc8{bottom:741.600037px;}
.y54{bottom:743.940056px;}
.y171{bottom:748.260053px;}
.y13d{bottom:751.680061px;}
.y141{bottom:751.860031px;}
.y10{bottom:755.100037px;}
.y8b{bottom:756.720040px;}
.y89{bottom:756.900044px;}
.yc7{bottom:757.980035px;}
.yc6{bottom:758.160038px;}
.y1b6{bottom:758.880055px;}
.y1a6{bottom:759.060059px;}
.y53{bottom:762.300065px;}
.y18e{bottom:766.440056px;}
.y140{bottom:770.040036px;}
.y13c{bottom:770.220040px;}
.y88{bottom:773.280041px;}
.yf{bottom:773.460046px;}
.yc5{bottom:774.540036px;}
.y170{bottom:777.240046px;}
.y52{bottom:780.660056px;}
.y1bd{bottom:784.800047px;}
.y13b{bottom:791.460046px;}
.y87{bottom:793.260053px;}
.yc4{bottom:794.160056px;}
.y16f{bottom:795.600054px;}
.y51{bottom:798.840042px;}
.y1bc{bottom:803.160056px;}
.y1a5{bottom:806.400044px;}
.y13a{bottom:809.640049px;}
.y86{bottom:809.820054px;}
.yc3{bottom:810.540053px;}
.y16e{bottom:813.960046px;}
.y50{bottom:817.200050px;}
.ye{bottom:818.820054px;}
.y1bb{bottom:821.340042px;}
.y1a4{bottom:824.760053px;}
.y85{bottom:826.380055px;}
.yc2{bottom:826.920050px;}
.yc1{bottom:827.100054px;}
.y139{bottom:828.180045px;}
.y18d{bottom:832.140049px;}
.y4f{bottom:835.560042px;}
.y84{bottom:842.940056px;}
.yc0{bottom:843.480051px;}
.yd{bottom:847.620043px;}
.y137{bottom:849.420050px;}
.y1ba{bottom:850.500040px;}
.y4e{bottom:853.740046px;}
.y16d{bottom:861.300047px;}
.y83{bottom:862.920050px;}
.ybf{bottom:863.100054px;}
.y138{bottom:867.600054px;}
.y136{bottom:867.780041px;}
.y1b9{bottom:868.860049px;}
.yc{bottom:871.380055px;}
.y4d{bottom:872.100054px;}
.y82{bottom:879.480051px;}
.y16c{bottom:879.660056px;}
.y134{bottom:889.740046px;}
.y4c{bottom:890.460046px;}
.yb{bottom:893.880055px;}
.y80{bottom:895.860049px;}
.y1b8{bottom:897.840042px;}
.y133{bottom:907.920050px;}
.y135{bottom:908.100054px;}
.y16b{bottom:908.640049px;}
.y4b{bottom:908.820054px;}
.y7{bottom:910.800047px;}
.y81{bottom:912.240046px;}
.y7f{bottom:912.420050px;}
.y1b7{bottom:916.200050px;}
.y4a{bottom:927.000049px;}
.ybe{bottom:928.800047px;}
.y7e{bottom:929.700050px;}
.y2{bottom:932.400044px;}
.y6{bottom:932.760053px;}
.y1{bottom:945.180045px;}
.y49{bottom:945.360049px;}
.y7d{bottom:946.080048px;}
.y5{bottom:952.560050px;}
.y48{bottom:963.720048px;}
.y4{bottom:972.900044px;}
.y78{bottom:984.960046px;}
.y3{bottom:985.500049px;}
.y77{bottom:998.640049px;}
.y47{bottom:998.820049px;}
.h15{height:13.139992px;}
.h16{height:13.679970px;}
.h1c{height:16.379997px;}
.h1e{height:16.379998px;}
.h12{height:18.180003px;}
.hc{height:30.071625px;}
.h3{height:30.518713px;}
.hf{height:32.851427px;}
.hd{height:32.851562px;}
.h2{height:33.676605px;}
.h8{height:35.254460px;}
.h13{height:35.799569px;}
.h9{height:41.718784px;}
.h14{height:45.628096px;}
.he{height:47.971499px;}
.h10{height:49.384504px;}
.h7{height:50.263383px;}
.h18{height:53.699219px;}
.h1a{height:54.419097px;}
.h19{height:54.419237px;}
.h1b{height:54.419372px;}
.h1d{height:54.419376px;}
.h17{height:55.280934px;}
.h4{height:56.600267px;}
.h6{height:56.828035px;}
.h11{height:59.427386px;}
.h1f{height:59.543307px;}
.ha{height:61.177825px;}
.h5{height:61.316905px;}
.hb{height:79.604803px;}
.h1{height:1062.750000px;}
.h0{height:1063.080045px;}
.w2{width:1.440033px;}
.w4{width:5.939998px;}
.w3{width:12.060002px;}
.w6{width:146.520022px;}
.w5{width:306.720016px;}
.w0{width:748.260000px;}
.w1{width:748.500000px;}
.x0{left:0.000000px;}
.x2{left:50.399999px;}
.x1f{left:61.200002px;}
.x10{left:73.799998px;}
.xa{left:84.959997px;}
.x11{left:90.540003px;}
.x2b{left:93.060001px;}
.x23{left:94.140000px;}
.x18{left:95.579999px;}
.xe{left:96.659998px;}
.x15{left:106.200002px;}
.x16{left:111.959997px;}
.x29{left:125.640000px;}
.x2e{left:127.439999px;}
.x2c{left:135.540003px;}
.x20{left:146.520006px;}
.x19{left:155.879998px;}
.x26{left:164.340002px;}
.x1e{left:165.419992px;}
.x1a{left:178.379998px;}
.x2a{left:180.000000px;}
.x24{left:187.379998px;}
.x27{left:193.139992px;}
.x28{left:204.120002px;}
.xc{left:214.379998px;}
.x1{left:216.539996px;}
.xd{left:235.439999px;}
.x5{left:278.460005px;}
.x1b{left:284.400003px;}
.xf{left:295.379998px;}
.x9{left:299.879998px;}
.x7{left:330.660015px;}
.x6{left:347.939999px;}
.x21{left:368.819996px;}
.xb{left:374.040012px;}
.x1c{left:393.480011px;}
.x3{left:422.459988px;}
.x4{left:463.319996px;}
.x12{left:494.639992px;}
.x13{left:515.879998px;}
.x25{left:543.959988px;}
.x1d{left:553.680005px;}
.x2d{left:587.340019px;}
.x22{left:624.779983px;}
.x17{left:636.480011px;}
.x8{left:665.460023px;}
.x14{left:711.000000px;}
@media print{
.v1{vertical-align:-72.960024pt;}
.v5{vertical-align:-18.559812pt;}
.v3{vertical-align:-13.439944pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.559812pt;}
.v2{vertical-align:24.320008pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.006422pt;}
.lsf{letter-spacing:0.006426pt;}
.lsd{letter-spacing:0.006546pt;}
.lsb{letter-spacing:0.006550pt;}
.ls11{letter-spacing:0.006670pt;}
.ls5{letter-spacing:0.008641pt;}
.ls6{letter-spacing:0.040117pt;}
.lsa{letter-spacing:0.044396pt;}
.ls4{letter-spacing:0.048917pt;}
.ls1{letter-spacing:0.051733pt;}
.ls10{letter-spacing:0.157262pt;}
.lse{letter-spacing:0.157266pt;}
.ls7{letter-spacing:0.797158pt;}
.ls8{letter-spacing:0.797218pt;}
.ls2{letter-spacing:19.848641pt;}
.ls0{letter-spacing:327.366354pt;}
.ls9{letter-spacing:1272.477270pt;}
.ws6{word-spacing:-53.109600pt;}
.wsa{word-spacing:-12.047166pt;}
.ws3{word-spacing:-12.002770pt;}
.ws8{word-spacing:-10.885947pt;}
.ws7{word-spacing:-10.845830pt;}
.ws5{word-spacing:-10.717900pt;}
.ws2{word-spacing:-9.688982pt;}
.ws0{word-spacing:-8.862249pt;}
.ws9{word-spacing:-7.809014pt;}
.ws1{word-spacing:-6.073678pt;}
.ws4{word-spacing:0.000000pt;}
._1e{margin-left:-3.634118pt;}
._c{margin-left:-2.039290pt;}
._1{margin-left:-1.095068pt;}
._0{width:1.292129pt;}
._2{width:2.497380pt;}
._b{width:3.455197pt;}
._a{width:4.814246pt;}
._8{width:6.320657pt;}
._7{width:7.434729pt;}
._9{width:8.337593pt;}
._f{width:9.259183pt;}
._1b{width:10.941543pt;}
._1a{width:13.250423pt;}
._1c{width:14.657089pt;}
._1d{width:15.547967pt;}
._18{width:16.447092pt;}
._15{width:17.438062pt;}
._17{width:18.698267pt;}
._16{width:19.595599pt;}
._1f{width:20.795235pt;}
._10{width:22.152234pt;}
._d{width:23.472599pt;}
._e{width:24.733419pt;}
._24{width:26.318343pt;}
._2b{width:27.209294pt;}
._3{width:28.328830pt;}
._4{width:29.618273pt;}
._2c{width:31.306864pt;}
._14{width:32.927337pt;}
._13{width:33.832044pt;}
._12{width:35.425332pt;}
._11{width:36.629969pt;}
._5{width:46.968228pt;}
._19{width:63.517250pt;}
._6{width:71.768568pt;}
._28{width:75.312872pt;}
._25{width:79.049374pt;}
._2e{width:86.852867pt;}
._23{width:94.140234pt;}
._2d{width:98.780162pt;}
._2a{width:102.749883pt;}
._21{width:118.265656pt;}
._22{width:124.563596pt;}
._26{width:134.701417pt;}
._20{width:269.456781pt;}
._29{width:286.716020pt;}
._27{width:393.294624pt;}
.fs7{font-size:26.874680pt;}
.fs3{font-size:31.993680pt;}
.fsa{font-size:34.553160pt;}
.fs1{font-size:37.112640pt;}
.fs0{font-size:42.871600pt;}
.fs8{font-size:45.431200pt;}
.fs9{font-size:47.990400pt;}
.fs6{font-size:53.109600pt;}
.fs5{font-size:63.987200pt;}
.fs2{font-size:69.106400pt;}
.fs4{font-size:74.865204pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:2.080017pt;}
.yac{bottom:3.200012pt;}
.ybd{bottom:3.200013pt;}
.y32{bottom:3.520019pt;}
.y7b{bottom:47.840048pt;}
.y7a{bottom:49.600058pt;}
.ya{bottom:50.240072pt;}
.y79{bottom:61.920065pt;}
.y9{bottom:64.960043pt;}
.y8{bottom:77.120016pt;}
.y132{bottom:79.840048pt;}
.yf4{bottom:80.320028pt;}
.y1b5{bottom:83.680014pt;}
.y117{bottom:87.840048pt;}
.y16a{bottom:88.640036pt;}
.y1c5{bottom:90.240072pt;}
.y76{bottom:91.680014pt;}
.y114{bottom:92.000021pt;}
.y165{bottom:92.800070pt;}
.y46{bottom:93.280050pt;}
.ybb{bottom:95.520041pt;}
.y131{bottom:96.000021pt;}
.yf3{bottom:96.480063pt;}
.y19c{bottom:99.840048pt;}
.y1b4{bottom:100.000021pt;}
.y116{bottom:104.000021pt;}
.y169{bottom:104.960043pt;}
.y18c{bottom:106.560019pt;}
.y75{bottom:107.840048pt;}
.y113{bottom:108.320028pt;}
.y164{bottom:109.120016pt;}
.y45{bottom:109.440023pt;}
.yb9{bottom:110.080038pt;}
.yba{bottom:110.240072pt;}
.y130{bottom:112.320028pt;}
.yf2{bottom:116.000021pt;}
.y19b{bottom:116.160055pt;}
.y115{bottom:116.800070pt;}
.y18b{bottom:122.880026pt;}
.y74{bottom:124.160055pt;}
.y112{bottom:124.640036pt;}
.yb8{bottom:124.800070pt;}
.y163{bottom:125.440023pt;}
.y44{bottom:125.760031pt;}
.y12f{bottom:128.640036pt;}
.yf1{bottom:130.560019pt;}
.y168{bottom:130.880026pt;}
.y19a{bottom:132.480063pt;}
.ybc{bottom:136.320028pt;}
.y18a{bottom:139.200033pt;}
.yb7{bottom:139.520041pt;}
.y73{bottom:140.480063pt;}
.y111{bottom:140.800070pt;}
.y162{bottom:141.600058pt;}
.y43{bottom:142.080038pt;}
.y12e{bottom:144.960043pt;}
.yf0{bottom:145.120016pt;}
.yef{bottom:145.280050pt;}
.y167{bottom:147.200033pt;}
.y199{bottom:148.800070pt;}
.y72{bottom:156.800070pt;}
.y110{bottom:157.120016pt;}
.yb6{bottom:157.280050pt;}
.y161{bottom:157.920065pt;}
.y42{bottom:158.400045pt;}
.yee{bottom:159.840048pt;}
.y12d{bottom:161.120016pt;}
.y166{bottom:163.360067pt;}
.y189{bottom:164.960043pt;}
.y1c4{bottom:165.120016pt;}
.yb4{bottom:172.000021pt;}
.y71{bottom:172.960043pt;}
.y10f{bottom:173.440023pt;}
.y160{bottom:174.240072pt;}
.yed{bottom:174.400045pt;}
.y41{bottom:174.560019pt;}
.y1a3{bottom:174.720053pt;}
.y12c{bottom:177.440023pt;}
.y188{bottom:181.280050pt;}
.yb5{bottom:186.560019pt;}
.yb3{bottom:186.720053pt;}
.y70{bottom:189.280050pt;}
.y10e{bottom:189.760031pt;}
.y40{bottom:190.880026pt;}
.yec{bottom:191.840048pt;}
.y12b{bottom:193.760031pt;}
.y15f{bottom:193.920065pt;}
.y187{bottom:197.600058pt;}
.yb2{bottom:201.280050pt;}
.y6f{bottom:205.600058pt;}
.y10d{bottom:205.920065pt;}
.yeb{bottom:206.400045pt;}
.yea{bottom:206.560019pt;}
.y3f{bottom:207.200033pt;}
.y12a{bottom:209.920065pt;}
.y15e{bottom:210.080038pt;}
.y198{bottom:216.800070pt;}
.yb1{bottom:219.040060pt;}
.ye9{bottom:221.120016pt;}
.y6e{bottom:221.760031pt;}
.y10c{bottom:222.240072pt;}
.y3e{bottom:223.360067pt;}
.y186{bottom:223.520041pt;}
.y129{bottom:226.240072pt;}
.y15d{bottom:226.400045pt;}
.y197{bottom:233.120016pt;}
.yaf{bottom:233.760031pt;}
.y6d{bottom:238.080038pt;}
.ye7{bottom:238.400045pt;}
.y10b{bottom:238.560019pt;}
.y185{bottom:239.840048pt;}
.y128{bottom:242.560019pt;}
.y15c{bottom:242.720053pt;}
.y3d{bottom:242.880026pt;}
.yb0{bottom:248.320028pt;}
.yae{bottom:248.480063pt;}
.y196{bottom:249.440023pt;}
.ye6{bottom:252.960043pt;}
.y6c{bottom:254.400045pt;}
.y10a{bottom:254.880026pt;}
.y127{bottom:258.880026pt;}
.y15a{bottom:261.760031pt;}
.y3c{bottom:262.400045pt;}
.y184{bottom:265.600058pt;}
.yad{bottom:266.240072pt;}
.ye5{bottom:267.680014pt;}
.y6b{bottom:270.720053pt;}
.y109{bottom:271.040060pt;}
.y126{bottom:275.040060pt;}
.y1b3{bottom:275.200033pt;}
.yab{bottom:277.760031pt;}
.y159{bottom:277.920065pt;}
.ya9{bottom:280.960043pt;}
.y25{bottom:281.920065pt;}
.y3b{bottom:282.240072pt;}
.ye8{bottom:282.400045pt;}
.y6a{bottom:286.880026pt;}
.y108{bottom:287.360067pt;}
.y125{bottom:291.360067pt;}
.y195{bottom:291.520041pt;}
.y3a{bottom:292.000021pt;}
.y158{bottom:294.240072pt;}
.yaa{bottom:295.520041pt;}
.ya8{bottom:295.680014pt;}
.ye4{bottom:296.960043pt;}
.ye3{bottom:297.120016pt;}
.y183{bottom:298.240072pt;}
.y24{bottom:300.640036pt;}
.y39{bottom:301.760031pt;}
.y69{bottom:303.200033pt;}
.y107{bottom:303.680014pt;}
.y124{bottom:307.680014pt;}
.y194{bottom:307.840048pt;}
.ya7{bottom:310.240072pt;}
.y15b{bottom:310.400045pt;}
.y157{bottom:310.560019pt;}
.y38{bottom:311.520041pt;}
.ye2{bottom:311.680014pt;}
.y23{bottom:319.360067pt;}
.y68{bottom:319.520041pt;}
.y106{bottom:319.840048pt;}
.y123{bottom:324.000021pt;}
.ya6{bottom:328.000021pt;}
.ye1{bottom:328.960043pt;}
.y156{bottom:329.440023pt;}
.y37{bottom:330.880026pt;}
.y67{bottom:335.840048pt;}
.y105{bottom:336.160055pt;}
.y22{bottom:338.080038pt;}
.y122{bottom:340.160055pt;}
.y182{bottom:340.320028pt;}
.ya5{bottom:342.720053pt;}
.ye0{bottom:343.520041pt;}
.y155{bottom:345.760031pt;}
.y36{bottom:349.600058pt;}
.y1b2{bottom:349.920065pt;}
.y66{bottom:352.000021pt;}
.y104{bottom:352.480063pt;}
.y121{bottom:356.480063pt;}
.y181{bottom:356.640036pt;}
.y21{bottom:356.800070pt;}
.ydf{bottom:358.240072pt;}
.ya4{bottom:360.480063pt;}
.y152{bottom:364.640036pt;}
.y193{bottom:366.240072pt;}
.y35{bottom:368.320028pt;}
.y103{bottom:368.800070pt;}
.yde{bottom:372.800070pt;}
.y180{bottom:372.960043pt;}
.ya2{bottom:375.200033pt;}
.y20{bottom:375.520041pt;}
.y151{bottom:380.800070pt;}
.y1c3{bottom:382.400045pt;}
.y192{bottom:382.560019pt;}
.y65{bottom:384.640036pt;}
.y102{bottom:384.960043pt;}
.ydd{bottom:387.520041pt;}
.ydc{bottom:387.680014pt;}
.y120{bottom:388.960043pt;}
.ya3{bottom:389.760031pt;}
.ya1{bottom:389.920065pt;}
.y34{bottom:392.640036pt;}
.y1f{bottom:394.240072pt;}
.y150{bottom:397.120016pt;}
.y154{bottom:397.280050pt;}
.y17f{bottom:398.720053pt;}
.y64{bottom:400.800070pt;}
.y101{bottom:401.280050pt;}
.ydb{bottom:402.240072pt;}
.y11f{bottom:405.280050pt;}
.y9f{bottom:407.680014pt;}
.y1b1{bottom:408.320028pt;}
.y33{bottom:411.200033pt;}
.y1e{bottom:412.960043pt;}
.y153{bottom:413.440023pt;}
.y14f{bottom:413.600058pt;}
.y17e{bottom:415.040060pt;}
.y63{bottom:417.120016pt;}
.y100{bottom:417.600058pt;}
.yda{bottom:419.520041pt;}
.y11e{bottom:421.600058pt;}
.y9e{bottom:422.400045pt;}
.y1b0{bottom:424.640036pt;}
.y31{bottom:425.760031pt;}
.y30{bottom:429.280050pt;}
.y17d{bottom:431.360067pt;}
.y1d{bottom:431.680014pt;}
.y14e{bottom:432.480063pt;}
.y62{bottom:433.440054pt;}
.yff{bottom:433.920034pt;}
.yd9{bottom:434.080038pt;}
.ya0{bottom:436.960043pt;}
.y9d{bottom:437.120047pt;}
.y11d{bottom:437.920034pt;}
.y1a2{bottom:440.960043pt;}
.y1c2{bottom:447.680044pt;}
.y14d{bottom:448.640036pt;}
.yd8{bottom:448.800039pt;}
.y61{bottom:449.760031pt;}
.yfe{bottom:450.080038pt;}
.y1c{bottom:450.400045pt;}
.y1af{bottom:450.560049pt;}
.y2f{bottom:453.760031pt;}
.y11c{bottom:454.080038pt;}
.y9a{bottom:454.880056pt;}
.y17c{bottom:457.120047pt;}
.y1a1{bottom:457.280050pt;}
.yd7{bottom:463.360037pt;}
.y14c{bottom:464.960043pt;}
.y60{bottom:465.920034pt;}
.yfd{bottom:466.400045pt;}
.y1ae{bottom:466.880056pt;}
.y1b{bottom:469.120047pt;}
.y9c{bottom:469.440054pt;}
.y99{bottom:469.600058pt;}
.y11b{bottom:470.400045pt;}
.y2e{bottom:472.480032pt;}
.y17b{bottom:473.440054pt;}
.yd6{bottom:478.080038pt;}
.yd5{bottom:478.240042pt;}
.y14b{bottom:481.120047pt;}
.y5f{bottom:482.240042pt;}
.yfc{bottom:482.720053pt;}
.y1ad{bottom:483.040030pt;}
.y98{bottom:484.160055pt;}
.y11a{bottom:486.720053pt;}
.y1a{bottom:487.840048pt;}
.y2d{bottom:488.800039pt;}
.y17a{bottom:489.760031pt;}
.yd4{bottom:492.800039pt;}
.y14a{bottom:497.440054pt;}
.y5e{bottom:498.560049pt;}
.y9b{bottom:498.720053pt;}
.y97{bottom:498.880056pt;}
.y1a0{bottom:499.360037pt;}
.y119{bottom:503.040030pt;}
.y2c{bottom:504.960043pt;}
.y1c1{bottom:506.080038pt;}
.y19{bottom:506.560049pt;}
.yd3{bottom:510.080038pt;}
.y96{bottom:513.440054pt;}
.y149{bottom:513.920034pt;}
.y5d{bottom:514.880056pt;}
.yfb{bottom:515.200033pt;}
.y179{bottom:515.520041pt;}
.y19f{bottom:515.680044pt;}
.y118{bottom:515.840048pt;}
.y2b{bottom:521.280050pt;}
.yd2{bottom:524.640036pt;}
.y1ac{bottom:525.120047pt;}
.y18{bottom:525.280050pt;}
.y5c{bottom:531.040030pt;}
.y95{bottom:531.200033pt;}
.yfa{bottom:531.520041pt;}
.y178{bottom:531.840048pt;}
.y147{bottom:532.800039pt;}
.y2a{bottom:537.600058pt;}
.yd1{bottom:539.360037pt;}
.y1ab{bottom:541.440054pt;}
.y17{bottom:544.000052pt;}
.y94{bottom:545.920034pt;}
.y5b{bottom:547.360037pt;}
.yf9{bottom:547.840048pt;}
.y177{bottom:548.160055pt;}
.y146{bottom:548.960043pt;}
.y29{bottom:553.920034pt;}
.y19e{bottom:557.760031pt;}
.y93{bottom:560.640036pt;}
.y16{bottom:562.720053pt;}
.y5a{bottom:563.680044pt;}
.yf8{bottom:564.000052pt;}
.y191{bottom:564.480032pt;}
.y145{bottom:565.280050pt;}
.y148{bottom:565.440054pt;}
.yd0{bottom:568.640036pt;}
.y28{bottom:570.080038pt;}
.y176{bottom:574.080038pt;}
.y91{bottom:578.400045pt;}
.y59{bottom:579.840048pt;}
.yf7{bottom:580.320028pt;}
.y1c0{bottom:580.800039pt;}
.y15{bottom:581.440054pt;}
.y144{bottom:581.600058pt;}
.ycf{bottom:583.200033pt;}
.yce{bottom:583.360037pt;}
.y1aa{bottom:583.680044pt;}
.y27{bottom:586.400045pt;}
.y190{bottom:590.240042pt;}
.y175{bottom:590.400045pt;}
.y90{bottom:593.120047pt;}
.y58{bottom:596.160055pt;}
.yf6{bottom:596.640036pt;}
.ycd{bottom:597.920034pt;}
.y1a9{bottom:600.000052pt;}
.y14{bottom:600.160055pt;}
.y143{bottom:600.640036pt;}
.y26{bottom:602.720053pt;}
.y174{bottom:606.560049pt;}
.y92{bottom:607.680044pt;}
.y8f{bottom:607.840048pt;}
.yf5{bottom:609.440054pt;}
.y57{bottom:612.480032pt;}
.ycc{bottom:615.360037pt;}
.y19d{bottom:616.160055pt;}
.y142{bottom:616.800039pt;}
.y13{bottom:618.880056pt;}
.y18f{bottom:622.880056pt;}
.y8d{bottom:625.600058pt;}
.y56{bottom:628.800039pt;}
.ycb{bottom:629.920034pt;}
.y173{bottom:632.480032pt;}
.y13f{bottom:635.840048pt;}
.y1bf{bottom:639.200033pt;}
.y8e{bottom:640.160055pt;}
.y8c{bottom:640.320028pt;}
.y12{bottom:641.120047pt;}
.y1a8{bottom:642.080038pt;}
.yca{bottom:644.480032pt;}
.yc9{bottom:644.640036pt;}
.y55{bottom:644.960043pt;}
.y172{bottom:648.800039pt;}
.y13e{bottom:652.000052pt;}
.y1be{bottom:655.520041pt;}
.y11{bottom:657.600058pt;}
.y8a{bottom:658.080038pt;}
.y1a7{bottom:658.400045pt;}
.yc8{bottom:659.200033pt;}
.y54{bottom:661.280050pt;}
.y171{bottom:665.120047pt;}
.y13d{bottom:668.160055pt;}
.y141{bottom:668.320028pt;}
.y10{bottom:671.200033pt;}
.y8b{bottom:672.640036pt;}
.y89{bottom:672.800039pt;}
.yc7{bottom:673.760031pt;}
.yc6{bottom:673.920034pt;}
.y1b6{bottom:674.560049pt;}
.y1a6{bottom:674.720053pt;}
.y53{bottom:677.600058pt;}
.y18e{bottom:681.280050pt;}
.y140{bottom:684.480032pt;}
.y13c{bottom:684.640036pt;}
.y88{bottom:687.360037pt;}
.yf{bottom:687.520041pt;}
.yc5{bottom:688.480032pt;}
.y170{bottom:690.880041pt;}
.y52{bottom:693.920050pt;}
.y1bd{bottom:697.600042pt;}
.y13b{bottom:703.520041pt;}
.y87{bottom:705.120047pt;}
.yc4{bottom:705.920050pt;}
.y16f{bottom:707.200048pt;}
.y51{bottom:710.080038pt;}
.y1bc{bottom:713.920050pt;}
.y1a5{bottom:716.800039pt;}
.y13a{bottom:719.680044pt;}
.y86{bottom:719.840048pt;}
.yc3{bottom:720.480047pt;}
.y16e{bottom:723.520041pt;}
.y50{bottom:726.400045pt;}
.ye{bottom:727.840048pt;}
.y1bb{bottom:730.080038pt;}
.y1a4{bottom:733.120047pt;}
.y85{bottom:734.560049pt;}
.yc2{bottom:735.040045pt;}
.yc1{bottom:735.200048pt;}
.y139{bottom:736.160040pt;}
.y18d{bottom:739.680044pt;}
.y4f{bottom:742.720038pt;}
.y84{bottom:749.280050pt;}
.yc0{bottom:749.760046pt;}
.yd{bottom:753.440039pt;}
.y137{bottom:755.040045pt;}
.y1ba{bottom:756.000036pt;}
.y4e{bottom:758.880041pt;}
.y16d{bottom:765.600042pt;}
.y83{bottom:767.040045pt;}
.ybf{bottom:767.200048pt;}
.y138{bottom:771.200048pt;}
.y136{bottom:771.360037pt;}
.y1b9{bottom:772.320044pt;}
.yc{bottom:774.560049pt;}
.y4d{bottom:775.200048pt;}
.y82{bottom:781.760046pt;}
.y16c{bottom:781.920050pt;}
.y134{bottom:790.880041pt;}
.y4c{bottom:791.520041pt;}
.yb{bottom:794.560049pt;}
.y80{bottom:796.320044pt;}
.y1b8{bottom:798.080038pt;}
.y133{bottom:807.040045pt;}
.y135{bottom:807.200048pt;}
.y16b{bottom:807.680044pt;}
.y4b{bottom:807.840048pt;}
.y7{bottom:809.600042pt;}
.y81{bottom:810.880041pt;}
.y7f{bottom:811.040045pt;}
.y1b7{bottom:814.400045pt;}
.y4a{bottom:824.000044pt;}
.ybe{bottom:825.600042pt;}
.y7e{bottom:826.400045pt;}
.y2{bottom:828.800039pt;}
.y6{bottom:829.120047pt;}
.y1{bottom:840.160040pt;}
.y49{bottom:840.320044pt;}
.y7d{bottom:840.960043pt;}
.y5{bottom:846.720045pt;}
.y48{bottom:856.640043pt;}
.y4{bottom:864.800039pt;}
.y78{bottom:875.520041pt;}
.y3{bottom:876.000044pt;}
.y77{bottom:887.680044pt;}
.y47{bottom:887.840044pt;}
.h15{height:11.679993pt;}
.h16{height:12.159973pt;}
.h1c{height:14.559997pt;}
.h1e{height:14.559998pt;}
.h12{height:16.160003pt;}
.hc{height:26.730334pt;}
.h3{height:27.127745pt;}
.hf{height:29.201269pt;}
.hd{height:29.201389pt;}
.h2{height:29.934760pt;}
.h8{height:31.337297pt;}
.h13{height:31.821839pt;}
.h9{height:37.083363pt;}
.h14{height:40.558308pt;}
.he{height:42.641333pt;}
.h10{height:43.897337pt;}
.h7{height:44.678563pt;}
.h18{height:47.732639pt;}
.h1a{height:48.372531pt;}
.h19{height:48.372655pt;}
.h1b{height:48.372775pt;}
.h1d{height:48.372779pt;}
.h17{height:49.138608pt;}
.h4{height:50.311349pt;}
.h6{height:50.513809pt;}
.h11{height:52.824343pt;}
.h1f{height:52.927384pt;}
.ha{height:54.380289pt;}
.h5{height:54.503916pt;}
.hb{height:70.759825pt;}
.h1{height:944.666667pt;}
.h0{height:944.960040pt;}
.w2{width:1.280029pt;}
.w4{width:5.279998pt;}
.w3{width:10.720002pt;}
.w6{width:130.240020pt;}
.w5{width:272.640014pt;}
.w0{width:665.120000pt;}
.w1{width:665.333333pt;}
.x0{left:0.000000pt;}
.x2{left:44.799999pt;}
.x1f{left:54.400002pt;}
.x10{left:65.599998pt;}
.xa{left:75.519997pt;}
.x11{left:80.480003pt;}
.x2b{left:82.720001pt;}
.x23{left:83.680000pt;}
.x18{left:84.959999pt;}
.xe{left:85.919998pt;}
.x15{left:94.400002pt;}
.x16{left:99.519997pt;}
.x29{left:111.680000pt;}
.x2e{left:113.279999pt;}
.x2c{left:120.480003pt;}
.x20{left:130.240005pt;}
.x19{left:138.559998pt;}
.x26{left:146.080002pt;}
.x1e{left:147.039993pt;}
.x1a{left:158.559998pt;}
.x2a{left:160.000000pt;}
.x24{left:166.559998pt;}
.x27{left:171.679993pt;}
.x28{left:181.440002pt;}
.xc{left:190.559998pt;}
.x1{left:192.479996pt;}
.xd{left:209.279999pt;}
.x5{left:247.520004pt;}
.x1b{left:252.800003pt;}
.xf{left:262.559998pt;}
.x9{left:266.559998pt;}
.x7{left:293.920013pt;}
.x6{left:309.279999pt;}
.x21{left:327.839996pt;}
.xb{left:332.480011pt;}
.x1c{left:349.760010pt;}
.x3{left:375.519989pt;}
.x4{left:411.839996pt;}
.x12{left:439.679993pt;}
.x13{left:458.559998pt;}
.x25{left:483.519989pt;}
.x1d{left:492.160004pt;}
.x2d{left:522.080017pt;}
.x22{left:555.359985pt;}
.x17{left:565.760010pt;}
.x8{left:591.520020pt;}
.x14{left:632.000000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  