
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d83ff057d0f9dc9e7d48719d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2a686eabeea70eeb2e4e6dfc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c8f5b78b24bd6892b2b5d1bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_af7737f147520f4896aa34f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fef3d03f9bbf56da9a054f5e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_17bc832e6d1e3c4e3e6f6eeb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_326bc6f96facb4560125bfcd.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6838e83f8080ba59bfef9a27.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_9a7b08626aa79dd3fa2a6d1d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_eeb932d9f535caac786df32a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.056152;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:ffc;src:url('chunks/assets/font_0f36c2367a439237e473b608.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.915039;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:ffd;src:url('chunks/assets/font_f937e8cdc2ec309f5db8f042.woff2')format("woff");}.ffd{font-family:ffd;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);}
.m2{transform:matrix(0.252229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252229,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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.850495px;}
.v2{vertical-align:15.120000px;}
.v8{vertical-align:21.521237px;}
.v9{vertical-align:48.029059px;}
.v4{vertical-align:54.301929px;}
.v6{vertical-align:57.152424px;}
.v5{vertical-align:80.669008px;}
.ls8{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.370200px;}
.lsa{letter-spacing:-0.326400px;}
.ls25{letter-spacing:-0.253200px;}
.ls22{letter-spacing:-0.243600px;}
.ls19{letter-spacing:-0.226200px;}
.ls21{letter-spacing:-0.097800px;}
.ls23{letter-spacing:-0.046800px;}
.ls28{letter-spacing:-0.036000px;}
.lsb{letter-spacing:-0.010800px;}
.ls6{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.003421px;}
.lsd{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.013200px;}
.ls15{letter-spacing:0.126562px;}
.ls1d{letter-spacing:0.133920px;}
.ls7{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.187200px;}
.lse{letter-spacing:0.211680px;}
.ls20{letter-spacing:0.233280px;}
.ls12{letter-spacing:0.238016px;}
.ls1b{letter-spacing:0.317400px;}
.ls27{letter-spacing:0.319680px;}
.ls1c{letter-spacing:0.332640px;}
.ls24{letter-spacing:0.342720px;}
.ls2{letter-spacing:0.351360px;}
.ls18{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.385800px;}
.ls1e{letter-spacing:0.466560px;}
.ls5{letter-spacing:0.532800px;}
.lsf{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls1f{letter-spacing:0.853920px;}
.ls1a{letter-spacing:1.008000px;}
.ls10{letter-spacing:2.896673px;}
.ls4{letter-spacing:4.852800px;}
.ls14{letter-spacing:14.965954px;}
.ls13{letter-spacing:15.377280px;}
.ls11{letter-spacing:19.636490px;}
.ls29{letter-spacing:47.466720px;}
.ls26{letter-spacing:81.306720px;}
.ls17{letter-spacing:172.993119px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3{word-spacing:-18.532800px;}
.wsb{word-spacing:-14.958600px;}
.ws8{word-spacing:-14.572800px;}
.wsf{word-spacing:-14.155200px;}
.ws10{word-spacing:-13.464600px;}
.ws5{word-spacing:-13.160400px;}
.wsa{word-spacing:-13.160160px;}
.ws6{word-spacing:-13.147200px;}
.ws14{word-spacing:-13.111200px;}
.ws12{word-spacing:-13.100400px;}
.wse{word-spacing:-12.921000px;}
.ws11{word-spacing:-12.903600px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws4{word-spacing:-9.187200px;}
.ws13{word-spacing:-8.300400px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:2.552040px;}
.wsd{word-spacing:15.830224px;}
.wsc{word-spacing:19.170149px;}
._7{margin-left:-3.787200px;}
._8{margin-left:-2.211000px;}
._0{margin-left:-1.159200px;}
._1{width:1.002000px;}
._5{width:2.692800px;}
._a{width:3.697203px;}
._9{width:4.736760px;}
._6{width:6.292800px;}
._2{width:7.328964px;}
._3{width:8.339423px;}
._4{width:9.840927px;}
._c{width:11.040307px;}
._d{width:12.071560px;}
._b{width:14.760720px;}
._10{width:16.570560px;}
._e{width:18.047520px;}
._f{width:19.316400px;}
._11{width:21.115200px;}
._13{width:23.963760px;}
._12{width:25.218720px;}
._14{width:27.231360px;}
._15{width:36.527280px;}
._16{width:38.686800px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fsa{font-size:48.240000px;}
.fs9{font-size:50.738811px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs8{font-size:71.547424px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y51{bottom:-8.848011px;}
.y0{bottom:0.000000px;}
.y6b{bottom:7.740000px;}
.y69{bottom:7.920000px;}
.y54{bottom:8.373396px;}
.y53{bottom:20.380680px;}
.y8f{bottom:21.420000px;}
.y67{bottom:21.600000px;}
.yb7{bottom:53.820000px;}
.y2{bottom:73.296000px;}
.y27{bottom:74.196000px;}
.y1{bottom:101.376000px;}
.y93{bottom:114.336000px;}
.yfc{bottom:118.476000px;}
.ya1{bottom:128.556000px;}
.y4f{bottom:130.356000px;}
.y7b{bottom:134.136000px;}
.yfb{bottom:136.116000px;}
.y25{bottom:137.376000px;}
.y92{bottom:141.696000px;}
.ya0{bottom:146.196000px;}
.y4e{bottom:147.996000px;}
.yfa{bottom:153.750000px;}
.y24{bottom:155.010000px;}
.y120{bottom:158.430000px;}
.y7a{bottom:161.490000px;}
.y9f{bottom:163.830000px;}
.y4d{bottom:165.630000px;}
.y91{bottom:169.050000px;}
.yf9{bottom:171.390000px;}
.y23{bottom:172.470000px;}
.y11f{bottom:176.070000px;}
.y9e{bottom:181.290000px;}
.yb5{bottom:186.690000px;}
.y79{bottom:188.850000px;}
.y22{bottom:190.110000px;}
.y11e{bottom:193.710000px;}
.y8e{bottom:196.410000px;}
.y4c{bottom:201.090000px;}
.yf8{bottom:206.850000px;}
.y21{bottom:207.750000px;}
.y9d{bottom:207.930000px;}
.ycc{bottom:215.850000px;}
.y78{bottom:216.210000px;}
.y4b{bottom:218.730000px;}
.y11d{bottom:220.170000px;}
.yb4{bottom:222.330000px;}
.y90{bottom:223.770000px;}
.yf7{bottom:224.490000px;}
.y20{bottom:225.210000px;}
.ycb{bottom:233.490000px;}
.y11c{bottom:237.810000px;}
.yb3{bottom:239.970000px;}
.yf6{bottom:242.130000px;}
.y1f{bottom:242.850000px;}
.y77{bottom:243.390000px;}
.yca{bottom:251.130000px;}
.y4a{bottom:254.370000px;}
.y11b{bottom:255.450000px;}
.yb2{bottom:257.430000px;}
.yf5{bottom:259.590000px;}
.y1e{bottom:260.490000px;}
.yc9{bottom:268.590000px;}
.y76{bottom:270.750000px;}
.y8d{bottom:272.370000px;}
.y9c{bottom:275.610000px;}
.yf4{bottom:277.230000px;}
.y11a{bottom:281.910000px;}
.y1d{bottom:287.130000px;}
.y49{bottom:289.830000px;}
.yb1{bottom:293.070000px;}
.yc8{bottom:295.230000px;}
.y75{bottom:298.110000px;}
.y119{bottom:299.550000px;}
.y8c{bottom:308.055000px;}
.yb0{bottom:310.755000px;}
.yf3{bottom:312.735000px;}
.y48{bottom:325.515000px;}
.y8b{bottom:325.695000px;}
.y118{bottom:326.235000px;}
.yaf{bottom:328.215000px;}
.yf2{bottom:330.375000px;}
.yc7{bottom:330.915000px;}
.y1c{bottom:335.955000px;}
.y8a{bottom:343.335000px;}
.y117{bottom:343.875000px;}
.yae{bottom:345.855000px;}
.yf1{bottom:348.015000px;}
.y74{bottom:352.875000px;}
.y47{bottom:361.155000px;}
.yc6{bottom:363.135000px;}
.yf0{bottom:365.655000px;}
.y116{bottom:370.335000px;}
.y1b{bottom:373.035000px;}
.y89{bottom:378.795000px;}
.y73{bottom:380.235000px;}
.yad{bottom:381.495000px;}
.yef{bottom:383.115000px;}
.y115{bottom:387.975000px;}
.y1a{bottom:390.675000px;}
.y88{bottom:396.435000px;}
.y46{bottom:396.795000px;}
.yac{bottom:399.135000px;}
.ydb{bottom:401.655000px;}
.y114{bottom:405.615000px;}
.y72{bottom:407.595000px;}
.y87{bottom:414.075000px;}
.y45{bottom:414.435000px;}
.yab{bottom:416.595000px;}
.yee{bottom:418.755000px;}
.yda{bottom:419.295000px;}
.y19{bottom:426.135000px;}
.y113{bottom:432.075000px;}
.yaa{bottom:434.235000px;}
.y71{bottom:434.775000px;}
.yed{bottom:436.395000px;}
.yd9{bottom:436.755000px;}
.y86{bottom:440.535000px;}
.y18{bottom:443.775000px;}
.y44{bottom:446.475000px;}
.y50{bottom:448.440000px;}
.y52{bottom:449.069841px;}
.y112{bottom:449.715000px;}
.yec{bottom:454.035000px;}
.ya9{bottom:460.695000px;}
.y17{bottom:461.415000px;}
.y70{bottom:462.135000px;}
.yd8{bottom:463.395000px;}
.yeb{bottom:471.495000px;}
.y85{bottom:475.455000px;}
.y111{bottom:476.175000px;}
.y16{bottom:478.875000px;}
.yea{bottom:489.135000px;}
.y6f{bottom:489.495000px;}
.y110{bottom:493.815000px;}
.ya8{bottom:496.335000px;}
.yd7{bottom:498.855000px;}
.y84{bottom:501.555000px;}
.yd5{bottom:508.935000px;}
.y10f{bottom:511.455000px;}
.ya7{bottom:513.975000px;}
.y15{bottom:514.515000px;}
.y6e{bottom:516.855000px;}
.y43{bottom:517.395000px;}
.ye9{bottom:524.595000px;}
.yd4{bottom:526.575000px;}
.y83{bottom:528.915000px;}
.yd6{bottom:531.075000px;}
.y10e{bottom:538.095000px;}
.ye8{bottom:542.235000px;}
.y6d{bottom:544.215000px;}
.ya6{bottom:546.915000px;}
.y14{bottom:549.975000px;}
.y42{bottom:553.035000px;}
.y10d{bottom:555.735000px;}
.y81{bottom:556.275000px;}
.ye7{bottom:559.875000px;}
.yd3{bottom:561.855000px;}
.y13{bottom:567.615000px;}
.y41{bottom:570.675000px;}
.y6c{bottom:571.575000px;}
.ya5{bottom:574.275000px;}
.ye6{bottom:577.515000px;}
.y10c{bottom:582.375000px;}
.y82{bottom:583.665000px;}
.y40{bottom:588.165000px;}
.ye5{bottom:595.005000px;}
.yd2{bottom:597.345000px;}
.y6a{bottom:598.965000px;}
.ya4{bottom:601.665000px;}
.y12{bottom:603.285000px;}
.y3f{bottom:605.805000px;}
.yd1{bottom:614.985000px;}
.y11{bottom:620.925000px;}
.y3e{bottom:623.445000px;}
.y9b{bottom:625.605000px;}
.y66{bottom:626.145000px;}
.ya2{bottom:628.845000px;}
.ye4{bottom:630.645000px;}
.y10b{bottom:630.825000px;}
.y80{bottom:632.445000px;}
.yd0{bottom:632.625000px;}
.y3d{bottom:640.905000px;}
.y9a{bottom:643.245000px;}
.y10{bottom:647.745000px;}
.ye3{bottom:648.285000px;}
.y68{bottom:653.505000px;}
.ya3{bottom:656.205000px;}
.y10a{bottom:657.645000px;}
.ycf{bottom:659.085000px;}
.y99{bottom:660.885000px;}
.ye2{bottom:665.925000px;}
.y3c{bottom:667.545000px;}
.y7f{bottom:667.905000px;}
.y98{bottom:678.525000px;}
.ye1{bottom:683.385000px;}
.yce{bottom:694.725000px;}
.yf{bottom:695.985000px;}
.y7e{bottom:700.125000px;}
.ye0{bottom:701.025000px;}
.y65{bottom:702.285000px;}
.y3b{bottom:703.005000px;}
.y97{bottom:704.985000px;}
.yc5{bottom:712.905000px;}
.ydf{bottom:718.665000px;}
.y3a{bottom:720.645000px;}
.y109{bottom:721.725000px;}
.ycd{bottom:726.945000px;}
.yc4{bottom:730.545000px;}
.ye{bottom:731.805000px;}
.y64{bottom:737.925000px;}
.y39{bottom:738.285000px;}
.y96{bottom:740.625000px;}
.yde{bottom:745.305000px;}
.y63{bottom:755.565000px;}
.y38{bottom:755.925000px;}
.y108{bottom:758.625000px;}
.yc3{bottom:763.485000px;}
.yd{bottom:767.805000px;}
.y12d{bottom:769.605000px;}
.y95{bottom:772.845000px;}
.y37{bottom:773.565000px;}
.y107{bottom:785.625000px;}
.y12c{bottom:787.245000px;}
.yc2{bottom:790.845000px;}
.y62{bottom:791.025000px;}
.ydd{bottom:793.725000px;}
.y36{bottom:800.025000px;}
.yc{bottom:803.805000px;}
.y61{bottom:808.665000px;}
.y12b{bottom:813.885000px;}
.yc1{bottom:818.205000px;}
.y106{bottom:822.885000px;}
.yb{bottom:825.585000px;}
.ydc{bottom:825.945000px;}
.y60{bottom:826.305000px;}
.y12a{bottom:831.525000px;}
.y35{bottom:835.665000px;}
.ya{bottom:839.805000px;}
.yc0{bottom:845.565000px;}
.y129{bottom:849.165000px;}
.y9{bottom:861.630000px;}
.y5f{bottom:861.810000px;}
.y34{bottom:862.170000px;}
.y105{bottom:871.170000px;}
.ybf{bottom:872.970000px;}
.y128{bottom:875.670000px;}
.y8{bottom:875.850000px;}
.y5e{bottom:879.450000px;}
.y104{bottom:888.810000px;}
.y127{bottom:893.310000px;}
.y5d{bottom:897.090000px;}
.y7{bottom:897.630000px;}
.y33{bottom:897.990000px;}
.ybe{bottom:900.150000px;}
.y103{bottom:906.450000px;}
.y126{bottom:919.770000px;}
.y102{bottom:924.090000px;}
.ybd{bottom:927.510000px;}
.y6{bottom:930.030000px;}
.y5c{bottom:932.550000px;}
.y125{bottom:937.410000px;}
.y32{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y5b{bottom:950.190000px;}
.ybc{bottom:954.870000px;}
.y124{bottom:955.050000px;}
.y101{bottom:959.550000px;}
.y31{bottom:964.050000px;}
.y5a{bottom:967.830000px;}
.y100{bottom:977.190000px;}
.y123{bottom:981.510000px;}
.y30{bottom:981.690000px;}
.ybb{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.y59{bottom:994.290000px;}
.yff{bottom:994.830000px;}
.y122{bottom:999.150000px;}
.yba{bottom:1009.590000px;}
.y3{bottom:1012.290000px;}
.yfe{bottom:1012.470000px;}
.y121{bottom:1016.790000px;}
.y2f{bottom:1017.150000px;}
.y58{bottom:1030.110000px;}
.y2e{bottom:1034.790000px;}
.yb9{bottom:1036.950000px;}
.yfd{bottom:1039.110000px;}
.y7d{bottom:1043.430000px;}
.y2d{bottom:1052.430000px;}
.y7c{bottom:1061.070000px;}
.yb6{bottom:1064.310000px;}
.y2c{bottom:1070.070000px;}
.y57{bottom:1078.530000px;}
.y2b{bottom:1087.530000px;}
.yb8{bottom:1091.490000px;}
.y56{bottom:1096.170000px;}
.y2a{bottom:1105.170000px;}
.y55{bottom:1113.810000px;}
.y94{bottom:1122.630000px;}
.y29{bottom:1122.810000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h15{height:26.460000px;}
.h16{height:26.496000px;}
.h14{height:26.640000px;}
.h17{height:26.676000px;}
.h2{height:29.717578px;}
.h8{height:36.698203px;}
.h6{height:36.878203px;}
.h3{height:39.468516px;}
.h19{height:41.974453px;}
.h13{height:50.597578px;}
.hf{height:51.095168px;}
.h7{height:51.998203px;}
.h1a{height:53.820000px;}
.h12{height:54.000000px;}
.h18{height:54.036000px;}
.hd{height:54.432000px;}
.h9{height:56.084062px;}
.h5{height:57.636562px;}
.ha{height:60.960938px;}
.h1b{height:61.423863px;}
.hc{height:62.211094px;}
.hb{height:68.956875px;}
.h4{height:73.298672px;}
.he{height:73.539477px;}
.h11{height:121.568536px;}
.h10{height:123.430330px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1a{width:28.440000px;}
.w21{width:28.476000px;}
.w11{width:34.956000px;}
.w22{width:51.660000px;}
.w27{width:51.696000px;}
.w20{width:51.840000px;}
.w7{width:53.640000px;}
.w1f{width:56.556000px;}
.wd{width:57.060000px;}
.w16{width:57.240000px;}
.w10{width:59.940000px;}
.w26{width:60.120000px;}
.w19{width:60.156000px;}
.w25{width:62.280000px;}
.w17{width:62.316000px;}
.w28{width:63.360000px;}
.w1b{width:68.400000px;}
.we{width:68.760000px;}
.w8{width:68.796000px;}
.w12{width:84.060000px;}
.w6{width:107.676000px;}
.w18{width:109.260000px;}
.wf{width:109.296000px;}
.w1c{width:113.436000px;}
.wc{width:119.736000px;}
.w1e{width:133.416000px;}
.wa{width:135.396000px;}
.w23{width:139.536000px;}
.w4{width:149.436000px;}
.w3{width:152.775000px;}
.w15{width:158.430000px;}
.w24{width:176.790000px;}
.w13{width:196.410000px;}
.w14{width:230.250000px;}
.w5{width:231.555000px;}
.w1d{width:236.010000px;}
.wb{width:297.390000px;}
.w9{width:381.705000px;}
.w29{width:548.025000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.124449px;}
.x18{left:9.540000px;}
.x1c{left:10.980000px;}
.x11{left:12.780000px;}
.x34{left:14.580000px;}
.xf{left:16.200000px;}
.x37{left:18.000000px;}
.x12{left:20.340000px;}
.x28{left:22.140000px;}
.x20{left:27.720000px;}
.x2b{left:30.060000px;}
.x1f{left:34.050000px;}
.xe{left:35.640000px;}
.x1e{left:37.800000px;}
.x10{left:39.810000px;}
.x1{left:68.040000px;}
.x21{left:81.719987px;}
.x8{left:84.156352px;}
.x3c{left:87.660000px;}
.xb{left:91.650000px;}
.x32{left:93.960000px;}
.x44{left:111.275987px;}
.x16{left:124.740000px;}
.x23{left:153.390000px;}
.x6{left:169.214422px;}
.x3a{left:172.650000px;}
.x14{left:190.649987px;}
.x2e{left:192.629987px;}
.x30{left:204.510000px;}
.x2{left:210.989987px;}
.x42{left:216.389987px;}
.x9{left:255.810000px;}
.x2d{left:258.149987px;}
.x3e{left:267.194987px;}
.x43{left:280.514987px;}
.x15{left:305.895000px;}
.x40{left:310.394987px;}
.x3b{left:312.915000px;}
.x2f{left:315.074987px;}
.x31{left:318.675000px;}
.x22{left:343.514987px;}
.x24{left:350.535000px;}
.x19{left:363.675000px;}
.x5{left:370.095000px;}
.x35{left:388.155000px;}
.xa{left:405.975000px;}
.x26{left:408.495000px;}
.x1a{left:433.155000px;}
.x36{left:445.425000px;}
.x27{left:471.525000px;}
.xc{left:514.365000px;}
.x4{left:525.344987px;}
.x1b{left:543.345000px;}
.x33{left:555.405000px;}
.xd{left:568.725000px;}
.x25{left:581.505000px;}
.x17{left:604.005000px;}
.x38{left:607.965000px;}
.x39{left:637.170000px;}
.x1d{left:639.690000px;}
.x29{left:642.390000px;}
.x3d{left:657.330000px;}
.x2a{left:671.550000px;}
.x13{left:686.309987px;}
.x41{left:695.489987px;}
.x3f{left:702.329987px;}
.x2c{left:718.889987px;}
.x3{left:800.429987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.533773pt;}
.v2{vertical-align:13.440000pt;}
.v8{vertical-align:19.129989pt;}
.v9{vertical-align:42.692497pt;}
.v4{vertical-align:48.268382pt;}
.v6{vertical-align:50.802155pt;}
.v5{vertical-align:71.705785pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.329067pt;}
.lsa{letter-spacing:-0.290133pt;}
.ls25{letter-spacing:-0.225067pt;}
.ls22{letter-spacing:-0.216533pt;}
.ls19{letter-spacing:-0.201067pt;}
.ls21{letter-spacing:-0.086933pt;}
.ls23{letter-spacing:-0.041600pt;}
.ls28{letter-spacing:-0.032000pt;}
.lsb{letter-spacing:-0.009600pt;}
.ls6{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.003041pt;}
.lsd{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.011733pt;}
.ls15{letter-spacing:0.112500pt;}
.ls1d{letter-spacing:0.119040pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.166400pt;}
.lse{letter-spacing:0.188160pt;}
.ls20{letter-spacing:0.207360pt;}
.ls12{letter-spacing:0.211570pt;}
.ls1b{letter-spacing:0.282133pt;}
.ls27{letter-spacing:0.284160pt;}
.ls1c{letter-spacing:0.295680pt;}
.ls24{letter-spacing:0.304640pt;}
.ls2{letter-spacing:0.312320pt;}
.ls18{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.342933pt;}
.ls1e{letter-spacing:0.414720pt;}
.ls5{letter-spacing:0.473600pt;}
.lsf{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.759040pt;}
.ls1a{letter-spacing:0.896000pt;}
.ls10{letter-spacing:2.574820pt;}
.ls4{letter-spacing:4.313600pt;}
.ls14{letter-spacing:13.303070pt;}
.ls13{letter-spacing:13.668694pt;}
.ls11{letter-spacing:17.454658pt;}
.ls29{letter-spacing:42.192640pt;}
.ls26{letter-spacing:72.272640pt;}
.ls17{letter-spacing:153.771662pt;}
.ws3{word-spacing:-16.473600pt;}
.wsb{word-spacing:-13.296533pt;}
.ws8{word-spacing:-12.953600pt;}
.wsf{word-spacing:-12.582400pt;}
.ws10{word-spacing:-11.968533pt;}
.ws5{word-spacing:-11.698133pt;}
.wsa{word-spacing:-11.697920pt;}
.ws6{word-spacing:-11.686400pt;}
.ws14{word-spacing:-11.654400pt;}
.ws12{word-spacing:-11.644800pt;}
.wse{word-spacing:-11.485333pt;}
.ws11{word-spacing:-11.469867pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws4{word-spacing:-8.166400pt;}
.ws13{word-spacing:-7.378133pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:2.268480pt;}
.wsd{word-spacing:14.071310pt;}
.wsc{word-spacing:17.040132pt;}
._7{margin-left:-3.366400pt;}
._8{margin-left:-1.965334pt;}
._0{margin-left:-1.030400pt;}
._1{width:0.890667pt;}
._5{width:2.393600pt;}
._a{width:3.286403pt;}
._9{width:4.210453pt;}
._6{width:5.593600pt;}
._2{width:6.514635pt;}
._3{width:7.412820pt;}
._4{width:8.747490pt;}
._c{width:9.813606pt;}
._d{width:10.730275pt;}
._b{width:13.120640pt;}
._10{width:14.729387pt;}
._e{width:16.042240pt;}
._f{width:17.170133pt;}
._11{width:18.769067pt;}
._13{width:21.301120pt;}
._12{width:22.416640pt;}
._14{width:24.205653pt;}
._15{width:32.468693pt;}
._16{width:34.388267pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fsa{font-size:42.880000pt;}
.fs9{font-size:45.101165pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs8{font-size:63.597710pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y51{bottom:-7.864899pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:6.880000pt;}
.y69{bottom:7.040000pt;}
.y54{bottom:7.443018pt;}
.y53{bottom:18.116160pt;}
.y8f{bottom:19.040000pt;}
.y67{bottom:19.200000pt;}
.yb7{bottom:47.840000pt;}
.y2{bottom:65.152000pt;}
.y27{bottom:65.952000pt;}
.y1{bottom:90.112000pt;}
.y93{bottom:101.632000pt;}
.yfc{bottom:105.312000pt;}
.ya1{bottom:114.272000pt;}
.y4f{bottom:115.872000pt;}
.y7b{bottom:119.232000pt;}
.yfb{bottom:120.992000pt;}
.y25{bottom:122.112000pt;}
.y92{bottom:125.952000pt;}
.ya0{bottom:129.952000pt;}
.y4e{bottom:131.552000pt;}
.yfa{bottom:136.666667pt;}
.y24{bottom:137.786667pt;}
.y120{bottom:140.826667pt;}
.y7a{bottom:143.546667pt;}
.y9f{bottom:145.626667pt;}
.y4d{bottom:147.226667pt;}
.y91{bottom:150.266667pt;}
.yf9{bottom:152.346667pt;}
.y23{bottom:153.306667pt;}
.y11f{bottom:156.506667pt;}
.y9e{bottom:161.146667pt;}
.yb5{bottom:165.946667pt;}
.y79{bottom:167.866667pt;}
.y22{bottom:168.986667pt;}
.y11e{bottom:172.186667pt;}
.y8e{bottom:174.586667pt;}
.y4c{bottom:178.746667pt;}
.yf8{bottom:183.866667pt;}
.y21{bottom:184.666667pt;}
.y9d{bottom:184.826667pt;}
.ycc{bottom:191.866667pt;}
.y78{bottom:192.186667pt;}
.y4b{bottom:194.426667pt;}
.y11d{bottom:195.706667pt;}
.yb4{bottom:197.626667pt;}
.y90{bottom:198.906667pt;}
.yf7{bottom:199.546667pt;}
.y20{bottom:200.186667pt;}
.ycb{bottom:207.546667pt;}
.y11c{bottom:211.386667pt;}
.yb3{bottom:213.306667pt;}
.yf6{bottom:215.226667pt;}
.y1f{bottom:215.866667pt;}
.y77{bottom:216.346667pt;}
.yca{bottom:223.226667pt;}
.y4a{bottom:226.106667pt;}
.y11b{bottom:227.066667pt;}
.yb2{bottom:228.826667pt;}
.yf5{bottom:230.746667pt;}
.y1e{bottom:231.546667pt;}
.yc9{bottom:238.746667pt;}
.y76{bottom:240.666667pt;}
.y8d{bottom:242.106667pt;}
.y9c{bottom:244.986667pt;}
.yf4{bottom:246.426667pt;}
.y11a{bottom:250.586667pt;}
.y1d{bottom:255.226667pt;}
.y49{bottom:257.626667pt;}
.yb1{bottom:260.506667pt;}
.yc8{bottom:262.426667pt;}
.y75{bottom:264.986667pt;}
.y119{bottom:266.266667pt;}
.y8c{bottom:273.826667pt;}
.yb0{bottom:276.226667pt;}
.yf3{bottom:277.986667pt;}
.y48{bottom:289.346667pt;}
.y8b{bottom:289.506667pt;}
.y118{bottom:289.986667pt;}
.yaf{bottom:291.746667pt;}
.yf2{bottom:293.666667pt;}
.yc7{bottom:294.146667pt;}
.y1c{bottom:298.626667pt;}
.y8a{bottom:305.186667pt;}
.y117{bottom:305.666667pt;}
.yae{bottom:307.426667pt;}
.yf1{bottom:309.346667pt;}
.y74{bottom:313.666667pt;}
.y47{bottom:321.026667pt;}
.yc6{bottom:322.786667pt;}
.yf0{bottom:325.026667pt;}
.y116{bottom:329.186667pt;}
.y1b{bottom:331.586667pt;}
.y89{bottom:336.706667pt;}
.y73{bottom:337.986667pt;}
.yad{bottom:339.106667pt;}
.yef{bottom:340.546667pt;}
.y115{bottom:344.866667pt;}
.y1a{bottom:347.266667pt;}
.y88{bottom:352.386667pt;}
.y46{bottom:352.706667pt;}
.yac{bottom:354.786667pt;}
.ydb{bottom:357.026667pt;}
.y114{bottom:360.546667pt;}
.y72{bottom:362.306667pt;}
.y87{bottom:368.066667pt;}
.y45{bottom:368.386667pt;}
.yab{bottom:370.306667pt;}
.yee{bottom:372.226667pt;}
.yda{bottom:372.706667pt;}
.y19{bottom:378.786667pt;}
.y113{bottom:384.066667pt;}
.yaa{bottom:385.986667pt;}
.y71{bottom:386.466667pt;}
.yed{bottom:387.906667pt;}
.yd9{bottom:388.226667pt;}
.y86{bottom:391.586667pt;}
.y18{bottom:394.466667pt;}
.y44{bottom:396.866667pt;}
.y50{bottom:398.613333pt;}
.y52{bottom:399.173192pt;}
.y112{bottom:399.746667pt;}
.yec{bottom:403.586667pt;}
.ya9{bottom:409.506667pt;}
.y17{bottom:410.146667pt;}
.y70{bottom:410.786667pt;}
.yd8{bottom:411.906667pt;}
.yeb{bottom:419.106667pt;}
.y85{bottom:422.626667pt;}
.y111{bottom:423.266667pt;}
.y16{bottom:425.666667pt;}
.yea{bottom:434.786667pt;}
.y6f{bottom:435.106667pt;}
.y110{bottom:438.946667pt;}
.ya8{bottom:441.186667pt;}
.yd7{bottom:443.426667pt;}
.y84{bottom:445.826667pt;}
.yd5{bottom:452.386667pt;}
.y10f{bottom:454.626667pt;}
.ya7{bottom:456.866667pt;}
.y15{bottom:457.346667pt;}
.y6e{bottom:459.426667pt;}
.y43{bottom:459.906667pt;}
.ye9{bottom:466.306667pt;}
.yd4{bottom:468.066667pt;}
.y83{bottom:470.146667pt;}
.yd6{bottom:472.066667pt;}
.y10e{bottom:478.306667pt;}
.ye8{bottom:481.986667pt;}
.y6d{bottom:483.746667pt;}
.ya6{bottom:486.146667pt;}
.y14{bottom:488.866667pt;}
.y42{bottom:491.586667pt;}
.y10d{bottom:493.986667pt;}
.y81{bottom:494.466667pt;}
.ye7{bottom:497.666667pt;}
.yd3{bottom:499.426667pt;}
.y13{bottom:504.546667pt;}
.y41{bottom:507.266667pt;}
.y6c{bottom:508.066667pt;}
.ya5{bottom:510.466667pt;}
.ye6{bottom:513.346667pt;}
.y10c{bottom:517.666667pt;}
.y82{bottom:518.813333pt;}
.y40{bottom:522.813333pt;}
.ye5{bottom:528.893333pt;}
.yd2{bottom:530.973333pt;}
.y6a{bottom:532.413333pt;}
.ya4{bottom:534.813333pt;}
.y12{bottom:536.253333pt;}
.y3f{bottom:538.493333pt;}
.yd1{bottom:546.653333pt;}
.y11{bottom:551.933333pt;}
.y3e{bottom:554.173333pt;}
.y9b{bottom:556.093333pt;}
.y66{bottom:556.573333pt;}
.ya2{bottom:558.973333pt;}
.ye4{bottom:560.573333pt;}
.y10b{bottom:560.733333pt;}
.y80{bottom:562.173333pt;}
.yd0{bottom:562.333333pt;}
.y3d{bottom:569.693333pt;}
.y9a{bottom:571.773333pt;}
.y10{bottom:575.773333pt;}
.ye3{bottom:576.253333pt;}
.y68{bottom:580.893333pt;}
.ya3{bottom:583.293333pt;}
.y10a{bottom:584.573333pt;}
.ycf{bottom:585.853333pt;}
.y99{bottom:587.453333pt;}
.ye2{bottom:591.933333pt;}
.y3c{bottom:593.373333pt;}
.y7f{bottom:593.693333pt;}
.y98{bottom:603.133333pt;}
.ye1{bottom:607.453333pt;}
.yce{bottom:617.533333pt;}
.yf{bottom:618.653333pt;}
.y7e{bottom:622.333333pt;}
.ye0{bottom:623.133333pt;}
.y65{bottom:624.253333pt;}
.y3b{bottom:624.893333pt;}
.y97{bottom:626.653333pt;}
.yc5{bottom:633.693333pt;}
.ydf{bottom:638.813333pt;}
.y3a{bottom:640.573333pt;}
.y109{bottom:641.533333pt;}
.ycd{bottom:646.173333pt;}
.yc4{bottom:649.373333pt;}
.ye{bottom:650.493333pt;}
.y64{bottom:655.933333pt;}
.y39{bottom:656.253333pt;}
.y96{bottom:658.333333pt;}
.yde{bottom:662.493333pt;}
.y63{bottom:671.613333pt;}
.y38{bottom:671.933333pt;}
.y108{bottom:674.333333pt;}
.yc3{bottom:678.653333pt;}
.yd{bottom:682.493333pt;}
.y12d{bottom:684.093333pt;}
.y95{bottom:686.973333pt;}
.y37{bottom:687.613333pt;}
.y107{bottom:698.333333pt;}
.y12c{bottom:699.773333pt;}
.yc2{bottom:702.973333pt;}
.y62{bottom:703.133333pt;}
.ydd{bottom:705.533333pt;}
.y36{bottom:711.133333pt;}
.yc{bottom:714.493333pt;}
.y61{bottom:718.813333pt;}
.y12b{bottom:723.453333pt;}
.yc1{bottom:727.293333pt;}
.y106{bottom:731.453333pt;}
.yb{bottom:733.853333pt;}
.ydc{bottom:734.173333pt;}
.y60{bottom:734.493333pt;}
.y12a{bottom:739.133333pt;}
.y35{bottom:742.813333pt;}
.ya{bottom:746.493333pt;}
.yc0{bottom:751.613333pt;}
.y129{bottom:754.813333pt;}
.y9{bottom:765.893333pt;}
.y5f{bottom:766.053333pt;}
.y34{bottom:766.373333pt;}
.y105{bottom:774.373333pt;}
.ybf{bottom:775.973333pt;}
.y128{bottom:778.373333pt;}
.y8{bottom:778.533333pt;}
.y5e{bottom:781.733333pt;}
.y104{bottom:790.053333pt;}
.y127{bottom:794.053333pt;}
.y5d{bottom:797.413333pt;}
.y7{bottom:797.893333pt;}
.y33{bottom:798.213333pt;}
.ybe{bottom:800.133333pt;}
.y103{bottom:805.733333pt;}
.y126{bottom:817.573333pt;}
.y102{bottom:821.413333pt;}
.ybd{bottom:824.453333pt;}
.y6{bottom:826.693333pt;}
.y5c{bottom:828.933333pt;}
.y125{bottom:833.253333pt;}
.y32{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y5b{bottom:844.613333pt;}
.ybc{bottom:848.773333pt;}
.y124{bottom:848.933333pt;}
.y101{bottom:852.933333pt;}
.y31{bottom:856.933333pt;}
.y5a{bottom:860.293333pt;}
.y100{bottom:868.613333pt;}
.y123{bottom:872.453333pt;}
.y30{bottom:872.613333pt;}
.ybb{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.y59{bottom:883.813333pt;}
.yff{bottom:884.293333pt;}
.y122{bottom:888.133333pt;}
.yba{bottom:897.413333pt;}
.y3{bottom:899.813333pt;}
.yfe{bottom:899.973333pt;}
.y121{bottom:903.813333pt;}
.y2f{bottom:904.133333pt;}
.y58{bottom:915.653333pt;}
.y2e{bottom:919.813333pt;}
.yb9{bottom:921.733333pt;}
.yfd{bottom:923.653333pt;}
.y7d{bottom:927.493333pt;}
.y2d{bottom:935.493333pt;}
.y7c{bottom:943.173333pt;}
.yb6{bottom:946.053333pt;}
.y2c{bottom:951.173333pt;}
.y57{bottom:958.693333pt;}
.y2b{bottom:966.693333pt;}
.yb8{bottom:970.213333pt;}
.y56{bottom:974.373333pt;}
.y2a{bottom:982.373333pt;}
.y55{bottom:990.053333pt;}
.y94{bottom:997.893333pt;}
.y29{bottom:998.053333pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h15{height:23.520000pt;}
.h16{height:23.552000pt;}
.h14{height:23.680000pt;}
.h17{height:23.712000pt;}
.h2{height:26.415625pt;}
.h8{height:32.620625pt;}
.h6{height:32.780625pt;}
.h3{height:35.083125pt;}
.h19{height:37.310625pt;}
.h13{height:44.975625pt;}
.hf{height:45.417927pt;}
.h7{height:46.220625pt;}
.h1a{height:47.840000pt;}
.h12{height:48.000000pt;}
.h18{height:48.032000pt;}
.hd{height:48.384000pt;}
.h9{height:49.852500pt;}
.h5{height:51.232500pt;}
.ha{height:54.187500pt;}
.h1b{height:54.598989pt;}
.hc{height:55.298750pt;}
.hb{height:61.295000pt;}
.h4{height:65.154375pt;}
.he{height:65.368424pt;}
.h11{height:108.060921pt;}
.h10{height:109.715849pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1a{width:25.280000pt;}
.w21{width:25.312000pt;}
.w11{width:31.072000pt;}
.w22{width:45.920000pt;}
.w27{width:45.952000pt;}
.w20{width:46.080000pt;}
.w7{width:47.680000pt;}
.w1f{width:50.272000pt;}
.wd{width:50.720000pt;}
.w16{width:50.880000pt;}
.w10{width:53.280000pt;}
.w26{width:53.440000pt;}
.w19{width:53.472000pt;}
.w25{width:55.360000pt;}
.w17{width:55.392000pt;}
.w28{width:56.320000pt;}
.w1b{width:60.800000pt;}
.we{width:61.120000pt;}
.w8{width:61.152000pt;}
.w12{width:74.720000pt;}
.w6{width:95.712000pt;}
.w18{width:97.120000pt;}
.wf{width:97.152000pt;}
.w1c{width:100.832000pt;}
.wc{width:106.432000pt;}
.w1e{width:118.592000pt;}
.wa{width:120.352000pt;}
.w23{width:124.032000pt;}
.w4{width:132.832000pt;}
.w3{width:135.800000pt;}
.w15{width:140.826667pt;}
.w24{width:157.146667pt;}
.w13{width:174.586667pt;}
.w14{width:204.666667pt;}
.w5{width:205.826667pt;}
.w1d{width:209.786667pt;}
.wb{width:264.346667pt;}
.w9{width:339.293333pt;}
.w29{width:487.133333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.221733pt;}
.x18{left:8.480000pt;}
.x1c{left:9.760000pt;}
.x11{left:11.360000pt;}
.x34{left:12.960000pt;}
.xf{left:14.400000pt;}
.x37{left:16.000000pt;}
.x12{left:18.080000pt;}
.x28{left:19.680000pt;}
.x20{left:24.640000pt;}
.x2b{left:26.720000pt;}
.x1f{left:30.266667pt;}
.xe{left:31.680000pt;}
.x1e{left:33.600000pt;}
.x10{left:35.386667pt;}
.x1{left:60.480000pt;}
.x21{left:72.639988pt;}
.x8{left:74.805646pt;}
.x3c{left:77.920000pt;}
.xb{left:81.466667pt;}
.x32{left:83.520000pt;}
.x44{left:98.911988pt;}
.x16{left:110.880000pt;}
.x23{left:136.346667pt;}
.x6{left:150.412820pt;}
.x3a{left:153.466667pt;}
.x14{left:169.466655pt;}
.x2e{left:171.226655pt;}
.x30{left:181.786667pt;}
.x2{left:187.546655pt;}
.x42{left:192.346655pt;}
.x9{left:227.386667pt;}
.x2d{left:229.466655pt;}
.x3e{left:237.506655pt;}
.x43{left:249.346655pt;}
.x15{left:271.906667pt;}
.x40{left:275.906655pt;}
.x3b{left:278.146667pt;}
.x2f{left:280.066655pt;}
.x31{left:283.266667pt;}
.x22{left:305.346655pt;}
.x24{left:311.586667pt;}
.x19{left:323.266667pt;}
.x5{left:328.973333pt;}
.x35{left:345.026667pt;}
.xa{left:360.866667pt;}
.x26{left:363.106667pt;}
.x1a{left:385.026667pt;}
.x36{left:395.933333pt;}
.x27{left:419.133333pt;}
.xc{left:457.213333pt;}
.x4{left:466.973322pt;}
.x1b{left:482.973333pt;}
.x33{left:493.693333pt;}
.xd{left:505.533333pt;}
.x25{left:516.893333pt;}
.x17{left:536.893333pt;}
.x38{left:540.413333pt;}
.x39{left:566.373333pt;}
.x1d{left:568.613333pt;}
.x29{left:571.013333pt;}
.x3d{left:584.293333pt;}
.x2a{left:596.933333pt;}
.x13{left:610.053322pt;}
.x41{left:618.213322pt;}
.x3f{left:624.293322pt;}
.x2c{left:639.013322pt;}
.x3{left:711.493322pt;}
}




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