
    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_48d1804df1f5e32e9fded56a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_41e0b44c3bbf016c43a78e11.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_eac7028027c107fd4ed83417.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_31180adb5c7c5f1ed4984b6a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_202efb076c046a2cf7ea1edc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.886230;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_8ade06b67a1a8d4529d29666.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912109;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_6b21dea594157658892c0080.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9249fcf90a2beb4169bcd127.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.674072;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_490d2c26de8cd58fda2b8c1a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.674072;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_ba744b9d475e29dfce60d473.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_08fe305a30438f59884a68c9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.853027;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_468e994b7d0f46506960fc93.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.773926;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:-69.300000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls1a{letter-spacing:-0.942000px;}
.lsf{letter-spacing:-0.774000px;}
.ls1f{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.460200px;}
.ls2e{letter-spacing:-0.450600px;}
.ls6{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.223800px;}
.ls1b{letter-spacing:-0.181200px;}
.ls26{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.033840px;}
.ls4{letter-spacing:0.051840px;}
.ls20{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.136080px;}
.ls25{letter-spacing:0.144720px;}
.ls1{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.206400px;}
.ls24{letter-spacing:0.206640px;}
.ls12{letter-spacing:0.256080px;}
.ls7{letter-spacing:0.259800px;}
.ls1d{letter-spacing:0.259920px;}
.ls22{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:1.491840px;}
.ls2d{letter-spacing:1.620000px;}
.lsa{letter-spacing:3.651840px;}
.ls16{letter-spacing:3.780000px;}
.ls9{letter-spacing:4.371840px;}
.ls29{letter-spacing:4.680000px;}
.ls2b{letter-spacing:5.400000px;}
.lsc{letter-spacing:6.531840px;}
.ls21{letter-spacing:6.660000px;}
.ls23{letter-spacing:10.260000px;}
.ls1e{letter-spacing:15.891840px;}
.lsb{letter-spacing:16.611840px;}
.ls17{letter-spacing:39.780000px;}
.ls18{letter-spacing:41.940000px;}
.ls2c{letter-spacing:55.620000px;}
.ls28{letter-spacing:57.780000px;}
.ls2a{letter-spacing:58.500000px;}
.ls3{letter-spacing:66.162720px;}
.ls13{letter-spacing:352.236000px;}
.ls14{letter-spacing:443.676000px;}
.ls15{letter-spacing:682.176000px;}
.ls10{letter-spacing:777.216000px;}
.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;}
}
.ws18{word-spacing:-59.760000px;}
.ws11{word-spacing:-48.240000px;}
.ws3{word-spacing:-38.880000px;}
.ws1{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.199800px;}
.ws17{word-spacing:-15.146400px;}
.ws8{word-spacing:-15.046800px;}
.ws16{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws15{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.479800px;}
.wsc{word-spacing:-14.166000px;}
.ws7{word-spacing:-13.860000px;}
.ws1a{word-spacing:-13.500000px;}
.wsf{word-spacing:-12.420000px;}
.ws10{word-spacing:-12.060000px;}
.ws14{word-spacing:-11.878800px;}
.wse{word-spacing:-11.836200px;}
.ws12{word-spacing:-11.700000px;}
.ws19{word-spacing:-11.609400px;}
.ws13{word-spacing:-11.118000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.000000px;}
.ws4{word-spacing:-7.560000px;}
.ws9{word-spacing:0.000000px;}
._1e{margin-left:-21.859920px;}
._1b{margin-left:-7.020000px;}
._e{margin-left:-3.676320px;}
._d{margin-left:-2.484000px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._7{width:3.688320px;}
._6{width:4.860000px;}
._9{width:6.525360px;}
._4{width:7.560000px;}
._8{width:8.964000px;}
._c{width:10.069680px;}
._b{width:11.178000px;}
._a{width:12.204000px;}
._15{width:13.625280px;}
._5{width:15.066000px;}
._19{width:16.852320px;}
._1a{width:18.406080px;}
._22{width:20.437920px;}
._16{width:21.573360px;}
._17{width:22.589280px;}
._12{width:23.886000px;}
._10{width:24.894000px;}
._f{width:26.460000px;}
._11{width:27.936000px;}
._18{width:29.581200px;}
._24{width:33.506640px;}
._25{width:36.793440px;}
._26{width:39.668160px;}
._1f{width:41.940000px;}
._23{width:50.119920px;}
._28{width:56.105280px;}
._27{width:58.357680px;}
._21{width:93.169200px;}
._20{width:111.913200px;}
._13{width:509.086560px;}
._1c{width:736.380000px;}
._14{width:865.686720px;}
._1d{width:1073.100000px;}
._3{width:1101.912000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:74.880000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yfe{bottom:2.514000px;}
.yc3{bottom:2.520000px;}
.yc9{bottom:2.700000px;}
.ydd{bottom:2.730000px;}
.y31{bottom:2.880000px;}
.yde{bottom:2.910000px;}
.y16f{bottom:3.060000px;}
.y12{bottom:3.240000px;}
.y102{bottom:3.780000px;}
.y39{bottom:9.000000px;}
.yf6{bottom:9.720000px;}
.y3f{bottom:12.240000px;}
.yec{bottom:16.920000px;}
.y30{bottom:18.540000px;}
.y17{bottom:20.340000px;}
.y10a{bottom:20.520000px;}
.y3e{bottom:29.520000px;}
.yc1{bottom:30.060000px;}
.ycd{bottom:30.240000px;}
.ye1{bottom:31.680000px;}
.y2f{bottom:34.020000px;}
.y16{bottom:37.620000px;}
.y109{bottom:37.800000px;}
.y3d{bottom:46.800000px;}
.y2e{bottom:49.500000px;}
.y15{bottom:54.900000px;}
.y108{bottom:55.080000px;}
.y3c{bottom:64.080000px;}
.y2d{bottom:64.980000px;}
.y38{bottom:65.880000px;}
.y107{bottom:72.360000px;}
.y2c{bottom:80.640000px;}
.y14{bottom:81.180000px;}
.y5{bottom:88.200000px;}
.y3b{bottom:90.405000px;}
.y16d{bottom:92.700000px;}
.y179{bottom:92.874000px;}
.y2b{bottom:96.120000px;}
.y178{bottom:108.354000px;}
.y16c{bottom:108.360000px;}
.y173{bottom:108.405000px;}
.y2a{bottom:111.600000px;}
.y144{bottom:112.140000px;}
.y177{bottom:123.834000px;}
.y16b{bottom:123.840000px;}
.y172{bottom:124.065000px;}
.y4a{bottom:124.200000px;}
.y143{bottom:126.000000px;}
.y29{bottom:127.110000px;}
.ybe{bottom:128.160000px;}
.y82{bottom:128.880000px;}
.yff{bottom:134.640000px;}
.y17a{bottom:136.296000px;}
.y176{bottom:139.314000px;}
.y16a{bottom:139.320000px;}
.y171{bottom:139.545000px;}
.y142{bottom:139.716000px;}
.y49{bottom:141.516000px;}
.y28{bottom:142.770000px;}
.ybd{bottom:145.476000px;}
.y81{bottom:146.196000px;}
.y175{bottom:148.896000px;}
.yfd{bottom:149.436000px;}
.y141{bottom:153.570000px;}
.y27{bottom:158.250000px;}
.y48{bottom:158.790000px;}
.ybc{bottom:162.750000px;}
.yfc{bottom:163.290000px;}
.y80{bottom:163.470000px;}
.y140{bottom:167.430000px;}
.y26{bottom:173.730000px;}
.y47{bottom:175.890000px;}
.yfb{bottom:177.150000px;}
.ybb{bottom:179.850000px;}
.y7f{bottom:180.750000px;}
.y13f{bottom:181.110000px;}
.y25{bottom:189.210000px;}
.yfa{bottom:190.830000px;}
.y46{bottom:193.170000px;}
.y13e{bottom:194.970000px;}
.yba{bottom:197.130000px;}
.y7e{bottom:197.850000px;}
.yf9{bottom:204.690000px;}
.y24{bottom:204.870000px;}
.y13d{bottom:208.830000px;}
.y45{bottom:210.450000px;}
.yb9{bottom:214.410000px;}
.y7d{bottom:215.130000px;}
.yf8{bottom:218.550000px;}
.y23{bottom:220.350000px;}
.y13c{bottom:222.510000px;}
.y44{bottom:227.730000px;}
.y37{bottom:230.970000px;}
.yb8{bottom:231.690000px;}
.y7c{bottom:232.410000px;}
.yf5{bottom:233.130000px;}
.y22{bottom:235.830000px;}
.y13b{bottom:236.370000px;}
.y43{bottom:245.010000px;}
.yf7{bottom:247.530000px;}
.y36{bottom:248.250000px;}
.yb7{bottom:248.970000px;}
.y7b{bottom:249.690000px;}
.y13a{bottom:250.230000px;}
.y21{bottom:251.310000px;}
.y42{bottom:262.110000px;}
.y139{bottom:263.910000px;}
.yf4{bottom:265.350000px;}
.y35{bottom:265.530000px;}
.yb6{bottom:266.250000px;}
.y20{bottom:266.970000px;}
.y138{bottom:277.770000px;}
.y41{bottom:279.390000px;}
.y1f{bottom:282.450000px;}
.y34{bottom:282.810000px;}
.yb5{bottom:283.350000px;}
.y7a{bottom:284.250000px;}
.y137{bottom:291.630000px;}
.y40{bottom:296.670000px;}
.y1e{bottom:297.930000px;}
.yf3{bottom:299.910000px;}
.y33{bottom:300.090000px;}
.yb4{bottom:300.630000px;}
.y79{bottom:301.350000px;}
.y174{bottom:301.890000px;}
.y136{bottom:305.310000px;}
.y3a{bottom:312.870000px;}
.y1d{bottom:313.410000px;}
.yf2{bottom:317.190000px;}
.y170{bottom:317.370000px;}
.yb3{bottom:317.910000px;}
.y78{bottom:318.630000px;}
.y135{bottom:319.170000px;}
.y32{bottom:326.190000px;}
.y1c{bottom:328.890000px;}
.yf1{bottom:331.950000px;}
.y134{bottom:333.030000px;}
.yb2{bottom:335.190000px;}
.y77{bottom:335.910000px;}
.y1b{bottom:344.550000px;}
.yf0{bottom:345.630000px;}
.y133{bottom:346.710000px;}
.yb1{bottom:352.470000px;}
.y76{bottom:353.190000px;}
.yef{bottom:359.490000px;}
.y132{bottom:360.570000px;}
.yb0{bottom:369.750000px;}
.ybf{bottom:370.470000px;}
.yee{bottom:373.350000px;}
.y131{bottom:374.430000px;}
.yaf{bottom:386.850000px;}
.y75{bottom:387.795000px;}
.yeb{bottom:387.975000px;}
.y130{bottom:388.155000px;}
.y12f{bottom:402.015000px;}
.yed{bottom:402.375000px;}
.yae{bottom:404.175000px;}
.y74{bottom:404.895000px;}
.y12e{bottom:415.875000px;}
.yea{bottom:420.195000px;}
.yad{bottom:421.455000px;}
.y73{bottom:422.175000px;}
.y18{bottom:427.035000px;}
.y12d{bottom:429.555000px;}
.y19{bottom:431.310000px;}
.yac{bottom:438.735000px;}
.y72{bottom:439.455000px;}
.y12c{bottom:443.415000px;}
.ye9{bottom:454.755000px;}
.yab{bottom:456.015000px;}
.y71{bottom:456.735000px;}
.y12b{bottom:457.275000px;}
.y16e{bottom:470.415000px;}
.y12a{bottom:470.955000px;}
.ye8{bottom:472.035000px;}
.yaa{bottom:473.115000px;}
.y70{bottom:474.015000px;}
.y129{bottom:484.815000px;}
.y169{bottom:486.075000px;}
.ye7{bottom:486.795000px;}
.ya9{bottom:490.395000px;}
.y6f{bottom:491.115000px;}
.y128{bottom:498.495000px;}
.ye6{bottom:500.835000px;}
.ya8{bottom:507.675000px;}
.y6e{bottom:508.395000px;}
.y127{bottom:512.355000px;}
.ye5{bottom:514.515000px;}
.y1a{bottom:515.235000px;}
.ya7{bottom:524.955000px;}
.y6d{bottom:525.675000px;}
.y126{bottom:526.215000px;}
.ye4{bottom:528.375000px;}
.y125{bottom:539.895000px;}
.ya6{bottom:542.235000px;}
.y6c{bottom:542.955000px;}
.y124{bottom:553.755000px;}
.ye3{bottom:557.535000px;}
.ya5{bottom:559.515000px;}
.y6b{bottom:560.235000px;}
.y123{bottom:567.615000px;}
.ye2{bottom:572.115000px;}
.ya4{bottom:576.615000px;}
.y6a{bottom:577.515000px;}
.y122{bottom:581.295000px;}
.ya3{bottom:593.895000px;}
.y69{bottom:594.615000px;}
.y121{bottom:595.155000px;}
.ye0{bottom:607.035000px;}
.y120{bottom:609.015000px;}
.ya2{bottom:611.175000px;}
.y68{bottom:611.895000px;}
.y11f{bottom:622.695000px;}
.ydf{bottom:624.315000px;}
.ya1{bottom:628.455000px;}
.y67{bottom:629.175000px;}
.y11e{bottom:636.555000px;}
.ydc{bottom:639.075000px;}
.y168{bottom:641.625000px;}
.ya0{bottom:645.765000px;}
.y66{bottom:646.485000px;}
.y11d{bottom:651.165000px;}
.ydb{bottom:653.145000px;}
.y167{bottom:656.025000px;}
.y9f{bottom:663.045000px;}
.y65{bottom:663.765000px;}
.yda{bottom:667.005000px;}
.y11c{bottom:667.725000px;}
.y166{bottom:672.945000px;}
.y9e{bottom:680.145000px;}
.yd9{bottom:680.865000px;}
.y64{bottom:681.045000px;}
.y11b{bottom:682.125000px;}
.y165{bottom:688.605000px;}
.yd6{bottom:695.265000px;}
.y9d{bottom:697.425000px;}
.y63{bottom:698.145000px;}
.y11a{bottom:699.405000px;}
.y164{bottom:703.725000px;}
.yd8{bottom:709.125000px;}
.y9c{bottom:714.705000px;}
.y62{bottom:715.425000px;}
.y119{bottom:716.685000px;}
.y163{bottom:717.405000px;}
.yd7{bottom:722.985000px;}
.y162{bottom:731.265000px;}
.y9b{bottom:731.985000px;}
.y61{bottom:732.705000px;}
.y118{bottom:733.965000px;}
.y161{bottom:745.125000px;}
.y9a{bottom:749.265000px;}
.y60{bottom:749.985000px;}
.y117{bottom:751.245000px;}
.yd5{bottom:757.905000px;}
.y160{bottom:758.805000px;}
.y99{bottom:766.545000px;}
.y5f{bottom:767.265000px;}
.y116{bottom:768.345000px;}
.y15f{bottom:772.665000px;}
.yd4{bottom:775.185000px;}
.y13{bottom:777.165000px;}
.y98{bottom:783.645000px;}
.y5e{bottom:784.545000px;}
.y115{bottom:785.625000px;}
.y15e{bottom:786.525000px;}
.yd3{bottom:789.945000px;}
.y15d{bottom:800.205000px;}
.y97{bottom:800.925000px;}
.y5d{bottom:801.645000px;}
.y114{bottom:802.905000px;}
.yd2{bottom:803.985000px;}
.y15c{bottom:814.065000px;}
.yd1{bottom:817.845000px;}
.y96{bottom:818.205000px;}
.y5c{bottom:818.925000px;}
.y113{bottom:820.185000px;}
.y15b{bottom:827.745000px;}
.yd0{bottom:831.705000px;}
.y95{bottom:835.485000px;}
.y5b{bottom:836.205000px;}
.y112{bottom:837.465000px;}
.y15a{bottom:841.605000px;}
.ycc{bottom:846.105000px;}
.y94{bottom:852.765000px;}
.y5a{bottom:853.485000px;}
.y111{bottom:854.565000px;}
.y159{bottom:855.465000px;}
.ycf{bottom:859.965000px;}
.y158{bottom:869.145000px;}
.y93{bottom:869.865000px;}
.y59{bottom:870.765000px;}
.y110{bottom:871.845000px;}
.yce{bottom:873.825000px;}
.y11{bottom:882.105000px;}
.y157{bottom:883.005000px;}
.y92{bottom:887.145000px;}
.y58{bottom:887.865000px;}
.y10f{bottom:889.125000px;}
.y156{bottom:896.910000px;}
.y91{bottom:904.470000px;}
.y57{bottom:905.190000px;}
.y10e{bottom:906.450000px;}
.ycb{bottom:908.790000px;}
.y155{bottom:910.590000px;}
.y10{bottom:913.830000px;}
.y90{bottom:921.750000px;}
.y56{bottom:922.470000px;}
.y10d{bottom:923.730000px;}
.y154{bottom:924.450000px;}
.yca{bottom:926.070000px;}
.yf{bottom:931.110000px;}
.y153{bottom:938.310000px;}
.y8f{bottom:939.030000px;}
.y55{bottom:939.750000px;}
.yc8{bottom:940.830000px;}
.y10c{bottom:941.010000px;}
.y152{bottom:951.990000px;}
.ye{bottom:952.530000px;}
.yc7{bottom:954.870000px;}
.y8e{bottom:956.310000px;}
.y54{bottom:957.030000px;}
.y10b{bottom:958.110000px;}
.y151{bottom:965.850000px;}
.yd{bottom:967.650000px;}
.yc6{bottom:968.730000px;}
.y106{bottom:972.150000px;}
.y8d{bottom:973.410000px;}
.y53{bottom:974.310000px;}
.yc{bottom:977.010000px;}
.y150{bottom:979.710000px;}
.yc5{bottom:982.590000px;}
.y8c{bottom:990.690000px;}
.y52{bottom:991.410000px;}
.y14f{bottom:993.390000px;}
.yb{bottom:995.190000px;}
.yc0{bottom:997.170000px;}
.ya{bottom:1005.270000px;}
.y14e{bottom:1007.250000px;}
.y8b{bottom:1007.970000px;}
.y51{bottom:1008.690000px;}
.yc4{bottom:1010.850000px;}
.y14d{bottom:1021.110000px;}
.y9{bottom:1022.550000px;}
.yc2{bottom:1024.710000px;}
.y8a{bottom:1025.250000px;}
.y50{bottom:1025.970000px;}
.y14c{bottom:1034.790000px;}
.y8{bottom:1039.830000px;}
.y89{bottom:1042.530000px;}
.y4f{bottom:1043.250000px;}
.y14b{bottom:1048.650000px;}
.y7{bottom:1059.090000px;}
.y88{bottom:1059.810000px;}
.y4e{bottom:1060.530000px;}
.y105{bottom:1060.890000px;}
.y14a{bottom:1062.510000px;}
.y104{bottom:1072.950000px;}
.y149{bottom:1076.190000px;}
.y87{bottom:1076.910000px;}
.y4d{bottom:1077.810000px;}
.y6{bottom:1086.630000px;}
.y148{bottom:1090.050000px;}
.y103{bottom:1090.230000px;}
.y86{bottom:1094.190000px;}
.y4c{bottom:1094.910000px;}
.y147{bottom:1103.910000px;}
.y101{bottom:1107.510000px;}
.y85{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y146{bottom:1117.590000px;}
.y100{bottom:1125.510000px;}
.y84{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y145{bottom:1131.450000px;}
.y2{bottom:1146.780000px;}
.y4b{bottom:1160.640000px;}
.y83{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h19{height:13.680000px;}
.h1f{height:13.680150px;}
.h17{height:13.860000px;}
.h1e{height:13.860150px;}
.h1a{height:14.040000px;}
.h1b{height:14.076000px;}
.h26{height:15.480000px;}
.h24{height:15.660000px;}
.h15{height:17.100000px;}
.h14{height:17.280000px;}
.h9{height:26.316000px;}
.h1d{height:28.260000px;}
.h8{height:29.344922px;}
.h6{height:29.678906px;}
.h16{height:41.400000px;}
.h1c{height:42.840000px;}
.h7{height:47.344922px;}
.h21{height:48.616875px;}
.h18{height:49.583118px;}
.h11{height:52.971680px;}
.he{height:52.998047px;}
.h23{height:54.421875px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h2{height:60.226875px;}
.h13{height:62.211094px;}
.ha{height:70.664062px;}
.h20{height:86.220000px;}
.h10{height:87.480000px;}
.h5{height:96.508125px;}
.hb{height:104.220000px;}
.h12{height:113.436000px;}
.h22{height:153.000000px;}
.h25{height:153.030000px;}
.hf{height:349.230000px;}
.hd{height:366.150000px;}
.hc{height:454.350000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.060000px;}
.w21{width:28.296000px;}
.w7{width:29.880000px;}
.w8{width:30.060000px;}
.w34{width:34.920000px;}
.w2f{width:35.100000px;}
.w30{width:35.640000px;}
.w31{width:36.000000px;}
.w35{width:36.036000px;}
.w36{width:36.180000px;}
.w33{width:36.216000px;}
.w37{width:36.360000px;}
.w32{width:36.540000px;}
.wf{width:38.340000px;}
.w12{width:40.680000px;}
.w1b{width:43.020000px;}
.w19{width:43.200000px;}
.w1d{width:47.196000px;}
.w2b{width:47.376000px;}
.w24{width:52.200000px;}
.w26{width:56.340000px;}
.w10{width:58.860000px;}
.w11{width:58.896000px;}
.w1e{width:62.100000px;}
.w13{width:62.496000px;}
.w1a{width:66.060000px;}
.w1c{width:66.276000px;}
.w22{width:67.860000px;}
.w2d{width:80.100000px;}
.w23{width:80.280000px;}
.w2c{width:80.316000px;}
.w27{width:88.560000px;}
.w9{width:91.116000px;}
.wc{width:97.200000px;}
.wd{width:97.236000px;}
.we{width:103.176000px;}
.w18{width:109.080000px;}
.w16{width:109.260000px;}
.w17{width:109.296000px;}
.w3b{width:127.440000px;}
.w25{width:145.836000px;}
.w28{width:146.016000px;}
.w2a{width:147.960000px;}
.w29{width:148.176000px;}
.w2e{width:160.410000px;}
.wa{width:194.430000px;}
.w3a{width:198.570000px;}
.wb{width:200.370000px;}
.w3{width:209.190000px;}
.w38{width:214.770000px;}
.w15{width:218.370000px;}
.w14{width:218.550000px;}
.w39{width:244.290000px;}
.w20{width:275.835000px;}
.w1f{width:290.730000px;}
.w5{width:433.155000px;}
.w3c{width:531.645000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.100000px;}
.x43{left:9.180000px;}
.xd{left:10.620000px;}
.x4e{left:12.060000px;}
.x27{left:13.140000px;}
.x28{left:14.220000px;}
.x1e{left:16.200000px;}
.x23{left:17.280000px;}
.x30{left:18.540000px;}
.x38{left:19.620000px;}
.x26{left:20.745000px;}
.x36{left:22.500000px;}
.x20{left:24.300000px;}
.x25{left:26.145000px;}
.x32{left:27.900000px;}
.x16{left:31.860000px;}
.x4c{left:33.840000px;}
.x1b{left:35.820000px;}
.x1d{left:38.880000px;}
.x2d{left:40.500000px;}
.x18{left:42.660000px;}
.x2b{left:54.360000px;}
.x5d{left:63.714000px;}
.x3c{left:90.030000px;}
.xf{left:106.560000px;}
.x5a{left:117.036000px;}
.x5b{left:118.974000px;}
.xa{left:125.496000px;}
.x1{left:127.655987px;}
.x6{left:135.035987px;}
.x8{left:147.815987px;}
.x2{left:154.829987px;}
.x14{left:157.349987px;}
.x3a{left:173.910000px;}
.x11{left:181.649987px;}
.x45{left:186.330000px;}
.x12{left:191.729987px;}
.x29{left:193.170000px;}
.x15{left:214.230000px;}
.x5{left:231.689987px;}
.x5c{left:244.470000px;}
.x9{left:272.009987px;}
.x2a{left:284.295000px;}
.x4d{left:288.075000px;}
.x44{left:291.494987px;}
.x17{left:305.355000px;}
.x41{left:319.755000px;}
.x4f{left:323.175000px;}
.x31{left:327.495000px;}
.x46{left:332.355000px;}
.xc{left:334.695000px;}
.x1f{left:343.695000px;}
.xe{left:355.755000px;}
.x39{left:358.274987px;}
.x42{left:376.095000px;}
.x3{left:388.874987px;}
.x2e{left:393.555000px;}
.x50{left:394.815000px;}
.x4a{left:400.215000px;}
.x1a{left:402.555000px;}
.x7{left:406.514987px;}
.x10{left:425.055000px;}
.x51{left:431.355000px;}
.x33{left:436.575000px;}
.x21{left:440.895000px;}
.x4{left:457.274987px;}
.x3b{left:464.655000px;}
.x52{left:467.565000px;}
.x47{left:480.525000px;}
.x3d{left:492.945000px;}
.x19{left:499.785000px;}
.x2c{left:502.845000px;}
.x22{left:538.125000px;}
.x34{left:545.865000px;}
.x4b{left:548.385000px;}
.x3e{left:560.805000px;}
.x53{left:573.045000px;}
.x59{left:587.445000px;}
.x1c{left:596.985000px;}
.x54{left:608.145000px;}
.x2f{left:611.925000px;}
.x48{left:628.485000px;}
.x24{left:637.665000px;}
.x3f{left:641.085000px;}
.x55{left:643.065000px;}
.x37{left:654.945000px;}
.x35{left:659.130000px;}
.x49{left:675.870000px;}
.x56{left:679.110000px;}
.x40{left:688.290000px;}
.x57{left:715.290000px;}
.x58{left:750.390000px;}
.x13{left:756.870000px;}
@media print{
.v3{vertical-align:-61.600000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls1a{letter-spacing:-0.837333pt;}
.lsf{letter-spacing:-0.688000pt;}
.ls1f{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.409067pt;}
.ls2e{letter-spacing:-0.400533pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.198933pt;}
.ls1b{letter-spacing:-0.161067pt;}
.ls26{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.030080pt;}
.ls4{letter-spacing:0.046080pt;}
.ls20{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.120960pt;}
.ls25{letter-spacing:0.128640pt;}
.ls1{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.183467pt;}
.ls24{letter-spacing:0.183680pt;}
.ls12{letter-spacing:0.227627pt;}
.ls7{letter-spacing:0.230933pt;}
.ls1d{letter-spacing:0.231040pt;}
.ls22{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:1.326080pt;}
.ls2d{letter-spacing:1.440000pt;}
.lsa{letter-spacing:3.246080pt;}
.ls16{letter-spacing:3.360000pt;}
.ls9{letter-spacing:3.886080pt;}
.ls29{letter-spacing:4.160000pt;}
.ls2b{letter-spacing:4.800000pt;}
.lsc{letter-spacing:5.806080pt;}
.ls21{letter-spacing:5.920000pt;}
.ls23{letter-spacing:9.120000pt;}
.ls1e{letter-spacing:14.126080pt;}
.lsb{letter-spacing:14.766080pt;}
.ls17{letter-spacing:35.360000pt;}
.ls18{letter-spacing:37.280000pt;}
.ls2c{letter-spacing:49.440000pt;}
.ls28{letter-spacing:51.360000pt;}
.ls2a{letter-spacing:52.000000pt;}
.ls3{letter-spacing:58.811307pt;}
.ls13{letter-spacing:313.098667pt;}
.ls14{letter-spacing:394.378667pt;}
.ls15{letter-spacing:606.378667pt;}
.ls10{letter-spacing:690.858667pt;}
.ws18{word-spacing:-53.120000pt;}
.ws11{word-spacing:-42.880000pt;}
.ws3{word-spacing:-34.560000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.510933pt;}
.ws17{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.374933pt;}
.ws16{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws15{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.870933pt;}
.wsc{word-spacing:-12.592000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws1a{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.040000pt;}
.ws10{word-spacing:-10.720000pt;}
.ws14{word-spacing:-10.558933pt;}
.wse{word-spacing:-10.521067pt;}
.ws12{word-spacing:-10.400000pt;}
.ws19{word-spacing:-10.319467pt;}
.ws13{word-spacing:-9.882667pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws4{word-spacing:-6.720000pt;}
.ws9{word-spacing:0.000000pt;}
._1e{margin-left:-19.431040pt;}
._1b{margin-left:-6.240000pt;}
._e{margin-left:-3.267840pt;}
._d{margin-left:-2.208000pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._7{width:3.278507pt;}
._6{width:4.320000pt;}
._9{width:5.800320pt;}
._4{width:6.720000pt;}
._8{width:7.968000pt;}
._c{width:8.950827pt;}
._b{width:9.936000pt;}
._a{width:10.848000pt;}
._15{width:12.111360pt;}
._5{width:13.392000pt;}
._19{width:14.979840pt;}
._1a{width:16.360960pt;}
._22{width:18.167040pt;}
._16{width:19.176320pt;}
._17{width:20.079360pt;}
._12{width:21.232000pt;}
._10{width:22.128000pt;}
._f{width:23.520000pt;}
._11{width:24.832000pt;}
._18{width:26.294400pt;}
._24{width:29.783680pt;}
._25{width:32.705280pt;}
._26{width:35.260587pt;}
._1f{width:37.280000pt;}
._23{width:44.551040pt;}
._28{width:49.871360pt;}
._27{width:51.873493pt;}
._21{width:82.817067pt;}
._20{width:99.478400pt;}
._13{width:452.521387pt;}
._1c{width:654.560000pt;}
._14{width:769.499307pt;}
._1d{width:953.866667pt;}
._3{width:979.477333pt;}
.fs3{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:66.560000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yfe{bottom:2.234667pt;}
.yc3{bottom:2.240000pt;}
.yc9{bottom:2.400000pt;}
.ydd{bottom:2.426667pt;}
.y31{bottom:2.560000pt;}
.yde{bottom:2.586667pt;}
.y16f{bottom:2.720000pt;}
.y12{bottom:2.880000pt;}
.y102{bottom:3.360000pt;}
.y39{bottom:8.000000pt;}
.yf6{bottom:8.640000pt;}
.y3f{bottom:10.880000pt;}
.yec{bottom:15.040000pt;}
.y30{bottom:16.480000pt;}
.y17{bottom:18.080000pt;}
.y10a{bottom:18.240000pt;}
.y3e{bottom:26.240000pt;}
.yc1{bottom:26.720000pt;}
.ycd{bottom:26.880000pt;}
.ye1{bottom:28.160000pt;}
.y2f{bottom:30.240000pt;}
.y16{bottom:33.440000pt;}
.y109{bottom:33.600000pt;}
.y3d{bottom:41.600000pt;}
.y2e{bottom:44.000000pt;}
.y15{bottom:48.800000pt;}
.y108{bottom:48.960000pt;}
.y3c{bottom:56.960000pt;}
.y2d{bottom:57.760000pt;}
.y38{bottom:58.560000pt;}
.y107{bottom:64.320000pt;}
.y2c{bottom:71.680000pt;}
.y14{bottom:72.160000pt;}
.y5{bottom:78.400000pt;}
.y3b{bottom:80.360000pt;}
.y16d{bottom:82.400000pt;}
.y179{bottom:82.554667pt;}
.y2b{bottom:85.440000pt;}
.y178{bottom:96.314667pt;}
.y16c{bottom:96.320000pt;}
.y173{bottom:96.360000pt;}
.y2a{bottom:99.200000pt;}
.y144{bottom:99.680000pt;}
.y177{bottom:110.074667pt;}
.y16b{bottom:110.080000pt;}
.y172{bottom:110.280000pt;}
.y4a{bottom:110.400000pt;}
.y143{bottom:112.000000pt;}
.y29{bottom:112.986667pt;}
.ybe{bottom:113.920000pt;}
.y82{bottom:114.560000pt;}
.yff{bottom:119.680000pt;}
.y17a{bottom:121.152000pt;}
.y176{bottom:123.834667pt;}
.y16a{bottom:123.840000pt;}
.y171{bottom:124.040000pt;}
.y142{bottom:124.192000pt;}
.y49{bottom:125.792000pt;}
.y28{bottom:126.906667pt;}
.ybd{bottom:129.312000pt;}
.y81{bottom:129.952000pt;}
.y175{bottom:132.352000pt;}
.yfd{bottom:132.832000pt;}
.y141{bottom:136.506667pt;}
.y27{bottom:140.666667pt;}
.y48{bottom:141.146667pt;}
.ybc{bottom:144.666667pt;}
.yfc{bottom:145.146667pt;}
.y80{bottom:145.306667pt;}
.y140{bottom:148.826667pt;}
.y26{bottom:154.426667pt;}
.y47{bottom:156.346667pt;}
.yfb{bottom:157.466667pt;}
.ybb{bottom:159.866667pt;}
.y7f{bottom:160.666667pt;}
.y13f{bottom:160.986667pt;}
.y25{bottom:168.186667pt;}
.yfa{bottom:169.626667pt;}
.y46{bottom:171.706667pt;}
.y13e{bottom:173.306667pt;}
.yba{bottom:175.226667pt;}
.y7e{bottom:175.866667pt;}
.yf9{bottom:181.946667pt;}
.y24{bottom:182.106667pt;}
.y13d{bottom:185.626667pt;}
.y45{bottom:187.066667pt;}
.yb9{bottom:190.586667pt;}
.y7d{bottom:191.226667pt;}
.yf8{bottom:194.266667pt;}
.y23{bottom:195.866667pt;}
.y13c{bottom:197.786667pt;}
.y44{bottom:202.426667pt;}
.y37{bottom:205.306667pt;}
.yb8{bottom:205.946667pt;}
.y7c{bottom:206.586667pt;}
.yf5{bottom:207.226667pt;}
.y22{bottom:209.626667pt;}
.y13b{bottom:210.106667pt;}
.y43{bottom:217.786667pt;}
.yf7{bottom:220.026667pt;}
.y36{bottom:220.666667pt;}
.yb7{bottom:221.306667pt;}
.y7b{bottom:221.946667pt;}
.y13a{bottom:222.426667pt;}
.y21{bottom:223.386667pt;}
.y42{bottom:232.986667pt;}
.y139{bottom:234.586667pt;}
.yf4{bottom:235.866667pt;}
.y35{bottom:236.026667pt;}
.yb6{bottom:236.666667pt;}
.y20{bottom:237.306667pt;}
.y138{bottom:246.906667pt;}
.y41{bottom:248.346667pt;}
.y1f{bottom:251.066667pt;}
.y34{bottom:251.386667pt;}
.yb5{bottom:251.866667pt;}
.y7a{bottom:252.666667pt;}
.y137{bottom:259.226667pt;}
.y40{bottom:263.706667pt;}
.y1e{bottom:264.826667pt;}
.yf3{bottom:266.586667pt;}
.y33{bottom:266.746667pt;}
.yb4{bottom:267.226667pt;}
.y79{bottom:267.866667pt;}
.y174{bottom:268.346667pt;}
.y136{bottom:271.386667pt;}
.y3a{bottom:278.106667pt;}
.y1d{bottom:278.586667pt;}
.yf2{bottom:281.946667pt;}
.y170{bottom:282.106667pt;}
.yb3{bottom:282.586667pt;}
.y78{bottom:283.226667pt;}
.y135{bottom:283.706667pt;}
.y32{bottom:289.946667pt;}
.y1c{bottom:292.346667pt;}
.yf1{bottom:295.066667pt;}
.y134{bottom:296.026667pt;}
.yb2{bottom:297.946667pt;}
.y77{bottom:298.586667pt;}
.y1b{bottom:306.266667pt;}
.yf0{bottom:307.226667pt;}
.y133{bottom:308.186667pt;}
.yb1{bottom:313.306667pt;}
.y76{bottom:313.946667pt;}
.yef{bottom:319.546667pt;}
.y132{bottom:320.506667pt;}
.yb0{bottom:328.666667pt;}
.ybf{bottom:329.306667pt;}
.yee{bottom:331.866667pt;}
.y131{bottom:332.826667pt;}
.yaf{bottom:343.866667pt;}
.y75{bottom:344.706667pt;}
.yeb{bottom:344.866667pt;}
.y130{bottom:345.026667pt;}
.y12f{bottom:357.346667pt;}
.yed{bottom:357.666667pt;}
.yae{bottom:359.266667pt;}
.y74{bottom:359.906667pt;}
.y12e{bottom:369.666667pt;}
.yea{bottom:373.506667pt;}
.yad{bottom:374.626667pt;}
.y73{bottom:375.266667pt;}
.y18{bottom:379.586667pt;}
.y12d{bottom:381.826667pt;}
.y19{bottom:383.386667pt;}
.yac{bottom:389.986667pt;}
.y72{bottom:390.626667pt;}
.y12c{bottom:394.146667pt;}
.ye9{bottom:404.226667pt;}
.yab{bottom:405.346667pt;}
.y71{bottom:405.986667pt;}
.y12b{bottom:406.466667pt;}
.y16e{bottom:418.146667pt;}
.y12a{bottom:418.626667pt;}
.ye8{bottom:419.586667pt;}
.yaa{bottom:420.546667pt;}
.y70{bottom:421.346667pt;}
.y129{bottom:430.946667pt;}
.y169{bottom:432.066667pt;}
.ye7{bottom:432.706667pt;}
.ya9{bottom:435.906667pt;}
.y6f{bottom:436.546667pt;}
.y128{bottom:443.106667pt;}
.ye6{bottom:445.186667pt;}
.ya8{bottom:451.266667pt;}
.y6e{bottom:451.906667pt;}
.y127{bottom:455.426667pt;}
.ye5{bottom:457.346667pt;}
.y1a{bottom:457.986667pt;}
.ya7{bottom:466.626667pt;}
.y6d{bottom:467.266667pt;}
.y126{bottom:467.746667pt;}
.ye4{bottom:469.666667pt;}
.y125{bottom:479.906667pt;}
.ya6{bottom:481.986667pt;}
.y6c{bottom:482.626667pt;}
.y124{bottom:492.226667pt;}
.ye3{bottom:495.586667pt;}
.ya5{bottom:497.346667pt;}
.y6b{bottom:497.986667pt;}
.y123{bottom:504.546667pt;}
.ye2{bottom:508.546667pt;}
.ya4{bottom:512.546667pt;}
.y6a{bottom:513.346667pt;}
.y122{bottom:516.706667pt;}
.ya3{bottom:527.906667pt;}
.y69{bottom:528.546667pt;}
.y121{bottom:529.026667pt;}
.ye0{bottom:539.586667pt;}
.y120{bottom:541.346667pt;}
.ya2{bottom:543.266667pt;}
.y68{bottom:543.906667pt;}
.y11f{bottom:553.506667pt;}
.ydf{bottom:554.946667pt;}
.ya1{bottom:558.626667pt;}
.y67{bottom:559.266667pt;}
.y11e{bottom:565.826667pt;}
.ydc{bottom:568.066667pt;}
.y168{bottom:570.333333pt;}
.ya0{bottom:574.013333pt;}
.y66{bottom:574.653333pt;}
.y11d{bottom:578.813333pt;}
.ydb{bottom:580.573333pt;}
.y167{bottom:583.133333pt;}
.y9f{bottom:589.373333pt;}
.y65{bottom:590.013333pt;}
.yda{bottom:592.893333pt;}
.y11c{bottom:593.533333pt;}
.y166{bottom:598.173333pt;}
.y9e{bottom:604.573333pt;}
.yd9{bottom:605.213333pt;}
.y64{bottom:605.373333pt;}
.y11b{bottom:606.333333pt;}
.y165{bottom:612.093333pt;}
.yd6{bottom:618.013333pt;}
.y9d{bottom:619.933333pt;}
.y63{bottom:620.573333pt;}
.y11a{bottom:621.693333pt;}
.y164{bottom:625.533333pt;}
.yd8{bottom:630.333333pt;}
.y9c{bottom:635.293333pt;}
.y62{bottom:635.933333pt;}
.y119{bottom:637.053333pt;}
.y163{bottom:637.693333pt;}
.yd7{bottom:642.653333pt;}
.y162{bottom:650.013333pt;}
.y9b{bottom:650.653333pt;}
.y61{bottom:651.293333pt;}
.y118{bottom:652.413333pt;}
.y161{bottom:662.333333pt;}
.y9a{bottom:666.013333pt;}
.y60{bottom:666.653333pt;}
.y117{bottom:667.773333pt;}
.yd5{bottom:673.693333pt;}
.y160{bottom:674.493333pt;}
.y99{bottom:681.373333pt;}
.y5f{bottom:682.013333pt;}
.y116{bottom:682.973333pt;}
.y15f{bottom:686.813333pt;}
.yd4{bottom:689.053333pt;}
.y13{bottom:690.813333pt;}
.y98{bottom:696.573333pt;}
.y5e{bottom:697.373333pt;}
.y115{bottom:698.333333pt;}
.y15e{bottom:699.133333pt;}
.yd3{bottom:702.173333pt;}
.y15d{bottom:711.293333pt;}
.y97{bottom:711.933333pt;}
.y5d{bottom:712.573333pt;}
.y114{bottom:713.693333pt;}
.yd2{bottom:714.653333pt;}
.y15c{bottom:723.613333pt;}
.yd1{bottom:726.973333pt;}
.y96{bottom:727.293333pt;}
.y5c{bottom:727.933333pt;}
.y113{bottom:729.053333pt;}
.y15b{bottom:735.773333pt;}
.yd0{bottom:739.293333pt;}
.y95{bottom:742.653333pt;}
.y5b{bottom:743.293333pt;}
.y112{bottom:744.413333pt;}
.y15a{bottom:748.093333pt;}
.ycc{bottom:752.093333pt;}
.y94{bottom:758.013333pt;}
.y5a{bottom:758.653333pt;}
.y111{bottom:759.613333pt;}
.y159{bottom:760.413333pt;}
.ycf{bottom:764.413333pt;}
.y158{bottom:772.573333pt;}
.y93{bottom:773.213333pt;}
.y59{bottom:774.013333pt;}
.y110{bottom:774.973333pt;}
.yce{bottom:776.733333pt;}
.y11{bottom:784.093333pt;}
.y157{bottom:784.893333pt;}
.y92{bottom:788.573333pt;}
.y58{bottom:789.213333pt;}
.y10f{bottom:790.333333pt;}
.y156{bottom:797.253333pt;}
.y91{bottom:803.973333pt;}
.y57{bottom:804.613333pt;}
.y10e{bottom:805.733333pt;}
.ycb{bottom:807.813333pt;}
.y155{bottom:809.413333pt;}
.y10{bottom:812.293333pt;}
.y90{bottom:819.333333pt;}
.y56{bottom:819.973333pt;}
.y10d{bottom:821.093333pt;}
.y154{bottom:821.733333pt;}
.yca{bottom:823.173333pt;}
.yf{bottom:827.653333pt;}
.y153{bottom:834.053333pt;}
.y8f{bottom:834.693333pt;}
.y55{bottom:835.333333pt;}
.yc8{bottom:836.293333pt;}
.y10c{bottom:836.453333pt;}
.y152{bottom:846.213333pt;}
.ye{bottom:846.693333pt;}
.yc7{bottom:848.773333pt;}
.y8e{bottom:850.053333pt;}
.y54{bottom:850.693333pt;}
.y10b{bottom:851.653333pt;}
.y151{bottom:858.533333pt;}
.yd{bottom:860.133333pt;}
.yc6{bottom:861.093333pt;}
.y106{bottom:864.133333pt;}
.y8d{bottom:865.253333pt;}
.y53{bottom:866.053333pt;}
.yc{bottom:868.453333pt;}
.y150{bottom:870.853333pt;}
.yc5{bottom:873.413333pt;}
.y8c{bottom:880.613333pt;}
.y52{bottom:881.253333pt;}
.y14f{bottom:883.013333pt;}
.yb{bottom:884.613333pt;}
.yc0{bottom:886.373333pt;}
.ya{bottom:893.573333pt;}
.y14e{bottom:895.333333pt;}
.y8b{bottom:895.973333pt;}
.y51{bottom:896.613333pt;}
.yc4{bottom:898.533333pt;}
.y14d{bottom:907.653333pt;}
.y9{bottom:908.933333pt;}
.yc2{bottom:910.853333pt;}
.y8a{bottom:911.333333pt;}
.y50{bottom:911.973333pt;}
.y14c{bottom:919.813333pt;}
.y8{bottom:924.293333pt;}
.y89{bottom:926.693333pt;}
.y4f{bottom:927.333333pt;}
.y14b{bottom:932.133333pt;}
.y7{bottom:941.413333pt;}
.y88{bottom:942.053333pt;}
.y4e{bottom:942.693333pt;}
.y105{bottom:943.013333pt;}
.y14a{bottom:944.453333pt;}
.y104{bottom:953.733333pt;}
.y149{bottom:956.613333pt;}
.y87{bottom:957.253333pt;}
.y4d{bottom:958.053333pt;}
.y6{bottom:965.893333pt;}
.y148{bottom:968.933333pt;}
.y103{bottom:969.093333pt;}
.y86{bottom:972.613333pt;}
.y4c{bottom:973.253333pt;}
.y147{bottom:981.253333pt;}
.y101{bottom:984.453333pt;}
.y85{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y146{bottom:993.413333pt;}
.y100{bottom:1000.453333pt;}
.y84{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y145{bottom:1005.733333pt;}
.y2{bottom:1019.360000pt;}
.y4b{bottom:1031.680000pt;}
.y83{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h19{height:12.160000pt;}
.h1f{height:12.160133pt;}
.h17{height:12.320000pt;}
.h1e{height:12.320133pt;}
.h1a{height:12.480000pt;}
.h1b{height:12.512000pt;}
.h26{height:13.760000pt;}
.h24{height:13.920000pt;}
.h15{height:15.200000pt;}
.h14{height:15.360000pt;}
.h9{height:23.392000pt;}
.h1d{height:25.120000pt;}
.h8{height:26.084375pt;}
.h6{height:26.381250pt;}
.h16{height:36.800000pt;}
.h1c{height:38.080000pt;}
.h7{height:42.084375pt;}
.h21{height:43.215000pt;}
.h18{height:44.073883pt;}
.h11{height:47.085938pt;}
.he{height:47.109375pt;}
.h23{height:48.375000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2{height:53.535000pt;}
.h13{height:55.298750pt;}
.ha{height:62.812500pt;}
.h20{height:76.640000pt;}
.h10{height:77.760000pt;}
.h5{height:85.785000pt;}
.hb{height:92.640000pt;}
.h12{height:100.832000pt;}
.h22{height:136.000000pt;}
.h25{height:136.026667pt;}
.hf{height:310.426667pt;}
.hd{height:325.466667pt;}
.hc{height:403.866667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.720000pt;}
.w21{width:25.152000pt;}
.w7{width:26.560000pt;}
.w8{width:26.720000pt;}
.w34{width:31.040000pt;}
.w2f{width:31.200000pt;}
.w30{width:31.680000pt;}
.w31{width:32.000000pt;}
.w35{width:32.032000pt;}
.w36{width:32.160000pt;}
.w33{width:32.192000pt;}
.w37{width:32.320000pt;}
.w32{width:32.480000pt;}
.wf{width:34.080000pt;}
.w12{width:36.160000pt;}
.w1b{width:38.240000pt;}
.w19{width:38.400000pt;}
.w1d{width:41.952000pt;}
.w2b{width:42.112000pt;}
.w24{width:46.400000pt;}
.w26{width:50.080000pt;}
.w10{width:52.320000pt;}
.w11{width:52.352000pt;}
.w1e{width:55.200000pt;}
.w13{width:55.552000pt;}
.w1a{width:58.720000pt;}
.w1c{width:58.912000pt;}
.w22{width:60.320000pt;}
.w2d{width:71.200000pt;}
.w23{width:71.360000pt;}
.w2c{width:71.392000pt;}
.w27{width:78.720000pt;}
.w9{width:80.992000pt;}
.wc{width:86.400000pt;}
.wd{width:86.432000pt;}
.we{width:91.712000pt;}
.w18{width:96.960000pt;}
.w16{width:97.120000pt;}
.w17{width:97.152000pt;}
.w3b{width:113.280000pt;}
.w25{width:129.632000pt;}
.w28{width:129.792000pt;}
.w2a{width:131.520000pt;}
.w29{width:131.712000pt;}
.w2e{width:142.586667pt;}
.wa{width:172.826667pt;}
.w3a{width:176.506667pt;}
.wb{width:178.106667pt;}
.w3{width:185.946667pt;}
.w38{width:190.906667pt;}
.w15{width:194.106667pt;}
.w14{width:194.266667pt;}
.w39{width:217.146667pt;}
.w20{width:245.186667pt;}
.w1f{width:258.426667pt;}
.w5{width:385.026667pt;}
.w3c{width:472.573333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.200000pt;}
.x43{left:8.160000pt;}
.xd{left:9.440000pt;}
.x4e{left:10.720000pt;}
.x27{left:11.680000pt;}
.x28{left:12.640000pt;}
.x1e{left:14.400000pt;}
.x23{left:15.360000pt;}
.x30{left:16.480000pt;}
.x38{left:17.440000pt;}
.x26{left:18.440000pt;}
.x36{left:20.000000pt;}
.x20{left:21.600000pt;}
.x25{left:23.240000pt;}
.x32{left:24.800000pt;}
.x16{left:28.320000pt;}
.x4c{left:30.080000pt;}
.x1b{left:31.840000pt;}
.x1d{left:34.560000pt;}
.x2d{left:36.000000pt;}
.x18{left:37.920000pt;}
.x2b{left:48.320000pt;}
.x5d{left:56.634667pt;}
.x3c{left:80.026667pt;}
.xf{left:94.720000pt;}
.x5a{left:104.032000pt;}
.x5b{left:105.754667pt;}
.xa{left:111.552000pt;}
.x1{left:113.471988pt;}
.x6{left:120.031988pt;}
.x8{left:131.391988pt;}
.x2{left:137.626655pt;}
.x14{left:139.866655pt;}
.x3a{left:154.586667pt;}
.x11{left:161.466655pt;}
.x45{left:165.626667pt;}
.x12{left:170.426655pt;}
.x29{left:171.706667pt;}
.x15{left:190.426667pt;}
.x5{left:205.946655pt;}
.x5c{left:217.306667pt;}
.x9{left:241.786655pt;}
.x2a{left:252.706667pt;}
.x4d{left:256.066667pt;}
.x44{left:259.106655pt;}
.x17{left:271.426667pt;}
.x41{left:284.226667pt;}
.x4f{left:287.266667pt;}
.x31{left:291.106667pt;}
.x46{left:295.426667pt;}
.xc{left:297.506667pt;}
.x1f{left:305.506667pt;}
.xe{left:316.226667pt;}
.x39{left:318.466655pt;}
.x42{left:334.306667pt;}
.x3{left:345.666655pt;}
.x2e{left:349.826667pt;}
.x50{left:350.946667pt;}
.x4a{left:355.746667pt;}
.x1a{left:357.826667pt;}
.x7{left:361.346655pt;}
.x10{left:377.826667pt;}
.x51{left:383.426667pt;}
.x33{left:388.066667pt;}
.x21{left:391.906667pt;}
.x4{left:406.466655pt;}
.x3b{left:413.026667pt;}
.x52{left:415.613333pt;}
.x47{left:427.133333pt;}
.x3d{left:438.173333pt;}
.x19{left:444.253333pt;}
.x2c{left:446.973333pt;}
.x22{left:478.333333pt;}
.x34{left:485.213333pt;}
.x4b{left:487.453333pt;}
.x3e{left:498.493333pt;}
.x53{left:509.373333pt;}
.x59{left:522.173333pt;}
.x1c{left:530.653333pt;}
.x54{left:540.573333pt;}
.x2f{left:543.933333pt;}
.x48{left:558.653333pt;}
.x24{left:566.813333pt;}
.x3f{left:569.853333pt;}
.x55{left:571.613333pt;}
.x37{left:582.173333pt;}
.x35{left:585.893333pt;}
.x49{left:600.773333pt;}
.x56{left:603.653333pt;}
.x40{left:611.813333pt;}
.x57{left:635.813333pt;}
.x58{left:667.013333pt;}
.x13{left:672.773333pt;}
}




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