
    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_97a1fc3071198b8ae4b2dad1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_efd0858cf0baa567195fe0f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b3f053df7e93c3546ded14ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_c4417f3b1ec477f713a6f11a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.897949;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_dbd5e7138eb8ad4ec9fe7981.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_18222a3f5bf25748ab9ee3b3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.730957;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_cda39cad93072cc90b50ee1c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_16ef5f6ba851cce8336b395d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_c1d72a811b80d1712eec4ed8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-74.640000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.920000px;}
.v2{vertical-align:8.160000px;}
.v5{vertical-align:51.000000px;}
.v6{vertical-align:57.600000px;}
.v3{vertical-align:60.360000px;}
.v7{vertical-align:86.520000px;}
.ls28{letter-spacing:-0.357600px;}
.ls17{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.178800px;}
.ls18{letter-spacing:-0.144000px;}
.ls2a{letter-spacing:-0.132600px;}
.ls29{letter-spacing:-0.121800px;}
.ls23{letter-spacing:-0.106800px;}
.ls15{letter-spacing:-0.092400px;}
.ls19{letter-spacing:-0.083400px;}
.lsf{letter-spacing:-0.079800px;}
.ls1f{letter-spacing:-0.072600px;}
.ls26{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.060600px;}
.ls16{letter-spacing:-0.044280px;}
.ls10{letter-spacing:-0.037440px;}
.ls1{letter-spacing:-0.036000px;}
.ls14{letter-spacing:-0.032040px;}
.lse{letter-spacing:-0.029520px;}
.ls11{letter-spacing:-0.016920px;}
.ls27{letter-spacing:-0.015840px;}
.ls25{letter-spacing:-0.012840px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000011px;}
.ls1e{letter-spacing:0.029880px;}
.ls2c{letter-spacing:0.030240px;}
.lsa{letter-spacing:0.035280px;}
.ls2d{letter-spacing:0.036720px;}
.ls2f{letter-spacing:0.059760px;}
.lsc{letter-spacing:0.060600px;}
.ls31{letter-spacing:0.063000px;}
.ls5{letter-spacing:0.064200px;}
.ls30{letter-spacing:0.069600px;}
.ls4{letter-spacing:0.072000px;}
.ls2e{letter-spacing:0.073800px;}
.lsb{letter-spacing:0.077400px;}
.ls9{letter-spacing:0.079800px;}
.ls8{letter-spacing:0.083400px;}
.ls12{letter-spacing:0.102000px;}
.ls7{letter-spacing:0.119400px;}
.ls6{letter-spacing:0.120000px;}
.ls2b{letter-spacing:0.262200px;}
.ls21{letter-spacing:30.780000px;}
.ls2{letter-spacing:32.328000px;}
.ls3{letter-spacing:32.688000px;}
.ls22{letter-spacing:43.763760px;}
.ls1d{letter-spacing:53.520480px;}
.ls13{letter-spacing:85.878000px;}
.ls1b{letter-spacing:85.956000px;}
.ls1a{letter-spacing:85.998000px;}
.ls24{letter-spacing:185.958000px;}
.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;}
}
.ws1a{word-spacing:-71.759520px;}
.ws2a{word-spacing:-65.088000px;}
.ws2f{word-spacing:-54.529320px;}
.ws11{word-spacing:-54.267120px;}
.ws14{word-spacing:-54.235080px;}
.wsd{word-spacing:-54.229680px;}
.ws21{word-spacing:-54.194520px;}
.ws22{word-spacing:-54.088320px;}
.ws3c{word-spacing:-48.843120px;}
.ws6{word-spacing:-48.816000px;}
.ws1c{word-spacing:-43.392000px;}
.ws1d{word-spacing:-43.364880px;}
.ws1e{word-spacing:-43.281480px;}
.ws1b{word-spacing:-43.248000px;}
.wsa{word-spacing:-38.074920px;}
.ws24{word-spacing:-38.022240px;}
.wsf{word-spacing:-37.995120px;}
.ws12{word-spacing:-32.544000px;}
.ws25{word-spacing:-29.859120px;}
.ws32{word-spacing:-27.166680px;}
.ws36{word-spacing:-27.162480px;}
.ws5{word-spacing:-27.157080px;}
.ws30{word-spacing:-27.153480px;}
.ws4{word-spacing:-27.092880px;}
.ws1{word-spacing:-24.408000px;}
.ws2e{word-spacing:-21.723120px;}
.wse{word-spacing:-18.956880px;}
.ws18{word-spacing:-18.912600px;}
.ws8{word-spacing:-13.706520px;}
.ws7{word-spacing:-13.587120px;}
.ws29{word-spacing:-13.229520px;}
.ws3a{word-spacing:-0.991440px;}
.ws17{word-spacing:-0.651240px;}
.ws13{word-spacing:-0.636000px;}
.ws3{word-spacing:-0.528000px;}
.ws38{word-spacing:-0.513000px;}
.ws3d{word-spacing:-0.301200px;}
.ws33{word-spacing:-0.164040px;}
.ws39{word-spacing:-0.043200px;}
.wsc{word-spacing:-0.002640px;}
.ws2{word-spacing:0.000000px;}
.wsb{word-spacing:0.104040px;}
.ws3b{word-spacing:0.494760px;}
.ws31{word-spacing:0.567720px;}
.ws37{word-spacing:0.573960px;}
.ws16{word-spacing:0.607680px;}
.ws34{word-spacing:0.636600px;}
.ws9{word-spacing:0.873840px;}
.ws19{word-spacing:0.876000px;}
.ws1f{word-spacing:1.115280px;}
.ws15{word-spacing:1.324440px;}
.ws10{word-spacing:1.440000px;}
.ws26{word-spacing:1.800000px;}
.ws20{word-spacing:13.514760px;}
.ws27{word-spacing:14.796000px;}
.ws28{word-spacing:15.156000px;}
.ws2b{word-spacing:21.912000px;}
.ws35{word-spacing:27.573960px;}
.ws0{word-spacing:64.440840px;}
.ws23{word-spacing:111.181800px;}
.ws2c{word-spacing:135.336000px;}
.ws2d{word-spacing:135.397800px;}
._0{margin-left:-1.441800px;}
._1{width:1.441800px;}
._4{width:2.640000px;}
._10{width:3.967320px;}
._e{width:28.399080px;}
._f{width:30.018840px;}
._6{width:32.908200px;}
._c{width:53.247840px;}
._d{width:55.402320px;}
._5{width:868.921800px;}
._2{width:929.685240px;}
._8{width:1275.720120px;}
._7{width:1558.509840px;}
._3{width:1598.829840px;}
._b{width:2208.111240px;}
._a{width:4237.759080px;}
._9{width:4301.506560px;}
.fc9{color:rgb(192,0,0);}
.fc6{color:transparent;}
.fc5{color:rgb(144,144,133);}
.fc3{color:rgb(255,0,0);}
.fc8{color:rgb(137,137,137);}
.fc7{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(0,102,255);}
.fc0{color:rgb(7,82,154);}
.fsa{font-size:60.120000px;}
.fs13{font-size:72.000000px;}
.fs8{font-size:79.560000px;}
.fs1a{font-size:79.920000px;}
.fs12{font-size:83.880000px;}
.fs14{font-size:84.000000px;}
.fs3{font-size:96.120000px;}
.fs4{font-size:108.000000px;}
.fs19{font-size:111.960000px;}
.fs2{font-size:119.880000px;}
.fs1c{font-size:128.160000px;}
.fs1b{font-size:132.120000px;}
.fs6{font-size:144.000000px;}
.fs7{font-size:144.120000px;}
.fsc{font-size:168.120000px;}
.fsb{font-size:168.240000px;}
.fs11{font-size:191.880000px;}
.fs17{font-size:192.000000px;}
.fs5{font-size:216.000000px;}
.fs18{font-size:216.120000px;}
.fsd{font-size:240.120000px;}
.fse{font-size:240.240000px;}
.fs0{font-size:253.800000px;}
.fs1{font-size:253.920000px;}
.fs10{font-size:288.000000px;}
.fs1d{font-size:288.120000px;}
.fs15{font-size:317.520000px;}
.fs9{font-size:360.000000px;}
.fs16{font-size:381.000000px;}
.fsf{font-size:396.000000px;}
.y0{bottom:0.000000px;}
.yd2{bottom:12.300000px;}
.y40{bottom:19.770000px;}
.y3f{bottom:20.730000px;}
.y8{bottom:21.840000px;}
.y54{bottom:21.990000px;}
.y52{bottom:23.010000px;}
.y43{bottom:23.220000px;}
.y12{bottom:27.060000px;}
.y4a{bottom:35.460000px;}
.y8b{bottom:36.030000px;}
.y92{bottom:39.420000px;}
.y42{bottom:44.820000px;}
.y53{bottom:47.220000px;}
.y51{bottom:48.210000px;}
.y30{bottom:61.980000px;}
.y31{bottom:63.690000px;}
.y7a{bottom:68.100000px;}
.y11{bottom:68.430000px;}
.y5f{bottom:68.640000px;}
.y66{bottom:68.820000px;}
.y21{bottom:70.290000px;}
.ye4{bottom:70.740000px;}
.y7{bottom:71.340000px;}
.y9c{bottom:76.140000px;}
.y28{bottom:76.440000px;}
.ya8{bottom:77.310000px;}
.yc6{bottom:80.640000px;}
.y5b{bottom:81.120000px;}
.y91{bottom:82.620000px;}
.yd3{bottom:82.770000px;}
.y84{bottom:83.850000px;}
.y19{bottom:86.760000px;}
.y72{bottom:87.240000px;}
.ya5{bottom:90.930000px;}
.y63{bottom:94.440000px;}
.y6d{bottom:98.490000px;}
.ycb{bottom:102.210000px;}
.y6{bottom:102.840000px;}
.y79{bottom:104.070000px;}
.y10{bottom:104.430000px;}
.ye3{bottom:106.740000px;}
.yec{bottom:107.760000px;}
.y34{bottom:111.870000px;}
.y83{bottom:112.890000px;}
.y3b{bottom:114.900000px;}
.y89{bottom:116.040000px;}
.yd8{bottom:118.470000px;}
.yb3{bottom:118.860000px;}
.y49{bottom:123.690000px;}
.y18{bottom:129.960000px;}
.ybf{bottom:130.470000px;}
.ya4{bottom:132.900000px;}
.y2f{bottom:133.980000px;}
.y9b{bottom:137.370000px;}
.yc5{bottom:142.560000px;}
.ye2{bottom:142.740000px;}
.y20{bottom:145.890000px;}
.y93{bottom:148.860000px;}
.y5{bottom:152.370000px;}
.y27{bottom:157.470000px;}
.y78{bottom:157.650000px;}
.y7d{bottom:159.270000px;}
.yd1{bottom:159.690000px;}
.yca{bottom:159.810000px;}
.ybd{bottom:163.380000px;}
.yba{bottom:166.440000px;}
.y62{bottom:166.470000px;}
.yb7{bottom:166.500000px;}
.y33{bottom:167.040000px;}
.yd7{bottom:168.900000px;}
.yf{bottom:170.850000px;}
.y17{bottom:173.160000px;}
.ye1{bottom:178.740000px;}
.y71{bottom:188.070000px;}
.y6c{bottom:188.520000px;}
.y4{bottom:191.070000px;}
.y3a{bottom:191.940000px;}
.y95{bottom:192.120000px;}
.y5d{bottom:194.460000px;}
.y2c{bottom:196.050000px;}
.y82{bottom:198.870000px;}
.y74{bottom:202.470000px;}
.y48{bottom:213.690000px;}
.ye{bottom:214.080000px;}
.ye7{bottom:214.740000px;}
.y16{bottom:216.360000px;}
.y1f{bottom:221.490000px;}
.y77{bottom:222.450000px;}
.yc9{bottom:223.740000px;}
.ya0{bottom:224.070000px;}
.yd0{bottom:224.490000px;}
.y9a{bottom:226.500000px;}
.yb2{bottom:226.860000px;}
.ya6{bottom:229.890000px;}
.y88{bottom:231.270000px;}
.yeb{bottom:237.360000px;}
.y26{bottom:238.470000px;}
.y32{bottom:239.070000px;}
.y6b{bottom:246.120000px;}
.yae{bottom:247.770000px;}
.yc4{bottom:248.130000px;}
.y94{bottom:249.720000px;}
.ye0{bottom:250.740000px;}
.yd{bottom:257.280000px;}
.ya7{bottom:259.320000px;}
.y39{bottom:263.940000px;}
.yd6{bottom:269.700000px;}
.y81{bottom:270.870000px;}
.y61{bottom:274.470000px;}
.y50{bottom:281.190000px;}
.y56{bottom:281.430000px;}
.y55{bottom:281.640000px;}
.y4d{bottom:281.670000px;}
.y2b{bottom:282.450000px;}
.ya3{bottom:284.100000px;}
.y47{bottom:285.690000px;}
.ydf{bottom:286.770000px;}
.y76{bottom:287.250000px;}
.y70{bottom:288.870000px;}
.y1e{bottom:297.120000px;}
.y3e{bottom:299.940000px;}
.y7c{bottom:300.120000px;}
.ybe{bottom:302.340000px;}
.y87{bottom:303.270000px;}
.yb6{bottom:303.330000px;}
.yad{bottom:312.570000px;}
.y25{bottom:319.470000px;}
.yd5{bottom:320.100000px;}
.yc3{bottom:320.160000px;}
.y9f{bottom:321.270000px;}
.yde{bottom:322.770000px;}
.y99{bottom:327.300000px;}
.yc{bottom:329.280000px;}
.ycf{bottom:332.490000px;}
.ya2{bottom:334.500000px;}
.yea{bottom:334.560000px;}
.yb1{bottom:334.860000px;}
.y38{bottom:335.940000px;}
.y6a{bottom:336.120000px;}
.y80{bottom:342.870000px;}
.y60{bottom:346.470000px;}
.y75{bottom:352.050000px;}
.y46{bottom:357.720000px;}
.ye6{bottom:358.770000px;}
.y6f{bottom:360.870000px;}
.y3{bottom:363.210000px;}
.yd4{bottom:370.500000px;}
.y3d{bottom:371.940000px;}
.y5e{bottom:372.240000px;}
.y1d{bottom:372.720000px;}
.y86{bottom:375.270000px;}
.yb{bottom:377.160000px;}
.yac{bottom:377.370000px;}
.y65{bottom:378.420000px;}
.ya1{bottom:389.670000px;}
.y9e{bottom:393.270000px;}
.ydd{bottom:394.770000px;}
.yce{bottom:397.320000px;}
.y37{bottom:407.940000px;}
.y8a{bottom:418.470000px;}
.y69{bottom:426.120000px;}
.y98{bottom:428.100000px;}
.y45{bottom:429.720000px;}
.yc8{bottom:429.840000px;}
.ydc{bottom:430.770000px;}
.ye9{bottom:431.790000px;}
.y7f{bottom:435.300000px;}
.y2{bottom:439.440000px;}
.yb9{bottom:440.070000px;}
.yb5{bottom:440.130000px;}
.ybc{bottom:441.270000px;}
.ya{bottom:441.960000px;}
.yab{bottom:442.170000px;}
.yb0{bottom:442.890000px;}
.y3c{bottom:443.940000px;}
.y24{bottom:445.470000px;}
.y85{bottom:447.270000px;}
.y1c{bottom:448.320000px;}
.y73{bottom:454.470000px;}
.y6e{bottom:461.670000px;}
.yc2{bottom:464.160000px;}
.y64{bottom:464.820000px;}
.y9d{bottom:465.270000px;}
.ye5{bottom:466.770000px;}
.y97{bottom:478.530000px;}
.y68{bottom:483.750000px;}
.y7e{bottom:490.500000px;}
.yc7{bottom:493.740000px;}
.y2a{bottom:494.790000px;}
.y7b{bottom:501.750000px;}
.ydb{bottom:502.770000px;}
.ycd{bottom:505.320000px;}
.yaa{bottom:506.970000px;}
.y1{bottom:515.670000px;}
.y36{bottom:515.940000px;}
.y23{bottom:518.580000px;}
.y1b{bottom:523.920000px;}
.y2d{bottom:525.930000px;}
.ye8{bottom:528.990000px;}
.y44{bottom:530.520000px;}
.y90{bottom:535.350000px;}
.yc1{bottom:536.160000px;}
.yda{bottom:538.770000px;}
.y4b{bottom:541.050000px;}
.y4e{bottom:541.080000px;}
.y4c{bottom:541.200000px;}
.y4f{bottom:543.090000px;}
.yaf{bottom:550.890000px;}
.y22{bottom:562.500000px;}
.ycc{bottom:570.120000px;}
.ya9{bottom:571.800000px;}
.y67{bottom:573.750000px;}
.yd9{bottom:574.770000px;}
.yb8{bottom:576.870000px;}
.yb4{bottom:576.930000px;}
.y96{bottom:579.330000px;}
.ybb{bottom:580.230000px;}
.y35{bottom:587.970000px;}
.y1a{bottom:599.550000px;}
.y14{bottom:607.320000px;}
.y8f{bottom:607.380000px;}
.yc0{bottom:608.160000px;}
.y29{bottom:613.590000px;}
.y58{bottom:615.150000px;}
.y41{bottom:654.690000px;}
.y5a{bottom:670.950000px;}
.y5c{bottom:671.070000px;}
.y13{bottom:672.120000px;}
.y8e{bottom:679.380000px;}
.y57{bottom:679.950000px;}
.y15{bottom:693.660000px;}
.y2e{bottom:693.690000px;}
.y59{bottom:721.350000px;}
.y8c{bottom:729.030000px;}
.y8d{bottom:748.230000px;}
.y9{bottom:760.740000px;}
.h21{height:57.442500px;}
.h1e{height:59.797090px;}
.h1d{height:61.558418px;}
.h13{height:73.722656px;}
.h9{height:79.132676px;}
.h12{height:83.429473px;}
.h22{height:83.970000px;}
.h14{height:85.886895px;}
.h16{height:86.009766px;}
.h18{height:87.806895px;}
.h15{height:94.046895px;}
.h4{height:95.603730px;}
.h26{height:98.419746px;}
.h28{height:104.836465px;}
.h5{height:110.583984px;}
.h27{height:119.236113px;}
.h3{height:122.748223px;}
.h24{height:135.281074px;}
.h19{height:136.886895px;}
.h17{height:146.246895px;}
.h7{height:147.445312px;}
.h8{height:147.568184px;}
.hc{height:172.142402px;}
.hb{height:172.265273px;}
.h23{height:190.849395px;}
.h11{height:196.470879px;}
.h1f{height:196.593750px;}
.h1a{height:214.839844px;}
.h6{height:221.167969px;}
.h20{height:221.290840px;}
.hd{height:245.865059px;}
.he{height:245.987930px;}
.h1{height:259.872363px;}
.h2{height:259.995234px;}
.h10{height:294.890625px;}
.h25{height:295.013496px;}
.h1b{height:325.116914px;}
.ha{height:368.613281px;}
.h1c{height:390.115723px;}
.hf{height:405.474609px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x6c{left:8.579979px;}
.x47{left:9.839979px;}
.x30{left:23.609979px;}
.x96{left:35.369979px;}
.x73{left:38.729979px;}
.xc{left:44.999979px;}
.x10{left:49.259979px;}
.x3c{left:51.779979px;}
.x82{left:56.249979px;}
.x81{left:58.619979px;}
.x7f{left:64.199979px;}
.x3e{left:70.589979px;}
.x29{left:76.619979px;}
.x23{left:84.179979px;}
.x3d{left:87.509979px;}
.xf{left:96.929979px;}
.x97{left:99.089979px;}
.x66{left:101.609979px;}
.x86{left:112.949979px;}
.x6a{left:116.759979px;}
.x52{left:118.439979px;}
.x64{left:134.159979px;}
.x46{left:135.599979px;}
.x78{left:137.429979px;}
.x89{left:142.439979px;}
.x8c{left:143.909979px;}
.x7a{left:146.339979px;}
.x7c{left:149.309979px;}
.x22{left:155.159979px;}
.x27{left:158.339979px;}
.x24{left:160.499979px;}
.x9a{left:164.999979px;}
.x69{left:166.289979px;}
.x7b{left:168.569979px;}
.x8b{left:171.089979px;}
.x65{left:173.399979px;}
.x87{left:183.689979px;}
.x60{left:186.119979px;}
.x1f{left:187.139979px;}
.x1c{left:188.729979px;}
.x5e{left:189.809979px;}
.x99{left:193.589979px;}
.x1{left:195.599979px;}
.x2{left:198.329979px;}
.x3{left:201.239979px;}
.x14{left:204.509979px;}
.x83{left:208.439979px;}
.x4b{left:209.459979px;}
.x2d{left:211.619979px;}
.x50{left:212.849979px;}
.x8a{left:214.289979px;}
.x75{left:216.119979px;}
.x44{left:225.809979px;}
.x84{left:227.069979px;}
.x31{left:229.019979px;}
.x4f{left:236.429979px;}
.x21{left:237.479979px;}
.x88{left:242.639979px;}
.x76{left:246.809979px;}
.x19{left:250.619979px;}
.x74{left:255.299979px;}
.x5f{left:262.709979px;}
.x43{left:264.329979px;}
.x18{left:266.159979px;}
.x91{left:268.049979px;}
.x7{left:271.619979px;}
.x17{left:272.909979px;}
.x16{left:283.079979px;}
.xd{left:284.669979px;}
.x94{left:289.709979px;}
.x4{left:292.319979px;}
.x39{left:300.569979px;}
.x2a{left:307.139979px;}
.x53{left:308.909979px;}
.x38{left:313.019979px;}
.x12{left:316.049979px;}
.x5{left:324.269979px;}
.x68{left:325.529979px;}
.x4e{left:332.759979px;}
.x5d{left:342.389979px;}
.x9{left:346.409979px;}
.x28{left:348.689979px;}
.x6{left:357.299979px;}
.x72{left:360.209979px;}
.x67{left:364.589979px;}
.x48{left:371.129979px;}
.x7d{left:374.279979px;}
.x98{left:375.869979px;}
.x45{left:381.419979px;}
.xe{left:382.859979px;}
.x85{left:390.149979px;}
.xb{left:395.099979px;}
.x8f{left:401.189979px;}
.x93{left:403.349979px;}
.x20{left:415.589979px;}
.x5c{left:427.439979px;}
.x5a{left:434.009979px;}
.x8e{left:435.119979px;}
.x51{left:444.029979px;}
.x13{left:451.529979px;}
.x4d{left:453.269979px;}
.x55{left:455.549979px;}
.x58{left:460.619979px;}
.x5b{left:463.799979px;}
.x11{left:470.669979px;}
.x49{left:473.099979px;}
.x4a{left:476.159979px;}
.x6b{left:482.819979px;}
.x8{left:485.459979px;}
.x90{left:488.969979px;}
.x4c{left:507.779979px;}
.x95{left:512.759979px;}
.x54{left:528.179979px;}
.x3f{left:530.639979px;}
.x35{left:533.399979px;}
.x34{left:535.229979px;}
.x61{left:548.399979px;}
.x80{left:554.189979px;}
.xa{left:555.839979px;}
.x15{left:570.209979px;}
.x56{left:573.359979px;}
.x7e{left:579.719979px;}
.x92{left:614.219979px;}
.x63{left:637.259979px;}
.x57{left:639.479979px;}
.x2b{left:656.249979px;}
.x2e{left:681.269979px;}
.x2c{left:696.749979px;}
.x1d{left:700.709979px;}
.x59{left:712.289979px;}
.x1a{left:722.129979px;}
.x1e{left:723.299979px;}
.x25{left:726.539979px;}
.x1b{left:741.209979px;}
.x3b{left:765.419979px;}
.x3a{left:779.999979px;}
.x79{left:783.839979px;}
.x36{left:789.749979px;}
.x2f{left:796.769979px;}
.x8d{left:800.849979px;}
.x26{left:815.309979px;}
.x77{left:823.259979px;}
.x70{left:930.569979px;}
.x6d{left:958.559979px;}
.x6e{left:959.819979px;}
.x6f{left:1004.939979px;}
.x40{left:1013.069979px;}
.x37{left:1015.709979px;}
.x71{left:1143.449979px;}
.x33{left:1191.659979px;}
.x32{left:1229.099979px;}
.x41{left:1251.389979px;}
.x42{left:1269.479979px;}
.x62{left:1387.949979px;}
@media print{
.v1{vertical-align:-66.346667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.706667pt;}
.v2{vertical-align:7.253333pt;}
.v5{vertical-align:45.333333pt;}
.v6{vertical-align:51.200000pt;}
.v3{vertical-align:53.653333pt;}
.v7{vertical-align:76.906667pt;}
.ls28{letter-spacing:-0.317867pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.158933pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls2a{letter-spacing:-0.117867pt;}
.ls29{letter-spacing:-0.108267pt;}
.ls23{letter-spacing:-0.094933pt;}
.ls15{letter-spacing:-0.082133pt;}
.ls19{letter-spacing:-0.074133pt;}
.lsf{letter-spacing:-0.070933pt;}
.ls1f{letter-spacing:-0.064533pt;}
.ls26{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.053867pt;}
.ls16{letter-spacing:-0.039360pt;}
.ls10{letter-spacing:-0.033280pt;}
.ls1{letter-spacing:-0.032000pt;}
.ls14{letter-spacing:-0.028480pt;}
.lse{letter-spacing:-0.026240pt;}
.ls11{letter-spacing:-0.015040pt;}
.ls27{letter-spacing:-0.014080pt;}
.ls25{letter-spacing:-0.011413pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000010pt;}
.ls1e{letter-spacing:0.026560pt;}
.ls2c{letter-spacing:0.026880pt;}
.lsa{letter-spacing:0.031360pt;}
.ls2d{letter-spacing:0.032640pt;}
.ls2f{letter-spacing:0.053120pt;}
.lsc{letter-spacing:0.053867pt;}
.ls31{letter-spacing:0.056000pt;}
.ls5{letter-spacing:0.057067pt;}
.ls30{letter-spacing:0.061867pt;}
.ls4{letter-spacing:0.064000pt;}
.ls2e{letter-spacing:0.065600pt;}
.lsb{letter-spacing:0.068800pt;}
.ls9{letter-spacing:0.070933pt;}
.ls8{letter-spacing:0.074133pt;}
.ls12{letter-spacing:0.090667pt;}
.ls7{letter-spacing:0.106133pt;}
.ls6{letter-spacing:0.106667pt;}
.ls2b{letter-spacing:0.233067pt;}
.ls21{letter-spacing:27.360000pt;}
.ls2{letter-spacing:28.736000pt;}
.ls3{letter-spacing:29.056000pt;}
.ls22{letter-spacing:38.901120pt;}
.ls1d{letter-spacing:47.573760pt;}
.ls13{letter-spacing:76.336000pt;}
.ls1b{letter-spacing:76.405333pt;}
.ls1a{letter-spacing:76.442667pt;}
.ls24{letter-spacing:165.296000pt;}
.ws1a{word-spacing:-63.786240pt;}
.ws2a{word-spacing:-57.856000pt;}
.ws2f{word-spacing:-48.470507pt;}
.ws11{word-spacing:-48.237440pt;}
.ws14{word-spacing:-48.208960pt;}
.wsd{word-spacing:-48.204160pt;}
.ws21{word-spacing:-48.172907pt;}
.ws22{word-spacing:-48.078507pt;}
.ws3c{word-spacing:-43.416107pt;}
.ws6{word-spacing:-43.392000pt;}
.ws1c{word-spacing:-38.570667pt;}
.ws1d{word-spacing:-38.546560pt;}
.ws1e{word-spacing:-38.472427pt;}
.ws1b{word-spacing:-38.442667pt;}
.wsa{word-spacing:-33.844373pt;}
.ws24{word-spacing:-33.797547pt;}
.wsf{word-spacing:-33.773440pt;}
.ws12{word-spacing:-28.928000pt;}
.ws25{word-spacing:-26.541440pt;}
.ws32{word-spacing:-24.148160pt;}
.ws36{word-spacing:-24.144427pt;}
.ws5{word-spacing:-24.139627pt;}
.ws30{word-spacing:-24.136427pt;}
.ws4{word-spacing:-24.082560pt;}
.ws1{word-spacing:-21.696000pt;}
.ws2e{word-spacing:-19.309440pt;}
.wse{word-spacing:-16.850560pt;}
.ws18{word-spacing:-16.811200pt;}
.ws8{word-spacing:-12.183573pt;}
.ws7{word-spacing:-12.077440pt;}
.ws29{word-spacing:-11.759573pt;}
.ws3a{word-spacing:-0.881280pt;}
.ws17{word-spacing:-0.578880pt;}
.ws13{word-spacing:-0.565333pt;}
.ws3{word-spacing:-0.469333pt;}
.ws38{word-spacing:-0.456000pt;}
.ws3d{word-spacing:-0.267733pt;}
.ws33{word-spacing:-0.145813pt;}
.ws39{word-spacing:-0.038400pt;}
.wsc{word-spacing:-0.002347pt;}
.ws2{word-spacing:0.000000pt;}
.wsb{word-spacing:0.092480pt;}
.ws3b{word-spacing:0.439787pt;}
.ws31{word-spacing:0.504640pt;}
.ws37{word-spacing:0.510187pt;}
.ws16{word-spacing:0.540160pt;}
.ws34{word-spacing:0.565867pt;}
.ws9{word-spacing:0.776747pt;}
.ws19{word-spacing:0.778667pt;}
.ws1f{word-spacing:0.991360pt;}
.ws15{word-spacing:1.177280pt;}
.ws10{word-spacing:1.280000pt;}
.ws26{word-spacing:1.600000pt;}
.ws20{word-spacing:12.013120pt;}
.ws27{word-spacing:13.152000pt;}
.ws28{word-spacing:13.472000pt;}
.ws2b{word-spacing:19.477333pt;}
.ws35{word-spacing:24.510187pt;}
.ws0{word-spacing:57.280747pt;}
.ws23{word-spacing:98.828267pt;}
.ws2c{word-spacing:120.298667pt;}
.ws2d{word-spacing:120.353600pt;}
._0{margin-left:-1.281600pt;}
._1{width:1.281600pt;}
._4{width:2.346667pt;}
._10{width:3.526507pt;}
._e{width:25.243627pt;}
._f{width:26.683413pt;}
._6{width:29.251733pt;}
._c{width:47.331413pt;}
._d{width:49.246507pt;}
._5{width:772.374933pt;}
._2{width:826.386880pt;}
._8{width:1133.973440pt;}
._7{width:1385.342080pt;}
._3{width:1421.182080pt;}
._b{width:1962.765547pt;}
._a{width:3766.896960pt;}
._9{width:3823.561387pt;}
.fsa{font-size:53.440000pt;}
.fs13{font-size:64.000000pt;}
.fs8{font-size:70.720000pt;}
.fs1a{font-size:71.040000pt;}
.fs12{font-size:74.560000pt;}
.fs14{font-size:74.666667pt;}
.fs3{font-size:85.440000pt;}
.fs4{font-size:96.000000pt;}
.fs19{font-size:99.520000pt;}
.fs2{font-size:106.560000pt;}
.fs1c{font-size:113.920000pt;}
.fs1b{font-size:117.440000pt;}
.fs6{font-size:128.000000pt;}
.fs7{font-size:128.106667pt;}
.fsc{font-size:149.440000pt;}
.fsb{font-size:149.546667pt;}
.fs11{font-size:170.560000pt;}
.fs17{font-size:170.666667pt;}
.fs5{font-size:192.000000pt;}
.fs18{font-size:192.106667pt;}
.fsd{font-size:213.440000pt;}
.fse{font-size:213.546667pt;}
.fs0{font-size:225.600000pt;}
.fs1{font-size:225.706667pt;}
.fs10{font-size:256.000000pt;}
.fs1d{font-size:256.106667pt;}
.fs15{font-size:282.240000pt;}
.fs9{font-size:320.000000pt;}
.fs16{font-size:338.666667pt;}
.fsf{font-size:352.000000pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:10.933333pt;}
.y40{bottom:17.573333pt;}
.y3f{bottom:18.426667pt;}
.y8{bottom:19.413333pt;}
.y54{bottom:19.546667pt;}
.y52{bottom:20.453333pt;}
.y43{bottom:20.640000pt;}
.y12{bottom:24.053333pt;}
.y4a{bottom:31.520000pt;}
.y8b{bottom:32.026667pt;}
.y92{bottom:35.040000pt;}
.y42{bottom:39.840000pt;}
.y53{bottom:41.973333pt;}
.y51{bottom:42.853333pt;}
.y30{bottom:55.093333pt;}
.y31{bottom:56.613333pt;}
.y7a{bottom:60.533333pt;}
.y11{bottom:60.826667pt;}
.y5f{bottom:61.013333pt;}
.y66{bottom:61.173333pt;}
.y21{bottom:62.480000pt;}
.ye4{bottom:62.880000pt;}
.y7{bottom:63.413333pt;}
.y9c{bottom:67.680000pt;}
.y28{bottom:67.946667pt;}
.ya8{bottom:68.720000pt;}
.yc6{bottom:71.680000pt;}
.y5b{bottom:72.106667pt;}
.y91{bottom:73.440000pt;}
.yd3{bottom:73.573333pt;}
.y84{bottom:74.533333pt;}
.y19{bottom:77.120000pt;}
.y72{bottom:77.546667pt;}
.ya5{bottom:80.826667pt;}
.y63{bottom:83.946667pt;}
.y6d{bottom:87.546667pt;}
.ycb{bottom:90.853333pt;}
.y6{bottom:91.413333pt;}
.y79{bottom:92.506667pt;}
.y10{bottom:92.826667pt;}
.ye3{bottom:94.880000pt;}
.yec{bottom:95.786667pt;}
.y34{bottom:99.440000pt;}
.y83{bottom:100.346667pt;}
.y3b{bottom:102.133333pt;}
.y89{bottom:103.146667pt;}
.yd8{bottom:105.306667pt;}
.yb3{bottom:105.653333pt;}
.y49{bottom:109.946667pt;}
.y18{bottom:115.520000pt;}
.ybf{bottom:115.973333pt;}
.ya4{bottom:118.133333pt;}
.y2f{bottom:119.093333pt;}
.y9b{bottom:122.106667pt;}
.yc5{bottom:126.720000pt;}
.ye2{bottom:126.880000pt;}
.y20{bottom:129.680000pt;}
.y93{bottom:132.320000pt;}
.y5{bottom:135.440000pt;}
.y27{bottom:139.973333pt;}
.y78{bottom:140.133333pt;}
.y7d{bottom:141.573333pt;}
.yd1{bottom:141.946667pt;}
.yca{bottom:142.053333pt;}
.ybd{bottom:145.226667pt;}
.yba{bottom:147.946667pt;}
.y62{bottom:147.973333pt;}
.yb7{bottom:148.000000pt;}
.y33{bottom:148.480000pt;}
.yd7{bottom:150.133333pt;}
.yf{bottom:151.866667pt;}
.y17{bottom:153.920000pt;}
.ye1{bottom:158.880000pt;}
.y71{bottom:167.173333pt;}
.y6c{bottom:167.573333pt;}
.y4{bottom:169.840000pt;}
.y3a{bottom:170.613333pt;}
.y95{bottom:170.773333pt;}
.y5d{bottom:172.853333pt;}
.y2c{bottom:174.266667pt;}
.y82{bottom:176.773333pt;}
.y74{bottom:179.973333pt;}
.y48{bottom:189.946667pt;}
.ye{bottom:190.293333pt;}
.ye7{bottom:190.880000pt;}
.y16{bottom:192.320000pt;}
.y1f{bottom:196.880000pt;}
.y77{bottom:197.733333pt;}
.yc9{bottom:198.880000pt;}
.ya0{bottom:199.173333pt;}
.yd0{bottom:199.546667pt;}
.y9a{bottom:201.333333pt;}
.yb2{bottom:201.653333pt;}
.ya6{bottom:204.346667pt;}
.y88{bottom:205.573333pt;}
.yeb{bottom:210.986667pt;}
.y26{bottom:211.973333pt;}
.y32{bottom:212.506667pt;}
.y6b{bottom:218.773333pt;}
.yae{bottom:220.240000pt;}
.yc4{bottom:220.560000pt;}
.y94{bottom:221.973333pt;}
.ye0{bottom:222.880000pt;}
.yd{bottom:228.693333pt;}
.ya7{bottom:230.506667pt;}
.y39{bottom:234.613333pt;}
.yd6{bottom:239.733333pt;}
.y81{bottom:240.773333pt;}
.y61{bottom:243.973333pt;}
.y50{bottom:249.946667pt;}
.y56{bottom:250.160000pt;}
.y55{bottom:250.346667pt;}
.y4d{bottom:250.373333pt;}
.y2b{bottom:251.066667pt;}
.ya3{bottom:252.533333pt;}
.y47{bottom:253.946667pt;}
.ydf{bottom:254.906667pt;}
.y76{bottom:255.333333pt;}
.y70{bottom:256.773333pt;}
.y1e{bottom:264.106667pt;}
.y3e{bottom:266.613333pt;}
.y7c{bottom:266.773333pt;}
.ybe{bottom:268.746667pt;}
.y87{bottom:269.573333pt;}
.yb6{bottom:269.626667pt;}
.yad{bottom:277.840000pt;}
.y25{bottom:283.973333pt;}
.yd5{bottom:284.533333pt;}
.yc3{bottom:284.586667pt;}
.y9f{bottom:285.573333pt;}
.yde{bottom:286.906667pt;}
.y99{bottom:290.933333pt;}
.yc{bottom:292.693333pt;}
.ycf{bottom:295.546667pt;}
.ya2{bottom:297.333333pt;}
.yea{bottom:297.386667pt;}
.yb1{bottom:297.653333pt;}
.y38{bottom:298.613333pt;}
.y6a{bottom:298.773333pt;}
.y80{bottom:304.773333pt;}
.y60{bottom:307.973333pt;}
.y75{bottom:312.933333pt;}
.y46{bottom:317.973333pt;}
.ye6{bottom:318.906667pt;}
.y6f{bottom:320.773333pt;}
.y3{bottom:322.853333pt;}
.yd4{bottom:329.333333pt;}
.y3d{bottom:330.613333pt;}
.y5e{bottom:330.880000pt;}
.y1d{bottom:331.306667pt;}
.y86{bottom:333.573333pt;}
.yb{bottom:335.253333pt;}
.yac{bottom:335.440000pt;}
.y65{bottom:336.373333pt;}
.ya1{bottom:346.373333pt;}
.y9e{bottom:349.573333pt;}
.ydd{bottom:350.906667pt;}
.yce{bottom:353.173333pt;}
.y37{bottom:362.613333pt;}
.y8a{bottom:371.973333pt;}
.y69{bottom:378.773333pt;}
.y98{bottom:380.533333pt;}
.y45{bottom:381.973333pt;}
.yc8{bottom:382.080000pt;}
.ydc{bottom:382.906667pt;}
.ye9{bottom:383.813333pt;}
.y7f{bottom:386.933333pt;}
.y2{bottom:390.613333pt;}
.yb9{bottom:391.173333pt;}
.yb5{bottom:391.226667pt;}
.ybc{bottom:392.240000pt;}
.ya{bottom:392.853333pt;}
.yab{bottom:393.040000pt;}
.yb0{bottom:393.680000pt;}
.y3c{bottom:394.613333pt;}
.y24{bottom:395.973333pt;}
.y85{bottom:397.573333pt;}
.y1c{bottom:398.506667pt;}
.y73{bottom:403.973333pt;}
.y6e{bottom:410.373333pt;}
.yc2{bottom:412.586667pt;}
.y64{bottom:413.173333pt;}
.y9d{bottom:413.573333pt;}
.ye5{bottom:414.906667pt;}
.y97{bottom:425.360000pt;}
.y68{bottom:430.000000pt;}
.y7e{bottom:436.000000pt;}
.yc7{bottom:438.880000pt;}
.y2a{bottom:439.813333pt;}
.y7b{bottom:446.000000pt;}
.ydb{bottom:446.906667pt;}
.ycd{bottom:449.173333pt;}
.yaa{bottom:450.640000pt;}
.y1{bottom:458.373333pt;}
.y36{bottom:458.613333pt;}
.y23{bottom:460.960000pt;}
.y1b{bottom:465.706667pt;}
.y2d{bottom:467.493333pt;}
.ye8{bottom:470.213333pt;}
.y44{bottom:471.573333pt;}
.y90{bottom:475.866667pt;}
.yc1{bottom:476.586667pt;}
.yda{bottom:478.906667pt;}
.y4b{bottom:480.933333pt;}
.y4e{bottom:480.960000pt;}
.y4c{bottom:481.066667pt;}
.y4f{bottom:482.746667pt;}
.yaf{bottom:489.680000pt;}
.y22{bottom:500.000000pt;}
.ycc{bottom:506.773333pt;}
.ya9{bottom:508.266667pt;}
.y67{bottom:510.000000pt;}
.yd9{bottom:510.906667pt;}
.yb8{bottom:512.773333pt;}
.yb4{bottom:512.826667pt;}
.y96{bottom:514.960000pt;}
.ybb{bottom:515.760000pt;}
.y35{bottom:522.640000pt;}
.y1a{bottom:532.933333pt;}
.y14{bottom:539.840000pt;}
.y8f{bottom:539.893333pt;}
.yc0{bottom:540.586667pt;}
.y29{bottom:545.413333pt;}
.y58{bottom:546.800000pt;}
.y41{bottom:581.946667pt;}
.y5a{bottom:596.400000pt;}
.y5c{bottom:596.506667pt;}
.y13{bottom:597.440000pt;}
.y8e{bottom:603.893333pt;}
.y57{bottom:604.400000pt;}
.y15{bottom:616.586667pt;}
.y2e{bottom:616.613333pt;}
.y59{bottom:641.200000pt;}
.y8c{bottom:648.026667pt;}
.y8d{bottom:665.093333pt;}
.y9{bottom:676.213333pt;}
.h21{height:51.060000pt;}
.h1e{height:53.152969pt;}
.h1d{height:54.718594pt;}
.h13{height:65.531250pt;}
.h9{height:70.340156pt;}
.h12{height:74.159531pt;}
.h22{height:74.640000pt;}
.h14{height:76.343906pt;}
.h16{height:76.453125pt;}
.h18{height:78.050573pt;}
.h15{height:83.597240pt;}
.h4{height:84.981094pt;}
.h26{height:87.484219pt;}
.h28{height:93.187969pt;}
.h5{height:98.296875pt;}
.h27{height:105.987656pt;}
.h3{height:109.109531pt;}
.h24{height:120.249844pt;}
.h19{height:121.677240pt;}
.h17{height:129.997240pt;}
.h7{height:131.062500pt;}
.h8{height:131.171719pt;}
.hc{height:153.015469pt;}
.hb{height:153.124687pt;}
.h23{height:169.643906pt;}
.h11{height:174.640781pt;}
.h1f{height:174.750000pt;}
.h1a{height:190.968750pt;}
.h6{height:196.593750pt;}
.h20{height:196.702969pt;}
.hd{height:218.546719pt;}
.he{height:218.655937pt;}
.h1{height:230.997656pt;}
.h2{height:231.106875pt;}
.h10{height:262.125000pt;}
.h25{height:262.234219pt;}
.h1b{height:288.992812pt;}
.ha{height:327.656250pt;}
.h1c{height:346.769531pt;}
.hf{height:360.421875pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x6c{left:7.626648pt;}
.x47{left:8.746648pt;}
.x30{left:20.986648pt;}
.x96{left:31.439981pt;}
.x73{left:34.426648pt;}
.xc{left:39.999981pt;}
.x10{left:43.786648pt;}
.x3c{left:46.026648pt;}
.x82{left:49.999981pt;}
.x81{left:52.106648pt;}
.x7f{left:57.066648pt;}
.x3e{left:62.746648pt;}
.x29{left:68.106648pt;}
.x23{left:74.826648pt;}
.x3d{left:77.786648pt;}
.xf{left:86.159981pt;}
.x97{left:88.079981pt;}
.x66{left:90.319981pt;}
.x86{left:100.399981pt;}
.x6a{left:103.786648pt;}
.x52{left:105.279981pt;}
.x64{left:119.253314pt;}
.x46{left:120.533314pt;}
.x78{left:122.159981pt;}
.x89{left:126.613314pt;}
.x8c{left:127.919981pt;}
.x7a{left:130.079981pt;}
.x7c{left:132.719981pt;}
.x22{left:137.919981pt;}
.x27{left:140.746648pt;}
.x24{left:142.666648pt;}
.x9a{left:146.666648pt;}
.x69{left:147.813314pt;}
.x7b{left:149.839981pt;}
.x8b{left:152.079981pt;}
.x65{left:154.133314pt;}
.x87{left:163.279981pt;}
.x60{left:165.439981pt;}
.x1f{left:166.346648pt;}
.x1c{left:167.759981pt;}
.x5e{left:168.719981pt;}
.x99{left:172.079981pt;}
.x1{left:173.866648pt;}
.x2{left:176.293314pt;}
.x3{left:178.879981pt;}
.x14{left:181.786648pt;}
.x83{left:185.279981pt;}
.x4b{left:186.186648pt;}
.x2d{left:188.106648pt;}
.x50{left:189.199981pt;}
.x8a{left:190.479981pt;}
.x75{left:192.106648pt;}
.x44{left:200.719981pt;}
.x84{left:201.839981pt;}
.x31{left:203.573314pt;}
.x4f{left:210.159981pt;}
.x21{left:211.093314pt;}
.x88{left:215.679981pt;}
.x76{left:219.386648pt;}
.x19{left:222.773314pt;}
.x74{left:226.933314pt;}
.x5f{left:233.519981pt;}
.x43{left:234.959981pt;}
.x18{left:236.586648pt;}
.x91{left:238.266648pt;}
.x7{left:241.439981pt;}
.x17{left:242.586648pt;}
.x16{left:251.626648pt;}
.xd{left:253.039981pt;}
.x94{left:257.519981pt;}
.x4{left:259.839981pt;}
.x39{left:267.173314pt;}
.x2a{left:273.013314pt;}
.x53{left:274.586648pt;}
.x38{left:278.239981pt;}
.x12{left:280.933314pt;}
.x5{left:288.239981pt;}
.x68{left:289.359981pt;}
.x4e{left:295.786648pt;}
.x5d{left:304.346648pt;}
.x9{left:307.919981pt;}
.x28{left:309.946648pt;}
.x6{left:317.599981pt;}
.x72{left:320.186648pt;}
.x67{left:324.079981pt;}
.x48{left:329.893314pt;}
.x7d{left:332.693314pt;}
.x98{left:334.106648pt;}
.x45{left:339.039981pt;}
.xe{left:340.319981pt;}
.x85{left:346.799981pt;}
.xb{left:351.199981pt;}
.x8f{left:356.613314pt;}
.x93{left:358.533314pt;}
.x20{left:369.413314pt;}
.x5c{left:379.946648pt;}
.x5a{left:385.786648pt;}
.x8e{left:386.773314pt;}
.x51{left:394.693314pt;}
.x13{left:401.359981pt;}
.x4d{left:402.906648pt;}
.x55{left:404.933314pt;}
.x58{left:409.439981pt;}
.x5b{left:412.266648pt;}
.x11{left:418.373314pt;}
.x49{left:420.533314pt;}
.x4a{left:423.253314pt;}
.x6b{left:429.173314pt;}
.x8{left:431.519981pt;}
.x90{left:434.639981pt;}
.x4c{left:451.359981pt;}
.x95{left:455.786648pt;}
.x54{left:469.493314pt;}
.x3f{left:471.679981pt;}
.x35{left:474.133314pt;}
.x34{left:475.759981pt;}
.x61{left:487.466648pt;}
.x80{left:492.613314pt;}
.xa{left:494.079981pt;}
.x15{left:506.853314pt;}
.x56{left:509.653314pt;}
.x7e{left:515.306648pt;}
.x92{left:545.973314pt;}
.x63{left:566.453314pt;}
.x57{left:568.426648pt;}
.x2b{left:583.333314pt;}
.x2e{left:605.573314pt;}
.x2c{left:619.333314pt;}
.x1d{left:622.853314pt;}
.x59{left:633.146648pt;}
.x1a{left:641.893314pt;}
.x1e{left:642.933314pt;}
.x25{left:645.813314pt;}
.x1b{left:658.853314pt;}
.x3b{left:680.373314pt;}
.x3a{left:693.333314pt;}
.x79{left:696.746648pt;}
.x36{left:701.999981pt;}
.x2f{left:708.239981pt;}
.x8d{left:711.866648pt;}
.x26{left:724.719981pt;}
.x77{left:731.786648pt;}
.x70{left:827.173314pt;}
.x6d{left:852.053314pt;}
.x6e{left:853.173314pt;}
.x6f{left:893.279981pt;}
.x40{left:900.506648pt;}
.x37{left:902.853314pt;}
.x71{left:1016.399981pt;}
.x33{left:1059.253314pt;}
.x32{left:1092.533314pt;}
.x41{left:1112.346648pt;}
.x42{left:1128.426648pt;}
.x62{left:1233.733314pt;}
}




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