
    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_9c49883c1fe72c35067fd75f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_a0f96adea1d8d964915251ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675781;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_d7b6d4beccf41bfd6f16aaa5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_024a88520f7f6e6a8150e45c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.853027;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_4049e6e1cca76d5a5d39e2a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.694336;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_004ab7811701a81b5f3f07bd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_92081058162140b45138aeb3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.051758;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_cb0cba01c8ca0834382f2e97.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_65b20c63c5c55002f5629b9c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_6f4f1f23b0f91ed7ce7246dc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.073242;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_6a2b337a653f18ea362dcce5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.677246;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_17d6d03f9ef565b3f2f222b7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_0324ab08c35bfb5e7c104045.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_f2cfd7c0c23503bd07012fda.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8750867860d7fbcaea32fc31.woff2')format("woff");}.fff{font-family:fff;line-height:0.912598;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a6a8f5d644a0e5ba356a802e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6e37db97efc525711c8b20ec.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_fd7bb04b894086664116d174.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_f2a60a32ee9ed14aa0e50156.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.909180;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;}
.m1{transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,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);}
.v2{vertical-align:-21.600000px;}
.vd{vertical-align:-18.720000px;}
.va{vertical-align:-10.080000px;}
.v8{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.440000px;}
.v5{vertical-align:2.880000px;}
.vc{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.v4{vertical-align:47.520000px;}
.vb{vertical-align:48.960000px;}
.v3{vertical-align:54.720000px;}
.v7{vertical-align:56.160000px;}
.v6{vertical-align:57.600000px;}
.ls1b{letter-spacing:-7.428960px;}
.ls18{letter-spacing:-3.646944px;}
.ls20{letter-spacing:-3.568320px;}
.ls40{letter-spacing:-0.569088px;}
.ls3f{letter-spacing:-0.508896px;}
.ls3e{letter-spacing:-0.481536px;}
.lsf{letter-spacing:-0.463104px;}
.ls3a{letter-spacing:-0.459648px;}
.ls8{letter-spacing:-0.417312px;}
.ls1a{letter-spacing:-0.399168px;}
.ls41{letter-spacing:-0.393984px;}
.lse{letter-spacing:-0.381024px;}
.ls3d{letter-spacing:-0.361152px;}
.lsd{letter-spacing:-0.338688px;}
.ls10{letter-spacing:-0.328032px;}
.ls17{letter-spacing:-0.320544px;}
.ls1c{letter-spacing:-0.308736px;}
.ls1f{letter-spacing:-0.302400px;}
.ls3b{letter-spacing:-0.260064px;}
.ls21{letter-spacing:-0.254016px;}
.lsa{letter-spacing:-0.241920px;}
.ls19{letter-spacing:-0.223776px;}
.ls11{letter-spacing:-0.157248px;}
.lsc{letter-spacing:-0.145152px;}
.ls9{letter-spacing:-0.120960px;}
.ls36{letter-spacing:-0.028800px;}
.ls35{letter-spacing:-0.021600px;}
.ls22{letter-spacing:-0.014400px;}
.ls34{letter-spacing:-0.007200px;}
.lsb{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.002736px;}
.ls28{letter-spacing:0.002880px;}
.ls1d{letter-spacing:0.014400px;}
.ls25{letter-spacing:0.021600px;}
.ls33{letter-spacing:0.029952px;}
.ls3c{letter-spacing:0.058320px;}
.ls39{letter-spacing:0.059040px;}
.ls37{letter-spacing:0.059904px;}
.ls7{letter-spacing:0.060048px;}
.ls38{letter-spacing:0.060480px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.119952px;}
.ls12{letter-spacing:0.161568px;}
.ls0{letter-spacing:0.190080px;}
.ls16{letter-spacing:0.204336px;}
.ls3{letter-spacing:0.213840px;}
.ls4{letter-spacing:0.237600px;}
.ls6{letter-spacing:0.239904px;}
.ls13{letter-spacing:0.242352px;}
.ls15{letter-spacing:0.285120px;}
.ls29{letter-spacing:0.329328px;}
.ls14{letter-spacing:0.356400px;}
.ls2f{letter-spacing:0.620496px;}
.ls2c{letter-spacing:0.864000px;}
.ls2e{letter-spacing:0.947520px;}
.ls2d{letter-spacing:2.180880px;}
.ls31{letter-spacing:5.977152px;}
.ls5{letter-spacing:6.834960px;}
.ls30{letter-spacing:9.315936px;}
.ls42{letter-spacing:11.856960px;}
.ls32{letter-spacing:12.073968px;}
.ls24{letter-spacing:16.005600px;}
.ls2a{letter-spacing:19.316880px;}
.ls27{letter-spacing:20.004480px;}
.ls26{letter-spacing:20.004624px;}
.ls1e{letter-spacing:106.117920px;}
.ls2b{letter-spacing:140.379120px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-23.791968px;}
.ws3{word-spacing:-23.656896px;}
.ws19{word-spacing:-18.014400px;}
.ws12{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.985600px;}
.ws0{word-spacing:-15.120000px;}
.wsf{word-spacing:-14.974848px;}
.wsd{word-spacing:-14.962752px;}
.ws1{word-spacing:-14.878080px;}
.ws1f{word-spacing:-14.859936px;}
.ws21{word-spacing:-14.817600px;}
.ws20{word-spacing:-14.799456px;}
.wsc{word-spacing:-14.781312px;}
.ws2{word-spacing:-14.738976px;}
.ws1e{word-spacing:-14.660352px;}
.ws24{word-spacing:-13.680000px;}
.ws11{word-spacing:-13.414464px;}
.ws23{word-spacing:-13.318848px;}
.ws25{word-spacing:-13.198464px;}
.ws26{word-spacing:-13.171104px;}
.ws27{word-spacing:-13.110912px;}
.ws7{word-spacing:-12.236400px;}
.ws8{word-spacing:-12.165120px;}
.ws6{word-spacing:-12.122352px;}
.ws9{word-spacing:-12.117600px;}
.wsa{word-spacing:-12.093840px;}
.ws5{word-spacing:-12.070080px;}
.wsb{word-spacing:-11.880000px;}
.ws10{word-spacing:-11.551680px;}
.ws28{word-spacing:-9.000000px;}
.ws22{word-spacing:-0.097200px;}
.ws1a{word-spacing:-0.093600px;}
.ws1c{word-spacing:-0.086400px;}
.ws14{word-spacing:-0.072000px;}
.ws16{word-spacing:-0.064800px;}
.ws15{word-spacing:-0.057600px;}
.ws18{word-spacing:-0.050400px;}
.ws1b{word-spacing:-0.043200px;}
.wse{word-spacing:0.000000px;}
.ws17{word-spacing:136.085904px;}
.ws1d{word-spacing:161.532000px;}
._10{margin-left:-7.139520px;}
._11{margin-left:-5.209920px;}
._e{margin-left:-3.666240px;}
._17{margin-left:-2.196864px;}
._4{margin-left:-1.003968px;}
._0{width:1.028160px;}
._8{width:2.602080px;}
._6{width:3.688560px;}
._a{width:5.199840px;}
._12{width:7.139520px;}
._19{width:8.642880px;}
._b{width:9.976320px;}
._9{width:11.219760px;}
._7{width:13.006080px;}
._1e{width:14.054400px;}
._16{width:15.163200px;}
._1b{width:16.200000px;}
._21{width:17.761536px;}
._1c{width:19.108800px;}
._18{width:20.188800px;}
._20{width:21.773232px;}
._1f{width:23.157072px;}
._22{width:24.969600px;}
._24{width:26.622576px;}
._28{width:28.071792px;}
._1a{width:30.376800px;}
._23{width:31.456800px;}
._1d{width:32.853600px;}
._f{width:34.057440px;}
._c{width:39.653280px;}
._2a{width:40.857120px;}
._d{width:42.161760px;}
._2b{width:43.934400px;}
._29{width:45.122400px;}
._2c{width:49.680000px;}
._2e{width:50.731200px;}
._2d{width:51.739200px;}
._14{width:54.028800px;}
._15{width:56.247840px;}
._25{width:129.434400px;}
._2f{width:156.031200px;}
._26{width:157.298400px;}
._3{width:197.729424px;}
._13{width:205.364016px;}
._27{width:581.997600px;}
._5{width:927.943488px;}
._1{width:992.532096px;}
._2{width:1347.131520px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs8{font-size:50.400000px;}
.fs9{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:76.044197px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:4.860000px;}
.yc1{bottom:10.680000px;}
.yba{bottom:10.800000px;}
.yb8{bottom:10.920000px;}
.yb3{bottom:11.040000px;}
.yac{bottom:11.160000px;}
.yb0{bottom:11.280000px;}
.yae{bottom:11.400000px;}
.ycc{bottom:11.940000px;}
.yc7{bottom:12.060000px;}
.yc5{bottom:12.180000px;}
.ybf{bottom:12.300000px;}
.yaa{bottom:12.360000px;}
.ybd{bottom:12.420000px;}
.ya6{bottom:13.140000px;}
.ya8{bottom:13.500000px;}
.y4{bottom:53.280000px;}
.y39{bottom:58.500000px;}
.y98{bottom:116.280000px;}
.ydf{bottom:121.680000px;}
.y6c{bottom:126.000000px;}
.yf0{bottom:128.160000px;}
.y37{bottom:130.680000px;}
.y97{bottom:136.800000px;}
.ya4{bottom:139.680000px;}
.yde{bottom:142.560000px;}
.y6b{bottom:146.520000px;}
.yef{bottom:149.040000px;}
.y36{bottom:151.560000px;}
.y96{bottom:157.320000px;}
.ya3{bottom:160.560000px;}
.ydd{bottom:163.080000px;}
.y6a{bottom:167.400000px;}
.yee{bottom:169.560000px;}
.y35{bottom:172.080000px;}
.y95{bottom:179.640000px;}
.ya2{bottom:181.080000px;}
.ydc{bottom:183.960000px;}
.y69{bottom:187.920000px;}
.yed{bottom:190.440000px;}
.y34{bottom:192.960000px;}
.ya1{bottom:201.960000px;}
.ydb{bottom:204.480000px;}
.y94{bottom:207.720000px;}
.y68{bottom:208.800000px;}
.y93{bottom:210.240000px;}
.yec{bottom:210.960000px;}
.y33{bottom:213.480000px;}
.ya0{bottom:218.520000px;}
.yda{bottom:225.360000px;}
.y67{bottom:229.320000px;}
.yeb{bottom:231.840000px;}
.y32{bottom:234.360000px;}
.y91{bottom:235.080000px;}
.yd9{bottom:245.880000px;}
.y92{bottom:248.760000px;}
.y66{bottom:250.200000px;}
.yea{bottom:252.360000px;}
.y31{bottom:254.880000px;}
.yd8{bottom:266.760000px;}
.y65{bottom:270.720000px;}
.y90{bottom:272.160000px;}
.ye9{bottom:273.240000px;}
.y30{bottom:275.760000px;}
.yd7{bottom:287.280000px;}
.y64{bottom:291.240000px;}
.y8f{bottom:292.680000px;}
.ye8{bottom:293.760000px;}
.y2f{bottom:296.280000px;}
.yd6{bottom:308.160000px;}
.y63{bottom:312.120000px;}
.y8e{bottom:313.560000px;}
.ye7{bottom:314.640000px;}
.y2e{bottom:317.160000px;}
.yd5{bottom:328.680000px;}
.y62{bottom:332.640000px;}
.y8d{bottom:334.080000px;}
.ye6{bottom:335.160000px;}
.y2d{bottom:337.680000px;}
.yd4{bottom:349.560000px;}
.y61{bottom:353.520000px;}
.y8c{bottom:354.960000px;}
.ye5{bottom:356.040000px;}
.y2c{bottom:358.560000px;}
.yd3{bottom:370.080000px;}
.y60{bottom:374.040000px;}
.y8b{bottom:375.480000px;}
.ye4{bottom:376.560000px;}
.y2b{bottom:379.080000px;}
.yd2{bottom:394.560000px;}
.y5f{bottom:394.920000px;}
.y8a{bottom:396.360000px;}
.ye3{bottom:397.440000px;}
.y2a{bottom:399.960000px;}
.yd1{bottom:410.040000px;}
.y5e{bottom:415.440000px;}
.y89{bottom:416.880000px;}
.ye2{bottom:417.960000px;}
.y29{bottom:420.480000px;}
.yd0{bottom:420.840000px;}
.y5d{bottom:436.320000px;}
.ycf{bottom:436.680000px;}
.y88{bottom:437.760000px;}
.ye1{bottom:438.840000px;}
.y28{bottom:441.360000px;}
.yce{bottom:453.960000px;}
.y5c{bottom:456.840000px;}
.y87{bottom:458.280000px;}
.ye0{bottom:459.360000px;}
.y27{bottom:461.880000px;}
.ycd{bottom:471.240000px;}
.y5b{bottom:477.720000px;}
.y86{bottom:479.160000px;}
.y26{bottom:482.760000px;}
.ycb{bottom:484.500000px;}
.y5a{bottom:498.240000px;}
.y85{bottom:499.680000px;}
.y25{bottom:503.280000px;}
.yca{bottom:508.500000px;}
.y84{bottom:516.960000px;}
.y59{bottom:519.120000px;}
.y24{bottom:524.160000px;}
.y83{bottom:528.840000px;}
.yc9{bottom:532.500000px;}
.y58{bottom:539.640000px;}
.y23{bottom:544.680000px;}
.y9f{bottom:552.960000px;}
.yc8{bottom:556.500000px;}
.y57{bottom:560.520000px;}
.y82{bottom:561.600000px;}
.y22{bottom:565.560000px;}
.y9e{bottom:573.480000px;}
.yc6{bottom:580.500000px;}
.y56{bottom:581.040000px;}
.y81{bottom:582.480000px;}
.y21{bottom:586.080000px;}
.y9d{bottom:594.360000px;}
.y55{bottom:601.920000px;}
.y80{bottom:603.000000px;}
.yc4{bottom:604.500000px;}
.y20{bottom:611.280000px;}
.y9c{bottom:614.880000px;}
.y54{bottom:622.440000px;}
.y1f{bottom:623.160000px;}
.y7f{bottom:623.880000px;}
.yc3{bottom:628.500000px;}
.y9b{bottom:635.760000px;}
.y1e{bottom:640.440000px;}
.y53{bottom:643.320000px;}
.y7e{bottom:644.400000px;}
.yc2{bottom:652.500000px;}
.y9a{bottom:656.280000px;}
.y1d{bottom:657.720000px;}
.y52{bottom:663.840000px;}
.y7d{bottom:665.280000px;}
.y99{bottom:672.840000px;}
.y1c{bottom:675.000000px;}
.yc0{bottom:678.000000px;}
.y51{bottom:684.720000px;}
.y7c{bottom:685.800000px;}
.y1b{bottom:697.680000px;}
.ybe{bottom:700.500000px;}
.y50{bottom:705.240000px;}
.y7b{bottom:706.680000px;}
.y1a{bottom:709.560000px;}
.ybc{bottom:724.500000px;}
.y4f{bottom:726.120000px;}
.y7a{bottom:727.200000px;}
.y19{bottom:727.560000px;}
.y4e{bottom:746.640000px;}
.y18{bottom:748.080000px;}
.ybb{bottom:750.000000px;}
.y4d{bottom:767.520000px;}
.y79{bottom:768.600000px;}
.y17{bottom:768.960000px;}
.yb9{bottom:774.000000px;}
.y78{bottom:780.480000px;}
.y4c{bottom:788.040000px;}
.y16{bottom:790.560000px;}
.yb7{bottom:798.000000px;}
.y4b{bottom:808.920000px;}
.y77{bottom:809.280000px;}
.y15{bottom:818.280000px;}
.yb6{bottom:822.000000px;}
.y4a{bottom:829.440000px;}
.y76{bottom:829.800000px;}
.y14{bottom:845.640000px;}
.yb5{bottom:846.000000px;}
.y49{bottom:850.320000px;}
.y75{bottom:850.680000px;}
.yb4{bottom:870.000000px;}
.y48{bottom:870.840000px;}
.y74{bottom:871.200000px;}
.y13{bottom:873.360000px;}
.y47{bottom:891.720000px;}
.y73{bottom:892.080000px;}
.yb2{bottom:894.000000px;}
.y12{bottom:899.280000px;}
.y46{bottom:912.240000px;}
.y72{bottom:912.600000px;}
.y11{bottom:916.200000px;}
.yb1{bottom:918.000000px;}
.y45{bottom:933.120000px;}
.y10{bottom:933.480000px;}
.yaf{bottom:942.000000px;}
.yf{bottom:950.760000px;}
.y44{bottom:953.640000px;}
.y71{bottom:954.000000px;}
.yad{bottom:966.000000px;}
.ye{bottom:968.040000px;}
.y43{bottom:974.520000px;}
.y70{bottom:974.880000px;}
.yd{bottom:985.320000px;}
.yab{bottom:990.000000px;}
.y42{bottom:995.040000px;}
.y6f{bottom:995.400000px;}
.yc{bottom:1002.600000px;}
.y6e{bottom:1011.960000px;}
.ya9{bottom:1014.000000px;}
.y41{bottom:1015.920000px;}
.yb{bottom:1022.040000px;}
.y6d{bottom:1023.840000px;}
.y40{bottom:1036.440000px;}
.ya{bottom:1038.600000px;}
.ya7{bottom:1039.500000px;}
.y9{bottom:1053.000000px;}
.y3f{bottom:1057.320000px;}
.ya5{bottom:1066.500000px;}
.y8{bottom:1072.800000px;}
.y3e{bottom:1077.840000px;}
.y7{bottom:1092.960000px;}
.y3d{bottom:1098.720000px;}
.y6{bottom:1112.040000px;}
.y3c{bottom:1119.240000px;}
.y3b{bottom:1140.120000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1160.280000px;}
.y2{bottom:1177.560000px;}
.y1{bottom:1194.840000px;}
.y38{bottom:1195.920000px;}
.hc{height:19.500000px;}
.h1a{height:24.000000px;}
.h1e{height:24.996094px;}
.h1c{height:25.500000px;}
.h19{height:27.000000px;}
.h17{height:28.500000px;}
.hb{height:28.957500px;}
.h8{height:32.994844px;}
.h1d{height:37.940625px;}
.h1b{height:37.994063px;}
.h3{height:40.310156px;}
.h9{height:40.989375px;}
.h4{height:44.149219px;}
.h18{height:47.931328px;}
.hd{height:49.992188px;}
.h2{height:50.439375px;}
.h7{height:50.557500px;}
.h6{height:60.046875px;}
.ha{height:61.734375px;}
.h5{height:65.387813px;}
.h16{height:65.707031px;}
.h12{height:69.397756px;}
.h14{height:103.113281px;}
.h13{height:104.553281px;}
.h15{height:105.993281px;}
.h10{height:107.566875px;}
.hf{height:150.633281px;}
.he{height:157.833281px;}
.h11{height:160.713281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:24.000000px;}
.wd{width:43.500000px;}
.wc{width:54.000000px;}
.w9{width:58.500000px;}
.wa{width:61.500000px;}
.w8{width:64.500000px;}
.we{width:70.500000px;}
.wb{width:72.000000px;}
.w3{width:85.500000px;}
.w7{width:114.000000px;}
.w6{width:118.500000px;}
.w5{width:120.000000px;}
.w10{width:121.500000px;}
.w4{width:132.000000px;}
.wf{width:595.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x18{left:8.340072px;}
.x2f{left:9.652236px;}
.x2e{left:11.955000px;}
.x29{left:14.289960px;}
.x25{left:16.754892px;}
.x23{left:18.737196px;}
.x28{left:23.505000px;}
.x30{left:29.564952px;}
.x20{left:31.343520px;}
.x22{left:32.399160px;}
.x1e{left:34.290840px;}
.x31{left:38.947620px;}
.x1c{left:41.023080px;}
.x34{left:45.367320px;}
.x1a{left:46.517208px;}
.x32{left:48.127452px;}
.x33{left:54.135120px;}
.x5{left:106.200072px;}
.x35{left:138.150144px;}
.xb{left:161.160264px;}
.xa{left:185.388444px;}
.x19{left:192.000000px;}
.x4{left:194.849856px;}
.xc{left:201.366972px;}
.x8{left:216.961668px;}
.x10{left:228.240000px;}
.x24{left:255.000000px;}
.x2d{left:297.015000px;}
.x11{left:298.270404px;}
.x12{left:307.270404px;}
.xd{left:310.998780px;}
.x26{left:312.000000px;}
.x1{left:317.464956px;}
.xe{left:319.998780px;}
.x1b{left:324.000000px;}
.x6{left:336.724380px;}
.x2{left:348.519636px;}
.x3{left:363.303720px;}
.x27{left:372.000000px;}
.xf{left:378.123120px;}
.x7{left:387.861480px;}
.x13{left:400.199760px;}
.x14{left:409.199760px;}
.x9{left:430.500000px;}
.x15{left:435.790080px;}
.x1d{left:442.500000px;}
.x2a{left:496.500000px;}
.x1f{left:559.500000px;}
.x2b{left:603.000000px;}
.x21{left:673.500000px;}
.x2c{left:715.500000px;}
.x16{left:780.840000px;}
.x17{left:786.960360px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.vd{vertical-align:-16.640000pt;}
.va{vertical-align:-8.960000pt;}
.v8{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.280000pt;}
.v5{vertical-align:2.560000pt;}
.vc{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.v4{vertical-align:42.240000pt;}
.vb{vertical-align:43.520000pt;}
.v3{vertical-align:48.640000pt;}
.v7{vertical-align:49.920000pt;}
.v6{vertical-align:51.200000pt;}
.ls1b{letter-spacing:-6.603520pt;}
.ls18{letter-spacing:-3.241728pt;}
.ls20{letter-spacing:-3.171840pt;}
.ls40{letter-spacing:-0.505856pt;}
.ls3f{letter-spacing:-0.452352pt;}
.ls3e{letter-spacing:-0.428032pt;}
.lsf{letter-spacing:-0.411648pt;}
.ls3a{letter-spacing:-0.408576pt;}
.ls8{letter-spacing:-0.370944pt;}
.ls1a{letter-spacing:-0.354816pt;}
.ls41{letter-spacing:-0.350208pt;}
.lse{letter-spacing:-0.338688pt;}
.ls3d{letter-spacing:-0.321024pt;}
.lsd{letter-spacing:-0.301056pt;}
.ls10{letter-spacing:-0.291584pt;}
.ls17{letter-spacing:-0.284928pt;}
.ls1c{letter-spacing:-0.274432pt;}
.ls1f{letter-spacing:-0.268800pt;}
.ls3b{letter-spacing:-0.231168pt;}
.ls21{letter-spacing:-0.225792pt;}
.lsa{letter-spacing:-0.215040pt;}
.ls19{letter-spacing:-0.198912pt;}
.ls11{letter-spacing:-0.139776pt;}
.lsc{letter-spacing:-0.129024pt;}
.ls9{letter-spacing:-0.107520pt;}
.ls36{letter-spacing:-0.025600pt;}
.ls35{letter-spacing:-0.019200pt;}
.ls22{letter-spacing:-0.012800pt;}
.ls34{letter-spacing:-0.006400pt;}
.lsb{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.002432pt;}
.ls28{letter-spacing:0.002560pt;}
.ls1d{letter-spacing:0.012800pt;}
.ls25{letter-spacing:0.019200pt;}
.ls33{letter-spacing:0.026624pt;}
.ls3c{letter-spacing:0.051840pt;}
.ls39{letter-spacing:0.052480pt;}
.ls37{letter-spacing:0.053248pt;}
.ls7{letter-spacing:0.053376pt;}
.ls38{letter-spacing:0.053760pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.106624pt;}
.ls12{letter-spacing:0.143616pt;}
.ls0{letter-spacing:0.168960pt;}
.ls16{letter-spacing:0.181632pt;}
.ls3{letter-spacing:0.190080pt;}
.ls4{letter-spacing:0.211200pt;}
.ls6{letter-spacing:0.213248pt;}
.ls13{letter-spacing:0.215424pt;}
.ls15{letter-spacing:0.253440pt;}
.ls29{letter-spacing:0.292736pt;}
.ls14{letter-spacing:0.316800pt;}
.ls2f{letter-spacing:0.551552pt;}
.ls2c{letter-spacing:0.768000pt;}
.ls2e{letter-spacing:0.842240pt;}
.ls2d{letter-spacing:1.938560pt;}
.ls31{letter-spacing:5.313024pt;}
.ls5{letter-spacing:6.075520pt;}
.ls30{letter-spacing:8.280832pt;}
.ls42{letter-spacing:10.539520pt;}
.ls32{letter-spacing:10.732416pt;}
.ls24{letter-spacing:14.227200pt;}
.ls2a{letter-spacing:17.170560pt;}
.ls27{letter-spacing:17.781760pt;}
.ls26{letter-spacing:17.781888pt;}
.ls1e{letter-spacing:94.327040pt;}
.ls2b{letter-spacing:124.781440pt;}
.ws4{word-spacing:-21.148416pt;}
.ws3{word-spacing:-21.028352pt;}
.ws19{word-spacing:-16.012800pt;}
.ws12{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.987200pt;}
.ws0{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.310976pt;}
.wsd{word-spacing:-13.300224pt;}
.ws1{word-spacing:-13.224960pt;}
.ws1f{word-spacing:-13.208832pt;}
.ws21{word-spacing:-13.171200pt;}
.ws20{word-spacing:-13.155072pt;}
.wsc{word-spacing:-13.138944pt;}
.ws2{word-spacing:-13.101312pt;}
.ws1e{word-spacing:-13.031424pt;}
.ws24{word-spacing:-12.160000pt;}
.ws11{word-spacing:-11.923968pt;}
.ws23{word-spacing:-11.838976pt;}
.ws25{word-spacing:-11.731968pt;}
.ws26{word-spacing:-11.707648pt;}
.ws27{word-spacing:-11.654144pt;}
.ws7{word-spacing:-10.876800pt;}
.ws8{word-spacing:-10.813440pt;}
.ws6{word-spacing:-10.775424pt;}
.ws9{word-spacing:-10.771200pt;}
.wsa{word-spacing:-10.750080pt;}
.ws5{word-spacing:-10.728960pt;}
.wsb{word-spacing:-10.560000pt;}
.ws10{word-spacing:-10.268160pt;}
.ws28{word-spacing:-8.000000pt;}
.ws22{word-spacing:-0.086400pt;}
.ws1a{word-spacing:-0.083200pt;}
.ws1c{word-spacing:-0.076800pt;}
.ws14{word-spacing:-0.064000pt;}
.ws16{word-spacing:-0.057600pt;}
.ws15{word-spacing:-0.051200pt;}
.ws18{word-spacing:-0.044800pt;}
.ws1b{word-spacing:-0.038400pt;}
.wse{word-spacing:0.000000pt;}
.ws17{word-spacing:120.965248pt;}
.ws1d{word-spacing:143.584000pt;}
._10{margin-left:-6.346240pt;}
._11{margin-left:-4.631040pt;}
._e{margin-left:-3.258880pt;}
._17{margin-left:-1.952768pt;}
._4{margin-left:-0.892416pt;}
._0{width:0.913920pt;}
._8{width:2.312960pt;}
._6{width:3.278720pt;}
._a{width:4.622080pt;}
._12{width:6.346240pt;}
._19{width:7.682560pt;}
._b{width:8.867840pt;}
._9{width:9.973120pt;}
._7{width:11.560960pt;}
._1e{width:12.492800pt;}
._16{width:13.478400pt;}
._1b{width:14.400000pt;}
._21{width:15.788032pt;}
._1c{width:16.985600pt;}
._18{width:17.945600pt;}
._20{width:19.353984pt;}
._1f{width:20.584064pt;}
._22{width:22.195200pt;}
._24{width:23.664512pt;}
._28{width:24.952704pt;}
._1a{width:27.001600pt;}
._23{width:27.961600pt;}
._1d{width:29.203200pt;}
._f{width:30.273280pt;}
._c{width:35.247360pt;}
._2a{width:36.317440pt;}
._d{width:37.477120pt;}
._2b{width:39.052800pt;}
._29{width:40.108800pt;}
._2c{width:44.160000pt;}
._2e{width:45.094400pt;}
._2d{width:45.990400pt;}
._14{width:48.025600pt;}
._15{width:49.998080pt;}
._25{width:115.052800pt;}
._2f{width:138.694400pt;}
._26{width:139.820800pt;}
._3{width:175.759488pt;}
._13{width:182.545792pt;}
._27{width:517.331200pt;}
._5{width:824.838656pt;}
._1{width:882.250752pt;}
._2{width:1197.450240pt;}
.fs3{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs8{font-size:44.800000pt;}
.fs9{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:67.594842pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:4.320000pt;}
.yc1{bottom:9.493333pt;}
.yba{bottom:9.600000pt;}
.yb8{bottom:9.706667pt;}
.yb3{bottom:9.813333pt;}
.yac{bottom:9.920000pt;}
.yb0{bottom:10.026667pt;}
.yae{bottom:10.133333pt;}
.ycc{bottom:10.613333pt;}
.yc7{bottom:10.720000pt;}
.yc5{bottom:10.826667pt;}
.ybf{bottom:10.933333pt;}
.yaa{bottom:10.986667pt;}
.ybd{bottom:11.040000pt;}
.ya6{bottom:11.680000pt;}
.ya8{bottom:12.000000pt;}
.y4{bottom:47.360000pt;}
.y39{bottom:52.000000pt;}
.y98{bottom:103.360000pt;}
.ydf{bottom:108.160000pt;}
.y6c{bottom:112.000000pt;}
.yf0{bottom:113.920000pt;}
.y37{bottom:116.160000pt;}
.y97{bottom:121.600000pt;}
.ya4{bottom:124.160000pt;}
.yde{bottom:126.720000pt;}
.y6b{bottom:130.240000pt;}
.yef{bottom:132.480000pt;}
.y36{bottom:134.720000pt;}
.y96{bottom:139.840000pt;}
.ya3{bottom:142.720000pt;}
.ydd{bottom:144.960000pt;}
.y6a{bottom:148.800000pt;}
.yee{bottom:150.720000pt;}
.y35{bottom:152.960000pt;}
.y95{bottom:159.680000pt;}
.ya2{bottom:160.960000pt;}
.ydc{bottom:163.520000pt;}
.y69{bottom:167.040000pt;}
.yed{bottom:169.280000pt;}
.y34{bottom:171.520000pt;}
.ya1{bottom:179.520000pt;}
.ydb{bottom:181.760000pt;}
.y94{bottom:184.640000pt;}
.y68{bottom:185.600000pt;}
.y93{bottom:186.880000pt;}
.yec{bottom:187.520000pt;}
.y33{bottom:189.760000pt;}
.ya0{bottom:194.240000pt;}
.yda{bottom:200.320000pt;}
.y67{bottom:203.840000pt;}
.yeb{bottom:206.080000pt;}
.y32{bottom:208.320000pt;}
.y91{bottom:208.960000pt;}
.yd9{bottom:218.560000pt;}
.y92{bottom:221.120000pt;}
.y66{bottom:222.400000pt;}
.yea{bottom:224.320000pt;}
.y31{bottom:226.560000pt;}
.yd8{bottom:237.120000pt;}
.y65{bottom:240.640000pt;}
.y90{bottom:241.920000pt;}
.ye9{bottom:242.880000pt;}
.y30{bottom:245.120000pt;}
.yd7{bottom:255.360000pt;}
.y64{bottom:258.880000pt;}
.y8f{bottom:260.160000pt;}
.ye8{bottom:261.120000pt;}
.y2f{bottom:263.360000pt;}
.yd6{bottom:273.920000pt;}
.y63{bottom:277.440000pt;}
.y8e{bottom:278.720000pt;}
.ye7{bottom:279.680000pt;}
.y2e{bottom:281.920000pt;}
.yd5{bottom:292.160000pt;}
.y62{bottom:295.680000pt;}
.y8d{bottom:296.960000pt;}
.ye6{bottom:297.920000pt;}
.y2d{bottom:300.160000pt;}
.yd4{bottom:310.720000pt;}
.y61{bottom:314.240000pt;}
.y8c{bottom:315.520000pt;}
.ye5{bottom:316.480000pt;}
.y2c{bottom:318.720000pt;}
.yd3{bottom:328.960000pt;}
.y60{bottom:332.480000pt;}
.y8b{bottom:333.760000pt;}
.ye4{bottom:334.720000pt;}
.y2b{bottom:336.960000pt;}
.yd2{bottom:350.720000pt;}
.y5f{bottom:351.040000pt;}
.y8a{bottom:352.320000pt;}
.ye3{bottom:353.280000pt;}
.y2a{bottom:355.520000pt;}
.yd1{bottom:364.480000pt;}
.y5e{bottom:369.280000pt;}
.y89{bottom:370.560000pt;}
.ye2{bottom:371.520000pt;}
.y29{bottom:373.760000pt;}
.yd0{bottom:374.080000pt;}
.y5d{bottom:387.840000pt;}
.ycf{bottom:388.160000pt;}
.y88{bottom:389.120000pt;}
.ye1{bottom:390.080000pt;}
.y28{bottom:392.320000pt;}
.yce{bottom:403.520000pt;}
.y5c{bottom:406.080000pt;}
.y87{bottom:407.360000pt;}
.ye0{bottom:408.320000pt;}
.y27{bottom:410.560000pt;}
.ycd{bottom:418.880000pt;}
.y5b{bottom:424.640000pt;}
.y86{bottom:425.920000pt;}
.y26{bottom:429.120000pt;}
.ycb{bottom:430.666667pt;}
.y5a{bottom:442.880000pt;}
.y85{bottom:444.160000pt;}
.y25{bottom:447.360000pt;}
.yca{bottom:452.000000pt;}
.y84{bottom:459.520000pt;}
.y59{bottom:461.440000pt;}
.y24{bottom:465.920000pt;}
.y83{bottom:470.080000pt;}
.yc9{bottom:473.333333pt;}
.y58{bottom:479.680000pt;}
.y23{bottom:484.160000pt;}
.y9f{bottom:491.520000pt;}
.yc8{bottom:494.666667pt;}
.y57{bottom:498.240000pt;}
.y82{bottom:499.200000pt;}
.y22{bottom:502.720000pt;}
.y9e{bottom:509.760000pt;}
.yc6{bottom:516.000000pt;}
.y56{bottom:516.480000pt;}
.y81{bottom:517.760000pt;}
.y21{bottom:520.960000pt;}
.y9d{bottom:528.320000pt;}
.y55{bottom:535.040000pt;}
.y80{bottom:536.000000pt;}
.yc4{bottom:537.333333pt;}
.y20{bottom:543.360000pt;}
.y9c{bottom:546.560000pt;}
.y54{bottom:553.280000pt;}
.y1f{bottom:553.920000pt;}
.y7f{bottom:554.560000pt;}
.yc3{bottom:558.666667pt;}
.y9b{bottom:565.120000pt;}
.y1e{bottom:569.280000pt;}
.y53{bottom:571.840000pt;}
.y7e{bottom:572.800000pt;}
.yc2{bottom:580.000000pt;}
.y9a{bottom:583.360000pt;}
.y1d{bottom:584.640000pt;}
.y52{bottom:590.080000pt;}
.y7d{bottom:591.360000pt;}
.y99{bottom:598.080000pt;}
.y1c{bottom:600.000000pt;}
.yc0{bottom:602.666667pt;}
.y51{bottom:608.640000pt;}
.y7c{bottom:609.600000pt;}
.y1b{bottom:620.160000pt;}
.ybe{bottom:622.666667pt;}
.y50{bottom:626.880000pt;}
.y7b{bottom:628.160000pt;}
.y1a{bottom:630.720000pt;}
.ybc{bottom:644.000000pt;}
.y4f{bottom:645.440000pt;}
.y7a{bottom:646.400000pt;}
.y19{bottom:646.720000pt;}
.y4e{bottom:663.680000pt;}
.y18{bottom:664.960000pt;}
.ybb{bottom:666.666667pt;}
.y4d{bottom:682.240000pt;}
.y79{bottom:683.200000pt;}
.y17{bottom:683.520000pt;}
.yb9{bottom:688.000000pt;}
.y78{bottom:693.760000pt;}
.y4c{bottom:700.480000pt;}
.y16{bottom:702.720000pt;}
.yb7{bottom:709.333333pt;}
.y4b{bottom:719.040000pt;}
.y77{bottom:719.360000pt;}
.y15{bottom:727.360000pt;}
.yb6{bottom:730.666667pt;}
.y4a{bottom:737.280000pt;}
.y76{bottom:737.600000pt;}
.y14{bottom:751.680000pt;}
.yb5{bottom:752.000000pt;}
.y49{bottom:755.840000pt;}
.y75{bottom:756.160000pt;}
.yb4{bottom:773.333333pt;}
.y48{bottom:774.080000pt;}
.y74{bottom:774.400000pt;}
.y13{bottom:776.320000pt;}
.y47{bottom:792.640000pt;}
.y73{bottom:792.960000pt;}
.yb2{bottom:794.666667pt;}
.y12{bottom:799.360000pt;}
.y46{bottom:810.880000pt;}
.y72{bottom:811.200000pt;}
.y11{bottom:814.400000pt;}
.yb1{bottom:816.000000pt;}
.y45{bottom:829.440000pt;}
.y10{bottom:829.760000pt;}
.yaf{bottom:837.333333pt;}
.yf{bottom:845.120000pt;}
.y44{bottom:847.680000pt;}
.y71{bottom:848.000000pt;}
.yad{bottom:858.666667pt;}
.ye{bottom:860.480000pt;}
.y43{bottom:866.240000pt;}
.y70{bottom:866.560000pt;}
.yd{bottom:875.840000pt;}
.yab{bottom:880.000000pt;}
.y42{bottom:884.480000pt;}
.y6f{bottom:884.800000pt;}
.yc{bottom:891.200000pt;}
.y6e{bottom:899.520000pt;}
.ya9{bottom:901.333333pt;}
.y41{bottom:903.040000pt;}
.yb{bottom:908.480000pt;}
.y6d{bottom:910.080000pt;}
.y40{bottom:921.280000pt;}
.ya{bottom:923.200000pt;}
.ya7{bottom:924.000000pt;}
.y9{bottom:936.000000pt;}
.y3f{bottom:939.840000pt;}
.ya5{bottom:948.000000pt;}
.y8{bottom:953.600000pt;}
.y3e{bottom:958.080000pt;}
.y7{bottom:971.520000pt;}
.y3d{bottom:976.640000pt;}
.y6{bottom:988.480000pt;}
.y3c{bottom:994.880000pt;}
.y3b{bottom:1013.440000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1031.360000pt;}
.y2{bottom:1046.720000pt;}
.y1{bottom:1062.080000pt;}
.y38{bottom:1063.040000pt;}
.hc{height:17.333333pt;}
.h1a{height:21.333333pt;}
.h1e{height:22.218750pt;}
.h1c{height:22.666667pt;}
.h19{height:24.000000pt;}
.h17{height:25.333333pt;}
.hb{height:25.740000pt;}
.h8{height:29.328750pt;}
.h1d{height:33.725000pt;}
.h1b{height:33.772500pt;}
.h3{height:35.831250pt;}
.h9{height:36.435000pt;}
.h4{height:39.243750pt;}
.h18{height:42.605625pt;}
.hd{height:44.437500pt;}
.h2{height:44.835000pt;}
.h7{height:44.940000pt;}
.h6{height:53.375000pt;}
.ha{height:54.875000pt;}
.h5{height:58.122500pt;}
.h16{height:58.406250pt;}
.h12{height:61.686894pt;}
.h14{height:91.656250pt;}
.h13{height:92.936250pt;}
.h15{height:94.216250pt;}
.h10{height:95.615000pt;}
.hf{height:133.896250pt;}
.he{height:140.296250pt;}
.h11{height:142.856250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:21.333333pt;}
.wd{width:38.666667pt;}
.wc{width:48.000000pt;}
.w9{width:52.000000pt;}
.wa{width:54.666667pt;}
.w8{width:57.333333pt;}
.we{width:62.666667pt;}
.wb{width:64.000000pt;}
.w3{width:76.000000pt;}
.w7{width:101.333333pt;}
.w6{width:105.333333pt;}
.w5{width:106.666667pt;}
.w10{width:108.000000pt;}
.w4{width:117.333333pt;}
.wf{width:529.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x18{left:7.413397pt;}
.x2f{left:8.579765pt;}
.x2e{left:10.626667pt;}
.x29{left:12.702187pt;}
.x25{left:14.893237pt;}
.x23{left:16.655285pt;}
.x28{left:20.893333pt;}
.x30{left:26.279957pt;}
.x20{left:27.860907pt;}
.x22{left:28.799253pt;}
.x1e{left:30.480747pt;}
.x31{left:34.620107pt;}
.x1c{left:36.464960pt;}
.x34{left:40.326507pt;}
.x1a{left:41.348629pt;}
.x32{left:42.779957pt;}
.x33{left:48.120107pt;}
.x5{left:94.400064pt;}
.x35{left:122.800128pt;}
.xb{left:143.253568pt;}
.xa{left:164.789728pt;}
.x19{left:170.666667pt;}
.x4{left:173.199872pt;}
.xc{left:178.992864pt;}
.x8{left:192.854816pt;}
.x10{left:202.880000pt;}
.x24{left:226.666667pt;}
.x2d{left:264.013333pt;}
.x11{left:265.129248pt;}
.x12{left:273.129248pt;}
.xd{left:276.443360pt;}
.x26{left:277.333333pt;}
.x1{left:282.191072pt;}
.xe{left:284.443360pt;}
.x1b{left:288.000000pt;}
.x6{left:299.310560pt;}
.x2{left:309.795232pt;}
.x3{left:322.936640pt;}
.x27{left:330.666667pt;}
.xf{left:336.109440pt;}
.x7{left:344.765760pt;}
.x13{left:355.733120pt;}
.x14{left:363.733120pt;}
.x9{left:382.666667pt;}
.x15{left:387.368960pt;}
.x1d{left:393.333333pt;}
.x2a{left:441.333333pt;}
.x1f{left:497.333333pt;}
.x2b{left:536.000000pt;}
.x21{left:598.666667pt;}
.x2c{left:636.000000pt;}
.x16{left:694.080000pt;}
.x17{left:699.520320pt;}
}




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