
    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_befad7f89fa045e6fee7818f.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_22a64d6ac39bdf3852240018.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_40cd965239cea49e707c8d77.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_2465ff8013cad71b3e8945ac.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_b87444467a102aee52b375a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_d74b4ace65817fba3430d716.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_307f5b6a73d6092ae1d55e0f.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_d7a9571ba25bca002556628b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2b055d8af4134bd2fd06f6c4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b8f7db6d91cc5a952546f10c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_51ce67e12675ee71a5b12170.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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:ffe;src:url('chunks/assets/font_96a162b21a81b41c8de671c6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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:fff;src:url('chunks/assets/font_dcbb7413b727a5a43a61dc15.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;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:ff10;src:url('chunks/assets/font_0fbad6547b26af0634691aea.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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:ff11;src:url('chunks/assets/font_8bcc68801351db8cd693625a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_a1b149557bbb279696a07102.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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:ff13;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff13{font-family:ff13;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;}
.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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsb{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.298200px;}
.lsa{letter-spacing:-0.272400px;}
.ls8{letter-spacing:-0.127200px;}
.ls16{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.100200px;}
.lsd{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.174240px;}
.ls15{letter-spacing:0.186600px;}
.lse{letter-spacing:0.235920px;}
.ls2{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.306600px;}
.ls4{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.379920px;}
.ls10{letter-spacing:0.439920px;}
.ls17{letter-spacing:0.542400px;}
.ls3{letter-spacing:0.786240px;}
.ls14{letter-spacing:0.979920px;}
.ls19{letter-spacing:16.506720px;}
.ls18{letter-spacing:46.026720px;}
.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:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws9{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.246600px;}
.wsc{word-spacing:-15.238800px;}
.ws5{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.839800px;}
.wsd{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-5.058000px;}
._3{margin-left:-3.713280px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.134000px;}
._1{width:1.068000px;}
._5{width:2.155440px;}
._8{width:3.593280px;}
._14{width:4.960080px;}
._10{width:6.216480px;}
._f{width:7.468560px;}
._e{width:8.665200px;}
._12{width:10.458000px;}
._d{width:12.258480px;}
._11{width:13.744800px;}
._13{width:16.620960px;}
._16{width:17.636880px;}
._19{width:19.091040px;}
._9{width:20.146800px;}
._a{width:21.147360px;}
._b{width:22.238400px;}
._c{width:24.090960px;}
._15{width:25.816320px;}
._18{width:27.019200px;}
._17{width:28.393680px;}
._1a{width:30.903600px;}
._1b{width:32.636640px;}
._7{width:34.449600px;}
._6{width:35.606880px;}
._1c{width:37.390080px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y46{bottom:3.240000px;}
.y98{bottom:3.285000px;}
.y4{bottom:3.600000px;}
.y4b{bottom:3.960000px;}
.yf{bottom:9.540000px;}
.y49{bottom:10.665000px;}
.y1c{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.y6{bottom:17.100000px;}
.ya8{bottom:17.280000px;}
.y3{bottom:20.160000px;}
.y45{bottom:20.520000px;}
.y4a{bottom:22.365000px;}
.y1a{bottom:23.940000px;}
.y48{bottom:25.245000px;}
.yc{bottom:30.240000px;}
.y5{bottom:33.876000px;}
.y2{bottom:36.576000px;}
.y44{bottom:37.800000px;}
.y1{bottom:39.600000px;}
.y19{bottom:40.320000px;}
.yb{bottom:46.440000px;}
.y43{bottom:55.080000px;}
.y18{bottom:56.925000px;}
.y17{bottom:69.345000px;}
.y42{bottom:72.360000px;}
.ya{bottom:73.440000px;}
.y16{bottom:83.925000px;}
.y41{bottom:89.640000px;}
.y9{bottom:93.090000px;}
.y15{bottom:99.225000px;}
.y11d{bottom:99.756000px;}
.ydf{bottom:102.636000px;}
.y40{bottom:106.740000px;}
.y58{bottom:107.316000px;}
.ya5{bottom:108.036000px;}
.y8{bottom:111.270000px;}
.y96{bottom:115.596000px;}
.y11c{bottom:117.036000px;}
.y14{bottom:118.305000px;}
.yde{bottom:120.636000px;}
.y3f{bottom:124.020000px;}
.y57{bottom:124.596000px;}
.ya4{bottom:125.316000px;}
.y95{bottom:132.876000px;}
.y11b{bottom:134.316000px;}
.ydd{bottom:138.636000px;}
.y3e{bottom:141.300000px;}
.y56{bottom:141.876000px;}
.ya3{bottom:142.596000px;}
.y13{bottom:144.045000px;}
.y94{bottom:149.976000px;}
.y2d{bottom:150.300000px;}
.y11a{bottom:151.590000px;}
.ydc{bottom:156.630000px;}
.y3d{bottom:158.580000px;}
.y55{bottom:159.150000px;}
.ya2{bottom:159.870000px;}
.y2c{bottom:165.600000px;}
.y93{bottom:167.250000px;}
.y119{bottom:168.870000px;}
.y12{bottom:169.785000px;}
.ydb{bottom:174.630000px;}
.y3c{bottom:175.860000px;}
.y54{bottom:176.250000px;}
.ya1{bottom:176.970000px;}
.y2b{bottom:183.240000px;}
.y92{bottom:184.530000px;}
.y118{bottom:185.970000px;}
.ya0{bottom:191.730000px;}
.yda{bottom:192.630000px;}
.y3b{bottom:192.960000px;}
.y53{bottom:193.530000px;}
.y11{bottom:194.085000px;}
.y2a{bottom:200.520000px;}
.y91{bottom:201.810000px;}
.y117{bottom:203.250000px;}
.y9f{bottom:209.730000px;}
.y3a{bottom:210.240000px;}
.yd9{bottom:210.630000px;}
.y52{bottom:210.810000px;}
.y29{bottom:217.620000px;}
.y90{bottom:219.090000px;}
.y116{bottom:220.530000px;}
.y39{bottom:227.520000px;}
.y9e{bottom:227.730000px;}
.y51{bottom:228.090000px;}
.yd8{bottom:231.870000px;}
.y28{bottom:235.440000px;}
.y8f{bottom:236.370000px;}
.y115{bottom:237.810000px;}
.y38{bottom:244.830000px;}
.y50{bottom:245.370000px;}
.y9d{bottom:245.730000px;}
.yd7{bottom:248.970000px;}
.y27{bottom:252.930000px;}
.y8e{bottom:253.470000px;}
.y114{bottom:255.090000px;}
.y37{bottom:262.110000px;}
.y4f{bottom:262.650000px;}
.y9c{bottom:263.730000px;}
.yd6{bottom:266.250000px;}
.y26{bottom:270.210000px;}
.y8d{bottom:270.750000px;}
.y113{bottom:272.370000px;}
.y36{bottom:279.390000px;}
.y4e{bottom:279.750000px;}
.y9b{bottom:281.730000px;}
.yd5{bottom:283.530000px;}
.y25{bottom:287.670000px;}
.y8c{bottom:288.030000px;}
.y112{bottom:289.470000px;}
.y35{bottom:296.490000px;}
.y4d{bottom:297.030000px;}
.y9a{bottom:299.730000px;}
.yd4{bottom:300.810000px;}
.y24{bottom:305.130000px;}
.y8b{bottom:305.310000px;}
.y111{bottom:306.750000px;}
.y34{bottom:313.770000px;}
.y4c{bottom:314.310000px;}
.y99{bottom:317.730000px;}
.yd3{bottom:318.090000px;}
.y23{bottom:322.410000px;}
.y8a{bottom:322.590000px;}
.y110{bottom:324.030000px;}
.y47{bottom:328.350000px;}
.y33{bottom:331.050000px;}
.yd2{bottom:335.370000px;}
.y97{bottom:335.730000px;}
.y10f{bottom:338.835000px;}
.y22{bottom:339.870000px;}
.y89{bottom:339.915000px;}
.y32{bottom:348.330000px;}
.yd1{bottom:352.515000px;}
.y10e{bottom:356.835000px;}
.y88{bottom:357.015000px;}
.y21{bottom:357.330000px;}
.y1d{bottom:364.935000px;}
.y31{bottom:365.610000px;}
.yd0{bottom:369.795000px;}
.y87{bottom:374.295000px;}
.y20{bottom:374.790000px;}
.y10d{bottom:374.835000px;}
.y30{bottom:382.890000px;}
.ycf{bottom:387.075000px;}
.y86{bottom:391.575000px;}
.y10c{bottom:392.835000px;}
.y2f{bottom:399.990000px;}
.y1f{bottom:402.330000px;}
.yce{bottom:404.355000px;}
.y85{bottom:408.855000px;}
.y10b{bottom:410.835000px;}
.y2e{bottom:417.270000px;}
.y1e{bottom:419.970000px;}
.ycd{bottom:421.635000px;}
.y84{bottom:426.135000px;}
.y10a{bottom:428.835000px;}
.ycc{bottom:436.395000px;}
.y83{bottom:443.415000px;}
.y109{bottom:450.075000px;}
.ycb{bottom:454.395000px;}
.y82{bottom:460.515000px;}
.y108{bottom:467.355000px;}
.yca{bottom:472.395000px;}
.y81{bottom:477.795000px;}
.y107{bottom:484.635000px;}
.yc9{bottom:490.395000px;}
.y80{bottom:495.075000px;}
.y106{bottom:501.735000px;}
.yc8{bottom:508.395000px;}
.y7f{bottom:512.355000px;}
.y105{bottom:519.015000px;}
.yc7{bottom:526.395000px;}
.y7e{bottom:529.635000px;}
.y104{bottom:536.295000px;}
.yc6{bottom:544.395000px;}
.y7d{bottom:546.735000px;}
.y103{bottom:553.575000px;}
.yc5{bottom:562.395000px;}
.y7c{bottom:564.015000px;}
.y102{bottom:570.855000px;}
.yc4{bottom:580.395000px;}
.y7b{bottom:581.295000px;}
.y101{bottom:588.135000px;}
.yc3{bottom:598.395000px;}
.y7a{bottom:598.575000px;}
.y100{bottom:605.265000px;}
.y79{bottom:615.885000px;}
.yc2{bottom:616.425000px;}
.yff{bottom:622.545000px;}
.y78{bottom:633.165000px;}
.yc1{bottom:634.425000px;}
.yfe{bottom:637.305000px;}
.y77{bottom:650.265000px;}
.yfd{bottom:655.305000px;}
.yc0{bottom:655.665000px;}
.y76{bottom:667.545000px;}
.ybf{bottom:672.765000px;}
.yfc{bottom:673.305000px;}
.y75{bottom:684.825000px;}
.ybe{bottom:690.045000px;}
.yfb{bottom:691.305000px;}
.y74{bottom:702.105000px;}
.ybd{bottom:707.325000px;}
.yfa{bottom:709.305000px;}
.y73{bottom:719.385000px;}
.ybc{bottom:724.605000px;}
.yf9{bottom:727.305000px;}
.y72{bottom:736.665000px;}
.ybb{bottom:741.885000px;}
.yf8{bottom:745.305000px;}
.y71{bottom:753.765000px;}
.yba{bottom:759.165000px;}
.yf7{bottom:766.545000px;}
.y70{bottom:771.045000px;}
.yb9{bottom:776.265000px;}
.yf6{bottom:783.825000px;}
.y6f{bottom:788.325000px;}
.yb8{bottom:793.545000px;}
.y1b{bottom:796.245000px;}
.yf5{bottom:801.105000px;}
.y6e{bottom:805.605000px;}
.yb7{bottom:810.825000px;}
.yf4{bottom:818.385000px;}
.y6d{bottom:822.885000px;}
.y10{bottom:825.765000px;}
.yb6{bottom:828.105000px;}
.yf3{bottom:835.485000px;}
.y6c{bottom:839.985000px;}
.yb5{bottom:842.865000px;}
.yf2{bottom:852.765000px;}
.y6b{bottom:857.265000px;}
.yb4{bottom:860.865000px;}
.yf1{bottom:870.045000px;}
.y6a{bottom:874.590000px;}
.yb3{bottom:878.910000px;}
.yf0{bottom:887.370000px;}
.y69{bottom:891.870000px;}
.yb2{bottom:896.910000px;}
.yef{bottom:904.650000px;}
.y68{bottom:909.150000px;}
.yb1{bottom:914.910000px;}
.yee{bottom:921.930000px;}
.y67{bottom:926.430000px;}
.yb0{bottom:932.910000px;}
.yed{bottom:939.030000px;}
.y66{bottom:943.530000px;}
.yaf{bottom:950.910000px;}
.yec{bottom:956.310000px;}
.y65{bottom:960.810000px;}
.yae{bottom:968.910000px;}
.yeb{bottom:973.590000px;}
.y64{bottom:978.090000px;}
.yad{bottom:986.910000px;}
.yea{bottom:990.870000px;}
.y63{bottom:995.370000px;}
.yac{bottom:1004.910000px;}
.ye9{bottom:1008.150000px;}
.y62{bottom:1012.650000px;}
.yab{bottom:1022.910000px;}
.ye8{bottom:1025.430000px;}
.y61{bottom:1029.930000px;}
.ye{bottom:1034.970000px;}
.yaa{bottom:1040.910000px;}
.ye7{bottom:1042.530000px;}
.y60{bottom:1047.030000px;}
.ya9{bottom:1058.910000px;}
.ye6{bottom:1059.810000px;}
.y7{bottom:1060.350000px;}
.y5f{bottom:1064.310000px;}
.ya7{bottom:1076.910000px;}
.ye5{bottom:1077.090000px;}
.y5e{bottom:1081.590000px;}
.ye4{bottom:1091.850000px;}
.ya6{bottom:1094.910000px;}
.y5d{bottom:1098.870000px;}
.ye3{bottom:1109.850000px;}
.y5c{bottom:1116.150000px;}
.ye2{bottom:1127.850000px;}
.y5b{bottom:1133.430000px;}
.ye1{bottom:1145.880000px;}
.y5a{bottom:1150.560000px;}
.ye0{bottom:1163.880000px;}
.y59{bottom:1167.840000px;}
.h21{height:17.100000px;}
.h22{height:17.136000px;}
.h20{height:17.280000px;}
.h1f{height:17.316000px;}
.hc{height:25.020000px;}
.h12{height:28.968750px;}
.h13{height:29.520000px;}
.h9{height:36.180000px;}
.h1d{height:36.576000px;}
.h1a{height:38.818125px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h19{height:42.281367px;}
.h5{height:43.453125px;}
.h23{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h1e{height:48.088125px;}
.h2{height:49.536000px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:67.824844px;}
.h7{height:71.613281px;}
.h14{height:73.722656px;}
.h8{height:121.536000px;}
.hd{height:209.190000px;}
.h15{height:431.310000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:30.420000px;}
.w1a{width:67.320000px;}
.w1b{width:72.000000px;}
.w3{width:74.880000px;}
.w17{width:120.816000px;}
.w19{width:143.136000px;}
.w18{width:148.356000px;}
.w5{width:151.950000px;}
.wc{width:155.520000px;}
.w16{width:156.960000px;}
.w11{width:162.540000px;}
.w12{width:164.520000px;}
.w14{width:167.790000px;}
.w13{width:184.710000px;}
.wb{width:188.850000px;}
.wf{width:191.370000px;}
.w8{width:223.275000px;}
.w1f{width:223.770000px;}
.w1e{width:233.490000px;}
.w15{width:234.975000px;}
.w1c{width:256.755000px;}
.we{width:265.890000px;}
.wd{width:287.895000px;}
.wa{width:400.785000px;}
.w10{width:418.065000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x14{left:12.600000px;}
.xc{left:15.300000px;}
.xd{left:34.236000px;}
.x11{left:40.356000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x10{left:90.750000px;}
.x5{left:98.130000px;}
.x2b{left:108.035987px;}
.xe{left:137.370000px;}
.x22{left:176.609987px;}
.x15{left:194.789987px;}
.xf{left:207.255000px;}
.x28{left:208.829987px;}
.x12{left:215.175000px;}
.x1b{left:222.689987px;}
.x6{left:224.850000px;}
.x1e{left:227.009987px;}
.x18{left:240.689987px;}
.x1f{left:258.690000px;}
.x23{left:265.350000px;}
.x9{left:288.435000px;}
.x13{left:296.175000px;}
.x29{left:330.735000px;}
.x7{left:348.195000px;}
.x19{left:361.875000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x24{left:386.895000px;}
.x20{left:427.215000px;}
.xa{left:455.700000px;}
.x16{left:474.765000px;}
.x1c{left:492.045000px;}
.x25{left:535.965000px;}
.x2a{left:596.085000px;}
.x1a{left:628.485000px;}
.x1d{left:655.350000px;}
.x21{left:662.910000px;}
.x17{left:664.350000px;}
.x26{left:679.830000px;}
.x3{left:745.890000px;}
.x27{left:747.870000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.265067pt;}
.lsa{letter-spacing:-0.242133pt;}
.ls8{letter-spacing:-0.113067pt;}
.ls16{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.089067pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.154880pt;}
.ls15{letter-spacing:0.165867pt;}
.lse{letter-spacing:0.209707pt;}
.ls2{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.272533pt;}
.ls4{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.337707pt;}
.ls10{letter-spacing:0.391040pt;}
.ls17{letter-spacing:0.482133pt;}
.ls3{letter-spacing:0.698880pt;}
.ls14{letter-spacing:0.871040pt;}
.ls19{letter-spacing:14.672640pt;}
.ls18{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws9{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.552533pt;}
.wsc{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.190933pt;}
.wsd{word-spacing:-13.185067pt;}
.ws6{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-4.496000pt;}
._3{margin-left:-3.300693pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.949333pt;}
._5{width:1.915947pt;}
._8{width:3.194027pt;}
._14{width:4.408960pt;}
._10{width:5.525760pt;}
._f{width:6.638720pt;}
._e{width:7.702400pt;}
._12{width:9.296000pt;}
._d{width:10.896427pt;}
._11{width:12.217600pt;}
._13{width:14.774187pt;}
._16{width:15.677227pt;}
._19{width:16.969813pt;}
._9{width:17.908267pt;}
._a{width:18.797653pt;}
._b{width:19.767467pt;}
._c{width:21.414187pt;}
._15{width:22.947840pt;}
._18{width:24.017067pt;}
._17{width:25.238827pt;}
._1a{width:27.469867pt;}
._1b{width:29.010347pt;}
._7{width:30.621867pt;}
._6{width:31.650560pt;}
._1c{width:33.235627pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:2.880000pt;}
.y98{bottom:2.920000pt;}
.y4{bottom:3.200000pt;}
.y4b{bottom:3.520000pt;}
.yf{bottom:8.480000pt;}
.y49{bottom:9.480000pt;}
.y1c{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.y6{bottom:15.200000pt;}
.ya8{bottom:15.360000pt;}
.y3{bottom:17.920000pt;}
.y45{bottom:18.240000pt;}
.y4a{bottom:19.880000pt;}
.y1a{bottom:21.280000pt;}
.y48{bottom:22.440000pt;}
.yc{bottom:26.880000pt;}
.y5{bottom:30.112000pt;}
.y2{bottom:32.512000pt;}
.y44{bottom:33.600000pt;}
.y1{bottom:35.200000pt;}
.y19{bottom:35.840000pt;}
.yb{bottom:41.280000pt;}
.y43{bottom:48.960000pt;}
.y18{bottom:50.600000pt;}
.y17{bottom:61.640000pt;}
.y42{bottom:64.320000pt;}
.ya{bottom:65.280000pt;}
.y16{bottom:74.600000pt;}
.y41{bottom:79.680000pt;}
.y9{bottom:82.746667pt;}
.y15{bottom:88.200000pt;}
.y11d{bottom:88.672000pt;}
.ydf{bottom:91.232000pt;}
.y40{bottom:94.880000pt;}
.y58{bottom:95.392000pt;}
.ya5{bottom:96.032000pt;}
.y8{bottom:98.906667pt;}
.y96{bottom:102.752000pt;}
.y11c{bottom:104.032000pt;}
.y14{bottom:105.160000pt;}
.yde{bottom:107.232000pt;}
.y3f{bottom:110.240000pt;}
.y57{bottom:110.752000pt;}
.ya4{bottom:111.392000pt;}
.y95{bottom:118.112000pt;}
.y11b{bottom:119.392000pt;}
.ydd{bottom:123.232000pt;}
.y3e{bottom:125.600000pt;}
.y56{bottom:126.112000pt;}
.ya3{bottom:126.752000pt;}
.y13{bottom:128.040000pt;}
.y94{bottom:133.312000pt;}
.y2d{bottom:133.600000pt;}
.y11a{bottom:134.746667pt;}
.ydc{bottom:139.226667pt;}
.y3d{bottom:140.960000pt;}
.y55{bottom:141.466667pt;}
.ya2{bottom:142.106667pt;}
.y2c{bottom:147.200000pt;}
.y93{bottom:148.666667pt;}
.y119{bottom:150.106667pt;}
.y12{bottom:150.920000pt;}
.ydb{bottom:155.226667pt;}
.y3c{bottom:156.320000pt;}
.y54{bottom:156.666667pt;}
.ya1{bottom:157.306667pt;}
.y2b{bottom:162.880000pt;}
.y92{bottom:164.026667pt;}
.y118{bottom:165.306667pt;}
.ya0{bottom:170.426667pt;}
.yda{bottom:171.226667pt;}
.y3b{bottom:171.520000pt;}
.y53{bottom:172.026667pt;}
.y11{bottom:172.520000pt;}
.y2a{bottom:178.240000pt;}
.y91{bottom:179.386667pt;}
.y117{bottom:180.666667pt;}
.y9f{bottom:186.426667pt;}
.y3a{bottom:186.880000pt;}
.yd9{bottom:187.226667pt;}
.y52{bottom:187.386667pt;}
.y29{bottom:193.440000pt;}
.y90{bottom:194.746667pt;}
.y116{bottom:196.026667pt;}
.y39{bottom:202.240000pt;}
.y9e{bottom:202.426667pt;}
.y51{bottom:202.746667pt;}
.yd8{bottom:206.106667pt;}
.y28{bottom:209.280000pt;}
.y8f{bottom:210.106667pt;}
.y115{bottom:211.386667pt;}
.y38{bottom:217.626667pt;}
.y50{bottom:218.106667pt;}
.y9d{bottom:218.426667pt;}
.yd7{bottom:221.306667pt;}
.y27{bottom:224.826667pt;}
.y8e{bottom:225.306667pt;}
.y114{bottom:226.746667pt;}
.y37{bottom:232.986667pt;}
.y4f{bottom:233.466667pt;}
.y9c{bottom:234.426667pt;}
.yd6{bottom:236.666667pt;}
.y26{bottom:240.186667pt;}
.y8d{bottom:240.666667pt;}
.y113{bottom:242.106667pt;}
.y36{bottom:248.346667pt;}
.y4e{bottom:248.666667pt;}
.y9b{bottom:250.426667pt;}
.yd5{bottom:252.026667pt;}
.y25{bottom:255.706667pt;}
.y8c{bottom:256.026667pt;}
.y112{bottom:257.306667pt;}
.y35{bottom:263.546667pt;}
.y4d{bottom:264.026667pt;}
.y9a{bottom:266.426667pt;}
.yd4{bottom:267.386667pt;}
.y24{bottom:271.226667pt;}
.y8b{bottom:271.386667pt;}
.y111{bottom:272.666667pt;}
.y34{bottom:278.906667pt;}
.y4c{bottom:279.386667pt;}
.y99{bottom:282.426667pt;}
.yd3{bottom:282.746667pt;}
.y23{bottom:286.586667pt;}
.y8a{bottom:286.746667pt;}
.y110{bottom:288.026667pt;}
.y47{bottom:291.866667pt;}
.y33{bottom:294.266667pt;}
.yd2{bottom:298.106667pt;}
.y97{bottom:298.426667pt;}
.y10f{bottom:301.186667pt;}
.y22{bottom:302.106667pt;}
.y89{bottom:302.146667pt;}
.y32{bottom:309.626667pt;}
.yd1{bottom:313.346667pt;}
.y10e{bottom:317.186667pt;}
.y88{bottom:317.346667pt;}
.y21{bottom:317.626667pt;}
.y1d{bottom:324.386667pt;}
.y31{bottom:324.986667pt;}
.yd0{bottom:328.706667pt;}
.y87{bottom:332.706667pt;}
.y20{bottom:333.146667pt;}
.y10d{bottom:333.186667pt;}
.y30{bottom:340.346667pt;}
.ycf{bottom:344.066667pt;}
.y86{bottom:348.066667pt;}
.y10c{bottom:349.186667pt;}
.y2f{bottom:355.546667pt;}
.y1f{bottom:357.626667pt;}
.yce{bottom:359.426667pt;}
.y85{bottom:363.426667pt;}
.y10b{bottom:365.186667pt;}
.y2e{bottom:370.906667pt;}
.y1e{bottom:373.306667pt;}
.ycd{bottom:374.786667pt;}
.y84{bottom:378.786667pt;}
.y10a{bottom:381.186667pt;}
.ycc{bottom:387.906667pt;}
.y83{bottom:394.146667pt;}
.y109{bottom:400.066667pt;}
.ycb{bottom:403.906667pt;}
.y82{bottom:409.346667pt;}
.y108{bottom:415.426667pt;}
.yca{bottom:419.906667pt;}
.y81{bottom:424.706667pt;}
.y107{bottom:430.786667pt;}
.yc9{bottom:435.906667pt;}
.y80{bottom:440.066667pt;}
.y106{bottom:445.986667pt;}
.yc8{bottom:451.906667pt;}
.y7f{bottom:455.426667pt;}
.y105{bottom:461.346667pt;}
.yc7{bottom:467.906667pt;}
.y7e{bottom:470.786667pt;}
.y104{bottom:476.706667pt;}
.yc6{bottom:483.906667pt;}
.y7d{bottom:485.986667pt;}
.y103{bottom:492.066667pt;}
.yc5{bottom:499.906667pt;}
.y7c{bottom:501.346667pt;}
.y102{bottom:507.426667pt;}
.yc4{bottom:515.906667pt;}
.y7b{bottom:516.706667pt;}
.y101{bottom:522.786667pt;}
.yc3{bottom:531.906667pt;}
.y7a{bottom:532.066667pt;}
.y100{bottom:538.013333pt;}
.y79{bottom:547.453333pt;}
.yc2{bottom:547.933333pt;}
.yff{bottom:553.373333pt;}
.y78{bottom:562.813333pt;}
.yc1{bottom:563.933333pt;}
.yfe{bottom:566.493333pt;}
.y77{bottom:578.013333pt;}
.yfd{bottom:582.493333pt;}
.yc0{bottom:582.813333pt;}
.y76{bottom:593.373333pt;}
.ybf{bottom:598.013333pt;}
.yfc{bottom:598.493333pt;}
.y75{bottom:608.733333pt;}
.ybe{bottom:613.373333pt;}
.yfb{bottom:614.493333pt;}
.y74{bottom:624.093333pt;}
.ybd{bottom:628.733333pt;}
.yfa{bottom:630.493333pt;}
.y73{bottom:639.453333pt;}
.ybc{bottom:644.093333pt;}
.yf9{bottom:646.493333pt;}
.y72{bottom:654.813333pt;}
.ybb{bottom:659.453333pt;}
.yf8{bottom:662.493333pt;}
.y71{bottom:670.013333pt;}
.yba{bottom:674.813333pt;}
.yf7{bottom:681.373333pt;}
.y70{bottom:685.373333pt;}
.yb9{bottom:690.013333pt;}
.yf6{bottom:696.733333pt;}
.y6f{bottom:700.733333pt;}
.yb8{bottom:705.373333pt;}
.y1b{bottom:707.773333pt;}
.yf5{bottom:712.093333pt;}
.y6e{bottom:716.093333pt;}
.yb7{bottom:720.733333pt;}
.yf4{bottom:727.453333pt;}
.y6d{bottom:731.453333pt;}
.y10{bottom:734.013333pt;}
.yb6{bottom:736.093333pt;}
.yf3{bottom:742.653333pt;}
.y6c{bottom:746.653333pt;}
.yb5{bottom:749.213333pt;}
.yf2{bottom:758.013333pt;}
.y6b{bottom:762.013333pt;}
.yb4{bottom:765.213333pt;}
.yf1{bottom:773.373333pt;}
.y6a{bottom:777.413333pt;}
.yb3{bottom:781.253333pt;}
.yf0{bottom:788.773333pt;}
.y69{bottom:792.773333pt;}
.yb2{bottom:797.253333pt;}
.yef{bottom:804.133333pt;}
.y68{bottom:808.133333pt;}
.yb1{bottom:813.253333pt;}
.yee{bottom:819.493333pt;}
.y67{bottom:823.493333pt;}
.yb0{bottom:829.253333pt;}
.yed{bottom:834.693333pt;}
.y66{bottom:838.693333pt;}
.yaf{bottom:845.253333pt;}
.yec{bottom:850.053333pt;}
.y65{bottom:854.053333pt;}
.yae{bottom:861.253333pt;}
.yeb{bottom:865.413333pt;}
.y64{bottom:869.413333pt;}
.yad{bottom:877.253333pt;}
.yea{bottom:880.773333pt;}
.y63{bottom:884.773333pt;}
.yac{bottom:893.253333pt;}
.ye9{bottom:896.133333pt;}
.y62{bottom:900.133333pt;}
.yab{bottom:909.253333pt;}
.ye8{bottom:911.493333pt;}
.y61{bottom:915.493333pt;}
.ye{bottom:919.973333pt;}
.yaa{bottom:925.253333pt;}
.ye7{bottom:926.693333pt;}
.y60{bottom:930.693333pt;}
.ya9{bottom:941.253333pt;}
.ye6{bottom:942.053333pt;}
.y7{bottom:942.533333pt;}
.y5f{bottom:946.053333pt;}
.ya7{bottom:957.253333pt;}
.ye5{bottom:957.413333pt;}
.y5e{bottom:961.413333pt;}
.ye4{bottom:970.533333pt;}
.ya6{bottom:973.253333pt;}
.y5d{bottom:976.773333pt;}
.ye3{bottom:986.533333pt;}
.y5c{bottom:992.133333pt;}
.ye2{bottom:1002.533333pt;}
.y5b{bottom:1007.493333pt;}
.ye1{bottom:1018.560000pt;}
.y5a{bottom:1022.720000pt;}
.ye0{bottom:1034.560000pt;}
.y59{bottom:1038.080000pt;}
.h21{height:15.200000pt;}
.h22{height:15.232000pt;}
.h20{height:15.360000pt;}
.h1f{height:15.392000pt;}
.hc{height:22.240000pt;}
.h12{height:25.750000pt;}
.h13{height:26.240000pt;}
.h9{height:32.160000pt;}
.h1d{height:32.512000pt;}
.h1a{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h19{height:37.583438pt;}
.h5{height:38.625000pt;}
.h23{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h1e{height:42.745000pt;}
.h2{height:44.032000pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:60.288750pt;}
.h7{height:63.656250pt;}
.h14{height:65.531250pt;}
.h8{height:108.032000pt;}
.hd{height:185.946667pt;}
.h15{height:383.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:27.040000pt;}
.w1a{width:59.840000pt;}
.w1b{width:64.000000pt;}
.w3{width:66.560000pt;}
.w17{width:107.392000pt;}
.w19{width:127.232000pt;}
.w18{width:131.872000pt;}
.w5{width:135.066667pt;}
.wc{width:138.240000pt;}
.w16{width:139.520000pt;}
.w11{width:144.480000pt;}
.w12{width:146.240000pt;}
.w14{width:149.146667pt;}
.w13{width:164.186667pt;}
.wb{width:167.866667pt;}
.wf{width:170.106667pt;}
.w8{width:198.466667pt;}
.w1f{width:198.906667pt;}
.w1e{width:207.546667pt;}
.w15{width:208.866667pt;}
.w1c{width:228.226667pt;}
.we{width:236.346667pt;}
.wd{width:255.906667pt;}
.wa{width:356.253333pt;}
.w10{width:371.613333pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x14{left:11.200000pt;}
.xc{left:13.600000pt;}
.xd{left:30.432000pt;}
.x11{left:35.872000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x10{left:80.666667pt;}
.x5{left:87.226667pt;}
.x2b{left:96.031988pt;}
.xe{left:122.106667pt;}
.x22{left:156.986655pt;}
.x15{left:173.146655pt;}
.xf{left:184.226667pt;}
.x28{left:185.626655pt;}
.x12{left:191.266667pt;}
.x1b{left:197.946655pt;}
.x6{left:199.866667pt;}
.x1e{left:201.786655pt;}
.x18{left:213.946655pt;}
.x1f{left:229.946667pt;}
.x23{left:235.866667pt;}
.x9{left:256.386667pt;}
.x13{left:263.266667pt;}
.x29{left:293.986667pt;}
.x7{left:309.506667pt;}
.x19{left:321.666667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x24{left:343.906667pt;}
.x20{left:379.746667pt;}
.xa{left:405.066667pt;}
.x16{left:422.013333pt;}
.x1c{left:437.373333pt;}
.x25{left:476.413333pt;}
.x2a{left:529.853333pt;}
.x1a{left:558.653333pt;}
.x1d{left:582.533333pt;}
.x21{left:589.253333pt;}
.x17{left:590.533333pt;}
.x26{left:604.293333pt;}
.x3{left:663.013333pt;}
.x27{left:664.773333pt;}
}




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