
    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_6db73d4f7cfa86a6e63d37a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_bd17a2293597075d1f7ad776.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_84c67c6e463b405fee4721ea.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0bde11b90f9df8c159aa65eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_7035c3da2659f0daf37e0459.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_bff75a51456e17c378e84022.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.037109;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_f38bd27fb64129b1e2cccb75.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.724609;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_0d474b71eb3cc6b5259b98f5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0ddc3db2c5c5911dbfa98824.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_c9879769461687fc6f21515f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.858398;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_a80c8a12ab7473169e501f8e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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);}
.v2{vertical-align:-24.120000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.087840px;}
.ls10{letter-spacing:0.095040px;}
.ls5{letter-spacing:0.114480px;}
.ls16{letter-spacing:0.231120px;}
.ls8{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.311120px;}
.lsa{letter-spacing:2.031120px;}
.ls12{letter-spacing:3.600000px;}
.lsc{letter-spacing:5.760000px;}
.lse{letter-spacing:8.151120px;}
.ls11{letter-spacing:10.671120px;}
.lsb{letter-spacing:11.391120px;}
.ls15{letter-spacing:11.751120px;}
.ls9{letter-spacing:15.984000px;}
.ls6{letter-spacing:17.151120px;}
.ls4{letter-spacing:19.944000px;}
.ls3{letter-spacing:28.584000px;}
.ls1{letter-spacing:33.264000px;}
.ls14{letter-spacing:33.984000px;}
.ls13{letter-spacing:37.944000px;}
.ls17{letter-spacing:41.544000px;}
.ls18{letter-spacing:54.864000px;}
.lsd{letter-spacing:196.560000px;}
.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;}
}
.ws8{word-spacing:-43.200000px;}
.ws4{word-spacing:-36.072000px;}
.ws2{word-spacing:-15.912000px;}
.ws1{word-spacing:-15.840000px;}
.ws7{word-spacing:-13.587120px;}
.ws5{word-spacing:-10.533600px;}
.ws3{word-spacing:-9.519120px;}
.ws6{word-spacing:-8.786880px;}
.ws0{word-spacing:0.000000px;}
._13{margin-left:-13.968000px;}
._2{margin-left:-6.768000px;}
._23{margin-left:-4.895280px;}
._12{margin-left:-3.888000px;}
._6{margin-left:-2.519280px;}
._0{margin-left:-1.008720px;}
._5{width:1.038960px;}
._1{width:2.145240px;}
._9{width:3.528000px;}
._11{width:4.536720px;}
._e{width:5.544000px;}
._17{width:6.696000px;}
._d{width:8.136720px;}
._c{width:9.288000px;}
._10{width:10.584000px;}
._a{width:11.592000px;}
._f{width:13.320000px;}
._14{width:14.328000px;}
._1b{width:15.834960px;}
._b{width:16.848000px;}
._15{width:18.648000px;}
._1c{width:20.088000px;}
._16{width:21.096000px;}
._18{width:22.106880px;}
._8{width:23.256000px;}
._7{width:24.912000px;}
._1f{width:26.136000px;}
._19{width:27.360000px;}
._21{width:28.481760px;}
._20{width:29.592000px;}
._1a{width:30.600000px;}
._24{width:31.824000px;}
._25{width:32.832000px;}
._26{width:34.344000px;}
._2b{width:35.352720px;}
._3{width:36.504000px;}
._4{width:37.728000px;}
._2c{width:38.736000px;}
._1e{width:41.760000px;}
._1d{width:42.840000px;}
._22{width:46.746360px;}
._27{width:48.672000px;}
._29{width:50.256000px;}
._28{width:51.264000px;}
._2a{width:73.512000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs8{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs5{font-size:47.880000px;}
.fs7{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.120000px;}
.fs4{font-size:119.880000px;}
.fs3{font-size:168.120000px;}
.y0{bottom:0.000000px;}
.y2{bottom:0.044700px;}
.y3{bottom:4.319940px;}
.y1{bottom:24.524700px;}
.y129{bottom:110.384700px;}
.ye5{bottom:110.385000px;}
.y21e{bottom:120.555000px;}
.yb9{bottom:121.725000px;}
.y149{bottom:122.985000px;}
.y21c{bottom:125.145000px;}
.y1e8{bottom:128.654700px;}
.y17c{bottom:128.655000px;}
.y100{bottom:130.095000px;}
.y93{bottom:132.255000px;}
.y50{bottom:136.665000px;}
.y128{bottom:141.344700px;}
.ye4{bottom:141.345000px;}
.y111{bottom:141.435000px;}
.y148{bottom:141.885000px;}
.y77{bottom:142.065000px;}
.yb8{bottom:144.495000px;}
.y33{bottom:144.675000px;}
.y1e7{bottom:147.014700px;}
.y190{bottom:147.015000px;}
.y15{bottom:148.545000px;}
.y17b{bottom:152.235000px;}
.yff{bottom:152.865000px;}
.y21d{bottom:155.295000px;}
.y15b{bottom:159.975000px;}
.ye3{bottom:160.245000px;}
.y147{bottom:160.875000px;}
.y110{bottom:164.205000px;}
.y76{bottom:164.835000px;}
.y18f{bottom:165.285000px;}
.y17a{bottom:165.645000px;}
.y92{bottom:166.995000px;}
.yb7{bottom:167.265000px;}
.y4f{bottom:171.405000px;}
.yfe{bottom:175.635000px;}
.ye2{bottom:179.235000px;}
.y18e{bottom:183.555000px;}
.y32{bottom:186.975000px;}
.y1e6{bottom:188.775000px;}
.yb6{bottom:190.035000px;}
.y14{bottom:190.845000px;}
.y1f0{bottom:191.295000px;}
.y146{bottom:191.925000px;}
.y21b{bottom:194.715000px;}
.ye1{bottom:198.135000px;}
.y75{bottom:199.665000px;}
.y179{bottom:200.835000px;}
.y91{bottom:201.825000px;}
.y18d{bottom:201.915000px;}
.y163{bottom:202.095000px;}
.y206{bottom:202.185000px;}
.y4e{bottom:206.235000px;}
.y210{bottom:207.135000px;}
.yfd{bottom:210.375000px;}
.y145{bottom:210.825000px;}
.y182{bottom:212.895000px;}
.y1ef{bottom:214.065000px;}
.ye0{bottom:217.125000px;}
.y10f{bottom:217.755000px;}
.y18c{bottom:220.185000px;}
.y20f{bottom:220.545000px;}
.y74{bottom:222.435000px;}
.y178{bottom:223.605000px;}
.yb5{bottom:224.865000px;}
.y15a{bottom:227.025000px;}
.y127{bottom:229.275000px;}
.y31{bottom:229.365000px;}
.y21a{bottom:229.455000px;}
.y144{bottom:229.815000px;}
.y13{bottom:235.125000px;}
.y181{bottom:235.665000px;}
.ydf{bottom:236.115000px;}
.y90{bottom:236.565000px;}
.y205{bottom:238.095000px;}
.y18b{bottom:238.545000px;}
.y4d{bottom:240.975000px;}
.y1e5{bottom:243.765000px;}
.yfc{bottom:245.115000px;}
.y73{bottom:245.205000px;}
.y177{bottom:246.375000px;}
.yb4{bottom:247.635000px;}
.y126{bottom:248.085000px;}
.y143{bottom:248.805000px;}
.y1ee{bottom:248.895000px;}
.yde{bottom:255.105000px;}
.y18a{bottom:256.815000px;}
.y1e4{bottom:257.175000px;}
.y180{bottom:258.435000px;}
.y204{bottom:260.865000px;}
.y159{bottom:261.855000px;}
.y219{bottom:264.285000px;}
.y125{bottom:267.075000px;}
.y142{bottom:267.795000px;}
.yfb{bottom:267.885000px;}
.y176{bottom:269.145000px;}
.yb3{bottom:270.405000px;}
.y8f{bottom:271.395000px;}
.y1ed{bottom:271.665000px;}
.y30{bottom:271.755000px;}
.y20e{bottom:272.835000px;}
.ydd{bottom:274.095000px;}
.y189{bottom:275.175000px;}
.y4c{bottom:275.805000px;}
.y72{bottom:279.945000px;}
.y17f{bottom:281.205000px;}
.y203{bottom:283.635000px;}
.y12{bottom:285.165000px;}
.y124{bottom:286.065000px;}
.y141{bottom:286.785000px;}
.yfa{bottom:290.655000px;}
.y175{bottom:291.915000px;}
.yb2{bottom:293.175000px;}
.y188{bottom:293.445000px;}
.y1ec{bottom:294.435000px;}
.y20d{bottom:295.605000px;}
.y158{bottom:296.595000px;}
.y218{bottom:299.025000px;}
.ydc{bottom:300.375000px;}
.y71{bottom:302.715000px;}
.y1e3{bottom:303.975000px;}
.y10e{bottom:305.145000px;}
.y8e{bottom:306.135000px;}
.y202{bottom:306.405000px;}
.y4b{bottom:310.545000px;}
.y187{bottom:311.805000px;}
.yf9{bottom:313.425000px;}
.y2f{bottom:314.055000px;}
.ydb{bottom:314.235000px;}
.y174{bottom:314.685000px;}
.yb1{bottom:315.945000px;}
.y1d8{bottom:317.025000px;}
.y123{bottom:317.115000px;}
.y1eb{bottom:317.205000px;}
.y140{bottom:317.835000px;}
.y20c{bottom:318.375000px;}
.y70{bottom:325.485000px;}
.y1e2{bottom:326.745000px;}
.y10d{bottom:327.915000px;}
.y201{bottom:329.175000px;}
.y186{bottom:330.075000px;}
.y1d4{bottom:330.435000px;}
.y157{bottom:331.335000px;}
.y217{bottom:333.855000px;}
.y11{bottom:335.115000px;}
.y122{bottom:336.015000px;}
.yf8{bottom:336.195000px;}
.y13f{bottom:336.735000px;}
.y173{bottom:337.455000px;}
.yb0{bottom:338.715000px;}
.y1ea{bottom:339.975000px;}
.y8d{bottom:340.875000px;}
.y20b{bottom:341.145000px;}
.yda{bottom:345.195000px;}
.y4a{bottom:345.285000px;}
.y185{bottom:348.345000px;}
.y1e1{bottom:349.515000px;}
.y10c{bottom:350.685000px;}
.y200{bottom:351.945000px;}
.y13e{bottom:355.725000px;}
.y2e{bottom:356.445000px;}
.yf7{bottom:359.055000px;}
.y6f{bottom:360.225000px;}
.y162{bottom:361.485000px;}
.y121{bottom:362.385000px;}
.y1e9{bottom:362.745000px;}
.y20a{bottom:363.915000px;}
.yd9{bottom:364.095000px;}
.y156{bottom:366.165000px;}
.y1a9{bottom:366.705000px;}
.y216{bottom:368.595000px;}
.y184{bottom:371.925000px;}
.y172{bottom:372.285000px;}
.yaf{bottom:373.455000px;}
.y13d{bottom:374.625000px;}
.y1ff{bottom:374.715000px;}
.y8c{bottom:375.705000px;}
.y120{bottom:376.515000px;}
.y49{bottom:380.115000px;}
.yf6{bottom:381.825000px;}
.y6e{bottom:382.995000px;}
.yd8{bottom:383.085000px;}
.y161{bottom:384.255000px;}
.y1a8{bottom:384.975000px;}
.y10{bottom:385.065000px;}
.y183{bottom:385.335000px;}
.y10b{bottom:385.515000px;}
.y209{bottom:386.685000px;}
.y13c{bottom:393.615000px;}
.y171{bottom:395.055000px;}
.yae{bottom:396.225000px;}
.y1fe{bottom:397.485000px;}
.y2d{bottom:398.835000px;}
.y155{bottom:400.905000px;}
.yd7{bottom:402.075000px;}
.y1b4{bottom:403.335000px;}
.yf5{bottom:404.595000px;}
.y6d{bottom:405.855000px;}
.y17e{bottom:407.025000px;}
.y10a{bottom:408.285000px;}
.y1a7{bottom:408.555000px;}
.y208{bottom:409.455000px;}
.y8b{bottom:410.445000px;}
.y11f{bottom:412.695000px;}
.y48{bottom:414.855000px;}
.y170{bottom:417.825000px;}
.yad{bottom:418.995000px;}
.yd6{bottom:420.975000px;}
.y1a6{bottom:421.605000px;}
.y1d9{bottom:421.965000px;}
.y13b{bottom:424.665000px;}
.yf{bottom:428.355000px;}
.y6c{bottom:428.625000px;}
.y17d{bottom:429.795000px;}
.y109{bottom:431.055000px;}
.y1fd{bottom:432.225000px;}
.y11e{bottom:435.465000px;}
.y154{bottom:435.645000px;}
.y215{bottom:438.165000px;}
.yf4{bottom:439.335000px;}
.y1a5{bottom:439.965000px;}
.y16f{bottom:440.595000px;}
.y2c{bottom:441.225000px;}
.y160{bottom:441.855000px;}
.y1d3{bottom:443.025000px;}
.y13a{bottom:443.565000px;}
.y8a{bottom:445.185000px;}
.yd5{bottom:447.345000px;}
.y47{bottom:449.595000px;}
.y6b{bottom:451.395000px;}
.y1e0{bottom:452.565000px;}
.yac{bottom:453.825000px;}
.y1fc{bottom:454.995000px;}
.y236{bottom:455.535000px;}
.y11d{bottom:458.235000px;}
.yd4{bottom:461.475000px;}
.y139{bottom:462.555000px;}
.y15f{bottom:464.625000px;}
.y1d2{bottom:465.795000px;}
.y153{bottom:470.475000px;}
.y214{bottom:472.905000px;}
.yf3{bottom:474.075000px;}
.y16e{bottom:475.335000px;}
.yab{bottom:476.595000px;}
.y1fb{bottom:477.855000px;}
.y89{bottom:480.015000px;}
.y11c{bottom:481.095000px;}
.y2b{bottom:483.525000px;}
.y46{bottom:484.425000px;}
.y6a{bottom:486.135000px;}
.y15e{bottom:487.395000px;}
.y1d1{bottom:488.565000px;}
.y235{bottom:490.275000px;}
.y138{bottom:493.605000px;}
.y1a4{bottom:494.865000px;}
.y16d{bottom:498.105000px;}
.yaa{bottom:499.365000px;}
.y1fa{bottom:500.625000px;}
.yf2{bottom:504.765000px;}
.y152{bottom:505.215000px;}
.y213{bottom:507.645000px;}
.y69{bottom:508.905000px;}
.y15d{bottom:510.165000px;}
.y1d0{bottom:511.335000px;}
.y137{bottom:512.505000px;}
.y1a3{bottom:513.225000px;}
.y88{bottom:514.755000px;}
.y11b{bottom:515.835000px;}
.y45{bottom:519.165000px;}
.y1df{bottom:520.875000px;}
.ya9{bottom:522.135000px;}
.y1f9{bottom:523.395000px;}
.yd3{bottom:524.565000px;}
.y234{bottom:525.015000px;}
.y2a{bottom:525.915000px;}
.y136{bottom:531.495000px;}
.y68{bottom:531.675000px;}
.y1b3{bottom:531.855000px;}
.y16c{bottom:532.935000px;}
.y1cf{bottom:534.105000px;}
.y11a{bottom:538.605000px;}
.y151{bottom:539.955000px;}
.y212{bottom:542.475000px;}
.y1de{bottom:543.645000px;}
.ya8{bottom:544.905000px;}
.y1f8{bottom:546.165000px;}
.yd2{bottom:547.335000px;}
.y233{bottom:548.775000px;}
.y87{bottom:549.585000px;}
.y1a2{bottom:549.765000px;}
.y135{bottom:550.485000px;}
.y44{bottom:553.995000px;}
.y67{bottom:554.445000px;}
.y16b{bottom:555.705000px;}
.y1ce{bottom:556.875000px;}
.y119{bottom:561.375000px;}
.y1dd{bottom:566.415000px;}
.ya7{bottom:567.675000px;}
.y1a1{bottom:568.125000px;}
.y29{bottom:568.305000px;}
.y1f7{bottom:568.935000px;}
.y134{bottom:569.475000px;}
.yd1{bottom:570.105000px;}
.y232{bottom:572.535000px;}
.y150{bottom:574.785000px;}
.y66{bottom:577.215000px;}
.y16a{bottom:578.475000px;}
.y1cd{bottom:579.645000px;}
.y207{bottom:580.905000px;}
.y118{bottom:584.145000px;}
.y86{bottom:584.325000px;}
.y1a0{bottom:586.395000px;}
.y133{bottom:588.465000px;}
.y43{bottom:588.735000px;}
.ya6{bottom:590.445000px;}
.yd0{bottom:592.875000px;}
.y231{bottom:596.385000px;}
.y65{bottom:599.985000px;}
.y169{bottom:601.245000px;}
.y1cc{bottom:602.415000px;}
.y1f6{bottom:603.675000px;}
.y19f{bottom:604.755000px;}
.y132{bottom:607.455000px;}
.y14f{bottom:609.525000px;}
.y28{bottom:610.605000px;}
.y211{bottom:611.955000px;}
.ya5{bottom:613.215000px;}
.y117{bottom:614.925000px;}
.ycf{bottom:615.645000px;}
.y85{bottom:619.065000px;}
.y230{bottom:620.145000px;}
.y19e{bottom:623.025000px;}
.y42{bottom:623.475000px;}
.y168{bottom:624.015000px;}
.y1f5{bottom:626.445000px;}
.y1d6{bottom:628.245000px;}
.y64{bottom:634.725000px;}
.y108{bottom:635.985000px;}
.y1b2{bottom:637.245000px;}
.yce{bottom:638.415000px;}
.y131{bottom:638.505000px;}
.y19d{bottom:641.385000px;}
.y1d5{bottom:641.655000px;}
.y22f{bottom:643.905000px;}
.y14e{bottom:644.355000px;}
.y167{bottom:646.785000px;}
.ya4{bottom:647.955000px;}
.y1f4{bottom:649.215000px;}
.y27{bottom:652.995000px;}
.y84{bottom:653.895000px;}
.y130{bottom:657.405000px;}
.y63{bottom:657.585000px;}
.y41{bottom:658.305000px;}
.y107{bottom:658.755000px;}
.y19c{bottom:659.655000px;}
.y1b1{bottom:660.015000px;}
.ycd{bottom:661.185000px;}
.y22e{bottom:667.665000px;}
.y166{bottom:669.555000px;}
.ya3{bottom:670.725000px;}
.y1f3{bottom:671.985000px;}
.y12f{bottom:676.395000px;}
.y19b{bottom:678.015000px;}
.y14d{bottom:679.095000px;}
.y62{bottom:680.355000px;}
.y40{bottom:681.075000px;}
.y106{bottom:681.525000px;}
.y1b0{bottom:682.785000px;}
.ycc{bottom:683.955000px;}
.ye{bottom:686.025000px;}
.y83{bottom:688.635000px;}
.y22d{bottom:691.425000px;}
.y165{bottom:692.325000px;}
.ya2{bottom:693.585000px;}
.y1f2{bottom:694.755000px;}
.y26{bottom:695.385000px;}
.y19a{bottom:696.285000px;}
.y61{bottom:703.125000px;}
.y1af{bottom:705.555000px;}
.ycb{bottom:706.725000px;}
.y12e{bottom:707.445000px;}
.y14c{bottom:713.835000px;}
.y199{bottom:714.555000px;}
.y164{bottom:715.095000px;}
.y22c{bottom:715.185000px;}
.y3f{bottom:715.815000px;}
.ya1{bottom:716.355000px;}
.y1f1{bottom:717.525000px;}
.y82{bottom:723.375000px;}
.y12d{bottom:726.345000px;}
.y116{bottom:727.065000px;}
.y1ae{bottom:728.325000px;}
.yca{bottom:729.585000px;}
.y198{bottom:732.915000px;}
.yd{bottom:735.975000px;}
.y25{bottom:737.775000px;}
.y60{bottom:737.865000px;}
.y3e{bottom:738.585000px;}
.y22b{bottom:738.945000px;}
.ya0{bottom:739.125000px;}
.y1d7{bottom:740.295000px;}
.y14b{bottom:748.665000px;}
.y115{bottom:749.835000px;}
.y1cb{bottom:751.095000px;}
.y197{bottom:751.185000px;}
.yc9{bottom:752.355000px;}
.y12c{bottom:752.625000px;}
.y1b7{bottom:756.405000px;}
.y81{bottom:758.205000px;}
.y5f{bottom:760.635000px;}
.y3d{bottom:761.355000px;}
.y105{bottom:761.895000px;}
.y22a{bottom:762.705000px;}
.y1ad{bottom:763.065000px;}
.y12b{bottom:766.755000px;}
.y196{bottom:769.545000px;}
.y1b6{bottom:769.815000px;}
.y114{bottom:772.605000px;}
.y9f{bottom:773.865000px;}
.yc{bottom:773.955000px;}
.yc8{bottom:775.125000px;}
.y24{bottom:778.275000px;}
.y5e{bottom:783.405000px;}
.y15c{bottom:784.665000px;}
.y1ac{bottom:785.835000px;}
.y195{bottom:787.815000px;}
.y80{bottom:792.945000px;}
.y113{bottom:795.375000px;}
.y3c{bottom:796.095000px;}
.y9e{bottom:796.635000px;}
.yc7{bottom:797.895000px;}
.y229{bottom:798.435000px;}
.y23{bottom:801.045000px;}
.y1ca{bottom:806.175000px;}
.y1b5{bottom:807.435000px;}
.y1ab{bottom:808.605000px;}
.y194{bottom:811.395000px;}
.y5d{bottom:818.145000px;}
.y3b{bottom:818.865000px;}
.y9d{bottom:819.405000px;}
.yf1{bottom:819.855000px;}
.yc6{bottom:820.665000px;}
.y22{bottom:823.815000px;}
.y1c9{bottom:824.445000px;}
.y193{bottom:824.805000px;}
.y7f{bottom:827.685000px;}
.yb{bottom:827.775000px;}
.y112{bottom:830.205000px;}
.y1aa{bottom:831.375000px;}
.y228{bottom:833.265000px;}
.y5c{bottom:840.915000px;}
.yf0{bottom:841.005000px;}
.y9c{bottom:842.175000px;}
.y1c8{bottom:842.805000px;}
.yc5{bottom:843.435000px;}
.y21{bottom:846.585000px;}
.y14a{bottom:852.975000px;}
.y3a{bottom:853.695000px;}
.y192{bottom:854.145000px;}
.y227{bottom:857.025000px;}
.y1c7{bottom:861.075000px;}
.yef{bottom:862.065000px;}
.y7e{bottom:862.515000px;}
.y5b{bottom:863.685000px;}
.y9b{bottom:864.945000px;}
.yc4{bottom:866.205000px;}
.y20{bottom:869.355000px;}
.y12a{bottom:875.745000px;}
.y191{bottom:876.915000px;}
.y1c6{bottom:879.435000px;}
.y226{bottom:880.785000px;}
.yee{bottom:883.215000px;}
.y1dc{bottom:886.545000px;}
.y104{bottom:887.715000px;}
.y39{bottom:888.435000px;}
.yc3{bottom:888.975000px;}
.y1f{bottom:892.125000px;}
.ya{bottom:892.845000px;}
.y7d{bottom:897.255000px;}
.y1c5{bottom:897.705000px;}
.y5a{bottom:898.515000px;}
.y9a{bottom:899.685000px;}
.yed{bottom:904.275000px;}
.y225{bottom:904.545000px;}
.y1db{bottom:909.315000px;}
.y103{bottom:910.485000px;}
.yc2{bottom:911.745000px;}
.y1e{bottom:914.895000px;}
.y1c4{bottom:915.975000px;}
.y59{bottom:921.285000px;}
.y99{bottom:922.545000px;}
.y38{bottom:923.265000px;}
.yec{bottom:925.425000px;}
.y224{bottom:928.305000px;}
.y7c{bottom:932.085000px;}
.y102{bottom:933.255000px;}
.y1c3{bottom:934.335000px;}
.yc1{bottom:934.515000px;}
.y1d{bottom:937.665000px;}
.y58{bottom:944.055000px;}
.y98{bottom:945.315000px;}
.y9{bottom:950.445000px;}
.y223{bottom:951.075000px;}
.y1c2{bottom:952.605000px;}
.yeb{bottom:955.305000px;}
.y101{bottom:956.025000px;}
.yc0{bottom:957.285000px;}
.y37{bottom:958.005000px;}
.y1c{bottom:960.435000px;}
.y7b{bottom:966.825000px;}
.y97{bottom:968.085000px;}
.y1c1{bottom:970.965000px;}
.y222{bottom:974.835000px;}
.yea{bottom:976.005000px;}
.y57{bottom:978.795000px;}
.ybf{bottom:980.055000px;}
.y1b{bottom:983.205000px;}
.y8{bottom:985.185000px;}
.y1c0{bottom:989.235000px;}
.y1da{bottom:989.595000px;}
.y96{bottom:990.855000px;}
.y36{bottom:992.745000px;}
.ye9{bottom:996.705000px;}
.y221{bottom:998.595000px;}
.y56{bottom:1001.565000px;}
.ybe{bottom:1002.825000px;}
.y1a{bottom:1005.975000px;}
.y1bf{bottom:1007.595000px;}
.y95{bottom:1013.625000px;}
.ye8{bottom:1017.405000px;}
.y7{bottom:1019.925000px;}
.y220{bottom:1022.355000px;}
.y55{bottom:1024.335000px;}
.ybd{bottom:1025.595000px;}
.y1be{bottom:1025.865000px;}
.y35{bottom:1027.575000px;}
.y19{bottom:1028.745000px;}
.y94{bottom:1036.395000px;}
.ye7{bottom:1038.105000px;}
.y1bd{bottom:1044.225000px;}
.y21f{bottom:1046.115000px;}
.y54{bottom:1047.105000px;}
.ybc{bottom:1048.365000px;}
.y18{bottom:1051.515000px;}
.y6{bottom:1054.755000px;}
.y7a{bottom:1059.165000px;}
.ye6{bottom:1059.435000px;}
.y34{bottom:1062.315000px;}
.y1bc{bottom:1062.495000px;}
.y53{bottom:1069.875000px;}
.ybb{bottom:1071.135000px;}
.y17{bottom:1074.285000px;}
.y1bb{bottom:1080.765000px;}
.y79{bottom:1081.935000px;}
.y5{bottom:1091.295000px;}
.yba{bottom:1093.905000px;}
.y16{bottom:1097.055000px;}
.y1ba{bottom:1099.125000px;}
.y52{bottom:1104.705000px;}
.y78{bottom:1116.675000px;}
.y1b9{bottom:1117.395000px;}
.y4{bottom:1133.685000px;}
.y1b8{bottom:1136.025000px;}
.y51{bottom:1139.445000px;}
.h3{height:19.980000px;}
.h10{height:32.064609px;}
.hb{height:34.736660px;}
.hc{height:49.229121px;}
.hd{height:49.581387px;}
.he{height:49.992188px;}
.h11{height:51.855469px;}
.hf{height:52.311445px;}
.h2{height:54.331699px;}
.ha{height:58.957031px;}
.h5{height:62.648438px;}
.h9{height:63.210938px;}
.h4{height:84.386602px;}
.h8{height:104.309648px;}
.h7{height:105.246211px;}
.h6{height:147.597539px;}
.h0{height:1262.835022px;}
.h1{height:1263.000000px;}
.w2{width:9.630000px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.620000px;}
.x7{left:154.620000px;}
.xb{left:170.190000px;}
.x3{left:175.590000px;}
.x8{left:181.620000px;}
.xe{left:208.620000px;}
.xa{left:233.820000px;}
.x9{left:235.620000px;}
.x6{left:251.910000px;}
.x4{left:365.130000px;}
.xd{left:748.710000px;}
.x5{left:755.370000px;}
.x1{left:757.080000px;}
.xc{left:765.360000px;}
@media print{
.v2{vertical-align:-21.440000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.078080pt;}
.ls10{letter-spacing:0.084480pt;}
.ls5{letter-spacing:0.101760pt;}
.ls16{letter-spacing:0.205440pt;}
.ls8{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.165440pt;}
.lsa{letter-spacing:1.805440pt;}
.ls12{letter-spacing:3.200000pt;}
.lsc{letter-spacing:5.120000pt;}
.lse{letter-spacing:7.245440pt;}
.ls11{letter-spacing:9.485440pt;}
.lsb{letter-spacing:10.125440pt;}
.ls15{letter-spacing:10.445440pt;}
.ls9{letter-spacing:14.208000pt;}
.ls6{letter-spacing:15.245440pt;}
.ls4{letter-spacing:17.728000pt;}
.ls3{letter-spacing:25.408000pt;}
.ls1{letter-spacing:29.568000pt;}
.ls14{letter-spacing:30.208000pt;}
.ls13{letter-spacing:33.728000pt;}
.ls17{letter-spacing:36.928000pt;}
.ls18{letter-spacing:48.768000pt;}
.lsd{letter-spacing:174.720000pt;}
.ws8{word-spacing:-38.400000pt;}
.ws4{word-spacing:-32.064000pt;}
.ws2{word-spacing:-14.144000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws7{word-spacing:-12.077440pt;}
.ws5{word-spacing:-9.363200pt;}
.ws3{word-spacing:-8.461440pt;}
.ws6{word-spacing:-7.810560pt;}
.ws0{word-spacing:0.000000pt;}
._13{margin-left:-12.416000pt;}
._2{margin-left:-6.016000pt;}
._23{margin-left:-4.351360pt;}
._12{margin-left:-3.456000pt;}
._6{margin-left:-2.239360pt;}
._0{margin-left:-0.896640pt;}
._5{width:0.923520pt;}
._1{width:1.906880pt;}
._9{width:3.136000pt;}
._11{width:4.032640pt;}
._e{width:4.928000pt;}
._17{width:5.952000pt;}
._d{width:7.232640pt;}
._c{width:8.256000pt;}
._10{width:9.408000pt;}
._a{width:10.304000pt;}
._f{width:11.840000pt;}
._14{width:12.736000pt;}
._1b{width:14.075520pt;}
._b{width:14.976000pt;}
._15{width:16.576000pt;}
._1c{width:17.856000pt;}
._16{width:18.752000pt;}
._18{width:19.650560pt;}
._8{width:20.672000pt;}
._7{width:22.144000pt;}
._1f{width:23.232000pt;}
._19{width:24.320000pt;}
._21{width:25.317120pt;}
._20{width:26.304000pt;}
._1a{width:27.200000pt;}
._24{width:28.288000pt;}
._25{width:29.184000pt;}
._26{width:30.528000pt;}
._2b{width:31.424640pt;}
._3{width:32.448000pt;}
._4{width:33.536000pt;}
._2c{width:34.432000pt;}
._1e{width:37.120000pt;}
._1d{width:38.080000pt;}
._22{width:41.552320pt;}
._27{width:43.264000pt;}
._29{width:44.672000pt;}
._28{width:45.568000pt;}
._2a{width:65.344000pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs5{font-size:42.560000pt;}
.fs7{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.440000pt;}
.fs4{font-size:106.560000pt;}
.fs3{font-size:149.440000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:0.039733pt;}
.y3{bottom:3.839947pt;}
.y1{bottom:21.799733pt;}
.y129{bottom:98.119733pt;}
.ye5{bottom:98.120000pt;}
.y21e{bottom:107.160000pt;}
.yb9{bottom:108.200000pt;}
.y149{bottom:109.320000pt;}
.y21c{bottom:111.240000pt;}
.y1e8{bottom:114.359733pt;}
.y17c{bottom:114.360000pt;}
.y100{bottom:115.640000pt;}
.y93{bottom:117.560000pt;}
.y50{bottom:121.480000pt;}
.y128{bottom:125.639733pt;}
.ye4{bottom:125.640000pt;}
.y111{bottom:125.720000pt;}
.y148{bottom:126.120000pt;}
.y77{bottom:126.280000pt;}
.yb8{bottom:128.440000pt;}
.y33{bottom:128.600000pt;}
.y1e7{bottom:130.679733pt;}
.y190{bottom:130.680000pt;}
.y15{bottom:132.040000pt;}
.y17b{bottom:135.320000pt;}
.yff{bottom:135.880000pt;}
.y21d{bottom:138.040000pt;}
.y15b{bottom:142.200000pt;}
.ye3{bottom:142.440000pt;}
.y147{bottom:143.000000pt;}
.y110{bottom:145.960000pt;}
.y76{bottom:146.520000pt;}
.y18f{bottom:146.920000pt;}
.y17a{bottom:147.240000pt;}
.y92{bottom:148.440000pt;}
.yb7{bottom:148.680000pt;}
.y4f{bottom:152.360000pt;}
.yfe{bottom:156.120000pt;}
.ye2{bottom:159.320000pt;}
.y18e{bottom:163.160000pt;}
.y32{bottom:166.200000pt;}
.y1e6{bottom:167.800000pt;}
.yb6{bottom:168.920000pt;}
.y14{bottom:169.640000pt;}
.y1f0{bottom:170.040000pt;}
.y146{bottom:170.600000pt;}
.y21b{bottom:173.080000pt;}
.ye1{bottom:176.120000pt;}
.y75{bottom:177.480000pt;}
.y179{bottom:178.520000pt;}
.y91{bottom:179.400000pt;}
.y18d{bottom:179.480000pt;}
.y163{bottom:179.640000pt;}
.y206{bottom:179.720000pt;}
.y4e{bottom:183.320000pt;}
.y210{bottom:184.120000pt;}
.yfd{bottom:187.000000pt;}
.y145{bottom:187.400000pt;}
.y182{bottom:189.240000pt;}
.y1ef{bottom:190.280000pt;}
.ye0{bottom:193.000000pt;}
.y10f{bottom:193.560000pt;}
.y18c{bottom:195.720000pt;}
.y20f{bottom:196.040000pt;}
.y74{bottom:197.720000pt;}
.y178{bottom:198.760000pt;}
.yb5{bottom:199.880000pt;}
.y15a{bottom:201.800000pt;}
.y127{bottom:203.800000pt;}
.y31{bottom:203.880000pt;}
.y21a{bottom:203.960000pt;}
.y144{bottom:204.280000pt;}
.y13{bottom:209.000000pt;}
.y181{bottom:209.480000pt;}
.ydf{bottom:209.880000pt;}
.y90{bottom:210.280000pt;}
.y205{bottom:211.640000pt;}
.y18b{bottom:212.040000pt;}
.y4d{bottom:214.200000pt;}
.y1e5{bottom:216.680000pt;}
.yfc{bottom:217.880000pt;}
.y73{bottom:217.960000pt;}
.y177{bottom:219.000000pt;}
.yb4{bottom:220.120000pt;}
.y126{bottom:220.520000pt;}
.y143{bottom:221.160000pt;}
.y1ee{bottom:221.240000pt;}
.yde{bottom:226.760000pt;}
.y18a{bottom:228.280000pt;}
.y1e4{bottom:228.600000pt;}
.y180{bottom:229.720000pt;}
.y204{bottom:231.880000pt;}
.y159{bottom:232.760000pt;}
.y219{bottom:234.920000pt;}
.y125{bottom:237.400000pt;}
.y142{bottom:238.040000pt;}
.yfb{bottom:238.120000pt;}
.y176{bottom:239.240000pt;}
.yb3{bottom:240.360000pt;}
.y8f{bottom:241.240000pt;}
.y1ed{bottom:241.480000pt;}
.y30{bottom:241.560000pt;}
.y20e{bottom:242.520000pt;}
.ydd{bottom:243.640000pt;}
.y189{bottom:244.600000pt;}
.y4c{bottom:245.160000pt;}
.y72{bottom:248.840000pt;}
.y17f{bottom:249.960000pt;}
.y203{bottom:252.120000pt;}
.y12{bottom:253.480000pt;}
.y124{bottom:254.280000pt;}
.y141{bottom:254.920000pt;}
.yfa{bottom:258.360000pt;}
.y175{bottom:259.480000pt;}
.yb2{bottom:260.600000pt;}
.y188{bottom:260.840000pt;}
.y1ec{bottom:261.720000pt;}
.y20d{bottom:262.760000pt;}
.y158{bottom:263.640000pt;}
.y218{bottom:265.800000pt;}
.ydc{bottom:267.000000pt;}
.y71{bottom:269.080000pt;}
.y1e3{bottom:270.200000pt;}
.y10e{bottom:271.240000pt;}
.y8e{bottom:272.120000pt;}
.y202{bottom:272.360000pt;}
.y4b{bottom:276.040000pt;}
.y187{bottom:277.160000pt;}
.yf9{bottom:278.600000pt;}
.y2f{bottom:279.160000pt;}
.ydb{bottom:279.320000pt;}
.y174{bottom:279.720000pt;}
.yb1{bottom:280.840000pt;}
.y1d8{bottom:281.800000pt;}
.y123{bottom:281.880000pt;}
.y1eb{bottom:281.960000pt;}
.y140{bottom:282.520000pt;}
.y20c{bottom:283.000000pt;}
.y70{bottom:289.320000pt;}
.y1e2{bottom:290.440000pt;}
.y10d{bottom:291.480000pt;}
.y201{bottom:292.600000pt;}
.y186{bottom:293.400000pt;}
.y1d4{bottom:293.720000pt;}
.y157{bottom:294.520000pt;}
.y217{bottom:296.760000pt;}
.y11{bottom:297.880000pt;}
.y122{bottom:298.680000pt;}
.yf8{bottom:298.840000pt;}
.y13f{bottom:299.320000pt;}
.y173{bottom:299.960000pt;}
.yb0{bottom:301.080000pt;}
.y1ea{bottom:302.200000pt;}
.y8d{bottom:303.000000pt;}
.y20b{bottom:303.240000pt;}
.yda{bottom:306.840000pt;}
.y4a{bottom:306.920000pt;}
.y185{bottom:309.640000pt;}
.y1e1{bottom:310.680000pt;}
.y10c{bottom:311.720000pt;}
.y200{bottom:312.840000pt;}
.y13e{bottom:316.200000pt;}
.y2e{bottom:316.840000pt;}
.yf7{bottom:319.160000pt;}
.y6f{bottom:320.200000pt;}
.y162{bottom:321.320000pt;}
.y121{bottom:322.120000pt;}
.y1e9{bottom:322.440000pt;}
.y20a{bottom:323.480000pt;}
.yd9{bottom:323.640000pt;}
.y156{bottom:325.480000pt;}
.y1a9{bottom:325.960000pt;}
.y216{bottom:327.640000pt;}
.y184{bottom:330.600000pt;}
.y172{bottom:330.920000pt;}
.yaf{bottom:331.960000pt;}
.y13d{bottom:333.000000pt;}
.y1ff{bottom:333.080000pt;}
.y8c{bottom:333.960000pt;}
.y120{bottom:334.680000pt;}
.y49{bottom:337.880000pt;}
.yf6{bottom:339.400000pt;}
.y6e{bottom:340.440000pt;}
.yd8{bottom:340.520000pt;}
.y161{bottom:341.560000pt;}
.y1a8{bottom:342.200000pt;}
.y10{bottom:342.280000pt;}
.y183{bottom:342.520000pt;}
.y10b{bottom:342.680000pt;}
.y209{bottom:343.720000pt;}
.y13c{bottom:349.880000pt;}
.y171{bottom:351.160000pt;}
.yae{bottom:352.200000pt;}
.y1fe{bottom:353.320000pt;}
.y2d{bottom:354.520000pt;}
.y155{bottom:356.360000pt;}
.yd7{bottom:357.400000pt;}
.y1b4{bottom:358.520000pt;}
.yf5{bottom:359.640000pt;}
.y6d{bottom:360.760000pt;}
.y17e{bottom:361.800000pt;}
.y10a{bottom:362.920000pt;}
.y1a7{bottom:363.160000pt;}
.y208{bottom:363.960000pt;}
.y8b{bottom:364.840000pt;}
.y11f{bottom:366.840000pt;}
.y48{bottom:368.760000pt;}
.y170{bottom:371.400000pt;}
.yad{bottom:372.440000pt;}
.yd6{bottom:374.200000pt;}
.y1a6{bottom:374.760000pt;}
.y1d9{bottom:375.080000pt;}
.y13b{bottom:377.480000pt;}
.yf{bottom:380.760000pt;}
.y6c{bottom:381.000000pt;}
.y17d{bottom:382.040000pt;}
.y109{bottom:383.160000pt;}
.y1fd{bottom:384.200000pt;}
.y11e{bottom:387.080000pt;}
.y154{bottom:387.240000pt;}
.y215{bottom:389.480000pt;}
.yf4{bottom:390.520000pt;}
.y1a5{bottom:391.080000pt;}
.y16f{bottom:391.640000pt;}
.y2c{bottom:392.200000pt;}
.y160{bottom:392.760000pt;}
.y1d3{bottom:393.800000pt;}
.y13a{bottom:394.280000pt;}
.y8a{bottom:395.720000pt;}
.yd5{bottom:397.640000pt;}
.y47{bottom:399.640000pt;}
.y6b{bottom:401.240000pt;}
.y1e0{bottom:402.280000pt;}
.yac{bottom:403.400000pt;}
.y1fc{bottom:404.440000pt;}
.y236{bottom:404.920000pt;}
.y11d{bottom:407.320000pt;}
.yd4{bottom:410.200000pt;}
.y139{bottom:411.160000pt;}
.y15f{bottom:413.000000pt;}
.y1d2{bottom:414.040000pt;}
.y153{bottom:418.200000pt;}
.y214{bottom:420.360000pt;}
.yf3{bottom:421.400000pt;}
.y16e{bottom:422.520000pt;}
.yab{bottom:423.640000pt;}
.y1fb{bottom:424.760000pt;}
.y89{bottom:426.680000pt;}
.y11c{bottom:427.640000pt;}
.y2b{bottom:429.800000pt;}
.y46{bottom:430.600000pt;}
.y6a{bottom:432.120000pt;}
.y15e{bottom:433.240000pt;}
.y1d1{bottom:434.280000pt;}
.y235{bottom:435.800000pt;}
.y138{bottom:438.760000pt;}
.y1a4{bottom:439.880000pt;}
.y16d{bottom:442.760000pt;}
.yaa{bottom:443.880000pt;}
.y1fa{bottom:445.000000pt;}
.yf2{bottom:448.680000pt;}
.y152{bottom:449.080000pt;}
.y213{bottom:451.240000pt;}
.y69{bottom:452.360000pt;}
.y15d{bottom:453.480000pt;}
.y1d0{bottom:454.520000pt;}
.y137{bottom:455.560000pt;}
.y1a3{bottom:456.200000pt;}
.y88{bottom:457.560000pt;}
.y11b{bottom:458.520000pt;}
.y45{bottom:461.480000pt;}
.y1df{bottom:463.000000pt;}
.ya9{bottom:464.120000pt;}
.y1f9{bottom:465.240000pt;}
.yd3{bottom:466.280000pt;}
.y234{bottom:466.680000pt;}
.y2a{bottom:467.480000pt;}
.y136{bottom:472.440000pt;}
.y68{bottom:472.600000pt;}
.y1b3{bottom:472.760000pt;}
.y16c{bottom:473.720000pt;}
.y1cf{bottom:474.760000pt;}
.y11a{bottom:478.760000pt;}
.y151{bottom:479.960000pt;}
.y212{bottom:482.200000pt;}
.y1de{bottom:483.240000pt;}
.ya8{bottom:484.360000pt;}
.y1f8{bottom:485.480000pt;}
.yd2{bottom:486.520000pt;}
.y233{bottom:487.800000pt;}
.y87{bottom:488.520000pt;}
.y1a2{bottom:488.680000pt;}
.y135{bottom:489.320000pt;}
.y44{bottom:492.440000pt;}
.y67{bottom:492.840000pt;}
.y16b{bottom:493.960000pt;}
.y1ce{bottom:495.000000pt;}
.y119{bottom:499.000000pt;}
.y1dd{bottom:503.480000pt;}
.ya7{bottom:504.600000pt;}
.y1a1{bottom:505.000000pt;}
.y29{bottom:505.160000pt;}
.y1f7{bottom:505.720000pt;}
.y134{bottom:506.200000pt;}
.yd1{bottom:506.760000pt;}
.y232{bottom:508.920000pt;}
.y150{bottom:510.920000pt;}
.y66{bottom:513.080000pt;}
.y16a{bottom:514.200000pt;}
.y1cd{bottom:515.240000pt;}
.y207{bottom:516.360000pt;}
.y118{bottom:519.240000pt;}
.y86{bottom:519.400000pt;}
.y1a0{bottom:521.240000pt;}
.y133{bottom:523.080000pt;}
.y43{bottom:523.320000pt;}
.ya6{bottom:524.840000pt;}
.yd0{bottom:527.000000pt;}
.y231{bottom:530.120000pt;}
.y65{bottom:533.320000pt;}
.y169{bottom:534.440000pt;}
.y1cc{bottom:535.480000pt;}
.y1f6{bottom:536.600000pt;}
.y19f{bottom:537.560000pt;}
.y132{bottom:539.960000pt;}
.y14f{bottom:541.800000pt;}
.y28{bottom:542.760000pt;}
.y211{bottom:543.960000pt;}
.ya5{bottom:545.080000pt;}
.y117{bottom:546.600000pt;}
.ycf{bottom:547.240000pt;}
.y85{bottom:550.280000pt;}
.y230{bottom:551.240000pt;}
.y19e{bottom:553.800000pt;}
.y42{bottom:554.200000pt;}
.y168{bottom:554.680000pt;}
.y1f5{bottom:556.840000pt;}
.y1d6{bottom:558.440000pt;}
.y64{bottom:564.200000pt;}
.y108{bottom:565.320000pt;}
.y1b2{bottom:566.440000pt;}
.yce{bottom:567.480000pt;}
.y131{bottom:567.560000pt;}
.y19d{bottom:570.120000pt;}
.y1d5{bottom:570.360000pt;}
.y22f{bottom:572.360000pt;}
.y14e{bottom:572.760000pt;}
.y167{bottom:574.920000pt;}
.ya4{bottom:575.960000pt;}
.y1f4{bottom:577.080000pt;}
.y27{bottom:580.440000pt;}
.y84{bottom:581.240000pt;}
.y130{bottom:584.360000pt;}
.y63{bottom:584.520000pt;}
.y41{bottom:585.160000pt;}
.y107{bottom:585.560000pt;}
.y19c{bottom:586.360000pt;}
.y1b1{bottom:586.680000pt;}
.ycd{bottom:587.720000pt;}
.y22e{bottom:593.480000pt;}
.y166{bottom:595.160000pt;}
.ya3{bottom:596.200000pt;}
.y1f3{bottom:597.320000pt;}
.y12f{bottom:601.240000pt;}
.y19b{bottom:602.680000pt;}
.y14d{bottom:603.640000pt;}
.y62{bottom:604.760000pt;}
.y40{bottom:605.400000pt;}
.y106{bottom:605.800000pt;}
.y1b0{bottom:606.920000pt;}
.ycc{bottom:607.960000pt;}
.ye{bottom:609.800000pt;}
.y83{bottom:612.120000pt;}
.y22d{bottom:614.600000pt;}
.y165{bottom:615.400000pt;}
.ya2{bottom:616.520000pt;}
.y1f2{bottom:617.560000pt;}
.y26{bottom:618.120000pt;}
.y19a{bottom:618.920000pt;}
.y61{bottom:625.000000pt;}
.y1af{bottom:627.160000pt;}
.ycb{bottom:628.200000pt;}
.y12e{bottom:628.840000pt;}
.y14c{bottom:634.520000pt;}
.y199{bottom:635.160000pt;}
.y164{bottom:635.640000pt;}
.y22c{bottom:635.720000pt;}
.y3f{bottom:636.280000pt;}
.ya1{bottom:636.760000pt;}
.y1f1{bottom:637.800000pt;}
.y82{bottom:643.000000pt;}
.y12d{bottom:645.640000pt;}
.y116{bottom:646.280000pt;}
.y1ae{bottom:647.400000pt;}
.yca{bottom:648.520000pt;}
.y198{bottom:651.480000pt;}
.yd{bottom:654.200000pt;}
.y25{bottom:655.800000pt;}
.y60{bottom:655.880000pt;}
.y3e{bottom:656.520000pt;}
.y22b{bottom:656.840000pt;}
.ya0{bottom:657.000000pt;}
.y1d7{bottom:658.040000pt;}
.y14b{bottom:665.480000pt;}
.y115{bottom:666.520000pt;}
.y1cb{bottom:667.640000pt;}
.y197{bottom:667.720000pt;}
.yc9{bottom:668.760000pt;}
.y12c{bottom:669.000000pt;}
.y1b7{bottom:672.360000pt;}
.y81{bottom:673.960000pt;}
.y5f{bottom:676.120000pt;}
.y3d{bottom:676.760000pt;}
.y105{bottom:677.240000pt;}
.y22a{bottom:677.960000pt;}
.y1ad{bottom:678.280000pt;}
.y12b{bottom:681.560000pt;}
.y196{bottom:684.040000pt;}
.y1b6{bottom:684.280000pt;}
.y114{bottom:686.760000pt;}
.y9f{bottom:687.880000pt;}
.yc{bottom:687.960000pt;}
.yc8{bottom:689.000000pt;}
.y24{bottom:691.800000pt;}
.y5e{bottom:696.360000pt;}
.y15c{bottom:697.480000pt;}
.y1ac{bottom:698.520000pt;}
.y195{bottom:700.280000pt;}
.y80{bottom:704.840000pt;}
.y113{bottom:707.000000pt;}
.y3c{bottom:707.640000pt;}
.y9e{bottom:708.120000pt;}
.yc7{bottom:709.240000pt;}
.y229{bottom:709.720000pt;}
.y23{bottom:712.040000pt;}
.y1ca{bottom:716.600000pt;}
.y1b5{bottom:717.720000pt;}
.y1ab{bottom:718.760000pt;}
.y194{bottom:721.240000pt;}
.y5d{bottom:727.240000pt;}
.y3b{bottom:727.880000pt;}
.y9d{bottom:728.360000pt;}
.yf1{bottom:728.760000pt;}
.yc6{bottom:729.480000pt;}
.y22{bottom:732.280000pt;}
.y1c9{bottom:732.840000pt;}
.y193{bottom:733.160000pt;}
.y7f{bottom:735.720000pt;}
.yb{bottom:735.800000pt;}
.y112{bottom:737.960000pt;}
.y1aa{bottom:739.000000pt;}
.y228{bottom:740.680000pt;}
.y5c{bottom:747.480000pt;}
.yf0{bottom:747.560000pt;}
.y9c{bottom:748.600000pt;}
.y1c8{bottom:749.160000pt;}
.yc5{bottom:749.720000pt;}
.y21{bottom:752.520000pt;}
.y14a{bottom:758.200000pt;}
.y3a{bottom:758.840000pt;}
.y192{bottom:759.240000pt;}
.y227{bottom:761.800000pt;}
.y1c7{bottom:765.400000pt;}
.yef{bottom:766.280000pt;}
.y7e{bottom:766.680000pt;}
.y5b{bottom:767.720000pt;}
.y9b{bottom:768.840000pt;}
.yc4{bottom:769.960000pt;}
.y20{bottom:772.760000pt;}
.y12a{bottom:778.440000pt;}
.y191{bottom:779.480000pt;}
.y1c6{bottom:781.720000pt;}
.y226{bottom:782.920000pt;}
.yee{bottom:785.080000pt;}
.y1dc{bottom:788.040000pt;}
.y104{bottom:789.080000pt;}
.y39{bottom:789.720000pt;}
.yc3{bottom:790.200000pt;}
.y1f{bottom:793.000000pt;}
.ya{bottom:793.640000pt;}
.y7d{bottom:797.560000pt;}
.y1c5{bottom:797.960000pt;}
.y5a{bottom:798.680000pt;}
.y9a{bottom:799.720000pt;}
.yed{bottom:803.800000pt;}
.y225{bottom:804.040000pt;}
.y1db{bottom:808.280000pt;}
.y103{bottom:809.320000pt;}
.yc2{bottom:810.440000pt;}
.y1e{bottom:813.240000pt;}
.y1c4{bottom:814.200000pt;}
.y59{bottom:818.920000pt;}
.y99{bottom:820.040000pt;}
.y38{bottom:820.680000pt;}
.yec{bottom:822.600000pt;}
.y224{bottom:825.160000pt;}
.y7c{bottom:828.520000pt;}
.y102{bottom:829.560000pt;}
.y1c3{bottom:830.520000pt;}
.yc1{bottom:830.680000pt;}
.y1d{bottom:833.480000pt;}
.y58{bottom:839.160000pt;}
.y98{bottom:840.280000pt;}
.y9{bottom:844.840000pt;}
.y223{bottom:845.400000pt;}
.y1c2{bottom:846.760000pt;}
.yeb{bottom:849.160000pt;}
.y101{bottom:849.800000pt;}
.yc0{bottom:850.920000pt;}
.y37{bottom:851.560000pt;}
.y1c{bottom:853.720000pt;}
.y7b{bottom:859.400000pt;}
.y97{bottom:860.520000pt;}
.y1c1{bottom:863.080000pt;}
.y222{bottom:866.520000pt;}
.yea{bottom:867.560000pt;}
.y57{bottom:870.040000pt;}
.ybf{bottom:871.160000pt;}
.y1b{bottom:873.960000pt;}
.y8{bottom:875.720000pt;}
.y1c0{bottom:879.320000pt;}
.y1da{bottom:879.640000pt;}
.y96{bottom:880.760000pt;}
.y36{bottom:882.440000pt;}
.ye9{bottom:885.960000pt;}
.y221{bottom:887.640000pt;}
.y56{bottom:890.280000pt;}
.ybe{bottom:891.400000pt;}
.y1a{bottom:894.200000pt;}
.y1bf{bottom:895.640000pt;}
.y95{bottom:901.000000pt;}
.ye8{bottom:904.360000pt;}
.y7{bottom:906.600000pt;}
.y220{bottom:908.760000pt;}
.y55{bottom:910.520000pt;}
.ybd{bottom:911.640000pt;}
.y1be{bottom:911.880000pt;}
.y35{bottom:913.400000pt;}
.y19{bottom:914.440000pt;}
.y94{bottom:921.240000pt;}
.ye7{bottom:922.760000pt;}
.y1bd{bottom:928.200000pt;}
.y21f{bottom:929.880000pt;}
.y54{bottom:930.760000pt;}
.ybc{bottom:931.880000pt;}
.y18{bottom:934.680000pt;}
.y6{bottom:937.560000pt;}
.y7a{bottom:941.480000pt;}
.ye6{bottom:941.720000pt;}
.y34{bottom:944.280000pt;}
.y1bc{bottom:944.440000pt;}
.y53{bottom:951.000000pt;}
.ybb{bottom:952.120000pt;}
.y17{bottom:954.920000pt;}
.y1bb{bottom:960.680000pt;}
.y79{bottom:961.720000pt;}
.y5{bottom:970.040000pt;}
.yba{bottom:972.360000pt;}
.y16{bottom:975.160000pt;}
.y1ba{bottom:977.000000pt;}
.y52{bottom:981.960000pt;}
.y78{bottom:992.600000pt;}
.y1b9{bottom:993.240000pt;}
.y4{bottom:1007.720000pt;}
.y1b8{bottom:1009.800000pt;}
.y51{bottom:1012.840000pt;}
.h3{height:17.760000pt;}
.h10{height:28.501875pt;}
.hb{height:30.877031pt;}
.hc{height:43.759219pt;}
.hd{height:44.072344pt;}
.he{height:44.437500pt;}
.h11{height:46.093750pt;}
.hf{height:46.499062pt;}
.h2{height:48.294844pt;}
.ha{height:52.406250pt;}
.h5{height:55.687500pt;}
.h9{height:56.187500pt;}
.h4{height:75.010312pt;}
.h8{height:92.719687pt;}
.h7{height:93.552187pt;}
.h6{height:131.197812pt;}
.h0{height:1122.520020pt;}
.h1{height:1122.666667pt;}
.w2{width:8.560000pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.440000pt;}
.x7{left:137.440000pt;}
.xb{left:151.280000pt;}
.x3{left:156.080000pt;}
.x8{left:161.440000pt;}
.xe{left:185.440000pt;}
.xa{left:207.840000pt;}
.x9{left:209.440000pt;}
.x6{left:223.920000pt;}
.x4{left:324.560000pt;}
.xd{left:665.520000pt;}
.x5{left:671.440000pt;}
.x1{left:672.960000pt;}
.xc{left:680.320000pt;}
}




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