
    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_540eb0971bbbc6e34d4d0ce4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_7846ce635cdb8cb3630713d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_0949200ba566b2d3a4ab40e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6978c13417921a0d33a34b89.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-34.559986px;}
.v3{vertical-align:-31.679987px;}
.v7{vertical-align:-18.719993px;}
.v6{vertical-align:-1.439999px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:34.559986px;}
.v1{vertical-align:69.119972px;}
.v4{vertical-align:103.679959px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.010553px;}
.ls16{letter-spacing:0.010620px;}
.ls17{letter-spacing:0.010641px;}
.ls3{letter-spacing:0.021106px;}
.ls5{letter-spacing:0.021238px;}
.ls13{letter-spacing:0.021240px;}
.ls4{letter-spacing:0.021282px;}
.lsd{letter-spacing:0.272340px;}
.lsc{letter-spacing:0.378514px;}
.ls6{letter-spacing:4.333175px;}
.ls8{letter-spacing:6.494457px;}
.ls2{letter-spacing:14.419122px;}
.lsa{letter-spacing:41.940524px;}
.ls9{letter-spacing:41.940583px;}
.lse{letter-spacing:48.946900px;}
.ls15{letter-spacing:198.127121px;}
.lsf{letter-spacing:265.312094px;}
.ls14{letter-spacing:277.559889px;}
.ls12{letter-spacing:312.140703px;}
.ls10{letter-spacing:333.754066px;}
.ls11{letter-spacing:346.001480px;}
.ls7{letter-spacing:1221.131512px;}
.ls0{letter-spacing:1239.143504px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-18.021099px;}
.ws0{word-spacing:-17.999993px;}
.ws4{word-spacing:-14.939994px;}
.ws2{word-spacing:-12.059995px;}
.ws1{word-spacing:0.000000px;}
._9{margin-left:-2.478916px;}
._1{margin-left:-1.064211px;}
._3{width:1.418333px;}
._4{width:3.318685px;}
._5{width:4.342773px;}
._b{width:5.966342px;}
._a{width:7.055449px;}
._d{width:8.169195px;}
._c{width:9.352605px;}
._10{width:10.412721px;}
._8{width:11.565982px;}
._6{width:13.266433px;}
._7{width:14.549250px;}
._2{width:16.408733px;}
._0{width:17.651773px;}
._13{width:19.674724px;}
._17{width:21.296376px;}
._16{width:23.039411px;}
._19{width:24.460227px;}
._1b{width:25.622336px;}
._18{width:27.617123px;}
._1c{width:28.639790px;}
._14{width:30.492848px;}
._15{width:31.570071px;}
._1d{width:32.971725px;}
._8f{width:34.740966px;}
._90{width:36.029732px;}
._11{width:38.169529px;}
._12{width:39.810007px;}
._8e{width:43.666882px;}
._8d{width:44.736041px;}
._75{width:46.052302px;}
._f{width:47.762623px;}
._e{width:48.978268px;}
._23{width:51.948479px;}
._57{width:53.917070px;}
._76{width:55.484461px;}
._56{width:60.271111px;}
._91{width:63.944146px;}
._87{width:65.444112px;}
._61{width:68.667930px;}
._2a{width:73.528891px;}
._5c{width:75.171271px;}
._71{width:76.971214px;}
._7f{width:80.195031px;}
._70{width:83.455171px;}
._55{width:84.517470px;}
._54{width:90.529824px;}
._60{width:91.569198px;}
._7a{width:94.945688px;}
._8c{width:96.612343px;}
._6c{width:98.838518px;}
._22{width:100.218106px;}
._83{width:102.923917px;}
._5e{width:104.938665px;}
._6f{width:106.714316px;}
._53{width:109.733192px;}
._5f{width:115.118265px;}
._26{width:117.489009px;}
._8b{width:118.626727px;}
._5b{width:121.107935px;}
._27{width:123.239543px;}
._63{width:124.862626px;}
._50{width:127.365475px;}
._4f{width:132.680854px;}
._86{width:134.401482px;}
._64{width:135.406733px;}
._36{width:138.773690px;}
._5a{width:140.333390px;}
._4e{width:143.215613px;}
._6a{width:144.387311px;}
._8a{width:146.508452px;}
._4d{width:149.304183px;}
._67{width:158.796421px;}
._28{width:160.359007px;}
._2f{width:161.800802px;}
._7e{width:163.470893px;}
._29{width:166.937040px;}
._21{width:170.217489px;}
._73{width:173.095368px;}
._4b{width:176.957119px;}
._79{width:179.761507px;}
._65{width:182.460952px;}
._88{width:187.087034px;}
._39{width:192.321993px;}
._74{width:193.472589px;}
._1a{width:198.127361px;}
._7d{width:201.950007px;}
._85{width:206.294663px;}
._89{width:207.371067px;}
._82{width:208.712910px;}
._81{width:217.677922px;}
._84{width:220.392894px;}
._7c{width:221.743895px;}
._2b{width:224.101236px;}
._80{width:226.839592px;}
._78{width:231.830096px;}
._66{width:235.895472px;}
._4c{width:236.899292px;}
._7b{width:241.590424px;}
._33{width:245.859007px;}
._46{width:249.509378px;}
._77{width:251.623986px;}
._48{width:265.348684px;}
._31{width:267.078200px;}
._20{width:269.634519px;}
._68{width:275.574638px;}
._3c{width:295.228672px;}
._6b{width:302.774956px;}
._92{width:304.364418px;}
._93{width:305.670732px;}
._42{width:310.357955px;}
._4a{width:316.097074px;}
._24{width:321.693111px;}
._2e{width:333.756647px;}
._2d{width:346.001895px;}
._47{width:360.763069px;}
._30{width:374.424157px;}
._69{width:402.329151px;}
._1f{width:405.862118px;}
._2c{width:410.841469px;}
._62{width:412.090314px;}
._32{width:413.723095px;}
._40{width:423.879402px;}
._51{width:439.513414px;}
._6e{width:446.142882px;}
._45{width:459.449708px;}
._52{width:461.272210px;}
._59{width:475.681051px;}
._72{width:485.611748px;}
._49{width:516.746249px;}
._41{width:520.541593px;}
._58{width:527.785247px;}
._5d{width:550.211765px;}
._43{width:575.102056px;}
._6d{width:629.135100px;}
._35{width:642.823610px;}
._44{width:660.834661px;}
._38{width:662.995988px;}
._3e{width:667.174518px;}
._3f{width:684.417414px;}
._3a{width:711.840514px;}
._3b{width:714.147374px;}
._37{width:759.784457px;}
._1e{width:794.114466px;}
._3d{width:800.112347px;}
._34{width:901.462311px;}
._25{width:965.074218px;}
.fc3{color:rgb(83,129,53);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.879984px;}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs4{font-size:59.759976px;}
.fs5{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fs1{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y116{bottom:3.598974px;}
.ya7{bottom:3.598986px;}
.y119{bottom:3.598988px;}
.y141{bottom:3.599017px;}
.y144{bottom:3.599027px;}
.y120{bottom:3.599032px;}
.y147{bottom:3.599036px;}
.y14b{bottom:3.599058px;}
.yc9{bottom:3.599220px;}
.y108{bottom:3.599293px;}
.yd9{bottom:3.599303px;}
.ydc{bottom:3.599306px;}
.y10d{bottom:3.599316px;}
.y1{bottom:57.720277px;}
.y13a{bottom:136.019946px;}
.y54{bottom:137.639945px;}
.y110{bottom:139.440244px;}
.y9d{bottom:145.380242px;}
.y22{bottom:146.279941px;}
.ye1{bottom:148.439941px;}
.y99{bottom:153.659939px;}
.y61{bottom:156.539937px;}
.y42{bottom:156.540237px;}
.y10f{bottom:156.719937px;}
.y83{bottom:159.239936px;}
.y5b{bottom:161.759935px;}
.y16f{bottom:161.939935px;}
.y9c{bottom:162.659935px;}
.y94{bottom:163.379935px;}
.ye0{bottom:165.539934px;}
.y158{bottom:166.439933px;}
.y139{bottom:166.979933px;}
.y53{bottom:168.599933px;}
.ya0{bottom:170.939932px;}
.ye2{bottom:174.179930px;}
.y21{bottom:177.239929px;}
.y98{bottom:179.939928px;}
.y93{bottom:180.659928px;}
.ydf{bottom:182.819927px;}
.y10e{bottom:185.879926px;}
.y60{bottom:187.679925px;}
.y41{bottom:187.680225px;}
.y9f{bottom:188.039925px;}
.ya1{bottom:188.939924px;}
.y82{bottom:190.199924px;}
.y5a{bottom:192.719923px;}
.y16e{bottom:193.079923px;}
.y97{bottom:197.039921px;}
.y92{bottom:197.939921px;}
.y138{bottom:198.119921px;}
.y52{bottom:199.739920px;}
.yde{bottom:200.099920px;}
.y10c{bottom:205.500600px;}
.y9b{bottom:206.039918px;}
.y20{bottom:208.379917px;}
.y10b{bottom:209.099916px;}
.y96{bottom:214.319914px;}
.y91{bottom:215.039914px;}
.y5f{bottom:218.639913px;}
.y40{bottom:218.640213px;}
.y81{bottom:221.339911px;}
.y9a{bottom:223.319911px;}
.y59{bottom:223.859910px;}
.y16d{bottom:224.039910px;}
.y10a{bottom:226.379909px;}
.y51{bottom:226.559909px;}
.y137{bottom:229.079908px;}
.ydd{bottom:229.259908px;}
.ydb{bottom:231.420600px;}
.y90{bottom:232.319907px;}
.yda{bottom:235.019906px;}
.y1f{bottom:239.339904px;}
.yd8{bottom:240.060600px;}
.y95{bottom:240.599904px;}
.yd7{bottom:243.659903px;}
.y109{bottom:244.379902px;}
.y180{bottom:247.619901px;}
.y8f{bottom:249.599900px;}
.y69{bottom:249.779900px;}
.y3f{bottom:249.780200px;}
.y80{bottom:252.299899px;}
.y58{bottom:254.819898px;}
.y16c{bottom:255.179898px;}
.y136{bottom:260.219896px;}
.y107{bottom:264.000600px;}
.y17f{bottom:266.339893px;}
.y8e{bottom:266.879893px;}
.y9e{bottom:266.880193px;}
.y106{bottom:267.599893px;}
.y1e{bottom:270.479892px;}
.yd6{bottom:276.059890px;}
.y170{bottom:280.379888px;}
.y68{bottom:280.739888px;}
.y3e{bottom:280.740188px;}
.y57{bottom:281.639887px;}
.y7f{bottom:283.439887px;}
.y17e{bottom:283.619887px;}
.yd4{bottom:284.699886px;}
.y16b{bottom:286.139886px;}
.y103{bottom:290.819884px;}
.y135{bottom:291.179884px;}
.yd5{bottom:293.339883px;}
.y8d{bottom:293.879882px;}
.y17d{bottom:300.899880px;}
.y1d{bottom:301.439879px;}
.yd3{bottom:301.979879px;}
.y8a{bottom:303.599879px;}
.y102{bottom:307.739877px;}
.y8c{bottom:311.159876px;}
.y67{bottom:311.879875px;}
.y3d{bottom:311.880175px;}
.y7e{bottom:314.399874px;}
.y16a{bottom:317.279873px;}
.y17c{bottom:318.179873px;}
.y89{bottom:320.879872px;}
.y134{bottom:322.319871px;}
.y105{bottom:322.499871px;}
.y101{bottom:325.379870px;}
.yd2{bottom:328.619869px;}
.y104{bottom:331.139868px;}
.y1c{bottom:332.579867px;}
.y17b{bottom:335.459866px;}
.y8b{bottom:337.259865px;}
.y88{bottom:338.159865px;}
.y17a{bottom:342.299863px;}
.y100{bottom:342.659863px;}
.y66{bottom:342.839863px;}
.y3c{bottom:342.840163px;}
.y7d{bottom:345.359862px;}
.ycf{bottom:345.719862px;}
.y169{bottom:348.239861px;}
.y133{bottom:353.279859px;}
.yce{bottom:354.359858px;}
.y87{bottom:355.259858px;}
.yff{bottom:360.299856px;}
.yd1{bottom:362.999855px;}
.y1b{bottom:363.179855px;}
.y86{bottom:372.539851px;}
.y65{bottom:373.979850px;}
.y3b{bottom:373.980150px;}
.y179{bottom:374.160150px;}
.y7c{bottom:376.499849px;}
.yfe{bottom:377.579849px;}
.y168{bottom:379.379848px;}
.yd0{bottom:380.279848px;}
.y132{bottom:384.239846px;}
.y85{bottom:390.179844px;}
.y1a{bottom:394.679842px;}
.y64{bottom:404.939838px;}
.y3a{bottom:404.940138px;}
.yfd{bottom:406.019838px;}
.ycd{bottom:406.199838px;}
.y7b{bottom:407.459837px;}
.y167{bottom:410.339836px;}
.y131{bottom:415.379834px;}
.y19{bottom:425.639830px;}
.ycc{bottom:432.119827px;}
.y63{bottom:436.079826px;}
.y39{bottom:436.080126px;}
.yfc{bottom:437.159825px;}
.y7a{bottom:438.599825px;}
.y166{bottom:441.299823px;}
.yc8{bottom:445.800600px;}
.y130{bottom:446.339821px;}
.yc7{bottom:449.399820px;}
.y18{bottom:456.779817px;}
.yc6{bottom:458.039817px;}
.ycb{bottom:466.679813px;}
.y62{bottom:467.039813px;}
.y38{bottom:467.040113px;}
.yfb{bottom:468.119813px;}
.y79{bottom:469.559812px;}
.y165{bottom:472.439811px;}
.y12f{bottom:477.479809px;}
.yca{bottom:483.959806px;}
.y17{bottom:487.739805px;}
.y84{bottom:498.179801px;}
.y37{bottom:498.180101px;}
.yfa{bottom:499.259800px;}
.y78{bottom:500.699800px;}
.y164{bottom:503.399799px;}
.y12e{bottom:508.439797px;}
.yc5{bottom:516.359793px;}
.y16{bottom:518.879792px;}
.y36{bottom:528.780088px;}
.y177{bottom:529.139788px;}
.y5d{bottom:529.140088px;}
.yf9{bottom:530.219788px;}
.y157{bottom:531.119788px;}
.y77{bottom:531.659787px;}
.y163{bottom:534.539786px;}
.y12d{bottom:539.579784px;}
.yc4{bottom:548.399781px;}
.y15{bottom:549.839780px;}
.y156{bottom:559.559776px;}
.y35{bottom:559.920076px;}
.y176{bottom:560.279776px;}
.y5c{bottom:560.280076px;}
.yf8{bottom:561.359775px;}
.y76{bottom:562.799775px;}
.y162{bottom:565.499774px;}
.y12c{bottom:570.539772px;}
.yc3{bottom:577.019769px;}
.y14{bottom:580.979768px;}
.yf7{bottom:581.339767px;}
.y155{bottom:590.699764px;}
.y175{bottom:591.239764px;}
.y34{bottom:591.240064px;}
.y75{bottom:593.759762px;}
.y161{bottom:596.639761px;}
.y12b{bottom:601.679759px;}
.yf6{bottom:604.739758px;}
.yc2{bottom:607.979757px;}
.y13{bottom:611.939755px;}
.y154{bottom:621.659751px;}
.y174{bottom:622.199751px;}
.y33{bottom:622.200051px;}
.y74{bottom:624.899750px;}
.y160{bottom:627.599749px;}
.y12a{bottom:632.639747px;}
.yf5{bottom:634.619746px;}
.yc1{bottom:639.119744px;}
.y12{bottom:642.899743px;}
.y153{bottom:652.799739px;}
.y5e{bottom:652.980039px;}
.y173{bottom:653.339739px;}
.y32{bottom:653.340039px;}
.y73{bottom:655.859738px;}
.y15f{bottom:658.739737px;}
.y129{bottom:663.779734px;}
.yf4{bottom:669.899732px;}
.yc0{bottom:670.079732px;}
.y11{bottom:674.039730px;}
.y152{bottom:683.759726px;}
.y172{bottom:684.299726px;}
.y31{bottom:684.300026px;}
.y50{bottom:686.819725px;}
.y72{bottom:686.999725px;}
.y15e{bottom:689.699724px;}
.y128{bottom:694.739722px;}
.ybf{bottom:701.219720px;}
.y10{bottom:704.999718px;}
.yf3{bottom:705.359718px;}
.y151{bottom:714.899714px;}
.y4f{bottom:715.439714px;}
.y30{bottom:715.440014px;}
.y71{bottom:717.959713px;}
.y15d{bottom:720.839712px;}
.y127{bottom:725.879710px;}
.yf2{bottom:731.639707px;}
.y56{bottom:731.819707px;}
.yf{bottom:736.139706px;}
.ybe{bottom:742.799703px;}
.y150{bottom:745.859702px;}
.y4e{bottom:746.399701px;}
.y2f{bottom:746.400001px;}
.y55{bottom:748.919700px;}
.y70{bottom:749.099700px;}
.y15c{bottom:751.799699px;}
.yf1{bottom:752.699699px;}
.y126{bottom:756.839697px;}
.ybd{bottom:762.779695px;}
.ye{bottom:767.099693px;}
.y14f{bottom:776.999689px;}
.yf0{bottom:777.179689px;}
.y4d{bottom:777.539689px;}
.y2e{bottom:777.539989px;}
.y6f{bottom:780.059688px;}
.y15b{bottom:782.579687px;}
.y125{bottom:787.979685px;}
.ybc{bottom:789.779684px;}
.yef{bottom:794.459682px;}
.y14e{bottom:796.979681px;}
.yd{bottom:798.239681px;}
.ybb{bottom:806.879677px;}
.y4c{bottom:808.499677px;}
.y2d{bottom:808.499977px;}
.y15a{bottom:809.579676px;}
.y6e{bottom:811.199676px;}
.y14d{bottom:814.979674px;}
.y124{bottom:818.939672px;}
.yee{bottom:820.199672px;}
.yc{bottom:828.839668px;}
.yba{bottom:833.159667px;}
.y14c{bottom:834.959666px;}
.y178{bottom:839.279964px;}
.y4b{bottom:839.639664px;}
.y2c{bottom:839.639964px;}
.y6d{bottom:842.159663px;}
.yed{bottom:843.599663px;}
.y123{bottom:850.079660px;}
.yb9{bottom:850.439660px;}
.y14a{bottom:851.160600px;}
.y149{bottom:854.759658px;}
.yb{bottom:860.339656px;}
.yec{bottom:866.819653px;}
.yb4{bottom:867.719653px;}
.y4a{bottom:870.599652px;}
.y2b{bottom:870.599952px;}
.y148{bottom:872.039651px;}
.y6c{bottom:873.299651px;}
.yb8{bottom:876.719649px;}
.yaf{bottom:877.439649px;}
.y122{bottom:881.039648px;}
.yb3{bottom:884.999646px;}
.yeb{bottom:890.039644px;}
.ya{bottom:891.299643px;}
.yb7{bottom:893.999642px;}
.yae{bottom:894.719642px;}
.y121{bottom:901.199640px;}
.y49{bottom:901.739639px;}
.y2a{bottom:901.739939px;}
.yb2{bottom:902.099639px;}
.y6b{bottom:904.259638px;}
.y146{bottom:906.240600px;}
.y145{bottom:909.839636px;}
.yad{bottom:911.999635px;}
.yea{bottom:912.899635px;}
.y11f{bottom:915.600600px;}
.y11e{bottom:919.199632px;}
.yb6{bottom:920.099632px;}
.y9{bottom:922.439631px;}
.yb1{bottom:928.379629px;}
.yac{bottom:929.099628px;}
.y143{bottom:929.640600px;}
.y48{bottom:932.699627px;}
.y29{bottom:932.699927px;}
.y142{bottom:933.239627px;}
.y6a{bottom:933.779626px;}
.y11d{bottom:936.479625px;}
.ye9{bottom:937.019625px;}
.yb5{bottom:937.379625px;}
.yab{bottom:946.379621px;}
.y140{bottom:952.860600px;}
.y8{bottom:953.399619px;}
.y11c{bottom:954.479618px;}
.yb0{bottom:954.659618px;}
.y13f{bottom:956.459617px;}
.ye8{bottom:957.899617px;}
.y47{bottom:963.479615px;}
.yaa{bottom:963.659615px;}
.y171{bottom:963.839614px;}
.y28{bottom:963.839914px;}
.y13e{bottom:973.739611px;}
.y11b{bottom:974.279610px;}
.ya9{bottom:980.939608px;}
.y7{bottom:984.539606px;}
.ye7{bottom:986.519605px;}
.y13d{bottom:990.839604px;}
.y11a{bottom:994.259602px;}
.y45{bottom:994.799602px;}
.y27{bottom:994.799902px;}
.y46{bottom:1003.079599px;}
.ya8{bottom:1007.939597px;}
.y13c{bottom:1008.839596px;}
.y6{bottom:1015.499594px;}
.ye6{bottom:1017.479593px;}
.y44{bottom:1025.939590px;}
.y26{bottom:1025.939890px;}
.y118{bottom:1025.940600px;}
.y13b{bottom:1028.459589px;}
.y117{bottom:1029.539588px;}
.ya6{bottom:1030.620600px;}
.y43{bottom:1034.219586px;}
.y5{bottom:1046.639581px;}
.ye5{bottom:1048.619581px;}
.y25{bottom:1056.899877px;}
.y159{bottom:1059.419576px;}
.ya5{bottom:1060.499576px;}
.y115{bottom:1061.040600px;}
.y114{bottom:1064.639574px;}
.ya4{bottom:1077.599569px;}
.ye4{bottom:1079.579568px;}
.y3{bottom:1079.759568px;}
.y113{bottom:1081.919567px;}
.y24{bottom:1088.039865px;}
.y4{bottom:1089.479564px;}
.ya3{bottom:1103.879558px;}
.y112{bottom:1104.599558px;}
.ye3{bottom:1110.899556px;}
.y2{bottom:1115.939554px;}
.y23{bottom:1118.999852px;}
.ya2{bottom:1121.159552px;}
.y111{bottom:1121.879551px;}
.he{height:16.920000px;}
.h15{height:38.158578px;}
.h6{height:47.344903px;}
.h3{height:54.421853px;}
.hc{height:58.651148px;}
.h12{height:58.786851px;}
.h7{height:60.226851px;}
.hf{height:62.327788px;}
.ha{height:65.010911px;}
.h9{height:66.757473px;}
.h8{height:69.086222px;}
.h4{height:70.628878px;}
.h1{height:70.664034px;}
.h5{height:72.562471px;}
.hb{height:75.093720px;}
.h2{height:84.898091px;}
.h10{height:93.211135px;}
.h13{height:94.786837px;}
.h14{height:127.051121px;}
.hd{height:127.771121px;}
.h11{height:162.331107px;}
.h0{height:1263.000000px;}
.w1{width:4.860000px;}
.w7{width:5.040000px;}
.w3{width:5.220000px;}
.w2{width:5.940000px;}
.w5{width:6.480000px;}
.w6{width:6.660000px;}
.w4{width:6.840000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.x5e{left:130.319948px;}
.x30{left:133.019947px;}
.x41{left:134.639946px;}
.xe{left:135.719946px;}
.x25{left:139.859944px;}
.x3e{left:141.479943px;}
.x33{left:143.999941px;}
.x42{left:145.619942px;}
.x39{left:147.059941px;}
.x12{left:148.857978px;}
.x1d{left:150.839940px;}
.x40{left:151.919939px;}
.x1c{left:154.080069px;}
.x14{left:157.499784px;}
.x37{left:158.759936px;}
.x26{left:162.179935px;}
.x38{left:163.259935px;}
.x1b{left:166.499933px;}
.x2c{left:167.759895px;}
.x2{left:170.099932px;}
.x13{left:171.899931px;}
.x5d{left:179.822860px;}
.x10{left:181.620612px;}
.x44{left:188.999924px;}
.x36{left:192.419923px;}
.x49{left:196.739921px;}
.x56{left:198.359921px;}
.x4a{left:209.159921px;}
.x55{left:212.219915px;}
.x58{left:213.479915px;}
.x35{left:217.619913px;}
.x57{left:221.759935px;}
.x59{left:223.019911px;}
.x53{left:225.539910px;}
.x47{left:226.799909px;}
.x48{left:229.319860px;}
.x17{left:235.620003px;}
.x31{left:241.740000px;}
.x3c{left:251.819899px;}
.xb{left:269.279892px;}
.x3b{left:287.279885px;}
.x43{left:301.319879px;}
.x32{left:304.379878px;}
.x15{left:324.540387px;}
.x7{left:328.499869px;}
.x3a{left:330.659982px;}
.x45{left:334.799866px;}
.x8{left:340.739864px;}
.x4b{left:347.760000px;}
.x34{left:356.399857px;}
.x4c{left:366.839853px;}
.x2e{left:376.200001px;}
.x2d{left:391.859974px;}
.xf{left:414.719573px;}
.x1a{left:452.520000px;}
.x18{left:465.840069px;}
.x27{left:470.339965px;}
.x3d{left:472.499811px;}
.x2f{left:480.600018px;}
.x29{left:482.220012px;}
.x4d{left:487.620000px;}
.x1e{left:498.239666px;}
.x28{left:507.060041px;}
.x3{left:519.479792px;}
.x4{left:523.259791px;}
.x4e{left:558.000000px;}
.x50{left:568.619762px;}
.x1f{left:580.499749px;}
.x4f{left:582.299767px;}
.x19{left:598.860041px;}
.x2a{left:608.040060px;}
.x51{left:614.520000px;}
.xc{left:623.339751px;}
.x5{left:625.319750px;}
.x52{left:627.839749px;}
.x46{left:631.979747px;}
.x6{left:633.419747px;}
.x20{left:635.400000px;}
.x9{left:644.939742px;}
.x5a{left:647.279741px;}
.x22{left:651.779738px;}
.xa{left:655.019738px;}
.x23{left:656.999739px;}
.x21{left:658.979736px;}
.x24{left:664.739735px;}
.x16{left:669.961030px;}
.x2b{left:695.160051px;}
.x54{left:701.100000px;}
.x5b{left:723.059711px;}
.x3f{left:741.240000px;}
.x11{left:757.979697px;}
.xd{left:764.459694px;}
.x5c{left:807.119677px;}
@media print{
.v5{vertical-align:-30.719988pt;}
.v3{vertical-align:-28.159989pt;}
.v7{vertical-align:-16.639993pt;}
.v6{vertical-align:-1.279999pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:30.719988pt;}
.v1{vertical-align:61.439975pt;}
.v4{vertical-align:92.159963pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.009381pt;}
.ls16{letter-spacing:0.009440pt;}
.ls17{letter-spacing:0.009459pt;}
.ls3{letter-spacing:0.018761pt;}
.ls5{letter-spacing:0.018878pt;}
.ls13{letter-spacing:0.018880pt;}
.ls4{letter-spacing:0.018917pt;}
.lsd{letter-spacing:0.242080pt;}
.lsc{letter-spacing:0.336457pt;}
.ls6{letter-spacing:3.851711pt;}
.ls8{letter-spacing:5.772851pt;}
.ls2{letter-spacing:12.816997pt;}
.lsa{letter-spacing:37.280466pt;}
.ls9{letter-spacing:37.280518pt;}
.lse{letter-spacing:43.508356pt;}
.ls15{letter-spacing:176.112996pt;}
.lsf{letter-spacing:235.832972pt;}
.ls14{letter-spacing:246.719901pt;}
.ls12{letter-spacing:277.458402pt;}
.ls10{letter-spacing:296.670281pt;}
.ls11{letter-spacing:307.556871pt;}
.ls7{letter-spacing:1085.450232pt;}
.ls0{letter-spacing:1101.460893pt;}
.ws3{word-spacing:-16.018755pt;}
.ws0{word-spacing:-15.999994pt;}
.ws4{word-spacing:-13.279995pt;}
.ws2{word-spacing:-10.719996pt;}
.ws1{word-spacing:0.000000pt;}
._9{margin-left:-2.203481pt;}
._1{margin-left:-0.945965pt;}
._3{width:1.260740pt;}
._4{width:2.949942pt;}
._5{width:3.860243pt;}
._b{width:5.303415pt;}
._a{width:6.271510pt;}
._d{width:7.261507pt;}
._c{width:8.313427pt;}
._10{width:9.255752pt;}
._8{width:10.280873pt;}
._6{width:11.792385pt;}
._7{width:12.932666pt;}
._2{width:14.585541pt;}
._0{width:15.690465pt;}
._13{width:17.488643pt;}
._17{width:18.930112pt;}
._16{width:20.479476pt;}
._19{width:21.742424pt;}
._1b{width:22.775410pt;}
._18{width:24.548554pt;}
._1c{width:25.457591pt;}
._14{width:27.104754pt;}
._15{width:28.062285pt;}
._1d{width:29.308200pt;}
._8f{width:30.880859pt;}
._90{width:32.026428pt;}
._11{width:33.928470pt;}
._12{width:35.386673pt;}
._8e{width:38.815006pt;}
._8d{width:39.765370pt;}
._75{width:40.935379pt;}
._f{width:42.455665pt;}
._e{width:43.536238pt;}
._23{width:46.176426pt;}
._57{width:47.926284pt;}
._76{width:49.319521pt;}
._56{width:53.574321pt;}
._91{width:56.839241pt;}
._87{width:58.172544pt;}
._61{width:61.038160pt;}
._2a{width:65.359014pt;}
._5c{width:66.818907pt;}
._71{width:68.418857pt;}
._7f{width:71.284472pt;}
._70{width:74.182374pt;}
._55{width:75.126640pt;}
._54{width:80.470955pt;}
._60{width:81.394843pt;}
._7a{width:84.396167pt;}
._8c{width:85.877638pt;}
._6c{width:87.856460pt;}
._22{width:89.082761pt;}
._83{width:91.487926pt;}
._5e{width:93.278814pt;}
._6f{width:94.857170pt;}
._53{width:97.540615pt;}
._5f{width:102.327347pt;}
._26{width:104.434675pt;}
._8b{width:105.445980pt;}
._5b{width:107.651498pt;}
._27{width:109.546261pt;}
._63{width:110.989000pt;}
._50{width:113.213755pt;}
._4f{width:117.938537pt;}
._86{width:119.467984pt;}
._64{width:120.361540pt;}
._36{width:123.354391pt;}
._5a{width:124.740791pt;}
._4e{width:127.302767pt;}
._6a{width:128.344276pt;}
._8a{width:130.229735pt;}
._4d{width:132.714830pt;}
._67{width:141.152375pt;}
._28{width:142.541340pt;}
._2f{width:143.822935pt;}
._7e{width:145.307460pt;}
._29{width:148.388480pt;}
._21{width:151.304435pt;}
._73{width:153.862550pt;}
._4b{width:157.295217pt;}
._79{width:159.788006pt;}
._65{width:162.187513pt;}
._88{width:166.299586pt;}
._39{width:170.952883pt;}
._74{width:171.975635pt;}
._1a{width:176.113210pt;}
._7d{width:179.511117pt;}
._85{width:183.373034pt;}
._89{width:184.329838pt;}
._82{width:185.522587pt;}
._81{width:193.491487pt;}
._84{width:195.904795pt;}
._7c{width:197.105685pt;}
._2b{width:199.201098pt;}
._80{width:201.635193pt;}
._78{width:206.071197pt;}
._66{width:209.684864pt;}
._4c{width:210.577148pt;}
._7b{width:214.747043pt;}
._33{width:218.541340pt;}
._46{width:221.786114pt;}
._77{width:223.665765pt;}
._48{width:235.865497pt;}
._31{width:237.402844pt;}
._20{width:239.675128pt;}
._68{width:244.955233pt;}
._3c{width:262.425486pt;}
._6b{width:269.133294pt;}
._92{width:270.546149pt;}
._93{width:271.707317pt;}
._42{width:275.873738pt;}
._4a{width:280.975177pt;}
._24{width:285.949432pt;}
._2e{width:296.672575pt;}
._2d{width:307.557240pt;}
._47{width:320.678284pt;}
._30{width:332.821473pt;}
._69{width:357.625912pt;}
._1f{width:360.766327pt;}
._2c{width:365.192417pt;}
._62{width:366.302502pt;}
._32{width:367.753862pt;}
._40{width:376.781691pt;}
._51{width:390.678590pt;}
._6e{width:396.571451pt;}
._45{width:408.399740pt;}
._52{width:410.019742pt;}
._59{width:422.827601pt;}
._72{width:431.654887pt;}
._49{width:459.329999pt;}
._41{width:462.703638pt;}
._58{width:469.142442pt;}
._5d{width:489.077125pt;}
._43{width:511.201827pt;}
._6d{width:559.231200pt;}
._35{width:571.398764pt;}
._44{width:587.408588pt;}
._38{width:589.329767pt;}
._3e{width:593.044016pt;}
._3f{width:608.371035pt;}
._3a{width:632.747124pt;}
._3b{width:634.797666pt;}
._37{width:675.363962pt;}
._1e{width:705.879526pt;}
._3d{width:711.210975pt;}
._34{width:801.299832pt;}
._25{width:857.843750pt;}
.fs6{font-size:34.559986pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs4{font-size:53.119979pt;}
.fs5{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fs1{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y116{bottom:3.199088pt;}
.ya7{bottom:3.199099pt;}
.y119{bottom:3.199101pt;}
.y141{bottom:3.199127pt;}
.y144{bottom:3.199135pt;}
.y120{bottom:3.199140pt;}
.y147{bottom:3.199143pt;}
.y14b{bottom:3.199163pt;}
.yc9{bottom:3.199307pt;}
.y108{bottom:3.199372pt;}
.yd9{bottom:3.199380pt;}
.ydc{bottom:3.199383pt;}
.y10d{bottom:3.199392pt;}
.y1{bottom:51.306913pt;}
.y13a{bottom:120.906618pt;}
.y54{bottom:122.346618pt;}
.y110{bottom:123.946884pt;}
.y9d{bottom:129.226882pt;}
.y22{bottom:130.026615pt;}
.ye1{bottom:131.946614pt;}
.y99{bottom:136.586612pt;}
.y61{bottom:139.146611pt;}
.y42{bottom:139.146878pt;}
.y10f{bottom:139.306611pt;}
.y83{bottom:141.546610pt;}
.y5b{bottom:143.786609pt;}
.y16f{bottom:143.946609pt;}
.y9c{bottom:144.586609pt;}
.y94{bottom:145.226609pt;}
.ye0{bottom:147.146608pt;}
.y158{bottom:147.946607pt;}
.y139{bottom:148.426607pt;}
.y53{bottom:149.866607pt;}
.ya0{bottom:151.946606pt;}
.ye2{bottom:154.826605pt;}
.y21{bottom:157.546604pt;}
.y98{bottom:159.946603pt;}
.y93{bottom:160.586602pt;}
.ydf{bottom:162.506602pt;}
.y10e{bottom:165.226601pt;}
.y60{bottom:166.826600pt;}
.y41{bottom:166.826867pt;}
.y9f{bottom:167.146600pt;}
.ya1{bottom:167.946599pt;}
.y82{bottom:169.066599pt;}
.y5a{bottom:171.306598pt;}
.y16e{bottom:171.626598pt;}
.y97{bottom:175.146597pt;}
.y92{bottom:175.946596pt;}
.y138{bottom:176.106596pt;}
.y52{bottom:177.546596pt;}
.yde{bottom:177.866596pt;}
.y10c{bottom:182.667200pt;}
.y9b{bottom:183.146593pt;}
.y20{bottom:185.226593pt;}
.y10b{bottom:185.866592pt;}
.y96{bottom:190.506590pt;}
.y91{bottom:191.146590pt;}
.y5f{bottom:194.346589pt;}
.y40{bottom:194.346856pt;}
.y81{bottom:196.746588pt;}
.y9a{bottom:198.506587pt;}
.y59{bottom:198.986587pt;}
.y16d{bottom:199.146587pt;}
.y10a{bottom:201.226586pt;}
.y51{bottom:201.386586pt;}
.y137{bottom:203.626585pt;}
.ydd{bottom:203.786585pt;}
.ydb{bottom:205.707200pt;}
.y90{bottom:206.506584pt;}
.yda{bottom:208.906583pt;}
.y1f{bottom:212.746582pt;}
.yd8{bottom:213.387200pt;}
.y95{bottom:213.866581pt;}
.yd7{bottom:216.586580pt;}
.y109{bottom:217.226580pt;}
.y180{bottom:220.106579pt;}
.y8f{bottom:221.866578pt;}
.y69{bottom:222.026578pt;}
.y3f{bottom:222.026845pt;}
.y80{bottom:224.266577pt;}
.y58{bottom:226.506576pt;}
.y16c{bottom:226.826576pt;}
.y136{bottom:231.306574pt;}
.y107{bottom:234.667200pt;}
.y17f{bottom:236.746572pt;}
.y8e{bottom:237.226572pt;}
.y9e{bottom:237.226838pt;}
.y106{bottom:237.866572pt;}
.y1e{bottom:240.426570pt;}
.yd6{bottom:245.386569pt;}
.y170{bottom:249.226567pt;}
.y68{bottom:249.546567pt;}
.y3e{bottom:249.546834pt;}
.y57{bottom:250.346567pt;}
.y7f{bottom:251.946566pt;}
.y17e{bottom:252.106566pt;}
.yd4{bottom:253.066565pt;}
.y16b{bottom:254.346565pt;}
.y103{bottom:258.506563pt;}
.y135{bottom:258.826563pt;}
.yd5{bottom:260.746562pt;}
.y8d{bottom:261.226562pt;}
.y17d{bottom:267.466560pt;}
.y1d{bottom:267.946559pt;}
.yd3{bottom:268.426559pt;}
.y8a{bottom:269.866559pt;}
.y102{bottom:273.546557pt;}
.y8c{bottom:276.586556pt;}
.y67{bottom:277.226556pt;}
.y3d{bottom:277.226822pt;}
.y7e{bottom:279.466555pt;}
.y16a{bottom:282.026554pt;}
.y17c{bottom:282.826554pt;}
.y89{bottom:285.226553pt;}
.y134{bottom:286.506552pt;}
.y105{bottom:286.666552pt;}
.y101{bottom:289.226551pt;}
.yd2{bottom:292.106550pt;}
.y104{bottom:294.346549pt;}
.y1c{bottom:295.626548pt;}
.y17b{bottom:298.186547pt;}
.y8b{bottom:299.786547pt;}
.y88{bottom:300.586546pt;}
.y17a{bottom:304.266545pt;}
.y100{bottom:304.586545pt;}
.y66{bottom:304.746545pt;}
.y3c{bottom:304.746811pt;}
.y7d{bottom:306.986544pt;}
.ycf{bottom:307.306544pt;}
.y169{bottom:309.546543pt;}
.y133{bottom:314.026541pt;}
.yce{bottom:314.986541pt;}
.y87{bottom:315.786540pt;}
.yff{bottom:320.266539pt;}
.yd1{bottom:322.666538pt;}
.y1b{bottom:322.826538pt;}
.y86{bottom:331.146534pt;}
.y65{bottom:332.426534pt;}
.y3b{bottom:332.426800pt;}
.y179{bottom:332.586800pt;}
.y7c{bottom:334.666533pt;}
.yfe{bottom:335.626532pt;}
.y168{bottom:337.226532pt;}
.yd0{bottom:338.026531pt;}
.y132{bottom:341.546530pt;}
.y85{bottom:346.826528pt;}
.y1a{bottom:350.826526pt;}
.y64{bottom:359.946523pt;}
.y3a{bottom:359.946789pt;}
.yfd{bottom:360.906522pt;}
.ycd{bottom:361.066522pt;}
.y7b{bottom:362.186522pt;}
.y167{bottom:364.746521pt;}
.y131{bottom:369.226519pt;}
.y19{bottom:378.346515pt;}
.ycc{bottom:384.106513pt;}
.y63{bottom:387.626512pt;}
.y39{bottom:387.626778pt;}
.yfc{bottom:388.586511pt;}
.y7a{bottom:389.866511pt;}
.y166{bottom:392.266510pt;}
.yc8{bottom:396.267200pt;}
.y130{bottom:396.746508pt;}
.yc7{bottom:399.466507pt;}
.y18{bottom:406.026504pt;}
.yc6{bottom:407.146504pt;}
.ycb{bottom:414.826501pt;}
.y62{bottom:415.146501pt;}
.y38{bottom:415.146767pt;}
.yfb{bottom:416.106500pt;}
.y79{bottom:417.386500pt;}
.y165{bottom:419.946499pt;}
.y12f{bottom:424.426497pt;}
.yca{bottom:430.186495pt;}
.y17{bottom:433.546493pt;}
.y84{bottom:442.826490pt;}
.y37{bottom:442.826756pt;}
.yfa{bottom:443.786489pt;}
.y78{bottom:445.066489pt;}
.y164{bottom:447.466488pt;}
.y12e{bottom:451.946486pt;}
.yc5{bottom:458.986483pt;}
.y16{bottom:461.226482pt;}
.y36{bottom:470.026745pt;}
.y177{bottom:470.346479pt;}
.y5d{bottom:470.346745pt;}
.yf9{bottom:471.306478pt;}
.y157{bottom:472.106478pt;}
.y77{bottom:472.586478pt;}
.y163{bottom:475.146477pt;}
.y12d{bottom:479.626475pt;}
.yc4{bottom:487.466472pt;}
.y15{bottom:488.746471pt;}
.y156{bottom:497.386468pt;}
.y35{bottom:497.706734pt;}
.y176{bottom:498.026467pt;}
.y5c{bottom:498.026734pt;}
.yf8{bottom:498.986467pt;}
.y76{bottom:500.266467pt;}
.y162{bottom:502.666466pt;}
.y12c{bottom:507.146464pt;}
.yc3{bottom:512.906462pt;}
.y14{bottom:516.426460pt;}
.yf7{bottom:516.746460pt;}
.y155{bottom:525.066457pt;}
.y175{bottom:525.546456pt;}
.y34{bottom:525.546723pt;}
.y75{bottom:527.786456pt;}
.y161{bottom:530.346455pt;}
.y12b{bottom:534.826453pt;}
.yf6{bottom:537.546452pt;}
.yc2{bottom:540.426450pt;}
.y13{bottom:543.946449pt;}
.y154{bottom:552.586446pt;}
.y174{bottom:553.066445pt;}
.y33{bottom:553.066712pt;}
.y74{bottom:555.466444pt;}
.y160{bottom:557.866444pt;}
.y12a{bottom:562.346442pt;}
.yf5{bottom:564.106441pt;}
.yc1{bottom:568.106439pt;}
.y12{bottom:571.466438pt;}
.y153{bottom:580.266435pt;}
.y5e{bottom:580.426701pt;}
.y173{bottom:580.746434pt;}
.y32{bottom:580.746701pt;}
.y73{bottom:582.986433pt;}
.y15f{bottom:585.546432pt;}
.y129{bottom:590.026431pt;}
.yf4{bottom:595.466428pt;}
.yc0{bottom:595.626428pt;}
.y11{bottom:599.146427pt;}
.y152{bottom:607.786424pt;}
.y172{bottom:608.266423pt;}
.y31{bottom:608.266690pt;}
.y50{bottom:610.506422pt;}
.y72{bottom:610.666422pt;}
.y15e{bottom:613.066421pt;}
.y128{bottom:617.546420pt;}
.ybf{bottom:623.306417pt;}
.y10{bottom:626.666416pt;}
.yf3{bottom:626.986416pt;}
.y151{bottom:635.466412pt;}
.y4f{bottom:635.946412pt;}
.y30{bottom:635.946679pt;}
.y71{bottom:638.186411pt;}
.y15d{bottom:640.746410pt;}
.y127{bottom:645.226409pt;}
.yf2{bottom:650.346407pt;}
.y56{bottom:650.506406pt;}
.yf{bottom:654.346405pt;}
.ybe{bottom:660.266403pt;}
.y150{bottom:662.986401pt;}
.y4e{bottom:663.466401pt;}
.y2f{bottom:663.466668pt;}
.y55{bottom:665.706400pt;}
.y70{bottom:665.866400pt;}
.y15c{bottom:668.266399pt;}
.yf1{bottom:669.066399pt;}
.y126{bottom:672.746398pt;}
.ybd{bottom:678.026395pt;}
.ye{bottom:681.866394pt;}
.y14f{bottom:690.666390pt;}
.yf0{bottom:690.826390pt;}
.y4d{bottom:691.146390pt;}
.y2e{bottom:691.146657pt;}
.y6f{bottom:693.386389pt;}
.y15b{bottom:695.626388pt;}
.y125{bottom:700.426386pt;}
.ybc{bottom:702.026386pt;}
.yef{bottom:706.186384pt;}
.y14e{bottom:708.426383pt;}
.yd{bottom:709.546383pt;}
.ybb{bottom:717.226380pt;}
.y4c{bottom:718.666379pt;}
.y2d{bottom:718.666646pt;}
.y15a{bottom:719.626379pt;}
.y6e{bottom:721.066378pt;}
.y14d{bottom:724.426377pt;}
.y124{bottom:727.946375pt;}
.yee{bottom:729.066375pt;}
.yc{bottom:736.746372pt;}
.yba{bottom:740.586370pt;}
.y14c{bottom:742.186370pt;}
.y178{bottom:746.026635pt;}
.y4b{bottom:746.346368pt;}
.y2c{bottom:746.346635pt;}
.y6d{bottom:748.586367pt;}
.yed{bottom:749.866367pt;}
.y123{bottom:755.626364pt;}
.yb9{bottom:755.946364pt;}
.y14a{bottom:756.587200pt;}
.y149{bottom:759.786363pt;}
.yb{bottom:764.746361pt;}
.yec{bottom:770.506358pt;}
.yb4{bottom:771.306358pt;}
.y4a{bottom:773.866357pt;}
.y2b{bottom:773.866624pt;}
.y148{bottom:775.146357pt;}
.y6c{bottom:776.266356pt;}
.yb8{bottom:779.306355pt;}
.yaf{bottom:779.946355pt;}
.y122{bottom:783.146353pt;}
.yb3{bottom:786.666352pt;}
.yeb{bottom:791.146350pt;}
.ya{bottom:792.266350pt;}
.yb7{bottom:794.666349pt;}
.yae{bottom:795.306349pt;}
.y121{bottom:801.066346pt;}
.y49{bottom:801.546346pt;}
.y2a{bottom:801.546613pt;}
.yb2{bottom:801.866346pt;}
.y6b{bottom:803.786345pt;}
.y146{bottom:805.547200pt;}
.y145{bottom:808.746343pt;}
.yad{bottom:810.666342pt;}
.yea{bottom:811.466342pt;}
.y11f{bottom:813.867200pt;}
.y11e{bottom:817.066340pt;}
.yb6{bottom:817.866340pt;}
.y9{bottom:819.946339pt;}
.yb1{bottom:825.226337pt;}
.yac{bottom:825.866336pt;}
.y143{bottom:826.347200pt;}
.y48{bottom:829.066335pt;}
.y29{bottom:829.066602pt;}
.y142{bottom:829.546335pt;}
.y6a{bottom:830.026335pt;}
.y11d{bottom:832.426334pt;}
.ye9{bottom:832.906334pt;}
.yb5{bottom:833.226333pt;}
.yab{bottom:841.226330pt;}
.y140{bottom:846.987200pt;}
.y8{bottom:847.466328pt;}
.y11c{bottom:848.426327pt;}
.yb0{bottom:848.586327pt;}
.y13f{bottom:850.186327pt;}
.ye8{bottom:851.466326pt;}
.y47{bottom:856.426324pt;}
.yaa{bottom:856.586324pt;}
.y171{bottom:856.746324pt;}
.y28{bottom:856.746591pt;}
.y13e{bottom:865.546320pt;}
.y11b{bottom:866.026320pt;}
.ya9{bottom:871.946318pt;}
.y7{bottom:875.146317pt;}
.ye7{bottom:876.906316pt;}
.y13d{bottom:880.746314pt;}
.y11a{bottom:883.786313pt;}
.y45{bottom:884.266313pt;}
.y27{bottom:884.266580pt;}
.y46{bottom:891.626310pt;}
.ya8{bottom:895.946308pt;}
.y13c{bottom:896.746308pt;}
.y6{bottom:902.666306pt;}
.ye6{bottom:904.426305pt;}
.y44{bottom:911.946302pt;}
.y26{bottom:911.946569pt;}
.y118{bottom:911.947200pt;}
.y13b{bottom:914.186301pt;}
.y117{bottom:915.146301pt;}
.ya6{bottom:916.107200pt;}
.y43{bottom:919.306299pt;}
.y5{bottom:930.346295pt;}
.ye5{bottom:932.106294pt;}
.y25{bottom:939.466558pt;}
.y159{bottom:941.706290pt;}
.ya5{bottom:942.666290pt;}
.y115{bottom:943.147200pt;}
.y114{bottom:946.346288pt;}
.ya4{bottom:957.866284pt;}
.ye4{bottom:959.626283pt;}
.y3{bottom:959.786283pt;}
.y113{bottom:961.706282pt;}
.y24{bottom:967.146546pt;}
.y4{bottom:968.426279pt;}
.ya3{bottom:981.226274pt;}
.y112{bottom:981.866274pt;}
.ye3{bottom:987.466272pt;}
.y2{bottom:991.946270pt;}
.y23{bottom:994.666535pt;}
.ya2{bottom:996.586268pt;}
.y111{bottom:997.226268pt;}
.he{height:15.040000pt;}
.h15{height:33.918736pt;}
.h6{height:42.084358pt;}
.h3{height:48.374981pt;}
.hc{height:52.134354pt;}
.h12{height:52.254979pt;}
.h7{height:53.534979pt;}
.hf{height:55.402478pt;}
.ha{height:57.787477pt;}
.h9{height:59.339976pt;}
.h8{height:61.409975pt;}
.h4{height:62.781225pt;}
.h1{height:62.812475pt;}
.h5{height:64.499974pt;}
.hb{height:66.749973pt;}
.h2{height:75.464970pt;}
.h10{height:82.854342pt;}
.h13{height:84.254966pt;}
.h14{height:112.934330pt;}
.hd{height:113.574330pt;}
.h11{height:144.294317pt;}
.h0{height:1122.666667pt;}
.w1{width:4.320000pt;}
.w7{width:4.480000pt;}
.w3{width:4.640000pt;}
.w2{width:5.280000pt;}
.w5{width:5.760000pt;}
.w6{width:5.920000pt;}
.w4{width:6.080000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.x5e{left:115.839954pt;}
.x30{left:118.239953pt;}
.x41{left:119.679952pt;}
.xe{left:120.639952pt;}
.x25{left:124.319950pt;}
.x3e{left:125.759950pt;}
.x33{left:127.999947pt;}
.x42{left:129.439948pt;}
.x39{left:130.719948pt;}
.x12{left:132.318202pt;}
.x1d{left:134.079946pt;}
.x40{left:135.039946pt;}
.x1c{left:136.960061pt;}
.x14{left:139.999808pt;}
.x37{left:141.119944pt;}
.x26{left:144.159942pt;}
.x38{left:145.119942pt;}
.x1b{left:147.999941pt;}
.x2c{left:149.119907pt;}
.x2{left:151.199940pt;}
.x13{left:152.799939pt;}
.x5d{left:159.842542pt;}
.x10{left:161.440544pt;}
.x44{left:167.999933pt;}
.x36{left:171.039932pt;}
.x49{left:174.879930pt;}
.x56{left:176.319929pt;}
.x4a{left:185.919930pt;}
.x55{left:188.639925pt;}
.x58{left:189.759924pt;}
.x35{left:193.439923pt;}
.x57{left:197.119942pt;}
.x59{left:198.239921pt;}
.x53{left:200.479920pt;}
.x47{left:201.599919pt;}
.x48{left:203.839876pt;}
.x17{left:209.440003pt;}
.x31{left:214.880000pt;}
.x3c{left:223.839910pt;}
.xb{left:239.359904pt;}
.x3b{left:255.359898pt;}
.x43{left:267.839893pt;}
.x32{left:270.559892pt;}
.x15{left:288.480344pt;}
.x7{left:291.999883pt;}
.x3a{left:293.919984pt;}
.x45{left:297.599881pt;}
.x8{left:302.879879pt;}
.x4b{left:309.120000pt;}
.x34{left:316.799873pt;}
.x4c{left:326.079870pt;}
.x2e{left:334.400001pt;}
.x2d{left:348.319977pt;}
.xf{left:368.639620pt;}
.x1a{left:402.240000pt;}
.x18{left:414.080061pt;}
.x27{left:418.079969pt;}
.x3d{left:419.999832pt;}
.x2f{left:427.200016pt;}
.x29{left:428.640010pt;}
.x4d{left:433.440000pt;}
.x1e{left:442.879703pt;}
.x28{left:450.720036pt;}
.x3{left:461.759815pt;}
.x4{left:465.119814pt;}
.x4e{left:496.000000pt;}
.x50{left:505.439789pt;}
.x1f{left:515.999777pt;}
.x4f{left:517.599793pt;}
.x19{left:532.320037pt;}
.x2a{left:540.480054pt;}
.x51{left:546.240000pt;}
.xc{left:554.079778pt;}
.x5{left:555.839778pt;}
.x52{left:558.079777pt;}
.x46{left:561.759775pt;}
.x6{left:563.039775pt;}
.x20{left:564.800000pt;}
.x9{left:573.279771pt;}
.x5a{left:575.359770pt;}
.x22{left:579.359767pt;}
.xa{left:582.239767pt;}
.x23{left:583.999768pt;}
.x21{left:585.759766pt;}
.x24{left:590.879765pt;}
.x16{left:595.520915pt;}
.x2b{left:617.920045pt;}
.x54{left:623.200000pt;}
.x5b{left:642.719743pt;}
.x3f{left:658.880000pt;}
.x11{left:673.759730pt;}
.xd{left:679.519728pt;}
.x5c{left:717.439713pt;}
}




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