
    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_72da1e2df2e4e045376f1ace.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.402354;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_b96adf24d0251d3d494b352f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_9da7e1aae70d984675a6eee3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_f2229914de2527308bbceae7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_046655fa6d3c2f485dbca553.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_003bfa96d99c214d2d24e88a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ce237087a54ecf5ddef9d328.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7ab4dbd98643c2c000e14a9b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.117188;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_6faa9f34dadbdc3304c5f30d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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_eaa04b0f35e4b30a45d1ab5b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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:-106.560000px;}
.v1{vertical-align:-97.920000px;}
.v2{vertical-align:-96.480000px;}
.v4{vertical-align:-95.160000px;}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-2.736000px;}
.ls3a{letter-spacing:-2.088000px;}
.ls4b{letter-spacing:-1.944000px;}
.ls1f{letter-spacing:-1.728000px;}
.ls3c{letter-spacing:-1.584000px;}
.ls1a{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.296000px;}
.ls30{letter-spacing:-1.152000px;}
.ls24{letter-spacing:-0.936000px;}
.ls15{letter-spacing:-0.792000px;}
.ls4a{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.648000px;}
.ls35{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.377400px;}
.ls12{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.162600px;}
.ls25{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.288000px;}
.ls32{letter-spacing:0.408000px;}
.ls37{letter-spacing:0.468000px;}
.ls11{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.541200px;}
.ls5{letter-spacing:0.593400px;}
.ls1c{letter-spacing:0.648000px;}
.ls39{letter-spacing:0.684000px;}
.ls1e{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.732000px;}
.ls33{letter-spacing:0.792000px;}
.ls2a{letter-spacing:0.840000px;}
.ls34{letter-spacing:0.900000px;}
.ls18{letter-spacing:1.152000px;}
.ls38{letter-spacing:1.272000px;}
.ls13{letter-spacing:1.440000px;}
.ls14{letter-spacing:1.584000px;}
.ls36{letter-spacing:1.728000px;}
.ls29{letter-spacing:1.944000px;}
.ls1d{letter-spacing:2.088000px;}
.lse{letter-spacing:2.160000px;}
.ls47{letter-spacing:2.280000px;}
.ls26{letter-spacing:2.592000px;}
.ls20{letter-spacing:2.880000px;}
.ls21{letter-spacing:3.600000px;}
.ls49{letter-spacing:3.720000px;}
.ls48{letter-spacing:3.780000px;}
.ls27{letter-spacing:4.320000px;}
.lsf{letter-spacing:5.040000px;}
.lsc{letter-spacing:6.480000px;}
.ls2e{letter-spacing:7.920000px;}
.ls46{letter-spacing:8.040000px;}
.lsa{letter-spacing:9.360000px;}
.ls3b{letter-spacing:9.480000px;}
.ls43{letter-spacing:9.540000px;}
.lsd{letter-spacing:10.800000px;}
.ls41{letter-spacing:12.240000px;}
.ls3d{letter-spacing:12.420000px;}
.ls2f{letter-spacing:13.680000px;}
.ls42{letter-spacing:15.120000px;}
.ls2d{letter-spacing:16.560000px;}
.ls28{letter-spacing:16.704000px;}
.ls23{letter-spacing:18.000000px;}
.ls31{letter-spacing:18.012000px;}
.ls22{letter-spacing:20.880000px;}
.ls45{letter-spacing:22.320000px;}
.ls44{letter-spacing:22.500000px;}
.ls3e{letter-spacing:23.760000px;}
.ls4c{letter-spacing:26.640000px;}
.ls2c{letter-spacing:29.520000px;}
.ls1{letter-spacing:30.061440px;}
.ls2b{letter-spacing:30.960000px;}
.ls4d{letter-spacing:33.960000px;}
.ls40{letter-spacing:36.900000px;}
.ls3f{letter-spacing:38.160000px;}
.ls3{letter-spacing:845.885280px;}
.lsb{letter-spacing:1056.696000px;}
.ls0{letter-spacing:1207.117440px;}
.ls2{letter-spacing:1253.197440px;}
.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;}
}
.ws26{word-spacing:-72.504000px;}
.ws22{word-spacing:-72.288000px;}
.ws20{word-spacing:-72.000000px;}
.ws24{word-spacing:-70.848000px;}
.ws23{word-spacing:-41.328000px;}
.ws1c{word-spacing:-41.112000px;}
.ws18{word-spacing:-40.608000px;}
.ws25{word-spacing:-39.672000px;}
.ws28{word-spacing:-38.880000px;}
.ws0{word-spacing:-33.713400px;}
.ws2{word-spacing:-33.661200px;}
.ws1{word-spacing:-30.612000px;}
.ws5{word-spacing:-24.120000px;}
.ws3{word-spacing:-23.957400px;}
.ws4{word-spacing:-23.742600px;}
.ws1e{word-spacing:-22.320000px;}
.ws7{word-spacing:-20.880000px;}
.ws1d{word-spacing:-20.592000px;}
.ws16{word-spacing:-20.088000px;}
.ws1f{word-spacing:-19.944000px;}
.wsc{word-spacing:-19.584000px;}
.wsb{word-spacing:-19.440000px;}
.ws11{word-spacing:-19.152000px;}
.ws17{word-spacing:-18.720000px;}
.ws15{word-spacing:-18.648000px;}
.ws9{word-spacing:-18.504000px;}
.wsf{word-spacing:-18.288000px;}
.wse{word-spacing:-18.144000px;}
.ws10{word-spacing:-18.000000px;}
.ws1b{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.712000px;}
.ws27{word-spacing:-17.496000px;}
.ws14{word-spacing:-17.352000px;}
.wsd{word-spacing:-17.208000px;}
.ws1a{word-spacing:-17.064000px;}
.ws21{word-spacing:-16.848000px;}
.ws8{word-spacing:-16.704000px;}
.ws13{word-spacing:-16.560000px;}
.ws2a{word-spacing:-16.416000px;}
.ws19{word-spacing:-16.272000px;}
.ws2b{word-spacing:-16.056000px;}
.ws29{word-spacing:-15.912000px;}
.ws12{word-spacing:-15.264000px;}
.ws6{word-spacing:0.000000px;}
._22{margin-left:-17.883360px;}
._18{margin-left:-16.435680px;}
._1b{margin-left:-13.722240px;}
._16{margin-left:-11.946240px;}
._17{margin-left:-10.640640px;}
._15{margin-left:-8.591520px;}
._1a{margin-left:-7.500000px;}
._19{margin-left:-5.340480px;}
._f{margin-left:-4.308480px;}
._6{margin-left:-2.491680px;}
._0{margin-left:-1.192320px;}
._1{width:1.059840px;}
._4{width:2.148960px;}
._9{width:3.825120px;}
._10{width:5.040000px;}
._11{width:6.427680px;}
._13{width:7.458720px;}
._d{width:8.544000px;}
._e{width:9.714720px;}
._c{width:10.751520px;}
._12{width:12.384480px;}
._a{width:13.683840px;}
._b{width:15.280320px;}
._23{width:16.504320px;}
._7{width:19.036800px;}
._8{width:20.505600px;}
._21{width:21.825120px;}
._1e{width:23.190720px;}
._1c{width:25.180800px;}
._1d{width:26.196960px;}
._24{width:27.444000px;}
._33{width:28.596000px;}
._34{width:29.670240px;}
._26{width:30.847200px;}
._3f{width:31.946400px;}
._41{width:33.300000px;}
._30{width:34.374720px;}
._31{width:35.555040px;}
._20{width:37.042080px;}
._1f{width:38.780160px;}
._25{width:40.243680px;}
._44{width:41.904480px;}
._43{width:43.240320px;}
._2c{width:45.674400px;}
._2b{width:47.219040px;}
._29{width:50.832000px;}
._2a{width:54.932160px;}
._28{width:59.088000px;}
._32{width:64.212000px;}
._42{width:65.568000px;}
._2f{width:67.892160px;}
._27{width:70.772160px;}
._2e{width:74.196000px;}
._2d{width:76.086240px;}
._40{width:107.656320px;}
._3c{width:146.850720px;}
._3e{width:148.284480px;}
._3d{width:149.706720px;}
._35{width:151.056000px;}
._36{width:152.796480px;}
._37{width:153.882240px;}
._38{width:155.151840px;}
._39{width:156.907680px;}
._3a{width:172.188480px;}
._3b{width:173.963520px;}
._3{width:527.880000px;}
._2{width:576.552960px;}
._5{width:846.041280px;}
._14{width:848.184000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(47,84,150);}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs6{font-size:96.480000px;}
.fs3{font-size:119.520000px;}
.fs1{font-size:132.480000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:4.320000px;}
.ye7{bottom:4.350000px;}
.yc0{bottom:4.365000px;}
.y83{bottom:4.680000px;}
.yf5{bottom:6.120000px;}
.y9b{bottom:6.165000px;}
.yd7{bottom:6.480000px;}
.y11f{bottom:24.834000px;}
.yae{bottom:24.840000px;}
.ybd{bottom:24.870000px;}
.ye8{bottom:24.885000px;}
.yb5{bottom:25.194000px;}
.y7f{bottom:25.200000px;}
.y82{bottom:25.230000px;}
.y8c{bottom:25.245000px;}
.y11e{bottom:45.354000px;}
.yd9{bottom:45.360000px;}
.yfa{bottom:45.390000px;}
.y120{bottom:45.405000px;}
.yb4{bottom:45.714000px;}
.yc9{bottom:45.720000px;}
.ybc{bottom:45.750000px;}
.yb8{bottom:45.765000px;}
.y102{bottom:46.074000px;}
.y86{bottom:46.080000px;}
.y81{bottom:46.110000px;}
.y8b{bottom:46.125000px;}
.y1b{bottom:52.560000px;}
.y1a{bottom:57.240000px;}
.y10a{bottom:65.910000px;}
.y101{bottom:66.234000px;}
.y10c{bottom:66.240000px;}
.ybb{bottom:66.270000px;}
.y103{bottom:66.594000px;}
.y85{bottom:66.600000px;}
.y88{bottom:66.630000px;}
.yb3{bottom:66.639000px;}
.y8a{bottom:66.645000px;}
.yc8{bottom:86.790000px;}
.y115{bottom:86.805000px;}
.ydc{bottom:87.120000px;}
.yba{bottom:87.150000px;}
.yb2{bottom:87.159000px;}
.ybf{bottom:87.165000px;}
.yac{bottom:87.480000px;}
.y9f{bottom:87.510000px;}
.y100{bottom:87.519000px;}
.yb7{bottom:87.525000px;}
.yc7{bottom:107.670000px;}
.ye2{bottom:107.685000px;}
.yd1{bottom:108.000000px;}
.y9e{bottom:108.030000px;}
.yb1{bottom:108.039000px;}
.yab{bottom:108.045000px;}
.y12f{bottom:110.916000px;}
.yff{bottom:113.796000px;}
.y7c{bottom:115.236000px;}
.y76{bottom:115.596000px;}
.yc5{bottom:128.190000px;}
.ye0{bottom:128.205000px;}
.ydb{bottom:128.550000px;}
.ye1{bottom:128.565000px;}
.y9d{bottom:128.910000px;}
.yaa{bottom:128.925000px;}
.y19{bottom:129.636000px;}
.y95{bottom:131.076000px;}
.yb0{bottom:133.236000px;}
.y11d{bottom:135.396000px;}
.y12e{bottom:142.236000px;}
.y75{bottom:146.556000px;}
.yc4{bottom:149.070000px;}
.yd0{bottom:149.430000px;}
.ya9{bottom:149.445000px;}
.yf1{bottom:149.475000px;}
.ye4{bottom:154.110000px;}
.y18{bottom:156.990000px;}
.y94{bottom:162.030000px;}
.yc3{bottom:169.590000px;}
.y114{bottom:169.635000px;}
.yc6{bottom:169.950000px;}
.ydf{bottom:169.965000px;}
.y108{bottom:169.995000px;}
.ycf{bottom:170.310000px;}
.ya8{bottom:170.325000px;}
.yf0{bottom:170.355000px;}
.y12d{bottom:173.190000px;}
.y10d{bottom:176.430000px;}
.y74{bottom:177.510000px;}
.y113{bottom:190.515000px;}
.yc2{bottom:190.830000px;}
.ya7{bottom:190.845000px;}
.yde{bottom:190.875000px;}
.y93{bottom:192.990000px;}
.y47{bottom:193.350000px;}
.ycc{bottom:198.795000px;}
.y12c{bottom:204.195000px;}
.y17{bottom:208.515000px;}
.y73{bottom:208.875000px;}
.y110{bottom:211.035000px;}
.y112{bottom:211.395000px;}
.yce{bottom:211.710000px;}
.ya6{bottom:211.725000px;}
.yef{bottom:211.755000px;}
.y46{bottom:215.355000px;}
.yfe{bottom:218.235000px;}
.y92{bottom:223.995000px;}
.ycd{bottom:232.230000px;}
.ya5{bottom:232.275000px;}
.y12b{bottom:235.155000px;}
.y45{bottom:237.315000px;}
.yf6{bottom:238.395000px;}
.y11c{bottom:239.475000px;}
.y72{bottom:239.835000px;}
.y16{bottom:249.555000px;}
.y111{bottom:252.435000px;}
.yd2{bottom:252.795000px;}
.ya4{bottom:253.155000px;}
.y91{bottom:254.955000px;}
.yaf{bottom:258.195000px;}
.ye3{bottom:258.555000px;}
.y44{bottom:259.275000px;}
.y12a{bottom:266.115000px;}
.y71{bottom:270.795000px;}
.yad{bottom:273.315000px;}
.ya3{bottom:273.675000px;}
.yee{bottom:273.705000px;}
.y15{bottom:276.915000px;}
.y43{bottom:281.235000px;}
.y90{bottom:286.275000px;}
.ya2{bottom:294.555000px;}
.yed{bottom:294.585000px;}
.y129{bottom:297.435000px;}
.y42{bottom:301.755000px;}
.y14{bottom:302.115000px;}
.ya1{bottom:315.075000px;}
.yec{bottom:315.105000px;}
.y8f{bottom:317.235000px;}
.y41{bottom:322.665000px;}
.y11b{bottom:323.025000px;}
.y128{bottom:328.425000px;}
.y70{bottom:332.745000px;}
.yeb{bottom:335.985000px;}
.ya0{bottom:341.745000px;}
.yf4{bottom:342.825000px;}
.y40{bottom:343.185000px;}
.y8e{bottom:348.225000px;}
.y13{bottom:356.505000px;}
.y11a{bottom:359.385000px;}
.y10b{bottom:363.345000px;}
.y3f{bottom:363.705000px;}
.y6f{bottom:364.065000px;}
.y8d{bottom:365.145000px;}
.yea{bottom:377.385000px;}
.y12{bottom:380.625000px;}
.yf3{bottom:380.985000px;}
.ydd{bottom:383.505000px;}
.y3e{bottom:384.585000px;}
.y119{bottom:390.345000px;}
.y6e{bottom:395.025000px;}
.y11{bottom:405.105000px;}
.yfd{bottom:405.825000px;}
.y118{bottom:407.625000px;}
.yf2{bottom:411.945000px;}
.y127{bottom:421.665000px;}
.y3d{bottom:425.985000px;}
.y89{bottom:428.145000px;}
.ye9{bottom:428.865000px;}
.y10{bottom:445.785000px;}
.y3c{bottom:446.550000px;}
.y126{bottom:452.670000px;}
.y6d{bottom:456.990000px;}
.y3b{bottom:467.430000px;}
.y117{bottom:470.310000px;}
.yf{bottom:473.190000px;}
.y125{bottom:483.630000px;}
.y3a{bottom:487.950000px;}
.y6c{bottom:488.310000px;}
.ycb{bottom:489.390000px;}
.ye{bottom:500.550000px;}
.y39{bottom:508.830000px;}
.yfc{bottom:510.270000px;}
.y87{bottom:511.710000px;}
.y124{bottom:514.590000px;}
.y6b{bottom:519.270000px;}
.yd{bottom:525.030000px;}
.y38{bottom:529.350000px;}
.y109{bottom:530.070000px;}
.y123{bottom:531.870000px;}
.yc{bottom:549.150000px;}
.y37{bottom:550.230000px;}
.yca{bottom:552.390000px;}
.y36{bottom:570.750000px;}
.yb{bottom:574.740000px;}
.y6a{bottom:581.220000px;}
.yda{bottom:591.300000px;}
.y35{bottom:591.660000px;}
.yfb{bottom:593.820000px;}
.y84{bottom:595.260000px;}
.ya{bottom:606.060000px;}
.y34{bottom:612.540000px;}
.yc1{bottom:615.420000px;}
.y33{bottom:634.500000px;}
.y9{bottom:637.740000px;}
.y79{bottom:643.140000px;}
.y69{bottom:643.500000px;}
.y107{bottom:655.020000px;}
.y32{bottom:656.460000px;}
.yf9{bottom:656.820000px;}
.y59{bottom:670.140000px;}
.y9c{bottom:673.740000px;}
.y78{bottom:674.100000px;}
.y68{bottom:674.460000px;}
.y122{bottom:677.340000px;}
.y80{bottom:678.780000px;}
.y8{bottom:691.740000px;}
.y116{bottom:698.970000px;}
.y31{bottom:702.570000px;}
.y58{bottom:704.730000px;}
.y67{bottom:705.450000px;}
.y30{bottom:723.090000px;}
.y57{bottom:726.690000px;}
.y66{bottom:736.770000px;}
.y7{bottom:740.370000px;}
.y7e{bottom:741.810000px;}
.y2f{bottom:743.970000px;}
.yd8{bottom:757.650000px;}
.y56{bottom:758.010000px;}
.yf8{bottom:760.890000px;}
.y6{bottom:764.490000px;}
.y65{bottom:767.730000px;}
.y10f{bottom:782.490000px;}
.y2e{bottom:785.370000px;}
.y55{bottom:789.330000px;}
.y5{bottom:795.090000px;}
.y64{bottom:798.690000px;}
.y2d{bottom:805.890000px;}
.y9a{bottom:819.570000px;}
.y54{bottom:820.650000px;}
.ybe{bottom:823.170000px;}
.y2c{bottom:826.815000px;}
.y7b{bottom:829.335000px;}
.y63{bottom:829.695000px;}
.yd6{bottom:841.215000px;}
.y106{bottom:841.935000px;}
.y121{bottom:844.455000px;}
.y2b{bottom:847.335000px;}
.y4{bottom:848.055000px;}
.y53{bottom:852.015000px;}
.y99{bottom:857.415000px;}
.y7a{bottom:860.655000px;}
.y62{bottom:861.015000px;}
.y2a{bottom:868.215000px;}
.yd5{bottom:879.375000px;}
.y52{bottom:883.335000px;}
.y29{bottom:888.735000px;}
.y3{bottom:890.175000px;}
.y77{bottom:891.615000px;}
.y61{bottom:891.975000px;}
.y28{bottom:909.615000px;}
.yd4{bottom:909.975000px;}
.y51{bottom:914.655000px;}
.y2{bottom:915.735000px;}
.y98{bottom:919.695000px;}
.y60{bottom:922.935000px;}
.yb9{bottom:927.255000px;}
.y27{bottom:930.135000px;}
.y50{bottom:946.335000px;}
.ye6{bottom:948.135000px;}
.y97{bottom:950.655000px;}
.y26{bottom:951.015000px;}
.y5f{bottom:953.925000px;}
.y105{bottom:966.885000px;}
.y4f{bottom:968.685000px;}
.y25{bottom:971.565000px;}
.y96{bottom:984.885000px;}
.y1{bottom:985.245000px;}
.yf7{bottom:990.285000px;}
.y4e{bottom:991.005000px;}
.y24{bottom:992.445000px;}
.ye5{bottom:1010.805000px;}
.y23{bottom:1012.965000px;}
.y4d{bottom:1013.325000px;}
.y5e{bottom:1016.205000px;}
.yd3{bottom:1031.685000px;}
.y22{bottom:1033.845000px;}
.y4c{bottom:1044.645000px;}
.y5d{bottom:1047.165000px;}
.yb6{bottom:1052.205000px;}
.y21{bottom:1055.805000px;}
.y104{bottom:1071.285000px;}
.y10e{bottom:1073.085000px;}
.y4b{bottom:1075.965000px;}
.y20{bottom:1077.405000px;}
.y5c{bottom:1078.170000px;}
.y1f{bottom:1098.330000px;}
.y4a{bottom:1107.330000px;}
.y7d{bottom:1109.130000px;}
.y5b{bottom:1109.490000px;}
.y1e{bottom:1121.730000px;}
.y49{bottom:1139.730000px;}
.y5a{bottom:1140.090000px;}
.y48{bottom:1140.450000px;}
.y1d{bottom:1141.170000px;}
.h2c{height:20.880000px;}
.hb{height:20.916000px;}
.h24{height:22.320000px;}
.h17{height:22.356000px;}
.h1f{height:22.680000px;}
.h12{height:41.400000px;}
.h25{height:41.436000px;}
.hd{height:50.229844px;}
.hf{height:54.597656px;}
.h4{height:61.259062px;}
.h27{height:61.920000px;}
.h22{height:61.956000px;}
.h16{height:62.280000px;}
.h13{height:62.316000px;}
.hc{height:68.084282px;}
.h10{height:70.628906px;}
.ha{height:70.664062px;}
.h11{height:72.562500px;}
.h2{height:74.004654px;}
.he{height:81.970312px;}
.h14{height:82.800000px;}
.h15{height:82.836000px;}
.h7{height:85.845399px;}
.h8{height:89.225156px;}
.h9{height:99.166237px;}
.h1c{height:103.356000px;}
.h28{height:103.680000px;}
.h1b{height:103.716000px;}
.h5{height:110.532656px;}
.h3{height:122.518125px;}
.h2a{height:123.876000px;}
.h1a{height:124.236000px;}
.h6{height:133.171875px;}
.h2d{height:144.756000px;}
.h18{height:145.116000px;}
.h20{height:165.630000px;}
.h29{height:186.195000px;}
.h26{height:186.510000px;}
.h1d{height:207.030000px;}
.h21{height:207.075000px;}
.h2b{height:227.910000px;}
.h1e{height:289.875000px;}
.h19{height:331.275000px;}
.h23{height:393.585000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:9.000000px;}
.w4{width:18.000000px;}
.wf{width:83.916000px;}
.w9{width:84.276000px;}
.wd{width:84.636000px;}
.w5{width:94.716000px;}
.w8{width:104.796000px;}
.wc{width:127.116000px;}
.wa{width:211.425000px;}
.wb{width:211.755000px;}
.we{width:211.785000px;}
.w10{width:212.115000px;}
.w7{width:217.515000px;}
.w6{width:217.545000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x17{left:7.920000px;}
.x5{left:127.475987px;}
.x8{left:137.555987px;}
.x12{left:144.071987px;}
.x13{left:160.634987px;}
.x7{left:171.794987px;}
.x14{left:181.514987px;}
.x1a{left:213.195000px;}
.x18{left:223.635000px;}
.x2{left:240.224987px;}
.xd{left:269.384987px;}
.x4{left:273.344987px;}
.xc{left:303.224987px;}
.xb{left:330.989987px;}
.x16{left:344.309987px;}
.xe{left:352.229987px;}
.x9{left:371.669987px;}
.x11{left:377.789987px;}
.x10{left:391.469987px;}
.x1d{left:404.429987px;}
.x1b{left:425.700000px;}
.x6{left:435.059987px;}
.x15{left:437.580000px;}
.xf{left:442.260000px;}
.x3{left:446.579987px;}
.xa{left:448.379987px;}
.x1{left:576.929987px;}
.x1c{left:638.175000px;}
.x19{left:660.135000px;}
@media print{
.v3{vertical-align:-94.720000pt;}
.v1{vertical-align:-87.040000pt;}
.v2{vertical-align:-85.760000pt;}
.v4{vertical-align:-84.586667pt;}
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-2.432000pt;}
.ls3a{letter-spacing:-1.856000pt;}
.ls4b{letter-spacing:-1.728000pt;}
.ls1f{letter-spacing:-1.536000pt;}
.ls3c{letter-spacing:-1.408000pt;}
.ls1a{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.152000pt;}
.ls30{letter-spacing:-1.024000pt;}
.ls24{letter-spacing:-0.832000pt;}
.ls15{letter-spacing:-0.704000pt;}
.ls4a{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.576000pt;}
.ls35{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.335467pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.144533pt;}
.ls25{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.256000pt;}
.ls32{letter-spacing:0.362667pt;}
.ls37{letter-spacing:0.416000pt;}
.ls11{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.481067pt;}
.ls5{letter-spacing:0.527467pt;}
.ls1c{letter-spacing:0.576000pt;}
.ls39{letter-spacing:0.608000pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.650667pt;}
.ls33{letter-spacing:0.704000pt;}
.ls2a{letter-spacing:0.746667pt;}
.ls34{letter-spacing:0.800000pt;}
.ls18{letter-spacing:1.024000pt;}
.ls38{letter-spacing:1.130667pt;}
.ls13{letter-spacing:1.280000pt;}
.ls14{letter-spacing:1.408000pt;}
.ls36{letter-spacing:1.536000pt;}
.ls29{letter-spacing:1.728000pt;}
.ls1d{letter-spacing:1.856000pt;}
.lse{letter-spacing:1.920000pt;}
.ls47{letter-spacing:2.026667pt;}
.ls26{letter-spacing:2.304000pt;}
.ls20{letter-spacing:2.560000pt;}
.ls21{letter-spacing:3.200000pt;}
.ls49{letter-spacing:3.306667pt;}
.ls48{letter-spacing:3.360000pt;}
.ls27{letter-spacing:3.840000pt;}
.lsf{letter-spacing:4.480000pt;}
.lsc{letter-spacing:5.760000pt;}
.ls2e{letter-spacing:7.040000pt;}
.ls46{letter-spacing:7.146667pt;}
.lsa{letter-spacing:8.320000pt;}
.ls3b{letter-spacing:8.426667pt;}
.ls43{letter-spacing:8.480000pt;}
.lsd{letter-spacing:9.600000pt;}
.ls41{letter-spacing:10.880000pt;}
.ls3d{letter-spacing:11.040000pt;}
.ls2f{letter-spacing:12.160000pt;}
.ls42{letter-spacing:13.440000pt;}
.ls2d{letter-spacing:14.720000pt;}
.ls28{letter-spacing:14.848000pt;}
.ls23{letter-spacing:16.000000pt;}
.ls31{letter-spacing:16.010667pt;}
.ls22{letter-spacing:18.560000pt;}
.ls45{letter-spacing:19.840000pt;}
.ls44{letter-spacing:20.000000pt;}
.ls3e{letter-spacing:21.120000pt;}
.ls4c{letter-spacing:23.680000pt;}
.ls2c{letter-spacing:26.240000pt;}
.ls1{letter-spacing:26.721280pt;}
.ls2b{letter-spacing:27.520000pt;}
.ls4d{letter-spacing:30.186667pt;}
.ls40{letter-spacing:32.800000pt;}
.ls3f{letter-spacing:33.920000pt;}
.ls3{letter-spacing:751.898027pt;}
.lsb{letter-spacing:939.285333pt;}
.ls0{letter-spacing:1072.993280pt;}
.ls2{letter-spacing:1113.953280pt;}
.ws26{word-spacing:-64.448000pt;}
.ws22{word-spacing:-64.256000pt;}
.ws20{word-spacing:-64.000000pt;}
.ws24{word-spacing:-62.976000pt;}
.ws23{word-spacing:-36.736000pt;}
.ws1c{word-spacing:-36.544000pt;}
.ws18{word-spacing:-36.096000pt;}
.ws25{word-spacing:-35.264000pt;}
.ws28{word-spacing:-34.560000pt;}
.ws0{word-spacing:-29.967467pt;}
.ws2{word-spacing:-29.921067pt;}
.ws1{word-spacing:-27.210667pt;}
.ws5{word-spacing:-21.440000pt;}
.ws3{word-spacing:-21.295467pt;}
.ws4{word-spacing:-21.104533pt;}
.ws1e{word-spacing:-19.840000pt;}
.ws7{word-spacing:-18.560000pt;}
.ws1d{word-spacing:-18.304000pt;}
.ws16{word-spacing:-17.856000pt;}
.ws1f{word-spacing:-17.728000pt;}
.wsc{word-spacing:-17.408000pt;}
.wsb{word-spacing:-17.280000pt;}
.ws11{word-spacing:-17.024000pt;}
.ws17{word-spacing:-16.640000pt;}
.ws15{word-spacing:-16.576000pt;}
.ws9{word-spacing:-16.448000pt;}
.wsf{word-spacing:-16.256000pt;}
.wse{word-spacing:-16.128000pt;}
.ws10{word-spacing:-16.000000pt;}
.ws1b{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws27{word-spacing:-15.552000pt;}
.ws14{word-spacing:-15.424000pt;}
.wsd{word-spacing:-15.296000pt;}
.ws1a{word-spacing:-15.168000pt;}
.ws21{word-spacing:-14.976000pt;}
.ws8{word-spacing:-14.848000pt;}
.ws13{word-spacing:-14.720000pt;}
.ws2a{word-spacing:-14.592000pt;}
.ws19{word-spacing:-14.464000pt;}
.ws2b{word-spacing:-14.272000pt;}
.ws29{word-spacing:-14.144000pt;}
.ws12{word-spacing:-13.568000pt;}
.ws6{word-spacing:0.000000pt;}
._22{margin-left:-15.896320pt;}
._18{margin-left:-14.609493pt;}
._1b{margin-left:-12.197547pt;}
._16{margin-left:-10.618880pt;}
._17{margin-left:-9.458347pt;}
._15{margin-left:-7.636907pt;}
._1a{margin-left:-6.666667pt;}
._19{margin-left:-4.747093pt;}
._f{margin-left:-3.829760pt;}
._6{margin-left:-2.214827pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.942080pt;}
._4{width:1.910187pt;}
._9{width:3.400107pt;}
._10{width:4.480000pt;}
._11{width:5.713493pt;}
._13{width:6.629973pt;}
._d{width:7.594667pt;}
._e{width:8.635307pt;}
._c{width:9.556907pt;}
._12{width:11.008427pt;}
._a{width:12.163413pt;}
._b{width:13.582507pt;}
._23{width:14.670507pt;}
._7{width:16.921600pt;}
._8{width:18.227200pt;}
._21{width:19.400107pt;}
._1e{width:20.613973pt;}
._1c{width:22.382933pt;}
._1d{width:23.286187pt;}
._24{width:24.394667pt;}
._33{width:25.418667pt;}
._34{width:26.373547pt;}
._26{width:27.419733pt;}
._3f{width:28.396800pt;}
._41{width:29.600000pt;}
._30{width:30.555307pt;}
._31{width:31.604480pt;}
._20{width:32.926293pt;}
._1f{width:34.471253pt;}
._25{width:35.772160pt;}
._44{width:37.248427pt;}
._43{width:38.435840pt;}
._2c{width:40.599467pt;}
._2b{width:41.972480pt;}
._29{width:45.184000pt;}
._2a{width:48.828587pt;}
._28{width:52.522667pt;}
._32{width:57.077333pt;}
._42{width:58.282667pt;}
._2f{width:60.348587pt;}
._27{width:62.908587pt;}
._2e{width:65.952000pt;}
._2d{width:67.632213pt;}
._40{width:95.694507pt;}
._3c{width:130.533973pt;}
._3e{width:131.808427pt;}
._3d{width:133.072640pt;}
._35{width:134.272000pt;}
._36{width:135.819093pt;}
._37{width:136.784213pt;}
._38{width:137.912747pt;}
._39{width:139.473493pt;}
._3a{width:153.056427pt;}
._3b{width:154.634240pt;}
._3{width:469.226667pt;}
._2{width:512.491520pt;}
._5{width:752.036693pt;}
._14{width:753.941333pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs6{font-size:85.760000pt;}
.fs3{font-size:106.240000pt;}
.fs1{font-size:117.760000pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:3.840000pt;}
.ye7{bottom:3.866667pt;}
.yc0{bottom:3.880000pt;}
.y83{bottom:4.160000pt;}
.yf5{bottom:5.440000pt;}
.y9b{bottom:5.480000pt;}
.yd7{bottom:5.760000pt;}
.y11f{bottom:22.074667pt;}
.yae{bottom:22.080000pt;}
.ybd{bottom:22.106667pt;}
.ye8{bottom:22.120000pt;}
.yb5{bottom:22.394667pt;}
.y7f{bottom:22.400000pt;}
.y82{bottom:22.426667pt;}
.y8c{bottom:22.440000pt;}
.y11e{bottom:40.314667pt;}
.yd9{bottom:40.320000pt;}
.yfa{bottom:40.346667pt;}
.y120{bottom:40.360000pt;}
.yb4{bottom:40.634667pt;}
.yc9{bottom:40.640000pt;}
.ybc{bottom:40.666667pt;}
.yb8{bottom:40.680000pt;}
.y102{bottom:40.954667pt;}
.y86{bottom:40.960000pt;}
.y81{bottom:40.986667pt;}
.y8b{bottom:41.000000pt;}
.y1b{bottom:46.720000pt;}
.y1a{bottom:50.880000pt;}
.y10a{bottom:58.586667pt;}
.y101{bottom:58.874667pt;}
.y10c{bottom:58.880000pt;}
.ybb{bottom:58.906667pt;}
.y103{bottom:59.194667pt;}
.y85{bottom:59.200000pt;}
.y88{bottom:59.226667pt;}
.yb3{bottom:59.234667pt;}
.y8a{bottom:59.240000pt;}
.yc8{bottom:77.146667pt;}
.y115{bottom:77.160000pt;}
.ydc{bottom:77.440000pt;}
.yba{bottom:77.466667pt;}
.yb2{bottom:77.474667pt;}
.ybf{bottom:77.480000pt;}
.yac{bottom:77.760000pt;}
.y9f{bottom:77.786667pt;}
.y100{bottom:77.794667pt;}
.yb7{bottom:77.800000pt;}
.yc7{bottom:95.706667pt;}
.ye2{bottom:95.720000pt;}
.yd1{bottom:96.000000pt;}
.y9e{bottom:96.026667pt;}
.yb1{bottom:96.034667pt;}
.yab{bottom:96.040000pt;}
.y12f{bottom:98.592000pt;}
.yff{bottom:101.152000pt;}
.y7c{bottom:102.432000pt;}
.y76{bottom:102.752000pt;}
.yc5{bottom:113.946667pt;}
.ye0{bottom:113.960000pt;}
.ydb{bottom:114.266667pt;}
.ye1{bottom:114.280000pt;}
.y9d{bottom:114.586667pt;}
.yaa{bottom:114.600000pt;}
.y19{bottom:115.232000pt;}
.y95{bottom:116.512000pt;}
.yb0{bottom:118.432000pt;}
.y11d{bottom:120.352000pt;}
.y12e{bottom:126.432000pt;}
.y75{bottom:130.272000pt;}
.yc4{bottom:132.506667pt;}
.yd0{bottom:132.826667pt;}
.ya9{bottom:132.840000pt;}
.yf1{bottom:132.866667pt;}
.ye4{bottom:136.986667pt;}
.y18{bottom:139.546667pt;}
.y94{bottom:144.026667pt;}
.yc3{bottom:150.746667pt;}
.y114{bottom:150.786667pt;}
.yc6{bottom:151.066667pt;}
.ydf{bottom:151.080000pt;}
.y108{bottom:151.106667pt;}
.ycf{bottom:151.386667pt;}
.ya8{bottom:151.400000pt;}
.yf0{bottom:151.426667pt;}
.y12d{bottom:153.946667pt;}
.y10d{bottom:156.826667pt;}
.y74{bottom:157.786667pt;}
.y113{bottom:169.346667pt;}
.yc2{bottom:169.626667pt;}
.ya7{bottom:169.640000pt;}
.yde{bottom:169.666667pt;}
.y93{bottom:171.546667pt;}
.y47{bottom:171.866667pt;}
.ycc{bottom:176.706667pt;}
.y12c{bottom:181.506667pt;}
.y17{bottom:185.346667pt;}
.y73{bottom:185.666667pt;}
.y110{bottom:187.586667pt;}
.y112{bottom:187.906667pt;}
.yce{bottom:188.186667pt;}
.ya6{bottom:188.200000pt;}
.yef{bottom:188.226667pt;}
.y46{bottom:191.426667pt;}
.yfe{bottom:193.986667pt;}
.y92{bottom:199.106667pt;}
.ycd{bottom:206.426667pt;}
.ya5{bottom:206.466667pt;}
.y12b{bottom:209.026667pt;}
.y45{bottom:210.946667pt;}
.yf6{bottom:211.906667pt;}
.y11c{bottom:212.866667pt;}
.y72{bottom:213.186667pt;}
.y16{bottom:221.826667pt;}
.y111{bottom:224.386667pt;}
.yd2{bottom:224.706667pt;}
.ya4{bottom:225.026667pt;}
.y91{bottom:226.626667pt;}
.yaf{bottom:229.506667pt;}
.ye3{bottom:229.826667pt;}
.y44{bottom:230.466667pt;}
.y12a{bottom:236.546667pt;}
.y71{bottom:240.706667pt;}
.yad{bottom:242.946667pt;}
.ya3{bottom:243.266667pt;}
.yee{bottom:243.293333pt;}
.y15{bottom:246.146667pt;}
.y43{bottom:249.986667pt;}
.y90{bottom:254.466667pt;}
.ya2{bottom:261.826667pt;}
.yed{bottom:261.853333pt;}
.y129{bottom:264.386667pt;}
.y42{bottom:268.226667pt;}
.y14{bottom:268.546667pt;}
.ya1{bottom:280.066667pt;}
.yec{bottom:280.093333pt;}
.y8f{bottom:281.986667pt;}
.y41{bottom:286.813333pt;}
.y11b{bottom:287.133333pt;}
.y128{bottom:291.933333pt;}
.y70{bottom:295.773333pt;}
.yeb{bottom:298.653333pt;}
.ya0{bottom:303.773333pt;}
.yf4{bottom:304.733333pt;}
.y40{bottom:305.053333pt;}
.y8e{bottom:309.533333pt;}
.y13{bottom:316.893333pt;}
.y11a{bottom:319.453333pt;}
.y10b{bottom:322.973333pt;}
.y3f{bottom:323.293333pt;}
.y6f{bottom:323.613333pt;}
.y8d{bottom:324.573333pt;}
.yea{bottom:335.453333pt;}
.y12{bottom:338.333333pt;}
.yf3{bottom:338.653333pt;}
.ydd{bottom:340.893333pt;}
.y3e{bottom:341.853333pt;}
.y119{bottom:346.973333pt;}
.y6e{bottom:351.133333pt;}
.y11{bottom:360.093333pt;}
.yfd{bottom:360.733333pt;}
.y118{bottom:362.333333pt;}
.yf2{bottom:366.173333pt;}
.y127{bottom:374.813333pt;}
.y3d{bottom:378.653333pt;}
.y89{bottom:380.573333pt;}
.ye9{bottom:381.213333pt;}
.y10{bottom:396.253333pt;}
.y3c{bottom:396.933333pt;}
.y126{bottom:402.373333pt;}
.y6d{bottom:406.213333pt;}
.y3b{bottom:415.493333pt;}
.y117{bottom:418.053333pt;}
.yf{bottom:420.613333pt;}
.y125{bottom:429.893333pt;}
.y3a{bottom:433.733333pt;}
.y6c{bottom:434.053333pt;}
.ycb{bottom:435.013333pt;}
.ye{bottom:444.933333pt;}
.y39{bottom:452.293333pt;}
.yfc{bottom:453.573333pt;}
.y87{bottom:454.853333pt;}
.y124{bottom:457.413333pt;}
.y6b{bottom:461.573333pt;}
.yd{bottom:466.693333pt;}
.y38{bottom:470.533333pt;}
.y109{bottom:471.173333pt;}
.y123{bottom:472.773333pt;}
.yc{bottom:488.133333pt;}
.y37{bottom:489.093333pt;}
.yca{bottom:491.013333pt;}
.y36{bottom:507.333333pt;}
.yb{bottom:510.880000pt;}
.y6a{bottom:516.640000pt;}
.yda{bottom:525.600000pt;}
.y35{bottom:525.920000pt;}
.yfb{bottom:527.840000pt;}
.y84{bottom:529.120000pt;}
.ya{bottom:538.720000pt;}
.y34{bottom:544.480000pt;}
.yc1{bottom:547.040000pt;}
.y33{bottom:564.000000pt;}
.y9{bottom:566.880000pt;}
.y79{bottom:571.680000pt;}
.y69{bottom:572.000000pt;}
.y107{bottom:582.240000pt;}
.y32{bottom:583.520000pt;}
.yf9{bottom:583.840000pt;}
.y59{bottom:595.680000pt;}
.y9c{bottom:598.880000pt;}
.y78{bottom:599.200000pt;}
.y68{bottom:599.520000pt;}
.y122{bottom:602.080000pt;}
.y80{bottom:603.360000pt;}
.y8{bottom:614.880000pt;}
.y116{bottom:621.306667pt;}
.y31{bottom:624.506667pt;}
.y58{bottom:626.426667pt;}
.y67{bottom:627.066667pt;}
.y30{bottom:642.746667pt;}
.y57{bottom:645.946667pt;}
.y66{bottom:654.906667pt;}
.y7{bottom:658.106667pt;}
.y7e{bottom:659.386667pt;}
.y2f{bottom:661.306667pt;}
.yd8{bottom:673.466667pt;}
.y56{bottom:673.786667pt;}
.yf8{bottom:676.346667pt;}
.y6{bottom:679.546667pt;}
.y65{bottom:682.426667pt;}
.y10f{bottom:695.546667pt;}
.y2e{bottom:698.106667pt;}
.y55{bottom:701.626667pt;}
.y5{bottom:706.746667pt;}
.y64{bottom:709.946667pt;}
.y2d{bottom:716.346667pt;}
.y9a{bottom:728.506667pt;}
.y54{bottom:729.466667pt;}
.ybe{bottom:731.706667pt;}
.y2c{bottom:734.946667pt;}
.y7b{bottom:737.186667pt;}
.y63{bottom:737.506667pt;}
.yd6{bottom:747.746667pt;}
.y106{bottom:748.386667pt;}
.y121{bottom:750.626667pt;}
.y2b{bottom:753.186667pt;}
.y4{bottom:753.826667pt;}
.y53{bottom:757.346667pt;}
.y99{bottom:762.146667pt;}
.y7a{bottom:765.026667pt;}
.y62{bottom:765.346667pt;}
.y2a{bottom:771.746667pt;}
.yd5{bottom:781.666667pt;}
.y52{bottom:785.186667pt;}
.y29{bottom:789.986667pt;}
.y3{bottom:791.266667pt;}
.y77{bottom:792.546667pt;}
.y61{bottom:792.866667pt;}
.y28{bottom:808.546667pt;}
.yd4{bottom:808.866667pt;}
.y51{bottom:813.026667pt;}
.y2{bottom:813.986667pt;}
.y98{bottom:817.506667pt;}
.y60{bottom:820.386667pt;}
.yb9{bottom:824.226667pt;}
.y27{bottom:826.786667pt;}
.y50{bottom:841.186667pt;}
.ye6{bottom:842.786667pt;}
.y97{bottom:845.026667pt;}
.y26{bottom:845.346667pt;}
.y5f{bottom:847.933333pt;}
.y105{bottom:859.453333pt;}
.y4f{bottom:861.053333pt;}
.y25{bottom:863.613333pt;}
.y96{bottom:875.453333pt;}
.y1{bottom:875.773333pt;}
.yf7{bottom:880.253333pt;}
.y4e{bottom:880.893333pt;}
.y24{bottom:882.173333pt;}
.ye5{bottom:898.493333pt;}
.y23{bottom:900.413333pt;}
.y4d{bottom:900.733333pt;}
.y5e{bottom:903.293333pt;}
.yd3{bottom:917.053333pt;}
.y22{bottom:918.973333pt;}
.y4c{bottom:928.573333pt;}
.y5d{bottom:930.813333pt;}
.yb6{bottom:935.293333pt;}
.y21{bottom:938.493333pt;}
.y104{bottom:952.253333pt;}
.y10e{bottom:953.853333pt;}
.y4b{bottom:956.413333pt;}
.y20{bottom:957.693333pt;}
.y5c{bottom:958.373333pt;}
.y1f{bottom:976.293333pt;}
.y4a{bottom:984.293333pt;}
.y7d{bottom:985.893333pt;}
.y5b{bottom:986.213333pt;}
.y1e{bottom:997.093333pt;}
.y49{bottom:1013.093333pt;}
.y5a{bottom:1013.413333pt;}
.y48{bottom:1013.733333pt;}
.y1d{bottom:1014.373333pt;}
.h2c{height:18.560000pt;}
.hb{height:18.592000pt;}
.h24{height:19.840000pt;}
.h17{height:19.872000pt;}
.h1f{height:20.160000pt;}
.h12{height:36.800000pt;}
.h25{height:36.832000pt;}
.hd{height:44.648750pt;}
.hf{height:48.531250pt;}
.h4{height:54.452500pt;}
.h27{height:55.040000pt;}
.h22{height:55.072000pt;}
.h16{height:55.360000pt;}
.h13{height:55.392000pt;}
.hc{height:60.519362pt;}
.h10{height:62.781250pt;}
.ha{height:62.812500pt;}
.h11{height:64.500000pt;}
.h2{height:65.781915pt;}
.he{height:72.862500pt;}
.h14{height:73.600000pt;}
.h15{height:73.632000pt;}
.h7{height:76.307021pt;}
.h8{height:79.311250pt;}
.h9{height:88.147766pt;}
.h1c{height:91.872000pt;}
.h28{height:92.160000pt;}
.h1b{height:92.192000pt;}
.h5{height:98.251250pt;}
.h3{height:108.905000pt;}
.h2a{height:110.112000pt;}
.h1a{height:110.432000pt;}
.h6{height:118.375000pt;}
.h2d{height:128.672000pt;}
.h18{height:128.992000pt;}
.h20{height:147.226667pt;}
.h29{height:165.506667pt;}
.h26{height:165.786667pt;}
.h1d{height:184.026667pt;}
.h21{height:184.066667pt;}
.h2b{height:202.586667pt;}
.h1e{height:257.666667pt;}
.h19{height:294.466667pt;}
.h23{height:349.853333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:8.000000pt;}
.w4{width:16.000000pt;}
.wf{width:74.592000pt;}
.w9{width:74.912000pt;}
.wd{width:75.232000pt;}
.w5{width:84.192000pt;}
.w8{width:93.152000pt;}
.wc{width:112.992000pt;}
.wa{width:187.933333pt;}
.wb{width:188.226667pt;}
.we{width:188.253333pt;}
.w10{width:188.546667pt;}
.w7{width:193.346667pt;}
.w6{width:193.373333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x17{left:7.040000pt;}
.x5{left:113.311988pt;}
.x8{left:122.271988pt;}
.x12{left:128.063988pt;}
.x13{left:142.786655pt;}
.x7{left:152.706655pt;}
.x14{left:161.346655pt;}
.x1a{left:189.506667pt;}
.x18{left:198.786667pt;}
.x2{left:213.533322pt;}
.xd{left:239.453322pt;}
.x4{left:242.973322pt;}
.xc{left:269.533322pt;}
.xb{left:294.213322pt;}
.x16{left:306.053322pt;}
.xe{left:313.093322pt;}
.x9{left:330.373322pt;}
.x11{left:335.813322pt;}
.x10{left:347.973322pt;}
.x1d{left:359.493322pt;}
.x1b{left:378.400000pt;}
.x6{left:386.719988pt;}
.x15{left:388.960000pt;}
.xf{left:393.120000pt;}
.x3{left:396.959988pt;}
.xa{left:398.559988pt;}
.x1{left:512.826655pt;}
.x1c{left:567.266667pt;}
.x19{left:586.786667pt;}
}




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