
    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_d09fd82a0fc0288ae0eaab5f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f08068d0c1e9c762386af50d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eced0c1ca5e128e5fd1d4f2d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0677a35215277f84b8da2608.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fe9f300d93800b60a00792d7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.944824;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_5b84348e46f7192b4ee461ff.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1eb76ff401b09328ac991960.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_aaa082f0b986163212621e26.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_3a2a4ee0bcb12fb21a005205.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.649414;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_8745702d774be2da18e4659b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.649414;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_2437e4b44234d9676475236f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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_93acaf5f895558ee86e14e25.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.850586;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.vf{vertical-align:-69.120000px;}
.v6{vertical-align:-13.680000px;}
.v2{vertical-align:-12.240000px;}
.va{vertical-align:-8.640000px;}
.ve{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:8.640000px;}
.v3{vertical-align:12.240000px;}
.vd{vertical-align:13.680000px;}
.v1{vertical-align:20.880000px;}
.v5{vertical-align:30.240000px;}
.v8{vertical-align:33.120000px;}
.v9{vertical-align:35.280000px;}
.v7{vertical-align:38.880000px;}
.v4{vertical-align:47.520000px;}
.vc{vertical-align:65.520000px;}
.ls32{letter-spacing:-0.540000px;}
.ls33{letter-spacing:-0.460200px;}
.ls41{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.337200px;}
.lsf{letter-spacing:-0.305400px;}
.ls2e{letter-spacing:-0.259800px;}
.ls16{letter-spacing:-0.188400px;}
.ls2f{letter-spacing:-0.121200px;}
.ls12{letter-spacing:-0.108000px;}
.ls35{letter-spacing:-0.106800px;}
.ls3a{letter-spacing:-0.017280px;}
.ls34{letter-spacing:-0.008640px;}
.ls3c{letter-spacing:-0.004320px;}
.lse{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.008640px;}
.ls10{letter-spacing:0.012960px;}
.ls30{letter-spacing:0.028800px;}
.ls38{letter-spacing:0.053280px;}
.ls22{letter-spacing:0.090000px;}
.ls29{letter-spacing:0.092880px;}
.ls1e{letter-spacing:0.103680px;}
.ls3e{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.119520px;}
.ls11{letter-spacing:0.126000px;}
.ls31{letter-spacing:0.135600px;}
.ls36{letter-spacing:0.144720px;}
.ls7{letter-spacing:0.153360px;}
.ls39{letter-spacing:0.160560px;}
.ls25{letter-spacing:0.175680px;}
.ls2{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.186000px;}
.ls13{letter-spacing:0.206400px;}
.ls2d{letter-spacing:0.206640px;}
.ls19{letter-spacing:0.237600px;}
.ls5{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.262080px;}
.lsb{letter-spacing:0.302400px;}
.ls37{letter-spacing:0.306720px;}
.ls3f{letter-spacing:0.321120px;}
.ls1{letter-spacing:0.360000px;}
.ls1a{letter-spacing:1.620000px;}
.ls1b{letter-spacing:1.692000px;}
.ls21{letter-spacing:1.830960px;}
.ls1d{letter-spacing:2.340000px;}
.ls2a{letter-spacing:2.617920px;}
.ls27{letter-spacing:2.908800px;}
.ls23{letter-spacing:2.944800px;}
.ls26{letter-spacing:3.026880px;}
.ls17{letter-spacing:4.275360px;}
.lsc{letter-spacing:10.742400px;}
.ls24{letter-spacing:10.980000px;}
.ls18{letter-spacing:13.260960px;}
.lsd{letter-spacing:15.062400px;}
.ls2c{letter-spacing:15.066720px;}
.ls8{letter-spacing:17.946720px;}
.ls28{letter-spacing:21.504960px;}
.lsa{letter-spacing:21.979200px;}
.ls1c{letter-spacing:29.340000px;}
.ls1f{letter-spacing:35.892000px;}
.ls2b{letter-spacing:49.980000px;}
.ls6{letter-spacing:107.226720px;}
.ls3{letter-spacing:116.586720px;}
.ls20{letter-spacing:126.180000px;}
.ls3d{letter-spacing:521.580000px;}
.ls40{letter-spacing:531.660000px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.ws19{word-spacing:-59.638800px;}
.ws7{word-spacing:-54.000000px;}
.ws17{word-spacing:-42.480720px;}
.wsc{word-spacing:-42.360720px;}
.ws1a{word-spacing:-41.788800px;}
.ws12{word-spacing:-41.760720px;}
.ws11{word-spacing:-41.760000px;}
.wsd{word-spacing:-41.422800px;}
.ws1c{word-spacing:-40.896720px;}
.ws1{word-spacing:-37.756800px;}
.ws6{word-spacing:-30.780000px;}
.ws13{word-spacing:-27.518400px;}
.ws10{word-spacing:-26.916480px;}
.wse{word-spacing:-24.036480px;}
.ws18{word-spacing:-22.952880px;}
.ws1b{word-spacing:-19.677600px;}
.ws0{word-spacing:-16.254600px;}
.ws22{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.146400px;}
.wsa{word-spacing:-14.940000px;}
.ws1f{word-spacing:-14.833200px;}
.ws16{word-spacing:-14.680200px;}
.ws24{word-spacing:-14.580000px;}
.ws1d{word-spacing:-14.479800px;}
.ws3{word-spacing:-13.626000px;}
.ws4{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.392000px;}
.ws26{word-spacing:-12.420000px;}
.ws9{word-spacing:-12.060000px;}
.ws25{word-spacing:-11.700000px;}
.ws2{word-spacing:-9.732960px;}
.ws21{word-spacing:-9.728640px;}
.ws15{word-spacing:-9.720000px;}
.ws23{word-spacing:-9.715680px;}
.ws1e{word-spacing:-9.711360px;}
.ws20{word-spacing:-9.702720px;}
.ws14{word-spacing:0.000000px;}
._3{margin-left:-2635.488960px;}
._1{margin-left:-1295.065440px;}
._4{margin-left:-463.555920px;}
._1d{margin-left:-13.486560px;}
._21{margin-left:-6.347520px;}
._1c{margin-left:-3.837600px;}
._16{margin-left:-2.327040px;}
._0{margin-left:-1.258560px;}
._2{width:1.917120px;}
._5{width:2.924880px;}
._23{width:3.974640px;}
._d{width:4.984560px;}
._7{width:6.588000px;}
._6{width:7.668000px;}
._15{width:8.724960px;}
._10{width:9.979920px;}
._e{width:11.448000px;}
._27{width:12.549600px;}
._17{width:13.560720px;}
._18{width:16.434000px;}
._20{width:18.390960px;}
._1b{width:19.694160px;}
._f{width:21.006000px;}
._14{width:22.823520px;}
._c{width:24.516000px;}
._a{width:25.558560px;}
._9{width:26.622000px;}
._8{width:28.080000px;}
._12{width:29.626800px;}
._b{width:30.726000px;}
._13{width:31.753680px;}
._25{width:32.852160px;}
._1a{width:34.476720px;}
._19{width:35.557200px;}
._22{width:36.747600px;}
._24{width:38.067120px;}
._26{width:40.019520px;}
._28{width:41.349120px;}
._29{width:42.912480px;}
._11{width:78.989040px;}
._1e{width:189.252480px;}
._1f{width:201.060000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs8{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yc9{bottom:6.300000px;}
.ycb{bottom:6.480000px;}
.yc2{bottom:7.560000px;}
.yc4{bottom:7.740000px;}
.ybc{bottom:9.360000px;}
.yba{bottom:9.540000px;}
.yb9{bottom:10.440000px;}
.y6{bottom:56.340000px;}
.y56{bottom:57.060000px;}
.y54{bottom:111.636000px;}
.y3a{bottom:111.816000px;}
.y82{bottom:112.176000px;}
.ycc{bottom:115.956000px;}
.y53{bottom:119.916000px;}
.y39{bottom:128.196000px;}
.y81{bottom:129.276000px;}
.yca{bottom:130.716000px;}
.yde{bottom:142.776000px;}
.y38{bottom:144.576000px;}
.yc8{bottom:153.210000px;}
.yac{bottom:154.470000px;}
.y52{bottom:159.330000px;}
.ydd{bottom:160.050000px;}
.y37{bottom:160.950000px;}
.y51{bottom:166.890000px;}
.yab{bottom:171.750000px;}
.ydc{bottom:174.090000px;}
.yc7{bottom:175.530000px;}
.y36{bottom:177.330000px;}
.yaa{bottom:189.030000px;}
.y35{bottom:193.710000px;}
.yc6{bottom:198.030000px;}
.ya9{bottom:206.310000px;}
.y50{bottom:207.030000px;}
.y34{bottom:210.090000px;}
.yc5{bottom:220.530000px;}
.ya8{bottom:223.590000px;}
.y4f{bottom:224.310000px;}
.y33{bottom:226.650000px;}
.ya7{bottom:240.690000px;}
.y4e{bottom:241.590000px;}
.y32{bottom:243.030000px;}
.yc3{bottom:244.650000px;}
.ya6{bottom:257.970000px;}
.yc1{bottom:267.150000px;}
.y4d{bottom:267.690000px;}
.y31{bottom:268.410000px;}
.ya5{bottom:275.250000px;}
.y30{bottom:284.790000px;}
.yc0{bottom:289.470000px;}
.ya4{bottom:292.530000px;}
.y2f{bottom:301.170000px;}
.y10d{bottom:304.230000px;}
.ya3{bottom:309.810000px;}
.ybf{bottom:313.770000px;}
.y2e{bottom:317.550000px;}
.y10c{bottom:318.090000px;}
.ya2{bottom:327.090000px;}
.y10b{bottom:331.815000px;}
.y2d{bottom:333.975000px;}
.ybe{bottom:338.115000px;}
.ya1{bottom:344.235000px;}
.y10a{bottom:345.675000px;}
.y2c{bottom:350.355000px;}
.y109{bottom:359.535000px;}
.ybd{bottom:362.235000px;}
.y2b{bottom:366.735000px;}
.y80{bottom:368.535000px;}
.ya0{bottom:370.515000px;}
.y108{bottom:373.215000px;}
.y2a{bottom:383.115000px;}
.y7f{bottom:385.815000px;}
.ybb{bottom:386.535000px;}
.y107{bottom:387.075000px;}
.y9f{bottom:387.795000px;}
.y29{bottom:399.495000px;}
.y106{bottom:400.935000px;}
.ydb{bottom:402.375000px;}
.y7e{bottom:403.095000px;}
.y9e{bottom:410.655000px;}
.y105{bottom:414.615000px;}
.y28{bottom:415.875000px;}
.yda{bottom:419.655000px;}
.y7d{bottom:420.375000px;}
.y104{bottom:428.475000px;}
.yd9{bottom:433.695000px;}
.yb8{bottom:434.955000px;}
.y4c{bottom:436.575000px;}
.y7c{bottom:437.655000px;}
.y27{bottom:438.375000px;}
.y103{bottom:442.335000px;}
.y7b{bottom:454.755000px;}
.y102{bottom:456.015000px;}
.y4b{bottom:458.175000px;}
.y26{bottom:467.355000px;}
.yb7{bottom:469.515000px;}
.y101{bottom:469.875000px;}
.y7a{bottom:472.035000px;}
.y25{bottom:482.835000px;}
.y100{bottom:483.735000px;}
.y4a{bottom:484.455000px;}
.yb6{bottom:486.795000px;}
.y79{bottom:489.315000px;}
.yff{bottom:497.415000px;}
.y24{bottom:498.315000px;}
.y78{bottom:506.595000px;}
.yfe{bottom:511.275000px;}
.y49{bottom:513.615000px;}
.yb5{bottom:522.075000px;}
.y77{bottom:523.875000px;}
.yfd{bottom:525.135000px;}
.y23{bottom:528.735000px;}
.yfc{bottom:538.815000px;}
.y48{bottom:538.995000px;}
.y76{bottom:541.155000px;}
.y22{bottom:544.395000px;}
.yfb{bottom:552.675000px;}
.y47{bottom:555.375000px;}
.y75{bottom:558.255000px;}
.y21{bottom:559.875000px;}
.yfa{bottom:566.535000px;}
.y46{bottom:571.755000px;}
.y20{bottom:575.535000px;}
.yf9{bottom:580.215000px;}
.y45{bottom:588.135000px;}
.y1f{bottom:591.015000px;}
.y74{bottom:592.815000px;}
.yf8{bottom:594.075000px;}
.y44{bottom:604.545000px;}
.y1e{bottom:606.525000px;}
.yf7{bottom:607.965000px;}
.y73{bottom:619.125000px;}
.y43{bottom:620.925000px;}
.yf6{bottom:621.645000px;}
.y1d{bottom:622.005000px;}
.y9d{bottom:627.765000px;}
.yd8{bottom:635.325000px;}
.yf5{bottom:635.505000px;}
.y72{bottom:636.405000px;}
.y1c{bottom:637.665000px;}
.y9c{bottom:645.045000px;}
.y42{bottom:646.305000px;}
.yf4{bottom:649.365000px;}
.yd7{bottom:652.425000px;}
.y1b{bottom:653.145000px;}
.y71{bottom:656.025000px;}
.y9b{bottom:662.325000px;}
.y41{bottom:662.685000px;}
.yf3{bottom:663.045000px;}
.y1a{bottom:668.625000px;}
.yd6{bottom:669.705000px;}
.y70{bottom:676.545000px;}
.yf2{bottom:676.905000px;}
.y40{bottom:679.065000px;}
.y9a{bottom:679.605000px;}
.y19{bottom:684.105000px;}
.yd5{bottom:686.985000px;}
.yf1{bottom:690.765000px;}
.y3f{bottom:695.625000px;}
.y6f{bottom:696.885000px;}
.y18{bottom:699.765000px;}
.yd4{bottom:704.265000px;}
.yf0{bottom:704.445000px;}
.y3e{bottom:712.005000px;}
.yb4{bottom:713.805000px;}
.y99{bottom:714.165000px;}
.y17{bottom:715.245000px;}
.y6e{bottom:716.145000px;}
.y3d{bottom:728.385000px;}
.yb3{bottom:730.185000px;}
.y16{bottom:730.725000px;}
.y98{bottom:731.265000px;}
.y6d{bottom:735.045000px;}
.yef{bottom:736.305000px;}
.yd3{bottom:739.545000px;}
.y3c{bottom:744.765000px;}
.y15{bottom:746.205000px;}
.yb2{bottom:746.565000px;}
.y97{bottom:748.545000px;}
.y6c{bottom:752.325000px;}
.yee{bottom:753.405000px;}
.yd2{bottom:753.585000px;}
.y3b{bottom:761.145000px;}
.y14{bottom:761.865000px;}
.yb1{bottom:762.945000px;}
.y96{bottom:765.825000px;}
.y6b{bottom:769.965000px;}
.yed{bottom:770.685000px;}
.y95{bottom:783.105000px;}
.yb0{bottom:785.625000px;}
.yec{bottom:787.965000px;}
.y6a{bottom:789.405000px;}
.y13{bottom:799.305000px;}
.y94{bottom:800.385000px;}
.yeb{bottom:805.245000px;}
.y69{bottom:808.665000px;}
.yaf{bottom:814.605000px;}
.y93{bottom:817.485000px;}
.y12{bottom:817.845000px;}
.yea{bottom:822.525000px;}
.y92{bottom:834.765000px;}
.y11{bottom:836.385000px;}
.ye9{bottom:839.985000px;}
.yae{bottom:843.945000px;}
.y68{bottom:844.485000px;}
.y10{bottom:851.865000px;}
.y67{bottom:852.045000px;}
.ye8{bottom:857.265000px;}
.yf{bottom:867.390000px;}
.y91{bottom:869.370000px;}
.ye7{bottom:874.590000px;}
.ye{bottom:885.930000px;}
.y90{bottom:886.650000px;}
.ye6{bottom:891.870000px;}
.y66{bottom:892.230000px;}
.y8f{bottom:903.930000px;}
.yd{bottom:904.470000px;}
.ye5{bottom:909.150000px;}
.y65{bottom:909.510000px;}
.yc{bottom:923.010000px;}
.ye4{bottom:926.430000px;}
.y64{bottom:926.790000px;}
.y8e{bottom:930.030000px;}
.yb{bottom:941.550000px;}
.ye3{bottom:943.530000px;}
.y63{bottom:944.070000px;}
.y8d{bottom:947.310000px;}
.ya{bottom:957.030000px;}
.ye2{bottom:960.810000px;}
.y62{bottom:961.350000px;}
.y8c{bottom:964.590000px;}
.y9{bottom:972.510000px;}
.yd1{bottom:977.370000px;}
.ye1{bottom:978.090000px;}
.y61{bottom:978.630000px;}
.y8b{bottom:981.870000px;}
.yd0{bottom:994.650000px;}
.ye0{bottom:995.370000px;}
.y8a{bottom:999.150000px;}
.y60{bottom:1000.230000px;}
.ycf{bottom:1011.930000px;}
.y8{bottom:1013.910000px;}
.y89{bottom:1020.750000px;}
.y5f{bottom:1026.510000px;}
.yce{bottom:1029.030000px;}
.ydf{bottom:1029.930000px;}
.y5e{bottom:1043.790000px;}
.ycd{bottom:1046.310000px;}
.y88{bottom:1047.030000px;}
.y7{bottom:1055.310000px;}
.y5d{bottom:1061.070000px;}
.y87{bottom:1064.310000px;}
.y5c{bottom:1078.350000px;}
.y86{bottom:1081.590000px;}
.y5{bottom:1092.210000px;}
.y5b{bottom:1096.890000px;}
.y85{bottom:1098.870000px;}
.y4{bottom:1109.490000px;}
.y5a{bottom:1114.530000px;}
.y84{bottom:1116.150000px;}
.y59{bottom:1131.840000px;}
.y83{bottom:1133.460000px;}
.y3{bottom:1136.520000px;}
.y58{bottom:1150.380000px;}
.yad{bottom:1150.560000px;}
.y2{bottom:1164.960000px;}
.y57{bottom:1167.840000px;}
.y1{bottom:1193.400000px;}
.y55{bottom:1194.840000px;}
.h17{height:21.600000px;}
.h1c{height:21.780000px;}
.h1a{height:23.400000px;}
.h1b{height:23.436000px;}
.h19{height:23.580000px;}
.h5{height:47.344922px;}
.h18{height:48.616875px;}
.h9{height:52.971680px;}
.h7{height:52.998047px;}
.h8{height:54.421875px;}
.h16{height:58.621992px;}
.h4{height:58.651172px;}
.h12{height:59.038594px;}
.hb{height:59.614102px;}
.h3{height:60.226875px;}
.ha{height:61.423863px;}
.h1d{height:65.010937px;}
.hc{height:65.884219px;}
.h11{height:66.383789px;}
.h2{height:66.757500px;}
.h15{height:69.973958px;}
.hd{height:81.668672px;}
.hf{height:85.268672px;}
.h14{height:96.124219px;}
.he{height:96.623789px;}
.h10{height:106.702031px;}
.h13{height:111.908672px;}
.h6{height:141.328125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:151.050000px;}
.w3{width:162.030000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x35{left:7.776000px;}
.x3c{left:62.145000px;}
.x6{left:66.959987px;}
.x1e{left:68.039987px;}
.x33{left:69.299987px;}
.x8{left:71.819987px;}
.x7{left:77.399987px;}
.x3b{left:79.605000px;}
.xa{left:81.359987px;}
.x29{left:84.239987px;}
.x3a{left:86.625000px;}
.xb{left:87.659987px;}
.x20{left:89.639987px;}
.x38{left:92.565000px;}
.x34{left:93.600000px;}
.xd{left:95.255987px;}
.x2c{left:98.855987px;}
.x39{left:103.725000px;}
.x3d{left:106.245000px;}
.x37{left:108.585000px;}
.x3e{left:114.525000px;}
.xc{left:121.175987px;}
.x9{left:125.675987px;}
.xf{left:126.755987px;}
.x31{left:131.255987px;}
.x32{left:142.415987px;}
.x2{left:151.229987px;}
.x2a{left:168.869987px;}
.x2b{left:171.749987px;}
.xe{left:175.349987px;}
.x1f{left:189.569987px;}
.x27{left:191.369987px;}
.x2d{left:203.969987px;}
.x36{left:256.350000px;}
.x28{left:280.469987px;}
.x1{left:288.974987px;}
.x11{left:352.514987px;}
.x12{left:358.814987px;}
.x13{left:373.214987px;}
.x15{left:387.974987px;}
.x4{left:391.214987px;}
.x3{left:392.834987px;}
.x14{left:403.634987px;}
.x10{left:406.514987px;}
.x5{left:446.474987px;}
.x21{left:459.974987px;}
.x45{left:478.184987px;}
.x22{left:481.604987px;}
.x42{left:483.764987px;}
.x2f{left:499.964987px;}
.x40{left:508.424987px;}
.x24{left:525.524987px;}
.x23{left:539.024987px;}
.x26{left:566.384987px;}
.x43{left:580.064987px;}
.x30{left:585.464987px;}
.x25{left:616.964987px;}
.x17{left:623.444987px;}
.x18{left:629.744987px;}
.x1a{left:637.304987px;}
.x1d{left:645.044987px;}
.x16{left:661.829987px;}
.x19{left:663.269987px;}
.x1c{left:676.769987px;}
.x1b{left:717.449987px;}
.x44{left:820.049987px;}
.x41{left:823.469987px;}
.x3f{left:824.729987px;}
.x2e{left:832.649987px;}
@media print{
.vf{vertical-align:-61.440000pt;}
.v6{vertical-align:-12.160000pt;}
.v2{vertical-align:-10.880000pt;}
.va{vertical-align:-7.680000pt;}
.ve{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:7.680000pt;}
.v3{vertical-align:10.880000pt;}
.vd{vertical-align:12.160000pt;}
.v1{vertical-align:18.560000pt;}
.v5{vertical-align:26.880000pt;}
.v8{vertical-align:29.440000pt;}
.v9{vertical-align:31.360000pt;}
.v7{vertical-align:34.560000pt;}
.v4{vertical-align:42.240000pt;}
.vc{vertical-align:58.240000pt;}
.ls32{letter-spacing:-0.480000pt;}
.ls33{letter-spacing:-0.409067pt;}
.ls41{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.299733pt;}
.lsf{letter-spacing:-0.271467pt;}
.ls2e{letter-spacing:-0.230933pt;}
.ls16{letter-spacing:-0.167467pt;}
.ls2f{letter-spacing:-0.107733pt;}
.ls12{letter-spacing:-0.096000pt;}
.ls35{letter-spacing:-0.094933pt;}
.ls3a{letter-spacing:-0.015360pt;}
.ls34{letter-spacing:-0.007680pt;}
.ls3c{letter-spacing:-0.003840pt;}
.lse{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.007680pt;}
.ls10{letter-spacing:0.011520pt;}
.ls30{letter-spacing:0.025600pt;}
.ls38{letter-spacing:0.047360pt;}
.ls22{letter-spacing:0.080000pt;}
.ls29{letter-spacing:0.082560pt;}
.ls1e{letter-spacing:0.092160pt;}
.ls3e{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.106240pt;}
.ls11{letter-spacing:0.112000pt;}
.ls31{letter-spacing:0.120533pt;}
.ls36{letter-spacing:0.128640pt;}
.ls7{letter-spacing:0.136320pt;}
.ls39{letter-spacing:0.142720pt;}
.ls25{letter-spacing:0.156160pt;}
.ls2{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.165333pt;}
.ls13{letter-spacing:0.183467pt;}
.ls2d{letter-spacing:0.183680pt;}
.ls19{letter-spacing:0.211200pt;}
.ls5{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.232960pt;}
.lsb{letter-spacing:0.268800pt;}
.ls37{letter-spacing:0.272640pt;}
.ls3f{letter-spacing:0.285440pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:1.440000pt;}
.ls1b{letter-spacing:1.504000pt;}
.ls21{letter-spacing:1.627520pt;}
.ls1d{letter-spacing:2.080000pt;}
.ls2a{letter-spacing:2.327040pt;}
.ls27{letter-spacing:2.585600pt;}
.ls23{letter-spacing:2.617600pt;}
.ls26{letter-spacing:2.690560pt;}
.ls17{letter-spacing:3.800320pt;}
.lsc{letter-spacing:9.548800pt;}
.ls24{letter-spacing:9.760000pt;}
.ls18{letter-spacing:11.787520pt;}
.lsd{letter-spacing:13.388800pt;}
.ls2c{letter-spacing:13.392640pt;}
.ls8{letter-spacing:15.952640pt;}
.ls28{letter-spacing:19.115520pt;}
.lsa{letter-spacing:19.537067pt;}
.ls1c{letter-spacing:26.080000pt;}
.ls1f{letter-spacing:31.904000pt;}
.ls2b{letter-spacing:44.426667pt;}
.ls6{letter-spacing:95.312640pt;}
.ls3{letter-spacing:103.632640pt;}
.ls20{letter-spacing:112.160000pt;}
.ls3d{letter-spacing:463.626667pt;}
.ls40{letter-spacing:472.586667pt;}
.wsf{word-spacing:-53.120000pt;}
.ws19{word-spacing:-53.012267pt;}
.ws7{word-spacing:-48.000000pt;}
.ws17{word-spacing:-37.760640pt;}
.wsc{word-spacing:-37.653973pt;}
.ws1a{word-spacing:-37.145600pt;}
.ws12{word-spacing:-37.120640pt;}
.ws11{word-spacing:-37.120000pt;}
.wsd{word-spacing:-36.820267pt;}
.ws1c{word-spacing:-36.352640pt;}
.ws1{word-spacing:-33.561600pt;}
.ws6{word-spacing:-27.360000pt;}
.ws13{word-spacing:-24.460800pt;}
.ws10{word-spacing:-23.925760pt;}
.wse{word-spacing:-21.365760pt;}
.ws18{word-spacing:-20.402560pt;}
.ws1b{word-spacing:-17.491200pt;}
.ws0{word-spacing:-14.448533pt;}
.ws22{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.280000pt;}
.ws1f{word-spacing:-13.185067pt;}
.ws16{word-spacing:-13.049067pt;}
.ws24{word-spacing:-12.960000pt;}
.ws1d{word-spacing:-12.870933pt;}
.ws3{word-spacing:-12.112000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.904000pt;}
.ws26{word-spacing:-11.040000pt;}
.ws9{word-spacing:-10.720000pt;}
.ws25{word-spacing:-10.400000pt;}
.ws2{word-spacing:-8.651520pt;}
.ws21{word-spacing:-8.647680pt;}
.ws15{word-spacing:-8.640000pt;}
.ws23{word-spacing:-8.636160pt;}
.ws1e{word-spacing:-8.632320pt;}
.ws20{word-spacing:-8.624640pt;}
.ws14{word-spacing:0.000000pt;}
._3{margin-left:-2342.656853pt;}
._1{margin-left:-1151.169280pt;}
._4{margin-left:-412.049707pt;}
._1d{margin-left:-11.988053pt;}
._21{margin-left:-5.642240pt;}
._1c{margin-left:-3.411200pt;}
._16{margin-left:-2.068480pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.704107pt;}
._5{width:2.599893pt;}
._23{width:3.533013pt;}
._d{width:4.430720pt;}
._7{width:5.856000pt;}
._6{width:6.816000pt;}
._15{width:7.755520pt;}
._10{width:8.871040pt;}
._e{width:10.176000pt;}
._27{width:11.155200pt;}
._17{width:12.053973pt;}
._18{width:14.608000pt;}
._20{width:16.347520pt;}
._1b{width:17.505920pt;}
._f{width:18.672000pt;}
._14{width:20.287573pt;}
._c{width:21.792000pt;}
._a{width:22.718720pt;}
._9{width:23.664000pt;}
._8{width:24.960000pt;}
._12{width:26.334933pt;}
._b{width:27.312000pt;}
._13{width:28.225493pt;}
._25{width:29.201920pt;}
._1a{width:30.645973pt;}
._19{width:31.606400pt;}
._22{width:32.664533pt;}
._24{width:33.837440pt;}
._26{width:35.572907pt;}
._28{width:36.754773pt;}
._29{width:38.144427pt;}
._11{width:70.212480pt;}
._1e{width:168.224427pt;}
._1f{width:178.720000pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs8{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yc9{bottom:5.600000pt;}
.ycb{bottom:5.760000pt;}
.yc2{bottom:6.720000pt;}
.yc4{bottom:6.880000pt;}
.ybc{bottom:8.320000pt;}
.yba{bottom:8.480000pt;}
.yb9{bottom:9.280000pt;}
.y6{bottom:50.080000pt;}
.y56{bottom:50.720000pt;}
.y54{bottom:99.232000pt;}
.y3a{bottom:99.392000pt;}
.y82{bottom:99.712000pt;}
.ycc{bottom:103.072000pt;}
.y53{bottom:106.592000pt;}
.y39{bottom:113.952000pt;}
.y81{bottom:114.912000pt;}
.yca{bottom:116.192000pt;}
.yde{bottom:126.912000pt;}
.y38{bottom:128.512000pt;}
.yc8{bottom:136.186667pt;}
.yac{bottom:137.306667pt;}
.y52{bottom:141.626667pt;}
.ydd{bottom:142.266667pt;}
.y37{bottom:143.066667pt;}
.y51{bottom:148.346667pt;}
.yab{bottom:152.666667pt;}
.ydc{bottom:154.746667pt;}
.yc7{bottom:156.026667pt;}
.y36{bottom:157.626667pt;}
.yaa{bottom:168.026667pt;}
.y35{bottom:172.186667pt;}
.yc6{bottom:176.026667pt;}
.ya9{bottom:183.386667pt;}
.y50{bottom:184.026667pt;}
.y34{bottom:186.746667pt;}
.yc5{bottom:196.026667pt;}
.ya8{bottom:198.746667pt;}
.y4f{bottom:199.386667pt;}
.y33{bottom:201.466667pt;}
.ya7{bottom:213.946667pt;}
.y4e{bottom:214.746667pt;}
.y32{bottom:216.026667pt;}
.yc3{bottom:217.466667pt;}
.ya6{bottom:229.306667pt;}
.yc1{bottom:237.466667pt;}
.y4d{bottom:237.946667pt;}
.y31{bottom:238.586667pt;}
.ya5{bottom:244.666667pt;}
.y30{bottom:253.146667pt;}
.yc0{bottom:257.306667pt;}
.ya4{bottom:260.026667pt;}
.y2f{bottom:267.706667pt;}
.y10d{bottom:270.426667pt;}
.ya3{bottom:275.386667pt;}
.ybf{bottom:278.906667pt;}
.y2e{bottom:282.266667pt;}
.y10c{bottom:282.746667pt;}
.ya2{bottom:290.746667pt;}
.y10b{bottom:294.946667pt;}
.y2d{bottom:296.866667pt;}
.ybe{bottom:300.546667pt;}
.ya1{bottom:305.986667pt;}
.y10a{bottom:307.266667pt;}
.y2c{bottom:311.426667pt;}
.y109{bottom:319.586667pt;}
.ybd{bottom:321.986667pt;}
.y2b{bottom:325.986667pt;}
.y80{bottom:327.586667pt;}
.ya0{bottom:329.346667pt;}
.y108{bottom:331.746667pt;}
.y2a{bottom:340.546667pt;}
.y7f{bottom:342.946667pt;}
.ybb{bottom:343.586667pt;}
.y107{bottom:344.066667pt;}
.y9f{bottom:344.706667pt;}
.y29{bottom:355.106667pt;}
.y106{bottom:356.386667pt;}
.ydb{bottom:357.666667pt;}
.y7e{bottom:358.306667pt;}
.y9e{bottom:365.026667pt;}
.y105{bottom:368.546667pt;}
.y28{bottom:369.666667pt;}
.yda{bottom:373.026667pt;}
.y7d{bottom:373.666667pt;}
.y104{bottom:380.866667pt;}
.yd9{bottom:385.506667pt;}
.yb8{bottom:386.626667pt;}
.y4c{bottom:388.066667pt;}
.y7c{bottom:389.026667pt;}
.y27{bottom:389.666667pt;}
.y103{bottom:393.186667pt;}
.y7b{bottom:404.226667pt;}
.y102{bottom:405.346667pt;}
.y4b{bottom:407.266667pt;}
.y26{bottom:415.426667pt;}
.yb7{bottom:417.346667pt;}
.y101{bottom:417.666667pt;}
.y7a{bottom:419.586667pt;}
.y25{bottom:429.186667pt;}
.y100{bottom:429.986667pt;}
.y4a{bottom:430.626667pt;}
.yb6{bottom:432.706667pt;}
.y79{bottom:434.946667pt;}
.yff{bottom:442.146667pt;}
.y24{bottom:442.946667pt;}
.y78{bottom:450.306667pt;}
.yfe{bottom:454.466667pt;}
.y49{bottom:456.546667pt;}
.yb5{bottom:464.066667pt;}
.y77{bottom:465.666667pt;}
.yfd{bottom:466.786667pt;}
.y23{bottom:469.986667pt;}
.yfc{bottom:478.946667pt;}
.y48{bottom:479.106667pt;}
.y76{bottom:481.026667pt;}
.y22{bottom:483.906667pt;}
.yfb{bottom:491.266667pt;}
.y47{bottom:493.666667pt;}
.y75{bottom:496.226667pt;}
.y21{bottom:497.666667pt;}
.yfa{bottom:503.586667pt;}
.y46{bottom:508.226667pt;}
.y20{bottom:511.586667pt;}
.yf9{bottom:515.746667pt;}
.y45{bottom:522.786667pt;}
.y1f{bottom:525.346667pt;}
.y74{bottom:526.946667pt;}
.yf8{bottom:528.066667pt;}
.y44{bottom:537.373333pt;}
.y1e{bottom:539.133333pt;}
.yf7{bottom:540.413333pt;}
.y73{bottom:550.333333pt;}
.y43{bottom:551.933333pt;}
.yf6{bottom:552.573333pt;}
.y1d{bottom:552.893333pt;}
.y9d{bottom:558.013333pt;}
.yd8{bottom:564.733333pt;}
.yf5{bottom:564.893333pt;}
.y72{bottom:565.693333pt;}
.y1c{bottom:566.813333pt;}
.y9c{bottom:573.373333pt;}
.y42{bottom:574.493333pt;}
.yf4{bottom:577.213333pt;}
.yd7{bottom:579.933333pt;}
.y1b{bottom:580.573333pt;}
.y71{bottom:583.133333pt;}
.y9b{bottom:588.733333pt;}
.y41{bottom:589.053333pt;}
.yf3{bottom:589.373333pt;}
.y1a{bottom:594.333333pt;}
.yd6{bottom:595.293333pt;}
.y70{bottom:601.373333pt;}
.yf2{bottom:601.693333pt;}
.y40{bottom:603.613333pt;}
.y9a{bottom:604.093333pt;}
.y19{bottom:608.093333pt;}
.yd5{bottom:610.653333pt;}
.yf1{bottom:614.013333pt;}
.y3f{bottom:618.333333pt;}
.y6f{bottom:619.453333pt;}
.y18{bottom:622.013333pt;}
.yd4{bottom:626.013333pt;}
.yf0{bottom:626.173333pt;}
.y3e{bottom:632.893333pt;}
.yb4{bottom:634.493333pt;}
.y99{bottom:634.813333pt;}
.y17{bottom:635.773333pt;}
.y6e{bottom:636.573333pt;}
.y3d{bottom:647.453333pt;}
.yb3{bottom:649.053333pt;}
.y16{bottom:649.533333pt;}
.y98{bottom:650.013333pt;}
.y6d{bottom:653.373333pt;}
.yef{bottom:654.493333pt;}
.yd3{bottom:657.373333pt;}
.y3c{bottom:662.013333pt;}
.y15{bottom:663.293333pt;}
.yb2{bottom:663.613333pt;}
.y97{bottom:665.373333pt;}
.y6c{bottom:668.733333pt;}
.yee{bottom:669.693333pt;}
.yd2{bottom:669.853333pt;}
.y3b{bottom:676.573333pt;}
.y14{bottom:677.213333pt;}
.yb1{bottom:678.173333pt;}
.y96{bottom:680.733333pt;}
.y6b{bottom:684.413333pt;}
.yed{bottom:685.053333pt;}
.y95{bottom:696.093333pt;}
.yb0{bottom:698.333333pt;}
.yec{bottom:700.413333pt;}
.y6a{bottom:701.693333pt;}
.y13{bottom:710.493333pt;}
.y94{bottom:711.453333pt;}
.yeb{bottom:715.773333pt;}
.y69{bottom:718.813333pt;}
.yaf{bottom:724.093333pt;}
.y93{bottom:726.653333pt;}
.y12{bottom:726.973333pt;}
.yea{bottom:731.133333pt;}
.y92{bottom:742.013333pt;}
.y11{bottom:743.453333pt;}
.ye9{bottom:746.653333pt;}
.yae{bottom:750.173333pt;}
.y68{bottom:750.653333pt;}
.y10{bottom:757.213333pt;}
.y67{bottom:757.373333pt;}
.ye8{bottom:762.013333pt;}
.yf{bottom:771.013333pt;}
.y91{bottom:772.773333pt;}
.ye7{bottom:777.413333pt;}
.ye{bottom:787.493333pt;}
.y90{bottom:788.133333pt;}
.ye6{bottom:792.773333pt;}
.y66{bottom:793.093333pt;}
.y8f{bottom:803.493333pt;}
.yd{bottom:803.973333pt;}
.ye5{bottom:808.133333pt;}
.y65{bottom:808.453333pt;}
.yc{bottom:820.453333pt;}
.ye4{bottom:823.493333pt;}
.y64{bottom:823.813333pt;}
.y8e{bottom:826.693333pt;}
.yb{bottom:836.933333pt;}
.ye3{bottom:838.693333pt;}
.y63{bottom:839.173333pt;}
.y8d{bottom:842.053333pt;}
.ya{bottom:850.693333pt;}
.ye2{bottom:854.053333pt;}
.y62{bottom:854.533333pt;}
.y8c{bottom:857.413333pt;}
.y9{bottom:864.453333pt;}
.yd1{bottom:868.773333pt;}
.ye1{bottom:869.413333pt;}
.y61{bottom:869.893333pt;}
.y8b{bottom:872.773333pt;}
.yd0{bottom:884.133333pt;}
.ye0{bottom:884.773333pt;}
.y8a{bottom:888.133333pt;}
.y60{bottom:889.093333pt;}
.ycf{bottom:899.493333pt;}
.y8{bottom:901.253333pt;}
.y89{bottom:907.333333pt;}
.y5f{bottom:912.453333pt;}
.yce{bottom:914.693333pt;}
.ydf{bottom:915.493333pt;}
.y5e{bottom:927.813333pt;}
.ycd{bottom:930.053333pt;}
.y88{bottom:930.693333pt;}
.y7{bottom:938.053333pt;}
.y5d{bottom:943.173333pt;}
.y87{bottom:946.053333pt;}
.y5c{bottom:958.533333pt;}
.y86{bottom:961.413333pt;}
.y5{bottom:970.853333pt;}
.y5b{bottom:975.013333pt;}
.y85{bottom:976.773333pt;}
.y4{bottom:986.213333pt;}
.y5a{bottom:990.693333pt;}
.y84{bottom:992.133333pt;}
.y59{bottom:1006.080000pt;}
.y83{bottom:1007.520000pt;}
.y3{bottom:1010.240000pt;}
.y58{bottom:1022.560000pt;}
.yad{bottom:1022.720000pt;}
.y2{bottom:1035.520000pt;}
.y57{bottom:1038.080000pt;}
.y1{bottom:1060.800000pt;}
.y55{bottom:1062.080000pt;}
.h17{height:19.200000pt;}
.h1c{height:19.360000pt;}
.h1a{height:20.800000pt;}
.h1b{height:20.832000pt;}
.h19{height:20.960000pt;}
.h5{height:42.084375pt;}
.h18{height:43.215000pt;}
.h9{height:47.085938pt;}
.h7{height:47.109375pt;}
.h8{height:48.375000pt;}
.h16{height:52.108438pt;}
.h4{height:52.134375pt;}
.h12{height:52.478750pt;}
.hb{height:52.990313pt;}
.h3{height:53.535000pt;}
.ha{height:54.598989pt;}
.h1d{height:57.787500pt;}
.hc{height:58.563750pt;}
.h11{height:59.007812pt;}
.h2{height:59.340000pt;}
.h15{height:62.199074pt;}
.hd{height:72.594375pt;}
.hf{height:75.794375pt;}
.h14{height:85.443750pt;}
.he{height:85.887813pt;}
.h10{height:94.846250pt;}
.h13{height:99.474375pt;}
.h6{height:125.625000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:134.266667pt;}
.w3{width:144.026667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x35{left:6.912000pt;}
.x3c{left:55.240000pt;}
.x6{left:59.519988pt;}
.x1e{left:60.479988pt;}
.x33{left:61.599988pt;}
.x8{left:63.839988pt;}
.x7{left:68.799988pt;}
.x3b{left:70.760000pt;}
.xa{left:72.319988pt;}
.x29{left:74.879988pt;}
.x3a{left:77.000000pt;}
.xb{left:77.919988pt;}
.x20{left:79.679988pt;}
.x38{left:82.280000pt;}
.x34{left:83.200000pt;}
.xd{left:84.671988pt;}
.x2c{left:87.871988pt;}
.x39{left:92.200000pt;}
.x3d{left:94.440000pt;}
.x37{left:96.520000pt;}
.x3e{left:101.800000pt;}
.xc{left:107.711988pt;}
.x9{left:111.711988pt;}
.xf{left:112.671988pt;}
.x31{left:116.671988pt;}
.x32{left:126.591988pt;}
.x2{left:134.426655pt;}
.x2a{left:150.106655pt;}
.x2b{left:152.666655pt;}
.xe{left:155.866655pt;}
.x1f{left:168.506655pt;}
.x27{left:170.106655pt;}
.x2d{left:181.306655pt;}
.x36{left:227.866667pt;}
.x28{left:249.306655pt;}
.x1{left:256.866655pt;}
.x11{left:313.346655pt;}
.x12{left:318.946655pt;}
.x13{left:331.746655pt;}
.x15{left:344.866655pt;}
.x4{left:347.746655pt;}
.x3{left:349.186655pt;}
.x14{left:358.786655pt;}
.x10{left:361.346655pt;}
.x5{left:396.866655pt;}
.x21{left:408.866655pt;}
.x45{left:425.053322pt;}
.x22{left:428.093322pt;}
.x42{left:430.013322pt;}
.x2f{left:444.413322pt;}
.x40{left:451.933322pt;}
.x24{left:467.133322pt;}
.x23{left:479.133322pt;}
.x26{left:503.453322pt;}
.x43{left:515.613322pt;}
.x30{left:520.413322pt;}
.x25{left:548.413322pt;}
.x17{left:554.173322pt;}
.x18{left:559.773322pt;}
.x1a{left:566.493322pt;}
.x1d{left:573.373322pt;}
.x16{left:588.293322pt;}
.x19{left:589.573322pt;}
.x1c{left:601.573322pt;}
.x1b{left:637.733322pt;}
.x44{left:728.933322pt;}
.x41{left:731.973322pt;}
.x3f{left:733.093322pt;}
.x2e{left:740.133322pt;}
}




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