
    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_20082871d8e8bb65d500a815.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_2b97ec00a1ba53a16208d92d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_0ec647bce167d20e4a4a4eab.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_02c8008a8adbcd7061876b9c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_99166fc800c80586aa89802f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.338867;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_e43e04f7e22e664ea50020ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.347656;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_e91d7f6d348e74d42dd4076d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.864258;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_e1fe9a9142df829a89db7d49.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.338867;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_92d8444d9be4b7052b35cdf4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.975586;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_65d1d6d4815228e224d87a53.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.801000;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_eeee1ec407f66ccfdb457de4.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.440000px;}
.v1{vertical-align:18.000000px;}
.ls4a{letter-spacing:-19.920000px;}
.ls36{letter-spacing:-10.320000px;}
.lsa{letter-spacing:-2.556000px;}
.ls4c{letter-spacing:-1.410362px;}
.lsc{letter-spacing:-1.338000px;}
.ls11{letter-spacing:-1.062000px;}
.ls12{letter-spacing:-0.918000px;}
.ls31{letter-spacing:-0.750000px;}
.ls3e{letter-spacing:-0.530400px;}
.lse{letter-spacing:-0.460800px;}
.ls4b{letter-spacing:-0.387691px;}
.lsf{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.355200px;}
.ls37{letter-spacing:-0.313800px;}
.ls46{letter-spacing:-0.306000px;}
.ls9{letter-spacing:-0.269400px;}
.ls35{letter-spacing:-0.264000px;}
.ls4d{letter-spacing:-0.223800px;}
.ls10{letter-spacing:-0.198000px;}
.ls32{letter-spacing:-0.172800px;}
.ls33{letter-spacing:-0.081600px;}
.lsd{letter-spacing:-0.007920px;}
.ls8{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.015840px;}
.ls4{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.025920px;}
.ls14{letter-spacing:0.066240px;}
.ls13{letter-spacing:0.071400px;}
.ls3d{letter-spacing:0.072480px;}
.ls27{letter-spacing:0.109920px;}
.ls42{letter-spacing:0.119520px;}
.ls17{letter-spacing:0.141000px;}
.ls5{letter-spacing:0.169920px;}
.ls49{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.185760px;}
.ls1e{letter-spacing:0.189360px;}
.ls19{letter-spacing:0.189600px;}
.ls44{letter-spacing:0.198000px;}
.ls21{letter-spacing:0.199440px;}
.ls26{letter-spacing:0.239040px;}
.ls7{letter-spacing:0.249600px;}
.ls1c{letter-spacing:0.256200px;}
.ls2d{letter-spacing:0.272400px;}
.ls18{letter-spacing:0.305760px;}
.ls2c{letter-spacing:0.327600px;}
.ls30{letter-spacing:0.331920px;}
.ls2f{letter-spacing:0.342000px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.364800px;}
.ls20{letter-spacing:0.379440px;}
.ls40{letter-spacing:0.576000px;}
.ls47{letter-spacing:0.712080px;}
.ls2{letter-spacing:0.905760px;}
.ls38{letter-spacing:0.912000px;}
.ls3a{letter-spacing:1.506240px;}
.ls1d{letter-spacing:1.625760px;}
.ls16{letter-spacing:3.065760px;}
.ls1f{letter-spacing:3.785760px;}
.ls22{letter-spacing:4.505760px;}
.ls3f{letter-spacing:5.826240px;}
.ls3c{letter-spacing:6.665760px;}
.ls43{letter-spacing:7.266240px;}
.ls2e{letter-spacing:8.105760px;}
.ls3b{letter-spacing:10.800000px;}
.ls25{letter-spacing:10.985760px;}
.ls29{letter-spacing:11.705760px;}
.ls28{letter-spacing:13.865760px;}
.ls2b{letter-spacing:19.625760px;}
.ls24{letter-spacing:22.505760px;}
.ls41{letter-spacing:35.526240px;}
.ls6{letter-spacing:37.386720px;}
.ls3{letter-spacing:41.868000px;}
.ls39{letter-spacing:46.026720px;}
.ls45{letter-spacing:51.948000px;}
.ls23{letter-spacing:64.026720px;}
.ls48{letter-spacing:64.170720px;}
.ls2a{letter-spacing:66.186720px;}
.ls1{letter-spacing:1068.780000px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{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);}
.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,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1c{word-spacing:-59.760000px;}
.ws8{word-spacing:-54.000000px;}
.ws29{word-spacing:-48.240000px;}
.ws3{word-spacing:-18.149760px;}
.ws24{word-spacing:-16.691760px;}
.ws12{word-spacing:-16.563840px;}
.ws1a{word-spacing:-16.563600px;}
.ws23{word-spacing:-16.493760px;}
.ws11{word-spacing:-16.374240px;}
.ws21{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws25{word-spacing:-14.490000px;}
.ws22{word-spacing:-13.656240px;}
.wsc{word-spacing:-13.518000px;}
.wsa{word-spacing:-13.500000px;}
.ws13{word-spacing:-13.314240px;}
.ws9{word-spacing:-13.140000px;}
.ws1b{word-spacing:-13.136160px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.790600px;}
.ws1f{word-spacing:-0.387360px;}
.ws20{word-spacing:-0.332160px;}
.wsf{word-spacing:-0.309360px;}
.ws16{word-spacing:-0.304440px;}
.ws14{word-spacing:-0.200760px;}
.wse{word-spacing:-0.131160px;}
.ws1d{word-spacing:-0.075600px;}
.ws4{word-spacing:-0.066240px;}
.ws6{word-spacing:-0.059760px;}
.ws15{word-spacing:-0.048240px;}
.ws10{word-spacing:0.000000px;}
.ws19{word-spacing:0.124560px;}
.ws1e{word-spacing:0.204240px;}
.ws27{word-spacing:0.324699px;}
.ws17{word-spacing:0.701760px;}
.wsb{word-spacing:1.008000px;}
.ws7{word-spacing:1.278240px;}
.ws28{word-spacing:1.347370px;}
.ws2{word-spacing:2.448000px;}
.ws18{word-spacing:15.726240px;}
.wsd{word-spacing:20.019600px;}
.ws26{word-spacing:59.967360px;}
._9{margin-left:-22.901040px;}
._10{margin-left:-20.116800px;}
._c{margin-left:-18.981360px;}
._1f{margin-left:-15.726240px;}
._f{margin-left:-11.832480px;}
._12{margin-left:-10.575120px;}
._25{margin-left:-9.529440px;}
._5{margin-left:-7.560000px;}
._19{margin-left:-6.447120px;}
._15{margin-left:-4.488480px;}
._20{margin-left:-3.325440px;}
._8{margin-left:-2.233440px;}
._4{margin-left:-1.074240px;}
._1{width:1.135440px;}
._b{width:2.450160px;}
._e{width:3.677520px;}
._7{width:5.052000px;}
._1d{width:6.098520px;}
._6{width:7.128000px;}
._17{width:8.493360px;}
._18{width:9.588720px;}
._13{width:10.859760px;}
._1a{width:12.774960px;}
._24{width:13.870320px;}
._16{width:15.125280px;}
._14{width:16.374240px;}
._1e{width:18.264000px;}
._d{width:19.362240px;}
._11{width:20.609280px;}
._a{width:22.256640px;}
._23{width:23.444880px;}
._27{width:25.039440px;}
._22{width:26.141520px;}
._21{width:27.204480px;}
._1c{width:30.731280px;}
._1b{width:31.852080px;}
._2a{width:33.286800px;}
._28{width:35.497440px;}
._29{width:36.930000px;}
._2b{width:40.556880px;}
._26{width:53.567280px;}
._3{width:131.442960px;}
._2{width:342.981120px;}
._0{width:2857.020000px;}
.fc4{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(238,0,0);}
.fs4{font-size:30.240000px;}
.fs3{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs8{font-size:62.991941px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.y4a{bottom:2.556000px;}
.y39{bottom:2.880000px;}
.y67{bottom:3.060000px;}
.y16{bottom:3.780000px;}
.y17{bottom:5.940000px;}
.y34{bottom:6.120000px;}
.y7{bottom:9.396000px;}
.y48{bottom:9.576000px;}
.y3b{bottom:12.420000px;}
.y11d{bottom:12.594000px;}
.yc{bottom:14.040000px;}
.y106{bottom:16.380000px;}
.y8{bottom:16.776000px;}
.y49{bottom:16.956000px;}
.y38{bottom:18.360000px;}
.y117{bottom:18.720000px;}
.y32{bottom:19.260000px;}
.y29{bottom:23.760000px;}
.y11c{bottom:26.274000px;}
.y105{bottom:30.240000px;}
.y37{bottom:34.380000px;}
.ya{bottom:35.460000px;}
.y31{bottom:35.640000px;}
.y116{bottom:36.000000px;}
.y11b{bottom:40.134000px;}
.y4b{bottom:41.400000px;}
.y28{bottom:43.605000px;}
.y104{bottom:43.920000px;}
.y30{bottom:51.300000px;}
.y36{bottom:52.380000px;}
.y115{bottom:53.280000px;}
.y11a{bottom:53.994000px;}
.y103{bottom:57.780000px;}
.y6{bottom:58.140000px;}
.y27{bottom:63.585000px;}
.y47{bottom:64.080000px;}
.y2f{bottom:66.780000px;}
.y119{bottom:67.674000px;}
.y114{bottom:70.560000px;}
.y2e{bottom:82.290000px;}
.y26{bottom:83.565000px;}
.y113{bottom:87.840000px;}
.y2d{bottom:97.770000px;}
.y25{bottom:103.545000px;}
.y112{bottom:104.985000px;}
.yb1{bottom:110.916000px;}
.y2c{bottom:113.430000px;}
.y10b{bottom:113.796000px;}
.y3a{bottom:115.785000px;}
.y46{bottom:118.836000px;}
.y111{bottom:122.265000px;}
.y24{bottom:123.525000px;}
.yb0{bottom:125.676000px;}
.yf4{bottom:127.296000px;}
.y10a{bottom:127.476000px;}
.y2b{bottom:128.910000px;}
.yaf{bottom:131.796000px;}
.y63{bottom:132.516000px;}
.y45{bottom:132.696000px;}
.y118{bottom:138.816000px;}
.y110{bottom:139.545000px;}
.yf3{bottom:143.136000px;}
.y23{bottom:143.505000px;}
.y44{bottom:146.556000px;}
.y62{bottom:152.490000px;}
.yf2{bottom:156.090000px;}
.ydc{bottom:157.350000px;}
.y43{bottom:160.230000px;}
.y22{bottom:163.305000px;}
.y61{bottom:172.470000px;}
.ydf{bottom:173.370000px;}
.y42{bottom:174.090000px;}
.ydb{bottom:177.330000px;}
.y21{bottom:183.285000px;}
.y41{bottom:187.950000px;}
.ycb{bottom:188.670000px;}
.y60{bottom:192.450000px;}
.yde{bottom:193.350000px;}
.yda{bottom:197.310000px;}
.y40{bottom:201.630000px;}
.y20{bottom:203.265000px;}
.yca{bottom:208.650000px;}
.y5f{bottom:212.430000px;}
.ydd{bottom:213.150000px;}
.y3f{bottom:215.490000px;}
.yd9{bottom:216.570000px;}
.y10f{bottom:218.550000px;}
.y1f{bottom:223.245000px;}
.yc9{bottom:228.630000px;}
.y3e{bottom:230.610000px;}
.y5e{bottom:232.410000px;}
.y1e{bottom:243.225000px;}
.yd8{bottom:247.170000px;}
.yc8{bottom:248.610000px;}
.y3d{bottom:250.410000px;}
.y5d{bottom:252.210000px;}
.yd7{bottom:253.290000px;}
.y1d{bottom:263.205000px;}
.y5c{bottom:267.330000px;}
.yc7{bottom:268.590000px;}
.y3c{bottom:269.670000px;}
.y5b{bottom:282.090000px;}
.y18{bottom:282.990000px;}
.y1c{bottom:283.005000px;}
.y5a{bottom:288.210000px;}
.yc6{bottom:288.390000px;}
.y1b{bottom:303.015000px;}
.yc5{bottom:308.370000px;}
.y1a{bottom:322.995000px;}
.yc4{bottom:328.395000px;}
.y8c{bottom:333.615000px;}
.y19{bottom:342.975000px;}
.yc3{bottom:348.375000px;}
.y8b{bottom:353.595000px;}
.yc2{bottom:368.355000px;}
.y8a{bottom:373.575000px;}
.yae{bottom:374.655000px;}
.yc1{bottom:388.335000px;}
.y109{bottom:388.515000px;}
.y89{bottom:393.555000px;}
.yad{bottom:394.635000px;}
.y108{bottom:403.095000px;}
.yc0{bottom:408.135000px;}
.y35{bottom:412.095000px;}
.y88{bottom:413.535000px;}
.yac{bottom:414.615000px;}
.y107{bottom:420.735000px;}
.ybf{bottom:427.395000px;}
.y87{bottom:433.335000px;}
.yab{bottom:434.415000px;}
.y102{bottom:437.655000px;}
.ybe{bottom:443.415000px;}
.yf1{bottom:451.695000px;}
.y86{bottom:453.315000px;}
.yaa{bottom:454.395000px;}
.ybd{bottom:458.175000px;}
.ybc{bottom:464.115000px;}
.yf0{bottom:471.675000px;}
.y85{bottom:473.295000px;}
.ya9{bottom:474.375000px;}
.y33{bottom:479.775000px;}
.yeb{bottom:489.495000px;}
.yef{bottom:491.475000px;}
.y84{bottom:493.275000px;}
.ya8{bottom:494.355000px;}
.y2a{bottom:500.655000px;}
.y101{bottom:507.495000px;}
.yea{bottom:509.475000px;}
.yee{bottom:511.455000px;}
.y83{bottom:513.255000px;}
.ya7{bottom:514.335000px;}
.y100{bottom:525.855000px;}
.ye9{bottom:529.455000px;}
.y59{bottom:529.815000px;}
.yed{bottom:531.435000px;}
.y82{bottom:533.235000px;}
.ya6{bottom:534.315000px;}
.yff{bottom:545.835000px;}
.ye8{bottom:549.435000px;}
.y58{bottom:549.615000px;}
.yec{bottom:551.055000px;}
.y81{bottom:553.215000px;}
.ya5{bottom:554.115000px;}
.yfe{bottom:565.635000px;}
.ye7{bottom:569.445000px;}
.y57{bottom:569.625000px;}
.y80{bottom:573.045000px;}
.ya4{bottom:574.125000px;}
.yfd{bottom:585.645000px;}
.y7f{bottom:588.885000px;}
.ye6{bottom:589.425000px;}
.y56{bottom:589.605000px;}
.yd6{bottom:590.325000px;}
.ya3{bottom:594.105000px;}
.yfc{bottom:605.625000px;}
.y7e{bottom:608.865000px;}
.ye5{bottom:609.225000px;}
.y55{bottom:609.585000px;}
.yd5{bottom:610.305000px;}
.ya2{bottom:614.085000px;}
.yfb{bottom:625.605000px;}
.y54{bottom:627.585000px;}
.y7d{bottom:628.665000px;}
.ye4{bottom:629.205000px;}
.yd4{bottom:630.285000px;}
.y53{bottom:633.525000px;}
.ya1{bottom:634.065000px;}
.y7c{bottom:641.445000px;}
.y15{bottom:642.885000px;}
.yfa{bottom:645.585000px;}
.ye3{bottom:648.465000px;}
.yd3{bottom:650.085000px;}
.ya0{bottom:654.045000px;}
.y7b{bottom:658.185000px;}
.ye2{bottom:664.485000px;}
.yf9{bottom:665.565000px;}
.yd2{bottom:670.065000px;}
.y9f{bottom:673.845000px;}
.y7a{bottom:674.925000px;}
.ye1{bottom:679.065000px;}
.y14{bottom:680.325000px;}
.ye0{bottom:685.365000px;}
.yd1{bottom:690.045000px;}
.y79{bottom:691.665000px;}
.y9e{bottom:693.825000px;}
.y13{bottom:700.845000px;}
.yf8{bottom:705.345000px;}
.y78{bottom:708.225000px;}
.yd0{bottom:710.025000px;}
.y9d{bottom:713.805000px;}
.yf7{bottom:725.325000px;}
.y77{bottom:726.765000px;}
.y9c{bottom:729.645000px;}
.ycf{bottom:730.005000px;}
.y12{bottom:730.185000px;}
.y76{bottom:735.945000px;}
.yf6{bottom:745.305000px;}
.yce{bottom:749.265000px;}
.y9b{bottom:749.445000px;}
.y11{bottom:752.145000px;}
.y75{bottom:752.685000px;}
.ybb{bottom:753.585000px;}
.ycd{bottom:765.105000px;}
.yf5{bottom:765.285000px;}
.y9a{bottom:769.425000px;}
.y74{bottom:772.485000px;}
.y10{bottom:775.725000px;}
.ycc{bottom:778.065000px;}
.yba{bottom:785.265000px;}
.y99{bottom:789.405000px;}
.y73{bottom:792.465000px;}
.yb9{bottom:805.065000px;}
.yf{bottom:807.765000px;}
.y98{bottom:809.385000px;}
.y72{bottom:812.445000px;}
.yb8{bottom:825.090000px;}
.y97{bottom:829.410000px;}
.y71{bottom:832.290000px;}
.ye{bottom:842.730000px;}
.yb7{bottom:845.070000px;}
.y70{bottom:845.250000px;}
.y96{bottom:849.390000px;}
.y6f{bottom:861.810000px;}
.yb6{bottom:865.050000px;}
.y95{bottom:869.190000px;}
.yd{bottom:871.710000px;}
.y6e{bottom:878.550000px;}
.yb5{bottom:885.030000px;}
.yb{bottom:887.010000px;}
.y94{bottom:889.170000px;}
.y6d{bottom:895.290000px;}
.yb4{bottom:905.010000px;}
.y52{bottom:907.350000px;}
.y93{bottom:909.150000px;}
.y6c{bottom:912.030000px;}
.y51{bottom:923.190000px;}
.yb3{bottom:924.990000px;}
.y6b{bottom:928.770000px;}
.y92{bottom:929.130000px;}
.y50{bottom:943.170000px;}
.yb2{bottom:944.790000px;}
.y6a{bottom:945.510000px;}
.y91{bottom:948.930000px;}
.y69{bottom:962.070000px;}
.y4f{bottom:963.150000px;}
.y90{bottom:964.770000px;}
.y68{bottom:978.810000px;}
.y4e{bottom:982.950000px;}
.y8f{bottom:984.750000px;}
.y66{bottom:995.550000px;}
.y10e{bottom:1002.030000px;}
.y4d{bottom:1002.930000px;}
.y8e{bottom:1004.730000px;}
.y65{bottom:1015.350000px;}
.y10d{bottom:1015.710000px;}
.y4c{bottom:1022.910000px;}
.y8d{bottom:1024.710000px;}
.y64{bottom:1027.950000px;}
.y10c{bottom:1029.570000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h26{height:13.860000px;}
.h23{height:15.840000px;}
.h21{height:16.020000px;}
.h10{height:19.980000px;}
.h1f{height:24.222240px;}
.h4{height:29.736000px;}
.h1d{height:33.683203px;}
.h27{height:34.036523px;}
.h22{height:35.708906px;}
.h18{height:37.705078px;}
.h1b{height:38.100586px;}
.h20{height:38.640240px;}
.h7{height:39.336328px;}
.h24{height:39.972656px;}
.h15{height:39.999023px;}
.h5{height:41.726953px;}
.h12{height:42.164648px;}
.h19{height:43.254000px;}
.h1c{height:44.236406px;}
.h16{height:44.265586px;}
.h9{height:46.251562px;}
.h1e{height:47.867760px;}
.h2{height:48.496641px;}
.h3{height:50.800781px;}
.h6{height:52.055859px;}
.ha{height:53.755312px;}
.hf{height:58.271484px;}
.h1{height:58.429688px;}
.h11{height:64.487109px;}
.h17{height:66.960000px;}
.h25{height:67.974702px;}
.h28{height:69.120000px;}
.hd{height:71.479687px;}
.he{height:75.410156px;}
.hb{height:76.201172px;}
.h2a{height:79.020000px;}
.hc{height:116.542969px;}
.h1a{height:128.376000px;}
.h14{height:141.516000px;}
.h29{height:153.570000px;}
.h8{height:153.900000px;}
.h13{height:359.175000px;}
.h0{height:1188.000000px;}
.w2{width:45.036000px;}
.w7{width:50.436000px;}
.wa{width:102.276000px;}
.w8{width:104.220000px;}
.wc{width:136.620000px;}
.wb{width:138.636000px;}
.w6{width:201.270000px;}
.w9{width:221.610000px;}
.wd{width:329.295000px;}
.w5{width:607.425000px;}
.w3{width:783.510000px;}
.we{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:6.660000px;}
.x5{left:8.640000px;}
.x20{left:11.700000px;}
.x33{left:15.660000px;}
.x15{left:18.045000px;}
.x11{left:20.205000px;}
.x25{left:21.960000px;}
.x2c{left:23.220000px;}
.x13{left:24.705000px;}
.x14{left:26.505000px;}
.x24{left:30.780000px;}
.x29{left:32.580000px;}
.x2f{left:35.640000px;}
.x2b{left:37.080000px;}
.x27{left:38.154000px;}
.x22{left:39.954000px;}
.x8{left:45.540000px;}
.x4{left:53.999986px;}
.x36{left:57.059986px;}
.x4d{left:58.680000px;}
.x3{left:60.659986px;}
.x35{left:62.640000px;}
.x16{left:65.519986px;}
.x31{left:76.185000px;}
.x4c{left:80.130000px;}
.x2a{left:82.125000px;}
.x37{left:84.059986px;}
.x4b{left:85.140000px;}
.x26{left:87.705000px;}
.x30{left:90.225000px;}
.x2e{left:95.625000px;}
.x28{left:97.965000px;}
.x6{left:100.836000px;}
.x2d{left:102.465000px;}
.x7{left:108.035986px;}
.x21{left:111.996000px;}
.x1{left:150.509986px;}
.x4a{left:156.269986px;}
.x32{left:163.290000px;}
.x49{left:187.769986px;}
.xe{left:194.789986px;}
.x48{left:198.389986px;}
.x23{left:216.930000px;}
.x2{left:220.709986px;}
.x1e{left:230.969986px;}
.x46{left:246.449986px;}
.x1f{left:252.569986px;}
.xb{left:266.969986px;}
.x47{left:293.474986px;}
.x4e{left:295.635000px;}
.x34{left:302.655000px;}
.x45{left:337.574986px;}
.x3d{left:394.274986px;}
.x1d{left:405.074986px;}
.x40{left:409.034986px;}
.xd{left:412.094986px;}
.x1a{left:416.414986px;}
.xa{left:459.074986px;}
.x18{left:461.954986px;}
.xc{left:464.294986px;}
.xf{left:465.374986px;}
.x38{left:475.634986px;}
.x17{left:478.334986px;}
.x3a{left:479.804986px;}
.x39{left:502.664986px;}
.x43{left:506.804986px;}
.x3b{left:511.844986px;}
.x1b{left:526.604986px;}
.x10{left:661.245000px;}
.x1c{left:679.469986px;}
.x19{left:687.029986px;}
.x3c{left:688.289986px;}
.x44{left:698.189986px;}
.x42{left:702.689986px;}
.x3f{left:710.609986px;}
.x41{left:742.109986px;}
.x3e{left:761.189986px;}
.x9{left:812.490000px;}
@media print{
.v2{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.280000pt;}
.v1{vertical-align:16.000000pt;}
.ls4a{letter-spacing:-17.706667pt;}
.ls36{letter-spacing:-9.173333pt;}
.lsa{letter-spacing:-2.272000pt;}
.ls4c{letter-spacing:-1.253655pt;}
.lsc{letter-spacing:-1.189333pt;}
.ls11{letter-spacing:-0.944000pt;}
.ls12{letter-spacing:-0.816000pt;}
.ls31{letter-spacing:-0.666667pt;}
.ls3e{letter-spacing:-0.471467pt;}
.lse{letter-spacing:-0.409600pt;}
.ls4b{letter-spacing:-0.344615pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.315733pt;}
.ls37{letter-spacing:-0.278933pt;}
.ls46{letter-spacing:-0.272000pt;}
.ls9{letter-spacing:-0.239467pt;}
.ls35{letter-spacing:-0.234667pt;}
.ls4d{letter-spacing:-0.198933pt;}
.ls10{letter-spacing:-0.176000pt;}
.ls32{letter-spacing:-0.153600pt;}
.ls33{letter-spacing:-0.072533pt;}
.lsd{letter-spacing:-0.007040pt;}
.ls8{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.014080pt;}
.ls4{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.023040pt;}
.ls14{letter-spacing:0.058880pt;}
.ls13{letter-spacing:0.063467pt;}
.ls3d{letter-spacing:0.064427pt;}
.ls27{letter-spacing:0.097707pt;}
.ls42{letter-spacing:0.106240pt;}
.ls17{letter-spacing:0.125333pt;}
.ls5{letter-spacing:0.151040pt;}
.ls49{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.165120pt;}
.ls1e{letter-spacing:0.168320pt;}
.ls19{letter-spacing:0.168533pt;}
.ls44{letter-spacing:0.176000pt;}
.ls21{letter-spacing:0.177280pt;}
.ls26{letter-spacing:0.212480pt;}
.ls7{letter-spacing:0.221867pt;}
.ls1c{letter-spacing:0.227733pt;}
.ls2d{letter-spacing:0.242133pt;}
.ls18{letter-spacing:0.271787pt;}
.ls2c{letter-spacing:0.291200pt;}
.ls30{letter-spacing:0.295040pt;}
.ls2f{letter-spacing:0.304000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.324267pt;}
.ls20{letter-spacing:0.337280pt;}
.ls40{letter-spacing:0.512000pt;}
.ls47{letter-spacing:0.632960pt;}
.ls2{letter-spacing:0.805120pt;}
.ls38{letter-spacing:0.810667pt;}
.ls3a{letter-spacing:1.338880pt;}
.ls1d{letter-spacing:1.445120pt;}
.ls16{letter-spacing:2.725120pt;}
.ls1f{letter-spacing:3.365120pt;}
.ls22{letter-spacing:4.005120pt;}
.ls3f{letter-spacing:5.178880pt;}
.ls3c{letter-spacing:5.925120pt;}
.ls43{letter-spacing:6.458880pt;}
.ls2e{letter-spacing:7.205120pt;}
.ls3b{letter-spacing:9.600000pt;}
.ls25{letter-spacing:9.765120pt;}
.ls29{letter-spacing:10.405120pt;}
.ls28{letter-spacing:12.325120pt;}
.ls2b{letter-spacing:17.445120pt;}
.ls24{letter-spacing:20.005120pt;}
.ls41{letter-spacing:31.578880pt;}
.ls6{letter-spacing:33.232640pt;}
.ls3{letter-spacing:37.216000pt;}
.ls39{letter-spacing:40.912640pt;}
.ls45{letter-spacing:46.176000pt;}
.ls23{letter-spacing:56.912640pt;}
.ls48{letter-spacing:57.040640pt;}
.ls2a{letter-spacing:58.832640pt;}
.ls1{letter-spacing:950.026667pt;}
.ws1c{word-spacing:-53.120000pt;}
.ws8{word-spacing:-48.000000pt;}
.ws29{word-spacing:-42.880000pt;}
.ws3{word-spacing:-16.133120pt;}
.ws24{word-spacing:-14.837120pt;}
.ws12{word-spacing:-14.723413pt;}
.ws1a{word-spacing:-14.723200pt;}
.ws23{word-spacing:-14.661120pt;}
.ws11{word-spacing:-14.554880pt;}
.ws21{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws25{word-spacing:-12.880000pt;}
.ws22{word-spacing:-12.138880pt;}
.wsc{word-spacing:-12.016000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws13{word-spacing:-11.834880pt;}
.ws9{word-spacing:-11.680000pt;}
.ws1b{word-spacing:-11.676587pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.480533pt;}
.ws1f{word-spacing:-0.344320pt;}
.ws20{word-spacing:-0.295253pt;}
.wsf{word-spacing:-0.274987pt;}
.ws16{word-spacing:-0.270613pt;}
.ws14{word-spacing:-0.178453pt;}
.wse{word-spacing:-0.116587pt;}
.ws1d{word-spacing:-0.067200pt;}
.ws4{word-spacing:-0.058880pt;}
.ws6{word-spacing:-0.053120pt;}
.ws15{word-spacing:-0.042880pt;}
.ws10{word-spacing:0.000000pt;}
.ws19{word-spacing:0.110720pt;}
.ws1e{word-spacing:0.181547pt;}
.ws27{word-spacing:0.288622pt;}
.ws17{word-spacing:0.623787pt;}
.wsb{word-spacing:0.896000pt;}
.ws7{word-spacing:1.136213pt;}
.ws28{word-spacing:1.197662pt;}
.ws2{word-spacing:2.176000pt;}
.ws18{word-spacing:13.978880pt;}
.wsd{word-spacing:17.795200pt;}
.ws26{word-spacing:53.304320pt;}
._9{margin-left:-20.356480pt;}
._10{margin-left:-17.881600pt;}
._c{margin-left:-16.872320pt;}
._1f{margin-left:-13.978880pt;}
._f{margin-left:-10.517760pt;}
._12{margin-left:-9.400107pt;}
._25{margin-left:-8.470613pt;}
._5{margin-left:-6.720000pt;}
._19{margin-left:-5.730773pt;}
._15{margin-left:-3.989760pt;}
._20{margin-left:-2.955947pt;}
._8{margin-left:-1.985280pt;}
._4{margin-left:-0.954880pt;}
._1{width:1.009280pt;}
._b{width:2.177920pt;}
._e{width:3.268907pt;}
._7{width:4.490667pt;}
._1d{width:5.420907pt;}
._6{width:6.336000pt;}
._17{width:7.549653pt;}
._18{width:8.523307pt;}
._13{width:9.653120pt;}
._1a{width:11.355520pt;}
._24{width:12.329173pt;}
._16{width:13.444693pt;}
._14{width:14.554880pt;}
._1e{width:16.234667pt;}
._d{width:17.210880pt;}
._11{width:18.319360pt;}
._a{width:19.783680pt;}
._23{width:20.839893pt;}
._27{width:22.257280pt;}
._22{width:23.236907pt;}
._21{width:24.181760pt;}
._1c{width:27.316693pt;}
._1b{width:28.312960pt;}
._2a{width:29.588267pt;}
._28{width:31.553280pt;}
._29{width:32.826667pt;}
._2b{width:36.050560pt;}
._26{width:47.615360pt;}
._3{width:116.838187pt;}
._2{width:304.872107pt;}
._0{width:2539.573333pt;}
.fs4{font-size:26.880000pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs8{font-size:55.992837pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.y4a{bottom:2.272000pt;}
.y39{bottom:2.560000pt;}
.y67{bottom:2.720000pt;}
.y16{bottom:3.360000pt;}
.y17{bottom:5.280000pt;}
.y34{bottom:5.440000pt;}
.y7{bottom:8.352000pt;}
.y48{bottom:8.512000pt;}
.y3b{bottom:11.040000pt;}
.y11d{bottom:11.194667pt;}
.yc{bottom:12.480000pt;}
.y106{bottom:14.560000pt;}
.y8{bottom:14.912000pt;}
.y49{bottom:15.072000pt;}
.y38{bottom:16.320000pt;}
.y117{bottom:16.640000pt;}
.y32{bottom:17.120000pt;}
.y29{bottom:21.120000pt;}
.y11c{bottom:23.354667pt;}
.y105{bottom:26.880000pt;}
.y37{bottom:30.560000pt;}
.ya{bottom:31.520000pt;}
.y31{bottom:31.680000pt;}
.y116{bottom:32.000000pt;}
.y11b{bottom:35.674667pt;}
.y4b{bottom:36.800000pt;}
.y28{bottom:38.760000pt;}
.y104{bottom:39.040000pt;}
.y30{bottom:45.600000pt;}
.y36{bottom:46.560000pt;}
.y115{bottom:47.360000pt;}
.y11a{bottom:47.994667pt;}
.y103{bottom:51.360000pt;}
.y6{bottom:51.680000pt;}
.y27{bottom:56.520000pt;}
.y47{bottom:56.960000pt;}
.y2f{bottom:59.360000pt;}
.y119{bottom:60.154667pt;}
.y114{bottom:62.720000pt;}
.y2e{bottom:73.146667pt;}
.y26{bottom:74.280000pt;}
.y113{bottom:78.080000pt;}
.y2d{bottom:86.906667pt;}
.y25{bottom:92.040000pt;}
.y112{bottom:93.320000pt;}
.yb1{bottom:98.592000pt;}
.y2c{bottom:100.826667pt;}
.y10b{bottom:101.152000pt;}
.y3a{bottom:102.920000pt;}
.y46{bottom:105.632000pt;}
.y111{bottom:108.680000pt;}
.y24{bottom:109.800000pt;}
.yb0{bottom:111.712000pt;}
.yf4{bottom:113.152000pt;}
.y10a{bottom:113.312000pt;}
.y2b{bottom:114.586667pt;}
.yaf{bottom:117.152000pt;}
.y63{bottom:117.792000pt;}
.y45{bottom:117.952000pt;}
.y118{bottom:123.392000pt;}
.y110{bottom:124.040000pt;}
.yf3{bottom:127.232000pt;}
.y23{bottom:127.560000pt;}
.y44{bottom:130.272000pt;}
.y62{bottom:135.546667pt;}
.yf2{bottom:138.746667pt;}
.ydc{bottom:139.866667pt;}
.y43{bottom:142.426667pt;}
.y22{bottom:145.160000pt;}
.y61{bottom:153.306667pt;}
.ydf{bottom:154.106667pt;}
.y42{bottom:154.746667pt;}
.ydb{bottom:157.626667pt;}
.y21{bottom:162.920000pt;}
.y41{bottom:167.066667pt;}
.ycb{bottom:167.706667pt;}
.y60{bottom:171.066667pt;}
.yde{bottom:171.866667pt;}
.yda{bottom:175.386667pt;}
.y40{bottom:179.226667pt;}
.y20{bottom:180.680000pt;}
.yca{bottom:185.466667pt;}
.y5f{bottom:188.826667pt;}
.ydd{bottom:189.466667pt;}
.y3f{bottom:191.546667pt;}
.yd9{bottom:192.506667pt;}
.y10f{bottom:194.266667pt;}
.y1f{bottom:198.440000pt;}
.yc9{bottom:203.226667pt;}
.y3e{bottom:204.986667pt;}
.y5e{bottom:206.586667pt;}
.y1e{bottom:216.200000pt;}
.yd8{bottom:219.706667pt;}
.yc8{bottom:220.986667pt;}
.y3d{bottom:222.586667pt;}
.y5d{bottom:224.186667pt;}
.yd7{bottom:225.146667pt;}
.y1d{bottom:233.960000pt;}
.y5c{bottom:237.626667pt;}
.yc7{bottom:238.746667pt;}
.y3c{bottom:239.706667pt;}
.y5b{bottom:250.746667pt;}
.y18{bottom:251.546667pt;}
.y1c{bottom:251.560000pt;}
.y5a{bottom:256.186667pt;}
.yc6{bottom:256.346667pt;}
.y1b{bottom:269.346667pt;}
.yc5{bottom:274.106667pt;}
.y1a{bottom:287.106667pt;}
.yc4{bottom:291.906667pt;}
.y8c{bottom:296.546667pt;}
.y19{bottom:304.866667pt;}
.yc3{bottom:309.666667pt;}
.y8b{bottom:314.306667pt;}
.yc2{bottom:327.426667pt;}
.y8a{bottom:332.066667pt;}
.yae{bottom:333.026667pt;}
.yc1{bottom:345.186667pt;}
.y109{bottom:345.346667pt;}
.y89{bottom:349.826667pt;}
.yad{bottom:350.786667pt;}
.y108{bottom:358.306667pt;}
.yc0{bottom:362.786667pt;}
.y35{bottom:366.306667pt;}
.y88{bottom:367.586667pt;}
.yac{bottom:368.546667pt;}
.y107{bottom:373.986667pt;}
.ybf{bottom:379.906667pt;}
.y87{bottom:385.186667pt;}
.yab{bottom:386.146667pt;}
.y102{bottom:389.026667pt;}
.ybe{bottom:394.146667pt;}
.yf1{bottom:401.506667pt;}
.y86{bottom:402.946667pt;}
.yaa{bottom:403.906667pt;}
.ybd{bottom:407.266667pt;}
.ybc{bottom:412.546667pt;}
.yf0{bottom:419.266667pt;}
.y85{bottom:420.706667pt;}
.ya9{bottom:421.666667pt;}
.y33{bottom:426.466667pt;}
.yeb{bottom:435.106667pt;}
.yef{bottom:436.866667pt;}
.y84{bottom:438.466667pt;}
.ya8{bottom:439.426667pt;}
.y2a{bottom:445.026667pt;}
.y101{bottom:451.106667pt;}
.yea{bottom:452.866667pt;}
.yee{bottom:454.626667pt;}
.y83{bottom:456.226667pt;}
.ya7{bottom:457.186667pt;}
.y100{bottom:467.426667pt;}
.ye9{bottom:470.626667pt;}
.y59{bottom:470.946667pt;}
.yed{bottom:472.386667pt;}
.y82{bottom:473.986667pt;}
.ya6{bottom:474.946667pt;}
.yff{bottom:485.186667pt;}
.ye8{bottom:488.386667pt;}
.y58{bottom:488.546667pt;}
.yec{bottom:489.826667pt;}
.y81{bottom:491.746667pt;}
.ya5{bottom:492.546667pt;}
.yfe{bottom:502.786667pt;}
.ye7{bottom:506.173333pt;}
.y57{bottom:506.333333pt;}
.y80{bottom:509.373333pt;}
.ya4{bottom:510.333333pt;}
.yfd{bottom:520.573333pt;}
.y7f{bottom:523.453333pt;}
.ye6{bottom:523.933333pt;}
.y56{bottom:524.093333pt;}
.yd6{bottom:524.733333pt;}
.ya3{bottom:528.093333pt;}
.yfc{bottom:538.333333pt;}
.y7e{bottom:541.213333pt;}
.ye5{bottom:541.533333pt;}
.y55{bottom:541.853333pt;}
.yd5{bottom:542.493333pt;}
.ya2{bottom:545.853333pt;}
.yfb{bottom:556.093333pt;}
.y54{bottom:557.853333pt;}
.y7d{bottom:558.813333pt;}
.ye4{bottom:559.293333pt;}
.yd4{bottom:560.253333pt;}
.y53{bottom:563.133333pt;}
.ya1{bottom:563.613333pt;}
.y7c{bottom:570.173333pt;}
.y15{bottom:571.453333pt;}
.yfa{bottom:573.853333pt;}
.ye3{bottom:576.413333pt;}
.yd3{bottom:577.853333pt;}
.ya0{bottom:581.373333pt;}
.y7b{bottom:585.053333pt;}
.ye2{bottom:590.653333pt;}
.yf9{bottom:591.613333pt;}
.yd2{bottom:595.613333pt;}
.y9f{bottom:598.973333pt;}
.y7a{bottom:599.933333pt;}
.ye1{bottom:603.613333pt;}
.y14{bottom:604.733333pt;}
.ye0{bottom:609.213333pt;}
.yd1{bottom:613.373333pt;}
.y79{bottom:614.813333pt;}
.y9e{bottom:616.733333pt;}
.y13{bottom:622.973333pt;}
.yf8{bottom:626.973333pt;}
.y78{bottom:629.533333pt;}
.yd0{bottom:631.133333pt;}
.y9d{bottom:634.493333pt;}
.yf7{bottom:644.733333pt;}
.y77{bottom:646.013333pt;}
.y9c{bottom:648.573333pt;}
.ycf{bottom:648.893333pt;}
.y12{bottom:649.053333pt;}
.y76{bottom:654.173333pt;}
.yf6{bottom:662.493333pt;}
.yce{bottom:666.013333pt;}
.y9b{bottom:666.173333pt;}
.y11{bottom:668.573333pt;}
.y75{bottom:669.053333pt;}
.ybb{bottom:669.853333pt;}
.ycd{bottom:680.093333pt;}
.yf5{bottom:680.253333pt;}
.y9a{bottom:683.933333pt;}
.y74{bottom:686.653333pt;}
.y10{bottom:689.533333pt;}
.ycc{bottom:691.613333pt;}
.yba{bottom:698.013333pt;}
.y99{bottom:701.693333pt;}
.y73{bottom:704.413333pt;}
.yb9{bottom:715.613333pt;}
.yf{bottom:718.013333pt;}
.y98{bottom:719.453333pt;}
.y72{bottom:722.173333pt;}
.yb8{bottom:733.413333pt;}
.y97{bottom:737.253333pt;}
.y71{bottom:739.813333pt;}
.ye{bottom:749.093333pt;}
.yb7{bottom:751.173333pt;}
.y70{bottom:751.333333pt;}
.y96{bottom:755.013333pt;}
.y6f{bottom:766.053333pt;}
.yb6{bottom:768.933333pt;}
.y95{bottom:772.613333pt;}
.yd{bottom:774.853333pt;}
.y6e{bottom:780.933333pt;}
.yb5{bottom:786.693333pt;}
.yb{bottom:788.453333pt;}
.y94{bottom:790.373333pt;}
.y6d{bottom:795.813333pt;}
.yb4{bottom:804.453333pt;}
.y52{bottom:806.533333pt;}
.y93{bottom:808.133333pt;}
.y6c{bottom:810.693333pt;}
.y51{bottom:820.613333pt;}
.yb3{bottom:822.213333pt;}
.y6b{bottom:825.573333pt;}
.y92{bottom:825.893333pt;}
.y50{bottom:838.373333pt;}
.yb2{bottom:839.813333pt;}
.y6a{bottom:840.453333pt;}
.y91{bottom:843.493333pt;}
.y69{bottom:855.173333pt;}
.y4f{bottom:856.133333pt;}
.y90{bottom:857.573333pt;}
.y68{bottom:870.053333pt;}
.y4e{bottom:873.733333pt;}
.y8f{bottom:875.333333pt;}
.y66{bottom:884.933333pt;}
.y10e{bottom:890.693333pt;}
.y4d{bottom:891.493333pt;}
.y8e{bottom:893.093333pt;}
.y65{bottom:902.533333pt;}
.y10d{bottom:902.853333pt;}
.y4c{bottom:909.253333pt;}
.y8d{bottom:910.853333pt;}
.y64{bottom:913.733333pt;}
.y10c{bottom:915.173333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h26{height:12.320000pt;}
.h23{height:14.080000pt;}
.h21{height:14.240000pt;}
.h10{height:17.760000pt;}
.h1f{height:21.530880pt;}
.h4{height:26.432000pt;}
.h1d{height:29.940625pt;}
.h27{height:30.254687pt;}
.h22{height:31.741250pt;}
.h18{height:33.515625pt;}
.h1b{height:33.867188pt;}
.h20{height:34.346880pt;}
.h7{height:34.965625pt;}
.h24{height:35.531250pt;}
.h15{height:35.554688pt;}
.h5{height:37.090625pt;}
.h12{height:37.479688pt;}
.h19{height:38.448000pt;}
.h1c{height:39.321250pt;}
.h16{height:39.347188pt;}
.h9{height:41.112500pt;}
.h1e{height:42.549120pt;}
.h2{height:43.108125pt;}
.h3{height:45.156250pt;}
.h6{height:46.271875pt;}
.ha{height:47.782500pt;}
.hf{height:51.796875pt;}
.h1{height:51.937500pt;}
.h11{height:57.321875pt;}
.h17{height:59.520000pt;}
.h25{height:60.421957pt;}
.h28{height:61.440000pt;}
.hd{height:63.537500pt;}
.he{height:67.031250pt;}
.hb{height:67.734375pt;}
.h2a{height:70.240000pt;}
.hc{height:103.593750pt;}
.h1a{height:114.112000pt;}
.h14{height:125.792000pt;}
.h29{height:136.506667pt;}
.h8{height:136.800000pt;}
.h13{height:319.266667pt;}
.h0{height:1056.000000pt;}
.w2{width:40.032000pt;}
.w7{width:44.832000pt;}
.wa{width:90.912000pt;}
.w8{width:92.640000pt;}
.wc{width:121.440000pt;}
.wb{width:123.232000pt;}
.w6{width:178.906667pt;}
.w9{width:196.986667pt;}
.wd{width:292.706667pt;}
.w5{width:539.933333pt;}
.w3{width:696.453333pt;}
.we{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.920000pt;}
.x5{left:7.680000pt;}
.x20{left:10.400000pt;}
.x33{left:13.920000pt;}
.x15{left:16.040000pt;}
.x11{left:17.960000pt;}
.x25{left:19.520000pt;}
.x2c{left:20.640000pt;}
.x13{left:21.960000pt;}
.x14{left:23.560000pt;}
.x24{left:27.360000pt;}
.x29{left:28.960000pt;}
.x2f{left:31.680000pt;}
.x2b{left:32.960000pt;}
.x27{left:33.914667pt;}
.x22{left:35.514667pt;}
.x8{left:40.480000pt;}
.x4{left:47.999988pt;}
.x36{left:50.719988pt;}
.x4d{left:52.160000pt;}
.x3{left:53.919988pt;}
.x35{left:55.680000pt;}
.x16{left:58.239988pt;}
.x31{left:67.720000pt;}
.x4c{left:71.226667pt;}
.x2a{left:73.000000pt;}
.x37{left:74.719988pt;}
.x4b{left:75.680000pt;}
.x26{left:77.960000pt;}
.x30{left:80.200000pt;}
.x2e{left:85.000000pt;}
.x28{left:87.080000pt;}
.x6{left:89.632000pt;}
.x2d{left:91.080000pt;}
.x7{left:96.031988pt;}
.x21{left:99.552000pt;}
.x1{left:133.786655pt;}
.x4a{left:138.906655pt;}
.x32{left:145.146667pt;}
.x49{left:166.906655pt;}
.xe{left:173.146655pt;}
.x48{left:176.346655pt;}
.x23{left:192.826667pt;}
.x2{left:196.186655pt;}
.x1e{left:205.306655pt;}
.x46{left:219.066655pt;}
.x1f{left:224.506655pt;}
.xb{left:237.306655pt;}
.x47{left:260.866655pt;}
.x4e{left:262.786667pt;}
.x34{left:269.026667pt;}
.x45{left:300.066655pt;}
.x3d{left:350.466655pt;}
.x1d{left:360.066655pt;}
.x40{left:363.586655pt;}
.xd{left:366.306655pt;}
.x1a{left:370.146655pt;}
.xa{left:408.066655pt;}
.x18{left:410.626655pt;}
.xc{left:412.706655pt;}
.xf{left:413.666655pt;}
.x38{left:422.786655pt;}
.x17{left:425.186655pt;}
.x3a{left:426.493321pt;}
.x39{left:446.813321pt;}
.x43{left:450.493321pt;}
.x3b{left:454.973321pt;}
.x1b{left:468.093321pt;}
.x10{left:587.773333pt;}
.x1c{left:603.973321pt;}
.x19{left:610.693321pt;}
.x3c{left:611.813321pt;}
.x44{left:620.613321pt;}
.x42{left:624.613321pt;}
.x3f{left:631.653321pt;}
.x41{left:659.653321pt;}
.x3e{left:676.613321pt;}
.x9{left:722.213333pt;}
}




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