
    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_997ca64947e3568ff323215c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_5382c256db28e25c1a3e7d8e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_fb3f81428ae02b92ffa5f691.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.094727;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_0dc71ab19da6efb16c72be23.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.754395;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_b6e34a049719bd40307ac690.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.754395;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_72e88152259896ef87108beb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.853027;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_f4906ff64aa6fdf4779b8051.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_60e7b2f5c0cc730d5b1a5b2f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.708008;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);}
.v4{vertical-align:-30.959947px;}
.v2{vertical-align:-29.519920px;}
.v3{vertical-align:-2.879873px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:15.840050px;}
.v5{vertical-align:20.880194px;}
.v6{vertical-align:36.719878px;}
.v1{vertical-align:44.639900px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000012px;}
.ls1e{letter-spacing:0.000054px;}
.ls10{letter-spacing:0.000144px;}
.ls1{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.221027px;}
.lse{letter-spacing:0.221033px;}
.ls26{letter-spacing:0.287957px;}
.ls24{letter-spacing:0.288005px;}
.ls23{letter-spacing:0.319589px;}
.ls25{letter-spacing:0.319679px;}
.ls27{letter-spacing:0.319685px;}
.ls28{letter-spacing:0.319775px;}
.ls17{letter-spacing:0.528113px;}
.ls1f{letter-spacing:0.528293px;}
.ls16{letter-spacing:0.540035px;}
.ls21{letter-spacing:0.575915px;}
.ls1a{letter-spacing:0.575921px;}
.ls29{letter-spacing:0.575963px;}
.ls15{letter-spacing:0.575969px;}
.ls13{letter-spacing:0.576011px;}
.ls19{letter-spacing:0.576101px;}
.ls20{letter-spacing:0.576107px;}
.ls12{letter-spacing:0.719998px;}
.ls14{letter-spacing:0.756004px;}
.ls18{letter-spacing:1.296069px;}
.ls11{letter-spacing:2.015857px;}
.ls1b{letter-spacing:3.455973px;}
.ls7{letter-spacing:53.645470px;}
.lsc{letter-spacing:69.485514px;}
.ls5{letter-spacing:98.465364px;}
.ls9{letter-spacing:104.945450px;}
.ls8{letter-spacing:109.985413px;}
.ls4{letter-spacing:124.385341px;}
.lsf{letter-spacing:127.613921px;}
.lsd{letter-spacing:148.145234px;}
.lsa{letter-spacing:167.585305px;}
.ls6{letter-spacing:169.025247px;}
.lsb{letter-spacing:246.065031px;}
.ls2{letter-spacing:531.916316px;}
.ls22{letter-spacing:706.504564px;}
.ls1c{letter-spacing:1039.923682px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-72.143820px;}
.ws5{word-spacing:-71.999820px;}
.ws9{word-spacing:-20.087950px;}
.ws6{word-spacing:-19.911694px;}
.ws4{word-spacing:-19.871950px;}
.ws8{word-spacing:-18.282194px;}
.wsa{word-spacing:-16.672998px;}
.wsb{word-spacing:-16.493719px;}
.ws3{word-spacing:-13.499102px;}
.ws2{word-spacing:-13.458926px;}
.ws1{word-spacing:-13.314207px;}
.ws0{word-spacing:0.000000px;}
._36{margin-left:-5.581816px;}
._2{margin-left:-3.828296px;}
._1b{margin-left:-2.075977px;}
._1{margin-left:-1.007997px;}
._0{width:1.439996px;}
._19{width:2.447994px;}
._16{width:3.599991px;}
._15{width:5.615986px;}
._1c{width:6.695983px;}
._a{width:8.063980px;}
._5{width:9.143977px;}
._4{width:10.151975px;}
._20{width:11.579953px;}
._23{width:13.391967px;}
._3{width:14.399964px;}
._1d{width:15.528093px;}
._b{width:17.063957px;}
._e{width:18.287942px;}
._7{width:21.743946px;}
._6{width:23.039942px;}
._2e{width:25.055937px;}
._2f{width:26.483916px;}
._25{width:27.719931px;}
._18{width:29.591926px;}
._26{width:30.947905px;}
._9{width:32.831918px;}
._8{width:34.631913px;}
._2c{width:36.155928px;}
._1e{width:37.283889px;}
._22{width:38.447904px;}
._14{width:40.319899px;}
._17{width:41.471896px;}
._29{width:42.971863px;}
._3a{width:44.303949px;}
._24{width:45.923867px;}
._d{width:47.303882px;}
._c{width:48.311879px;}
._1a{width:49.463876px;}
._12{width:51.407871px;}
._13{width:52.631868px;}
._28{width:54.623827px;}
._21{width:55.727861px;}
._f{width:58.175855px;}
._10{width:59.327852px;}
._31{width:61.103811px;}
._3b{width:65.605705px;}
._11{width:67.535831px;}
._2b{width:69.275845px;}
._2a{width:70.331806px;}
._3c{width:81.791796px;}
._27{width:85.895785px;}
._1f{width:87.263782px;}
._2d{width:88.991772px;}
._30{width:91.871770px;}
._39{width:93.815765px;}
._37{width:112.385839px;}
._3d{width:288.946294px;}
._3f{width:671.576005px;}
._3e{width:762.901987px;}
._32{width:1533.369799px;}
._38{width:1592.509287px;}
._33{width:1753.671746px;}
._34{width:1799.551693px;}
._35{width:1881.721488px;}
.fc7{color:rgb(0,128,128);}
.fc6{color:rgb(13,144,185);}
.fc5{color:rgb(13,119,110);}
.fc4{color:rgb(0,103,120);}
.fc3{color:rgb(33,37,41);}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.239879px;}
.fs5{font-size:48.383879px;}
.fs0{font-size:59.759851px;}
.fs6{font-size:59.903850px;}
.fs3{font-size:66.239834px;}
.fs1{font-size:71.999820px;}
.fs2{font-size:72.143820px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.498183px;}
.y116{bottom:7.739940px;}
.y85{bottom:8.999978px;}
.y3{bottom:23.759890px;}
.y31{bottom:29.879900px;}
.y30{bottom:51.839867px;}
.y4{bottom:54.359849px;}
.y147{bottom:70.919775px;}
.y2f{bottom:73.289794px;}
.ya4{bottom:74.369748px;}
.ye5{bottom:81.929788px;}
.y146{bottom:93.089764px;}
.y2e{bottom:95.249762px;}
.ya3{bottom:96.509708px;}
.y82{bottom:101.909750px;}
.y10c{bottom:104.069747px;}
.ye4{bottom:106.589731px;}
.y145{bottom:115.049730px;}
.y81{bottom:116.489668px;}
.y2d{bottom:117.389722px;}
.ya2{bottom:118.469675px;}
.y10b{bottom:126.209615px;}
.y80{bottom:131.249672px;}
.y84{bottom:131.429664px;}
.y144{bottom:137.189599px;}
.y2c{bottom:139.529590px;}
.ya1{bottom:140.609633px;}
.y7f{bottom:146.009584px;}
.y10a{bottom:148.169582px;}
.ye3{bottom:156.089607px;}
.y143{bottom:159.329558px;}
.y7e{bottom:160.769588px;}
.y2b{bottom:161.489556px;}
.ya0{bottom:162.749593px;}
.y83{bottom:164.549607px;}
.y109{bottom:170.309541px;}
.ye2{bottom:180.749548px;}
.y7c{bottom:181.109532px;}
.y142{bottom:181.289524px;}
.y2a{bottom:183.629515px;}
.y9f{bottom:184.709469px;}
.y108{bottom:192.269509px;}
.y7b{bottom:195.869444px;}
.y141{bottom:203.429484px;}
.ye1{bottom:205.589483px;}
.y29{bottom:205.769475px;}
.y9e{bottom:206.849427px;}
.y7a{bottom:210.629448px;}
.y107{bottom:214.409468px;}
.y79{bottom:225.389452px;}
.ye0{bottom:225.749436px;}
.y7d{bottom:225.929428px;}
.y28{bottom:227.729441px;}
.y9d{bottom:228.809395px;}
.ydf{bottom:234.929405px;}
.y106{bottom:236.549427px;}
.y78{bottom:242.669345px;}
.y140{bottom:247.529320px;}
.y27{bottom:249.869309px;}
.y73{bottom:250.049393px;}
.y9c{bottom:250.949355px;}
.y77{bottom:257.429349px;}
.y105{bottom:258.509303px;}
.y72{bottom:264.629313px;}
.y13f{bottom:269.669278px;}
.y26{bottom:271.829277px;}
.y76{bottom:272.009269px;}
.y9b{bottom:273.089314px;}
.yde{bottom:278.849247px;}
.y71{bottom:279.389317px;}
.y104{bottom:280.649262px;}
.y75{bottom:286.769273px;}
.y13e{bottom:291.629245px;}
.y25{bottom:293.969237px;}
.y70{bottom:294.329221px;}
.y9a{bottom:295.049280px;}
.ydd{bottom:300.989207px;}
.y74{bottom:302.249244px;}
.y103{bottom:302.609228px;}
.y13d{bottom:313.769205px;}
.y24{bottom:316.109195px;}
.y99{bottom:317.189149px;}
.y6c{bottom:318.629178px;}
.y102{bottom:324.749188px;}
.y6f{bottom:326.009134px;}
.yda{bottom:331.049190px;}
.ydc{bottom:331.769160px;}
.y6b{bottom:333.389182px;}
.y13c{bottom:335.909165px;}
.y23{bottom:338.069162px;}
.y98{bottom:339.149116px;}
.y6e{bottom:340.814089px;}
.y101{bottom:346.934100px;}
.y6a{bottom:348.194137px;}
.yd9{bottom:353.054110px;}
.y13b{bottom:357.914083px;}
.y22{bottom:360.254074px;}
.y97{bottom:361.334028px;}
.y69{bottom:362.954049px;}
.y6d{bottom:363.494025px;}
.y100{bottom:368.894067px;}
.yd8{bottom:375.194070px;}
.y13a{bottom:380.054042px;}
.y21{bottom:382.214041px;}
.y96{bottom:383.473986px;}
.y67{bottom:387.433998px;}
.yff{bottom:391.034027px;}
.yd7{bottom:397.153946px;}
.y139{bottom:402.014010px;}
.y66{bottom:402.194002px;}
.y20{bottom:404.354000px;}
.y95{bottom:405.433953px;}
.yfe{bottom:412.993902px;}
.y65{bottom:416.953914px;}
.yd6{bottom:419.293904px;}
.y138{bottom:424.153878px;}
.y68{bottom:424.873938px;}
.y1f{bottom:426.493868px;}
.y94{bottom:427.573913px;}
.yfd{bottom:435.133861px;}
.y63{bottom:441.433863px;}
.y137{bottom:446.293836px;}
.y1e{bottom:448.453835px;}
.y93{bottom:449.533881px;}
.y62{bottom:456.193867px;}
.yfc{bottom:457.273821px;}
.ydb{bottom:463.393831px;}
.yd5{bottom:464.113799px;}
.y136{bottom:468.253804px;}
.y1d{bottom:470.593795px;}
.y61{bottom:470.953779px;}
.y92{bottom:471.673839px;}
.ya6{bottom:472.393809px;}
.yfb{bottom:479.233787px;}
.yd4{bottom:485.533791px;}
.y60{bottom:485.713783px;}
.y64{bottom:486.253759px;}
.y135{bottom:490.393764px;}
.y1c{bottom:492.553761px;}
.y91{bottom:493.813707px;}
.yfa{bottom:501.373702px;}
.yd3{bottom:507.493712px;}
.y5e{bottom:510.193686px;}
.y134{bottom:512.353685px;}
.y1b{bottom:514.693674px;}
.y90{bottom:515.773675px;}
.yf9{bottom:523.333668px;}
.y5d{bottom:524.773652px;}
.yd2{bottom:529.633670px;}
.y133{bottom:534.493644px;}
.y1a{bottom:536.833634px;}
.y8f{bottom:537.913633px;}
.y5c{bottom:539.533609px;}
.yf8{bottom:545.473627px;}
.yd1{bottom:551.773585px;}
.y5b{bottom:554.473605px;}
.y132{bottom:556.633602px;}
.y19{bottom:558.793555px;}
.y8e{bottom:560.053592px;}
.y5f{bottom:562.213591px;}
.yf7{bottom:567.613540px;}
.yd0{bottom:573.733551px;}
.y131{bottom:578.593525px;}
.y59{bottom:578.773517px;}
.y18{bottom:580.933515px;}
.y8d{bottom:582.013513px;}
.yf6{bottom:589.573508px;}
.y58{bottom:593.533474px;}
.ycf{bottom:595.873465px;}
.y130{bottom:600.733483px;}
.y17{bottom:602.893482px;}
.y8c{bottom:604.153473px;}
.y57{bottom:608.323461px;}
.yf5{bottom:611.743451px;}
.yce{bottom:617.863415px;}
.y12f{bottom:622.723434px;}
.y56{bottom:623.083418px;}
.y5a{bottom:623.623396px;}
.y16{bottom:625.063425px;}
.y8b{bottom:626.143424px;}
.yf4{bottom:633.703372px;}
.ycd{bottom:640.003374px;}
.y54{bottom:640.363359px;}
.y12e{bottom:644.863347px;}
.y15{bottom:647.203338px;}
.y8a{bottom:648.283337px;}
.y53{bottom:654.943324px;}
.yf3{bottom:655.843332px;}
.ycc{bottom:662.143334px;}
.y12d{bottom:667.003307px;}
.y52{bottom:669.703282px;}
.y14{bottom:669.883319px;}
.y89{bottom:670.423297px;}
.yf2{bottom:677.983290px;}
.ycb{bottom:684.103255px;}
.y51{bottom:684.463286px;}
.y55{bottom:685.183254px;}
.y12c{bottom:688.963275px;}
.y13{bottom:691.303264px;}
.y88{bottom:692.383263px;}
.yf1{bottom:699.943211px;}
.y4d{bottom:701.383241px;}
.yca{bottom:706.243215px;}
.y12b{bottom:711.103188px;}
.y12{bottom:713.443177px;}
.ya5{bottom:714.523178px;}
.y87{bottom:715.243192px;}
.y4c{bottom:715.963207px;}
.yf0{bottom:722.083171px;}
.y50{bottom:723.343163px;}
.yc9{bottom:728.203136px;}
.y4b{bottom:730.723164px;}
.y12a{bottom:733.063155px;}
.y11{bottom:736.123115px;}
.y4f{bottom:738.103120px;}
.yef{bottom:744.223130px;}
.y4a{bottom:745.483121px;}
.yb8{bottom:749.623081px;}
.yc8{bottom:750.343096px;}
.y4e{bottom:752.863077px;}
.y129{bottom:755.203068px;}
.y148{bottom:755.923083px;}
.y10{bottom:757.543058px;}
.y49{bottom:760.243080px;}
.yee{bottom:766.183052px;}
.yb7{bottom:771.763039px;}
.yc7{bottom:772.483054px;}
.y48{bottom:775.003037px;}
.y128{bottom:777.343028px;}
.yf{bottom:779.503026px;}
.yed{bottom:788.323011px;}
.yb6{bottom:793.902999px;}
.yc6{bottom:794.442975px;}
.y47{bottom:798.402987px;}
.y127{bottom:799.302994px;}
.ye{bottom:802.362954px;}
.y42{bottom:805.782944px;}
.yec{bottom:810.282932px;}
.y46{bottom:813.162945px;}
.yb5{bottom:815.862920px;}
.yc5{bottom:816.582935px;}
.y41{bottom:820.542901px;}
.y126{bottom:821.442907px;}
.yd{bottom:823.782899px;}
.y45{bottom:827.922903px;}
.yeb{bottom:832.422892px;}
.y40{bottom:835.482896px;}
.yb4{bottom:838.002879px;}
.yc4{bottom:838.542856px;}
.y44{bottom:842.682860px;}
.y125{bottom:843.402875px;}
.yc{bottom:846.462881px;}
.y3f{bottom:850.062863px;}
.yea{bottom:854.562852px;}
.yb3{bottom:859.962847px;}
.yc3{bottom:860.682815px;}
.y43{bottom:864.822820px;}
.y124{bottom:865.542788px;}
.yb{bottom:868.602794px;}
.ye9{bottom:876.567770px;}
.yb2{bottom:882.147759px;}
.yc2{bottom:882.867773px;}
.y3e{bottom:885.027771px;}
.y123{bottom:887.727746px;}
.ya{bottom:889.887744px;}
.ye8{bottom:898.707729px;}
.yb1{bottom:904.287717px;}
.y3a{bottom:904.827717px;}
.y122{bottom:909.687690px;}
.y9{bottom:912.027703px;}
.y3d{bottom:912.207695px;}
.y39{bottom:919.587674px;}
.ye7{bottom:920.667674px;}
.yb0{bottom:926.247662px;}
.y3c{bottom:926.967654px;}
.y121{bottom:931.827649px;}
.y8{bottom:934.167641px;}
.y38{bottom:934.347633px;}
.y3b{bottom:941.727611px;}
.y10d{bottom:942.807610px;}
.ye6{bottom:943.527625px;}
.yaf{bottom:948.387598px;}
.y37{bottom:949.107612px;}
.y120{bottom:953.967587px;}
.y7{bottom:956.127584px;}
.y36{bottom:963.867571px;}
.yc1{bottom:971.067557px;}
.y11f{bottom:975.927530px;}
.y6{bottom:978.267521px;}
.y35{bottom:980.067535px;}
.yae{bottom:983.127517px;}
.y115{bottom:986.547507px;}
.yc0{bottom:993.207493px;}
.y11e{bottom:998.067490px;}
.y5{bottom:1000.947480px;}
.y34{bottom:1003.107477px;}
.y114{bottom:1009.767443px;}
.ybf{bottom:1015.167438px;}
.yad{bottom:1017.147421px;}
.y33{bottom:1017.867436px;}
.y11d{bottom:1020.027433px;}
.y32{bottom:1021.467418px;}
.y113{bottom:1028.127404px;}
.ybe{bottom:1037.307374px;}
.yac{bottom:1039.287379px;}
.y11c{bottom:1042.167371px;}
.y112{bottom:1051.527355px;}
.ybd{bottom:1059.447333px;}
.yab{bottom:1061.427316px;}
.y11b{bottom:1064.307306px;}
.y111{bottom:1078.347283px;}
.ybc{bottom:1081.407266px;}
.yaa{bottom:1082.667269px;}
.y11a{bottom:1086.267262px;}
.ybb{bottom:1103.547214px;}
.ya9{bottom:1104.807217px;}
.y119{bottom:1108.407199px;}
.y110{bottom:1109.127202px;}
.yba{bottom:1125.501161px;}
.ya8{bottom:1126.761153px;}
.y118{bottom:1130.361146px;}
.y10f{bottom:1131.081150px;}
.yb9{bottom:1147.677101px;}
.ya7{bottom:1149.657096px;}
.y117{bottom:1152.537096px;}
.y10e{bottom:1153.257088px;}
.y86{bottom:1219.856925px;}
.y2{bottom:1234.076888px;}
.ha{height:36.179910px;}
.h8{height:42.775206px;}
.h9{height:42.902893px;}
.hc{height:48.774253px;}
.h11{height:52.990180px;}
.hd{height:53.015492px;}
.h12{height:53.117867px;}
.h4{height:53.999865px;}
.he{height:54.107865px;}
.hf{height:58.736103px;}
.h3{height:59.438875px;}
.h13{height:60.679536px;}
.h5{height:63.843590px;}
.h6{height:63.971278px;}
.h15{height:64.614303px;}
.hb{height:69.654447px;}
.h10{height:81.539766px;}
.h7{height:87.415106px;}
.h14{height:89.710148px;}
.h2{height:1262.876798px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1{width:892.977765px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:22.679930px;}
.x14{left:24.659926px;}
.x11{left:26.639920px;}
.x15{left:29.339912px;}
.x13{left:30.599910px;}
.x18{left:31.859907px;}
.x10{left:37.439891px;}
.x16{left:44.459874px;}
.x1{left:46.799871px;}
.x12{left:48.599868px;}
.x19{left:55.079850px;}
.x6{left:59.219838px;}
.x1a{left:64.799826px;}
.x5b{left:66.239821px;}
.x54{left:67.499818px;}
.x4d{left:70.379808px;}
.x57{left:72.719805px;}
.x4b{left:82.079783px;}
.x60{left:101.015737px;}
.xd{left:104.615729px;}
.xa{left:108.935716px;}
.xb{left:115.775694px;}
.x5f{left:117.395693px;}
.x55{left:121.895682px;}
.xc{left:127.115673px;}
.xf{left:129.815660px;}
.x4{left:134.855648px;}
.x8{left:136.115651px;}
.xe{left:139.175634px;}
.x3{left:142.415630px;}
.x9{left:143.675623px;}
.x7{left:151.409611px;}
.x62{left:155.009593px;}
.x5{left:180.389539px;}
.x59{left:183.809528px;}
.x61{left:209.009458px;}
.x5d{left:212.789456px;}
.x5e{left:215.489454px;}
.x56{left:263.189339px;}
.x5a{left:298.154247px;}
.x51{left:299.954238px;}
.x4c{left:307.154225px;}
.x42{left:366.914071px;}
.x2e{left:368.714062px;}
.x38{left:370.334059px;}
.x3b{left:372.494058px;}
.x22{left:374.114057px;}
.x45{left:376.094040px;}
.x1f{left:377.354054px;}
.x1b{left:378.614046px;}
.x21{left:380.054029px;}
.x34{left:381.314044px;}
.x48{left:382.934019px;}
.x1d{left:384.554018px;}
.x33{left:386.534023px;}
.x47{left:391.934020px;}
.x29{left:393.733987px;}
.x28{left:396.793993px;}
.x3c{left:399.493968px;}
.x37{left:402.013996px;}
.x2c{left:416.413923px;}
.x49{left:420.733920px;}
.x39{left:422.893919px;}
.x20{left:424.873924px;}
.x2d{left:438.553883px;}
.x53{left:448.273875px;}
.x50{left:456.373846px;}
.x2f{left:462.313817px;}
.x2{left:471.343825px;}
.x4e{left:483.403761px;}
.x52{left:524.443683px;}
.x4f{left:563.143568px;}
.x27{left:576.463542px;}
.x1c{left:577.723533px;}
.x1e{left:616.963441px;}
.x23{left:627.583440px;}
.x2a{left:644.323358px;}
.x35{left:645.583395px;}
.x3d{left:646.663347px;}
.x2b{left:648.643354px;}
.x31{left:651.343375px;}
.x36{left:652.603365px;}
.x25{left:655.168347px;}
.x3f{left:657.688329px;}
.x43{left:658.768329px;}
.x32{left:663.088326px;}
.x46{left:667.408321px;}
.x30{left:670.288288px;}
.x3e{left:672.448287px;}
.x44{left:678.568298px;}
.x41{left:688.468282px;}
.x24{left:693.868232px;}
.x40{left:707.368199px;}
.x26{left:730.588157px;}
.x3a{left:738.868120px;}
.x4a{left:755.428090px;}
.x58{left:776.308013px;}
.x5c{left:777.928034px;}
@media print{
.v4{vertical-align:-27.519953pt;}
.v2{vertical-align:-26.239929pt;}
.v3{vertical-align:-2.559887pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:14.080045pt;}
.v5{vertical-align:18.560172pt;}
.v6{vertical-align:32.639892pt;}
.v1{vertical-align:39.679911pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000011pt;}
.ls1e{letter-spacing:0.000048pt;}
.ls10{letter-spacing:0.000128pt;}
.ls1{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.196469pt;}
.lse{letter-spacing:0.196474pt;}
.ls26{letter-spacing:0.255962pt;}
.ls24{letter-spacing:0.256005pt;}
.ls23{letter-spacing:0.284079pt;}
.ls25{letter-spacing:0.284159pt;}
.ls27{letter-spacing:0.284165pt;}
.ls28{letter-spacing:0.284245pt;}
.ls17{letter-spacing:0.469433pt;}
.ls1f{letter-spacing:0.469593pt;}
.ls16{letter-spacing:0.480031pt;}
.ls21{letter-spacing:0.511924pt;}
.ls1a{letter-spacing:0.511929pt;}
.ls29{letter-spacing:0.511967pt;}
.ls15{letter-spacing:0.511972pt;}
.ls13{letter-spacing:0.512009pt;}
.ls19{letter-spacing:0.512089pt;}
.ls20{letter-spacing:0.512095pt;}
.ls12{letter-spacing:0.639998pt;}
.ls14{letter-spacing:0.672004pt;}
.ls18{letter-spacing:1.152061pt;}
.ls11{letter-spacing:1.791873pt;}
.ls1b{letter-spacing:3.071976pt;}
.ls7{letter-spacing:47.684862pt;}
.lsc{letter-spacing:61.764902pt;}
.ls5{letter-spacing:87.524768pt;}
.ls9{letter-spacing:93.284844pt;}
.ls8{letter-spacing:97.764812pt;}
.ls4{letter-spacing:110.564748pt;}
.lsf{letter-spacing:113.434596pt;}
.lsd{letter-spacing:131.684652pt;}
.lsa{letter-spacing:148.964716pt;}
.ls6{letter-spacing:150.244664pt;}
.lsb{letter-spacing:218.724472pt;}
.ls2{letter-spacing:472.814503pt;}
.ls22{letter-spacing:628.004057pt;}
.ls1c{letter-spacing:924.376606pt;}
.ws7{word-spacing:-64.127840pt;}
.ws5{word-spacing:-63.999840pt;}
.ws9{word-spacing:-17.855955pt;}
.ws6{word-spacing:-17.699284pt;}
.ws4{word-spacing:-17.663956pt;}
.ws8{word-spacing:-16.250839pt;}
.wsa{word-spacing:-14.820443pt;}
.wsb{word-spacing:-14.661083pt;}
.ws3{word-spacing:-11.999202pt;}
.ws2{word-spacing:-11.963490pt;}
.ws1{word-spacing:-11.834850pt;}
.ws0{word-spacing:0.000000pt;}
._36{margin-left:-4.961614pt;}
._2{margin-left:-3.402930pt;}
._1b{margin-left:-1.845313pt;}
._1{margin-left:-0.895998pt;}
._0{width:1.279997pt;}
._19{width:2.175995pt;}
._16{width:3.199992pt;}
._15{width:4.991988pt;}
._1c{width:5.951985pt;}
._a{width:7.167982pt;}
._5{width:8.127980pt;}
._4{width:9.023977pt;}
._20{width:10.293292pt;}
._23{width:11.903970pt;}
._3{width:12.799968pt;}
._1d{width:13.802749pt;}
._b{width:15.167962pt;}
._e{width:16.255949pt;}
._7{width:19.327952pt;}
._6{width:20.479949pt;}
._2e{width:22.271944pt;}
._2f{width:23.541258pt;}
._25{width:24.639938pt;}
._18{width:26.303934pt;}
._26{width:27.509249pt;}
._9{width:29.183927pt;}
._8{width:30.783923pt;}
._2c{width:32.138602pt;}
._1e{width:33.141234pt;}
._22{width:34.175915pt;}
._14{width:35.839910pt;}
._17{width:36.863908pt;}
._29{width:38.197211pt;}
._3a{width:39.381288pt;}
._24{width:40.821215pt;}
._d{width:42.047895pt;}
._c{width:42.943893pt;}
._1a{width:43.967890pt;}
._12{width:45.695886pt;}
._13{width:46.783883pt;}
._28{width:48.554513pt;}
._21{width:49.535876pt;}
._f{width:51.711871pt;}
._10{width:52.735868pt;}
._31{width:54.314499pt;}
._3b{width:58.316182pt;}
._11{width:60.031850pt;}
._2b{width:61.578529pt;}
._2a{width:62.517161pt;}
._3c{width:72.703818pt;}
._27{width:76.351809pt;}
._1f{width:77.567806pt;}
._2d{width:79.103797pt;}
._30{width:81.663796pt;}
._39{width:83.391792pt;}
._37{width:99.898524pt;}
._3d{width:256.841150pt;}
._3f{width:596.956449pt;}
._3e{width:678.135099pt;}
._32{width:1362.995377pt;}
._38{width:1415.563810pt;}
._33{width:1558.819330pt;}
._34{width:1599.601505pt;}
._35{width:1672.641322pt;}
.fs4{font-size:42.879893pt;}
.fs5{font-size:43.007892pt;}
.fs0{font-size:53.119867pt;}
.fs6{font-size:53.247867pt;}
.fs3{font-size:58.879853pt;}
.fs1{font-size:63.999840pt;}
.fs2{font-size:64.127840pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.442829pt;}
.y116{bottom:6.879947pt;}
.y85{bottom:7.999980pt;}
.y3{bottom:21.119902pt;}
.y31{bottom:26.559911pt;}
.y30{bottom:46.079882pt;}
.y4{bottom:48.319866pt;}
.y147{bottom:63.039800pt;}
.y2f{bottom:65.146484pt;}
.ya4{bottom:66.106443pt;}
.ye5{bottom:72.826478pt;}
.y146{bottom:82.746457pt;}
.y2e{bottom:84.666455pt;}
.ya3{bottom:85.786407pt;}
.y82{bottom:90.586444pt;}
.y10c{bottom:92.506442pt;}
.ye4{bottom:94.746427pt;}
.y145{bottom:102.266427pt;}
.y81{bottom:103.546372pt;}
.y2d{bottom:104.346419pt;}
.ya2{bottom:105.306378pt;}
.y10b{bottom:112.186325pt;}
.y80{bottom:116.666375pt;}
.y84{bottom:116.826368pt;}
.y144{bottom:121.946310pt;}
.y2c{bottom:124.026302pt;}
.ya1{bottom:124.986341pt;}
.y7f{bottom:129.786297pt;}
.y10a{bottom:131.706295pt;}
.ye3{bottom:138.746317pt;}
.y143{bottom:141.626274pt;}
.y7e{bottom:142.906300pt;}
.y2b{bottom:143.546272pt;}
.ya0{bottom:144.666305pt;}
.y83{bottom:146.266317pt;}
.y109{bottom:151.386259pt;}
.ye2{bottom:160.666265pt;}
.y7c{bottom:160.986251pt;}
.y142{bottom:161.146244pt;}
.y2a{bottom:163.226236pt;}
.y9f{bottom:164.186195pt;}
.y108{bottom:170.906230pt;}
.y7b{bottom:174.106173pt;}
.y141{bottom:180.826208pt;}
.ye1{bottom:182.746207pt;}
.y29{bottom:182.906200pt;}
.y9e{bottom:183.866158pt;}
.y7a{bottom:187.226176pt;}
.y107{bottom:190.586194pt;}
.y79{bottom:200.346179pt;}
.ye0{bottom:200.666165pt;}
.y7d{bottom:200.826158pt;}
.y28{bottom:202.426170pt;}
.y9d{bottom:203.386129pt;}
.ydf{bottom:208.826138pt;}
.y106{bottom:210.266157pt;}
.y78{bottom:215.706085pt;}
.y140{bottom:220.026062pt;}
.y27{bottom:222.106053pt;}
.y73{bottom:222.266127pt;}
.y9c{bottom:223.066093pt;}
.y77{bottom:228.826088pt;}
.y105{bottom:229.786047pt;}
.y72{bottom:235.226056pt;}
.y13f{bottom:239.706025pt;}
.y26{bottom:241.626024pt;}
.y76{bottom:241.786017pt;}
.y9b{bottom:242.746057pt;}
.yde{bottom:247.865998pt;}
.y71{bottom:248.346059pt;}
.y104{bottom:249.466011pt;}
.y75{bottom:254.906020pt;}
.y13e{bottom:259.225996pt;}
.y25{bottom:261.305988pt;}
.y70{bottom:261.625974pt;}
.y9a{bottom:262.266027pt;}
.ydd{bottom:267.545962pt;}
.y74{bottom:268.665995pt;}
.y103{bottom:268.985981pt;}
.y13d{bottom:278.905960pt;}
.y24{bottom:280.985951pt;}
.y99{bottom:281.945910pt;}
.y6c{bottom:283.225936pt;}
.y102{bottom:288.665945pt;}
.y6f{bottom:289.785897pt;}
.yda{bottom:294.265947pt;}
.ydc{bottom:294.905920pt;}
.y6b{bottom:296.345939pt;}
.y13c{bottom:298.585924pt;}
.y23{bottom:300.505922pt;}
.y98{bottom:301.465881pt;}
.y6e{bottom:302.945857pt;}
.y101{bottom:308.385866pt;}
.y6a{bottom:309.505900pt;}
.yd9{bottom:313.825875pt;}
.y13b{bottom:318.145851pt;}
.y22{bottom:320.225843pt;}
.y97{bottom:321.185802pt;}
.y69{bottom:322.625821pt;}
.y6d{bottom:323.105800pt;}
.y100{bottom:327.905838pt;}
.yd8{bottom:333.505840pt;}
.y13a{bottom:337.825815pt;}
.y21{bottom:339.745815pt;}
.y96{bottom:340.865765pt;}
.y67{bottom:344.385776pt;}
.yff{bottom:347.585802pt;}
.yd7{bottom:353.025729pt;}
.y139{bottom:357.345787pt;}
.y66{bottom:357.505780pt;}
.y20{bottom:359.425777pt;}
.y95{bottom:360.385736pt;}
.yfe{bottom:367.105690pt;}
.y65{bottom:370.625701pt;}
.yd6{bottom:372.705692pt;}
.y138{bottom:377.025669pt;}
.y68{bottom:377.665723pt;}
.y1f{bottom:379.105660pt;}
.y94{bottom:380.065701pt;}
.yfd{bottom:386.785654pt;}
.y63{bottom:392.385656pt;}
.y137{bottom:396.705632pt;}
.y1e{bottom:398.625631pt;}
.y93{bottom:399.585672pt;}
.y62{bottom:405.505660pt;}
.yfc{bottom:406.465619pt;}
.ydb{bottom:411.905628pt;}
.yd5{bottom:412.545599pt;}
.y136{bottom:416.225603pt;}
.y1d{bottom:418.305596pt;}
.y61{bottom:418.625581pt;}
.y92{bottom:419.265634pt;}
.ya6{bottom:419.905608pt;}
.yfb{bottom:425.985588pt;}
.yd4{bottom:431.585592pt;}
.y60{bottom:431.745585pt;}
.y64{bottom:432.225563pt;}
.y135{bottom:435.905568pt;}
.y1c{bottom:437.825565pt;}
.y91{bottom:438.945517pt;}
.yfa{bottom:445.665513pt;}
.yd3{bottom:451.105522pt;}
.y5e{bottom:453.505498pt;}
.y134{bottom:455.425497pt;}
.y1b{bottom:457.505488pt;}
.y90{bottom:458.465489pt;}
.yf9{bottom:465.185482pt;}
.y5d{bottom:466.465469pt;}
.yd2{bottom:470.785484pt;}
.y133{bottom:475.105462pt;}
.y1a{bottom:477.185452pt;}
.y8f{bottom:478.145451pt;}
.y5c{bottom:479.585430pt;}
.yf8{bottom:484.865447pt;}
.yd1{bottom:490.465409pt;}
.y5b{bottom:492.865427pt;}
.y132{bottom:494.785424pt;}
.y19{bottom:496.705382pt;}
.y8e{bottom:497.825415pt;}
.y5f{bottom:499.745415pt;}
.yf7{bottom:504.545369pt;}
.yd0{bottom:509.985378pt;}
.y131{bottom:514.305356pt;}
.y59{bottom:514.465349pt;}
.y18{bottom:516.385346pt;}
.y8d{bottom:517.345345pt;}
.yf6{bottom:524.065341pt;}
.y58{bottom:527.585310pt;}
.ycf{bottom:529.665303pt;}
.y130{bottom:533.985318pt;}
.y17{bottom:535.905318pt;}
.y8c{bottom:537.025309pt;}
.y57{bottom:540.731966pt;}
.yf5{bottom:543.771957pt;}
.yce{bottom:549.211924pt;}
.y12f{bottom:553.531942pt;}
.y56{bottom:553.851927pt;}
.y5a{bottom:554.331908pt;}
.y16{bottom:555.611934pt;}
.y8b{bottom:556.571933pt;}
.yf4{bottom:563.291886pt;}
.ycd{bottom:568.891888pt;}
.y54{bottom:569.211874pt;}
.y12e{bottom:573.211864pt;}
.y15{bottom:575.291856pt;}
.y8a{bottom:576.251855pt;}
.y53{bottom:582.171843pt;}
.yf3{bottom:582.971851pt;}
.ycc{bottom:588.571853pt;}
.y12d{bottom:592.891828pt;}
.y52{bottom:595.291806pt;}
.y14{bottom:595.451839pt;}
.y89{bottom:595.931820pt;}
.yf2{bottom:602.651813pt;}
.ycb{bottom:608.091782pt;}
.y51{bottom:608.411810pt;}
.y55{bottom:609.051781pt;}
.y12c{bottom:612.411800pt;}
.y13{bottom:614.491790pt;}
.y88{bottom:615.451789pt;}
.yf1{bottom:622.171743pt;}
.y4d{bottom:623.451769pt;}
.yca{bottom:627.771747pt;}
.y12b{bottom:632.091722pt;}
.y12{bottom:634.171713pt;}
.ya5{bottom:635.131714pt;}
.y87{bottom:635.771727pt;}
.y4c{bottom:636.411740pt;}
.yf0{bottom:641.851707pt;}
.y50{bottom:642.971701pt;}
.yc9{bottom:647.291676pt;}
.y4b{bottom:649.531702pt;}
.y12a{bottom:651.611694pt;}
.y11{bottom:654.331658pt;}
.y4f{bottom:656.091662pt;}
.yef{bottom:661.531672pt;}
.y4a{bottom:662.651663pt;}
.yb8{bottom:666.331628pt;}
.yc8{bottom:666.971641pt;}
.y4e{bottom:669.211624pt;}
.y129{bottom:671.291616pt;}
.y148{bottom:671.931630pt;}
.y10{bottom:673.371607pt;}
.y49{bottom:675.771627pt;}
.yee{bottom:681.051601pt;}
.yb7{bottom:686.011590pt;}
.yc7{bottom:686.651603pt;}
.y48{bottom:688.891588pt;}
.y128{bottom:690.971581pt;}
.yf{bottom:692.891578pt;}
.yed{bottom:700.731566pt;}
.yb6{bottom:705.691554pt;}
.yc6{bottom:706.171533pt;}
.y47{bottom:709.691544pt;}
.y127{bottom:710.491550pt;}
.ye{bottom:713.211514pt;}
.y42{bottom:716.251505pt;}
.yec{bottom:720.251495pt;}
.y46{bottom:722.811506pt;}
.yb5{bottom:725.211484pt;}
.yc5{bottom:725.851497pt;}
.y41{bottom:729.371467pt;}
.y126{bottom:730.171473pt;}
.yd{bottom:732.251465pt;}
.y45{bottom:735.931470pt;}
.yeb{bottom:739.931460pt;}
.y40{bottom:742.651463pt;}
.yb4{bottom:744.891448pt;}
.yc4{bottom:745.371427pt;}
.y44{bottom:749.051431pt;}
.y125{bottom:749.691444pt;}
.yc{bottom:752.411450pt;}
.y3f{bottom:755.611434pt;}
.yea{bottom:759.611424pt;}
.yb3{bottom:764.411420pt;}
.yc3{bottom:765.051391pt;}
.y43{bottom:768.731396pt;}
.y124{bottom:769.371367pt;}
.yb{bottom:772.091372pt;}
.ye9{bottom:779.171351pt;}
.yb2{bottom:784.131341pt;}
.yc2{bottom:784.771354pt;}
.y3e{bottom:786.691352pt;}
.y123{bottom:789.091330pt;}
.ya{bottom:791.011328pt;}
.ye8{bottom:798.851315pt;}
.yb1{bottom:803.811304pt;}
.y3a{bottom:804.291304pt;}
.y122{bottom:808.611280pt;}
.y9{bottom:810.691292pt;}
.y3d{bottom:810.851285pt;}
.y39{bottom:817.411266pt;}
.ye7{bottom:818.371266pt;}
.yb0{bottom:823.331255pt;}
.y3c{bottom:823.971248pt;}
.y121{bottom:828.291244pt;}
.y8{bottom:830.371236pt;}
.y38{bottom:830.531229pt;}
.y3b{bottom:837.091210pt;}
.y10d{bottom:838.051209pt;}
.ye6{bottom:838.691222pt;}
.yaf{bottom:843.011198pt;}
.y37{bottom:843.651211pt;}
.y120{bottom:847.971188pt;}
.y7{bottom:849.891186pt;}
.y36{bottom:856.771174pt;}
.yc1{bottom:863.171162pt;}
.y11f{bottom:867.491138pt;}
.y6{bottom:869.571130pt;}
.y35{bottom:871.171142pt;}
.yae{bottom:873.891126pt;}
.y115{bottom:876.931117pt;}
.yc0{bottom:882.851105pt;}
.y11e{bottom:887.171102pt;}
.y5{bottom:889.731093pt;}
.y34{bottom:891.651091pt;}
.y114{bottom:897.571060pt;}
.ybf{bottom:902.371056pt;}
.yad{bottom:904.131041pt;}
.y33{bottom:904.771054pt;}
.y11d{bottom:906.691052pt;}
.y32{bottom:907.971038pt;}
.y113{bottom:913.891026pt;}
.ybe{bottom:922.050999pt;}
.yac{bottom:923.811004pt;}
.y11c{bottom:926.370996pt;}
.y112{bottom:934.690982pt;}
.ybd{bottom:941.730963pt;}
.yab{bottom:943.490948pt;}
.y11b{bottom:946.050939pt;}
.y111{bottom:958.530918pt;}
.ybc{bottom:961.250904pt;}
.yaa{bottom:962.370906pt;}
.y11a{bottom:965.570899pt;}
.ybb{bottom:980.930857pt;}
.ya9{bottom:982.050860pt;}
.y119{bottom:985.250844pt;}
.y110{bottom:985.890846pt;}
.yba{bottom:1000.445476pt;}
.ya8{bottom:1001.565469pt;}
.y118{bottom:1004.765463pt;}
.y10f{bottom:1005.405466pt;}
.yb9{bottom:1020.157423pt;}
.ya7{bottom:1021.917419pt;}
.y117{bottom:1024.477419pt;}
.y10e{bottom:1025.117412pt;}
.y86{bottom:1084.317267pt;}
.y2{bottom:1096.957234pt;}
.ha{height:32.159920pt;}
.h8{height:38.022405pt;}
.h9{height:38.135905pt;}
.hc{height:43.354892pt;}
.h11{height:47.102382pt;}
.hd{height:47.124882pt;}
.h12{height:47.215882pt;}
.h4{height:47.999880pt;}
.he{height:48.095880pt;}
.hf{height:52.209869pt;}
.h3{height:52.834555pt;}
.h13{height:53.937365pt;}
.h5{height:56.749858pt;}
.h6{height:56.863358pt;}
.h15{height:57.434936pt;}
.hb{height:61.915064pt;}
.h10{height:72.479792pt;}
.h7{height:77.702316pt;}
.h14{height:79.742354pt;}
.h2{height:1122.557154pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1{width:793.758013pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:20.159938pt;}
.x14{left:21.919935pt;}
.x11{left:23.679929pt;}
.x15{left:26.079921pt;}
.x13{left:27.199920pt;}
.x18{left:28.319917pt;}
.x10{left:33.279903pt;}
.x16{left:39.519888pt;}
.x1{left:41.599885pt;}
.x12{left:43.199883pt;}
.x19{left:48.959867pt;}
.x6{left:52.639856pt;}
.x1a{left:57.599845pt;}
.x5b{left:58.879841pt;}
.x54{left:59.999838pt;}
.x4d{left:62.559829pt;}
.x57{left:64.639826pt;}
.x4b{left:72.959807pt;}
.x60{left:89.791766pt;}
.xd{left:92.991760pt;}
.xa{left:96.831747pt;}
.xb{left:102.911728pt;}
.x5f{left:104.351727pt;}
.x55{left:108.351717pt;}
.xc{left:112.991710pt;}
.xf{left:115.391698pt;}
.x4{left:119.871687pt;}
.x8{left:120.991690pt;}
.xe{left:123.711675pt;}
.x3{left:126.591672pt;}
.x9{left:127.711665pt;}
.x7{left:134.586321pt;}
.x62{left:137.786305pt;}
.x5{left:160.346256pt;}
.x59{left:163.386248pt;}
.x61{left:185.786185pt;}
.x5d{left:189.146183pt;}
.x5e{left:191.546181pt;}
.x56{left:233.946079pt;}
.x5a{left:265.025997pt;}
.x51{left:266.625989pt;}
.x4c{left:273.025977pt;}
.x42{left:326.145841pt;}
.x2e{left:327.745833pt;}
.x38{left:329.185830pt;}
.x3b{left:331.105830pt;}
.x22{left:332.545829pt;}
.x45{left:334.305814pt;}
.x1f{left:335.425825pt;}
.x1b{left:336.545819pt;}
.x21{left:337.825803pt;}
.x34{left:338.945817pt;}
.x48{left:340.385794pt;}
.x1d{left:341.825793pt;}
.x33{left:343.585798pt;}
.x47{left:348.385796pt;}
.x29{left:349.985766pt;}
.x28{left:352.705772pt;}
.x3c{left:355.105750pt;}
.x37{left:357.345775pt;}
.x2c{left:370.145709pt;}
.x49{left:373.985706pt;}
.x39{left:375.905706pt;}
.x20{left:377.665711pt;}
.x2d{left:389.825673pt;}
.x53{left:398.465667pt;}
.x50{left:405.665641pt;}
.x2f{left:410.945615pt;}
.x2{left:418.972289pt;}
.x4e{left:429.692232pt;}
.x52{left:466.172163pt;}
.x4f{left:500.572061pt;}
.x27{left:512.412038pt;}
.x1c{left:513.532030pt;}
.x1e{left:548.411948pt;}
.x23{left:557.851947pt;}
.x2a{left:572.731874pt;}
.x35{left:573.851907pt;}
.x3d{left:574.811864pt;}
.x2b{left:576.571871pt;}
.x31{left:578.971889pt;}
.x36{left:580.091880pt;}
.x25{left:582.371864pt;}
.x3f{left:584.611848pt;}
.x43{left:585.571848pt;}
.x32{left:589.411845pt;}
.x46{left:593.251841pt;}
.x30{left:595.811812pt;}
.x3e{left:597.731811pt;}
.x44{left:603.171820pt;}
.x41{left:611.971806pt;}
.x24{left:616.771762pt;}
.x40{left:628.771732pt;}
.x26{left:649.411695pt;}
.x3a{left:656.771662pt;}
.x4a{left:671.491636pt;}
.x58{left:690.051567pt;}
.x5c{left:691.491586pt;}
}




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