
    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_2997e05bd84e987e22179f28.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_29f32b819b62cb19ae2faf59.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fac1397be566ed0a4212399f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.388000;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_d1e67f7fd52e70c933625b5f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.899000;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_d13489c463620a1353614f49.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9228e29d1ec60c7335e05562.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.714046;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-21.707976px;}
.v7{vertical-align:-18.413999px;}
.v4{vertical-align:-8.963272px;}
.v5{vertical-align:-5.562012px;}
.v1{vertical-align:-2.970068px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.970068px;}
.v6{vertical-align:18.468384px;}
.v3{vertical-align:21.709201px;}
.v8{vertical-align:28.294914px;}
.v9{vertical-align:46.762929px;}
.ls21{letter-spacing:-5.535214px;}
.ls2c{letter-spacing:-3.540973px;}
.ls2e{letter-spacing:-1.698817px;}
.ls2b{letter-spacing:-1.583207px;}
.ls30{letter-spacing:-1.051745px;}
.ls11{letter-spacing:-0.944454px;}
.lse{letter-spacing:-0.025405px;}
.ls2d{letter-spacing:-0.025106px;}
.lsa{letter-spacing:-0.023910px;}
.ls20{letter-spacing:-0.020324px;}
.lsb{letter-spacing:-0.017933px;}
.ls27{letter-spacing:-0.015446px;}
.lsf{letter-spacing:-0.015243px;}
.ls9{letter-spacing:-0.011955px;}
.ls2a{letter-spacing:-0.011584px;}
.lsd{letter-spacing:-0.010162px;}
.ls29{letter-spacing:-0.007723px;}
.ls8{letter-spacing:-0.005978px;}
.lsc{letter-spacing:-0.005081px;}
.ls7{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.003861px;}
.ls5{letter-spacing:0.005081px;}
.ls14{letter-spacing:0.005978px;}
.ls2f{letter-spacing:0.007173px;}
.ls0{letter-spacing:0.008369px;}
.ls6{letter-spacing:0.010162px;}
.ls25{letter-spacing:0.011584px;}
.ls1c{letter-spacing:0.011955px;}
.ls15{letter-spacing:0.015282px;}
.ls13{letter-spacing:0.017933px;}
.ls28{letter-spacing:0.023169px;}
.ls12{letter-spacing:0.023910px;}
.ls10{letter-spacing:1.327018px;}
.ls19{letter-spacing:1.433933px;}
.ls1e{letter-spacing:2.218713px;}
.ls1d{letter-spacing:3.431515px;}
.ls17{letter-spacing:3.485486px;}
.ls18{letter-spacing:6.129569px;}
.ls1f{letter-spacing:6.812777px;}
.ls1a{letter-spacing:6.812783px;}
.ls22{letter-spacing:6.812879px;}
.ls1b{letter-spacing:6.812963px;}
.ls2{letter-spacing:14.913191px;}
.ls3{letter-spacing:14.913275px;}
.ls1{letter-spacing:14.913281px;}
.ls16{letter-spacing:14.955853px;}
.ls4{letter-spacing:14.967251px;}
.ls24{letter-spacing:19.307457px;}
.ls23{letter-spacing:41.824202px;}
.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;}
}
.wsd{word-spacing:-0.077708px;}
.ws4{word-spacing:-0.073674px;}
.ws7{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.050809px;}
.ws28{word-spacing:-0.050211px;}
.ws8{word-spacing:-0.047820px;}
.ws21{word-spacing:-0.045728px;}
.wsb{word-spacing:-0.041843px;}
.ws0{word-spacing:-0.040647px;}
.wsa{word-spacing:-0.035865px;}
.ws2{word-spacing:-0.035566px;}
.wsc{word-spacing:-0.030486px;}
.ws1{word-spacing:-0.025405px;}
.ws26{word-spacing:-0.016737px;}
.ws5{word-spacing:0.000000px;}
.ws27{word-spacing:1.656975px;}
.ws6{word-spacing:12.636246px;}
.ws9{word-spacing:12.661651px;}
.wse{word-spacing:268.895485px;}
.ws14{word-spacing:270.988427px;}
.ws18{word-spacing:272.540742px;}
.ws1e{word-spacing:275.228332px;}
.ws12{word-spacing:277.321254px;}
.ws20{word-spacing:281.638389px;}
.ws1f{word-spacing:281.839186px;}
.ws16{word-spacing:288.187459px;}
.ws1b{word-spacing:292.415780px;}
.ws19{word-spacing:296.759945px;}
.ws15{word-spacing:298.883759px;}
.ws10{word-spacing:300.961235px;}
.ws11{word-spacing:300.988265px;}
.wsf{word-spacing:301.046187px;}
.ws17{word-spacing:301.463227px;}
.ws13{word-spacing:303.054157px;}
.ws1c{word-spacing:305.309261px;}
.ws24{word-spacing:308.126742px;}
.ws1a{word-spacing:311.781102px;}
.ws1d{word-spacing:313.746583px;}
.ws25{word-spacing:332.345945px;}
.ws22{word-spacing:334.469763px;}
.ws23{word-spacing:337.049228px;}
._1b{margin-left:-29.886824px;}
._22{margin-left:-18.405897px;}
._1a{margin-left:-14.959634px;}
._f{margin-left:-8.209270px;}
._26{margin-left:-6.897188px;}
._10{margin-left:-5.858921px;}
._c{margin-left:-4.709108px;}
._e{margin-left:-3.290656px;}
._2{margin-left:-2.285839px;}
._3{margin-left:-1.262471px;}
._16{width:1.287150px;}
._1e{width:3.277873px;}
._24{width:4.855280px;}
._1f{width:5.869044px;}
._21{width:7.731984px;}
._15{width:8.990249px;}
._13{width:10.646034px;}
._6{width:11.979028px;}
._7{width:13.581015px;}
._4{width:14.997696px;}
._a{width:16.217119px;}
._b{width:17.544135px;}
._19{width:18.548549px;}
._9{width:19.558391px;}
._0{width:20.879705px;}
._8{width:22.492147px;}
._1{width:23.881757px;}
._14{width:24.911651px;}
._1d{width:26.020566px;}
._1c{width:27.042478px;}
._20{width:28.387429px;}
._25{width:29.459170px;}
._d{width:35.634643px;}
._5{width:37.694487px;}
._17{width:46.637758px;}
._12{width:65.762609px;}
._23{width:214.368678px;}
._18{width:327.063284px;}
._11{width:1596.211435px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.614800px;}
.fs6{font-size:41.842795px;}
.fs3{font-size:50.809193px;}
.fs2{font-size:59.775593px;}
.fs5{font-size:71.730595px;}
.fs4{font-size:73.673996px;}
.fs0{font-size:83.686192px;}
.fs1{font-size:95.641800px;}
.y0{bottom:0.000000px;}
.y25{bottom:56.479651px;}
.y24{bottom:71.424508px;}
.y23{bottom:86.368749px;}
.y22{bottom:101.313002px;}
.y136{bottom:110.020499px;}
.y8b{bottom:115.014315px;}
.y135{bottom:118.997975px;}
.y70{bottom:121.981155px;}
.y113{bottom:122.844132px;}
.yee{bottom:124.964024px;}
.y8a{bottom:132.942495px;}
.y21{bottom:133.929249px;}
.y134{bottom:136.926155px;}
.y6f{bottom:139.909335px;}
.y112{bottom:140.772327px;}
.yed{bottom:142.905653px;}
.ya4{bottom:143.959368px;}
.yca{bottom:145.889307px;}
.y20{bottom:148.873503px;}
.y89{bottom:150.870676px;}
.y6e{bottom:157.850964px;}
.y111{bottom:158.713956px;}
.yec{bottom:160.833833px;}
.ya3{bottom:161.900505px;}
.yc9{bottom:163.817488px;}
.y133{bottom:163.817865px;}
.y88{bottom:168.812304px;}
.y1f{bottom:172.795754px;}
.y6d{bottom:175.779144px;}
.y110{bottom:176.642150px;}
.yeb{bottom:178.762013px;}
.ya2{bottom:179.828685px;}
.yc8{bottom:181.759132px;}
.y132{bottom:181.759320px;}
.y87{bottom:186.740485px;}
.y1e{bottom:187.740007px;}
.y6c{bottom:193.707013px;}
.y10f{bottom:194.583779px;}
.yea{bottom:196.703642px;}
.ya1{bottom:197.756865px;}
.yc7{bottom:199.687312px;}
.y131{bottom:199.687500px;}
.y86{bottom:204.668665px;}
.y6b{bottom:211.648139px;}
.y1d{bottom:211.648661px;}
.y152{bottom:211.651206px;}
.y10e{bottom:212.511974px;}
.ye9{bottom:214.631822px;}
.ya0{bottom:215.698467px;}
.y130{bottom:217.615321px;}
.yc6{bottom:217.615492px;}
.y17a{bottom:217.616025px;}
.y85{bottom:222.610309px;}
.y1c{bottom:226.593399px;}
.y151{bottom:226.595460px;}
.y6a{bottom:229.576319px;}
.y10d{bottom:230.440168px;}
.ye8{bottom:232.560003px;}
.y179{bottom:232.560266px;}
.y9f{bottom:233.626324px;}
.y12f{bottom:235.556965px;}
.y84{bottom:240.538490px;}
.y1b{bottom:241.537653px;}
.y150{bottom:241.539714px;}
.yc5{bottom:244.520824px;}
.y4a{bottom:247.504500px;}
.y178{bottom:247.504507px;}
.y10c{bottom:248.381797px;}
.ye7{bottom:250.501647px;}
.y9e{bottom:251.554373px;}
.y12e{bottom:253.485146px;}
.y1a{bottom:256.482013px;}
.y14f{bottom:256.483968px;}
.y83{bottom:258.466360px;}
.yc4{bottom:262.449005px;}
.y177{bottom:262.449515px;}
.y49{bottom:265.445980px;}
.y69{bottom:265.446144px;}
.y10b{bottom:266.309991px;}
.ye6{bottom:268.429317px;}
.y9d{bottom:269.495318px;}
.y14e{bottom:271.428221px;}
.y82{bottom:276.407657px;}
.y176{bottom:277.393756px;}
.y12d{bottom:280.390315px;}
.y48{bottom:283.373814px;}
.y68{bottom:283.373974px;}
.y10a{bottom:284.238186px;}
.ye5{bottom:286.357497px;}
.y14d{bottom:286.358489px;}
.y9c{bottom:287.423498px;}
.y19{bottom:288.531008px;}
.yc3{bottom:289.353816px;}
.y175{bottom:292.337997px;}
.y81{bottom:294.335851px;}
.y12c{bottom:298.318186px;}
.y47{bottom:301.301847px;}
.y14c{bottom:301.302743px;}
.y18{bottom:303.475504px;}
.y9b{bottom:305.351678px;}
.yc2{bottom:307.281997px;}
.y174{bottom:307.283163px;}
.y80{bottom:312.277495px;}
.ye4{bottom:313.262965px;}
.y12b{bottom:316.246366px;}
.y14b{bottom:316.246997px;}
.y17{bottom:318.421019px;}
.y46{bottom:319.242994px;}
.y67{bottom:319.243313px;}
.y173{bottom:322.227404px;}
.y9a{bottom:323.293323px;}
.yc1{bottom:325.223641px;}
.ye3{bottom:331.190862px;}
.y14a{bottom:331.191251px;}
.y16{bottom:333.365260px;}
.y12a{bottom:334.187824px;}
.y109{bottom:335.295200px;}
.y45{bottom:337.171174px;}
.y66{bottom:337.171459px;}
.y172{bottom:337.171646px;}
.y99{bottom:341.221317px;}
.yc0{bottom:343.151821px;}
.y149{bottom:346.135505px;}
.y15{bottom:348.309514px;}
.ye2{bottom:349.132506px;}
.y129{bottom:352.115693px;}
.y171{bottom:352.116257px;}
.y7f{bottom:354.114006px;}
.y65{bottom:355.099155px;}
.y44{bottom:355.099354px;}
.y108{bottom:355.342685px;}
.y98{bottom:359.149351px;}
.ybf{bottom:361.080002px;}
.y14{bottom:363.253768px;}
.y170{bottom:367.060498px;}
.y128{bottom:370.043874px;}
.y64{bottom:373.040799px;}
.y43{bottom:373.040999px;}
.y107{bottom:375.403536px;}
.ye1{bottom:376.024002px;}
.y97{bottom:377.090996px;}
.y13{bottom:378.198009px;}
.y148{bottom:379.020350px;}
.y16f{bottom:382.005389px;}
.y127{bottom:387.985332px;}
.ybe{bottom:387.985470px;}
.y106{bottom:388.377315px;}
.y42{bottom:390.968845px;}
.y63{bottom:390.968994px;}
.ye0{bottom:393.965631px;}
.y96{bottom:395.018378px;}
.y147{bottom:396.948530px;}
.y16e{bottom:396.949631px;}
.y105{bottom:403.321556px;}
.y126{bottom:405.913512px;}
.ybd{bottom:405.913650px;}
.y62{bottom:408.909261px;}
.y41{bottom:408.910473px;}
.ydf{bottom:411.893826px;}
.y16d{bottom:411.894427px;}
.y95{bottom:412.946558px;}
.y146{bottom:414.876711px;}
.y7e{bottom:419.871761px;}
.y125{bottom:423.854644px;}
.y61{bottom:426.837442px;}
.y40{bottom:426.838668px;}
.yde{bottom:429.822006px;}
.y94{bottom:430.888187px;}
.y145{bottom:432.818339px;}
.ybc{bottom:432.818657px;}
.y7d{bottom:437.799955px;}
.y124{bottom:441.782825px;}
.y16c{bottom:441.783236px;}
.y60{bottom:444.765622px;}
.y3f{bottom:444.766208px;}
.ydd{bottom:447.762630px;}
.y93{bottom:448.816367px;}
.y144{bottom:450.746520px;}
.ybb{bottom:450.746838px;}
.y12{bottom:451.057481px;}
.y104{bottom:454.365178px;}
.y7c{bottom:455.728150px;}
.y16b{bottom:456.727477px;}
.y123{bottom:459.711005px;}
.y5f{bottom:462.707266px;}
.y3e{bottom:462.707836px;}
.ydc{bottom:465.690824px;}
.y92{bottom:466.757996px;}
.y143{bottom:468.674700px;}
.yba{bottom:468.675018px;}
.y11{bottom:468.998980px;}
.y16a{bottom:471.672275px;}
.y7b{bottom:473.669779px;}
.y103{bottom:474.412664px;}
.y122{bottom:477.652633px;}
.y3d{bottom:480.634464px;}
.y5e{bottom:480.635447px;}
.ydb{bottom:483.619019px;}
.y142{bottom:486.616329px;}
.y169{bottom:486.616516px;}
.y7a{bottom:491.597973px;}
.y102{bottom:494.473514px;}
.y121{bottom:495.579310px;}
.yb9{bottom:495.580486px;}
.y3c{bottom:498.562659px;}
.y5d{bottom:498.563627px;}
.yda{bottom:501.560647px;}
.y168{bottom:501.561266px;}
.y141{bottom:504.544509px;}
.y10{bottom:504.853219px;}
.y79{bottom:509.526168px;}
.y120{bottom:513.507490px;}
.yb8{bottom:513.508666px;}
.y91{bottom:514.345505px;}
.y101{bottom:514.534548px;}
.y3b{bottom:516.504288px;}
.y5c{bottom:516.505271px;}
.y167{bottom:516.505508px;}
.yd9{bottom:519.488842px;}
.y140{bottom:522.471352px;}
.yf{bottom:522.794848px;}
.y78{bottom:527.466809px;}
.y90{bottom:529.291487px;}
.y11f{bottom:531.449134px;}
.y166{bottom:531.450397px;}
.y3a{bottom:534.432482px;}
.y5b{bottom:534.433452px;}
.y100{bottom:534.582167px;}
.yd8{bottom:537.416490px;}
.y13f{bottom:540.412981px;}
.yb7{bottom:540.414138px;}
.ye{bottom:540.723043px;}
.y8f{bottom:544.221769px;}
.y77{bottom:545.395004px;}
.y165{bottom:546.394638px;}
.y11e{bottom:549.377315px;}
.y39{bottom:552.360677px;}
.y5a{bottom:552.361632px;}
.yff{bottom:554.643017px;}
.yd7{bottom:555.358118px;}
.y13e{bottom:558.341175px;}
.yb6{bottom:558.341991px;}
.yd{bottom:558.651207px;}
.y8e{bottom:559.166010px;}
.y164{bottom:561.338620px;}
.y76{bottom:563.323199px;}
.y11d{bottom:567.305495px;}
.y38{bottom:570.302305px;}
.y59{bottom:570.302605px;}
.yd6{bottom:573.286313px;}
.y8d{bottom:574.110251px;}
.yfe{bottom:574.690545px;}
.y13d{bottom:576.269370px;}
.yb5{bottom:576.270171px;}
.yc{bottom:576.592836px;}
.y75{bottom:581.264827px;}
.y11c{bottom:585.247139px;}
.y37{bottom:588.230500px;}
.y58{bottom:588.230786px;}
.y8c{bottom:589.054640px;}
.yd5{bottom:591.214508px;}
.y13c{bottom:594.210999px;}
.yb{bottom:594.521030px;}
.yfd{bottom:594.751535px;}
.y74{bottom:599.193008px;}
.yb4{bottom:603.175172px;}
.y11b{bottom:603.175320px;}
.y57{bottom:606.157978px;}
.y36{bottom:606.158695px;}
.y163{bottom:606.159246px;}
.yd4{bottom:609.155658px;}
.y13b{bottom:612.139193px;}
.ya{bottom:612.449195px;}
.yfc{bottom:614.799018px;}
.yb3{bottom:621.103353px;}
.y11a{bottom:621.103500px;}
.y56{bottom:624.099622px;}
.y35{bottom:624.100323px;}
.yd3{bottom:627.083853px;}
.y13a{bottom:630.080822px;}
.y9{bottom:630.390823px;}
.yfb{bottom:634.860190px;}
.y162{bottom:636.048503px;}
.yb2{bottom:640.435498px;}
.y55{bottom:642.027802px;}
.y34{bottom:642.027868px;}
.yd2{bottom:645.025279px;}
.y119{bottom:648.008684px;}
.y139{bottom:648.009016px;}
.y8{bottom:648.319018px;}
.y161{bottom:650.992757px;}
.yfa{bottom:654.907535px;}
.yb1{bottom:658.363632px;}
.y54{bottom:659.955983px;}
.y33{bottom:659.956048px;}
.yd1{bottom:662.953473px;}
.y118{bottom:665.936865px;}
.y160{bottom:665.937010px;}
.y7{bottom:666.260646px;}
.yf9{bottom:674.968523px;}
.y53{bottom:677.897627px;}
.y32{bottom:677.897677px;}
.yd0{bottom:680.881668px;}
.y15f{bottom:680.881749px;}
.yb0{bottom:683.877790px;}
.y117{bottom:683.878509px;}
.y6{bottom:684.188841px;}
.y138{bottom:689.845504px;}
.yf8{bottom:695.016145px;}
.y52{bottom:695.825807px;}
.y31{bottom:695.825857px;}
.y15e{bottom:695.826003px;}
.yaf{bottom:701.805984px;}
.y5{bottom:702.117005px;}
.y116{bottom:710.770327px;}
.y15d{bottom:710.771008px;}
.y30{bottom:713.766292px;}
.y51{bottom:713.767452px;}
.yf7{bottom:715.076995px;}
.yae{bottom:719.734179px;}
.ycf{bottom:722.731728px;}
.y15c{bottom:725.715262px;}
.y115{bottom:728.698507px;}
.y2f{bottom:731.694473px;}
.y50{bottom:731.695308px;}
.yf6{bottom:735.124524px;}
.yad{bottom:737.675808px;}
.y15b{bottom:740.659515px;}
.yce{bottom:743.642989px;}
.y114{bottom:746.640152px;}
.y2e{bottom:749.622653px;}
.y4f{bottom:749.623488px;}
.yf5{bottom:755.185511px;}
.y137{bottom:755.603802px;}
.yac{bottom:755.603988px;}
.y15a{bottom:755.604207px;}
.y4e{bottom:767.564097px;}
.y2d{bottom:767.564281px;}
.y159{bottom:770.548461px;}
.yab{bottom:773.530878px;}
.yf4{bottom:775.246685px;}
.y4d{bottom:785.492292px;}
.y2c{bottom:785.492462px;}
.y158{bottom:785.493246px;}
.y4{bottom:787.126466px;}
.yaa{bottom:791.472506px;}
.yf3{bottom:795.293985px;}
.y157{bottom:800.437500px;}
.y4c{bottom:803.420487px;}
.y2b{bottom:803.420642px;}
.ya9{bottom:809.400701px;}
.ycd{bottom:809.401127px;}
.yf2{bottom:815.355202px;}
.y156{bottom:815.382284px;}
.y4b{bottom:821.362115px;}
.y2a{bottom:821.362271px;}
.ya8{bottom:827.328896px;}
.ycc{bottom:827.329321px;}
.y155{bottom:830.326537px;}
.yf1{bottom:835.402685px;}
.y29{bottom:839.290310px;}
.y3{bottom:840.788912px;}
.ya7{bottom:845.270524px;}
.ycb{bottom:845.270966px;}
.y154{bottom:845.271413px;}
.yf0{bottom:855.463535px;}
.y28{bottom:857.218505px;}
.y153{bottom:860.215666px;}
.ya6{bottom:863.198719px;}
.y2{bottom:867.680971px;}
.y73{bottom:874.107677px;}
.yef{bottom:875.511016px;}
.ya5{bottom:881.126913px;}
.y72{bottom:889.051931px;}
.y1{bottom:894.586671px;}
.y27{bottom:899.068542px;}
.y71{bottom:903.996184px;}
.y26{bottom:935.747955px;}
.h6{height:34.956725px;}
.h1d{height:35.159961px;}
.h26{height:35.563596px;}
.h27{height:35.563602px;}
.h5{height:41.125608px;}
.h2b{height:41.125717px;}
.h10{height:41.126197px;}
.h12{height:41.126263px;}
.h18{height:41.126353px;}
.h28{height:41.126481px;}
.hd{height:41.126694px;}
.h2a{height:41.126743px;}
.he{height:41.126751px;}
.h1a{height:41.126839px;}
.h14{height:41.126905px;}
.h3d{height:41.126936px;}
.h19{height:41.126963px;}
.h1c{height:41.126984px;}
.h11{height:41.126995px;}
.h1e{height:41.126999px;}
.h17{height:41.127545px;}
.hf{height:41.127598px;}
.h1b{height:41.127682px;}
.h29{height:41.127739px;}
.hb{height:41.128208px;}
.h13{height:41.129165px;}
.h15{height:41.129618px;}
.ha{height:41.130445px;}
.h16{height:41.131078px;}
.hc{height:41.131817px;}
.h4{height:41.364710px;}
.h9{height:41.758757px;}
.h2f{height:44.980063px;}
.h35{height:44.980252px;}
.h3c{height:44.980349px;}
.h30{height:44.980435px;}
.h34{height:44.980981px;}
.h33{height:44.980984px;}
.h39{height:44.980990px;}
.h2d{height:44.981533px;}
.h37{height:44.981536px;}
.h3b{height:45.034448px;}
.h36{height:45.034817px;}
.h2e{height:45.035000px;}
.h32{height:45.035003px;}
.h31{height:45.035009px;}
.h2c{height:45.035366px;}
.h38{height:45.035735px;}
.h8{height:49.637571px;}
.h23{height:50.232878px;}
.h24{height:50.234605px;}
.h20{height:50.235329px;}
.h22{height:50.287351px;}
.h21{height:50.287773px;}
.h1f{height:50.287830px;}
.h25{height:50.291300px;}
.h42{height:50.442551px;}
.h41{height:50.496559px;}
.h40{height:50.496565px;}
.h3e{height:50.497027px;}
.h3f{height:50.497063px;}
.h43{height:50.500514px;}
.h2{height:57.910845px;}
.h7{height:63.262854px;}
.h3{height:66.184126px;}
.h3a{height:73.329912px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x1{left:80.365490px;}
.x5{left:84.617998px;}
.x8{left:86.710499px;}
.x3{left:98.293499px;}
.x9{left:103.707000px;}
.x4{left:128.182887px;}
.x6{left:250.438496px;}
.x2{left:558.792013px;}
.x7{left:563.503507px;}
@media print{
.va{vertical-align:-19.295979pt;}
.v7{vertical-align:-16.367999pt;}
.v4{vertical-align:-7.967353pt;}
.v5{vertical-align:-4.944011pt;}
.v1{vertical-align:-2.640060pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.640060pt;}
.v6{vertical-align:16.416341pt;}
.v3{vertical-align:19.297067pt;}
.v8{vertical-align:25.151035pt;}
.v9{vertical-align:41.567048pt;}
.ls21{letter-spacing:-4.920190pt;}
.ls2c{letter-spacing:-3.147532pt;}
.ls2e{letter-spacing:-1.510060pt;}
.ls2b{letter-spacing:-1.407295pt;}
.ls30{letter-spacing:-0.934885pt;}
.ls11{letter-spacing:-0.839515pt;}
.lse{letter-spacing:-0.022582pt;}
.ls2d{letter-spacing:-0.022316pt;}
.lsa{letter-spacing:-0.021254pt;}
.ls20{letter-spacing:-0.018065pt;}
.lsb{letter-spacing:-0.015940pt;}
.ls27{letter-spacing:-0.013730pt;}
.lsf{letter-spacing:-0.013549pt;}
.ls9{letter-spacing:-0.010627pt;}
.ls2a{letter-spacing:-0.010297pt;}
.lsd{letter-spacing:-0.009033pt;}
.ls29{letter-spacing:-0.006865pt;}
.ls8{letter-spacing:-0.005313pt;}
.lsc{letter-spacing:-0.004516pt;}
.ls7{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.003432pt;}
.ls5{letter-spacing:0.004516pt;}
.ls14{letter-spacing:0.005313pt;}
.ls2f{letter-spacing:0.006376pt;}
.ls0{letter-spacing:0.007439pt;}
.ls6{letter-spacing:0.009033pt;}
.ls25{letter-spacing:0.010297pt;}
.ls1c{letter-spacing:0.010627pt;}
.ls15{letter-spacing:0.013584pt;}
.ls13{letter-spacing:0.015940pt;}
.ls28{letter-spacing:0.020595pt;}
.ls12{letter-spacing:0.021254pt;}
.ls10{letter-spacing:1.179572pt;}
.ls19{letter-spacing:1.274607pt;}
.ls1e{letter-spacing:1.972189pt;}
.ls1d{letter-spacing:3.050236pt;}
.ls17{letter-spacing:3.098209pt;}
.ls18{letter-spacing:5.448506pt;}
.ls1f{letter-spacing:6.055802pt;}
.ls1a{letter-spacing:6.055808pt;}
.ls22{letter-spacing:6.055893pt;}
.ls1b{letter-spacing:6.055968pt;}
.ls2{letter-spacing:13.256170pt;}
.ls3{letter-spacing:13.256244pt;}
.ls1{letter-spacing:13.256250pt;}
.ls16{letter-spacing:13.294092pt;}
.ls4{letter-spacing:13.304223pt;}
.ls24{letter-spacing:17.162184pt;}
.ls23{letter-spacing:37.177068pt;}
.wsd{word-spacing:-0.069074pt;}
.ws4{word-spacing:-0.065488pt;}
.ws7{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.045164pt;}
.ws28{word-spacing:-0.044632pt;}
.ws8{word-spacing:-0.042507pt;}
.ws21{word-spacing:-0.040647pt;}
.wsb{word-spacing:-0.037194pt;}
.ws0{word-spacing:-0.036131pt;}
.wsa{word-spacing:-0.031880pt;}
.ws2{word-spacing:-0.031615pt;}
.wsc{word-spacing:-0.027098pt;}
.ws1{word-spacing:-0.022582pt;}
.ws26{word-spacing:-0.014877pt;}
.ws5{word-spacing:0.000000pt;}
.ws27{word-spacing:1.472866pt;}
.ws6{word-spacing:11.232219pt;}
.ws9{word-spacing:11.254801pt;}
.wse{word-spacing:239.018209pt;}
.ws14{word-spacing:240.878602pt;}
.ws18{word-spacing:242.258437pt;}
.ws1e{word-spacing:244.647406pt;}
.ws12{word-spacing:246.507782pt;}
.ws20{word-spacing:250.345235pt;}
.ws1f{word-spacing:250.523721pt;}
.ws16{word-spacing:256.166630pt;}
.ws1b{word-spacing:259.925137pt;}
.ws19{word-spacing:263.786617pt;}
.ws15{word-spacing:265.674452pt;}
.ws10{word-spacing:267.521098pt;}
.ws11{word-spacing:267.545125pt;}
.wsf{word-spacing:267.596611pt;}
.ws17{word-spacing:267.967313pt;}
.ws13{word-spacing:269.381473pt;}
.ws1c{word-spacing:271.386010pt;}
.ws24{word-spacing:273.890438pt;}
.ws1a{word-spacing:277.138757pt;}
.ws1d{word-spacing:278.885852pt;}
.ws25{word-spacing:295.418618pt;}
.ws22{word-spacing:297.306456pt;}
.ws23{word-spacing:299.599313pt;}
._1b{margin-left:-26.566066pt;}
._22{margin-left:-16.360798pt;}
._1a{margin-left:-13.297453pt;}
._f{margin-left:-7.297129pt;}
._26{margin-left:-6.130834pt;}
._10{margin-left:-5.207930pt;}
._c{margin-left:-4.185874pt;}
._e{margin-left:-2.925028pt;}
._2{margin-left:-2.031857pt;}
._3{margin-left:-1.122196pt;}
._16{width:1.144133pt;}
._1e{width:2.913665pt;}
._24{width:4.315804pt;}
._1f{width:5.216928pt;}
._21{width:6.872875pt;}
._15{width:7.991332pt;}
._13{width:9.463141pt;}
._6{width:10.648025pt;}
._7{width:12.072013pt;}
._4{width:13.331285pt;}
._a{width:14.415217pt;}
._b{width:15.594787pt;}
._19{width:16.487599pt;}
._9{width:17.385237pt;}
._0{width:18.559738pt;}
._8{width:19.993019pt;}
._1{width:21.228229pt;}
._14{width:22.143690pt;}
._1d{width:23.129392pt;}
._1c{width:24.037758pt;}
._20{width:25.233270pt;}
._25{width:26.185929pt;}
._d{width:31.675238pt;}
._5{width:33.506211pt;}
._17{width:41.455785pt;}
._12{width:58.455653pt;}
._23{width:190.549936pt;}
._18{width:290.722919pt;}
._11{width:1418.854609pt;}
.fs7{font-size:34.324267pt;}
.fs6{font-size:37.193596pt;}
.fs3{font-size:45.163727pt;}
.fs2{font-size:53.133860pt;}
.fs5{font-size:63.760529pt;}
.fs4{font-size:65.487996pt;}
.fs0{font-size:74.387726pt;}
.fs1{font-size:85.014933pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:50.204134pt;}
.y24{bottom:63.488451pt;}
.y23{bottom:76.772221pt;}
.y22{bottom:90.056002pt;}
.y136{bottom:97.795999pt;}
.y8b{bottom:102.234947pt;}
.y135{bottom:105.775978pt;}
.y70{bottom:108.427693pt;}
.y113{bottom:109.194784pt;}
.yee{bottom:111.079133pt;}
.y8a{bottom:118.171107pt;}
.y21{bottom:119.048221pt;}
.y134{bottom:121.712138pt;}
.y6f{bottom:124.363853pt;}
.y112{bottom:125.130957pt;}
.yed{bottom:127.027247pt;}
.ya4{bottom:127.963883pt;}
.yca{bottom:129.679384pt;}
.y20{bottom:132.332002pt;}
.y89{bottom:134.107267pt;}
.y6e{bottom:140.311968pt;}
.y111{bottom:141.079072pt;}
.yec{bottom:142.963407pt;}
.ya3{bottom:143.911560pt;}
.yc9{bottom:145.615544pt;}
.y133{bottom:145.615880pt;}
.y88{bottom:150.055381pt;}
.y1f{bottom:153.596225pt;}
.y6d{bottom:156.248128pt;}
.y110{bottom:157.015245pt;}
.yeb{bottom:158.899568pt;}
.ya2{bottom:159.847720pt;}
.yc8{bottom:161.563673pt;}
.y132{bottom:161.563840pt;}
.y87{bottom:165.991542pt;}
.y1e{bottom:166.880007pt;}
.y6c{bottom:172.184012pt;}
.y10f{bottom:172.963359pt;}
.yea{bottom:174.847682pt;}
.ya1{bottom:175.783880pt;}
.yc7{bottom:177.499833pt;}
.y131{bottom:177.500000pt;}
.y86{bottom:181.927702pt;}
.y6b{bottom:188.131679pt;}
.y1d{bottom:188.132143pt;}
.y152{bottom:188.134406pt;}
.y10e{bottom:188.899532pt;}
.ye9{bottom:190.783842pt;}
.ya0{bottom:191.731970pt;}
.y130{bottom:193.435841pt;}
.yc6{bottom:193.435993pt;}
.y17a{bottom:193.436467pt;}
.y85{bottom:197.875830pt;}
.y1c{bottom:201.416355pt;}
.y151{bottom:201.418187pt;}
.y6a{bottom:204.067839pt;}
.y10d{bottom:204.835705pt;}
.ye8{bottom:206.720003pt;}
.y179{bottom:206.720237pt;}
.y9f{bottom:207.667844pt;}
.y12f{bottom:209.383969pt;}
.y84{bottom:213.811991pt;}
.y1b{bottom:214.700136pt;}
.y150{bottom:214.701968pt;}
.yc5{bottom:217.351844pt;}
.y4a{bottom:220.004000pt;}
.y178{bottom:220.004007pt;}
.y10c{bottom:220.783819pt;}
.ye7{bottom:222.668131pt;}
.y9e{bottom:223.603887pt;}
.y12e{bottom:225.320129pt;}
.y1a{bottom:227.984012pt;}
.y14f{bottom:227.985749pt;}
.y83{bottom:229.747876pt;}
.yc4{bottom:233.288004pt;}
.y177{bottom:233.288458pt;}
.y49{bottom:235.951982pt;}
.y69{bottom:235.952128pt;}
.y10b{bottom:236.719992pt;}
.ye6{bottom:238.603837pt;}
.y9d{bottom:239.551393pt;}
.y14e{bottom:241.269530pt;}
.y82{bottom:245.695695pt;}
.y176{bottom:246.572227pt;}
.y12d{bottom:249.235836pt;}
.y48{bottom:251.887834pt;}
.y68{bottom:251.887977pt;}
.y10a{bottom:252.656165pt;}
.ye5{bottom:254.539997pt;}
.y14d{bottom:254.540879pt;}
.y9c{bottom:255.487554pt;}
.y19{bottom:256.472007pt;}
.yc3{bottom:257.203392pt;}
.y175{bottom:259.855997pt;}
.y81{bottom:261.631868pt;}
.y12c{bottom:265.171721pt;}
.y47{bottom:267.823864pt;}
.y14c{bottom:267.824661pt;}
.y18{bottom:269.756004pt;}
.y9b{bottom:271.423714pt;}
.yc2{bottom:273.139553pt;}
.y174{bottom:273.140590pt;}
.y80{bottom:277.579996pt;}
.ye4{bottom:278.455969pt;}
.y12b{bottom:281.107881pt;}
.y14b{bottom:281.108442pt;}
.y17{bottom:283.040906pt;}
.y46{bottom:283.771550pt;}
.y67{bottom:283.771834pt;}
.y173{bottom:286.424359pt;}
.y9a{bottom:287.371842pt;}
.yc1{bottom:289.087681pt;}
.ye3{bottom:294.391877pt;}
.y14a{bottom:294.392223pt;}
.y16{bottom:296.324676pt;}
.y12a{bottom:297.055844pt;}
.y109{bottom:298.040178pt;}
.y45{bottom:299.707710pt;}
.y66{bottom:299.707964pt;}
.y172{bottom:299.708129pt;}
.y99{bottom:303.307837pt;}
.yc0{bottom:305.023841pt;}
.y149{bottom:307.676004pt;}
.y15{bottom:309.608457pt;}
.ye2{bottom:310.340005pt;}
.y129{bottom:312.991727pt;}
.y171{bottom:312.992229pt;}
.y7f{bottom:314.768005pt;}
.y65{bottom:315.643693pt;}
.y44{bottom:315.643871pt;}
.y108{bottom:315.860165pt;}
.y98{bottom:319.243868pt;}
.ybf{bottom:320.960002pt;}
.y14{bottom:322.892238pt;}
.y170{bottom:326.275999pt;}
.y128{bottom:328.927888pt;}
.y64{bottom:331.591822pt;}
.y43{bottom:331.591999pt;}
.y107{bottom:333.692032pt;}
.ye1{bottom:334.243558pt;}
.y97{bottom:335.191996pt;}
.y13{bottom:336.176008pt;}
.y148{bottom:336.906978pt;}
.y16f{bottom:339.560346pt;}
.y127{bottom:344.875850pt;}
.ybe{bottom:344.875973pt;}
.y106{bottom:345.224280pt;}
.y42{bottom:347.527862pt;}
.y63{bottom:347.527995pt;}
.ye0{bottom:350.191672pt;}
.y96{bottom:351.127447pt;}
.y147{bottom:352.843138pt;}
.y16e{bottom:352.844116pt;}
.y105{bottom:358.508049pt;}
.y126{bottom:360.812011pt;}
.ybd{bottom:360.812133pt;}
.y62{bottom:363.474899pt;}
.y41{bottom:363.475976pt;}
.ydf{bottom:366.127845pt;}
.y16d{bottom:366.128379pt;}
.y95{bottom:367.063607pt;}
.y146{bottom:368.779298pt;}
.y7e{bottom:373.219343pt;}
.y125{bottom:376.759684pt;}
.y61{bottom:379.411059pt;}
.y40{bottom:379.412149pt;}
.yde{bottom:382.064005pt;}
.y94{bottom:383.011721pt;}
.y145{bottom:384.727413pt;}
.ybc{bottom:384.727695pt;}
.y7d{bottom:389.155516pt;}
.y124{bottom:392.695844pt;}
.y16c{bottom:392.696210pt;}
.y60{bottom:395.347220pt;}
.y3f{bottom:395.347740pt;}
.ydd{bottom:398.011226pt;}
.y93{bottom:398.947882pt;}
.y144{bottom:400.663573pt;}
.ybb{bottom:400.663856pt;}
.y12{bottom:400.939984pt;}
.y104{bottom:403.880159pt;}
.y7c{bottom:405.091689pt;}
.y16b{bottom:405.979980pt;}
.y123{bottom:408.632004pt;}
.y5f{bottom:411.295348pt;}
.y3e{bottom:411.295854pt;}
.ydc{bottom:413.947399pt;}
.y92{bottom:414.895996pt;}
.y143{bottom:416.599733pt;}
.yba{bottom:416.600016pt;}
.y11{bottom:416.887982pt;}
.y16a{bottom:419.264244pt;}
.y7b{bottom:421.039803pt;}
.y103{bottom:421.700146pt;}
.y122{bottom:424.580119pt;}
.y3d{bottom:427.230635pt;}
.y5e{bottom:427.231508pt;}
.ydb{bottom:429.883572pt;}
.y142{bottom:432.547848pt;}
.y169{bottom:432.548014pt;}
.y7a{bottom:436.975976pt;}
.y102{bottom:439.532013pt;}
.y121{bottom:440.514942pt;}
.yb9{bottom:440.515988pt;}
.y3c{bottom:443.166808pt;}
.y5d{bottom:443.167668pt;}
.yda{bottom:445.831687pt;}
.y168{bottom:445.832237pt;}
.y141{bottom:448.484008pt;}
.y10{bottom:448.758417pt;}
.y79{bottom:452.912149pt;}
.y120{bottom:456.451102pt;}
.yb8{bottom:456.452148pt;}
.y91{bottom:457.196004pt;}
.y101{bottom:457.364043pt;}
.y3b{bottom:459.114922pt;}
.y5c{bottom:459.115797pt;}
.y167{bottom:459.116007pt;}
.yd9{bottom:461.767860pt;}
.y140{bottom:464.418980pt;}
.yf{bottom:464.706532pt;}
.y78{bottom:468.859386pt;}
.y90{bottom:470.481322pt;}
.y11f{bottom:472.399230pt;}
.y166{bottom:472.400353pt;}
.y3a{bottom:475.051095pt;}
.y5b{bottom:475.051957pt;}
.y100{bottom:475.184149pt;}
.yd8{bottom:477.703546pt;}
.y13f{bottom:480.367094pt;}
.yb7{bottom:480.368123pt;}
.ye{bottom:480.642705pt;}
.y8f{bottom:483.752683pt;}
.y77{bottom:484.795559pt;}
.y165{bottom:485.684123pt;}
.y11e{bottom:488.335391pt;}
.y39{bottom:490.987268pt;}
.y5a{bottom:490.988117pt;}
.yff{bottom:493.016015pt;}
.yd7{bottom:493.651661pt;}
.y13e{bottom:496.303267pt;}
.yb6{bottom:496.303992pt;}
.yd{bottom:496.578851pt;}
.y8e{bottom:497.036453pt;}
.y164{bottom:498.967662pt;}
.y76{bottom:500.731732pt;}
.y11d{bottom:504.271551pt;}
.y38{bottom:506.935383pt;}
.y59{bottom:506.935649pt;}
.yd6{bottom:509.587834pt;}
.y8d{bottom:510.320223pt;}
.yfe{bottom:510.836040pt;}
.y13d{bottom:512.239440pt;}
.yb5{bottom:512.240152pt;}
.yc{bottom:512.526965pt;}
.y75{bottom:516.679846pt;}
.y11c{bottom:520.219679pt;}
.y37{bottom:522.871556pt;}
.y58{bottom:522.871810pt;}
.y8c{bottom:523.604125pt;}
.yd5{bottom:525.524007pt;}
.y13c{bottom:528.187554pt;}
.yb{bottom:528.463138pt;}
.yfd{bottom:528.668031pt;}
.y74{bottom:532.616007pt;}
.yb4{bottom:536.155709pt;}
.y11b{bottom:536.155840pt;}
.y57{bottom:538.807091pt;}
.y36{bottom:538.807729pt;}
.y163{bottom:538.808219pt;}
.yd4{bottom:541.471696pt;}
.y13b{bottom:544.123727pt;}
.ya{bottom:544.399284pt;}
.yfc{bottom:546.488016pt;}
.yb3{bottom:552.091869pt;}
.y11a{bottom:552.092000pt;}
.y56{bottom:554.755220pt;}
.y35{bottom:554.755843pt;}
.yd3{bottom:557.407869pt;}
.y13a{bottom:560.071842pt;}
.y9{bottom:560.347398pt;}
.yfb{bottom:564.320169pt;}
.y162{bottom:565.376447pt;}
.yb2{bottom:569.275999pt;}
.y55{bottom:570.691380pt;}
.y34{bottom:570.691438pt;}
.yd2{bottom:573.355803pt;}
.y119{bottom:576.007719pt;}
.y139{bottom:576.008015pt;}
.y8{bottom:576.283571pt;}
.y161{bottom:578.660228pt;}
.yfa{bottom:582.140031pt;}
.yb1{bottom:585.212117pt;}
.y54{bottom:586.627540pt;}
.y33{bottom:586.627599pt;}
.yd1{bottom:589.291976pt;}
.y118{bottom:591.943880pt;}
.y160{bottom:591.944009pt;}
.y7{bottom:592.231686pt;}
.yf9{bottom:599.972021pt;}
.y53{bottom:602.575668pt;}
.y32{bottom:602.575713pt;}
.yd0{bottom:605.228149pt;}
.y15f{bottom:605.228222pt;}
.yb0{bottom:607.891369pt;}
.y117{bottom:607.892008pt;}
.y6{bottom:608.167859pt;}
.y138{bottom:613.196004pt;}
.yf8{bottom:617.792129pt;}
.y52{bottom:618.511829pt;}
.y31{bottom:618.511873pt;}
.y15e{bottom:618.512003pt;}
.yaf{bottom:623.827542pt;}
.y5{bottom:624.104005pt;}
.y116{bottom:631.795846pt;}
.y15d{bottom:631.796451pt;}
.y30{bottom:634.458926pt;}
.y51{bottom:634.459957pt;}
.yf7{bottom:635.623996pt;}
.yae{bottom:639.763715pt;}
.ycf{bottom:642.428203pt;}
.y15c{bottom:645.080233pt;}
.y115{bottom:647.732007pt;}
.y2f{bottom:650.395087pt;}
.y50{bottom:650.395829pt;}
.yf6{bottom:653.444021pt;}
.yad{bottom:655.711829pt;}
.y15b{bottom:658.364014pt;}
.yce{bottom:661.015991pt;}
.y114{bottom:663.680135pt;}
.y2e{bottom:666.331247pt;}
.y4f{bottom:666.331989pt;}
.yf5{bottom:671.276010pt;}
.y137{bottom:671.647824pt;}
.yac{bottom:671.647989pt;}
.y15a{bottom:671.648184pt;}
.y4e{bottom:682.279198pt;}
.y2d{bottom:682.279361pt;}
.y159{bottom:684.931965pt;}
.yab{bottom:687.583002pt;}
.yf4{bottom:689.108164pt;}
.y4d{bottom:698.215371pt;}
.y2c{bottom:698.215522pt;}
.y158{bottom:698.216219pt;}
.y4{bottom:699.667970pt;}
.yaa{bottom:703.531117pt;}
.yf3{bottom:706.927987pt;}
.y157{bottom:711.500000pt;}
.y4c{bottom:714.151544pt;}
.y2b{bottom:714.151682pt;}
.ya9{bottom:719.467290pt;}
.ycd{bottom:719.467668pt;}
.yf2{bottom:724.760180pt;}
.y156{bottom:724.784252pt;}
.y4b{bottom:730.099658pt;}
.y2a{bottom:730.099796pt;}
.ya8{bottom:735.403463pt;}
.ycc{bottom:735.403841pt;}
.y155{bottom:738.068033pt;}
.yf1{bottom:742.580164pt;}
.y29{bottom:746.035831pt;}
.y3{bottom:747.367922pt;}
.ya7{bottom:751.351577pt;}
.ycb{bottom:751.351969pt;}
.y154{bottom:751.352367pt;}
.yf0{bottom:760.412031pt;}
.y28{bottom:761.972004pt;}
.y153{bottom:764.636148pt;}
.ya6{bottom:767.287750pt;}
.y2{bottom:771.271974pt;}
.y73{bottom:776.984602pt;}
.yef{bottom:778.232015pt;}
.ya5{bottom:783.223923pt;}
.y72{bottom:790.268383pt;}
.y1{bottom:795.188152pt;}
.y27{bottom:799.172037pt;}
.y71{bottom:803.552164pt;}
.y26{bottom:831.775960pt;}
.h6{height:31.072644pt;}
.h1d{height:31.253299pt;}
.h26{height:31.612085pt;}
.h27{height:31.612091pt;}
.h5{height:36.556096pt;}
.h2b{height:36.556193pt;}
.h10{height:36.556619pt;}
.h12{height:36.556679pt;}
.h18{height:36.556759pt;}
.h28{height:36.556872pt;}
.hd{height:36.557061pt;}
.h2a{height:36.557104pt;}
.he{height:36.557112pt;}
.h1a{height:36.557190pt;}
.h14{height:36.557249pt;}
.h3d{height:36.557277pt;}
.h19{height:36.557300pt;}
.h1c{height:36.557319pt;}
.h11{height:36.557329pt;}
.h1e{height:36.557333pt;}
.h17{height:36.557818pt;}
.hf{height:36.557865pt;}
.h1b{height:36.557939pt;}
.h29{height:36.557991pt;}
.hb{height:36.558407pt;}
.h13{height:36.559258pt;}
.h15{height:36.559661pt;}
.ha{height:36.560396pt;}
.h16{height:36.560959pt;}
.hc{height:36.561615pt;}
.h4{height:36.768631pt;}
.h9{height:37.118895pt;}
.h2f{height:39.982278pt;}
.h35{height:39.982446pt;}
.h3c{height:39.982532pt;}
.h30{height:39.982608pt;}
.h34{height:39.983094pt;}
.h33{height:39.983097pt;}
.h39{height:39.983102pt;}
.h2d{height:39.983585pt;}
.h37{height:39.983588pt;}
.h3b{height:40.030621pt;}
.h36{height:40.030948pt;}
.h2e{height:40.031111pt;}
.h32{height:40.031114pt;}
.h31{height:40.031119pt;}
.h2c{height:40.031437pt;}
.h38{height:40.031765pt;}
.h8{height:44.122286pt;}
.h23{height:44.651447pt;}
.h24{height:44.652982pt;}
.h20{height:44.653625pt;}
.h22{height:44.699867pt;}
.h21{height:44.700243pt;}
.h1f{height:44.700293pt;}
.h25{height:44.703378pt;}
.h42{height:44.837823pt;}
.h41{height:44.885830pt;}
.h40{height:44.885835pt;}
.h3e{height:44.886246pt;}
.h3f{height:44.886279pt;}
.h43{height:44.889346pt;}
.h2{height:51.476306pt;}
.h7{height:56.233648pt;}
.h3{height:58.830334pt;}
.h3a{height:65.182144pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x1{left:71.435991pt;}
.x5{left:75.215998pt;}
.x8{left:77.075999pt;}
.x3{left:87.371999pt;}
.x9{left:92.184000pt;}
.x4{left:113.940344pt;}
.x6{left:222.611996pt;}
.x2{left:496.704011pt;}
.x7{left:500.892007pt;}
}




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