
    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_5ecb2c5857d6ad6be63aa637.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3f9ca3d36f683bdf87644532.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_f7ebb0a63ccff56ea99810bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.877930;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_5a90a6c36db21d4befced3e4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_09b22336635b90461626a4b5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_d60bf840c357a993e9b76b9b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b857ee9c3f8bdf876e2d5a26.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6a24f55bdc053be975b38ae9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.692871;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_52d2b7d5b126da7093cd9db5.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_1dd6aa7a64d66b70953bc1b6.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1006b442ce346a9e31ff8da3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_95804d91c7f52016c04ea4af.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.706055;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_99ac029912aaf4ebd6992a7b.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_da734d5ca74b4e884b3f7323.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_a1991216b3765829219e7fa9.woff2')format("woff");}.fff{font-family:fff;line-height:0.709473;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_5a2d0c8a20674422ac49f62c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.784621;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_3a9be665a6eea2e62a7b7b83.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.931152;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_63cf04dbc229febb6bc44b83.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.808105;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_a1186f37b812264d1106c5f5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.716797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.600000px;}
.v4{vertical-align:-10.080000px;}
.v6{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.v5{vertical-align:36.000000px;}
.v3{vertical-align:41.760000px;}
.ls2c{letter-spacing:-5.615136px;}
.ls25{letter-spacing:-4.753728px;}
.ls2b{letter-spacing:-0.482400px;}
.ls1a{letter-spacing:-0.463104px;}
.ls13{letter-spacing:-0.417312px;}
.ls27{letter-spacing:-0.399168px;}
.ls29{letter-spacing:-0.385920px;}
.ls19{letter-spacing:-0.381024px;}
.ls18{letter-spacing:-0.338688px;}
.ls1b{letter-spacing:-0.328032px;}
.ls21{letter-spacing:-0.320544px;}
.ls28{letter-spacing:-0.318384px;}
.ls22{letter-spacing:-0.302400px;}
.ls23{letter-spacing:-0.260064px;}
.ls30{letter-spacing:-0.254016px;}
.ls17{letter-spacing:-0.241920px;}
.ls24{letter-spacing:-0.223776px;}
.ls2a{letter-spacing:-0.173664px;}
.ls15{letter-spacing:-0.157248px;}
.ls16{letter-spacing:-0.145152px;}
.ls26{letter-spacing:-0.120960px;}
.ls3c{letter-spacing:-0.021600px;}
.ls2d{letter-spacing:-0.014400px;}
.ls14{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.000576px;}
.ls12{letter-spacing:0.014400px;}
.ls33{letter-spacing:0.035136px;}
.ls2e{letter-spacing:0.058320px;}
.ls10{letter-spacing:0.060048px;}
.ls11{letter-spacing:0.090000px;}
.ls39{letter-spacing:0.100224px;}
.ls3{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.119952px;}
.ls36{letter-spacing:0.120096px;}
.ls5{letter-spacing:0.120960px;}
.ls3d{letter-spacing:0.123552px;}
.ls41{letter-spacing:0.142560px;}
.ls35{letter-spacing:0.144000px;}
.ls3a{letter-spacing:0.158688px;}
.ls1c{letter-spacing:0.161568px;}
.ls0{letter-spacing:0.190080px;}
.ls3f{letter-spacing:0.203040px;}
.ls1f{letter-spacing:0.204336px;}
.ls4{letter-spacing:0.213840px;}
.ls2{letter-spacing:0.223344px;}
.ls6{letter-spacing:0.237600px;}
.lse{letter-spacing:0.239904px;}
.lsf{letter-spacing:0.240048px;}
.ls37{letter-spacing:0.240480px;}
.ls1d{letter-spacing:0.242352px;}
.ls3e{letter-spacing:0.275616px;}
.ls1e{letter-spacing:0.285120px;}
.ls3b{letter-spacing:0.297360px;}
.ls20{letter-spacing:0.356400px;}
.ls43{letter-spacing:0.362880px;}
.ls38{letter-spacing:0.388080px;}
.ls40{letter-spacing:0.413280px;}
.ls34{letter-spacing:0.440640px;}
.ls42{letter-spacing:0.524160px;}
.ls7{letter-spacing:1.062000px;}
.ls8{letter-spacing:3.668112px;}
.ls9{letter-spacing:3.669120px;}
.ls2f{letter-spacing:13.989600px;}
.ls31{letter-spacing:14.254560px;}
.ls32{letter-spacing:20.460960px;}
.lsc{letter-spacing:60.534864px;}
.lsd{letter-spacing:68.479200px;}
.lsa{letter-spacing:75.019104px;}
.lsb{letter-spacing:152.814096px;}
.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;}
}
.ws12{word-spacing:-24.120000px;}
.ws10{word-spacing:-23.946336px;}
.wsf{word-spacing:-23.801616px;}
.ws4{word-spacing:-23.791968px;}
.ws3{word-spacing:-23.656896px;}
.ws11{word-spacing:-23.637600px;}
.ws25{word-spacing:-18.014400px;}
.ws17{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.985600px;}
.ws0{word-spacing:-15.120000px;}
.ws16{word-spacing:-14.974848px;}
.wse{word-spacing:-14.962752px;}
.ws1{word-spacing:-14.878080px;}
.wsd{word-spacing:-14.781312px;}
.ws2{word-spacing:-14.738976px;}
.ws14{word-spacing:-14.720832px;}
.ws19{word-spacing:-13.414464px;}
.wsb{word-spacing:-12.236400px;}
.ws8{word-spacing:-12.165120px;}
.ws23{word-spacing:-12.155616px;}
.ws6{word-spacing:-12.122352px;}
.ws9{word-spacing:-12.117600px;}
.ws7{word-spacing:-12.103344px;}
.wsa{word-spacing:-12.093840px;}
.ws24{word-spacing:-12.084336px;}
.ws5{word-spacing:-12.070080px;}
.ws22{word-spacing:-12.003552px;}
.wsc{word-spacing:-11.880000px;}
.ws27{word-spacing:-0.574560px;}
.ws29{word-spacing:-0.463680px;}
.ws1c{word-spacing:-0.438480px;}
.ws28{word-spacing:-0.413280px;}
.ws2a{word-spacing:-0.347760px;}
.ws1e{word-spacing:-0.200448px;}
.ws1d{word-spacing:-0.141984px;}
.ws15{word-spacing:-0.097200px;}
.ws1a{word-spacing:-0.072000px;}
.ws21{word-spacing:-0.050400px;}
.ws18{word-spacing:0.000000px;}
.ws1f{word-spacing:13.268160px;}
.ws26{word-spacing:15.907392px;}
.ws1b{word-spacing:15.907680px;}
.ws20{word-spacing:15.945120px;}
.ws2b{word-spacing:15.953760px;}
._a{margin-left:-12.349440px;}
._10{margin-left:-8.200800px;}
._b{margin-left:-7.139520px;}
._f{margin-left:-5.209920px;}
._21{margin-left:-4.058208px;}
._9{margin-left:-3.000096px;}
._1{margin-left:-1.102896px;}
._0{width:1.028160px;}
._5{width:2.348208px;}
._6{width:4.052160px;}
._7{width:5.491152px;}
._18{width:6.820848px;}
._16{width:7.838352px;}
._8{width:9.024048px;}
._1a{width:10.058400px;}
._1f{width:11.239200px;}
._26{width:12.477600px;}
._20{width:13.960800px;}
._19{width:15.310224px;}
._1e{width:16.502400px;}
._15{width:19.022400px;}
._17{width:20.147616px;}
._22{width:21.185568px;}
._28{width:22.557600px;}
._2a{width:24.112800px;}
._24{width:25.151184px;}
._25{width:26.732016px;}
._2d{width:28.390752px;}
._27{width:29.412000px;}
._29{width:30.757104px;}
._1d{width:31.761936px;}
._2c{width:33.038064px;}
._3a{width:34.244208px;}
._2e{width:38.026656px;}
._34{width:39.103200px;}
._35{width:40.122144px;}
._23{width:44.884800px;}
._2b{width:50.349600px;}
._33{width:53.704800px;}
._32{width:60.689664px;}
._38{width:62.856000px;}
._e{width:67.072032px;}
._13{width:69.016320px;}
._36{width:70.784496px;}
._c{width:72.366336px;}
._14{width:74.137248px;}
._d{width:75.640320px;}
._31{width:91.944000px;}
._30{width:96.350400px;}
._39{width:115.984800px;}
._37{width:138.304800px;}
._12{width:148.000320px;}
._11{width:153.042480px;}
._2f{width:189.532800px;}
._1b{width:446.825952px;}
._1c{width:462.496320px;}
._4{width:889.370928px;}
._2{width:992.890944px;}
._3{width:1347.131520px;}
.fc1{color:rgb(0,120,212);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs6{font-size:44.640000px;}
.fs4{font-size:47.520000px;}
.fs7{font-size:50.400000px;}
.fs0{font-size:60.480000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:4.860000px;}
.y4{bottom:53.280000px;}
.y3a{bottom:58.500000px;}
.y9e{bottom:113.400000px;}
.yc6{bottom:114.120000px;}
.y89{bottom:114.480000px;}
.y105{bottom:118.800000px;}
.y110{bottom:119.880000px;}
.y38{bottom:126.000000px;}
.y9d{bottom:133.920000px;}
.yc5{bottom:134.640000px;}
.y88{bottom:135.000000px;}
.y104{bottom:139.680000px;}
.y10f{bottom:140.400000px;}
.ye6{bottom:144.000000px;}
.y68{bottom:146.520000px;}
.y37{bottom:146.880000px;}
.y9c{bottom:154.800000px;}
.yc4{bottom:155.520000px;}
.y87{bottom:155.880000px;}
.y103{bottom:160.200000px;}
.y10e{bottom:161.280000px;}
.ye5{bottom:164.880000px;}
.y36{bottom:167.400000px;}
.y9b{bottom:175.320000px;}
.yc3{bottom:176.040000px;}
.y86{bottom:176.400000px;}
.y102{bottom:181.080000px;}
.y10d{bottom:181.800000px;}
.ye4{bottom:185.400000px;}
.y67{bottom:187.920000px;}
.y35{bottom:188.280000px;}
.y9a{bottom:196.200000px;}
.yc2{bottom:196.920000px;}
.y85{bottom:197.280000px;}
.y101{bottom:201.600000px;}
.y10c{bottom:202.680000px;}
.ye3{bottom:206.280000px;}
.y34{bottom:208.800000px;}
.y99{bottom:216.720000px;}
.yc1{bottom:217.440000px;}
.y84{bottom:217.800000px;}
.y100{bottom:222.480000px;}
.y10b{bottom:223.200000px;}
.ye2{bottom:226.800000px;}
.y66{bottom:229.320000px;}
.y33{bottom:229.680000px;}
.y98{bottom:237.600000px;}
.yc0{bottom:238.320000px;}
.y83{bottom:238.680000px;}
.yff{bottom:243.000000px;}
.y10a{bottom:244.080000px;}
.ye1{bottom:247.680000px;}
.y32{bottom:250.200000px;}
.y97{bottom:258.120000px;}
.ybf{bottom:258.840000px;}
.y82{bottom:259.200000px;}
.yfe{bottom:263.880000px;}
.y109{bottom:264.600000px;}
.ye0{bottom:268.200000px;}
.y65{bottom:270.720000px;}
.y31{bottom:271.080000px;}
.y96{bottom:279.000000px;}
.ybe{bottom:279.720000px;}
.y81{bottom:280.080000px;}
.yfd{bottom:284.400000px;}
.y108{bottom:285.480000px;}
.ydf{bottom:289.080000px;}
.y64{bottom:291.240000px;}
.y30{bottom:291.600000px;}
.y95{bottom:299.520000px;}
.ybd{bottom:300.240000px;}
.y80{bottom:300.600000px;}
.yfc{bottom:305.280000px;}
.y107{bottom:306.000000px;}
.yde{bottom:309.600000px;}
.y63{bottom:312.120000px;}
.y2f{bottom:312.480000px;}
.y94{bottom:320.400000px;}
.ybc{bottom:321.120000px;}
.y7f{bottom:321.480000px;}
.y106{bottom:322.560000px;}
.yfb{bottom:325.800000px;}
.ydd{bottom:330.480000px;}
.y62{bottom:332.640000px;}
.y2e{bottom:333.000000px;}
.y93{bottom:340.920000px;}
.ybb{bottom:341.640000px;}
.y7e{bottom:342.000000px;}
.yfa{bottom:346.680000px;}
.ydc{bottom:351.000000px;}
.y61{bottom:353.520000px;}
.y2d{bottom:353.880000px;}
.y92{bottom:361.800000px;}
.yba{bottom:362.520000px;}
.y7d{bottom:362.880000px;}
.yf9{bottom:367.200000px;}
.ydb{bottom:371.880000px;}
.y60{bottom:374.040000px;}
.y2c{bottom:374.400000px;}
.y91{bottom:382.320000px;}
.yb9{bottom:383.040000px;}
.y7c{bottom:383.400000px;}
.yf8{bottom:388.080000px;}
.yda{bottom:392.400000px;}
.y5f{bottom:394.920000px;}
.y2b{bottom:395.280000px;}
.y90{bottom:403.200000px;}
.yb8{bottom:403.920000px;}
.y7b{bottom:404.280000px;}
.yf7{bottom:408.600000px;}
.yd9{bottom:413.280000px;}
.y5e{bottom:415.440000px;}
.y2a{bottom:415.800000px;}
.y8f{bottom:423.720000px;}
.yb7{bottom:424.440000px;}
.y7a{bottom:424.800000px;}
.yf6{bottom:429.480000px;}
.yd8{bottom:433.800000px;}
.y5d{bottom:436.320000px;}
.y29{bottom:436.680000px;}
.y8e{bottom:444.600000px;}
.yb6{bottom:445.320000px;}
.y79{bottom:445.680000px;}
.yf5{bottom:450.000000px;}
.yd7{bottom:454.680000px;}
.y5c{bottom:456.840000px;}
.y28{bottom:457.200000px;}
.y8d{bottom:465.120000px;}
.yb5{bottom:465.840000px;}
.y78{bottom:466.200000px;}
.yf4{bottom:470.880000px;}
.yd6{bottom:475.200000px;}
.y5b{bottom:477.720000px;}
.y27{bottom:478.080000px;}
.y8c{bottom:486.000000px;}
.yb4{bottom:486.720000px;}
.y77{bottom:487.080000px;}
.yf3{bottom:491.400000px;}
.yd5{bottom:496.080000px;}
.y5a{bottom:498.240000px;}
.y26{bottom:498.600000px;}
.y8b{bottom:505.440000px;}
.yb3{bottom:507.240000px;}
.y76{bottom:507.600000px;}
.yf2{bottom:512.280000px;}
.y8a{bottom:514.440000px;}
.yd4{bottom:516.600000px;}
.y59{bottom:519.120000px;}
.y25{bottom:519.480000px;}
.yb2{bottom:528.120000px;}
.y75{bottom:528.480000px;}
.yf1{bottom:532.800000px;}
.yd3{bottom:537.480000px;}
.y58{bottom:539.640000px;}
.y24{bottom:540.000000px;}
.yb1{bottom:548.640000px;}
.y74{bottom:549.000000px;}
.yf0{bottom:553.680000px;}
.yd2{bottom:558.000000px;}
.y23{bottom:559.800000px;}
.y57{bottom:560.520000px;}
.yb0{bottom:569.520000px;}
.y73{bottom:569.880000px;}
.yef{bottom:574.200000px;}
.y22{bottom:577.080000px;}
.yd1{bottom:578.880000px;}
.y56{bottom:581.040000px;}
.yaf{bottom:590.040000px;}
.y72{bottom:590.400000px;}
.y21{bottom:594.360000px;}
.yee{bottom:595.080000px;}
.yd0{bottom:599.400000px;}
.y55{bottom:601.920000px;}
.yae{bottom:610.920000px;}
.y71{bottom:611.280000px;}
.y20{bottom:611.640000px;}
.yed{bottom:615.600000px;}
.ycf{bottom:620.280000px;}
.y54{bottom:622.440000px;}
.y1f{bottom:628.920000px;}
.yad{bottom:631.440000px;}
.y70{bottom:631.800000px;}
.yec{bottom:636.480000px;}
.yce{bottom:640.800000px;}
.y53{bottom:643.320000px;}
.y1e{bottom:646.200000px;}
.yac{bottom:652.320000px;}
.y6f{bottom:652.680000px;}
.yeb{bottom:657.000000px;}
.ycd{bottom:661.680000px;}
.y1d{bottom:663.120000px;}
.y52{bottom:663.840000px;}
.yab{bottom:672.840000px;}
.y6e{bottom:673.200000px;}
.yea{bottom:677.880000px;}
.ycc{bottom:682.200000px;}
.y51{bottom:684.720000px;}
.y1c{bottom:685.800000px;}
.yaa{bottom:693.720000px;}
.y6d{bottom:694.080000px;}
.y1b{bottom:697.680000px;}
.ye9{bottom:698.400000px;}
.ycb{bottom:703.080000px;}
.y50{bottom:705.240000px;}
.ya9{bottom:714.240000px;}
.y6c{bottom:714.600000px;}
.ye8{bottom:719.280000px;}
.y1a{bottom:720.360000px;}
.yca{bottom:723.600000px;}
.y4f{bottom:726.120000px;}
.ya8{bottom:734.760000px;}
.y6b{bottom:735.480000px;}
.ye7{bottom:735.840000px;}
.y19{bottom:737.640000px;}
.yc9{bottom:744.480000px;}
.y4e{bottom:746.640000px;}
.y18{bottom:749.520000px;}
.ya7{bottom:755.640000px;}
.y6a{bottom:756.000000px;}
.yc8{bottom:765.000000px;}
.y17{bottom:767.520000px;}
.y69{bottom:772.560000px;}
.ya6{bottom:776.160000px;}
.yc7{bottom:781.560000px;}
.y4d{bottom:788.040000px;}
.y16{bottom:788.400000px;}
.ya5{bottom:797.040000px;}
.y15{bottom:808.200000px;}
.y4c{bottom:808.920000px;}
.ya4{bottom:817.560000px;}
.y14{bottom:827.280000px;}
.y4b{bottom:829.440000px;}
.ya3{bottom:838.440000px;}
.y4a{bottom:850.320000px;}
.y13{bottom:855.000000px;}
.ya2{bottom:858.960000px;}
.y49{bottom:870.840000px;}
.ya1{bottom:879.840000px;}
.y12{bottom:882.360000px;}
.y48{bottom:891.720000px;}
.ya0{bottom:897.840000px;}
.y9f{bottom:906.840000px;}
.y11{bottom:910.080000px;}
.y47{bottom:912.240000px;}
.y46{bottom:933.120000px;}
.y10{bottom:935.640000px;}
.yf{bottom:952.920000px;}
.y45{bottom:953.640000px;}
.ye{bottom:970.200000px;}
.y44{bottom:974.520000px;}
.yd{bottom:987.480000px;}
.y43{bottom:995.040000px;}
.yc{bottom:1004.760000px;}
.y42{bottom:1015.920000px;}
.yb{bottom:1022.040000px;}
.y41{bottom:1036.440000px;}
.ya{bottom:1041.480000px;}
.y40{bottom:1057.320000px;}
.y9{bottom:1058.040000px;}
.y8{bottom:1072.440000px;}
.y3f{bottom:1077.840000px;}
.y7{bottom:1092.240000px;}
.y3e{bottom:1098.720000px;}
.y6{bottom:1112.400000px;}
.y3d{bottom:1119.240000px;}
.y5{bottom:1131.480000px;}
.y3c{bottom:1140.120000px;}
.y3{bottom:1159.200000px;}
.y2{bottom:1177.560000px;}
.y1{bottom:1194.840000px;}
.y39{bottom:1195.920000px;}
.hc{height:19.500000px;}
.ha{height:26.995781px;}
.hb{height:28.427344px;}
.h6{height:32.994844px;}
.h3{height:40.310156px;}
.h9{height:40.989375px;}
.h2{height:41.993438px;}
.h7{height:48.796875px;}
.hd{height:49.992188px;}
.h5{height:50.027344px;}
.h8{height:56.685938px;}
.he{height:57.474844px;}
.h4{height:65.387813px;}
.hf{height:76.557656px;}
.h11{height:86.941406px;}
.h10{height:90.539062px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:24.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x8{left:106.200072px;}
.x11{left:139.200084px;}
.x4{left:194.760144px;}
.xa{left:201.900132px;}
.x7{left:216.961668px;}
.xc{left:272.156256px;}
.xe{left:300.846672px;}
.x1{left:314.344836px;}
.x5{left:336.724380px;}
.x2{left:348.519636px;}
.x3{left:363.303720px;}
.x6{left:387.861480px;}
.xf{left:389.741400px;}
.x9{left:430.500000px;}
.xd{left:443.202480px;}
.x10{left:782.640000px;}
.xb{left:785.520000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v4{vertical-align:-8.960000pt;}
.v6{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.v5{vertical-align:32.000000pt;}
.v3{vertical-align:37.120000pt;}
.ls2c{letter-spacing:-4.991232pt;}
.ls25{letter-spacing:-4.225536pt;}
.ls2b{letter-spacing:-0.428800pt;}
.ls1a{letter-spacing:-0.411648pt;}
.ls13{letter-spacing:-0.370944pt;}
.ls27{letter-spacing:-0.354816pt;}
.ls29{letter-spacing:-0.343040pt;}
.ls19{letter-spacing:-0.338688pt;}
.ls18{letter-spacing:-0.301056pt;}
.ls1b{letter-spacing:-0.291584pt;}
.ls21{letter-spacing:-0.284928pt;}
.ls28{letter-spacing:-0.283008pt;}
.ls22{letter-spacing:-0.268800pt;}
.ls23{letter-spacing:-0.231168pt;}
.ls30{letter-spacing:-0.225792pt;}
.ls17{letter-spacing:-0.215040pt;}
.ls24{letter-spacing:-0.198912pt;}
.ls2a{letter-spacing:-0.154368pt;}
.ls15{letter-spacing:-0.139776pt;}
.ls16{letter-spacing:-0.129024pt;}
.ls26{letter-spacing:-0.107520pt;}
.ls3c{letter-spacing:-0.019200pt;}
.ls2d{letter-spacing:-0.012800pt;}
.ls14{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.000512pt;}
.ls12{letter-spacing:0.012800pt;}
.ls33{letter-spacing:0.031232pt;}
.ls2e{letter-spacing:0.051840pt;}
.ls10{letter-spacing:0.053376pt;}
.ls11{letter-spacing:0.080000pt;}
.ls39{letter-spacing:0.089088pt;}
.ls3{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.106624pt;}
.ls36{letter-spacing:0.106752pt;}
.ls5{letter-spacing:0.107520pt;}
.ls3d{letter-spacing:0.109824pt;}
.ls41{letter-spacing:0.126720pt;}
.ls35{letter-spacing:0.128000pt;}
.ls3a{letter-spacing:0.141056pt;}
.ls1c{letter-spacing:0.143616pt;}
.ls0{letter-spacing:0.168960pt;}
.ls3f{letter-spacing:0.180480pt;}
.ls1f{letter-spacing:0.181632pt;}
.ls4{letter-spacing:0.190080pt;}
.ls2{letter-spacing:0.198528pt;}
.ls6{letter-spacing:0.211200pt;}
.lse{letter-spacing:0.213248pt;}
.lsf{letter-spacing:0.213376pt;}
.ls37{letter-spacing:0.213760pt;}
.ls1d{letter-spacing:0.215424pt;}
.ls3e{letter-spacing:0.244992pt;}
.ls1e{letter-spacing:0.253440pt;}
.ls3b{letter-spacing:0.264320pt;}
.ls20{letter-spacing:0.316800pt;}
.ls43{letter-spacing:0.322560pt;}
.ls38{letter-spacing:0.344960pt;}
.ls40{letter-spacing:0.367360pt;}
.ls34{letter-spacing:0.391680pt;}
.ls42{letter-spacing:0.465920pt;}
.ls7{letter-spacing:0.944000pt;}
.ls8{letter-spacing:3.260544pt;}
.ls9{letter-spacing:3.261440pt;}
.ls2f{letter-spacing:12.435200pt;}
.ls31{letter-spacing:12.670720pt;}
.ls32{letter-spacing:18.187520pt;}
.lsc{letter-spacing:53.808768pt;}
.lsd{letter-spacing:60.870400pt;}
.lsa{letter-spacing:66.683648pt;}
.lsb{letter-spacing:135.834752pt;}
.ws12{word-spacing:-21.440000pt;}
.ws10{word-spacing:-21.285632pt;}
.wsf{word-spacing:-21.156992pt;}
.ws4{word-spacing:-21.148416pt;}
.ws3{word-spacing:-21.028352pt;}
.ws11{word-spacing:-21.011200pt;}
.ws25{word-spacing:-16.012800pt;}
.ws17{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.987200pt;}
.ws0{word-spacing:-13.440000pt;}
.ws16{word-spacing:-13.310976pt;}
.wse{word-spacing:-13.300224pt;}
.ws1{word-spacing:-13.224960pt;}
.wsd{word-spacing:-13.138944pt;}
.ws2{word-spacing:-13.101312pt;}
.ws14{word-spacing:-13.085184pt;}
.ws19{word-spacing:-11.923968pt;}
.wsb{word-spacing:-10.876800pt;}
.ws8{word-spacing:-10.813440pt;}
.ws23{word-spacing:-10.804992pt;}
.ws6{word-spacing:-10.775424pt;}
.ws9{word-spacing:-10.771200pt;}
.ws7{word-spacing:-10.758528pt;}
.wsa{word-spacing:-10.750080pt;}
.ws24{word-spacing:-10.741632pt;}
.ws5{word-spacing:-10.728960pt;}
.ws22{word-spacing:-10.669824pt;}
.wsc{word-spacing:-10.560000pt;}
.ws27{word-spacing:-0.510720pt;}
.ws29{word-spacing:-0.412160pt;}
.ws1c{word-spacing:-0.389760pt;}
.ws28{word-spacing:-0.367360pt;}
.ws2a{word-spacing:-0.309120pt;}
.ws1e{word-spacing:-0.178176pt;}
.ws1d{word-spacing:-0.126208pt;}
.ws15{word-spacing:-0.086400pt;}
.ws1a{word-spacing:-0.064000pt;}
.ws21{word-spacing:-0.044800pt;}
.ws18{word-spacing:0.000000pt;}
.ws1f{word-spacing:11.793920pt;}
.ws26{word-spacing:14.139904pt;}
.ws1b{word-spacing:14.140160pt;}
.ws20{word-spacing:14.173440pt;}
.ws2b{word-spacing:14.181120pt;}
._a{margin-left:-10.977280pt;}
._10{margin-left:-7.289600pt;}
._b{margin-left:-6.346240pt;}
._f{margin-left:-4.631040pt;}
._21{margin-left:-3.607296pt;}
._9{margin-left:-2.666752pt;}
._1{margin-left:-0.980352pt;}
._0{width:0.913920pt;}
._5{width:2.087296pt;}
._6{width:3.601920pt;}
._7{width:4.881024pt;}
._18{width:6.062976pt;}
._16{width:6.967424pt;}
._8{width:8.021376pt;}
._1a{width:8.940800pt;}
._1f{width:9.990400pt;}
._26{width:11.091200pt;}
._20{width:12.409600pt;}
._19{width:13.609088pt;}
._1e{width:14.668800pt;}
._15{width:16.908800pt;}
._17{width:17.908992pt;}
._22{width:18.831616pt;}
._28{width:20.051200pt;}
._2a{width:21.433600pt;}
._24{width:22.356608pt;}
._25{width:23.761792pt;}
._2d{width:25.236224pt;}
._27{width:26.144000pt;}
._29{width:27.339648pt;}
._1d{width:28.232832pt;}
._2c{width:29.367168pt;}
._3a{width:30.439296pt;}
._2e{width:33.801472pt;}
._34{width:34.758400pt;}
._35{width:35.664128pt;}
._23{width:39.897600pt;}
._2b{width:44.755200pt;}
._33{width:47.737600pt;}
._32{width:53.946368pt;}
._38{width:55.872000pt;}
._e{width:59.619584pt;}
._13{width:61.347840pt;}
._36{width:62.919552pt;}
._c{width:64.325632pt;}
._14{width:65.899776pt;}
._d{width:67.235840pt;}
._31{width:81.728000pt;}
._30{width:85.644800pt;}
._39{width:103.097600pt;}
._37{width:122.937600pt;}
._12{width:131.555840pt;}
._11{width:136.037760pt;}
._2f{width:168.473600pt;}
._1b{width:397.178624pt;}
._1c{width:411.107840pt;}
._4{width:790.551936pt;}
._2{width:882.569728pt;}
._3{width:1197.450240pt;}
.fs2{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs6{font-size:39.680000pt;}
.fs4{font-size:42.240000pt;}
.fs7{font-size:44.800000pt;}
.fs0{font-size:53.760000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:4.320000pt;}
.y4{bottom:47.360000pt;}
.y3a{bottom:52.000000pt;}
.y9e{bottom:100.800000pt;}
.yc6{bottom:101.440000pt;}
.y89{bottom:101.760000pt;}
.y105{bottom:105.600000pt;}
.y110{bottom:106.560000pt;}
.y38{bottom:112.000000pt;}
.y9d{bottom:119.040000pt;}
.yc5{bottom:119.680000pt;}
.y88{bottom:120.000000pt;}
.y104{bottom:124.160000pt;}
.y10f{bottom:124.800000pt;}
.ye6{bottom:128.000000pt;}
.y68{bottom:130.240000pt;}
.y37{bottom:130.560000pt;}
.y9c{bottom:137.600000pt;}
.yc4{bottom:138.240000pt;}
.y87{bottom:138.560000pt;}
.y103{bottom:142.400000pt;}
.y10e{bottom:143.360000pt;}
.ye5{bottom:146.560000pt;}
.y36{bottom:148.800000pt;}
.y9b{bottom:155.840000pt;}
.yc3{bottom:156.480000pt;}
.y86{bottom:156.800000pt;}
.y102{bottom:160.960000pt;}
.y10d{bottom:161.600000pt;}
.ye4{bottom:164.800000pt;}
.y67{bottom:167.040000pt;}
.y35{bottom:167.360000pt;}
.y9a{bottom:174.400000pt;}
.yc2{bottom:175.040000pt;}
.y85{bottom:175.360000pt;}
.y101{bottom:179.200000pt;}
.y10c{bottom:180.160000pt;}
.ye3{bottom:183.360000pt;}
.y34{bottom:185.600000pt;}
.y99{bottom:192.640000pt;}
.yc1{bottom:193.280000pt;}
.y84{bottom:193.600000pt;}
.y100{bottom:197.760000pt;}
.y10b{bottom:198.400000pt;}
.ye2{bottom:201.600000pt;}
.y66{bottom:203.840000pt;}
.y33{bottom:204.160000pt;}
.y98{bottom:211.200000pt;}
.yc0{bottom:211.840000pt;}
.y83{bottom:212.160000pt;}
.yff{bottom:216.000000pt;}
.y10a{bottom:216.960000pt;}
.ye1{bottom:220.160000pt;}
.y32{bottom:222.400000pt;}
.y97{bottom:229.440000pt;}
.ybf{bottom:230.080000pt;}
.y82{bottom:230.400000pt;}
.yfe{bottom:234.560000pt;}
.y109{bottom:235.200000pt;}
.ye0{bottom:238.400000pt;}
.y65{bottom:240.640000pt;}
.y31{bottom:240.960000pt;}
.y96{bottom:248.000000pt;}
.ybe{bottom:248.640000pt;}
.y81{bottom:248.960000pt;}
.yfd{bottom:252.800000pt;}
.y108{bottom:253.760000pt;}
.ydf{bottom:256.960000pt;}
.y64{bottom:258.880000pt;}
.y30{bottom:259.200000pt;}
.y95{bottom:266.240000pt;}
.ybd{bottom:266.880000pt;}
.y80{bottom:267.200000pt;}
.yfc{bottom:271.360000pt;}
.y107{bottom:272.000000pt;}
.yde{bottom:275.200000pt;}
.y63{bottom:277.440000pt;}
.y2f{bottom:277.760000pt;}
.y94{bottom:284.800000pt;}
.ybc{bottom:285.440000pt;}
.y7f{bottom:285.760000pt;}
.y106{bottom:286.720000pt;}
.yfb{bottom:289.600000pt;}
.ydd{bottom:293.760000pt;}
.y62{bottom:295.680000pt;}
.y2e{bottom:296.000000pt;}
.y93{bottom:303.040000pt;}
.ybb{bottom:303.680000pt;}
.y7e{bottom:304.000000pt;}
.yfa{bottom:308.160000pt;}
.ydc{bottom:312.000000pt;}
.y61{bottom:314.240000pt;}
.y2d{bottom:314.560000pt;}
.y92{bottom:321.600000pt;}
.yba{bottom:322.240000pt;}
.y7d{bottom:322.560000pt;}
.yf9{bottom:326.400000pt;}
.ydb{bottom:330.560000pt;}
.y60{bottom:332.480000pt;}
.y2c{bottom:332.800000pt;}
.y91{bottom:339.840000pt;}
.yb9{bottom:340.480000pt;}
.y7c{bottom:340.800000pt;}
.yf8{bottom:344.960000pt;}
.yda{bottom:348.800000pt;}
.y5f{bottom:351.040000pt;}
.y2b{bottom:351.360000pt;}
.y90{bottom:358.400000pt;}
.yb8{bottom:359.040000pt;}
.y7b{bottom:359.360000pt;}
.yf7{bottom:363.200000pt;}
.yd9{bottom:367.360000pt;}
.y5e{bottom:369.280000pt;}
.y2a{bottom:369.600000pt;}
.y8f{bottom:376.640000pt;}
.yb7{bottom:377.280000pt;}
.y7a{bottom:377.600000pt;}
.yf6{bottom:381.760000pt;}
.yd8{bottom:385.600000pt;}
.y5d{bottom:387.840000pt;}
.y29{bottom:388.160000pt;}
.y8e{bottom:395.200000pt;}
.yb6{bottom:395.840000pt;}
.y79{bottom:396.160000pt;}
.yf5{bottom:400.000000pt;}
.yd7{bottom:404.160000pt;}
.y5c{bottom:406.080000pt;}
.y28{bottom:406.400000pt;}
.y8d{bottom:413.440000pt;}
.yb5{bottom:414.080000pt;}
.y78{bottom:414.400000pt;}
.yf4{bottom:418.560000pt;}
.yd6{bottom:422.400000pt;}
.y5b{bottom:424.640000pt;}
.y27{bottom:424.960000pt;}
.y8c{bottom:432.000000pt;}
.yb4{bottom:432.640000pt;}
.y77{bottom:432.960000pt;}
.yf3{bottom:436.800000pt;}
.yd5{bottom:440.960000pt;}
.y5a{bottom:442.880000pt;}
.y26{bottom:443.200000pt;}
.y8b{bottom:449.280000pt;}
.yb3{bottom:450.880000pt;}
.y76{bottom:451.200000pt;}
.yf2{bottom:455.360000pt;}
.y8a{bottom:457.280000pt;}
.yd4{bottom:459.200000pt;}
.y59{bottom:461.440000pt;}
.y25{bottom:461.760000pt;}
.yb2{bottom:469.440000pt;}
.y75{bottom:469.760000pt;}
.yf1{bottom:473.600000pt;}
.yd3{bottom:477.760000pt;}
.y58{bottom:479.680000pt;}
.y24{bottom:480.000000pt;}
.yb1{bottom:487.680000pt;}
.y74{bottom:488.000000pt;}
.yf0{bottom:492.160000pt;}
.yd2{bottom:496.000000pt;}
.y23{bottom:497.600000pt;}
.y57{bottom:498.240000pt;}
.yb0{bottom:506.240000pt;}
.y73{bottom:506.560000pt;}
.yef{bottom:510.400000pt;}
.y22{bottom:512.960000pt;}
.yd1{bottom:514.560000pt;}
.y56{bottom:516.480000pt;}
.yaf{bottom:524.480000pt;}
.y72{bottom:524.800000pt;}
.y21{bottom:528.320000pt;}
.yee{bottom:528.960000pt;}
.yd0{bottom:532.800000pt;}
.y55{bottom:535.040000pt;}
.yae{bottom:543.040000pt;}
.y71{bottom:543.360000pt;}
.y20{bottom:543.680000pt;}
.yed{bottom:547.200000pt;}
.ycf{bottom:551.360000pt;}
.y54{bottom:553.280000pt;}
.y1f{bottom:559.040000pt;}
.yad{bottom:561.280000pt;}
.y70{bottom:561.600000pt;}
.yec{bottom:565.760000pt;}
.yce{bottom:569.600000pt;}
.y53{bottom:571.840000pt;}
.y1e{bottom:574.400000pt;}
.yac{bottom:579.840000pt;}
.y6f{bottom:580.160000pt;}
.yeb{bottom:584.000000pt;}
.ycd{bottom:588.160000pt;}
.y1d{bottom:589.440000pt;}
.y52{bottom:590.080000pt;}
.yab{bottom:598.080000pt;}
.y6e{bottom:598.400000pt;}
.yea{bottom:602.560000pt;}
.ycc{bottom:606.400000pt;}
.y51{bottom:608.640000pt;}
.y1c{bottom:609.600000pt;}
.yaa{bottom:616.640000pt;}
.y6d{bottom:616.960000pt;}
.y1b{bottom:620.160000pt;}
.ye9{bottom:620.800000pt;}
.ycb{bottom:624.960000pt;}
.y50{bottom:626.880000pt;}
.ya9{bottom:634.880000pt;}
.y6c{bottom:635.200000pt;}
.ye8{bottom:639.360000pt;}
.y1a{bottom:640.320000pt;}
.yca{bottom:643.200000pt;}
.y4f{bottom:645.440000pt;}
.ya8{bottom:653.120000pt;}
.y6b{bottom:653.760000pt;}
.ye7{bottom:654.080000pt;}
.y19{bottom:655.680000pt;}
.yc9{bottom:661.760000pt;}
.y4e{bottom:663.680000pt;}
.y18{bottom:666.240000pt;}
.ya7{bottom:671.680000pt;}
.y6a{bottom:672.000000pt;}
.yc8{bottom:680.000000pt;}
.y17{bottom:682.240000pt;}
.y69{bottom:686.720000pt;}
.ya6{bottom:689.920000pt;}
.yc7{bottom:694.720000pt;}
.y4d{bottom:700.480000pt;}
.y16{bottom:700.800000pt;}
.ya5{bottom:708.480000pt;}
.y15{bottom:718.400000pt;}
.y4c{bottom:719.040000pt;}
.ya4{bottom:726.720000pt;}
.y14{bottom:735.360000pt;}
.y4b{bottom:737.280000pt;}
.ya3{bottom:745.280000pt;}
.y4a{bottom:755.840000pt;}
.y13{bottom:760.000000pt;}
.ya2{bottom:763.520000pt;}
.y49{bottom:774.080000pt;}
.ya1{bottom:782.080000pt;}
.y12{bottom:784.320000pt;}
.y48{bottom:792.640000pt;}
.ya0{bottom:798.080000pt;}
.y9f{bottom:806.080000pt;}
.y11{bottom:808.960000pt;}
.y47{bottom:810.880000pt;}
.y46{bottom:829.440000pt;}
.y10{bottom:831.680000pt;}
.yf{bottom:847.040000pt;}
.y45{bottom:847.680000pt;}
.ye{bottom:862.400000pt;}
.y44{bottom:866.240000pt;}
.yd{bottom:877.760000pt;}
.y43{bottom:884.480000pt;}
.yc{bottom:893.120000pt;}
.y42{bottom:903.040000pt;}
.yb{bottom:908.480000pt;}
.y41{bottom:921.280000pt;}
.ya{bottom:925.760000pt;}
.y40{bottom:939.840000pt;}
.y9{bottom:940.480000pt;}
.y8{bottom:953.280000pt;}
.y3f{bottom:958.080000pt;}
.y7{bottom:970.880000pt;}
.y3e{bottom:976.640000pt;}
.y6{bottom:988.800000pt;}
.y3d{bottom:994.880000pt;}
.y5{bottom:1005.760000pt;}
.y3c{bottom:1013.440000pt;}
.y3{bottom:1030.400000pt;}
.y2{bottom:1046.720000pt;}
.y1{bottom:1062.080000pt;}
.y39{bottom:1063.040000pt;}
.hc{height:17.333333pt;}
.ha{height:23.996250pt;}
.hb{height:25.268750pt;}
.h6{height:29.328750pt;}
.h3{height:35.831250pt;}
.h9{height:36.435000pt;}
.h2{height:37.327500pt;}
.h7{height:43.375000pt;}
.hd{height:44.437500pt;}
.h5{height:44.468750pt;}
.h8{height:50.387500pt;}
.he{height:51.088750pt;}
.h4{height:58.122500pt;}
.hf{height:68.051250pt;}
.h11{height:77.281250pt;}
.h10{height:80.479167pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:21.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x8{left:94.400064pt;}
.x11{left:123.733408pt;}
.x4{left:173.120128pt;}
.xa{left:179.466784pt;}
.x7{left:192.854816pt;}
.xc{left:241.916672pt;}
.xe{left:267.419264pt;}
.x1{left:279.417632pt;}
.x5{left:299.310560pt;}
.x2{left:309.795232pt;}
.x3{left:322.936640pt;}
.x6{left:344.765760pt;}
.xf{left:346.436800pt;}
.x9{left:382.666667pt;}
.xd{left:393.957760pt;}
.x10{left:695.680000pt;}
.xb{left:698.240000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  