
    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_a1e21ab101676bbf6f104877.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4f3f89d2339a3bece6f715c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.928711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9033034e93ef43b3cc15f631.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_8b2a770aeea2b3bb4fa12e9d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_63a37977befad443d1f87bd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_12da453b0ec7b447da18288e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_e71c0c588f9a3731e7198b0e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937988;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_00e41362f1da7d2da9512fbb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_83adc6224016ee342c739620.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.937988;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_fe98a7654a1e9ef163f2842b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7ac31ba896834bf79ef8969c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.196289;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.457800px;}
.ls9{letter-spacing:-0.414600px;}
.lsd{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.259800px;}
.ls10{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.181200px;}
.ls1e{letter-spacing:-0.175800px;}
.ls1d{letter-spacing:-0.058320px;}
.ls1{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.109200px;}
.lsf{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.305400px;}
.ls13{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.720000px;}
.ls5{letter-spacing:1.440000px;}
.ls1c{letter-spacing:2.160000px;}
.lse{letter-spacing:3.600000px;}
.ls15{letter-spacing:6.480000px;}
.ls1b{letter-spacing:7.920000px;}
.ls17{letter-spacing:10.800000px;}
.ls1a{letter-spacing:13.680000px;}
.ls16{letter-spacing:14.400000px;}
.ls7{letter-spacing:17.280000px;}
.ls14{letter-spacing:23.760000px;}
.ls18{letter-spacing:26.640000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(68,84,106),0 0.015em rgb(68,84,106),0.015em 0 rgb(68,84,106),0 -0.015em  rgb(68,84,106);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(68,84,106);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-49.870080px;}
.ws3{word-spacing:-21.641760px;}
.ws1{word-spacing:-19.640280px;}
.ws12{word-spacing:-18.720000px;}
.ws13{word-spacing:-18.288000px;}
.wsf{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.ws8{word-spacing:-16.865400px;}
.wsa{word-spacing:-16.669200px;}
.ws6{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.145400px;}
.ws9{word-spacing:-16.102200px;}
.wsb{word-spacing:-15.948000px;}
.wsc{word-spacing:-15.840000px;}
.wsd{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.447440px;}
.ws4{word-spacing:-13.229520px;}
.ws0{word-spacing:-12.186000px;}
.ws11{word-spacing:-9.000000px;}
.ws5{word-spacing:0.000000px;}
._2b{margin-left:-5.313600px;}
._12{margin-left:-4.305600px;}
._17{margin-left:-3.242160px;}
._f{margin-left:-2.149920px;}
._8{margin-left:-1.087920px;}
._0{width:1.171200px;}
._5{width:2.474160px;}
._10{width:3.716400px;}
._11{width:4.900800px;}
._e{width:6.094080px;}
._2{width:7.195200px;}
._3{width:8.210640px;}
._4{width:9.419040px;}
._b{width:11.079600px;}
._c{width:12.489840px;}
._14{width:13.737600px;}
._13{width:14.762880px;}
._a{width:15.836400px;}
._9{width:17.031600px;}
._20{width:18.140400px;}
._6{width:19.744800px;}
._15{width:21.384000px;}
._16{width:22.536000px;}
._1b{width:24.048000px;}
._1d{width:25.488000px;}
._26{width:26.568000px;}
._1a{width:27.648000px;}
._1c{width:28.678080px;}
._1{width:29.700720px;}
._7{width:31.099200px;}
._1e{width:32.877840px;}
._22{width:34.128000px;}
._18{width:35.712000px;}
._19{width:36.720000px;}
._d{width:43.744320px;}
._29{width:46.188000px;}
._27{width:47.556000px;}
._25{width:50.364000px;}
._21{width:54.360000px;}
._2a{width:64.440000px;}
._23{width:72.180000px;}
._1f{width:76.464000px;}
._2d{width:77.616000px;}
._2c{width:79.344000px;}
._24{width:83.412000px;}
._28{width:98.640000px;}
.fc9{color:rgb(0,0,255);}
.fc7{color:rgb(74,134,232);}
.fc5{color:rgb(255,0,0);}
.fc6{color:rgb(60,120,216);}
.fc4{color:rgb(0,32,96);}
.fc3{color:transparent;}
.fc8{color:rgb(34,34,34);}
.fc2{color:rgb(68,84,106);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:149.760000px;}
.y199{bottom:-105.120000px;}
.y32{bottom:-83.700000px;}
.y22{bottom:-72.900000px;}
.y198{bottom:-68.760000px;}
.y31{bottom:-56.520000px;}
.y21{bottom:-36.540000px;}
.y30{bottom:-33.660000px;}
.y197{bottom:-32.940000px;}
.y196{bottom:-16.380000px;}
.y2f{bottom:-10.980000px;}
.y20{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y24{bottom:0.975000px;}
.yd3{bottom:1.980000px;}
.yb1{bottom:2.160000px;}
.ycc{bottom:2.205000px;}
.y9{bottom:3.780000px;}
.y163{bottom:6.479850px;}
.yd0{bottom:7.200000px;}
.ydf{bottom:7.380000px;}
.yb{bottom:7.560000px;}
.y8{bottom:9.540000px;}
.y2e{bottom:11.880000px;}
.ybd{bottom:12.420000px;}
.ycb{bottom:12.465000px;}
.yda{bottom:17.460000px;}
.yc4{bottom:17.505000px;}
.yb8{bottom:17.640000px;}
.y195{bottom:17.820000px;}
.y1f{bottom:18.045000px;}
.y7{bottom:18.180000px;}
.yd2{bottom:22.680000px;}
.ye4{bottom:22.725000px;}
.y29{bottom:22.755000px;}
.ybc{bottom:22.860000px;}
.yca{bottom:22.905000px;}
.yb5{bottom:27.900000px;}
.yc3{bottom:27.945000px;}
.yde{bottom:28.080000px;}
.yb6{bottom:33.120000px;}
.yc6{bottom:33.165000px;}
.y2d{bottom:34.785000px;}
.y1e{bottom:36.405000px;}
.yf{bottom:36.900000px;}
.yd9{bottom:38.160000px;}
.yc2{bottom:38.205000px;}
.yb3{bottom:38.340000px;}
.yee{bottom:38.376000px;}
.ybf{bottom:38.385000px;}
.y194{bottom:41.436000px;}
.yce{bottom:43.380000px;}
.yed{bottom:43.416000px;}
.ye1{bottom:43.425000px;}
.ye{bottom:43.560000px;}
.yc5{bottom:43.605000px;}
.yb4{bottom:48.600000px;}
.yc1{bottom:48.645000px;}
.yd5{bottom:48.780000px;}
.y6{bottom:50.580000px;}
.y27{bottom:53.100000px;}
.ybb{bottom:53.820000px;}
.yf0{bottom:53.850000px;}
.yc9{bottom:53.865000px;}
.y1d{bottom:54.765000px;}
.y2c{bottom:57.465000px;}
.yd8{bottom:58.860000px;}
.yc0{bottom:58.905000px;}
.yb7{bottom:59.040000px;}
.ye2{bottom:59.085000px;}
.yd1{bottom:64.080000px;}
.yef{bottom:64.110000px;}
.ye3{bottom:64.125000px;}
.yba{bottom:64.260000px;}
.yc8{bottom:64.305000px;}
.y193{bottom:65.190000px;}
.yf2{bottom:69.120000px;}
.ycf{bottom:69.300000px;}
.ydd{bottom:69.480000px;}
.y1c{bottom:73.125000px;}
.y67{bottom:73.620000px;}
.yb9{bottom:74.520000px;}
.yc7{bottom:74.565000px;}
.ya7{bottom:76.860000px;}
.y66{bottom:78.120000px;}
.ye9{bottom:79.560000px;}
.ye7{bottom:79.740000px;}
.y192{bottom:79.770000px;}
.y2b{bottom:80.325000px;}
.yea{bottom:84.780000px;}
.ye5{bottom:84.825000px;}
.yd6{bottom:84.960000px;}
.y103{bottom:86.220000px;}
.yf1{bottom:88.020000px;}
.y154{bottom:90.000000px;}
.y80{bottom:91.080000px;}
.y116{bottom:92.520000px;}
.y162{bottom:92.700000px;}
.y94{bottom:95.040000px;}
.y65{bottom:95.220000px;}
.yec{bottom:97.020000px;}
.y64{bottom:99.720000px;}
.y132{bottom:102.600000px;}
.y191{bottom:103.350000px;}
.yeb{bottom:105.480000px;}
.y178{bottom:107.280000px;}
.ya6{bottom:107.820000px;}
.y1b{bottom:109.305000px;}
.y153{bottom:110.700000px;}
.y161{bottom:113.400000px;}
.y63{bottom:116.820000px;}
.y102{bottom:117.180000px;}
.y62{bottom:121.320000px;}
.y7f{bottom:122.040000px;}
.y131{bottom:123.300000px;}
.y115{bottom:123.480000px;}
.y93{bottom:126.180000px;}
.y190{bottom:127.110000px;}
.y1a{bottom:127.665000px;}
.ya5{bottom:138.996000px;}
.y61{bottom:139.536000px;}
.y19{bottom:146.025000px;}
.y101{bottom:148.356000px;}
.y152{bottom:149.436000px;}
.y18f{bottom:150.690000px;}
.y160{bottom:152.130000px;}
.y7e{bottom:153.210000px;}
.y114{bottom:154.650000px;}
.yd{bottom:156.090000px;}
.y92{bottom:157.170000px;}
.y130{bottom:162.030000px;}
.y18{bottom:164.205000px;}
.ya4{bottom:169.950000px;}
.y151{bottom:170.130000px;}
.ye8{bottom:170.310000px;}
.y60{bottom:171.210000px;}
.y15f{bottom:172.830000px;}
.y18e{bottom:174.450000px;}
.y100{bottom:179.310000px;}
.y17{bottom:182.565000px;}
.y12f{bottom:182.730000px;}
.y7d{bottom:184.170000px;}
.y113{bottom:185.610000px;}
.y91{bottom:188.310000px;}
.y18d{bottom:189.030000px;}
.yff{bottom:198.570000px;}
.y5f{bottom:199.110000px;}
.ya3{bottom:201.090000px;}
.y150{bottom:208.830000px;}
.yfe{bottom:209.910000px;}
.y15e{bottom:211.530000px;}
.y18c{bottom:212.610000px;}
.y7c{bottom:215.310000px;}
.y112{bottom:216.750000px;}
.y5e{bottom:218.190000px;}
.y16{bottom:218.925000px;}
.y90{bottom:219.270000px;}
.y12e{bottom:221.430000px;}
.y14f{bottom:229.530000px;}
.y15d{bottom:232.230000px;}
.y18b{bottom:236.370000px;}
.y5d{bottom:237.270000px;}
.y15{bottom:237.285000px;}
.ya2{bottom:241.050000px;}
.y12d{bottom:242.130000px;}
.y7b{bottom:246.270000px;}
.y111{bottom:247.710000px;}
.y8f{bottom:250.230000px;}
.y18a{bottom:250.950000px;}
.y14{bottom:255.465000px;}
.y5c{bottom:256.170000px;}
.y15c{bottom:270.930000px;}
.y13{bottom:273.855000px;}
.y189{bottom:274.890000px;}
.y5b{bottom:275.250000px;}
.y7a{bottom:277.230000px;}
.y110{bottom:278.850000px;}
.y12c{bottom:280.830000px;}
.ya1{bottom:281.190000px;}
.y8e{bottom:281.370000px;}
.ye6{bottom:284.790000px;}
.y14e{bottom:288.930000px;}
.y15b{bottom:291.630000px;}
.y5a{bottom:294.150000px;}
.y12b{bottom:301.530000px;}
.y79{bottom:308.370000px;}
.y188{bottom:309.135000px;}
.y14d{bottom:309.630000px;}
.y10f{bottom:309.810000px;}
.y8d{bottom:312.330000px;}
.y59{bottom:313.050000px;}
.ya0{bottom:321.150000px;}
.y187{bottom:323.715000px;}
.y14c{bottom:330.330000px;}
.y58{bottom:332.130000px;}
.y78{bottom:339.330000px;}
.y12a{bottom:340.230000px;}
.y10e{bottom:340.950000px;}
.y8c{bottom:343.470000px;}
.y186{bottom:347.475000px;}
.y57{bottom:351.030000px;}
.y9f{bottom:352.110000px;}
.y2a{bottom:360.210000px;}
.y129{bottom:360.930000px;}
.y14b{bottom:369.030000px;}
.y56{bottom:370.110000px;}
.y77{bottom:370.470000px;}
.y185{bottom:371.055000px;}
.y10d{bottom:371.910000px;}
.y8b{bottom:374.430000px;}
.ye0{bottom:378.750000px;}
.y9e{bottom:383.250000px;}
.y55{bottom:389.055000px;}
.y15a{bottom:389.775000px;}
.y184{bottom:394.815000px;}
.y128{bottom:399.675000px;}
.y76{bottom:401.475000px;}
.y10c{bottom:403.095000px;}
.y8a{bottom:405.615000px;}
.y177{bottom:406.875000px;}
.y14a{bottom:407.775000px;}
.y54{bottom:408.135000px;}
.y159{bottom:410.475000px;}
.y9d{bottom:414.255000px;}
.y183{bottom:418.395000px;}
.y127{bottom:420.375000px;}
.y53{bottom:427.035000px;}
.y149{bottom:428.475000px;}
.y75{bottom:432.615000px;}
.y182{bottom:432.975000px;}
.y10b{bottom:434.055000px;}
.y89{bottom:436.575000px;}
.y176{bottom:437.835000px;}
.y126{bottom:441.075000px;}
.y9c{bottom:445.395000px;}
.y52{bottom:445.935000px;}
.y148{bottom:449.175000px;}
.y181{bottom:456.735000px;}
.y175{bottom:457.815000px;}
.y74{bottom:463.575000px;}
.y51{bottom:465.015000px;}
.y10a{bottom:465.195000px;}
.y26{bottom:465.915000px;}
.y28{bottom:466.020000px;}
.y88{bottom:467.715000px;}
.y158{bottom:469.875000px;}
.ydc{bottom:472.575000px;}
.y9b{bottom:476.355000px;}
.y125{bottom:479.775000px;}
.y180{bottom:480.675000px;}
.yc{bottom:486.615000px;}
.y147{bottom:487.875000px;}
.y50{bottom:492.915000px;}
.y174{bottom:493.815000px;}
.y73{bottom:494.715000px;}
.y109{bottom:496.155000px;}
.y87{bottom:498.675000px;}
.y124{bottom:500.475000px;}
.y9a{bottom:507.495000px;}
.y146{bottom:508.575000px;}
.y4f{bottom:514.155000px;}
.y17f{bottom:514.875000px;}
.y123{bottom:521.175000px;}
.y72{bottom:525.675000px;}
.y108{bottom:527.115000px;}
.y157{bottom:529.275000px;}
.y86{bottom:529.815000px;}
.y173{bottom:533.775000px;}
.y99{bottom:538.455000px;}
.y17e{bottom:539.205000px;}
.y4e{bottom:544.215000px;}
.y145{bottom:547.275000px;}
.y25{bottom:552.420000px;}
.ydb{bottom:556.275000px;}
.y71{bottom:556.815000px;}
.y107{bottom:558.255000px;}
.y122{bottom:559.875000px;}
.y85{bottom:560.775000px;}
.y172{bottom:564.915000px;}
.y144{bottom:567.975000px;}
.y4d{bottom:572.295000px;}
.y17d{bottom:575.025000px;}
.y98{bottom:578.595000px;}
.y121{bottom:580.575000px;}
.y70{bottom:587.775000px;}
.y143{bottom:588.675000px;}
.y10{bottom:589.215000px;}
.y4c{bottom:591.375000px;}
.y84{bottom:591.915000px;}
.y171{bottom:595.875000px;}
.y23{bottom:605.340000px;}
.y17c{bottom:609.945000px;}
.y4b{bottom:610.275000px;}
.ya{bottom:616.395000px;}
.y97{bottom:618.555000px;}
.y6f{bottom:618.915000px;}
.y120{bottom:619.275000px;}
.y164{bottom:619.635150px;}
.y106{bottom:620.355000px;}
.y83{bottom:622.875000px;}
.y170{bottom:627.015000px;}
.y142{bottom:627.375000px;}
.y4a{bottom:629.355000px;}
.y105{bottom:639.615000px;}
.yd7{bottom:639.825000px;}
.y11f{bottom:640.005000px;}
.y33{bottom:644.685000px;}
.y17b{bottom:646.305000px;}
.y96{bottom:647.385000px;}
.y141{bottom:648.105000px;}
.y49{bottom:648.285000px;}
.y6e{bottom:649.905000px;}
.y104{bottom:650.985000px;}
.yfd{bottom:654.045000px;}
.y16f{bottom:658.005000px;}
.y95{bottom:659.985000px;}
.y11e{bottom:660.705000px;}
.y82{bottom:663.045000px;}
.y48{bottom:667.185000px;}
.y6d{bottom:681.045000px;}
.y17a{bottom:682.125000px;}
.yfc{bottom:685.005000px;}
.y47{bottom:686.265000px;}
.y140{bottom:686.805000px;}
.y16e{bottom:689.145000px;}
.y11d{bottom:699.405000px;}
.y81{bottom:703.005000px;}
.y46{bottom:705.165000px;}
.y13f{bottom:707.505000px;}
.y6c{bottom:712.005000px;}
.yd4{bottom:712.905000px;}
.yfb{bottom:716.145000px;}
.y179{bottom:718.305000px;}
.y11c{bottom:720.105000px;}
.y45{bottom:724.245000px;}
.y44{bottom:743.145000px;}
.y13e{bottom:746.205000px;}
.yfa{bottom:747.105000px;}
.y16d{bottom:751.245000px;}
.y11b{bottom:758.805000px;}
.y43{bottom:762.045000px;}
.y13d{bottom:766.905000px;}
.y6b{bottom:774.105000px;}
.yf9{bottom:778.245000px;}
.y11a{bottom:779.505000px;}
.y42{bottom:781.125000px;}
.y16c{bottom:782.205000px;}
.y41{bottom:800.025000px;}
.y6a{bottom:805.245000px;}
.y13c{bottom:805.605000px;}
.ycd{bottom:806.865000px;}
.yf8{bottom:809.205000px;}
.y16b{bottom:813.345000px;}
.y119{bottom:818.205000px;}
.y40{bottom:819.105000px;}
.y13b{bottom:826.305000px;}
.y69{bottom:836.205000px;}
.y3f{bottom:838.005000px;}
.y118{bottom:838.905000px;}
.yf7{bottom:840.345000px;}
.y16a{bottom:844.305000px;}
.y13a{bottom:865.005000px;}
.y3e{bottom:866.265000px;}
.y68{bottom:867.345000px;}
.yf6{bottom:871.305000px;}
.y169{bottom:875.445000px;}
.y117{bottom:877.605000px;}
.y139{bottom:885.705000px;}
.y12{bottom:888.405000px;}
.ybe{bottom:890.385000px;}
.y3d{bottom:898.350000px;}
.yf5{bottom:902.490000px;}
.y156{bottom:906.450000px;}
.y19a{bottom:912.210000px;}
.y138{bottom:924.450000px;}
.y3b{bottom:929.490000px;}
.y3c{bottom:936.330000px;}
.y168{bottom:937.590000px;}
.yf4{bottom:942.450000px;}
.y137{bottom:945.150000px;}
.y39{bottom:960.450000px;}
.y155{bottom:965.850000px;}
.y3a{bottom:967.290000px;}
.y167{bottom:968.550000px;}
.yb2{bottom:973.950000px;}
.yf3{bottom:982.590000px;}
.y136{bottom:983.850000px;}
.y37{bottom:991.590000px;}
.y38{bottom:998.430000px;}
.y135{bottom:1004.550000px;}
.y166{bottom:1007.250000px;}
.y36{bottom:1022.550000px;}
.y134{bottom:1025.250000px;}
.y165{bottom:1045.950000px;}
.y35{bottom:1053.690000px;}
.yb0{bottom:1057.470000px;}
.y133{bottom:1063.950000px;}
.yaf{bottom:1072.590000px;}
.y34{bottom:1084.650000px;}
.y11{bottom:1087.350000px;}
.yae{bottom:1089.690000px;}
.yad{bottom:1091.490000px;}
.yac{bottom:1093.110000px;}
.yab{bottom:1094.910000px;}
.yaa{bottom:1096.530000px;}
.ya9{bottom:1098.330000px;}
.ya8{bottom:1100.130000px;}
.y5{bottom:1105.350000px;}
.y4{bottom:1123.710000px;}
.y3{bottom:1138.110000px;}
.y2{bottom:1230.300000px;}
.y1{bottom:1248.480000px;}
.h1e{height:5.115938px;}
.h1f{height:10.440000px;}
.h5{height:24.156000px;}
.h3{height:28.440000px;}
.hc{height:28.980000px;}
.h20{height:31.974609px;}
.h1b{height:32.273438px;}
.h17{height:34.837383px;}
.h12{height:35.261367px;}
.h28{height:43.246406px;}
.h1a{height:47.836406px;}
.h2d{height:47.980898px;}
.h1c{height:48.410156px;}
.h16{height:51.996094px;}
.ha{height:53.573906px;}
.h4{height:53.709961px;}
.h2e{height:55.291992px;}
.h6{height:56.649375px;}
.h8{height:57.959925px;}
.h18{height:58.833281px;}
.h19{height:59.383125px;}
.h2{height:59.439023px;}
.h2c{height:61.189805px;}
.h15{height:63.949219px;}
.h1d{height:64.546875px;}
.h13{height:65.884219px;}
.h24{height:72.360000px;}
.h27{height:72.396000px;}
.h2b{height:79.620469px;}
.h21{height:82.800000px;}
.h22{height:82.836000px;}
.hf{height:91.177734px;}
.h25{height:93.096000px;}
.h23{height:93.240000px;}
.h11{height:100.656000px;}
.hd{height:109.102500px;}
.h26{height:113.760000px;}
.h7{height:170.490000px;}
.h14{height:173.700000px;}
.h10{height:181.620000px;}
.he{height:181.650000px;}
.h2f{height:189.000000px;}
.hb{height:306.255000px;}
.h2a{height:754.845000px;}
.h9{height:1188.900000px;}
.h29{height:1249.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:30.780000px;}
.w5{width:39.960000px;}
.w13{width:53.100000px;}
.w14{width:62.820000px;}
.w6{width:88.560000px;}
.w12{width:126.936000px;}
.wf{width:198.210000px;}
.w15{width:201.315000px;}
.w18{width:213.330000px;}
.w16{width:243.390000px;}
.wa{width:255.060000px;}
.wb{width:295.200000px;}
.we{width:320.790000px;}
.wd{width:320.940000px;}
.wc{width:321.015000px;}
.w17{width:326.055000px;}
.w9{width:326.415000px;}
.w4{width:351.975000px;}
.w3{width:397.545000px;}
.w8{width:847.620000px;}
.w7{width:848.520000px;}
.w10{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x11{left:-2.055000px;}
.x0{left:0.000000px;}
.x33{left:4.860000px;}
.x6{left:8.676000px;}
.xa{left:9.900000px;}
.x2c{left:11.340000px;}
.x2a{left:13.140000px;}
.x2e{left:17.100000px;}
.xd{left:22.320000px;}
.x39{left:31.499973px;}
.xc{left:33.120000px;}
.x17{left:37.620000px;}
.x4{left:64.439987px;}
.x24{left:68.939987px;}
.x5{left:73.080000px;}
.x18{left:82.800000px;}
.x30{left:83.910000px;}
.x32{left:100.080000px;}
.x29{left:101.196000px;}
.x19{left:113.400000px;}
.x25{left:117.575987px;}
.x15{left:133.125000px;}
.x1c{left:134.855987px;}
.x8{left:137.385000px;}
.x14{left:160.410000px;}
.xf{left:163.290000px;}
.x28{left:165.449987px;}
.x1a{left:187.245000px;}
.x1b{left:197.489987px;}
.x3b{left:202.545000px;}
.x2b{left:260.355000px;}
.x26{left:267.734987px;}
.x23{left:280.514987px;}
.x2d{left:314.175000px;}
.x37{left:321.734987px;}
.x34{left:327.854987px;}
.x2f{left:377.715000px;}
.x3{left:388.694987px;}
.x13{left:406.155000px;}
.xe{left:408.135000px;}
.x16{left:411.945000px;}
.x12{left:419.760000px;}
.x10{left:439.560000px;}
.x1d{left:442.004987px;}
.x3a{left:456.225000px;}
.x1{left:461.804987px;}
.x36{left:469.004987px;}
.x7{left:470.625000px;}
.x1e{left:557.564987px;}
.x31{left:579.750000px;}
.x21{left:622.049987px;}
.x22{left:648.509987px;}
.x27{left:686.129987px;}
.x35{left:700.889987px;}
.x38{left:746.999987px;}
.x2{left:782.279987px;}
.xb{left:803.880000px;}
.x1f{left:813.599973px;}
.x20{left:819.719987px;}
.x9{left:838.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.406933pt;}
.ls9{letter-spacing:-0.368533pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.230933pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.161067pt;}
.ls1e{letter-spacing:-0.156267pt;}
.ls1d{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.097067pt;}
.lsf{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.271467pt;}
.ls13{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls5{letter-spacing:1.280000pt;}
.ls1c{letter-spacing:1.920000pt;}
.lse{letter-spacing:3.200000pt;}
.ls15{letter-spacing:5.760000pt;}
.ls1b{letter-spacing:7.040000pt;}
.ls17{letter-spacing:9.600000pt;}
.ls1a{letter-spacing:12.160000pt;}
.ls16{letter-spacing:12.800000pt;}
.ls7{letter-spacing:15.360000pt;}
.ls14{letter-spacing:21.120000pt;}
.ls18{letter-spacing:23.680000pt;}
.ws2{word-spacing:-44.328960pt;}
.ws3{word-spacing:-19.237120pt;}
.ws1{word-spacing:-17.458027pt;}
.ws12{word-spacing:-16.640000pt;}
.ws13{word-spacing:-16.256000pt;}
.wsf{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.ws8{word-spacing:-14.991467pt;}
.wsa{word-spacing:-14.817067pt;}
.ws6{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.351467pt;}
.ws9{word-spacing:-14.313067pt;}
.wsb{word-spacing:-14.176000pt;}
.wsc{word-spacing:-14.080000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.953280pt;}
.ws4{word-spacing:-11.759573pt;}
.ws0{word-spacing:-10.832000pt;}
.ws11{word-spacing:-8.000000pt;}
.ws5{word-spacing:0.000000pt;}
._2b{margin-left:-4.723200pt;}
._12{margin-left:-3.827200pt;}
._17{margin-left:-2.881920pt;}
._f{margin-left:-1.911040pt;}
._8{margin-left:-0.967040pt;}
._0{width:1.041067pt;}
._5{width:2.199253pt;}
._10{width:3.303467pt;}
._11{width:4.356267pt;}
._e{width:5.416960pt;}
._2{width:6.395733pt;}
._3{width:7.298347pt;}
._4{width:8.372480pt;}
._b{width:9.848533pt;}
._c{width:11.102080pt;}
._14{width:12.211200pt;}
._13{width:13.122560pt;}
._a{width:14.076800pt;}
._9{width:15.139200pt;}
._20{width:16.124800pt;}
._6{width:17.550933pt;}
._15{width:19.008000pt;}
._16{width:20.032000pt;}
._1b{width:21.376000pt;}
._1d{width:22.656000pt;}
._26{width:23.616000pt;}
._1a{width:24.576000pt;}
._1c{width:25.491627pt;}
._1{width:26.400640pt;}
._7{width:27.643733pt;}
._1e{width:29.224747pt;}
._22{width:30.336000pt;}
._18{width:31.744000pt;}
._19{width:32.640000pt;}
._d{width:38.883840pt;}
._29{width:41.056000pt;}
._27{width:42.272000pt;}
._25{width:44.768000pt;}
._21{width:48.320000pt;}
._2a{width:57.280000pt;}
._23{width:64.160000pt;}
._1f{width:67.968000pt;}
._2d{width:68.992000pt;}
._2c{width:70.528000pt;}
._24{width:74.144000pt;}
._28{width:87.680000pt;}
.fs9{font-size:5.120000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:133.120000pt;}
.y199{bottom:-93.440000pt;}
.y32{bottom:-74.400000pt;}
.y22{bottom:-64.800000pt;}
.y198{bottom:-61.120000pt;}
.y31{bottom:-50.240000pt;}
.y21{bottom:-32.480000pt;}
.y30{bottom:-29.920000pt;}
.y197{bottom:-29.280000pt;}
.y196{bottom:-14.560000pt;}
.y2f{bottom:-9.760000pt;}
.y20{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:0.866667pt;}
.yd3{bottom:1.760000pt;}
.yb1{bottom:1.920000pt;}
.ycc{bottom:1.960000pt;}
.y9{bottom:3.360000pt;}
.y163{bottom:5.759867pt;}
.yd0{bottom:6.400000pt;}
.ydf{bottom:6.560000pt;}
.yb{bottom:6.720000pt;}
.y8{bottom:8.480000pt;}
.y2e{bottom:10.560000pt;}
.ybd{bottom:11.040000pt;}
.ycb{bottom:11.080000pt;}
.yda{bottom:15.520000pt;}
.yc4{bottom:15.560000pt;}
.yb8{bottom:15.680000pt;}
.y195{bottom:15.840000pt;}
.y1f{bottom:16.040000pt;}
.y7{bottom:16.160000pt;}
.yd2{bottom:20.160000pt;}
.ye4{bottom:20.200000pt;}
.y29{bottom:20.226667pt;}
.ybc{bottom:20.320000pt;}
.yca{bottom:20.360000pt;}
.yb5{bottom:24.800000pt;}
.yc3{bottom:24.840000pt;}
.yde{bottom:24.960000pt;}
.yb6{bottom:29.440000pt;}
.yc6{bottom:29.480000pt;}
.y2d{bottom:30.920000pt;}
.y1e{bottom:32.360000pt;}
.yf{bottom:32.800000pt;}
.yd9{bottom:33.920000pt;}
.yc2{bottom:33.960000pt;}
.yb3{bottom:34.080000pt;}
.yee{bottom:34.112000pt;}
.ybf{bottom:34.120000pt;}
.y194{bottom:36.832000pt;}
.yce{bottom:38.560000pt;}
.yed{bottom:38.592000pt;}
.ye1{bottom:38.600000pt;}
.ye{bottom:38.720000pt;}
.yc5{bottom:38.760000pt;}
.yb4{bottom:43.200000pt;}
.yc1{bottom:43.240000pt;}
.yd5{bottom:43.360000pt;}
.y6{bottom:44.960000pt;}
.y27{bottom:47.200000pt;}
.ybb{bottom:47.840000pt;}
.yf0{bottom:47.866667pt;}
.yc9{bottom:47.880000pt;}
.y1d{bottom:48.680000pt;}
.y2c{bottom:51.080000pt;}
.yd8{bottom:52.320000pt;}
.yc0{bottom:52.360000pt;}
.yb7{bottom:52.480000pt;}
.ye2{bottom:52.520000pt;}
.yd1{bottom:56.960000pt;}
.yef{bottom:56.986667pt;}
.ye3{bottom:57.000000pt;}
.yba{bottom:57.120000pt;}
.yc8{bottom:57.160000pt;}
.y193{bottom:57.946667pt;}
.yf2{bottom:61.440000pt;}
.ycf{bottom:61.600000pt;}
.ydd{bottom:61.760000pt;}
.y1c{bottom:65.000000pt;}
.y67{bottom:65.440000pt;}
.yb9{bottom:66.240000pt;}
.yc7{bottom:66.280000pt;}
.ya7{bottom:68.320000pt;}
.y66{bottom:69.440000pt;}
.ye9{bottom:70.720000pt;}
.ye7{bottom:70.880000pt;}
.y192{bottom:70.906667pt;}
.y2b{bottom:71.400000pt;}
.yea{bottom:75.360000pt;}
.ye5{bottom:75.400000pt;}
.yd6{bottom:75.520000pt;}
.y103{bottom:76.640000pt;}
.yf1{bottom:78.240000pt;}
.y154{bottom:80.000000pt;}
.y80{bottom:80.960000pt;}
.y116{bottom:82.240000pt;}
.y162{bottom:82.400000pt;}
.y94{bottom:84.480000pt;}
.y65{bottom:84.640000pt;}
.yec{bottom:86.240000pt;}
.y64{bottom:88.640000pt;}
.y132{bottom:91.200000pt;}
.y191{bottom:91.866667pt;}
.yeb{bottom:93.760000pt;}
.y178{bottom:95.360000pt;}
.ya6{bottom:95.840000pt;}
.y1b{bottom:97.160000pt;}
.y153{bottom:98.400000pt;}
.y161{bottom:100.800000pt;}
.y63{bottom:103.840000pt;}
.y102{bottom:104.160000pt;}
.y62{bottom:107.840000pt;}
.y7f{bottom:108.480000pt;}
.y131{bottom:109.600000pt;}
.y115{bottom:109.760000pt;}
.y93{bottom:112.160000pt;}
.y190{bottom:112.986667pt;}
.y1a{bottom:113.480000pt;}
.ya5{bottom:123.552000pt;}
.y61{bottom:124.032000pt;}
.y19{bottom:129.800000pt;}
.y101{bottom:131.872000pt;}
.y152{bottom:132.832000pt;}
.y18f{bottom:133.946667pt;}
.y160{bottom:135.226667pt;}
.y7e{bottom:136.186667pt;}
.y114{bottom:137.466667pt;}
.yd{bottom:138.746667pt;}
.y92{bottom:139.706667pt;}
.y130{bottom:144.026667pt;}
.y18{bottom:145.960000pt;}
.ya4{bottom:151.066667pt;}
.y151{bottom:151.226667pt;}
.ye8{bottom:151.386667pt;}
.y60{bottom:152.186667pt;}
.y15f{bottom:153.626667pt;}
.y18e{bottom:155.066667pt;}
.y100{bottom:159.386667pt;}
.y17{bottom:162.280000pt;}
.y12f{bottom:162.426667pt;}
.y7d{bottom:163.706667pt;}
.y113{bottom:164.986667pt;}
.y91{bottom:167.386667pt;}
.y18d{bottom:168.026667pt;}
.yff{bottom:176.506667pt;}
.y5f{bottom:176.986667pt;}
.ya3{bottom:178.746667pt;}
.y150{bottom:185.626667pt;}
.yfe{bottom:186.586667pt;}
.y15e{bottom:188.026667pt;}
.y18c{bottom:188.986667pt;}
.y7c{bottom:191.386667pt;}
.y112{bottom:192.666667pt;}
.y5e{bottom:193.946667pt;}
.y16{bottom:194.600000pt;}
.y90{bottom:194.906667pt;}
.y12e{bottom:196.826667pt;}
.y14f{bottom:204.026667pt;}
.y15d{bottom:206.426667pt;}
.y18b{bottom:210.106667pt;}
.y5d{bottom:210.906667pt;}
.y15{bottom:210.920000pt;}
.ya2{bottom:214.266667pt;}
.y12d{bottom:215.226667pt;}
.y7b{bottom:218.906667pt;}
.y111{bottom:220.186667pt;}
.y8f{bottom:222.426667pt;}
.y18a{bottom:223.066667pt;}
.y14{bottom:227.080000pt;}
.y5c{bottom:227.706667pt;}
.y15c{bottom:240.826667pt;}
.y13{bottom:243.426667pt;}
.y189{bottom:244.346667pt;}
.y5b{bottom:244.666667pt;}
.y7a{bottom:246.426667pt;}
.y110{bottom:247.866667pt;}
.y12c{bottom:249.626667pt;}
.ya1{bottom:249.946667pt;}
.y8e{bottom:250.106667pt;}
.ye6{bottom:253.146667pt;}
.y14e{bottom:256.826667pt;}
.y15b{bottom:259.226667pt;}
.y5a{bottom:261.466667pt;}
.y12b{bottom:268.026667pt;}
.y79{bottom:274.106667pt;}
.y188{bottom:274.786667pt;}
.y14d{bottom:275.226667pt;}
.y10f{bottom:275.386667pt;}
.y8d{bottom:277.626667pt;}
.y59{bottom:278.266667pt;}
.ya0{bottom:285.466667pt;}
.y187{bottom:287.746667pt;}
.y14c{bottom:293.626667pt;}
.y58{bottom:295.226667pt;}
.y78{bottom:301.626667pt;}
.y12a{bottom:302.426667pt;}
.y10e{bottom:303.066667pt;}
.y8c{bottom:305.306667pt;}
.y186{bottom:308.866667pt;}
.y57{bottom:312.026667pt;}
.y9f{bottom:312.986667pt;}
.y2a{bottom:320.186667pt;}
.y129{bottom:320.826667pt;}
.y14b{bottom:328.026667pt;}
.y56{bottom:328.986667pt;}
.y77{bottom:329.306667pt;}
.y185{bottom:329.826667pt;}
.y10d{bottom:330.586667pt;}
.y8b{bottom:332.826667pt;}
.ye0{bottom:336.666667pt;}
.y9e{bottom:340.666667pt;}
.y55{bottom:345.826667pt;}
.y15a{bottom:346.466667pt;}
.y184{bottom:350.946667pt;}
.y128{bottom:355.266667pt;}
.y76{bottom:356.866667pt;}
.y10c{bottom:358.306667pt;}
.y8a{bottom:360.546667pt;}
.y177{bottom:361.666667pt;}
.y14a{bottom:362.466667pt;}
.y54{bottom:362.786667pt;}
.y159{bottom:364.866667pt;}
.y9d{bottom:368.226667pt;}
.y183{bottom:371.906667pt;}
.y127{bottom:373.666667pt;}
.y53{bottom:379.586667pt;}
.y149{bottom:380.866667pt;}
.y75{bottom:384.546667pt;}
.y182{bottom:384.866667pt;}
.y10b{bottom:385.826667pt;}
.y89{bottom:388.066667pt;}
.y176{bottom:389.186667pt;}
.y126{bottom:392.066667pt;}
.y9c{bottom:395.906667pt;}
.y52{bottom:396.386667pt;}
.y148{bottom:399.266667pt;}
.y181{bottom:405.986667pt;}
.y175{bottom:406.946667pt;}
.y74{bottom:412.066667pt;}
.y51{bottom:413.346667pt;}
.y10a{bottom:413.506667pt;}
.y26{bottom:414.146667pt;}
.y28{bottom:414.240000pt;}
.y88{bottom:415.746667pt;}
.y158{bottom:417.666667pt;}
.ydc{bottom:420.066667pt;}
.y9b{bottom:423.426667pt;}
.y125{bottom:426.466667pt;}
.y180{bottom:427.266667pt;}
.yc{bottom:432.546667pt;}
.y147{bottom:433.666667pt;}
.y50{bottom:438.146667pt;}
.y174{bottom:438.946667pt;}
.y73{bottom:439.746667pt;}
.y109{bottom:441.026667pt;}
.y87{bottom:443.266667pt;}
.y124{bottom:444.866667pt;}
.y9a{bottom:451.106667pt;}
.y146{bottom:452.066667pt;}
.y4f{bottom:457.026667pt;}
.y17f{bottom:457.666667pt;}
.y123{bottom:463.266667pt;}
.y72{bottom:467.266667pt;}
.y108{bottom:468.546667pt;}
.y157{bottom:470.466667pt;}
.y86{bottom:470.946667pt;}
.y173{bottom:474.466667pt;}
.y99{bottom:478.626667pt;}
.y17e{bottom:479.293333pt;}
.y4e{bottom:483.746667pt;}
.y145{bottom:486.466667pt;}
.y25{bottom:491.040000pt;}
.ydb{bottom:494.466667pt;}
.y71{bottom:494.946667pt;}
.y107{bottom:496.226667pt;}
.y122{bottom:497.666667pt;}
.y85{bottom:498.466667pt;}
.y172{bottom:502.146667pt;}
.y144{bottom:504.866667pt;}
.y4d{bottom:508.706667pt;}
.y17d{bottom:511.133333pt;}
.y98{bottom:514.306667pt;}
.y121{bottom:516.066667pt;}
.y70{bottom:522.466667pt;}
.y143{bottom:523.266667pt;}
.y10{bottom:523.746667pt;}
.y4c{bottom:525.666667pt;}
.y84{bottom:526.146667pt;}
.y171{bottom:529.666667pt;}
.y23{bottom:538.080000pt;}
.y17c{bottom:542.173333pt;}
.y4b{bottom:542.466667pt;}
.ya{bottom:547.906667pt;}
.y97{bottom:549.826667pt;}
.y6f{bottom:550.146667pt;}
.y120{bottom:550.466667pt;}
.y164{bottom:550.786800pt;}
.y106{bottom:551.426667pt;}
.y83{bottom:553.666667pt;}
.y170{bottom:557.346667pt;}
.y142{bottom:557.666667pt;}
.y4a{bottom:559.426667pt;}
.y105{bottom:568.546667pt;}
.yd7{bottom:568.733333pt;}
.y11f{bottom:568.893333pt;}
.y33{bottom:573.053333pt;}
.y17b{bottom:574.493333pt;}
.y96{bottom:575.453333pt;}
.y141{bottom:576.093333pt;}
.y49{bottom:576.253333pt;}
.y6e{bottom:577.693333pt;}
.y104{bottom:578.653333pt;}
.yfd{bottom:581.373333pt;}
.y16f{bottom:584.893333pt;}
.y95{bottom:586.653333pt;}
.y11e{bottom:587.293333pt;}
.y82{bottom:589.373333pt;}
.y48{bottom:593.053333pt;}
.y6d{bottom:605.373333pt;}
.y17a{bottom:606.333333pt;}
.yfc{bottom:608.893333pt;}
.y47{bottom:610.013333pt;}
.y140{bottom:610.493333pt;}
.y16e{bottom:612.573333pt;}
.y11d{bottom:621.693333pt;}
.y81{bottom:624.893333pt;}
.y46{bottom:626.813333pt;}
.y13f{bottom:628.893333pt;}
.y6c{bottom:632.893333pt;}
.yd4{bottom:633.693333pt;}
.yfb{bottom:636.573333pt;}
.y179{bottom:638.493333pt;}
.y11c{bottom:640.093333pt;}
.y45{bottom:643.773333pt;}
.y44{bottom:660.573333pt;}
.y13e{bottom:663.293333pt;}
.yfa{bottom:664.093333pt;}
.y16d{bottom:667.773333pt;}
.y11b{bottom:674.493333pt;}
.y43{bottom:677.373333pt;}
.y13d{bottom:681.693333pt;}
.y6b{bottom:688.093333pt;}
.yf9{bottom:691.773333pt;}
.y11a{bottom:692.893333pt;}
.y42{bottom:694.333333pt;}
.y16c{bottom:695.293333pt;}
.y41{bottom:711.133333pt;}
.y6a{bottom:715.773333pt;}
.y13c{bottom:716.093333pt;}
.ycd{bottom:717.213333pt;}
.yf8{bottom:719.293333pt;}
.y16b{bottom:722.973333pt;}
.y119{bottom:727.293333pt;}
.y40{bottom:728.093333pt;}
.y13b{bottom:734.493333pt;}
.y69{bottom:743.293333pt;}
.y3f{bottom:744.893333pt;}
.y118{bottom:745.693333pt;}
.yf7{bottom:746.973333pt;}
.y16a{bottom:750.493333pt;}
.y13a{bottom:768.893333pt;}
.y3e{bottom:770.013333pt;}
.y68{bottom:770.973333pt;}
.yf6{bottom:774.493333pt;}
.y169{bottom:778.173333pt;}
.y117{bottom:780.093333pt;}
.y139{bottom:787.293333pt;}
.y12{bottom:789.693333pt;}
.ybe{bottom:791.453333pt;}
.y3d{bottom:798.533333pt;}
.yf5{bottom:802.213333pt;}
.y156{bottom:805.733333pt;}
.y19a{bottom:810.853333pt;}
.y138{bottom:821.733333pt;}
.y3b{bottom:826.213333pt;}
.y3c{bottom:832.293333pt;}
.y168{bottom:833.413333pt;}
.yf4{bottom:837.733333pt;}
.y137{bottom:840.133333pt;}
.y39{bottom:853.733333pt;}
.y155{bottom:858.533333pt;}
.y3a{bottom:859.813333pt;}
.y167{bottom:860.933333pt;}
.yb2{bottom:865.733333pt;}
.yf3{bottom:873.413333pt;}
.y136{bottom:874.533333pt;}
.y37{bottom:881.413333pt;}
.y38{bottom:887.493333pt;}
.y135{bottom:892.933333pt;}
.y166{bottom:895.333333pt;}
.y36{bottom:908.933333pt;}
.y134{bottom:911.333333pt;}
.y165{bottom:929.733333pt;}
.y35{bottom:936.613333pt;}
.yb0{bottom:939.973333pt;}
.y133{bottom:945.733333pt;}
.yaf{bottom:953.413333pt;}
.y34{bottom:964.133333pt;}
.y11{bottom:966.533333pt;}
.yae{bottom:968.613333pt;}
.yad{bottom:970.213333pt;}
.yac{bottom:971.653333pt;}
.yab{bottom:973.253333pt;}
.yaa{bottom:974.693333pt;}
.ya9{bottom:976.293333pt;}
.ya8{bottom:977.893333pt;}
.y5{bottom:982.533333pt;}
.y4{bottom:998.853333pt;}
.y3{bottom:1011.653333pt;}
.y2{bottom:1093.600000pt;}
.y1{bottom:1109.760000pt;}
.h1e{height:4.547500pt;}
.h1f{height:9.280000pt;}
.h5{height:21.472000pt;}
.h3{height:25.280000pt;}
.hc{height:25.760000pt;}
.h20{height:28.421875pt;}
.h1b{height:28.687500pt;}
.h17{height:30.966562pt;}
.h12{height:31.343437pt;}
.h28{height:38.441250pt;}
.h1a{height:42.521250pt;}
.h2d{height:42.649687pt;}
.h1c{height:43.031250pt;}
.h16{height:46.218750pt;}
.ha{height:47.621250pt;}
.h4{height:47.742188pt;}
.h2e{height:49.148438pt;}
.h6{height:50.355000pt;}
.h8{height:51.519933pt;}
.h18{height:52.296250pt;}
.h19{height:52.785000pt;}
.h2{height:52.834688pt;}
.h2c{height:54.390938pt;}
.h15{height:56.843750pt;}
.h1d{height:57.375000pt;}
.h13{height:58.563750pt;}
.h24{height:64.320000pt;}
.h27{height:64.352000pt;}
.h2b{height:70.773750pt;}
.h21{height:73.600000pt;}
.h22{height:73.632000pt;}
.hf{height:81.046875pt;}
.h25{height:82.752000pt;}
.h23{height:82.880000pt;}
.h11{height:89.472000pt;}
.hd{height:96.980000pt;}
.h26{height:101.120000pt;}
.h7{height:151.546667pt;}
.h14{height:154.400000pt;}
.h10{height:161.440000pt;}
.he{height:161.466667pt;}
.h2f{height:168.000000pt;}
.hb{height:272.226667pt;}
.h2a{height:670.973333pt;}
.h9{height:1056.800000pt;}
.h29{height:1110.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:27.360000pt;}
.w5{width:35.520000pt;}
.w13{width:47.200000pt;}
.w14{width:55.840000pt;}
.w6{width:78.720000pt;}
.w12{width:112.832000pt;}
.wf{width:176.186667pt;}
.w15{width:178.946667pt;}
.w18{width:189.626667pt;}
.w16{width:216.346667pt;}
.wa{width:226.720000pt;}
.wb{width:262.400000pt;}
.we{width:285.146667pt;}
.wd{width:285.280000pt;}
.wc{width:285.346667pt;}
.w17{width:289.826667pt;}
.w9{width:290.146667pt;}
.w4{width:312.866667pt;}
.w3{width:353.373333pt;}
.w8{width:753.440000pt;}
.w7{width:754.240000pt;}
.w10{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x11{left:-1.826667pt;}
.x0{left:0.000000pt;}
.x33{left:4.320000pt;}
.x6{left:7.712000pt;}
.xa{left:8.800000pt;}
.x2c{left:10.080000pt;}
.x2a{left:11.680000pt;}
.x2e{left:15.200000pt;}
.xd{left:19.840000pt;}
.x39{left:27.999976pt;}
.xc{left:29.440000pt;}
.x17{left:33.440000pt;}
.x4{left:57.279988pt;}
.x24{left:61.279988pt;}
.x5{left:64.960000pt;}
.x18{left:73.600000pt;}
.x30{left:74.586667pt;}
.x32{left:88.960000pt;}
.x29{left:89.952000pt;}
.x19{left:100.800000pt;}
.x25{left:104.511988pt;}
.x15{left:118.333333pt;}
.x1c{left:119.871988pt;}
.x8{left:122.120000pt;}
.x14{left:142.586667pt;}
.xf{left:145.146667pt;}
.x28{left:147.066655pt;}
.x1a{left:166.440000pt;}
.x1b{left:175.546655pt;}
.x3b{left:180.040000pt;}
.x2b{left:231.426667pt;}
.x26{left:237.986655pt;}
.x23{left:249.346655pt;}
.x2d{left:279.266667pt;}
.x37{left:285.986655pt;}
.x34{left:291.426655pt;}
.x2f{left:335.746667pt;}
.x3{left:345.506655pt;}
.x13{left:361.026667pt;}
.xe{left:362.786667pt;}
.x16{left:366.173333pt;}
.x12{left:373.120000pt;}
.x10{left:390.720000pt;}
.x1d{left:392.893322pt;}
.x3a{left:405.533333pt;}
.x1{left:410.493322pt;}
.x36{left:416.893322pt;}
.x7{left:418.333333pt;}
.x1e{left:495.613322pt;}
.x31{left:515.333333pt;}
.x21{left:552.933322pt;}
.x22{left:576.453322pt;}
.x27{left:609.893322pt;}
.x35{left:623.013322pt;}
.x38{left:663.999988pt;}
.x2{left:695.359988pt;}
.xb{left:714.560000pt;}
.x1f{left:723.199976pt;}
.x20{left:728.639988pt;}
.x9{left:745.440000pt;}
}




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