
    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_8e4c828f2921efd939914a66.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.141000;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_826efea95b3ca5cbe2a3e626.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.108000;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_cca38658762a852f8aab5359.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.000000;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_e31c32e4ad446aad9efd4f13.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_473da40b79720f7c542fe06f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_807c50fd8ba81eb55856e622.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.096680;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_cac9602c907b029cd8eb8d9b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0cbdec481a463181d3af0645.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.363000;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_7e50f5f202c228987c0843a1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.000000;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.274888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274888,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-105.839958px;}
.v5{vertical-align:-33.119987px;}
.v6{vertical-align:-27.359989px;}
.v2{vertical-align:-11.519995px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:33.119987px;}
.v3{vertical-align:61.919975px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.095625px;}
.ls2{letter-spacing:0.144140px;}
.ls7{letter-spacing:0.360000px;}
.ls6{letter-spacing:1.799999px;}
.lsb{letter-spacing:2.159999px;}
.lsa{letter-spacing:4.319998px;}
.ls8{letter-spacing:5.039998px;}
.ls9{letter-spacing:6.659997px;}
.lse{letter-spacing:15.786714px;}
.ls5{letter-spacing:16.199994px;}
.lsf{letter-spacing:17.279993px;}
.ls0{letter-spacing:34.379986px;}
.lsc{letter-spacing:54.863978px;}
.lsd{letter-spacing:64.026694px;}
.ls3{letter-spacing:845.999662px;}
.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;}
}
.ws2{word-spacing:-18.144133px;}
.ws1{word-spacing:-17.999993px;}
.ws4{word-spacing:-14.939994px;}
.ws3{word-spacing:-9.719996px;}
.ws0{word-spacing:0.000000px;}
._22{margin-left:-15.378987px;}
._1c{margin-left:-14.232660px;}
._1e{margin-left:-12.705475px;}
._1f{margin-left:-11.541515px;}
._1d{margin-left:-9.547385px;}
._1b{margin-left:-8.443134px;}
._24{margin-left:-7.256899px;}
._1a{margin-left:-6.160782px;}
._21{margin-left:-4.182978px;}
._20{margin-left:-2.657808px;}
._1{margin-left:-1.345956px;}
._0{width:1.042603px;}
._3{width:2.306792px;}
._e{width:4.175998px;}
._6{width:5.615998px;}
._7{width:7.237394px;}
._5{width:9.143996px;}
._4{width:10.295996px;}
._d{width:11.303995px;}
._8{width:13.263347px;}
._9{width:14.282759px;}
._12{width:15.407994px;}
._13{width:16.415993px;}
._a{width:19.239345px;}
._b{width:20.288639px;}
._3a{width:21.299432px;}
._14{width:22.319991px;}
._15{width:23.509387px;}
._19{width:24.693197px;}
._17{width:25.775990px;}
._18{width:26.855989px;}
._2c{width:27.863989px;}
._2f{width:28.943988px;}
._30{width:30.095988px;}
._33{width:31.911340px;}
._34{width:33.089281px;}
._3b{width:34.135437px;}
._f{width:35.207986px;}
._2d{width:36.541382px;}
._32{width:37.655985px;}
._35{width:38.663985px;}
._36{width:40.175984px;}
._2e{width:41.255983px;}
._43{width:42.695983px;}
._37{width:44.223335px;}
._38{width:45.632595px;}
._41{width:46.981412px;}
._3e{width:48.411787px;}
._3c{width:49.967980px;}
._3d{width:51.119856px;}
._3f{width:52.143332px;}
._40{width:53.384612px;}
._45{width:54.719978px;}
._46{width:55.924727px;}
._44{width:107.999957px;}
._42{width:179.999928px;}
._29{width:193.479275px;}
._31{width:197.999921px;}
._2a{width:265.407247px;}
._2b{width:419.343185px;}
._25{width:666.301960px;}
._26{width:673.287083px;}
._23{width:686.461952px;}
._39{width:690.061950px;}
._c{width:702.301945px;}
._11{width:706.621943px;}
._2{width:722.461937px;}
._16{width:726.061936px;}
._10{width:845.999662px;}
._28{width:1128.486254px;}
._27{width:1929.110581px;}
.fc9{color:rgb(99,36,35);}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(0,12,81);}
.fc5{color:rgb(20,20,19);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(54,95,145);}
.fc1{color:transparent;}
.fc8{color:rgb(16,16,16);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:38.879984px;}
.fs9{font-size:48.239981px;}
.fs6{font-size:53.999978px;}
.fs7{font-size:59.759976px;}
.fs8{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fsb{font-size:77.759969px;}
.fs1{font-size:81.359967px;}
.fs3{font-size:84.239966px;}
.fs5{font-size:87.561565px;}
.fs2{font-size:95.759962px;}
.fs4{font-size:101.789959px;}
.y26{bottom:-15.300989px;}
.y0{bottom:0.000000px;}
.y38{bottom:4.320038px;}
.y22{bottom:5.578951px;}
.y37{bottom:49.800240px;}
.y28{bottom:56.999977px;}
.y7e{bottom:135.659946px;}
.yc4{bottom:136.379945px;}
.y158{bottom:136.919945px;}
.yea{bottom:139.979944px;}
.y16f{bottom:140.159944px;}
.yee{bottom:140.699944px;}
.y110{bottom:141.599943px;}
.y134{bottom:142.319943px;}
.ya1{bottom:146.459941px;}
.y113{bottom:150.599940px;}
.y196{bottom:151.319939px;}
.y1a9{bottom:154.019938px;}
.y20{bottom:154.559938px;}
.ye1{bottom:156.539937px;}
.y155{bottom:158.879936px;}
.y7d{bottom:164.639934px;}
.yed{bottom:165.179934px;}
.y115{bottom:165.899934px;}
.yc3{bottom:167.519933px;}
.y133{bottom:170.939932px;}
.y16e{bottom:171.299931px;}
.y10f{bottom:172.559931px;}
.y112{bottom:173.279931px;}
.y130{bottom:174.899930px;}
.ye9{bottom:176.339929px;}
.ya0{bottom:177.419929px;}
.y157{bottom:180.119928px;}
.y195{bottom:182.459927px;}
.y18a{bottom:182.999927px;}
.y1a8{bottom:184.979926px;}
.ye0{bottom:187.679925px;}
.y1f{bottom:189.479924px;}
.y154{bottom:190.019924px;}
.y7c{bottom:195.059922px;}
.y12f{bottom:197.399921px;}
.yc2{bottom:198.479921px;}
.y16d{bottom:202.259919px;}
.yf1{bottom:203.519919px;}
.y10e{bottom:203.699919px;}
.y156{bottom:204.599918px;}
.ye8{bottom:205.859918px;}
.y9f{bottom:208.559917px;}
.y194{bottom:213.419915px;}
.y189{bottom:214.139914px;}
.y1a7{bottom:216.119914px;}
.ydf{bottom:218.639913px;}
.y114{bottom:219.899912px;}
.y153{bottom:220.979912px;}
.y1e{bottom:224.399910px;}
.ye7{bottom:228.539909px;}
.yc1{bottom:229.619908px;}
.y16c{bottom:233.399907px;}
.y7b{bottom:234.299906px;}
.yf0{bottom:234.479906px;}
.y10d{bottom:234.659906px;}
.y9e{bottom:239.519904px;}
.y193{bottom:244.559902px;}
.y12e{bottom:245.099902px;}
.y1a6{bottom:247.079901px;}
.yde{bottom:249.779900px;}
.y152{bottom:252.119899px;}
.y188{bottom:257.339897px;}
.y1d{bottom:259.319896px;}
.yc0{bottom:260.579896px;}
.y7a{bottom:263.279895px;}
.y16b{bottom:264.359894px;}
.y10c{bottom:265.799894px;}
.y9d{bottom:270.659892px;}
.y192{bottom:275.519890px;}
.y187{bottom:275.879890px;}
.y12d{bottom:276.059890px;}
.y1a5{bottom:278.219889px;}
.ydd{bottom:280.739888px;}
.y1c{bottom:282.719887px;}
.y151{bottom:283.079887px;}
.ybf{bottom:291.719883px;}
.y79{bottom:292.259883px;}
.y16a{bottom:295.499882px;}
.y10b{bottom:296.759881px;}
.y9c{bottom:301.619879px;}
.y1b{bottom:305.939878px;}
.y191{bottom:306.659877px;}
.y12c{bottom:307.199877px;}
.y1a4{bottom:309.179876px;}
.y132{bottom:311.699875px;}
.ydc{bottom:311.879875px;}
.y150{bottom:314.219874px;}
.y186{bottom:316.559873px;}
.y78{bottom:321.419871px;}
.ye3{bottom:321.959871px;}
.ybe{bottom:322.679871px;}
.y169{bottom:326.459869px;}
.y10a{bottom:327.899869px;}
.y1a{bottom:328.619869px;}
.y9b{bottom:332.759867px;}
.y185{bottom:337.439865px;}
.y190{bottom:337.619865px;}
.y12b{bottom:338.159865px;}
.y1a3{bottom:340.319864px;}
.ye2{bottom:342.659863px;}
.ydb{bottom:342.839863px;}
.y14f{bottom:345.179862px;}
.y77{bottom:350.399860px;}
.y19{bottom:352.019859px;}
.ybd{bottom:353.819858px;}
.y168{bottom:357.599857px;}
.y184{bottom:358.319857px;}
.y109{bottom:358.859856px;}
.y9a{bottom:363.719855px;}
.y18f{bottom:368.759852px;}
.y12a{bottom:369.299852px;}
.y1a2{bottom:371.279851px;}
.yda{bottom:373.979850px;}
.y18{bottom:375.239850px;}
.y14e{bottom:376.319849px;}
.y183{bottom:376.859849px;}
.y76{bottom:379.379848px;}
.ybc{bottom:384.779846px;}
.y167{bottom:388.559845px;}
.y108{bottom:389.999844px;}
.y182{bottom:394.499842px;}
.y99{bottom:394.859842px;}
.y17{bottom:398.639841px;}
.y18e{bottom:399.719840px;}
.y129{bottom:400.259840px;}
.y1a1{bottom:402.419839px;}
.yd9{bottom:404.939838px;}
.y18b{bottom:405.119838px;}
.y14d{bottom:407.279837px;}
.y75{bottom:408.359837px;}
.y181{bottom:412.859835px;}
.ybb{bottom:415.739834px;}
.y13d{bottom:415.919834px;}
.y166{bottom:419.699832px;}
.y107{bottom:420.959832px;}
.y16{bottom:421.859831px;}
.y98{bottom:425.819830px;}
.y18d{bottom:430.859828px;}
.y128{bottom:431.399827px;}
.y180{bottom:432.479827px;}
.y1a0{bottom:433.379827px;}
.yd8{bottom:436.079826px;}
.y74{bottom:437.339825px;}
.y14c{bottom:438.419825px;}
.y15{bottom:445.619822px;}
.yba{bottom:446.879821px;}
.y165{bottom:450.659820px;}
.y106{bottom:452.099819px;}
.y17f{bottom:453.359819px;}
.y97{bottom:456.959817px;}
.y62{bottom:461.819815px;}
.y127{bottom:462.359815px;}
.y19f{bottom:464.519814px;}
.y73{bottom:466.499813px;}
.yd7{bottom:467.039813px;}
.y14b{bottom:469.379812px;}
.y17e{bottom:474.239810px;}
.yb9{bottom:477.839809px;}
.y14{bottom:480.539808px;}
.y164{bottom:481.799807px;}
.y105{bottom:483.059807px;}
.y96{bottom:487.919805px;}
.y61{bottom:492.599803px;}
.y18c{bottom:492.959803px;}
.y126{bottom:493.499803px;}
.y17d{bottom:495.299802px;}
.y72{bottom:495.479802px;}
.yef{bottom:497.999801px;}
.yd6{bottom:498.179801px;}
.y5a{bottom:500.159800px;}
.y14a{bottom:500.519800px;}
.yb8{bottom:508.979796px;}
.y163{bottom:512.759795px;}
.y104{bottom:514.199794px;}
.y13{bottom:516.179794px;}
.y95{bottom:519.059792px;}
.y60{bottom:523.919790px;}
.y71{bottom:524.459790px;}
.y19e{bottom:526.619789px;}
.y111{bottom:528.959788px;}
.yd5{bottom:529.139788px;}
.y149{bottom:531.479787px;}
.y59{bottom:534.359786px;}
.y17c{bottom:537.059785px;}
.yb7{bottom:539.939784px;}
.y162{bottom:543.899782px;}
.y103{bottom:545.159782px;}
.y94{bottom:550.019780px;}
.y12{bottom:552.359779px;}
.y70{bottom:554.879778px;}
.y5f{bottom:555.059778px;}
.y125{bottom:555.599778px;}
.y19d{bottom:557.579777px;}
.yd4{bottom:560.279776px;}
.y148{bottom:562.619775px;}
.y58{bottom:565.319774px;}
.yb6{bottom:571.079772px;}
.y17b{bottom:573.239771px;}
.y161{bottom:574.859770px;}
.y102{bottom:576.299769px;}
.y93{bottom:581.159768px;}
.y5e{bottom:586.019766px;}
.y124{bottom:586.559765px;}
.y11{bottom:588.539765px;}
.y19c{bottom:588.719765px;}
.yd3{bottom:591.239764px;}
.y17a{bottom:591.599763px;}
.y147{bottom:593.579763px;}
.y6f{bottom:594.119762px;}
.y57{bottom:596.459761px;}
.y13c{bottom:601.859759px;}
.yb5{bottom:602.039759px;}
.y160{bottom:605.819758px;}
.y137{bottom:607.079757px;}
.y101{bottom:607.259757px;}
.y179{bottom:611.219756px;}
.y48{bottom:612.119755px;}
.y5d{bottom:617.159753px;}
.y123{bottom:617.699753px;}
.y19b{bottom:619.679752px;}
.yd2{bottom:622.199751px;}
.y6e{bottom:623.099751px;}
.y10{bottom:624.719750px;}
.y56{bottom:627.419749px;}
.y178{bottom:631.019748px;}
.yb4{bottom:633.179747px;}
.y15f{bottom:636.959745px;}
.y136{bottom:638.039745px;}
.y100{bottom:638.399745px;}
.y47{bottom:643.259743px;}
.y5c{bottom:648.119741px;}
.y122{bottom:648.659741px;}
.y19a{bottom:650.819740px;}
.y177{bottom:651.899739px;}
.y6d{bottom:652.259739px;}
.y131{bottom:653.159739px;}
.yd1{bottom:653.339739px;}
.y146{bottom:655.679738px;}
.y55{bottom:658.559737px;}
.yf{bottom:660.899736px;}
.yb3{bottom:664.139734px;}
.y92{bottom:667.019733px;}
.yff{bottom:669.359732px;}
.y176{bottom:672.779731px;}
.y46{bottom:674.219730px;}
.y5b{bottom:679.259728px;}
.y121{bottom:679.799728px;}
.y15e{bottom:680.159728px;}
.y199{bottom:681.779727px;}
.y6c{bottom:682.499727px;}
.yd0{bottom:684.299726px;}
.y145{bottom:686.819725px;}
.y54{bottom:689.519724px;}
.y175{bottom:692.759723px;}
.yb2{bottom:695.279722px;}
.ye{bottom:697.259721px;}
.y91{bottom:700.319720px;}
.yfe{bottom:700.499720px;}
.y45{bottom:705.359718px;}
.y15d{bottom:706.259717px;}
.y36{bottom:710.219716px;}
.y120{bottom:710.759716px;}
.y13b{bottom:711.659715px;}
.y198{bottom:712.919715px;}
.y174{bottom:713.639715px;}
.ycf{bottom:715.439714px;}
.y144{bottom:717.779713px;}
.y53{bottom:720.659712px;}
.y6b{bottom:723.179711px;}
.y135{bottom:726.059710px;}
.yb1{bottom:726.239710px;}
.yfd{bottom:731.459707px;}
.yd{bottom:733.439707px;}
.y90{bottom:733.619707px;}
.y44{bottom:736.319705px;}
.y35{bottom:741.359703px;}
.y11f{bottom:741.899703px;}
.y15c{bottom:743.699703px;}
.y13a{bottom:743.879702px;}
.yce{bottom:746.399701px;}
.y143{bottom:748.919700px;}
.y52{bottom:751.619699px;}
.y173{bottom:754.319698px;}
.yb0{bottom:757.379697px;}
.yfc{bottom:762.599695px;}
.y6a{bottom:763.859694px;}
.y8f{bottom:766.919693px;}
.y43{bottom:767.459693px;}
.yc{bottom:771.779691px;}
.y34{bottom:772.319691px;}
.y11e{bottom:772.859691px;}
.y172{bottom:774.119690px;}
.y139{bottom:776.279689px;}
.yeb{bottom:777.359689px;}
.ycd{bottom:777.539689px;}
.y142{bottom:779.879688px;}
.y51{bottom:782.759687px;}
.yaf{bottom:788.339685px;}
.y171{bottom:792.659683px;}
.yfb{bottom:793.559683px;}
.y42{bottom:798.419681px;}
.y8e{bottom:800.219680px;}
.y33{bottom:803.459679px;}
.y11d{bottom:803.999678px;}
.y69{bottom:804.539678px;}
.ycc{bottom:808.499677px;}
.y170{bottom:810.299676px;}
.y141{bottom:811.019676px;}
.yb{bottom:813.179675px;}
.y50{bottom:813.719675px;}
.yae{bottom:819.479672px;}
.yfa{bottom:824.699670px;}
.y41{bottom:829.559668px;}
.y8d{bottom:831.179668px;}
.y32{bottom:834.419666px;}
.y11c{bottom:834.959666px;}
.ycb{bottom:839.639664px;}
.y4f{bottom:844.859662px;}
.y68{bottom:845.219662px;}
.yad{bottom:850.439660px;}
.y140{bottom:854.219658px;}
.ya{bottom:854.579658px;}
.yf9{bottom:855.659658px;}
.y40{bottom:860.519656px;}
.y31{bottom:865.559654px;}
.y11b{bottom:866.099654px;}
.y138{bottom:870.419652px;}
.yca{bottom:870.599652px;}
.y8b{bottom:873.119651px;}
.y4e{bottom:875.819650px;}
.y13f{bottom:880.139648px;}
.yac{bottom:881.579647px;}
.y67{bottom:885.899646px;}
.yf8{bottom:886.799645px;}
.y86{bottom:887.519645px;}
.y3f{bottom:891.659643px;}
.y30{bottom:896.519641px;}
.y11a{bottom:897.059641px;}
.yc9{bottom:901.739639px;}
.y13e{bottom:904.439638px;}
.y8a{bottom:906.419637px;}
.y4d{bottom:906.959637px;}
.yab{bottom:912.539635px;}
.yf7{bottom:917.759633px;}
.y85{bottom:921.719631px;}
.y9{bottom:922.439631px;}
.y3e{bottom:922.619631px;}
.y66{bottom:926.579629px;}
.y2f{bottom:927.659629px;}
.y119{bottom:928.019629px;}
.yc8{bottom:932.699627px;}
.y4c{bottom:937.919625px;}
.yaa{bottom:943.679623px;}
.y8{bottom:945.839622px;}
.yf6{bottom:948.719621px;}
.y84{bottom:952.859619px;}
.y3d{bottom:953.759618px;}
.y2e{bottom:958.619617px;}
.y118{bottom:959.159616px;}
.y15b{bottom:959.519616px;}
.yc7{bottom:963.839614px;}
.y65{bottom:967.079613px;}
.y7{bottom:969.059612px;}
.ya9{bottom:974.639610px;}
.y89{bottom:976.079610px;}
.yf5{bottom:979.859608px;}
.y3c{bottom:984.719606px;}
.y15a{bottom:985.619606px;}
.ya6{bottom:986.699605px;}
.y25{bottom:986.880600px;}
.y2d{bottom:989.759604px;}
.y197{bottom:991.739603px;}
.y6{bottom:992.279603px;}
.y83{bottom:993.359603px;}
.yc6{bottom:994.799602px;}
.y159{bottom:999.479600px;}
.y4b{bottom:1000.019600px;}
.ya8{bottom:1005.779598px;}
.y88{bottom:1007.219597px;}
.y64{bottom:1007.759597px;}
.yf4{bottom:1010.819596px;}
.y24{bottom:1013.159595px;}
.y5{bottom:1015.679594px;}
.y3b{bottom:1015.859594px;}
.y2c{bottom:1020.719592px;}
.y117{bottom:1020.899592px;}
.ya5{bottom:1023.239591px;}
.y1aa{bottom:1025.579590px;}
.yc5{bottom:1025.939590px;}
.y4a{bottom:1031.159588px;}
.y82{bottom:1032.779587px;}
.ya7{bottom:1036.559585px;}
.ye6{bottom:1036.739585px;}
.y23{bottom:1036.919585px;}
.y4{bottom:1038.899584px;}
.y8c{bottom:1040.879584px;}
.yf3{bottom:1041.959583px;}
.y63{bottom:1043.219583px;}
.y3a{bottom:1046.819581px;}
.y2b{bottom:1051.859579px;}
.y116{bottom:1056.719577px;}
.ya4{bottom:1056.899577px;}
.y81{bottom:1061.759575px;}
.y3{bottom:1062.119575px;}
.ye5{bottom:1067.519573px;}
.yf2{bottom:1072.739571px;}
.y39{bottom:1079.939568px;}
.y87{bottom:1082.459567px;}
.y2a{bottom:1082.819567px;}
.y49{bottom:1082.999567px;}
.y2{bottom:1085.519566px;}
.yec{bottom:1087.679565px;}
.ya3{bottom:1088.039565px;}
.y80{bottom:1090.739564px;}
.y21{bottom:1115.760600px;}
.y29{bottom:1115.939554px;}
.y1{bottom:1118.639553px;}
.ye4{bottom:1118.819552px;}
.ya2{bottom:1118.999552px;}
.y7f{bottom:1119.719552px;}
.y27{bottom:1197.659521px;}
.h7{height:0.000000px;}
.h9{height:4.320000px;}
.h6{height:19.620000px;}
.he{height:20.520000px;}
.h1b{height:34.603186px;}
.h17{height:42.933583px;}
.h13{height:46.639669px;}
.ha{height:48.059981px;}
.h15{height:49.175980px;}
.h12{height:50.695292px;}
.hb{height:52.559979px;}
.h18{height:53.186379px;}
.h19{height:55.158458px;}
.hf{height:56.146267px;}
.h11{height:58.154039px;}
.h10{height:63.210912px;}
.hd{height:64.079974px;}
.h1a{height:66.067894px;}
.h1{height:66.455973px;}
.h1c{height:69.206372px;}
.h5{height:72.410371px;}
.h4{height:74.973570px;}
.h2{height:75.095250px;}
.h16{height:76.053570px;}
.hc{height:77.753489px;}
.h8{height:77.929793px;}
.h3{height:88.386445px;}
.h14{height:125.999950px;}
.h0{height:1263.000000px;}
.w3{width:0.180000px;}
.w2{width:5.760000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.xf{left:143.459943px;}
.x1{left:148.859940px;}
.x19{left:156.599937px;}
.xd{left:166.859933px;}
.x14{left:175.859930px;}
.xe{left:184.859926px;}
.xb{left:202.859919px;}
.x21{left:203.939918px;}
.x1e{left:213.479915px;}
.x6{left:215.999914px;}
.x11{left:225.539910px;}
.x12{left:227.699909px;}
.x16{left:234.359906px;}
.x1c{left:242.099903px;}
.x9{left:254.699898px;}
.x15{left:261.359895px;}
.x10{left:264.059894px;}
.x24{left:302.579879px;}
.xa{left:316.079874px;}
.x2{left:318.959872px;}
.x22{left:321.659871px;}
.x23{left:355.139858px;}
.x5{left:361.259855px;}
.x1a{left:370.979852px;}
.x13{left:401.759839px;}
.x1f{left:423.179831px;}
.x7{left:447.119821px;}
.x4{left:453.239819px;}
.x3{left:467.459813px;}
.x8{left:564.839774px;}
.x1b{left:676.799729px;}
.x17{left:702.359719px;}
.x20{left:742.859703px;}
.x1d{left:756.179698px;}
.xc{left:786.060000px;}
.x18{left:817.919673px;}
@media print{
.v1{vertical-align:-94.079962pt;}
.v5{vertical-align:-29.439988pt;}
.v6{vertical-align:-24.319990pt;}
.v2{vertical-align:-10.239996pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:29.439988pt;}
.v3{vertical-align:55.039978pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.085000pt;}
.ls2{letter-spacing:0.128125pt;}
.ls7{letter-spacing:0.320000pt;}
.ls6{letter-spacing:1.599999pt;}
.lsb{letter-spacing:1.919999pt;}
.lsa{letter-spacing:3.839998pt;}
.ls8{letter-spacing:4.479998pt;}
.ls9{letter-spacing:5.919998pt;}
.lse{letter-spacing:14.032634pt;}
.ls5{letter-spacing:14.399994pt;}
.lsf{letter-spacing:15.359994pt;}
.ls0{letter-spacing:30.559988pt;}
.lsc{letter-spacing:48.767980pt;}
.lsd{letter-spacing:56.912617pt;}
.ls3{letter-spacing:751.999699pt;}
.ws2{word-spacing:-16.128118pt;}
.ws1{word-spacing:-15.999994pt;}
.ws4{word-spacing:-13.279995pt;}
.ws3{word-spacing:-8.639997pt;}
.ws0{word-spacing:0.000000pt;}
._22{margin-left:-13.670210pt;}
._1c{margin-left:-12.651253pt;}
._1e{margin-left:-11.293755pt;}
._1f{margin-left:-10.259124pt;}
._1d{margin-left:-8.486564pt;}
._1b{margin-left:-7.505008pt;}
._24{margin-left:-6.450577pt;}
._1a{margin-left:-5.476251pt;}
._21{margin-left:-3.718202pt;}
._20{margin-left:-2.362496pt;}
._1{margin-left:-1.196405pt;}
._0{width:0.926758pt;}
._3{width:2.050482pt;}
._e{width:3.711999pt;}
._6{width:4.991998pt;}
._7{width:6.433239pt;}
._5{width:8.127997pt;}
._4{width:9.151996pt;}
._d{width:10.047996pt;}
._8{width:11.789642pt;}
._9{width:12.695786pt;}
._12{width:13.695995pt;}
._13{width:14.591994pt;}
._a{width:17.101640pt;}
._b{width:18.034346pt;}
._3a{width:18.932828pt;}
._14{width:19.839992pt;}
._15{width:20.897233pt;}
._19{width:21.949509pt;}
._17{width:22.911991pt;}
._18{width:23.871990pt;}
._2c{width:24.767990pt;}
._2f{width:25.727990pt;}
._30{width:26.751989pt;}
._33{width:28.365635pt;}
._34{width:29.412695pt;}
._3b{width:30.342611pt;}
._f{width:31.295987pt;}
._2d{width:32.481228pt;}
._32{width:33.471987pt;}
._35{width:34.367986pt;}
._36{width:35.711986pt;}
._2e{width:36.671985pt;}
._43{width:37.951985pt;}
._37{width:39.309631pt;}
._38{width:40.562307pt;}
._41{width:41.761255pt;}
._3e{width:43.032700pt;}
._3c{width:44.415982pt;}
._3d{width:45.439872pt;}
._3f{width:46.349628pt;}
._40{width:47.452988pt;}
._45{width:48.639981pt;}
._46{width:49.710868pt;}
._44{width:95.999962pt;}
._42{width:159.999936pt;}
._29{width:171.981578pt;}
._31{width:175.999930pt;}
._2a{width:235.917552pt;}
._2b{width:372.749498pt;}
._25{width:592.268409pt;}
._26{width:598.477407pt;}
._23{width:610.188401pt;}
._39{width:613.388400pt;}
._c{width:624.268396pt;}
._11{width:628.108394pt;}
._2{width:642.188389pt;}
._16{width:645.388387pt;}
._10{width:751.999699pt;}
._28{width:1003.098892pt;}
._27{width:1714.764961pt;}
.fsa{font-size:34.559986pt;}
.fs9{font-size:42.879983pt;}
.fs6{font-size:47.999981pt;}
.fs7{font-size:53.119979pt;}
.fs8{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fsb{font-size:69.119972pt;}
.fs1{font-size:72.319971pt;}
.fs3{font-size:74.879970pt;}
.fs5{font-size:77.832502pt;}
.fs2{font-size:85.119966pt;}
.fs4{font-size:90.479964pt;}
.y26{bottom:-13.600879pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:3.840034pt;}
.y22{bottom:4.959068pt;}
.y37{bottom:44.266880pt;}
.y28{bottom:50.666646pt;}
.y7e{bottom:120.586618pt;}
.yc4{bottom:121.226618pt;}
.y158{bottom:121.706618pt;}
.yea{bottom:124.426617pt;}
.y16f{bottom:124.586617pt;}
.yee{bottom:125.066617pt;}
.y110{bottom:125.866616pt;}
.y134{bottom:126.506616pt;}
.ya1{bottom:130.186615pt;}
.y113{bottom:133.866613pt;}
.y196{bottom:134.506613pt;}
.y1a9{bottom:136.906612pt;}
.y20{bottom:137.386612pt;}
.ye1{bottom:139.146611pt;}
.y155{bottom:141.226610pt;}
.y7d{bottom:146.346608pt;}
.yed{bottom:146.826608pt;}
.y115{bottom:147.466608pt;}
.yc3{bottom:148.906607pt;}
.y133{bottom:151.946606pt;}
.y16e{bottom:152.266606pt;}
.y10f{bottom:153.386605pt;}
.y112{bottom:154.026605pt;}
.y130{bottom:155.466604pt;}
.ye9{bottom:156.746604pt;}
.ya0{bottom:157.706604pt;}
.y157{bottom:160.106603pt;}
.y195{bottom:162.186602pt;}
.y18a{bottom:162.666602pt;}
.y1a8{bottom:164.426601pt;}
.ye0{bottom:166.826600pt;}
.y1f{bottom:168.426599pt;}
.y154{bottom:168.906599pt;}
.y7c{bottom:173.386597pt;}
.y12f{bottom:175.466596pt;}
.yc2{bottom:176.426596pt;}
.y16d{bottom:179.786595pt;}
.yf1{bottom:180.906594pt;}
.y10e{bottom:181.066594pt;}
.y156{bottom:181.866594pt;}
.ye8{bottom:182.986593pt;}
.y9f{bottom:185.386593pt;}
.y194{bottom:189.706591pt;}
.y189{bottom:190.346591pt;}
.y1a7{bottom:192.106590pt;}
.ydf{bottom:194.346589pt;}
.y114{bottom:195.466588pt;}
.y153{bottom:196.426588pt;}
.y1e{bottom:199.466587pt;}
.ye7{bottom:203.146585pt;}
.yc1{bottom:204.106585pt;}
.y16c{bottom:207.466584pt;}
.y7b{bottom:208.266583pt;}
.yf0{bottom:208.426583pt;}
.y10d{bottom:208.586583pt;}
.y9e{bottom:212.906582pt;}
.y193{bottom:217.386580pt;}
.y12e{bottom:217.866580pt;}
.y1a6{bottom:219.626579pt;}
.yde{bottom:222.026578pt;}
.y152{bottom:224.106577pt;}
.y188{bottom:228.746575pt;}
.y1d{bottom:230.506574pt;}
.yc0{bottom:231.626574pt;}
.y7a{bottom:234.026573pt;}
.y16b{bottom:234.986573pt;}
.y10c{bottom:236.266572pt;}
.y9d{bottom:240.586570pt;}
.y192{bottom:244.906569pt;}
.y187{bottom:245.226569pt;}
.y12d{bottom:245.386569pt;}
.y1a5{bottom:247.306568pt;}
.ydd{bottom:249.546567pt;}
.y1c{bottom:251.306566pt;}
.y151{bottom:251.626566pt;}
.ybf{bottom:259.306563pt;}
.y79{bottom:259.786563pt;}
.y16a{bottom:262.666562pt;}
.y10b{bottom:263.786561pt;}
.y9c{bottom:268.106559pt;}
.y1b{bottom:271.946558pt;}
.y191{bottom:272.586558pt;}
.y12c{bottom:273.066557pt;}
.y1a4{bottom:274.826557pt;}
.y132{bottom:277.066556pt;}
.ydc{bottom:277.226556pt;}
.y150{bottom:279.306555pt;}
.y186{bottom:281.386554pt;}
.y78{bottom:285.706552pt;}
.ye3{bottom:286.186552pt;}
.ybe{bottom:286.826552pt;}
.y169{bottom:290.186551pt;}
.y10a{bottom:291.466550pt;}
.y1a{bottom:292.106550pt;}
.y9b{bottom:295.786548pt;}
.y185{bottom:299.946547pt;}
.y190{bottom:300.106547pt;}
.y12b{bottom:300.586546pt;}
.y1a3{bottom:302.506546pt;}
.ye2{bottom:304.586545pt;}
.ydb{bottom:304.746545pt;}
.y14f{bottom:306.826544pt;}
.y77{bottom:311.466542pt;}
.y19{bottom:312.906542pt;}
.ybd{bottom:314.506541pt;}
.y168{bottom:317.866540pt;}
.y184{bottom:318.506539pt;}
.y109{bottom:318.986539pt;}
.y9a{bottom:323.306537pt;}
.y18f{bottom:327.786536pt;}
.y12a{bottom:328.266535pt;}
.y1a2{bottom:330.026535pt;}
.yda{bottom:332.426534pt;}
.y18{bottom:333.546533pt;}
.y14e{bottom:334.506533pt;}
.y183{bottom:334.986533pt;}
.y76{bottom:337.226532pt;}
.ybc{bottom:342.026530pt;}
.y167{bottom:345.386529pt;}
.y108{bottom:346.666528pt;}
.y182{bottom:350.666526pt;}
.y99{bottom:350.986526pt;}
.y17{bottom:354.346525pt;}
.y18e{bottom:355.306525pt;}
.y129{bottom:355.786524pt;}
.y1a1{bottom:357.706524pt;}
.yd9{bottom:359.946523pt;}
.y18b{bottom:360.106523pt;}
.y14d{bottom:362.026522pt;}
.y75{bottom:362.986521pt;}
.y181{bottom:366.986520pt;}
.ybb{bottom:369.546519pt;}
.y13d{bottom:369.706519pt;}
.y166{bottom:373.066517pt;}
.y107{bottom:374.186517pt;}
.y16{bottom:374.986517pt;}
.y98{bottom:378.506515pt;}
.y18d{bottom:382.986513pt;}
.y128{bottom:383.466513pt;}
.y180{bottom:384.426513pt;}
.y1a0{bottom:385.226513pt;}
.yd8{bottom:387.626512pt;}
.y74{bottom:388.746511pt;}
.y14c{bottom:389.706511pt;}
.y15{bottom:396.106508pt;}
.yba{bottom:397.226508pt;}
.y165{bottom:400.586506pt;}
.y106{bottom:401.866506pt;}
.y17f{bottom:402.986505pt;}
.y97{bottom:406.186504pt;}
.y62{bottom:410.506502pt;}
.y127{bottom:410.986502pt;}
.y19f{bottom:412.906502pt;}
.y73{bottom:414.666501pt;}
.yd7{bottom:415.146501pt;}
.y14b{bottom:417.226500pt;}
.y17e{bottom:421.546498pt;}
.yb9{bottom:424.746497pt;}
.y14{bottom:427.146496pt;}
.y164{bottom:428.266495pt;}
.y105{bottom:429.386495pt;}
.y96{bottom:433.706493pt;}
.y61{bottom:437.866492pt;}
.y18c{bottom:438.186491pt;}
.y126{bottom:438.666491pt;}
.y17d{bottom:440.266491pt;}
.y72{bottom:440.426490pt;}
.yef{bottom:442.666490pt;}
.yd6{bottom:442.826490pt;}
.y5a{bottom:444.586489pt;}
.y14a{bottom:444.906489pt;}
.yb8{bottom:452.426486pt;}
.y163{bottom:455.786484pt;}
.y104{bottom:457.066484pt;}
.y13{bottom:458.826483pt;}
.y95{bottom:461.386482pt;}
.y60{bottom:465.706480pt;}
.y71{bottom:466.186480pt;}
.y19e{bottom:468.106479pt;}
.y111{bottom:470.186479pt;}
.yd5{bottom:470.346479pt;}
.y149{bottom:472.426478pt;}
.y59{bottom:474.986477pt;}
.y17c{bottom:477.386476pt;}
.yb7{bottom:479.946475pt;}
.y162{bottom:483.466473pt;}
.y103{bottom:484.586473pt;}
.y94{bottom:488.906471pt;}
.y12{bottom:490.986470pt;}
.y70{bottom:493.226469pt;}
.y5f{bottom:493.386469pt;}
.y125{bottom:493.866469pt;}
.y19d{bottom:495.626468pt;}
.yd4{bottom:498.026467pt;}
.y148{bottom:500.106467pt;}
.y58{bottom:502.506466pt;}
.yb6{bottom:507.626464pt;}
.y17b{bottom:509.546463pt;}
.y161{bottom:510.986462pt;}
.y102{bottom:512.266462pt;}
.y93{bottom:516.586460pt;}
.y5e{bottom:520.906458pt;}
.y124{bottom:521.386458pt;}
.y11{bottom:523.146457pt;}
.y19c{bottom:523.306457pt;}
.yd3{bottom:525.546456pt;}
.y17a{bottom:525.866456pt;}
.y147{bottom:527.626456pt;}
.y6f{bottom:528.106455pt;}
.y57{bottom:530.186455pt;}
.y13c{bottom:534.986453pt;}
.yb5{bottom:535.146453pt;}
.y160{bottom:538.506451pt;}
.y137{bottom:539.626451pt;}
.y101{bottom:539.786451pt;}
.y179{bottom:543.306449pt;}
.y48{bottom:544.106449pt;}
.y5d{bottom:548.586447pt;}
.y123{bottom:549.066447pt;}
.y19b{bottom:550.826446pt;}
.yd2{bottom:553.066445pt;}
.y6e{bottom:553.866445pt;}
.y10{bottom:555.306445pt;}
.y56{bottom:557.706444pt;}
.y178{bottom:560.906442pt;}
.yb4{bottom:562.826442pt;}
.y15f{bottom:566.186440pt;}
.y136{bottom:567.146440pt;}
.y100{bottom:567.466440pt;}
.y47{bottom:571.786438pt;}
.y5c{bottom:576.106436pt;}
.y122{bottom:576.586436pt;}
.y19a{bottom:578.506435pt;}
.y177{bottom:579.466435pt;}
.y6d{bottom:579.786435pt;}
.y131{bottom:580.586434pt;}
.yd1{bottom:580.746434pt;}
.y146{bottom:582.826434pt;}
.y55{bottom:585.386433pt;}
.yf{bottom:587.466432pt;}
.yb3{bottom:590.346431pt;}
.y92{bottom:592.906430pt;}
.yff{bottom:594.986429pt;}
.y176{bottom:598.026427pt;}
.y46{bottom:599.306427pt;}
.y5b{bottom:603.786425pt;}
.y121{bottom:604.266425pt;}
.y15e{bottom:604.586425pt;}
.y199{bottom:606.026424pt;}
.y6c{bottom:606.666424pt;}
.yd0{bottom:608.266423pt;}
.y145{bottom:610.506422pt;}
.y54{bottom:612.906422pt;}
.y175{bottom:615.786420pt;}
.yb2{bottom:618.026419pt;}
.ye{bottom:619.786419pt;}
.y91{bottom:622.506418pt;}
.yfe{bottom:622.666418pt;}
.y45{bottom:626.986416pt;}
.y15d{bottom:627.786416pt;}
.y36{bottom:631.306414pt;}
.y120{bottom:631.786414pt;}
.y13b{bottom:632.586414pt;}
.y198{bottom:633.706413pt;}
.y174{bottom:634.346413pt;}
.ycf{bottom:635.946412pt;}
.y144{bottom:638.026411pt;}
.y53{bottom:640.586410pt;}
.y6b{bottom:642.826410pt;}
.y135{bottom:645.386409pt;}
.yb1{bottom:645.546408pt;}
.yfd{bottom:650.186407pt;}
.yd{bottom:651.946406pt;}
.y90{bottom:652.106406pt;}
.y44{bottom:654.506405pt;}
.y35{bottom:658.986403pt;}
.y11f{bottom:659.466403pt;}
.y15c{bottom:661.066402pt;}
.y13a{bottom:661.226402pt;}
.yce{bottom:663.466401pt;}
.y143{bottom:665.706400pt;}
.y52{bottom:668.106399pt;}
.y173{bottom:670.506398pt;}
.yb0{bottom:673.226397pt;}
.yfc{bottom:677.866396pt;}
.y6a{bottom:678.986395pt;}
.y8f{bottom:681.706394pt;}
.y43{bottom:682.186394pt;}
.yc{bottom:686.026392pt;}
.y34{bottom:686.506392pt;}
.y11e{bottom:686.986392pt;}
.y172{bottom:688.106391pt;}
.y139{bottom:690.026391pt;}
.yeb{bottom:690.986390pt;}
.ycd{bottom:691.146390pt;}
.y142{bottom:693.226389pt;}
.y51{bottom:695.786388pt;}
.yaf{bottom:700.746386pt;}
.y171{bottom:704.586385pt;}
.yfb{bottom:705.386385pt;}
.y42{bottom:709.706383pt;}
.y8e{bottom:711.306382pt;}
.y33{bottom:714.186381pt;}
.y11d{bottom:714.666381pt;}
.y69{bottom:715.146381pt;}
.ycc{bottom:718.666379pt;}
.y170{bottom:720.266379pt;}
.y141{bottom:720.906378pt;}
.yb{bottom:722.826378pt;}
.y50{bottom:723.306377pt;}
.yae{bottom:728.426375pt;}
.yfa{bottom:733.066373pt;}
.y41{bottom:737.386372pt;}
.y8d{bottom:738.826371pt;}
.y32{bottom:741.706370pt;}
.y11c{bottom:742.186370pt;}
.ycb{bottom:746.346368pt;}
.y4f{bottom:750.986366pt;}
.y68{bottom:751.306366pt;}
.yad{bottom:755.946364pt;}
.y140{bottom:759.306363pt;}
.ya{bottom:759.626363pt;}
.yf9{bottom:760.586362pt;}
.y40{bottom:764.906361pt;}
.y31{bottom:769.386359pt;}
.y11b{bottom:769.866359pt;}
.y138{bottom:773.706357pt;}
.yca{bottom:773.866357pt;}
.y8b{bottom:776.106356pt;}
.y4e{bottom:778.506355pt;}
.y13f{bottom:782.346354pt;}
.yac{bottom:783.626353pt;}
.y67{bottom:787.466352pt;}
.yf8{bottom:788.266351pt;}
.y86{bottom:788.906351pt;}
.y3f{bottom:792.586350pt;}
.y30{bottom:796.906348pt;}
.y11a{bottom:797.386348pt;}
.yc9{bottom:801.546346pt;}
.y13e{bottom:803.946345pt;}
.y8a{bottom:805.706344pt;}
.y4d{bottom:806.186344pt;}
.yab{bottom:811.146342pt;}
.yf7{bottom:815.786340pt;}
.y85{bottom:819.306339pt;}
.y9{bottom:819.946339pt;}
.y3e{bottom:820.106339pt;}
.y66{bottom:823.626337pt;}
.y2f{bottom:824.586337pt;}
.y119{bottom:824.906337pt;}
.yc8{bottom:829.066335pt;}
.y4c{bottom:833.706333pt;}
.yaa{bottom:838.826331pt;}
.y8{bottom:840.746330pt;}
.yf6{bottom:843.306329pt;}
.y84{bottom:846.986328pt;}
.y3d{bottom:847.786328pt;}
.y2e{bottom:852.106326pt;}
.y118{bottom:852.586326pt;}
.y15b{bottom:852.906326pt;}
.yc7{bottom:856.746324pt;}
.y65{bottom:859.626323pt;}
.y7{bottom:861.386322pt;}
.ya9{bottom:866.346320pt;}
.y89{bottom:867.626320pt;}
.yf5{bottom:870.986318pt;}
.y3c{bottom:875.306317pt;}
.y15a{bottom:876.106316pt;}
.ya6{bottom:877.066316pt;}
.y25{bottom:877.227200pt;}
.y2d{bottom:879.786315pt;}
.y197{bottom:881.546314pt;}
.y6{bottom:882.026314pt;}
.y83{bottom:882.986313pt;}
.yc6{bottom:884.266313pt;}
.y159{bottom:888.426311pt;}
.y4b{bottom:888.906311pt;}
.ya8{bottom:894.026309pt;}
.y88{bottom:895.306309pt;}
.y64{bottom:895.786308pt;}
.yf4{bottom:898.506307pt;}
.y24{bottom:900.586306pt;}
.y5{bottom:902.826306pt;}
.y3b{bottom:902.986305pt;}
.y2c{bottom:907.306304pt;}
.y117{bottom:907.466304pt;}
.ya5{bottom:909.546303pt;}
.y1aa{bottom:911.626302pt;}
.yc5{bottom:911.946302pt;}
.y4a{bottom:916.586300pt;}
.y82{bottom:918.026299pt;}
.ya7{bottom:921.386298pt;}
.ye6{bottom:921.546298pt;}
.y23{bottom:921.706298pt;}
.y4{bottom:923.466297pt;}
.y8c{bottom:925.226297pt;}
.yf3{bottom:926.186296pt;}
.y63{bottom:927.306296pt;}
.y3a{bottom:930.506294pt;}
.y2b{bottom:934.986293pt;}
.y116{bottom:939.306291pt;}
.ya4{bottom:939.466291pt;}
.y81{bottom:943.786289pt;}
.y3{bottom:944.106289pt;}
.ye5{bottom:948.906287pt;}
.yf2{bottom:953.546285pt;}
.y39{bottom:959.946283pt;}
.y87{bottom:962.186282pt;}
.y2a{bottom:962.506282pt;}
.y49{bottom:962.666282pt;}
.y2{bottom:964.906281pt;}
.yec{bottom:966.826280pt;}
.ya3{bottom:967.146280pt;}
.y80{bottom:969.546279pt;}
.y21{bottom:991.787200pt;}
.y29{bottom:991.946270pt;}
.y1{bottom:994.346269pt;}
.ye4{bottom:994.506269pt;}
.ya2{bottom:994.666269pt;}
.y7f{bottom:995.306269pt;}
.y27{bottom:1064.586241pt;}
.h7{height:0.000000pt;}
.h9{height:3.840000pt;}
.h6{height:17.440000pt;}
.he{height:18.240000pt;}
.h1b{height:30.758388pt;}
.h17{height:38.163185pt;}
.h13{height:41.457483pt;}
.ha{height:42.719983pt;}
.h15{height:43.711983pt;}
.h12{height:45.062482pt;}
.hb{height:46.719981pt;}
.h18{height:47.276781pt;}
.h19{height:49.029740pt;}
.hf{height:49.907793pt;}
.h11{height:51.692479pt;}
.h10{height:56.187478pt;}
.hd{height:56.959977pt;}
.h1a{height:58.727017pt;}
.h1{height:59.071976pt;}
.h1c{height:61.516775pt;}
.h5{height:64.364774pt;}
.h4{height:66.643173pt;}
.h2{height:66.751333pt;}
.h16{height:67.603173pt;}
.hc{height:69.114212pt;}
.h8{height:69.270927pt;}
.h3{height:78.565729pt;}
.h14{height:111.999955pt;}
.h0{height:1122.666667pt;}
.w3{width:0.160000pt;}
.w2{width:5.120000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.xf{left:127.519949pt;}
.x1{left:132.319947pt;}
.x19{left:139.199944pt;}
.xd{left:148.319941pt;}
.x14{left:156.319937pt;}
.xe{left:164.319934pt;}
.xb{left:180.319928pt;}
.x21{left:181.279927pt;}
.x1e{left:189.759924pt;}
.x6{left:191.999923pt;}
.x11{left:200.479920pt;}
.x12{left:202.399919pt;}
.x16{left:208.319917pt;}
.x1c{left:215.199914pt;}
.x9{left:226.399909pt;}
.x15{left:232.319907pt;}
.x10{left:234.719906pt;}
.x24{left:268.959892pt;}
.xa{left:280.959888pt;}
.x2{left:283.519887pt;}
.x22{left:285.919886pt;}
.x23{left:315.679874pt;}
.x5{left:321.119872pt;}
.x1a{left:329.759868pt;}
.x13{left:357.119857pt;}
.x1f{left:376.159850pt;}
.x7{left:397.439841pt;}
.x4{left:402.879839pt;}
.x3{left:415.519834pt;}
.x8{left:502.079799pt;}
.x1b{left:601.599759pt;}
.x17{left:624.319750pt;}
.x20{left:660.319736pt;}
.x1d{left:672.159731pt;}
.xc{left:698.720000pt;}
.x18{left:727.039709pt;}
}




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