
    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_5738798bcc40ad22ec655723.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_d6e6fe1fe977b2addf734d4c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.211426;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_2f69b64c3b0c97373a83c1e8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.014160;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_8d45abb99901048df6985578.woff')format("woff");}.ff4{font-family:ff4;line-height:0.909180;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_24b5995779b416f1598a0018.woff')format("woff");}.ff5{font-family:ff5;line-height:1.211426;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_40691fdcbc084f88d8c8570d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_09f690156a686373725e4277.woff')format("woff");}.ff7{font-family:ff7;line-height:0.800781;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_e8d8496ab042f12ac8977024.woff')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_836c4d1f3e891414dc7e192f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fecb132aa5dd1d2e2edaad8c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.903809;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cb8edd482ef15dc608e74994.woff')format("woff");}.ffb{font-family:ffb;line-height:0.926800;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_1b6827990eef724786f74f58.woff')format("woff");}.ffc{font-family:ffc;line-height:0.928711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-15.720000px;}
.v2{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.600000px;}
.ls34{letter-spacing:-1.296000px;}
.ls27{letter-spacing:-0.960000px;}
.ls2b{letter-spacing:-0.780000px;}
.lsb{letter-spacing:-0.600000px;}
.ls32{letter-spacing:-0.594000px;}
.ls19{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.474000px;}
.ls13{letter-spacing:-0.384000px;}
.ls2a{letter-spacing:-0.300000px;}
.ls29{letter-spacing:-0.240000px;}
.ls22{letter-spacing:-0.180000px;}
.ls25{letter-spacing:-0.120000px;}
.ls20{letter-spacing:-0.012000px;}
.lsa{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.024000px;}
.ls8{letter-spacing:0.060000px;}
.lse{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.270000px;}
.ls5{letter-spacing:0.288000px;}
.ls26{letter-spacing:0.300000px;}
.ls18{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.396000px;}
.ls15{letter-spacing:0.420000px;}
.ls33{letter-spacing:0.450000px;}
.ls1c{letter-spacing:0.498000px;}
.ls14{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.ls2e{letter-spacing:0.648000px;}
.ls2f{letter-spacing:0.660000px;}
.lsc{letter-spacing:0.840000px;}
.ls31{letter-spacing:0.900000px;}
.ls12{letter-spacing:1.260000px;}
.ls11{letter-spacing:1.320000px;}
.ls24{letter-spacing:1.740000px;}
.ls16{letter-spacing:1.800000px;}
.ls23{letter-spacing:1.860000px;}
.ls10{letter-spacing:2.940000px;}
.ls2d{letter-spacing:3.000000px;}
.lsd{letter-spacing:3.060000px;}
.ls1d{letter-spacing:4.140000px;}
.ls17{letter-spacing:4.200000px;}
.ls28{letter-spacing:5.400000px;}
.ls3a{letter-spacing:7.740000px;}
.ls2c{letter-spacing:7.800000px;}
.ls1a{letter-spacing:8.940000px;}
.lsf{letter-spacing:9.000000px;}
.ls35{letter-spacing:9.300000px;}
.ls38{letter-spacing:10.500000px;}
.ls6{letter-spacing:10.800000px;}
.ls39{letter-spacing:10.980000px;}
.ls37{letter-spacing:11.400000px;}
.ls30{letter-spacing:12.600000px;}
.ls36{letter-spacing:14.400000px;}
.ls7{letter-spacing:45.900000px;}
.ls3b{letter-spacing:47.700000px;}
.ls4{letter-spacing:55.260000px;}
.ls0{letter-spacing:55.380000px;}
.ls2{letter-spacing:56.340000px;}
.ls3{letter-spacing:56.400000px;}
.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;}
}
.wse{word-spacing:-54.000000px;}
.ws17{word-spacing:-17.940000px;}
.ws18{word-spacing:-16.740000px;}
.ws7{word-spacing:-15.540000px;}
.ws9{word-spacing:-15.420000px;}
.wsa{word-spacing:-15.360000px;}
.ws13{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.120000px;}
.ws14{word-spacing:-15.060000px;}
.ws3{word-spacing:-15.000000px;}
.ws12{word-spacing:-14.820000px;}
.ws15{word-spacing:-14.760000px;}
.ws16{word-spacing:-14.700000px;}
.ws1c{word-spacing:-14.400000px;}
.ws19{word-spacing:-14.220000px;}
.ws1e{word-spacing:-14.100000px;}
.ws1d{word-spacing:-13.950000px;}
.ws11{word-spacing:-13.770000px;}
.wsc{word-spacing:-13.524000px;}
.wsd{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.488000px;}
.ws1b{word-spacing:-13.200000px;}
.wsf{word-spacing:-13.026000px;}
.ws0{word-spacing:-12.300000px;}
.ws2{word-spacing:-12.000000px;}
.ws6{word-spacing:-11.616000px;}
.ws4{word-spacing:-10.500000px;}
.ws1a{word-spacing:-9.648000px;}
.ws1{word-spacing:-9.000000px;}
.wsb{word-spacing:-8.400000px;}
.ws5{word-spacing:0.000000px;}
._14{margin-left:-3.924000px;}
._7{margin-left:-2.754000px;}
._1{margin-left:-1.056000px;}
._0{width:1.188000px;}
._a{width:3.024000px;}
._b{width:4.260000px;}
._9{width:6.024000px;}
._8{width:7.290000px;}
._c{width:8.328000px;}
._15{width:9.618000px;}
._17{width:10.722000px;}
._12{width:11.760000px;}
._4{width:12.888000px;}
._16{width:13.920000px;}
._1f{width:14.946000px;}
._11{width:17.004000px;}
._1d{width:19.602000px;}
._1e{width:20.982000px;}
._3{width:22.932000px;}
._d{width:24.738000px;}
._6{width:26.400000px;}
._e{width:27.408000px;}
._1b{width:29.646000px;}
._1a{width:31.434000px;}
._5{width:37.500000px;}
._10{width:45.150000px;}
._f{width:46.830000px;}
._1c{width:48.504000px;}
._19{width:73.350000px;}
._2{width:345.024000px;}
._18{width:1837.962000px;}
._13{width:1861.962000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.000000px;}
.fs9{font-size:33.600000px;}
.fs5{font-size:36.000000px;}
.fs8{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:51.600000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:3.000000px;}
.yc3{bottom:4.200000px;}
.y112{bottom:4.485000px;}
.yff{bottom:4.500000px;}
.y104{bottom:4.800000px;}
.y10e{bottom:4.815000px;}
.yfb{bottom:5.685000px;}
.yfa{bottom:6.000000px;}
.ycf{bottom:8.400000px;}
.y3{bottom:9.585000px;}
.yca{bottom:9.900000px;}
.ydc{bottom:13.215000px;}
.yc1{bottom:14.115000px;}
.y101{bottom:14.700000px;}
.yfd{bottom:14.715000px;}
.y10a{bottom:15.000000px;}
.ye2{bottom:18.030000px;}
.yd3{bottom:19.500000px;}
.ye7{bottom:19.800000px;}
.y4{bottom:20.385000px;}
.y4a{bottom:21.000000px;}
.ydf{bottom:22.800000px;}
.yc2{bottom:23.715000px;}
.y111{bottom:24.885000px;}
.y106{bottom:24.900000px;}
.yfe{bottom:24.915000px;}
.y103{bottom:24.930000px;}
.yce{bottom:27.930000px;}
.yd5{bottom:27.945000px;}
.y2{bottom:28.500000px;}
.y7{bottom:28.837500px;}
.yc7{bottom:29.400000px;}
.ycc{bottom:32.145000px;}
.ydb{bottom:32.715000px;}
.y109{bottom:35.100000px;}
.y100{bottom:35.145000px;}
.ye1{bottom:37.530000px;}
.yc8{bottom:39.000000px;}
.y49{bottom:39.007500px;}
.ye5{bottom:39.300000px;}
.ydd{bottom:42.315000px;}
.y6{bottom:42.637500px;}
.yd1{bottom:43.200000px;}
.yc5{bottom:43.215000px;}
.ye4{bottom:43.500000px;}
.y110{bottom:44.985000px;}
.y102{bottom:45.030000px;}
.y10b{bottom:45.300000px;}
.y10d{bottom:45.315000px;}
.yd8{bottom:46.515000px;}
.y51{bottom:46.837500px;}
.ycd{bottom:47.430000px;}
.yd6{bottom:47.445000px;}
.yc6{bottom:48.900000px;}
.yda{bottom:52.215000px;}
.y48{bottom:57.037500px;}
.yd2{bottom:58.500000px;}
.ye6{bottom:58.800000px;}
.yde{bottom:61.800000px;}
.y50{bottom:64.837500px;}
.yc9{bottom:68.400000px;}
.yd9{bottom:71.715000px;}
.y47{bottom:75.037500px;}
.y4f{bottom:80.737500px;}
.yb4{bottom:92.737500px;}
.y46{bottom:93.037500px;}
.y17e{bottom:95.437500px;}
.y85{bottom:97.837500px;}
.ybe{bottom:98.437500px;}
.yf2{bottom:102.337500px;}
.y45{bottom:108.337500px;}
.yb3{bottom:111.937500px;}
.y84{bottom:117.337500px;}
.ybd{bottom:117.637500px;}
.ye8{bottom:117.937500px;}
.y17d{bottom:119.737500px;}
.y31{bottom:121.237500px;}
.yf1{bottom:121.837500px;}
.y12e{bottom:122.737500px;}
.y155{bottom:123.937500px;}
.y133{bottom:124.837500px;}
.yb2{bottom:131.137500px;}
.y83{bottom:136.537500px;}
.ybc{bottom:136.837500px;}
.y30{bottom:137.137500px;}
.yf0{bottom:141.037500px;}
.y12d{bottom:141.937500px;}
.y132{bottom:144.337500px;}
.y154{bottom:148.237500px;}
.yb1{bottom:150.330000px;}
.y44{bottom:151.837500px;}
.y82{bottom:155.745000px;}
.y2f{bottom:156.345000px;}
.yef{bottom:160.245000px;}
.y12c{bottom:161.130000px;}
.y131{bottom:163.575000px;}
.y43{bottom:168.037500px;}
.y17c{bottom:168.675000px;}
.yb0{bottom:169.575000px;}
.yf7{bottom:173.775000px;}
.y153{bottom:174.675000px;}
.y81{bottom:174.975000px;}
.y2e{bottom:175.575000px;}
.yee{bottom:179.475000px;}
.y12b{bottom:180.375000px;}
.y130{bottom:182.775000px;}
.y42{bottom:184.237500px;}
.yaf{bottom:188.775000px;}
.y17b{bottom:193.275000px;}
.y80{bottom:194.175000px;}
.y2d{bottom:194.775000px;}
.yed{bottom:198.675000px;}
.y12a{bottom:199.575000px;}
.y41{bottom:200.737500px;}
.yf6{bottom:201.975000px;}
.yae{bottom:207.975000px;}
.y152{bottom:210.975000px;}
.y7f{bottom:213.375000px;}
.y2c{bottom:213.975000px;}
.y17a{bottom:217.575000px;}
.yec{bottom:217.875000px;}
.y129{bottom:218.775000px;}
.yf5{bottom:221.175000px;}
.yad{bottom:227.175000px;}
.y151{bottom:228.675000px;}
.ye3{bottom:229.575000px;}
.y7e{bottom:232.575000px;}
.y40{bottom:232.867500px;}
.y2b{bottom:233.175000px;}
.y128{bottom:237.975000px;}
.yf4{bottom:240.375000px;}
.yeb{bottom:241.575000px;}
.y179{bottom:242.175000px;}
.yac{bottom:246.375000px;}
.y3f{bottom:250.882500px;}
.y2a{bottom:252.375000px;}
.y7d{bottom:256.275000px;}
.y127{bottom:257.175000px;}
.yf3{bottom:259.575000px;}
.y150{bottom:264.075000px;}
.yab{bottom:265.575000px;}
.y178{bottom:266.475000px;}
.y3e{bottom:268.882500px;}
.ybb{bottom:271.575000px;}
.y29{bottom:271.875000px;}
.y126{bottom:276.375000px;}
.yea{bottom:278.775000px;}
.y7c{bottom:279.975000px;}
.yaa{bottom:285.075000px;}
.y3d{bottom:286.882500px;}
.yba{bottom:290.775000px;}
.y28{bottom:291.075000px;}
.y125{bottom:295.575000px;}
.ye9{bottom:297.975000px;}
.y14f{bottom:299.175000px;}
.ya9{bottom:304.275000px;}
.y3c{bottom:304.882500px;}
.yb9{bottom:309.975000px;}
.y27{bottom:310.275000px;}
.y124{bottom:315.075000px;}
.y177{bottom:315.375000px;}
.y7b{bottom:317.175000px;}
.ye0{bottom:320.475000px;}
.y3b{bottom:322.867500px;}
.ya8{bottom:323.475000px;}
.yb8{bottom:329.175000px;}
.y26{bottom:329.475000px;}
.y123{bottom:334.305000px;}
.y14e{bottom:334.620000px;}
.y7a{bottom:336.405000px;}
.y176{bottom:340.005000px;}
.ya7{bottom:342.705000px;}
.yb7{bottom:348.420000px;}
.y25{bottom:348.720000px;}
.y3a{bottom:349.867500px;}
.y122{bottom:353.505000px;}
.y79{bottom:355.620000px;}
.ya6{bottom:361.920000px;}
.y175{bottom:364.305000px;}
.yb6{bottom:367.605000px;}
.y24{bottom:367.905000px;}
.y14d{bottom:369.705000px;}
.y121{bottom:372.705000px;}
.y78{bottom:375.120000px;}
.y39{bottom:376.867500px;}
.ya5{bottom:385.620000px;}
.y23{bottom:387.120000px;}
.y14c{bottom:387.405000px;}
.yd7{bottom:388.605000px;}
.y174{bottom:388.920000px;}
.y120{bottom:391.905000px;}
.y77{bottom:394.320000px;}
.y38{bottom:394.912500px;}
.yb5{bottom:404.505000px;}
.y22{bottom:406.320000px;}
.y11f{bottom:411.120000px;}
.y37{bottom:412.912500px;}
.y173{bottom:413.205000px;}
.y76{bottom:413.505000px;}
.y14b{bottom:422.205000px;}
.ya4{bottom:422.820000px;}
.y21{bottom:425.505000px;}
.y11e{bottom:430.320000px;}
.y36{bottom:430.912500px;}
.y75{bottom:432.705000px;}
.y172{bottom:437.820000px;}
.y14a{bottom:439.620000px;}
.ya3{bottom:442.005000px;}
.y20{bottom:444.705000px;}
.y35{bottom:448.912500px;}
.y11d{bottom:449.505000px;}
.y74{bottom:451.905000px;}
.y149{bottom:457.005000px;}
.ya2{bottom:461.205000px;}
.y171{bottom:462.120000px;}
.y1f{bottom:463.905000px;}
.y34{bottom:466.912500px;}
.y11c{bottom:468.705000px;}
.y73{bottom:471.105000px;}
.y148{bottom:474.120000px;}
.ya1{bottom:480.405000px;}
.y33{bottom:484.912500px;}
.yd4{bottom:485.505000px;}
.y170{bottom:486.705000px;}
.y1e{bottom:487.620000px;}
.y11b{bottom:487.905000px;}
.y72{bottom:490.320000px;}
.y147{bottom:491.505000px;}
.ya0{bottom:499.605000px;}
.y32{bottom:502.912500px;}
.y11a{bottom:507.150000px;}
.y146{bottom:509.250000px;}
.y71{bottom:509.550000px;}
.y16f{bottom:511.050000px;}
.y9f{bottom:518.850000px;}
.y119{bottom:526.350000px;}
.y70{bottom:528.750000px;}
.y16e{bottom:535.650000px;}
.y9e{bottom:538.350000px;}
.y145{bottom:544.650000px;}
.y1d{bottom:545.850000px;}
.y6f{bottom:547.950000px;}
.yd0{bottom:553.950000px;}
.y9d{bottom:557.550000px;}
.y16d{bottom:559.950000px;}
.y144{bottom:563.850000px;}
.y118{bottom:565.050000px;}
.y1c{bottom:565.950000px;}
.y6e{bottom:567.150000px;}
.y9c{bottom:576.750000px;}
.y143{bottom:583.350000px;}
.y117{bottom:584.250000px;}
.y16c{bottom:584.550000px;}
.y6d{bottom:586.350000px;}
.y9b{bottom:595.950000px;}
.y142{bottom:602.550000px;}
.y1b{bottom:603.150000px;}
.y116{bottom:603.450000px;}
.y6c{bottom:605.850000px;}
.y16b{bottom:608.850000px;}
.y9a{bottom:615.150000px;}
.y141{bottom:621.750000px;}
.y1a{bottom:622.650000px;}
.y6b{bottom:625.050000px;}
.y16a{bottom:633.450000px;}
.y99{bottom:634.350000px;}
.y140{bottom:640.950000px;}
.y115{bottom:641.850000px;}
.y19{bottom:642.150000px;}
.y6a{bottom:644.250000px;}
.ycb{bottom:644.550000px;}
.y169{bottom:657.750000px;}
.y98{bottom:658.050000px;}
.y13f{bottom:660.150000px;}
.y114{bottom:661.050000px;}
.y18{bottom:661.650000px;}
.y69{bottom:663.450000px;}
.y12f{bottom:667.350000px;}
.y13e{bottom:679.380000px;}
.y17{bottom:681.180000px;}
.y168{bottom:682.380000px;}
.y68{bottom:682.680000px;}
.y113{bottom:684.780000px;}
.y97{bottom:695.280000px;}
.y13d{bottom:698.595000px;}
.y16{bottom:700.695000px;}
.y67{bottom:701.880000px;}
.y167{bottom:706.695000px;}
.yc4{bottom:712.980000px;}
.y96{bottom:714.480000px;}
.y13c{bottom:717.780000px;}
.y10f{bottom:718.695000px;}
.y15{bottom:720.195000px;}
.y66{bottom:721.080000px;}
.y166{bottom:731.280000px;}
.y95{bottom:733.695000px;}
.y13b{bottom:736.995000px;}
.y14{bottom:739.695000px;}
.y65{bottom:740.280000px;}
.y94{bottom:752.880000px;}
.y165{bottom:755.580000px;}
.y13a{bottom:756.195000px;}
.y13{bottom:759.195000px;}
.y64{bottom:759.480000px;}
.y93{bottom:772.080000px;}
.y139{bottom:775.380000px;}
.y12{bottom:778.695000px;}
.y10c{bottom:779.880000px;}
.y164{bottom:780.195000px;}
.y92{bottom:791.580000px;}
.y138{bottom:794.580000px;}
.y63{bottom:797.880000px;}
.y11{bottom:798.195000px;}
.yc0{bottom:803.580000px;}
.y163{bottom:804.495000px;}
.y91{bottom:810.795000px;}
.y137{bottom:814.080000px;}
.y62{bottom:817.080000px;}
.y10{bottom:817.695000px;}
.y162{bottom:829.080000px;}
.y180{bottom:829.695000px;}
.y136{bottom:833.295000px;}
.y90{bottom:834.480000px;}
.y61{bottom:836.580000px;}
.yf{bottom:837.480000px;}
.y108{bottom:841.425000px;}
.y135{bottom:852.525000px;}
.y161{bottom:853.425000px;}
.y60{bottom:855.825000px;}
.ybf{bottom:856.725000px;}
.y8f{bottom:871.725000px;}
.ye{bottom:874.725000px;}
.y5f{bottom:875.025000px;}
.y160{bottom:878.025000px;}
.y8e{bottom:890.925000px;}
.yd{bottom:893.625000px;}
.y5e{bottom:894.225000px;}
.y15f{bottom:902.325000px;}
.y107{bottom:902.925000px;}
.y8d{bottom:910.125000px;}
.y5d{bottom:913.425000px;}
.y15e{bottom:926.925000px;}
.y8c{bottom:929.325000px;}
.y5c{bottom:932.625000px;}
.yc{bottom:934.725000px;}
.y105{bottom:944.325000px;}
.y8b{bottom:948.525000px;}
.y15d{bottom:951.225000px;}
.y5b{bottom:951.825000px;}
.y8a{bottom:967.725000px;}
.y5a{bottom:971.025000px;}
.y15c{bottom:975.825000px;}
.yb{bottom:985.425000px;}
.y89{bottom:986.925000px;}
.y59{bottom:990.225000px;}
.y15b{bottom:1000.125000px;}
.y88{bottom:1006.125000px;}
.y58{bottom:1009.455000px;}
.y134{bottom:1010.655000px;}
.ya{bottom:1022.070000px;}
.y15a{bottom:1024.755000px;}
.y87{bottom:1025.370000px;}
.y57{bottom:1028.670000px;}
.yfc{bottom:1046.955000px;}
.y56{bottom:1047.855000px;}
.y159{bottom:1049.070000px;}
.y86{bottom:1049.355000px;}
.y17f{bottom:1049.670000px;}
.y9{bottom:1058.355000px;}
.y55{bottom:1067.355000px;}
.y158{bottom:1073.655000px;}
.y54{bottom:1086.570000px;}
.yf9{bottom:1088.070000px;}
.y8{bottom:1091.370000px;}
.y157{bottom:1097.955000px;}
.y53{bottom:1105.755000px;}
.y156{bottom:1122.570000px;}
.yf8{bottom:1124.655000px;}
.y52{bottom:1124.955000px;}
.y5{bottom:1128.255000px;}
.y1{bottom:1134.570000px;}
.y4e{bottom:1144.455000px;}
.y4d{bottom:1163.655000px;}
.y4c{bottom:1173.570000px;}
.h18{height:22.500000px;}
.h15{height:24.740625px;}
.hc{height:32.648438px;}
.h7{height:35.179688px;}
.h13{height:39.037500px;}
.h11{height:39.067383px;}
.hd{height:39.761719px;}
.h1f{height:40.210547px;}
.h1a{height:40.500000px;}
.h9{height:43.974609px;}
.h5{height:44.179688px;}
.h8{height:44.648438px;}
.h19{height:46.552734px;}
.h4{height:47.997070px;}
.h3{height:48.597656px;}
.he{height:50.229492px;}
.h2{height:51.637500px;}
.h6{height:55.810547px;}
.h12{height:59.853516px;}
.h1e{height:60.600000px;}
.h1b{height:60.637500px;}
.h1c{height:60.900000px;}
.h1d{height:60.937500px;}
.hf{height:62.460938px;}
.h16{height:67.537500px;}
.hb{height:79.523438px;}
.ha{height:83.794922px;}
.h14{height:90.000000px;}
.h17{height:96.300000px;}
.h10{height:517.920000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:44.137500px;}
.w8{width:93.637500px;}
.wb{width:104.737500px;}
.wd{width:105.337500px;}
.w9{width:121.537500px;}
.wa{width:125.137500px;}
.w4{width:126.675000px;}
.we{width:145.275000px;}
.w6{width:180.975000px;}
.wc{width:191.130000px;}
.w10{width:319.020000px;}
.wf{width:322.575000px;}
.w3{width:339.975000px;}
.w2{width:372.450000px;}
.w5{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:8.385000px;}
.xf{left:9.637500px;}
.x26{left:11.400000px;}
.x1f{left:12.600000px;}
.x24{left:14.085000px;}
.x11{left:15.300000px;}
.x1b{left:17.400000px;}
.x22{left:19.837500px;}
.x37{left:21.045000px;}
.x14{left:22.500000px;}
.x16{left:24.000000px;}
.x25{left:25.500000px;}
.x21{left:28.800000px;}
.x1c{left:31.500000px;}
.x12{left:33.600000px;}
.x23{left:35.385000px;}
.x27{left:37.485000px;}
.x2b{left:39.000000px;}
.x34{left:41.430000px;}
.x1e{left:43.800000px;}
.x19{left:46.200000px;}
.x29{left:47.700000px;}
.x2e{left:49.237500px;}
.x1{left:54.000000px;}
.x2a{left:55.500000px;}
.x2c{left:57.600000px;}
.x20{left:58.785000px;}
.x35{left:60.337500px;}
.x33{left:62.100000px;}
.x38{left:68.430000px;}
.x9{left:81.637500px;}
.x3b{left:83.745000px;}
.x28{left:85.785000px;}
.x10{left:98.137500px;}
.x3a{left:100.245000px;}
.xe{left:108.937487px;}
.x3e{left:113.445000px;}
.x3c{left:115.245000px;}
.x30{left:116.730000px;}
.x3d{left:122.430000px;}
.x36{left:124.230000px;}
.x32{left:136.275000px;}
.x39{left:140.775000px;}
.x3{left:170.130000px;}
.xb{left:186.374987px;}
.x13{left:191.775000px;}
.x2f{left:199.275000px;}
.x2d{left:211.574987px;}
.x5{left:249.674987px;}
.x6{left:250.874987px;}
.x7{left:276.674987px;}
.xd{left:281.474987px;}
.x8{left:282.674987px;}
.x15{left:313.320000px;}
.x2{left:426.450000px;}
.x17{left:438.450000px;}
.x31{left:521.850000px;}
.x18{left:543.495000px;}
.xa{left:623.894987px;}
.xc{left:694.724987px;}
.x1a{left:734.625000px;}
.x4{left:766.425000px;}
@media print{
.v3{vertical-align:-13.973333pt;}
.v2{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.866667pt;}
.ls34{letter-spacing:-1.152000pt;}
.ls27{letter-spacing:-0.853333pt;}
.ls2b{letter-spacing:-0.693333pt;}
.lsb{letter-spacing:-0.533333pt;}
.ls32{letter-spacing:-0.528000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.421333pt;}
.ls13{letter-spacing:-0.341333pt;}
.ls2a{letter-spacing:-0.266667pt;}
.ls29{letter-spacing:-0.213333pt;}
.ls22{letter-spacing:-0.160000pt;}
.ls25{letter-spacing:-0.106667pt;}
.ls20{letter-spacing:-0.010667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.021333pt;}
.ls8{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.240000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls26{letter-spacing:0.266667pt;}
.ls18{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.352000pt;}
.ls15{letter-spacing:0.373333pt;}
.ls33{letter-spacing:0.400000pt;}
.ls1c{letter-spacing:0.442667pt;}
.ls14{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls2e{letter-spacing:0.576000pt;}
.ls2f{letter-spacing:0.586667pt;}
.lsc{letter-spacing:0.746667pt;}
.ls31{letter-spacing:0.800000pt;}
.ls12{letter-spacing:1.120000pt;}
.ls11{letter-spacing:1.173333pt;}
.ls24{letter-spacing:1.546667pt;}
.ls16{letter-spacing:1.600000pt;}
.ls23{letter-spacing:1.653333pt;}
.ls10{letter-spacing:2.613333pt;}
.ls2d{letter-spacing:2.666667pt;}
.lsd{letter-spacing:2.720000pt;}
.ls1d{letter-spacing:3.680000pt;}
.ls17{letter-spacing:3.733333pt;}
.ls28{letter-spacing:4.800000pt;}
.ls3a{letter-spacing:6.880000pt;}
.ls2c{letter-spacing:6.933333pt;}
.ls1a{letter-spacing:7.946667pt;}
.lsf{letter-spacing:8.000000pt;}
.ls35{letter-spacing:8.266667pt;}
.ls38{letter-spacing:9.333333pt;}
.ls6{letter-spacing:9.600000pt;}
.ls39{letter-spacing:9.760000pt;}
.ls37{letter-spacing:10.133333pt;}
.ls30{letter-spacing:11.200000pt;}
.ls36{letter-spacing:12.800000pt;}
.ls7{letter-spacing:40.800000pt;}
.ls3b{letter-spacing:42.400000pt;}
.ls4{letter-spacing:49.120000pt;}
.ls0{letter-spacing:49.226667pt;}
.ls2{letter-spacing:50.080000pt;}
.ls3{letter-spacing:50.133333pt;}
.wse{word-spacing:-48.000000pt;}
.ws17{word-spacing:-15.946667pt;}
.ws18{word-spacing:-14.880000pt;}
.ws7{word-spacing:-13.813333pt;}
.ws9{word-spacing:-13.706667pt;}
.wsa{word-spacing:-13.653333pt;}
.ws13{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.440000pt;}
.ws14{word-spacing:-13.386667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws12{word-spacing:-13.173333pt;}
.ws15{word-spacing:-13.120000pt;}
.ws16{word-spacing:-13.066667pt;}
.ws1c{word-spacing:-12.800000pt;}
.ws19{word-spacing:-12.640000pt;}
.ws1e{word-spacing:-12.533333pt;}
.ws1d{word-spacing:-12.400000pt;}
.ws11{word-spacing:-12.240000pt;}
.wsc{word-spacing:-12.021333pt;}
.wsd{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.989333pt;}
.ws1b{word-spacing:-11.733333pt;}
.wsf{word-spacing:-11.578667pt;}
.ws0{word-spacing:-10.933333pt;}
.ws2{word-spacing:-10.666667pt;}
.ws6{word-spacing:-10.325333pt;}
.ws4{word-spacing:-9.333333pt;}
.ws1a{word-spacing:-8.576000pt;}
.ws1{word-spacing:-8.000000pt;}
.wsb{word-spacing:-7.466667pt;}
.ws5{word-spacing:0.000000pt;}
._14{margin-left:-3.488000pt;}
._7{margin-left:-2.448000pt;}
._1{margin-left:-0.938667pt;}
._0{width:1.056000pt;}
._a{width:2.688000pt;}
._b{width:3.786667pt;}
._9{width:5.354667pt;}
._8{width:6.480000pt;}
._c{width:7.402667pt;}
._15{width:8.549333pt;}
._17{width:9.530667pt;}
._12{width:10.453333pt;}
._4{width:11.456000pt;}
._16{width:12.373333pt;}
._1f{width:13.285333pt;}
._11{width:15.114667pt;}
._1d{width:17.424000pt;}
._1e{width:18.650667pt;}
._3{width:20.384000pt;}
._d{width:21.989333pt;}
._6{width:23.466667pt;}
._e{width:24.362667pt;}
._1b{width:26.352000pt;}
._1a{width:27.941333pt;}
._5{width:33.333333pt;}
._10{width:40.133333pt;}
._f{width:41.626667pt;}
._1c{width:43.114667pt;}
._19{width:65.200000pt;}
._2{width:306.688000pt;}
._18{width:1633.744000pt;}
._13{width:1655.077333pt;}
.fs6{font-size:26.666667pt;}
.fs9{font-size:29.866667pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:45.866667pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.666667pt;}
.yc3{bottom:3.733333pt;}
.y112{bottom:3.986667pt;}
.yff{bottom:4.000000pt;}
.y104{bottom:4.266667pt;}
.y10e{bottom:4.280000pt;}
.yfb{bottom:5.053333pt;}
.yfa{bottom:5.333333pt;}
.ycf{bottom:7.466667pt;}
.y3{bottom:8.520000pt;}
.yca{bottom:8.800000pt;}
.ydc{bottom:11.746667pt;}
.yc1{bottom:12.546667pt;}
.y101{bottom:13.066667pt;}
.yfd{bottom:13.080000pt;}
.y10a{bottom:13.333333pt;}
.ye2{bottom:16.026667pt;}
.yd3{bottom:17.333333pt;}
.ye7{bottom:17.600000pt;}
.y4{bottom:18.120000pt;}
.y4a{bottom:18.666667pt;}
.ydf{bottom:20.266667pt;}
.yc2{bottom:21.080000pt;}
.y111{bottom:22.120000pt;}
.y106{bottom:22.133333pt;}
.yfe{bottom:22.146667pt;}
.y103{bottom:22.160000pt;}
.yce{bottom:24.826667pt;}
.yd5{bottom:24.840000pt;}
.y2{bottom:25.333333pt;}
.y7{bottom:25.633333pt;}
.yc7{bottom:26.133333pt;}
.ycc{bottom:28.573333pt;}
.ydb{bottom:29.080000pt;}
.y109{bottom:31.200000pt;}
.y100{bottom:31.240000pt;}
.ye1{bottom:33.360000pt;}
.yc8{bottom:34.666667pt;}
.y49{bottom:34.673333pt;}
.ye5{bottom:34.933333pt;}
.ydd{bottom:37.613333pt;}
.y6{bottom:37.900000pt;}
.yd1{bottom:38.400000pt;}
.yc5{bottom:38.413333pt;}
.ye4{bottom:38.666667pt;}
.y110{bottom:39.986667pt;}
.y102{bottom:40.026667pt;}
.y10b{bottom:40.266667pt;}
.y10d{bottom:40.280000pt;}
.yd8{bottom:41.346667pt;}
.y51{bottom:41.633333pt;}
.ycd{bottom:42.160000pt;}
.yd6{bottom:42.173333pt;}
.yc6{bottom:43.466667pt;}
.yda{bottom:46.413333pt;}
.y48{bottom:50.700000pt;}
.yd2{bottom:52.000000pt;}
.ye6{bottom:52.266667pt;}
.yde{bottom:54.933333pt;}
.y50{bottom:57.633333pt;}
.yc9{bottom:60.800000pt;}
.yd9{bottom:63.746667pt;}
.y47{bottom:66.700000pt;}
.y4f{bottom:71.766667pt;}
.yb4{bottom:82.433333pt;}
.y46{bottom:82.700000pt;}
.y17e{bottom:84.833333pt;}
.y85{bottom:86.966667pt;}
.ybe{bottom:87.500000pt;}
.yf2{bottom:90.966667pt;}
.y45{bottom:96.300000pt;}
.yb3{bottom:99.500000pt;}
.y84{bottom:104.300000pt;}
.ybd{bottom:104.566667pt;}
.ye8{bottom:104.833333pt;}
.y17d{bottom:106.433333pt;}
.y31{bottom:107.766667pt;}
.yf1{bottom:108.300000pt;}
.y12e{bottom:109.100000pt;}
.y155{bottom:110.166667pt;}
.y133{bottom:110.966667pt;}
.yb2{bottom:116.566667pt;}
.y83{bottom:121.366667pt;}
.ybc{bottom:121.633333pt;}
.y30{bottom:121.900000pt;}
.yf0{bottom:125.366667pt;}
.y12d{bottom:126.166667pt;}
.y132{bottom:128.300000pt;}
.y154{bottom:131.766667pt;}
.yb1{bottom:133.626667pt;}
.y44{bottom:134.966667pt;}
.y82{bottom:138.440000pt;}
.y2f{bottom:138.973333pt;}
.yef{bottom:142.440000pt;}
.y12c{bottom:143.226667pt;}
.y131{bottom:145.400000pt;}
.y43{bottom:149.366667pt;}
.y17c{bottom:149.933333pt;}
.yb0{bottom:150.733333pt;}
.yf7{bottom:154.466667pt;}
.y153{bottom:155.266667pt;}
.y81{bottom:155.533333pt;}
.y2e{bottom:156.066667pt;}
.yee{bottom:159.533333pt;}
.y12b{bottom:160.333333pt;}
.y130{bottom:162.466667pt;}
.y42{bottom:163.766667pt;}
.yaf{bottom:167.800000pt;}
.y17b{bottom:171.800000pt;}
.y80{bottom:172.600000pt;}
.y2d{bottom:173.133333pt;}
.yed{bottom:176.600000pt;}
.y12a{bottom:177.400000pt;}
.y41{bottom:178.433333pt;}
.yf6{bottom:179.533333pt;}
.yae{bottom:184.866667pt;}
.y152{bottom:187.533333pt;}
.y7f{bottom:189.666667pt;}
.y2c{bottom:190.200000pt;}
.y17a{bottom:193.400000pt;}
.yec{bottom:193.666667pt;}
.y129{bottom:194.466667pt;}
.yf5{bottom:196.600000pt;}
.yad{bottom:201.933333pt;}
.y151{bottom:203.266667pt;}
.ye3{bottom:204.066667pt;}
.y7e{bottom:206.733333pt;}
.y40{bottom:206.993333pt;}
.y2b{bottom:207.266667pt;}
.y128{bottom:211.533333pt;}
.yf4{bottom:213.666667pt;}
.yeb{bottom:214.733333pt;}
.y179{bottom:215.266667pt;}
.yac{bottom:219.000000pt;}
.y3f{bottom:223.006667pt;}
.y2a{bottom:224.333333pt;}
.y7d{bottom:227.800000pt;}
.y127{bottom:228.600000pt;}
.yf3{bottom:230.733333pt;}
.y150{bottom:234.733333pt;}
.yab{bottom:236.066667pt;}
.y178{bottom:236.866667pt;}
.y3e{bottom:239.006667pt;}
.ybb{bottom:241.400000pt;}
.y29{bottom:241.666667pt;}
.y126{bottom:245.666667pt;}
.yea{bottom:247.800000pt;}
.y7c{bottom:248.866667pt;}
.yaa{bottom:253.400000pt;}
.y3d{bottom:255.006667pt;}
.yba{bottom:258.466667pt;}
.y28{bottom:258.733333pt;}
.y125{bottom:262.733333pt;}
.ye9{bottom:264.866667pt;}
.y14f{bottom:265.933333pt;}
.ya9{bottom:270.466667pt;}
.y3c{bottom:271.006667pt;}
.yb9{bottom:275.533333pt;}
.y27{bottom:275.800000pt;}
.y124{bottom:280.066667pt;}
.y177{bottom:280.333333pt;}
.y7b{bottom:281.933333pt;}
.ye0{bottom:284.866667pt;}
.y3b{bottom:286.993333pt;}
.ya8{bottom:287.533333pt;}
.yb8{bottom:292.600000pt;}
.y26{bottom:292.866667pt;}
.y123{bottom:297.160000pt;}
.y14e{bottom:297.440000pt;}
.y7a{bottom:299.026667pt;}
.y176{bottom:302.226667pt;}
.ya7{bottom:304.626667pt;}
.yb7{bottom:309.706667pt;}
.y25{bottom:309.973333pt;}
.y3a{bottom:310.993333pt;}
.y122{bottom:314.226667pt;}
.y79{bottom:316.106667pt;}
.ya6{bottom:321.706667pt;}
.y175{bottom:323.826667pt;}
.yb6{bottom:326.760000pt;}
.y24{bottom:327.026667pt;}
.y14d{bottom:328.626667pt;}
.y121{bottom:331.293333pt;}
.y78{bottom:333.440000pt;}
.y39{bottom:334.993333pt;}
.ya5{bottom:342.773333pt;}
.y23{bottom:344.106667pt;}
.y14c{bottom:344.360000pt;}
.yd7{bottom:345.426667pt;}
.y174{bottom:345.706667pt;}
.y120{bottom:348.360000pt;}
.y77{bottom:350.506667pt;}
.y38{bottom:351.033333pt;}
.yb5{bottom:359.560000pt;}
.y22{bottom:361.173333pt;}
.y11f{bottom:365.440000pt;}
.y37{bottom:367.033333pt;}
.y173{bottom:367.293333pt;}
.y76{bottom:367.560000pt;}
.y14b{bottom:375.293333pt;}
.ya4{bottom:375.840000pt;}
.y21{bottom:378.226667pt;}
.y11e{bottom:382.506667pt;}
.y36{bottom:383.033333pt;}
.y75{bottom:384.626667pt;}
.y172{bottom:389.173333pt;}
.y14a{bottom:390.773333pt;}
.ya3{bottom:392.893333pt;}
.y20{bottom:395.293333pt;}
.y35{bottom:399.033333pt;}
.y11d{bottom:399.560000pt;}
.y74{bottom:401.693333pt;}
.y149{bottom:406.226667pt;}
.ya2{bottom:409.960000pt;}
.y171{bottom:410.773333pt;}
.y1f{bottom:412.360000pt;}
.y34{bottom:415.033333pt;}
.y11c{bottom:416.626667pt;}
.y73{bottom:418.760000pt;}
.y148{bottom:421.440000pt;}
.ya1{bottom:427.026667pt;}
.y33{bottom:431.033333pt;}
.yd4{bottom:431.560000pt;}
.y170{bottom:432.626667pt;}
.y1e{bottom:433.440000pt;}
.y11b{bottom:433.693333pt;}
.y72{bottom:435.840000pt;}
.y147{bottom:436.893333pt;}
.ya0{bottom:444.093333pt;}
.y32{bottom:447.033333pt;}
.y11a{bottom:450.800000pt;}
.y146{bottom:452.666667pt;}
.y71{bottom:452.933333pt;}
.y16f{bottom:454.266667pt;}
.y9f{bottom:461.200000pt;}
.y119{bottom:467.866667pt;}
.y70{bottom:470.000000pt;}
.y16e{bottom:476.133333pt;}
.y9e{bottom:478.533333pt;}
.y145{bottom:484.133333pt;}
.y1d{bottom:485.200000pt;}
.y6f{bottom:487.066667pt;}
.yd0{bottom:492.400000pt;}
.y9d{bottom:495.600000pt;}
.y16d{bottom:497.733333pt;}
.y144{bottom:501.200000pt;}
.y118{bottom:502.266667pt;}
.y1c{bottom:503.066667pt;}
.y6e{bottom:504.133333pt;}
.y9c{bottom:512.666667pt;}
.y143{bottom:518.533333pt;}
.y117{bottom:519.333333pt;}
.y16c{bottom:519.600000pt;}
.y6d{bottom:521.200000pt;}
.y9b{bottom:529.733333pt;}
.y142{bottom:535.600000pt;}
.y1b{bottom:536.133333pt;}
.y116{bottom:536.400000pt;}
.y6c{bottom:538.533333pt;}
.y16b{bottom:541.200000pt;}
.y9a{bottom:546.800000pt;}
.y141{bottom:552.666667pt;}
.y1a{bottom:553.466667pt;}
.y6b{bottom:555.600000pt;}
.y16a{bottom:563.066667pt;}
.y99{bottom:563.866667pt;}
.y140{bottom:569.733333pt;}
.y115{bottom:570.533333pt;}
.y19{bottom:570.800000pt;}
.y6a{bottom:572.666667pt;}
.ycb{bottom:572.933333pt;}
.y169{bottom:584.666667pt;}
.y98{bottom:584.933333pt;}
.y13f{bottom:586.800000pt;}
.y114{bottom:587.600000pt;}
.y18{bottom:588.133333pt;}
.y69{bottom:589.733333pt;}
.y12f{bottom:593.200000pt;}
.y13e{bottom:603.893333pt;}
.y17{bottom:605.493333pt;}
.y168{bottom:606.560000pt;}
.y68{bottom:606.826667pt;}
.y113{bottom:608.693333pt;}
.y97{bottom:618.026667pt;}
.y13d{bottom:620.973333pt;}
.y16{bottom:622.840000pt;}
.y67{bottom:623.893333pt;}
.y167{bottom:628.173333pt;}
.yc4{bottom:633.760000pt;}
.y96{bottom:635.093333pt;}
.y13c{bottom:638.026667pt;}
.y10f{bottom:638.840000pt;}
.y15{bottom:640.173333pt;}
.y66{bottom:640.960000pt;}
.y166{bottom:650.026667pt;}
.y95{bottom:652.173333pt;}
.y13b{bottom:655.106667pt;}
.y14{bottom:657.506667pt;}
.y65{bottom:658.026667pt;}
.y94{bottom:669.226667pt;}
.y165{bottom:671.626667pt;}
.y13a{bottom:672.173333pt;}
.y13{bottom:674.840000pt;}
.y64{bottom:675.093333pt;}
.y93{bottom:686.293333pt;}
.y139{bottom:689.226667pt;}
.y12{bottom:692.173333pt;}
.y10c{bottom:693.226667pt;}
.y164{bottom:693.506667pt;}
.y92{bottom:703.626667pt;}
.y138{bottom:706.293333pt;}
.y63{bottom:709.226667pt;}
.y11{bottom:709.506667pt;}
.yc0{bottom:714.293333pt;}
.y163{bottom:715.106667pt;}
.y91{bottom:720.706667pt;}
.y137{bottom:723.626667pt;}
.y62{bottom:726.293333pt;}
.y10{bottom:726.840000pt;}
.y162{bottom:736.960000pt;}
.y180{bottom:737.506667pt;}
.y136{bottom:740.706667pt;}
.y90{bottom:741.760000pt;}
.y61{bottom:743.626667pt;}
.yf{bottom:744.426667pt;}
.y108{bottom:747.933333pt;}
.y135{bottom:757.800000pt;}
.y161{bottom:758.600000pt;}
.y60{bottom:760.733333pt;}
.ybf{bottom:761.533333pt;}
.y8f{bottom:774.866667pt;}
.ye{bottom:777.533333pt;}
.y5f{bottom:777.800000pt;}
.y160{bottom:780.466667pt;}
.y8e{bottom:791.933333pt;}
.yd{bottom:794.333333pt;}
.y5e{bottom:794.866667pt;}
.y15f{bottom:802.066667pt;}
.y107{bottom:802.600000pt;}
.y8d{bottom:809.000000pt;}
.y5d{bottom:811.933333pt;}
.y15e{bottom:823.933333pt;}
.y8c{bottom:826.066667pt;}
.y5c{bottom:829.000000pt;}
.yc{bottom:830.866667pt;}
.y105{bottom:839.400000pt;}
.y8b{bottom:843.133333pt;}
.y15d{bottom:845.533333pt;}
.y5b{bottom:846.066667pt;}
.y8a{bottom:860.200000pt;}
.y5a{bottom:863.133333pt;}
.y15c{bottom:867.400000pt;}
.yb{bottom:875.933333pt;}
.y89{bottom:877.266667pt;}
.y59{bottom:880.200000pt;}
.y15b{bottom:889.000000pt;}
.y88{bottom:894.333333pt;}
.y58{bottom:897.293333pt;}
.y134{bottom:898.360000pt;}
.ya{bottom:908.506667pt;}
.y15a{bottom:910.893333pt;}
.y87{bottom:911.440000pt;}
.y57{bottom:914.373333pt;}
.yfc{bottom:930.626667pt;}
.y56{bottom:931.426667pt;}
.y159{bottom:932.506667pt;}
.y86{bottom:932.760000pt;}
.y17f{bottom:933.040000pt;}
.y9{bottom:940.760000pt;}
.y55{bottom:948.760000pt;}
.y158{bottom:954.360000pt;}
.y54{bottom:965.840000pt;}
.yf9{bottom:967.173333pt;}
.y8{bottom:970.106667pt;}
.y157{bottom:975.960000pt;}
.y53{bottom:982.893333pt;}
.y156{bottom:997.840000pt;}
.yf8{bottom:999.693333pt;}
.y52{bottom:999.960000pt;}
.y5{bottom:1002.893333pt;}
.y1{bottom:1008.506667pt;}
.y4e{bottom:1017.293333pt;}
.y4d{bottom:1034.360000pt;}
.y4c{bottom:1043.173333pt;}
.h18{height:20.000000pt;}
.h15{height:21.991667pt;}
.hc{height:29.020833pt;}
.h7{height:31.270833pt;}
.h13{height:34.700000pt;}
.h11{height:34.726562pt;}
.hd{height:35.343750pt;}
.h1f{height:35.742708pt;}
.h1a{height:36.000000pt;}
.h9{height:39.088542pt;}
.h5{height:39.270833pt;}
.h8{height:39.687500pt;}
.h19{height:41.380208pt;}
.h4{height:42.664062pt;}
.h3{height:43.197917pt;}
.he{height:44.648438pt;}
.h2{height:45.900000pt;}
.h6{height:49.609375pt;}
.h12{height:53.203125pt;}
.h1e{height:53.866667pt;}
.h1b{height:53.900000pt;}
.h1c{height:54.133333pt;}
.h1d{height:54.166667pt;}
.hf{height:55.520833pt;}
.h16{height:60.033333pt;}
.hb{height:70.687500pt;}
.ha{height:74.484375pt;}
.h14{height:80.000000pt;}
.h17{height:85.600000pt;}
.h10{height:460.373333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:39.233333pt;}
.w8{width:83.233333pt;}
.wb{width:93.100000pt;}
.wd{width:93.633333pt;}
.w9{width:108.033333pt;}
.wa{width:111.233333pt;}
.w4{width:112.600000pt;}
.we{width:129.133333pt;}
.w6{width:160.866667pt;}
.wc{width:169.893333pt;}
.w10{width:283.573333pt;}
.wf{width:286.733333pt;}
.w3{width:302.200000pt;}
.w2{width:331.066667pt;}
.w5{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:7.453333pt;}
.xf{left:8.566667pt;}
.x26{left:10.133333pt;}
.x1f{left:11.200000pt;}
.x24{left:12.520000pt;}
.x11{left:13.600000pt;}
.x1b{left:15.466667pt;}
.x22{left:17.633333pt;}
.x37{left:18.706667pt;}
.x14{left:20.000000pt;}
.x16{left:21.333333pt;}
.x25{left:22.666667pt;}
.x21{left:25.600000pt;}
.x1c{left:28.000000pt;}
.x12{left:29.866667pt;}
.x23{left:31.453333pt;}
.x27{left:33.320000pt;}
.x2b{left:34.666667pt;}
.x34{left:36.826667pt;}
.x1e{left:38.933333pt;}
.x19{left:41.066667pt;}
.x29{left:42.400000pt;}
.x2e{left:43.766667pt;}
.x1{left:48.000000pt;}
.x2a{left:49.333333pt;}
.x2c{left:51.200000pt;}
.x20{left:52.253333pt;}
.x35{left:53.633333pt;}
.x33{left:55.200000pt;}
.x38{left:60.826667pt;}
.x9{left:72.566667pt;}
.x3b{left:74.440000pt;}
.x28{left:76.253333pt;}
.x10{left:87.233333pt;}
.x3a{left:89.106667pt;}
.xe{left:96.833322pt;}
.x3e{left:100.840000pt;}
.x3c{left:102.440000pt;}
.x30{left:103.760000pt;}
.x3d{left:108.826667pt;}
.x36{left:110.426667pt;}
.x32{left:121.133333pt;}
.x39{left:125.133333pt;}
.x3{left:151.226667pt;}
.xb{left:165.666655pt;}
.x13{left:170.466667pt;}
.x2f{left:177.133333pt;}
.x2d{left:188.066655pt;}
.x5{left:221.933322pt;}
.x6{left:222.999988pt;}
.x7{left:245.933322pt;}
.xd{left:250.199988pt;}
.x8{left:251.266655pt;}
.x15{left:278.506667pt;}
.x2{left:379.066667pt;}
.x17{left:389.733333pt;}
.x31{left:463.866667pt;}
.x18{left:483.106667pt;}
.xa{left:554.573322pt;}
.xc{left:617.533322pt;}
.x1a{left:653.000000pt;}
.x4{left:681.266667pt;}
}




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