
    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_8b2d64085a37bd10b71fe97b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.024902;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_d43373ab901365c171d2b617.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2fb036b943a7e6d077db395c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_b27bb0a9f0d5cbb367cc85bb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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;}
.m6{transform:matrix(0.199243,-0.151225,0.151149,0.199133,0,0);-ms-transform:matrix(0.199243,-0.151225,0.151149,0.199133,0,0);-webkit-transform:matrix(0.199243,-0.151225,0.151149,0.199133,0,0);}
.m8{transform:matrix(0.221479,-0.116279,0.116215,0.221346,0,0);-ms-transform:matrix(0.221479,-0.116279,0.116215,0.221346,0,0);-webkit-transform:matrix(0.221479,-0.116279,0.116215,0.221346,0,0);}
.m7{transform:matrix(0.232254,-0.092891,0.092834,0.232125,0,0);-ms-transform:matrix(0.232254,-0.092891,0.092834,0.232125,0,0);-webkit-transform:matrix(0.232254,-0.092891,0.092834,0.232125,0,0);}
.m1{transform:matrix(0.236665,0.000000,-0.080942,0.236534,0,0);-ms-transform:matrix(0.236665,0.000000,-0.080942,0.236534,0,0);-webkit-transform:matrix(0.236665,0.000000,-0.080942,0.236534,0,0);}
.m9{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:68.399973px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.007730px;}
.lsb{letter-spacing:0.056933px;}
.ls8{letter-spacing:0.222131px;}
.lsd{letter-spacing:0.236611px;}
.ls7{letter-spacing:0.245749px;}
.lsc{letter-spacing:0.277852px;}
.ls9{letter-spacing:0.324113px;}
.lsa{letter-spacing:0.395763px;}
.ls6{letter-spacing:0.467880px;}
.ls5{letter-spacing:85.453681px;}
.ls4{letter-spacing:85.537635px;}
.ls1{letter-spacing:98.985248px;}
.ls2{letter-spacing:211.468322px;}
.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;}
}
.ws3{word-spacing:-82.707087px;}
.ws7{word-spacing:-67.607973px;}
.ws4{word-spacing:-60.171096px;}
.wse{word-spacing:-52.508859px;}
.ws2{word-spacing:-45.071982px;}
.wsf{word-spacing:-37.635105px;}
.ws9{word-spacing:-35.230306px;}
.ws0{word-spacing:-33.803986px;}
.ws12{word-spacing:-29.972868px;}
.ws10{word-spacing:-28.169989px;}
.ws13{word-spacing:-26.367109px;}
.ws6{word-spacing:-24.346600px;}
.ws5{word-spacing:-24.338870px;}
.wsa{word-spacing:-17.747847px;}
.wsd{word-spacing:-17.744673px;}
.wsb{word-spacing:-17.744347px;}
.wsc{word-spacing:-17.743667px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:0.331326px;}
.ws11{word-spacing:492.552137px;}
._8{margin-left:-3588.669583px;}
._14{margin-left:-2708.559273px;}
._15{margin-left:-2279.298565px;}
._16{margin-left:-2242.506340px;}
._13{margin-left:-1767.072493px;}
._11{margin-left:-1759.878496px;}
._12{margin-left:-1718.862512px;}
._10{margin-left:-1649.533500px;}
._e{margin-left:-1584.294566px;}
._f{margin-left:-1409.191596px;}
._d{margin-left:-1383.283607px;}
._b{margin-left:-91.972560px;}
._0{margin-left:-1.677411px;}
._2{width:1.273716px;}
._1{width:32.539853px;}
._6{width:37.167448px;}
._7{width:52.700066px;}
._5{width:59.134899px;}
._9{width:501.964015px;}
._c{width:690.689724px;}
._a{width:1090.270748px;}
._4{width:1102.001881px;}
._3{width:1148.064295px;}
.fc2{color:rgb(51,51,204);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(255,0,0);}
.fc0{color:rgb(51,51,153);}
.fse{font-size:30.239988px;}
.fs15{font-size:48.239981px;}
.fs3{font-size:59.759976px;}
.fs12{font-size:63.826141px;}
.fs11{font-size:63.828586px;}
.fs13{font-size:63.829760px;}
.fs10{font-size:63.841174px;}
.fsc{font-size:71.999971px;}
.fsb{font-size:77.759969px;}
.fs4{font-size:84.239966px;}
.fsf{font-size:89.999964px;}
.fs14{font-size:95.759962px;}
.fs9{font-size:102.239959px;}
.fs2{font-size:107.999957px;}
.fs8{font-size:113.759954px;}
.fsd{font-size:120.239952px;}
.fs6{font-size:143.999942px;}
.fsa{font-size:167.759933px;}
.fs7{font-size:192.239923px;}
.fs1{font-size:203.183948px;}
.fs5{font-size:215.999914px;}
.fs0{font-size:264.239894px;}
.y0{bottom:0.000000px;}
.y8{bottom:68.460330px;}
.y9{bottom:69.540329px;}
.y44{bottom:88.620322px;}
.y90{bottom:99.780317px;}
.y66{bottom:103.560316px;}
.y92{bottom:109.140313px;}
.y43{bottom:121.020309px;}
.yd5{bottom:121.920308px;}
.yc0{bottom:125.160307px;}
.yf2{bottom:135.960303px;}
.ya9{bottom:139.380301px;}
.ye8{bottom:140.460301px;}
.y31{bottom:141.900300px;}
.y53{bottom:143.160300px;}
.y7a{bottom:147.300298px;}
.yfa{bottom:149.640297px;}
.y26{bottom:150.720297px;}
.yaf{bottom:152.160296px;}
.y42{bottom:153.600296px;}
.y65{bottom:153.960295px;}
.y15{bottom:156.300294px;}
.yd4{bottom:157.920294px;}
.y49{bottom:160.080293px;}
.y126{bottom:164.220291px;}
.ydf{bottom:167.460290px;}
.yf1{bottom:168.360290px;}
.y112{bottom:170.880289px;}
.ya8{bottom:171.780288px;}
.y9e{bottom:174.660287px;}
.yef{bottom:175.380287px;}
.yf9{bottom:178.440286px;}
.ye7{bottom:180.780285px;}
.y30{bottom:185.100283px;}
.y41{bottom:186.000283px;}
.y52{bottom:186.360282px;}
.y80{bottom:186.720282px;}
.y125{bottom:189.240281px;}
.y39{bottom:191.580280px;}
.y5c{bottom:192.480280px;}
.yd3{bottom:193.920279px;}
.y104{bottom:198.060278px;}
.y14{bottom:199.500277px;}
.yf0{bottom:200.760277px;}
.y25{bottom:202.380276px;}
.yae{bottom:202.560276px;}
.y4a{bottom:203.100276px;}
.ya7{bottom:204.180275px;}
.y64{bottom:204.360275px;}
.yc7{bottom:205.440275px;}
.y124{bottom:209.400273px;}
.y111{bottom:211.200273px;}
.yde{bottom:212.820272px;}
.ycc{bottom:214.800271px;}
.y7{bottom:215.520271px;}
.y79{bottom:215.880271px;}
.y40{bottom:218.400270px;}
.y8e{bottom:218.580270px;}
.y51{bottom:220.920269px;}
.ye6{bottom:221.100269px;}
.y18{bottom:223.980267px;}
.y103{bottom:226.860266px;}
.y2f{bottom:228.120266px;}
.yd2{bottom:229.920265px;}
.yb8{bottom:230.100265px;}
.y101{bottom:230.640265px;}
.y13{bottom:233.880263px;}
.y123{bottom:234.420263px;}
.ya6{bottom:236.580262px;}
.y88{bottom:242.520260px;}
.y5b{bottom:242.880260px;}
.y97{bottom:244.140259px;}
.y78{bottom:244.680259px;}
.y7f{bottom:247.380258px;}
.y8d{bottom:247.560258px;}
.y6{bottom:247.920258px;}
.yb7{bottom:249.180257px;}
.yad{bottom:252.960256px;}
.y24{bottom:254.220255px;}
.y122{bottom:254.580255px;}
.ydd{bottom:258.180254px;}
.yc4{bottom:258.720254px;}
.yfb{bottom:259.440253px;}
.y38{bottom:260.700253px;}
.y110{bottom:261.600252px;}
.y9c{bottom:261.780252px;}
.yee{bottom:263.580252px;}
.y50{bottom:263.940251px;}
.y63{bottom:265.020251px;}
.y6b{bottom:265.380251px;}
.yc6{bottom:265.920251px;}
.y107{bottom:266.460250px;}
.yb3{bottom:267.720250px;}
.yb6{bottom:268.260250px;}
.yf3{bottom:270.060249px;}
.y54{bottom:270.240249px;}
.y2e{bottom:271.320248px;}
.ye5{bottom:271.680248px;}
.y77{bottom:273.480248px;}
.y8c{bottom:276.360246px;}
.y12{bottom:277.080246px;}
.y121{bottom:279.600245px;}
.y5{bottom:280.320245px;}
.y17{bottom:281.580244px;}
.ycb{bottom:283.920243px;}
.yb2{bottom:286.800242px;}
.y5a{bottom:293.280240px;}
.y106{bottom:295.260239px;}
.yed{bottom:295.980239px;}
.yd1{bottom:301.920236px;}
.yac{bottom:303.360236px;}
.y120{bottom:304.800235px;}
.y8b{bottom:305.340235px;}
.y23{bottom:305.880235px;}
.yd8{bottom:306.780234px;}
.y4f{bottom:307.140234px;}
.y7e{bottom:309.120233px;}
.y76{bottom:309.480233px;}
.y87{bottom:311.640232px;}
.y4{bottom:312.720232px;}
.y3f{bottom:313.260232px;}
.ydc{bottom:313.800231px;}
.y2d{bottom:314.340231px;}
.y62{bottom:315.420231px;}
.y6a{bottom:317.220230px;}
.y37{bottom:318.120230px;}
.yc3{bottom:319.380229px;}
.y11{bottom:320.280229px;}
.ye4{bottom:322.080228px;}
.ybe{bottom:324.060227px;}
.y105{bottom:324.240227px;}
.y11f{bottom:324.780227px;}
.yc5{bottom:326.400226px;}
.yec{bottom:328.560226px;}
.y1d{bottom:329.640225px;}
.y48{bottom:330.000225px;}
.y8a{bottom:334.140223px;}
.yd0{bottom:337.920222px;}
.y99{bottom:338.280222px;}
.y75{bottom:338.460222px;}
.y16{bottom:339.180221px;}
.yfc{bottom:340.440221px;}
.ybd{bottom:343.320220px;}
.y3e{bottom:345.660219px;}
.ya5{bottom:348.720218px;}
.y3{bottom:348.900217px;}
.y11e{bottom:349.980217px;}
.y4e{bottom:350.160217px;}
.y10f{bottom:352.500216px;}
.yca{bottom:352.860216px;}
.y59{bottom:353.940215px;}
.y86{bottom:354.660215px;}
.y2c{bottom:357.540214px;}
.y22{bottom:357.720214px;}
.ydb{bottom:359.160213px;}
.y47{bottom:362.400212px;}
.y89{bottom:362.940212px;}
.y10{bottom:363.300212px;}
.yd7{bottom:364.380211px;}
.y69{bottom:368.880209px;}
.y11d{bottom:369.960209px;}
.y96{bottom:371.400208px;}
.yf4{bottom:372.120208px;}
.ye3{bottom:372.480208px;}
.y74{bottom:374.460207px;}
.ycf{bottom:374.820207px;}
.y36{bottom:375.720207px;}
.y61{bottom:375.900207px;}
.y109{bottom:376.260206px;}
.y7d{bottom:376.980206px;}
.y3d{bottom:378.240206px;}
.yc2{bottom:379.860205px;}
.ya4{bottom:381.120205px;}
.y1c{bottom:387.240202px;}
.y85{bottom:389.220201px;}
.y102{bottom:392.640200px;}
.y10e{bottom:392.820200px;}
.y4d{bottom:393.360200px;}
.y11c{bottom:395.160199px;}
.y9b{bottom:397.500198px;}
.y2b{bottom:400.740197px;}
.y73{bottom:403.260196px;}
.y95{bottom:403.800195px;}
.y58{bottom:404.340195px;}
.yda{bottom:404.520195px;}
.y108{bottom:405.240195px;}
.yf5{bottom:406.140195px;}
.yf{bottom:406.500194px;}
.yce{bottom:409.200193px;}
.y21{bottom:409.380193px;}
.y68{bottom:412.080192px;}
.yab{bottom:414.420191px;}
.y11b{bottom:415.140191px;}
.yba{bottom:420.000189px;}
.ye9{bottom:420.180189px;}
.yfd{bottom:421.440188px;}
.yc9{bottom:421.800188px;}
.yeb{bottom:421.980188px;}
.ye2{bottom:422.880188px;}
.y84{bottom:423.780187px;}
.y60{bottom:426.480186px;}
.yb0{bottom:429.540185px;}
.y9a{bottom:429.900185px;}
.y72{bottom:432.240184px;}
.yd6{bottom:433.320184px;}
.y4c{bottom:436.380182px;}
.y7c{bottom:437.460182px;}
.yb9{bottom:439.080181px;}
.y11a{bottom:440.340181px;}
.yc1{bottom:440.520181px;}
.y35{bottom:442.500180px;}
.y10d{bottom:443.220180px;}
.y2a{bottom:443.760179px;}
.y1b{bottom:444.660179px;}
.y10a{bottom:444.840179px;}
.ye{bottom:449.520177px;}
.ycd{bottom:452.400176px;}
.yaa{bottom:454.740175px;}
.y83{bottom:458.160174px;}
.y119{bottom:460.320173px;}
.y71{bottom:461.040173px;}
.y20{bottom:461.220173px;}
.y57{bottom:464.820171px;}
.ye1{bottom:473.280168px;}
.y94{bottom:473.640168px;}
.y5f{bottom:476.880166px;}
.y4b{bottom:479.580165px;}
.y10c{bottom:483.540164px;}
.y118{bottom:485.520163px;}
.y34{bottom:485.700163px;}
.y29{bottom:486.960162px;}
.yc8{bottom:490.920161px;}
.yd{bottom:492.720160px;}
.y70{bottom:497.040158px;}
.y98{bottom:497.940158px;}
.y7b{bottom:498.120158px;}
.y46{bottom:498.300158px;}
.yea{bottom:498.480158px;}
.y2{bottom:499.560157px;}
.ybf{bottom:501.180157px;}
.y82{bottom:501.360156px;}
.y1a{bottom:502.260156px;}
.yfe{bottom:502.440156px;}
.y117{bottom:505.500155px;}
.y93{bottom:506.040155px;}
.yf6{bottom:508.200154px;}
.ya3{bottom:510.180153px;}
.y1f{bottom:512.880152px;}
.y56{bottom:515.220151px;}
.ye0{bottom:523.860147px;}
.yf7{bottom:525.300147px;}
.y116{bottom:525.660147px;}
.y6f{bottom:526.020147px;}
.y5e{bottom:527.280146px;}
.y33{bottom:528.900145px;}
.y28{bottom:529.980145px;}
.y45{bottom:530.880145px;}
.y3c{bottom:531.420144px;}
.y10b{bottom:533.940143px;}
.yc{bottom:535.920143px;}
.ya2{bottom:542.580140px;}
.y81{bottom:544.380139px;}
.y115{bottom:550.680137px;}
.y100{bottom:554.640135px;}
.y6e{bottom:554.820135px;}
.ybc{bottom:556.980134px;}
.y19{bottom:559.860133px;}
.yf8{bottom:561.840132px;}
.yd9{bottom:564.540131px;}
.y1e{bottom:565.800131px;}
.yb5{bottom:566.520130px;}
.y114{bottom:570.840129px;}
.y32{bottom:571.920128px;}
.y27{bottom:574.260127px;}
.y9d{bottom:574.440127px;}
.ya1{bottom:574.980127px;}
.yb1{bottom:576.060127px;}
.y3b{bottom:577.140126px;}
.y5d{bottom:577.680126px;}
.y1{bottom:578.580126px;}
.yb{bottom:578.940125px;}
.yff{bottom:583.440124px;}
.y6d{bottom:583.620124px;}
.yb4{bottom:585.600123px;}
.y113{bottom:590.820121px;}
.ybb{bottom:595.140119px;}
.y3a{bottom:609.540113px;}
.ya0{bottom:668.580090px;}
.ya{bottom:669.660089px;}
.y6c{bottom:671.100089px;}
.y67{bottom:672.180088px;}
.y8f{bottom:726.180067px;}
.y55{bottom:734.640063px;}
.y91{bottom:741.660060px;}
.y9f{bottom:783.780043px;}
.hf{height:24.747178px;}
.h1b{height:34.860924px;}
.h17{height:43.185920px;}
.h4{height:48.905137px;}
.hd{height:52.031229px;}
.hc{height:56.193728px;}
.h11{height:58.921851px;}
.hb{height:63.635600px;}
.h10{height:65.039036px;}
.h13{height:66.584350px;}
.h15{height:66.979405px;}
.h16{height:67.192157px;}
.h14{height:67.368968px;}
.h5{height:68.938566px;}
.h18{height:73.652314px;}
.h1a{height:78.366062px;}
.h9{height:82.209342px;}
.h3{height:88.382777px;}
.he{height:98.399492px;}
.h12{height:112.640580px;}
.h7{height:117.843703px;}
.h19{height:127.321824px;}
.ha{height:137.287914px;}
.h8{height:157.321343px;}
.h2{height:166.277489px;}
.h6{height:176.765554px;}
.h1{height:216.243195px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x3c{left:131.925847px;}
.x1d{left:146.685841px;}
.x20{left:149.012659px;}
.x2a{left:157.666437px;}
.x1e{left:161.625888px;}
.x3e{left:166.126434px;}
.x45{left:172.246431px;}
.x4c{left:175.126064px;}
.x21{left:178.905885px;}
.x1f{left:188.445920px;}
.x33{left:191.506423px;}
.x72{left:203.026419px;}
.x2b{left:211.666415px;}
.x7f{left:217.067062px;}
.x71{left:221.025490px;}
.x34{left:232.006407px;}
.x1{left:235.606406px;}
.x19{left:238.306405px;}
.x8{left:239.566404px;}
.xb{left:241.906403px;}
.x2c{left:245.506402px;}
.x9c{left:249.644831px;}
.x9b{left:250.904835px;}
.x8a{left:255.946349px;}
.x47{left:257.746397px;}
.x90{left:259.545533px;}
.x5{left:264.946040px;}
.x51{left:266.206394px;}
.x38{left:267.646393px;}
.x53{left:269.446392px;}
.x39{left:271.785708px;}
.x4a{left:274.282390px;}
.x2e{left:276.106428px;}
.xf{left:277.906389px;}
.x1a{left:279.346388px;}
.xc{left:282.406387px;}
.x56{left:283.666387px;}
.x55{left:286.186386px;}
.x3{left:289.606384px;}
.x3a{left:291.767884px;}
.x89{left:293.745682px;}
.x13{left:295.906382px;}
.x25{left:297.706381px;}
.x26{left:299.146374px;}
.x37{left:300.226380px;}
.x49{left:302.206379px;}
.x59{left:305.266378px;}
.x58{left:308.506377px;}
.x84{left:312.824653px;}
.x82{left:322.006318px;}
.x6b{left:325.399370px;}
.x17{left:328.846368px;}
.x3f{left:334.412866px;}
.x2{left:335.865930px;}
.x11{left:338.206365px;}
.xa{left:341.086364px;}
.x80{left:342.166363px;}
.x7a{left:345.226362px;}
.x10{left:346.306011px;}
.x6d{left:349.906360px;}
.x2f{left:354.406358px;}
.xd{left:356.566357px;}
.x28{left:357.646357px;}
.x14{left:358.906356px;}
.x6f{left:362.506355px;}
.x70{left:363.946354px;}
.x81{left:371.146352px;}
.x8d{left:373.125607px;}
.x18{left:374.746081px;}
.x6e{left:376.906349px;}
.x44{left:378.692849px;}
.x29{left:385.159346px;}
.x73{left:393.979342px;}
.x52{left:400.459340px;}
.x2d{left:402.106339px;}
.x15{left:407.506337px;}
.x48{left:409.127062px;}
.x35{left:411.466335px;}
.x12{left:413.626335px;}
.x7b{left:415.066625px;}
.x6a{left:417.226333px;}
.x43{left:418.846332px;}
.x27{left:427.126329px;}
.x4d{left:432.692875px;}
.x67{left:434.686326px;}
.x31{left:437.026325px;}
.x6c{left:439.159324px;}
.x4b{left:441.885454px;}
.x36{left:443.686323px;}
.x8b{left:446.566056px;}
.x32{left:463.819314px;}
.x7{left:466.547129px;}
.x68{left:469.066312px;}
.x54{left:475.726262px;}
.x74{left:484.186306px;}
.x57{left:490.666091px;}
.x4{left:494.806302px;}
.x3b{left:499.128358px;}
.x16{left:508.666297px;}
.x1b{left:514.952794px;}
.xe{left:527.926197px;}
.x9{left:550.066280px;}
.x6{left:552.034237px;}
.x40{left:563.912774px;}
.x30{left:573.465875px;}
.x5a{left:575.446270px;}
.x5b{left:580.846293px;}
.x3d{left:585.165893px;}
.x7c{left:599.746367px;}
.x87{left:602.806186px;}
.x88{left:606.586200px;}
.x1c{left:613.066338px;}
.x7e{left:625.306307px;}
.x95{left:629.446248px;}
.x9d{left:634.306067px;}
.x93{left:638.087247px;}
.x79{left:642.946243px;}
.x5d{left:649.426207px;}
.x5e{left:654.286232px;}
.x5c{left:656.626237px;}
.x8c{left:674.086230px;}
.x7d{left:676.426337px;}
.x8e{left:678.046645px;}
.x99{left:679.666286px;}
.x97{left:682.366296px;}
.x91{left:691.726346px;}
.x69{left:694.426222px;}
.x42{left:701.986219px;}
.x92{left:723.586465px;}
.x94{left:732.767700px;}
.x9a{left:739.246458px;}
.x96{left:744.826579px;}
.x8f{left:758.146894px;}
.x98{left:762.286594px;}
.x78{left:770.386099px;}
.x76{left:771.646191px;}
.x41{left:793.066183px;}
.x5f{left:794.326182px;}
.x50{left:799.546007px;}
.x60{left:806.206239px;}
.x22{left:812.866175px;}
.x61{left:813.946174px;}
.x23{left:821.506171px;}
.x77{left:824.566310px;}
.x62{left:829.066233px;}
.x24{left:835.366166px;}
.x4f{left:840.406101px;}
.x85{left:859.127193px;}
.x4e{left:880.906148px;}
.x86{left:900.515691px;}
.x75{left:915.106134px;}
.x83{left:972.706111px;}
.x66{left:984.586106px;}
.x64{left:997.546065px;}
.x63{left:1004.026098px;}
.x65{left:1009.426121px;}
.x46{left:1056.766077px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:60.799976pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.006871pt;}
.lsb{letter-spacing:0.050607pt;}
.ls8{letter-spacing:0.197450pt;}
.lsd{letter-spacing:0.210321pt;}
.ls7{letter-spacing:0.218444pt;}
.lsc{letter-spacing:0.246980pt;}
.ls9{letter-spacing:0.288100pt;}
.lsa{letter-spacing:0.351790pt;}
.ls6{letter-spacing:0.415893pt;}
.ls5{letter-spacing:75.958828pt;}
.ls4{letter-spacing:76.033453pt;}
.ls1{letter-spacing:87.986887pt;}
.ls2{letter-spacing:187.971842pt;}
.ws3{word-spacing:-73.517411pt;}
.ws7{word-spacing:-60.095976pt;}
.ws4{word-spacing:-53.485419pt;}
.wse{word-spacing:-46.674541pt;}
.ws2{word-spacing:-40.063984pt;}
.wsf{word-spacing:-33.453427pt;}
.ws9{word-spacing:-31.315827pt;}
.ws0{word-spacing:-30.047988pt;}
.ws12{word-spacing:-26.642549pt;}
.ws10{word-spacing:-25.039990pt;}
.ws13{word-spacing:-23.437431pt;}
.ws6{word-spacing:-21.641423pt;}
.ws5{word-spacing:-21.634551pt;}
.wsa{word-spacing:-15.775864pt;}
.wsd{word-spacing:-15.773043pt;}
.wsb{word-spacing:-15.772753pt;}
.wsc{word-spacing:-15.772149pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:0.294512pt;}
.ws11{word-spacing:437.824122pt;}
._8{margin-left:-3189.928518pt;}
._14{margin-left:-2407.608243pt;}
._15{margin-left:-2026.043169pt;}
._16{margin-left:-1993.338969pt;}
._13{margin-left:-1570.731105pt;}
._11{margin-left:-1564.336441pt;}
._12{margin-left:-1527.877789pt;}
._10{margin-left:-1466.252000pt;}
._e{margin-left:-1408.261837pt;}
._f{margin-left:-1252.614752pt;}
._d{margin-left:-1229.585428pt;}
._b{margin-left:-81.753387pt;}
._0{margin-left:-1.491032pt;}
._2{width:1.132192pt;}
._1{width:28.924314pt;}
._6{width:33.037732pt;}
._7{width:46.844503pt;}
._5{width:52.564355pt;}
._9{width:446.190236pt;}
._c{width:613.946421pt;}
._a{width:969.129553pt;}
._4{width:979.557228pt;}
._3{width:1020.501595pt;}
.fse{font-size:26.879989pt;}
.fs15{font-size:42.879983pt;}
.fs3{font-size:53.119979pt;}
.fs12{font-size:56.734348pt;}
.fs11{font-size:56.736521pt;}
.fs13{font-size:56.737565pt;}
.fs10{font-size:56.747711pt;}
.fsc{font-size:63.999974pt;}
.fsb{font-size:69.119972pt;}
.fs4{font-size:74.879970pt;}
.fsf{font-size:79.999968pt;}
.fs14{font-size:85.119966pt;}
.fs9{font-size:90.879964pt;}
.fs2{font-size:95.999962pt;}
.fs8{font-size:101.119960pt;}
.fsd{font-size:106.879957pt;}
.fs6{font-size:127.999949pt;}
.fsa{font-size:149.119940pt;}
.fs7{font-size:170.879932pt;}
.fs1{font-size:180.607954pt;}
.fs5{font-size:191.999923pt;}
.fs0{font-size:234.879906pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:60.853626pt;}
.y9{bottom:61.813626pt;}
.y44{bottom:78.773619pt;}
.y90{bottom:88.693615pt;}
.y66{bottom:92.053614pt;}
.y92{bottom:97.013612pt;}
.y43{bottom:107.573608pt;}
.yd5{bottom:108.373607pt;}
.yc0{bottom:111.253606pt;}
.yf2{bottom:120.853602pt;}
.ya9{bottom:123.893601pt;}
.ye8{bottom:124.853601pt;}
.y31{bottom:126.133600pt;}
.y53{bottom:127.253600pt;}
.y7a{bottom:130.933598pt;}
.yfa{bottom:133.013597pt;}
.y26{bottom:133.973597pt;}
.yaf{bottom:135.253597pt;}
.y42{bottom:136.533596pt;}
.y65{bottom:136.853596pt;}
.y15{bottom:138.933595pt;}
.yd4{bottom:140.373595pt;}
.y49{bottom:142.293594pt;}
.y126{bottom:145.973592pt;}
.ydf{bottom:148.853591pt;}
.yf1{bottom:149.653591pt;}
.y112{bottom:151.893590pt;}
.ya8{bottom:152.693590pt;}
.y9e{bottom:155.253589pt;}
.yef{bottom:155.893588pt;}
.yf9{bottom:158.613587pt;}
.ye7{bottom:160.693586pt;}
.y30{bottom:164.533585pt;}
.y41{bottom:165.333585pt;}
.y52{bottom:165.653584pt;}
.y80{bottom:165.973584pt;}
.y125{bottom:168.213583pt;}
.y39{bottom:170.293583pt;}
.y5c{bottom:171.093582pt;}
.yd3{bottom:172.373582pt;}
.y104{bottom:176.053580pt;}
.y14{bottom:177.333580pt;}
.yf0{bottom:178.453579pt;}
.y25{bottom:179.893579pt;}
.yae{bottom:180.053579pt;}
.y4a{bottom:180.533578pt;}
.ya7{bottom:181.493578pt;}
.y64{bottom:181.653578pt;}
.yc7{bottom:182.613578pt;}
.y124{bottom:186.133576pt;}
.y111{bottom:187.733576pt;}
.yde{bottom:189.173575pt;}
.ycc{bottom:190.933574pt;}
.y7{bottom:191.573574pt;}
.y79{bottom:191.893574pt;}
.y40{bottom:194.133573pt;}
.y8e{bottom:194.293573pt;}
.y51{bottom:196.373572pt;}
.ye6{bottom:196.533572pt;}
.y18{bottom:199.093571pt;}
.y103{bottom:201.653570pt;}
.y2f{bottom:202.773570pt;}
.yd2{bottom:204.373569pt;}
.yb8{bottom:204.533569pt;}
.y101{bottom:205.013569pt;}
.y13{bottom:207.893568pt;}
.y123{bottom:208.373567pt;}
.ya6{bottom:210.293567pt;}
.y88{bottom:215.573564pt;}
.y5b{bottom:215.893564pt;}
.y97{bottom:217.013564pt;}
.y78{bottom:217.493564pt;}
.y7f{bottom:219.893563pt;}
.y8d{bottom:220.053563pt;}
.y6{bottom:220.373563pt;}
.yb7{bottom:221.493562pt;}
.yad{bottom:224.853561pt;}
.y24{bottom:225.973560pt;}
.y122{bottom:226.293560pt;}
.ydd{bottom:229.493559pt;}
.yc4{bottom:229.973559pt;}
.yfb{bottom:230.613558pt;}
.y38{bottom:231.733558pt;}
.y110{bottom:232.533558pt;}
.y9c{bottom:232.693558pt;}
.yee{bottom:234.293557pt;}
.y50{bottom:234.613557pt;}
.y63{bottom:235.573556pt;}
.y6b{bottom:235.893556pt;}
.yc6{bottom:236.373556pt;}
.y107{bottom:236.853556pt;}
.yb3{bottom:237.973555pt;}
.yb6{bottom:238.453555pt;}
.yf3{bottom:240.053555pt;}
.y54{bottom:240.213555pt;}
.y2e{bottom:241.173554pt;}
.ye5{bottom:241.493554pt;}
.y77{bottom:243.093553pt;}
.y8c{bottom:245.653552pt;}
.y12{bottom:246.293552pt;}
.y121{bottom:248.533551pt;}
.y5{bottom:249.173551pt;}
.y17{bottom:250.293551pt;}
.ycb{bottom:252.373550pt;}
.yb2{bottom:254.933549pt;}
.y5a{bottom:260.693546pt;}
.y106{bottom:262.453546pt;}
.yed{bottom:263.093545pt;}
.yd1{bottom:268.373543pt;}
.yac{bottom:269.653543pt;}
.y120{bottom:270.933542pt;}
.y8b{bottom:271.413542pt;}
.y23{bottom:271.893542pt;}
.yd8{bottom:272.693542pt;}
.y4f{bottom:273.013541pt;}
.y7e{bottom:274.773541pt;}
.y76{bottom:275.093541pt;}
.y87{bottom:277.013540pt;}
.y4{bottom:277.973539pt;}
.y3f{bottom:278.453539pt;}
.ydc{bottom:278.933539pt;}
.y2d{bottom:279.413539pt;}
.y62{bottom:280.373539pt;}
.y6a{bottom:281.973538pt;}
.y37{bottom:282.773538pt;}
.yc3{bottom:283.893537pt;}
.y11{bottom:284.693537pt;}
.ye4{bottom:286.293536pt;}
.ybe{bottom:288.053535pt;}
.y105{bottom:288.213535pt;}
.y11f{bottom:288.693535pt;}
.yc5{bottom:290.133535pt;}
.yec{bottom:292.053534pt;}
.y1d{bottom:293.013533pt;}
.y48{bottom:293.333533pt;}
.y8a{bottom:297.013532pt;}
.yd0{bottom:300.373531pt;}
.y99{bottom:300.693530pt;}
.y75{bottom:300.853530pt;}
.y16{bottom:301.493530pt;}
.yfc{bottom:302.613530pt;}
.ybd{bottom:305.173529pt;}
.y3e{bottom:307.253528pt;}
.ya5{bottom:309.973527pt;}
.y3{bottom:310.133527pt;}
.y11e{bottom:311.093526pt;}
.y4e{bottom:311.253526pt;}
.y10f{bottom:313.333525pt;}
.yca{bottom:313.653525pt;}
.y59{bottom:314.613525pt;}
.y86{bottom:315.253525pt;}
.y2c{bottom:317.813524pt;}
.y22{bottom:317.973523pt;}
.ydb{bottom:319.253523pt;}
.y47{bottom:322.133522pt;}
.y89{bottom:322.613522pt;}
.y10{bottom:322.933521pt;}
.yd7{bottom:323.893521pt;}
.y69{bottom:327.893520pt;}
.y11d{bottom:328.853519pt;}
.y96{bottom:330.133519pt;}
.yf4{bottom:330.773518pt;}
.ye3{bottom:331.093518pt;}
.y74{bottom:332.853518pt;}
.ycf{bottom:333.173517pt;}
.y36{bottom:333.973517pt;}
.y61{bottom:334.133517pt;}
.y109{bottom:334.453517pt;}
.y7d{bottom:335.093517pt;}
.y3d{bottom:336.213516pt;}
.yc2{bottom:337.653516pt;}
.ya4{bottom:338.773515pt;}
.y1c{bottom:344.213513pt;}
.y85{bottom:345.973512pt;}
.y102{bottom:349.013511pt;}
.y10e{bottom:349.173511pt;}
.y4d{bottom:349.653511pt;}
.y11c{bottom:351.253510pt;}
.y9b{bottom:353.333509pt;}
.y2b{bottom:356.213508pt;}
.y73{bottom:358.453507pt;}
.y95{bottom:358.933507pt;}
.y58{bottom:359.413507pt;}
.yda{bottom:359.573507pt;}
.y108{bottom:360.213507pt;}
.yf5{bottom:361.013506pt;}
.yf{bottom:361.333506pt;}
.yce{bottom:363.733505pt;}
.y21{bottom:363.893505pt;}
.y68{bottom:366.293504pt;}
.yab{bottom:368.373503pt;}
.y11b{bottom:369.013503pt;}
.yba{bottom:373.333501pt;}
.ye9{bottom:373.493501pt;}
.yfd{bottom:374.613501pt;}
.yc9{bottom:374.933501pt;}
.yeb{bottom:375.093501pt;}
.ye2{bottom:375.893500pt;}
.y84{bottom:376.693500pt;}
.y60{bottom:379.093499pt;}
.yb0{bottom:381.813498pt;}
.y9a{bottom:382.133498pt;}
.y72{bottom:384.213497pt;}
.yd6{bottom:385.173497pt;}
.y4c{bottom:387.893496pt;}
.y7c{bottom:388.853495pt;}
.yb9{bottom:390.293495pt;}
.y11a{bottom:391.413494pt;}
.yc1{bottom:391.573494pt;}
.y35{bottom:393.333493pt;}
.y10d{bottom:393.973493pt;}
.y2a{bottom:394.453493pt;}
.y1b{bottom:395.253493pt;}
.y10a{bottom:395.413493pt;}
.ye{bottom:399.573491pt;}
.ycd{bottom:402.133490pt;}
.yaa{bottom:404.213489pt;}
.y83{bottom:407.253488pt;}
.y119{bottom:409.173487pt;}
.y71{bottom:409.813487pt;}
.y20{bottom:409.973487pt;}
.y57{bottom:413.173485pt;}
.ye1{bottom:420.693482pt;}
.y94{bottom:421.013482pt;}
.y5f{bottom:423.893481pt;}
.y4b{bottom:426.293480pt;}
.y10c{bottom:429.813479pt;}
.y118{bottom:431.573478pt;}
.y34{bottom:431.733478pt;}
.y29{bottom:432.853478pt;}
.yc8{bottom:436.373476pt;}
.yd{bottom:437.973475pt;}
.y70{bottom:441.813474pt;}
.y98{bottom:442.613474pt;}
.y7b{bottom:442.773474pt;}
.y46{bottom:442.933473pt;}
.yea{bottom:443.093473pt;}
.y2{bottom:444.053473pt;}
.ybf{bottom:445.493472pt;}
.y82{bottom:445.653472pt;}
.y1a{bottom:446.453472pt;}
.yfe{bottom:446.613472pt;}
.y117{bottom:449.333471pt;}
.y93{bottom:449.813471pt;}
.yf6{bottom:451.733470pt;}
.ya3{bottom:453.493469pt;}
.y1f{bottom:455.893468pt;}
.y56{bottom:457.973467pt;}
.ye0{bottom:465.653464pt;}
.yf7{bottom:466.933464pt;}
.y116{bottom:467.253464pt;}
.y6f{bottom:467.573464pt;}
.y5e{bottom:468.693463pt;}
.y33{bottom:470.133463pt;}
.y28{bottom:471.093462pt;}
.y45{bottom:471.893462pt;}
.y3c{bottom:472.373462pt;}
.y10b{bottom:474.613461pt;}
.yc{bottom:476.373460pt;}
.ya2{bottom:482.293458pt;}
.y81{bottom:483.893457pt;}
.y115{bottom:489.493455pt;}
.y100{bottom:493.013453pt;}
.y6e{bottom:493.173453pt;}
.ybc{bottom:495.093453pt;}
.y19{bottom:497.653452pt;}
.yf8{bottom:499.413451pt;}
.yd9{bottom:501.813450pt;}
.y1e{bottom:502.933449pt;}
.yb5{bottom:503.573449pt;}
.y114{bottom:507.413448pt;}
.y32{bottom:508.373447pt;}
.y27{bottom:510.453446pt;}
.y9d{bottom:510.613446pt;}
.ya1{bottom:511.093446pt;}
.yb1{bottom:512.053446pt;}
.y3b{bottom:513.013445pt;}
.y5d{bottom:513.493445pt;}
.y1{bottom:514.293445pt;}
.yb{bottom:514.613445pt;}
.yff{bottom:518.613443pt;}
.y6d{bottom:518.773443pt;}
.yb4{bottom:520.533442pt;}
.y113{bottom:525.173441pt;}
.ybb{bottom:529.013439pt;}
.y3a{bottom:541.813434pt;}
.ya0{bottom:594.293413pt;}
.ya{bottom:595.253413pt;}
.y6c{bottom:596.533412pt;}
.y67{bottom:597.493412pt;}
.y8f{bottom:645.493392pt;}
.y55{bottom:653.013389pt;}
.y91{bottom:659.253387pt;}
.y9f{bottom:696.693372pt;}
.hf{height:21.997491pt;}
.h1b{height:30.987488pt;}
.h17{height:38.387485pt;}
.h4{height:43.471233pt;}
.hd{height:46.249981pt;}
.hc{height:49.949980pt;}
.h11{height:52.374979pt;}
.hb{height:56.564977pt;}
.h10{height:57.812477pt;}
.h13{height:59.186089pt;}
.h15{height:59.537249pt;}
.h16{height:59.726362pt;}
.h14{height:59.883527pt;}
.h5{height:61.278725pt;}
.h18{height:65.468724pt;}
.h1a{height:69.658722pt;}
.h9{height:73.074971pt;}
.h3{height:78.562469pt;}
.he{height:87.466215pt;}
.h12{height:100.124960pt;}
.h7{height:104.749958pt;}
.h19{height:113.174955pt;}
.ha{height:122.033701pt;}
.h8{height:139.841194pt;}
.h2{height:147.802213pt;}
.h6{height:157.124937pt;}
.h1{height:192.216173pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3c{left:117.267420pt;}
.x1d{left:130.387415pt;}
.x20{left:132.455697pt;}
.x2a{left:140.147944pt;}
.x1e{left:143.667456pt;}
.x3e{left:147.667941pt;}
.x45{left:153.107939pt;}
.x4c{left:155.667612pt;}
.x21{left:159.027453pt;}
.x1f{left:167.507484pt;}
.x33{left:170.227932pt;}
.x72{left:180.467928pt;}
.x2b{left:188.147925pt;}
.x7f{left:192.948499pt;}
.x71{left:196.467102pt;}
.x34{left:206.227918pt;}
.x1{left:209.427916pt;}
.x19{left:211.827915pt;}
.x8{left:212.947915pt;}
.xb{left:215.027914pt;}
.x2c{left:218.227913pt;}
.x9c{left:221.906516pt;}
.x9b{left:223.026520pt;}
.x8a{left:227.507866pt;}
.x47{left:229.107908pt;}
.x90{left:230.707141pt;}
.x5{left:235.507591pt;}
.x51{left:236.627905pt;}
.x38{left:237.907905pt;}
.x53{left:239.507904pt;}
.x39{left:241.587296pt;}
.x4a{left:243.806569pt;}
.x2e{left:245.427936pt;}
.xf{left:247.027901pt;}
.x1a{left:248.307901pt;}
.xc{left:251.027900pt;}
.x56{left:252.147899pt;}
.x55{left:254.387898pt;}
.x3{left:257.427897pt;}
.x3a{left:259.349230pt;}
.x89{left:261.107273pt;}
.x13{left:263.027895pt;}
.x25{left:264.627894pt;}
.x26{left:265.907888pt;}
.x37{left:266.867893pt;}
.x49{left:268.627893pt;}
.x59{left:271.347891pt;}
.x58{left:274.227890pt;}
.x84{left:278.066358pt;}
.x82{left:286.227838pt;}
.x6b{left:289.243884pt;}
.x17{left:292.307883pt;}
.x3f{left:297.255881pt;}
.x2{left:298.547493pt;}
.x11{left:300.627880pt;}
.xa{left:303.187879pt;}
.x80{left:304.147878pt;}
.x7a{left:306.867877pt;}
.x10{left:307.827565pt;}
.x6d{left:311.027876pt;}
.x2f{left:315.027874pt;}
.xd{left:316.947873pt;}
.x28{left:317.907873pt;}
.x14{left:319.027872pt;}
.x6f{left:322.227871pt;}
.x70{left:323.507871pt;}
.x81{left:329.907868pt;}
.x8d{left:331.667206pt;}
.x18{left:333.107628pt;}
.x6e{left:335.027866pt;}
.x44{left:336.615865pt;}
.x29{left:342.363863pt;}
.x73{left:350.203860pt;}
.x52{left:355.963858pt;}
.x2d{left:357.427857pt;}
.x15{left:362.227855pt;}
.x48{left:363.668500pt;}
.x35{left:365.747854pt;}
.x12{left:367.667853pt;}
.x7b{left:368.948111pt;}
.x6a{left:370.867852pt;}
.x43{left:372.307851pt;}
.x27{left:379.667848pt;}
.x4d{left:384.615889pt;}
.x67{left:386.387845pt;}
.x31{left:388.467845pt;}
.x6c{left:390.363844pt;}
.x4b{left:392.787070pt;}
.x36{left:394.387842pt;}
.x8b{left:396.947606pt;}
.x32{left:412.283835pt;}
.x7{left:414.708559pt;}
.x68{left:416.947833pt;}
.x54{left:422.867788pt;}
.x74{left:430.387828pt;}
.x57{left:436.147636pt;}
.x4{left:439.827824pt;}
.x3b{left:443.669651pt;}
.x16{left:452.147819pt;}
.x1b{left:457.735817pt;}
.xe{left:469.267730pt;}
.x9{left:488.947804pt;}
.x6{left:490.697100pt;}
.x40{left:501.255799pt;}
.x30{left:509.747445pt;}
.x5a{left:511.507795pt;}
.x5b{left:516.307816pt;}
.x3d{left:520.147460pt;}
.x7c{left:533.107882pt;}
.x87{left:535.827721pt;}
.x88{left:539.187733pt;}
.x1c{left:544.947856pt;}
.x7e{left:555.827828pt;}
.x95{left:559.507776pt;}
.x9d{left:563.827615pt;}
.x93{left:567.188664pt;}
.x79{left:571.507771pt;}
.x5d{left:577.267739pt;}
.x5e{left:581.587762pt;}
.x5c{left:583.667767pt;}
.x8c{left:599.187760pt;}
.x7d{left:601.267855pt;}
.x8e{left:602.708129pt;}
.x99{left:604.147809pt;}
.x97{left:606.547818pt;}
.x91{left:614.867863pt;}
.x69{left:617.267753pt;}
.x42{left:623.987750pt;}
.x92{left:643.187969pt;}
.x94{left:651.349067pt;}
.x9a{left:657.107963pt;}
.x96{left:662.068070pt;}
.x8f{left:673.908351pt;}
.x98{left:677.588084pt;}
.x78{left:684.787644pt;}
.x76{left:685.907726pt;}
.x41{left:704.947718pt;}
.x5f{left:706.067718pt;}
.x50{left:710.707561pt;}
.x60{left:716.627768pt;}
.x22{left:722.547711pt;}
.x61{left:723.507711pt;}
.x23{left:730.227708pt;}
.x77{left:732.947831pt;}
.x62{left:736.947763pt;}
.x24{left:742.547703pt;}
.x4f{left:747.027645pt;}
.x85{left:763.668616pt;}
.x4e{left:783.027687pt;}
.x86{left:800.458392pt;}
.x75{left:813.427675pt;}
.x83{left:864.627654pt;}
.x66{left:875.187650pt;}
.x64{left:886.707613pt;}
.x63{left:892.467643pt;}
.x65{left:897.267663pt;}
.x46{left:939.347624pt;}
}




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