
    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_2e26b67fdde6b3c01e067b81.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905762;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_4bcb56616427d7b9f11cf549.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.683105;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_6b90e7100b9b29cbd54420d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.888000;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_65bd1aa1a911f04eef5af597.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e933b62d6ef1db65cb7051af.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_05d02172f4953685cfd307e7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_04e0ff073aa31271d58e9646.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7a7a6a3b23d1fbd767dedd47.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_04458cb319681e0c0ebe08d3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_e82dc26c6315ec5ef4badd6e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fd9fa140981537ed5614336f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c2dfaf11f72a76f8c8d5e6c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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:-27.360000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.147699px;}
.v5{vertical-align:5.760000px;}
.v2{vertical-align:27.360000px;}
.lsd{letter-spacing:-1.008000px;}
.ls24{letter-spacing:-0.936000px;}
.ls28{letter-spacing:-0.864000px;}
.lsf{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.576000px;}
.ls22{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.106800px;}
.ls1d{letter-spacing:-0.072000px;}
.ls3{letter-spacing:-0.007173px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.007173px;}
.ls0{letter-spacing:0.014346px;}
.ls29{letter-spacing:0.045360px;}
.ls1b{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.152640px;}
.ls25{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.269280px;}
.ls12{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.504000px;}
.ls18{letter-spacing:0.540000px;}
.ls26{letter-spacing:0.576000px;}
.ls15{letter-spacing:0.629280px;}
.ls7{letter-spacing:0.666000px;}
.ls8{letter-spacing:0.720000px;}
.ls1f{letter-spacing:0.864000px;}
.ls10{letter-spacing:1.152000px;}
.ls13{letter-spacing:1.584000px;}
.ls1c{letter-spacing:3.546720px;}
.ls23{letter-spacing:3.600000px;}
.ls19{letter-spacing:5.040000px;}
.lse{letter-spacing:6.480000px;}
.ls21{letter-spacing:10.080000px;}
.ls27{letter-spacing:23.040000px;}
.ls1e{letter-spacing:197.976000px;}
.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;}
}
.ws1e{word-spacing:-72.000000px;}
.wse{word-spacing:-59.760000px;}
.ws16{word-spacing:-19.584000px;}
.ws1b{word-spacing:-18.864000px;}
.ws14{word-spacing:-18.720000px;}
.ws21{word-spacing:-18.576000px;}
.ws1c{word-spacing:-18.504000px;}
.ws18{word-spacing:-18.432000px;}
.ws15{word-spacing:-18.288000px;}
.ws19{word-spacing:-18.216000px;}
.ws11{word-spacing:-18.144000px;}
.ws1d{word-spacing:-18.072000px;}
.wsf{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.856000px;}
.ws12{word-spacing:-17.784000px;}
.ws10{word-spacing:-17.712000px;}
.ws1f{word-spacing:-17.568000px;}
.wsc{word-spacing:-17.424000px;}
.ws20{word-spacing:-17.064000px;}
.ws17{word-spacing:-16.506480px;}
.ws22{word-spacing:-12.420000px;}
.ws13{word-spacing:-12.060000px;}
.wsb{word-spacing:0.000000px;}
.ws5{word-spacing:11.620454px;}
.ws8{word-spacing:13.865641px;}
.ws4{word-spacing:16.978775px;}
.ws1{word-spacing:17.861069px;}
.wsa{word-spacing:18.327322px;}
.ws9{word-spacing:20.859433px;}
.ws7{word-spacing:22.738790px;}
.ws6{word-spacing:23.434583px;}
.ws0{word-spacing:23.814659px;}
.ws3{word-spacing:500.511621px;}
.ws2{word-spacing:540.336783px;}
._5{margin-left:-5.738496px;}
._0{margin-left:-2.510592px;}
._1{margin-left:-1.075968px;}
._9{width:1.195968px;}
._b{width:2.537520px;}
._3{width:3.708503px;}
._c{width:4.872098px;}
._d{width:6.320978px;}
._13{width:8.059968px;}
._14{width:9.395086px;}
._15{width:11.160000px;}
._16{width:12.468000px;}
._1a{width:14.256288px;}
._18{width:15.567936px;}
._17{width:16.608000px;}
._21{width:19.063968px;}
._1c{width:20.952000px;}
._1d{width:22.620000px;}
._23{width:23.760000px;}
._1f{width:25.132032px;}
._19{width:26.611968px;}
._28{width:28.224000px;}
._1b{width:29.343936px;}
._e{width:30.456000px;}
._f{width:31.728000px;}
._27{width:32.788032px;}
._22{width:34.536000px;}
._2{width:35.865600px;}
._32{width:37.003968px;}
._31{width:38.016000px;}
._2a{width:39.096000px;}
._24{width:40.111968px;}
._10{width:41.256000px;}
._12{width:42.542592px;}
._11{width:43.716000px;}
._29{width:44.748000px;}
._30{width:45.948000px;}
._2c{width:47.088000px;}
._2d{width:48.204000px;}
._2b{width:49.459968px;}
._2e{width:52.776000px;}
._2f{width:53.832000px;}
._25{width:55.152000px;}
._33{width:56.352000px;}
._26{width:57.424032px;}
._a{width:70.470720px;}
._1e{width:179.976000px;}
._20{width:197.976000px;}
._8{width:219.856128px;}
._6{width:226.326282px;}
._7{width:262.084285px;}
._4{width:337.402045px;}
._34{width:846.156000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y127{bottom:2.865000px;}
.y129{bottom:2.880000px;}
.y125{bottom:3.060000px;}
.y18{bottom:3.600000px;}
.y120{bottom:4.320000px;}
.y11e{bottom:4.500000px;}
.y11c{bottom:4.680000px;}
.y11a{bottom:4.860000px;}
.y17{bottom:52.920000px;}
.y16{bottom:56.340000px;}
.y6c{bottom:115.200000px;}
.yf1{bottom:122.760000px;}
.yb7{bottom:130.176000px;}
.y2c{bottom:132.696000px;}
.yc0{bottom:135.576000px;}
.y10c{bottom:137.736000px;}
.yaa{bottom:141.516000px;}
.y107{bottom:149.256000px;}
.yd2{bottom:151.590000px;}
.y85{bottom:153.030000px;}
.y5d{bottom:156.630000px;}
.yfe{bottom:164.190000px;}
.yf0{bottom:164.370000px;}
.yb6{bottom:171.570000px;}
.y45{bottom:173.550000px;}
.ybf{bottom:176.970000px;}
.ydb{bottom:179.130000px;}
.y10b{bottom:179.310000px;}
.ya9{bottom:182.910000px;}
.y99{bottom:186.510000px;}
.y2b{bottom:189.030000px;}
.y106{bottom:190.830000px;}
.yd1{bottom:193.170000px;}
.y84{bottom:194.430000px;}
.y5c{bottom:198.030000px;}
.yea{bottom:205.590000px;}
.yfd{bottom:205.770000px;}
.yb5{bottom:212.970000px;}
.ybe{bottom:218.370000px;}
.yef{bottom:220.530000px;}
.yda{bottom:220.710000px;}
.ya8{bottom:224.310000px;}
.y98{bottom:227.910000px;}
.y44{bottom:229.890000px;}
.y105{bottom:232.230000px;}
.y10a{bottom:235.650000px;}
.y83{bottom:235.830000px;}
.y5b{bottom:239.430000px;}
.y2a{bottom:245.550000px;}
.ye9{bottom:247.170000px;}
.yd0{bottom:249.330000px;}
.yb4{bottom:254.370000px;}
.ybd{bottom:259.770000px;}
.y10d{bottom:261.930000px;}
.yee{bottom:262.110000px;}
.ya7{bottom:265.710000px;}
.y97{bottom:269.310000px;}
.y43{bottom:271.470000px;}
.y104{bottom:273.630000px;}
.yd9{bottom:277.050000px;}
.y82{bottom:277.230000px;}
.y5a{bottom:280.830000px;}
.ye8{bottom:288.570000px;}
.ycf{bottom:290.910000px;}
.yae{bottom:291.630000px;}
.yb9{bottom:295.590000px;}
.yb3{bottom:295.770000px;}
.ybc{bottom:301.170000px;}
.y29{bottom:301.890000px;}
.yfc{bottom:303.330000px;}
.yed{bottom:303.510000px;}
.ya6{bottom:307.110000px;}
.y96{bottom:310.710000px;}
.y42{bottom:312.870000px;}
.y108{bottom:318.450000px;}
.y81{bottom:318.630000px;}
.y59{bottom:322.230000px;}
.y103{bottom:329.790000px;}
.yce{bottom:332.310000px;}
.yb2{bottom:337.170000px;}
.ye7{bottom:344.730000px;}
.yfb{bottom:344.910000px;}
.yad{bottom:348.330000px;}
.ya5{bottom:348.510000px;}
.y95{bottom:352.110000px;}
.y41{bottom:354.270000px;}
.y116{bottom:357.870000px;}
.y28{bottom:358.230000px;}
.yec{bottom:359.850000px;}
.y80{bottom:360.030000px;}
.ybb{bottom:363.270000px;}
.y58{bottom:363.630000px;}
.y102{bottom:371.370000px;}
.yd8{bottom:374.790000px;}
.yb1{bottom:378.570000px;}
.ye6{bottom:386.355000px;}
.ycd{bottom:388.695000px;}
.ya4{bottom:389.955000px;}
.y94{bottom:393.555000px;}
.y40{bottom:395.715000px;}
.y114{bottom:399.315000px;}
.y7f{bottom:401.475000px;}
.yab{bottom:404.535000px;}
.y57{bottom:405.075000px;}
.y115{bottom:409.755000px;}
.y27{bottom:414.795000px;}
.y109{bottom:416.235000px;}
.yd7{bottom:416.415000px;}
.y71{bottom:419.835000px;}
.yb0{bottom:420.015000px;}
.y101{bottom:427.575000px;}
.ye5{bottom:427.755000px;}
.ycc{bottom:430.275000px;}
.ya3{bottom:431.355000px;}
.y15{bottom:432.840926px;}
.yb8{bottom:434.775000px;}
.y93{bottom:434.955000px;}
.y3f{bottom:437.115000px;}
.yfa{bottom:442.695000px;}
.y7e{bottom:442.875000px;}
.y56{bottom:446.475000px;}
.y113{bottom:451.155000px;}
.y14{bottom:453.763123px;}
.yeb{bottom:457.635000px;}
.yd6{bottom:457.815000px;}
.y26{bottom:460.695000px;}
.y6b{bottom:461.235000px;}
.y70{bottom:461.415000px;}
.yf5{bottom:469.155000px;}
.ycb{bottom:471.675000px;}
.ya2{bottom:472.755000px;}
.y13{bottom:474.685321px;}
.yba{bottom:476.175000px;}
.y92{bottom:476.355000px;}
.y3e{bottom:478.515000px;}
.ye4{bottom:484.095000px;}
.y7d{bottom:484.275000px;}
.y55{bottom:487.875000px;}
.y12{bottom:495.607519px;}
.yd5{bottom:499.215000px;}
.y111{bottom:502.455000px;}
.y6a{bottom:502.815000px;}
.y25{bottom:506.775000px;}
.ya1{bottom:514.155000px;}
.y11{bottom:516.529717px;}
.y91{bottom:517.755000px;}
.y3d{bottom:519.915000px;}
.yf4{bottom:525.495000px;}
.ye3{bottom:525.675000px;}
.yca{bottom:527.835000px;}
.y54{bottom:529.275000px;}
.y10{bottom:537.451914px;}
.y7c{bottom:540.075000px;}
.yd4{bottom:540.615000px;}
.y69{bottom:544.215000px;}
.y110{bottom:554.295000px;}
.ya0{bottom:555.555000px;}
.y90{bottom:559.155000px;}
.y3c{bottom:561.315000px;}
.y24{bottom:563.295000px;}
.ye2{bottom:567.075000px;}
.yc9{bottom:569.415000px;}
.y53{bottom:570.675000px;}
.yf{bottom:576.079166px;}
.yf9{bottom:581.835000px;}
.y68{bottom:585.615000px;}
.y7b{bottom:596.775000px;}
.y9f{bottom:596.955000px;}
.ye{bottom:597.001363px;}
.y8f{bottom:600.555000px;}
.y3b{bottom:602.715000px;}
.yf3{bottom:608.475000px;}
.y52{bottom:612.075000px;}
.yd{bottom:617.923561px;}
.y23{bottom:619.635000px;}
.ye1{bottom:623.235000px;}
.yf8{bottom:623.415000px;}
.yc8{bottom:625.575000px;}
.y67{bottom:627.015000px;}
.y7a{bottom:638.385000px;}
.y8e{bottom:641.985000px;}
.y3a{bottom:644.145000px;}
.yac{bottom:653.325000px;}
.y51{bottom:653.505000px;}
.yc{bottom:661.261759px;}
.yf2{bottom:664.665000px;}
.ye0{bottom:664.845000px;}
.yc7{bottom:667.185000px;}
.y66{bottom:668.445000px;}
.y22{bottom:676.005000px;}
.yf7{bottom:679.605000px;}
.y79{bottom:679.785000px;}
.yb{bottom:682.183957px;}
.y8d{bottom:683.385000px;}
.y123{bottom:684.105000px;}
.y39{bottom:685.545000px;}
.y50{bottom:694.905000px;}
.y132{bottom:701.205000px;}
.ya{bottom:703.106154px;}
.ydf{bottom:706.245000px;}
.y65{bottom:709.845000px;}
.y131{bottom:715.065000px;}
.y78{bottom:721.185000px;}
.yc6{bottom:723.345000px;}
.yaf{bottom:724.605000px;}
.y8c{bottom:724.785000px;}
.y38{bottom:726.945000px;}
.y130{bottom:728.745000px;}
.y21{bottom:732.345000px;}
.yf6{bottom:736.125000px;}
.y4f{bottom:736.305000px;}
.y9{bottom:741.961152px;}
.y12f{bottom:742.605000px;}
.y100{bottom:747.645000px;}
.y64{bottom:751.245000px;}
.y12e{bottom:756.285000px;}
.yde{bottom:762.405000px;}
.y77{bottom:762.585000px;}
.yc5{bottom:764.925000px;}
.y8b{bottom:766.185000px;}
.y37{bottom:768.345000px;}
.y12d{bottom:770.145000px;}
.y9e{bottom:777.345000px;}
.y4e{bottom:777.525000px;}
.y20{bottom:780.765000px;}
.y8{bottom:783.803754px;}
.y12c{bottom:784.005000px;}
.y63{bottom:792.645000px;}
.y12b{bottom:797.685000px;}
.y118{bottom:801.825000px;}
.yff{bottom:803.805000px;}
.y76{bottom:803.985000px;}
.y7{bottom:804.725952px;}
.yc4{bottom:806.325000px;}
.y8a{bottom:807.585000px;}
.y36{bottom:809.745000px;}
.y12a{bottom:811.545000px;}
.y4d{bottom:818.925000px;}
.y128{bottom:825.405000px;}
.y6{bottom:825.648150px;}
.y1f{bottom:830.265000px;}
.y62{bottom:834.045000px;}
.y126{bottom:840.000000px;}
.y75{bottom:845.385000px;}
.y89{bottom:848.985000px;}
.y35{bottom:851.145000px;}
.y124{bottom:854.385000px;}
.y117{bottom:857.985000px;}
.y4c{bottom:860.325000px;}
.y5{bottom:867.490752px;}
.yc3{bottom:868.425000px;}
.y122{bottom:875.085000px;}
.y61{bottom:875.445000px;}
.y1e{bottom:878.685000px;}
.y88{bottom:890.430000px;}
.y121{bottom:896.370000px;}
.y74{bottom:901.230000px;}
.ydd{bottom:901.590000px;}
.y9d{bottom:901.770000px;}
.y34{bottom:906.990000px;}
.y4{bottom:909.333354px;}
.y4b{bottom:916.350000px;}
.yd3{bottom:916.710000px;}
.y60{bottom:916.890000px;}
.y11f{bottom:917.790000px;}
.y1d{bottom:928.050000px;}
.y3{bottom:930.255552px;}
.yc2{bottom:931.290000px;}
.y87{bottom:931.830000px;}
.y11d{bottom:939.030000px;}
.y9c{bottom:943.170000px;}
.y2{bottom:951.177750px;}
.y73{bottom:957.750000px;}
.y112{bottom:958.110000px;}
.y4a{bottom:958.290000px;}
.y11b{bottom:961.170000px;}
.y33{bottom:963.690000px;}
.y6f{bottom:973.050000px;}
.y86{bottom:973.230000px;}
.y119{bottom:983.130000px;}
.y1c{bottom:984.390000px;}
.y9b{bottom:984.570000px;}
.yc1{bottom:993.570000px;}
.ydc{bottom:999.510000px;}
.y49{bottom:999.690000px;}
.y1{bottom:1013.942400px;}
.y72{bottom:1014.450000px;}
.y6e{bottom:1014.630000px;}
.y32{bottom:1020.210000px;}
.y31{bottom:1040.010000px;}
.y9a{bottom:1040.550000px;}
.y1b{bottom:1040.910000px;}
.y5f{bottom:1041.090000px;}
.y48{bottom:1055.850000px;}
.y6d{bottom:1056.030000px;}
.y30{bottom:1057.110000px;}
.y2f{bottom:1074.390000px;}
.y10f{bottom:1082.490000px;}
.y2e{bottom:1091.670000px;}
.y1a{bottom:1096.890000px;}
.y5e{bottom:1097.250000px;}
.y47{bottom:1097.430000px;}
.y19{bottom:1138.500000px;}
.y10e{bottom:1138.680000px;}
.y46{bottom:1138.860000px;}
.y2d{bottom:1141.380000px;}
.h14{height:13.665000px;}
.h16{height:13.680000px;}
.h13{height:13.860000px;}
.h8{height:17.280000px;}
.h10{height:21.225000px;}
.h12{height:21.262500px;}
.h11{height:21.405000px;}
.h15{height:47.321367px;}
.hc{height:47.344922px;}
.h17{height:48.616875px;}
.h3{height:48.992410px;}
.h2{height:49.350225px;}
.h4{height:50.497924px;}
.h7{height:62.327813px;}
.hf{height:64.546875px;}
.h1{height:65.800025px;}
.he{height:70.628906px;}
.ha{height:70.664062px;}
.h9{height:72.562500px;}
.hb{height:74.704922px;}
.hd{height:74.824922px;}
.h0{height:1188.000000px;}
.h6{height:1263.000000px;}
.h5{height:1263.060000px;}
.w3{width:8.280000px;}
.w12{width:16.725000px;}
.w4{width:16.740000px;}
.w7{width:19.065000px;}
.w1b{width:28.065000px;}
.w18{width:28.080000px;}
.w15{width:28.245000px;}
.w16{width:49.161000px;}
.w1e{width:49.305000px;}
.w19{width:49.356000px;}
.w1a{width:50.025000px;}
.w17{width:50.040000px;}
.w1d{width:50.061000px;}
.w1c{width:55.245000px;}
.wc{width:74.325000px;}
.wd{width:74.541000px;}
.wa{width:74.700000px;}
.wb{width:74.916000px;}
.w9{width:75.960000px;}
.we{width:88.365000px;}
.w14{width:127.425000px;}
.w10{width:127.461000px;}
.w11{width:127.476000px;}
.w13{width:133.401000px;}
.wf{width:171.030000px;}
.w5{width:191.361000px;}
.w6{width:225.570000px;}
.w8{width:237.255000px;}
.w1{width:892.440000px;}
.w2{width:892.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:8.091000px;}
.x24{left:21.276000px;}
.x14{left:81.000000px;}
.xb{left:121.545000px;}
.x4{left:135.036000px;}
.x1{left:145.369200px;}
.x6{left:162.030000px;}
.x7{left:189.030000px;}
.x15{left:252.045000px;}
.x1c{left:280.305000px;}
.xd{left:312.915000px;}
.x1d{left:329.475000px;}
.x2{left:364.226471px;}
.x16{left:379.515000px;}
.x10{left:388.875000px;}
.x17{left:396.255000px;}
.x1e{left:424.335000px;}
.x8{left:438.015000px;}
.x5{left:442.155000px;}
.x11{left:463.575000px;}
.x1f{left:473.700000px;}
.x18{left:523.740000px;}
.xe{left:538.500000px;}
.x19{left:540.480000px;}
.xf{left:557.580000px;}
.x3{left:561.908692px;}
.x20{left:568.560000px;}
.x21{left:623.820000px;}
.x12{left:631.920000px;}
.x1a{left:673.890000px;}
.x9{left:675.150000px;}
.x1b{left:690.630000px;}
.x13{left:706.470000px;}
.x22{left:718.710000px;}
.xa{left:758.310000px;}
.x23{left:768.030000px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.020177pt;}
.v5{vertical-align:5.120000pt;}
.v2{vertical-align:24.320000pt;}
.lsd{letter-spacing:-0.896000pt;}
.ls24{letter-spacing:-0.832000pt;}
.ls28{letter-spacing:-0.768000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.512000pt;}
.ls22{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.094933pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:-0.006376pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.006376pt;}
.ls0{letter-spacing:0.012752pt;}
.ls29{letter-spacing:0.040320pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.135680pt;}
.ls25{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.239360pt;}
.ls12{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.448000pt;}
.ls18{letter-spacing:0.480000pt;}
.ls26{letter-spacing:0.512000pt;}
.ls15{letter-spacing:0.559360pt;}
.ls7{letter-spacing:0.592000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.768000pt;}
.ls10{letter-spacing:1.024000pt;}
.ls13{letter-spacing:1.408000pt;}
.ls1c{letter-spacing:3.152640pt;}
.ls23{letter-spacing:3.200000pt;}
.ls19{letter-spacing:4.480000pt;}
.lse{letter-spacing:5.760000pt;}
.ls21{letter-spacing:8.960000pt;}
.ls27{letter-spacing:20.480000pt;}
.ls1e{letter-spacing:175.978667pt;}
.ws1e{word-spacing:-64.000000pt;}
.wse{word-spacing:-53.120000pt;}
.ws16{word-spacing:-17.408000pt;}
.ws1b{word-spacing:-16.768000pt;}
.ws14{word-spacing:-16.640000pt;}
.ws21{word-spacing:-16.512000pt;}
.ws1c{word-spacing:-16.448000pt;}
.ws18{word-spacing:-16.384000pt;}
.ws15{word-spacing:-16.256000pt;}
.ws19{word-spacing:-16.192000pt;}
.ws11{word-spacing:-16.128000pt;}
.ws1d{word-spacing:-16.064000pt;}
.wsf{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws12{word-spacing:-15.808000pt;}
.ws10{word-spacing:-15.744000pt;}
.ws1f{word-spacing:-15.616000pt;}
.wsc{word-spacing:-15.488000pt;}
.ws20{word-spacing:-15.168000pt;}
.ws17{word-spacing:-14.672427pt;}
.ws22{word-spacing:-11.040000pt;}
.ws13{word-spacing:-10.720000pt;}
.wsb{word-spacing:0.000000pt;}
.ws5{word-spacing:10.329293pt;}
.ws8{word-spacing:12.325014pt;}
.ws4{word-spacing:15.092244pt;}
.ws1{word-spacing:15.876506pt;}
.wsa{word-spacing:16.290953pt;}
.ws9{word-spacing:18.541718pt;}
.ws7{word-spacing:20.212258pt;}
.ws6{word-spacing:20.830740pt;}
.ws0{word-spacing:21.168586pt;}
.ws3{word-spacing:444.899219pt;}
.ws2{word-spacing:480.299363pt;}
._5{margin-left:-5.100885pt;}
._0{margin-left:-2.231637pt;}
._1{margin-left:-0.956416pt;}
._9{width:1.063083pt;}
._b{width:2.255573pt;}
._3{width:3.296447pt;}
._c{width:4.330754pt;}
._d{width:5.618647pt;}
._13{width:7.164416pt;}
._14{width:8.351188pt;}
._15{width:9.920000pt;}
._16{width:11.082667pt;}
._1a{width:12.672256pt;}
._18{width:13.838165pt;}
._17{width:14.762667pt;}
._21{width:16.945749pt;}
._1c{width:18.624000pt;}
._1d{width:20.106667pt;}
._23{width:21.120000pt;}
._1f{width:22.339584pt;}
._19{width:23.655083pt;}
._28{width:25.088000pt;}
._1b{width:26.083499pt;}
._e{width:27.072000pt;}
._f{width:28.202667pt;}
._27{width:29.144917pt;}
._22{width:30.698667pt;}
._2{width:31.880533pt;}
._32{width:32.892416pt;}
._31{width:33.792000pt;}
._2a{width:34.752000pt;}
._24{width:35.655083pt;}
._10{width:36.672000pt;}
._12{width:37.815637pt;}
._11{width:38.858667pt;}
._29{width:39.776000pt;}
._30{width:40.842667pt;}
._2c{width:41.856000pt;}
._2d{width:42.848000pt;}
._2b{width:43.964416pt;}
._2e{width:46.912000pt;}
._2f{width:47.850667pt;}
._25{width:49.024000pt;}
._33{width:50.090667pt;}
._26{width:51.043584pt;}
._a{width:62.640640pt;}
._1e{width:159.978667pt;}
._20{width:175.978667pt;}
._8{width:195.427669pt;}
._6{width:201.178918pt;}
._7{width:232.963809pt;}
._4{width:299.912929pt;}
._34{width:752.138667pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y127{bottom:2.546667pt;}
.y129{bottom:2.560000pt;}
.y125{bottom:2.720000pt;}
.y18{bottom:3.200000pt;}
.y120{bottom:3.840000pt;}
.y11e{bottom:4.000000pt;}
.y11c{bottom:4.160000pt;}
.y11a{bottom:4.320000pt;}
.y17{bottom:47.040000pt;}
.y16{bottom:50.080000pt;}
.y6c{bottom:102.400000pt;}
.yf1{bottom:109.120000pt;}
.yb7{bottom:115.712000pt;}
.y2c{bottom:117.952000pt;}
.yc0{bottom:120.512000pt;}
.y10c{bottom:122.432000pt;}
.yaa{bottom:125.792000pt;}
.y107{bottom:132.672000pt;}
.yd2{bottom:134.746667pt;}
.y85{bottom:136.026667pt;}
.y5d{bottom:139.226667pt;}
.yfe{bottom:145.946667pt;}
.yf0{bottom:146.106667pt;}
.yb6{bottom:152.506667pt;}
.y45{bottom:154.266667pt;}
.ybf{bottom:157.306667pt;}
.ydb{bottom:159.226667pt;}
.y10b{bottom:159.386667pt;}
.ya9{bottom:162.586667pt;}
.y99{bottom:165.786667pt;}
.y2b{bottom:168.026667pt;}
.y106{bottom:169.626667pt;}
.yd1{bottom:171.706667pt;}
.y84{bottom:172.826667pt;}
.y5c{bottom:176.026667pt;}
.yea{bottom:182.746667pt;}
.yfd{bottom:182.906667pt;}
.yb5{bottom:189.306667pt;}
.ybe{bottom:194.106667pt;}
.yef{bottom:196.026667pt;}
.yda{bottom:196.186667pt;}
.ya8{bottom:199.386667pt;}
.y98{bottom:202.586667pt;}
.y44{bottom:204.346667pt;}
.y105{bottom:206.426667pt;}
.y10a{bottom:209.466667pt;}
.y83{bottom:209.626667pt;}
.y5b{bottom:212.826667pt;}
.y2a{bottom:218.266667pt;}
.ye9{bottom:219.706667pt;}
.yd0{bottom:221.626667pt;}
.yb4{bottom:226.106667pt;}
.ybd{bottom:230.906667pt;}
.y10d{bottom:232.826667pt;}
.yee{bottom:232.986667pt;}
.ya7{bottom:236.186667pt;}
.y97{bottom:239.386667pt;}
.y43{bottom:241.306667pt;}
.y104{bottom:243.226667pt;}
.yd9{bottom:246.266667pt;}
.y82{bottom:246.426667pt;}
.y5a{bottom:249.626667pt;}
.ye8{bottom:256.506667pt;}
.ycf{bottom:258.586667pt;}
.yae{bottom:259.226667pt;}
.yb9{bottom:262.746667pt;}
.yb3{bottom:262.906667pt;}
.ybc{bottom:267.706667pt;}
.y29{bottom:268.346667pt;}
.yfc{bottom:269.626667pt;}
.yed{bottom:269.786667pt;}
.ya6{bottom:272.986667pt;}
.y96{bottom:276.186667pt;}
.y42{bottom:278.106667pt;}
.y108{bottom:283.066667pt;}
.y81{bottom:283.226667pt;}
.y59{bottom:286.426667pt;}
.y103{bottom:293.146667pt;}
.yce{bottom:295.386667pt;}
.yb2{bottom:299.706667pt;}
.ye7{bottom:306.426667pt;}
.yfb{bottom:306.586667pt;}
.yad{bottom:309.626667pt;}
.ya5{bottom:309.786667pt;}
.y95{bottom:312.986667pt;}
.y41{bottom:314.906667pt;}
.y116{bottom:318.106667pt;}
.y28{bottom:318.426667pt;}
.yec{bottom:319.866667pt;}
.y80{bottom:320.026667pt;}
.ybb{bottom:322.906667pt;}
.y58{bottom:323.226667pt;}
.y102{bottom:330.106667pt;}
.yd8{bottom:333.146667pt;}
.yb1{bottom:336.506667pt;}
.ye6{bottom:343.426667pt;}
.ycd{bottom:345.506667pt;}
.ya4{bottom:346.626667pt;}
.y94{bottom:349.826667pt;}
.y40{bottom:351.746667pt;}
.y114{bottom:354.946667pt;}
.y7f{bottom:356.866667pt;}
.yab{bottom:359.586667pt;}
.y57{bottom:360.066667pt;}
.y115{bottom:364.226667pt;}
.y27{bottom:368.706667pt;}
.y109{bottom:369.986667pt;}
.yd7{bottom:370.146667pt;}
.y71{bottom:373.186667pt;}
.yb0{bottom:373.346667pt;}
.y101{bottom:380.066667pt;}
.ye5{bottom:380.226667pt;}
.ycc{bottom:382.466667pt;}
.ya3{bottom:383.426667pt;}
.y15{bottom:384.747489pt;}
.yb8{bottom:386.466667pt;}
.y93{bottom:386.626667pt;}
.y3f{bottom:388.546667pt;}
.yfa{bottom:393.506667pt;}
.y7e{bottom:393.666667pt;}
.y56{bottom:396.866667pt;}
.y113{bottom:401.026667pt;}
.y14{bottom:403.344999pt;}
.yeb{bottom:406.786667pt;}
.yd6{bottom:406.946667pt;}
.y26{bottom:409.506667pt;}
.y6b{bottom:409.986667pt;}
.y70{bottom:410.146667pt;}
.yf5{bottom:417.026667pt;}
.ycb{bottom:419.266667pt;}
.ya2{bottom:420.226667pt;}
.y13{bottom:421.942508pt;}
.yba{bottom:423.266667pt;}
.y92{bottom:423.426667pt;}
.y3e{bottom:425.346667pt;}
.ye4{bottom:430.306667pt;}
.y7d{bottom:430.466667pt;}
.y55{bottom:433.666667pt;}
.y12{bottom:440.540017pt;}
.yd5{bottom:443.746667pt;}
.y111{bottom:446.626667pt;}
.y6a{bottom:446.946667pt;}
.y25{bottom:450.466667pt;}
.ya1{bottom:457.026667pt;}
.y11{bottom:459.137526pt;}
.y91{bottom:460.226667pt;}
.y3d{bottom:462.146667pt;}
.yf4{bottom:467.106667pt;}
.ye3{bottom:467.266667pt;}
.yca{bottom:469.186667pt;}
.y54{bottom:470.466667pt;}
.y10{bottom:477.735035pt;}
.y7c{bottom:480.066667pt;}
.yd4{bottom:480.546667pt;}
.y69{bottom:483.746667pt;}
.y110{bottom:492.706667pt;}
.ya0{bottom:493.826667pt;}
.y90{bottom:497.026667pt;}
.y3c{bottom:498.946667pt;}
.y24{bottom:500.706667pt;}
.ye2{bottom:504.066667pt;}
.yc9{bottom:506.146667pt;}
.y53{bottom:507.266667pt;}
.yf{bottom:512.070369pt;}
.yf9{bottom:517.186667pt;}
.y68{bottom:520.546667pt;}
.y7b{bottom:530.466667pt;}
.y9f{bottom:530.626667pt;}
.ye{bottom:530.667879pt;}
.y8f{bottom:533.826667pt;}
.y3b{bottom:535.746667pt;}
.yf3{bottom:540.866667pt;}
.y52{bottom:544.066667pt;}
.yd{bottom:549.265388pt;}
.y23{bottom:550.786667pt;}
.ye1{bottom:553.986667pt;}
.yf8{bottom:554.146667pt;}
.yc8{bottom:556.066667pt;}
.y67{bottom:557.346667pt;}
.y7a{bottom:567.453333pt;}
.y8e{bottom:570.653333pt;}
.y3a{bottom:572.573333pt;}
.yac{bottom:580.733333pt;}
.y51{bottom:580.893333pt;}
.yc{bottom:587.788230pt;}
.yf2{bottom:590.813333pt;}
.ye0{bottom:590.973333pt;}
.yc7{bottom:593.053333pt;}
.y66{bottom:594.173333pt;}
.y22{bottom:600.893333pt;}
.yf7{bottom:604.093333pt;}
.y79{bottom:604.253333pt;}
.yb{bottom:606.385739pt;}
.y8d{bottom:607.453333pt;}
.y123{bottom:608.093333pt;}
.y39{bottom:609.373333pt;}
.y50{bottom:617.693333pt;}
.y132{bottom:623.293333pt;}
.ya{bottom:624.983248pt;}
.ydf{bottom:627.773333pt;}
.y65{bottom:630.973333pt;}
.y131{bottom:635.613333pt;}
.y78{bottom:641.053333pt;}
.yc6{bottom:642.973333pt;}
.yaf{bottom:644.093333pt;}
.y8c{bottom:644.253333pt;}
.y38{bottom:646.173333pt;}
.y130{bottom:647.773333pt;}
.y21{bottom:650.973333pt;}
.yf6{bottom:654.333333pt;}
.y4f{bottom:654.493333pt;}
.y9{bottom:659.521024pt;}
.y12f{bottom:660.093333pt;}
.y100{bottom:664.573333pt;}
.y64{bottom:667.773333pt;}
.y12e{bottom:672.253333pt;}
.yde{bottom:677.693333pt;}
.y77{bottom:677.853333pt;}
.yc5{bottom:679.933333pt;}
.y8b{bottom:681.053333pt;}
.y37{bottom:682.973333pt;}
.y12d{bottom:684.573333pt;}
.y9e{bottom:690.973333pt;}
.y4e{bottom:691.133333pt;}
.y20{bottom:694.013333pt;}
.y8{bottom:696.714448pt;}
.y12c{bottom:696.893333pt;}
.y63{bottom:704.573333pt;}
.y12b{bottom:709.053333pt;}
.y118{bottom:712.733333pt;}
.yff{bottom:714.493333pt;}
.y76{bottom:714.653333pt;}
.y7{bottom:715.311958pt;}
.yc4{bottom:716.733333pt;}
.y8a{bottom:717.853333pt;}
.y36{bottom:719.773333pt;}
.y12a{bottom:721.373333pt;}
.y4d{bottom:727.933333pt;}
.y128{bottom:733.693333pt;}
.y6{bottom:733.909467pt;}
.y1f{bottom:738.013333pt;}
.y62{bottom:741.373333pt;}
.y126{bottom:746.666667pt;}
.y75{bottom:751.453333pt;}
.y89{bottom:754.653333pt;}
.y35{bottom:756.573333pt;}
.y124{bottom:759.453333pt;}
.y117{bottom:762.653333pt;}
.y4c{bottom:764.733333pt;}
.y5{bottom:771.102891pt;}
.yc3{bottom:771.933333pt;}
.y122{bottom:777.853333pt;}
.y61{bottom:778.173333pt;}
.y1e{bottom:781.053333pt;}
.y88{bottom:791.493333pt;}
.y121{bottom:796.773333pt;}
.y74{bottom:801.093333pt;}
.ydd{bottom:801.413333pt;}
.y9d{bottom:801.573333pt;}
.y34{bottom:806.213333pt;}
.y4{bottom:808.296315pt;}
.y4b{bottom:814.533333pt;}
.yd3{bottom:814.853333pt;}
.y60{bottom:815.013333pt;}
.y11f{bottom:815.813333pt;}
.y1d{bottom:824.933333pt;}
.y3{bottom:826.893824pt;}
.yc2{bottom:827.813333pt;}
.y87{bottom:828.293333pt;}
.y11d{bottom:834.693333pt;}
.y9c{bottom:838.373333pt;}
.y2{bottom:845.491333pt;}
.y73{bottom:851.333333pt;}
.y112{bottom:851.653333pt;}
.y4a{bottom:851.813333pt;}
.y11b{bottom:854.373333pt;}
.y33{bottom:856.613333pt;}
.y6f{bottom:864.933333pt;}
.y86{bottom:865.093333pt;}
.y119{bottom:873.893333pt;}
.y1c{bottom:875.013333pt;}
.y9b{bottom:875.173333pt;}
.yc1{bottom:883.173333pt;}
.ydc{bottom:888.453333pt;}
.y49{bottom:888.613333pt;}
.y1{bottom:901.282133pt;}
.y72{bottom:901.733333pt;}
.y6e{bottom:901.893333pt;}
.y32{bottom:906.853333pt;}
.y31{bottom:924.453333pt;}
.y9a{bottom:924.933333pt;}
.y1b{bottom:925.253333pt;}
.y5f{bottom:925.413333pt;}
.y48{bottom:938.533333pt;}
.y6d{bottom:938.693333pt;}
.y30{bottom:939.653333pt;}
.y2f{bottom:955.013333pt;}
.y10f{bottom:962.213333pt;}
.y2e{bottom:970.373333pt;}
.y1a{bottom:975.013333pt;}
.y5e{bottom:975.333333pt;}
.y47{bottom:975.493333pt;}
.y19{bottom:1012.000000pt;}
.y10e{bottom:1012.160000pt;}
.y46{bottom:1012.320000pt;}
.y2d{bottom:1014.560000pt;}
.h14{height:12.146667pt;}
.h16{height:12.160000pt;}
.h13{height:12.320000pt;}
.h8{height:15.360000pt;}
.h10{height:18.866667pt;}
.h12{height:18.900000pt;}
.h11{height:19.026667pt;}
.h15{height:42.063437pt;}
.hc{height:42.084375pt;}
.h17{height:43.215000pt;}
.h3{height:43.548809pt;}
.h2{height:43.866867pt;}
.h4{height:44.887044pt;}
.h7{height:55.402500pt;}
.hf{height:57.375000pt;}
.h1{height:58.488911pt;}
.he{height:62.781250pt;}
.ha{height:62.812500pt;}
.h9{height:64.500000pt;}
.hb{height:66.404375pt;}
.hd{height:66.511042pt;}
.h0{height:1056.000000pt;}
.h6{height:1122.666667pt;}
.h5{height:1122.720000pt;}
.w3{width:7.360000pt;}
.w12{width:14.866667pt;}
.w4{width:14.880000pt;}
.w7{width:16.946667pt;}
.w1b{width:24.946667pt;}
.w18{width:24.960000pt;}
.w15{width:25.106667pt;}
.w16{width:43.698667pt;}
.w1e{width:43.826667pt;}
.w19{width:43.872000pt;}
.w1a{width:44.466667pt;}
.w17{width:44.480000pt;}
.w1d{width:44.498667pt;}
.w1c{width:49.106667pt;}
.wc{width:66.066667pt;}
.wd{width:66.258667pt;}
.wa{width:66.400000pt;}
.wb{width:66.592000pt;}
.w9{width:67.520000pt;}
.we{width:78.546667pt;}
.w14{width:113.266667pt;}
.w10{width:113.298667pt;}
.w11{width:113.312000pt;}
.w13{width:118.578667pt;}
.wf{width:152.026667pt;}
.w5{width:170.098667pt;}
.w6{width:200.506667pt;}
.w8{width:210.893333pt;}
.w1{width:793.280000pt;}
.w2{width:793.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.192000pt;}
.x24{left:18.912000pt;}
.x14{left:72.000000pt;}
.xb{left:108.040000pt;}
.x4{left:120.032000pt;}
.x1{left:129.217067pt;}
.x6{left:144.026667pt;}
.x7{left:168.026667pt;}
.x15{left:224.040000pt;}
.x1c{left:249.160000pt;}
.xd{left:278.146667pt;}
.x1d{left:292.866667pt;}
.x2{left:323.756863pt;}
.x16{left:337.346667pt;}
.x10{left:345.666667pt;}
.x17{left:352.226667pt;}
.x1e{left:377.186667pt;}
.x8{left:389.346667pt;}
.x5{left:393.026667pt;}
.x11{left:412.066667pt;}
.x1f{left:421.066667pt;}
.x18{left:465.546667pt;}
.xe{left:478.666667pt;}
.x19{left:480.426667pt;}
.xf{left:495.626667pt;}
.x3{left:499.474393pt;}
.x20{left:505.386667pt;}
.x21{left:554.506667pt;}
.x12{left:561.706667pt;}
.x1a{left:599.013333pt;}
.x9{left:600.133333pt;}
.x1b{left:613.893333pt;}
.x13{left:627.973333pt;}
.x22{left:638.853333pt;}
.xa{left:674.053333pt;}
.x23{left:682.693333pt;}
}




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