
    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_df902e86b9cc1f9089c9bbd1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_9c5db5dc19cc2f559eae96ee.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_43406638b4435156dff7ef2b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b5a3419bb36dbfb9ec2007f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_12d8f202a5f4068850755174.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.883301;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_00ce5cd1c399706a655e43a2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_98256095e65999c3f7baf94e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_754fa52d3d9b20aaff38bb8e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.061035;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_0ac39db3c82f207b36a1eeed.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_56e76fe8f31704070c4c2715.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e6056f5e8b8b0006940d14c4.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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.277801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277801,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.296822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296822,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:-74.160000px;}
.v1{vertical-align:-69.120000px;}
.v2{vertical-align:-5.760000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v6{vertical-align:20.880000px;}
.ls17{letter-spacing:-1.260000px;}
.ls7{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.531600px;}
.ls2{letter-spacing:-0.460200px;}
.ls16{letter-spacing:-0.424531px;}
.ls15{letter-spacing:-0.400755px;}
.ls3{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.018000px;}
.ls12{letter-spacing:-0.004320px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.119520px;}
.lse{letter-spacing:0.171360px;}
.lsa{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.206400px;}
.ls10{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.298800px;}
.ls18{letter-spacing:0.300000px;}
.ls11{letter-spacing:0.306600px;}
.lsd{letter-spacing:0.311040px;}
.ls1{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.900000px;}
.ls14{letter-spacing:1.588178px;}
.ls19{letter-spacing:10.980000px;}
.lsc{letter-spacing:201.060000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.246600px;}
.wsa{word-spacing:-15.146400px;}
.ws9{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.922000px;}
.wsf{word-spacing:-14.680200px;}
.ws2{word-spacing:-14.580000px;}
.ws1{word-spacing:-14.479800px;}
.ws14{word-spacing:-14.220000px;}
.ws12{word-spacing:-13.648023px;}
.ws10{word-spacing:-12.883678px;}
.ws4{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.060000px;}
.wsb{word-spacing:-9.720000px;}
.wse{word-spacing:-9.715680px;}
.ws0{word-spacing:0.000000px;}
.ws11{word-spacing:53.737551px;}
.ws13{word-spacing:56.925618px;}
.ws7{word-spacing:161.364000px;}
.ws8{word-spacing:174.540000px;}
._20{margin-left:-5.677200px;}
._1e{margin-left:-4.407840px;}
._7{margin-left:-3.252240px;}
._4{margin-left:-2.168640px;}
._3{margin-left:-1.013040px;}
._0{width:1.135440px;}
._2{width:2.569440px;}
._6{width:3.602880px;}
._5{width:4.780800px;}
._a{width:6.215040px;}
._9{width:7.230960px;}
._b{width:8.246880px;}
._11{width:9.501840px;}
._d{width:11.378160px;}
._8{width:12.430080px;}
._10{width:13.474800px;}
._1b{width:15.414480px;}
._c{width:16.792560px;}
._12{width:17.868240px;}
._14{width:19.123200px;}
._f{width:20.497680px;}
._e{width:21.573360px;}
._18{width:22.708800px;}
._21{width:24.111120px;}
._1a{width:25.517520px;}
._22{width:26.652960px;}
._13{width:27.728640px;}
._19{width:29.640960px;}
._15{width:31.672800px;}
._17{width:33.704640px;}
._16{width:35.019360px;}
._1f{width:36.806160px;}
._1c{width:152.797626px;}
._1d{width:161.869340px;}
._1{width:482.162160px;}
.fc5{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc4{color:rgb(30,29,26);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fse{font-size:47.537728px;}
.fs7{font-size:48.240000px;}
.fs10{font-size:50.357980px;}
.fs8{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fsa{font-size:56.880000px;}
.fsd{font-size:57.007424px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:60.389481px;}
.fsc{font-size:62.991941px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:3.240000px;}
.y131{bottom:3.270000px;}
.y159{bottom:7.884209px;}
.y172{bottom:8.351952px;}
.y33{bottom:10.260000px;}
.y34{bottom:10.800000px;}
.y104{bottom:11.160000px;}
.yd1{bottom:11.880000px;}
.ye1{bottom:11.925000px;}
.yd5{bottom:13.320000px;}
.y107{bottom:13.545000px;}
.y101{bottom:14.040000px;}
.y81{bottom:17.715000px;}
.y103{bottom:17.820000px;}
.y109{bottom:18.360000px;}
.y10b{bottom:18.540000px;}
.y30{bottom:19.485000px;}
.y106{bottom:20.205000px;}
.y12b{bottom:20.340000px;}
.yd2{bottom:20.520000px;}
.y2e{bottom:20.565000px;}
.yd7{bottom:23.400000px;}
.y31{bottom:26.505000px;}
.yda{bottom:28.980000px;}
.ydc{bottom:29.160000px;}
.ye0{bottom:29.205000px;}
.yd4{bottom:30.600000px;}
.y2f{bottom:32.265000px;}
.yd9{bottom:37.620000px;}
.ydd{bottom:37.800000px;}
.ydf{bottom:37.845000px;}
.y100{bottom:39.960000px;}
.y158{bottom:40.262908px;}
.yd6{bottom:40.680000px;}
.y171{bottom:42.651570px;}
.y73{bottom:46.875000px;}
.y151{bottom:52.908033px;}
.y16b{bottom:56.046887px;}
.y74{bottom:64.830000px;}
.y5{bottom:66.525004px;}
.y75{bottom:82.830000px;}
.y152{bottom:89.223688px;}
.y4{bottom:97.125005px;}
.y76{bottom:100.830000px;}
.y7f{bottom:101.265000px;}
.y16c{bottom:102.044583px;}
.y77{bottom:118.800000px;}
.y153{bottom:124.772156px;}
.y78{bottom:136.800000px;}
.y21{bottom:139.264499px;}
.y16d{bottom:147.219751px;}
.y79{bottom:154.800000px;}
.y154{bottom:160.302072px;}
.y7a{bottom:172.770000px;}
.y5a{bottom:187.410000px;}
.y7b{bottom:190.770000px;}
.y16e{bottom:192.404747px;}
.y155{bottom:195.850540px;}
.y18{bottom:196.933500px;}
.y59{bottom:208.110000px;}
.y7c{bottom:208.770000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y7d{bottom:226.725000px;}
.y58{bottom:228.810000px;}
.y51{bottom:231.330000px;}
.y156{bottom:231.380455px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y16f{bottom:237.579915px;}
.y7e{bottom:244.725000px;}
.y50{bottom:249.330000px;}
.y57{bottom:249.510000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y157{bottom:266.928924px;}
.y4f{bottom:267.330000px;}
.y56{bottom:270.210000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y80{bottom:273.705000px;}
.y170{bottom:282.764911px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y4e{bottom:285.330000px;}
.y55{bottom:290.910000px;}
.y4d{bottom:303.330000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y83{bottom:311.115000px;}
.y54{bottom:311.655000px;}
.y4c{bottom:321.375000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y5b{bottom:331.815000px;}
.y53{bottom:332.355000px;}
.ycb{bottom:333.435000px;}
.y14f{bottom:335.415000px;}
.y4b{bottom:339.375000px;}
.ya7{bottom:339.555000px;}
.y178{bottom:345.495000px;}
.yf{bottom:348.133500px;}
.yca{bottom:351.435000px;}
.yf9{bottom:353.595000px;}
.y14e{bottom:355.755000px;}
.y4a{bottom:357.375000px;}
.ya6{bottom:357.555000px;}
.y169{bottom:357.735000px;}
.y11c{bottom:358.275000px;}
.y150{bottom:359.115000px;}
.y177{bottom:363.495000px;}
.yc9{bottom:369.435000px;}
.y13b{bottom:369.975000px;}
.yf8{bottom:371.595000px;}
.y49{bottom:375.375000px;}
.ya5{bottom:375.555000px;}
.y176{bottom:381.495000px;}
.y11b{bottom:385.275000px;}
.y13a{bottom:386.355000px;}
.ye{bottom:386.785499px;}
.yc8{bottom:387.435000px;}
.y71{bottom:388.155000px;}
.yf7{bottom:389.235000px;}
.y168{bottom:392.835000px;}
.y48{bottom:393.375000px;}
.ya4{bottom:393.555000px;}
.y139{bottom:402.735000px;}
.yc7{bottom:405.435000px;}
.y70{bottom:406.155000px;}
.yf6{bottom:406.515000px;}
.yd{bottom:408.044999px;}
.y47{bottom:411.375000px;}
.ya3{bottom:411.555000px;}
.y11a{bottom:412.275000px;}
.y138{bottom:419.115000px;}
.yc6{bottom:423.435000px;}
.yf5{bottom:423.795000px;}
.y6f{bottom:424.155000px;}
.y167{bottom:428.115000px;}
.ya2{bottom:429.555000px;}
.y46{bottom:435.495000px;}
.y119{bottom:439.275000px;}
.yf4{bottom:441.075000px;}
.ycf{bottom:441.435000px;}
.y6e{bottom:442.155000px;}
.y137{bottom:444.495000px;}
.ya1{bottom:447.555000px;}
.yf3{bottom:456.735000px;}
.y118{bottom:457.275000px;}
.y45{bottom:459.435000px;}
.y6d{bottom:460.155000px;}
.y166{bottom:463.395000px;}
.ya0{bottom:465.555000px;}
.y136{bottom:469.875000px;}
.y117{bottom:475.275000px;}
.yf2{bottom:475.455000px;}
.y44{bottom:477.435000px;}
.y6c{bottom:478.155000px;}
.y9f{bottom:483.555000px;}
.y135{bottom:486.255000px;}
.yf1{bottom:492.735000px;}
.y116{bottom:493.275000px;}
.yce{bottom:495.435000px;}
.y6b{bottom:496.155000px;}
.y165{bottom:498.675000px;}
.y43{bottom:501.375000px;}
.y9e{bottom:501.555000px;}
.y134{bottom:502.635000px;}
.yc{bottom:502.864502px;}
.y175{bottom:507.495000px;}
.yf0{bottom:510.015000px;}
.y115{bottom:511.275000px;}
.ycd{bottom:513.435000px;}
.y6a{bottom:514.155000px;}
.y133{bottom:519.195000px;}
.y42{bottom:519.375000px;}
.y9d{bottom:519.555000px;}
.yb{bottom:520.864502px;}
.y183{bottom:525.495000px;}
.yef{bottom:527.295000px;}
.y114{bottom:529.275000px;}
.ycc{bottom:531.435000px;}
.y69{bottom:532.155000px;}
.y164{bottom:533.955000px;}
.y41{bottom:537.375000px;}
.y9c{bottom:537.555000px;}
.ya{bottom:538.864499px;}
.y132{bottom:542.235000px;}
.y17e{bottom:543.495000px;}
.yee{bottom:544.395000px;}
.y113{bottom:547.275000px;}
.y68{bottom:550.155000px;}
.y40{bottom:555.375000px;}
.y9b{bottom:555.555000px;}
.y9{bottom:556.864499px;}
.y130{bottom:560.235000px;}
.y17d{bottom:561.525000px;}
.yed{bottom:561.705000px;}
.y112{bottom:565.305000px;}
.y67{bottom:568.185000px;}
.y163{bottom:569.265000px;}
.y3f{bottom:573.405000px;}
.y9a{bottom:573.585000px;}
.y12f{bottom:578.265000px;}
.yec{bottom:578.985000px;}
.y174{bottom:579.525000px;}
.y182{bottom:585.465000px;}
.y66{bottom:586.185000px;}
.y3e{bottom:591.405000px;}
.yba{bottom:591.585000px;}
.y111{bottom:592.305000px;}
.yeb{bottom:596.265000px;}
.y99{bottom:597.525000px;}
.y181{bottom:603.465000px;}
.y65{bottom:604.185000px;}
.y3d{bottom:609.405000px;}
.yc5{bottom:609.585000px;}
.yea{bottom:612.825000px;}
.y162{bottom:614.085000px;}
.y12e{bottom:614.265000px;}
.yb9{bottom:615.525000px;}
.y110{bottom:619.305000px;}
.y98{bottom:621.465000px;}
.y3c{bottom:627.405000px;}
.yc4{bottom:627.585000px;}
.y64{bottom:631.185000px;}
.y12d{bottom:632.265000px;}
.yb8{bottom:633.525000px;}
.y10f{bottom:637.305000px;}
.y161{bottom:638.025000px;}
.y97{bottom:639.465000px;}
.y3b{bottom:645.405000px;}
.y8{bottom:645.510000px;}
.yc3{bottom:645.585000px;}
.ye9{bottom:647.925000px;}
.y12c{bottom:650.265000px;}
.y63{bottom:651.525000px;}
.y72{bottom:652.140000px;}
.y14d{bottom:654.225000px;}
.y10e{bottom:655.305000px;}
.y160{bottom:656.025000px;}
.y96{bottom:657.465000px;}
.y3a{bottom:663.405000px;}
.yc2{bottom:663.585000px;}
.ye8{bottom:665.205000px;}
.y7{bottom:666.771000px;}
.y12a{bottom:668.265000px;}
.yb7{bottom:669.525000px;}
.y14c{bottom:672.225000px;}
.y10d{bottom:673.305000px;}
.y15f{bottom:674.025000px;}
.y95{bottom:675.465000px;}
.y39{bottom:681.405000px;}
.yc1{bottom:681.585000px;}
.ye7{bottom:682.485000px;}
.yb6{bottom:687.525000px;}
.y14b{bottom:690.225000px;}
.y10c{bottom:691.305000px;}
.y15e{bottom:692.025000px;}
.y94{bottom:693.465000px;}
.y38{bottom:699.405000px;}
.yc0{bottom:699.585000px;}
.ye6{bottom:699.945000px;}
.yb5{bottom:705.525000px;}
.y15d{bottom:710.025000px;}
.y93{bottom:711.465000px;}
.y129{bottom:712.725000px;}
.y14a{bottom:714.165000px;}
.y10a{bottom:715.425000px;}
.y37{bottom:717.405000px;}
.ybf{bottom:717.585000px;}
.yb4{bottom:723.525000px;}
.ye5{bottom:723.705000px;}
.y6{bottom:726.298500px;}
.y92{bottom:729.465000px;}
.y149{bottom:732.165000px;}
.y15c{bottom:733.965000px;}
.ybe{bottom:735.585000px;}
.y128{bottom:736.305000px;}
.y36{bottom:741.525000px;}
.ye4{bottom:741.705000px;}
.y108{bottom:750.525000px;}
.y3{bottom:752.599495px;}
.y91{bottom:753.585000px;}
.y127{bottom:754.305000px;}
.y148{bottom:756.285000px;}
.y15b{bottom:758.085000px;}
.y35{bottom:759.165000px;}
.yb3{bottom:759.525000px;}
.ye3{bottom:759.705000px;}
.y17c{bottom:765.465000px;}
.y90{bottom:771.585000px;}
.y126{bottom:772.305000px;}
.y32{bottom:773.025000px;}
.yb2{bottom:777.525000px;}
.y15a{bottom:778.425000px;}
.y147{bottom:780.225000px;}
.y16a{bottom:780.780000px;}
.y17b{bottom:783.465000px;}
.ye2{bottom:783.645000px;}
.y8f{bottom:789.585000px;}
.y125{bottom:790.305000px;}
.y2d{bottom:795.165000px;}
.yb1{bottom:795.525000px;}
.y146{bottom:798.225000px;}
.y105{bottom:798.585000px;}
.y180{bottom:801.465000px;}
.y8e{bottom:807.585000px;}
.yde{bottom:807.765000px;}
.y124{bottom:808.305000px;}
.yb0{bottom:813.570000px;}
.y145{bottom:816.270000px;}
.y17f{bottom:819.510000px;}
.y8d{bottom:825.630000px;}
.yaf{bottom:831.570000px;}
.y123{bottom:832.290000px;}
.y144{bottom:834.270000px;}
.y2c{bottom:836.250000px;}
.y102{bottom:836.970000px;}
.y8c{bottom:843.630000px;}
.yae{bottom:849.570000px;}
.y2b{bottom:853.350000px;}
.y122{bottom:856.410000px;}
.y143{bottom:857.490000px;}
.ydb{bottom:860.370000px;}
.y8b{bottom:861.630000px;}
.yad{bottom:867.570000px;}
.y2a{bottom:870.630000px;}
.yff{bottom:870.810000px;}
.y142{bottom:876.930000px;}
.y2{bottom:879.369000px;}
.y8a{bottom:879.630000px;}
.yac{bottom:885.570000px;}
.y29{bottom:887.910000px;}
.y121{bottom:891.690000px;}
.y89{bottom:897.630000px;}
.yab{bottom:903.570000px;}
.y28{bottom:905.190000px;}
.y141{bottom:912.210000px;}
.yd8{bottom:912.930000px;}
.y88{bottom:915.630000px;}
.yaa{bottom:921.570000px;}
.y27{bottom:924.450000px;}
.y120{bottom:926.970000px;}
.y17a{bottom:927.510000px;}
.y87{bottom:933.630000px;}
.yfe{bottom:934.710000px;}
.ya9{bottom:939.570000px;}
.y179{bottom:945.510000px;}
.y140{bottom:947.490000px;}
.y86{bottom:951.630000px;}
.y26{bottom:951.990000px;}
.ybd{bottom:957.570000px;}
.yfd{bottom:958.290000px;}
.y11f{bottom:962.250000px;}
.ya8{bottom:963.510000px;}
.yd3{bottom:965.310000px;}
.y1{bottom:966.726000px;}
.y62{bottom:969.630000px;}
.ybc{bottom:975.570000px;}
.yfc{bottom:976.290000px;}
.y25{bottom:979.710000px;}
.y13f{bottom:982.770000px;}
.y61{bottom:987.630000px;}
.ybb{bottom:993.570000px;}
.y11e{bottom:997.530000px;}
.yfb{bottom:1000.410000px;}
.y85{bottom:1005.630000px;}
.y60{bottom:1011.570000px;}
.yd0{bottom:1020.750000px;}
.y84{bottom:1023.630000px;}
.yfa{bottom:1023.990000px;}
.y13e{bottom:1027.230000px;}
.y5f{bottom:1029.570000px;}
.y24{bottom:1031.550000px;}
.y173{bottom:1041.630000px;}
.y11d{bottom:1041.990000px;}
.y5e{bottom:1047.570000px;}
.y23{bottom:1048.650000px;}
.y13d{bottom:1050.270000px;}
.y5d{bottom:1065.600000px;}
.y22{bottom:1065.960000px;}
.y13c{bottom:1066.680000px;}
.y52{bottom:1119.960000px;}
.y82{bottom:1120.680000px;}
.h27{height:17.100000px;}
.h28{height:17.136000px;}
.h13{height:17.280000px;}
.h10{height:22.140000px;}
.h7{height:32.130000px;}
.h23{height:33.120000px;}
.h1a{height:34.380000px;}
.h2e{height:34.416000px;}
.h26{height:34.560000px;}
.h24{height:37.656000px;}
.hd{height:37.836000px;}
.h20{height:38.139609px;}
.h21{height:38.158594px;}
.h15{height:40.948242px;}
.h18{height:43.215117px;}
.h6{height:45.900000px;}
.h2d{height:47.282398px;}
.h25{height:47.340000px;}
.hf{height:47.344922px;}
.h3{height:48.195000px;}
.he{height:48.616875px;}
.h32{height:49.255313px;}
.h31{height:50.087502px;}
.h11{height:50.171484px;}
.h1c{height:51.660000px;}
.h1d{height:51.840000px;}
.h1e{height:51.876000px;}
.h1f{height:53.087935px;}
.h22{height:54.000000px;}
.h2a{height:54.421875px;}
.h1b{height:54.720000px;}
.h2{height:55.080000px;}
.h29{height:55.796836px;}
.h17{height:55.824609px;}
.h2c{height:56.701232px;}
.h19{height:58.621992px;}
.h9{height:58.651172px;}
.h30{height:60.065124px;}
.ha{height:60.226875px;}
.h12{height:70.664062px;}
.h5{height:78.030000px;}
.hc{height:93.983203px;}
.hb{height:96.508125px;}
.h16{height:98.051133px;}
.h4{height:119.055004px;}
.h2b{height:280.343090px;}
.h2f{height:296.970000px;}
.h14{height:307.800000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w9{width:22.716000px;}
.w15{width:63.900000px;}
.wc{width:69.660000px;}
.w10{width:71.640000px;}
.w11{width:71.820000px;}
.wf{width:77.256000px;}
.w13{width:79.560000px;}
.w20{width:80.316000px;}
.w12{width:82.296000px;}
.we{width:82.476000px;}
.w1c{width:86.616000px;}
.w1f{width:86.940000px;}
.wb{width:93.276000px;}
.w1e{width:93.816000px;}
.w17{width:96.696000px;}
.w24{width:100.476000px;}
.w1d{width:100.620000px;}
.w23{width:107.136000px;}
.w19{width:108.396000px;}
.w16{width:109.476000px;}
.w1a{width:114.480000px;}
.w22{width:120.276000px;}
.w5{width:130.716000px;}
.w6{width:133.200000px;}
.w8{width:134.676000px;}
.w14{width:134.856000px;}
.w18{width:138.960000px;}
.w7{width:141.516000px;}
.wd{width:176.610000px;}
.w1b{width:363.270000px;}
.w21{width:539.748501px;}
.w25{width:539.775000px;}
.wa{width:540.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x4b{left:5.622614px;}
.xd{left:8.100000px;}
.x17{left:9.795000px;}
.x15{left:12.495000px;}
.x33{left:14.970000px;}
.x16{left:16.635000px;}
.x23{left:19.080000px;}
.x35{left:21.060000px;}
.x18{left:22.320000px;}
.x36{left:23.790000px;}
.x21{left:25.560000px;}
.x52{left:28.980000px;}
.x38{left:31.860000px;}
.x24{left:34.740000px;}
.x3d{left:37.800000px;}
.x41{left:41.040000px;}
.x20{left:43.200000px;}
.x3f{left:45.540000px;}
.x37{left:48.240000px;}
.x43{left:52.560000px;}
.x40{left:54.360000px;}
.x42{left:58.140000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x3e{left:110.340000px;}
.x19{left:177.915000px;}
.x53{left:180.527980px;}
.x4{left:203.484001px;}
.x4c{left:210.260155px;}
.x5{left:216.029986px;}
.x4a{left:218.250000px;}
.x6{left:238.169986px;}
.xa{left:240.869986px;}
.x1a{left:245.985000px;}
.x29{left:254.370000px;}
.x44{left:260.490000px;}
.x7{left:263.909986px;}
.x25{left:270.029986px;}
.x1d{left:273.990000px;}
.x4e{left:277.410000px;}
.x30{left:282.450000px;}
.x4d{left:290.549986px;}
.x14{left:297.434986px;}
.x3a{left:304.455000px;}
.x28{left:311.294986px;}
.x1b{left:312.914986px;}
.x26{left:321.194986px;}
.x49{left:326.054986px;}
.x27{left:329.474986px;}
.x2a{left:332.355000px;}
.x11{left:345.314986px;}
.xc{left:346.755000px;}
.x2f{left:348.194986px;}
.x1c{left:356.654986px;}
.x1e{left:367.995000px;}
.x39{left:369.614986px;}
.xb{left:391.574986px;}
.x4f{left:398.595000px;}
.x2b{left:404.715000px;}
.x9{left:416.054986px;}
.x31{left:418.035000px;}
.x54{left:435.674986px;}
.x1f{left:438.375000px;}
.x3b{left:444.135000px;}
.x45{left:449.175000px;}
.x3{left:454.959000px;}
.x10{left:464.294986px;}
.x12{left:474.735000px;}
.x2c{left:477.255000px;}
.xe{left:479.955000px;}
.x32{left:482.655000px;}
.x8{left:486.104986px;}
.x50{left:506.625000px;}
.x46{left:543.705000px;}
.x3c{left:553.245000px;}
.x2d{left:560.265000px;}
.x34{left:593.025000px;}
.x51{left:594.285000px;}
.x22{left:615.705000px;}
.xf{left:621.465000px;}
.x47{left:631.365000px;}
.x2e{left:640.545000px;}
.x13{left:756.149986px;}
.x48{left:760.649986px;}
@media print{
.v3{vertical-align:-65.920000pt;}
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-5.120000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v6{vertical-align:18.560000pt;}
.ls17{letter-spacing:-1.120000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.472533pt;}
.ls2{letter-spacing:-0.409067pt;}
.ls16{letter-spacing:-0.377361pt;}
.ls15{letter-spacing:-0.356227pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls12{letter-spacing:-0.003840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.106240pt;}
.lse{letter-spacing:0.152320pt;}
.lsa{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.183467pt;}
.ls10{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.265600pt;}
.ls18{letter-spacing:0.266667pt;}
.ls11{letter-spacing:0.272533pt;}
.lsd{letter-spacing:0.276480pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls14{letter-spacing:1.411714pt;}
.ls19{letter-spacing:9.760000pt;}
.lsc{letter-spacing:178.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.552533pt;}
.wsa{word-spacing:-13.463467pt;}
.ws9{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.264000pt;}
.wsf{word-spacing:-13.049067pt;}
.ws2{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.870933pt;}
.ws14{word-spacing:-12.640000pt;}
.ws12{word-spacing:-12.131576pt;}
.ws10{word-spacing:-11.452158pt;}
.ws4{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.720000pt;}
.wsb{word-spacing:-8.640000pt;}
.wse{word-spacing:-8.636160pt;}
.ws0{word-spacing:0.000000pt;}
.ws11{word-spacing:47.766712pt;}
.ws13{word-spacing:50.600549pt;}
.ws7{word-spacing:143.434667pt;}
.ws8{word-spacing:155.146667pt;}
._20{margin-left:-5.046400pt;}
._1e{margin-left:-3.918080pt;}
._7{margin-left:-2.890880pt;}
._4{margin-left:-1.927680pt;}
._3{margin-left:-0.900480pt;}
._0{width:1.009280pt;}
._2{width:2.283947pt;}
._6{width:3.202560pt;}
._5{width:4.249600pt;}
._a{width:5.524480pt;}
._9{width:6.427520pt;}
._b{width:7.330560pt;}
._11{width:8.446080pt;}
._d{width:10.113920pt;}
._8{width:11.048960pt;}
._10{width:11.977600pt;}
._1b{width:13.701760pt;}
._c{width:14.926720pt;}
._12{width:15.882880pt;}
._14{width:16.998400pt;}
._f{width:18.220160pt;}
._e{width:19.176320pt;}
._18{width:20.185600pt;}
._21{width:21.432107pt;}
._1a{width:22.682240pt;}
._22{width:23.691520pt;}
._13{width:24.647680pt;}
._19{width:26.347520pt;}
._15{width:28.153600pt;}
._17{width:29.959680pt;}
._16{width:31.128320pt;}
._1f{width:32.716587pt;}
._1c{width:135.820112pt;}
._1d{width:143.883858pt;}
._1{width:428.588587pt;}
.fsb{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fse{font-size:42.255758pt;}
.fs7{font-size:42.880000pt;}
.fs10{font-size:44.762649pt;}
.fs8{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:50.560000pt;}
.fsd{font-size:50.673266pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:53.679539pt;}
.fsc{font-size:55.992837pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:2.880000pt;}
.y131{bottom:2.906667pt;}
.y159{bottom:7.008186pt;}
.y172{bottom:7.423957pt;}
.y33{bottom:9.120000pt;}
.y34{bottom:9.600000pt;}
.y104{bottom:9.920000pt;}
.yd1{bottom:10.560000pt;}
.ye1{bottom:10.600000pt;}
.yd5{bottom:11.840000pt;}
.y107{bottom:12.040000pt;}
.y101{bottom:12.480000pt;}
.y81{bottom:15.746667pt;}
.y103{bottom:15.840000pt;}
.y109{bottom:16.320000pt;}
.y10b{bottom:16.480000pt;}
.y30{bottom:17.320000pt;}
.y106{bottom:17.960000pt;}
.y12b{bottom:18.080000pt;}
.yd2{bottom:18.240000pt;}
.y2e{bottom:18.280000pt;}
.yd7{bottom:20.800000pt;}
.y31{bottom:23.560000pt;}
.yda{bottom:25.760000pt;}
.ydc{bottom:25.920000pt;}
.ye0{bottom:25.960000pt;}
.yd4{bottom:27.200000pt;}
.y2f{bottom:28.680000pt;}
.yd9{bottom:33.440000pt;}
.ydd{bottom:33.600000pt;}
.ydf{bottom:33.640000pt;}
.y100{bottom:35.520000pt;}
.y158{bottom:35.789252pt;}
.yd6{bottom:36.160000pt;}
.y171{bottom:37.912506pt;}
.y73{bottom:41.666667pt;}
.y151{bottom:47.029362pt;}
.y16b{bottom:49.819455pt;}
.y74{bottom:57.626667pt;}
.y5{bottom:59.133337pt;}
.y75{bottom:73.626667pt;}
.y152{bottom:79.309945pt;}
.y4{bottom:86.333337pt;}
.y76{bottom:89.626667pt;}
.y7f{bottom:90.013333pt;}
.y16c{bottom:90.706296pt;}
.y77{bottom:105.600000pt;}
.y153{bottom:110.908583pt;}
.y78{bottom:121.600000pt;}
.y21{bottom:123.790666pt;}
.y16d{bottom:130.862001pt;}
.y79{bottom:137.600000pt;}
.y154{bottom:142.490730pt;}
.y7a{bottom:153.573333pt;}
.y5a{bottom:166.586667pt;}
.y7b{bottom:169.573333pt;}
.y16e{bottom:171.026442pt;}
.y155{bottom:174.089369pt;}
.y18{bottom:175.052000pt;}
.y59{bottom:184.986667pt;}
.y7c{bottom:185.573333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y7d{bottom:201.533333pt;}
.y58{bottom:203.386667pt;}
.y51{bottom:205.626667pt;}
.y156{bottom:205.671516pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y16f{bottom:211.182147pt;}
.y7e{bottom:217.533333pt;}
.y50{bottom:221.626667pt;}
.y57{bottom:221.786667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y157{bottom:237.270155pt;}
.y4f{bottom:237.626667pt;}
.y56{bottom:240.186667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y80{bottom:243.293333pt;}
.y170{bottom:251.346587pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y4e{bottom:253.626667pt;}
.y55{bottom:258.586667pt;}
.y4d{bottom:269.626667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y83{bottom:276.546667pt;}
.y54{bottom:277.026667pt;}
.y4c{bottom:285.666667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y5b{bottom:294.946667pt;}
.y53{bottom:295.426667pt;}
.ycb{bottom:296.386667pt;}
.y14f{bottom:298.146667pt;}
.y4b{bottom:301.666667pt;}
.ya7{bottom:301.826667pt;}
.y178{bottom:307.106667pt;}
.yf{bottom:309.452000pt;}
.yca{bottom:312.386667pt;}
.yf9{bottom:314.306667pt;}
.y14e{bottom:316.226667pt;}
.y4a{bottom:317.666667pt;}
.ya6{bottom:317.826667pt;}
.y169{bottom:317.986667pt;}
.y11c{bottom:318.466667pt;}
.y150{bottom:319.213333pt;}
.y177{bottom:323.106667pt;}
.yc9{bottom:328.386667pt;}
.y13b{bottom:328.866667pt;}
.yf8{bottom:330.306667pt;}
.y49{bottom:333.666667pt;}
.ya5{bottom:333.826667pt;}
.y176{bottom:339.106667pt;}
.y11b{bottom:342.466667pt;}
.y13a{bottom:343.426667pt;}
.ye{bottom:343.809333pt;}
.yc8{bottom:344.386667pt;}
.y71{bottom:345.026667pt;}
.yf7{bottom:345.986667pt;}
.y168{bottom:349.186667pt;}
.y48{bottom:349.666667pt;}
.ya4{bottom:349.826667pt;}
.y139{bottom:357.986667pt;}
.yc7{bottom:360.386667pt;}
.y70{bottom:361.026667pt;}
.yf6{bottom:361.346667pt;}
.yd{bottom:362.706666pt;}
.y47{bottom:365.666667pt;}
.ya3{bottom:365.826667pt;}
.y11a{bottom:366.466667pt;}
.y138{bottom:372.546667pt;}
.yc6{bottom:376.386667pt;}
.yf5{bottom:376.706667pt;}
.y6f{bottom:377.026667pt;}
.y167{bottom:380.546667pt;}
.ya2{bottom:381.826667pt;}
.y46{bottom:387.106667pt;}
.y119{bottom:390.466667pt;}
.yf4{bottom:392.066667pt;}
.ycf{bottom:392.386667pt;}
.y6e{bottom:393.026667pt;}
.y137{bottom:395.106667pt;}
.ya1{bottom:397.826667pt;}
.yf3{bottom:405.986667pt;}
.y118{bottom:406.466667pt;}
.y45{bottom:408.386667pt;}
.y6d{bottom:409.026667pt;}
.y166{bottom:411.906667pt;}
.ya0{bottom:413.826667pt;}
.y136{bottom:417.666667pt;}
.y117{bottom:422.466667pt;}
.yf2{bottom:422.626667pt;}
.y44{bottom:424.386667pt;}
.y6c{bottom:425.026667pt;}
.y9f{bottom:429.826667pt;}
.y135{bottom:432.226667pt;}
.yf1{bottom:437.986667pt;}
.y116{bottom:438.466667pt;}
.yce{bottom:440.386667pt;}
.y6b{bottom:441.026667pt;}
.y165{bottom:443.266667pt;}
.y43{bottom:445.666667pt;}
.y9e{bottom:445.826667pt;}
.y134{bottom:446.786667pt;}
.yc{bottom:446.990669pt;}
.y175{bottom:451.106667pt;}
.yf0{bottom:453.346667pt;}
.y115{bottom:454.466667pt;}
.ycd{bottom:456.386667pt;}
.y6a{bottom:457.026667pt;}
.y133{bottom:461.506667pt;}
.y42{bottom:461.666667pt;}
.y9d{bottom:461.826667pt;}
.yb{bottom:462.990669pt;}
.y183{bottom:467.106667pt;}
.yef{bottom:468.706667pt;}
.y114{bottom:470.466667pt;}
.ycc{bottom:472.386667pt;}
.y69{bottom:473.026667pt;}
.y164{bottom:474.626667pt;}
.y41{bottom:477.666667pt;}
.y9c{bottom:477.826667pt;}
.ya{bottom:478.990666pt;}
.y132{bottom:481.986667pt;}
.y17e{bottom:483.106667pt;}
.yee{bottom:483.906667pt;}
.y113{bottom:486.466667pt;}
.y68{bottom:489.026667pt;}
.y40{bottom:493.666667pt;}
.y9b{bottom:493.826667pt;}
.y9{bottom:494.990666pt;}
.y130{bottom:497.986667pt;}
.y17d{bottom:499.133333pt;}
.yed{bottom:499.293333pt;}
.y112{bottom:502.493333pt;}
.y67{bottom:505.053333pt;}
.y163{bottom:506.013333pt;}
.y3f{bottom:509.693333pt;}
.y9a{bottom:509.853333pt;}
.y12f{bottom:514.013333pt;}
.yec{bottom:514.653333pt;}
.y174{bottom:515.133333pt;}
.y182{bottom:520.413333pt;}
.y66{bottom:521.053333pt;}
.y3e{bottom:525.693333pt;}
.yba{bottom:525.853333pt;}
.y111{bottom:526.493333pt;}
.yeb{bottom:530.013333pt;}
.y99{bottom:531.133333pt;}
.y181{bottom:536.413333pt;}
.y65{bottom:537.053333pt;}
.y3d{bottom:541.693333pt;}
.yc5{bottom:541.853333pt;}
.yea{bottom:544.733333pt;}
.y162{bottom:545.853333pt;}
.y12e{bottom:546.013333pt;}
.yb9{bottom:547.133333pt;}
.y110{bottom:550.493333pt;}
.y98{bottom:552.413333pt;}
.y3c{bottom:557.693333pt;}
.yc4{bottom:557.853333pt;}
.y64{bottom:561.053333pt;}
.y12d{bottom:562.013333pt;}
.yb8{bottom:563.133333pt;}
.y10f{bottom:566.493333pt;}
.y161{bottom:567.133333pt;}
.y97{bottom:568.413333pt;}
.y3b{bottom:573.693333pt;}
.y8{bottom:573.786667pt;}
.yc3{bottom:573.853333pt;}
.ye9{bottom:575.933333pt;}
.y12c{bottom:578.013333pt;}
.y63{bottom:579.133333pt;}
.y72{bottom:579.680000pt;}
.y14d{bottom:581.533333pt;}
.y10e{bottom:582.493333pt;}
.y160{bottom:583.133333pt;}
.y96{bottom:584.413333pt;}
.y3a{bottom:589.693333pt;}
.yc2{bottom:589.853333pt;}
.ye8{bottom:591.293333pt;}
.y7{bottom:592.685334pt;}
.y12a{bottom:594.013333pt;}
.yb7{bottom:595.133333pt;}
.y14c{bottom:597.533333pt;}
.y10d{bottom:598.493333pt;}
.y15f{bottom:599.133333pt;}
.y95{bottom:600.413333pt;}
.y39{bottom:605.693333pt;}
.yc1{bottom:605.853333pt;}
.ye7{bottom:606.653333pt;}
.yb6{bottom:611.133333pt;}
.y14b{bottom:613.533333pt;}
.y10c{bottom:614.493333pt;}
.y15e{bottom:615.133333pt;}
.y94{bottom:616.413333pt;}
.y38{bottom:621.693333pt;}
.yc0{bottom:621.853333pt;}
.ye6{bottom:622.173333pt;}
.yb5{bottom:627.133333pt;}
.y15d{bottom:631.133333pt;}
.y93{bottom:632.413333pt;}
.y129{bottom:633.533333pt;}
.y14a{bottom:634.813333pt;}
.y10a{bottom:635.933333pt;}
.y37{bottom:637.693333pt;}
.ybf{bottom:637.853333pt;}
.yb4{bottom:643.133333pt;}
.ye5{bottom:643.293333pt;}
.y6{bottom:645.598667pt;}
.y92{bottom:648.413333pt;}
.y149{bottom:650.813333pt;}
.y15c{bottom:652.413333pt;}
.ybe{bottom:653.853333pt;}
.y128{bottom:654.493333pt;}
.y36{bottom:659.133333pt;}
.ye4{bottom:659.293333pt;}
.y108{bottom:667.133333pt;}
.y3{bottom:668.977329pt;}
.y91{bottom:669.853333pt;}
.y127{bottom:670.493333pt;}
.y148{bottom:672.253333pt;}
.y15b{bottom:673.853333pt;}
.y35{bottom:674.813333pt;}
.yb3{bottom:675.133333pt;}
.ye3{bottom:675.293333pt;}
.y17c{bottom:680.413333pt;}
.y90{bottom:685.853333pt;}
.y126{bottom:686.493333pt;}
.y32{bottom:687.133333pt;}
.yb2{bottom:691.133333pt;}
.y15a{bottom:691.933333pt;}
.y147{bottom:693.533333pt;}
.y16a{bottom:694.026667pt;}
.y17b{bottom:696.413333pt;}
.ye2{bottom:696.573333pt;}
.y8f{bottom:701.853333pt;}
.y125{bottom:702.493333pt;}
.y2d{bottom:706.813333pt;}
.yb1{bottom:707.133333pt;}
.y146{bottom:709.533333pt;}
.y105{bottom:709.853333pt;}
.y180{bottom:712.413333pt;}
.y8e{bottom:717.853333pt;}
.yde{bottom:718.013333pt;}
.y124{bottom:718.493333pt;}
.yb0{bottom:723.173333pt;}
.y145{bottom:725.573333pt;}
.y17f{bottom:728.453333pt;}
.y8d{bottom:733.893333pt;}
.yaf{bottom:739.173333pt;}
.y123{bottom:739.813333pt;}
.y144{bottom:741.573333pt;}
.y2c{bottom:743.333333pt;}
.y102{bottom:743.973333pt;}
.y8c{bottom:749.893333pt;}
.yae{bottom:755.173333pt;}
.y2b{bottom:758.533333pt;}
.y122{bottom:761.253333pt;}
.y143{bottom:762.213333pt;}
.ydb{bottom:764.773333pt;}
.y8b{bottom:765.893333pt;}
.yad{bottom:771.173333pt;}
.y2a{bottom:773.893333pt;}
.yff{bottom:774.053333pt;}
.y142{bottom:779.493333pt;}
.y2{bottom:781.661334pt;}
.y8a{bottom:781.893333pt;}
.yac{bottom:787.173333pt;}
.y29{bottom:789.253333pt;}
.y121{bottom:792.613333pt;}
.y89{bottom:797.893333pt;}
.yab{bottom:803.173333pt;}
.y28{bottom:804.613333pt;}
.y141{bottom:810.853333pt;}
.yd8{bottom:811.493333pt;}
.y88{bottom:813.893333pt;}
.yaa{bottom:819.173333pt;}
.y27{bottom:821.733333pt;}
.y120{bottom:823.973333pt;}
.y17a{bottom:824.453333pt;}
.y87{bottom:829.893333pt;}
.yfe{bottom:830.853333pt;}
.ya9{bottom:835.173333pt;}
.y179{bottom:840.453333pt;}
.y140{bottom:842.213333pt;}
.y86{bottom:845.893333pt;}
.y26{bottom:846.213333pt;}
.ybd{bottom:851.173333pt;}
.yfd{bottom:851.813333pt;}
.y11f{bottom:855.333333pt;}
.ya8{bottom:856.453333pt;}
.yd3{bottom:858.053333pt;}
.y1{bottom:859.312000pt;}
.y62{bottom:861.893333pt;}
.ybc{bottom:867.173333pt;}
.yfc{bottom:867.813333pt;}
.y25{bottom:870.853333pt;}
.y13f{bottom:873.573333pt;}
.y61{bottom:877.893333pt;}
.ybb{bottom:883.173333pt;}
.y11e{bottom:886.693333pt;}
.yfb{bottom:889.253333pt;}
.y85{bottom:893.893333pt;}
.y60{bottom:899.173333pt;}
.yd0{bottom:907.333333pt;}
.y84{bottom:909.893333pt;}
.yfa{bottom:910.213333pt;}
.y13e{bottom:913.093333pt;}
.y5f{bottom:915.173333pt;}
.y24{bottom:916.933333pt;}
.y173{bottom:925.893333pt;}
.y11d{bottom:926.213333pt;}
.y5e{bottom:931.173333pt;}
.y23{bottom:932.133333pt;}
.y13d{bottom:933.573333pt;}
.y5d{bottom:947.200000pt;}
.y22{bottom:947.520000pt;}
.y13c{bottom:948.160000pt;}
.y52{bottom:995.520000pt;}
.y82{bottom:996.160000pt;}
.h27{height:15.200000pt;}
.h28{height:15.232000pt;}
.h13{height:15.360000pt;}
.h10{height:19.680000pt;}
.h7{height:28.560000pt;}
.h23{height:29.440000pt;}
.h1a{height:30.560000pt;}
.h2e{height:30.592000pt;}
.h26{height:30.720000pt;}
.h24{height:33.472000pt;}
.hd{height:33.632000pt;}
.h20{height:33.901875pt;}
.h21{height:33.918750pt;}
.h15{height:36.398438pt;}
.h18{height:38.413438pt;}
.h6{height:40.800000pt;}
.h2d{height:42.028798pt;}
.h25{height:42.080000pt;}
.hf{height:42.084375pt;}
.h3{height:42.840000pt;}
.he{height:43.215000pt;}
.h32{height:43.782500pt;}
.h31{height:44.522224pt;}
.h11{height:44.596875pt;}
.h1c{height:45.920000pt;}
.h1d{height:46.080000pt;}
.h1e{height:46.112000pt;}
.h1f{height:47.189275pt;}
.h22{height:48.000000pt;}
.h2a{height:48.375000pt;}
.h1b{height:48.640000pt;}
.h2{height:48.960000pt;}
.h29{height:49.597187pt;}
.h17{height:49.621875pt;}
.h2c{height:50.401095pt;}
.h19{height:52.108438pt;}
.h9{height:52.134375pt;}
.h30{height:53.391221pt;}
.ha{height:53.535000pt;}
.h12{height:62.812500pt;}
.h5{height:69.360000pt;}
.hc{height:83.540625pt;}
.hb{height:85.785000pt;}
.h16{height:87.156562pt;}
.h4{height:105.826671pt;}
.h2b{height:249.193858pt;}
.h2f{height:263.973333pt;}
.h14{height:273.600000pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w9{width:20.192000pt;}
.w15{width:56.800000pt;}
.wc{width:61.920000pt;}
.w10{width:63.680000pt;}
.w11{width:63.840000pt;}
.wf{width:68.672000pt;}
.w13{width:70.720000pt;}
.w20{width:71.392000pt;}
.w12{width:73.152000pt;}
.we{width:73.312000pt;}
.w1c{width:76.992000pt;}
.w1f{width:77.280000pt;}
.wb{width:82.912000pt;}
.w1e{width:83.392000pt;}
.w17{width:85.952000pt;}
.w24{width:89.312000pt;}
.w1d{width:89.440000pt;}
.w23{width:95.232000pt;}
.w19{width:96.352000pt;}
.w16{width:97.312000pt;}
.w1a{width:101.760000pt;}
.w22{width:106.912000pt;}
.w5{width:116.192000pt;}
.w6{width:118.400000pt;}
.w8{width:119.712000pt;}
.w14{width:119.872000pt;}
.w18{width:123.520000pt;}
.w7{width:125.792000pt;}
.wd{width:156.986667pt;}
.w1b{width:322.906667pt;}
.w21{width:479.776445pt;}
.w25{width:479.800000pt;}
.wa{width:480.000000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4b{left:4.997879pt;}
.xd{left:7.200000pt;}
.x17{left:8.706667pt;}
.x15{left:11.106667pt;}
.x33{left:13.306667pt;}
.x16{left:14.786667pt;}
.x23{left:16.960000pt;}
.x35{left:18.720000pt;}
.x18{left:19.840000pt;}
.x36{left:21.146667pt;}
.x21{left:22.720000pt;}
.x52{left:25.760000pt;}
.x38{left:28.320000pt;}
.x24{left:30.880000pt;}
.x3d{left:33.600000pt;}
.x41{left:36.480000pt;}
.x20{left:38.400000pt;}
.x3f{left:40.480000pt;}
.x37{left:42.880000pt;}
.x43{left:46.720000pt;}
.x40{left:48.320000pt;}
.x42{left:51.680000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x3e{left:98.080000pt;}
.x19{left:158.146667pt;}
.x53{left:160.469316pt;}
.x4{left:180.874667pt;}
.x4c{left:186.897915pt;}
.x5{left:192.026655pt;}
.x4a{left:194.000000pt;}
.x6{left:211.706655pt;}
.xa{left:214.106655pt;}
.x1a{left:218.653333pt;}
.x29{left:226.106667pt;}
.x44{left:231.546667pt;}
.x7{left:234.586655pt;}
.x25{left:240.026655pt;}
.x1d{left:243.546667pt;}
.x4e{left:246.586667pt;}
.x30{left:251.066667pt;}
.x4d{left:258.266655pt;}
.x14{left:264.386655pt;}
.x3a{left:270.626667pt;}
.x28{left:276.706655pt;}
.x1b{left:278.146655pt;}
.x26{left:285.506655pt;}
.x49{left:289.826655pt;}
.x27{left:292.866655pt;}
.x2a{left:295.426667pt;}
.x11{left:306.946655pt;}
.xc{left:308.226667pt;}
.x2f{left:309.506655pt;}
.x1c{left:317.026655pt;}
.x1e{left:327.106667pt;}
.x39{left:328.546655pt;}
.xb{left:348.066655pt;}
.x4f{left:354.306667pt;}
.x2b{left:359.746667pt;}
.x9{left:369.826655pt;}
.x31{left:371.586667pt;}
.x54{left:387.266655pt;}
.x1f{left:389.666667pt;}
.x3b{left:394.786667pt;}
.x45{left:399.266667pt;}
.x3{left:404.408000pt;}
.x10{left:412.706655pt;}
.x12{left:421.986667pt;}
.x2c{left:424.226667pt;}
.xe{left:426.626667pt;}
.x32{left:429.026667pt;}
.x8{left:432.093321pt;}
.x50{left:450.333333pt;}
.x46{left:483.293333pt;}
.x3c{left:491.773333pt;}
.x2d{left:498.013333pt;}
.x34{left:527.133333pt;}
.x51{left:528.253333pt;}
.x22{left:547.293333pt;}
.xf{left:552.413333pt;}
.x47{left:561.213333pt;}
.x2e{left:569.373333pt;}
.x13{left:672.133321pt;}
.x48{left:676.133321pt;}
}




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