
    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_fd237ce622eb98d6db267177.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_df974c84ee243aa0235df8d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_cbcc4a5c15465e70f257ce38.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_f7a1a899f3c756af0d528cdb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_6cff716f11a044689c922abb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_66767aebd77790d3be985bb0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a6e8bbc8800faddb502ed46e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.903809;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_4037a484e5055ddf71e448c9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_a26e176001279a10299313ca.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f60c84acfa9a7e86912f86dd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_a2e296664d2545479b5b88ca.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_f2de34fbf9ea4cd7e90a8f20.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ab9e37864962fa279e8333eb.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3194292a3ebb00622ea705dd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910645;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:fff;src:url('chunks/assets/font_59a79138d6f1ac22880780ee.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5df486bfbf449cc48d706ef1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls23{letter-spacing:-0.417312px;}
.ls20{letter-spacing:-0.338688px;}
.ls22{letter-spacing:-0.320544px;}
.ls25{letter-spacing:-0.302400px;}
.ls12{letter-spacing:-0.291456px;}
.ls24{letter-spacing:-0.260064px;}
.lse{letter-spacing:-0.247104px;}
.ls21{letter-spacing:-0.241920px;}
.ls11{letter-spacing:-0.238464px;}
.ls2e{letter-spacing:-0.205344px;}
.ls15{letter-spacing:-0.198720px;}
.lsf{letter-spacing:-0.177408px;}
.ls13{letter-spacing:-0.171072px;}
.lsa{letter-spacing:-0.158976px;}
.ls2b{letter-spacing:-0.152352px;}
.ls29{letter-spacing:-0.132480px;}
.ls14{letter-spacing:-0.125856px;}
.ls9{letter-spacing:-0.119232px;}
.ls28{letter-spacing:-0.112608px;}
.ls10{letter-spacing:-0.107712px;}
.ls1b{letter-spacing:-0.086112px;}
.ls8{letter-spacing:-0.079488px;}
.ls2d{letter-spacing:-0.072864px;}
.ls2a{letter-spacing:-0.066240px;}
.lsb{letter-spacing:-0.059616px;}
.ls1c{letter-spacing:-0.014400px;}
.ls7{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.005328px;}
.ls0{letter-spacing:0.005400px;}
.ls26{letter-spacing:0.007056px;}
.ls1d{letter-spacing:0.014400px;}
.ls1{letter-spacing:0.083520px;}
.ls4{letter-spacing:0.116928px;}
.ls3{letter-spacing:0.175392px;}
.lsd{letter-spacing:0.283968px;}
.lsc{letter-spacing:0.317376px;}
.ls2{letter-spacing:0.359136px;}
.ls5{letter-spacing:0.367848px;}
.ls19{letter-spacing:1.421280px;}
.ls31{letter-spacing:4.241808px;}
.ls2f{letter-spacing:4.927680px;}
.ls18{letter-spacing:13.008960px;}
.ls1f{letter-spacing:16.185600px;}
.ls6{letter-spacing:18.282240px;}
.ls1a{letter-spacing:18.482400px;}
.ls30{letter-spacing:22.541040px;}
.ls1e{letter-spacing:46.186560px;}
.ls27{letter-spacing:57.077136px;}
.ls2c{letter-spacing:212.011200px;}
.ls17{letter-spacing:245.011680px;}
.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;}
}
.ws5{word-spacing:-21.239136px;}
.ws4{word-spacing:-21.197376px;}
.ws10{word-spacing:-18.014400px;}
.wse{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.985600px;}
.ws0{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.493760px;}
.ws1{word-spacing:-16.480512px;}
.ws15{word-spacing:-16.473888px;}
.ws3{word-spacing:-16.440768px;}
.wsb{word-spacing:-16.434144px;}
.ws2{word-spacing:-16.401024px;}
.wsd{word-spacing:-16.361280px;}
.ws17{word-spacing:-16.354656px;}
.ws7{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.732288px;}
.wsa{word-spacing:-15.668928px;}
.ws6{word-spacing:-15.662592px;}
.ws9{word-spacing:-15.548544px;}
.ws12{word-spacing:-14.878080px;}
.ws14{word-spacing:-14.817600px;}
.ws13{word-spacing:-14.799456px;}
.ws11{word-spacing:-14.781312px;}
.wsc{word-spacing:0.000000px;}
._20{margin-left:-4.899168px;}
._13{margin-left:-3.827952px;}
._7{margin-left:-2.771712px;}
._2{margin-left:-1.202688px;}
._0{width:1.059840px;}
._3{width:2.623104px;}
._4{width:4.173120px;}
._6{width:5.232960px;}
._e{width:6.888960px;}
._8{width:8.081280px;}
._9{width:9.525312px;}
._c{width:11.128320px;}
._b{width:12.320640px;}
._d{width:13.711680px;}
._12{width:14.771520px;}
._18{width:16.365600px;}
._11{width:17.487936px;}
._5{width:18.613440px;}
._a{width:20.070720px;}
._1a{width:21.074400px;}
._1b{width:22.125600px;}
._16{width:23.140800px;}
._1e{width:24.249600px;}
._19{width:25.293600px;}
._17{width:26.758368px;}
._1f{width:27.888192px;}
._21{width:30.333600px;}
._23{width:31.773600px;}
._10{width:33.252480px;}
._f{width:34.378560px;}
._1d{width:35.902080px;}
._1c{width:37.624320px;}
._14{width:41.180976px;}
._24{width:50.133600px;}
._30{width:51.771024px;}
._2b{width:59.479200px;}
._22{width:76.492800px;}
._28{width:77.788800px;}
._27{width:88.192800px;}
._2e{width:89.841600px;}
._2d{width:108.446400px;}
._2c{width:166.260960px;}
._15{width:194.679360px;}
._29{width:208.596384px;}
._31{width:238.687200px;}
._26{width:241.688304px;}
._25{width:254.685600px;}
._2a{width:257.688000px;}
._2f{width:418.917600px;}
._1{width:1911.553920px;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:24.480000px;}
.fs5{font-size:47.520000px;}
.fs6{font-size:60.480000px;}
.fs3{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y103{bottom:3.720000px;}
.y10f{bottom:3.840000px;}
.y10b{bottom:3.900000px;}
.y161{bottom:3.960000px;}
.ya1{bottom:4.260000px;}
.yf9{bottom:4.440000px;}
.yf1{bottom:4.620000px;}
.yeb{bottom:4.740000px;}
.y30{bottom:5.820000px;}
.y166{bottom:11.760000px;}
.y168{bottom:12.060000px;}
.y164{bottom:12.600000px;}
.y162{bottom:13.320000px;}
.ye3{bottom:15.660000px;}
.y145{bottom:15.840000px;}
.y14c{bottom:15.960000px;}
.yfb{bottom:16.020000px;}
.y98{bottom:16.200000px;}
.y150{bottom:16.320000px;}
.y142{bottom:16.380000px;}
.yfd{bottom:16.500000px;}
.y134{bottom:16.740000px;}
.y101{bottom:18.480000px;}
.y10d{bottom:18.600000px;}
.y102{bottom:21.000000px;}
.y10e{bottom:21.120000px;}
.y10a{bottom:21.180000px;}
.yea{bottom:21.660000px;}
.yf8{bottom:21.720000px;}
.yf0{bottom:21.900000px;}
.ya0{bottom:22.980000px;}
.y160{bottom:23.040000px;}
.yaa{bottom:23.340000px;}
.y153{bottom:28.200000px;}
.y144{bottom:34.920000px;}
.y14b{bottom:35.040000px;}
.y13d{bottom:35.100000px;}
.y155{bottom:35.280000px;}
.y14f{bottom:35.400000px;}
.y141{bottom:35.460000px;}
.yed{bottom:36.300000px;}
.y109{bottom:38.460000px;}
.ye9{bottom:38.940000px;}
.yf7{bottom:39.000000px;}
.y138{bottom:39.060000px;}
.yef{bottom:39.180000px;}
.y9f{bottom:42.060000px;}
.ya9{bottom:42.420000px;}
.y35{bottom:45.720000px;}
.y6{bottom:45.727200px;}
.y152{bottom:47.280000px;}
.y105{bottom:52.860000px;}
.ye5{bottom:53.700000px;}
.yf3{bottom:53.760000px;}
.y148{bottom:54.120000px;}
.y13c{bottom:54.180000px;}
.y156{bottom:54.360000px;}
.y108{bottom:55.740000px;}
.ye8{bottom:56.220000px;}
.yf6{bottom:56.280000px;}
.yee{bottom:56.460000px;}
.y132{bottom:57.960000px;}
.y137{bottom:58.140000px;}
.y9e{bottom:61.140000px;}
.ya8{bottom:61.500000px;}
.y34{bottom:64.440000px;}
.y5{bottom:64.442880px;}
.y3{bottom:65.940000px;}
.y14e{bottom:66.000000px;}
.y151{bottom:66.360000px;}
.y12f{bottom:66.600000px;}
.y9a{bottom:71.580000px;}
.y107{bottom:73.020000px;}
.y14a{bottom:73.200000px;}
.y13b{bottom:73.260000px;}
.ye7{bottom:73.500000px;}
.yf5{bottom:73.560000px;}
.y131{bottom:74.520000px;}
.y136{bottom:76.860000px;}
.y9d{bottom:80.220000px;}
.y12e{bottom:82.800000px;}
.y4{bottom:83.520000px;}
.y2{bottom:86.820000px;}
.y106{bottom:89.940000px;}
.ya3{bottom:90.660000px;}
.y130{bottom:90.720000px;}
.ye6{bottom:90.780000px;}
.yf4{bottom:90.840000px;}
.y149{bottom:91.920000px;}
.y13a{bottom:91.980000px;}
.y140{bottom:92.340000px;}
.y9c{bottom:98.940000px;}
.ya7{bottom:99.300000px;}
.y32{bottom:107.340000px;}
.y139{bottom:111.060000px;}
.y13f{bottom:111.420000px;}
.y113{bottom:113.400000px;}
.y67{bottom:113.760000px;}
.y129{bottom:117.720000px;}
.y9b{bottom:118.020000px;}
.ya6{bottom:118.380000px;}
.y96{bottom:122.040000px;}
.y178{bottom:127.800000px;}
.y31{bottom:128.220000px;}
.ye1{bottom:128.880000px;}
.y179{bottom:130.680000px;}
.y112{bottom:133.920000px;}
.y66{bottom:134.280000px;}
.y143{bottom:135.000000px;}
.ya5{bottom:137.100000px;}
.y128{bottom:138.600000px;}
.y95{bottom:142.920000px;}
.y2f{bottom:143.342640px;}
.y177{bottom:148.320000px;}
.ye0{bottom:149.760000px;}
.yc4{bottom:151.560000px;}
.y111{bottom:154.800000px;}
.y65{bottom:155.160000px;}
.ya4{bottom:156.180000px;}
.y127{bottom:159.120000px;}
.y2e{bottom:162.055440px;}
.y94{bottom:163.440000px;}
.y12d{bottom:165.600000px;}
.y176{bottom:169.200000px;}
.ydf{bottom:170.280000px;}
.yc3{bottom:172.080000px;}
.y110{bottom:175.320000px;}
.y64{bottom:175.680000px;}
.y126{bottom:180.000000px;}
.y2d{bottom:181.132560px;}
.y12c{bottom:182.160000px;}
.y93{bottom:184.320000px;}
.y13e{bottom:184.500000px;}
.y175{bottom:189.720000px;}
.yde{bottom:191.160000px;}
.y10c{bottom:192.000000px;}
.yc2{bottom:192.960000px;}
.y63{bottom:196.560000px;}
.y12b{bottom:198.720000px;}
.y2c{bottom:200.209680px;}
.y125{bottom:200.520000px;}
.y92{bottom:204.840000px;}
.y174{bottom:210.600000px;}
.ydd{bottom:211.680000px;}
.yc1{bottom:213.480000px;}
.y12a{bottom:214.920000px;}
.y62{bottom:217.080000px;}
.y2b{bottom:218.922480px;}
.y124{bottom:221.400000px;}
.y91{bottom:225.720000px;}
.y104{bottom:226.500000px;}
.y173{bottom:231.120000px;}
.ydc{bottom:232.560000px;}
.yc0{bottom:234.360000px;}
.y61{bottom:237.960000px;}
.y2a{bottom:237.999600px;}
.y123{bottom:241.560000px;}
.y90{bottom:246.240000px;}
.y172{bottom:252.000000px;}
.ydb{bottom:253.080000px;}
.ybf{bottom:254.880000px;}
.y29{bottom:257.076720px;}
.y60{bottom:258.480000px;}
.y122{bottom:261.000000px;}
.y8f{bottom:267.120000px;}
.y171{bottom:272.520000px;}
.yda{bottom:273.960000px;}
.ybe{bottom:275.760000px;}
.y28{bottom:275.789520px;}
.y5f{bottom:283.680000px;}
.y8e{bottom:287.640000px;}
.y170{bottom:293.400000px;}
.yd9{bottom:294.480000px;}
.y27{bottom:294.866640px;}
.ybd{bottom:296.280000px;}
.y5e{bottom:305.640000px;}
.y8d{bottom:308.520000px;}
.y135{bottom:310.500000px;}
.y16f{bottom:313.920000px;}
.y26{bottom:313.943760px;}
.yd8{bottom:315.360000px;}
.ybc{bottom:317.160000px;}
.y5d{bottom:327.240000px;}
.y8c{bottom:329.040000px;}
.y100{bottom:330.000000px;}
.y25{bottom:333.020880px;}
.y16e{bottom:334.800000px;}
.yd7{bottom:335.880000px;}
.ybb{bottom:337.680000px;}
.y5c{bottom:349.200000px;}
.y8b{bottom:349.920000px;}
.y24{bottom:351.733680px;}
.y16d{bottom:355.320000px;}
.yd6{bottom:356.760000px;}
.yba{bottom:358.560000px;}
.yff{bottom:364.500000px;}
.y8a{bottom:370.440000px;}
.y23{bottom:370.810800px;}
.y5b{bottom:371.160000px;}
.y16c{bottom:376.200000px;}
.yd5{bottom:377.280000px;}
.yb9{bottom:379.080000px;}
.y89{bottom:391.320000px;}
.y5a{bottom:392.400000px;}
.yfe{bottom:393.000000px;}
.y16b{bottom:396.720000px;}
.yd4{bottom:398.160000px;}
.yb8{bottom:399.960000px;}
.y22{bottom:410.405760px;}
.y59{bottom:411.480000px;}
.y88{bottom:411.840000px;}
.y16a{bottom:417.600000px;}
.yd3{bottom:418.680000px;}
.yb7{bottom:420.480000px;}
.y58{bottom:430.200000px;}
.y87{bottom:432.720000px;}
.y133{bottom:436.500000px;}
.y169{bottom:438.120000px;}
.yd2{bottom:439.560000px;}
.yb6{bottom:441.360000px;}
.y21{bottom:448.560000px;}
.y57{bottom:449.280000px;}
.y86{bottom:453.240000px;}
.y167{bottom:454.500000px;}
.yd1{bottom:460.080000px;}
.yb5{bottom:461.880000px;}
.y121{bottom:462.960000px;}
.y20{bottom:467.285760px;}
.y56{bottom:468.360000px;}
.y85{bottom:474.120000px;}
.yd0{bottom:480.960000px;}
.yb4{bottom:482.760000px;}
.y120{bottom:483.840000px;}
.y1f{bottom:485.280000px;}
.y55{bottom:487.080000px;}
.y165{bottom:489.000000px;}
.y84{bottom:494.640000px;}
.yfc{bottom:496.500000px;}
.ycf{bottom:501.480000px;}
.yb3{bottom:503.280000px;}
.y1e{bottom:503.640000px;}
.y11f{bottom:504.000000px;}
.y54{bottom:506.160000px;}
.y83{bottom:515.520000px;}
.y163{bottom:522.000000px;}
.yce{bottom:522.360000px;}
.y11e{bottom:523.440000px;}
.yb2{bottom:524.160000px;}
.y53{bottom:525.240000px;}
.yfa{bottom:526.500000px;}
.y82{bottom:536.040000px;}
.y1d{bottom:540.360000px;}
.ycd{bottom:542.880000px;}
.y52{bottom:543.960000px;}
.yb1{bottom:544.680000px;}
.yf2{bottom:555.000000px;}
.y81{bottom:556.920000px;}
.y15f{bottom:558.000000px;}
.y1c{bottom:558.725760px;}
.y51{bottom:563.040000px;}
.ycc{bottom:563.760000px;}
.y11d{bottom:564.840000px;}
.yb0{bottom:565.560000px;}
.y1b{bottom:576.720000px;}
.y80{bottom:577.440000px;}
.y50{bottom:582.120000px;}
.ycb{bottom:584.280000px;}
.y11c{bottom:585.360000px;}
.yaf{bottom:586.080000px;}
.y1a{bottom:595.080000px;}
.y7f{bottom:597.960000px;}
.y4f{bottom:601.200000px;}
.yca{bottom:605.160000px;}
.y11b{bottom:606.240000px;}
.yae{bottom:606.960000px;}
.y7e{bottom:618.840000px;}
.y4e{bottom:619.920000px;}
.y15e{bottom:622.080000px;}
.yc9{bottom:625.680000px;}
.y11a{bottom:626.760000px;}
.yad{bottom:627.480000px;}
.y19{bottom:631.800000px;}
.y4d{bottom:639.000000px;}
.y7d{bottom:639.360000px;}
.y15d{bottom:642.600000px;}
.yc8{bottom:646.560000px;}
.y119{bottom:647.640000px;}
.yac{bottom:648.360000px;}
.y18{bottom:649.801440px;}
.y4c{bottom:658.080000px;}
.yec{bottom:658.500000px;}
.y7c{bottom:660.240000px;}
.y15c{bottom:663.480000px;}
.yc7{bottom:667.080000px;}
.y17{bottom:668.160000px;}
.yab{bottom:668.880000px;}
.y4b{bottom:676.800000px;}
.y7b{bottom:680.760000px;}
.y15b{bottom:684.000000px;}
.ya2{bottom:685.500000px;}
.y16{bottom:686.520000px;}
.yc6{bottom:687.960000px;}
.y118{bottom:689.040000px;}
.y4a{bottom:695.880000px;}
.y7a{bottom:701.640000px;}
.y15a{bottom:704.520000px;}
.yc5{bottom:707.040000px;}
.y117{bottom:709.560000px;}
.y49{bottom:714.960000px;}
.y15{bottom:718.920000px;}
.y79{bottom:722.160000px;}
.y159{bottom:725.400000px;}
.ye4{bottom:727.500000px;}
.y116{bottom:730.440000px;}
.y48{bottom:734.040000px;}
.y14{bottom:736.921440px;}
.y78{bottom:743.040000px;}
.y158{bottom:745.920000px;}
.y115{bottom:750.960000px;}
.y47{bottom:752.760000px;}
.y13{bottom:755.280000px;}
.y77{bottom:763.560000px;}
.y157{bottom:766.800000px;}
.y46{bottom:771.840000px;}
.y12{bottom:773.647200px;}
.y154{bottom:783.000000px;}
.y76{bottom:784.440000px;}
.y114{bottom:788.400000px;}
.y45{bottom:790.920000px;}
.y11{bottom:792.360000px;}
.y75{bottom:804.960000px;}
.y44{bottom:809.640000px;}
.y74{bottom:825.840000px;}
.y43{bottom:828.720000px;}
.ye2{bottom:832.500000px;}
.y10{bottom:832.680000px;}
.y73{bottom:846.360000px;}
.y42{bottom:847.800000px;}
.y14d{bottom:852.000000px;}
.yf{bottom:853.560000px;}
.y99{bottom:865.500000px;}
.y41{bottom:866.520000px;}
.y72{bottom:867.240000px;}
.ye{bottom:874.080000px;}
.y40{bottom:885.600000px;}
.y71{bottom:887.760000px;}
.y3f{bottom:904.680000px;}
.y70{bottom:908.640000px;}
.yd{bottom:915.480000px;}
.y3e{bottom:923.760000px;}
.y6f{bottom:929.160000px;}
.y147{bottom:933.000000px;}
.yc{bottom:936.360000px;}
.y3d{bottom:942.480000px;}
.y6e{bottom:950.040000px;}
.yb{bottom:956.880000px;}
.y3c{bottom:961.560000px;}
.y6d{bottom:970.560000px;}
.y3b{bottom:980.640000px;}
.y6c{bottom:991.440000px;}
.ya{bottom:999.010800px;}
.y3a{bottom:999.360000px;}
.y97{bottom:1008.000000px;}
.y6b{bottom:1011.960000px;}
.y39{bottom:1018.440000px;}
.y9{bottom:1023.127200px;}
.y6a{bottom:1032.840000px;}
.y38{bottom:1037.520000px;}
.y146{bottom:1039.500000px;}
.y8{bottom:1047.243600px;}
.y69{bottom:1053.360000px;}
.y37{bottom:1056.240000px;}
.y7{bottom:1071.360000px;}
.y68{bottom:1074.240000px;}
.y36{bottom:1075.320000px;}
.y33{bottom:1092.240000px;}
.y1{bottom:1096.500000px;}
.hf{height:30.000000px;}
.h14{height:31.500000px;}
.he{height:31.672266px;}
.h17{height:33.000000px;}
.h1e{height:34.500000px;}
.h15{height:36.000000px;}
.h1d{height:39.000000px;}
.h10{height:40.989375px;}
.hb{height:42.000000px;}
.h12{height:42.022969px;}
.h8{height:43.993125px;}
.h7{height:45.345937px;}
.h9{height:47.982521px;}
.ha{height:47.988281px;}
.h1f{height:49.992188px;}
.h19{height:51.000000px;}
.h1a{height:52.500000px;}
.h5{height:58.121719px;}
.h4{height:63.175781px;}
.h3{height:63.949219px;}
.h13{height:70.500000px;}
.h6{height:74.181094px;}
.h1c{height:82.500000px;}
.h11{height:105.000000px;}
.h1b{height:108.000000px;}
.h18{height:127.500000px;}
.hc{height:142.500000px;}
.h2{height:145.500000px;}
.hd{height:181.500000px;}
.h16{height:261.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:118.500000px;}
.wc{width:123.000000px;}
.w3{width:138.000000px;}
.w4{width:160.500000px;}
.wd{width:163.500000px;}
.wb{width:168.000000px;}
.w6{width:235.500000px;}
.w8{width:256.500000px;}
.w9{width:384.000000px;}
.w7{width:394.500000px;}
.w5{width:490.500000px;}
.w2{width:534.000000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x18{left:8.219964px;}
.x2{left:9.599850px;}
.x30{left:11.534196px;}
.x32{left:12.788280px;}
.x39{left:13.956840px;}
.x3a{left:16.019280px;}
.x43{left:18.065520px;}
.x3d{left:19.455120px;}
.x33{left:21.243960px;}
.x44{left:23.124960px;}
.x21{left:24.510000px;}
.x41{left:25.979736px;}
.x36{left:29.316600px;}
.x4b{left:31.118400px;}
.x40{left:32.163204px;}
.x34{left:33.216120px;}
.x35{left:35.499960px;}
.x3e{left:38.489040px;}
.x31{left:40.413216px;}
.x3b{left:41.913360px;}
.x4a{left:43.278480px;}
.x3c{left:44.320692px;}
.x1c{left:56.007936px;}
.x4c{left:65.293200px;}
.x37{left:74.667600px;}
.x3f{left:81.318240px;}
.x2d{left:92.874036px;}
.x38{left:115.331916px;}
.x1b{left:121.500000px;}
.x45{left:125.065800px;}
.x4{left:127.440000px;}
.x1f{left:132.000000px;}
.x42{left:138.121560px;}
.xc{left:140.610900px;}
.x22{left:144.390024px;}
.xa{left:151.842900px;}
.x2f{left:155.048760px;}
.x46{left:162.000000px;}
.x6{left:163.732890px;}
.x9{left:170.328900px;}
.x1a{left:176.340096px;}
.x4d{left:180.539820px;}
.x5{left:181.835850px;}
.x7{left:204.010410px;}
.x1e{left:209.133120px;}
.xd{left:242.112900px;}
.x1{left:264.000000px;}
.x47{left:279.000000px;}
.x1d{left:280.500000px;}
.xb{left:307.560900px;}
.x2b{left:340.930650px;}
.x2a{left:347.793150px;}
.x2c{left:354.663150px;}
.x8{left:359.754330px;}
.x20{left:366.000000px;}
.x2e{left:382.500000px;}
.x3{left:405.424650px;}
.x25{left:411.299100px;}
.x26{left:414.936600px;}
.x27{left:419.076600px;}
.x24{left:431.421600px;}
.x48{left:445.500000px;}
.x23{left:470.565000px;}
.x29{left:492.279750px;}
.x28{left:503.732250px;}
.x10{left:508.460100px;}
.x11{left:517.615620px;}
.x19{left:525.000120px;}
.x14{left:550.034700px;}
.x49{left:567.000000px;}
.x13{left:575.128500px;}
.xf{left:587.040780px;}
.x15{left:598.879500px;}
.x17{left:601.707300px;}
.xe{left:606.283500px;}
.x12{left:612.988500px;}
.x16{left:628.715100px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls23{letter-spacing:-0.370944pt;}
.ls20{letter-spacing:-0.301056pt;}
.ls22{letter-spacing:-0.284928pt;}
.ls25{letter-spacing:-0.268800pt;}
.ls12{letter-spacing:-0.259072pt;}
.ls24{letter-spacing:-0.231168pt;}
.lse{letter-spacing:-0.219648pt;}
.ls21{letter-spacing:-0.215040pt;}
.ls11{letter-spacing:-0.211968pt;}
.ls2e{letter-spacing:-0.182528pt;}
.ls15{letter-spacing:-0.176640pt;}
.lsf{letter-spacing:-0.157696pt;}
.ls13{letter-spacing:-0.152064pt;}
.lsa{letter-spacing:-0.141312pt;}
.ls2b{letter-spacing:-0.135424pt;}
.ls29{letter-spacing:-0.117760pt;}
.ls14{letter-spacing:-0.111872pt;}
.ls9{letter-spacing:-0.105984pt;}
.ls28{letter-spacing:-0.100096pt;}
.ls10{letter-spacing:-0.095744pt;}
.ls1b{letter-spacing:-0.076544pt;}
.ls8{letter-spacing:-0.070656pt;}
.ls2d{letter-spacing:-0.064768pt;}
.ls2a{letter-spacing:-0.058880pt;}
.lsb{letter-spacing:-0.052992pt;}
.ls1c{letter-spacing:-0.012800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.004736pt;}
.ls0{letter-spacing:0.004800pt;}
.ls26{letter-spacing:0.006272pt;}
.ls1d{letter-spacing:0.012800pt;}
.ls1{letter-spacing:0.074240pt;}
.ls4{letter-spacing:0.103936pt;}
.ls3{letter-spacing:0.155904pt;}
.lsd{letter-spacing:0.252416pt;}
.lsc{letter-spacing:0.282112pt;}
.ls2{letter-spacing:0.319232pt;}
.ls5{letter-spacing:0.326976pt;}
.ls19{letter-spacing:1.263360pt;}
.ls31{letter-spacing:3.770496pt;}
.ls2f{letter-spacing:4.380160pt;}
.ls18{letter-spacing:11.563520pt;}
.ls1f{letter-spacing:14.387200pt;}
.ls6{letter-spacing:16.250880pt;}
.ls1a{letter-spacing:16.428800pt;}
.ls30{letter-spacing:20.036480pt;}
.ls1e{letter-spacing:41.054720pt;}
.ls27{letter-spacing:50.735232pt;}
.ls2c{letter-spacing:188.454400pt;}
.ls17{letter-spacing:217.788160pt;}
.ws5{word-spacing:-18.879232pt;}
.ws4{word-spacing:-18.842112pt;}
.ws10{word-spacing:-16.012800pt;}
.wse{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.987200pt;}
.ws0{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.661120pt;}
.ws1{word-spacing:-14.649344pt;}
.ws15{word-spacing:-14.643456pt;}
.ws3{word-spacing:-14.614016pt;}
.wsb{word-spacing:-14.608128pt;}
.ws2{word-spacing:-14.578688pt;}
.wsd{word-spacing:-14.543360pt;}
.ws17{word-spacing:-14.537472pt;}
.ws7{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.984256pt;}
.wsa{word-spacing:-13.927936pt;}
.ws6{word-spacing:-13.922304pt;}
.ws9{word-spacing:-13.820928pt;}
.ws12{word-spacing:-13.224960pt;}
.ws14{word-spacing:-13.171200pt;}
.ws13{word-spacing:-13.155072pt;}
.ws11{word-spacing:-13.138944pt;}
.wsc{word-spacing:0.000000pt;}
._20{margin-left:-4.354816pt;}
._13{margin-left:-3.402624pt;}
._7{margin-left:-2.463744pt;}
._2{margin-left:-1.069056pt;}
._0{width:0.942080pt;}
._3{width:2.331648pt;}
._4{width:3.709440pt;}
._6{width:4.651520pt;}
._e{width:6.123520pt;}
._8{width:7.183360pt;}
._9{width:8.466944pt;}
._c{width:9.891840pt;}
._b{width:10.951680pt;}
._d{width:12.188160pt;}
._12{width:13.130240pt;}
._18{width:14.547200pt;}
._11{width:15.544832pt;}
._5{width:16.545280pt;}
._a{width:17.840640pt;}
._1a{width:18.732800pt;}
._1b{width:19.667200pt;}
._16{width:20.569600pt;}
._1e{width:21.555200pt;}
._19{width:22.483200pt;}
._17{width:23.785216pt;}
._1f{width:24.789504pt;}
._21{width:26.963200pt;}
._23{width:28.243200pt;}
._10{width:29.557760pt;}
._f{width:30.558720pt;}
._1d{width:31.912960pt;}
._1c{width:33.443840pt;}
._14{width:36.605312pt;}
._24{width:44.563200pt;}
._30{width:46.018688pt;}
._2b{width:52.870400pt;}
._22{width:67.993600pt;}
._28{width:69.145600pt;}
._27{width:78.393600pt;}
._2e{width:79.859200pt;}
._2d{width:96.396800pt;}
._2c{width:147.787520pt;}
._15{width:173.048320pt;}
._29{width:185.419008pt;}
._31{width:212.166400pt;}
._26{width:214.834048pt;}
._25{width:226.387200pt;}
._2a{width:229.056000pt;}
._2f{width:372.371200pt;}
._1{width:1699.159040pt;}
.fs4{font-size:21.760000pt;}
.fs5{font-size:42.240000pt;}
.fs6{font-size:53.760000pt;}
.fs3{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y103{bottom:3.306667pt;}
.y10f{bottom:3.413333pt;}
.y10b{bottom:3.466667pt;}
.y161{bottom:3.520000pt;}
.ya1{bottom:3.786667pt;}
.yf9{bottom:3.946667pt;}
.yf1{bottom:4.106667pt;}
.yeb{bottom:4.213333pt;}
.y30{bottom:5.173333pt;}
.y166{bottom:10.453333pt;}
.y168{bottom:10.720000pt;}
.y164{bottom:11.200000pt;}
.y162{bottom:11.840000pt;}
.ye3{bottom:13.920000pt;}
.y145{bottom:14.080000pt;}
.y14c{bottom:14.186667pt;}
.yfb{bottom:14.240000pt;}
.y98{bottom:14.400000pt;}
.y150{bottom:14.506667pt;}
.y142{bottom:14.560000pt;}
.yfd{bottom:14.666667pt;}
.y134{bottom:14.880000pt;}
.y101{bottom:16.426667pt;}
.y10d{bottom:16.533333pt;}
.y102{bottom:18.666667pt;}
.y10e{bottom:18.773333pt;}
.y10a{bottom:18.826667pt;}
.yea{bottom:19.253333pt;}
.yf8{bottom:19.306667pt;}
.yf0{bottom:19.466667pt;}
.ya0{bottom:20.426667pt;}
.y160{bottom:20.480000pt;}
.yaa{bottom:20.746667pt;}
.y153{bottom:25.066667pt;}
.y144{bottom:31.040000pt;}
.y14b{bottom:31.146667pt;}
.y13d{bottom:31.200000pt;}
.y155{bottom:31.360000pt;}
.y14f{bottom:31.466667pt;}
.y141{bottom:31.520000pt;}
.yed{bottom:32.266667pt;}
.y109{bottom:34.186667pt;}
.ye9{bottom:34.613333pt;}
.yf7{bottom:34.666667pt;}
.y138{bottom:34.720000pt;}
.yef{bottom:34.826667pt;}
.y9f{bottom:37.386667pt;}
.ya9{bottom:37.706667pt;}
.y35{bottom:40.640000pt;}
.y6{bottom:40.646400pt;}
.y152{bottom:42.026667pt;}
.y105{bottom:46.986667pt;}
.ye5{bottom:47.733333pt;}
.yf3{bottom:47.786667pt;}
.y148{bottom:48.106667pt;}
.y13c{bottom:48.160000pt;}
.y156{bottom:48.320000pt;}
.y108{bottom:49.546667pt;}
.ye8{bottom:49.973333pt;}
.yf6{bottom:50.026667pt;}
.yee{bottom:50.186667pt;}
.y132{bottom:51.520000pt;}
.y137{bottom:51.680000pt;}
.y9e{bottom:54.346667pt;}
.ya8{bottom:54.666667pt;}
.y34{bottom:57.280000pt;}
.y5{bottom:57.282560pt;}
.y3{bottom:58.613333pt;}
.y14e{bottom:58.666667pt;}
.y151{bottom:58.986667pt;}
.y12f{bottom:59.200000pt;}
.y9a{bottom:63.626667pt;}
.y107{bottom:64.906667pt;}
.y14a{bottom:65.066667pt;}
.y13b{bottom:65.120000pt;}
.ye7{bottom:65.333333pt;}
.yf5{bottom:65.386667pt;}
.y131{bottom:66.240000pt;}
.y136{bottom:68.320000pt;}
.y9d{bottom:71.306667pt;}
.y12e{bottom:73.600000pt;}
.y4{bottom:74.240000pt;}
.y2{bottom:77.173333pt;}
.y106{bottom:79.946667pt;}
.ya3{bottom:80.586667pt;}
.y130{bottom:80.640000pt;}
.ye6{bottom:80.693333pt;}
.yf4{bottom:80.746667pt;}
.y149{bottom:81.706667pt;}
.y13a{bottom:81.760000pt;}
.y140{bottom:82.080000pt;}
.y9c{bottom:87.946667pt;}
.ya7{bottom:88.266667pt;}
.y32{bottom:95.413333pt;}
.y139{bottom:98.720000pt;}
.y13f{bottom:99.040000pt;}
.y113{bottom:100.800000pt;}
.y67{bottom:101.120000pt;}
.y129{bottom:104.640000pt;}
.y9b{bottom:104.906667pt;}
.ya6{bottom:105.226667pt;}
.y96{bottom:108.480000pt;}
.y178{bottom:113.600000pt;}
.y31{bottom:113.973333pt;}
.ye1{bottom:114.560000pt;}
.y179{bottom:116.160000pt;}
.y112{bottom:119.040000pt;}
.y66{bottom:119.360000pt;}
.y143{bottom:120.000000pt;}
.ya5{bottom:121.866667pt;}
.y128{bottom:123.200000pt;}
.y95{bottom:127.040000pt;}
.y2f{bottom:127.415680pt;}
.y177{bottom:131.840000pt;}
.ye0{bottom:133.120000pt;}
.yc4{bottom:134.720000pt;}
.y111{bottom:137.600000pt;}
.y65{bottom:137.920000pt;}
.ya4{bottom:138.826667pt;}
.y127{bottom:141.440000pt;}
.y2e{bottom:144.049280pt;}
.y94{bottom:145.280000pt;}
.y12d{bottom:147.200000pt;}
.y176{bottom:150.400000pt;}
.ydf{bottom:151.360000pt;}
.yc3{bottom:152.960000pt;}
.y110{bottom:155.840000pt;}
.y64{bottom:156.160000pt;}
.y126{bottom:160.000000pt;}
.y2d{bottom:161.006720pt;}
.y12c{bottom:161.920000pt;}
.y93{bottom:163.840000pt;}
.y13e{bottom:164.000000pt;}
.y175{bottom:168.640000pt;}
.yde{bottom:169.920000pt;}
.y10c{bottom:170.666667pt;}
.yc2{bottom:171.520000pt;}
.y63{bottom:174.720000pt;}
.y12b{bottom:176.640000pt;}
.y2c{bottom:177.964160pt;}
.y125{bottom:178.240000pt;}
.y92{bottom:182.080000pt;}
.y174{bottom:187.200000pt;}
.ydd{bottom:188.160000pt;}
.yc1{bottom:189.760000pt;}
.y12a{bottom:191.040000pt;}
.y62{bottom:192.960000pt;}
.y2b{bottom:194.597760pt;}
.y124{bottom:196.800000pt;}
.y91{bottom:200.640000pt;}
.y104{bottom:201.333333pt;}
.y173{bottom:205.440000pt;}
.ydc{bottom:206.720000pt;}
.yc0{bottom:208.320000pt;}
.y61{bottom:211.520000pt;}
.y2a{bottom:211.555200pt;}
.y123{bottom:214.720000pt;}
.y90{bottom:218.880000pt;}
.y172{bottom:224.000000pt;}
.ydb{bottom:224.960000pt;}
.ybf{bottom:226.560000pt;}
.y29{bottom:228.512640pt;}
.y60{bottom:229.760000pt;}
.y122{bottom:232.000000pt;}
.y8f{bottom:237.440000pt;}
.y171{bottom:242.240000pt;}
.yda{bottom:243.520000pt;}
.ybe{bottom:245.120000pt;}
.y28{bottom:245.146240pt;}
.y5f{bottom:252.160000pt;}
.y8e{bottom:255.680000pt;}
.y170{bottom:260.800000pt;}
.yd9{bottom:261.760000pt;}
.y27{bottom:262.103680pt;}
.ybd{bottom:263.360000pt;}
.y5e{bottom:271.680000pt;}
.y8d{bottom:274.240000pt;}
.y135{bottom:276.000000pt;}
.y16f{bottom:279.040000pt;}
.y26{bottom:279.061120pt;}
.yd8{bottom:280.320000pt;}
.ybc{bottom:281.920000pt;}
.y5d{bottom:290.880000pt;}
.y8c{bottom:292.480000pt;}
.y100{bottom:293.333333pt;}
.y25{bottom:296.018560pt;}
.y16e{bottom:297.600000pt;}
.yd7{bottom:298.560000pt;}
.ybb{bottom:300.160000pt;}
.y5c{bottom:310.400000pt;}
.y8b{bottom:311.040000pt;}
.y24{bottom:312.652160pt;}
.y16d{bottom:315.840000pt;}
.yd6{bottom:317.120000pt;}
.yba{bottom:318.720000pt;}
.yff{bottom:324.000000pt;}
.y8a{bottom:329.280000pt;}
.y23{bottom:329.609600pt;}
.y5b{bottom:329.920000pt;}
.y16c{bottom:334.400000pt;}
.yd5{bottom:335.360000pt;}
.yb9{bottom:336.960000pt;}
.y89{bottom:347.840000pt;}
.y5a{bottom:348.800000pt;}
.yfe{bottom:349.333333pt;}
.y16b{bottom:352.640000pt;}
.yd4{bottom:353.920000pt;}
.yb8{bottom:355.520000pt;}
.y22{bottom:364.805120pt;}
.y59{bottom:365.760000pt;}
.y88{bottom:366.080000pt;}
.y16a{bottom:371.200000pt;}
.yd3{bottom:372.160000pt;}
.yb7{bottom:373.760000pt;}
.y58{bottom:382.400000pt;}
.y87{bottom:384.640000pt;}
.y133{bottom:388.000000pt;}
.y169{bottom:389.440000pt;}
.yd2{bottom:390.720000pt;}
.yb6{bottom:392.320000pt;}
.y21{bottom:398.720000pt;}
.y57{bottom:399.360000pt;}
.y86{bottom:402.880000pt;}
.y167{bottom:404.000000pt;}
.yd1{bottom:408.960000pt;}
.yb5{bottom:410.560000pt;}
.y121{bottom:411.520000pt;}
.y20{bottom:415.365120pt;}
.y56{bottom:416.320000pt;}
.y85{bottom:421.440000pt;}
.yd0{bottom:427.520000pt;}
.yb4{bottom:429.120000pt;}
.y120{bottom:430.080000pt;}
.y1f{bottom:431.360000pt;}
.y55{bottom:432.960000pt;}
.y165{bottom:434.666667pt;}
.y84{bottom:439.680000pt;}
.yfc{bottom:441.333333pt;}
.ycf{bottom:445.760000pt;}
.yb3{bottom:447.360000pt;}
.y1e{bottom:447.680000pt;}
.y11f{bottom:448.000000pt;}
.y54{bottom:449.920000pt;}
.y83{bottom:458.240000pt;}
.y163{bottom:464.000000pt;}
.yce{bottom:464.320000pt;}
.y11e{bottom:465.280000pt;}
.yb2{bottom:465.920000pt;}
.y53{bottom:466.880000pt;}
.yfa{bottom:468.000000pt;}
.y82{bottom:476.480000pt;}
.y1d{bottom:480.320000pt;}
.ycd{bottom:482.560000pt;}
.y52{bottom:483.520000pt;}
.yb1{bottom:484.160000pt;}
.yf2{bottom:493.333333pt;}
.y81{bottom:495.040000pt;}
.y15f{bottom:496.000000pt;}
.y1c{bottom:496.645120pt;}
.y51{bottom:500.480000pt;}
.ycc{bottom:501.120000pt;}
.y11d{bottom:502.080000pt;}
.yb0{bottom:502.720000pt;}
.y1b{bottom:512.640000pt;}
.y80{bottom:513.280000pt;}
.y50{bottom:517.440000pt;}
.ycb{bottom:519.360000pt;}
.y11c{bottom:520.320000pt;}
.yaf{bottom:520.960000pt;}
.y1a{bottom:528.960000pt;}
.y7f{bottom:531.520000pt;}
.y4f{bottom:534.400000pt;}
.yca{bottom:537.920000pt;}
.y11b{bottom:538.880000pt;}
.yae{bottom:539.520000pt;}
.y7e{bottom:550.080000pt;}
.y4e{bottom:551.040000pt;}
.y15e{bottom:552.960000pt;}
.yc9{bottom:556.160000pt;}
.y11a{bottom:557.120000pt;}
.yad{bottom:557.760000pt;}
.y19{bottom:561.600000pt;}
.y4d{bottom:568.000000pt;}
.y7d{bottom:568.320000pt;}
.y15d{bottom:571.200000pt;}
.yc8{bottom:574.720000pt;}
.y119{bottom:575.680000pt;}
.yac{bottom:576.320000pt;}
.y18{bottom:577.601280pt;}
.y4c{bottom:584.960000pt;}
.yec{bottom:585.333333pt;}
.y7c{bottom:586.880000pt;}
.y15c{bottom:589.760000pt;}
.yc7{bottom:592.960000pt;}
.y17{bottom:593.920000pt;}
.yab{bottom:594.560000pt;}
.y4b{bottom:601.600000pt;}
.y7b{bottom:605.120000pt;}
.y15b{bottom:608.000000pt;}
.ya2{bottom:609.333333pt;}
.y16{bottom:610.240000pt;}
.yc6{bottom:611.520000pt;}
.y118{bottom:612.480000pt;}
.y4a{bottom:618.560000pt;}
.y7a{bottom:623.680000pt;}
.y15a{bottom:626.240000pt;}
.yc5{bottom:628.480000pt;}
.y117{bottom:630.720000pt;}
.y49{bottom:635.520000pt;}
.y15{bottom:639.040000pt;}
.y79{bottom:641.920000pt;}
.y159{bottom:644.800000pt;}
.ye4{bottom:646.666667pt;}
.y116{bottom:649.280000pt;}
.y48{bottom:652.480000pt;}
.y14{bottom:655.041280pt;}
.y78{bottom:660.480000pt;}
.y158{bottom:663.040000pt;}
.y115{bottom:667.520000pt;}
.y47{bottom:669.120000pt;}
.y13{bottom:671.360000pt;}
.y77{bottom:678.720000pt;}
.y157{bottom:681.600000pt;}
.y46{bottom:686.080000pt;}
.y12{bottom:687.686400pt;}
.y154{bottom:696.000000pt;}
.y76{bottom:697.280000pt;}
.y114{bottom:700.800000pt;}
.y45{bottom:703.040000pt;}
.y11{bottom:704.320000pt;}
.y75{bottom:715.520000pt;}
.y44{bottom:719.680000pt;}
.y74{bottom:734.080000pt;}
.y43{bottom:736.640000pt;}
.ye2{bottom:740.000000pt;}
.y10{bottom:740.160000pt;}
.y73{bottom:752.320000pt;}
.y42{bottom:753.600000pt;}
.y14d{bottom:757.333333pt;}
.yf{bottom:758.720000pt;}
.y99{bottom:769.333333pt;}
.y41{bottom:770.240000pt;}
.y72{bottom:770.880000pt;}
.ye{bottom:776.960000pt;}
.y40{bottom:787.200000pt;}
.y71{bottom:789.120000pt;}
.y3f{bottom:804.160000pt;}
.y70{bottom:807.680000pt;}
.yd{bottom:813.760000pt;}
.y3e{bottom:821.120000pt;}
.y6f{bottom:825.920000pt;}
.y147{bottom:829.333333pt;}
.yc{bottom:832.320000pt;}
.y3d{bottom:837.760000pt;}
.y6e{bottom:844.480000pt;}
.yb{bottom:850.560000pt;}
.y3c{bottom:854.720000pt;}
.y6d{bottom:862.720000pt;}
.y3b{bottom:871.680000pt;}
.y6c{bottom:881.280000pt;}
.ya{bottom:888.009600pt;}
.y3a{bottom:888.320000pt;}
.y97{bottom:896.000000pt;}
.y6b{bottom:899.520000pt;}
.y39{bottom:905.280000pt;}
.y9{bottom:909.446400pt;}
.y6a{bottom:918.080000pt;}
.y38{bottom:922.240000pt;}
.y146{bottom:924.000000pt;}
.y8{bottom:930.883200pt;}
.y69{bottom:936.320000pt;}
.y37{bottom:938.880000pt;}
.y7{bottom:952.320000pt;}
.y68{bottom:954.880000pt;}
.y36{bottom:955.840000pt;}
.y33{bottom:970.880000pt;}
.y1{bottom:974.666667pt;}
.hf{height:26.666667pt;}
.h14{height:28.000000pt;}
.he{height:28.153125pt;}
.h17{height:29.333333pt;}
.h1e{height:30.666667pt;}
.h15{height:32.000000pt;}
.h1d{height:34.666667pt;}
.h10{height:36.435000pt;}
.hb{height:37.333333pt;}
.h12{height:37.353750pt;}
.h8{height:39.105000pt;}
.h7{height:40.307500pt;}
.h9{height:42.651130pt;}
.ha{height:42.656250pt;}
.h1f{height:44.437500pt;}
.h19{height:45.333333pt;}
.h1a{height:46.666667pt;}
.h5{height:51.663750pt;}
.h4{height:56.156250pt;}
.h3{height:56.843750pt;}
.h13{height:62.666667pt;}
.h6{height:65.938750pt;}
.h1c{height:73.333333pt;}
.h11{height:93.333333pt;}
.h1b{height:96.000000pt;}
.h18{height:113.333333pt;}
.hc{height:126.666667pt;}
.h2{height:129.333333pt;}
.hd{height:161.333333pt;}
.h16{height:232.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:105.333333pt;}
.wc{width:109.333333pt;}
.w3{width:122.666667pt;}
.w4{width:142.666667pt;}
.wd{width:145.333333pt;}
.wb{width:149.333333pt;}
.w6{width:209.333333pt;}
.w8{width:228.000000pt;}
.w9{width:341.333333pt;}
.w7{width:350.666667pt;}
.w5{width:436.000000pt;}
.w2{width:474.666667pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x18{left:7.306635pt;}
.x2{left:8.533200pt;}
.x30{left:10.252619pt;}
.x32{left:11.367360pt;}
.x39{left:12.406080pt;}
.x3a{left:14.239360pt;}
.x43{left:16.058240pt;}
.x3d{left:17.293440pt;}
.x33{left:18.883520pt;}
.x44{left:20.555520pt;}
.x21{left:21.786667pt;}
.x41{left:23.093099pt;}
.x36{left:26.059200pt;}
.x4b{left:27.660800pt;}
.x40{left:28.589515pt;}
.x34{left:29.525440pt;}
.x35{left:31.555520pt;}
.x3e{left:34.212480pt;}
.x31{left:35.922859pt;}
.x3b{left:37.256320pt;}
.x4a{left:38.469760pt;}
.x3c{left:39.396171pt;}
.x1c{left:49.784832pt;}
.x4c{left:58.038400pt;}
.x37{left:66.371200pt;}
.x3f{left:72.282880pt;}
.x2d{left:82.554699pt;}
.x38{left:102.517259pt;}
.x1b{left:108.000000pt;}
.x45{left:111.169600pt;}
.x4{left:113.280000pt;}
.x1f{left:117.333333pt;}
.x42{left:122.774720pt;}
.xc{left:124.987467pt;}
.x22{left:128.346688pt;}
.xa{left:134.971467pt;}
.x2f{left:137.821120pt;}
.x46{left:144.000000pt;}
.x6{left:145.540347pt;}
.x9{left:151.403467pt;}
.x1a{left:156.746752pt;}
.x4d{left:160.479840pt;}
.x5{left:161.631867pt;}
.x7{left:181.342587pt;}
.x1e{left:185.896107pt;}
.xd{left:215.211467pt;}
.x1{left:234.666667pt;}
.x47{left:248.000000pt;}
.x1d{left:249.333333pt;}
.xb{left:273.387467pt;}
.x2b{left:303.049467pt;}
.x2a{left:309.149467pt;}
.x2c{left:315.256133pt;}
.x8{left:319.781627pt;}
.x20{left:325.333333pt;}
.x2e{left:340.000000pt;}
.x3{left:360.377467pt;}
.x25{left:365.599200pt;}
.x26{left:368.832533pt;}
.x27{left:372.512533pt;}
.x24{left:383.485867pt;}
.x48{left:396.000000pt;}
.x23{left:418.280000pt;}
.x29{left:437.582000pt;}
.x28{left:447.762000pt;}
.x10{left:451.964533pt;}
.x11{left:460.102773pt;}
.x19{left:466.666773pt;}
.x14{left:488.919733pt;}
.x49{left:504.000000pt;}
.x13{left:511.225333pt;}
.xf{left:521.814027pt;}
.x15{left:532.337333pt;}
.x17{left:534.850933pt;}
.xe{left:538.918667pt;}
.x12{left:544.878667pt;}
.x16{left:558.857867pt;}
}




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