
    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_8ba729c4ae6195bb4be75961.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_0bc433f12c2d35e9a00d70a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_1ec8f337583a7c79f9820405.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_5ef240bcc361b2eb25d34b11.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966309;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_13bef7267f380ccf684ef76b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_075fce7724737a28e4dc1185.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_12b3e55cb23664d9b1e9c22c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_9360765c327f12a2a83986e4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_5f5f04411230bccef6564ac8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.130371;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_80499887d06db45e586047a0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937500;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_704bc6916593692007def338.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_12275547d4a44ed040d822a6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.113281;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:-1.584000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:64.800000px;}
.ls12{letter-spacing:-1.338000px;}
.lsa{letter-spacing:-0.972000px;}
.ls4{letter-spacing:-0.816000px;}
.ls3{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.575400px;}
.lsf{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.396000px;}
.ls17{letter-spacing:-0.365400px;}
.ls1a{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.292200px;}
.ls11{letter-spacing:-0.252000px;}
.lsc{letter-spacing:-0.183000px;}
.ls22{letter-spacing:-0.181200px;}
.ls9{letter-spacing:-0.108000px;}
.ls5{letter-spacing:-0.036000px;}
.ls6{letter-spacing:-0.005046px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.022320px;}
.ls13{letter-spacing:0.036000px;}
.ls1c{letter-spacing:0.060600px;}
.ls1b{letter-spacing:0.100800px;}
.ls7{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.144600px;}
.ls10{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.240000px;}
.ls23{letter-spacing:0.259800px;}
.ls21{letter-spacing:0.269400px;}
.ls19{letter-spacing:0.276600px;}
.ls20{letter-spacing:22.282560px;}
.ls1f{letter-spacing:23.002560px;}
.ls0{letter-spacing:26.677440px;}
.ls1{letter-spacing:27.397440px;}
.ls8{letter-spacing:46.560288px;}
.ls1e{letter-spacing:89.112240px;}
.ls1d{letter-spacing:96.766080px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.sc3{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{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);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-48.848544px;}
.ws2{word-spacing:-37.913760px;}
.ws16{word-spacing:-32.576544px;}
.ws14{word-spacing:-32.544000px;}
.ws3{word-spacing:-27.206784px;}
.ws1{word-spacing:-27.174240px;}
.ws13{word-spacing:-24.440544px;}
.ws4{word-spacing:-24.408000px;}
.ws22{word-spacing:-19.038240px;}
.ws23{word-spacing:-13.606560px;}
.ws24{word-spacing:-13.505760px;}
.ws25{word-spacing:-13.410720px;}
.ws1f{word-spacing:-9.145560px;}
.ws1e{word-spacing:-9.104904px;}
.ws7{word-spacing:-5.797728px;}
.ws12{word-spacing:-3.564000px;}
.ws1b{word-spacing:-3.456000px;}
.ws19{word-spacing:-2.952000px;}
.wsf{word-spacing:-2.808000px;}
.ws18{word-spacing:-2.700000px;}
.ws1a{word-spacing:-2.016000px;}
.ws28{word-spacing:-1.818000px;}
.ws15{word-spacing:-1.764000px;}
.ws17{word-spacing:-1.689624px;}
.wsd{word-spacing:-1.392000px;}
.ws29{word-spacing:-1.197360px;}
.ws1c{word-spacing:-0.959760px;}
.ws21{word-spacing:-0.889200px;}
.wse{word-spacing:-0.828000px;}
.ws11{word-spacing:-0.684000px;}
.ws8{word-spacing:-0.576000px;}
.ws26{word-spacing:-0.311280px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:0.396000px;}
.ws27{word-spacing:0.442080px;}
.wsc{word-spacing:0.504000px;}
.wsa{word-spacing:0.972000px;}
.ws10{word-spacing:1.008000px;}
.ws20{word-spacing:1.794240px;}
.wsb{word-spacing:1.908000px;}
.ws5{word-spacing:582.260976px;}
.ws1d{word-spacing:694.243440px;}
._15{margin-left:-648.137520px;}
._9{margin-left:-17.234064px;}
._6{margin-left:-10.868640px;}
._a{margin-left:-9.846000px;}
._d{margin-left:-8.556000px;}
._4{margin-left:-6.415920px;}
._b{margin-left:-5.174256px;}
._0{margin-left:-3.996000px;}
._2{margin-left:-2.298240px;}
._5{margin-left:-1.244880px;}
._1{width:1.296000px;}
._10{width:2.358000px;}
._3{width:3.543120px;}
._f{width:10.080000px;}
._18{width:14.124960px;}
._19{width:15.364080px;}
._14{width:20.398848px;}
._11{width:21.625056px;}
._12{width:22.689360px;}
._c{width:24.972000px;}
._e{width:26.368800px;}
._17{width:40.495440px;}
._7{width:70.885200px;}
._16{width:526.502880px;}
._13{width:549.607728px;}
._8{width:2480.975376px;}
.fc8{color:rgb(10,80,161);}
.fc7{color:rgb(107,159,37);}
.fc4{color:rgb(0,91,127);}
.fc6{color:rgb(47,84,150);}
.fc3{color:rgb(0,32,96);}
.fc5{color:rgb(9,59,55);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fse{font-size:41.760000px;}
.fsd{font-size:41.904000px;}
.fsc{font-size:48.240000px;}
.fs10{font-size:59.760000px;}
.fs13{font-size:59.904000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:72.144000px;}
.fsf{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs0{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fs6{font-size:120.240000px;}
.fs8{font-size:120.384000px;}
.fsb{font-size:144.000000px;}
.fsa{font-size:144.144000px;}
.fs7{font-size:167.760000px;}
.fs3{font-size:216.000000px;}
.fs2{font-size:216.144000px;}
.fs11{font-size:239.760000px;}
.fs12{font-size:239.904000px;}
.yf{bottom:-18.330000px;}
.y56{bottom:-15.300000px;}
.y66{bottom:-15.225000px;}
.y3b{bottom:-6.624000px;}
.y27{bottom:-6.480000px;}
.y2c{bottom:-5.940000px;}
.y34{bottom:-5.904000px;}
.y4c{bottom:-0.210000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:0.360000px;}
.yd{bottom:0.390000px;}
.y31{bottom:0.396000px;}
.y11{bottom:0.570000px;}
.y74{bottom:0.690000px;}
.y5d{bottom:0.750000px;}
.y62{bottom:0.795000px;}
.y68{bottom:0.825000px;}
.y6e{bottom:0.870000px;}
.y41{bottom:0.900000px;}
.y4f{bottom:1.590000px;}
.y3e{bottom:3.276000px;}
.y23{bottom:3.960000px;}
.y21{bottom:3.990000px;}
.y70{bottom:4.290000px;}
.y7a{bottom:4.350000px;}
.y38{bottom:4.716000px;}
.y36{bottom:4.896000px;}
.y5e{bottom:5.250000px;}
.y6a{bottom:5.325000px;}
.y72{bottom:5.370000px;}
.yb{bottom:5.430000px;}
.y1d{bottom:5.580000px;}
.y1b{bottom:5.610000px;}
.y4d{bottom:6.090000px;}
.y54{bottom:6.840000px;}
.y64{bottom:6.915000px;}
.y13{bottom:7.590000px;}
.y9{bottom:35.172000px;}
.y89{bottom:36.108000px;}
.y8e{bottom:36.324000px;}
.y8b{bottom:59.184000px;}
.y8a{bottom:70.560000px;}
.y39{bottom:88.200000px;}
.y37{bottom:88.380000px;}
.y3d{bottom:89.820000px;}
.y3c{bottom:92.700000px;}
.y3a{bottom:99.720000px;}
.y90{bottom:107.856000px;}
.y35{bottom:120.600000px;}
.y30{bottom:122.220000px;}
.y32{bottom:125.100000px;}
.y33{bottom:131.400000px;}
.y8{bottom:153.870000px;}
.ya1{bottom:154.980000px;}
.y8f{bottom:156.855000px;}
.y3{bottom:167.940000px;}
.y2d{bottom:170.820000px;}
.y94{bottom:174.420000px;}
.y2e{bottom:175.860000px;}
.y2f{bottom:178.740000px;}
.ya0{bottom:180.180000px;}
.y2{bottom:196.740000px;}
.y50{bottom:198.360000px;}
.y9f{bottom:205.920000px;}
.y49{bottom:210.030000px;}
.y42{bottom:210.600000px;}
.y7{bottom:219.210000px;}
.y28{bottom:224.280000px;}
.y1{bottom:226.260000px;}
.y4e{bottom:230.760000px;}
.y29{bottom:232.380000px;}
.y4b{bottom:232.560000px;}
.y2b{bottom:238.680000px;}
.y2a{bottom:239.220000px;}
.y48{bottom:242.460000px;}
.y40{bottom:282.600000px;}
.y24{bottom:283.140000px;}
.y82{bottom:283.710000px;}
.y6{bottom:284.040000px;}
.y25{bottom:286.020000px;}
.y26{bottom:292.860000px;}
.y7f{bottom:299.910000px;}
.y47{bottom:313.995000px;}
.y81{bottom:316.110000px;}
.y1c{bottom:324.720000px;}
.y1e{bottom:329.940000px;}
.y9d{bottom:330.405000px;}
.y7e{bottom:332.310000px;}
.y22{bottom:332.820000px;}
.y4a{bottom:341.490000px;}
.y46{bottom:346.395000px;}
.y80{bottom:348.510000px;}
.y59{bottom:348.735000px;}
.y1a{bottom:360.720000px;}
.y5b{bottom:364.935000px;}
.y20{bottom:365.220000px;}
.y19{bottom:365.940000px;}
.y58{bottom:381.135000px;}
.y9c{bottom:391.965000px;}
.y5a{bottom:397.335000px;}
.yb3{bottom:402.810000px;}
.y17{bottom:408.780000px;}
.y57{bottom:413.565000px;}
.y16{bottom:415.800000px;}
.yb2{bottom:416.670000px;}
.ya9{bottom:420.765000px;}
.y9a{bottom:424.620000px;}
.yb1{bottom:431.070000px;}
.y18{bottom:434.700000px;}
.y45{bottom:435.240000px;}
.ya8{bottom:435.705000px;}
.yb0{bottom:445.470000px;}
.ya7{bottom:450.105000px;}
.y9b{bottom:456.765000px;}
.y88{bottom:458.640000px;}
.y14{bottom:459.180000px;}
.yaf{bottom:459.870000px;}
.y87{bottom:463.140000px;}
.ya6{bottom:464.505000px;}
.y15{bottom:466.200000px;}
.yae{bottom:474.270000px;}
.ya5{bottom:478.905000px;}
.y73{bottom:484.020000px;}
.y60{bottom:484.200000px;}
.y6c{bottom:484.560000px;}
.y5{bottom:486.975000px;}
.y63{bottom:487.980000px;}
.y75{bottom:488.520000px;}
.y5f{bottom:488.700000px;}
.y6b{bottom:489.060000px;}
.y7c{bottom:490.680000px;}
.y84{bottom:491.040000px;}
.y61{bottom:494.100000px;}
.y7d{bottom:495.180000px;}
.y85{bottom:495.540000px;}
.y86{bottom:495.720000px;}
.y53{bottom:496.800000px;}
.y99{bottom:500.070000px;}
.ya4{bottom:500.505000px;}
.y52{bottom:502.740000px;}
.yad{bottom:503.070000px;}
.y12{bottom:509.580000px;}
.y65{bottom:510.120000px;}
.y71{bottom:516.420000px;}
.y10{bottom:516.600000px;}
.y69{bottom:516.960000px;}
.yac{bottom:517.470000px;}
.y6f{bottom:517.500000px;}
.y55{bottom:518.940000px;}
.y6d{bottom:520.920000px;}
.y5c{bottom:521.100000px;}
.y67{bottom:521.460000px;}
.ya3{bottom:522.105000px;}
.ya{bottom:522.900000px;}
.y78{bottom:523.080000px;}
.y83{bottom:523.440000px;}
.y79{bottom:523.980000px;}
.y7b{bottom:527.580000px;}
.yc{bottom:527.940000px;}
.yab{bottom:532.590000px;}
.ye{bottom:535.500000px;}
.ya2{bottom:537.225000px;}
.y98{bottom:537.870000px;}
.yaa{bottom:550.620000px;}
.y4{bottom:551.805000px;}
.y77{bottom:555.480000px;}
.y44{bottom:559.290000px;}
.y76{bottom:559.980000px;}
.y92{bottom:563.550000px;}
.y97{bottom:575.490000px;}
.y51{bottom:579.990000px;}
.y43{bottom:591.735000px;}
.y96{bottom:613.290000px;}
.y93{bottom:649.650000px;}
.y95{bottom:650.955000px;}
.y3f{bottom:674.565000px;}
.y8d{bottom:688.350000px;}
.y9e{bottom:716.835000px;}
.y8c{bottom:727.665000px;}
.y91{bottom:727.740000px;}
.h1f{height:1.800000px;}
.h1b{height:1.980000px;}
.h1e{height:2.160000px;}
.h36{height:8.100000px;}
.h2d{height:10.260000px;}
.hb{height:10.980000px;}
.h24{height:13.500000px;}
.h35{height:14.400000px;}
.h39{height:14.580000px;}
.ha{height:15.120000px;}
.h28{height:15.300000px;}
.h29{height:16.020000px;}
.h37{height:17.460000px;}
.h1a{height:18.000000px;}
.h20{height:18.540000px;}
.h38{height:18.720000px;}
.h2f{height:18.900000px;}
.h33{height:19.080000px;}
.h22{height:19.260000px;}
.h19{height:19.980000px;}
.h1d{height:20.160000px;}
.h12{height:21.060000px;}
.h13{height:21.240000px;}
.h21{height:21.420000px;}
.h17{height:21.600000px;}
.h25{height:22.140000px;}
.h32{height:22.320000px;}
.h34{height:23.400000px;}
.h23{height:23.760000px;}
.h30{height:24.480000px;}
.h31{height:24.660000px;}
.h2c{height:24.840000px;}
.h16{height:25.020000px;}
.h8{height:25.200000px;}
.h1c{height:26.280000px;}
.h15{height:26.460000px;}
.hd{height:28.080000px;}
.h10{height:29.700000px;}
.h11{height:35.100000px;}
.hf{height:36.720000px;}
.he{height:36.900000px;}
.h3c{height:42.759141px;}
.h3b{height:42.906586px;}
.h44{height:43.269961px;}
.h4b{height:43.552617px;}
.h3e{height:47.980898px;}
.h3a{height:48.844898px;}
.h4d{height:53.603086px;}
.h4a{height:53.953242px;}
.h4c{height:54.083250px;}
.h43{height:59.439023px;}
.h7{height:68.691797px;}
.h49{height:75.560977px;}
.h48{height:76.054570px;}
.h40{height:83.787539px;}
.h3{height:85.894102px;}
.h42{height:86.255508px;}
.h2{height:86.455195px;}
.h1{height:97.505859px;}
.h41{height:98.051133px;}
.h18{height:102.832031px;}
.h27{height:102.969141px;}
.h9{height:114.486328px;}
.h14{height:114.623437px;}
.h3f{height:119.594180px;}
.hc{height:128.195508px;}
.h47{height:130.007812px;}
.h2b{height:137.109375px;}
.h2a{height:137.246484px;}
.h3d{height:143.369789px;}
.h5{height:164.109375px;}
.h4{height:164.218781px;}
.h2e{height:167.632031px;}
.h45{height:182.161406px;}
.h46{height:182.270812px;}
.h26{height:205.801172px;}
.h6{height:214.839844px;}
.h0{height:810.000000px;}
.w31{width:4.860000px;}
.w5e{width:5.580000px;}
.w24{width:6.840000px;}
.w33{width:9.720000px;}
.w3d{width:12.780000px;}
.w1e{width:14.220000px;}
.w37{width:14.580000px;}
.w4{width:15.660000px;}
.w52{width:17.640000px;}
.w6d{width:17.820000px;}
.w10{width:18.720000px;}
.w65{width:22.500000px;}
.w5c{width:22.860000px;}
.w2d{width:24.120000px;}
.w28{width:25.200000px;}
.w47{width:26.460000px;}
.w69{width:27.000000px;}
.w40{width:27.360000px;}
.w3f{width:31.320000px;}
.w46{width:35.820000px;}
.w6{width:36.900000px;}
.w25{width:37.620000px;}
.w61{width:38.700000px;}
.w1a{width:42.120000px;}
.w54{width:42.300000px;}
.w1b{width:42.840000px;}
.w6e{width:43.200000px;}
.w39{width:48.060000px;}
.w42{width:50.760000px;}
.w45{width:50.940000px;}
.w59{width:51.120000px;}
.w1c{width:51.480000px;}
.w26{width:51.840000px;}
.w14{width:55.800000px;}
.w19{width:56.160000px;}
.w63{width:58.680000px;}
.w66{width:59.040000px;}
.wc{width:63.000000px;}
.w3{width:64.800000px;}
.w4c{width:70.740000px;}
.w44{width:75.240000px;}
.w3a{width:77.040000px;}
.w57{width:77.580000px;}
.w53{width:77.940000px;}
.w68{width:78.840000px;}
.w62{width:79.380000px;}
.w4e{width:80.460000px;}
.w2{width:81.180000px;}
.w5b{width:81.360000px;}
.w29{width:81.720000px;}
.wa{width:82.440000px;}
.w15{width:82.620000px;}
.w5a{width:82.800000px;}
.w3e{width:84.240000px;}
.w6a{width:86.760000px;}
.w67{width:89.100000px;}
.w2c{width:91.440000px;}
.w6b{width:91.800000px;}
.w20{width:93.960000px;}
.w5f{width:97.920000px;}
.w23{width:98.280000px;}
.w70{width:103.500000px;}
.w4f{width:103.680000px;}
.w41{width:105.840000px;}
.w58{width:107.460000px;}
.w51{width:107.640000px;}
.w8{width:109.440000px;}
.w43{width:109.800000px;}
.w6c{width:109.980000px;}
.w4b{width:110.520000px;}
.w3c{width:110.700000px;}
.w16{width:111.420000px;}
.w60{width:113.040000px;}
.w56{width:113.760000px;}
.w55{width:114.840000px;}
.w49{width:115.020000px;}
.w50{width:115.200000px;}
.w38{width:116.820000px;}
.w3b{width:117.540000px;}
.w27{width:118.260000px;}
.w7{width:119.520000px;}
.w64{width:124.920000px;}
.w5d{width:126.000000px;}
.wf{width:128.520000px;}
.wb{width:130.860000px;}
.w4a{width:131.220000px;}
.w21{width:138.240000px;}
.w2a{width:139.320000px;}
.w9{width:140.400000px;}
.w17{width:146.160000px;}
.w2e{width:149.760000px;}
.we{width:156.060000px;}
.w35{width:157.140000px;}
.w36{width:158.760000px;}
.w2f{width:164.340000px;}
.wd{width:169.020000px;}
.w12{width:174.780000px;}
.w1d{width:176.040000px;}
.w4d{width:179.640000px;}
.w18{width:186.120000px;}
.w11{width:186.300000px;}
.w34{width:192.600000px;}
.w22{width:194.040000px;}
.w6f{width:195.120000px;}
.w48{width:195.300000px;}
.w1f{width:214.020000px;}
.w13{width:217.260000px;}
.w5{width:243.180000px;}
.w32{width:280.980000px;}
.w30{width:366.300000px;}
.w2b{width:433.800000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.xa{left:-4.830000px;}
.x7{left:-2.484000px;}
.xd{left:-1.365000px;}
.x0{left:0.000000px;}
.x12{left:4.470000px;}
.x1d{left:43.380000px;}
.x2f{left:44.640000px;}
.x6{left:45.900000px;}
.x4{left:48.347979px;}
.xac{left:49.823979px;}
.x3{left:53.027979px;}
.xa3{left:56.627979px;}
.x3a{left:108.143979px;}
.x1e{left:109.620000px;}
.xa2{left:116.711979px;}
.x3b{left:122.687979px;}
.x58{left:125.280000px;}
.x8{left:135.540000px;}
.x30{left:144.540000px;}
.xaa{left:146.807979px;}
.x24{left:149.040000px;}
.x69{left:153.929979px;}
.x5b{left:157.709979px;}
.x21{left:160.560000px;}
.x49{left:163.469979px;}
.x1f{left:166.860000px;}
.x79{left:170.669979px;}
.x7a{left:172.109979px;}
.x31{left:175.860000px;}
.x3c{left:184.289979px;}
.x4a{left:198.029979px;}
.xab{left:200.804979px;}
.x22{left:213.300000px;}
.x4b{left:215.309979px;}
.x91{left:225.180000px;}
.x93{left:229.754979px;}
.x3e{left:234.899979px;}
.x47{left:237.600000px;}
.x3d{left:248.759979px;}
.x77{left:250.380000px;}
.x40{left:253.979979px;}
.x59{left:267.840000px;}
.xa4{left:271.439979px;}
.x41{left:299.159979px;}
.x3f{left:308.339979px;}
.x92{left:337.140000px;}
.x48{left:349.560000px;}
.x78{left:362.160000px;}
.x5a{left:379.620000px;}
.xa5{left:450.719979px;}
.x2{left:473.399979px;}
.x95{left:536.864979px;}
.x4d{left:540.254979px;}
.x5e{left:541.800000px;}
.x94{left:546.944979px;}
.x4c{left:550.334979px;}
.x54{left:574.740000px;}
.x65{left:582.840000px;}
.x20{left:603.900000px;}
.x34{left:611.640000px;}
.x9{left:613.800000px;}
.x43{left:624.240000px;}
.xb{left:627.840000px;}
.x4e{left:631.080000px;}
.x5f{left:632.520000px;}
.x66{left:641.700000px;}
.x44{left:644.760000px;}
.x13{left:647.100000px;}
.x5{left:661.319979px;}
.x4f{left:667.980000px;}
.x60{left:669.420000px;}
.x55{left:674.280000px;}
.x42{left:677.699979px;}
.xa0{left:679.140000px;}
.x46{left:681.300000px;}
.x99{left:685.260000px;}
.x9d{left:689.400000px;}
.x19{left:697.500000px;}
.x50{left:702.180000px;}
.x61{left:703.620000px;}
.x56{left:709.020000px;}
.xad{left:715.529979px;}
.xb0{left:716.969979px;}
.xae{left:727.559979px;}
.xa1{left:730.260000px;}
.x7d{left:759.240000px;}
.x45{left:766.980000px;}
.x32{left:769.860000px;}
.x9a{left:775.980000px;}
.x33{left:779.760000px;}
.x14{left:787.140000px;}
.x1{left:793.334979px;}
.x84{left:794.880000px;}
.x7e{left:797.220000px;}
.x25{left:798.840000px;}
.x9e{left:804.600000px;}
.x23{left:808.740000px;}
.x51{left:814.500000px;}
.x62{left:815.940000px;}
.x26{left:821.340000px;}
.x67{left:829.080000px;}
.x6d{left:830.880000px;}
.xa9{left:832.349979px;}
.x8b{left:835.020000px;}
.x15{left:857.520000px;}
.x52{left:872.460000px;}
.x63{left:873.900000px;}
.x9b{left:880.380000px;}
.xc{left:882.720000px;}
.x72{left:883.800000px;}
.x1a{left:892.620000px;}
.x35{left:899.460000px;}
.x6b{left:901.409979px;}
.x97{left:903.029979px;}
.x7b{left:905.144979px;}
.x6a{left:906.629979px;}
.x5c{left:910.544979px;}
.x57{left:912.060000px;}
.x68{left:916.020000px;}
.x85{left:919.080000px;}
.x36{left:920.700000px;}
.x27{left:922.500000px;}
.xe{left:925.020000px;}
.x7c{left:927.104979px;}
.x28{left:931.320000px;}
.x37{left:934.380000px;}
.x98{left:941.549979px;}
.x96{left:944.789979px;}
.x6c{left:951.839979px;}
.x6e{left:958.500000px;}
.x29{left:970.200000px;}
.xa7{left:972.179979px;}
.x9c{left:976.860000px;}
.x2a{left:979.200000px;}
.x8c{left:981.000000px;}
.x5d{left:982.229979px;}
.x53{left:986.940000px;}
.x64{left:990.000000px;}
.x7f{left:996.480000px;}
.x73{left:999.180000px;}
.x9f{left:1006.920000px;}
.x74{left:1023.840000px;}
.x2b{left:1033.200000px;}
.x16{left:1035.720000px;}
.x86{left:1038.420000px;}
.x2c{left:1043.100000px;}
.x8d{left:1046.520000px;}
.xf{left:1053.540000px;}
.x1b{left:1078.020000px;}
.x6f{left:1081.260000px;}
.x87{left:1085.220000px;}
.xaf{left:1102.109979px;}
.x75{left:1107.720000px;}
.x80{left:1117.800000px;}
.x38{left:1129.500000px;}
.x8e{left:1131.300000px;}
.x76{left:1157.940000px;}
.x2d{left:1163.340000px;}
.x39{left:1167.449979px;}
.x88{left:1170.180000px;}
.x2e{left:1171.800000px;}
.x10{left:1173.060000px;}
.x81{left:1176.840000px;}
.x70{left:1193.580000px;}
.x17{left:1202.760000px;}
.xa8{left:1223.354979px;}
.x8f{left:1226.520000px;}
.x89{left:1229.400000px;}
.x71{left:1250.820000px;}
.x82{left:1264.860000px;}
.xa6{left:1276.889979px;}
.x1c{left:1298.160000px;}
.x90{left:1312.740000px;}
.x8a{left:1315.080000px;}
.x11{left:1316.880000px;}
.x18{left:1342.980000px;}
.x83{left:1352.520000px;}
@media print{
.v1{vertical-align:-1.408000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:57.600000pt;}
.ls12{letter-spacing:-1.189333pt;}
.lsa{letter-spacing:-0.864000pt;}
.ls4{letter-spacing:-0.725333pt;}
.ls3{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.511467pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.352000pt;}
.ls17{letter-spacing:-0.324800pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.259733pt;}
.ls11{letter-spacing:-0.224000pt;}
.lsc{letter-spacing:-0.162667pt;}
.ls22{letter-spacing:-0.161067pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:-0.032000pt;}
.ls6{letter-spacing:-0.004485pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.019840pt;}
.ls13{letter-spacing:0.032000pt;}
.ls1c{letter-spacing:0.053867pt;}
.ls1b{letter-spacing:0.089600pt;}
.ls7{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.128533pt;}
.ls10{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.213333pt;}
.ls23{letter-spacing:0.230933pt;}
.ls21{letter-spacing:0.239467pt;}
.ls19{letter-spacing:0.245867pt;}
.ls20{letter-spacing:19.806720pt;}
.ls1f{letter-spacing:20.446720pt;}
.ls0{letter-spacing:23.713280pt;}
.ls1{letter-spacing:24.353280pt;}
.ls8{letter-spacing:41.386923pt;}
.ls1e{letter-spacing:79.210880pt;}
.ls1d{letter-spacing:86.014293pt;}
.ws6{word-spacing:-43.420928pt;}
.ws2{word-spacing:-33.701120pt;}
.ws16{word-spacing:-28.956928pt;}
.ws14{word-spacing:-28.928000pt;}
.ws3{word-spacing:-24.183808pt;}
.ws1{word-spacing:-24.154880pt;}
.ws13{word-spacing:-21.724928pt;}
.ws4{word-spacing:-21.696000pt;}
.ws22{word-spacing:-16.922880pt;}
.ws23{word-spacing:-12.094720pt;}
.ws24{word-spacing:-12.005120pt;}
.ws25{word-spacing:-11.920640pt;}
.ws1f{word-spacing:-8.129387pt;}
.ws1e{word-spacing:-8.093248pt;}
.ws7{word-spacing:-5.153536pt;}
.ws12{word-spacing:-3.168000pt;}
.ws1b{word-spacing:-3.072000pt;}
.ws19{word-spacing:-2.624000pt;}
.wsf{word-spacing:-2.496000pt;}
.ws18{word-spacing:-2.400000pt;}
.ws1a{word-spacing:-1.792000pt;}
.ws28{word-spacing:-1.616000pt;}
.ws15{word-spacing:-1.568000pt;}
.ws17{word-spacing:-1.501888pt;}
.wsd{word-spacing:-1.237333pt;}
.ws29{word-spacing:-1.064320pt;}
.ws1c{word-spacing:-0.853120pt;}
.ws21{word-spacing:-0.790400pt;}
.wse{word-spacing:-0.736000pt;}
.ws11{word-spacing:-0.608000pt;}
.ws8{word-spacing:-0.512000pt;}
.ws26{word-spacing:-0.276693pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:0.352000pt;}
.ws27{word-spacing:0.392960pt;}
.wsc{word-spacing:0.448000pt;}
.wsa{word-spacing:0.864000pt;}
.ws10{word-spacing:0.896000pt;}
.ws20{word-spacing:1.594880pt;}
.wsb{word-spacing:1.696000pt;}
.ws5{word-spacing:517.565312pt;}
.ws1d{word-spacing:617.105280pt;}
._15{margin-left:-576.122240pt;}
._9{margin-left:-15.319168pt;}
._6{margin-left:-9.661013pt;}
._a{margin-left:-8.752000pt;}
._d{margin-left:-7.605333pt;}
._4{margin-left:-5.703040pt;}
._b{margin-left:-4.599339pt;}
._0{margin-left:-3.552000pt;}
._2{margin-left:-2.042880pt;}
._5{margin-left:-1.106560pt;}
._1{width:1.152000pt;}
._10{width:2.096000pt;}
._3{width:3.149440pt;}
._f{width:8.960000pt;}
._18{width:12.555520pt;}
._19{width:13.656960pt;}
._14{width:18.132309pt;}
._11{width:19.222272pt;}
._12{width:20.168320pt;}
._c{width:22.197333pt;}
._e{width:23.438933pt;}
._17{width:35.995947pt;}
._7{width:63.009067pt;}
._16{width:468.002560pt;}
._13{width:488.540203pt;}
._8{width:2205.311445pt;}
.fse{font-size:37.120000pt;}
.fsd{font-size:37.248000pt;}
.fsc{font-size:42.880000pt;}
.fs10{font-size:53.120000pt;}
.fs13{font-size:53.248000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:64.128000pt;}
.fsf{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs0{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fs6{font-size:106.880000pt;}
.fs8{font-size:107.008000pt;}
.fsb{font-size:128.000000pt;}
.fsa{font-size:128.128000pt;}
.fs7{font-size:149.120000pt;}
.fs3{font-size:192.000000pt;}
.fs2{font-size:192.128000pt;}
.fs11{font-size:213.120000pt;}
.fs12{font-size:213.248000pt;}
.yf{bottom:-16.293333pt;}
.y56{bottom:-13.600000pt;}
.y66{bottom:-13.533333pt;}
.y3b{bottom:-5.888000pt;}
.y27{bottom:-5.760000pt;}
.y2c{bottom:-5.280000pt;}
.y34{bottom:-5.248000pt;}
.y4c{bottom:-0.186667pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:0.320000pt;}
.yd{bottom:0.346667pt;}
.y31{bottom:0.352000pt;}
.y11{bottom:0.506667pt;}
.y74{bottom:0.613333pt;}
.y5d{bottom:0.666667pt;}
.y62{bottom:0.706667pt;}
.y68{bottom:0.733333pt;}
.y6e{bottom:0.773333pt;}
.y41{bottom:0.800000pt;}
.y4f{bottom:1.413333pt;}
.y3e{bottom:2.912000pt;}
.y23{bottom:3.520000pt;}
.y21{bottom:3.546667pt;}
.y70{bottom:3.813333pt;}
.y7a{bottom:3.866667pt;}
.y38{bottom:4.192000pt;}
.y36{bottom:4.352000pt;}
.y5e{bottom:4.666667pt;}
.y6a{bottom:4.733333pt;}
.y72{bottom:4.773333pt;}
.yb{bottom:4.826667pt;}
.y1d{bottom:4.960000pt;}
.y1b{bottom:4.986667pt;}
.y4d{bottom:5.413333pt;}
.y54{bottom:6.080000pt;}
.y64{bottom:6.146667pt;}
.y13{bottom:6.746667pt;}
.y9{bottom:31.264000pt;}
.y89{bottom:32.096000pt;}
.y8e{bottom:32.288000pt;}
.y8b{bottom:52.608000pt;}
.y8a{bottom:62.720000pt;}
.y39{bottom:78.400000pt;}
.y37{bottom:78.560000pt;}
.y3d{bottom:79.840000pt;}
.y3c{bottom:82.400000pt;}
.y3a{bottom:88.640000pt;}
.y90{bottom:95.872000pt;}
.y35{bottom:107.200000pt;}
.y30{bottom:108.640000pt;}
.y32{bottom:111.200000pt;}
.y33{bottom:116.800000pt;}
.y8{bottom:136.773333pt;}
.ya1{bottom:137.760000pt;}
.y8f{bottom:139.426667pt;}
.y3{bottom:149.280000pt;}
.y2d{bottom:151.840000pt;}
.y94{bottom:155.040000pt;}
.y2e{bottom:156.320000pt;}
.y2f{bottom:158.880000pt;}
.ya0{bottom:160.160000pt;}
.y2{bottom:174.880000pt;}
.y50{bottom:176.320000pt;}
.y9f{bottom:183.040000pt;}
.y49{bottom:186.693333pt;}
.y42{bottom:187.200000pt;}
.y7{bottom:194.853333pt;}
.y28{bottom:199.360000pt;}
.y1{bottom:201.120000pt;}
.y4e{bottom:205.120000pt;}
.y29{bottom:206.560000pt;}
.y4b{bottom:206.720000pt;}
.y2b{bottom:212.160000pt;}
.y2a{bottom:212.640000pt;}
.y48{bottom:215.520000pt;}
.y40{bottom:251.200000pt;}
.y24{bottom:251.680000pt;}
.y82{bottom:252.186667pt;}
.y6{bottom:252.480000pt;}
.y25{bottom:254.240000pt;}
.y26{bottom:260.320000pt;}
.y7f{bottom:266.586667pt;}
.y47{bottom:279.106667pt;}
.y81{bottom:280.986667pt;}
.y1c{bottom:288.640000pt;}
.y1e{bottom:293.280000pt;}
.y9d{bottom:293.693333pt;}
.y7e{bottom:295.386667pt;}
.y22{bottom:295.840000pt;}
.y4a{bottom:303.546667pt;}
.y46{bottom:307.906667pt;}
.y80{bottom:309.786667pt;}
.y59{bottom:309.986667pt;}
.y1a{bottom:320.640000pt;}
.y5b{bottom:324.386667pt;}
.y20{bottom:324.640000pt;}
.y19{bottom:325.280000pt;}
.y58{bottom:338.786667pt;}
.y9c{bottom:348.413333pt;}
.y5a{bottom:353.186667pt;}
.yb3{bottom:358.053333pt;}
.y17{bottom:363.360000pt;}
.y57{bottom:367.613333pt;}
.y16{bottom:369.600000pt;}
.yb2{bottom:370.373333pt;}
.ya9{bottom:374.013333pt;}
.y9a{bottom:377.440000pt;}
.yb1{bottom:383.173333pt;}
.y18{bottom:386.400000pt;}
.y45{bottom:386.880000pt;}
.ya8{bottom:387.293333pt;}
.yb0{bottom:395.973333pt;}
.ya7{bottom:400.093333pt;}
.y9b{bottom:406.013333pt;}
.y88{bottom:407.680000pt;}
.y14{bottom:408.160000pt;}
.yaf{bottom:408.773333pt;}
.y87{bottom:411.680000pt;}
.ya6{bottom:412.893333pt;}
.y15{bottom:414.400000pt;}
.yae{bottom:421.573333pt;}
.ya5{bottom:425.693333pt;}
.y73{bottom:430.240000pt;}
.y60{bottom:430.400000pt;}
.y6c{bottom:430.720000pt;}
.y5{bottom:432.866667pt;}
.y63{bottom:433.760000pt;}
.y75{bottom:434.240000pt;}
.y5f{bottom:434.400000pt;}
.y6b{bottom:434.720000pt;}
.y7c{bottom:436.160000pt;}
.y84{bottom:436.480000pt;}
.y61{bottom:439.200000pt;}
.y7d{bottom:440.160000pt;}
.y85{bottom:440.480000pt;}
.y86{bottom:440.640000pt;}
.y53{bottom:441.600000pt;}
.y99{bottom:444.506667pt;}
.ya4{bottom:444.893333pt;}
.y52{bottom:446.880000pt;}
.yad{bottom:447.173333pt;}
.y12{bottom:452.960000pt;}
.y65{bottom:453.440000pt;}
.y71{bottom:459.040000pt;}
.y10{bottom:459.200000pt;}
.y69{bottom:459.520000pt;}
.yac{bottom:459.973333pt;}
.y6f{bottom:460.000000pt;}
.y55{bottom:461.280000pt;}
.y6d{bottom:463.040000pt;}
.y5c{bottom:463.200000pt;}
.y67{bottom:463.520000pt;}
.ya3{bottom:464.093333pt;}
.ya{bottom:464.800000pt;}
.y78{bottom:464.960000pt;}
.y83{bottom:465.280000pt;}
.y79{bottom:465.760000pt;}
.y7b{bottom:468.960000pt;}
.yc{bottom:469.280000pt;}
.yab{bottom:473.413333pt;}
.ye{bottom:476.000000pt;}
.ya2{bottom:477.533333pt;}
.y98{bottom:478.106667pt;}
.yaa{bottom:489.440000pt;}
.y4{bottom:490.493333pt;}
.y77{bottom:493.760000pt;}
.y44{bottom:497.146667pt;}
.y76{bottom:497.760000pt;}
.y92{bottom:500.933333pt;}
.y97{bottom:511.546667pt;}
.y51{bottom:515.546667pt;}
.y43{bottom:525.986667pt;}
.y96{bottom:545.146667pt;}
.y93{bottom:577.466667pt;}
.y95{bottom:578.626667pt;}
.y3f{bottom:599.613333pt;}
.y8d{bottom:611.866667pt;}
.y9e{bottom:637.186667pt;}
.y8c{bottom:646.813333pt;}
.y91{bottom:646.880000pt;}
.h1f{height:1.600000pt;}
.h1b{height:1.760000pt;}
.h1e{height:1.920000pt;}
.h36{height:7.200000pt;}
.h2d{height:9.120000pt;}
.hb{height:9.760000pt;}
.h24{height:12.000000pt;}
.h35{height:12.800000pt;}
.h39{height:12.960000pt;}
.ha{height:13.440000pt;}
.h28{height:13.600000pt;}
.h29{height:14.240000pt;}
.h37{height:15.520000pt;}
.h1a{height:16.000000pt;}
.h20{height:16.480000pt;}
.h38{height:16.640000pt;}
.h2f{height:16.800000pt;}
.h33{height:16.960000pt;}
.h22{height:17.120000pt;}
.h19{height:17.760000pt;}
.h1d{height:17.920000pt;}
.h12{height:18.720000pt;}
.h13{height:18.880000pt;}
.h21{height:19.040000pt;}
.h17{height:19.200000pt;}
.h25{height:19.680000pt;}
.h32{height:19.840000pt;}
.h34{height:20.800000pt;}
.h23{height:21.120000pt;}
.h30{height:21.760000pt;}
.h31{height:21.920000pt;}
.h2c{height:22.080000pt;}
.h16{height:22.240000pt;}
.h8{height:22.400000pt;}
.h1c{height:23.360000pt;}
.h15{height:23.520000pt;}
.hd{height:24.960000pt;}
.h10{height:26.400000pt;}
.h11{height:31.200000pt;}
.hf{height:32.640000pt;}
.he{height:32.800000pt;}
.h3c{height:38.008125pt;}
.h3b{height:38.139187pt;}
.h44{height:38.462187pt;}
.h4b{height:38.713437pt;}
.h3e{height:42.649687pt;}
.h3a{height:43.417687pt;}
.h4d{height:47.647188pt;}
.h4a{height:47.958438pt;}
.h4c{height:48.074000pt;}
.h43{height:52.834688pt;}
.h7{height:61.059375pt;}
.h49{height:67.165312pt;}
.h48{height:67.604062pt;}
.h40{height:74.477812pt;}
.h3{height:76.350312pt;}
.h42{height:76.671562pt;}
.h2{height:76.849063pt;}
.h1{height:86.671875pt;}
.h41{height:87.156562pt;}
.h18{height:91.406250pt;}
.h27{height:91.528125pt;}
.h9{height:101.765625pt;}
.h14{height:101.887500pt;}
.h3f{height:106.305937pt;}
.hc{height:113.951562pt;}
.h47{height:115.562500pt;}
.h2b{height:121.875000pt;}
.h2a{height:121.996875pt;}
.h3d{height:127.439813pt;}
.h5{height:145.875000pt;}
.h4{height:145.972250pt;}
.h2e{height:149.006250pt;}
.h45{height:161.921250pt;}
.h46{height:162.018500pt;}
.h26{height:182.934375pt;}
.h6{height:190.968750pt;}
.h0{height:720.000000pt;}
.w31{width:4.320000pt;}
.w5e{width:4.960000pt;}
.w24{width:6.080000pt;}
.w33{width:8.640000pt;}
.w3d{width:11.360000pt;}
.w1e{width:12.640000pt;}
.w37{width:12.960000pt;}
.w4{width:13.920000pt;}
.w52{width:15.680000pt;}
.w6d{width:15.840000pt;}
.w10{width:16.640000pt;}
.w65{width:20.000000pt;}
.w5c{width:20.320000pt;}
.w2d{width:21.440000pt;}
.w28{width:22.400000pt;}
.w47{width:23.520000pt;}
.w69{width:24.000000pt;}
.w40{width:24.320000pt;}
.w3f{width:27.840000pt;}
.w46{width:31.840000pt;}
.w6{width:32.800000pt;}
.w25{width:33.440000pt;}
.w61{width:34.400000pt;}
.w1a{width:37.440000pt;}
.w54{width:37.600000pt;}
.w1b{width:38.080000pt;}
.w6e{width:38.400000pt;}
.w39{width:42.720000pt;}
.w42{width:45.120000pt;}
.w45{width:45.280000pt;}
.w59{width:45.440000pt;}
.w1c{width:45.760000pt;}
.w26{width:46.080000pt;}
.w14{width:49.600000pt;}
.w19{width:49.920000pt;}
.w63{width:52.160000pt;}
.w66{width:52.480000pt;}
.wc{width:56.000000pt;}
.w3{width:57.600000pt;}
.w4c{width:62.880000pt;}
.w44{width:66.880000pt;}
.w3a{width:68.480000pt;}
.w57{width:68.960000pt;}
.w53{width:69.280000pt;}
.w68{width:70.080000pt;}
.w62{width:70.560000pt;}
.w4e{width:71.520000pt;}
.w2{width:72.160000pt;}
.w5b{width:72.320000pt;}
.w29{width:72.640000pt;}
.wa{width:73.280000pt;}
.w15{width:73.440000pt;}
.w5a{width:73.600000pt;}
.w3e{width:74.880000pt;}
.w6a{width:77.120000pt;}
.w67{width:79.200000pt;}
.w2c{width:81.280000pt;}
.w6b{width:81.600000pt;}
.w20{width:83.520000pt;}
.w5f{width:87.040000pt;}
.w23{width:87.360000pt;}
.w70{width:92.000000pt;}
.w4f{width:92.160000pt;}
.w41{width:94.080000pt;}
.w58{width:95.520000pt;}
.w51{width:95.680000pt;}
.w8{width:97.280000pt;}
.w43{width:97.600000pt;}
.w6c{width:97.760000pt;}
.w4b{width:98.240000pt;}
.w3c{width:98.400000pt;}
.w16{width:99.040000pt;}
.w60{width:100.480000pt;}
.w56{width:101.120000pt;}
.w55{width:102.080000pt;}
.w49{width:102.240000pt;}
.w50{width:102.400000pt;}
.w38{width:103.840000pt;}
.w3b{width:104.480000pt;}
.w27{width:105.120000pt;}
.w7{width:106.240000pt;}
.w64{width:111.040000pt;}
.w5d{width:112.000000pt;}
.wf{width:114.240000pt;}
.wb{width:116.320000pt;}
.w4a{width:116.640000pt;}
.w21{width:122.880000pt;}
.w2a{width:123.840000pt;}
.w9{width:124.800000pt;}
.w17{width:129.920000pt;}
.w2e{width:133.120000pt;}
.we{width:138.720000pt;}
.w35{width:139.680000pt;}
.w36{width:141.120000pt;}
.w2f{width:146.080000pt;}
.wd{width:150.240000pt;}
.w12{width:155.360000pt;}
.w1d{width:156.480000pt;}
.w4d{width:159.680000pt;}
.w18{width:165.440000pt;}
.w11{width:165.600000pt;}
.w34{width:171.200000pt;}
.w22{width:172.480000pt;}
.w6f{width:173.440000pt;}
.w48{width:173.600000pt;}
.w1f{width:190.240000pt;}
.w13{width:193.120000pt;}
.w5{width:216.160000pt;}
.w32{width:249.760000pt;}
.w30{width:325.600000pt;}
.w2b{width:385.600000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.xa{left:-4.293333pt;}
.x7{left:-2.208000pt;}
.xd{left:-1.213333pt;}
.x0{left:0.000000pt;}
.x12{left:3.973333pt;}
.x1d{left:38.560000pt;}
.x2f{left:39.680000pt;}
.x6{left:40.800000pt;}
.x4{left:42.975981pt;}
.xac{left:44.287981pt;}
.x3{left:47.135981pt;}
.xa3{left:50.335981pt;}
.x3a{left:96.127981pt;}
.x1e{left:97.440000pt;}
.xa2{left:103.743981pt;}
.x3b{left:109.055981pt;}
.x58{left:111.360000pt;}
.x8{left:120.480000pt;}
.x30{left:128.480000pt;}
.xaa{left:130.495981pt;}
.x24{left:132.480000pt;}
.x69{left:136.826648pt;}
.x5b{left:140.186648pt;}
.x21{left:142.720000pt;}
.x49{left:145.306648pt;}
.x1f{left:148.320000pt;}
.x79{left:151.706648pt;}
.x7a{left:152.986648pt;}
.x31{left:156.320000pt;}
.x3c{left:163.813314pt;}
.x4a{left:176.026648pt;}
.xab{left:178.493314pt;}
.x22{left:189.600000pt;}
.x4b{left:191.386648pt;}
.x91{left:200.160000pt;}
.x93{left:204.226648pt;}
.x3e{left:208.799981pt;}
.x47{left:211.200000pt;}
.x3d{left:221.119981pt;}
.x77{left:222.560000pt;}
.x40{left:225.759981pt;}
.x59{left:238.080000pt;}
.xa4{left:241.279981pt;}
.x41{left:265.919981pt;}
.x3f{left:274.079981pt;}
.x92{left:299.680000pt;}
.x48{left:310.720000pt;}
.x78{left:321.920000pt;}
.x5a{left:337.440000pt;}
.xa5{left:400.639981pt;}
.x2{left:420.799981pt;}
.x95{left:477.213314pt;}
.x4d{left:480.226648pt;}
.x5e{left:481.600000pt;}
.x94{left:486.173314pt;}
.x4c{left:489.186648pt;}
.x54{left:510.880000pt;}
.x65{left:518.080000pt;}
.x20{left:536.800000pt;}
.x34{left:543.680000pt;}
.x9{left:545.600000pt;}
.x43{left:554.880000pt;}
.xb{left:558.080000pt;}
.x4e{left:560.960000pt;}
.x5f{left:562.240000pt;}
.x66{left:570.400000pt;}
.x44{left:573.120000pt;}
.x13{left:575.200000pt;}
.x5{left:587.839981pt;}
.x4f{left:593.760000pt;}
.x60{left:595.040000pt;}
.x55{left:599.360000pt;}
.x42{left:602.399981pt;}
.xa0{left:603.680000pt;}
.x46{left:605.600000pt;}
.x99{left:609.120000pt;}
.x9d{left:612.800000pt;}
.x19{left:620.000000pt;}
.x50{left:624.160000pt;}
.x61{left:625.440000pt;}
.x56{left:630.240000pt;}
.xad{left:636.026648pt;}
.xb0{left:637.306648pt;}
.xae{left:646.719981pt;}
.xa1{left:649.120000pt;}
.x7d{left:674.880000pt;}
.x45{left:681.760000pt;}
.x32{left:684.320000pt;}
.x9a{left:689.760000pt;}
.x33{left:693.120000pt;}
.x14{left:699.680000pt;}
.x1{left:705.186648pt;}
.x84{left:706.560000pt;}
.x7e{left:708.640000pt;}
.x25{left:710.080000pt;}
.x9e{left:715.200000pt;}
.x23{left:718.880000pt;}
.x51{left:724.000000pt;}
.x62{left:725.280000pt;}
.x26{left:730.080000pt;}
.x67{left:736.960000pt;}
.x6d{left:738.560000pt;}
.xa9{left:739.866648pt;}
.x8b{left:742.240000pt;}
.x15{left:762.240000pt;}
.x52{left:775.520000pt;}
.x63{left:776.800000pt;}
.x9b{left:782.560000pt;}
.xc{left:784.640000pt;}
.x72{left:785.600000pt;}
.x1a{left:793.440000pt;}
.x35{left:799.520000pt;}
.x6b{left:801.253314pt;}
.x97{left:802.693314pt;}
.x7b{left:804.573314pt;}
.x6a{left:805.893314pt;}
.x5c{left:809.373314pt;}
.x57{left:810.720000pt;}
.x68{left:814.240000pt;}
.x85{left:816.960000pt;}
.x36{left:818.400000pt;}
.x27{left:820.000000pt;}
.xe{left:822.240000pt;}
.x7c{left:824.093314pt;}
.x28{left:827.840000pt;}
.x37{left:830.560000pt;}
.x98{left:836.933314pt;}
.x96{left:839.813314pt;}
.x6c{left:846.079981pt;}
.x6e{left:852.000000pt;}
.x29{left:862.400000pt;}
.xa7{left:864.159981pt;}
.x9c{left:868.320000pt;}
.x2a{left:870.400000pt;}
.x8c{left:872.000000pt;}
.x5d{left:873.093314pt;}
.x53{left:877.280000pt;}
.x64{left:880.000000pt;}
.x7f{left:885.760000pt;}
.x73{left:888.160000pt;}
.x9f{left:895.040000pt;}
.x74{left:910.080000pt;}
.x2b{left:918.400000pt;}
.x16{left:920.640000pt;}
.x86{left:923.040000pt;}
.x2c{left:927.200000pt;}
.x8d{left:930.240000pt;}
.xf{left:936.480000pt;}
.x1b{left:958.240000pt;}
.x6f{left:961.120000pt;}
.x87{left:964.640000pt;}
.xaf{left:979.653314pt;}
.x75{left:984.640000pt;}
.x80{left:993.600000pt;}
.x38{left:1004.000000pt;}
.x8e{left:1005.600000pt;}
.x76{left:1029.280000pt;}
.x2d{left:1034.080000pt;}
.x39{left:1037.733314pt;}
.x88{left:1040.160000pt;}
.x2e{left:1041.600000pt;}
.x10{left:1042.720000pt;}
.x81{left:1046.080000pt;}
.x70{left:1060.960000pt;}
.x17{left:1069.120000pt;}
.xa8{left:1087.426648pt;}
.x8f{left:1090.240000pt;}
.x89{left:1092.800000pt;}
.x71{left:1111.840000pt;}
.x82{left:1124.320000pt;}
.xa6{left:1135.013314pt;}
.x1c{left:1153.920000pt;}
.x90{left:1166.880000pt;}
.x8a{left:1168.960000pt;}
.x11{left:1170.560000pt;}
.x18{left:1193.760000pt;}
.x83{left:1202.240000pt;}
}




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