
    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_8b3de0577a42073fa9bd5905.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_cc852099aa001967c8bd8774.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.592000;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_5ae4ac0976117f7ac1406f4d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_dab0bf0da4315722b18ce7a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.592000;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_abdffeacac9ea3c9a416ca19.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c86e74fb7672fd774cdbfaed.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_596cce676f77ce06401a4059.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b2e8e7be6838a8281db38d0b.woff2')format("woff");}.ff9{font-family:ff9;line-height:4.268000;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:ffa;src:url('chunks/assets/font_5424e1625e079b6605c5ff8d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.130859;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:ffb;src:url('chunks/assets/font_7b1dbc4d9d5de2d8a1f6e187.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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;}
.m3{transform:matrix(0.000000,-0.250025,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250025,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250025,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250300,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250300,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250300,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m4{transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-12.960000px;}
.v2{vertical-align:-4.320000px;}
.v1{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.440000px;}
.v3{vertical-align:2.880000px;}
.v7{vertical-align:14.400000px;}
.v6{vertical-align:18.720000px;}
.va{vertical-align:21.600000px;}
.v9{vertical-align:33.120600px;}
.v8{vertical-align:34.559400px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.189483px;}
.lsd{letter-spacing:0.336058px;}
.ls9{letter-spacing:0.552967px;}
.ls8{letter-spacing:0.660437px;}
.ls3{letter-spacing:0.674084px;}
.lsa{letter-spacing:1.623866px;}
.ls12{letter-spacing:1.805761px;}
.ls10{letter-spacing:2.268821px;}
.ls11{letter-spacing:3.246049px;}
.ls13{letter-spacing:5.223668px;}
.ls14{letter-spacing:5.383890px;}
.lsf{letter-spacing:10.974978px;}
.lse{letter-spacing:13.328065px;}
.ls7{letter-spacing:13.855554px;}
.ls6{letter-spacing:14.592364px;}
.lsb{letter-spacing:15.063318px;}
.ls4{letter-spacing:16.335511px;}
.ls16{letter-spacing:61.394902px;}
.lsc{letter-spacing:63.519117px;}
.ls2{letter-spacing:68.324714px;}
.ls0{letter-spacing:95.690787px;}
.ls15{letter-spacing:98.570763px;}
.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:-54.719400px;}
.ws0{word-spacing:-19.261229px;}
.wsc{word-spacing:-16.727040px;}
.ws9{word-spacing:-16.251840px;}
.ws6{word-spacing:-16.056750px;}
.ws4{word-spacing:-12.711600px;}
.wsf{word-spacing:-12.171433px;}
.ws7{word-spacing:-12.038268px;}
.ws3{word-spacing:-11.159420px;}
.ws13{word-spacing:-10.644480px;}
.wsd{word-spacing:-9.636750px;}
.ws1{word-spacing:0.000000px;}
.ws12{word-spacing:151.646707px;}
.ws11{word-spacing:151.647307px;}
.ws10{word-spacing:153.085125px;}
.wse{word-spacing:153.085724px;}
.ws8{word-spacing:177.696298px;}
.ws5{word-spacing:286.013851px;}
.wsa{word-spacing:1318.458871px;}
.wsb{word-spacing:1318.473559px;}
._1a{margin-left:-24.911106px;}
._18{margin-left:-9.215180px;}
._38{margin-left:-8.205037px;}
._12{margin-left:-6.995444px;}
._17{margin-left:-5.575670px;}
._15{margin-left:-4.486658px;}
._2{margin-left:-2.684124px;}
._0{margin-left:-1.589746px;}
._1{width:1.324788px;}
._9{width:2.721574px;}
._d{width:4.054568px;}
._b{width:5.247306px;}
._13{width:6.364981px;}
._e{width:7.529533px;}
._c{width:9.526609px;}
._7{width:11.096516px;}
._8{width:12.401069px;}
._4{width:13.737443px;}
._a{width:14.758797px;}
._3{width:15.874392px;}
._14{width:17.212393px;}
._6{width:18.240571px;}
._5{width:20.303780px;}
._f{width:21.617046px;}
._10{width:23.134774px;}
._11{width:24.681332px;}
._16{width:25.896691px;}
._1b{width:27.880908px;}
._1c{width:28.933820px;}
._42{width:31.050516px;}
._41{width:32.667482px;}
._2f{width:47.017481px;}
._2e{width:53.929481px;}
._32{width:61.130921px;}
._35{width:76.088200px;}
._40{width:88.836418px;}
._3d{width:95.354252px;}
._1d{width:106.187664px;}
._37{width:111.600827px;}
._34{width:114.510838px;}
._23{width:120.153896px;}
._2d{width:121.712278px;}
._36{width:131.812438px;}
._31{width:133.174907px;}
._30{width:134.364430px;}
._22{width:135.997064px;}
._3e{width:140.454167px;}
._2c{width:142.157113px;}
._3f{width:143.597401px;}
._21{width:146.048840px;}
._25{width:147.519369px;}
._1f{width:153.755456px;}
._1e{width:155.289584px;}
._43{width:162.721875px;}
._39{width:164.916444px;}
._33{width:186.353576px;}
._2b{width:194.995304px;}
._27{width:295.748671px;}
._26{width:296.953947px;}
._19{width:300.248899px;}
._24{width:315.067119px;}
._3b{width:323.803887px;}
._3c{width:325.149135px;}
._20{width:326.684463px;}
._2a{width:372.013361px;}
._29{width:375.654257px;}
._3a{width:598.593641px;}
._28{width:697.973517px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:30.240000px;}
.fs9{font-size:38.547000px;}
.fs8{font-size:38.880000px;}
.fs4{font-size:40.141800px;}
.fs3{font-size:47.520000px;}
.fsb{font-size:48.685731px;}
.fsa{font-size:48.690600px;}
.fs5{font-size:50.846400px;}
.fs2{font-size:54.719400px;}
.fs1{font-size:60.480000px;}
.fs7{font-size:64.220577px;}
.fs6{font-size:64.227000px;}
.fs0{font-size:66.239400px;}
.y0{bottom:0.000000px;}
.yf7{bottom:2.519850px;}
.y124{bottom:2.520000px;}
.y16f{bottom:91.800000px;}
.y13d{bottom:93.240000px;}
.y70{bottom:96.120000px;}
.y16e{bottom:108.000000px;}
.y13c{bottom:109.800000px;}
.yc8{bottom:119.520000px;}
.y35{bottom:123.840000px;}
.y6f{bottom:126.360000px;}
.yc7{bottom:136.080000px;}
.y16d{bottom:137.520000px;}
.y10b{bottom:138.240000px;}
.y92{bottom:138.600000px;}
.y34{bottom:140.400000px;}
.y6e{bottom:142.560000px;}
.yc6{bottom:152.640000px;}
.y16c{bottom:153.720000px;}
.y10a{bottom:154.800000px;}
.y33{bottom:156.960000px;}
.y6d{bottom:159.120000px;}
.y13b{bottom:159.840000px;}
.y91{bottom:168.120000px;}
.yc5{bottom:169.200000px;}
.y109{bottom:171.360000px;}
.y32{bottom:173.160000px;}
.y6c{bottom:175.680000px;}
.y16b{bottom:183.240000px;}
.y90{bottom:185.760000px;}
.y108{bottom:187.920000px;}
.y31{bottom:189.720000px;}
.y9b{bottom:192.240000px;}
.y16a{bottom:199.800000px;}
.yc4{bottom:201.959850px;}
.y107{bottom:204.120000px;}
.y6b{bottom:205.560000px;}
.y30{bottom:206.280000px;}
.y9a{bottom:211.680000px;}
.yc3{bottom:218.520000px;}
.y106{bottom:220.680000px;}
.y6a{bottom:222.120000px;}
.y2f{bottom:222.840000px;}
.y169{bottom:228.959850px;}
.y13a{bottom:234.720000px;}
.y105{bottom:237.240000px;}
.y69{bottom:238.680000px;}
.y96{bottom:239.760000px;}
.y168{bottom:245.520000px;}
.yc2{bottom:249.480000px;}
.y139{bottom:251.280000px;}
.y104{bottom:253.800000px;}
.y68{bottom:255.240000px;}
.y2e{bottom:257.400000px;}
.y95{bottom:258.480000px;}
.y167{bottom:261.720000px;}
.yf3{bottom:262.080000px;}
.yc1{bottom:265.680000px;}
.y138{bottom:267.840000px;}
.y103{bottom:270.360000px;}
.y67{bottom:271.800000px;}
.yc0{bottom:282.240000px;}
.y137{bottom:284.400000px;}
.y102{bottom:286.920000px;}
.y166{bottom:291.240000px;}
.yf2{bottom:291.959850px;}
.ybf{bottom:298.800000px;}
.y2d{bottom:300.959850px;}
.y101{bottom:303.120000px;}
.y66{bottom:306.360000px;}
.y165{bottom:307.800000px;}
.yf1{bottom:308.520000px;}
.ybe{bottom:316.080000px;}
.y2c{bottom:317.160000px;}
.y136{bottom:317.520000px;}
.y100{bottom:319.680000px;}
.yf0{bottom:325.080000px;}
.y2b{bottom:333.720000px;}
.yff{bottom:336.240000px;}
.y164{bottom:336.960000px;}
.ybd{bottom:337.320000px;}
.y97{bottom:338.400000px;}
.y9c{bottom:341.280000px;}
.yef{bottom:341.640000px;}
.y65{bottom:349.200000px;}
.y2a{bottom:350.280000px;}
.yfe{bottom:352.440000px;}
.y163{bottom:353.520000px;}
.yee{bottom:358.200000px;}
.y94{bottom:365.040000px;}
.y64{bottom:365.760000px;}
.y29{bottom:366.840000px;}
.y162{bottom:369.720000px;}
.yed{bottom:374.760000px;}
.y63{bottom:381.960000px;}
.yfd{bottom:382.680000px;}
.y28{bottom:383.400000px;}
.yec{bottom:390.960000px;}
.y135{bottom:396.720000px;}
.y62{bottom:398.520000px;}
.yfc{bottom:399.240000px;}
.y27{bottom:399.960000px;}
.y134{bottom:413.280000px;}
.y61{bottom:414.720000px;}
.yfb{bottom:415.440000px;}
.y161{bottom:415.800000px;}
.y26{bottom:416.160000px;}
.yeb{bottom:421.200000px;}
.y133{bottom:429.840000px;}
.y60{bottom:431.280000px;}
.y25{bottom:432.720000px;}
.y98{bottom:436.680000px;}
.yea{bottom:437.759850px;}
.y160{bottom:444.960000px;}
.yfa{bottom:445.680000px;}
.ybc{bottom:446.400000px;}
.y5f{bottom:447.840000px;}
.y24{bottom:449.280000px;}
.ye9{bottom:453.960000px;}
.y15f{bottom:461.520000px;}
.ybb{bottom:462.960000px;}
.y5e{bottom:464.040000px;}
.y23{bottom:465.840000px;}
.ye8{bottom:470.520000px;}
.yf9{bottom:475.560000px;}
.yba{bottom:479.520000px;}
.y5d{bottom:480.240000px;}
.y22{bottom:482.400000px;}
.ye7{bottom:487.080000px;}
.y15e{bottom:490.680000px;}
.yf8{bottom:492.120000px;}
.yb9{bottom:495.720000px;}
.y21{bottom:498.960000px;}
.ye6{bottom:503.640000px;}
.y15d{bottom:507.240000px;}
.yf6{bottom:509.400000px;}
.y5c{bottom:510.840000px;}
.yf5{bottom:511.919850px;}
.yb8{bottom:512.280000px;}
.y20{bottom:515.160000px;}
.y11c{bottom:518.759850px;}
.ye5{bottom:520.200000px;}
.y5b{bottom:527.400000px;}
.yb7{bottom:528.840000px;}
.y1f{bottom:531.720000px;}
.y11b{bottom:533.520000px;}
.y99{bottom:534.960000px;}
.ye4{bottom:536.400000px;}
.y15c{bottom:536.759850px;}
.y5a{bottom:543.960000px;}
.yb6{bottom:545.400000px;}
.y1e{bottom:548.280000px;}
.y15b{bottom:552.960000px;}
.y116{bottom:555.480000px;}
.y59{bottom:560.520000px;}
.yb5{bottom:561.960000px;}
.y1d{bottom:564.840000px;}
.y93{bottom:565.200000px;}
.ye3{bottom:566.640000px;}
.y58{bottom:576.720000px;}
.yb4{bottom:578.520000px;}
.y15a{bottom:582.480000px;}
.ye2{bottom:583.200000px;}
.y57{bottom:593.280000px;}
.yb3{bottom:594.720000px;}
.y1c{bottom:598.320000px;}
.y159{bottom:598.680000px;}
.ye1{bottom:599.759850px;}
.y56{bottom:609.840000px;}
.yb2{bottom:611.280000px;}
.y132{bottom:612.720000px;}
.ye0{bottom:615.960000px;}
.y117{bottom:618.120000px;}
.y55{bottom:626.400000px;}
.y8f{bottom:627.840000px;}
.y158{bottom:628.200000px;}
.ydf{bottom:632.520000px;}
.y1b{bottom:640.440000px;}
.y54{bottom:642.960000px;}
.y8e{bottom:644.400000px;}
.yde{bottom:649.080000px;}
.y131{bottom:655.920000px;}
.y1a{bottom:656.640000px;}
.yb1{bottom:657.720000px;}
.y53{bottom:659.160000px;}
.y8d{bottom:660.960000px;}
.ydd{bottom:665.640000px;}
.y11f{bottom:669.600000px;}
.y130{bottom:672.840000px;}
.y19{bottom:673.200000px;}
.y157{bottom:673.920000px;}
.yb0{bottom:674.280000px;}
.y8c{bottom:677.520000px;}
.y118{bottom:681.120000px;}
.ydc{bottom:681.840000px;}
.yaf{bottom:687.240000px;}
.y52{bottom:689.400000px;}
.y18{bottom:689.760000px;}
.y12f{bottom:690.120000px;}
.y156{bottom:690.480000px;}
.yad{bottom:691.200000px;}
.y12e{bottom:692.640000px;}
.y11e{bottom:693.000000px;}
.y8b{bottom:693.720000px;}
.yae{bottom:696.240000px;}
.y144{bottom:699.480000px;}
.y11d{bottom:704.880000px;}
.y51{bottom:705.960000px;}
.y17{bottom:706.320000px;}
.y155{bottom:706.680000px;}
.yab{bottom:707.400000px;}
.yac{bottom:707.760000px;}
.y8a{bottom:710.280000px;}
.ydb{bottom:712.800000px;}
.y143{bottom:714.240000px;}
.y50{bottom:722.520000px;}
.y16{bottom:722.880000px;}
.yaa{bottom:723.960000px;}
.y89{bottom:726.840000px;}
.yda{bottom:729.360000px;}
.y13e{bottom:735.480000px;}
.y154{bottom:735.840000px;}
.y4f{bottom:738.720000px;}
.y15{bottom:739.440000px;}
.ya9{bottom:740.520000px;}
.y119{bottom:744.480000px;}
.yd9{bottom:745.920000px;}
.y4e{bottom:755.280000px;}
.y14{bottom:755.640000px;}
.y88{bottom:756.720000px;}
.yd8{bottom:763.200000px;}
.y153{bottom:765.360000px;}
.y4d{bottom:771.839850px;}
.y13{bottom:772.200000px;}
.y87{bottom:773.280000px;}
.yd7{bottom:779.760000px;}
.y152{bottom:781.560000px;}
.y4c{bottom:788.400000px;}
.y12{bottom:788.760000px;}
.y86{bottom:789.839850px;}
.yd6{bottom:795.960000px;}
.y13f{bottom:798.480000px;}
.y4b{bottom:804.960000px;}
.y11{bottom:805.320000px;}
.y85{bottom:806.400000px;}
.y11a{bottom:807.480000px;}
.y151{bottom:811.080000px;}
.yd5{bottom:813.240000px;}
.y4a{bottom:821.519850px;}
.y10{bottom:821.880000px;}
.y84{bottom:822.600000px;}
.ya8{bottom:822.960000px;}
.y150{bottom:827.280000px;}
.y120{bottom:830.880000px;}
.y49{bottom:837.720000px;}
.y148{bottom:838.080000px;}
.yf{bottom:838.440000px;}
.ya7{bottom:839.519850px;}
.yf4{bottom:846.360000px;}
.y147{bottom:849.600000px;}
.yd4{bottom:851.760000px;}
.y83{bottom:852.839850px;}
.y48{bottom:854.280000px;}
.ye{bottom:854.640000px;}
.ya6{bottom:855.720000px;}
.y14f{bottom:856.800000px;}
.y140{bottom:861.480000px;}
.y111{bottom:867.600000px;}
.y82{bottom:869.400000px;}
.y47{bottom:870.839850px;}
.yd{bottom:871.200000px;}
.ya5{bottom:872.280000px;}
.y146{bottom:873.000000px;}
.y17a{bottom:873.720000px;}
.yd3{bottom:881.280000px;}
.y145{bottom:885.240000px;}
.y81{bottom:885.960000px;}
.y46{bottom:887.400000px;}
.yc{bottom:887.760000px;}
.y10c{bottom:889.560000px;}
.yd2{bottom:897.839850px;}
.y80{bottom:902.519850px;}
.y179{bottom:903.240000px;}
.y45{bottom:903.960000px;}
.yb{bottom:904.320000px;}
.yd1{bottom:914.040000px;}
.y7f{bottom:918.720000px;}
.y178{bottom:919.440000px;}
.y44{bottom:920.519850px;}
.ya{bottom:920.880000px;}
.y141{bottom:923.760000px;}
.y7e{bottom:935.280000px;}
.y43{bottom:936.720000px;}
.y9{bottom:937.440000px;}
.yd0{bottom:944.280000px;}
.y14e{bottom:948.240000px;}
.y177{bottom:948.960000px;}
.y7d{bottom:951.839850px;}
.y10d{bottom:952.200000px;}
.y42{bottom:953.280000px;}
.ycf{bottom:960.839850px;}
.y14d{bottom:964.800000px;}
.y176{bottom:965.160000px;}
.y7c{bottom:968.400000px;}
.y41{bottom:969.839850px;}
.y8{bottom:970.920000px;}
.yce{bottom:977.040000px;}
.y7b{bottom:984.960000px;}
.y40{bottom:986.400000px;}
.y142{bottom:986.760000px;}
.y112{bottom:991.800000px;}
.y14c{bottom:993.960000px;}
.y175{bottom:994.680000px;}
.y7a{bottom:1001.160000px;}
.ya4{bottom:1001.519850px;}
.y3f{bottom:1002.960000px;}
.y115{bottom:1003.680000px;}
.ycd{bottom:1007.280000px;}
.y14b{bottom:1010.519850px;}
.y174{bottom:1010.880000px;}
.y149{bottom:1011.600000px;}
.y7{bottom:1012.680000px;}
.y10e{bottom:1015.200000px;}
.ya3{bottom:1017.720000px;}
.y3e{bottom:1019.160000px;}
.y114{bottom:1027.080000px;}
.y12d{bottom:1027.800000px;}
.y6{bottom:1029.240000px;}
.y75{bottom:1031.040000px;}
.y113{bottom:1038.960000px;}
.y14a{bottom:1039.680000px;}
.y173{bottom:1040.400000px;}
.ycc{bottom:1041.839850px;}
.y79{bottom:1044.720000px;}
.y5{bottom:1045.800000px;}
.ya2{bottom:1047.960000px;}
.y3d{bottom:1049.400000px;}
.y12c{bottom:1056.240000px;}
.y172{bottom:1056.600000px;}
.y12b{bottom:1058.760000px;}
.y74{bottom:1061.280000px;}
.ya1{bottom:1064.519850px;}
.y3c{bottom:1065.960000px;}
.y128{bottom:1066.680000px;}
.y129{bottom:1072.440000px;}
.y78{bottom:1074.600000px;}
.y12a{bottom:1074.960000px;}
.y10f{bottom:1078.560000px;}
.ya0{bottom:1080.720000px;}
.y3b{bottom:1082.519850px;}
.ycb{bottom:1085.400000px;}
.y171{bottom:1086.120000px;}
.y127{bottom:1089.720000px;}
.y73{bottom:1091.160000px;}
.y126{bottom:1092.240000px;}
.y9f{bottom:1097.280000px;}
.y4{bottom:1098.000000px;}
.y3a{bottom:1098.720000px;}
.y122{bottom:1100.519850px;}
.yca{bottom:1101.960000px;}
.y170{bottom:1102.320000px;}
.y77{bottom:1104.839850px;}
.y123{bottom:1106.280000px;}
.y125{bottom:1108.800000px;}
.y9e{bottom:1113.839850px;}
.y3{bottom:1114.920000px;}
.y39{bottom:1115.280000px;}
.yc9{bottom:1118.160000px;}
.y72{bottom:1121.040000px;}
.y121{bottom:1126.080000px;}
.y9d{bottom:1130.400000px;}
.y38{bottom:1131.839850px;}
.y76{bottom:1134.720000px;}
.y110{bottom:1141.560000px;}
.y2{bottom:1148.040000px;}
.y37{bottom:1148.400000px;}
.y71{bottom:1151.280000px;}
.y36{bottom:1164.600000px;}
.y1{bottom:1164.960000px;}
.h15{height:14.400000px;}
.hf{height:16.200000px;}
.hc{height:35.804531px;}
.h10{height:37.831772px;}
.h6{height:41.866643px;}
.h12{height:47.782382px;}
.h11{height:47.787161px;}
.h7{height:49.902961px;}
.h5{height:50.703840px;}
.h17{height:51.511680px;}
.h18{height:53.866080px;}
.h4{height:58.385600px;}
.h3{height:59.315830px;}
.h9{height:63.028985px;}
.h8{height:63.035288px;}
.h2{height:70.677440px;}
.h1{height:71.803510px;}
.h16{height:83.823840px;}
.h14{height:83.824440px;}
.he{height:85.263240px;}
.h13{height:85.263840px;}
.hb{height:142.307864px;}
.ha{height:143.747864px;}
.hd{height:158.147864px;}
.h0{height:1263.000000px;}
.w5{width:1.440000px;}
.w4{width:1.800000px;}
.w2{width:3.240000px;}
.w3{width:3.600000px;}
.w6{width:7.200000px;}
.w1{width:8.640000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:84.960000px;}
.x1e{left:87.120000px;}
.x22{left:88.200000px;}
.x42{left:90.720000px;}
.x3{left:94.680000px;}
.x1{left:97.920000px;}
.x23{left:108.000000px;}
.x6{left:111.960000px;}
.x27{left:116.640000px;}
.x24{left:123.840000px;}
.x46{left:127.439850px;}
.x19{left:136.080000px;}
.x1d{left:145.439850px;}
.x1c{left:158.400000px;}
.x25{left:170.640000px;}
.x45{left:172.440000px;}
.x1a{left:174.240000px;}
.x26{left:199.080000px;}
.x3b{left:234.000000px;}
.x9{left:247.320000px;}
.x13{left:254.520000px;}
.x32{left:257.760000px;}
.x2{left:259.560000px;}
.x10{left:263.879850px;}
.xf{left:270.000000px;}
.x16{left:285.480000px;}
.xe{left:288.000000px;}
.x4{left:334.080000px;}
.x18{left:335.880000px;}
.xa{left:338.040000px;}
.x17{left:340.200000px;}
.x11{left:347.040000px;}
.x28{left:357.120000px;}
.x44{left:369.360000px;}
.x29{left:370.440000px;}
.x43{left:389.160000px;}
.x1b{left:395.640000px;}
.x33{left:414.720000px;}
.xb{left:424.440000px;}
.x1f{left:432.720000px;}
.x20{left:453.600000px;}
.x12{left:460.440000px;}
.x34{left:462.240000px;}
.x3e{left:464.040000px;}
.x3f{left:466.919850px;}
.x35{left:468.720000px;}
.x2d{left:483.480000px;}
.x2a{left:490.680000px;}
.x7{left:500.400000px;}
.xc{left:507.960000px;}
.x31{left:532.800000px;}
.x30{left:534.240000px;}
.x2b{left:537.480000px;}
.x36{left:555.480000px;}
.x40{left:557.280000px;}
.x3c{left:560.520000px;}
.x37{left:562.320000px;}
.x2c{left:565.919850px;}
.xd{left:594.360000px;}
.x38{left:649.080000px;}
.x14{left:651.600000px;}
.x39{left:655.920000px;}
.x8{left:659.880000px;}
.x3d{left:664.560000px;}
.x2e{left:723.960000px;}
.x15{left:736.200000px;}
.x2f{left:737.280000px;}
.x41{left:739.080000px;}
.x3a{left:742.680000px;}
.x21{left:800.280000px;}
@media print{
.v4{vertical-align:-11.520000pt;}
.v2{vertical-align:-3.840000pt;}
.v1{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.280000pt;}
.v3{vertical-align:2.560000pt;}
.v7{vertical-align:12.800000pt;}
.v6{vertical-align:16.640000pt;}
.va{vertical-align:19.200000pt;}
.v9{vertical-align:29.440533pt;}
.v8{vertical-align:30.719467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.168430pt;}
.lsd{letter-spacing:0.298718pt;}
.ls9{letter-spacing:0.491526pt;}
.ls8{letter-spacing:0.587056pt;}
.ls3{letter-spacing:0.599186pt;}
.lsa{letter-spacing:1.443437pt;}
.ls12{letter-spacing:1.605121pt;}
.ls10{letter-spacing:2.016729pt;}
.ls11{letter-spacing:2.885377pt;}
.ls13{letter-spacing:4.643261pt;}
.ls14{letter-spacing:4.785680pt;}
.lsf{letter-spacing:9.755536pt;}
.lse{letter-spacing:11.847169pt;}
.ls7{letter-spacing:12.316048pt;}
.ls6{letter-spacing:12.970990pt;}
.lsb{letter-spacing:13.389616pt;}
.ls4{letter-spacing:14.520454pt;}
.ls16{letter-spacing:54.573247pt;}
.lsc{letter-spacing:56.461437pt;}
.ls2{letter-spacing:60.733079pt;}
.ls0{letter-spacing:85.058478pt;}
.ls15{letter-spacing:87.618456pt;}
.ws2{word-spacing:-48.639467pt;}
.ws0{word-spacing:-17.121092pt;}
.wsc{word-spacing:-14.868480pt;}
.ws9{word-spacing:-14.446080pt;}
.ws6{word-spacing:-14.272667pt;}
.ws4{word-spacing:-11.299200pt;}
.wsf{word-spacing:-10.819051pt;}
.ws7{word-spacing:-10.700683pt;}
.ws3{word-spacing:-9.919485pt;}
.ws13{word-spacing:-9.461760pt;}
.wsd{word-spacing:-8.566000pt;}
.ws1{word-spacing:0.000000pt;}
.ws12{word-spacing:134.797073pt;}
.ws11{word-spacing:134.797606pt;}
.ws10{word-spacing:136.075667pt;}
.wse{word-spacing:136.076199pt;}
.ws8{word-spacing:157.952265pt;}
.ws5{word-spacing:254.234534pt;}
.wsa{word-spacing:1171.963441pt;}
.wsb{word-spacing:1171.976497pt;}
._1a{margin-left:-22.143205pt;}
._18{margin-left:-8.191271pt;}
._38{margin-left:-7.293366pt;}
._12{margin-left:-6.218172pt;}
._17{margin-left:-4.956151pt;}
._15{margin-left:-3.988141pt;}
._2{margin-left:-2.385888pt;}
._0{margin-left:-1.413107pt;}
._1{width:1.177589pt;}
._9{width:2.419177pt;}
._d{width:3.604060pt;}
._b{width:4.664272pt;}
._13{width:5.657761pt;}
._e{width:6.692919pt;}
._c{width:8.468097pt;}
._7{width:9.863570pt;}
._8{width:11.023173pt;}
._4{width:12.211060pt;}
._a{width:13.118931pt;}
._3{width:14.110571pt;}
._14{width:15.299905pt;}
._6{width:16.213841pt;}
._5{width:18.047805pt;}
._f{width:19.215152pt;}
._10{width:20.564244pt;}
._11{width:21.938962pt;}
._16{width:23.019281pt;}
._1b{width:24.783029pt;}
._1c{width:25.718951pt;}
._42{width:27.600459pt;}
._41{width:29.037762pt;}
._2f{width:41.793316pt;}
._2e{width:47.937316pt;}
._32{width:54.338596pt;}
._35{width:67.633955pt;}
._40{width:78.965705pt;}
._3d{width:84.759335pt;}
._1d{width:94.389034pt;}
._37{width:99.200735pt;}
._34{width:101.787411pt;}
._23{width:106.803463pt;}
._2d{width:108.188691pt;}
._36{width:117.166612pt;}
._31{width:118.377695pt;}
._30{width:119.435049pt;}
._22{width:120.886279pt;}
._3e{width:124.848148pt;}
._2c{width:126.361878pt;}
._3f{width:127.642135pt;}
._21{width:129.821191pt;}
._25{width:131.128328pt;}
._1f{width:136.671517pt;}
._1e{width:138.035186pt;}
._43{width:144.641667pt;}
._39{width:146.592395pt;}
._33{width:165.647623pt;}
._2b{width:173.329160pt;}
._27{width:262.887708pt;}
._26{width:263.959064pt;}
._19{width:266.887910pt;}
._24{width:280.059661pt;}
._3b{width:287.825677pt;}
._3c{width:289.021453pt;}
._20{width:290.386189pt;}
._2a{width:330.678543pt;}
._29{width:333.914895pt;}
._3a{width:532.083236pt;}
._28{width:620.420904pt;}
.fsc{font-size:26.880000pt;}
.fs9{font-size:34.264000pt;}
.fs8{font-size:34.560000pt;}
.fs4{font-size:35.681600pt;}
.fs3{font-size:42.240000pt;}
.fsb{font-size:43.276205pt;}
.fsa{font-size:43.280533pt;}
.fs5{font-size:45.196800pt;}
.fs2{font-size:48.639467pt;}
.fs1{font-size:53.760000pt;}
.fs7{font-size:57.084958pt;}
.fs6{font-size:57.090667pt;}
.fs0{font-size:58.879467pt;}
.y0{bottom:0.000000pt;}
.yf7{bottom:2.239867pt;}
.y124{bottom:2.240000pt;}
.y16f{bottom:81.600000pt;}
.y13d{bottom:82.880000pt;}
.y70{bottom:85.440000pt;}
.y16e{bottom:96.000000pt;}
.y13c{bottom:97.600000pt;}
.yc8{bottom:106.240000pt;}
.y35{bottom:110.080000pt;}
.y6f{bottom:112.320000pt;}
.yc7{bottom:120.960000pt;}
.y16d{bottom:122.240000pt;}
.y10b{bottom:122.880000pt;}
.y92{bottom:123.200000pt;}
.y34{bottom:124.800000pt;}
.y6e{bottom:126.720000pt;}
.yc6{bottom:135.680000pt;}
.y16c{bottom:136.640000pt;}
.y10a{bottom:137.600000pt;}
.y33{bottom:139.520000pt;}
.y6d{bottom:141.440000pt;}
.y13b{bottom:142.080000pt;}
.y91{bottom:149.440000pt;}
.yc5{bottom:150.400000pt;}
.y109{bottom:152.320000pt;}
.y32{bottom:153.920000pt;}
.y6c{bottom:156.160000pt;}
.y16b{bottom:162.880000pt;}
.y90{bottom:165.120000pt;}
.y108{bottom:167.040000pt;}
.y31{bottom:168.640000pt;}
.y9b{bottom:170.880000pt;}
.y16a{bottom:177.600000pt;}
.yc4{bottom:179.519867pt;}
.y107{bottom:181.440000pt;}
.y6b{bottom:182.720000pt;}
.y30{bottom:183.360000pt;}
.y9a{bottom:188.160000pt;}
.yc3{bottom:194.240000pt;}
.y106{bottom:196.160000pt;}
.y6a{bottom:197.440000pt;}
.y2f{bottom:198.080000pt;}
.y169{bottom:203.519867pt;}
.y13a{bottom:208.640000pt;}
.y105{bottom:210.880000pt;}
.y69{bottom:212.160000pt;}
.y96{bottom:213.120000pt;}
.y168{bottom:218.240000pt;}
.yc2{bottom:221.760000pt;}
.y139{bottom:223.360000pt;}
.y104{bottom:225.600000pt;}
.y68{bottom:226.880000pt;}
.y2e{bottom:228.800000pt;}
.y95{bottom:229.760000pt;}
.y167{bottom:232.640000pt;}
.yf3{bottom:232.960000pt;}
.yc1{bottom:236.160000pt;}
.y138{bottom:238.080000pt;}
.y103{bottom:240.320000pt;}
.y67{bottom:241.600000pt;}
.yc0{bottom:250.880000pt;}
.y137{bottom:252.800000pt;}
.y102{bottom:255.040000pt;}
.y166{bottom:258.880000pt;}
.yf2{bottom:259.519867pt;}
.ybf{bottom:265.600000pt;}
.y2d{bottom:267.519867pt;}
.y101{bottom:269.440000pt;}
.y66{bottom:272.320000pt;}
.y165{bottom:273.600000pt;}
.yf1{bottom:274.240000pt;}
.ybe{bottom:280.960000pt;}
.y2c{bottom:281.920000pt;}
.y136{bottom:282.240000pt;}
.y100{bottom:284.160000pt;}
.yf0{bottom:288.960000pt;}
.y2b{bottom:296.640000pt;}
.yff{bottom:298.880000pt;}
.y164{bottom:299.520000pt;}
.ybd{bottom:299.840000pt;}
.y97{bottom:300.800000pt;}
.y9c{bottom:303.360000pt;}
.yef{bottom:303.680000pt;}
.y65{bottom:310.400000pt;}
.y2a{bottom:311.360000pt;}
.yfe{bottom:313.280000pt;}
.y163{bottom:314.240000pt;}
.yee{bottom:318.400000pt;}
.y94{bottom:324.480000pt;}
.y64{bottom:325.120000pt;}
.y29{bottom:326.080000pt;}
.y162{bottom:328.640000pt;}
.yed{bottom:333.120000pt;}
.y63{bottom:339.520000pt;}
.yfd{bottom:340.160000pt;}
.y28{bottom:340.800000pt;}
.yec{bottom:347.520000pt;}
.y135{bottom:352.640000pt;}
.y62{bottom:354.240000pt;}
.yfc{bottom:354.880000pt;}
.y27{bottom:355.520000pt;}
.y134{bottom:367.360000pt;}
.y61{bottom:368.640000pt;}
.yfb{bottom:369.280000pt;}
.y161{bottom:369.600000pt;}
.y26{bottom:369.920000pt;}
.yeb{bottom:374.400000pt;}
.y133{bottom:382.080000pt;}
.y60{bottom:383.360000pt;}
.y25{bottom:384.640000pt;}
.y98{bottom:388.160000pt;}
.yea{bottom:389.119867pt;}
.y160{bottom:395.520000pt;}
.yfa{bottom:396.160000pt;}
.ybc{bottom:396.800000pt;}
.y5f{bottom:398.080000pt;}
.y24{bottom:399.360000pt;}
.ye9{bottom:403.520000pt;}
.y15f{bottom:410.240000pt;}
.ybb{bottom:411.520000pt;}
.y5e{bottom:412.480000pt;}
.y23{bottom:414.080000pt;}
.ye8{bottom:418.240000pt;}
.yf9{bottom:422.720000pt;}
.yba{bottom:426.240000pt;}
.y5d{bottom:426.880000pt;}
.y22{bottom:428.800000pt;}
.ye7{bottom:432.960000pt;}
.y15e{bottom:436.160000pt;}
.yf8{bottom:437.440000pt;}
.yb9{bottom:440.640000pt;}
.y21{bottom:443.520000pt;}
.ye6{bottom:447.680000pt;}
.y15d{bottom:450.880000pt;}
.yf6{bottom:452.800000pt;}
.y5c{bottom:454.080000pt;}
.yf5{bottom:455.039867pt;}
.yb8{bottom:455.360000pt;}
.y20{bottom:457.920000pt;}
.y11c{bottom:461.119867pt;}
.ye5{bottom:462.400000pt;}
.y5b{bottom:468.800000pt;}
.yb7{bottom:470.080000pt;}
.y1f{bottom:472.640000pt;}
.y11b{bottom:474.240000pt;}
.y99{bottom:475.520000pt;}
.ye4{bottom:476.800000pt;}
.y15c{bottom:477.119867pt;}
.y5a{bottom:483.520000pt;}
.yb6{bottom:484.800000pt;}
.y1e{bottom:487.360000pt;}
.y15b{bottom:491.520000pt;}
.y116{bottom:493.760000pt;}
.y59{bottom:498.240000pt;}
.yb5{bottom:499.520000pt;}
.y1d{bottom:502.080000pt;}
.y93{bottom:502.400000pt;}
.ye3{bottom:503.680000pt;}
.y58{bottom:512.640000pt;}
.yb4{bottom:514.240000pt;}
.y15a{bottom:517.760000pt;}
.ye2{bottom:518.400000pt;}
.y57{bottom:527.360000pt;}
.yb3{bottom:528.640000pt;}
.y1c{bottom:531.840000pt;}
.y159{bottom:532.160000pt;}
.ye1{bottom:533.119867pt;}
.y56{bottom:542.080000pt;}
.yb2{bottom:543.360000pt;}
.y132{bottom:544.640000pt;}
.ye0{bottom:547.520000pt;}
.y117{bottom:549.440000pt;}
.y55{bottom:556.800000pt;}
.y8f{bottom:558.080000pt;}
.y158{bottom:558.400000pt;}
.ydf{bottom:562.240000pt;}
.y1b{bottom:569.280000pt;}
.y54{bottom:571.520000pt;}
.y8e{bottom:572.800000pt;}
.yde{bottom:576.960000pt;}
.y131{bottom:583.040000pt;}
.y1a{bottom:583.680000pt;}
.yb1{bottom:584.640000pt;}
.y53{bottom:585.920000pt;}
.y8d{bottom:587.520000pt;}
.ydd{bottom:591.680000pt;}
.y11f{bottom:595.200000pt;}
.y130{bottom:598.080000pt;}
.y19{bottom:598.400000pt;}
.y157{bottom:599.040000pt;}
.yb0{bottom:599.360000pt;}
.y8c{bottom:602.240000pt;}
.y118{bottom:605.440000pt;}
.ydc{bottom:606.080000pt;}
.yaf{bottom:610.880000pt;}
.y52{bottom:612.800000pt;}
.y18{bottom:613.120000pt;}
.y12f{bottom:613.440000pt;}
.y156{bottom:613.760000pt;}
.yad{bottom:614.400000pt;}
.y12e{bottom:615.680000pt;}
.y11e{bottom:616.000000pt;}
.y8b{bottom:616.640000pt;}
.yae{bottom:618.880000pt;}
.y144{bottom:621.760000pt;}
.y11d{bottom:626.560000pt;}
.y51{bottom:627.520000pt;}
.y17{bottom:627.840000pt;}
.y155{bottom:628.160000pt;}
.yab{bottom:628.800000pt;}
.yac{bottom:629.120000pt;}
.y8a{bottom:631.360000pt;}
.ydb{bottom:633.600000pt;}
.y143{bottom:634.880000pt;}
.y50{bottom:642.240000pt;}
.y16{bottom:642.560000pt;}
.yaa{bottom:643.520000pt;}
.y89{bottom:646.080000pt;}
.yda{bottom:648.320000pt;}
.y13e{bottom:653.760000pt;}
.y154{bottom:654.080000pt;}
.y4f{bottom:656.640000pt;}
.y15{bottom:657.280000pt;}
.ya9{bottom:658.240000pt;}
.y119{bottom:661.760000pt;}
.yd9{bottom:663.040000pt;}
.y4e{bottom:671.360000pt;}
.y14{bottom:671.680000pt;}
.y88{bottom:672.640000pt;}
.yd8{bottom:678.400000pt;}
.y153{bottom:680.320000pt;}
.y4d{bottom:686.079867pt;}
.y13{bottom:686.400000pt;}
.y87{bottom:687.360000pt;}
.yd7{bottom:693.120000pt;}
.y152{bottom:694.720000pt;}
.y4c{bottom:700.800000pt;}
.y12{bottom:701.120000pt;}
.y86{bottom:702.079867pt;}
.yd6{bottom:707.520000pt;}
.y13f{bottom:709.760000pt;}
.y4b{bottom:715.520000pt;}
.y11{bottom:715.840000pt;}
.y85{bottom:716.800000pt;}
.y11a{bottom:717.760000pt;}
.y151{bottom:720.960000pt;}
.yd5{bottom:722.880000pt;}
.y4a{bottom:730.239867pt;}
.y10{bottom:730.560000pt;}
.y84{bottom:731.200000pt;}
.ya8{bottom:731.520000pt;}
.y150{bottom:735.360000pt;}
.y120{bottom:738.560000pt;}
.y49{bottom:744.640000pt;}
.y148{bottom:744.960000pt;}
.yf{bottom:745.280000pt;}
.ya7{bottom:746.239867pt;}
.yf4{bottom:752.320000pt;}
.y147{bottom:755.200000pt;}
.yd4{bottom:757.120000pt;}
.y83{bottom:758.079867pt;}
.y48{bottom:759.360000pt;}
.ye{bottom:759.680000pt;}
.ya6{bottom:760.640000pt;}
.y14f{bottom:761.600000pt;}
.y140{bottom:765.760000pt;}
.y111{bottom:771.200000pt;}
.y82{bottom:772.800000pt;}
.y47{bottom:774.079867pt;}
.yd{bottom:774.400000pt;}
.ya5{bottom:775.360000pt;}
.y146{bottom:776.000000pt;}
.y17a{bottom:776.640000pt;}
.yd3{bottom:783.360000pt;}
.y145{bottom:786.880000pt;}
.y81{bottom:787.520000pt;}
.y46{bottom:788.800000pt;}
.yc{bottom:789.120000pt;}
.y10c{bottom:790.720000pt;}
.yd2{bottom:798.079867pt;}
.y80{bottom:802.239867pt;}
.y179{bottom:802.880000pt;}
.y45{bottom:803.520000pt;}
.yb{bottom:803.840000pt;}
.yd1{bottom:812.480000pt;}
.y7f{bottom:816.640000pt;}
.y178{bottom:817.280000pt;}
.y44{bottom:818.239867pt;}
.ya{bottom:818.560000pt;}
.y141{bottom:821.120000pt;}
.y7e{bottom:831.360000pt;}
.y43{bottom:832.640000pt;}
.y9{bottom:833.280000pt;}
.yd0{bottom:839.360000pt;}
.y14e{bottom:842.880000pt;}
.y177{bottom:843.520000pt;}
.y7d{bottom:846.079867pt;}
.y10d{bottom:846.400000pt;}
.y42{bottom:847.360000pt;}
.ycf{bottom:854.079867pt;}
.y14d{bottom:857.600000pt;}
.y176{bottom:857.920000pt;}
.y7c{bottom:860.800000pt;}
.y41{bottom:862.079867pt;}
.y8{bottom:863.040000pt;}
.yce{bottom:868.480000pt;}
.y7b{bottom:875.520000pt;}
.y40{bottom:876.800000pt;}
.y142{bottom:877.120000pt;}
.y112{bottom:881.600000pt;}
.y14c{bottom:883.520000pt;}
.y175{bottom:884.160000pt;}
.y7a{bottom:889.920000pt;}
.ya4{bottom:890.239867pt;}
.y3f{bottom:891.520000pt;}
.y115{bottom:892.160000pt;}
.ycd{bottom:895.360000pt;}
.y14b{bottom:898.239867pt;}
.y174{bottom:898.560000pt;}
.y149{bottom:899.200000pt;}
.y7{bottom:900.160000pt;}
.y10e{bottom:902.400000pt;}
.ya3{bottom:904.640000pt;}
.y3e{bottom:905.920000pt;}
.y114{bottom:912.960000pt;}
.y12d{bottom:913.600000pt;}
.y6{bottom:914.880000pt;}
.y75{bottom:916.480000pt;}
.y113{bottom:923.520000pt;}
.y14a{bottom:924.160000pt;}
.y173{bottom:924.800000pt;}
.ycc{bottom:926.079867pt;}
.y79{bottom:928.640000pt;}
.y5{bottom:929.600000pt;}
.ya2{bottom:931.520000pt;}
.y3d{bottom:932.800000pt;}
.y12c{bottom:938.880000pt;}
.y172{bottom:939.200000pt;}
.y12b{bottom:941.120000pt;}
.y74{bottom:943.360000pt;}
.ya1{bottom:946.239867pt;}
.y3c{bottom:947.520000pt;}
.y128{bottom:948.160000pt;}
.y129{bottom:953.280000pt;}
.y78{bottom:955.200000pt;}
.y12a{bottom:955.520000pt;}
.y10f{bottom:958.720000pt;}
.ya0{bottom:960.640000pt;}
.y3b{bottom:962.239867pt;}
.ycb{bottom:964.800000pt;}
.y171{bottom:965.440000pt;}
.y127{bottom:968.640000pt;}
.y73{bottom:969.920000pt;}
.y126{bottom:970.880000pt;}
.y9f{bottom:975.360000pt;}
.y4{bottom:976.000000pt;}
.y3a{bottom:976.640000pt;}
.y122{bottom:978.239867pt;}
.yca{bottom:979.520000pt;}
.y170{bottom:979.840000pt;}
.y77{bottom:982.079867pt;}
.y123{bottom:983.360000pt;}
.y125{bottom:985.600000pt;}
.y9e{bottom:990.079867pt;}
.y3{bottom:991.040000pt;}
.y39{bottom:991.360000pt;}
.yc9{bottom:993.920000pt;}
.y72{bottom:996.480000pt;}
.y121{bottom:1000.960000pt;}
.y9d{bottom:1004.800000pt;}
.y38{bottom:1006.079867pt;}
.y76{bottom:1008.640000pt;}
.y110{bottom:1014.720000pt;}
.y2{bottom:1020.480000pt;}
.y37{bottom:1020.800000pt;}
.y71{bottom:1023.360000pt;}
.y36{bottom:1035.200000pt;}
.y1{bottom:1035.520000pt;}
.h15{height:12.800000pt;}
.hf{height:14.400000pt;}
.hc{height:31.826250pt;}
.h10{height:33.628242pt;}
.h6{height:37.214794pt;}
.h12{height:42.473229pt;}
.h11{height:42.477477pt;}
.h7{height:44.358187pt;}
.h5{height:45.070080pt;}
.h17{height:45.788160pt;}
.h18{height:47.880960pt;}
.h4{height:51.898311pt;}
.h3{height:52.725182pt;}
.h9{height:56.025764pt;}
.h8{height:56.031367pt;}
.h2{height:62.824391pt;}
.h1{height:63.825342pt;}
.h16{height:74.510080pt;}
.h14{height:74.510613pt;}
.he{height:75.789547pt;}
.h13{height:75.790080pt;}
.hb{height:126.495879pt;}
.ha{height:127.775879pt;}
.hd{height:140.575879pt;}
.h0{height:1122.666667pt;}
.w5{width:1.280000pt;}
.w4{width:1.600000pt;}
.w2{width:2.880000pt;}
.w3{width:3.200000pt;}
.w6{width:6.400000pt;}
.w1{width:7.680000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:75.520000pt;}
.x1e{left:77.440000pt;}
.x22{left:78.400000pt;}
.x42{left:80.640000pt;}
.x3{left:84.160000pt;}
.x1{left:87.040000pt;}
.x23{left:96.000000pt;}
.x6{left:99.520000pt;}
.x27{left:103.680000pt;}
.x24{left:110.080000pt;}
.x46{left:113.279867pt;}
.x19{left:120.960000pt;}
.x1d{left:129.279867pt;}
.x1c{left:140.800000pt;}
.x25{left:151.680000pt;}
.x45{left:153.280000pt;}
.x1a{left:154.880000pt;}
.x26{left:176.960000pt;}
.x3b{left:208.000000pt;}
.x9{left:219.840000pt;}
.x13{left:226.240000pt;}
.x32{left:229.120000pt;}
.x2{left:230.720000pt;}
.x10{left:234.559867pt;}
.xf{left:240.000000pt;}
.x16{left:253.760000pt;}
.xe{left:256.000000pt;}
.x4{left:296.960000pt;}
.x18{left:298.560000pt;}
.xa{left:300.480000pt;}
.x17{left:302.400000pt;}
.x11{left:308.480000pt;}
.x28{left:317.440000pt;}
.x44{left:328.320000pt;}
.x29{left:329.280000pt;}
.x43{left:345.920000pt;}
.x1b{left:351.680000pt;}
.x33{left:368.640000pt;}
.xb{left:377.280000pt;}
.x1f{left:384.640000pt;}
.x20{left:403.200000pt;}
.x12{left:409.280000pt;}
.x34{left:410.880000pt;}
.x3e{left:412.480000pt;}
.x3f{left:415.039867pt;}
.x35{left:416.640000pt;}
.x2d{left:429.760000pt;}
.x2a{left:436.160000pt;}
.x7{left:444.800000pt;}
.xc{left:451.520000pt;}
.x31{left:473.600000pt;}
.x30{left:474.880000pt;}
.x2b{left:477.760000pt;}
.x36{left:493.760000pt;}
.x40{left:495.360000pt;}
.x3c{left:498.240000pt;}
.x37{left:499.840000pt;}
.x2c{left:503.039867pt;}
.xd{left:528.320000pt;}
.x38{left:576.960000pt;}
.x14{left:579.200000pt;}
.x39{left:583.040000pt;}
.x8{left:586.560000pt;}
.x3d{left:590.720000pt;}
.x2e{left:643.520000pt;}
.x15{left:654.400000pt;}
.x2f{left:655.360000pt;}
.x41{left:656.960000pt;}
.x3a{left:660.160000pt;}
.x21{left:711.360000pt;}
}




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