
    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_0138b9f395a20a66591a89c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ae3e74256dfe5c7071e6939e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a547214dcc546c21a859aeb9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_345eea72f3ee400c30825091.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fe51d481a87b3c3ca23834ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_ed0270913eb5c59bfc8957f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b65ea77bcff66095a37f7f6f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002571;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_88d53a582524fde3347a63a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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:ff9;src:url('chunks/assets/font_79020825e23730a29b1d6dd8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.741699;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;}
.m4{transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,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);}
.v4{vertical-align:-26.640198px;}
.v2{vertical-align:-23.039977px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.039977px;}
.v3{vertical-align:26.639991px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.282370px;}
.ls2{letter-spacing:0.501192px;}
.ls5{letter-spacing:2.634674px;}
.ls4{letter-spacing:4.079583px;}
.ls0{letter-spacing:9.217791px;}
.ls6{letter-spacing:33.147170px;}
.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;}
}
.ws9{word-spacing:-23.302464px;}
.ws1{word-spacing:-17.520638px;}
.ws6{word-spacing:-17.518878px;}
.ws0{word-spacing:-16.119000px;}
.ws3{word-spacing:-14.571576px;}
.ws5{word-spacing:-14.570047px;}
.wsa{word-spacing:-14.542200px;}
.ws7{word-spacing:-11.877716px;}
.ws4{word-spacing:-11.738813px;}
.ws8{word-spacing:-11.737866px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-3.850708px;}
._1{margin-left:-1.428295px;}
._4{width:1.272163px;}
._13{width:2.930704px;}
._10{width:4.263264px;}
._11{width:5.779058px;}
._d{width:6.983532px;}
._3{width:8.518126px;}
._0{width:10.111902px;}
._2{width:11.164674px;}
._6{width:12.780562px;}
._12{width:14.297935px;}
._a{width:16.093342px;}
._9{width:19.186193px;}
._18{width:20.473686px;}
._19{width:21.481212px;}
._1d{width:22.662397px;}
._7{width:24.064048px;}
._8{width:25.231361px;}
._f{width:26.257413px;}
._2f{width:27.403618px;}
._1b{width:28.922192px;}
._1c{width:30.180208px;}
._16{width:31.853888px;}
._17{width:32.965627px;}
._30{width:37.052316px;}
._31{width:38.670511px;}
._b{width:46.154923px;}
._c{width:47.332002px;}
._23{width:52.379951px;}
._27{width:89.896080px;}
._1f{width:109.567391px;}
._2c{width:119.343937px;}
._2e{width:121.127682px;}
._2a{width:130.432304px;}
._2d{width:137.485656px;}
._2b{width:140.639032px;}
._e{width:147.349383px;}
._15{width:211.413771px;}
._22{width:236.259709px;}
._21{width:237.271680px;}
._20{width:240.495480px;}
._29{width:313.377696px;}
._1a{width:321.539287px;}
._14{width:350.443104px;}
._28{width:431.104558px;}
._26{width:720.726655px;}
._24{width:934.052610px;}
._25{width:1212.227815px;}
._1e{width:1389.554095px;}
.fc8{color:rgb(112,48,160);}
.fc7{color:rgb(255,0,0);}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(31,73,125);}
.fc3{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc9{color:rgb(38,38,38);}
.fc6{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.606595px;}
.fs7{font-size:40.647960px;}
.fsd{font-size:46.951464px;}
.fs4{font-size:46.955250px;}
.fsb{font-size:52.556266px;}
.fsa{font-size:58.162543px;}
.fs1{font-size:58.168800px;}
.fs9{font-size:64.469236px;}
.fs0{font-size:64.476000px;}
.fs8{font-size:70.075513px;}
.fs3{font-size:70.082550px;}
.fse{font-size:81.988483px;}
.fs2{font-size:81.996750px;}
.fsc{font-size:93.201037px;}
.fs5{font-size:93.209855px;}
.fsf{font-size:105.124055px;}
.y0{bottom:0.000000px;}
.y10a{bottom:3.240006px;}
.y8b{bottom:3.420045px;}
.y84{bottom:3.599946px;}
.y87{bottom:3.600013px;}
.yb5{bottom:3.779819px;}
.yb0{bottom:3.779871px;}
.y13{bottom:3.779983px;}
.y65{bottom:3.779984px;}
.y5d{bottom:3.780017px;}
.y63{bottom:3.780018px;}
.y90{bottom:3.780052px;}
.y68{bottom:3.780053px;}
.ya7{bottom:3.780915px;}
.ya3{bottom:3.780941px;}
.y5f{bottom:3.959988px;}
.ya9{bottom:3.960571px;}
.y32{bottom:4.320030px;}
.y4{bottom:95.580093px;}
.y2{bottom:109.800110px;}
.y98{bottom:109.809738px;}
.y3{bottom:114.120072px;}
.y31{bottom:130.500068px;}
.y97{bottom:134.653630px;}
.y2e{bottom:140.580093px;}
.y2d{bottom:155.880066px;}
.y94{bottom:158.400055px;}
.y7a{bottom:167.760064px;}
.y2c{bottom:174.240074px;}
.y93{bottom:178.560036px;}
.y52{bottom:180.180039px;}
.y2b{bottom:189.900055px;}
.yfd{bottom:190.080093px;}
.yda{bottom:196.205540px;}
.y79{bottom:198.000068px;}
.y92{bottom:198.720085px;}
.yb7{bottom:201.787791px;}
.y7e{bottom:202.320099px;}
.y106{bottom:208.620072px;}
.y51{bottom:210.240074px;}
.y2a{bottom:213.480079px;}
.y91{bottom:218.880066px;}
.yfc{bottom:220.320099px;}
.yc7{bottom:220.872830px;}
.y112{bottom:226.260064px;}
.yd9{bottom:226.262607px;}
.y78{bottom:228.240074px;}
.y7d{bottom:228.600083px;}
.y111{bottom:229.860077px;}
.y8f{bottom:239.040047px;}
.y50{bottom:240.480079px;}
.y29{bottom:241.380066px;}
.y110{bottom:246.600083px;}
.yc4{bottom:250.031519px;}
.yfb{bottom:250.560036px;}
.yd8{bottom:256.683268px;}
.y77{bottom:258.480079px;}
.y8e{bottom:259.200096px;}
.y10e{bottom:260.280052px;}
.y10f{bottom:263.520058px;}
.yc3{bottom:266.050371px;}
.y28{bottom:269.460091px;}
.y4f{bottom:270.720085px;}
.y10c{bottom:278.100083px;}
.yfa{bottom:280.800041px;}
.y10d{bottom:281.340088px;}
.yb8{bottom:283.151848px;}
.y8d{bottom:283.860077px;}
.yd7{bottom:286.740440px;}
.y76{bottom:288.720085px;}
.y109{bottom:295.920043px;}
.y27{bottom:297.540047px;}
.y10b{bottom:299.160049px;}
.y4e{bottom:300.960091px;}
.yb9{bottom:302.591026px;}
.yf9{bottom:311.040047px;}
.y8c{bottom:314.820099px;}
.yd6{bottom:316.979304px;}
.y108{bottom:317.160049px;}
.y75{bottom:318.780052px;}
.yba{bottom:322.210641px;}
.y26{bottom:325.440033px;}
.y107{bottom:330.840088px;}
.y8a{bottom:331.920043px;}
.y4d{bottom:333.360077px;}
.yf8{bottom:341.100083px;}
.ybb{bottom:341.830179px;}
.yd5{bottom:347.228923px;}
.y74{bottom:349.020058px;}
.y89{bottom:350.280052px;}
.y25{bottom:353.520058px;}
.ybc{bottom:361.269357px;}
.y4c{bottom:366.300041px;}
.yf7{bottom:371.340088px;}
.y88{bottom:372.240074px;}
.yd4{bottom:377.467787px;}
.y73{bottom:379.260064px;}
.ybd{bottom:380.888895px;}
.y24{bottom:381.600083px;}
.y86{bottom:387.180039px;}
.y4b{bottom:396.720085px;}
.ybe{bottom:400.508510px;}
.yf6{bottom:401.580093px;}
.yd3{bottom:407.524855px;}
.y85{bottom:409.320099px;}
.y72{bottom:409.500068px;}
.y23{bottom:409.680039px;}
.ybf{bottom:419.951682px;}
.y83{bottom:424.080093px;}
.y4a{bottom:426.780052px;}
.yf5{bottom:431.820099px;}
.y22{bottom:437.580093px;}
.yd2{bottom:437.945515px;}
.yc0{bottom:439.571220px;}
.y71{bottom:439.740074px;}
.y82{bottom:446.220085px;}
.y49{bottom:457.020058px;}
.yc1{bottom:459.190836px;}
.y81{bottom:461.880066px;}
.yf4{bottom:462.060036px;}
.y21{bottom:465.660049px;}
.yd1{bottom:468.002635px;}
.y70{bottom:469.980079px;}
.yc2{bottom:478.630014px;}
.y80{bottom:486.540047px;}
.y48{bottom:487.260064px;}
.yf3{bottom:492.300041px;}
.y20{bottom:493.740074px;}
.ycf{bottom:498.423295px;}
.y6f{bottom:500.220085px;}
.yd0{bottom:505.069824px;}
.yc6{bottom:507.057950px;}
.y47{bottom:517.500068px;}
.y1f{bottom:521.820099px;}
.yf2{bottom:522.540047px;}
.yce{bottom:528.480415px;}
.y6e{bottom:530.280052px;}
.yc5{bottom:536.211717px;}
.y46{bottom:547.740074px;}
.y1e{bottom:549.720085px;}
.y105{bottom:552.780052px;}
.yf1{bottom:557.280052px;}
.ycd{bottom:558.719279px;}
.y6d{bottom:560.700096px;}
.y1d{bottom:577.800041px;}
.y45{bottom:577.980079px;}
.yb6{bottom:581.048106px;}
.y104{bottom:582.840088px;}
.ycc{bottom:588.958196px;}
.y6c{bottom:590.760064px;}
.yf0{bottom:593.100083px;}
.yb4{bottom:595.625089px;}
.y1c{bottom:605.880066px;}
.y44{bottom:608.040047px;}
.y103{bottom:613.260064px;}
.yb3{bottom:615.786107px;}
.y6b{bottom:621.000068px;}
.yef{bottom:623.160049px;}
.ycb{bottom:623.875021px;}
.y1b{bottom:633.960091px;}
.y6a{bottom:638.100083px;}
.y43{bottom:638.460091px;}
.yb2{bottom:639.721670px;}
.y102{bottom:643.320099px;}
.yb1{bottom:656.102817px;}
.yee{bottom:658.080093px;}
.y69{bottom:658.260064px;}
.yca{bottom:659.524473px;}
.y1a{bottom:661.860077px;}
.y42{bottom:668.520058px;}
.y101{bottom:673.560036px;}
.yaf{bottom:676.263887px;}
.y67{bottom:678.420043px;}
.yc9{bottom:689.581593px;}
.y19{bottom:689.940067px;}
.yed{bottom:693.720051px;}
.y66{bottom:698.580059px;}
.y41{bottom:698.940067px;}
.yae{bottom:700.926531px;}
.y100{bottom:703.800076px;}
.yc8{bottom:715.858842px;}
.y18{bottom:718.020058px;}
.y64{bottom:718.740074px;}
.yec{bottom:723.960056px;}
.y40{bottom:729.000068px;}
.yad{bottom:731.702170px;}
.yff{bottom:734.040081px;}
.ye7{bottom:734.763180px;}
.y62{bottom:738.900055px;}
.y17{bottom:745.920078px;}
.yeb{bottom:754.200061px;}
.y61{bottom:759.060070px;}
.y3f{bottom:759.240074px;}
.yac{bottom:761.941086px;}
.ye4{bottom:763.921908px;}
.yfe{bottom:764.280052px;}
.y16{bottom:774.000068px;}
.y60{bottom:779.040081px;}
.ye3{bottom:779.948787px;}
.yea{bottom:784.440067px;}
.y3e{bottom:789.480079px;}
.yab{bottom:792.179950px;}
.y7c{bottom:794.520058px;}
.ydb{bottom:797.046270px;}
.y5e{bottom:799.200061px;}
.y15{bottom:806.400055px;}
.yaa{bottom:809.100064px;}
.ye9{bottom:814.680073px;}
.y3d{bottom:819.720051px;}
.y5c{bottom:820.260064px;}
.y5b{bottom:824.040081px;}
.y7b{bottom:824.760064px;}
.ya8{bottom:829.262152px;}
.y14{bottom:829.620072px;}
.ydc{bottom:835.026354px;}
.y12{bottom:843.120072px;}
.ya6{bottom:849.424266px;}
.ye8{bottom:849.600083px;}
.y3c{bottom:849.960056px;}
.y5a{bottom:855.000068px;}
.y11{bottom:867.060070px;}
.ya5{bottom:870.484555px;}
.ydd{bottom:873.006477px;}
.ya4{bottom:874.265496px;}
.y3b{bottom:880.020058px;}
.y59{bottom:885.060070px;}
.y10{bottom:887.220051px;}
.ya2{bottom:890.638107px;}
.ya1{bottom:894.419048px;}
.yf{bottom:907.380066px;}
.y3a{bottom:910.260064px;}
.yde{bottom:911.166254px;}
.ya0{bottom:914.581136px;}
.y58{bottom:915.480079px;}
.ye{bottom:927.540081px;}
.y39{bottom:940.500068px;}
.y7f{bottom:942.840054px;}
.y9f{bottom:945.358941px;}
.y57{bottom:945.540081px;}
.yd{bottom:948.960056px;}
.ydf{bottom:949.146358px;}
.y38{bottom:970.740074px;}
.y9e{bottom:975.777461px;}
.yc{bottom:975.780069px;}
.ye0{bottom:987.120059px;}
.yb{bottom:997.560070px;}
.y37{bottom:1000.980063px;}
.y9d{bottom:1005.845258px;}
.y56{bottom:1006.020058px;}
.ya{bottom:1014.840070px;}
.ye1{bottom:1025.279797px;}
.y36{bottom:1031.220068px;}
.y9{bottom:1035.000068px;}
.y55{bottom:1036.260064px;}
.y9c{bottom:1036.263778px;}
.y8{bottom:1054.980063px;}
.y35{bottom:1061.280069px;}
.ye2{bottom:1063.259921px;}
.y9b{bottom:1066.323038px;}
.y54{bottom:1066.500068px;}
.y7{bottom:1075.140060px;}
.ye6{bottom:1090.436020px;}
.y6{bottom:1091.520058px;}
.y34{bottom:1091.700061px;}
.y9a{bottom:1096.561928px;}
.y53{bottom:1096.740074px;}
.ye5{bottom:1113.835571px;}
.y33{bottom:1124.100065px;}
.y99{bottom:1126.800805px;}
.y5{bottom:1126.980063px;}
.y30{bottom:1147.500068px;}
.y96{bottom:1147.501221px;}
.y95{bottom:1166.577556px;}
.y2f{bottom:1166.580068px;}
.y1{bottom:1167.660067px;}
.hf{height:3.914761px;}
.h42{height:16.379997px;}
.h3f{height:16.379998px;}
.h24{height:18.000000px;}
.h22{height:18.179971px;}
.h23{height:18.180038px;}
.h43{height:19.080025px;}
.h30{height:19.433937px;}
.h2b{height:19.435007px;}
.h31{height:19.439262px;}
.h2f{height:19.439314px;}
.h1d{height:19.439964px;}
.h12{height:19.439965px;}
.h1a{height:19.439998px;}
.hd{height:19.439999px;}
.h1c{height:19.440033px;}
.h1b{height:19.440034px;}
.h2e{height:19.444640px;}
.h19{height:19.619969px;}
.h18{height:19.620003px;}
.h2d{height:19.623173px;}
.h2c{height:19.623199px;}
.h2a{height:19.794293px;}
.h17{height:19.800007px;}
.h29{height:19.802829px;}
.h10{height:28.382121px;}
.h37{height:32.783493px;}
.h8{height:32.786136px;}
.h32{height:40.611542px;}
.h41{height:41.041951px;}
.h40{height:42.348477px;}
.h44{height:42.462088px;}
.h33{height:45.015141px;}
.h4{height:45.019863px;}
.h3{height:47.129186px;}
.h3e{height:47.205345px;}
.h27{height:48.929680px;}
.h6{height:48.934593px;}
.h28{height:49.442928px;}
.h7{height:49.447893px;}
.h3c{height:51.022013px;}
.h3d{height:51.158893px;}
.h38{height:51.222189px;}
.hc{height:51.227333px;}
.h20{height:51.422103px;}
.h1e{height:52.142251px;}
.h34{height:52.273982px;}
.ha{height:56.170024px;}
.h25{height:56.867922px;}
.h11{height:56.873632px;}
.he{height:57.253590px;}
.h5{height:57.854152px;}
.h1f{height:58.706145px;}
.h21{height:58.706177px;}
.h14{height:59.426060px;}
.h13{height:59.426127px;}
.h15{height:59.426199px;}
.h16{height:59.426334px;}
.hb{height:61.145398px;}
.h39{height:61.331229px;}
.h26{height:64.122966px;}
.h2{height:64.129693px;}
.h36{height:65.076896px;}
.h3b{height:65.083053px;}
.h9{height:65.765742px;}
.h35{height:67.852904px;}
.h3a{height:73.402050px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w11{width:5.939998px;}
.w46{width:6.116218px;}
.w57{width:7.200028px;}
.w53{width:7.912579px;}
.w35{width:7.921142px;}
.w24{width:8.099945px;}
.w22{width:8.099979px;}
.w23{width:8.099980px;}
.w21{width:8.099997px;}
.w2d{width:8.100004px;}
.w6{width:8.100013px;}
.w8{width:8.100015px;}
.w36{width:8.105079px;}
.w9{width:8.460021px;}
.w4b{width:8.816079px;}
.w42{width:8.816131px;}
.w38{width:8.819316px;}
.w51{width:8.819329px;}
.w49{width:8.819342px;}
.w20{width:8.819962px;}
.w3{width:8.819996px;}
.wc{width:8.819997px;}
.w1e{width:8.820012px;}
.w1a{width:8.820029px;}
.w13{width:8.820030px;}
.w3b{width:8.821457px;}
.w55{width:8.826782px;}
.w3e{width:8.827879px;}
.w56{width:10.439999px;}
.wa{width:13.139992px;}
.w29{width:16.199958px;}
.w28{width:16.199993px;}
.w27{width:16.200010px;}
.w2a{width:16.200028px;}
.w7{width:16.379997px;}
.w34{width:17.639991px;}
.w12{width:17.819996px;}
.w1f{width:20.519989px;}
.w1d{width:20.519990px;}
.wd{width:21.959988px;}
.w31{width:28.079955px;}
.w32{width:28.079956px;}
.w2f{width:28.079990px;}
.w30{width:28.079991px;}
.w2e{width:28.080008px;}
.w25{width:28.080025px;}
.wf{width:35.099980px;}
.w1b{width:37.079991px;}
.w2b{width:37.080025px;}
.w1c{width:40.500000px;}
.w17{width:43.920010px;}
.w45{width:44.823695px;}
.w54{width:49.138167px;}
.w48{width:49.143519px;}
.w16{width:51.660016px;}
.w3f{width:57.954298px;}
.w41{width:57.960668px;}
.w4e{width:57.963957px;}
.w43{width:57.965002px;}
.w2c{width:60.659997px;}
.w39{width:62.274129px;}
.w3a{width:62.280551px;}
.w4d{width:62.282691px;}
.w4a{width:62.283788px;}
.w3c{width:62.284832px;}
.w40{width:66.593985px;}
.w4f{width:71.100911px;}
.w47{width:75.421851px;}
.w33{width:79.740006px;}
.w10{width:82.800008px;}
.w50{width:92.521575px;}
.we{width:95.939999px;}
.w15{width:102.780018px;}
.w18{width:103.680004px;}
.w4{width:104.759996px;}
.w2{width:108.719982px;}
.w37{width:111.417680px;}
.w3d{width:116.464617px;}
.w14{width:121.319997px;}
.w44{width:124.556826px;}
.w26{width:129.239996px;}
.w19{width:131.939965px;}
.w4c{width:139.141657px;}
.wb{width:152.280018px;}
.w52{width:158.764831px;}
.w5{width:237.060001px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x8c{left:-9.180004px;}
.x0{left:0.000000px;}
.x39{left:19.800000px;}
.x28{left:59.939999px;}
.x52{left:80.459997px;}
.x1{left:105.120002px;}
.x7{left:109.980002px;}
.x81{left:114.841714px;}
.x80{left:121.500881px;}
.xc{left:122.939999px;}
.xa{left:127.620002px;}
.x8a{left:131.400003px;}
.x4a{left:148.680005px;}
.x70{left:149.945514px;}
.x71{left:155.882090px;}
.x8b{left:157.680005px;}
.x87{left:168.480706px;}
.x82{left:174.241725px;}
.x27{left:182.699993px;}
.x3a{left:195.659998px;}
.x7c{left:197.823037px;}
.x3b{left:203.759994px;}
.xf{left:209.699993px;}
.x4b{left:211.860008px;}
.x29{left:217.620002px;}
.x68{left:221.577887px;}
.x53{left:223.740006px;}
.x5a{left:228.240006px;}
.x6d{left:229.858289px;}
.x72{left:231.303940px;}
.x2a{left:238.139992px;}
.x26{left:248.039996px;}
.x60{left:256.145170px;}
.x89{left:258.301840px;}
.x13{left:268.560001px;}
.x84{left:270.722614px;}
.x3c{left:275.939999px;}
.x6f{left:279.001833px;}
.x15{left:281.699993px;}
.x12{left:284.759994px;}
.x4c{left:292.139992px;}
.x79{left:295.023747px;}
.x2b{left:297.540012px;}
.x14{left:304.199993px;}
.x23{left:305.639992px;}
.x7e{left:307.078647px;}
.x85{left:309.960499px;}
.x69{left:313.919839px;}
.x2c{left:318.060001px;}
.x8{left:320.220017px;}
.x86{left:323.645892px;}
.x5b{left:327.420010px;}
.x73{left:330.301012px;}
.x5c{left:336.240006px;}
.x5f{left:345.060001px;}
.x3d{left:355.319996px;}
.x61{left:361.626269px;}
.x3e{left:363.420010px;}
.x21{left:364.500000px;}
.x20{left:372.060001px;}
.x2d{left:376.920010px;}
.x74{left:379.444531px;}
.x54{left:383.399987px;}
.xd{left:392.220017px;}
.x2e{left:397.439999px;}
.x1b{left:403.379998px;}
.x1c{left:409.139992px;}
.xb{left:411.839985px;}
.x19{left:416.519989px;}
.x6e{left:419.400937px;}
.x1f{left:423.360008px;}
.x1d{left:426.779983px;}
.x6a{left:428.220254px;}
.x3f{left:434.699993px;}
.x5d{left:435.779983px;}
.x1e{left:441.899987px;}
.x9{left:446.759994px;}
.x4d{left:450.720017px;}
.x2f{left:456.300007px;}
.x55{left:462.779983px;}
.x16{left:472.860008px;}
.x30{left:476.639992px;}
.x83{left:478.266579px;}
.x17{left:490.860008px;}
.x62{left:492.487486px;}
.x75{left:495.900579px;}
.xe{left:500.939999px;}
.x63{left:508.141603px;}
.x18{left:512.819996px;}
.x40{left:514.079990px;}
.x5e{left:515.519989px;}
.x41{left:522.180005px;}
.x1a{left:525.959988px;}
.x24{left:531.360008px;}
.x31{left:535.680005px;}
.x56{left:542.160015px;}
.x7a{left:553.682740px;}
.x32{left:556.019989px;}
.x76{left:558.184367px;}
.x6b{left:565.925853px;}
.x66{left:570.422154px;}
.x42{left:593.460023px;}
.x5{left:595.620002px;}
.x43{left:601.379998px;}
.x6{left:602.820030px;}
.x88{left:606.786681px;}
.x64{left:608.402504px;}
.x4e{left:609.480011px;}
.x33{left:614.879998px;}
.x57{left:621.360008px;}
.x22{left:622.799973px;}
.x65{left:624.425488px;}
.x34{left:635.399987px;}
.x77{left:640.806687px;}
.x2{left:642.419975px;}
.x4{left:668.700027px;}
.x44{left:672.840019px;}
.x45{left:680.759994px;}
.x6c{left:682.208694px;}
.x67{left:686.528524px;}
.x4f{left:688.860008px;}
.x7d{left:689.944854px;}
.x35{left:693.720017px;}
.x58{left:700.740006px;}
.x78{left:703.091519px;}
.x7b{left:711.731180px;}
.x7f{left:749.163717px;}
.x46{left:752.039978px;}
.x10{left:753.480011px;}
.x47{left:759.960023px;}
.x50{left:768.059967px;}
.x11{left:769.860008px;}
.x25{left:774.360008px;}
.x59{left:779.940033px;}
.x3{left:788.399987px;}
.x36{left:793.980011px;}
.x48{left:831.240006px;}
.x37{left:843.120002px;}
.x49{left:859.320030px;}
.x38{left:863.639992px;}
.x51{left:868.320030px;}
@media print{
.v4{vertical-align:-23.680176pt;}
.v2{vertical-align:-20.479980pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.479980pt;}
.v3{vertical-align:23.679992pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.250996pt;}
.ls2{letter-spacing:0.445504pt;}
.ls5{letter-spacing:2.341932pt;}
.ls4{letter-spacing:3.626296pt;}
.ls0{letter-spacing:8.193592pt;}
.ls6{letter-spacing:29.464151pt;}
.ws9{word-spacing:-20.713301pt;}
.ws1{word-spacing:-15.573900pt;}
.ws6{word-spacing:-15.572336pt;}
.ws0{word-spacing:-14.328000pt;}
.ws3{word-spacing:-12.952512pt;}
.ws5{word-spacing:-12.951153pt;}
.wsa{word-spacing:-12.926400pt;}
.ws7{word-spacing:-10.557970pt;}
.ws4{word-spacing:-10.434500pt;}
.ws8{word-spacing:-10.433659pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-3.422851pt;}
._1{margin-left:-1.269595pt;}
._4{width:1.130811pt;}
._13{width:2.605070pt;}
._10{width:3.789568pt;}
._11{width:5.136940pt;}
._d{width:6.207584pt;}
._3{width:7.571668pt;}
._0{width:8.988357pt;}
._2{width:9.924155pt;}
._6{width:11.360500pt;}
._12{width:12.709276pt;}
._a{width:14.305193pt;}
._9{width:17.054394pt;}
._18{width:18.198832pt;}
._19{width:19.094411pt;}
._1d{width:20.144353pt;}
._7{width:21.390265pt;}
._8{width:22.427876pt;}
._f{width:23.339922pt;}
._2f{width:24.358772pt;}
._1b{width:25.708615pt;}
._1c{width:26.826852pt;}
._16{width:28.314567pt;}
._17{width:29.302780pt;}
._30{width:32.935392pt;}
._31{width:34.373787pt;}
._b{width:41.026598pt;}
._c{width:42.072891pt;}
._23{width:46.559956pt;}
._27{width:79.907627pt;}
._1f{width:97.393237pt;}
._2c{width:106.083499pt;}
._2e{width:107.669051pt;}
._2a{width:115.939826pt;}
._2d{width:122.209472pt;}
._2b{width:125.012473pt;}
._e{width:130.977229pt;}
._15{width:187.923352pt;}
._22{width:210.008630pt;}
._21{width:210.908160pt;}
._20{width:213.773760pt;}
._29{width:278.557952pt;}
._1a{width:285.812699pt;}
._14{width:311.504982pt;}
._28{width:383.204052pt;}
._26{width:640.645916pt;}
._24{width:830.268987pt;}
._25{width:1077.535836pt;}
._1e{width:1235.159195pt;}
.fs6{font-size:4.983640pt;}
.fs7{font-size:36.131520pt;}
.fsd{font-size:41.734635pt;}
.fs4{font-size:41.738000pt;}
.fsb{font-size:46.716681pt;}
.fsa{font-size:51.700039pt;}
.fs1{font-size:51.705600pt;}
.fs9{font-size:57.305988pt;}
.fs0{font-size:57.312000pt;}
.fs8{font-size:62.289345pt;}
.fs3{font-size:62.295600pt;}
.fse{font-size:72.878652pt;}
.fs2{font-size:72.886000pt;}
.fsc{font-size:82.845367pt;}
.fs5{font-size:82.853204pt;}
.fsf{font-size:93.443604pt;}
.y0{bottom:0.000000pt;}
.y10a{bottom:2.880005pt;}
.y8b{bottom:3.040040pt;}
.y84{bottom:3.199952pt;}
.y87{bottom:3.200012pt;}
.yb5{bottom:3.359839pt;}
.yb0{bottom:3.359885pt;}
.y13{bottom:3.359985pt;}
.y65{bottom:3.359986pt;}
.y5d{bottom:3.360015pt;}
.y63{bottom:3.360016pt;}
.y90{bottom:3.360046pt;}
.y68{bottom:3.360047pt;}
.ya7{bottom:3.360814pt;}
.ya3{bottom:3.360837pt;}
.y5f{bottom:3.519989pt;}
.ya9{bottom:3.520508pt;}
.y32{bottom:3.840027pt;}
.y4{bottom:84.960083pt;}
.y2{bottom:97.600098pt;}
.y98{bottom:97.608656pt;}
.y3{bottom:101.440064pt;}
.y31{bottom:116.000061pt;}
.y97{bottom:119.692116pt;}
.y2e{bottom:124.960083pt;}
.y2d{bottom:138.560059pt;}
.y94{bottom:140.800049pt;}
.y7a{bottom:149.120057pt;}
.y2c{bottom:154.880066pt;}
.y93{bottom:158.720032pt;}
.y52{bottom:160.160035pt;}
.y2b{bottom:168.800049pt;}
.yfd{bottom:168.960083pt;}
.yda{bottom:174.404924pt;}
.y79{bottom:176.000061pt;}
.y92{bottom:176.640076pt;}
.yb7{bottom:179.366926pt;}
.y7e{bottom:179.840088pt;}
.y106{bottom:185.440064pt;}
.y51{bottom:186.880066pt;}
.y2a{bottom:189.760071pt;}
.y91{bottom:194.560059pt;}
.yfc{bottom:195.840088pt;}
.yc7{bottom:196.331405pt;}
.y112{bottom:201.120057pt;}
.yd9{bottom:201.122318pt;}
.y78{bottom:202.880066pt;}
.y7d{bottom:203.200074pt;}
.y111{bottom:204.320069pt;}
.y8f{bottom:212.480042pt;}
.y50{bottom:213.760071pt;}
.y29{bottom:214.560059pt;}
.y110{bottom:219.200074pt;}
.yc4{bottom:222.250239pt;}
.yfb{bottom:222.720032pt;}
.yd8{bottom:228.162905pt;}
.y77{bottom:229.760071pt;}
.y8e{bottom:230.400086pt;}
.y10e{bottom:231.360047pt;}
.y10f{bottom:234.240052pt;}
.yc3{bottom:236.489218pt;}
.y28{bottom:239.520081pt;}
.y4f{bottom:240.640076pt;}
.y10c{bottom:247.200074pt;}
.yfa{bottom:249.600037pt;}
.y10d{bottom:250.080079pt;}
.yb8{bottom:251.690531pt;}
.y8d{bottom:252.320069pt;}
.yd7{bottom:254.880391pt;}
.y76{bottom:256.640076pt;}
.y109{bottom:263.040039pt;}
.y27{bottom:264.480042pt;}
.y10b{bottom:265.920044pt;}
.y4e{bottom:267.520081pt;}
.yb9{bottom:268.969801pt;}
.yf9{bottom:276.480042pt;}
.y8c{bottom:279.840088pt;}
.yd6{bottom:281.759381pt;}
.y108{bottom:281.920044pt;}
.y75{bottom:283.360047pt;}
.yba{bottom:286.409459pt;}
.y26{bottom:289.280030pt;}
.y107{bottom:294.080079pt;}
.y8a{bottom:295.040039pt;}
.y4d{bottom:296.320069pt;}
.yf8{bottom:303.200074pt;}
.ybb{bottom:303.849048pt;}
.yd5{bottom:308.647932pt;}
.y74{bottom:310.240052pt;}
.y89{bottom:311.360047pt;}
.y25{bottom:314.240052pt;}
.ybc{bottom:321.128317pt;}
.y4c{bottom:325.600037pt;}
.yf7{bottom:330.080079pt;}
.y88{bottom:330.880066pt;}
.yd4{bottom:335.526922pt;}
.y73{bottom:337.120057pt;}
.ybd{bottom:338.567906pt;}
.y24{bottom:339.200074pt;}
.y86{bottom:344.160035pt;}
.y4b{bottom:352.640076pt;}
.ybe{bottom:356.007565pt;}
.yf6{bottom:356.960083pt;}
.yd3{bottom:362.244315pt;}
.y85{bottom:363.840088pt;}
.y72{bottom:364.000061pt;}
.y23{bottom:364.160035pt;}
.ybf{bottom:373.290384pt;}
.y83{bottom:376.960083pt;}
.y4a{bottom:379.360047pt;}
.yf5{bottom:383.840088pt;}
.y22{bottom:388.960083pt;}
.yd2{bottom:389.284902pt;}
.yc0{bottom:390.729973pt;}
.y71{bottom:390.880066pt;}
.y82{bottom:396.640076pt;}
.y49{bottom:406.240052pt;}
.yc1{bottom:408.169632pt;}
.y81{bottom:410.560059pt;}
.yf4{bottom:410.720032pt;}
.y21{bottom:413.920044pt;}
.yd1{bottom:416.002342pt;}
.y70{bottom:417.760071pt;}
.yc2{bottom:425.448901pt;}
.y80{bottom:432.480042pt;}
.y48{bottom:433.120057pt;}
.yf3{bottom:437.600037pt;}
.y20{bottom:438.880066pt;}
.ycf{bottom:443.042929pt;}
.y6f{bottom:444.640076pt;}
.yd0{bottom:448.950955pt;}
.yc6{bottom:450.718178pt;}
.y47{bottom:460.000061pt;}
.y1f{bottom:463.840088pt;}
.yf2{bottom:464.480042pt;}
.yce{bottom:469.760369pt;}
.y6e{bottom:471.360047pt;}
.yc5{bottom:476.632638pt;}
.y46{bottom:486.880066pt;}
.y1e{bottom:488.640076pt;}
.y105{bottom:491.360047pt;}
.yf1{bottom:495.360047pt;}
.ycd{bottom:496.639359pt;}
.y6d{bottom:498.400086pt;}
.y1d{bottom:513.600037pt;}
.y45{bottom:513.760071pt;}
.yb6{bottom:516.487206pt;}
.y104{bottom:518.080079pt;}
.ycc{bottom:523.518396pt;}
.y6c{bottom:525.120057pt;}
.yf0{bottom:527.200074pt;}
.yb4{bottom:529.444523pt;}
.y1c{bottom:538.560059pt;}
.y44{bottom:540.480042pt;}
.y103{bottom:545.120057pt;}
.yb3{bottom:547.365428pt;}
.y6b{bottom:552.000061pt;}
.yef{bottom:553.920044pt;}
.ycb{bottom:554.555574pt;}
.y1b{bottom:563.520081pt;}
.y6a{bottom:567.200074pt;}
.y43{bottom:567.520081pt;}
.yb2{bottom:568.641485pt;}
.y102{bottom:571.840088pt;}
.yb1{bottom:583.202504pt;}
.yee{bottom:584.960083pt;}
.y69{bottom:585.120057pt;}
.yca{bottom:586.243976pt;}
.y1a{bottom:588.320069pt;}
.y42{bottom:594.240052pt;}
.y101{bottom:598.720032pt;}
.yaf{bottom:601.123455pt;}
.y67{bottom:603.040039pt;}
.yc9{bottom:612.961416pt;}
.y19{bottom:613.280060pt;}
.yed{bottom:616.640046pt;}
.y66{bottom:620.960053pt;}
.y41{bottom:621.280060pt;}
.yae{bottom:623.045806pt;}
.y100{bottom:625.600068pt;}
.yc8{bottom:636.318970pt;}
.y18{bottom:638.240052pt;}
.y64{bottom:638.880066pt;}
.yec{bottom:643.520050pt;}
.y40{bottom:648.000061pt;}
.yad{bottom:650.401929pt;}
.yff{bottom:652.480072pt;}
.ye7{bottom:653.122827pt;}
.y62{bottom:656.800049pt;}
.y17{bottom:663.040070pt;}
.yeb{bottom:670.400055pt;}
.y61{bottom:674.720063pt;}
.y3f{bottom:674.880066pt;}
.yac{bottom:677.280965pt;}
.ye4{bottom:679.041696pt;}
.yfe{bottom:679.360047pt;}
.y16{bottom:688.000061pt;}
.y60{bottom:692.480072pt;}
.ye3{bottom:693.287811pt;}
.yea{bottom:697.280060pt;}
.y3e{bottom:701.760071pt;}
.yab{bottom:704.159956pt;}
.y7c{bottom:706.240052pt;}
.ydb{bottom:708.485573pt;}
.y5e{bottom:710.400055pt;}
.y15{bottom:716.800049pt;}
.yaa{bottom:719.200057pt;}
.ye9{bottom:724.160065pt;}
.y3d{bottom:728.640046pt;}
.y5c{bottom:729.120057pt;}
.y5b{bottom:732.480072pt;}
.y7b{bottom:733.120057pt;}
.ya8{bottom:737.121913pt;}
.y14{bottom:737.440064pt;}
.ydc{bottom:742.245648pt;}
.y12{bottom:749.440064pt;}
.ya6{bottom:755.043792pt;}
.ye8{bottom:755.200074pt;}
.y3c{bottom:755.520050pt;}
.y5a{bottom:760.000061pt;}
.y11{bottom:770.720063pt;}
.ya5{bottom:773.764049pt;}
.ydd{bottom:776.005757pt;}
.ya4{bottom:777.124886pt;}
.y3b{bottom:782.240052pt;}
.y59{bottom:786.720063pt;}
.y10{bottom:788.640046pt;}
.ya2{bottom:791.678317pt;}
.ya1{bottom:795.039154pt;}
.yf{bottom:806.560059pt;}
.y3a{bottom:809.120057pt;}
.yde{bottom:809.925560pt;}
.ya0{bottom:812.961010pt;}
.y58{bottom:813.760071pt;}
.ye{bottom:824.480072pt;}
.y39{bottom:836.000061pt;}
.y7f{bottom:838.080048pt;}
.y9f{bottom:840.319059pt;}
.y57{bottom:840.480072pt;}
.yd{bottom:843.520050pt;}
.ydf{bottom:843.685651pt;}
.y38{bottom:862.880066pt;}
.y9e{bottom:867.357743pt;}
.yc{bottom:867.360062pt;}
.ye0{bottom:877.440053pt;}
.yb{bottom:886.720063pt;}
.y37{bottom:889.760056pt;}
.y9d{bottom:894.084674pt;}
.y56{bottom:894.240052pt;}
.ya{bottom:902.080063pt;}
.ye1{bottom:911.359820pt;}
.y36{bottom:916.640061pt;}
.y9{bottom:920.000061pt;}
.y55{bottom:921.120057pt;}
.y9c{bottom:921.123358pt;}
.y8{bottom:937.760056pt;}
.y35{bottom:943.360062pt;}
.ye2{bottom:945.119929pt;}
.y9b{bottom:947.842701pt;}
.y54{bottom:948.000061pt;}
.y7{bottom:955.680054pt;}
.ye6{bottom:969.276462pt;}
.y6{bottom:970.240052pt;}
.y34{bottom:970.400055pt;}
.y9a{bottom:974.721714pt;}
.y53{bottom:974.880066pt;}
.ye5{bottom:990.076063pt;}
.y33{bottom:999.200058pt;}
.y99{bottom:1001.600716pt;}
.y5{bottom:1001.760056pt;}
.y30{bottom:1020.000061pt;}
.y96{bottom:1020.001085pt;}
.y95{bottom:1036.957828pt;}
.y2f{bottom:1036.960061pt;}
.y1{bottom:1037.920060pt;}
.hf{height:3.479788pt;}
.h42{height:14.559997pt;}
.h3f{height:14.559998pt;}
.h24{height:16.000000pt;}
.h22{height:16.159974pt;}
.h23{height:16.160034pt;}
.h43{height:16.960022pt;}
.h30{height:17.274611pt;}
.h2b{height:17.275562pt;}
.h31{height:17.279344pt;}
.h2f{height:17.279391pt;}
.h1d{height:17.279968pt;}
.h12{height:17.279969pt;}
.h1a{height:17.279998pt;}
.hd{height:17.279999pt;}
.h1c{height:17.280029pt;}
.h1b{height:17.280030pt;}
.h2e{height:17.284124pt;}
.h19{height:17.439972pt;}
.h18{height:17.440003pt;}
.h2d{height:17.442821pt;}
.h2c{height:17.442844pt;}
.h2a{height:17.594927pt;}
.h17{height:17.600006pt;}
.h29{height:17.602515pt;}
.h10{height:25.228552pt;}
.h37{height:29.140883pt;}
.h8{height:29.143232pt;}
.h32{height:36.099148pt;}
.h41{height:36.481734pt;}
.h40{height:37.643091pt;}
.h44{height:37.744078pt;}
.h33{height:40.013458pt;}
.h4{height:40.017656pt;}
.h3{height:41.892609pt;}
.h3e{height:41.960306pt;}
.h27{height:43.493049pt;}
.h6{height:43.497416pt;}
.h28{height:43.949269pt;}
.h7{height:43.953683pt;}
.h3c{height:45.352900pt;}
.h3d{height:45.474571pt;}
.h38{height:45.530835pt;}
.hc{height:45.535407pt;}
.h20{height:45.708536pt;}
.h1e{height:46.348668pt;}
.h34{height:46.465762pt;}
.ha{height:49.928911pt;}
.h25{height:50.549264pt;}
.h11{height:50.554339pt;}
.he{height:50.892080pt;}
.h5{height:51.425913pt;}
.h1f{height:52.183240pt;}
.h21{height:52.183268pt;}
.h14{height:52.823164pt;}
.h13{height:52.823224pt;}
.h15{height:52.823288pt;}
.h16{height:52.823408pt;}
.hb{height:54.351465pt;}
.h39{height:54.516648pt;}
.h26{height:56.998192pt;}
.h2{height:57.004172pt;}
.h36{height:57.846130pt;}
.h3b{height:57.851602pt;}
.h9{height:58.458437pt;}
.h35{height:60.313692pt;}
.h3a{height:65.246266pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w11{width:5.279998pt;}
.w46{width:5.436638pt;}
.w57{width:6.400025pt;}
.w53{width:7.033404pt;}
.w35{width:7.041015pt;}
.w24{width:7.199951pt;}
.w22{width:7.199981pt;}
.w23{width:7.199982pt;}
.w21{width:7.199997pt;}
.w2d{width:7.200004pt;}
.w6{width:7.200012pt;}
.w8{width:7.200013pt;}
.w36{width:7.204515pt;}
.w9{width:7.520019pt;}
.w4b{width:7.836515pt;}
.w42{width:7.836561pt;}
.w38{width:7.839392pt;}
.w51{width:7.839404pt;}
.w49{width:7.839415pt;}
.w20{width:7.839966pt;}
.w3{width:7.839996pt;}
.wc{width:7.839997pt;}
.w1e{width:7.840011pt;}
.w1a{width:7.840026pt;}
.w13{width:7.840027pt;}
.w3b{width:7.841295pt;}
.w55{width:7.846029pt;}
.w3e{width:7.847003pt;}
.w56{width:9.279999pt;}
.wa{width:11.679993pt;}
.w29{width:14.399963pt;}
.w28{width:14.399994pt;}
.w27{width:14.400009pt;}
.w2a{width:14.400025pt;}
.w7{width:14.559997pt;}
.w34{width:15.679992pt;}
.w12{width:15.839996pt;}
.w1f{width:18.239990pt;}
.w1d{width:18.239991pt;}
.wd{width:19.519989pt;}
.w31{width:24.959960pt;}
.w32{width:24.959961pt;}
.w2f{width:24.959991pt;}
.w30{width:24.959992pt;}
.w2e{width:24.960007pt;}
.w25{width:24.960022pt;}
.wf{width:31.199982pt;}
.w1b{width:32.959992pt;}
.w2b{width:32.960022pt;}
.w1c{width:36.000000pt;}
.w17{width:39.040009pt;}
.w45{width:39.843284pt;}
.w54{width:43.678371pt;}
.w48{width:43.683128pt;}
.w16{width:45.920014pt;}
.w3f{width:51.514932pt;}
.w41{width:51.520594pt;}
.w4e{width:51.523518pt;}
.w43{width:51.524446pt;}
.w2c{width:53.919997pt;}
.w39{width:55.354781pt;}
.w3a{width:55.360489pt;}
.w4d{width:55.362392pt;}
.w4a{width:55.363367pt;}
.w3c{width:55.364295pt;}
.w40{width:59.194653pt;}
.w4f{width:63.200810pt;}
.w47{width:67.041645pt;}
.w33{width:70.880005pt;}
.w10{width:73.600007pt;}
.w50{width:82.241400pt;}
.we{width:85.279999pt;}
.w15{width:91.360016pt;}
.w18{width:92.160004pt;}
.w4{width:93.119996pt;}
.w2{width:96.639984pt;}
.w37{width:99.037938pt;}
.w3d{width:103.524104pt;}
.w14{width:107.839997pt;}
.w44{width:110.717179pt;}
.w26{width:114.879996pt;}
.w19{width:117.279969pt;}
.w4c{width:123.681473pt;}
.wb{width:135.360016pt;}
.w52{width:141.124294pt;}
.w5{width:210.720001pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x8c{left:-8.160004pt;}
.x0{left:0.000000pt;}
.x39{left:17.600000pt;}
.x28{left:53.279999pt;}
.x52{left:71.519997pt;}
.x1{left:93.440002pt;}
.x7{left:97.760002pt;}
.x81{left:102.081523pt;}
.x80{left:108.000783pt;}
.xc{left:109.279999pt;}
.xa{left:113.440002pt;}
.x8a{left:116.800003pt;}
.x4a{left:132.160004pt;}
.x70{left:133.284902pt;}
.x71{left:138.561857pt;}
.x8b{left:140.160004pt;}
.x87{left:149.760628pt;}
.x82{left:154.881533pt;}
.x27{left:162.399994pt;}
.x3a{left:173.919998pt;}
.x7c{left:175.842699pt;}
.x3b{left:181.119995pt;}
.xf{left:186.399994pt;}
.x4b{left:188.320007pt;}
.x29{left:193.440002pt;}
.x68{left:196.958122pt;}
.x53{left:198.880005pt;}
.x5a{left:202.880005pt;}
.x6d{left:204.318479pt;}
.x72{left:205.603503pt;}
.x2a{left:211.679993pt;}
.x26{left:220.479996pt;}
.x60{left:227.684596pt;}
.x89{left:229.601636pt;}
.x13{left:238.720001pt;}
.x84{left:240.642324pt;}
.x3c{left:245.279999pt;}
.x6f{left:248.001630pt;}
.x15{left:250.399994pt;}
.x12{left:253.119995pt;}
.x4c{left:259.679993pt;}
.x79{left:262.243331pt;}
.x2b{left:264.480011pt;}
.x14{left:270.399994pt;}
.x23{left:271.679993pt;}
.x7e{left:272.958797pt;}
.x85{left:275.520444pt;}
.x69{left:279.039857pt;}
.x2c{left:282.720001pt;}
.x8{left:284.640015pt;}
.x86{left:287.685237pt;}
.x5b{left:291.040009pt;}
.x73{left:293.600900pt;}
.x5c{left:298.880005pt;}
.x5f{left:306.720001pt;}
.x3d{left:315.839996pt;}
.x61{left:321.445572pt;}
.x3e{left:323.040009pt;}
.x21{left:324.000000pt;}
.x20{left:330.720001pt;}
.x2d{left:335.040009pt;}
.x74{left:337.284027pt;}
.x54{left:340.799988pt;}
.xd{left:348.640015pt;}
.x2e{left:353.279999pt;}
.x1b{left:358.559998pt;}
.x1c{left:363.679993pt;}
.xb{left:366.079987pt;}
.x19{left:370.239990pt;}
.x6e{left:372.800833pt;}
.x1f{left:376.320007pt;}
.x1d{left:379.359985pt;}
.x6a{left:380.640225pt;}
.x3f{left:386.399994pt;}
.x5d{left:387.359985pt;}
.x1e{left:392.799988pt;}
.x9{left:397.119995pt;}
.x4d{left:400.640015pt;}
.x2f{left:405.600006pt;}
.x55{left:411.359985pt;}
.x16{left:420.320007pt;}
.x30{left:423.679993pt;}
.x83{left:425.125848pt;}
.x17{left:436.320007pt;}
.x62{left:437.766654pt;}
.x75{left:440.800515pt;}
.xe{left:445.279999pt;}
.x63{left:451.681425pt;}
.x18{left:455.839996pt;}
.x40{left:456.959991pt;}
.x5e{left:458.239990pt;}
.x41{left:464.160004pt;}
.x1a{left:467.519989pt;}
.x24{left:472.320007pt;}
.x31{left:476.160004pt;}
.x56{left:481.920013pt;}
.x7a{left:492.162436pt;}
.x32{left:494.239990pt;}
.x76{left:496.163882pt;}
.x6b{left:503.045203pt;}
.x66{left:507.041915pt;}
.x42{left:527.520020pt;}
.x5{left:529.440002pt;}
.x43{left:534.559998pt;}
.x6{left:535.840027pt;}
.x88{left:539.365938pt;}
.x64{left:540.802226pt;}
.x4e{left:541.760010pt;}
.x33{left:546.559998pt;}
.x57{left:552.320007pt;}
.x22{left:553.599976pt;}
.x65{left:555.044879pt;}
.x34{left:564.799988pt;}
.x77{left:569.605944pt;}
.x2{left:571.039978pt;}
.x4{left:594.400024pt;}
.x44{left:598.080017pt;}
.x45{left:605.119995pt;}
.x6c{left:606.407728pt;}
.x67{left:610.247577pt;}
.x4f{left:612.320007pt;}
.x7d{left:613.284315pt;}
.x35{left:616.640015pt;}
.x58{left:622.880005pt;}
.x78{left:624.970239pt;}
.x7b{left:632.649938pt;}
.x7f{left:665.923304pt;}
.x46{left:668.479980pt;}
.x10{left:669.760010pt;}
.x47{left:675.520020pt;}
.x50{left:682.719971pt;}
.x11{left:684.320007pt;}
.x25{left:688.320007pt;}
.x59{left:693.280029pt;}
.x3{left:700.799988pt;}
.x36{left:705.760010pt;}
.x48{left:738.880005pt;}
.x37{left:749.440002pt;}
.x49{left:763.840027pt;}
.x38{left:767.679993pt;}
.x51{left:771.840027pt;}
}




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