
    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_873a4fe96b6a3cdfeef6d838.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_0399d14979697d9b69c8a409.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3a182de2681c049b37e4be9b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_da02bdac4be8950f2b011a4b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_32ec4c70e9412c77a7d7e2bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.201172;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_e3f79aded616daa48653421e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_b73b7e3731608932734b215d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_22182c2d8b1695da0224ab7b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_9de43fb0d2a2f2a551499990.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.v3{vertical-align:-89.400000px;}
.v4{vertical-align:-82.800000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:27.000000px;}
.v1{vertical-align:29.880000px;}
.ls22{letter-spacing:-2.160000px;}
.ls7{letter-spacing:-1.872000px;}
.ls1b{letter-spacing:-0.774000px;}
.ls19{letter-spacing:-0.630000px;}
.ls1c{letter-spacing:-0.513600px;}
.lse{letter-spacing:-0.413400px;}
.ls14{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.153600px;}
.ls6{letter-spacing:-0.072000px;}
.ls1f{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.078600px;}
.ls4{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.140040px;}
.ls9{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.153600px;}
.ls3{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.192000px;}
.lsc{letter-spacing:0.210000px;}
.lsa{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.432000px;}
.ls1e{letter-spacing:1.170000px;}
.ls18{letter-spacing:1.890000px;}
.ls0{letter-spacing:9.450000px;}
.ls10{letter-spacing:9.570000px;}
.ls13{letter-spacing:16.290000px;}
.lsf{letter-spacing:49.911120px;}
.ls16{letter-spacing:73.260000px;}
.lsb{letter-spacing:109.560000px;}
.ls1a{letter-spacing:144.090000px;}
.ls21{letter-spacing:698.760000px;}
.ls1d{letter-spacing:1332.570000px;}
.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;}
}
.wsd{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws9{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.210000px;}
.wsb{word-spacing:-15.183600px;}
.ws1{word-spacing:-15.030000px;}
.wsf{word-spacing:-14.976720px;}
.ws7{word-spacing:-14.967480px;}
.ws3{word-spacing:-14.850000px;}
.wsa{word-spacing:-14.616600px;}
.wse{word-spacing:-14.516400px;}
.ws0{word-spacing:-14.238000px;}
.ws8{word-spacing:-14.220000px;}
.ws4{word-spacing:-12.204000px;}
.ws5{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._28{margin-left:-12.408000px;}
._8{margin-left:-4.732200px;}
._7{margin-left:-3.607200px;}
._12{margin-left:-2.526600px;}
._3{margin-left:-1.419960px;}
._6{width:1.080720px;}
._a{width:2.870040px;}
._c{width:3.876000px;}
._b{width:5.034000px;}
._d{width:6.132000px;}
._f{width:8.056320px;}
._9{width:9.679320px;}
._20{width:10.944000px;}
._19{width:12.168000px;}
._1d{width:13.536000px;}
._1a{width:14.832000px;}
._18{width:15.984000px;}
._23{width:17.037720px;}
._2d{width:18.090000px;}
._1f{width:19.152000px;}
._21{width:20.880000px;}
._11{width:21.888000px;}
._5{width:23.845800px;}
._24{width:24.936000px;}
._1b{width:25.968000px;}
._1e{width:27.432000px;}
._13{width:29.379840px;}
._4{width:30.802080px;}
._2{width:31.890000px;}
._32{width:33.408000px;}
._2e{width:34.848000px;}
._35{width:36.156720px;}
._17{width:37.536000px;}
._16{width:38.928000px;}
._38{width:40.128000px;}
._14{width:42.552000px;}
._2b{width:43.848000px;}
._37{width:44.856000px;}
._26{width:46.008000px;}
._25{width:47.376000px;}
._1c{width:48.672000px;}
._34{width:49.680000px;}
._33{width:50.688000px;}
._36{width:52.848000px;}
._27{width:62.784000px;}
._2c{width:63.792000px;}
._2a{width:72.728160px;}
._29{width:73.764480px;}
._2f{width:101.903400px;}
._15{width:176.396880px;}
._30{width:189.816000px;}
._39{width:192.768000px;}
._31{width:194.520000px;}
._e{width:243.156000px;}
._0{width:859.260000px;}
._10{width:1265.511600px;}
._1{width:1748.340000px;}
._22{width:1817.848440px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs6{font-size:60.120000px;}
.fs3{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y5{bottom:45.359908px;}
.y4{bottom:60.869908px;}
.y3{bottom:76.439908px;}
.y2c{bottom:96.689908px;}
.ya2{bottom:101.909908px;}
.y144{bottom:102.809908px;}
.y10c{bottom:112.169908px;}
.y2b{bottom:113.969908px;}
.yd1{bottom:114.329908px;}
.ya8{bottom:119.189908px;}
.y143{bottom:125.129908px;}
.y59{bottom:131.159908px;}
.ydc{bottom:131.609908px;}
.y10b{bottom:132.869908px;}
.y2a{bottom:136.379908px;}
.yd0{bottom:139.439908px;}
.y142{bottom:147.449908px;}
.y58{bottom:148.439908px;}
.y29{bottom:148.799908px;}
.y10a{bottom:153.569908px;}
.y7c{bottom:153.659908px;}
.ycf{bottom:160.139908px;}
.y57{bottom:165.719908px;}
.y141{bottom:169.859908px;}
.ya7{bottom:170.939908px;}
.y113{bottom:172.649908px;}
.yce{bottom:180.839908px;}
.y56{bottom:182.909908px;}
.yf8{bottom:183.359908px;}
.y109{bottom:186.329908px;}
.y7b{bottom:188.129908px;}
.y140{bottom:192.179908px;}
.y111{bottom:193.349908px;}
.y112{bottom:200.099908px;}
.y55{bottom:200.189908px;}
.ya1{bottom:200.549908px;}
.ycd{bottom:201.539908px;}
.y89{bottom:205.409908px;}
.y108{bottom:207.029908px;}
.y28{bottom:209.369908px;}
.y110{bottom:214.049908px;}
.y13f{bottom:214.499908px;}
.y54{bottom:217.469908px;}
.yc7{bottom:217.829908px;}
.ya0{bottom:222.239908px;}
.y8f{bottom:222.689908px;}
.yf7{bottom:226.019908px;}
.ydb{bottom:227.729908px;}
.y27{bottom:231.689908px;}
.y53{bottom:234.659908px;}
.y10f{bottom:234.749908px;}
.ya6{bottom:235.019908px;}
.y13e{bottom:236.819908px;}
.y52{bottom:239.879908px;}
.y9f{bottom:242.939908px;}
.yf6{bottom:246.719908px;}
.yda{bottom:248.429908px;}
.yc6{bottom:250.049908px;}
.y51{bottom:251.939908px;}
.ya9{bottom:252.299908px;}
.y10e{bottom:255.449908px;}
.yaa{bottom:257.159908px;}
.y26{bottom:258.149908px;}
.y13d{bottom:259.139908px;}
.y9e{bottom:263.639908px;}
.yf5{bottom:267.419908px;}
.yd8{bottom:269.129908px;}
.y50{bottom:269.219908px;}
.y7a{bottom:269.579908px;}
.yca{bottom:270.389908px;}
.yc5{bottom:270.749908px;}
.y88{bottom:274.439908px;}
.y25{bottom:274.619908px;}
.yd9{bottom:275.159908px;}
.y10d{bottom:276.149908px;}
.y13c{bottom:281.549908px;}
.y9d{bottom:284.339908px;}
.y4f{bottom:286.409908px;}
.y125{bottom:286.769908px;}
.yf4{bottom:288.119908px;}
.yd7{bottom:289.739908px;}
.y24{bottom:291.089908px;}
.yc4{bottom:291.449908px;}
.y4e{bottom:291.629908px;}
.y4d{bottom:303.689908px;}
.y13b{bottom:303.869908px;}
.y79{bottom:305.039908px;}
.y23{bottom:307.559908px;}
.yf3{bottom:308.819908px;}
.y4c{bottom:308.909908px;}
.yd6{bottom:310.439908px;}
.yc3{bottom:312.149908px;}
.y87{bottom:320.969908px;}
.y4b{bottom:321.329908px;}
.y22{bottom:324.029908px;}
.y78{bottom:325.739908px;}
.y86{bottom:326.189908px;}
.yf2{bottom:329.519908px;}
.yd5{bottom:331.139908px;}
.yc9{bottom:331.769908px;}
.yc2{bottom:332.849908px;}
.y85{bottom:338.159908px;}
.y21{bottom:340.499908px;}
.y4a{bottom:341.579908px;}
.y84{bottom:343.379908px;}
.y77{bottom:346.439908px;}
.y124{bottom:347.519908px;}
.y13a{bottom:348.509908px;}
.yf1{bottom:350.219908px;}
.yd4{bottom:351.839908px;}
.yc1{bottom:353.549908px;}
.y83{bottom:355.439908px;}
.y20{bottom:357.059908px;}
.y8e{bottom:360.659908px;}
.y48{bottom:362.279908px;}
.y76{bottom:367.139908px;}
.y49{bottom:369.029908px;}
.y123{bottom:369.839908px;}
.y139{bottom:370.829908px;}
.yf0{bottom:370.919908px;}
.y107{bottom:372.539908px;}
.y82{bottom:372.719908px;}
.yd2{bottom:373.079908px;}
.y1f{bottom:373.529908px;}
.ybf{bottom:374.249908px;}
.yc0{bottom:380.999908px;}
.y47{bottom:382.979908px;}
.yd3{bottom:386.219908px;}
.y75{bottom:387.839908px;}
.y81{bottom:389.909908px;}
.y1e{bottom:389.999908px;}
.ycb{bottom:390.269908px;}
.yef{bottom:391.619908px;}
.y122{bottom:392.159908px;}
.y106{bottom:393.239908px;}
.y119{bottom:394.589908px;}
.ybe{bottom:394.949908px;}
.y80{bottom:395.129908px;}
.y46{bottom:403.679908px;}
.y1d{bottom:406.469908px;}
.y9b{bottom:407.189908px;}
.y7f{bottom:407.549908px;}
.y74{bottom:408.539908px;}
.yee{bottom:412.319908px;}
.y105{bottom:413.939908px;}
.y121{bottom:414.479908px;}
.ycc{bottom:414.569908px;}
.y138{bottom:415.559908px;}
.ybd{bottom:415.649908px;}
.y1c{bottom:422.939908px;}
.y45{bottom:424.289908px;}
.y9a{bottom:424.469908px;}
.y73{bottom:429.239908px;}
.yed{bottom:433.019908px;}
.y104{bottom:434.639908px;}
.y7e{bottom:435.989908px;}
.ybc{bottom:436.349908px;}
.y120{bottom:436.799908px;}
.y137{bottom:437.879908px;}
.y1b{bottom:439.409908px;}
.y99{bottom:441.659908px;}
.y44{bottom:444.989908px;}
.y72{bottom:449.969908px;}
.yec{bottom:453.749908px;}
.y103{bottom:455.369908px;}
.y1a{bottom:455.909908px;}
.yc8{bottom:456.719908px;}
.ybb{bottom:457.079908px;}
.y98{bottom:458.969908px;}
.y11f{bottom:459.239908px;}
.y136{bottom:460.229908px;}
.y43{bottom:465.719908px;}
.y71{bottom:470.669908px;}
.y19{bottom:472.379908px;}
.y102{bottom:476.069908px;}
.y97{bottom:476.159908px;}
.yba{bottom:477.779908px;}
.y11e{bottom:481.559908px;}
.y135{bottom:482.549908px;}
.y42{bottom:486.419908px;}
.yeb{bottom:488.039908px;}
.y18{bottom:488.849908px;}
.y70{bottom:491.369908px;}
.y96{bottom:493.439908px;}
.y101{bottom:496.769908px;}
.ya5{bottom:498.119908px;}
.yb9{bottom:498.389908px;}
.y118{bottom:498.659908px;}
.y11d{bottom:503.879908px;}
.y134{bottom:504.869908px;}
.y17{bottom:504.959908px;}
.y41{bottom:507.119908px;}
.yea{bottom:508.739908px;}
.y95{bottom:510.719908px;}
.y6e{bottom:512.069908px;}
.y100{bottom:517.469908px;}
.y6f{bottom:518.819908px;}
.yb8{bottom:519.089908px;}
.y16{bottom:522.239908px;}
.y11c{bottom:526.199908px;}
.y133{bottom:527.279908px;}
.y3f{bottom:527.819908px;}
.y94{bottom:527.909908px;}
.ye9{bottom:529.439908px;}
.y6d{bottom:532.769908px;}
.y93{bottom:533.129908px;}
.y40{bottom:534.569908px;}
.yff{bottom:538.169908px;}
.y15{bottom:539.519908px;}
.yb7{bottom:539.789908px;}
.y117{bottom:545.189908px;}
.y92{bottom:545.549908px;}
.y3e{bottom:548.519908px;}
.y132{bottom:549.599908px;}
.ye8{bottom:550.139908px;}
.y6c{bottom:553.469908px;}
.y14{bottom:556.709908px;}
.yfe{bottom:558.869908px;}
.y9c{bottom:559.499908px;}
.yb5{bottom:560.489908px;}
.y116{bottom:562.469908px;}
.yb6{bottom:567.239908px;}
.y3d{bottom:569.219908px;}
.ye7{bottom:570.839908px;}
.y11b{bottom:570.929908px;}
.y131{bottom:571.919908px;}
.y13{bottom:573.989908px;}
.y6a{bottom:574.169908px;}
.yfd{bottom:579.569908px;}
.y115{bottom:580.019908px;}
.y6b{bottom:580.199908px;}
.y8d{bottom:580.919908px;}
.yb4{bottom:581.189908px;}
.y3c{bottom:589.919908px;}
.y12{bottom:591.269908px;}
.ye6{bottom:591.539908px;}
.y11a{bottom:593.249908px;}
.y130{bottom:594.239908px;}
.y69{bottom:594.869908px;}
.yfc{bottom:600.269908px;}
.y91{bottom:601.619908px;}
.yb3{bottom:601.889908px;}
.y11{bottom:608.459908px;}
.y3b{bottom:610.619908px;}
.ye5{bottom:612.239908px;}
.y68{bottom:615.569908px;}
.y12f{bottom:616.559908px;}
.yfb{bottom:620.969908px;}
.y8c{bottom:622.319908px;}
.yb2{bottom:622.589908px;}
.y10{bottom:625.739908px;}
.y39{bottom:631.319908px;}
.ye4{bottom:632.939908px;}
.y67{bottom:636.269908px;}
.y3a{bottom:638.069908px;}
.y12e{bottom:638.969908px;}
.yfa{bottom:641.669908px;}
.yf{bottom:643.019908px;}
.yb1{bottom:643.289908px;}
.y38{bottom:652.019908px;}
.ye3{bottom:653.639908px;}
.y66{bottom:656.969908px;}
.ye{bottom:660.209908px;}
.y12d{bottom:661.289908px;}
.yb0{bottom:663.989908px;}
.y37{bottom:672.719908px;}
.yf9{bottom:676.049908px;}
.yd{bottom:677.489908px;}
.y65{bottom:677.669908px;}
.y12c{bottom:683.609908px;}
.y8b{bottom:684.419908px;}
.ye2{bottom:686.399908px;}
.y36{bottom:693.419908px;}
.yc{bottom:695.399908px;}
.y64{bottom:698.369908px;}
.ya4{bottom:705.119908px;}
.yaf{bottom:705.389908px;}
.y12b{bottom:705.929908px;}
.ye1{bottom:707.099908px;}
.y35{bottom:714.119908px;}
.y63{bottom:719.069908px;}
.y114{bottom:725.819908px;}
.yae{bottom:726.089908px;}
.ye0{bottom:727.709908px;}
.y12a{bottom:728.249908px;}
.yb{bottom:732.119908px;}
.y34{bottom:734.819908px;}
.y62{bottom:739.769908px;}
.y7d{bottom:746.519908px;}
.yad{bottom:746.789908px;}
.ydf{bottom:748.409908px;}
.y129{bottom:750.659908px;}
.y33{bottom:755.519908px;}
.y61{bottom:760.469908px;}
.ya{bottom:761.459908px;}
.yac{bottom:767.489908px;}
.yde{bottom:769.109908px;}
.y128{bottom:772.979908px;}
.y32{bottom:776.219908px;}
.y60{bottom:781.169908px;}
.y8a{bottom:787.919908px;}
.y9{bottom:790.799908px;}
.y127{bottom:795.299908px;}
.y31{bottom:796.919908px;}
.y5f{bottom:801.869908px;}
.ya3{bottom:808.619908px;}
.y126{bottom:817.619908px;}
.y8{bottom:820.049908px;}
.y5e{bottom:822.569908px;}
.yab{bottom:829.319908px;}
.y30{bottom:839.969908px;}
.y5c{bottom:843.299908px;}
.y7{bottom:849.419908px;}
.y5d{bottom:850.049908px;}
.y2f{bottom:862.289908px;}
.y5b{bottom:863.999908px;}
.ydd{bottom:870.749908px;}
.y6{bottom:878.669908px;}
.y2e{bottom:884.699908px;}
.y90{bottom:891.449908px;}
.y2d{bottom:916.739908px;}
.y5a{bottom:917.099908px;}
.y2{bottom:936.809908px;}
.hc{height:38.158594px;}
.h11{height:46.968223px;}
.he{height:46.991602px;}
.h4{height:52.998047px;}
.h9{height:53.709961px;}
.h13{height:53.896641px;}
.h8{height:55.291992px;}
.h12{height:58.975137px;}
.h7{height:59.004492px;}
.hf{height:64.546875px;}
.h10{height:64.657617px;}
.h3{height:65.526152px;}
.hd{height:70.628906px;}
.h6{height:70.664062px;}
.ha{height:71.613281px;}
.hb{height:72.562500px;}
.h14{height:73.991602px;}
.h5{height:95.603730px;}
.h2{height:1020.599908px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:722.879978px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:95.669989px;}
.x9{left:100.529989px;}
.x1a{left:105.419989px;}
.x4{left:127.559989px;}
.x12{left:143.669978px;}
.x13{left:149.699989px;}
.x1b{left:151.679978px;}
.x34{left:153.659978px;}
.x1c{left:163.739989px;}
.x35{left:165.719989px;}
.x1f{left:167.699978px;}
.x4f{left:169.229978px;}
.x2{left:172.739978px;}
.x4d{left:177.689978px;}
.x3{left:178.769989px;}
.x1d{left:180.209978px;}
.x50{left:181.289989px;}
.x5a{left:185.609978px;}
.xc{left:190.379978px;}
.x1e{left:192.269989px;}
.xd{left:196.409989px;}
.x5b{left:197.669989px;}
.x43{left:200.099978px;}
.x4a{left:208.649989px;}
.x44{left:212.159989px;}
.x57{left:227.729978px;}
.x3a{left:230.069978px;}
.x38{left:234.119978px;}
.x58{left:239.789989px;}
.x20{left:242.939978px;}
.x39{left:246.179989px;}
.x21{left:254.999989px;}
.x2c{left:266.429978px;}
.x28{left:272.729978px;}
.x2d{left:278.489989px;}
.x24{left:282.179978px;}
.x29{left:284.789989px;}
.x41{left:287.039978px;}
.x5{left:290.459978px;}
.x25{left:294.239989px;}
.x6{left:296.489989px;}
.x42{left:299.099989px;}
.x59{left:310.439989px;}
.x3d{left:312.149978px;}
.x3e{left:324.239989px;}
.xa{left:337.649978px;}
.xb{left:343.679989px;}
.x36{left:346.109978px;}
.x37{left:358.169989px;}
.x5d{left:361.499989px;}
.x16{left:379.229978px;}
.xe{left:380.669978px;}
.xf{left:386.699989px;}
.x17{left:391.289989px;}
.x54{left:399.569978px;}
.x3b{left:401.999978px;}
.x22{left:408.389978px;}
.x55{left:411.629989px;}
.x3c{left:414.059989px;}
.x23{left:420.449989px;}
.x4e{left:426.659989px;}
.x32{left:430.709978px;}
.x33{left:442.769989px;}
.x53{left:454.919989px;}
.x3f{left:474.089978px;}
.x4b{left:480.029978px;}
.x5c{left:482.999978px;}
.x40{left:486.149989px;}
.x7{left:489.299978px;}
.x4c{left:492.089989px;}
.x8{left:495.329989px;}
.x2a{left:498.569978px;}
.x49{left:506.219978px;}
.x2b{left:510.629989px;}
.x10{left:517.559978px;}
.x26{left:521.249978px;}
.x11{left:523.589989px;}
.x27{left:533.339989px;}
.x30{left:544.589978px;}
.x47{left:549.719978px;}
.x31{left:556.649989px;}
.x48{left:561.779989px;}
.x51{left:565.559978px;}
.x45{left:566.639978px;}
.x52{left:577.619989px;}
.x46{left:578.699989px;}
.x56{left:587.789978px;}
.x14{left:600.659978px;}
.x2e{left:601.829978px;}
.x15{left:606.689989px;}
.x2f{left:613.889989px;}
.x18{left:615.239978px;}
.x19{left:627.299989px;}
@media print{
.v3{vertical-align:-79.466667pt;}
.v4{vertical-align:-73.600000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:24.000000pt;}
.v1{vertical-align:26.560000pt;}
.ls22{letter-spacing:-1.920000pt;}
.ls7{letter-spacing:-1.664000pt;}
.ls1b{letter-spacing:-0.688000pt;}
.ls19{letter-spacing:-0.560000pt;}
.ls1c{letter-spacing:-0.456533pt;}
.lse{letter-spacing:-0.367467pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.136533pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls1f{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.069867pt;}
.ls4{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.124480pt;}
.ls9{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.136533pt;}
.ls3{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.170667pt;}
.lsc{letter-spacing:0.186667pt;}
.lsa{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:1.040000pt;}
.ls18{letter-spacing:1.680000pt;}
.ls0{letter-spacing:8.400000pt;}
.ls10{letter-spacing:8.506667pt;}
.ls13{letter-spacing:14.480000pt;}
.lsf{letter-spacing:44.365440pt;}
.ls16{letter-spacing:65.120000pt;}
.lsb{letter-spacing:97.386667pt;}
.ls1a{letter-spacing:128.080000pt;}
.ls21{letter-spacing:621.120000pt;}
.ls1d{letter-spacing:1184.506667pt;}
.wsd{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.520000pt;}
.wsb{word-spacing:-13.496533pt;}
.ws1{word-spacing:-13.360000pt;}
.wsf{word-spacing:-13.312640pt;}
.ws7{word-spacing:-13.304427pt;}
.ws3{word-spacing:-13.200000pt;}
.wsa{word-spacing:-12.992533pt;}
.wse{word-spacing:-12.903467pt;}
.ws0{word-spacing:-12.656000pt;}
.ws8{word-spacing:-12.640000pt;}
.ws4{word-spacing:-10.848000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._28{margin-left:-11.029333pt;}
._8{margin-left:-4.206400pt;}
._7{margin-left:-3.206400pt;}
._12{margin-left:-2.245867pt;}
._3{margin-left:-1.262187pt;}
._6{width:0.960640pt;}
._a{width:2.551147pt;}
._c{width:3.445333pt;}
._b{width:4.474667pt;}
._d{width:5.450667pt;}
._f{width:7.161173pt;}
._9{width:8.603840pt;}
._20{width:9.728000pt;}
._19{width:10.816000pt;}
._1d{width:12.032000pt;}
._1a{width:13.184000pt;}
._18{width:14.208000pt;}
._23{width:15.144640pt;}
._2d{width:16.080000pt;}
._1f{width:17.024000pt;}
._21{width:18.560000pt;}
._11{width:19.456000pt;}
._5{width:21.196267pt;}
._24{width:22.165333pt;}
._1b{width:23.082667pt;}
._1e{width:24.384000pt;}
._13{width:26.115413pt;}
._4{width:27.379627pt;}
._2{width:28.346667pt;}
._32{width:29.696000pt;}
._2e{width:30.976000pt;}
._35{width:32.139307pt;}
._17{width:33.365333pt;}
._16{width:34.602667pt;}
._38{width:35.669333pt;}
._14{width:37.824000pt;}
._2b{width:38.976000pt;}
._37{width:39.872000pt;}
._26{width:40.896000pt;}
._25{width:42.112000pt;}
._1c{width:43.264000pt;}
._34{width:44.160000pt;}
._33{width:45.056000pt;}
._36{width:46.976000pt;}
._27{width:55.808000pt;}
._2c{width:56.704000pt;}
._2a{width:64.647253pt;}
._29{width:65.568427pt;}
._2f{width:90.580800pt;}
._15{width:156.797227pt;}
._30{width:168.725333pt;}
._39{width:171.349333pt;}
._31{width:172.906667pt;}
._e{width:216.138667pt;}
._0{width:763.786667pt;}
._10{width:1124.899200pt;}
._1{width:1554.080000pt;}
._22{width:1615.865280pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs6{font-size:53.440000pt;}
.fs3{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y5{bottom:40.319919pt;}
.y4{bottom:54.106585pt;}
.y3{bottom:67.946585pt;}
.y2c{bottom:85.946585pt;}
.ya2{bottom:90.586585pt;}
.y144{bottom:91.386585pt;}
.y10c{bottom:99.706585pt;}
.y2b{bottom:101.306585pt;}
.yd1{bottom:101.626585pt;}
.ya8{bottom:105.946585pt;}
.y143{bottom:111.226585pt;}
.y59{bottom:116.586585pt;}
.ydc{bottom:116.986585pt;}
.y10b{bottom:118.106585pt;}
.y2a{bottom:121.226585pt;}
.yd0{bottom:123.946585pt;}
.y142{bottom:131.066585pt;}
.y58{bottom:131.946585pt;}
.y29{bottom:132.266585pt;}
.y10a{bottom:136.506585pt;}
.y7c{bottom:136.586585pt;}
.ycf{bottom:142.346585pt;}
.y57{bottom:147.306585pt;}
.y141{bottom:150.986585pt;}
.ya7{bottom:151.946585pt;}
.y113{bottom:153.466585pt;}
.yce{bottom:160.746585pt;}
.y56{bottom:162.586585pt;}
.yf8{bottom:162.986585pt;}
.y109{bottom:165.626585pt;}
.y7b{bottom:167.226585pt;}
.y140{bottom:170.826585pt;}
.y111{bottom:171.866585pt;}
.y112{bottom:177.866585pt;}
.y55{bottom:177.946585pt;}
.ya1{bottom:178.266585pt;}
.ycd{bottom:179.146585pt;}
.y89{bottom:182.586585pt;}
.y108{bottom:184.026585pt;}
.y28{bottom:186.106585pt;}
.y110{bottom:190.266585pt;}
.y13f{bottom:190.666585pt;}
.y54{bottom:193.306585pt;}
.yc7{bottom:193.626585pt;}
.ya0{bottom:197.546585pt;}
.y8f{bottom:197.946585pt;}
.yf7{bottom:200.906585pt;}
.ydb{bottom:202.426585pt;}
.y27{bottom:205.946585pt;}
.y53{bottom:208.586585pt;}
.y10f{bottom:208.666585pt;}
.ya6{bottom:208.906585pt;}
.y13e{bottom:210.506585pt;}
.y52{bottom:213.226585pt;}
.y9f{bottom:215.946585pt;}
.yf6{bottom:219.306585pt;}
.yda{bottom:220.826585pt;}
.yc6{bottom:222.266585pt;}
.y51{bottom:223.946585pt;}
.ya9{bottom:224.266585pt;}
.y10e{bottom:227.066585pt;}
.yaa{bottom:228.586585pt;}
.y26{bottom:229.466585pt;}
.y13d{bottom:230.346585pt;}
.y9e{bottom:234.346585pt;}
.yf5{bottom:237.706585pt;}
.yd8{bottom:239.226585pt;}
.y50{bottom:239.306585pt;}
.y7a{bottom:239.626585pt;}
.yca{bottom:240.346585pt;}
.yc5{bottom:240.666585pt;}
.y88{bottom:243.946585pt;}
.y25{bottom:244.106585pt;}
.yd9{bottom:244.586585pt;}
.y10d{bottom:245.466585pt;}
.y13c{bottom:250.266585pt;}
.y9d{bottom:252.746585pt;}
.y4f{bottom:254.586585pt;}
.y125{bottom:254.906585pt;}
.yf4{bottom:256.106585pt;}
.yd7{bottom:257.546585pt;}
.y24{bottom:258.746585pt;}
.yc4{bottom:259.066585pt;}
.y4e{bottom:259.226585pt;}
.y4d{bottom:269.946585pt;}
.y13b{bottom:270.106585pt;}
.y79{bottom:271.146585pt;}
.y23{bottom:273.386585pt;}
.yf3{bottom:274.506585pt;}
.y4c{bottom:274.586585pt;}
.yd6{bottom:275.946585pt;}
.yc3{bottom:277.466585pt;}
.y87{bottom:285.306585pt;}
.y4b{bottom:285.626585pt;}
.y22{bottom:288.026585pt;}
.y78{bottom:289.546585pt;}
.y86{bottom:289.946585pt;}
.yf2{bottom:292.906585pt;}
.yd5{bottom:294.346585pt;}
.yc9{bottom:294.906585pt;}
.yc2{bottom:295.866585pt;}
.y85{bottom:300.586585pt;}
.y21{bottom:302.666585pt;}
.y4a{bottom:303.626585pt;}
.y84{bottom:305.226585pt;}
.y77{bottom:307.946585pt;}
.y124{bottom:308.906585pt;}
.y13a{bottom:309.786585pt;}
.yf1{bottom:311.306585pt;}
.yd4{bottom:312.746585pt;}
.yc1{bottom:314.266585pt;}
.y83{bottom:315.946585pt;}
.y20{bottom:317.386585pt;}
.y8e{bottom:320.586585pt;}
.y48{bottom:322.026585pt;}
.y76{bottom:326.346585pt;}
.y49{bottom:328.026585pt;}
.y123{bottom:328.746585pt;}
.y139{bottom:329.626585pt;}
.yf0{bottom:329.706585pt;}
.y107{bottom:331.146585pt;}
.y82{bottom:331.306585pt;}
.yd2{bottom:331.626585pt;}
.y1f{bottom:332.026585pt;}
.ybf{bottom:332.666585pt;}
.yc0{bottom:338.666585pt;}
.y47{bottom:340.426585pt;}
.yd3{bottom:343.306585pt;}
.y75{bottom:344.746585pt;}
.y81{bottom:346.586585pt;}
.y1e{bottom:346.666585pt;}
.ycb{bottom:346.906585pt;}
.yef{bottom:348.106585pt;}
.y122{bottom:348.586585pt;}
.y106{bottom:349.546585pt;}
.y119{bottom:350.746585pt;}
.ybe{bottom:351.066585pt;}
.y80{bottom:351.226585pt;}
.y46{bottom:358.826585pt;}
.y1d{bottom:361.306585pt;}
.y9b{bottom:361.946585pt;}
.y7f{bottom:362.266585pt;}
.y74{bottom:363.146585pt;}
.yee{bottom:366.506585pt;}
.y105{bottom:367.946585pt;}
.y121{bottom:368.426585pt;}
.ycc{bottom:368.506585pt;}
.y138{bottom:369.386585pt;}
.ybd{bottom:369.466585pt;}
.y1c{bottom:375.946585pt;}
.y45{bottom:377.146585pt;}
.y9a{bottom:377.306585pt;}
.y73{bottom:381.546585pt;}
.yed{bottom:384.906585pt;}
.y104{bottom:386.346585pt;}
.y7e{bottom:387.546585pt;}
.ybc{bottom:387.866585pt;}
.y120{bottom:388.266585pt;}
.y137{bottom:389.226585pt;}
.y1b{bottom:390.586585pt;}
.y99{bottom:392.586585pt;}
.y44{bottom:395.546585pt;}
.y72{bottom:399.973252pt;}
.yec{bottom:403.333252pt;}
.y103{bottom:404.773252pt;}
.y1a{bottom:405.253252pt;}
.yc8{bottom:405.973252pt;}
.ybb{bottom:406.293252pt;}
.y98{bottom:407.973252pt;}
.y11f{bottom:408.213252pt;}
.y136{bottom:409.093252pt;}
.y43{bottom:413.973252pt;}
.y71{bottom:418.373252pt;}
.y19{bottom:419.893252pt;}
.y102{bottom:423.173252pt;}
.y97{bottom:423.253252pt;}
.yba{bottom:424.693252pt;}
.y11e{bottom:428.053252pt;}
.y135{bottom:428.933252pt;}
.y42{bottom:432.373252pt;}
.yeb{bottom:433.813252pt;}
.y18{bottom:434.533252pt;}
.y70{bottom:436.773252pt;}
.y96{bottom:438.613252pt;}
.y101{bottom:441.573252pt;}
.ya5{bottom:442.773252pt;}
.yb9{bottom:443.013252pt;}
.y118{bottom:443.253252pt;}
.y11d{bottom:447.893252pt;}
.y134{bottom:448.773252pt;}
.y17{bottom:448.853252pt;}
.y41{bottom:450.773252pt;}
.yea{bottom:452.213252pt;}
.y95{bottom:453.973252pt;}
.y6e{bottom:455.173252pt;}
.y100{bottom:459.973252pt;}
.y6f{bottom:461.173252pt;}
.yb8{bottom:461.413252pt;}
.y16{bottom:464.213252pt;}
.y11c{bottom:467.733252pt;}
.y133{bottom:468.693252pt;}
.y3f{bottom:469.173252pt;}
.y94{bottom:469.253252pt;}
.ye9{bottom:470.613252pt;}
.y6d{bottom:473.573252pt;}
.y93{bottom:473.893252pt;}
.y40{bottom:475.173252pt;}
.yff{bottom:478.373252pt;}
.y15{bottom:479.573252pt;}
.yb7{bottom:479.813252pt;}
.y117{bottom:484.613252pt;}
.y92{bottom:484.933252pt;}
.y3e{bottom:487.573252pt;}
.y132{bottom:488.533252pt;}
.ye8{bottom:489.013252pt;}
.y6c{bottom:491.973252pt;}
.y14{bottom:494.853252pt;}
.yfe{bottom:496.773252pt;}
.y9c{bottom:497.333252pt;}
.yb5{bottom:498.213252pt;}
.y116{bottom:499.973252pt;}
.yb6{bottom:504.213252pt;}
.y3d{bottom:505.973252pt;}
.ye7{bottom:507.413252pt;}
.y11b{bottom:507.493252pt;}
.y131{bottom:508.373252pt;}
.y13{bottom:510.213252pt;}
.y6a{bottom:510.373252pt;}
.yfd{bottom:515.173252pt;}
.y115{bottom:515.573252pt;}
.y6b{bottom:515.733252pt;}
.y8d{bottom:516.373252pt;}
.yb4{bottom:516.613252pt;}
.y3c{bottom:524.373252pt;}
.y12{bottom:525.573252pt;}
.ye6{bottom:525.813252pt;}
.y11a{bottom:527.333252pt;}
.y130{bottom:528.213252pt;}
.y69{bottom:528.773252pt;}
.yfc{bottom:533.573252pt;}
.y91{bottom:534.773252pt;}
.yb3{bottom:535.013252pt;}
.y11{bottom:540.853252pt;}
.y3b{bottom:542.773252pt;}
.ye5{bottom:544.213252pt;}
.y68{bottom:547.173252pt;}
.y12f{bottom:548.053252pt;}
.yfb{bottom:551.973252pt;}
.y8c{bottom:553.173252pt;}
.yb2{bottom:553.413252pt;}
.y10{bottom:556.213252pt;}
.y39{bottom:561.173252pt;}
.ye4{bottom:562.613252pt;}
.y67{bottom:565.573252pt;}
.y3a{bottom:567.173252pt;}
.y12e{bottom:567.973252pt;}
.yfa{bottom:570.373252pt;}
.yf{bottom:571.573252pt;}
.yb1{bottom:571.813252pt;}
.y38{bottom:579.573252pt;}
.ye3{bottom:581.013252pt;}
.y66{bottom:583.973252pt;}
.ye{bottom:586.853252pt;}
.y12d{bottom:587.813252pt;}
.yb0{bottom:590.213252pt;}
.y37{bottom:597.973252pt;}
.yf9{bottom:600.933252pt;}
.yd{bottom:602.213252pt;}
.y65{bottom:602.373252pt;}
.y12c{bottom:607.653252pt;}
.y8b{bottom:608.373252pt;}
.ye2{bottom:610.133252pt;}
.y36{bottom:616.373252pt;}
.yc{bottom:618.133252pt;}
.y64{bottom:620.773252pt;}
.ya4{bottom:626.773252pt;}
.yaf{bottom:627.013252pt;}
.y12b{bottom:627.493252pt;}
.ye1{bottom:628.533252pt;}
.y35{bottom:634.773252pt;}
.y63{bottom:639.173252pt;}
.y114{bottom:645.173252pt;}
.yae{bottom:645.413252pt;}
.ye0{bottom:646.853252pt;}
.y12a{bottom:647.333252pt;}
.yb{bottom:650.773252pt;}
.y34{bottom:653.173252pt;}
.y62{bottom:657.573252pt;}
.y7d{bottom:663.573252pt;}
.yad{bottom:663.813252pt;}
.ydf{bottom:665.253252pt;}
.y129{bottom:667.253252pt;}
.y33{bottom:671.573252pt;}
.y61{bottom:675.973252pt;}
.ya{bottom:676.853252pt;}
.yac{bottom:682.213252pt;}
.yde{bottom:683.653252pt;}
.y128{bottom:687.093252pt;}
.y32{bottom:689.973252pt;}
.y60{bottom:694.373252pt;}
.y8a{bottom:700.373252pt;}
.y9{bottom:702.933252pt;}
.y127{bottom:706.933252pt;}
.y31{bottom:708.373252pt;}
.y5f{bottom:712.773252pt;}
.ya3{bottom:718.773252pt;}
.y126{bottom:726.773252pt;}
.y8{bottom:728.933252pt;}
.y5e{bottom:731.173252pt;}
.yab{bottom:737.173252pt;}
.y30{bottom:746.639919pt;}
.y5c{bottom:749.599919pt;}
.y7{bottom:755.039919pt;}
.y5d{bottom:755.599919pt;}
.y2f{bottom:766.479919pt;}
.y5b{bottom:767.999919pt;}
.ydd{bottom:773.999919pt;}
.y6{bottom:781.039919pt;}
.y2e{bottom:786.399919pt;}
.y90{bottom:792.399919pt;}
.y2d{bottom:814.879919pt;}
.y5a{bottom:815.199919pt;}
.y2{bottom:832.719919pt;}
.hc{height:33.918750pt;}
.h11{height:41.749531pt;}
.he{height:41.770312pt;}
.h4{height:47.109375pt;}
.h9{height:47.742188pt;}
.h13{height:47.908125pt;}
.h8{height:49.148438pt;}
.h12{height:52.422344pt;}
.h7{height:52.448437pt;}
.hf{height:57.375000pt;}
.h10{height:57.473437pt;}
.h3{height:58.245469pt;}
.hd{height:62.781250pt;}
.h6{height:62.812500pt;}
.ha{height:63.656250pt;}
.hb{height:64.500000pt;}
.h14{height:65.770312pt;}
.h5{height:84.981094pt;}
.h2{height:907.199919pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:642.559981pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:85.039990pt;}
.x9{left:89.359990pt;}
.x1a{left:93.706657pt;}
.x4{left:113.386657pt;}
.x12{left:127.706648pt;}
.x13{left:133.066657pt;}
.x1b{left:134.826648pt;}
.x34{left:136.586648pt;}
.x1c{left:145.546657pt;}
.x35{left:147.306657pt;}
.x1f{left:149.066648pt;}
.x4f{left:150.426648pt;}
.x2{left:153.546648pt;}
.x4d{left:157.946648pt;}
.x3{left:158.906657pt;}
.x1d{left:160.186648pt;}
.x50{left:161.146657pt;}
.x5a{left:164.986648pt;}
.xc{left:169.226648pt;}
.x1e{left:170.906657pt;}
.xd{left:174.586657pt;}
.x5b{left:175.706657pt;}
.x43{left:177.866648pt;}
.x4a{left:185.466657pt;}
.x44{left:188.586657pt;}
.x57{left:202.426648pt;}
.x3a{left:204.506648pt;}
.x38{left:208.106648pt;}
.x58{left:213.146657pt;}
.x20{left:215.946648pt;}
.x39{left:218.826657pt;}
.x21{left:226.666657pt;}
.x2c{left:236.826648pt;}
.x28{left:242.426648pt;}
.x2d{left:247.546657pt;}
.x24{left:250.826648pt;}
.x29{left:253.146657pt;}
.x41{left:255.146648pt;}
.x5{left:258.186648pt;}
.x25{left:261.546657pt;}
.x6{left:263.546657pt;}
.x42{left:265.866657pt;}
.x59{left:275.946657pt;}
.x3d{left:277.466648pt;}
.x3e{left:288.213324pt;}
.xa{left:300.133314pt;}
.xb{left:305.493324pt;}
.x36{left:307.653314pt;}
.x37{left:318.373324pt;}
.x5d{left:321.333324pt;}
.x16{left:337.093314pt;}
.xe{left:338.373314pt;}
.xf{left:343.733324pt;}
.x17{left:347.813324pt;}
.x54{left:355.173314pt;}
.x3b{left:357.333314pt;}
.x22{left:363.013314pt;}
.x55{left:365.893324pt;}
.x3c{left:368.053324pt;}
.x23{left:373.733324pt;}
.x4e{left:379.253324pt;}
.x32{left:382.853314pt;}
.x33{left:393.573324pt;}
.x53{left:404.373324pt;}
.x3f{left:421.413314pt;}
.x4b{left:426.693314pt;}
.x5c{left:429.333314pt;}
.x40{left:432.133324pt;}
.x7{left:434.933314pt;}
.x4c{left:437.413324pt;}
.x8{left:440.293324pt;}
.x2a{left:443.173314pt;}
.x49{left:449.973314pt;}
.x2b{left:453.893324pt;}
.x10{left:460.053314pt;}
.x26{left:463.333314pt;}
.x11{left:465.413324pt;}
.x27{left:474.079990pt;}
.x30{left:484.079981pt;}
.x47{left:488.639981pt;}
.x31{left:494.799990pt;}
.x48{left:499.359990pt;}
.x51{left:502.719981pt;}
.x45{left:503.679981pt;}
.x52{left:513.439990pt;}
.x46{left:514.399990pt;}
.x56{left:522.479981pt;}
.x14{left:533.919981pt;}
.x2e{left:534.959981pt;}
.x15{left:539.279990pt;}
.x2f{left:545.679990pt;}
.x18{left:546.879981pt;}
.x19{left:557.599990pt;}
}




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