
    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_2598a9c34840f040f8790fbd.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_8badf9e537641b98db6476c0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a081b64fad58fb681626e961.woff')format("woff");}.ff3{font-family:ff3;line-height:0.923340;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_bacb7559a23f02a05e0b3ad1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_1b1ce63c39c6f362ecc26e52.woff')format("woff");}.ff5{font-family:ff5;line-height:0.932000;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;}
.m1{transform:matrix(0.000000,-0.249532,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249532,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249532,0.250000,0.000000,0,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);}
.v2{vertical-align:-17.935780px;}
.v3{vertical-align:-4.947825px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.461880px;}
.v4{vertical-align:17.935838px;}
.v1{vertical-align:23.502065px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.031531px;}
.ls4{letter-spacing:0.031620px;}
.ls8{letter-spacing:0.031647px;}
.ls9{letter-spacing:0.178971px;}
.ls3{letter-spacing:0.348248px;}
.ls2{letter-spacing:0.348426px;}
.ls0{letter-spacing:0.348480px;}
.ls1{letter-spacing:0.348484px;}
.ls5{letter-spacing:14.942400px;}
.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;}
}
.ws1{word-spacing:-15.432599px;}
.ws2{word-spacing:-12.809008px;}
.ws0{word-spacing:-10.339842px;}
.ws6{word-spacing:-8.950901px;}
.ws7{word-spacing:-8.333605px;}
.ws8{word-spacing:-7.716299px;}
.ws3{word-spacing:-0.059776px;}
.ws5{word-spacing:0.000000px;}
.ws4{word-spacing:14.884124px;}
._24{margin-left:-2739.047709px;}
._1a{margin-left:-2735.083821px;}
._18{margin-left:-2733.222424px;}
._21{margin-left:-2732.090846px;}
._19{margin-left:-2721.433603px;}
._11{margin-left:-2708.451720px;}
._6{margin-left:-2707.310523px;}
._1e{margin-left:-2705.323873px;}
._14{margin-left:-2694.843692px;}
._2e{margin-left:-2637.814963px;}
._28{margin-left:-2632.537636px;}
._1f{margin-left:-2347.552799px;}
._25{margin-left:-2288.642961px;}
._1b{margin-left:-2262.961281px;}
._8a{margin-left:-2140.681054px;}
._87{margin-left:-2057.186502px;}
._2f{margin-left:-1987.690266px;}
._13{margin-left:-1810.844387px;}
._6d{margin-left:-1765.504863px;}
._22{margin-left:-1752.352281px;}
._78{margin-left:-1733.241257px;}
._6e{margin-left:-1370.530515px;}
._29{margin-left:-1233.289351px;}
._4{margin-left:-1205.117740px;}
._12{margin-left:-1172.401505px;}
._2b{margin-left:-1126.001118px;}
._8b{margin-left:-1103.918388px;}
._10{margin-left:-939.522865px;}
._2a{margin-left:-902.273534px;}
._1d{margin-left:-621.028096px;}
._27{margin-left:-608.065365px;}
._16{margin-left:-562.619742px;}
._d{margin-left:-498.267287px;}
._77{margin-left:-265.880108px;}
._23{margin-left:-223.709051px;}
._17{margin-left:-149.492024px;}
._20{margin-left:-148.257474px;}
._1{margin-left:-1.736367px;}
._3{width:1.107015px;}
._9{width:2.459730px;}
._8{width:3.787864px;}
._7{width:5.247054px;}
._c{width:6.265515px;}
._5{width:7.268757px;}
._2{width:8.808638px;}
._a{width:10.609625px;}
._b{width:11.616733px;}
._15{width:14.022827px;}
._e{width:15.040541px;}
._f{width:16.274990px;}
._1c{width:17.910159px;}
._0{width:19.459227px;}
._26{width:20.464023px;}
._75{width:22.171756px;}
._74{width:23.316161px;}
._2c{width:24.408128px;}
._2d{width:25.441291px;}
._7e{width:28.701801px;}
._7d{width:29.830942px;}
._70{width:31.141828px;}
._6f{width:32.287305px;}
._7b{width:34.433979px;}
._7c{width:35.522981px;}
._80{width:41.368165px;}
._7f{width:42.397615px;}
._89{width:44.501659px;}
._7a{width:47.162566px;}
._6c{width:48.640205px;}
._76{width:51.392705px;}
._86{width:52.675626px;}
._85{width:53.840462px;}
._79{width:55.070127px;}
._84{width:56.317988px;}
._73{width:61.255841px;}
._72{width:74.868233px;}
._71{width:75.871956px;}
._88{width:77.386184px;}
._81{width:89.192123px;}
._34{width:90.372038px;}
._35{width:131.524467px;}
._54{width:168.795713px;}
._5f{width:174.763475px;}
._55{width:178.212341px;}
._36{width:192.773528px;}
._39{width:195.343975px;}
._60{width:196.640317px;}
._6b{width:203.268600px;}
._5e{width:209.713189px;}
._4e{width:214.213315px;}
._3a{width:218.356503px;}
._62{width:220.016615px;}
._50{width:225.811065px;}
._44{width:228.743565px;}
._46{width:231.588972px;}
._31{width:235.546250px;}
._4c{width:237.273674px;}
._65{width:238.454913px;}
._5b{width:239.675352px;}
._42{width:242.825510px;}
._61{width:246.319119px;}
._3f{width:247.617739px;}
._47{width:249.997700px;}
._37{width:252.308631px;}
._57{width:253.605852px;}
._4f{width:254.668492px;}
._32{width:255.933087px;}
._30{width:259.576143px;}
._67{width:261.441108px;}
._49{width:262.836889px;}
._5a{width:263.977430px;}
._63{width:265.662756px;}
._3d{width:266.781579px;}
._53{width:268.177920px;}
._5c{width:271.117212px;}
._56{width:276.848686px;}
._4a{width:277.910207px;}
._68{width:281.168615px;}
._6a{width:283.609274px;}
._66{width:285.035125px;}
._5d{width:287.058728px;}
._4d{width:290.606122px;}
._38{width:293.061706px;}
._59{width:294.197951px;}
._45{width:297.963064px;}
._3b{width:299.572228px;}
._43{width:301.606740px;}
._52{width:302.928576px;}
._41{width:304.010756px;}
._64{width:306.448858px;}
._51{width:308.391104px;}
._33{width:309.740172px;}
._4b{width:313.576613px;}
._48{width:316.828727px;}
._58{width:318.022274px;}
._69{width:324.195139px;}
._40{width:331.183076px;}
._82{width:334.911648px;}
._83{width:335.963260px;}
._3e{width:343.243157px;}
._3c{width:371.509185px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:20.371027px;}
.fs8{font-size:30.865198px;}
.fs4{font-size:33.334421px;}
.fs6{font-size:35.803606px;}
.fs9{font-size:35.871164px;}
.fs3{font-size:41.359369px;}
.fs7{font-size:46.297893px;}
.fs0{font-size:51.236031px;}
.fs5{font-size:59.775600px;}
.fs2{font-size:61.730395px;}
.fs1{font-size:87.657262px;}
.y0{bottom:0.000000px;}
.y2{bottom:194.043579px;}
.y1{bottom:208.886969px;}
.ya2{bottom:232.852930px;}
.yf4{bottom:233.471361px;}
.y91{bottom:233.780605px;}
.y6b{bottom:234.399095px;}
.y126{bottom:236.563748px;}
.y13a{bottom:238.419157px;}
.ye0{bottom:241.511545px;}
.yf3{bottom:246.768586px;}
.y20{bottom:248.624054px;}
.y156{bottom:250.015567px;}
.y139{bottom:252.180279px;}
.y1c5{bottom:252.644117px;}
.y90{bottom:253.726444px;}
.ydf{bottom:254.963423px;}
.ya1{bottom:255.118015px;}
.y117{bottom:255.736505px;}
.y6a{bottom:256.509586px;}
.y4a{bottom:258.055751px;}
.ya5{bottom:258.519648px;}
.y125{bottom:258.828893px;}
.y45{bottom:260.684302px;}
.y1b7{bottom:263.622038px;}
.y154{bottom:264.240526px;}
.yf2{bottom:265.013609px;}
.yf1{bottom:266.095935px;}
.y1a5{bottom:266.869018px;}
.yde{bottom:268.260590px;}
.y109{bottom:269.033730px;}
.y155{bottom:270.116058px;}
.y1f{bottom:270.889139px;}
.y8d{bottom:272.280712px;}
.ya4{bottom:273.208387px;}
.y8f{bottom:273.826875px;}
.y138{bottom:274.445365px;}
.y1c4{bottom:274.909202px;}
.ya0{bottom:277.228508px;}
.y116{bottom:278.001591px;}
.y69{bottom:278.774672px;}
.y49{bottom:280.320896px;}
.yca{bottom:280.784734px;}
.y124{bottom:281.093978px;}
.y44{bottom:282.949387px;}
.y153{bottom:285.114041px;}
.ydd{bottom:285.732530px;}
.y1b6{bottom:285.887182px;}
.y1a4{bottom:286.814857px;}
.yf0{bottom:288.361080px;}
.y17c{bottom:288.670266px;}
.y108{bottom:291.298816px;}
.ya3{bottom:291.453410px;}
.y8e{bottom:292.071898px;}
.yb6{bottom:292.999632px;}
.y1e{bottom:293.154225px;}
.y8c{bottom:294.545797px;}
.y137{bottom:296.555858px;}
.ydc{bottom:297.174348px;}
.y9f{bottom:299.493594px;}
.y115{bottom:300.112083px;}
.y68{bottom:301.039817px;}
.y48{bottom:302.585981px;}
.yc9{bottom:302.895226px;}
.y123{bottom:303.204471px;}
.y72{bottom:303.822960px;}
.y17b{bottom:304.286798px;}
.y43{bottom:305.214532px;}
.y1a3{bottom:306.915289px;}
.y152{bottom:307.379185px;}
.yef{bottom:310.471573px;}
.y107{bottom:313.563901px;}
.y1d{bottom:315.264718px;}
.y8b{bottom:316.810942px;}
.ydb{bottom:318.202513px;}
.y136{bottom:318.820943px;}
.y1c3{bottom:319.284839px;}
.y17a{bottom:319.903270px;}
.y9e{bottom:321.758738px;}
.y114{bottom:322.377169px;}
.y67{bottom:323.150309px;}
.y1b5{bottom:323.459496px;}
.yc8{bottom:325.160311px;}
.y122{bottom:325.469556px;}
.y71{bottom:326.088045px;}
.y42{bottom:327.324966px;}
.y151{bottom:329.644271px;}
.yee{bottom:332.736658px;}
.y47{bottom:332.891251px;}
.y106{bottom:335.829047px;}
.y179{bottom:335.983640px;}
.y1c{bottom:337.529862px;}
.y8a{bottom:338.921375px;}
.yda{bottom:340.467598px;}
.y135{bottom:341.086088px;}
.y1c2{bottom:341.549925px;}
.y9d{bottom:344.023824px;}
.y113{bottom:344.642313px;}
.y66{bottom:345.415395px;}
.y1b4{bottom:345.724640px;}
.yc7{bottom:347.425457px;}
.y121{bottom:347.734701px;}
.y70{bottom:348.353131px;}
.y41{bottom:349.590110px;}
.y178{bottom:351.600171px;}
.y150{bottom:351.754764px;}
.yed{bottom:355.001744px;}
.y1a2{bottom:356.702560px;}
.y105{bottom:357.939539px;}
.y1b{bottom:359.794948px;}
.y89{bottom:361.186520px;}
.yd9{bottom:362.578091px;}
.y46{bottom:363.196581px;}
.y134{bottom:363.351173px;}
.y1c1{bottom:363.815010px;}
.y9c{bottom:366.134317px;}
.y112{bottom:366.752806px;}
.y65{bottom:367.680480px;}
.y177{bottom:367.835133px;}
.y1b3{bottom:367.989726px;}
.yc6{bottom:369.535948px;}
.y120{bottom:369.999786px;}
.y6f{bottom:370.463624px;}
.y40{bottom:371.855196px;}
.y1a1{bottom:372.782930px;}
.y14f{bottom:374.019849px;}
.yec{bottom:377.266888px;}
.y104{bottom:380.204624px;}
.yb5{bottom:381.905441px;}
.y1a{bottom:382.060033px;}
.y176{bottom:383.297013px;}
.y88{bottom:383.451605px;}
.yd8{bottom:384.843177px;}
.y133{bottom:385.461666px;}
.y1c0{bottom:385.925503px;}
.y9b{bottom:388.399402px;}
.y111{bottom:389.017892px;}
.y64{bottom:389.945626px;}
.y1b2{bottom:390.254870px;}
.yc5{bottom:391.801034px;}
.y11f{bottom:392.110279px;}
.y6e{bottom:392.728768px;}
.y3f{bottom:394.120340px;}
.y14e{bottom:396.284994px;}
.yeb{bottom:399.377381px;}
.y175{bottom:399.531974px;}
.yb4{bottom:404.170526px;}
.y1a0{bottom:404.634364px;}
.y87{bottom:405.716750px;}
.yd7{bottom:407.108321px;}
.y132{bottom:407.726752px;}
.y1bf{bottom:408.190648px;}
.y103{bottom:410.509895px;}
.y9a{bottom:410.664547px;}
.y110{bottom:411.282977px;}
.y63{bottom:412.056118px;}
.y19{bottom:412.210711px;}
.y1b1{bottom:412.365304px;}
.yc4{bottom:414.066120px;}
.y11e{bottom:414.375365px;}
.y6d{bottom:414.993854px;}
.y174{bottom:415.148447px;}
.y3e{bottom:416.230774px;}
.y14d{bottom:418.550079px;}
.y19f{bottom:420.096244px;}
.yea{bottom:421.642467px;}
.yb3{bottom:426.435671px;}
.y86{bottom:427.827184px;}
.yd6{bottom:429.218755px;}
.y131{bottom:429.991896px;}
.y1be{bottom:430.455733px;}
.y173{bottom:431.383467px;}
.y99{bottom:432.929632px;}
.y10f{bottom:433.548122px;}
.y62{bottom:434.321203px;}
.y1b0{bottom:434.630449px;}
.yc3{bottom:436.331265px;}
.y11d{bottom:436.640509px;}
.y3d{bottom:438.495918px;}
.y14c{bottom:440.660572px;}
.ye9{bottom:443.907552px;}
.y6c{bottom:445.299124px;}
.y172{bottom:446.845347px;}
.y10e{bottom:448.082267px;}
.y102{bottom:448.236919px;}
.yb2{bottom:448.700756px;}
.y85{bottom:450.092328px;}
.yd5{bottom:451.483899px;}
.y19e{bottom:451.947737px;}
.y130{bottom:452.256982px;}
.y1bd{bottom:452.720819px;}
.y98{bottom:454.112391px;}
.y61{bottom:456.586289px;}
.y1af{bottom:456.895534px;}
.y11c{bottom:457.823268px;}
.yc2{bottom:458.441757px;}
.y3c{bottom:460.761004px;}
.y10d{bottom:461.379493px;}
.y14b{bottom:462.925658px;}
.y171{bottom:463.080309px;}
.y18{bottom:465.399556px;}
.ye8{bottom:466.018045px;}
.y97{bottom:467.409617px;}
.y19d{bottom:468.182699px;}
.y101{bottom:470.347353px;}
.yb1{bottom:470.811249px;}
.y11b{bottom:471.275087px;}
.y84{bottom:472.357414px;}
.yd4{bottom:473.748985px;}
.y12f{bottom:474.367475px;}
.y10c{bottom:474.676719px;}
.y1bc{bottom:474.831312px;}
.y170{bottom:478.696782px;}
.y60{bottom:478.851434px;}
.y1ae{bottom:479.006027px;}
.yc1{bottom:480.706842px;}
.y96{bottom:480.861436px;}
.y3b{bottom:483.026149px;}
.y19c{bottom:483.644578px;}
.y11a{bottom:484.572312px;}
.y14a{bottom:485.190802px;}
.y17{bottom:487.664701px;}
.y10b{bottom:488.128538px;}
.ye7{bottom:488.283190px;}
.y100{bottom:492.612497px;}
.yb0{bottom:493.076335px;}
.y5f{bottom:493.385580px;}
.y95{bottom:494.158661px;}
.y16f{bottom:494.777151px;}
.yd3{bottom:496.014129px;}
.y12e{bottom:496.632560px;}
.y1bb{bottom:497.096456px;}
.y119{bottom:497.869539px;}
.y19b{bottom:499.879599px;}
.y142{bottom:500.188786px;}
.y163{bottom:501.727963px;}
.y83{bottom:502.662684px;}
.yc0{bottom:502.971928px;}
.y3a{bottom:505.136582px;}
.y5e{bottom:506.682805px;}
.y94{bottom:507.455888px;}
.y10a{bottom:509.002052px;}
.y16{bottom:509.929786px;}
.y16e{bottom:510.393623px;}
.ye6{bottom:510.548275px;}
.y118{bottom:511.166765px;}
.y141{bottom:513.486011px;}
.yff{bottom:514.877583px;}
.yaf{bottom:515.341479px;}
.y19a{bottom:515.496072px;}
.yd2{bottom:518.124563px;}
.y12d{bottom:518.897705px;}
.y1ba{bottom:519.361542px;}
.ybf{bottom:525.237073px;}
.y5d{bottom:526.628615px;}
.y140{bottom:526.783237px;}
.y39{bottom:527.401727px;}
.y93{bottom:528.484054px;}
.y149{bottom:529.566380px;}
.y199{bottom:531.576412px;}
.y15{bottom:532.040279px;}
.y1ad{bottom:532.194901px;}
.y82{bottom:532.813361px;}
.yfe{bottom:537.142698px;}
.yae{bottom:537.451943px;}
.y13f{bottom:540.080463px;}
.yd1{bottom:540.389708px;}
.y12c{bottom:541.162790px;}
.y1b9{bottom:541.626657px;}
.y16d{bottom:542.090494px;}
.y5c{bottom:545.337504px;}
.y92{bottom:547.192914px;}
.ybe{bottom:547.347536px;}
.y38{bottom:549.666812px;}
.y148{bottom:551.831496px;}
.y13e{bottom:553.532282px;}
.y14{bottom:554.305394px;}
.ye5{bottom:554.923853px;}
.y16c{bottom:558.325486px;}
.yfd{bottom:559.253190px;}
.yad{bottom:559.717057px;}
.y5b{bottom:560.954007px;}
.yd0{bottom:562.654793px;}
.y12b{bottom:563.273283px;}
.y198{bottom:563.427906px;}
.y1b8{bottom:563.737120px;}
.y13d{bottom:566.829509px;}
.ybd{bottom:569.612651px;}
.y37{bottom:571.777305px;}
.y16b{bottom:573.941988px;}
.y147{bottom:574.096581px;}
.y13{bottom:576.570509px;}
.y197{bottom:578.889785px;}
.y13c{bottom:580.126734px;}
.yfc{bottom:581.518306px;}
.yac{bottom:581.982143px;}
.ye4{bottom:585.229153px;}
.y1ac{bottom:585.383776px;}
.y12a{bottom:585.538398px;}
.y81{bottom:586.002236px;}
.y16a{bottom:590.176950px;}
.ybc{bottom:591.877766px;}
.y5a{bottom:592.032389px;}
.ycf{bottom:592.960093px;}
.y36{bottom:594.042420px;}
.y196{bottom:595.124747px;}
.y146{bottom:596.361696px;}
.y13b{bottom:598.371757px;}
.y12{bottom:598.835595px;}
.yfb{bottom:603.783391px;}
.y169{bottom:605.638830px;}
.y1ab{bottom:607.648861px;}
.y59{bottom:608.267350px;}
.y195{bottom:610.741249px;}
.yab{bottom:612.287443px;}
.ybb{bottom:614.142852px;}
.y129{bottom:615.843668px;}
.y35{bottom:616.307535px;}
.y17f{bottom:618.005276px;}
.y145{bottom:618.472189px;}
.y11{bottom:620.946088px;}
.y168{bottom:621.873792px;}
.ye3{bottom:622.028414px;}
.y58{bottom:623.883852px;}
.yfa{bottom:626.048506px;}
.y194{bottom:626.976211px;}
.yce{bottom:629.604732px;}
.y1aa{bottom:629.759354px;}
.y80{bottom:630.532466px;}
.y144{bottom:633.160986px;}
.ye2{bottom:635.325640px;}
.yba{bottom:636.253345px;}
.y167{bottom:637.490294px;}
.y34{bottom:638.572621px;}
.y57{bottom:639.345732px;}
.y193{bottom:642.438091px;}
.ycd{bottom:642.901958px;}
.y10{bottom:643.211202px;}
.yf9{bottom:648.158999px;}
.yaa{bottom:649.859815px;}
.yb9{bottom:650.942142px;}
.y143{bottom:651.405980px;}
.y1a9{bottom:652.024469px;}
.y7f{bottom:652.642928px;}
.ye1{bottom:653.570662px;}
.y56{bottom:654.962235px;}
.ycc{bottom:656.353806px;}
.y192{bottom:658.673082px;}
.y33{bottom:660.683114px;}
.y128{bottom:661.301602px;}
.yb8{bottom:664.239338px;}
.yf{bottom:665.476318px;}
.y166{bottom:669.187165px;}
.y55{bottom:670.424114px;}
.ya9{bottom:672.124901px;}
.y191{bottom:674.289584px;}
.ycb{bottom:674.598800px;}
.y7e{bottom:674.908044px;}
.y127{bottom:679.546625px;}
.yb7{bottom:682.484361px;}
.y32{bottom:682.948228px;}
.y165{bottom:685.422127px;}
.y54{bottom:686.040616px;}
.ye{bottom:687.741403px;}
.y190{bottom:690.369924px;}
.yf8{bottom:691.606873px;}
.ya8{bottom:693.462311px;}
.y7d{bottom:697.173158px;}
.y164{bottom:700.884007px;}
.y53{bottom:701.657089px;}
.yf7{bottom:705.058721px;}
.y31{bottom:705.213344px;}
.y18f{bottom:705.986426px;}
.ya7{bottom:706.759507px;}
.yd{bottom:709.851896px;}
.y52{bottom:717.118969px;}
.yf6{bottom:718.355917px;}
.y7c{bottom:719.438274px;}
.y1a8{bottom:719.747489px;}
.y18e{bottom:722.221387px;}
.ya6{bottom:725.004530px;}
.y30{bottom:727.478429px;}
.yc{bottom:732.117010px;}
.y51{bottom:732.735470px;}
.yf5{bottom:736.600940px;}
.y18d{bottom:737.683267px;}
.y1a7{bottom:738.456379px;}
.y7b{bottom:741.548737px;}
.y50{bottom:748.197350px;}
.y2f{bottom:749.588922px;}
.y18c{bottom:753.918259px;}
.y4f{bottom:763.813852px;}
.y162{bottom:764.432342px;}
.y18b{bottom:769.534760px;}
.yb{bottom:770.153220px;}
.y2e{bottom:771.854037px;}
.y4e{bottom:779.430355px;}
.y161{bottom:780.048829px;}
.y18a{bottom:785.769722px;}
.y7a{bottom:786.078967px;}
.ya{bottom:792.727580px;}
.y2d{bottom:794.119138px;}
.y4d{bottom:794.892234px;}
.y160{bottom:795.510709px;}
.y189{bottom:801.231602px;}
.y79{bottom:808.189460px;}
.y4c{bottom:811.127211px;}
.y15f{bottom:811.745685px;}
.y9{bottom:812.054930px;}
.y2c{bottom:816.384252px;}
.y188{bottom:817.466579px;}
.y158{bottom:818.235480px;}
.y1a6{bottom:824.424265px;}
.y8{bottom:826.743712px;}
.y15e{bottom:827.362188px;}
.y78{bottom:830.454561px;}
.y187{bottom:833.083081px;}
.y2b{bottom:838.494730px;}
.y7{bottom:841.587118px;}
.y4b{bottom:842.205592px;}
.y15d{bottom:843.597164px;}
.y186{bottom:849.163435px;}
.y77{bottom:852.719661px;}
.y15c{bottom:859.059044px;}
.y6{bottom:860.295992px;}
.y2a{bottom:860.759845px;}
.y185{bottom:864.779937px;}
.y76{bottom:874.984775px;}
.y15b{bottom:875.294006px;}
.y5{bottom:878.077148px;}
.y184{bottom:881.014900px;}
.y29{bottom:883.024946px;}
.y15a{bottom:890.910507px;}
.y183{bottom:896.476779px;}
.y75{bottom:897.095261px;}
.y28{bottom:905.290060px;}
.y159{bottom:906.372387px;}
.y4{bottom:909.619383px;}
.y182{bottom:912.711763px;}
.y74{bottom:919.360369px;}
.y157{bottom:922.607364px;}
.y27{bottom:927.400546px;}
.y181{bottom:928.328257px;}
.y3{bottom:938.223858px;}
.y73{bottom:941.625477px;}
.y180{bottom:943.790137px;}
.y26{bottom:949.665653px;}
.y17e{bottom:960.025111px;}
.y25{bottom:971.930757px;}
.y17d{bottom:975.641608px;}
.y24{bottom:1068.018000px;}
.y23{bottom:1068.469500px;}
.y22{bottom:1085.950500px;}
.y21{bottom:1103.884500px;}
.h6{height:24.105604px;}
.ha{height:25.891182px;}
.hf{height:25.940036px;}
.hd{height:32.666238px;}
.hb{height:33.480068px;}
.h7{height:36.150422px;}
.h3{height:37.051055px;}
.he{height:37.781879px;}
.h8{height:41.125613px;}
.hc{height:42.041443px;}
.h9{height:42.799330px;}
.h5{height:53.410866px;}
.h4{height:61.848019px;}
.h2{height:1020.481061px;}
.h1{height:1177.500000px;}
.h0{height:1177.795500px;}
.w2{width:788.555866px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:52.180500px;}
.x5{left:69.732000px;}
.x3{left:70.970030px;}
.x19{left:72.052358px;}
.x6{left:73.887000px;}
.x20{left:77.154776px;}
.x37{left:79.164822px;}
.x40{left:83.184147px;}
.x8{left:85.349576px;}
.x4{left:89.524283px;}
.x41{left:103.130739px;}
.x4a{left:106.223112px;}
.x5e{left:107.923920px;}
.x60{left:110.707057px;}
.x51{left:112.407866px;}
.x48{left:113.490199px;}
.x64{left:115.809475px;}
.x7{left:117.201047px;}
.x4d{left:118.437997px;}
.x5f{left:119.520330px;}
.x52{left:120.757280px;}
.x56{left:122.303467px;}
.x5a{left:123.695038px;}
.x59{left:127.560508px;}
.x65{left:129.261310px;}
.x53{left:131.735222px;}
.x38{left:146.269383px;}
.x66{left:147.506332px;}
.x21{left:179.667040px;}
.xa{left:184.150986px;}
.x1a{left:196.829722px;}
.x27{left:200.540584px;}
.x22{left:203.632957px;}
.x13{left:205.333759px;}
.x2b{left:213.528566px;}
.x9{left:215.847842px;}
.x5d{left:221.877980px;}
.x39{left:227.444252px;}
.x67{left:228.526578px;}
.x4e{left:231.155099px;}
.x6a{left:237.030615px;}
.x43{left:248.627025px;}
.x42{left:259.141108px;}
.x69{left:260.223435px;}
.x1c{left:271.046762px;}
.x15{left:273.211416px;}
.x23{left:279.086917px;}
.x1b{left:281.096978px;}
.x28{left:286.663264px;}
.x2d{left:295.631153px;}
.x14{left:299.187378px;}
.x2c{left:305.526747px;}
.xc{left:307.072941px;}
.xb{left:325.936424px;}
.x4f{left:330.729598px;}
.x49{left:334.285852px;}
.x45{left:336.450507px;}
.x50{left:338.769783px;}
.x54{left:340.934436px;}
.x5c{left:346.809967px;}
.x5b{left:348.974620px;}
.x44{left:362.426469px;}
.x3a{left:370.312031px;}
.x62{left:371.858196px;}
.x35{left:387.938564px;}
.x3b{left:389.175513px;}
.x2{left:390.876330px;}
.x32{left:394.123310px;}
.x24{left:398.761892px;}
.xe{left:407.111292px;}
.x29{left:414.223772px;}
.x1d{left:415.924559px;}
.x16{left:420.253896px;}
.x25{left:423.964743px;}
.x2e{left:433.860336px;}
.xd{left:436.179612px;}
.x4b{left:472.669658px;}
.x6c{left:475.607424px;}
.x58{left:489.213865px;}
.x68{left:490.296191px;}
.x3c{left:493.079335px;}
.x30{left:495.398641px;}
.x6b{left:497.408643px;}
.x63{left:498.491028px;}
.x4c{left:500.191786px;}
.x2a{left:501.274112px;}
.x57{left:502.356498px;}
.x17{left:503.593418px;}
.x61{left:505.139582px;}
.x46{left:506.221968px;}
.x55{left:509.623541px;}
.x2f{left:512.097440px;}
.x10{left:518.436808px;}
.x3d{left:522.147685px;}
.xf{left:534.671829px;}
.x1e{left:607.033372px;}
.x26{left:613.527392px;}
.x18{left:615.846697px;}
.x33{left:620.176005px;}
.x47{left:621.876822px;}
.x12{left:633.937068px;}
.x3e{left:636.720212px;}
.x1f{left:638.575621px;}
.x36{left:641.668008px;}
.x31{left:648.471214px;}
.x11{left:650.635927px;}
.x3f{left:653.109825px;}
.x34{left:718.513570px;}
@media print{
.v2{vertical-align:-15.942916pt;}
.v3{vertical-align:-4.398066pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.743893pt;}
.v4{vertical-align:15.942968pt;}
.v1{vertical-align:20.890724pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.028027pt;}
.ls4{letter-spacing:0.028106pt;}
.ls8{letter-spacing:0.028130pt;}
.ls9{letter-spacing:0.159086pt;}
.ls3{letter-spacing:0.309554pt;}
.ls2{letter-spacing:0.309712pt;}
.ls0{letter-spacing:0.309760pt;}
.ls1{letter-spacing:0.309763pt;}
.ls5{letter-spacing:13.282133pt;}
.ws1{word-spacing:-13.717866pt;}
.ws2{word-spacing:-11.385785pt;}
.ws0{word-spacing:-9.190971pt;}
.ws6{word-spacing:-7.956357pt;}
.ws7{word-spacing:-7.407649pt;}
.ws8{word-spacing:-6.858933pt;}
.ws3{word-spacing:-0.053134pt;}
.ws5{word-spacing:0.000000pt;}
.ws4{word-spacing:13.230333pt;}
._24{margin-left:-2434.709075pt;}
._1a{margin-left:-2431.185619pt;}
._18{margin-left:-2429.531044pt;}
._21{margin-left:-2428.525197pt;}
._19{margin-left:-2419.052091pt;}
._11{margin-left:-2407.512640pt;}
._6{margin-left:-2406.498243pt;}
._1e{margin-left:-2404.732332pt;}
._14{margin-left:-2395.416615pt;}
._2e{margin-left:-2344.724411pt;}
._28{margin-left:-2340.033454pt;}
._1f{margin-left:-2086.713599pt;}
._25{margin-left:-2034.349298pt;}
._1b{margin-left:-2011.521139pt;}
._8a{margin-left:-1902.827603pt;}
._87{margin-left:-1828.610224pt;}
._2f{margin-left:-1766.835792pt;}
._13{margin-left:-1609.639455pt;}
._6d{margin-left:-1569.337656pt;}
._22{margin-left:-1557.646472pt;}
._78{margin-left:-1540.658895pt;}
._6e{margin-left:-1218.249346pt;}
._29{margin-left:-1096.257201pt;}
._4{margin-left:-1071.215769pt;}
._12{margin-left:-1042.134671pt;}
._2b{margin-left:-1000.889882pt;}
._8b{margin-left:-981.260790pt;}
._10{margin-left:-835.131435pt;}
._2a{margin-left:-802.020919pt;}
._1d{margin-left:-552.024974pt;}
._27{margin-left:-540.502546pt;}
._16{margin-left:-500.106437pt;}
._d{margin-left:-442.904256pt;}
._77{margin-left:-236.337874pt;}
._23{margin-left:-198.852490pt;}
._17{margin-left:-132.881799pt;}
._20{margin-left:-131.784422pt;}
._1{margin-left:-1.543437pt;}
._3{width:0.984013pt;}
._9{width:2.186426pt;}
._8{width:3.366990pt;}
._7{width:4.664048pt;}
._c{width:5.569347pt;}
._5{width:6.461117pt;}
._2{width:7.829900pt;}
._a{width:9.430778pt;}
._b{width:10.325985pt;}
._15{width:12.464735pt;}
._e{width:13.369370pt;}
._f{width:14.466657pt;}
._1c{width:15.920141pt;}
._0{width:17.297091pt;}
._26{width:18.190242pt;}
._75{width:19.708227pt;}
._74{width:20.725476pt;}
._2c{width:21.696114pt;}
._2d{width:22.614481pt;}
._7e{width:25.512712pt;}
._7d{width:26.516393pt;}
._70{width:27.681625pt;}
._6f{width:28.699827pt;}
._7b{width:30.607981pt;}
._7c{width:31.575983pt;}
._80{width:36.771702pt;}
._7f{width:37.686769pt;}
._89{width:39.557030pt;}
._7a{width:41.922281pt;}
._6c{width:43.235738pt;}
._76{width:45.682404pt;}
._86{width:46.822779pt;}
._85{width:47.858189pt;}
._79{width:48.951224pt;}
._84{width:50.060434pt;}
._73{width:54.449636pt;}
._72{width:66.549540pt;}
._71{width:67.441738pt;}
._88{width:68.787719pt;}
._81{width:79.281887pt;}
._34{width:80.330700pt;}
._35{width:116.910637pt;}
._54{width:150.040634pt;}
._5f{width:155.345311pt;}
._55{width:158.410970pt;}
._36{width:171.354247pt;}
._39{width:173.639089pt;}
._60{width:174.791393pt;}
._6b{width:180.683200pt;}
._5e{width:186.411723pt;}
._4e{width:190.411835pt;}
._3a{width:194.094669pt;}
._62{width:195.570325pt;}
._50{width:200.720947pt;}
._44{width:203.327613pt;}
._46{width:205.856864pt;}
._31{width:209.374444pt;}
._4c{width:210.909932pt;}
._65{width:211.959923pt;}
._5b{width:213.044758pt;}
._42{width:215.844898pt;}
._61{width:218.950328pt;}
._3f{width:220.104657pt;}
._47{width:222.220178pt;}
._37{width:224.274339pt;}
._57{width:225.427424pt;}
._4f{width:226.371993pt;}
._32{width:227.496077pt;}
._30{width:230.734350pt;}
._67{width:232.392096pt;}
._49{width:233.632790pt;}
._5a{width:234.646604pt;}
._63{width:236.144672pt;}
._3d{width:237.139182pt;}
._53{width:238.380373pt;}
._5c{width:240.993077pt;}
._56{width:246.087721pt;}
._4a{width:247.031295pt;}
._68{width:249.927658pt;}
._6a{width:252.097133pt;}
._66{width:253.364555pt;}
._5d{width:255.163314pt;}
._4d{width:258.316553pt;}
._38{width:260.499294pt;}
._59{width:261.509289pt;}
._45{width:264.856056pt;}
._3b{width:266.286425pt;}
._43{width:268.094880pt;}
._52{width:269.269845pt;}
._41{width:270.231783pt;}
._64{width:272.398985pt;}
._51{width:274.125425pt;}
._33{width:275.324598pt;}
._4b{width:278.734767pt;}
._48{width:281.625535pt;}
._58{width:282.686465pt;}
._69{width:288.173457pt;}
._40{width:294.384956pt;}
._82{width:297.699243pt;}
._83{width:298.634009pt;}
._3e{width:305.105028pt;}
._3c{width:330.230387pt;}
.fsa{font-size:18.107579pt;}
.fs8{font-size:27.435731pt;}
.fs4{font-size:29.630597pt;}
.fs6{font-size:31.825428pt;}
.fs9{font-size:31.885479pt;}
.fs3{font-size:36.763883pt;}
.fs7{font-size:41.153683pt;}
.fs0{font-size:45.543139pt;}
.fs5{font-size:53.133867pt;}
.fs2{font-size:54.871462pt;}
.fs1{font-size:77.917566pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:172.483181pt;}
.y1{bottom:185.677306pt;}
.ya2{bottom:206.980382pt;}
.yf4{bottom:207.530098pt;}
.y91{bottom:207.804982pt;}
.y6b{bottom:208.354751pt;}
.y126{bottom:210.278887pt;}
.y13a{bottom:211.928140pt;}
.ye0{bottom:214.676929pt;}
.yf3{bottom:219.349854pt;}
.y20{bottom:220.999159pt;}
.y156{bottom:222.236060pt;}
.y139{bottom:224.160248pt;}
.y1c5{bottom:224.572548pt;}
.y90{bottom:225.534617pt;}
.ydf{bottom:226.634153pt;}
.ya1{bottom:226.771569pt;}
.y117{bottom:227.321338pt;}
.y6a{bottom:228.008521pt;}
.y4a{bottom:229.382890pt;}
.ya5{bottom:229.795243pt;}
.y125{bottom:230.070127pt;}
.y45{bottom:231.719379pt;}
.y1b7{bottom:234.330700pt;}
.y154{bottom:234.880468pt;}
.yf2{bottom:235.567652pt;}
.yf1{bottom:236.529720pt;}
.y1a5{bottom:237.216905pt;}
.yde{bottom:238.453858pt;}
.y109{bottom:239.141094pt;}
.y155{bottom:240.103163pt;}
.y1f{bottom:240.790346pt;}
.y8d{bottom:242.027299pt;}
.ya4{bottom:242.851899pt;}
.y8f{bottom:243.401667pt;}
.y138{bottom:243.951436pt;}
.y1c4{bottom:244.363735pt;}
.ya0{bottom:246.425341pt;}
.y116{bottom:247.112525pt;}
.y69{bottom:247.799708pt;}
.y49{bottom:249.174130pt;}
.yca{bottom:249.586430pt;}
.y124{bottom:249.861314pt;}
.y44{bottom:251.510566pt;}
.y153{bottom:253.434703pt;}
.ydd{bottom:253.984471pt;}
.y1b6{bottom:254.121940pt;}
.y1a4{bottom:254.946540pt;}
.yf0{bottom:256.320960pt;}
.y17c{bottom:256.595792pt;}
.y108{bottom:258.932281pt;}
.ya3{bottom:259.069697pt;}
.y8e{bottom:259.619465pt;}
.yb6{bottom:260.444118pt;}
.y1e{bottom:260.581533pt;}
.y8c{bottom:261.818486pt;}
.y137{bottom:263.605207pt;}
.ydc{bottom:264.154976pt;}
.y9f{bottom:266.216528pt;}
.y115{bottom:266.766296pt;}
.y68{bottom:267.590949pt;}
.y48{bottom:268.965317pt;}
.yc9{bottom:269.240201pt;}
.y123{bottom:269.515085pt;}
.y72{bottom:270.064853pt;}
.y17b{bottom:270.477154pt;}
.y43{bottom:271.301806pt;}
.y1a3{bottom:272.813590pt;}
.y152{bottom:273.225942pt;}
.yef{bottom:275.974731pt;}
.y107{bottom:278.723468pt;}
.y1d{bottom:280.235305pt;}
.y8b{bottom:281.609726pt;}
.ydb{bottom:282.846678pt;}
.y136{bottom:283.396394pt;}
.y1c3{bottom:283.808746pt;}
.y17a{bottom:284.358462pt;}
.y9e{bottom:286.007767pt;}
.y114{bottom:286.557484pt;}
.y67{bottom:287.244719pt;}
.y1b5{bottom:287.519552pt;}
.yc8{bottom:289.031388pt;}
.y122{bottom:289.306272pt;}
.y71{bottom:289.856040pt;}
.y42{bottom:290.955525pt;}
.y151{bottom:293.017130pt;}
.yee{bottom:295.765918pt;}
.y47{bottom:295.903334pt;}
.y106{bottom:298.514708pt;}
.y179{bottom:298.652124pt;}
.y1c{bottom:300.026544pt;}
.y8a{bottom:301.263445pt;}
.yda{bottom:302.637865pt;}
.y135{bottom:303.187634pt;}
.y1c2{bottom:303.599933pt;}
.y9d{bottom:305.798954pt;}
.y113{bottom:306.348723pt;}
.y66{bottom:307.035907pt;}
.y1b4{bottom:307.310791pt;}
.yc7{bottom:308.822628pt;}
.y121{bottom:309.097512pt;}
.y70{bottom:309.647227pt;}
.y41{bottom:310.746765pt;}
.y178{bottom:312.533485pt;}
.y150{bottom:312.670901pt;}
.yed{bottom:315.557106pt;}
.y1a2{bottom:317.068942pt;}
.y105{bottom:318.168479pt;}
.y1b{bottom:319.817731pt;}
.y89{bottom:321.054684pt;}
.yd9{bottom:322.291636pt;}
.y46{bottom:322.841405pt;}
.y134{bottom:322.978821pt;}
.y1c1{bottom:323.391120pt;}
.y9c{bottom:325.452726pt;}
.y112{bottom:326.002494pt;}
.y65{bottom:326.827094pt;}
.y177{bottom:326.964563pt;}
.y1b3{bottom:327.101978pt;}
.yc6{bottom:328.476399pt;}
.y120{bottom:328.888699pt;}
.y6f{bottom:329.300999pt;}
.y40{bottom:330.537952pt;}
.y1a1{bottom:331.362604pt;}
.y14f{bottom:332.462088pt;}
.yec{bottom:335.348345pt;}
.y104{bottom:337.959666pt;}
.yb5{bottom:339.471503pt;}
.y1a{bottom:339.608919pt;}
.y176{bottom:340.708456pt;}
.y88{bottom:340.845871pt;}
.yd8{bottom:342.082824pt;}
.y133{bottom:342.632592pt;}
.y1c0{bottom:343.044892pt;}
.y9b{bottom:345.243913pt;}
.y111{bottom:345.793682pt;}
.y64{bottom:346.618334pt;}
.y1b2{bottom:346.893218pt;}
.yc5{bottom:348.267586pt;}
.y11f{bottom:348.542471pt;}
.y6e{bottom:349.092238pt;}
.y3f{bottom:350.329191pt;}
.y14e{bottom:352.253328pt;}
.yeb{bottom:355.002117pt;}
.y175{bottom:355.139532pt;}
.yb4{bottom:359.262690pt;}
.y1a0{bottom:359.674990pt;}
.y87{bottom:360.637111pt;}
.yd7{bottom:361.874063pt;}
.y132{bottom:362.423779pt;}
.y1bf{bottom:362.836131pt;}
.y103{bottom:364.897684pt;}
.y9a{bottom:365.035153pt;}
.y110{bottom:365.584869pt;}
.y63{bottom:366.272105pt;}
.y19{bottom:366.409521pt;}
.y1b1{bottom:366.546937pt;}
.yc4{bottom:368.058773pt;}
.y11e{bottom:368.333658pt;}
.y6d{bottom:368.883425pt;}
.y174{bottom:369.020842pt;}
.y3e{bottom:369.982910pt;}
.y14d{bottom:372.044515pt;}
.y19f{bottom:373.418883pt;}
.yea{bottom:374.793304pt;}
.yb3{bottom:379.053929pt;}
.y86{bottom:380.290830pt;}
.yd6{bottom:381.527782pt;}
.y131{bottom:382.215019pt;}
.y1be{bottom:382.627318pt;}
.y173{bottom:383.451971pt;}
.y99{bottom:384.826340pt;}
.y10f{bottom:385.376108pt;}
.y62{bottom:386.063292pt;}
.y1b0{bottom:386.338176pt;}
.yc3{bottom:387.850013pt;}
.y11d{bottom:388.124897pt;}
.y3d{bottom:389.774150pt;}
.y14c{bottom:391.698286pt;}
.ye9{bottom:394.584491pt;}
.y6c{bottom:395.821444pt;}
.y172{bottom:397.195864pt;}
.y10e{bottom:398.295349pt;}
.y102{bottom:398.432817pt;}
.yb2{bottom:398.845117pt;}
.y85{bottom:400.082070pt;}
.yd5{bottom:401.319022pt;}
.y19e{bottom:401.731322pt;}
.y130{bottom:402.006206pt;}
.y1bd{bottom:402.418506pt;}
.y98{bottom:403.655459pt;}
.y61{bottom:405.854479pt;}
.y1af{bottom:406.129364pt;}
.y11c{bottom:406.954016pt;}
.yc2{bottom:407.503784pt;}
.y3c{bottom:409.565337pt;}
.y10d{bottom:410.115105pt;}
.y14b{bottom:411.489473pt;}
.y171{bottom:411.626941pt;}
.y18{bottom:413.688495pt;}
.ye8{bottom:414.238262pt;}
.y97{bottom:415.475215pt;}
.y19d{bottom:416.162399pt;}
.y101{bottom:418.086536pt;}
.yb1{bottom:418.498888pt;}
.y11b{bottom:418.911188pt;}
.y84{bottom:419.873257pt;}
.yd4{bottom:421.110209pt;}
.y12f{bottom:421.659977pt;}
.y10c{bottom:421.934861pt;}
.y1bc{bottom:422.072277pt;}
.y170{bottom:425.508250pt;}
.y60{bottom:425.645719pt;}
.y1ae{bottom:425.783135pt;}
.yc1{bottom:427.294971pt;}
.y96{bottom:427.432388pt;}
.y3b{bottom:429.356576pt;}
.y19c{bottom:429.906292pt;}
.y11a{bottom:430.730944pt;}
.y14a{bottom:431.280713pt;}
.y17{bottom:433.479734pt;}
.y10b{bottom:433.892034pt;}
.ye7{bottom:434.029502pt;}
.y100{bottom:437.877776pt;}
.yb0{bottom:438.290075pt;}
.y5f{bottom:438.564960pt;}
.y95{bottom:439.252143pt;}
.y16f{bottom:439.801912pt;}
.yd3{bottom:440.901448pt;}
.y12e{bottom:441.451165pt;}
.y1bb{bottom:441.863517pt;}
.y119{bottom:442.550701pt;}
.y19b{bottom:444.337422pt;}
.y142{bottom:444.612254pt;}
.y163{bottom:445.980411pt;}
.y83{bottom:446.811274pt;}
.yc0{bottom:447.086158pt;}
.y3a{bottom:449.010295pt;}
.y5e{bottom:450.384716pt;}
.y94{bottom:451.071900pt;}
.y10a{bottom:452.446269pt;}
.y16{bottom:453.270921pt;}
.y16e{bottom:453.683221pt;}
.ye6{bottom:453.820689pt;}
.y118{bottom:454.370458pt;}
.y141{bottom:456.432010pt;}
.yff{bottom:457.668963pt;}
.yaf{bottom:458.081315pt;}
.y19a{bottom:458.218730pt;}
.yd2{bottom:460.555167pt;}
.y12d{bottom:461.242404pt;}
.y1ba{bottom:461.654704pt;}
.ybf{bottom:466.877399pt;}
.y5d{bottom:468.114324pt;}
.y140{bottom:468.251766pt;}
.y39{bottom:468.801535pt;}
.y93{bottom:469.763603pt;}
.y149{bottom:470.725671pt;}
.y199{bottom:472.512366pt;}
.y15{bottom:472.924693pt;}
.y1ad{bottom:473.062134pt;}
.y82{bottom:473.611876pt;}
.yfe{bottom:477.460176pt;}
.yae{bottom:477.735060pt;}
.y13f{bottom:480.071523pt;}
.yd1{bottom:480.346407pt;}
.y12c{bottom:481.033591pt;}
.y1b9{bottom:481.445917pt;}
.y16d{bottom:481.858217pt;}
.y5c{bottom:484.744448pt;}
.y92{bottom:486.393701pt;}
.ybe{bottom:486.531143pt;}
.y38{bottom:488.592722pt;}
.y148{bottom:490.516885pt;}
.y13e{bottom:492.028695pt;}
.y14{bottom:492.715906pt;}
.ye5{bottom:493.265647pt;}
.y16c{bottom:496.289321pt;}
.yfd{bottom:497.113947pt;}
.yad{bottom:497.526273pt;}
.y5b{bottom:498.625784pt;}
.yd0{bottom:500.137594pt;}
.y12b{bottom:500.687363pt;}
.y198{bottom:500.824805pt;}
.y1b8{bottom:501.099662pt;}
.y13d{bottom:503.848452pt;}
.ybd{bottom:506.322356pt;}
.y37{bottom:508.246494pt;}
.y16b{bottom:510.170656pt;}
.y147{bottom:510.308072pt;}
.y13{bottom:512.507119pt;}
.y197{bottom:514.568698pt;}
.y13c{bottom:515.668208pt;}
.yfc{bottom:516.905161pt;}
.yac{bottom:517.317460pt;}
.ye4{bottom:520.203692pt;}
.y1ac{bottom:520.341134pt;}
.y12a{bottom:520.478576pt;}
.y81{bottom:520.890876pt;}
.y16a{bottom:524.601733pt;}
.ybc{bottom:526.113570pt;}
.y5a{bottom:526.251012pt;}
.ycf{bottom:527.075638pt;}
.y36{bottom:528.037706pt;}
.y196{bottom:528.999775pt;}
.y146{bottom:530.099285pt;}
.y13b{bottom:531.886006pt;}
.y12{bottom:532.298306pt;}
.yfb{bottom:536.696348pt;}
.y169{bottom:538.345626pt;}
.y1ab{bottom:540.132321pt;}
.y59{bottom:540.682089pt;}
.y195{bottom:542.881110pt;}
.yab{bottom:544.255505pt;}
.ybb{bottom:545.904757pt;}
.y129{bottom:547.416594pt;}
.y35{bottom:547.828920pt;}
.y17f{bottom:549.338023pt;}
.y145{bottom:549.753057pt;}
.y11{bottom:551.952078pt;}
.y168{bottom:552.776704pt;}
.ye3{bottom:552.914146pt;}
.y58{bottom:554.563424pt;}
.yfa{bottom:556.487561pt;}
.y194{bottom:557.312188pt;}
.yce{bottom:559.648650pt;}
.y1aa{bottom:559.786093pt;}
.y80{bottom:560.473303pt;}
.y144{bottom:562.809765pt;}
.ye2{bottom:564.733902pt;}
.yba{bottom:565.558529pt;}
.y167{bottom:566.658039pt;}
.y34{bottom:567.620107pt;}
.y57{bottom:568.307317pt;}
.y193{bottom:571.056081pt;}
.ycd{bottom:571.468407pt;}
.y10{bottom:571.743291pt;}
.yf9{bottom:576.141332pt;}
.yaa{bottom:577.653169pt;}
.yb9{bottom:578.615237pt;}
.y143{bottom:579.027538pt;}
.y1a9{bottom:579.577306pt;}
.y7f{bottom:580.127047pt;}
.ye1{bottom:580.951700pt;}
.y56{bottom:582.188653pt;}
.ycc{bottom:583.425605pt;}
.y192{bottom:585.487184pt;}
.y33{bottom:587.273879pt;}
.y128{bottom:587.823647pt;}
.yb8{bottom:590.434967pt;}
.yf{bottom:591.534505pt;}
.y166{bottom:594.833035pt;}
.y55{bottom:595.932546pt;}
.ya9{bottom:597.444356pt;}
.y191{bottom:599.368519pt;}
.ycb{bottom:599.643377pt;}
.y7e{bottom:599.918261pt;}
.y127{bottom:604.041445pt;}
.yb7{bottom:606.652765pt;}
.y32{bottom:607.065092pt;}
.y165{bottom:609.264113pt;}
.y54{bottom:609.813881pt;}
.ye{bottom:611.325692pt;}
.y190{bottom:613.662154pt;}
.yf8{bottom:614.761665pt;}
.ya8{bottom:616.410943pt;}
.y7d{bottom:619.709474pt;}
.y164{bottom:623.008006pt;}
.y53{bottom:623.695190pt;}
.yf7{bottom:626.718863pt;}
.y31{bottom:626.856305pt;}
.y18f{bottom:627.543490pt;}
.ya7{bottom:628.230673pt;}
.yd{bottom:630.979463pt;}
.y52{bottom:637.439083pt;}
.yf6{bottom:638.538593pt;}
.y7c{bottom:639.500688pt;}
.y1a8{bottom:639.775546pt;}
.y18e{bottom:641.974566pt;}
.ya6{bottom:644.448471pt;}
.y30{bottom:646.647493pt;}
.yc{bottom:650.770676pt;}
.y51{bottom:651.320418pt;}
.yf5{bottom:654.756391pt;}
.y18d{bottom:655.718459pt;}
.y1a7{bottom:656.405670pt;}
.y7b{bottom:659.154433pt;}
.y50{bottom:665.064311pt;}
.y2f{bottom:666.301264pt;}
.y18c{bottom:670.149564pt;}
.y4f{bottom:678.945646pt;}
.y162{bottom:679.495415pt;}
.y18b{bottom:684.030898pt;}
.yb{bottom:684.580640pt;}
.y2e{bottom:686.092477pt;}
.y4e{bottom:692.826982pt;}
.y161{bottom:693.376737pt;}
.y18a{bottom:698.461976pt;}
.y7a{bottom:698.736859pt;}
.ya{bottom:704.646738pt;}
.y2d{bottom:705.883678pt;}
.y4d{bottom:706.570875pt;}
.y160{bottom:707.120630pt;}
.y189{bottom:712.205869pt;}
.y79{bottom:718.390631pt;}
.y4c{bottom:721.001965pt;}
.y15f{bottom:721.551720pt;}
.y9{bottom:721.826604pt;}
.y2c{bottom:725.674891pt;}
.y188{bottom:726.636959pt;}
.y158{bottom:727.320427pt;}
.y1a6{bottom:732.821568pt;}
.y8{bottom:734.883300pt;}
.y15e{bottom:735.433056pt;}
.y78{bottom:738.181832pt;}
.y187{bottom:740.518294pt;}
.y2b{bottom:745.328649pt;}
.y7{bottom:748.077438pt;}
.y4b{bottom:748.627193pt;}
.y15d{bottom:749.864146pt;}
.y186{bottom:754.811942pt;}
.y77{bottom:757.973032pt;}
.y15c{bottom:763.608039pt;}
.y6{bottom:764.707549pt;}
.y2a{bottom:765.119862pt;}
.y185{bottom:768.693278pt;}
.y76{bottom:777.764245pt;}
.y15b{bottom:778.039116pt;}
.y5{bottom:780.513021pt;}
.y184{bottom:783.124355pt;}
.y29{bottom:784.911063pt;}
.y15a{bottom:791.920451pt;}
.y183{bottom:796.868248pt;}
.y75{bottom:797.418010pt;}
.y28{bottom:804.702276pt;}
.y159{bottom:805.664344pt;}
.y4{bottom:808.550563pt;}
.y182{bottom:811.299345pt;}
.y74{bottom:817.209217pt;}
.y157{bottom:820.095434pt;}
.y27{bottom:824.356040pt;}
.y181{bottom:825.180673pt;}
.y3{bottom:833.976763pt;}
.y73{bottom:837.000424pt;}
.y180{bottom:838.924566pt;}
.y26{bottom:844.147247pt;}
.y17e{bottom:853.355654pt;}
.y25{bottom:863.938451pt;}
.y17d{bottom:867.236985pt;}
.y24{bottom:949.349333pt;}
.y23{bottom:949.750667pt;}
.y22{bottom:965.289333pt;}
.y21{bottom:981.230667pt;}
.h6{height:21.427204pt;}
.ha{height:23.014384pt;}
.hf{height:23.057810pt;}
.hd{height:29.036656pt;}
.hb{height:29.760061pt;}
.h7{height:32.133709pt;}
.h3{height:32.934272pt;}
.he{height:33.583892pt;}
.h8{height:36.556100pt;}
.hc{height:37.370171pt;}
.h9{height:38.043849pt;}
.h5{height:47.476325pt;}
.h4{height:54.976017pt;}
.h2{height:907.094277pt;}
.h1{height:1046.666667pt;}
.h0{height:1046.929333pt;}
.w2{width:700.938547pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:46.382667pt;}
.x5{left:61.984000pt;}
.x3{left:63.084471pt;}
.x19{left:64.046540pt;}
.x6{left:65.677333pt;}
.x20{left:68.582023pt;}
.x37{left:70.368731pt;}
.x40{left:73.941464pt;}
.x8{left:75.866290pt;}
.x4{left:79.577140pt;}
.x41{left:91.671768pt;}
.x4a{left:94.420544pt;}
.x5e{left:95.932374pt;}
.x60{left:98.406273pt;}
.x51{left:99.918103pt;}
.x48{left:100.880177pt;}
.x64{left:102.941756pt;}
.x7{left:104.178709pt;}
.x4d{left:105.278219pt;}
.x5f{left:106.240294pt;}
.x52{left:107.339804pt;}
.x56{left:108.714193pt;}
.x5a{left:109.951145pt;}
.x59{left:113.387118pt;}
.x65{left:114.898942pt;}
.x53{left:117.097975pt;}
.x38{left:130.017229pt;}
.x66{left:131.116739pt;}
.x21{left:159.704036pt;}
.xa{left:163.689765pt;}
.x1a{left:174.959753pt;}
.x27{left:178.258297pt;}
.x22{left:181.007073pt;}
.x13{left:182.518897pt;}
.x2b{left:189.803169pt;}
.x9{left:191.864748pt;}
.x5d{left:197.224871pt;}
.x39{left:202.172668pt;}
.x67{left:203.134736pt;}
.x4e{left:205.471199pt;}
.x6a{left:210.693880pt;}
.x43{left:221.001800pt;}
.x42{left:230.347652pt;}
.x69{left:231.309720pt;}
.x1c{left:240.930455pt;}
.x15{left:242.854592pt;}
.x23{left:248.077260pt;}
.x1b{left:249.863981pt;}
.x28{left:254.811791pt;}
.x2d{left:262.783247pt;}
.x14{left:265.944336pt;}
.x2c{left:271.579331pt;}
.xc{left:272.953725pt;}
.xb{left:289.721265pt;}
.x4f{left:293.981864pt;}
.x49{left:297.142980pt;}
.x45{left:299.067117pt;}
.x50{left:301.128696pt;}
.x54{left:303.052832pt;}
.x5c{left:308.275526pt;}
.x5b{left:310.199663pt;}
.x44{left:322.156862pt;}
.x3a{left:329.166250pt;}
.x62{left:330.540618pt;}
.x35{left:344.834279pt;}
.x3b{left:345.933790pt;}
.x2{left:347.445627pt;}
.x32{left:350.331831pt;}
.x24{left:354.455016pt;}
.xe{left:361.876704pt;}
.x29{left:368.198909pt;}
.x1d{left:369.710719pt;}
.x16{left:373.559018pt;}
.x25{left:376.857549pt;}
.x2e{left:385.653632pt;}
.xd{left:387.715211pt;}
.x4b{left:420.150807pt;}
.x6c{left:422.762155pt;}
.x58{left:434.856769pt;}
.x68{left:435.818837pt;}
.x3c{left:438.292742pt;}
.x30{left:440.354347pt;}
.x6b{left:442.141016pt;}
.x63{left:443.103136pt;}
.x4c{left:444.614921pt;}
.x2a{left:445.576989pt;}
.x57{left:446.539109pt;}
.x17{left:447.638593pt;}
.x61{left:449.012962pt;}
.x46{left:449.975083pt;}
.x55{left:452.998703pt;}
.x2f{left:455.197724pt;}
.x10{left:460.832718pt;}
.x3d{left:464.131275pt;}
.xf{left:475.263848pt;}
.x1e{left:539.585219pt;}
.x26{left:545.357682pt;}
.x18{left:547.419286pt;}
.x33{left:551.267560pt;}
.x47{left:552.779397pt;}
.x12{left:563.499616pt;}
.x3e{left:565.973521pt;}
.x1f{left:567.622774pt;}
.x36{left:570.371563pt;}
.x31{left:576.418857pt;}
.x11{left:578.343046pt;}
.x3f{left:580.542067pt;}
.x34{left:638.678729pt;}
}




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