
    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_3ff0f72285efb4247d37bb9a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.178000;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_f19adfbae22e4ef54e550ac3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_e0300d629613dc5c39c30119.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666000;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_af8cc17c054eb35ef33244a0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.995117;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_2a260fd55025d8f74dee55b6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919922;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_1864dac26cd175ad0f21e317.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.094000;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_ce11d44f09ccdaf03f6f60e9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.166000;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.373800px;}
.ls0{letter-spacing:1.284900px;}
.ls5{letter-spacing:1.443600px;}
.ls1{letter-spacing:7.914780px;}
.ls6{letter-spacing:14.941200px;}
.ls4{letter-spacing:98.710860px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-16.380000px;}
.ws2{word-spacing:-15.005383px;}
.ws4{word-spacing:-14.820000px;}
.ws0{word-spacing:-13.260000px;}
.ws1{word-spacing:0.000000px;}
._22{margin-left:-16.710000px;}
._e{margin-left:-12.831000px;}
._18{margin-left:-7.291811px;}
._a{margin-left:-5.532000px;}
._11{margin-left:-3.198595px;}
._6{margin-left:-1.554000px;}
._8{width:1.332000px;}
._2{width:2.775000px;}
._1{width:4.218000px;}
._3{width:5.328000px;}
._0{width:7.326000px;}
._9{width:8.466000px;}
._b{width:9.504000px;}
._d{width:10.848000px;}
._14{width:11.907000px;}
._13{width:13.536000px;}
._f{width:14.589000px;}
._1e{width:16.311000px;}
._7{width:18.093000px;}
._16{width:19.761000px;}
._1c{width:21.022860px;}
._21{width:22.038000px;}
._1f{width:25.103640px;}
._20{width:36.835500px;}
._4{width:38.628000px;}
._5{width:39.960000px;}
._10{width:41.962500px;}
._1d{width:43.828500px;}
._23{width:46.906860px;}
._12{width:48.238860px;}
._1a{width:66.130500px;}
._1b{width:67.462500px;}
._19{width:68.794500px;}
._15{width:98.710860px;}
._17{width:100.270860px;}
._c{width:101.830860px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:51.000000px;}
.fs3{font-size:53.399940px;}
.fs1{font-size:57.000000px;}
.fs4{font-size:63.000000px;}
.fs0{font-size:111.000000px;}
.y0{bottom:0.000000px;}
.y15{bottom:19.181805px;}
.y19{bottom:47.954520px;}
.ya2{bottom:48.093105px;}
.y14f{bottom:60.497220px;}
.y18{bottom:64.304535px;}
.ya1{bottom:65.943105px;}
.y3a{bottom:67.701165px;}
.y14e{bottom:78.347220px;}
.y17{bottom:80.654520px;}
.ya0{bottom:83.793120px;}
.y39{bottom:87.447810px;}
.y16{bottom:97.004535px;}
.ydc{bottom:97.096140px;}
.y9f{bottom:101.643105px;}
.y38{bottom:107.194455px;}
.y14d{bottom:112.547220px;}
.y58{bottom:113.354535px;}
.ydb{bottom:114.946125px;}
.y1b9{bottom:116.680830px;}
.y9e{bottom:119.493090px;}
.y80{bottom:119.887050px;}
.ye4{bottom:121.396110px;}
.y157{bottom:129.646140px;}
.y57{bottom:129.704520px;}
.y14c{bottom:130.397235px;}
.yda{bottom:132.796140px;}
.y167{bottom:133.387050px;}
.y1b8{bottom:134.530815px;}
.y37{bottom:136.532025px;}
.y7f{bottom:139.237035px;}
.yc9{bottom:139.977945px;}
.ye3{bottom:140.746095px;}
.y56{bottom:146.054535px;}
.y185{bottom:147.477945px;}
.y14b{bottom:148.247220px;}
.y156{bottom:148.996125px;}
.yd9{bottom:150.646140px;}
.y188{bottom:151.996125px;}
.y1b7{bottom:152.380830px;}
.y166{bottom:152.737035px;}
.y9d{bottom:155.193105px;}
.y36{bottom:156.278670px;}
.y15d{bottom:156.496125px;}
.y7e{bottom:158.587050px;}
.y129{bottom:158.755230px;}
.yc8{bottom:159.327945px;}
.y55{bottom:162.404520px;}
.y14a{bottom:166.097220px;}
.y184{bottom:166.827945px;}
.y155{bottom:168.346140px;}
.yd8{bottom:168.496125px;}
.y187{bottom:169.846140px;}
.y1b6{bottom:170.230815px;}
.y165{bottom:172.087050px;}
.y15c{bottom:174.346140px;}
.y9c{bottom:174.543120px;}
.y170{bottom:175.846140px;}
.y35{bottom:176.025300px;}
.y7d{bottom:177.937035px;}
.y128{bottom:178.105230px;}
.y54{bottom:178.754535px;}
.ybc{bottom:178.846140px;}
.ye2{bottom:179.446110px;}
.y149{bottom:183.947220px;}
.yd7{bottom:186.346140px;}
.y154{bottom:187.696125px;}
.y1b5{bottom:188.080815px;}
.y15b{bottom:192.196125px;}
.y9b{bottom:193.893105px;}
.y53{bottom:195.104535px;}
.y16f{bottom:195.196125px;}
.y34{bottom:195.771945px;}
.yc7{bottom:196.527945px;}
.y117{bottom:197.099010px;}
.y7c{bottom:197.287035px;}
.ye1{bottom:197.296095px;}
.y127{bottom:197.455245px;}
.ybb{bottom:198.196125px;}
.y148{bottom:201.797220px;}
.y183{bottom:202.527945px;}
.yd6{bottom:204.196125px;}
.y1b4{bottom:205.930830px;}
.y153{bottom:207.046140px;}
.y15a{bottom:210.046140px;}
.y164{bottom:210.787035px;}
.y52{bottom:211.454520px;}
.y9a{bottom:213.243090px;}
.yc6{bottom:214.377930px;}
.y16e{bottom:214.546140px;}
.ye0{bottom:215.146110px;}
.y33{bottom:215.518590px;}
.y116{bottom:216.448995px;}
.y126{bottom:216.805230px;}
.yba{bottom:217.546140px;}
.y147{bottom:219.647235px;}
.y182{bottom:221.877930px;}
.yd5{bottom:222.046140px;}
.y1b3{bottom:223.780815px;}
.y7b{bottom:226.227945px;}
.y152{bottom:226.396140px;}
.y51{bottom:227.804535px;}
.y159{bottom:227.896140px;}
.y163{bottom:228.637050px;}
.y14{bottom:231.423180px;}
.yc5{bottom:232.227945px;}
.y99{bottom:232.593105px;}
.ydf{bottom:232.996095px;}
.y16d{bottom:233.896140px;}
.y32{bottom:235.265235px;}
.y115{bottom:235.799010px;}
.y125{bottom:236.155215px;}
.yb9{bottom:236.896140px;}
.y146{bottom:237.497220px;}
.yd4{bottom:239.896140px;}
.y1b2{bottom:241.630830px;}
.y7a{bottom:245.577945px;}
.y70{bottom:245.746125px;}
.y162{bottom:246.487035px;}
.y13{bottom:247.773165px;}
.yc4{bottom:250.077945px;}
.yde{bottom:250.846110px;}
.y98{bottom:251.943105px;}
.y31{bottom:255.011880px;}
.y114{bottom:255.148995px;}
.y151{bottom:255.337050px;}
.y145{bottom:255.347220px;}
.y124{bottom:255.505230px;}
.yb8{bottom:256.246125px;}
.y1b1{bottom:259.480815px;}
.y161{bottom:264.337050px;}
.y79{bottom:264.927960px;}
.y6f{bottom:265.096140px;}
.y19d{bottom:265.499010px;}
.yc3{bottom:267.927960px;}
.ydd{bottom:268.696110px;}
.y16c{bottom:272.596140px;}
.y144{bottom:273.197220px;}
.y113{bottom:274.499010px;}
.y150{bottom:274.687035px;}
.y30{bottom:274.758525px;}
.y123{bottom:274.855230px;}
.yb7{bottom:275.596140px;}
.y181{bottom:276.927960px;}
.y1b0{bottom:277.330815px;}
.y97{bottom:277.687035px;}
.y12{bottom:280.473180px;}
.y50{bottom:282.187035px;}
.y19c{bottom:283.349010px;}
.y78{bottom:284.277945px;}
.y158{bottom:284.446125px;}
.y16b{bottom:290.446125px;}
.y143{bottom:291.047220px;}
.y112{bottom:293.849010px;}
.y6e{bottom:294.037035px;}
.y122{bottom:294.205245px;}
.y2f{bottom:294.505170px;}
.yb6{bottom:294.946125px;}
.y1af{bottom:295.180830px;}
.y180{bottom:296.277945px;}
.y11{bottom:296.823165px;}
.y96{bottom:297.037035px;}
.y160{bottom:300.037035px;}
.y19b{bottom:301.198995px;}
.y4f{bottom:301.537035px;}
.y77{bottom:303.627930px;}
.y186{bottom:303.796140px;}
.y16a{bottom:308.296140px;}
.y142{bottom:308.897235px;}
.y1ae{bottom:313.030815px;}
.y10{bottom:313.173180px;}
.y6d{bottom:313.387050px;}
.y121{bottom:313.555230px;}
.y2e{bottom:314.251815px;}
.yd3{bottom:314.296140px;}
.y17f{bottom:315.627930px;}
.y95{bottom:316.387050px;}
.y15f{bottom:317.887050px;}
.y19a{bottom:319.049010px;}
.y4e{bottom:320.887050px;}
.y76{bottom:322.977945px;}
.yb5{bottom:323.887050px;}
.y169{bottom:326.146140px;}
.y141{bottom:326.747220px;}
.yf{bottom:329.523165px;}
.y1ad{bottom:330.880830px;}
.y6c{bottom:332.737035px;}
.y120{bottom:332.905215px;}
.yd2{bottom:333.646140px;}
.y17e{bottom:334.977945px;}
.y94{bottom:335.737035px;}
.yfc{bottom:336.911610px;}
.y4d{bottom:340.237035px;}
.y111{bottom:342.139920px;}
.y75{bottom:342.327945px;}
.yb4{bottom:343.237035px;}
.y168{bottom:343.996125px;}
.y140{bottom:344.597220px;}
.ye{bottom:345.873165px;}
.y1ac{bottom:348.730815px;}
.y6b{bottom:352.087050px;}
.yd1{bottom:352.996125px;}
.yfb{bottom:353.261610px;}
.y15e{bottom:353.587050px;}
.y2d{bottom:353.745090px;}
.y17d{bottom:354.327945px;}
.y199{bottom:356.249010px;}
.y4c{bottom:359.587050px;}
.y110{bottom:359.989905px;}
.y93{bottom:361.480980px;}
.y74{bottom:361.677960px;}
.y11f{bottom:361.846140px;}
.y13f{bottom:362.447220px;}
.yb3{bottom:362.587050px;}
.y1ab{bottom:366.580815px;}
.y6a{bottom:371.437035px;}
.y198{bottom:375.599010px;}
.y10f{bottom:377.839920px;}
.yd{bottom:378.573165px;}
.y13e{bottom:380.297220px;}
.y92{bottom:380.830965px;}
.y73{bottom:381.027945px;}
.y11e{bottom:381.196125px;}
.yb2{bottom:381.937035px;}
.y17c{bottom:383.268855px;}
.y1aa{bottom:384.430830px;}
.yfa{bottom:385.961610px;}
.y4b{bottom:388.527945px;}
.y69{bottom:390.787035px;}
.y197{bottom:394.948995px;}
.y10e{bottom:395.689905px;}
.y13d{bottom:398.147235px;}
.y91{bottom:400.180980px;}
.y72{bottom:400.377930px;}
.y11d{bottom:400.546140px;}
.yb1{bottom:401.287035px;}
.yf9{bottom:402.311595px;}
.y17b{bottom:402.618855px;}
.y4a{bottom:407.877930px;}
.y68{bottom:410.137050px;}
.y2c{bottom:412.985025px;}
.y10d{bottom:413.539905px;}
.y196{bottom:414.299010px;}
.y13c{bottom:415.997220px;}
.yf8{bottom:418.661610px;}
.y90{bottom:419.530980px;}
.y71{bottom:419.727945px;}
.yb0{bottom:420.637050px;}
.y1a9{bottom:421.630830px;}
.y17a{bottom:421.968870px;}
.y49{bottom:427.227945px;}
.yc{bottom:427.623165px;}
.y11c{bottom:429.487035px;}
.y10c{bottom:431.389920px;}
.y2b{bottom:432.731670px;}
.y195{bottom:433.648995px;}
.y13b{bottom:433.847220px;}
.yf7{bottom:435.011610px;}
.y8f{bottom:438.880995px;}
.y67{bottom:439.077945px;}
.yaf{bottom:439.987035px;}
.y1a8{bottom:440.980815px;}
.y179{bottom:441.318855px;}
.y1c6{bottom:442.480815px;}
.yb{bottom:443.973180px;}
.y48{bottom:446.577945px;}
.y11b{bottom:448.837050px;}
.y10b{bottom:449.239905px;}
.yd0{bottom:449.577945px;}
.yf6{bottom:451.361595px;}
.y13a{bottom:451.697220px;}
.y2a{bottom:452.478315px;}
.y194{bottom:452.999010px;}
.y8e{bottom:458.230980px;}
.y66{bottom:458.427960px;}
.yae{bottom:459.337050px;}
.ya{bottom:460.323165px;}
.y1a7{bottom:460.330815px;}
.y178{bottom:460.668840px;}
.y47{bottom:465.927960px;}
.yf5{bottom:467.711610px;}
.y11a{bottom:468.187035px;}
.ycf{bottom:468.927960px;}
.y139{bottom:469.547220px;}
.y29{bottom:472.224960px;}
.y193{bottom:472.349010px;}
.y9{bottom:476.673180px;}
.y8d{bottom:477.580965px;}
.y65{bottom:477.777945px;}
.y1c5{bottom:478.180830px;}
.y1a6{bottom:479.680830px;}
.y177{bottom:480.018855px;}
.yf4{bottom:484.061595px;}
.y46{bottom:485.277945px;}
.y10a{bottom:486.439905px;}
.y138{bottom:487.397235px;}
.y119{bottom:487.537035px;}
.yad{bottom:488.277945px;}
.y192{bottom:491.698995px;}
.y28{bottom:491.971590px;}
.y8{bottom:493.023165px;}
.y1c4{bottom:496.030815px;}
.y64{bottom:497.127930px;}
.y176{bottom:499.368855px;}
.yf3{bottom:500.411610px;}
.y8c{bottom:503.324910px;}
.y137{bottom:505.247220px;}
.y109{bottom:505.789905px;}
.y118{bottom:506.887050px;}
.yac{bottom:507.627930px;}
.y191{bottom:511.049010px;}
.y27{bottom:511.718235px;}
.y1c3{bottom:513.880830px;}
.y63{bottom:516.477945px;}
.yf2{bottom:516.761610px;}
.y1a5{bottom:518.380830px;}
.y175{bottom:518.718870px;}
.y8b{bottom:522.674925px;}
.y136{bottom:523.097220px;}
.y45{bottom:523.977945px;}
.y108{bottom:525.139920px;}
.y7{bottom:525.723180px;}
.yc0{bottom:526.068855px;}
.yab{bottom:526.977945px;}
.y190{bottom:530.398995px;}
.y26{bottom:531.464880px;}
.y1c2{bottom:531.730815px;}
.yf1{bottom:533.111595px;}
.y62{bottom:535.827945px;}
.y1a4{bottom:536.230815px;}
.y174{bottom:538.068855px;}
.y135{bottom:540.947220px;}
.y44{bottom:541.827945px;}
.y8a{bottom:542.024925px;}
.y107{bottom:544.489905px;}
.ybf{bottom:545.418840px;}
.yaa{bottom:546.327945px;}
.yf0{bottom:549.461610px;}
.y1c1{bottom:549.580815px;}
.y1a3{bottom:554.080815px;}
.y61{bottom:555.177960px;}
.yce{bottom:555.918840px;}
.y173{bottom:557.418840px;}
.y134{bottom:558.797220px;}
.y18f{bottom:559.339920px;}
.y43{bottom:559.677960px;}
.y25{bottom:560.802435px;}
.y89{bottom:561.374910px;}
.y106{bottom:563.839920px;}
.ybe{bottom:564.768855px;}
.yef{bottom:565.811595px;}
.y6{bottom:570.845880px;}
.y1a2{bottom:571.930830px;}
.y60{bottom:574.527945px;}
.ya9{bottom:575.268855px;}
.y133{bottom:576.647235px;}
.y172{bottom:576.768855px;}
.y42{bottom:577.527945px;}
.y18e{bottom:578.689905px;}
.y24{bottom:580.549065px;}
.y88{bottom:580.724925px;}
.yee{bottom:582.161610px;}
.y105{bottom:583.189905px;}
.ybd{bottom:584.118855px;}
.y1c0{bottom:586.780815px;}
.y5{bottom:587.195895px;}
.yc2{bottom:593.877930px;}
.y132{bottom:594.497220px;}
.ya8{bottom:594.618855px;}
.y41{bottom:595.377930px;}
.y171{bottom:596.118855px;}
.y18d{bottom:598.039905px;}
.yed{bottom:598.511610px;}
.y23{bottom:600.295710px;}
.y104{bottom:602.539905px;}
.y5f{bottom:603.468870px;}
.y1bf{bottom:606.130830px;}
.y87{bottom:606.468870px;}
.y1a1{bottom:609.130830px;}
.y131{bottom:612.347220px;}
.yc1{bottom:613.227945px;}
.ya7{bottom:613.968870px;}
.yec{bottom:614.861595px;}
.y18c{bottom:617.389920px;}
.y22{bottom:620.042355px;}
.y103{bottom:621.889920px;}
.y5e{bottom:622.818855px;}
.y1be{bottom:625.480815px;}
.y86{bottom:625.818855px;}
.y1a0{bottom:628.480815px;}
.y130{bottom:630.197220px;}
.yeb{bottom:631.211610px;}
.ycd{bottom:631.818855px;}
.y40{bottom:632.577945px;}
.y18b{bottom:636.739905px;}
.y21{bottom:639.789000px;}
.y4{bottom:641.909520px;}
.y5d{bottom:642.168840px;}
.y1bd{bottom:644.830815px;}
.y85{bottom:645.168840px;}
.yea{bottom:647.561595px;}
.y19f{bottom:647.830815px;}
.y12f{bottom:648.047220px;}
.ycc{bottom:649.668840px;}
.ya6{bottom:651.168840px;}
.y3f{bottom:651.927960px;}
.y20{bottom:659.535645px;}
.y3{bottom:659.759520px;}
.y5c{bottom:661.518855px;}
.ye9{bottom:663.911610px;}
.y1bc{bottom:664.180830px;}
.y84{bottom:664.518855px;}
.y18a{bottom:665.680830px;}
.y12e{bottom:665.897235px;}
.y19e{bottom:667.180830px;}
.ycb{bottom:667.518855px;}
.ya5{bottom:669.018855px;}
.y102{bottom:670.180830px;}
.y3e{bottom:671.277945px;}
.y1f{bottom:679.282290px;}
.ye8{bottom:680.261610px;}
.y5b{bottom:680.868855px;}
.y1bb{bottom:683.530815px;}
.y12d{bottom:683.747220px;}
.y83{bottom:683.868855px;}
.y189{bottom:685.030815px;}
.yca{bottom:685.368855px;}
.ya4{bottom:686.868855px;}
.y101{bottom:688.030815px;}
.y3d{bottom:690.627930px;}
.ye7{bottom:696.611595px;}
.y1e{bottom:699.028935px;}
.y5a{bottom:700.218870px;}
.y12c{bottom:701.597220px;}
.y1ba{bottom:702.880830px;}
.y82{bottom:703.218870px;}
.ya3{bottom:704.718870px;}
.y100{bottom:705.880830px;}
.y3c{bottom:709.977945px;}
.y2{bottom:715.973145px;}
.y1d{bottom:718.775580px;}
.y59{bottom:719.568855px;}
.y81{bottom:722.568855px;}
.yff{bottom:723.730815px;}
.y12b{bottom:729.038130px;}
.ye6{bottom:729.311595px;}
.y3b{bottom:738.918840px;}
.yfe{bottom:741.580815px;}
.ye5{bottom:745.661610px;}
.y12a{bottom:746.888130px;}
.y1{bottom:748.973145px;}
.y1c{bottom:758.268855px;}
.yfd{bottom:759.430830px;}
.y1a{bottom:798.075990px;}
.y1b{bottom:798.176535px;}
.h6{height:37.901367px;}
.h8{height:39.684916px;}
.h5{height:46.206000px;}
.h7{height:46.885147px;}
.ha{height:50.844000px;}
.h4{height:51.642000px;}
.hb{height:56.196000px;}
.h9{height:57.078000px;}
.h3{height:100.566000px;}
.h1{height:828.000000px;}
.h2{height:828.014925px;}
.h0{height:828.015000px;}
.w2{width:-0.000555px;}
.w3{width:0.000000px;}
.w0{width:556.272000px;}
.w1{width:556.500000px;}
.x9{left:-537.090750px;}
.x8{left:-336.983160px;}
.x0{left:0.000000px;}
.x1{left:19.181805px;}
.xd{left:48.704520px;}
.x4{left:57.545445px;}
.xa{left:76.727250px;}
.xc{left:144.830550px;}
.x3{left:186.950130px;}
.xf{left:196.244175px;}
.x5{left:219.289395px;}
.xe{left:239.297700px;}
.xb{left:243.243810px;}
.x2{left:246.012360px;}
.x7{left:514.923390px;}
.x6{left:556.272555px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.332266pt;}
.ls0{letter-spacing:1.142133pt;}
.ls5{letter-spacing:1.283200pt;}
.ls1{letter-spacing:7.035360pt;}
.ls6{letter-spacing:13.281067pt;}
.ls4{letter-spacing:87.742987pt;}
.ws3{word-spacing:-14.560000pt;}
.ws2{word-spacing:-13.338118pt;}
.ws4{word-spacing:-13.173333pt;}
.ws0{word-spacing:-11.786667pt;}
.ws1{word-spacing:0.000000pt;}
._22{margin-left:-14.853333pt;}
._e{margin-left:-11.405333pt;}
._18{margin-left:-6.481609pt;}
._a{margin-left:-4.917333pt;}
._11{margin-left:-2.843195pt;}
._6{margin-left:-1.381333pt;}
._8{width:1.184000pt;}
._2{width:2.466667pt;}
._1{width:3.749333pt;}
._3{width:4.736000pt;}
._0{width:6.512000pt;}
._9{width:7.525333pt;}
._b{width:8.448000pt;}
._d{width:9.642667pt;}
._14{width:10.584000pt;}
._13{width:12.032000pt;}
._f{width:12.968000pt;}
._1e{width:14.498667pt;}
._7{width:16.082667pt;}
._16{width:17.565333pt;}
._1c{width:18.686987pt;}
._21{width:19.589333pt;}
._1f{width:22.314347pt;}
._20{width:32.742667pt;}
._4{width:34.336000pt;}
._5{width:35.520000pt;}
._10{width:37.300000pt;}
._1d{width:38.958667pt;}
._23{width:41.694987pt;}
._12{width:42.878987pt;}
._1a{width:58.782667pt;}
._1b{width:59.966667pt;}
._19{width:61.150667pt;}
._15{width:87.742987pt;}
._17{width:89.129653pt;}
._c{width:90.516320pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:47.466613pt;}
.fs1{font-size:50.666667pt;}
.fs4{font-size:56.000000pt;}
.fs0{font-size:98.666667pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:17.050493pt;}
.y19{bottom:42.626240pt;}
.ya2{bottom:42.749427pt;}
.y14f{bottom:53.775307pt;}
.y18{bottom:57.159587pt;}
.ya1{bottom:58.616093pt;}
.y3a{bottom:60.178813pt;}
.y14e{bottom:69.641973pt;}
.y17{bottom:71.692907pt;}
.ya0{bottom:74.482773pt;}
.y39{bottom:77.731387pt;}
.y16{bottom:86.226253pt;}
.ydc{bottom:86.307680pt;}
.y9f{bottom:90.349427pt;}
.y38{bottom:95.283960pt;}
.y14d{bottom:100.041973pt;}
.y58{bottom:100.759587pt;}
.ydb{bottom:102.174333pt;}
.y1b9{bottom:103.716293pt;}
.y9e{bottom:106.216080pt;}
.y80{bottom:106.566267pt;}
.ye4{bottom:107.907653pt;}
.y157{bottom:115.241013pt;}
.y57{bottom:115.292907pt;}
.y14c{bottom:115.908653pt;}
.yda{bottom:118.041013pt;}
.y167{bottom:118.566267pt;}
.y1b8{bottom:119.582947pt;}
.y37{bottom:121.361800pt;}
.y7f{bottom:123.766253pt;}
.yc9{bottom:124.424840pt;}
.ye3{bottom:125.107640pt;}
.y56{bottom:129.826253pt;}
.y185{bottom:131.091507pt;}
.y14b{bottom:131.775307pt;}
.y156{bottom:132.441000pt;}
.yd9{bottom:133.907680pt;}
.y188{bottom:135.107667pt;}
.y1b7{bottom:135.449627pt;}
.y166{bottom:135.766253pt;}
.y9d{bottom:137.949427pt;}
.y36{bottom:138.914373pt;}
.y15d{bottom:139.107667pt;}
.y7e{bottom:140.966267pt;}
.y129{bottom:141.115760pt;}
.yc8{bottom:141.624840pt;}
.y55{bottom:144.359573pt;}
.y14a{bottom:147.641973pt;}
.y184{bottom:148.291507pt;}
.y155{bottom:149.641013pt;}
.yd8{bottom:149.774333pt;}
.y187{bottom:150.974347pt;}
.y1b6{bottom:151.316280pt;}
.y165{bottom:152.966267pt;}
.y15c{bottom:154.974347pt;}
.y9c{bottom:155.149440pt;}
.y170{bottom:156.307680pt;}
.y35{bottom:156.466933pt;}
.y7d{bottom:158.166253pt;}
.y128{bottom:158.315760pt;}
.y54{bottom:158.892920pt;}
.ybc{bottom:158.974347pt;}
.ye2{bottom:159.507653pt;}
.y149{bottom:163.508640pt;}
.yd7{bottom:165.641013pt;}
.y154{bottom:166.841000pt;}
.y1b5{bottom:167.182947pt;}
.y15b{bottom:170.841000pt;}
.y9b{bottom:172.349427pt;}
.y53{bottom:173.426253pt;}
.y16f{bottom:173.507667pt;}
.y34{bottom:174.019507pt;}
.yc7{bottom:174.691507pt;}
.y117{bottom:175.199120pt;}
.y7c{bottom:175.366253pt;}
.ye1{bottom:175.374307pt;}
.y127{bottom:175.515773pt;}
.ybb{bottom:176.174333pt;}
.y148{bottom:179.375307pt;}
.y183{bottom:180.024840pt;}
.yd6{bottom:181.507667pt;}
.y1b4{bottom:183.049627pt;}
.y153{bottom:184.041013pt;}
.y15a{bottom:186.707680pt;}
.y164{bottom:187.366253pt;}
.y52{bottom:187.959573pt;}
.y9a{bottom:189.549413pt;}
.yc6{bottom:190.558160pt;}
.y16e{bottom:190.707680pt;}
.ye0{bottom:191.240987pt;}
.y33{bottom:191.572080pt;}
.y116{bottom:192.399107pt;}
.y126{bottom:192.715760pt;}
.yba{bottom:193.374347pt;}
.y147{bottom:195.241987pt;}
.y182{bottom:197.224827pt;}
.yd5{bottom:197.374347pt;}
.y1b3{bottom:198.916280pt;}
.y7b{bottom:201.091507pt;}
.y152{bottom:201.241013pt;}
.y51{bottom:202.492920pt;}
.y159{bottom:202.574347pt;}
.y163{bottom:203.232933pt;}
.y14{bottom:205.709493pt;}
.yc5{bottom:206.424840pt;}
.y99{bottom:206.749427pt;}
.ydf{bottom:207.107640pt;}
.y16d{bottom:207.907680pt;}
.y32{bottom:209.124653pt;}
.y115{bottom:209.599120pt;}
.y125{bottom:209.915747pt;}
.yb9{bottom:210.574347pt;}
.y146{bottom:211.108640pt;}
.yd4{bottom:213.241013pt;}
.y1b2{bottom:214.782960pt;}
.y7a{bottom:218.291507pt;}
.y70{bottom:218.441000pt;}
.y162{bottom:219.099587pt;}
.y13{bottom:220.242813pt;}
.yc4{bottom:222.291507pt;}
.yde{bottom:222.974320pt;}
.y98{bottom:223.949427pt;}
.y31{bottom:226.677227pt;}
.y114{bottom:226.799107pt;}
.y151{bottom:226.966267pt;}
.y145{bottom:226.975307pt;}
.y124{bottom:227.115760pt;}
.yb8{bottom:227.774333pt;}
.y1b1{bottom:230.649613pt;}
.y161{bottom:234.966267pt;}
.y79{bottom:235.491520pt;}
.y6f{bottom:235.641013pt;}
.y19d{bottom:235.999120pt;}
.yc3{bottom:238.158187pt;}
.ydd{bottom:238.840987pt;}
.y16c{bottom:242.307680pt;}
.y144{bottom:242.841973pt;}
.y113{bottom:243.999120pt;}
.y150{bottom:244.166253pt;}
.y30{bottom:244.229800pt;}
.y123{bottom:244.315760pt;}
.yb7{bottom:244.974347pt;}
.y181{bottom:246.158187pt;}
.y1b0{bottom:246.516280pt;}
.y97{bottom:246.832920pt;}
.y12{bottom:249.309493pt;}
.y50{bottom:250.832920pt;}
.y19c{bottom:251.865787pt;}
.y78{bottom:252.691507pt;}
.y158{bottom:252.841000pt;}
.y16b{bottom:258.174333pt;}
.y143{bottom:258.708640pt;}
.y112{bottom:261.199120pt;}
.y6e{bottom:261.366253pt;}
.y122{bottom:261.515773pt;}
.y2f{bottom:261.782373pt;}
.yb6{bottom:262.174333pt;}
.y1af{bottom:262.382960pt;}
.y180{bottom:263.358173pt;}
.y11{bottom:263.842813pt;}
.y96{bottom:264.032920pt;}
.y160{bottom:266.699587pt;}
.y19b{bottom:267.732440pt;}
.y4f{bottom:268.032920pt;}
.y77{bottom:269.891493pt;}
.y186{bottom:270.041013pt;}
.y16a{bottom:274.041013pt;}
.y142{bottom:274.575320pt;}
.y1ae{bottom:278.249613pt;}
.y10{bottom:278.376160pt;}
.y6d{bottom:278.566267pt;}
.y121{bottom:278.715760pt;}
.y2e{bottom:279.334947pt;}
.yd3{bottom:279.374347pt;}
.y17f{bottom:280.558160pt;}
.y95{bottom:281.232933pt;}
.y15f{bottom:282.566267pt;}
.y19a{bottom:283.599120pt;}
.y4e{bottom:285.232933pt;}
.y76{bottom:287.091507pt;}
.yb5{bottom:287.899600pt;}
.y169{bottom:289.907680pt;}
.y141{bottom:290.441973pt;}
.yf{bottom:292.909480pt;}
.y1ad{bottom:294.116293pt;}
.y6c{bottom:295.766253pt;}
.y120{bottom:295.915747pt;}
.yd2{bottom:296.574347pt;}
.y17e{bottom:297.758173pt;}
.y94{bottom:298.432920pt;}
.yfc{bottom:299.476987pt;}
.y4d{bottom:302.432920pt;}
.y111{bottom:304.124373pt;}
.y75{bottom:304.291507pt;}
.yb4{bottom:305.099587pt;}
.y168{bottom:305.774333pt;}
.y140{bottom:306.308640pt;}
.ye{bottom:307.442813pt;}
.y1ac{bottom:309.982947pt;}
.y6b{bottom:312.966267pt;}
.yd1{bottom:313.774333pt;}
.yfb{bottom:314.010320pt;}
.y15e{bottom:314.299600pt;}
.y2d{bottom:314.440080pt;}
.y17d{bottom:314.958173pt;}
.y199{bottom:316.665787pt;}
.y4c{bottom:319.632933pt;}
.y110{bottom:319.991027pt;}
.y93{bottom:321.316427pt;}
.y74{bottom:321.491520pt;}
.y11f{bottom:321.641013pt;}
.y13f{bottom:322.175307pt;}
.yb3{bottom:322.299600pt;}
.y1ab{bottom:325.849613pt;}
.y6a{bottom:330.166253pt;}
.y198{bottom:333.865787pt;}
.y10f{bottom:335.857707pt;}
.yd{bottom:336.509480pt;}
.y13e{bottom:338.041973pt;}
.y92{bottom:338.516413pt;}
.y73{bottom:338.691507pt;}
.y11e{bottom:338.841000pt;}
.yb2{bottom:339.499587pt;}
.y17c{bottom:340.683427pt;}
.y1aa{bottom:341.716293pt;}
.yfa{bottom:343.076987pt;}
.y4b{bottom:345.358173pt;}
.y69{bottom:347.366253pt;}
.y197{bottom:351.065773pt;}
.y10e{bottom:351.724360pt;}
.y13d{bottom:353.908653pt;}
.y91{bottom:355.716427pt;}
.y72{bottom:355.891493pt;}
.y11d{bottom:356.041013pt;}
.yb1{bottom:356.699587pt;}
.yf9{bottom:357.610307pt;}
.y17b{bottom:357.883427pt;}
.y4a{bottom:362.558160pt;}
.y68{bottom:364.566267pt;}
.y2c{bottom:367.097800pt;}
.y10d{bottom:367.591027pt;}
.y196{bottom:368.265787pt;}
.y13c{bottom:369.775307pt;}
.yf8{bottom:372.143653pt;}
.y90{bottom:372.916427pt;}
.y71{bottom:373.091507pt;}
.yb0{bottom:373.899600pt;}
.y1a9{bottom:374.782960pt;}
.y17a{bottom:375.083440pt;}
.y49{bottom:379.758173pt;}
.yc{bottom:380.109480pt;}
.y11c{bottom:381.766253pt;}
.y10c{bottom:383.457707pt;}
.y2b{bottom:384.650373pt;}
.y195{bottom:385.465773pt;}
.y13b{bottom:385.641973pt;}
.yf7{bottom:386.676987pt;}
.y8f{bottom:390.116440pt;}
.y67{bottom:390.291507pt;}
.yaf{bottom:391.099587pt;}
.y1a8{bottom:391.982947pt;}
.y179{bottom:392.283427pt;}
.y1c6{bottom:393.316280pt;}
.yb{bottom:394.642827pt;}
.y48{bottom:396.958173pt;}
.y11b{bottom:398.966267pt;}
.y10b{bottom:399.324360pt;}
.yd0{bottom:399.624840pt;}
.yf6{bottom:401.210307pt;}
.y13a{bottom:401.508640pt;}
.y2a{bottom:402.202947pt;}
.y194{bottom:402.665787pt;}
.y8e{bottom:407.316427pt;}
.y66{bottom:407.491520pt;}
.yae{bottom:408.299600pt;}
.ya{bottom:409.176147pt;}
.y1a7{bottom:409.182947pt;}
.y178{bottom:409.483413pt;}
.y47{bottom:414.158187pt;}
.yf5{bottom:415.743653pt;}
.y11a{bottom:416.166253pt;}
.ycf{bottom:416.824853pt;}
.y139{bottom:417.375307pt;}
.y29{bottom:419.755520pt;}
.y193{bottom:419.865787pt;}
.y9{bottom:423.709493pt;}
.y8d{bottom:424.516413pt;}
.y65{bottom:424.691507pt;}
.y1c5{bottom:425.049627pt;}
.y1a6{bottom:426.382960pt;}
.y177{bottom:426.683427pt;}
.yf4{bottom:430.276973pt;}
.y46{bottom:431.358173pt;}
.y10a{bottom:432.391027pt;}
.y138{bottom:433.241987pt;}
.y119{bottom:433.366253pt;}
.yad{bottom:434.024840pt;}
.y192{bottom:437.065773pt;}
.y28{bottom:437.308080pt;}
.y8{bottom:438.242813pt;}
.y1c4{bottom:440.916280pt;}
.y64{bottom:441.891493pt;}
.y176{bottom:443.883427pt;}
.yf3{bottom:444.810320pt;}
.y8c{bottom:447.399920pt;}
.y137{bottom:449.108640pt;}
.y109{bottom:449.591027pt;}
.y118{bottom:450.566267pt;}
.yac{bottom:451.224827pt;}
.y191{bottom:454.265787pt;}
.y27{bottom:454.860653pt;}
.y1c3{bottom:456.782960pt;}
.y63{bottom:459.091507pt;}
.yf2{bottom:459.343653pt;}
.y1a5{bottom:460.782960pt;}
.y175{bottom:461.083440pt;}
.y8b{bottom:464.599933pt;}
.y136{bottom:464.975307pt;}
.y45{bottom:465.758173pt;}
.y108{bottom:466.791040pt;}
.y7{bottom:467.309493pt;}
.yc0{bottom:467.616760pt;}
.yab{bottom:468.424840pt;}
.y190{bottom:471.465773pt;}
.y26{bottom:472.413227pt;}
.y1c2{bottom:472.649613pt;}
.yf1{bottom:473.876973pt;}
.y62{bottom:476.291507pt;}
.y1a4{bottom:476.649613pt;}
.y174{bottom:478.283427pt;}
.y135{bottom:480.841973pt;}
.y44{bottom:481.624840pt;}
.y8a{bottom:481.799933pt;}
.y107{bottom:483.991027pt;}
.ybf{bottom:484.816747pt;}
.yaa{bottom:485.624840pt;}
.yf0{bottom:488.410320pt;}
.y1c1{bottom:488.516280pt;}
.y1a3{bottom:492.516280pt;}
.y61{bottom:493.491520pt;}
.yce{bottom:494.150080pt;}
.y173{bottom:495.483413pt;}
.y134{bottom:496.708640pt;}
.y18f{bottom:497.191040pt;}
.y43{bottom:497.491520pt;}
.y25{bottom:498.491053pt;}
.y89{bottom:498.999920pt;}
.y106{bottom:501.191040pt;}
.ybe{bottom:502.016760pt;}
.yef{bottom:502.943640pt;}
.y6{bottom:507.418560pt;}
.y1a2{bottom:508.382960pt;}
.y60{bottom:510.691507pt;}
.ya9{bottom:511.350093pt;}
.y133{bottom:512.575320pt;}
.y172{bottom:512.683427pt;}
.y42{bottom:513.358173pt;}
.y18e{bottom:514.391027pt;}
.y24{bottom:516.043613pt;}
.y88{bottom:516.199933pt;}
.yee{bottom:517.476987pt;}
.y105{bottom:518.391027pt;}
.ybd{bottom:519.216760pt;}
.y1c0{bottom:521.582947pt;}
.y5{bottom:521.951907pt;}
.yc2{bottom:527.891493pt;}
.y132{bottom:528.441973pt;}
.ya8{bottom:528.550093pt;}
.y41{bottom:529.224827pt;}
.y171{bottom:529.883427pt;}
.y18d{bottom:531.591027pt;}
.yed{bottom:532.010320pt;}
.y23{bottom:533.596187pt;}
.y104{bottom:535.591027pt;}
.y5f{bottom:536.416773pt;}
.y1bf{bottom:538.782960pt;}
.y87{bottom:539.083440pt;}
.y1a1{bottom:541.449627pt;}
.y131{bottom:544.308640pt;}
.yc1{bottom:545.091507pt;}
.ya7{bottom:545.750107pt;}
.yec{bottom:546.543640pt;}
.y18c{bottom:548.791040pt;}
.y22{bottom:551.148760pt;}
.y103{bottom:552.791040pt;}
.y5e{bottom:553.616760pt;}
.y1be{bottom:555.982947pt;}
.y86{bottom:556.283427pt;}
.y1a0{bottom:558.649613pt;}
.y130{bottom:560.175307pt;}
.yeb{bottom:561.076987pt;}
.ycd{bottom:561.616760pt;}
.y40{bottom:562.291507pt;}
.y18b{bottom:565.991027pt;}
.y21{bottom:568.701333pt;}
.y4{bottom:570.586240pt;}
.y5d{bottom:570.816747pt;}
.y1bd{bottom:573.182947pt;}
.y85{bottom:573.483413pt;}
.yea{bottom:575.610307pt;}
.y19f{bottom:575.849613pt;}
.y12f{bottom:576.041973pt;}
.ycc{bottom:577.483413pt;}
.ya6{bottom:578.816747pt;}
.y3f{bottom:579.491520pt;}
.y20{bottom:586.253907pt;}
.y3{bottom:586.452907pt;}
.y5c{bottom:588.016760pt;}
.ye9{bottom:590.143653pt;}
.y1bc{bottom:590.382960pt;}
.y84{bottom:590.683427pt;}
.y18a{bottom:591.716293pt;}
.y12e{bottom:591.908653pt;}
.y19e{bottom:593.049627pt;}
.ycb{bottom:593.350093pt;}
.ya5{bottom:594.683427pt;}
.y102{bottom:595.716293pt;}
.y3e{bottom:596.691507pt;}
.y1f{bottom:603.806480pt;}
.ye8{bottom:604.676987pt;}
.y5b{bottom:605.216760pt;}
.y1bb{bottom:607.582947pt;}
.y12d{bottom:607.775307pt;}
.y83{bottom:607.883427pt;}
.y189{bottom:608.916280pt;}
.yca{bottom:609.216760pt;}
.ya4{bottom:610.550093pt;}
.y101{bottom:611.582947pt;}
.y3d{bottom:613.891493pt;}
.ye7{bottom:619.210307pt;}
.y1e{bottom:621.359053pt;}
.y5a{bottom:622.416773pt;}
.y12c{bottom:623.641973pt;}
.y1ba{bottom:624.782960pt;}
.y82{bottom:625.083440pt;}
.ya3{bottom:626.416773pt;}
.y100{bottom:627.449627pt;}
.y3c{bottom:631.091507pt;}
.y2{bottom:636.420573pt;}
.y1d{bottom:638.911627pt;}
.y59{bottom:639.616760pt;}
.y81{bottom:642.283427pt;}
.yff{bottom:643.316280pt;}
.y12b{bottom:648.033893pt;}
.ye6{bottom:648.276973pt;}
.y3b{bottom:656.816747pt;}
.yfe{bottom:659.182947pt;}
.ye5{bottom:662.810320pt;}
.y12a{bottom:663.900560pt;}
.y1{bottom:665.753907pt;}
.y1c{bottom:674.016760pt;}
.yfd{bottom:675.049627pt;}
.y1a{bottom:709.400880pt;}
.y1b{bottom:709.490253pt;}
.h6{height:33.690104pt;}
.h8{height:35.275481pt;}
.h5{height:41.072000pt;}
.h7{height:41.675687pt;}
.ha{height:45.194667pt;}
.h4{height:45.904000pt;}
.hb{height:49.952000pt;}
.h9{height:50.736000pt;}
.h3{height:89.392000pt;}
.h1{height:736.000000pt;}
.h2{height:736.013267pt;}
.h0{height:736.013333pt;}
.w2{width:-0.000493pt;}
.w3{width:0.000000pt;}
.w0{width:494.464000pt;}
.w1{width:494.666667pt;}
.x9{left:-477.414000pt;}
.x8{left:-299.540587pt;}
.x0{left:0.000000pt;}
.x1{left:17.050493pt;}
.xd{left:43.292907pt;}
.x4{left:51.151507pt;}
.xa{left:68.202000pt;}
.xc{left:128.738267pt;}
.x3{left:166.177893pt;}
.xf{left:174.439267pt;}
.x5{left:194.923907pt;}
.xe{left:212.709067pt;}
.xb{left:216.216720pt;}
.x2{left:218.677653pt;}
.x7{left:457.709680pt;}
.x6{left:494.464493pt;}
}




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