
    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_fa5608f555372d6737eaafec.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ec8a28513fcdd29647bcd6dc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_34c9c0c5b1fdb7c8182f2aa7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_67ed6577bcb65ece3a77b1a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_8d9936e7e20409fd68c49727.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.166504;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_ee4019d947c78bfaeebf8a7f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.166504;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_30da518dcc2d72697763334c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_b98d6275dff3e3a905caa373.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_b3169ad05ab9f9a582728482.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f81751f8eaf9635e448f09a3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_849a379441d184788c26a0d6.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.762000px;}
.ls18{letter-spacing:-0.696000px;}
.lsb{letter-spacing:-0.648000px;}
.ls1a{letter-spacing:-0.618000px;}
.ls5{letter-spacing:-0.334200px;}
.lsd{letter-spacing:-0.267600px;}
.lsc{letter-spacing:-0.158400px;}
.ls10{letter-spacing:-0.121200px;}
.ls11{letter-spacing:-0.094800px;}
.ls1b{letter-spacing:-0.063600px;}
.ls4{letter-spacing:-0.051840px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.023040px;}
.ls19{letter-spacing:0.048960px;}
.ls7{letter-spacing:0.138000px;}
.ls1{letter-spacing:0.144720px;}
.ls15{letter-spacing:0.169800px;}
.ls3{letter-spacing:0.187200px;}
.ls17{letter-spacing:0.207360px;}
.ls12{letter-spacing:0.211680px;}
.ls16{letter-spacing:0.310800px;}
.ls6{letter-spacing:0.313800px;}
.ls13{letter-spacing:0.317400px;}
.ls1c{letter-spacing:0.319800px;}
.ls14{letter-spacing:0.360000px;}
.ls9{letter-spacing:23.345280px;}
.ls8{letter-spacing:27.665280px;}
.lse{letter-spacing:59.345280px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.ws1{word-spacing:-15.840000px;}
.ws12{word-spacing:-14.892600px;}
.ws5{word-spacing:-14.886600px;}
.wse{word-spacing:-14.742600px;}
.ws6{word-spacing:-14.710800px;}
.wsf{word-spacing:-14.621760px;}
.ws10{word-spacing:-14.595840px;}
.ws0{word-spacing:-14.572800px;}
.ws11{word-spacing:-14.509200px;}
.ws7{word-spacing:-14.414400px;}
.ws8{word-spacing:-14.305200px;}
.ws4{word-spacing:-14.238600px;}
.wsd{word-spacing:-13.464600px;}
.wsc{word-spacing:-13.160160px;}
.wsa{word-spacing:-13.147200px;}
.wsb{word-spacing:-13.026000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:3.047040px;}
._9{margin-left:-8.126400px;}
._c{margin-left:-4.644000px;}
._b{margin-left:-3.391200px;}
._0{margin-left:-1.126080px;}
._2{width:1.004400px;}
._a{width:2.527200px;}
._3{width:3.568800px;}
._d{width:5.286000px;}
._12{width:6.984000px;}
._4{width:8.519760px;}
._11{width:9.984240px;}
._14{width:11.304000px;}
._13{width:12.528000px;}
._7{width:13.941360px;}
._8{width:15.050880px;}
._1a{width:16.531200px;}
._10{width:17.640000px;}
._18{width:18.783360px;}
._17{width:20.160000px;}
._1c{width:21.528000px;}
._1d{width:22.720320px;}
._21{width:23.780160px;}
._1b{width:25.634880px;}
._e{width:26.784000px;}
._f{width:28.083600px;}
._15{width:29.376000px;}
._16{width:30.384000px;}
._19{width:32.126400px;}
._23{width:33.384960px;}
._22{width:34.444800px;}
._1f{width:35.637120px;}
._1e{width:37.028160px;}
._5{width:40.569840px;}
._6{width:42.425760px;}
._20{width:43.850880px;}
._1{width:201.403200px;}
.fc2{color:transparent;}
.fc1{color:rgb(23,54,93);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yee{bottom:3.225000px;}
.y13d{bottom:3.232500px;}
.ye3{bottom:3.240000px;}
.yf3{bottom:3.405000px;}
.ydf{bottom:3.420000px;}
.y10a{bottom:3.960000px;}
.y133{bottom:4.485000px;}
.y116{bottom:5.040000px;}
.y10c{bottom:5.220000px;}
.y132{bottom:5.385000px;}
.y120{bottom:5.400000px;}
.y12e{bottom:7.365000px;}
.y14c{bottom:7.560000px;}
.y13a{bottom:8.085000px;}
.y14e{bottom:8.280000px;}
.y12d{bottom:8.625000px;}
.y12a{bottom:8.640000px;}
.ydb{bottom:11.700000px;}
.y13e{bottom:14.212500px;}
.y102{bottom:14.220000px;}
.yed{bottom:20.865000px;}
.ye1{bottom:20.880000px;}
.ye7{bottom:20.910000px;}
.yf2{bottom:21.045000px;}
.yde{bottom:21.060000px;}
.y105{bottom:21.105000px;}
.y10e{bottom:22.320000px;}
.y130{bottom:24.825000px;}
.yf0{bottom:38.505000px;}
.ydd{bottom:38.520000px;}
.ye6{bottom:38.550000px;}
.y104{bottom:38.565000px;}
.y149{bottom:56.160000px;}
.y137{bottom:57.046500px;}
.y2d{bottom:57.420000px;}
.yd{bottom:58.176000px;}
.y122{bottom:58.320000px;}
.y107{bottom:60.840000px;}
.yc{bottom:73.656000px;}
.y136{bottom:74.686500px;}
.y111{bottom:78.480000px;}
.yb{bottom:89.136000px;}
.y127{bottom:91.290000px;}
.y135{bottom:92.326500px;}
.ya{bottom:104.616000px;}
.y17e{bottom:113.076000px;}
.y134{bottom:116.143500px;}
.y88{bottom:116.316000px;}
.y9{bottom:120.096000px;}
.yf6{bottom:120.996000px;}
.y181{bottom:126.036000px;}
.y118{bottom:134.310000px;}
.y8{bottom:135.576000px;}
.y87{bottom:135.756000px;}
.y58{bottom:136.116000px;}
.yf5{bottom:140.436000px;}
.y17d{bottom:142.056000px;}
.yb6{bottom:143.496000px;}
.y147{bottom:145.296000px;}
.y13c{bottom:145.483500px;}
.y162{bottom:146.556000px;}
.y86{bottom:155.010000px;}
.y57{bottom:155.550000px;}
.yf4{bottom:159.690000px;}
.yb5{bottom:162.930000px;}
.y13b{bottom:163.665000px;}
.y146{bottom:164.730000px;}
.y161{bottom:165.990000px;}
.y17c{bottom:171.030000px;}
.y85{bottom:174.450000px;}
.y56{bottom:174.810000px;}
.yf1{bottom:176.085000px;}
.y2b{bottom:178.770000px;}
.y139{bottom:182.025000px;}
.yb4{bottom:182.190000px;}
.y180{bottom:183.990000px;}
.y160{bottom:185.250000px;}
.y17b{bottom:190.470000px;}
.y84{bottom:193.710000px;}
.y55{bottom:194.250000px;}
.yb3{bottom:201.630000px;}
.y17f{bottom:203.430000px;}
.y15f{bottom:204.690000px;}
.y138{bottom:205.065000px;}
.y17a{bottom:209.730000px;}
.y83{bottom:212.970000px;}
.y54{bottom:213.510000px;}
.y2a{bottom:216.030000px;}
.yb2{bottom:220.890000px;}
.y12f{bottom:223.425000px;}
.y15e{bottom:223.950000px;}
.y179{bottom:229.170000px;}
.yef{bottom:229.725000px;}
.y82{bottom:232.410000px;}
.y53{bottom:232.770000px;}
.yb1{bottom:240.330000px;}
.y131{bottom:242.865000px;}
.y15d{bottom:243.390000px;}
.y178{bottom:248.430000px;}
.y81{bottom:251.670000px;}
.y52{bottom:252.210000px;}
.y29{bottom:253.830000px;}
.yb0{bottom:259.590000px;}
.yd9{bottom:261.390000px;}
.y15c{bottom:262.650000px;}
.y126{bottom:263.205000px;}
.y177{bottom:267.690000px;}
.y80{bottom:271.110000px;}
.y51{bottom:271.470000px;}
.y183{bottom:273.990000px;}
.y28{bottom:278.310000px;}
.yaf{bottom:278.850000px;}
.yd8{bottom:280.830000px;}
.y15b{bottom:281.910000px;}
.yec{bottom:283.185000px;}
.y12c{bottom:285.525000px;}
.y176{bottom:287.130000px;}
.y7f{bottom:290.370000px;}
.y50{bottom:290.910000px;}
.yae{bottom:298.290000px;}
.yd7{bottom:300.090000px;}
.y27{bottom:303.690000px;}
.y175{bottom:306.390000px;}
.y12b{bottom:309.135000px;}
.y7e{bottom:309.855000px;}
.y4f{bottom:310.215000px;}
.y15a{bottom:311.115000px;}
.y182{bottom:311.295000px;}
.yad{bottom:317.595000px;}
.yd6{bottom:319.575000px;}
.y174{bottom:325.875000px;}
.y129{bottom:327.495000px;}
.y7d{bottom:329.115000px;}
.y4e{bottom:329.655000px;}
.y159{bottom:330.375000px;}
.yeb{bottom:336.675000px;}
.yac{bottom:337.035000px;}
.yd5{bottom:338.835000px;}
.y173{bottom:345.135000px;}
.y26{bottom:345.675000px;}
.y7c{bottom:348.555000px;}
.y4d{bottom:348.915000px;}
.y158{bottom:349.815000px;}
.y128{bottom:351.075000px;}
.yab{bottom:356.295000px;}
.yd4{bottom:358.095000px;}
.y172{bottom:364.575000px;}
.y7b{bottom:367.815000px;}
.y4c{bottom:368.355000px;}
.y157{bottom:369.075000px;}
.y121{bottom:369.435000px;}
.y25{bottom:370.155000px;}
.yaa{bottom:375.735000px;}
.yd3{bottom:377.535000px;}
.y171{bottom:383.835000px;}
.y7a{bottom:387.255000px;}
.y4b{bottom:387.615000px;}
.y125{bottom:387.795000px;}
.y156{bottom:388.515000px;}
.yea{bottom:390.135000px;}
.y24{bottom:394.455000px;}
.ya9{bottom:394.995000px;}
.yd2{bottom:396.795000px;}
.y170{bottom:403.275000px;}
.y124{bottom:406.155000px;}
.y79{bottom:406.515000px;}
.y4a{bottom:407.055000px;}
.y155{bottom:407.775000px;}
.ya8{bottom:414.435000px;}
.yd1{bottom:416.235000px;}
.y23{bottom:418.755000px;}
.y16f{bottom:422.535000px;}
.y123{bottom:424.515000px;}
.y145{bottom:425.955000px;}
.y49{bottom:426.315000px;}
.y154{bottom:427.035000px;}
.ya7{bottom:433.695000px;}
.y78{bottom:435.495000px;}
.y16e{bottom:441.975000px;}
.y117{bottom:442.695000px;}
.y22{bottom:443.055000px;}
.ye9{bottom:443.775000px;}
.y144{bottom:445.215000px;}
.y48{bottom:445.755000px;}
.y153{bottom:446.475000px;}
.ya6{bottom:453.135000px;}
.yd0{bottom:454.935000px;}
.y16d{bottom:461.235000px;}
.y11f{bottom:463.035000px;}
.y77{bottom:464.655000px;}
.y47{bottom:465.015000px;}
.y152{bottom:465.735000px;}
.y21{bottom:467.355000px;}
.ya5{bottom:472.395000px;}
.ycf{bottom:474.195000px;}
.y16c{bottom:480.675000px;}
.y11e{bottom:481.395000px;}
.y76{bottom:483.915000px;}
.y46{bottom:484.455000px;}
.y151{bottom:485.175000px;}
.y20{bottom:491.475000px;}
.ya4{bottom:491.835000px;}
.yce{bottom:493.635000px;}
.ye8{bottom:497.235000px;}
.y16b{bottom:499.935000px;}
.y11d{bottom:500.295000px;}
.y75{bottom:503.175000px;}
.y45{bottom:503.715000px;}
.y150{bottom:504.435000px;}
.ya3{bottom:511.095000px;}
.ycd{bottom:512.895000px;}
.y1f{bottom:515.775000px;}
.y11c{bottom:518.655000px;}
.y74{bottom:522.615000px;}
.y44{bottom:522.975000px;}
.y14f{bottom:523.875000px;}
.ya2{bottom:530.535000px;}
.ycc{bottom:532.335000px;}
.y11b{bottom:536.835000px;}
.y1e{bottom:540.075000px;}
.y14d{bottom:540.255000px;}
.y73{bottom:541.875000px;}
.ya1{bottom:549.795000px;}
.ye5{bottom:550.695000px;}
.ycb{bottom:551.595000px;}
.y43{bottom:552.135000px;}
.y11a{bottom:555.195000px;}
.y16a{bottom:559.695000px;}
.y72{bottom:561.345000px;}
.y14b{bottom:563.505000px;}
.y1d{bottom:564.405000px;}
.ya0{bottom:569.085000px;}
.yca{bottom:571.065000px;}
.y119{bottom:573.585000px;}
.y169{bottom:578.985000px;}
.y71{bottom:580.605000px;}
.y14a{bottom:586.005000px;}
.y9f{bottom:588.525000px;}
.y1c{bottom:588.705000px;}
.y42{bottom:589.425000px;}
.yc9{bottom:590.325000px;}
.y110{bottom:591.945000px;}
.y168{bottom:598.425000px;}
.y70{bottom:600.045000px;}
.ye4{bottom:604.185000px;}
.y9e{bottom:607.785000px;}
.yc8{bottom:609.765000px;}
.y115{bottom:610.305000px;}
.y41{bottom:611.565000px;}
.y1b{bottom:613.005000px;}
.y167{bottom:617.685000px;}
.y6f{bottom:619.305000px;}
.y148{bottom:622.005000px;}
.y9d{bottom:627.225000px;}
.yc7{bottom:629.025000px;}
.y114{bottom:630.465000px;}
.y1a{bottom:637.125000px;}
.y6e{bottom:638.745000px;}
.y9c{bottom:646.485000px;}
.yc6{bottom:648.285000px;}
.y113{bottom:648.645000px;}
.y40{bottom:648.825000px;}
.y166{bottom:656.385000px;}
.ye2{bottom:657.825000px;}
.y6d{bottom:658.005000px;}
.y19{bottom:661.425000px;}
.y9b{bottom:665.925000px;}
.y112{bottom:667.005000px;}
.yc5{bottom:667.725000px;}
.y3f{bottom:671.145000px;}
.y165{bottom:675.645000px;}
.y6c{bottom:677.445000px;}
.y9a{bottom:685.185000px;}
.y10d{bottom:685.365000px;}
.y18{bottom:685.725000px;}
.yc4{bottom:686.985000px;}
.y3e{bottom:693.285000px;}
.y164{bottom:695.085000px;}
.y6b{bottom:696.705000px;}
.y10f{bottom:703.725000px;}
.y99{bottom:704.625000px;}
.yc3{bottom:706.425000px;}
.y17{bottom:710.025000px;}
.ye0{bottom:711.285000px;}
.y163{bottom:714.345000px;}
.y3d{bottom:715.605000px;}
.y6a{bottom:716.145000px;}
.y106{bottom:722.625000px;}
.y98{bottom:723.885000px;}
.yc2{bottom:725.685000px;}
.y16{bottom:734.325000px;}
.y69{bottom:735.405000px;}
.y3c{bottom:737.745000px;}
.y10b{bottom:742.965000px;}
.y97{bottom:743.325000px;}
.yc1{bottom:745.125000px;}
.y68{bottom:754.845000px;}
.y3b{bottom:760.065000px;}
.y15{bottom:760.605000px;}
.y109{bottom:761.145000px;}
.y96{bottom:762.585000px;}
.yc0{bottom:764.385000px;}
.ydc{bottom:764.745000px;}
.y67{bottom:774.105000px;}
.y108{bottom:780.045000px;}
.y95{bottom:782.025000px;}
.y3a{bottom:782.385000px;}
.ybf{bottom:783.825000px;}
.y14{bottom:787.245000px;}
.y66{bottom:793.365000px;}
.y103{bottom:798.405000px;}
.y94{bottom:801.285000px;}
.ybe{bottom:803.085000px;}
.y39{bottom:804.525000px;}
.y13{bottom:809.565000px;}
.y65{bottom:812.850000px;}
.yda{bottom:818.250000px;}
.y93{bottom:820.770000px;}
.ybd{bottom:822.570000px;}
.y38{bottom:826.890000px;}
.y12{bottom:831.750000px;}
.y64{bottom:832.110000px;}
.y92{bottom:840.030000px;}
.ybc{bottom:841.830000px;}
.y37{bottom:849.030000px;}
.y63{bottom:851.550000px;}
.y101{bottom:852.090000px;}
.y11{bottom:854.070000px;}
.ybb{bottom:861.270000px;}
.y91{bottom:869.010000px;}
.y62{bottom:870.810000px;}
.y36{bottom:871.350000px;}
.yba{bottom:880.530000px;}
.y100{bottom:884.850000px;}
.y90{bottom:888.450000px;}
.y61{bottom:890.250000px;}
.y35{bottom:893.670000px;}
.yb9{bottom:899.970000px;}
.yff{bottom:904.290000px;}
.y10{bottom:906.990000px;}
.y8f{bottom:907.710000px;}
.y60{bottom:909.510000px;}
.y34{bottom:915.810000px;}
.yb8{bottom:919.230000px;}
.yfe{bottom:923.550000px;}
.y8e{bottom:927.150000px;}
.y5f{bottom:928.950000px;}
.y33{bottom:938.130000px;}
.yb7{bottom:938.490000px;}
.yf{bottom:939.930000px;}
.yfd{bottom:942.630000px;}
.y8d{bottom:946.410000px;}
.y5e{bottom:948.210000px;}
.y143{bottom:957.930000px;}
.y32{bottom:960.270000px;}
.y8c{bottom:965.850000px;}
.y5d{bottom:967.650000px;}
.ye{bottom:972.870000px;}
.y142{bottom:977.190000px;}
.yfc{bottom:977.910000px;}
.y31{bottom:982.590000px;}
.y8b{bottom:985.110000px;}
.y5c{bottom:986.910000px;}
.yfb{bottom:995.370000px;}
.y141{bottom:996.630000px;}
.y7{bottom:1002.210000px;}
.y8a{bottom:1004.550000px;}
.y30{bottom:1004.730000px;}
.y5b{bottom:1006.350000px;}
.yfa{bottom:1013.010000px;}
.y140{bottom:1015.890000px;}
.y6{bottom:1021.650000px;}
.y89{bottom:1024.710000px;}
.y5a{bottom:1025.610000px;}
.y2f{bottom:1027.050000px;}
.yf9{bottom:1030.650000px;}
.y13f{bottom:1035.330000px;}
.y5{bottom:1040.910000px;}
.y59{bottom:1045.050000px;}
.yf8{bottom:1048.110000px;}
.y4{bottom:1060.350000px;}
.y2e{bottom:1064.340000px;}
.yf7{bottom:1065.780000px;}
.y3{bottom:1079.640000px;}
.y2{bottom:1099.080000px;}
.y1{bottom:1118.340000px;}
.y2c{bottom:1121.220000px;}
.h20{height:17.445000px;}
.h2b{height:17.452500px;}
.h18{height:17.460000px;}
.h1f{height:17.625000px;}
.h16{height:17.640000px;}
.h1e{height:17.670000px;}
.h21{height:18.165000px;}
.h17{height:18.180000px;}
.h28{height:18.705000px;}
.h1c{height:19.260000px;}
.h19{height:19.440000px;}
.h22{height:19.605000px;}
.h26{height:21.585000px;}
.h2f{height:21.780000px;}
.h2a{height:22.305000px;}
.h30{height:22.530000px;}
.h25{height:22.845000px;}
.hd{height:25.905000px;}
.h14{height:28.425000px;}
.h2c{height:28.432500px;}
.h2e{height:35.280000px;}
.h1a{height:36.540000px;}
.h27{height:39.045000px;}
.h3{height:40.843828px;}
.ha{height:46.986328px;}
.he{height:50.597578px;}
.h12{height:52.725000px;}
.h10{height:52.740000px;}
.h13{height:52.761000px;}
.hf{height:52.762500px;}
.h11{height:52.770000px;}
.h1{height:56.084062px;}
.h2{height:57.636562px;}
.h9{height:58.154062px;}
.h6{height:60.960938px;}
.h8{height:62.648438px;}
.hc{height:68.084282px;}
.hb{height:68.956875px;}
.h2d{height:70.380000px;}
.h7{height:71.324297px;}
.h23{height:72.525000px;}
.h15{height:75.060000px;}
.h5{height:86.255508px;}
.h1b{height:92.700000px;}
.h24{height:105.501000px;}
.h29{height:106.552500px;}
.h4{height:110.583984px;}
.h1d{height:148.530000px;}
.h0{height:1188.000000px;}
.w5{width:39.765000px;}
.w4{width:46.245000px;}
.wa{width:52.941000px;}
.w9{width:53.085000px;}
.wb{width:60.285000px;}
.w13{width:63.165000px;}
.w8{width:73.425000px;}
.w12{width:73.641000px;}
.w10{width:92.916000px;}
.wf{width:94.860000px;}
.w15{width:95.241000px;}
.w11{width:96.825000px;}
.w6{width:100.440000px;}
.w7{width:100.476000px;}
.w14{width:103.309500px;}
.w3{width:113.961000px;}
.wd{width:126.349500px;}
.w16{width:139.500000px;}
.we{width:148.161000px;}
.w18{width:179.655000px;}
.w17{width:186.150000px;}
.w1{width:208.513500px;}
.w2{width:329.970000px;}
.wc{width:700.650000px;}
.w0{width:918.000000px;}
.x28{left:-4.515000px;}
.x0{left:0.000000px;}
.x14{left:1.080000px;}
.x20{left:2.520000px;}
.x29{left:5.940000px;}
.xf{left:7.738500px;}
.x24{left:9.525000px;}
.x16{left:11.160000px;}
.x1d{left:12.945000px;}
.x27{left:14.565000px;}
.x2a{left:16.560000px;}
.x21{left:18.180000px;}
.x17{left:19.800000px;}
.x1e{left:21.765000px;}
.x25{left:23.385000px;}
.x12{left:25.545000px;}
.x26{left:27.525000px;}
.x23{left:28.980000px;}
.x1a{left:36.000000px;}
.x19{left:37.980000px;}
.x3a{left:39.060000px;}
.x22{left:42.120000px;}
.x3c{left:48.810000px;}
.x38{left:51.643500px;}
.x3e{left:57.630000px;}
.x3f{left:65.520000px;}
.x40{left:68.430000px;}
.x41{left:71.670000px;}
.x43{left:80.490000px;}
.xe{left:88.201500px;}
.x42{left:89.850000px;}
.x37{left:105.526500px;}
.x2b{left:108.766500px;}
.x1{left:135.036000px;}
.x5{left:140.436000px;}
.x2c{left:160.903500px;}
.xc{left:162.030000px;}
.xd{left:189.030000px;}
.x4{left:191.010000px;}
.x36{left:198.930000px;}
.x7{left:204.510000px;}
.x34{left:209.550000px;}
.x35{left:219.990000px;}
.x6{left:227.910000px;}
.x2d{left:235.845000px;}
.x33{left:241.410000px;}
.x32{left:243.030000px;}
.x3{left:262.470000px;}
.x9{left:277.230000px;}
.x10{left:297.435000px;}
.x39{left:305.715000px;}
.x8{left:320.655000px;}
.x2e{left:384.915000px;}
.x18{left:398.775000px;}
.xb{left:412.275000px;}
.x3b{left:446.115000px;}
.xa{left:459.075000px;}
.x2f{left:480.495000px;}
.x1b{left:499.980000px;}
.x1c{left:574.320000px;}
.x11{left:628.320000px;}
.x3d{left:633.000000px;}
.x30{left:671.880000px;}
.x1f{left:681.990000px;}
.x13{left:743.010000px;}
.x31{left:746.250000px;}
.x2{left:783.150000px;}
.x15{left:789.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.677333pt;}
.ls18{letter-spacing:-0.618667pt;}
.lsb{letter-spacing:-0.576000pt;}
.ls1a{letter-spacing:-0.549333pt;}
.ls5{letter-spacing:-0.297067pt;}
.lsd{letter-spacing:-0.237867pt;}
.lsc{letter-spacing:-0.140800pt;}
.ls10{letter-spacing:-0.107733pt;}
.ls11{letter-spacing:-0.084267pt;}
.ls1b{letter-spacing:-0.056533pt;}
.ls4{letter-spacing:-0.046080pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.020480pt;}
.ls19{letter-spacing:0.043520pt;}
.ls7{letter-spacing:0.122667pt;}
.ls1{letter-spacing:0.128640pt;}
.ls15{letter-spacing:0.150933pt;}
.ls3{letter-spacing:0.166400pt;}
.ls17{letter-spacing:0.184320pt;}
.ls12{letter-spacing:0.188160pt;}
.ls16{letter-spacing:0.276267pt;}
.ls6{letter-spacing:0.278933pt;}
.ls13{letter-spacing:0.282133pt;}
.ls1c{letter-spacing:0.284267pt;}
.ls14{letter-spacing:0.320000pt;}
.ls9{letter-spacing:20.751360pt;}
.ls8{letter-spacing:24.591360pt;}
.lse{letter-spacing:52.751360pt;}
.ws9{word-spacing:-58.880000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws12{word-spacing:-13.237867pt;}
.ws5{word-spacing:-13.232533pt;}
.wse{word-spacing:-13.104533pt;}
.ws6{word-spacing:-13.076267pt;}
.wsf{word-spacing:-12.997120pt;}
.ws10{word-spacing:-12.974080pt;}
.ws0{word-spacing:-12.953600pt;}
.ws11{word-spacing:-12.897067pt;}
.ws7{word-spacing:-12.812800pt;}
.ws8{word-spacing:-12.715733pt;}
.ws4{word-spacing:-12.656533pt;}
.wsd{word-spacing:-11.968533pt;}
.wsc{word-spacing:-11.697920pt;}
.wsa{word-spacing:-11.686400pt;}
.wsb{word-spacing:-11.578667pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:2.708480pt;}
._9{margin-left:-7.223467pt;}
._c{margin-left:-4.128000pt;}
._b{margin-left:-3.014400pt;}
._0{margin-left:-1.000960pt;}
._2{width:0.892800pt;}
._a{width:2.246400pt;}
._3{width:3.172267pt;}
._d{width:4.698667pt;}
._12{width:6.208000pt;}
._4{width:7.573120pt;}
._11{width:8.874880pt;}
._14{width:10.048000pt;}
._13{width:11.136000pt;}
._7{width:12.392320pt;}
._8{width:13.378560pt;}
._1a{width:14.694400pt;}
._10{width:15.680000pt;}
._18{width:16.696320pt;}
._17{width:17.920000pt;}
._1c{width:19.136000pt;}
._1d{width:20.195840pt;}
._21{width:21.137920pt;}
._1b{width:22.786560pt;}
._e{width:23.808000pt;}
._f{width:24.963200pt;}
._15{width:26.112000pt;}
._16{width:27.008000pt;}
._19{width:28.556800pt;}
._23{width:29.675520pt;}
._22{width:30.617600pt;}
._1f{width:31.677440pt;}
._1e{width:32.913920pt;}
._5{width:36.062080pt;}
._6{width:37.711787pt;}
._20{width:38.978560pt;}
._1{width:179.025067pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yee{bottom:2.866667pt;}
.y13d{bottom:2.873333pt;}
.ye3{bottom:2.880000pt;}
.yf3{bottom:3.026667pt;}
.ydf{bottom:3.040000pt;}
.y10a{bottom:3.520000pt;}
.y133{bottom:3.986667pt;}
.y116{bottom:4.480000pt;}
.y10c{bottom:4.640000pt;}
.y132{bottom:4.786667pt;}
.y120{bottom:4.800000pt;}
.y12e{bottom:6.546667pt;}
.y14c{bottom:6.720000pt;}
.y13a{bottom:7.186667pt;}
.y14e{bottom:7.360000pt;}
.y12d{bottom:7.666667pt;}
.y12a{bottom:7.680000pt;}
.ydb{bottom:10.400000pt;}
.y13e{bottom:12.633333pt;}
.y102{bottom:12.640000pt;}
.yed{bottom:18.546667pt;}
.ye1{bottom:18.560000pt;}
.ye7{bottom:18.586667pt;}
.yf2{bottom:18.706667pt;}
.yde{bottom:18.720000pt;}
.y105{bottom:18.760000pt;}
.y10e{bottom:19.840000pt;}
.y130{bottom:22.066667pt;}
.yf0{bottom:34.226667pt;}
.ydd{bottom:34.240000pt;}
.ye6{bottom:34.266667pt;}
.y104{bottom:34.280000pt;}
.y149{bottom:49.920000pt;}
.y137{bottom:50.708000pt;}
.y2d{bottom:51.040000pt;}
.yd{bottom:51.712000pt;}
.y122{bottom:51.840000pt;}
.y107{bottom:54.080000pt;}
.yc{bottom:65.472000pt;}
.y136{bottom:66.388000pt;}
.y111{bottom:69.760000pt;}
.yb{bottom:79.232000pt;}
.y127{bottom:81.146667pt;}
.y135{bottom:82.068000pt;}
.ya{bottom:92.992000pt;}
.y17e{bottom:100.512000pt;}
.y134{bottom:103.238667pt;}
.y88{bottom:103.392000pt;}
.y9{bottom:106.752000pt;}
.yf6{bottom:107.552000pt;}
.y181{bottom:112.032000pt;}
.y118{bottom:119.386667pt;}
.y8{bottom:120.512000pt;}
.y87{bottom:120.672000pt;}
.y58{bottom:120.992000pt;}
.yf5{bottom:124.832000pt;}
.y17d{bottom:126.272000pt;}
.yb6{bottom:127.552000pt;}
.y147{bottom:129.152000pt;}
.y13c{bottom:129.318667pt;}
.y162{bottom:130.272000pt;}
.y86{bottom:137.786667pt;}
.y57{bottom:138.266667pt;}
.yf4{bottom:141.946667pt;}
.yb5{bottom:144.826667pt;}
.y13b{bottom:145.480000pt;}
.y146{bottom:146.426667pt;}
.y161{bottom:147.546667pt;}
.y17c{bottom:152.026667pt;}
.y85{bottom:155.066667pt;}
.y56{bottom:155.386667pt;}
.yf1{bottom:156.520000pt;}
.y2b{bottom:158.906667pt;}
.y139{bottom:161.800000pt;}
.yb4{bottom:161.946667pt;}
.y180{bottom:163.546667pt;}
.y160{bottom:164.666667pt;}
.y17b{bottom:169.306667pt;}
.y84{bottom:172.186667pt;}
.y55{bottom:172.666667pt;}
.yb3{bottom:179.226667pt;}
.y17f{bottom:180.826667pt;}
.y15f{bottom:181.946667pt;}
.y138{bottom:182.280000pt;}
.y17a{bottom:186.426667pt;}
.y83{bottom:189.306667pt;}
.y54{bottom:189.786667pt;}
.y2a{bottom:192.026667pt;}
.yb2{bottom:196.346667pt;}
.y12f{bottom:198.600000pt;}
.y15e{bottom:199.066667pt;}
.y179{bottom:203.706667pt;}
.yef{bottom:204.200000pt;}
.y82{bottom:206.586667pt;}
.y53{bottom:206.906667pt;}
.yb1{bottom:213.626667pt;}
.y131{bottom:215.880000pt;}
.y15d{bottom:216.346667pt;}
.y178{bottom:220.826667pt;}
.y81{bottom:223.706667pt;}
.y52{bottom:224.186667pt;}
.y29{bottom:225.626667pt;}
.yb0{bottom:230.746667pt;}
.yd9{bottom:232.346667pt;}
.y15c{bottom:233.466667pt;}
.y126{bottom:233.960000pt;}
.y177{bottom:237.946667pt;}
.y80{bottom:240.986667pt;}
.y51{bottom:241.306667pt;}
.y183{bottom:243.546667pt;}
.y28{bottom:247.386667pt;}
.yaf{bottom:247.866667pt;}
.yd8{bottom:249.626667pt;}
.y15b{bottom:250.586667pt;}
.yec{bottom:251.720000pt;}
.y12c{bottom:253.800000pt;}
.y176{bottom:255.226667pt;}
.y7f{bottom:258.106667pt;}
.y50{bottom:258.586667pt;}
.yae{bottom:265.146667pt;}
.yd7{bottom:266.746667pt;}
.y27{bottom:269.946667pt;}
.y175{bottom:272.346667pt;}
.y12b{bottom:274.786667pt;}
.y7e{bottom:275.426667pt;}
.y4f{bottom:275.746667pt;}
.y15a{bottom:276.546667pt;}
.y182{bottom:276.706667pt;}
.yad{bottom:282.306667pt;}
.yd6{bottom:284.066667pt;}
.y174{bottom:289.666667pt;}
.y129{bottom:291.106667pt;}
.y7d{bottom:292.546667pt;}
.y4e{bottom:293.026667pt;}
.y159{bottom:293.666667pt;}
.yeb{bottom:299.266667pt;}
.yac{bottom:299.586667pt;}
.yd5{bottom:301.186667pt;}
.y173{bottom:306.786667pt;}
.y26{bottom:307.266667pt;}
.y7c{bottom:309.826667pt;}
.y4d{bottom:310.146667pt;}
.y158{bottom:310.946667pt;}
.y128{bottom:312.066667pt;}
.yab{bottom:316.706667pt;}
.yd4{bottom:318.306667pt;}
.y172{bottom:324.066667pt;}
.y7b{bottom:326.946667pt;}
.y4c{bottom:327.426667pt;}
.y157{bottom:328.066667pt;}
.y121{bottom:328.386667pt;}
.y25{bottom:329.026667pt;}
.yaa{bottom:333.986667pt;}
.yd3{bottom:335.586667pt;}
.y171{bottom:341.186667pt;}
.y7a{bottom:344.226667pt;}
.y4b{bottom:344.546667pt;}
.y125{bottom:344.706667pt;}
.y156{bottom:345.346667pt;}
.yea{bottom:346.786667pt;}
.y24{bottom:350.626667pt;}
.ya9{bottom:351.106667pt;}
.yd2{bottom:352.706667pt;}
.y170{bottom:358.466667pt;}
.y124{bottom:361.026667pt;}
.y79{bottom:361.346667pt;}
.y4a{bottom:361.826667pt;}
.y155{bottom:362.466667pt;}
.ya8{bottom:368.386667pt;}
.yd1{bottom:369.986667pt;}
.y23{bottom:372.226667pt;}
.y16f{bottom:375.586667pt;}
.y123{bottom:377.346667pt;}
.y145{bottom:378.626667pt;}
.y49{bottom:378.946667pt;}
.y154{bottom:379.586667pt;}
.ya7{bottom:385.506667pt;}
.y78{bottom:387.106667pt;}
.y16e{bottom:392.866667pt;}
.y117{bottom:393.506667pt;}
.y22{bottom:393.826667pt;}
.ye9{bottom:394.466667pt;}
.y144{bottom:395.746667pt;}
.y48{bottom:396.226667pt;}
.y153{bottom:396.866667pt;}
.ya6{bottom:402.786667pt;}
.yd0{bottom:404.386667pt;}
.y16d{bottom:409.986667pt;}
.y11f{bottom:411.586667pt;}
.y77{bottom:413.026667pt;}
.y47{bottom:413.346667pt;}
.y152{bottom:413.986667pt;}
.y21{bottom:415.426667pt;}
.ya5{bottom:419.906667pt;}
.ycf{bottom:421.506667pt;}
.y16c{bottom:427.266667pt;}
.y11e{bottom:427.906667pt;}
.y76{bottom:430.146667pt;}
.y46{bottom:430.626667pt;}
.y151{bottom:431.266667pt;}
.y20{bottom:436.866667pt;}
.ya4{bottom:437.186667pt;}
.yce{bottom:438.786667pt;}
.ye8{bottom:441.986667pt;}
.y16b{bottom:444.386667pt;}
.y11d{bottom:444.706667pt;}
.y75{bottom:447.266667pt;}
.y45{bottom:447.746667pt;}
.y150{bottom:448.386667pt;}
.ya3{bottom:454.306667pt;}
.ycd{bottom:455.906667pt;}
.y1f{bottom:458.466667pt;}
.y11c{bottom:461.026667pt;}
.y74{bottom:464.546667pt;}
.y44{bottom:464.866667pt;}
.y14f{bottom:465.666667pt;}
.ya2{bottom:471.586667pt;}
.ycc{bottom:473.186667pt;}
.y11b{bottom:477.186667pt;}
.y1e{bottom:480.066667pt;}
.y14d{bottom:480.226667pt;}
.y73{bottom:481.666667pt;}
.ya1{bottom:488.706667pt;}
.ye5{bottom:489.506667pt;}
.ycb{bottom:490.306667pt;}
.y43{bottom:490.786667pt;}
.y11a{bottom:493.506667pt;}
.y16a{bottom:497.506667pt;}
.y72{bottom:498.973333pt;}
.y14b{bottom:500.893333pt;}
.y1d{bottom:501.693333pt;}
.ya0{bottom:505.853333pt;}
.yca{bottom:507.613333pt;}
.y119{bottom:509.853333pt;}
.y169{bottom:514.653333pt;}
.y71{bottom:516.093333pt;}
.y14a{bottom:520.893333pt;}
.y9f{bottom:523.133333pt;}
.y1c{bottom:523.293333pt;}
.y42{bottom:523.933333pt;}
.yc9{bottom:524.733333pt;}
.y110{bottom:526.173333pt;}
.y168{bottom:531.933333pt;}
.y70{bottom:533.373333pt;}
.ye4{bottom:537.053333pt;}
.y9e{bottom:540.253333pt;}
.yc8{bottom:542.013333pt;}
.y115{bottom:542.493333pt;}
.y41{bottom:543.613333pt;}
.y1b{bottom:544.893333pt;}
.y167{bottom:549.053333pt;}
.y6f{bottom:550.493333pt;}
.y148{bottom:552.893333pt;}
.y9d{bottom:557.533333pt;}
.yc7{bottom:559.133333pt;}
.y114{bottom:560.413333pt;}
.y1a{bottom:566.333333pt;}
.y6e{bottom:567.773333pt;}
.y9c{bottom:574.653333pt;}
.yc6{bottom:576.253333pt;}
.y113{bottom:576.573333pt;}
.y40{bottom:576.733333pt;}
.y166{bottom:583.453333pt;}
.ye2{bottom:584.733333pt;}
.y6d{bottom:584.893333pt;}
.y19{bottom:587.933333pt;}
.y9b{bottom:591.933333pt;}
.y112{bottom:592.893333pt;}
.yc5{bottom:593.533333pt;}
.y3f{bottom:596.573333pt;}
.y165{bottom:600.573333pt;}
.y6c{bottom:602.173333pt;}
.y9a{bottom:609.053333pt;}
.y10d{bottom:609.213333pt;}
.y18{bottom:609.533333pt;}
.yc4{bottom:610.653333pt;}
.y3e{bottom:616.253333pt;}
.y164{bottom:617.853333pt;}
.y6b{bottom:619.293333pt;}
.y10f{bottom:625.533333pt;}
.y99{bottom:626.333333pt;}
.yc3{bottom:627.933333pt;}
.y17{bottom:631.133333pt;}
.ye0{bottom:632.253333pt;}
.y163{bottom:634.973333pt;}
.y3d{bottom:636.093333pt;}
.y6a{bottom:636.573333pt;}
.y106{bottom:642.333333pt;}
.y98{bottom:643.453333pt;}
.yc2{bottom:645.053333pt;}
.y16{bottom:652.733333pt;}
.y69{bottom:653.693333pt;}
.y3c{bottom:655.773333pt;}
.y10b{bottom:660.413333pt;}
.y97{bottom:660.733333pt;}
.yc1{bottom:662.333333pt;}
.y68{bottom:670.973333pt;}
.y3b{bottom:675.613333pt;}
.y15{bottom:676.093333pt;}
.y109{bottom:676.573333pt;}
.y96{bottom:677.853333pt;}
.yc0{bottom:679.453333pt;}
.ydc{bottom:679.773333pt;}
.y67{bottom:688.093333pt;}
.y108{bottom:693.373333pt;}
.y95{bottom:695.133333pt;}
.y3a{bottom:695.453333pt;}
.ybf{bottom:696.733333pt;}
.y14{bottom:699.773333pt;}
.y66{bottom:705.213333pt;}
.y103{bottom:709.693333pt;}
.y94{bottom:712.253333pt;}
.ybe{bottom:713.853333pt;}
.y39{bottom:715.133333pt;}
.y13{bottom:719.613333pt;}
.y65{bottom:722.533333pt;}
.yda{bottom:727.333333pt;}
.y93{bottom:729.573333pt;}
.ybd{bottom:731.173333pt;}
.y38{bottom:735.013333pt;}
.y12{bottom:739.333333pt;}
.y64{bottom:739.653333pt;}
.y92{bottom:746.693333pt;}
.ybc{bottom:748.293333pt;}
.y37{bottom:754.693333pt;}
.y63{bottom:756.933333pt;}
.y101{bottom:757.413333pt;}
.y11{bottom:759.173333pt;}
.ybb{bottom:765.573333pt;}
.y91{bottom:772.453333pt;}
.y62{bottom:774.053333pt;}
.y36{bottom:774.533333pt;}
.yba{bottom:782.693333pt;}
.y100{bottom:786.533333pt;}
.y90{bottom:789.733333pt;}
.y61{bottom:791.333333pt;}
.y35{bottom:794.373333pt;}
.yb9{bottom:799.973333pt;}
.yff{bottom:803.813333pt;}
.y10{bottom:806.213333pt;}
.y8f{bottom:806.853333pt;}
.y60{bottom:808.453333pt;}
.y34{bottom:814.053333pt;}
.yb8{bottom:817.093333pt;}
.yfe{bottom:820.933333pt;}
.y8e{bottom:824.133333pt;}
.y5f{bottom:825.733333pt;}
.y33{bottom:833.893333pt;}
.yb7{bottom:834.213333pt;}
.yf{bottom:835.493333pt;}
.yfd{bottom:837.893333pt;}
.y8d{bottom:841.253333pt;}
.y5e{bottom:842.853333pt;}
.y143{bottom:851.493333pt;}
.y32{bottom:853.573333pt;}
.y8c{bottom:858.533333pt;}
.y5d{bottom:860.133333pt;}
.ye{bottom:864.773333pt;}
.y142{bottom:868.613333pt;}
.yfc{bottom:869.253333pt;}
.y31{bottom:873.413333pt;}
.y8b{bottom:875.653333pt;}
.y5c{bottom:877.253333pt;}
.yfb{bottom:884.773333pt;}
.y141{bottom:885.893333pt;}
.y7{bottom:890.853333pt;}
.y8a{bottom:892.933333pt;}
.y30{bottom:893.093333pt;}
.y5b{bottom:894.533333pt;}
.yfa{bottom:900.453333pt;}
.y140{bottom:903.013333pt;}
.y6{bottom:908.133333pt;}
.y89{bottom:910.853333pt;}
.y5a{bottom:911.653333pt;}
.y2f{bottom:912.933333pt;}
.yf9{bottom:916.133333pt;}
.y13f{bottom:920.293333pt;}
.y5{bottom:925.253333pt;}
.y59{bottom:928.933333pt;}
.yf8{bottom:931.653333pt;}
.y4{bottom:942.533333pt;}
.y2e{bottom:946.080000pt;}
.yf7{bottom:947.360000pt;}
.y3{bottom:959.680000pt;}
.y2{bottom:976.960000pt;}
.y1{bottom:994.080000pt;}
.y2c{bottom:996.640000pt;}
.h20{height:15.506667pt;}
.h2b{height:15.513333pt;}
.h18{height:15.520000pt;}
.h1f{height:15.666667pt;}
.h16{height:15.680000pt;}
.h1e{height:15.706667pt;}
.h21{height:16.146667pt;}
.h17{height:16.160000pt;}
.h28{height:16.626667pt;}
.h1c{height:17.120000pt;}
.h19{height:17.280000pt;}
.h22{height:17.426667pt;}
.h26{height:19.186667pt;}
.h2f{height:19.360000pt;}
.h2a{height:19.826667pt;}
.h30{height:20.026667pt;}
.h25{height:20.306667pt;}
.hd{height:23.026667pt;}
.h14{height:25.266667pt;}
.h2c{height:25.273333pt;}
.h2e{height:31.360000pt;}
.h1a{height:32.480000pt;}
.h27{height:34.706667pt;}
.h3{height:36.305625pt;}
.ha{height:41.765625pt;}
.he{height:44.975625pt;}
.h12{height:46.866667pt;}
.h10{height:46.880000pt;}
.h13{height:46.898667pt;}
.hf{height:46.900000pt;}
.h11{height:46.906667pt;}
.h1{height:49.852500pt;}
.h2{height:51.232500pt;}
.h9{height:51.692500pt;}
.h6{height:54.187500pt;}
.h8{height:55.687500pt;}
.hc{height:60.519362pt;}
.hb{height:61.295000pt;}
.h2d{height:62.560000pt;}
.h7{height:63.399375pt;}
.h23{height:64.466667pt;}
.h15{height:66.720000pt;}
.h5{height:76.671562pt;}
.h1b{height:82.400000pt;}
.h24{height:93.778667pt;}
.h29{height:94.713333pt;}
.h4{height:98.296875pt;}
.h1d{height:132.026667pt;}
.h0{height:1056.000000pt;}
.w5{width:35.346667pt;}
.w4{width:41.106667pt;}
.wa{width:47.058667pt;}
.w9{width:47.186667pt;}
.wb{width:53.586667pt;}
.w13{width:56.146667pt;}
.w8{width:65.266667pt;}
.w12{width:65.458667pt;}
.w10{width:82.592000pt;}
.wf{width:84.320000pt;}
.w15{width:84.658667pt;}
.w11{width:86.066667pt;}
.w6{width:89.280000pt;}
.w7{width:89.312000pt;}
.w14{width:91.830667pt;}
.w3{width:101.298667pt;}
.wd{width:112.310667pt;}
.w16{width:124.000000pt;}
.we{width:131.698667pt;}
.w18{width:159.693333pt;}
.w17{width:165.466667pt;}
.w1{width:185.345333pt;}
.w2{width:293.306667pt;}
.wc{width:622.800000pt;}
.w0{width:816.000000pt;}
.x28{left:-4.013333pt;}
.x0{left:0.000000pt;}
.x14{left:0.960000pt;}
.x20{left:2.240000pt;}
.x29{left:5.280000pt;}
.xf{left:6.878667pt;}
.x24{left:8.466667pt;}
.x16{left:9.920000pt;}
.x1d{left:11.506667pt;}
.x27{left:12.946667pt;}
.x2a{left:14.720000pt;}
.x21{left:16.160000pt;}
.x17{left:17.600000pt;}
.x1e{left:19.346667pt;}
.x25{left:20.786667pt;}
.x12{left:22.706667pt;}
.x26{left:24.466667pt;}
.x23{left:25.760000pt;}
.x1a{left:32.000000pt;}
.x19{left:33.760000pt;}
.x3a{left:34.720000pt;}
.x22{left:37.440000pt;}
.x3c{left:43.386667pt;}
.x38{left:45.905333pt;}
.x3e{left:51.226667pt;}
.x3f{left:58.240000pt;}
.x40{left:60.826667pt;}
.x41{left:63.706667pt;}
.x43{left:71.546667pt;}
.xe{left:78.401333pt;}
.x42{left:79.866667pt;}
.x37{left:93.801333pt;}
.x2b{left:96.681333pt;}
.x1{left:120.032000pt;}
.x5{left:124.832000pt;}
.x2c{left:143.025333pt;}
.xc{left:144.026667pt;}
.xd{left:168.026667pt;}
.x4{left:169.786667pt;}
.x36{left:176.826667pt;}
.x7{left:181.786667pt;}
.x34{left:186.266667pt;}
.x35{left:195.546667pt;}
.x6{left:202.586667pt;}
.x2d{left:209.640000pt;}
.x33{left:214.586667pt;}
.x32{left:216.026667pt;}
.x3{left:233.306667pt;}
.x9{left:246.426667pt;}
.x10{left:264.386667pt;}
.x39{left:271.746667pt;}
.x8{left:285.026667pt;}
.x2e{left:342.146667pt;}
.x18{left:354.466667pt;}
.xb{left:366.466667pt;}
.x3b{left:396.546667pt;}
.xa{left:408.066667pt;}
.x2f{left:427.106667pt;}
.x1b{left:444.426667pt;}
.x1c{left:510.506667pt;}
.x11{left:558.506667pt;}
.x3d{left:562.666667pt;}
.x30{left:597.226667pt;}
.x1f{left:606.213333pt;}
.x13{left:660.453333pt;}
.x31{left:663.333333pt;}
.x2{left:696.133333pt;}
.x15{left:702.213333pt;}
}




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