
    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_1532d36840a975e52afad1e4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_aebdbc9c0c9a308917633430.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_011b2cdf2e8467f3b14d6c80.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ae62b8fd8468a512007c8014.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_710ad299099298761cdb1d1b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_1dfce6316bb0bf769aa48bad.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.833008;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_7cda16de6e2b610cea9e12cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.680176;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_553e4dbb061a361c238bf0cc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.704590;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_947a29f656c2604daada5dec.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692383;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_2716328e10412cbaa698d9b4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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_eaad2eada7724ee231773891.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-68.400000px;}
.v8{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v9{vertical-align:-61.200000px;}
.v4{vertical-align:-30.420000px;}
.v5{vertical-align:-23.760000px;}
.v6{vertical-align:-22.512000px;}
.v7{vertical-align:-13.506000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.420000px;}
.va{vertical-align:48.492000px;}
.ls1f{letter-spacing:-0.828000px;}
.ls21{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.594000px;}
.ls24{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.252000px;}
.lse{letter-spacing:-0.220800px;}
.ls1c{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.180000px;}
.ls23{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.027360px;}
.ls2f{letter-spacing:-0.018000px;}
.ls1a{letter-spacing:-0.012000px;}
.ls17{letter-spacing:-0.006000px;}
.lsb{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000018px;}
.ls16{letter-spacing:0.006000px;}
.ls13{letter-spacing:0.012000px;}
.ls6{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.024000px;}
.ls27{letter-spacing:0.054000px;}
.ls29{letter-spacing:0.060000px;}
.ls1d{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.234000px;}
.ls2b{letter-spacing:0.246000px;}
.ls14{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.594000px;}
.ls15{letter-spacing:1.350000px;}
.ls22{letter-spacing:2.220000px;}
.ls2d{letter-spacing:2.352018px;}
.ls28{letter-spacing:2.358000px;}
.ls2a{letter-spacing:2.364006px;}
.ls32{letter-spacing:2.988000px;}
.ls18{letter-spacing:4.182000px;}
.ls4{letter-spacing:6.660000px;}
.ls2e{letter-spacing:8.100000px;}
.ls26{letter-spacing:11.232000px;}
.ls2c{letter-spacing:11.783988px;}
.ls5{letter-spacing:16.740000px;}
.ls31{letter-spacing:30.348000px;}
.ls8{letter-spacing:52.560000px;}
.lsa{letter-spacing:55.620000px;}
.ls3{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls7{letter-spacing:446.280000px;}
.ls9{letter-spacing:1367.340000px;}
.ls30{letter-spacing:1415.700000px;}
.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;}
}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.wsc{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.824000px;}
.wsa{word-spacing:-13.734000px;}
.ws13{word-spacing:-13.716000px;}
.ws7{word-spacing:-13.626000px;}
.ws12{word-spacing:-13.608000px;}
.ws38{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws39{word-spacing:-13.392000px;}
.ws11{word-spacing:-13.284000px;}
.ws15{word-spacing:-13.248000px;}
.wsb{word-spacing:-13.140000px;}
.ws3a{word-spacing:-12.960000px;}
.ws10{word-spacing:-12.906000px;}
.ws16{word-spacing:-12.780000px;}
.ws14{word-spacing:-12.672000px;}
.ws6{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.ws36{word-spacing:-0.648000px;}
.ws64{word-spacing:-0.480000px;}
.ws59{word-spacing:-0.438000px;}
.ws60{word-spacing:-0.126000px;}
.wse{word-spacing:0.000000px;}
.ws5a{word-spacing:0.162000px;}
.ws61{word-spacing:0.228000px;}
.ws37{word-spacing:0.234000px;}
.ws5b{word-spacing:0.378000px;}
.ws65{word-spacing:0.390000px;}
.ws62{word-spacing:0.408000px;}
.ws49{word-spacing:0.414000px;}
.ws66{word-spacing:0.420000px;}
.ws5f{word-spacing:0.426000px;}
.ws63{word-spacing:0.528000px;}
.ws4b{word-spacing:0.756000px;}
.ws4a{word-spacing:2.508000px;}
.ws4d{word-spacing:3.726000px;}
.ws58{word-spacing:3.960000px;}
.ws48{word-spacing:4.320000px;}
.ws4e{word-spacing:4.344000px;}
.ws4c{word-spacing:4.380000px;}
.ws1e{word-spacing:4.428000px;}
.ws1f{word-spacing:4.482000px;}
.ws47{word-spacing:4.500000px;}
.ws46{word-spacing:4.536000px;}
.ws23{word-spacing:5.184000px;}
.ws57{word-spacing:5.418000px;}
.ws4f{word-spacing:5.604000px;}
.ws24{word-spacing:5.778000px;}
.ws20{word-spacing:5.886000px;}
.ws22{word-spacing:5.940000px;}
.ws34{word-spacing:5.994000px;}
.ws26{word-spacing:6.048000px;}
.ws3c{word-spacing:6.480000px;}
.ws21{word-spacing:6.588000px;}
.ws32{word-spacing:6.642000px;}
.ws33{word-spacing:6.660000px;}
.ws25{word-spacing:6.696000px;}
.ws3b{word-spacing:7.176000px;}
.ws2a{word-spacing:7.182000px;}
.ws2e{word-spacing:7.236000px;}
.ws51{word-spacing:7.260000px;}
.ws2d{word-spacing:7.290000px;}
.ws28{word-spacing:7.344000px;}
.ws30{word-spacing:7.380000px;}
.ws2c{word-spacing:7.398000px;}
.ws2f{word-spacing:7.452000px;}
.ws56{word-spacing:7.506000px;}
.ws29{word-spacing:7.938000px;}
.ws27{word-spacing:8.046000px;}
.ws2b{word-spacing:8.100000px;}
.ws1a{word-spacing:8.154000px;}
.ws54{word-spacing:8.454000px;}
.ws19{word-spacing:8.640000px;}
.ws31{word-spacing:8.658000px;}
.ws17{word-spacing:8.748000px;}
.ws1c{word-spacing:8.802000px;}
.ws18{word-spacing:8.856000px;}
.ws53{word-spacing:8.988000px;}
.ws35{word-spacing:9.204000px;}
.ws1d{word-spacing:9.342000px;}
.ws1b{word-spacing:9.504000px;}
.ws50{word-spacing:9.948000px;}
.ws55{word-spacing:10.044000px;}
.ws3f{word-spacing:10.800000px;}
.ws41{word-spacing:10.908000px;}
.ws3d{word-spacing:10.962000px;}
.ws40{word-spacing:10.980000px;}
.ws44{word-spacing:11.016000px;}
.ws43{word-spacing:11.136000px;}
.ws3e{word-spacing:11.262000px;}
.ws42{word-spacing:11.520000px;}
.ws45{word-spacing:12.414000px;}
.ws52{word-spacing:14.190000px;}
.ws5c{word-spacing:15.258000px;}
.ws5d{word-spacing:15.264000px;}
.ws5e{word-spacing:15.294000px;}
.wsd{word-spacing:1174.620000px;}
._b{margin-left:-179.280240px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._7{width:3.186000px;}
._d{width:4.266000px;}
._c{width:5.454000px;}
._8{width:6.533760px;}
._9{width:8.208240px;}
._f{width:9.431520px;}
._10{width:10.962000px;}
._19{width:12.095334px;}
._1a{width:14.898210px;}
._1b{width:15.951834px;}
._a{width:17.058000px;}
._1e{width:18.216468px;}
._1d{width:19.308024px;}
._12{width:20.358000px;}
._13{width:21.857760px;}
._5{width:23.814000px;}
._6{width:24.906000px;}
._1c{width:26.094000px;}
._15{width:165.959982px;}
._16{width:178.919982px;}
._14{width:219.528000px;}
._18{width:443.244000px;}
._17{width:470.604000px;}
._11{width:957.132960px;}
._20{width:1004.382000px;}
._1f{width:1041.240000px;}
._4{width:1441.260000px;}
._3{width:1574.460000px;}
._e{width:2102.280000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:2.850000px;}
.y89{bottom:3.000000px;}
.y5f{bottom:3.150000px;}
.yec{bottom:3.225000px;}
.y62{bottom:3.300000px;}
.ya5{bottom:3.450000px;}
.yf0{bottom:12.825000px;}
.ydf{bottom:18.450000px;}
.y80{bottom:20.685000px;}
.yb6{bottom:22.950000px;}
.y1{bottom:29.610000px;}
.y10a{bottom:37.368000px;}
.yf2{bottom:54.060000px;}
.y3{bottom:57.960000px;}
.y7f{bottom:62.805000px;}
.yb5{bottom:62.994000px;}
.yef{bottom:68.580000px;}
.y2{bottom:76.890000px;}
.y7e{bottom:78.315000px;}
.yb4{bottom:78.528000px;}
.yee{bottom:84.090000px;}
.y7d{bottom:93.975000px;}
.yb3{bottom:94.062000px;}
.y3d{bottom:106.941000px;}
.y7c{bottom:109.455000px;}
.yb2{bottom:109.596000px;}
.yed{bottom:112.725000px;}
.y3c{bottom:122.601000px;}
.y7b{bottom:125.115000px;}
.yb1{bottom:125.130000px;}
.yeb{bottom:134.505000px;}
.y3b{bottom:138.081000px;}
.y7a{bottom:140.595000px;}
.yb0{bottom:140.664000px;}
.y3a{bottom:153.561000px;}
.y79{bottom:156.075000px;}
.yaf{bottom:156.198000px;}
.yea{bottom:156.300000px;}
.y39{bottom:169.041000px;}
.y78{bottom:171.555000px;}
.yae{bottom:171.732000px;}
.ye9{bottom:178.050000px;}
.y38{bottom:184.701000px;}
.y77{bottom:187.215000px;}
.yad{bottom:187.266000px;}
.ye8{bottom:199.800000px;}
.y37{bottom:200.181000px;}
.y76{bottom:202.695000px;}
.yac{bottom:202.800000px;}
.y36{bottom:215.841000px;}
.y75{bottom:218.175000px;}
.yab{bottom:218.334000px;}
.ye7{bottom:221.400000px;}
.y35{bottom:231.321000px;}
.y74{bottom:233.835000px;}
.yaa{bottom:233.868000px;}
.ye6{bottom:243.300000px;}
.y34{bottom:246.801000px;}
.y73{bottom:249.315000px;}
.ya9{bottom:249.402000px;}
.y33{bottom:262.281000px;}
.y72{bottom:264.795000px;}
.ya8{bottom:264.936000px;}
.ye5{bottom:265.050000px;}
.y32{bottom:277.941000px;}
.y71{bottom:280.455000px;}
.ya7{bottom:280.470000px;}
.ye4{bottom:286.800000px;}
.y31{bottom:293.421000px;}
.y70{bottom:295.935000px;}
.ye3{bottom:308.550000px;}
.y30{bottom:308.901000px;}
.ya6{bottom:309.150000px;}
.y6f{bottom:311.415000px;}
.y2f{bottom:324.561000px;}
.y6e{bottom:327.075000px;}
.ye2{bottom:330.300000px;}
.y2e{bottom:340.086000px;}
.y6d{bottom:342.600000px;}
.ya4{bottom:347.100000px;}
.ye1{bottom:352.050000px;}
.y2d{bottom:355.566000px;}
.y2c{bottom:371.046000px;}
.y6a{bottom:371.250000px;}
.yde{bottom:373.800000px;}
.ya3{bottom:385.350000px;}
.y2b{bottom:386.706000px;}
.y6c{bottom:394.500000px;}
.ye0{bottom:395.550000px;}
.y2a{bottom:402.186000px;}
.y29{bottom:417.666000px;}
.y6b{bottom:417.750000px;}
.ya2{bottom:423.450000px;}
.ydd{bottom:427.125000px;}
.y28{bottom:433.146000px;}
.y67{bottom:441.150000px;}
.ydc{bottom:448.657500px;}
.ya1{bottom:461.400000px;}
.y27{bottom:464.106000px;}
.ydb{bottom:464.190000px;}
.y69{bottom:464.250000px;}
.yda{bottom:479.722500px;}
.y68{bottom:487.500000px;}
.y26{bottom:495.066000px;}
.yd9{bottom:495.255000px;}
.ya0{bottom:503.040000px;}
.y64{bottom:510.750000px;}
.yd8{bottom:510.787500px;}
.y25{bottom:513.246000px;}
.yd7{bottom:526.320000px;}
.y66{bottom:534.000000px;}
.y9f{bottom:534.180000px;}
.yd6{bottom:541.852500px;}
.y24{bottom:542.226000px;}
.y9e{bottom:549.660000px;}
.y65{bottom:557.250000px;}
.yd5{bottom:560.385000px;}
.y23{bottom:560.406000px;}
.y9d{bottom:565.140000px;}
.yd4{bottom:575.917500px;}
.y22{bottom:576.066000px;}
.y5e{bottom:580.650000px;}
.yd3{bottom:591.450000px;}
.y21{bottom:591.546000px;}
.y9c{bottom:593.700000px;}
.y63{bottom:603.750000px;}
.yd2{bottom:606.982500px;}
.y20{bottom:607.056000px;}
.yd1{bottom:622.515000px;}
.y1f{bottom:622.536000px;}
.y9a{bottom:626.700000px;}
.y61{bottom:627.000000px;}
.y9b{bottom:630.000000px;}
.y60{bottom:630.300000px;}
.yd0{bottom:638.047500px;}
.y1e{bottom:638.196000px;}
.y5b{bottom:650.250000px;}
.y5d{bottom:653.100000px;}
.ycf{bottom:653.580000px;}
.y1d{bottom:653.676000px;}
.y98{bottom:659.700000px;}
.y99{bottom:662.850000px;}
.yce{bottom:669.112500px;}
.y1c{bottom:669.336000px;}
.y5a{bottom:683.451000px;}
.ycd{bottom:684.645000px;}
.y19{bottom:689.977500px;}
.y1b{bottom:691.476000px;}
.y96{bottom:692.550000px;}
.y97{bottom:695.850000px;}
.ycc{bottom:700.177500px;}
.y59{bottom:707.871000px;}
.y18{bottom:711.370500px;}
.ycb{bottom:715.710000px;}
.y17{bottom:718.125000px;}
.y1a{bottom:722.617500px;}
.y58{bottom:723.291000px;}
.y94{bottom:725.550000px;}
.y95{bottom:728.400000px;}
.yca{bottom:731.242500px;}
.y16{bottom:733.785000px;}
.y57{bottom:738.711000px;}
.yc9{bottom:746.775000px;}
.y15{bottom:749.265000px;}
.y56{bottom:754.131000px;}
.y93{bottom:761.700000px;}
.yc8{bottom:762.307500px;}
.y109{bottom:766.068000px;}
.yc7{bottom:777.840000px;}
.y108{bottom:781.728000px;}
.y14{bottom:783.825000px;}
.y55{bottom:785.631000px;}
.y92{bottom:792.840000px;}
.y107{bottom:797.388000px;}
.y54{bottom:801.171000px;}
.y13{bottom:805.425000px;}
.yc1{bottom:806.550000px;}
.y91{bottom:808.500000px;}
.yc6{bottom:809.700000px;}
.y106{bottom:812.868000px;}
.y53{bottom:816.711000px;}
.y90{bottom:823.980000px;}
.y105{bottom:828.528000px;}
.yc5{bottom:829.800000px;}
.y52{bottom:832.251000px;}
.yc4{bottom:833.100000px;}
.y12{bottom:834.045000px;}
.y8f{bottom:839.460000px;}
.y104{bottom:844.188000px;}
.y51{bottom:847.551000px;}
.yc3{bottom:853.200000px;}
.y8e{bottom:855.120000px;}
.y103{bottom:859.668000px;}
.y11{bottom:869.145000px;}
.y102{bottom:875.328000px;}
.yc2{bottom:876.450000px;}
.y50{bottom:878.736000px;}
.y8d{bottom:883.800000px;}
.y101{bottom:890.988000px;}
.ybd{bottom:899.550000px;}
.y100{bottom:906.513000px;}
.y8c{bottom:907.050000px;}
.y10{bottom:908.250000px;}
.y4f{bottom:910.236000px;}
.yff{bottom:922.173000px;}
.yc0{bottom:922.800000px;}
.y4e{bottom:925.762500px;}
.y8b{bottom:930.150000px;}
.yf{bottom:932.370000px;}
.yfe{bottom:937.833000px;}
.y4d{bottom:941.289000px;}
.ybf{bottom:946.050000px;}
.yfd{bottom:953.313000px;}
.y8a{bottom:953.400000px;}
.ye{bottom:956.670000px;}
.y4c{bottom:956.815500px;}
.yfc{bottom:968.613000px;}
.ybe{bottom:969.300000px;}
.y4b{bottom:972.342000px;}
.y88{bottom:976.650000px;}
.y4a{bottom:987.868500px;}
.yb9{bottom:992.700000px;}
.yfb{bottom:1000.113000px;}
.y87{bottom:1003.110000px;}
.y49{bottom:1003.395000px;}
.yfa{bottom:1015.593000px;}
.ybc{bottom:1015.950000px;}
.yd{bottom:1016.070000px;}
.y48{bottom:1018.921500px;}
.yf9{bottom:1031.073000px;}
.ya{bottom:1034.070000px;}
.y86{bottom:1034.250000px;}
.y47{bottom:1034.448000px;}
.ybb{bottom:1039.050000px;}
.yc{bottom:1039.290000px;}
.yf8{bottom:1046.733000px;}
.y85{bottom:1049.730000px;}
.y46{bottom:1049.974500px;}
.y9{bottom:1057.290000px;}
.yf7{bottom:1062.033000px;}
.yba{bottom:1062.300000px;}
.y84{bottom:1065.210000px;}
.yf6{bottom:1065.390000px;}
.y45{bottom:1065.501000px;}
.yb{bottom:1071.330000px;}
.y44{bottom:1081.027500px;}
.yf5{bottom:1081.050000px;}
.yb8{bottom:1085.550000px;}
.y8{bottom:1086.630000px;}
.y83{bottom:1096.170000px;}
.yf4{bottom:1096.530000px;}
.y43{bottom:1096.554000px;}
.y7{bottom:1105.710000px;}
.yf3{bottom:1112.010000px;}
.y42{bottom:1112.080500px;}
.yb7{bottom:1120.200000px;}
.y6{bottom:1122.990000px;}
.y41{bottom:1127.607000px;}
.y82{bottom:1127.670000px;}
.y5{bottom:1140.300000px;}
.y40{bottom:1143.133500px;}
.y81{bottom:1143.180000px;}
.y4{bottom:1158.300000px;}
.y3f{bottom:1158.660000px;}
.yf1{bottom:1175.160000px;}
.y3e{bottom:1193.700000px;}
.h23{height:20.880000px;}
.h22{height:20.895000px;}
.h21{height:20.910000px;}
.h24{height:21.045000px;}
.h20{height:21.060000px;}
.h14{height:22.350000px;}
.h11{height:22.500000px;}
.h13{height:22.530000px;}
.h17{height:32.220000px;}
.h18{height:32.250000px;}
.hc{height:35.314453px;}
.h1b{height:37.110000px;}
.h1a{height:37.260000px;}
.h1c{height:37.275000px;}
.h19{height:37.440000px;}
.hf{height:38.158594px;}
.h1f{height:42.840000px;}
.h10{height:47.344922px;}
.h6{height:48.616875px;}
.hb{height:52.971680px;}
.he{height:52.998047px;}
.hd{height:54.421875px;}
.h27{height:55.503491px;}
.h7{height:55.796836px;}
.h25{height:55.824609px;}
.h8{height:58.621992px;}
.h3{height:60.226875px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.h16{height:68.790000px;}
.h12{height:68.835000px;}
.h15{height:68.940000px;}
.ha{height:72.506250px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h1d{height:92.160000px;}
.h1e{height:92.370000px;}
.h26{height:102.913875px;}
.h0{height:1263.000000px;}
.w13{width:64.260000px;}
.w14{width:64.275000px;}
.w17{width:64.290000px;}
.w15{width:64.440000px;}
.w16{width:68.220000px;}
.w18{width:69.330000px;}
.wb{width:70.020000px;}
.we{width:70.380000px;}
.wd{width:70.560000px;}
.wf{width:70.575000px;}
.wc{width:70.590000px;}
.w8{width:70.920000px;}
.w4{width:71.280000px;}
.wa{width:71.460000px;}
.w9{width:71.490000px;}
.w6{width:71.640000px;}
.w5{width:71.655000px;}
.w7{width:71.670000px;}
.w10{width:102.810000px;}
.w11{width:107.310000px;}
.w1{width:146.370000px;}
.w2{width:169.050000px;}
.w3{width:175.200000px;}
.w12{width:655.350000px;}
.w0{width:894.000000px;}
.xf{left:-241.155000px;}
.xe{left:-150.075000px;}
.x10{left:-78.045000px;}
.x0{left:0.000000px;}
.x17{left:7.650000px;}
.x29{left:14.100000px;}
.x43{left:16.950000px;}
.x47{left:19.200000px;}
.x2e{left:20.700000px;}
.x3e{left:21.750000px;}
.x4b{left:23.100000px;}
.x30{left:24.150000px;}
.x4a{left:26.250000px;}
.x2a{left:27.600000px;}
.x2c{left:28.800000px;}
.x3{left:29.970000px;}
.x2d{left:31.950000px;}
.x28{left:33.450000px;}
.x1b{left:38.400000px;}
.x27{left:40.350000px;}
.xd{left:46.845000px;}
.x13{left:47.925000px;}
.x12{left:50.775000px;}
.x9{left:60.570000px;}
.xa{left:65.355000px;}
.x3d{left:71.400000px;}
.x50{left:75.285000px;}
.x4f{left:102.315000px;}
.xc{left:125.055000px;}
.x40{left:149.947500px;}
.x1f{left:165.450000px;}
.x32{left:169.950000px;}
.x41{left:179.100000px;}
.x16{left:207.450000px;}
.x39{left:222.955500px;}
.x20{left:237.150000px;}
.x33{left:240.300000px;}
.x6{left:244.170000px;}
.x4{left:270.300000px;}
.x42{left:272.850000px;}
.x5{left:290.610000px;}
.x3a{left:293.850000px;}
.x15{left:303.985500px;}
.x21{left:309.150000px;}
.x1e{left:312.081000px;}
.xb{left:321.435000px;}
.x2f{left:330.150000px;}
.x31{left:333.600000px;}
.x2b{left:340.050000px;}
.x1a{left:354.150000px;}
.x14{left:355.875000px;}
.x1d{left:358.881000px;}
.x18{left:362.250000px;}
.x3b{left:365.550000px;}
.x3f{left:373.650000px;}
.x22{left:381.150000px;}
.x34{left:382.200000px;}
.x4e{left:404.715000px;}
.x11{left:412.755000px;}
.x38{left:436.470000px;}
.x1{left:438.450000px;}
.x44{left:442.050000px;}
.x51{left:445.110000px;}
.x4c{left:447.750000px;}
.x4d{left:450.105000px;}
.x23{left:453.150000px;}
.x1c{left:458.631000px;}
.x2{left:465.570000px;}
.x7{left:478.965000px;}
.x8{left:506.580000px;}
.x35{left:523.950000px;}
.x24{left:525.150000px;}
.x19{left:529.650000px;}
.x3c{left:540.600000px;}
.x45{left:571.200000px;}
.x36{left:594.900000px;}
.x25{left:597.150000px;}
.x46{left:635.850000px;}
.x37{left:665.850000px;}
.x26{left:669.150000px;}
.x48{left:700.500000px;}
.x49{left:765.150000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v8{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v9{vertical-align:-54.400000pt;}
.v4{vertical-align:-27.040000pt;}
.v5{vertical-align:-21.120000pt;}
.v6{vertical-align:-20.010667pt;}
.v7{vertical-align:-12.005333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:27.040000pt;}
.va{vertical-align:43.104000pt;}
.ls1f{letter-spacing:-0.736000pt;}
.ls21{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.528000pt;}
.ls24{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.224000pt;}
.lse{letter-spacing:-0.196267pt;}
.ls1c{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls23{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.024320pt;}
.ls2f{letter-spacing:-0.016000pt;}
.ls1a{letter-spacing:-0.010667pt;}
.ls17{letter-spacing:-0.005333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000016pt;}
.ls16{letter-spacing:0.005333pt;}
.ls13{letter-spacing:0.010667pt;}
.ls6{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.021333pt;}
.ls27{letter-spacing:0.048000pt;}
.ls29{letter-spacing:0.053333pt;}
.ls1d{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.208000pt;}
.ls2b{letter-spacing:0.218667pt;}
.ls14{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.528000pt;}
.ls15{letter-spacing:1.200000pt;}
.ls22{letter-spacing:1.973333pt;}
.ls2d{letter-spacing:2.090683pt;}
.ls28{letter-spacing:2.096000pt;}
.ls2a{letter-spacing:2.101339pt;}
.ls32{letter-spacing:2.656000pt;}
.ls18{letter-spacing:3.717333pt;}
.ls4{letter-spacing:5.920000pt;}
.ls2e{letter-spacing:7.200000pt;}
.ls26{letter-spacing:9.984000pt;}
.ls2c{letter-spacing:10.474656pt;}
.ls5{letter-spacing:14.880000pt;}
.ls31{letter-spacing:26.976000pt;}
.ls8{letter-spacing:46.720000pt;}
.lsa{letter-spacing:49.440000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls7{letter-spacing:396.693333pt;}
.ls9{letter-spacing:1215.413333pt;}
.ls30{letter-spacing:1258.400000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.wsc{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.288000pt;}
.wsa{word-spacing:-12.208000pt;}
.ws13{word-spacing:-12.192000pt;}
.ws7{word-spacing:-12.112000pt;}
.ws12{word-spacing:-12.096000pt;}
.ws38{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws39{word-spacing:-11.904000pt;}
.ws11{word-spacing:-11.808000pt;}
.ws15{word-spacing:-11.776000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws3a{word-spacing:-11.520000pt;}
.ws10{word-spacing:-11.472000pt;}
.ws16{word-spacing:-11.360000pt;}
.ws14{word-spacing:-11.264000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws36{word-spacing:-0.576000pt;}
.ws64{word-spacing:-0.426667pt;}
.ws59{word-spacing:-0.389333pt;}
.ws60{word-spacing:-0.112000pt;}
.wse{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.144000pt;}
.ws61{word-spacing:0.202667pt;}
.ws37{word-spacing:0.208000pt;}
.ws5b{word-spacing:0.336000pt;}
.ws65{word-spacing:0.346667pt;}
.ws62{word-spacing:0.362667pt;}
.ws49{word-spacing:0.368000pt;}
.ws66{word-spacing:0.373333pt;}
.ws5f{word-spacing:0.378667pt;}
.ws63{word-spacing:0.469333pt;}
.ws4b{word-spacing:0.672000pt;}
.ws4a{word-spacing:2.229333pt;}
.ws4d{word-spacing:3.312000pt;}
.ws58{word-spacing:3.520000pt;}
.ws48{word-spacing:3.840000pt;}
.ws4e{word-spacing:3.861333pt;}
.ws4c{word-spacing:3.893333pt;}
.ws1e{word-spacing:3.936000pt;}
.ws1f{word-spacing:3.984000pt;}
.ws47{word-spacing:4.000000pt;}
.ws46{word-spacing:4.032000pt;}
.ws23{word-spacing:4.608000pt;}
.ws57{word-spacing:4.816000pt;}
.ws4f{word-spacing:4.981333pt;}
.ws24{word-spacing:5.136000pt;}
.ws20{word-spacing:5.232000pt;}
.ws22{word-spacing:5.280000pt;}
.ws34{word-spacing:5.328000pt;}
.ws26{word-spacing:5.376000pt;}
.ws3c{word-spacing:5.760000pt;}
.ws21{word-spacing:5.856000pt;}
.ws32{word-spacing:5.904000pt;}
.ws33{word-spacing:5.920000pt;}
.ws25{word-spacing:5.952000pt;}
.ws3b{word-spacing:6.378667pt;}
.ws2a{word-spacing:6.384000pt;}
.ws2e{word-spacing:6.432000pt;}
.ws51{word-spacing:6.453333pt;}
.ws2d{word-spacing:6.480000pt;}
.ws28{word-spacing:6.528000pt;}
.ws30{word-spacing:6.560000pt;}
.ws2c{word-spacing:6.576000pt;}
.ws2f{word-spacing:6.624000pt;}
.ws56{word-spacing:6.672000pt;}
.ws29{word-spacing:7.056000pt;}
.ws27{word-spacing:7.152000pt;}
.ws2b{word-spacing:7.200000pt;}
.ws1a{word-spacing:7.248000pt;}
.ws54{word-spacing:7.514667pt;}
.ws19{word-spacing:7.680000pt;}
.ws31{word-spacing:7.696000pt;}
.ws17{word-spacing:7.776000pt;}
.ws1c{word-spacing:7.824000pt;}
.ws18{word-spacing:7.872000pt;}
.ws53{word-spacing:7.989333pt;}
.ws35{word-spacing:8.181333pt;}
.ws1d{word-spacing:8.304000pt;}
.ws1b{word-spacing:8.448000pt;}
.ws50{word-spacing:8.842667pt;}
.ws55{word-spacing:8.928000pt;}
.ws3f{word-spacing:9.600000pt;}
.ws41{word-spacing:9.696000pt;}
.ws3d{word-spacing:9.744000pt;}
.ws40{word-spacing:9.760000pt;}
.ws44{word-spacing:9.792000pt;}
.ws43{word-spacing:9.898667pt;}
.ws3e{word-spacing:10.010667pt;}
.ws42{word-spacing:10.240000pt;}
.ws45{word-spacing:11.034667pt;}
.ws52{word-spacing:12.613333pt;}
.ws5c{word-spacing:13.562667pt;}
.ws5d{word-spacing:13.568000pt;}
.ws5e{word-spacing:13.594667pt;}
.wsd{word-spacing:1044.106667pt;}
._b{margin-left:-159.360213pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._7{width:2.832000pt;}
._d{width:3.792000pt;}
._c{width:4.848000pt;}
._8{width:5.807787pt;}
._9{width:7.296213pt;}
._f{width:8.383573pt;}
._10{width:9.744000pt;}
._19{width:10.751408pt;}
._1a{width:13.242853pt;}
._1b{width:14.179408pt;}
._a{width:15.162667pt;}
._1e{width:16.192416pt;}
._1d{width:17.162688pt;}
._12{width:18.096000pt;}
._13{width:19.429120pt;}
._5{width:21.168000pt;}
._6{width:22.138667pt;}
._1c{width:23.194667pt;}
._15{width:147.519984pt;}
._16{width:159.039984pt;}
._14{width:195.136000pt;}
._18{width:393.994667pt;}
._17{width:418.314667pt;}
._11{width:850.784853pt;}
._20{width:892.784000pt;}
._1f{width:925.546667pt;}
._4{width:1281.120000pt;}
._3{width:1399.520000pt;}
._e{width:1868.693333pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:2.533333pt;}
.y89{bottom:2.666667pt;}
.y5f{bottom:2.800000pt;}
.yec{bottom:2.866667pt;}
.y62{bottom:2.933333pt;}
.ya5{bottom:3.066667pt;}
.yf0{bottom:11.400000pt;}
.ydf{bottom:16.400000pt;}
.y80{bottom:18.386667pt;}
.yb6{bottom:20.400000pt;}
.y1{bottom:26.320000pt;}
.y10a{bottom:33.216000pt;}
.yf2{bottom:48.053333pt;}
.y3{bottom:51.520000pt;}
.y7f{bottom:55.826667pt;}
.yb5{bottom:55.994667pt;}
.yef{bottom:60.960000pt;}
.y2{bottom:68.346667pt;}
.y7e{bottom:69.613333pt;}
.yb4{bottom:69.802667pt;}
.yee{bottom:74.746667pt;}
.y7d{bottom:83.533333pt;}
.yb3{bottom:83.610667pt;}
.y3d{bottom:95.058667pt;}
.y7c{bottom:97.293333pt;}
.yb2{bottom:97.418667pt;}
.yed{bottom:100.200000pt;}
.y3c{bottom:108.978667pt;}
.y7b{bottom:111.213333pt;}
.yb1{bottom:111.226667pt;}
.yeb{bottom:119.560000pt;}
.y3b{bottom:122.738667pt;}
.y7a{bottom:124.973333pt;}
.yb0{bottom:125.034667pt;}
.y3a{bottom:136.498667pt;}
.y79{bottom:138.733333pt;}
.yaf{bottom:138.842667pt;}
.yea{bottom:138.933333pt;}
.y39{bottom:150.258667pt;}
.y78{bottom:152.493333pt;}
.yae{bottom:152.650667pt;}
.ye9{bottom:158.266667pt;}
.y38{bottom:164.178667pt;}
.y77{bottom:166.413333pt;}
.yad{bottom:166.458667pt;}
.ye8{bottom:177.600000pt;}
.y37{bottom:177.938667pt;}
.y76{bottom:180.173333pt;}
.yac{bottom:180.266667pt;}
.y36{bottom:191.858667pt;}
.y75{bottom:193.933333pt;}
.yab{bottom:194.074667pt;}
.ye7{bottom:196.800000pt;}
.y35{bottom:205.618667pt;}
.y74{bottom:207.853333pt;}
.yaa{bottom:207.882667pt;}
.ye6{bottom:216.266667pt;}
.y34{bottom:219.378667pt;}
.y73{bottom:221.613333pt;}
.ya9{bottom:221.690667pt;}
.y33{bottom:233.138667pt;}
.y72{bottom:235.373333pt;}
.ya8{bottom:235.498667pt;}
.ye5{bottom:235.600000pt;}
.y32{bottom:247.058667pt;}
.y71{bottom:249.293333pt;}
.ya7{bottom:249.306667pt;}
.ye4{bottom:254.933333pt;}
.y31{bottom:260.818667pt;}
.y70{bottom:263.053333pt;}
.ye3{bottom:274.266667pt;}
.y30{bottom:274.578667pt;}
.ya6{bottom:274.800000pt;}
.y6f{bottom:276.813333pt;}
.y2f{bottom:288.498667pt;}
.y6e{bottom:290.733333pt;}
.ye2{bottom:293.600000pt;}
.y2e{bottom:302.298667pt;}
.y6d{bottom:304.533333pt;}
.ya4{bottom:308.533333pt;}
.ye1{bottom:312.933333pt;}
.y2d{bottom:316.058667pt;}
.y2c{bottom:329.818667pt;}
.y6a{bottom:330.000000pt;}
.yde{bottom:332.266667pt;}
.ya3{bottom:342.533333pt;}
.y2b{bottom:343.738667pt;}
.y6c{bottom:350.666667pt;}
.ye0{bottom:351.600000pt;}
.y2a{bottom:357.498667pt;}
.y29{bottom:371.258667pt;}
.y6b{bottom:371.333333pt;}
.ya2{bottom:376.400000pt;}
.ydd{bottom:379.666667pt;}
.y28{bottom:385.018667pt;}
.y67{bottom:392.133333pt;}
.ydc{bottom:398.806667pt;}
.ya1{bottom:410.133333pt;}
.y27{bottom:412.538667pt;}
.ydb{bottom:412.613333pt;}
.y69{bottom:412.666667pt;}
.yda{bottom:426.420000pt;}
.y68{bottom:433.333333pt;}
.y26{bottom:440.058667pt;}
.yd9{bottom:440.226667pt;}
.ya0{bottom:447.146667pt;}
.y64{bottom:454.000000pt;}
.yd8{bottom:454.033333pt;}
.y25{bottom:456.218667pt;}
.yd7{bottom:467.840000pt;}
.y66{bottom:474.666667pt;}
.y9f{bottom:474.826667pt;}
.yd6{bottom:481.646667pt;}
.y24{bottom:481.978667pt;}
.y9e{bottom:488.586667pt;}
.y65{bottom:495.333333pt;}
.yd5{bottom:498.120000pt;}
.y23{bottom:498.138667pt;}
.y9d{bottom:502.346667pt;}
.yd4{bottom:511.926667pt;}
.y22{bottom:512.058667pt;}
.y5e{bottom:516.133333pt;}
.yd3{bottom:525.733333pt;}
.y21{bottom:525.818667pt;}
.y9c{bottom:527.733333pt;}
.y63{bottom:536.666667pt;}
.yd2{bottom:539.540000pt;}
.y20{bottom:539.605333pt;}
.yd1{bottom:553.346667pt;}
.y1f{bottom:553.365333pt;}
.y9a{bottom:557.066667pt;}
.y61{bottom:557.333333pt;}
.y9b{bottom:560.000000pt;}
.y60{bottom:560.266667pt;}
.yd0{bottom:567.153333pt;}
.y1e{bottom:567.285333pt;}
.y5b{bottom:578.000000pt;}
.y5d{bottom:580.533333pt;}
.ycf{bottom:580.960000pt;}
.y1d{bottom:581.045333pt;}
.y98{bottom:586.400000pt;}
.y99{bottom:589.200000pt;}
.yce{bottom:594.766667pt;}
.y1c{bottom:594.965333pt;}
.y5a{bottom:607.512000pt;}
.ycd{bottom:608.573333pt;}
.y19{bottom:613.313333pt;}
.y1b{bottom:614.645333pt;}
.y96{bottom:615.600000pt;}
.y97{bottom:618.533333pt;}
.ycc{bottom:622.380000pt;}
.y59{bottom:629.218667pt;}
.y18{bottom:632.329333pt;}
.ycb{bottom:636.186667pt;}
.y17{bottom:638.333333pt;}
.y1a{bottom:642.326667pt;}
.y58{bottom:642.925333pt;}
.y94{bottom:644.933333pt;}
.y95{bottom:647.466667pt;}
.yca{bottom:649.993333pt;}
.y16{bottom:652.253333pt;}
.y57{bottom:656.632000pt;}
.yc9{bottom:663.800000pt;}
.y15{bottom:666.013333pt;}
.y56{bottom:670.338667pt;}
.y93{bottom:677.066667pt;}
.yc8{bottom:677.606667pt;}
.y109{bottom:680.949333pt;}
.yc7{bottom:691.413333pt;}
.y108{bottom:694.869333pt;}
.y14{bottom:696.733333pt;}
.y55{bottom:698.338667pt;}
.y92{bottom:704.746667pt;}
.y107{bottom:708.789333pt;}
.y54{bottom:712.152000pt;}
.y13{bottom:715.933333pt;}
.yc1{bottom:716.933333pt;}
.y91{bottom:718.666667pt;}
.yc6{bottom:719.733333pt;}
.y106{bottom:722.549333pt;}
.y53{bottom:725.965333pt;}
.y90{bottom:732.426667pt;}
.y105{bottom:736.469333pt;}
.yc5{bottom:737.600000pt;}
.y52{bottom:739.778667pt;}
.yc4{bottom:740.533333pt;}
.y12{bottom:741.373333pt;}
.y8f{bottom:746.186667pt;}
.y104{bottom:750.389333pt;}
.y51{bottom:753.378667pt;}
.yc3{bottom:758.400000pt;}
.y8e{bottom:760.106667pt;}
.y103{bottom:764.149333pt;}
.y11{bottom:772.573333pt;}
.y102{bottom:778.069333pt;}
.yc2{bottom:779.066667pt;}
.y50{bottom:781.098667pt;}
.y8d{bottom:785.600000pt;}
.y101{bottom:791.989333pt;}
.ybd{bottom:799.600000pt;}
.y100{bottom:805.789333pt;}
.y8c{bottom:806.266667pt;}
.y10{bottom:807.333333pt;}
.y4f{bottom:809.098667pt;}
.yff{bottom:819.709333pt;}
.yc0{bottom:820.266667pt;}
.y4e{bottom:822.900000pt;}
.y8b{bottom:826.800000pt;}
.yf{bottom:828.773333pt;}
.yfe{bottom:833.629333pt;}
.y4d{bottom:836.701333pt;}
.ybf{bottom:840.933333pt;}
.yfd{bottom:847.389333pt;}
.y8a{bottom:847.466667pt;}
.ye{bottom:850.373333pt;}
.y4c{bottom:850.502667pt;}
.yfc{bottom:860.989333pt;}
.ybe{bottom:861.600000pt;}
.y4b{bottom:864.304000pt;}
.y88{bottom:868.133333pt;}
.y4a{bottom:878.105333pt;}
.yb9{bottom:882.400000pt;}
.yfb{bottom:888.989333pt;}
.y87{bottom:891.653333pt;}
.y49{bottom:891.906667pt;}
.yfa{bottom:902.749333pt;}
.ybc{bottom:903.066667pt;}
.yd{bottom:903.173333pt;}
.y48{bottom:905.708000pt;}
.yf9{bottom:916.509333pt;}
.ya{bottom:919.173333pt;}
.y86{bottom:919.333333pt;}
.y47{bottom:919.509333pt;}
.ybb{bottom:923.600000pt;}
.yc{bottom:923.813333pt;}
.yf8{bottom:930.429333pt;}
.y85{bottom:933.093333pt;}
.y46{bottom:933.310667pt;}
.y9{bottom:939.813333pt;}
.yf7{bottom:944.029333pt;}
.yba{bottom:944.266667pt;}
.y84{bottom:946.853333pt;}
.yf6{bottom:947.013333pt;}
.y45{bottom:947.112000pt;}
.yb{bottom:952.293333pt;}
.y44{bottom:960.913333pt;}
.yf5{bottom:960.933333pt;}
.yb8{bottom:964.933333pt;}
.y8{bottom:965.893333pt;}
.y83{bottom:974.373333pt;}
.yf4{bottom:974.693333pt;}
.y43{bottom:974.714667pt;}
.y7{bottom:982.853333pt;}
.yf3{bottom:988.453333pt;}
.y42{bottom:988.516000pt;}
.yb7{bottom:995.733333pt;}
.y6{bottom:998.213333pt;}
.y41{bottom:1002.317333pt;}
.y82{bottom:1002.373333pt;}
.y5{bottom:1013.600000pt;}
.y40{bottom:1016.118667pt;}
.y81{bottom:1016.160000pt;}
.y4{bottom:1029.600000pt;}
.y3f{bottom:1029.920000pt;}
.yf1{bottom:1044.586667pt;}
.y3e{bottom:1061.066667pt;}
.h23{height:18.560000pt;}
.h22{height:18.573333pt;}
.h21{height:18.586667pt;}
.h24{height:18.706667pt;}
.h20{height:18.720000pt;}
.h14{height:19.866667pt;}
.h11{height:20.000000pt;}
.h13{height:20.026667pt;}
.h17{height:28.640000pt;}
.h18{height:28.666667pt;}
.hc{height:31.390625pt;}
.h1b{height:32.986667pt;}
.h1a{height:33.120000pt;}
.h1c{height:33.133333pt;}
.h19{height:33.280000pt;}
.hf{height:33.918750pt;}
.h1f{height:38.080000pt;}
.h10{height:42.084375pt;}
.h6{height:43.215000pt;}
.hb{height:47.085938pt;}
.he{height:47.109375pt;}
.hd{height:48.375000pt;}
.h27{height:49.336436pt;}
.h7{height:49.597187pt;}
.h25{height:49.621875pt;}
.h8{height:52.108438pt;}
.h3{height:53.535000pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.h16{height:61.146667pt;}
.h12{height:61.186667pt;}
.h15{height:61.280000pt;}
.ha{height:64.450000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h1d{height:81.920000pt;}
.h1e{height:82.106667pt;}
.h26{height:91.479000pt;}
.h0{height:1122.666667pt;}
.w13{width:57.120000pt;}
.w14{width:57.133333pt;}
.w17{width:57.146667pt;}
.w15{width:57.280000pt;}
.w16{width:60.640000pt;}
.w18{width:61.626667pt;}
.wb{width:62.240000pt;}
.we{width:62.560000pt;}
.wd{width:62.720000pt;}
.wf{width:62.733333pt;}
.wc{width:62.746667pt;}
.w8{width:63.040000pt;}
.w4{width:63.360000pt;}
.wa{width:63.520000pt;}
.w9{width:63.546667pt;}
.w6{width:63.680000pt;}
.w5{width:63.693333pt;}
.w7{width:63.706667pt;}
.w10{width:91.386667pt;}
.w11{width:95.386667pt;}
.w1{width:130.106667pt;}
.w2{width:150.266667pt;}
.w3{width:155.733333pt;}
.w12{width:582.533333pt;}
.w0{width:794.666667pt;}
.xf{left:-214.360000pt;}
.xe{left:-133.400000pt;}
.x10{left:-69.373333pt;}
.x0{left:0.000000pt;}
.x17{left:6.800000pt;}
.x29{left:12.533333pt;}
.x43{left:15.066667pt;}
.x47{left:17.066667pt;}
.x2e{left:18.400000pt;}
.x3e{left:19.333333pt;}
.x4b{left:20.533333pt;}
.x30{left:21.466667pt;}
.x4a{left:23.333333pt;}
.x2a{left:24.533333pt;}
.x2c{left:25.600000pt;}
.x3{left:26.640000pt;}
.x2d{left:28.400000pt;}
.x28{left:29.733333pt;}
.x1b{left:34.133333pt;}
.x27{left:35.866667pt;}
.xd{left:41.640000pt;}
.x13{left:42.600000pt;}
.x12{left:45.133333pt;}
.x9{left:53.840000pt;}
.xa{left:58.093333pt;}
.x3d{left:63.466667pt;}
.x50{left:66.920000pt;}
.x4f{left:90.946667pt;}
.xc{left:111.160000pt;}
.x40{left:133.286667pt;}
.x1f{left:147.066667pt;}
.x32{left:151.066667pt;}
.x41{left:159.200000pt;}
.x16{left:184.400000pt;}
.x39{left:198.182667pt;}
.x20{left:210.800000pt;}
.x33{left:213.600000pt;}
.x6{left:217.040000pt;}
.x4{left:240.266667pt;}
.x42{left:242.533333pt;}
.x5{left:258.320000pt;}
.x3a{left:261.200000pt;}
.x15{left:270.209333pt;}
.x21{left:274.800000pt;}
.x1e{left:277.405333pt;}
.xb{left:285.720000pt;}
.x2f{left:293.466667pt;}
.x31{left:296.533333pt;}
.x2b{left:302.266667pt;}
.x1a{left:314.800000pt;}
.x14{left:316.333333pt;}
.x1d{left:319.005333pt;}
.x18{left:322.000000pt;}
.x3b{left:324.933333pt;}
.x3f{left:332.133333pt;}
.x22{left:338.800000pt;}
.x34{left:339.733333pt;}
.x4e{left:359.746667pt;}
.x11{left:366.893333pt;}
.x38{left:387.973333pt;}
.x1{left:389.733333pt;}
.x44{left:392.933333pt;}
.x51{left:395.653333pt;}
.x4c{left:398.000000pt;}
.x4d{left:400.093333pt;}
.x23{left:402.800000pt;}
.x1c{left:407.672000pt;}
.x2{left:413.840000pt;}
.x7{left:425.746667pt;}
.x8{left:450.293333pt;}
.x35{left:465.733333pt;}
.x24{left:466.800000pt;}
.x19{left:470.800000pt;}
.x3c{left:480.533333pt;}
.x45{left:507.733333pt;}
.x36{left:528.800000pt;}
.x25{left:530.800000pt;}
.x46{left:565.200000pt;}
.x37{left:591.866667pt;}
.x26{left:594.800000pt;}
.x48{left:622.666667pt;}
.x49{left:680.133333pt;}
}




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