
    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_41aee1e6f84f6505e7446910.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_982828d0026a56744677ebff.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_a3c568790c0bf945e6f07f04.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_5d08a7c7ad20659f0668aea8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_76449e27077ec7e5dade36d4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916016;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_abd238b9c7ff390ac813988c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916016;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_83f9390c22b685568ea9a329.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_1114a2e043954b1bf53906df.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_b7d73953b603bcae5819f425.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874023;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_1a860f4a79ed2e677ca64dbb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971191;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_73e994d7dbe1b7aa102c069e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;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_756ef55aa06fbdbf48743514.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.916016;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_ee039421eede065824cd202a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.986816;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_8b49fc82e41119556ae668ef.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.916016;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_13589afab540d82ccb3eae2c.woff2')format("woff");}.fff{font-family:fff;line-height:0.690918;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_888c189544c681070e66f40e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.861816;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.398000px;}
.lsd{letter-spacing:-1.794000px;}
.ls8{letter-spacing:-1.170000px;}
.ls9{letter-spacing:-0.450000px;}
.ls7{letter-spacing:-0.330000px;}
.ls5{letter-spacing:-0.312000px;}
.ls4{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.156000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.078000px;}
.lsa{letter-spacing:0.546000px;}
.lsf{letter-spacing:0.624000px;}
.ls3{letter-spacing:1.014000px;}
.lsc{letter-spacing:1.326000px;}
.lse{letter-spacing:1.776600px;}
.ls2{letter-spacing:24.480000px;}
.ls1{letter-spacing:45.672000px;}
.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;}
}
.ws4{word-spacing:-45.672000px;}
.ws3{word-spacing:-25.764000px;}
.ws5{word-spacing:-24.480000px;}
.ws12{word-spacing:-20.340000px;}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.678320px;}
.ws6{word-spacing:-12.204000px;}
.ws7{word-spacing:-11.934000px;}
.ws10{word-spacing:-8.696028px;}
.ws13{word-spacing:-1.326000px;}
.ws8{word-spacing:-1.014000px;}
.ws17{word-spacing:-0.624000px;}
.wsf{word-spacing:-0.546000px;}
.wsb{word-spacing:-0.078000px;}
.ws1{word-spacing:0.000000px;}
.ws11{word-spacing:0.156000px;}
.ws9{word-spacing:0.270000px;}
.wsa{word-spacing:0.312000px;}
.wsc{word-spacing:0.330000px;}
.wse{word-spacing:0.450000px;}
.wsd{word-spacing:1.170000px;}
.ws14{word-spacing:1.794000px;}
.ws16{word-spacing:4.968000px;}
.ws15{word-spacing:5.742000px;}
._f{margin-left:-26.448000px;}
._10{margin-left:-15.787200px;}
._1c{margin-left:-12.891600px;}
._1d{margin-left:-11.808600px;}
._12{margin-left:-9.478704px;}
._16{margin-left:-6.428400px;}
._d{margin-left:-4.435200px;}
._11{margin-left:-2.580600px;}
._e{margin-left:-1.465200px;}
._8{width:1.885704px;}
._b{width:3.092555px;}
._1{width:4.978259px;}
._13{width:6.214800px;}
._6{width:7.542816px;}
._4{width:8.825095px;}
._14{width:10.064105px;}
._7{width:11.540508px;}
._3{width:12.860501px;}
._1a{width:13.876099px;}
._17{width:15.991800px;}
._19{width:17.100600px;}
._9{width:18.555327px;}
._5{width:21.723310px;}
._18{width:22.902000px;}
._c{width:28.210132px;}
._15{width:37.224000px;}
._a{width:46.199748px;}
._2{width:47.444313px;}
._1b{width:60.931200px;}
._0{width:769.805658px;}
.fc5{color:rgb(76,142,165);}
.fc2{color:rgb(65,160,17);}
.fc3{color:rgb(0,94,126);}
.fc1{color:rgb(255,101,0);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:36.000000px;}
.fs4{font-size:37.714080px;}
.fs13{font-size:38.478000px;}
.fs7{font-size:41.485488px;}
.fs5{font-size:42.428340px;}
.fs3{font-size:47.142600px;}
.fs2{font-size:51.856860px;}
.fs6{font-size:52.799712px;}
.fs10{font-size:54.000000px;}
.fs0{font-size:56.571120px;}
.fs1{font-size:65.999640px;}
.fsb{font-size:66.000000px;}
.fs11{font-size:72.000000px;}
.fsd{font-size:78.000000px;}
.fs12{font-size:90.000000px;}
.fsc{font-size:114.000000px;}
.fsf{font-size:126.000000px;}
.fs8{font-size:252.000000px;}
.fsa{font-size:288.000000px;}
.fs9{font-size:519.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.298365px;}
.y33{bottom:46.346400px;}
.y20{bottom:50.265797px;}
.y1f{bottom:63.630724px;}
.y1e{bottom:76.995651px;}
.y1d{bottom:90.360579px;}
.y1c{bottom:101.780873px;}
.y32{bottom:102.047250px;}
.yee{bottom:102.053400px;}
.yac{bottom:103.348350px;}
.y8a{bottom:103.917600px;}
.y111{bottom:104.457450px;}
.y12f{bottom:104.494950px;}
.y65{bottom:106.448100px;}
.y3f{bottom:109.461150px;}
.yc9{bottom:110.045850px;}
.yed{bottom:118.550400px;}
.y1b{bottom:123.419327px;}
.yab{bottom:123.890850px;}
.y89{bottom:124.460100px;}
.y110{bottom:125.164950px;}
.y12e{bottom:125.202450px;}
.yc8{bottom:126.097350px;}
.y64{bottom:127.155600px;}
.y3e{bottom:129.913650px;}
.yec{bottom:135.047400px;}
.y21{bottom:136.778700px;}
.y28{bottom:142.439400px;}
.yaa{bottom:144.433350px;}
.y88{bottom:145.002600px;}
.y10f{bottom:145.872450px;}
.y12d{bottom:145.909950px;}
.y3d{bottom:146.113650px;}
.y63{bottom:147.863100px;}
.yc7{bottom:150.680850px;}
.y3c{bottom:162.313650px;}
.ya9{bottom:164.975850px;}
.y10e{bottom:166.579950px;}
.y12c{bottom:166.617450px;}
.yc6{bottom:166.732350px;}
.y62{bottom:168.570600px;}
.y87{bottom:169.802100px;}
.y3b{bottom:178.513650px;}
.y27{bottom:184.431900px;}
.ya8{bottom:185.518350px;}
.yeb{bottom:187.272150px;}
.y10d{bottom:187.287450px;}
.y12b{bottom:187.324950px;}
.y61{bottom:189.278100px;}
.y86{bottom:190.344600px;}
.yc5{bottom:191.315850px;}
.y1a{bottom:192.612878px;}
.y3a{bottom:194.713650px;}
.y19{bottom:202.630680px;}
.y26{bottom:205.436400px;}
.ya7{bottom:206.060850px;}
.yc4{bottom:207.367350px;}
.yea{bottom:207.979650px;}
.y10c{bottom:207.994950px;}
.y12a{bottom:208.032450px;}
.y60{bottom:209.985600px;}
.y85{bottom:210.887100px;}
.y18{bottom:212.648483px;}
.y17{bottom:222.678071px;}
.y25{bottom:226.440900px;}
.ya6{bottom:226.603350px;}
.ye9{bottom:228.687150px;}
.y10b{bottom:228.702450px;}
.y129{bottom:228.739950px;}
.y156{bottom:229.091100px;}
.y5f{bottom:230.693100px;}
.y84{bottom:231.429600px;}
.yc3{bottom:231.950850px;}
.y16{bottom:232.695874px;}
.y15{bottom:242.725462px;}
.y155{bottom:245.439600px;}
.ya5{bottom:247.145850px;}
.yc2{bottom:248.002350px;}
.y17a{bottom:248.470650px;}
.ye8{bottom:249.394650px;}
.y10a{bottom:249.409950px;}
.y128{bottom:249.447450px;}
.y5e{bottom:251.400600px;}
.y83{bottom:251.972100px;}
.y14{bottom:252.743264px;}
.y154{bottom:261.788100px;}
.y13{bottom:262.761067px;}
.y179{bottom:266.952150px;}
.ya4{bottom:267.688350px;}
.ye7{bottom:270.102150px;}
.y109{bottom:270.117450px;}
.y127{bottom:270.154950px;}
.y5d{bottom:272.108100px;}
.y82{bottom:272.514600px;}
.yc1{bottom:272.585850px;}
.y12{bottom:272.790655px;}
.y153{bottom:278.136600px;}
.y11{bottom:282.808457px;}
.y178{bottom:283.300650px;}
.y31{bottom:284.429700px;}
.ya3{bottom:288.230850px;}
.yc0{bottom:288.637350px;}
.ye6{bottom:290.809650px;}
.y108{bottom:290.824950px;}
.y126{bottom:290.862450px;}
.y5c{bottom:292.815600px;}
.y10{bottom:292.838046px;}
.y81{bottom:293.057100px;}
.y152{bottom:294.485100px;}
.y177{bottom:299.649150px;}
.yf{bottom:302.855848px;}
.y30{bottom:305.434200px;}
.y151{bottom:310.833600px;}
.y107{bottom:311.532450px;}
.y125{bottom:311.569950px;}
.ye{bottom:312.873651px;}
.ybf{bottom:313.220850px;}
.y5b{bottom:313.523100px;}
.y80{bottom:313.599600px;}
.ye5{bottom:315.757650px;}
.y176{bottom:315.997650px;}
.ya2{bottom:317.284800px;}
.y2f{bottom:326.438700px;}
.y150{bottom:327.182100px;}
.ybe{bottom:329.272350px;}
.yd{bottom:330.893909px;}
.y106{bottom:332.239950px;}
.y124{bottom:332.277450px;}
.y175{bottom:332.346150px;}
.y7f{bottom:334.142100px;}
.y5a{bottom:334.230600px;}
.ye4{bottom:336.465150px;}
.y14f{bottom:343.530600px;}
.ybd{bottom:345.323850px;}
.y2e{bottom:347.443200px;}
.y174{bottom:348.694650px;}
.y105{bottom:352.947450px;}
.y123{bottom:352.984950px;}
.y7e{bottom:354.684600px;}
.y59{bottom:354.938100px;}
.ya1{bottom:356.830200px;}
.ye3{bottom:357.172650px;}
.y14e{bottom:359.879100px;}
.y2d{bottom:368.447700px;}
.ybc{bottom:369.907350px;}
.y104{bottom:373.654950px;}
.y122{bottom:373.692450px;}
.y7d{bottom:375.227100px;}
.y58{bottom:375.645600px;}
.y14d{bottom:376.227600px;}
.ya0{bottom:377.372700px;}
.y173{bottom:377.800650px;}
.ye2{bottom:377.880150px;}
.ybb{bottom:385.958850px;}
.y2c{bottom:389.452200px;}
.y14c{bottom:392.576100px;}
.y103{bottom:394.362450px;}
.y121{bottom:394.399950px;}
.y7c{bottom:395.769600px;}
.y172{bottom:396.282150px;}
.y57{bottom:396.353100px;}
.y9f{bottom:397.915200px;}
.ye1{bottom:398.587650px;}
.y14b{bottom:408.924600px;}
.y2b{bottom:410.456700px;}
.yba{bottom:410.542350px;}
.y171{bottom:412.630650px;}
.y102{bottom:415.069950px;}
.y120{bottom:415.107450px;}
.y7b{bottom:416.312100px;}
.y56{bottom:417.060600px;}
.y9e{bottom:418.457700px;}
.ye0{bottom:419.295150px;}
.y14a{bottom:425.273100px;}
.yb9{bottom:426.593850px;}
.y170{bottom:428.979150px;}
.y101{bottom:435.777450px;}
.y11f{bottom:435.814950px;}
.y7a{bottom:436.854600px;}
.y55{bottom:437.768100px;}
.y9d{bottom:439.000200px;}
.ydf{bottom:440.002650px;}
.yc{bottom:440.641882px;}
.y149{bottom:441.621600px;}
.y16f{bottom:445.327650px;}
.yb8{bottom:451.177350px;}
.y100{bottom:456.484950px;}
.y11e{bottom:456.522450px;}
.y79{bottom:457.397100px;}
.y148{bottom:457.970100px;}
.y9c{bottom:459.542700px;}
.yde{bottom:460.710150px;}
.y16e{bottom:461.676150px;}
.y54{bottom:462.716100px;}
.yb7{bottom:467.228850px;}
.y147{bottom:474.318600px;}
.yff{bottom:477.192450px;}
.y11d{bottom:477.229950px;}
.y78{bottom:477.939600px;}
.y16d{bottom:478.024650px;}
.y53{bottom:483.423600px;}
.ydd{bottom:485.658150px;}
.y146{bottom:490.667100px;}
.yb6{bottom:491.812350px;}
.y9b{bottom:497.100600px;}
.yfe{bottom:497.899950px;}
.y11c{bottom:497.937450px;}
.y2a{bottom:498.056700px;}
.y77{bottom:498.482100px;}
.y52{bottom:504.131100px;}
.ydc{bottom:506.365650px;}
.y145{bottom:507.015600px;}
.y16c{bottom:507.130650px;}
.yb5{bottom:507.863850px;}
.yfd{bottom:518.607450px;}
.y11b{bottom:518.644950px;}
.y76{bottom:519.024600px;}
.y144{bottom:523.364100px;}
.y51{bottom:524.838600px;}
.y16b{bottom:525.612150px;}
.ydb{bottom:527.073150px;}
.y29{bottom:532.256700px;}
.yb4{bottom:532.447350px;}
.yfc{bottom:539.314950px;}
.y11a{bottom:539.352450px;}
.y75{bottom:539.567100px;}
.y143{bottom:539.712600px;}
.y16a{bottom:541.960650px;}
.y50{bottom:545.546100px;}
.yda{bottom:547.780650px;}
.yb3{bottom:548.498850px;}
.y142{bottom:556.061100px;}
.y9a{bottom:556.105350px;}
.y169{bottom:558.309150px;}
.yfb{bottom:560.022450px;}
.y119{bottom:560.059950px;}
.y74{bottom:560.109600px;}
.y4f{bottom:566.253600px;}
.yd9{bottom:568.383150px;}
.y141{bottom:572.409600px;}
.yb2{bottom:573.082350px;}
.y168{bottom:574.657650px;}
.y99{bottom:576.647850px;}
.y73{bottom:580.652100px;}
.yfa{bottom:580.729950px;}
.y118{bottom:580.767450px;}
.y140{bottom:588.758100px;}
.yd8{bottom:589.090650px;}
.yb1{bottom:589.133850px;}
.y167{bottom:591.006150px;}
.y4e{bottom:591.201600px;}
.y98{bottom:597.190350px;}
.y72{bottom:601.194600px;}
.yf9{bottom:601.437450px;}
.yb{bottom:602.824212px;}
.y13f{bottom:605.106600px;}
.y166{bottom:607.354650px;}
.yd7{bottom:609.798150px;}
.y4d{bottom:611.909100px;}
.yb0{bottom:613.717350px;}
.y97{bottom:617.732850px;}
.y117{bottom:619.325850px;}
.y13e{bottom:621.455100px;}
.yf8{bottom:622.144950px;}
.y165{bottom:623.703150px;}
.ya{bottom:626.914080px;}
.yaf{bottom:629.768850px;}
.yd6{bottom:630.505650px;}
.y4c{bottom:632.616600px;}
.y13d{bottom:637.803600px;}
.y96{bottom:638.275350px;}
.y71{bottom:638.752500px;}
.y9{bottom:640.279008px;}
.yf7{bottom:642.852450px;}
.yae{bottom:645.820350px;}
.y39{bottom:650.992350px;}
.yd5{bottom:651.213150px;}
.y164{bottom:652.809150px;}
.y4b{bottom:653.324100px;}
.y13c{bottom:654.152100px;}
.y24{bottom:657.176850px;}
.y95{bottom:658.817850px;}
.yf6{bottom:663.559950px;}
.y70{bottom:665.752500px;}
.y8{bottom:666.301723px;}
.y13b{bottom:670.500600px;}
.y163{bottom:671.290650px;}
.yd4{bottom:671.920650px;}
.y4a{bottom:674.031600px;}
.yad{bottom:678.485850px;}
.y94{bottom:679.360350px;}
.y7{bottom:679.666650px;}
.y116{bottom:681.967350px;}
.yf5{bottom:684.267450px;}
.y13a{bottom:686.849100px;}
.y162{bottom:687.639150px;}
.y38{bottom:688.792350px;}
.yd3{bottom:692.628150px;}
.y6{bottom:693.019791px;}
.y49{bottom:694.739100px;}
.y93{bottom:699.902850px;}
.y115{bottom:702.674850px;}
.y139{bottom:703.197600px;}
.y161{bottom:703.987650px;}
.y5{bottom:706.384718px;}
.yd2{bottom:713.335650px;}
.y48{bottom:715.446600px;}
.y138{bottom:719.546100px;}
.y160{bottom:720.336150px;}
.y92{bottom:720.445350px;}
.yf4{bottom:722.825850px;}
.y23{bottom:723.200850px;}
.y114{bottom:723.382350px;}
.y6f{bottom:724.702350px;}
.yd1{bottom:734.043150px;}
.y137{bottom:735.894600px;}
.y47{bottom:736.154100px;}
.y15f{bottom:736.684650px;}
.y91{bottom:740.987850px;}
.y113{bottom:744.089850px;}
.y6e{bottom:745.244850px;}
.y136{bottom:752.243100px;}
.y15e{bottom:753.033150px;}
.yd0{bottom:754.750650px;}
.y46{bottom:756.861600px;}
.y90{bottom:761.530350px;}
.y37{bottom:764.392350px;}
.y112{bottom:764.797350px;}
.y6d{bottom:765.787350px;}
.y135{bottom:768.591600px;}
.y4{bottom:768.671879px;}
.ycf{bottom:775.458150px;}
.y45{bottom:777.569100px;}
.y8f{bottom:782.072850px;}
.y15d{bottom:782.139150px;}
.y134{bottom:784.940100px;}
.yf3{bottom:785.504850px;}
.y6c{bottom:786.329850px;}
.y3{bottom:788.495342px;}
.y66{bottom:790.789200px;}
.yce{bottom:796.165650px;}
.y44{bottom:798.276600px;}
.y15c{bottom:800.620650px;}
.y133{bottom:801.288600px;}
.y36{bottom:802.192350px;}
.y8e{bottom:802.615350px;}
.yf2{bottom:806.212350px;}
.y6b{bottom:806.872350px;}
.y2{bottom:810.911648px;}
.y22{bottom:811.700850px;}
.ycd{bottom:816.873150px;}
.y15b{bottom:816.969150px;}
.y132{bottom:817.637100px;}
.y43{bottom:818.984100px;}
.y8d{bottom:823.157850px;}
.yf1{bottom:826.919850px;}
.y6a{bottom:827.414850px;}
.y15a{bottom:833.317650px;}
.y131{bottom:833.985600px;}
.ycc{bottom:837.580650px;}
.y35{bottom:839.992350px;}
.y8c{bottom:843.700350px;}
.yf0{bottom:847.627350px;}
.y69{bottom:847.957350px;}
.y159{bottom:849.666150px;}
.y130{bottom:850.334100px;}
.y42{bottom:857.542350px;}
.ycb{bottom:858.288150px;}
.y8b{bottom:864.242850px;}
.y158{bottom:866.014650px;}
.yef{bottom:868.334850px;}
.y68{bottom:868.499850px;}
.y34{bottom:877.792350px;}
.y157{bottom:882.363150px;}
.y41{bottom:884.542350px;}
.yca{bottom:887.917350px;}
.y67{bottom:889.042350px;}
.y40{bottom:952.015800px;}
.h7{height:27.946133px;}
.h13{height:28.546875px;}
.h8{height:31.439400px;}
.h6{height:34.932667px;}
.h5{height:38.425933px;}
.h9{height:39.124587px;}
.h3{height:41.919200px;}
.h17{height:42.820312px;}
.h16{height:43.664062px;}
.hf{height:48.694336px;}
.h4{height:48.905733px;}
.h10{height:52.335938px;}
.h1f{height:52.909852px;}
.h1a{height:53.121094px;}
.h1e{height:53.367188px;}
.h12{height:54.272461px;}
.h18{height:57.093750px;}
.h1c{height:58.218750px;}
.h1b{height:61.171875px;}
.h1d{height:63.070312px;}
.h19{height:72.773438px;}
.h14{height:87.670898px;}
.h11{height:90.398438px;}
.h15{height:99.914062px;}
.hc{height:172.265625px;}
.he{height:212.484375px;}
.hd{height:354.785156px;}
.h2{height:992.222088px;}
.h0{height:992.820000px;}
.h1{height:993.000000px;}
.hb{height:999.000000px;}
.ha{height:999.213000px;}
.w1{width:701.250000px;}
.w3{width:701.575500px;}
.w2{width:701.576173px;}
.w0{width:701.580000px;}
.x0{left:0.000000px;}
.x3{left:36.747657px;}
.x1{left:43.430120px;}
.x13{left:46.771650px;}
.x1a{left:60.271650px;}
.x10{left:72.816900px;}
.x18{left:76.535400px;}
.x8{left:80.205750px;}
.x11{left:86.066400px;}
.x19{left:97.787400px;}
.x12{left:114.182400px;}
.x2{left:116.925434px;}
.x9{left:135.959250px;}
.x15{left:161.574750px;}
.x1b{left:166.251900px;}
.xe{left:172.163400px;}
.xf{left:182.393400px;}
.x2c{left:184.786200px;}
.x7{left:190.392750px;}
.xb{left:209.128800px;}
.xc{left:215.769300px;}
.x27{left:224.867700px;}
.x29{left:242.593200px;}
.x21{left:246.724200px;}
.x28{left:265.151700px;}
.x2d{left:272.320200px;}
.xa{left:281.522250px;}
.x20{left:287.359200px;}
.xd{left:307.133400px;}
.x24{left:324.565200px;}
.x4{left:344.105623px;}
.x30{left:372.409200px;}
.x22{left:376.594200px;}
.x2a{left:378.578700px;}
.x25{left:382.777200px;}
.x2e{left:386.111700px;}
.x1e{left:389.999700px;}
.x14{left:407.083800px;}
.x1f{left:419.767200px;}
.x1c{left:421.103700px;}
.x1d{left:433.793700px;}
.x2f{left:439.720200px;}
.x26{left:446.213700px;}
.x5{left:449.502150px;}
.x23{left:457.796700px;}
.x2b{left:460.334700px;}
.x6{left:481.152750px;}
.x16{left:635.108700px;}
.x17{left:641.303100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.909333pt;}
.lsd{letter-spacing:-1.594667pt;}
.ls8{letter-spacing:-1.040000pt;}
.ls9{letter-spacing:-0.400000pt;}
.ls7{letter-spacing:-0.293333pt;}
.ls5{letter-spacing:-0.277333pt;}
.ls4{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.138667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.069333pt;}
.lsa{letter-spacing:0.485333pt;}
.lsf{letter-spacing:0.554667pt;}
.ls3{letter-spacing:0.901333pt;}
.lsc{letter-spacing:1.178667pt;}
.lse{letter-spacing:1.579200pt;}
.ls2{letter-spacing:21.760000pt;}
.ls1{letter-spacing:40.597333pt;}
.ws4{word-spacing:-40.597333pt;}
.ws3{word-spacing:-22.901333pt;}
.ws5{word-spacing:-21.760000pt;}
.ws12{word-spacing:-18.080000pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-13.047395pt;}
.ws6{word-spacing:-10.848000pt;}
.ws7{word-spacing:-10.608000pt;}
.ws10{word-spacing:-7.729803pt;}
.ws13{word-spacing:-1.178667pt;}
.ws8{word-spacing:-0.901333pt;}
.ws17{word-spacing:-0.554667pt;}
.wsf{word-spacing:-0.485333pt;}
.wsb{word-spacing:-0.069333pt;}
.ws1{word-spacing:0.000000pt;}
.ws11{word-spacing:0.138667pt;}
.ws9{word-spacing:0.240000pt;}
.wsa{word-spacing:0.277333pt;}
.wsc{word-spacing:0.293333pt;}
.wse{word-spacing:0.400000pt;}
.wsd{word-spacing:1.040000pt;}
.ws14{word-spacing:1.594667pt;}
.ws16{word-spacing:4.416000pt;}
.ws15{word-spacing:5.104000pt;}
._f{margin-left:-23.509333pt;}
._10{margin-left:-14.033067pt;}
._1c{margin-left:-11.459200pt;}
._1d{margin-left:-10.496533pt;}
._12{margin-left:-8.425515pt;}
._16{margin-left:-5.714133pt;}
._d{margin-left:-3.942400pt;}
._11{margin-left:-2.293867pt;}
._e{margin-left:-1.302400pt;}
._8{width:1.676181pt;}
._b{width:2.748937pt;}
._1{width:4.425119pt;}
._13{width:5.524267pt;}
._6{width:6.704725pt;}
._4{width:7.844529pt;}
._14{width:8.945871pt;}
._7{width:10.258230pt;}
._3{width:11.431557pt;}
._1a{width:12.334310pt;}
._17{width:14.214933pt;}
._19{width:15.200533pt;}
._9{width:16.493624pt;}
._5{width:19.309609pt;}
._18{width:20.357333pt;}
._c{width:25.075673pt;}
._15{width:33.088000pt;}
._a{width:41.066443pt;}
._2{width:42.172722pt;}
._1b{width:54.161067pt;}
._0{width:684.271696pt;}
.fse{font-size:32.000000pt;}
.fs4{font-size:33.523627pt;}
.fs13{font-size:34.202667pt;}
.fs7{font-size:36.875989pt;}
.fs5{font-size:37.714080pt;}
.fs3{font-size:41.904533pt;}
.fs2{font-size:46.094987pt;}
.fs6{font-size:46.933077pt;}
.fs10{font-size:48.000000pt;}
.fs0{font-size:50.285440pt;}
.fs1{font-size:58.666347pt;}
.fsb{font-size:58.666667pt;}
.fs11{font-size:64.000000pt;}
.fsd{font-size:69.333333pt;}
.fs12{font-size:80.000000pt;}
.fsc{font-size:101.333333pt;}
.fsf{font-size:112.000000pt;}
.fs8{font-size:224.000000pt;}
.fsa{font-size:256.000000pt;}
.fs9{font-size:461.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.265213pt;}
.y33{bottom:41.196800pt;}
.y20{bottom:44.680709pt;}
.y1f{bottom:56.560644pt;}
.y1e{bottom:68.440579pt;}
.y1d{bottom:80.320514pt;}
.y1c{bottom:90.471887pt;}
.y32{bottom:90.708667pt;}
.yee{bottom:90.714133pt;}
.yac{bottom:91.865200pt;}
.y8a{bottom:92.371200pt;}
.y111{bottom:92.851067pt;}
.y12f{bottom:92.884400pt;}
.y65{bottom:94.620533pt;}
.y3f{bottom:97.298800pt;}
.yc9{bottom:97.818533pt;}
.yed{bottom:105.378133pt;}
.y1b{bottom:109.706068pt;}
.yab{bottom:110.125200pt;}
.y89{bottom:110.631200pt;}
.y110{bottom:111.257733pt;}
.y12e{bottom:111.291067pt;}
.yc8{bottom:112.086533pt;}
.y64{bottom:113.027200pt;}
.y3e{bottom:115.478800pt;}
.yec{bottom:120.042133pt;}
.y21{bottom:121.581067pt;}
.y28{bottom:126.612800pt;}
.yaa{bottom:128.385200pt;}
.y88{bottom:128.891200pt;}
.y10f{bottom:129.664400pt;}
.y12d{bottom:129.697733pt;}
.y3d{bottom:129.878800pt;}
.y63{bottom:131.433867pt;}
.yc7{bottom:133.938533pt;}
.y3c{bottom:144.278800pt;}
.ya9{bottom:146.645200pt;}
.y10e{bottom:148.071067pt;}
.y12c{bottom:148.104400pt;}
.yc6{bottom:148.206533pt;}
.y62{bottom:149.840533pt;}
.y87{bottom:150.935200pt;}
.y3b{bottom:158.678800pt;}
.y27{bottom:163.939467pt;}
.ya8{bottom:164.905200pt;}
.yeb{bottom:166.464133pt;}
.y10d{bottom:166.477733pt;}
.y12b{bottom:166.511067pt;}
.y61{bottom:168.247200pt;}
.y86{bottom:169.195200pt;}
.yc5{bottom:170.058533pt;}
.y1a{bottom:171.211447pt;}
.y3a{bottom:173.078800pt;}
.y19{bottom:180.116160pt;}
.y26{bottom:182.610133pt;}
.ya7{bottom:183.165200pt;}
.yc4{bottom:184.326533pt;}
.yea{bottom:184.870800pt;}
.y10c{bottom:184.884400pt;}
.y12a{bottom:184.917733pt;}
.y60{bottom:186.653867pt;}
.y85{bottom:187.455200pt;}
.y18{bottom:189.020874pt;}
.y17{bottom:197.936063pt;}
.y25{bottom:201.280800pt;}
.ya6{bottom:201.425200pt;}
.ye9{bottom:203.277467pt;}
.y10b{bottom:203.291067pt;}
.y129{bottom:203.324400pt;}
.y156{bottom:203.636533pt;}
.y5f{bottom:205.060533pt;}
.y84{bottom:205.715200pt;}
.yc3{bottom:206.178533pt;}
.y16{bottom:206.840777pt;}
.y15{bottom:215.755966pt;}
.y155{bottom:218.168533pt;}
.ya5{bottom:219.685200pt;}
.yc2{bottom:220.446533pt;}
.y17a{bottom:220.862800pt;}
.ye8{bottom:221.684133pt;}
.y10a{bottom:221.697733pt;}
.y128{bottom:221.731067pt;}
.y5e{bottom:223.467200pt;}
.y83{bottom:223.975200pt;}
.y14{bottom:224.660679pt;}
.y154{bottom:232.700533pt;}
.y13{bottom:233.565393pt;}
.y179{bottom:237.290800pt;}
.ya4{bottom:237.945200pt;}
.ye7{bottom:240.090800pt;}
.y109{bottom:240.104400pt;}
.y127{bottom:240.137733pt;}
.y5d{bottom:241.873867pt;}
.y82{bottom:242.235200pt;}
.yc1{bottom:242.298533pt;}
.y12{bottom:242.480582pt;}
.y153{bottom:247.232533pt;}
.y11{bottom:251.385295pt;}
.y178{bottom:251.822800pt;}
.y31{bottom:252.826400pt;}
.ya3{bottom:256.205200pt;}
.yc0{bottom:256.566533pt;}
.ye6{bottom:258.497467pt;}
.y108{bottom:258.511067pt;}
.y126{bottom:258.544400pt;}
.y5c{bottom:260.280533pt;}
.y10{bottom:260.300485pt;}
.y81{bottom:260.495200pt;}
.y152{bottom:261.764533pt;}
.y177{bottom:266.354800pt;}
.yf{bottom:269.205198pt;}
.y30{bottom:271.497067pt;}
.y151{bottom:276.296533pt;}
.y107{bottom:276.917733pt;}
.y125{bottom:276.951067pt;}
.ye{bottom:278.109912pt;}
.ybf{bottom:278.418533pt;}
.y5b{bottom:278.687200pt;}
.y80{bottom:278.755200pt;}
.ye5{bottom:280.673467pt;}
.y176{bottom:280.886800pt;}
.ya2{bottom:282.030933pt;}
.y2f{bottom:290.167733pt;}
.y150{bottom:290.828533pt;}
.ybe{bottom:292.686533pt;}
.yd{bottom:294.127919pt;}
.y106{bottom:295.324400pt;}
.y124{bottom:295.357733pt;}
.y175{bottom:295.418800pt;}
.y7f{bottom:297.015200pt;}
.y5a{bottom:297.093867pt;}
.ye4{bottom:299.080133pt;}
.y14f{bottom:305.360533pt;}
.ybd{bottom:306.954533pt;}
.y2e{bottom:308.838400pt;}
.y174{bottom:309.950800pt;}
.y105{bottom:313.731067pt;}
.y123{bottom:313.764400pt;}
.y7e{bottom:315.275200pt;}
.y59{bottom:315.500533pt;}
.ya1{bottom:317.182400pt;}
.ye3{bottom:317.486800pt;}
.y14e{bottom:319.892533pt;}
.y2d{bottom:327.509067pt;}
.ybc{bottom:328.806533pt;}
.y104{bottom:332.137733pt;}
.y122{bottom:332.171067pt;}
.y7d{bottom:333.535200pt;}
.y58{bottom:333.907200pt;}
.y14d{bottom:334.424533pt;}
.ya0{bottom:335.442400pt;}
.y173{bottom:335.822800pt;}
.ye2{bottom:335.893467pt;}
.ybb{bottom:343.074533pt;}
.y2c{bottom:346.179733pt;}
.y14c{bottom:348.956533pt;}
.y103{bottom:350.544400pt;}
.y121{bottom:350.577733pt;}
.y7c{bottom:351.795200pt;}
.y172{bottom:352.250800pt;}
.y57{bottom:352.313867pt;}
.y9f{bottom:353.702400pt;}
.ye1{bottom:354.300133pt;}
.y14b{bottom:363.488533pt;}
.y2b{bottom:364.850400pt;}
.yba{bottom:364.926533pt;}
.y171{bottom:366.782800pt;}
.y102{bottom:368.951067pt;}
.y120{bottom:368.984400pt;}
.y7b{bottom:370.055200pt;}
.y56{bottom:370.720533pt;}
.y9e{bottom:371.962400pt;}
.ye0{bottom:372.706800pt;}
.y14a{bottom:378.020533pt;}
.yb9{bottom:379.194533pt;}
.y170{bottom:381.314800pt;}
.y101{bottom:387.357733pt;}
.y11f{bottom:387.391067pt;}
.y7a{bottom:388.315200pt;}
.y55{bottom:389.127200pt;}
.y9d{bottom:390.222400pt;}
.ydf{bottom:391.113467pt;}
.yc{bottom:391.681673pt;}
.y149{bottom:392.552533pt;}
.y16f{bottom:395.846800pt;}
.yb8{bottom:401.046533pt;}
.y100{bottom:405.764400pt;}
.y11e{bottom:405.797733pt;}
.y79{bottom:406.575200pt;}
.y148{bottom:407.084533pt;}
.y9c{bottom:408.482400pt;}
.yde{bottom:409.520133pt;}
.y16e{bottom:410.378800pt;}
.y54{bottom:411.303200pt;}
.yb7{bottom:415.314533pt;}
.y147{bottom:421.616533pt;}
.yff{bottom:424.171067pt;}
.y11d{bottom:424.204400pt;}
.y78{bottom:424.835200pt;}
.y16d{bottom:424.910800pt;}
.y53{bottom:429.709867pt;}
.ydd{bottom:431.696133pt;}
.y146{bottom:436.148533pt;}
.yb6{bottom:437.166533pt;}
.y9b{bottom:441.867200pt;}
.yfe{bottom:442.577733pt;}
.y11c{bottom:442.611067pt;}
.y2a{bottom:442.717067pt;}
.y77{bottom:443.095200pt;}
.y52{bottom:448.116533pt;}
.ydc{bottom:450.102800pt;}
.y145{bottom:450.680533pt;}
.y16c{bottom:450.782800pt;}
.yb5{bottom:451.434533pt;}
.yfd{bottom:460.984400pt;}
.y11b{bottom:461.017733pt;}
.y76{bottom:461.355200pt;}
.y144{bottom:465.212533pt;}
.y51{bottom:466.523200pt;}
.y16b{bottom:467.210800pt;}
.ydb{bottom:468.509467pt;}
.y29{bottom:473.117067pt;}
.yb4{bottom:473.286533pt;}
.yfc{bottom:479.391067pt;}
.y11a{bottom:479.424400pt;}
.y75{bottom:479.615200pt;}
.y143{bottom:479.744533pt;}
.y16a{bottom:481.742800pt;}
.y50{bottom:484.929867pt;}
.yda{bottom:486.916133pt;}
.yb3{bottom:487.554533pt;}
.y142{bottom:494.276533pt;}
.y9a{bottom:494.315867pt;}
.y169{bottom:496.274800pt;}
.yfb{bottom:497.797733pt;}
.y119{bottom:497.831067pt;}
.y74{bottom:497.875200pt;}
.y4f{bottom:503.336533pt;}
.yd9{bottom:505.229467pt;}
.y141{bottom:508.808533pt;}
.yb2{bottom:509.406533pt;}
.y168{bottom:510.806800pt;}
.y99{bottom:512.575867pt;}
.y73{bottom:516.135200pt;}
.yfa{bottom:516.204400pt;}
.y118{bottom:516.237733pt;}
.y140{bottom:523.340533pt;}
.yd8{bottom:523.636133pt;}
.yb1{bottom:523.674533pt;}
.y167{bottom:525.338800pt;}
.y4e{bottom:525.512533pt;}
.y98{bottom:530.835867pt;}
.y72{bottom:534.395200pt;}
.yf9{bottom:534.611067pt;}
.yb{bottom:535.843744pt;}
.y13f{bottom:537.872533pt;}
.y166{bottom:539.870800pt;}
.yd7{bottom:542.042800pt;}
.y4d{bottom:543.919200pt;}
.yb0{bottom:545.526533pt;}
.y97{bottom:549.095867pt;}
.y117{bottom:550.511867pt;}
.y13e{bottom:552.404533pt;}
.yf8{bottom:553.017733pt;}
.y165{bottom:554.402800pt;}
.ya{bottom:557.256960pt;}
.yaf{bottom:559.794533pt;}
.yd6{bottom:560.449467pt;}
.y4c{bottom:562.325867pt;}
.y13d{bottom:566.936533pt;}
.y96{bottom:567.355867pt;}
.y71{bottom:567.780000pt;}
.y9{bottom:569.136896pt;}
.yf7{bottom:571.424400pt;}
.yae{bottom:574.062533pt;}
.y39{bottom:578.659867pt;}
.yd5{bottom:578.856133pt;}
.y164{bottom:580.274800pt;}
.y4b{bottom:580.732533pt;}
.y13c{bottom:581.468533pt;}
.y24{bottom:584.157200pt;}
.y95{bottom:585.615867pt;}
.yf6{bottom:589.831067pt;}
.y70{bottom:591.780000pt;}
.y8{bottom:592.268198pt;}
.y13b{bottom:596.000533pt;}
.y163{bottom:596.702800pt;}
.yd4{bottom:597.262800pt;}
.y4a{bottom:599.139200pt;}
.yad{bottom:603.098533pt;}
.y94{bottom:603.875867pt;}
.y7{bottom:604.148133pt;}
.y116{bottom:606.193200pt;}
.yf5{bottom:608.237733pt;}
.y13a{bottom:610.532533pt;}
.y162{bottom:611.234800pt;}
.y38{bottom:612.259867pt;}
.yd3{bottom:615.669467pt;}
.y6{bottom:616.017592pt;}
.y49{bottom:617.545867pt;}
.y93{bottom:622.135867pt;}
.y115{bottom:624.599867pt;}
.y139{bottom:625.064533pt;}
.y161{bottom:625.766800pt;}
.y5{bottom:627.897527pt;}
.yd2{bottom:634.076133pt;}
.y48{bottom:635.952533pt;}
.y138{bottom:639.596533pt;}
.y160{bottom:640.298800pt;}
.y92{bottom:640.395867pt;}
.yf4{bottom:642.511867pt;}
.y23{bottom:642.845200pt;}
.y114{bottom:643.006533pt;}
.y6f{bottom:644.179867pt;}
.yd1{bottom:652.482800pt;}
.y137{bottom:654.128533pt;}
.y47{bottom:654.359200pt;}
.y15f{bottom:654.830800pt;}
.y91{bottom:658.655867pt;}
.y113{bottom:661.413200pt;}
.y6e{bottom:662.439867pt;}
.y136{bottom:668.660533pt;}
.y15e{bottom:669.362800pt;}
.yd0{bottom:670.889467pt;}
.y46{bottom:672.765867pt;}
.y90{bottom:676.915867pt;}
.y37{bottom:679.459867pt;}
.y112{bottom:679.819867pt;}
.y6d{bottom:680.699867pt;}
.y135{bottom:683.192533pt;}
.y4{bottom:683.263892pt;}
.ycf{bottom:689.296133pt;}
.y45{bottom:691.172533pt;}
.y8f{bottom:695.175867pt;}
.y15d{bottom:695.234800pt;}
.y134{bottom:697.724533pt;}
.yf3{bottom:698.226533pt;}
.y6c{bottom:698.959867pt;}
.y3{bottom:700.884748pt;}
.y66{bottom:702.923733pt;}
.yce{bottom:707.702800pt;}
.y44{bottom:709.579200pt;}
.y15c{bottom:711.662800pt;}
.y133{bottom:712.256533pt;}
.y36{bottom:713.059867pt;}
.y8e{bottom:713.435867pt;}
.yf2{bottom:716.633200pt;}
.y6b{bottom:717.219867pt;}
.y2{bottom:720.810354pt;}
.y22{bottom:721.511867pt;}
.ycd{bottom:726.109467pt;}
.y15b{bottom:726.194800pt;}
.y132{bottom:726.788533pt;}
.y43{bottom:727.985867pt;}
.y8d{bottom:731.695867pt;}
.yf1{bottom:735.039867pt;}
.y6a{bottom:735.479867pt;}
.y15a{bottom:740.726800pt;}
.y131{bottom:741.320533pt;}
.ycc{bottom:744.516133pt;}
.y35{bottom:746.659867pt;}
.y8c{bottom:749.955867pt;}
.yf0{bottom:753.446533pt;}
.y69{bottom:753.739867pt;}
.y159{bottom:755.258800pt;}
.y130{bottom:755.852533pt;}
.y42{bottom:762.259867pt;}
.ycb{bottom:762.922800pt;}
.y8b{bottom:768.215867pt;}
.y158{bottom:769.790800pt;}
.yef{bottom:771.853200pt;}
.y68{bottom:771.999867pt;}
.y34{bottom:780.259867pt;}
.y157{bottom:784.322800pt;}
.y41{bottom:786.259867pt;}
.yca{bottom:789.259867pt;}
.y67{bottom:790.259867pt;}
.y40{bottom:846.236267pt;}
.h7{height:24.841007pt;}
.h13{height:25.375000pt;}
.h8{height:27.946133pt;}
.h6{height:31.051259pt;}
.h5{height:34.156385pt;}
.h9{height:34.777410pt;}
.h3{height:37.261511pt;}
.h17{height:38.062500pt;}
.h16{height:38.812500pt;}
.hf{height:43.283854pt;}
.h4{height:43.471763pt;}
.h10{height:46.520833pt;}
.h1f{height:47.030979pt;}
.h1a{height:47.218750pt;}
.h1e{height:47.437500pt;}
.h12{height:48.242188pt;}
.h18{height:50.750000pt;}
.h1c{height:51.750000pt;}
.h1b{height:54.375000pt;}
.h1d{height:56.062500pt;}
.h19{height:64.687500pt;}
.h14{height:77.929688pt;}
.h11{height:80.354167pt;}
.h15{height:88.812500pt;}
.hc{height:153.125000pt;}
.he{height:188.875000pt;}
.hd{height:315.364583pt;}
.h2{height:881.975189pt;}
.h0{height:882.506667pt;}
.h1{height:882.666667pt;}
.hb{height:888.000000pt;}
.ha{height:888.189333pt;}
.w1{width:623.333333pt;}
.w3{width:623.622667pt;}
.w2{width:623.623265pt;}
.w0{width:623.626667pt;}
.x0{left:0.000000pt;}
.x3{left:32.664584pt;}
.x1{left:38.604551pt;}
.x13{left:41.574800pt;}
.x1a{left:53.574800pt;}
.x10{left:64.726133pt;}
.x18{left:68.031467pt;}
.x8{left:71.294000pt;}
.x11{left:76.503467pt;}
.x19{left:86.922133pt;}
.x12{left:101.495467pt;}
.x2{left:103.933719pt;}
.x9{left:120.852667pt;}
.x15{left:143.622000pt;}
.x1b{left:147.779467pt;}
.xe{left:153.034133pt;}
.xf{left:162.127467pt;}
.x2c{left:164.254400pt;}
.x7{left:169.238000pt;}
.xb{left:185.892267pt;}
.xc{left:191.794933pt;}
.x27{left:199.882400pt;}
.x29{left:215.638400pt;}
.x21{left:219.310400pt;}
.x28{left:235.690400pt;}
.x2d{left:242.062400pt;}
.xa{left:250.242000pt;}
.x20{left:255.430400pt;}
.xd{left:273.007467pt;}
.x24{left:288.502400pt;}
.x4{left:305.871665pt;}
.x30{left:331.030400pt;}
.x22{left:334.750400pt;}
.x2a{left:336.514400pt;}
.x25{left:340.246400pt;}
.x2e{left:343.210400pt;}
.x1e{left:346.666400pt;}
.x14{left:361.852267pt;}
.x1f{left:373.126400pt;}
.x1c{left:374.314400pt;}
.x1d{left:385.594400pt;}
.x2f{left:390.862400pt;}
.x26{left:396.634400pt;}
.x5{left:399.557467pt;}
.x23{left:406.930400pt;}
.x2b{left:409.186400pt;}
.x6{left:427.691333pt;}
.x16{left:564.541067pt;}
.x17{left:570.047200pt;}
}




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