
    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_c22b1b050e3571a07c3f1583.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_1c2f04d53917b5a8fd7ffdd8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_ffb7f55cefa3e7337a44398d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_a7453bbf40550d5cd0db8ef3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8974aad9f9b5f4a852b7ef0b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_7a9830eaf992d471b8ba6a80.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.097168;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_9a7426040fc061bbcac401bd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_d53c48233453d6730930cdd9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.766602;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_35c0c1bf4d8fb0f03b3bd6ce.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005859;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_07d18775bf4bcbd47049c0d5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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_2dd2de13b372ad91da183a35.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f4e41331715408e47104de35.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_d6d6c760e9e04d763ae9b89f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_092cd74bd392fcbc2cb1ecb2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5b8c0b26a89b5e03ae5df48f.woff2')format("woff");}.fff{font-family:fff;line-height:1.202148;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_899776f59a355848c4380145.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.322800px;}
.lsf{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.229800px;}
.ls3{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.085200px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.lsb{letter-spacing:0.059040px;}
.ls10{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.150000px;}
.ls9{letter-spacing:0.174240px;}
.ls6{letter-spacing:0.180000px;}
.lse{letter-spacing:0.187200px;}
.lsa{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.720000px;}
.ls15{letter-spacing:2.880000px;}
.ls7{letter-spacing:10.080000px;}
.ls12{letter-spacing:10.800000px;}
.ls17{letter-spacing:33.984000px;}
.ls11{letter-spacing:79.200000px;}
.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;}
}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-20.737200px;}
.ws3{word-spacing:-19.038240px;}
.ws4{word-spacing:-18.808440px;}
.wsc{word-spacing:-18.288000px;}
.wsf{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.712000px;}
.wsd{word-spacing:-16.272000px;}
.ws9{word-spacing:-14.940000px;}
.wse{word-spacing:-13.505760px;}
.wsa{word-spacing:-12.204000px;}
.wsb{word-spacing:-10.902240px;}
.ws6{word-spacing:-10.612800px;}
.ws5{word-spacing:-10.527600px;}
.ws0{word-spacing:0.000000px;}
._3{margin-left:-11.119680px;}
._4{margin-left:-4.633200px;}
._2{margin-left:-3.215040px;}
._1{margin-left:-1.347840px;}
._0{width:1.080000px;}
._4d{width:2.088000px;}
._12{width:3.096000px;}
._13{width:4.371840px;}
._1c{width:5.811840px;}
._3b{width:7.323840px;}
._8{width:8.763840px;}
._7{width:9.792000px;}
._3c{width:10.851840px;}
._9{width:11.880000px;}
._a{width:13.032000px;}
._30{width:14.103840px;}
._2f{width:15.192000px;}
._21{width:16.608000px;}
._40{width:19.080000px;}
._6{width:20.232000px;}
._51{width:21.384000px;}
._14{width:22.392000px;}
._25{width:23.976000px;}
._15{width:25.776000px;}
._16{width:27.228000px;}
._11{width:29.208000px;}
._31{width:30.312000px;}
._10{width:31.320000px;}
._2a{width:33.264000px;}
._27{width:34.344000px;}
._2e{width:35.352000px;}
._1e{width:36.648000px;}
._1d{width:37.728000px;}
._28{width:38.891520px;}
._5{width:40.392000px;}
._22{width:41.400000px;}
._1a{width:42.552000px;}
._1b{width:43.776000px;}
._62{width:44.907840px;}
._b{width:46.440000px;}
._c{width:47.643840px;}
._1f{width:49.392000px;}
._20{width:50.472000px;}
._4e{width:51.819840px;}
._18{width:52.920000px;}
._17{width:54.195840px;}
._23{width:55.728000px;}
._24{width:56.808000px;}
._34{width:58.032000px;}
._2b{width:59.688000px;}
._2c{width:60.984000px;}
._37{width:62.547840px;}
._f{width:64.584000px;}
._d{width:66.168000px;}
._e{width:67.536000px;}
._38{width:68.976000px;}
._39{width:70.344000px;}
._59{width:72.000000px;}
._3d{width:73.203840px;}
._53{width:74.324160px;}
._32{width:75.672000px;}
._33{width:76.680000px;}
._19{width:78.531840px;}
._4a{width:79.572000px;}
._52{width:80.628000px;}
._55{width:81.660000px;}
._4b{width:83.067840px;}
._42{width:84.360000px;}
._50{width:85.752000px;}
._45{width:87.552000px;}
._46{width:88.704000px;}
._26{width:91.131840px;}
._58{width:93.291840px;}
._54{width:95.040000px;}
._3a{width:96.840000px;}
._5e{width:98.208000px;}
._5f{width:99.267840px;}
._67{width:100.872000px;}
._49{width:103.320000px;}
._60{width:105.171840px;}
._56{width:109.152000px;}
._57{width:110.376000px;}
._61{width:111.435840px;}
._2d{width:120.240000px;}
._3e{width:122.472000px;}
._3f{width:123.912000px;}
._65{width:125.136000px;}
._5c{width:127.224000px;}
._5d{width:128.952000px;}
._41{width:132.336000px;}
._4c{width:143.136000px;}
._5a{width:153.072000px;}
._5b{width:154.368000px;}
._29{width:159.768000px;}
._69{width:161.784000px;}
._35{width:164.304000px;}
._36{width:166.248000px;}
._4f{width:168.243840px;}
._63{width:170.403840px;}
._64{width:173.952000px;}
._47{width:177.168000px;}
._48{width:178.344000px;}
._43{width:213.840000px;}
._44{width:215.208000px;}
._68{width:223.200000px;}
._66{width:326.808000px;}
._6a{width:400.896000px;}
.fc6{color:rgb(29,33,39);}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(112,48,160);}
.fc7{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:18.000000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.yaa{bottom:-22.710000px;}
.yc3{bottom:-15.630000px;}
.y10c{bottom:-14.760000px;}
.ya9{bottom:-8.130000px;}
.y0{bottom:0.000000px;}
.y94{bottom:1.725000px;}
.ya0{bottom:1.980000px;}
.yb5{bottom:3.060000px;}
.yc6{bottom:3.240000px;}
.y90{bottom:6.630000px;}
.ya8{bottom:6.660000px;}
.ycf{bottom:7.020000px;}
.yb9{bottom:7.380000px;}
.ycd{bottom:8.280000px;}
.yb1{bottom:10.080000px;}
.ybb{bottom:14.940000px;}
.y9c{bottom:17.100000px;}
.ye7{bottom:17.280000px;}
.ya7{bottom:21.240000px;}
.y13a{bottom:21.885000px;}
.yb0{bottom:26.820000px;}
.y13c{bottom:29.235000px;}
.yb8{bottom:31.140000px;}
.ycc{bottom:32.040000px;}
.y9f{bottom:35.820000px;}
.y9b{bottom:36.000000px;}
.y139{bottom:36.645000px;}
.y92{bottom:39.525000px;}
.y95{bottom:40.605000px;}
.yaf{bottom:43.740000px;}
.y13b{bottom:44.175000px;}
.y30{bottom:47.880000px;}
.ya6{bottom:50.580000px;}
.y138{bottom:51.585000px;}
.y9a{bottom:54.900000px;}
.yb7{bottom:55.080000px;}
.ycb{bottom:55.980000px;}
.yae{bottom:60.480000px;}
.y55{bottom:62.460000px;}
.ya5{bottom:65.160000px;}
.y153{bottom:66.420000px;}
.y2f{bottom:72.000000px;}
.y9e{bottom:73.800000px;}
.yad{bottom:77.400000px;}
.yca{bottom:79.740000px;}
.ya4{bottom:79.920000px;}
.y87{bottom:88.560000px;}
.yab{bottom:88.740000px;}
.y99{bottom:88.920000px;}
.y8e{bottom:90.180000px;}
.y14e{bottom:90.720000px;}
.y107{bottom:92.340000px;}
.ya3{bottom:94.500000px;}
.y12f{bottom:95.040000px;}
.y2e{bottom:95.760000px;}
.yc1{bottom:102.600000px;}
.yc9{bottom:103.500000px;}
.y84{bottom:106.200000px;}
.y98{bottom:107.820000px;}
.ya2{bottom:109.260000px;}
.y83{bottom:111.420000px;}
.y8d{bottom:113.940000px;}
.y52{bottom:114.660000px;}
.y106{bottom:116.100000px;}
.y137{bottom:116.250000px;}
.y12e{bottom:118.800000px;}
.y140{bottom:119.235000px;}
.y2d{bottom:122.220000px;}
.y82{bottom:125.100000px;}
.yc0{bottom:126.360000px;}
.yc8{bottom:127.260000px;}
.y136{bottom:132.810000px;}
.y142{bottom:133.920000px;}
.y13f{bottom:133.995000px;}
.y51{bottom:135.900000px;}
.y8c{bottom:137.700000px;}
.y14d{bottom:138.420000px;}
.y105{bottom:139.860000px;}
.y12d{bottom:142.560000px;}
.y2c{bottom:146.160000px;}
.y13e{bottom:148.755000px;}
.y141{bottom:148.860000px;}
.y135{bottom:149.190000px;}
.ybf{bottom:150.300000px;}
.y86{bottom:161.460000px;}
.y14c{bottom:162.180000px;}
.y13d{bottom:163.695000px;}
.y104{bottom:163.800000px;}
.y134{bottom:165.750000px;}
.y12c{bottom:166.320000px;}
.y2b{bottom:169.920000px;}
.ybe{bottom:174.060000px;}
.y50{bottom:178.380000px;}
.y81{bottom:185.430000px;}
.y14b{bottom:185.970000px;}
.y103{bottom:187.590000px;}
.y12b{bottom:190.290000px;}
.y2a{bottom:193.680000px;}
.ybd{bottom:197.850000px;}
.y4f{bottom:199.800000px;}
.y80{bottom:209.190000px;}
.y14a{bottom:209.910000px;}
.y102{bottom:211.350000px;}
.y12a{bottom:214.050000px;}
.y29{bottom:217.440000px;}
.ybc{bottom:221.610000px;}
.y4e{bottom:225.360000px;}
.y7f{bottom:232.950000px;}
.y149{bottom:233.670000px;}
.y133{bottom:234.900000px;}
.y101{bottom:235.110000px;}
.ye3{bottom:237.090000px;}
.y129{bottom:237.810000px;}
.y28{bottom:241.410000px;}
.y132{bottom:254.700000px;}
.y7e{bottom:256.710000px;}
.y148{bottom:257.430000px;}
.y100{bottom:258.690000px;}
.y10a{bottom:259.050000px;}
.ye2{bottom:260.850000px;}
.y128{bottom:261.570000px;}
.yba{bottom:261.750000px;}
.y27{bottom:265.170000px;}
.y4d{bottom:267.870000px;}
.y7d{bottom:280.650000px;}
.y147{bottom:281.190000px;}
.yff{bottom:282.810000px;}
.ye1{bottom:284.610000px;}
.y127{bottom:285.510000px;}
.y26{bottom:288.930000px;}
.y4c{bottom:289.290000px;}
.yb6{bottom:293.430000px;}
.y7c{bottom:304.410000px;}
.y146{bottom:305.130000px;}
.yfe{bottom:306.570000px;}
.ye0{bottom:308.370000px;}
.y126{bottom:309.270000px;}
.y25{bottom:312.690000px;}
.yed{bottom:314.685000px;}
.y4b{bottom:314.850000px;}
.y7a{bottom:328.170000px;}
.yc2{bottom:328.320000px;}
.y145{bottom:328.530000px;}
.y150{bottom:328.890000px;}
.yfd{bottom:330.330000px;}
.ydf{bottom:332.310000px;}
.y130{bottom:332.670000px;}
.y125{bottom:333.030000px;}
.y7b{bottom:335.010000px;}
.y24{bottom:336.630000px;}
.yec{bottom:338.625000px;}
.y4a{bottom:341.490000px;}
.y79{bottom:351.930000px;}
.y144{bottom:352.290000px;}
.y14f{bottom:352.650000px;}
.yfc{bottom:353.910000px;}
.y109{bottom:354.270000px;}
.yde{bottom:356.070000px;}
.y124{bottom:356.790000px;}
.y23{bottom:360.390000px;}
.yeb{bottom:362.385000px;}
.yb4{bottom:364.890000px;}
.y49{bottom:370.830000px;}
.y78{bottom:375.870000px;}
.y143{bottom:376.050000px;}
.yfb{bottom:378.030000px;}
.ydd{bottom:379.830000px;}
.y123{bottom:380.550000px;}
.y22{bottom:384.150000px;}
.yea{bottom:386.145000px;}
.y154{bottom:393.510000px;}
.y77{bottom:399.630000px;}
.y48{bottom:399.990000px;}
.yfa{bottom:401.790000px;}
.ydc{bottom:403.590000px;}
.y122{bottom:404.490000px;}
.y21{bottom:407.910000px;}
.ye9{bottom:409.905000px;}
.y152{bottom:421.245000px;}
.y76{bottom:423.435000px;}
.yf9{bottom:425.595000px;}
.ydb{bottom:427.395000px;}
.y121{bottom:428.295000px;}
.y47{bottom:429.330000px;}
.y20{bottom:431.850000px;}
.ye8{bottom:433.875000px;}
.y75{bottom:447.195000px;}
.yf8{bottom:449.355000px;}
.yda{bottom:451.335000px;}
.y120{bottom:452.055000px;}
.y1f{bottom:455.610000px;}
.y46{bottom:458.670000px;}
.y74{bottom:471.135000px;}
.yf7{bottom:473.295000px;}
.yd9{bottom:475.095000px;}
.y11f{bottom:475.815000px;}
.y1e{bottom:479.415000px;}
.y45{bottom:481.395000px;}
.y73{bottom:494.895000px;}
.yf6{bottom:497.055000px;}
.yd8{bottom:498.855000px;}
.y11e{bottom:499.755000px;}
.y1d{bottom:503.175000px;}
.y72{bottom:518.655000px;}
.yf5{bottom:520.815000px;}
.yd7{bottom:522.615000px;}
.y11d{bottom:523.515000px;}
.y1c{bottom:527.115000px;}
.yc4{bottom:542.055000px;}
.y71{bottom:542.415000px;}
.yf4{bottom:544.215000px;}
.y108{bottom:544.575000px;}
.yd6{bottom:546.555000px;}
.y11c{bottom:547.275000px;}
.y1b{bottom:550.875000px;}
.y6f{bottom:566.355000px;}
.yf3{bottom:568.515000px;}
.yd5{bottom:570.315000px;}
.y11b{bottom:571.035000px;}
.y70{bottom:573.195000px;}
.y1a{bottom:574.635000px;}
.y6e{bottom:590.115000px;}
.yf2{bottom:592.275000px;}
.yd4{bottom:594.075000px;}
.y11a{bottom:594.975000px;}
.y19{bottom:598.395000px;}
.y8b{bottom:613.515000px;}
.y6d{bottom:613.875000px;}
.yf1{bottom:616.035000px;}
.yd3{bottom:617.835000px;}
.y119{bottom:618.735000px;}
.y18{bottom:622.335000px;}
.y6c{bottom:637.635000px;}
.yf0{bottom:639.795000px;}
.yd2{bottom:641.775000px;}
.y118{bottom:642.495000px;}
.y17{bottom:646.095000px;}
.y44{bottom:654.555000px;}
.y151{bottom:660.705000px;}
.y6b{bottom:661.425000px;}
.y9d{bottom:661.965000px;}
.yef{bottom:663.765000px;}
.ya1{bottom:663.945000px;}
.yd1{bottom:665.565000px;}
.y97{bottom:666.105000px;}
.yac{bottom:666.285000px;}
.y16{bottom:669.855000px;}
.y43{bottom:683.715000px;}
.y6a{bottom:685.005000px;}
.y85{bottom:685.365000px;}
.yd0{bottom:689.325000px;}
.y117{bottom:690.225000px;}
.y15{bottom:693.645000px;}
.yee{bottom:703.905000px;}
.yce{bottom:705.705000px;}
.y69{bottom:709.125000px;}
.y42{bottom:711.645000px;}
.y116{bottom:713.985000px;}
.y14{bottom:717.405000px;}
.ye6{bottom:727.665000px;}
.yc7{bottom:729.465000px;}
.y68{bottom:732.885000px;}
.y41{bottom:735.405000px;}
.y115{bottom:737.745000px;}
.ye5{bottom:738.975000px;}
.y13{bottom:741.345000px;}
.y67{bottom:756.645000px;}
.y40{bottom:759.885000px;}
.y114{bottom:761.505000px;}
.ye4{bottom:762.195000px;}
.y12{bottom:765.105000px;}
.y66{bottom:780.585000px;}
.y3f{bottom:784.005000px;}
.y113{bottom:785.445000px;}
.y11{bottom:788.865000px;}
.y65{bottom:804.345000px;}
.y3e{bottom:807.765000px;}
.y112{bottom:809.205000px;}
.y10{bottom:812.625000px;}
.y64{bottom:828.105000px;}
.y3d{bottom:832.965000px;}
.y91{bottom:834.840000px;}
.yf{bottom:836.565000px;}
.yb3{bottom:851.505000px;}
.y63{bottom:851.865000px;}
.y93{bottom:855.465000px;}
.y111{bottom:856.365000px;}
.y96{bottom:856.545000px;}
.ye{bottom:860.325000px;}
.y3c{bottom:860.685000px;}
.yc5{bottom:873.105000px;}
.y131{bottom:873.180000px;}
.y62{bottom:875.805000px;}
.y110{bottom:876.345000px;}
.yd{bottom:884.085000px;}
.y3b{bottom:888.225000px;}
.y61{bottom:899.565000px;}
.yc{bottom:907.845000px;}
.y3a{bottom:915.765000px;}
.yb2{bottom:923.010000px;}
.y60{bottom:923.370000px;}
.yb{bottom:931.830000px;}
.y39{bottom:943.710000px;}
.y5f{bottom:947.130000px;}
.ya{bottom:955.590000px;}
.y8f{bottom:967.860000px;}
.y5e{bottom:971.070000px;}
.y38{bottom:974.670000px;}
.y9{bottom:979.350000px;}
.y5d{bottom:994.830000px;}
.y8{bottom:1003.110000px;}
.y37{bottom:1007.070000px;}
.y5c{bottom:1018.590000px;}
.y7{bottom:1027.050000px;}
.y36{bottom:1040.010000px;}
.y5b{bottom:1042.350000px;}
.y6{bottom:1050.810000px;}
.y5a{bottom:1066.290000px;}
.y10f{bottom:1067.190000px;}
.y35{bottom:1071.330000px;}
.y5{bottom:1074.570000px;}
.y59{bottom:1089.690000px;}
.y8a{bottom:1090.050000px;}
.y34{bottom:1096.890000px;}
.y4{bottom:1098.330000px;}
.y58{bottom:1113.810000px;}
.y10e{bottom:1114.170000px;}
.y3{bottom:1122.270000px;}
.y33{bottom:1122.630000px;}
.y57{bottom:1137.210000px;}
.y89{bottom:1137.570000px;}
.y10d{bottom:1139.370000px;}
.y2{bottom:1146.030000px;}
.y32{bottom:1147.470000px;}
.y56{bottom:1161.180000px;}
.y10b{bottom:1161.360000px;}
.y88{bottom:1161.540000px;}
.y31{bottom:1169.460000px;}
.y1{bottom:1169.820000px;}
.y54{bottom:1184.580000px;}
.y53{bottom:1198.980000px;}
.h21{height:0.035980px;}
.h26{height:0.899985px;}
.h27{height:0.900015px;}
.h17{height:22.320000px;}
.h24{height:23.760000px;}
.h20{height:31.680000px;}
.h15{height:38.671172px;}
.h13{height:47.344922px;}
.h1c{height:47.980898px;}
.he{height:48.616875px;}
.h18{height:52.380000px;}
.h19{height:53.709961px;}
.h1a{height:54.180000px;}
.h2a{height:55.291992px;}
.h11{height:59.343750px;}
.h16{height:59.439023px;}
.h29{height:61.189805px;}
.h1d{height:62.261719px;}
.h14{height:63.457031px;}
.hc{height:63.632461px;}
.h4{height:65.884219px;}
.h10{height:70.628906px;}
.h12{height:70.664062px;}
.hf{height:71.324297px;}
.h1f{height:71.460000px;}
.h2{height:72.562500px;}
.h5{height:73.722656px;}
.h2d{height:74.004654px;}
.ha{height:82.676953px;}
.h3{height:84.898125px;}
.h6{height:86.255508px;}
.h9{height:93.983203px;}
.hb{height:95.245664px;}
.h8{height:108.843750px;}
.h7{height:110.583984px;}
.h1b{height:120.600000px;}
.h23{height:143.640000px;}
.h2c{height:266.475000px;}
.h28{height:304.740000px;}
.h22{height:304.815000px;}
.h1e{height:384.375000px;}
.h2b{height:437.610000px;}
.h25{height:450.255000px;}
.hd{height:1262.879970px;}
.h1{height:1263.000000px;}
.h0{height:1263.059970px;}
.w15{width:25.380000px;}
.w14{width:25.560000px;}
.we{width:30.420000px;}
.wf{width:37.800000px;}
.w10{width:40.320000px;}
.wc{width:105.480000px;}
.wa{width:105.660000px;}
.wb{width:105.696000px;}
.w9{width:123.660000px;}
.w8{width:123.840000px;}
.w12{width:243.750000px;}
.w17{width:305.130000px;}
.w16{width:394.455000px;}
.w11{width:500.325000px;}
.w7{width:503.460000px;}
.w18{width:700.305000px;}
.wd{width:701.025000px;}
.w13{width:744.090000px;}
.w6{width:892.979988px;}
.w5{width:892.980000px;}
.w3{width:892.980015px;}
.w4{width:893.250000px;}
.w1{width:894.000000px;}
.w2{width:894.059957px;}
.w0{width:894.059970px;}
.x0{left:0.000000px;}
.x41{left:8.100000px;}
.x3b{left:10.800000px;}
.x4c{left:12.600000px;}
.x38{left:13.650000px;}
.x35{left:17.205000px;}
.x31{left:18.795000px;}
.x47{left:19.974000px;}
.x2a{left:25.416000px;}
.x2c{left:26.676000px;}
.x2e{left:29.235000px;}
.x33{left:33.375000px;}
.x3e{left:52.740000px;}
.x48{left:84.600000px;}
.x29{left:101.880000px;}
.x3a{left:110.736000px;}
.x12{left:126.035987px;}
.x1c{left:127.655987px;}
.x28{left:131.295000px;}
.x23{left:132.515987px;}
.x46{left:134.676000px;}
.x2b{left:136.115987px;}
.x2{left:137.915987px;}
.x42{left:152.094000px;}
.x45{left:154.649987px;}
.x13{left:158.069987px;}
.x1b{left:170.129987px;}
.xb{left:179.309987px;}
.x1e{left:180.749987px;}
.x15{left:191.729987px;}
.xa{left:197.309987px;}
.x4{left:198.389987px;}
.x4a{left:208.875000px;}
.x6{left:212.069987px;}
.x17{left:217.469987px;}
.xc{left:219.449987px;}
.x19{left:239.969987px;}
.x26{left:246.089987px;}
.x61{left:253.829987px;}
.x10{left:257.609987px;}
.x2d{left:259.020000px;}
.x63{left:265.709987px;}
.x1d{left:267.869987px;}
.xf{left:281.774987px;}
.x4f{left:286.229987px;}
.x62{left:292.394987px;}
.x9{left:294.374987px;}
.x2f{left:296.714987px;}
.x8{left:298.514987px;}
.x57{left:304.124987px;}
.x18{left:310.214987px;}
.x58{left:317.264987px;}
.x27{left:318.854987px;}
.x56{left:320.324987px;}
.x22{left:343.694987px;}
.x7{left:345.854987px;}
.x5{left:350.894987px;}
.xd{left:356.654987px;}
.x53{left:362.699987px;}
.x52{left:366.839987px;}
.x54{left:374.759987px;}
.x20{left:382.934973px;}
.x55{left:386.099987px;}
.x21{left:389.054987px;}
.x14{left:396.614987px;}
.x30{left:407.880000px;}
.x3{left:409.034987px;}
.x3c{left:421.275000px;}
.x16{left:443.414987px;}
.x49{left:445.245000px;}
.x32{left:448.634987px;}
.x1f{left:450.974973px;}
.x1{left:456.224987px;}
.x59{left:457.274987px;}
.x11{left:472.244987px;}
.x1a{left:499.784987px;}
.x25{left:504.824987px;}
.x5b{left:513.929987px;}
.x51{left:519.809987px;}
.x50{left:523.049987px;}
.x43{left:526.964987px;}
.x5a{left:530.489987px;}
.xe{left:543.884987px;}
.x24{left:553.064987px;}
.x34{left:556.020000px;}
.x3d{left:571.425000px;}
.x36{left:584.924987px;}
.x4b{left:595.545000px;}
.x4d{left:596.625000px;}
.x5d{left:634.679987px;}
.x5c{left:644.939987px;}
.x5e{left:649.799987px;}
.x5f{left:651.779987px;}
.x40{left:658.914000px;}
.x60{left:662.759987px;}
.x44{left:688.614000px;}
.x37{left:703.800000px;}
.x64{left:709.854000px;}
.x3f{left:719.070000px;}
.x39{left:746.969987px;}
.x4e{left:828.869987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.286933pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.204267pt;}
.ls3{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.075733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.lsb{letter-spacing:0.052480pt;}
.ls10{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.133333pt;}
.ls9{letter-spacing:0.154880pt;}
.ls6{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.166400pt;}
.lsa{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls15{letter-spacing:2.560000pt;}
.ls7{letter-spacing:8.960000pt;}
.ls12{letter-spacing:9.600000pt;}
.ls17{letter-spacing:30.208000pt;}
.ls11{letter-spacing:70.400000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.433067pt;}
.ws3{word-spacing:-16.922880pt;}
.ws4{word-spacing:-16.718613pt;}
.wsc{word-spacing:-16.256000pt;}
.wsf{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsd{word-spacing:-14.464000pt;}
.ws9{word-spacing:-13.280000pt;}
.wse{word-spacing:-12.005120pt;}
.wsa{word-spacing:-10.848000pt;}
.wsb{word-spacing:-9.690880pt;}
.ws6{word-spacing:-9.433600pt;}
.ws5{word-spacing:-9.357867pt;}
.ws0{word-spacing:0.000000pt;}
._3{margin-left:-9.884160pt;}
._4{margin-left:-4.118400pt;}
._2{margin-left:-2.857813pt;}
._1{margin-left:-1.198080pt;}
._0{width:0.960000pt;}
._4d{width:1.856000pt;}
._12{width:2.752000pt;}
._13{width:3.886080pt;}
._1c{width:5.166080pt;}
._3b{width:6.510080pt;}
._8{width:7.790080pt;}
._7{width:8.704000pt;}
._3c{width:9.646080pt;}
._9{width:10.560000pt;}
._a{width:11.584000pt;}
._30{width:12.536747pt;}
._2f{width:13.504000pt;}
._21{width:14.762667pt;}
._40{width:16.960000pt;}
._6{width:17.984000pt;}
._51{width:19.008000pt;}
._14{width:19.904000pt;}
._25{width:21.312000pt;}
._15{width:22.912000pt;}
._16{width:24.202667pt;}
._11{width:25.962667pt;}
._31{width:26.944000pt;}
._10{width:27.840000pt;}
._2a{width:29.568000pt;}
._27{width:30.528000pt;}
._2e{width:31.424000pt;}
._1e{width:32.576000pt;}
._1d{width:33.536000pt;}
._28{width:34.570240pt;}
._5{width:35.904000pt;}
._22{width:36.800000pt;}
._1a{width:37.824000pt;}
._1b{width:38.912000pt;}
._62{width:39.918080pt;}
._b{width:41.280000pt;}
._c{width:42.350080pt;}
._1f{width:43.904000pt;}
._20{width:44.864000pt;}
._4e{width:46.062080pt;}
._18{width:47.040000pt;}
._17{width:48.174080pt;}
._23{width:49.536000pt;}
._24{width:50.496000pt;}
._34{width:51.584000pt;}
._2b{width:53.056000pt;}
._2c{width:54.208000pt;}
._37{width:55.598080pt;}
._f{width:57.408000pt;}
._d{width:58.816000pt;}
._e{width:60.032000pt;}
._38{width:61.312000pt;}
._39{width:62.528000pt;}
._59{width:64.000000pt;}
._3d{width:65.070080pt;}
._53{width:66.065920pt;}
._32{width:67.264000pt;}
._33{width:68.160000pt;}
._19{width:69.806080pt;}
._4a{width:70.730667pt;}
._52{width:71.669333pt;}
._55{width:72.586667pt;}
._4b{width:73.838080pt;}
._42{width:74.986667pt;}
._50{width:76.224000pt;}
._45{width:77.824000pt;}
._46{width:78.848000pt;}
._26{width:81.006080pt;}
._58{width:82.926080pt;}
._54{width:84.480000pt;}
._3a{width:86.080000pt;}
._5e{width:87.296000pt;}
._5f{width:88.238080pt;}
._67{width:89.664000pt;}
._49{width:91.840000pt;}
._60{width:93.486080pt;}
._56{width:97.024000pt;}
._57{width:98.112000pt;}
._61{width:99.054080pt;}
._2d{width:106.880000pt;}
._3e{width:108.864000pt;}
._3f{width:110.144000pt;}
._65{width:111.232000pt;}
._5c{width:113.088000pt;}
._5d{width:114.624000pt;}
._41{width:117.632000pt;}
._4c{width:127.232000pt;}
._5a{width:136.064000pt;}
._5b{width:137.216000pt;}
._29{width:142.016000pt;}
._69{width:143.808000pt;}
._35{width:146.048000pt;}
._36{width:147.776000pt;}
._4f{width:149.550080pt;}
._63{width:151.470080pt;}
._64{width:154.624000pt;}
._47{width:157.482667pt;}
._48{width:158.528000pt;}
._43{width:190.080000pt;}
._44{width:191.296000pt;}
._68{width:198.400000pt;}
._66{width:290.496000pt;}
._6a{width:356.352000pt;}
.fs6{font-size:16.000000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.yaa{bottom:-20.186667pt;}
.yc3{bottom:-13.893333pt;}
.y10c{bottom:-13.120000pt;}
.ya9{bottom:-7.226667pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:1.533333pt;}
.ya0{bottom:1.760000pt;}
.yb5{bottom:2.720000pt;}
.yc6{bottom:2.880000pt;}
.y90{bottom:5.893333pt;}
.ya8{bottom:5.920000pt;}
.ycf{bottom:6.240000pt;}
.yb9{bottom:6.560000pt;}
.ycd{bottom:7.360000pt;}
.yb1{bottom:8.960000pt;}
.ybb{bottom:13.280000pt;}
.y9c{bottom:15.200000pt;}
.ye7{bottom:15.360000pt;}
.ya7{bottom:18.880000pt;}
.y13a{bottom:19.453333pt;}
.yb0{bottom:23.840000pt;}
.y13c{bottom:25.986667pt;}
.yb8{bottom:27.680000pt;}
.ycc{bottom:28.480000pt;}
.y9f{bottom:31.840000pt;}
.y9b{bottom:32.000000pt;}
.y139{bottom:32.573333pt;}
.y92{bottom:35.133333pt;}
.y95{bottom:36.093333pt;}
.yaf{bottom:38.880000pt;}
.y13b{bottom:39.266667pt;}
.y30{bottom:42.560000pt;}
.ya6{bottom:44.960000pt;}
.y138{bottom:45.853333pt;}
.y9a{bottom:48.800000pt;}
.yb7{bottom:48.960000pt;}
.ycb{bottom:49.760000pt;}
.yae{bottom:53.760000pt;}
.y55{bottom:55.520000pt;}
.ya5{bottom:57.920000pt;}
.y153{bottom:59.040000pt;}
.y2f{bottom:64.000000pt;}
.y9e{bottom:65.600000pt;}
.yad{bottom:68.800000pt;}
.yca{bottom:70.880000pt;}
.ya4{bottom:71.040000pt;}
.y87{bottom:78.720000pt;}
.yab{bottom:78.880000pt;}
.y99{bottom:79.040000pt;}
.y8e{bottom:80.160000pt;}
.y14e{bottom:80.640000pt;}
.y107{bottom:82.080000pt;}
.ya3{bottom:84.000000pt;}
.y12f{bottom:84.480000pt;}
.y2e{bottom:85.120000pt;}
.yc1{bottom:91.200000pt;}
.yc9{bottom:92.000000pt;}
.y84{bottom:94.400000pt;}
.y98{bottom:95.840000pt;}
.ya2{bottom:97.120000pt;}
.y83{bottom:99.040000pt;}
.y8d{bottom:101.280000pt;}
.y52{bottom:101.920000pt;}
.y106{bottom:103.200000pt;}
.y137{bottom:103.333333pt;}
.y12e{bottom:105.600000pt;}
.y140{bottom:105.986667pt;}
.y2d{bottom:108.640000pt;}
.y82{bottom:111.200000pt;}
.yc0{bottom:112.320000pt;}
.yc8{bottom:113.120000pt;}
.y136{bottom:118.053333pt;}
.y142{bottom:119.040000pt;}
.y13f{bottom:119.106667pt;}
.y51{bottom:120.800000pt;}
.y8c{bottom:122.400000pt;}
.y14d{bottom:123.040000pt;}
.y105{bottom:124.320000pt;}
.y12d{bottom:126.720000pt;}
.y2c{bottom:129.920000pt;}
.y13e{bottom:132.226667pt;}
.y141{bottom:132.320000pt;}
.y135{bottom:132.613333pt;}
.ybf{bottom:133.600000pt;}
.y86{bottom:143.520000pt;}
.y14c{bottom:144.160000pt;}
.y13d{bottom:145.506667pt;}
.y104{bottom:145.600000pt;}
.y134{bottom:147.333333pt;}
.y12c{bottom:147.840000pt;}
.y2b{bottom:151.040000pt;}
.ybe{bottom:154.720000pt;}
.y50{bottom:158.560000pt;}
.y81{bottom:164.826667pt;}
.y14b{bottom:165.306667pt;}
.y103{bottom:166.746667pt;}
.y12b{bottom:169.146667pt;}
.y2a{bottom:172.160000pt;}
.ybd{bottom:175.866667pt;}
.y4f{bottom:177.600000pt;}
.y80{bottom:185.946667pt;}
.y14a{bottom:186.586667pt;}
.y102{bottom:187.866667pt;}
.y12a{bottom:190.266667pt;}
.y29{bottom:193.280000pt;}
.ybc{bottom:196.986667pt;}
.y4e{bottom:200.320000pt;}
.y7f{bottom:207.066667pt;}
.y149{bottom:207.706667pt;}
.y133{bottom:208.800000pt;}
.y101{bottom:208.986667pt;}
.ye3{bottom:210.746667pt;}
.y129{bottom:211.386667pt;}
.y28{bottom:214.586667pt;}
.y132{bottom:226.400000pt;}
.y7e{bottom:228.186667pt;}
.y148{bottom:228.826667pt;}
.y100{bottom:229.946667pt;}
.y10a{bottom:230.266667pt;}
.ye2{bottom:231.866667pt;}
.y128{bottom:232.506667pt;}
.yba{bottom:232.666667pt;}
.y27{bottom:235.706667pt;}
.y4d{bottom:238.106667pt;}
.y7d{bottom:249.466667pt;}
.y147{bottom:249.946667pt;}
.yff{bottom:251.386667pt;}
.ye1{bottom:252.986667pt;}
.y127{bottom:253.786667pt;}
.y26{bottom:256.826667pt;}
.y4c{bottom:257.146667pt;}
.yb6{bottom:260.826667pt;}
.y7c{bottom:270.586667pt;}
.y146{bottom:271.226667pt;}
.yfe{bottom:272.506667pt;}
.ye0{bottom:274.106667pt;}
.y126{bottom:274.906667pt;}
.y25{bottom:277.946667pt;}
.yed{bottom:279.720000pt;}
.y4b{bottom:279.866667pt;}
.y7a{bottom:291.706667pt;}
.yc2{bottom:291.840000pt;}
.y145{bottom:292.026667pt;}
.y150{bottom:292.346667pt;}
.yfd{bottom:293.626667pt;}
.ydf{bottom:295.386667pt;}
.y130{bottom:295.706667pt;}
.y125{bottom:296.026667pt;}
.y7b{bottom:297.786667pt;}
.y24{bottom:299.226667pt;}
.yec{bottom:301.000000pt;}
.y4a{bottom:303.546667pt;}
.y79{bottom:312.826667pt;}
.y144{bottom:313.146667pt;}
.y14f{bottom:313.466667pt;}
.yfc{bottom:314.586667pt;}
.y109{bottom:314.906667pt;}
.yde{bottom:316.506667pt;}
.y124{bottom:317.146667pt;}
.y23{bottom:320.346667pt;}
.yeb{bottom:322.120000pt;}
.yb4{bottom:324.346667pt;}
.y49{bottom:329.626667pt;}
.y78{bottom:334.106667pt;}
.y143{bottom:334.266667pt;}
.yfb{bottom:336.026667pt;}
.ydd{bottom:337.626667pt;}
.y123{bottom:338.266667pt;}
.y22{bottom:341.466667pt;}
.yea{bottom:343.240000pt;}
.y154{bottom:349.786667pt;}
.y77{bottom:355.226667pt;}
.y48{bottom:355.546667pt;}
.yfa{bottom:357.146667pt;}
.ydc{bottom:358.746667pt;}
.y122{bottom:359.546667pt;}
.y21{bottom:362.586667pt;}
.ye9{bottom:364.360000pt;}
.y152{bottom:374.440000pt;}
.y76{bottom:376.386667pt;}
.yf9{bottom:378.306667pt;}
.ydb{bottom:379.906667pt;}
.y121{bottom:380.706667pt;}
.y47{bottom:381.626667pt;}
.y20{bottom:383.866667pt;}
.ye8{bottom:385.666667pt;}
.y75{bottom:397.506667pt;}
.yf8{bottom:399.426667pt;}
.yda{bottom:401.186667pt;}
.y120{bottom:401.826667pt;}
.y1f{bottom:404.986667pt;}
.y46{bottom:407.706667pt;}
.y74{bottom:418.786667pt;}
.yf7{bottom:420.706667pt;}
.yd9{bottom:422.306667pt;}
.y11f{bottom:422.946667pt;}
.y1e{bottom:426.146667pt;}
.y45{bottom:427.906667pt;}
.y73{bottom:439.906667pt;}
.yf6{bottom:441.826667pt;}
.yd8{bottom:443.426667pt;}
.y11e{bottom:444.226667pt;}
.y1d{bottom:447.266667pt;}
.y72{bottom:461.026667pt;}
.yf5{bottom:462.946667pt;}
.yd7{bottom:464.546667pt;}
.y11d{bottom:465.346667pt;}
.y1c{bottom:468.546667pt;}
.yc4{bottom:481.826667pt;}
.y71{bottom:482.146667pt;}
.yf4{bottom:483.746667pt;}
.y108{bottom:484.066667pt;}
.yd6{bottom:485.826667pt;}
.y11c{bottom:486.466667pt;}
.y1b{bottom:489.666667pt;}
.y6f{bottom:503.426667pt;}
.yf3{bottom:505.346667pt;}
.yd5{bottom:506.946667pt;}
.y11b{bottom:507.586667pt;}
.y70{bottom:509.506667pt;}
.y1a{bottom:510.786667pt;}
.y6e{bottom:524.546667pt;}
.yf2{bottom:526.466667pt;}
.yd4{bottom:528.066667pt;}
.y11a{bottom:528.866667pt;}
.y19{bottom:531.906667pt;}
.y8b{bottom:545.346667pt;}
.y6d{bottom:545.666667pt;}
.yf1{bottom:547.586667pt;}
.yd3{bottom:549.186667pt;}
.y119{bottom:549.986667pt;}
.y18{bottom:553.186667pt;}
.y6c{bottom:566.786667pt;}
.yf0{bottom:568.706667pt;}
.yd2{bottom:570.466667pt;}
.y118{bottom:571.106667pt;}
.y17{bottom:574.306667pt;}
.y44{bottom:581.826667pt;}
.y151{bottom:587.293333pt;}
.y6b{bottom:587.933333pt;}
.y9d{bottom:588.413333pt;}
.yef{bottom:590.013333pt;}
.ya1{bottom:590.173333pt;}
.yd1{bottom:591.613333pt;}
.y97{bottom:592.093333pt;}
.yac{bottom:592.253333pt;}
.y16{bottom:595.426667pt;}
.y43{bottom:607.746667pt;}
.y6a{bottom:608.893333pt;}
.y85{bottom:609.213333pt;}
.yd0{bottom:612.733333pt;}
.y117{bottom:613.533333pt;}
.y15{bottom:616.573333pt;}
.yee{bottom:625.693333pt;}
.yce{bottom:627.293333pt;}
.y69{bottom:630.333333pt;}
.y42{bottom:632.573333pt;}
.y116{bottom:634.653333pt;}
.y14{bottom:637.693333pt;}
.ye6{bottom:646.813333pt;}
.yc7{bottom:648.413333pt;}
.y68{bottom:651.453333pt;}
.y41{bottom:653.693333pt;}
.y115{bottom:655.773333pt;}
.ye5{bottom:656.866667pt;}
.y13{bottom:658.973333pt;}
.y67{bottom:672.573333pt;}
.y40{bottom:675.453333pt;}
.y114{bottom:676.893333pt;}
.ye4{bottom:677.506667pt;}
.y12{bottom:680.093333pt;}
.y66{bottom:693.853333pt;}
.y3f{bottom:696.893333pt;}
.y113{bottom:698.173333pt;}
.y11{bottom:701.213333pt;}
.y65{bottom:714.973333pt;}
.y3e{bottom:718.013333pt;}
.y112{bottom:719.293333pt;}
.y10{bottom:722.333333pt;}
.y64{bottom:736.093333pt;}
.y3d{bottom:740.413333pt;}
.y91{bottom:742.080000pt;}
.yf{bottom:743.613333pt;}
.yb3{bottom:756.893333pt;}
.y63{bottom:757.213333pt;}
.y93{bottom:760.413333pt;}
.y111{bottom:761.213333pt;}
.y96{bottom:761.373333pt;}
.ye{bottom:764.733333pt;}
.y3c{bottom:765.053333pt;}
.yc5{bottom:776.093333pt;}
.y131{bottom:776.160000pt;}
.y62{bottom:778.493333pt;}
.y110{bottom:778.973333pt;}
.yd{bottom:785.853333pt;}
.y3b{bottom:789.533333pt;}
.y61{bottom:799.613333pt;}
.yc{bottom:806.973333pt;}
.y3a{bottom:814.013333pt;}
.yb2{bottom:820.453333pt;}
.y60{bottom:820.773333pt;}
.yb{bottom:828.293333pt;}
.y39{bottom:838.853333pt;}
.y5f{bottom:841.893333pt;}
.ya{bottom:849.413333pt;}
.y8f{bottom:860.320000pt;}
.y5e{bottom:863.173333pt;}
.y38{bottom:866.373333pt;}
.y9{bottom:870.533333pt;}
.y5d{bottom:884.293333pt;}
.y8{bottom:891.653333pt;}
.y37{bottom:895.173333pt;}
.y5c{bottom:905.413333pt;}
.y7{bottom:912.933333pt;}
.y36{bottom:924.453333pt;}
.y5b{bottom:926.533333pt;}
.y6{bottom:934.053333pt;}
.y5a{bottom:947.813333pt;}
.y10f{bottom:948.613333pt;}
.y35{bottom:952.293333pt;}
.y5{bottom:955.173333pt;}
.y59{bottom:968.613333pt;}
.y8a{bottom:968.933333pt;}
.y34{bottom:975.013333pt;}
.y4{bottom:976.293333pt;}
.y58{bottom:990.053333pt;}
.y10e{bottom:990.373333pt;}
.y3{bottom:997.573333pt;}
.y33{bottom:997.893333pt;}
.y57{bottom:1010.853333pt;}
.y89{bottom:1011.173333pt;}
.y10d{bottom:1012.773333pt;}
.y2{bottom:1018.693333pt;}
.y32{bottom:1019.973333pt;}
.y56{bottom:1032.160000pt;}
.y10b{bottom:1032.320000pt;}
.y88{bottom:1032.480000pt;}
.y31{bottom:1039.520000pt;}
.y1{bottom:1039.840000pt;}
.y54{bottom:1052.960000pt;}
.y53{bottom:1065.760000pt;}
.h21{height:0.031983pt;}
.h26{height:0.799987pt;}
.h27{height:0.800013pt;}
.h17{height:19.840000pt;}
.h24{height:21.120000pt;}
.h20{height:28.160000pt;}
.h15{height:34.374375pt;}
.h13{height:42.084375pt;}
.h1c{height:42.649687pt;}
.he{height:43.215000pt;}
.h18{height:46.560000pt;}
.h19{height:47.742188pt;}
.h1a{height:48.160000pt;}
.h2a{height:49.148438pt;}
.h11{height:52.750000pt;}
.h16{height:52.834688pt;}
.h29{height:54.390938pt;}
.h1d{height:55.343750pt;}
.h14{height:56.406250pt;}
.hc{height:56.562187pt;}
.h4{height:58.563750pt;}
.h10{height:62.781250pt;}
.h12{height:62.812500pt;}
.hf{height:63.399375pt;}
.h1f{height:63.520000pt;}
.h2{height:64.500000pt;}
.h5{height:65.531250pt;}
.h2d{height:65.781915pt;}
.ha{height:73.490625pt;}
.h3{height:75.465000pt;}
.h6{height:76.671562pt;}
.h9{height:83.540625pt;}
.hb{height:84.662813pt;}
.h8{height:96.750000pt;}
.h7{height:98.296875pt;}
.h1b{height:107.200000pt;}
.h23{height:127.680000pt;}
.h2c{height:236.866667pt;}
.h28{height:270.880000pt;}
.h22{height:270.946667pt;}
.h1e{height:341.666667pt;}
.h2b{height:388.986667pt;}
.h25{height:400.226667pt;}
.hd{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.719973pt;}
.w15{width:22.560000pt;}
.w14{width:22.720000pt;}
.we{width:27.040000pt;}
.wf{width:33.600000pt;}
.w10{width:35.840000pt;}
.wc{width:93.760000pt;}
.wa{width:93.920000pt;}
.wb{width:93.952000pt;}
.w9{width:109.920000pt;}
.w8{width:110.080000pt;}
.w12{width:216.666667pt;}
.w17{width:271.226667pt;}
.w16{width:350.626667pt;}
.w11{width:444.733333pt;}
.w7{width:447.520000pt;}
.w18{width:622.493333pt;}
.wd{width:623.133333pt;}
.w13{width:661.413333pt;}
.w6{width:793.759990pt;}
.w5{width:793.760000pt;}
.w3{width:793.760013pt;}
.w4{width:794.000000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719961pt;}
.w0{width:794.719973pt;}
.x0{left:0.000000pt;}
.x41{left:7.200000pt;}
.x3b{left:9.600000pt;}
.x4c{left:11.200000pt;}
.x38{left:12.133333pt;}
.x35{left:15.293333pt;}
.x31{left:16.706667pt;}
.x47{left:17.754667pt;}
.x2a{left:22.592000pt;}
.x2c{left:23.712000pt;}
.x2e{left:25.986667pt;}
.x33{left:29.666667pt;}
.x3e{left:46.880000pt;}
.x48{left:75.200000pt;}
.x29{left:90.560000pt;}
.x3a{left:98.432000pt;}
.x12{left:112.031988pt;}
.x1c{left:113.471988pt;}
.x28{left:116.706667pt;}
.x23{left:117.791988pt;}
.x46{left:119.712000pt;}
.x2b{left:120.991988pt;}
.x2{left:122.591988pt;}
.x42{left:135.194667pt;}
.x45{left:137.466655pt;}
.x13{left:140.506655pt;}
.x1b{left:151.226655pt;}
.xb{left:159.386655pt;}
.x1e{left:160.666655pt;}
.x15{left:170.426655pt;}
.xa{left:175.386655pt;}
.x4{left:176.346655pt;}
.x4a{left:185.666667pt;}
.x6{left:188.506655pt;}
.x17{left:193.306655pt;}
.xc{left:195.066655pt;}
.x19{left:213.306655pt;}
.x26{left:218.746655pt;}
.x61{left:225.626655pt;}
.x10{left:228.986655pt;}
.x2d{left:230.240000pt;}
.x63{left:236.186655pt;}
.x1d{left:238.106655pt;}
.xf{left:250.466655pt;}
.x4f{left:254.426655pt;}
.x62{left:259.906655pt;}
.x9{left:261.666655pt;}
.x2f{left:263.746655pt;}
.x8{left:265.346655pt;}
.x57{left:270.333322pt;}
.x18{left:275.746655pt;}
.x58{left:282.013322pt;}
.x27{left:283.426655pt;}
.x56{left:284.733322pt;}
.x22{left:305.506655pt;}
.x7{left:307.426655pt;}
.x5{left:311.906655pt;}
.xd{left:317.026655pt;}
.x53{left:322.399988pt;}
.x52{left:326.079988pt;}
.x54{left:333.119988pt;}
.x20{left:340.386643pt;}
.x55{left:343.199988pt;}
.x21{left:345.826655pt;}
.x14{left:352.546655pt;}
.x30{left:362.560000pt;}
.x3{left:363.586655pt;}
.x3c{left:374.466667pt;}
.x16{left:394.146655pt;}
.x49{left:395.773333pt;}
.x32{left:398.786655pt;}
.x1f{left:400.866643pt;}
.x1{left:405.533321pt;}
.x59{left:406.466655pt;}
.x11{left:419.773321pt;}
.x1a{left:444.253322pt;}
.x25{left:448.733322pt;}
.x5b{left:456.826655pt;}
.x51{left:462.053322pt;}
.x50{left:464.933322pt;}
.x43{left:468.413322pt;}
.x5a{left:471.546655pt;}
.xe{left:483.453321pt;}
.x24{left:491.613322pt;}
.x34{left:494.240000pt;}
.x3d{left:507.933333pt;}
.x36{left:519.933322pt;}
.x4b{left:529.373333pt;}
.x4d{left:530.333333pt;}
.x5d{left:564.159988pt;}
.x5c{left:573.279988pt;}
.x5e{left:577.599988pt;}
.x5f{left:579.359988pt;}
.x40{left:585.701333pt;}
.x60{left:589.119988pt;}
.x44{left:612.101333pt;}
.x37{left:625.600000pt;}
.x64{left:630.981333pt;}
.x3f{left:639.173333pt;}
.x39{left:663.973322pt;}
.x4e{left:736.773322pt;}
}




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