
    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_c3837687a968d58385fd926c.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_edc7c57ed7e58d1256283014.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e6efb71b643399f5ce877037.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_383ba430158bbac33ab1a6b6.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_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239258;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_b22c4bb887bb8470ec1f8c0a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3b6a0ffffe4b220f8665360b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m4{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);}
.m6{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);}
.m3{transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.159999px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.010641px;}
.ls5{letter-spacing:0.062527px;}
.ls3{letter-spacing:0.233307px;}
.ls4{letter-spacing:0.233395px;}
.ls1{letter-spacing:0.316500px;}
.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.414713px;}
.ws1{word-spacing:-16.559993px;}
.ws8{word-spacing:-15.245389px;}
.ws7{word-spacing:-15.245301px;}
.ws9{word-spacing:-15.011994px;}
.ws6{word-spacing:-14.939994px;}
.wsa{word-spacing:-13.473241px;}
.ws5{word-spacing:-13.410715px;}
.ws3{word-spacing:-7.853840px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:9.053567px;}
._19{margin-left:-2.218600px;}
._0{margin-left:-1.066312px;}
._1{width:1.046383px;}
._3{width:2.550222px;}
._4{width:3.819548px;}
._a{width:5.553701px;}
._b{width:6.780754px;}
._2{width:7.917901px;}
._8{width:9.591116px;}
._9{width:10.962263px;}
._10{width:12.496174px;}
._5{width:14.340944px;}
._6{width:15.492926px;}
._f{width:16.822085px;}
._7{width:19.657531px;}
._e{width:21.007478px;}
._14{width:22.076941px;}
._1a{width:23.208354px;}
._15{width:24.461272px;}
._16{width:25.593545px;}
._13{width:27.511105px;}
._c{width:29.321595px;}
._d{width:30.387258px;}
._11{width:31.500747px;}
._12{width:32.680395px;}
._1d{width:33.908754px;}
._5d{width:35.017480px;}
._74{width:36.735138px;}
._75{width:37.819551px;}
._17{width:44.476748px;}
._18{width:55.577344px;}
._6c{width:68.766601px;}
._6a{width:71.017172px;}
._65{width:73.096268px;}
._55{width:75.078008px;}
._37{width:78.970851px;}
._73{width:81.022180px;}
._29{width:82.338227px;}
._53{width:84.866307px;}
._60{width:86.064140px;}
._36{width:87.615788px;}
._26{width:91.217868px;}
._28{width:92.824891px;}
._3a{width:94.875594px;}
._2e{width:96.379442px;}
._52{width:97.411279px;}
._69{width:99.197580px;}
._27{width:100.583660px;}
._23{width:102.079192px;}
._3b{width:104.185739px;}
._32{width:106.512986px;}
._25{width:108.190067px;}
._30{width:109.825060px;}
._24{width:112.110446px;}
._5a{width:113.198301px;}
._31{width:114.437177px;}
._2b{width:116.064086px;}
._1f{width:117.319074px;}
._33{width:120.035547px;}
._3c{width:121.475797px;}
._34{width:123.084052px;}
._1e{width:124.531273px;}
._1b{width:126.387409px;}
._1c{width:128.045132px;}
._6b{width:129.157661px;}
._43{width:131.794902px;}
._2c{width:133.168557px;}
._20{width:134.609248px;}
._39{width:135.694296px;}
._63{width:138.332027px;}
._54{width:139.597644px;}
._2f{width:141.814849px;}
._42{width:144.042097px;}
._4b{width:145.736438px;}
._21{width:146.745142px;}
._2d{width:149.738026px;}
._68{width:151.508949px;}
._35{width:152.758398px;}
._22{width:154.669699px;}
._67{width:156.346687px;}
._59{width:157.512938px;}
._41{width:158.937389px;}
._57{width:160.045790px;}
._3d{width:162.983266px;}
._66{width:164.941475px;}
._58{width:166.973676px;}
._3f{width:170.696762px;}
._40{width:174.066022px;}
._50{width:177.342337px;}
._62{width:179.164032px;}
._64{width:181.060714px;}
._72{width:183.177617px;}
._2a{width:185.212110px;}
._56{width:186.930847px;}
._6d{width:188.516613px;}
._5e{width:189.871583px;}
._4a{width:192.563060px;}
._51{width:193.891249px;}
._71{width:196.865532px;}
._61{width:201.232262px;}
._5f{width:214.075614px;}
._70{width:216.316324px;}
._38{width:225.166744px;}
._48{width:226.422534px;}
._4e{width:228.135387px;}
._6f{width:232.885865px;}
._46{width:243.264110px;}
._49{width:245.153098px;}
._4c{width:246.282324px;}
._44{width:261.411003px;}
._5c{width:290.443204px;}
._4d{width:306.222238px;}
._45{width:321.350916px;}
._4f{width:333.165802px;}
._47{width:348.294480px;}
._3e{width:354.301978px;}
._6e{width:355.498705px;}
._5b{width:366.086374px;}
.fc2{color:rgb(31,73,124);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:34.751506px;}
.fs5{font-size:41.759983px;}
.fs4{font-size:48.239981px;}
.fs6{font-size:53.999978px;}
.fs2{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.yc8{bottom:2.699104px;}
.yc0{bottom:2.879045px;}
.ydf{bottom:2.879199px;}
.ye2{bottom:2.879208px;}
.y88{bottom:2.879211px;}
.yb2{bottom:3.238949px;}
.yb9{bottom:3.239007px;}
.yf5{bottom:3.239052px;}
.ya6{bottom:3.239182px;}
.yad{bottom:3.239239px;}
.y2{bottom:57.720277px;}
.y1{bottom:78.420269px;}
.ya3{bottom:110.100256px;}
.y3e{bottom:110.279956px;}
.yf2{bottom:114.959954px;}
.y27{bottom:116.939953px;}
.ya2{bottom:127.380249px;}
.y10e{bottom:130.799948px;}
.y72{bottom:133.679947px;}
.y50{bottom:136.919945px;}
.y94{bottom:137.819945px;}
.y3d{bottom:138.719945px;}
.yf1{bottom:143.399943px;}
.y26{bottom:145.379942px;}
.ya1{bottom:145.380242px;}
.ydb{bottom:149.699940px;}
.ya0{bottom:152.219939px;}
.y10d{bottom:159.239936px;}
.y71{bottom:162.119935px;}
.y4f{bottom:165.359934px;}
.y9f{bottom:166.079934px;}
.y93{bottom:166.259933px;}
.y3c{bottom:167.159933px;}
.yf0{bottom:172.019931px;}
.y25{bottom:173.819930px;}
.y110{bottom:173.999930px;}
.yda{bottom:178.139929px;}
.y10c{bottom:187.499925px;}
.y70{bottom:190.559924px;}
.y4e{bottom:193.799922px;}
.y92{bottom:194.699922px;}
.y3b{bottom:195.599922px;}
.yef{bottom:199.199920px;}
.y24{bottom:202.259919px;}
.y10f{bottom:202.439919px;}
.y9e{bottom:206.579917px;}
.y10b{bottom:215.939914px;}
.y6f{bottom:218.999912px;}
.y4d{bottom:222.419911px;}
.y91{bottom:223.319911px;}
.yee{bottom:223.499911px;}
.y3a{bottom:224.039910px;}
.y23{bottom:230.699908px;}
.y9d{bottom:235.019906px;}
.y10a{bottom:244.379902px;}
.yed{bottom:244.919902px;}
.y6e{bottom:247.439901px;}
.y4c{bottom:250.859900px;}
.y90{bottom:251.759899px;}
.y39{bottom:252.479899px;}
.y22{bottom:259.139896px;}
.y2c{bottom:259.319896px;}
.y9c{bottom:263.459895px;}
.yec{bottom:266.519893px;}
.y109{bottom:272.819891px;}
.y6d{bottom:275.879890px;}
.y4b{bottom:279.299888px;}
.y8f{bottom:280.199888px;}
.y38{bottom:280.919888px;}
.y21{bottom:287.579885px;}
.yeb{bottom:287.939885px;}
.y9b{bottom:291.899883px;}
.yd9{bottom:292.079883px;}
.y108{bottom:301.259879px;}
.y6c{bottom:304.499878px;}
.y4a{bottom:307.739877px;}
.y8e{bottom:308.639877px;}
.yea{bottom:309.359876px;}
.y37{bottom:309.539876px;}
.y20{bottom:316.019874px;}
.y9a{bottom:320.339872px;}
.yd8{bottom:320.519872px;}
.y107{bottom:329.879868px;}
.ye9{bottom:330.779868px;}
.y6b{bottom:332.939867px;}
.y49{bottom:336.179866px;}
.y8d{bottom:337.079865px;}
.y36{bottom:337.979865px;}
.y1f{bottom:344.459862px;}
.y99{bottom:348.959860px;}
.ye8{bottom:352.199859px;}
.y106{bottom:358.319857px;}
.y6a{bottom:361.379855px;}
.y48{bottom:364.619854px;}
.y8c{bottom:365.519854px;}
.y35{bottom:366.599853px;}
.y1e{bottom:373.079851px;}
.ye7{bottom:373.619851px;}
.y98{bottom:375.959850px;}
.yd7{bottom:377.399849px;}
.y105{bottom:386.759845px;}
.y69{bottom:389.999844px;}
.y47{bottom:393.059843px;}
.y8b{bottom:393.959842px;}
.y34{bottom:394.859842px;}
.ye6{bottom:395.219842px;}
.yac{bottom:398.460600px;}
.yae{bottom:401.339839px;}
.y1d{bottom:401.519839px;}
.yd6{bottom:405.839838px;}
.y104{bottom:415.199834px;}
.ye5{bottom:416.639833px;}
.y68{bottom:418.259833px;}
.y8a{bottom:421.319831px;}
.y46{bottom:421.499831px;}
.y33{bottom:424.379830px;}
.yab{bottom:425.279830px;}
.y1c{bottom:429.959828px;}
.yd5{bottom:434.279826px;}
.ye4{bottom:438.059825px;}
.y103{bottom:443.639823px;}
.y67{bottom:446.699821px;}
.y89{bottom:447.239821px;}
.yaa{bottom:449.399820px;}
.y45{bottom:449.939820px;}
.y32{bottom:453.899818px;}
.y1b{bottom:458.399817px;}
.ye3{bottom:459.479816px;}
.yd4{bottom:462.719815px;}
.y87{bottom:468.840600px;}
.y86{bottom:471.539811px;}
.y102{bottom:472.079811px;}
.ya9{bottom:473.339811px;}
.y66{bottom:475.139810px;}
.ye1{bottom:478.200600px;}
.y44{bottom:478.559809px;}
.ye0{bottom:481.079808px;}
.ydd{bottom:482.339807px;}
.y31{bottom:483.599807px;}
.y1a{bottom:486.839805px;}
.yd3{bottom:491.159804px;}
.y85{bottom:492.959803px;}
.ya8{bottom:497.459801px;}
.yde{bottom:498.900600px;}
.y101{bottom:500.519800px;}
.y65{bottom:503.579799px;}
.y43{bottom:506.999797px;}
.y30{bottom:513.119795px;}
.y19{bottom:515.279794px;}
.y84{bottom:515.459794px;}
.ydc{bottom:516.719793px;}
.yd2{bottom:519.599792px;}
.ya7{bottom:521.399791px;}
.y100{bottom:528.959788px;}
.y64{bottom:532.019787px;}
.y42{bottom:535.439786px;}
.y83{bottom:536.879785px;}
.y2f{bottom:542.639783px;}
.ya5{bottom:542.640600px;}
.y18{bottom:543.719783px;}
.ya4{bottom:545.519782px;}
.yd1{bottom:548.219781px;}
.yff{bottom:557.399777px;}
.y82{bottom:558.299777px;}
.y63{bottom:560.639776px;}
.y41{bottom:563.879774px;}
.y17{bottom:572.159771px;}
.y97{bottom:573.599771px;}
.yd0{bottom:576.659769px;}
.y81{bottom:579.719768px;}
.yfe{bottom:586.019766px;}
.y62{bottom:589.079764px;}
.y40{bottom:591.239764px;}
.y2b{bottom:600.599760px;}
.y16{bottom:600.779760px;}
.y80{bottom:601.319759px;}
.ycf{bottom:605.099758px;}
.y96{bottom:606.539757px;}
.yfd{bottom:614.459754px;}
.y61{bottom:617.519753px;}
.y7f{bottom:622.739751px;}
.y15{bottom:629.219748px;}
.y111{bottom:629.399748px;}
.yce{bottom:633.539747px;}
.yfc{bottom:642.899743px;}
.y7e{bottom:644.159742px;}
.y60{bottom:645.959742px;}
.ycd{bottom:652.259739px;}
.y2a{bottom:657.659737px;}
.y14{bottom:657.839737px;}
.y7d{bottom:665.579734px;}
.ycc{bottom:669.539732px;}
.y5f{bottom:670.799732px;}
.yfb{bottom:671.519731px;}
.y5e{bottom:683.039727px;}
.y13{bottom:686.099726px;}
.y7c{bottom:686.999725px;}
.yca{bottom:694.019722px;}
.ycb{bottom:694.739722px;}
.y78{bottom:697.439721px;}
.yfa{bottom:698.699721px;}
.y52{bottom:707.519717px;}
.y7b{bottom:707.699717px;}
.y12{bottom:714.539714px;}
.yc9{bottom:717.779713px;}
.y77{bottom:718.139713px;}
.y75{bottom:718.319713px;}
.y5d{bottom:722.099711px;}
.yf9{bottom:724.439710px;}
.y7a{bottom:728.399709px;}
.y53{bottom:735.779706px;}
.yc7{bottom:736.500600px;}
.y76{bottom:738.839704px;}
.yc6{bottom:739.199704px;}
.y11{bottom:742.979703px;}
.y79{bottom:749.099700px;}
.yf8{bottom:749.819700px;}
.yc5{bottom:760.799696px;}
.y54{bottom:764.759694px;}
.y10{bottom:771.419691px;}
.y74{bottom:772.859691px;}
.yf7{bottom:773.759690px;}
.yc4{bottom:782.219687px;}
.y55{bottom:793.019683px;}
.yf6{bottom:797.879681px;}
.yf{bottom:799.859680px;}
.y73{bottom:800.039680px;}
.yc3{bottom:803.639679px;}
.y56{bottom:821.999671px;}
.ybe{bottom:825.239670px;}
.ye{bottom:828.299669px;}
.yc2{bottom:845.939662px;}
.y57{bottom:850.259660px;}
.yd{bottom:856.739657px;}
.yc1{bottom:866.639653px;}
.yf4{bottom:867.180600px;}
.y58{bottom:879.239648px;}
.ybf{bottom:884.460600px;}
.yc{bottom:885.359646px;}
.yf3{bottom:886.799645px;}
.ybd{bottom:902.279639px;}
.y59{bottom:907.319637px;}
.yb{bottom:913.799634px;}
.y2e{bottom:913.979634px;}
.y3f{bottom:915.239634px;}
.ybc{bottom:929.459628px;}
.y5a{bottom:936.299625px;}
.ya{bottom:942.239623px;}
.ybb{bottom:956.639617px;}
.y5b{bottom:964.559614px;}
.y29{bottom:970.679612px;}
.y9{bottom:970.859612px;}
.yb8{bottom:978.960600px;}
.yba{bottom:981.839607px;}
.y5c{bottom:993.539603px;}
.y8{bottom:999.119600px;}
.y95{bottom:999.299600px;}
.yb7{bottom:1005.959598px;}
.y7{bottom:1027.559589px;}
.y51{bottom:1028.999588px;}
.yb6{bottom:1029.899588px;}
.yb5{bottom:1054.019578px;}
.y6{bottom:1055.999578px;}
.yb4{bottom:1078.139569px;}
.y5{bottom:1084.439566px;}
.yb3{bottom:1102.079559px;}
.y4{bottom:1112.879555px;}
.y2d{bottom:1113.059555px;}
.yb1{bottom:1123.320600px;}
.yb0{bottom:1126.199550px;}
.y28{bottom:1141.499543px;}
.y3{bottom:1141.679543px;}
.yaf{bottom:1142.939543px;}
.hd{height:13.500000px;}
.h7{height:13.680000px;}
.he{height:14.040000px;}
.hc{height:15.480000px;}
.h4{height:23.637133px;}
.h8{height:43.554358px;}
.h9{height:47.344903px;}
.h5{height:50.312792px;}
.h6{height:52.472792px;}
.hb{height:56.320290px;}
.ha{height:58.651148px;}
.h3{height:62.327788px;}
.h2{height:69.086222px;}
.h1{height:70.664034px;}
.h0{height:1263.000000px;}
.w12{width:3.780000px;}
.we{width:5.040000px;}
.w18{width:5.760000px;}
.w17{width:6.120000px;}
.w2{width:6.300000px;}
.w4{width:6.660000px;}
.w6{width:7.560000px;}
.w10{width:10.620000px;}
.wd{width:13.320000px;}
.wb{width:14.040000px;}
.w9{width:14.940000px;}
.w8{width:15.120000px;}
.wc{width:21.420000px;}
.w5{width:30.060000px;}
.wa{width:34.740000px;}
.w3{width:36.720000px;}
.w13{width:39.600000px;}
.wf{width:41.400000px;}
.w14{width:41.940000px;}
.w1{width:43.380000px;}
.w16{width:47.340000px;}
.w11{width:50.220000px;}
.w15{width:53.280000px;}
.w7{width:62.280000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x30{left:125.999950px;}
.x2{left:127.620624px;}
.x7d{left:132.299947px;}
.x3d{left:133.739947px;}
.x3e{left:139.499944px;}
.x11{left:141.479913px;}
.xe{left:142.919943px;}
.x10{left:145.799898px;}
.x7{left:148.859940px;}
.x15{left:153.359939px;}
.x8{left:154.620732px;}
.x57{left:156.599937px;}
.xf{left:158.759836px;}
.x16{left:162.179935px;}
.x3f{left:169.559932px;}
.x12{left:172.619777px;}
.x6e{left:174.600000px;}
.x6{left:177.480938px;}
.x9{left:181.621065px;}
.x6f{left:183.059927px;}
.x7f{left:184.320000px;}
.x4{left:186.300157px;}
.xa{left:203.579919px;}
.x3{left:205.739918px;}
.x5{left:207.361047px;}
.x3c{left:210.599916px;}
.x4c{left:211.680000px;}
.x17{left:213.479915px;}
.x3b{left:216.539913px;}
.xb{left:219.600569px;}
.x18{left:222.119911px;}
.x5a{left:224.279910px;}
.x5b{left:234.899906px;}
.x70{left:236.340000px;}
.x59{left:241.020000px;}
.x73{left:249.299900px;}
.x31{left:257.220000px;}
.x1a{left:269.099892px;}
.x19{left:276.479889px;}
.x32{left:280.080000px;}
.xd{left:284.579886px;}
.x71{left:286.560000px;}
.x72{left:290.340000px;}
.x4d{left:293.399883px;}
.x40{left:298.980000px;}
.x58{left:300.599880px;}
.x74{left:304.560000px;}
.x5f{left:310.319876px;}
.x5d{left:312.659875px;}
.x76{left:315.359874px;}
.x33{left:316.800000px;}
.x5e{left:323.279871px;}
.x41{left:329.040000px;}
.x13{left:338.579865px;}
.x34{left:342.180000px;}
.x75{left:344.160000px;}
.x1b{left:346.139862px;}
.x1c{left:347.219861px;}
.x5c{left:364.140000px;}
.x35{left:378.900000px;}
.x42{left:382.860000px;}
.x4e{left:385.200000px;}
.x60{left:397.439841px;}
.x1d{left:398.519841px;}
.x61{left:401.579839px;}
.x62{left:403.559839px;}
.x1e{left:407.159837px;}
.x43{left:412.920000px;}
.x4f{left:415.260000px;}
.x80{left:428.220000px;}
.x77{left:431.459827px;}
.x36{left:442.260000px;}
.x20{left:458.459817px;}
.x44{left:463.860000px;}
.x1f{left:465.839814px;}
.x37{left:469.440000px;}
.x78{left:472.500000px;}
.x21{left:474.479810px;}
.x50{left:476.460000px;}
.x51{left:491.580000px;}
.x45{left:493.920000px;}
.x79{left:495.719802px;}
.x81{left:504.720000px;}
.x38{left:506.160000px;}
.x22{left:527.939789px;}
.x65{left:529.739788px;}
.x39{left:531.540000px;}
.x23{left:535.499786px;}
.x24{left:536.579785px;}
.x66{left:540.359784px;}
.x7a{left:542.340000px;}
.x46{left:544.860000px;}
.x63{left:546.480000px;}
.x52{left:554.580000px;}
.x7b{left:562.679775px;}
.x6d{left:563.759774px;}
.x3a{left:568.260000px;}
.x47{left:574.920000px;}
.x64{left:581.220000px;}
.x26{left:582.479767px;}
.x25{left:585.179766px;}
.x27{left:591.839763px;}
.x28{left:593.819762px;}
.x82{left:606.420000px;}
.x53{left:621.000000px;}
.x6a{left:622.619751px;}
.x48{left:625.860000px;}
.x69{left:635.579746px;}
.x2a{left:642.419743px;}
.x2b{left:645.299742px;}
.x54{left:651.060000px;}
.x29{left:652.139739px;}
.x49{left:655.920000px;}
.x67{left:663.120000px;}
.xc{left:673.199731px;}
.x68{left:676.440000px;}
.x55{left:690.660000px;}
.x4a{left:700.200000px;}
.x83{left:704.700000px;}
.x7c{left:707.580000px;}
.x6b{left:713.879714px;}
.x6c{left:718.019713px;}
.x2c{left:719.639712px;}
.x56{left:720.720000px;}
.x2d{left:724.859710px;}
.x2e{left:726.119710px;}
.x2f{left:728.279709px;}
.x4b{left:730.260000px;}
.x84{left:734.760000px;}
.x7e{left:747.359701px;}
.x1{left:756.359697px;}
.x14{left:771.119692px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.919999pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.009459pt;}
.ls5{letter-spacing:0.055579pt;}
.ls3{letter-spacing:0.207384pt;}
.ls4{letter-spacing:0.207463pt;}
.ls1{letter-spacing:0.281333pt;}
.ws2{word-spacing:-16.368633pt;}
.ws1{word-spacing:-14.719994pt;}
.ws8{word-spacing:-13.551457pt;}
.ws7{word-spacing:-13.551379pt;}
.ws9{word-spacing:-13.343995pt;}
.ws6{word-spacing:-13.279995pt;}
.wsa{word-spacing:-11.976215pt;}
.ws5{word-spacing:-11.920635pt;}
.ws3{word-spacing:-6.981191pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:8.047615pt;}
._19{margin-left:-1.972089pt;}
._0{margin-left:-0.947833pt;}
._1{width:0.930119pt;}
._3{width:2.266864pt;}
._4{width:3.395154pt;}
._a{width:4.936623pt;}
._b{width:6.027337pt;}
._2{width:7.038134pt;}
._8{width:8.525436pt;}
._9{width:9.744234pt;}
._10{width:11.107710pt;}
._5{width:12.747506pt;}
._6{width:13.771490pt;}
._f{width:14.952965pt;}
._7{width:17.473361pt;}
._e{width:18.673314pt;}
._14{width:19.623947pt;}
._1a{width:20.629648pt;}
._15{width:21.743353pt;}
._16{width:22.749818pt;}
._13{width:24.454316pt;}
._c{width:26.063640pt;}
._d{width:27.010896pt;}
._11{width:28.000664pt;}
._12{width:29.049240pt;}
._1d{width:30.141114pt;}
._5d{width:31.126649pt;}
._74{width:32.653456pt;}
._75{width:33.617379pt;}
._17{width:39.534887pt;}
._18{width:49.402084pt;}
._6c{width:61.125868pt;}
._6a{width:63.126375pt;}
._65{width:64.974460pt;}
._55{width:66.736007pt;}
._37{width:70.196312pt;}
._73{width:72.019716pt;}
._29{width:73.189535pt;}
._53{width:75.436717pt;}
._60{width:76.501457pt;}
._36{width:77.880701pt;}
._26{width:81.082549pt;}
._28{width:82.511015pt;}
._3a{width:84.333861pt;}
._2e{width:85.670615pt;}
._52{width:86.587804pt;}
._69{width:88.175627pt;}
._27{width:89.407698pt;}
._23{width:90.737059pt;}
._3b{width:92.609546pt;}
._32{width:94.678210pt;}
._25{width:96.168948pt;}
._30{width:97.622276pt;}
._24{width:99.653730pt;}
._5a{width:100.620712pt;}
._31{width:101.721935pt;}
._2b{width:103.168077pt;}
._1f{width:104.283622pt;}
._33{width:106.698264pt;}
._3c{width:107.978487pt;}
._34{width:109.408046pt;}
._1e{width:110.694465pt;}
._1b{width:112.344363pt;}
._1c{width:113.817895pt;}
._6b{width:114.806809pt;}
._43{width:117.151024pt;}
._2c{width:118.372051pt;}
._20{width:119.652665pt;}
._39{width:120.617152pt;}
._63{width:122.961802pt;}
._54{width:124.086795pt;}
._2f{width:126.057644pt;}
._42{width:128.037420pt;}
._4b{width:129.543501pt;}
._21{width:130.440126pt;}
._2d{width:133.100468pt;}
._68{width:134.674622pt;}
._35{width:135.785243pt;}
._22{width:137.484177pt;}
._67{width:138.974833pt;}
._59{width:140.011500pt;}
._41{width:141.277679pt;}
._57{width:142.262925pt;}
._3d{width:144.874014pt;}
._66{width:146.614645pt;}
._58{width:148.421046pt;}
._3f{width:151.730455pt;}
._40{width:154.725353pt;}
._50{width:157.637633pt;}
._62{width:159.256917pt;}
._64{width:160.942857pt;}
._72{width:162.824548pt;}
._2a{width:164.632986pt;}
._56{width:166.160753pt;}
._6d{width:167.570323pt;}
._5e{width:168.774741pt;}
._4a{width:171.167164pt;}
._51{width:172.347777pt;}
._71{width:174.991584pt;}
._61{width:178.873122pt;}
._5f{width:190.289435pt;}
._70{width:192.281177pt;}
._38{width:200.148217pt;}
._48{width:201.264474pt;}
._4e{width:202.787011pt;}
._6f{width:207.009658pt;}
._46{width:216.234764pt;}
._49{width:217.913865pt;}
._4c{width:218.917622pt;}
._44{width:232.365336pt;}
._5c{width:258.171737pt;}
._4d{width:272.197545pt;}
._45{width:285.645259pt;}
._4f{width:296.147379pt;}
._47{width:309.595093pt;}
._3e{width:314.935092pt;}
._6e{width:315.998849pt;}
._5b{width:325.410110pt;}
.fs3{font-size:30.890228pt;}
.fs5{font-size:37.119985pt;}
.fs4{font-size:42.879983pt;}
.fs6{font-size:47.999981pt;}
.fs2{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:2.399204pt;}
.yc0{bottom:2.559151pt;}
.ydf{bottom:2.559288pt;}
.ye2{bottom:2.559296pt;}
.y88{bottom:2.559299pt;}
.yb2{bottom:2.879066pt;}
.yb9{bottom:2.879117pt;}
.yf5{bottom:2.879157pt;}
.ya6{bottom:2.879273pt;}
.yad{bottom:2.879324pt;}
.y2{bottom:51.306913pt;}
.y1{bottom:69.706905pt;}
.ya3{bottom:97.866894pt;}
.y3e{bottom:98.026627pt;}
.yf2{bottom:102.186626pt;}
.y27{bottom:103.946625pt;}
.ya2{bottom:113.226888pt;}
.y10e{bottom:116.266620pt;}
.y72{bottom:118.826619pt;}
.y50{bottom:121.706618pt;}
.y94{bottom:122.506618pt;}
.y3d{bottom:123.306617pt;}
.yf1{bottom:127.466616pt;}
.y26{bottom:129.226615pt;}
.ya1{bottom:129.226882pt;}
.ydb{bottom:133.066613pt;}
.ya0{bottom:135.306613pt;}
.y10d{bottom:141.546610pt;}
.y71{bottom:144.106609pt;}
.y4f{bottom:146.986608pt;}
.y9f{bottom:147.626608pt;}
.y93{bottom:147.786608pt;}
.y3c{bottom:148.586607pt;}
.yf0{bottom:152.906606pt;}
.y25{bottom:154.506605pt;}
.y110{bottom:154.666605pt;}
.yda{bottom:158.346603pt;}
.y10c{bottom:166.666600pt;}
.y70{bottom:169.386599pt;}
.y4e{bottom:172.266598pt;}
.y92{bottom:173.066597pt;}
.y3b{bottom:173.866597pt;}
.yef{bottom:177.066596pt;}
.y24{bottom:179.786595pt;}
.y10f{bottom:179.946595pt;}
.y9e{bottom:183.626593pt;}
.y10b{bottom:191.946590pt;}
.y6f{bottom:194.666589pt;}
.y4d{bottom:197.706588pt;}
.y91{bottom:198.506587pt;}
.yee{bottom:198.666587pt;}
.y3a{bottom:199.146587pt;}
.y23{bottom:205.066585pt;}
.y9d{bottom:208.906583pt;}
.y10a{bottom:217.226580pt;}
.yed{bottom:217.706580pt;}
.y6e{bottom:219.946579pt;}
.y4c{bottom:222.986577pt;}
.y90{bottom:223.786577pt;}
.y39{bottom:224.426577pt;}
.y22{bottom:230.346575pt;}
.y2c{bottom:230.506574pt;}
.y9c{bottom:234.186573pt;}
.yec{bottom:236.906572pt;}
.y109{bottom:242.506570pt;}
.y6d{bottom:245.226569pt;}
.y4b{bottom:248.266567pt;}
.y8f{bottom:249.066567pt;}
.y38{bottom:249.706567pt;}
.y21{bottom:255.626564pt;}
.yeb{bottom:255.946564pt;}
.y9b{bottom:259.466563pt;}
.yd9{bottom:259.626563pt;}
.y108{bottom:267.786560pt;}
.y6c{bottom:270.666558pt;}
.y4a{bottom:273.546557pt;}
.y8e{bottom:274.346557pt;}
.yea{bottom:274.986557pt;}
.y37{bottom:275.146557pt;}
.y20{bottom:280.906554pt;}
.y9a{bottom:284.746553pt;}
.yd8{bottom:284.906553pt;}
.y107{bottom:293.226549pt;}
.ye9{bottom:294.026549pt;}
.y6b{bottom:295.946548pt;}
.y49{bottom:298.826547pt;}
.y8d{bottom:299.626547pt;}
.y36{bottom:300.426546pt;}
.y1f{bottom:306.186544pt;}
.y99{bottom:310.186543pt;}
.ye8{bottom:313.066541pt;}
.y106{bottom:318.506539pt;}
.y6a{bottom:321.226538pt;}
.y48{bottom:324.106537pt;}
.y8c{bottom:324.906537pt;}
.y35{bottom:325.866536pt;}
.y1e{bottom:331.626534pt;}
.ye7{bottom:332.106534pt;}
.y98{bottom:334.186533pt;}
.yd7{bottom:335.466532pt;}
.y105{bottom:343.786529pt;}
.y69{bottom:346.666528pt;}
.y47{bottom:349.386527pt;}
.y8b{bottom:350.186527pt;}
.y34{bottom:350.986526pt;}
.ye6{bottom:351.306526pt;}
.yac{bottom:354.187200pt;}
.yae{bottom:356.746524pt;}
.y1d{bottom:356.906524pt;}
.yd6{bottom:360.746522pt;}
.y104{bottom:369.066519pt;}
.ye5{bottom:370.346519pt;}
.y68{bottom:371.786518pt;}
.y8a{bottom:374.506517pt;}
.y46{bottom:374.666517pt;}
.y33{bottom:377.226516pt;}
.yab{bottom:378.026515pt;}
.y1c{bottom:382.186514pt;}
.yd5{bottom:386.026512pt;}
.ye4{bottom:389.386511pt;}
.y103{bottom:394.346509pt;}
.y67{bottom:397.066508pt;}
.y89{bottom:397.546508pt;}
.yaa{bottom:399.466507pt;}
.y45{bottom:399.946507pt;}
.y32{bottom:403.466505pt;}
.y1b{bottom:407.466504pt;}
.ye3{bottom:408.426503pt;}
.yd4{bottom:411.306502pt;}
.y87{bottom:416.747200pt;}
.y86{bottom:419.146499pt;}
.y102{bottom:419.626499pt;}
.ya9{bottom:420.746498pt;}
.y66{bottom:422.346498pt;}
.ye1{bottom:425.067200pt;}
.y44{bottom:425.386497pt;}
.ye0{bottom:427.626496pt;}
.ydd{bottom:428.746495pt;}
.y31{bottom:429.866495pt;}
.y1a{bottom:432.746494pt;}
.yd3{bottom:436.586492pt;}
.y85{bottom:438.186491pt;}
.ya8{bottom:442.186490pt;}
.yde{bottom:443.467200pt;}
.y101{bottom:444.906489pt;}
.y65{bottom:447.626488pt;}
.y43{bottom:450.666486pt;}
.y30{bottom:456.106484pt;}
.y19{bottom:458.026483pt;}
.y84{bottom:458.186483pt;}
.ydc{bottom:459.306483pt;}
.yd2{bottom:461.866482pt;}
.ya7{bottom:463.466481pt;}
.y100{bottom:470.186479pt;}
.y64{bottom:472.906478pt;}
.y42{bottom:475.946476pt;}
.y83{bottom:477.226476pt;}
.y2f{bottom:482.346474pt;}
.ya5{bottom:482.347200pt;}
.y18{bottom:483.306473pt;}
.ya4{bottom:484.906473pt;}
.yd1{bottom:487.306472pt;}
.yff{bottom:495.466468pt;}
.y82{bottom:496.266468pt;}
.y63{bottom:498.346467pt;}
.y41{bottom:501.226466pt;}
.y17{bottom:508.586463pt;}
.y97{bottom:509.866463pt;}
.yd0{bottom:512.586462pt;}
.y81{bottom:515.306461pt;}
.yfe{bottom:520.906458pt;}
.y62{bottom:523.626457pt;}
.y40{bottom:525.546456pt;}
.y2b{bottom:533.866453pt;}
.y16{bottom:534.026453pt;}
.y80{bottom:534.506453pt;}
.ycf{bottom:537.866452pt;}
.y96{bottom:539.146451pt;}
.yfd{bottom:546.186448pt;}
.y61{bottom:548.906447pt;}
.y7f{bottom:553.546445pt;}
.y15{bottom:559.306443pt;}
.y111{bottom:559.466443pt;}
.yce{bottom:563.146441pt;}
.yfc{bottom:571.466438pt;}
.y7e{bottom:572.586438pt;}
.y60{bottom:574.186437pt;}
.ycd{bottom:579.786435pt;}
.y2a{bottom:584.586433pt;}
.y14{bottom:584.746433pt;}
.y7d{bottom:591.626430pt;}
.ycc{bottom:595.146429pt;}
.y5f{bottom:596.266428pt;}
.yfb{bottom:596.906428pt;}
.y5e{bottom:607.146424pt;}
.y13{bottom:609.866423pt;}
.y7c{bottom:610.666422pt;}
.yca{bottom:616.906420pt;}
.ycb{bottom:617.546420pt;}
.y78{bottom:619.946419pt;}
.yfa{bottom:621.066418pt;}
.y52{bottom:628.906415pt;}
.y7b{bottom:629.066415pt;}
.y12{bottom:635.146413pt;}
.yc9{bottom:638.026411pt;}
.y77{bottom:638.346411pt;}
.y75{bottom:638.506411pt;}
.y5d{bottom:641.866410pt;}
.yf9{bottom:643.946409pt;}
.y7a{bottom:647.466408pt;}
.y53{bottom:654.026405pt;}
.yc7{bottom:654.667200pt;}
.y76{bottom:656.746404pt;}
.yc6{bottom:657.066404pt;}
.y11{bottom:660.426402pt;}
.y79{bottom:665.866400pt;}
.yf8{bottom:666.506400pt;}
.yc5{bottom:676.266396pt;}
.y54{bottom:679.786395pt;}
.y10{bottom:685.706392pt;}
.y74{bottom:686.986392pt;}
.yf7{bottom:687.786392pt;}
.yc4{bottom:695.306389pt;}
.y55{bottom:704.906385pt;}
.yf6{bottom:709.226383pt;}
.yf{bottom:710.986382pt;}
.y73{bottom:711.146382pt;}
.yc3{bottom:714.346381pt;}
.y56{bottom:730.666374pt;}
.ybe{bottom:733.546373pt;}
.ye{bottom:736.266372pt;}
.yc2{bottom:751.946366pt;}
.y57{bottom:755.786364pt;}
.yd{bottom:761.546362pt;}
.yc1{bottom:770.346359pt;}
.yf4{bottom:770.827200pt;}
.y58{bottom:781.546354pt;}
.ybf{bottom:786.187200pt;}
.yc{bottom:786.986352pt;}
.yf3{bottom:788.266351pt;}
.ybd{bottom:802.026346pt;}
.y59{bottom:806.506344pt;}
.yb{bottom:812.266342pt;}
.y2e{bottom:812.426342pt;}
.y3f{bottom:813.546341pt;}
.ybc{bottom:826.186336pt;}
.y5a{bottom:832.266334pt;}
.ya{bottom:837.546332pt;}
.ybb{bottom:850.346327pt;}
.y5b{bottom:857.386324pt;}
.y29{bottom:862.826322pt;}
.y9{bottom:862.986321pt;}
.yb8{bottom:870.187200pt;}
.yba{bottom:872.746318pt;}
.y5c{bottom:883.146313pt;}
.y8{bottom:888.106311pt;}
.y95{bottom:888.266311pt;}
.yb7{bottom:894.186309pt;}
.y7{bottom:913.386301pt;}
.y51{bottom:914.666301pt;}
.yb6{bottom:915.466300pt;}
.yb5{bottom:936.906292pt;}
.y6{bottom:938.666291pt;}
.yb4{bottom:958.346283pt;}
.y5{bottom:963.946281pt;}
.yb3{bottom:979.626275pt;}
.y4{bottom:989.226271pt;}
.y2d{bottom:989.386271pt;}
.yb1{bottom:998.507200pt;}
.yb0{bottom:1001.066266pt;}
.y28{bottom:1014.666261pt;}
.y3{bottom:1014.826261pt;}
.yaf{bottom:1015.946260pt;}
.hd{height:12.000000pt;}
.h7{height:12.160000pt;}
.he{height:12.480000pt;}
.hc{height:13.760000pt;}
.h4{height:21.010785pt;}
.h8{height:38.714985pt;}
.h9{height:42.084358pt;}
.h5{height:44.722482pt;}
.h6{height:46.642481pt;}
.hb{height:50.062480pt;}
.ha{height:52.134354pt;}
.h3{height:55.402478pt;}
.h2{height:61.409975pt;}
.h1{height:62.812475pt;}
.h0{height:1122.666667pt;}
.w12{width:3.360000pt;}
.we{width:4.480000pt;}
.w18{width:5.120000pt;}
.w17{width:5.440000pt;}
.w2{width:5.600000pt;}
.w4{width:5.920000pt;}
.w6{width:6.720000pt;}
.w10{width:9.440000pt;}
.wd{width:11.840000pt;}
.wb{width:12.480000pt;}
.w9{width:13.280000pt;}
.w8{width:13.440000pt;}
.wc{width:19.040000pt;}
.w5{width:26.720000pt;}
.wa{width:30.880000pt;}
.w3{width:32.640000pt;}
.w13{width:35.200000pt;}
.wf{width:36.800000pt;}
.w14{width:37.280000pt;}
.w1{width:38.560000pt;}
.w16{width:42.080000pt;}
.w11{width:44.640000pt;}
.w15{width:47.360000pt;}
.w7{width:55.360000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x30{left:111.999955pt;}
.x2{left:113.440555pt;}
.x7d{left:117.599953pt;}
.x3d{left:118.879952pt;}
.x3e{left:123.999950pt;}
.x11{left:125.759923pt;}
.xe{left:127.039949pt;}
.x10{left:129.599909pt;}
.x7{left:132.319947pt;}
.x15{left:136.319945pt;}
.x8{left:137.440651pt;}
.x57{left:139.199944pt;}
.xf{left:141.119854pt;}
.x16{left:144.159942pt;}
.x3f{left:150.719940pt;}
.x12{left:153.439802pt;}
.x6e{left:155.200000pt;}
.x6{left:157.760834pt;}
.x9{left:161.440947pt;}
.x6f{left:162.719935pt;}
.x7f{left:163.840000pt;}
.x4{left:165.600140pt;}
.xa{left:180.959928pt;}
.x3{left:182.879927pt;}
.x5{left:184.320931pt;}
.x3c{left:187.199925pt;}
.x4c{left:188.160000pt;}
.x17{left:189.759924pt;}
.x3b{left:192.479923pt;}
.xb{left:195.200506pt;}
.x18{left:197.439921pt;}
.x5a{left:199.359920pt;}
.x5b{left:208.799916pt;}
.x70{left:210.080000pt;}
.x59{left:214.240000pt;}
.x73{left:221.599911pt;}
.x31{left:228.640000pt;}
.x1a{left:239.199904pt;}
.x19{left:245.759902pt;}
.x32{left:248.960000pt;}
.xd{left:252.959899pt;}
.x71{left:254.720000pt;}
.x72{left:258.080000pt;}
.x4d{left:260.799896pt;}
.x40{left:265.760000pt;}
.x58{left:267.199893pt;}
.x74{left:270.720000pt;}
.x5f{left:275.839890pt;}
.x5d{left:277.919889pt;}
.x76{left:280.319888pt;}
.x33{left:281.600000pt;}
.x5e{left:287.359885pt;}
.x41{left:292.480000pt;}
.x13{left:300.959880pt;}
.x34{left:304.160000pt;}
.x75{left:305.920000pt;}
.x1b{left:307.679877pt;}
.x1c{left:308.639877pt;}
.x5c{left:323.680000pt;}
.x35{left:336.800000pt;}
.x42{left:340.320000pt;}
.x4e{left:342.400000pt;}
.x60{left:353.279859pt;}
.x1d{left:354.239858pt;}
.x61{left:356.959857pt;}
.x62{left:358.719857pt;}
.x1e{left:361.919855pt;}
.x43{left:367.040000pt;}
.x4f{left:369.120000pt;}
.x80{left:380.640000pt;}
.x77{left:383.519847pt;}
.x36{left:393.120000pt;}
.x20{left:407.519837pt;}
.x44{left:412.320000pt;}
.x1f{left:414.079834pt;}
.x37{left:417.280000pt;}
.x78{left:420.000000pt;}
.x21{left:421.759831pt;}
.x50{left:423.520000pt;}
.x51{left:436.960000pt;}
.x45{left:439.040000pt;}
.x79{left:440.639824pt;}
.x81{left:448.640000pt;}
.x38{left:449.920000pt;}
.x22{left:469.279812pt;}
.x65{left:470.879812pt;}
.x39{left:472.480000pt;}
.x23{left:475.999810pt;}
.x24{left:476.959809pt;}
.x66{left:480.319808pt;}
.x7a{left:482.080000pt;}
.x46{left:484.320000pt;}
.x63{left:485.760000pt;}
.x52{left:492.960000pt;}
.x7b{left:500.159800pt;}
.x6d{left:501.119800pt;}
.x3a{left:505.120000pt;}
.x47{left:511.040000pt;}
.x64{left:516.640000pt;}
.x26{left:517.759793pt;}
.x25{left:520.159792pt;}
.x27{left:526.079790pt;}
.x28{left:527.839789pt;}
.x82{left:539.040000pt;}
.x53{left:552.000000pt;}
.x6a{left:553.439779pt;}
.x48{left:556.320000pt;}
.x69{left:564.959774pt;}
.x2a{left:571.039772pt;}
.x2b{left:573.599771pt;}
.x54{left:578.720000pt;}
.x29{left:579.679768pt;}
.x49{left:583.040000pt;}
.x67{left:589.440000pt;}
.xc{left:598.399761pt;}
.x68{left:601.280000pt;}
.x55{left:613.920000pt;}
.x4a{left:622.400000pt;}
.x83{left:626.400000pt;}
.x7c{left:628.960000pt;}
.x6b{left:634.559746pt;}
.x6c{left:638.239745pt;}
.x2c{left:639.679744pt;}
.x56{left:640.640000pt;}
.x2d{left:644.319742pt;}
.x2e{left:645.439742pt;}
.x2f{left:647.359741pt;}
.x4b{left:649.120000pt;}
.x84{left:653.120000pt;}
.x7e{left:664.319734pt;}
.x1{left:672.319731pt;}
.x14{left:685.439726pt;}
}




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