
    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_609556e007a8e62cbd283300.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_41dcfbb13c346e71aee2d5d3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_8aa034b4c0283ea9a5fbbbfd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940918;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_c354a5858cdae86d2d9c54f0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_66a52e1b8faac454e1042cfd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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_066817290c00254abda23890.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_c81361714fddb546ae01d0ee.woff')format("woff");}.ff7{font-family:ff7;line-height:0.799805;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_8b41dfc0a4f4214008a4e1ab.woff')format("woff");}.ff8{font-family:ff8;line-height:0.000000;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_7b9e4a16cdfeb211be2f5151.woff')format("woff");}.ff9{font-family:ff9;line-height:0.986816;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_cc5998e27d767025540935e5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.760254;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_432186c42bc0c40206ec1037.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c588bc1ec8f88f0b5e4c4d77.woff')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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_da67cc3534d15130eb8272d7.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0f65babbf5e55b554772aa7f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.892000;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_32b699d03377b8bb929dc96e.woff')format("woff");}.fff{font-family:fff;line-height:0.904000;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_482a2b809ecd5b8d4879a74f.woff')format("woff");}.ff10{font-family:ff10;line-height:0.000000;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_c3dee638b581cdfb7b2a75a5.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_e87ca7f30ee8de8c3f1fccf9.woff')format("woff");}.ff12{font-family:ff12;line-height:1.031738;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_470da6d5e263a5d27d1d521d.woff')format("woff");}.ff13{font-family:ff13;line-height:0.893066;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:ff14;src:url('chunks/assets/font_fc479c50e94de1bfada9f095.woff')format("woff");}.ff14{font-family:ff14;line-height:0.861328;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:ff15;src:url('chunks/assets/font_9d36036c7dc6d13f463a4eeb.woff')format("woff");}.ff15{font-family:ff15;line-height:0.861816;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:ff16;src:url('chunks/assets/font_4c6e5d1e968b1cb8f6bb542f.woff')format("woff");}.ff16{font-family:ff16;line-height:0.670898;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:ff17;src:url('chunks/assets/font_faf11b83df5d5f3062ca6257.woff')format("woff");}.ff17{font-family:ff17;line-height:1.031738;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:ff18;src:url('chunks/assets/font_c631f40bf9581d77e0479c82.woff')format("woff");}.ff18{font-family:ff18;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;}
.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);}
.v4{vertical-align:-27.358620px;}
.v3{vertical-align:-23.735160px;}
.v2{vertical-align:-20.878140px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:23.760000px;}
.v1{vertical-align:27.358620px;}
.ls4{letter-spacing:-0.828000px;}
.lsd{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.272400px;}
.ls16{letter-spacing:-0.216000px;}
.ls27{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.000003px;}
.lsc{letter-spacing:0.000480px;}
.ls26{letter-spacing:0.001200px;}
.ls24{letter-spacing:0.001380px;}
.ls13{letter-spacing:0.072600px;}
.ls1b{letter-spacing:0.132000px;}
.ls15{letter-spacing:0.132600px;}
.ls1c{letter-spacing:0.140400px;}
.ls8{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.149280px;}
.ls18{letter-spacing:0.153960px;}
.ls20{letter-spacing:0.174000px;}
.ls1d{letter-spacing:0.174060px;}
.ls1f{letter-spacing:0.174720px;}
.ls23{letter-spacing:0.174960px;}
.ls12{letter-spacing:0.178140px;}
.ls2{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.256200px;}
.lse{letter-spacing:0.269400px;}
.ls14{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.358140px;}
.ls19{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.360480px;}
.ls11{letter-spacing:0.432000px;}
.ls1a{letter-spacing:0.538080px;}
.lsf{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.779520px;}
.lsb{letter-spacing:3.742620px;}
.ls6{letter-spacing:44.784000px;}
.ls25{letter-spacing:64.002120px;}
.ls0{letter-spacing:837.535920px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-43.200000px;}
.ws1c{word-spacing:-27.489600px;}
.wsf{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.305520px;}
.wsd{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws1d{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.ws2{word-spacing:-17.586720px;}
.ws17{word-spacing:-17.280003px;}
.ws9{word-spacing:-16.560000px;}
.wsc{word-spacing:-15.226440px;}
.ws14{word-spacing:-14.970240px;}
.ws13{word-spacing:-14.940000px;}
.ws1b{word-spacing:-14.820480px;}
.ws15{word-spacing:-13.646160px;}
.ws11{word-spacing:-13.505760px;}
.ws16{word-spacing:-12.420000px;}
.wsa{word-spacing:-12.329400px;}
.ws18{word-spacing:-11.700000px;}
.ws1a{word-spacing:-10.440000px;}
.ws12{word-spacing:-9.437760px;}
.ws7{word-spacing:-8.786880px;}
.ws19{word-spacing:-8.514480px;}
.wsb{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._18{margin-left:-16.690764px;}
._1c{margin-left:-15.306606px;}
._19{margin-left:-13.282587px;}
._1b{margin-left:-11.736791px;}
._17{margin-left:-10.434724px;}
._16{margin-left:-8.813440px;}
._1a{margin-left:-5.893928px;}
._9{margin-left:-4.487918px;}
._7{margin-left:-3.312927px;}
._8{margin-left:-2.230627px;}
._1{margin-left:-1.007519px;}
._0{width:1.172843px;}
._2{width:2.327519px;}
._3{width:4.092517px;}
._12{width:5.615842px;}
._e{width:6.912809px;}
._f{width:8.838335px;}
._c{width:10.579444px;}
._b{width:12.168647px;}
._d{width:13.352211px;}
._4{width:15.193695px;}
._5{width:16.403052px;}
._6{width:19.655527px;}
._a{width:20.952792px;}
._10{width:22.680791px;}
._11{width:24.057577px;}
._14{width:28.298076px;}
._13{width:29.591355px;}
._15{width:197.976240px;}
.fc9{color:rgb(28,30,41);}
.fc8{color:rgb(11,0,128);}
.fc5{color:rgb(0,146,242);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,19,32);}
.fc7{color:rgb(34,34,34);}
.fc6{color:rgb(51,51,51);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(44,44,44);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs9{font-size:45.360000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.320000px;}
.y1{bottom:78.516150px;}
.yce{bottom:111.816150px;}
.y159{bottom:111.816195px;}
.ydd{bottom:111.816300px;}
.y16a{bottom:115.416150px;}
.y44{bottom:117.035700px;}
.y115{bottom:117.035760px;}
.y91{bottom:118.655850px;}
.y63{bottom:119.016750px;}
.yb7{bottom:119.735700px;}
.y7c{bottom:124.776000px;}
.y114{bottom:130.176000px;}
.y53{bottom:130.176150px;}
.yf0{bottom:130.716150px;}
.y43{bottom:130.716450px;}
.y104{bottom:132.516150px;}
.y94{bottom:133.055850px;}
.y90{bottom:133.056150px;}
.y190{bottom:133.235850px;}
.y136{bottom:135.395985px;}
.ycd{bottom:135.396150px;}
.yad{bottom:139.176000px;}
.y158{bottom:139.355850px;}
.y169{bottom:146.555850px;}
.ycc{bottom:148.896150px;}
.y62{bottom:149.976450px;}
.ydc{bottom:150.329700px;}
.y7b{bottom:151.230000px;}
.yef{bottom:151.410000px;}
.y149{bottom:153.210000px;}
.y135{bottom:153.570000px;}
.yb6{bottom:159.510000px;}
.y7a{bottom:165.270300px;}
.y157{bottom:166.890210px;}
.y134{bottom:167.250000px;}
.y52{bottom:171.570300px;}
.y3b{bottom:171.570450px;}
.yee{bottom:172.110000px;}
.ydb{bottom:174.810000px;}
.y168{bottom:177.510000px;}
.y103{bottom:178.590000px;}
.y28{bottom:179.490300px;}
.yac{bottom:180.570000px;}
.y148{bottom:180.750000px;}
.ycb{bottom:189.210000px;}
.y113{bottom:190.110000px;}
.yed{bottom:192.810000px;}
.y8f{bottom:193.710000px;}
.y17c{bottom:195.870000px;}
.y156{bottom:196.050000px;}
.yb5{bottom:199.110000px;}
.y125{bottom:201.090000px;}
.y147{bottom:203.430000px;}
.y167{bottom:208.650000px;}
.y79{bottom:209.910000px;}
.yda{bottom:210.090000px;}
.y93{bottom:211.170300px;}
.y188{bottom:212.430000px;}
.y61{bottom:212.430300px;}
.y42{bottom:213.510000px;}
.y102{bottom:213.870000px;}
.y155{bottom:218.910000px;}
.y27{bottom:220.890300px;}
.y146{bottom:221.430000px;}
.y112{bottom:230.430000px;}
.yca{bottom:230.610000px;}
.y51{bottom:234.030000px;}
.y3a{bottom:234.030150px;}
.yec{bottom:234.210000px;}
.y8e{bottom:235.110000px;}
.y17b{bottom:237.270000px;}
.y154{bottom:239.610000px;}
.yab{bottom:243.030000px;}
.y145{bottom:244.830000px;}
.y111{bottom:250.590000px;}
.y78{bottom:251.310000px;}
.y187{bottom:253.830000px;}
.y60{bottom:253.830300px;}
.yc3{bottom:254.909850px;}
.y41{bottom:254.910000px;}
.y144{bottom:258.509850px;}
.yb4{bottom:260.309700px;}
.y153{bottom:260.850150px;}
.y26{bottom:262.290300px;}
.y124{bottom:263.370300px;}
.y18f{bottom:263.909850px;}
.y92{bottom:264.630000px;}
.y166{bottom:270.750000px;}
.yc9{bottom:272.010000px;}
.y50{bottom:275.430000px;}
.yeb{bottom:275.610000px;}
.y8d{bottom:276.510000px;}
.yaa{bottom:284.430000px;}
.y17a{bottom:290.730000px;}
.y77{bottom:292.710000px;}
.y5f{bottom:295.230300px;}
.yc2{bottom:296.309850px;}
.y39{bottom:296.310000px;}
.y101{bottom:296.670150px;}
.y123{bottom:304.770300px;}
.y18e{bottom:305.309850px;}
.y133{bottom:309.990000px;}
.y110{bottom:312.869850px;}
.yc8{bottom:313.410000px;}
.y165{bottom:313.770000px;}
.y186{bottom:316.110000px;}
.y4f{bottom:316.830000px;}
.y8c{bottom:317.955000px;}
.yb3{bottom:322.095000px;}
.y152{bottom:323.355000px;}
.y25{bottom:324.795150px;}
.ya9{bottom:325.875000px;}
.y179{bottom:332.175000px;}
.y76{bottom:334.155000px;}
.y5e{bottom:336.675450px;}
.yc1{bottom:337.755000px;}
.y40{bottom:337.755150px;}
.y100{bottom:338.115300px;}
.y164{bottom:344.775000px;}
.y122{bottom:346.215450px;}
.y18d{bottom:346.755000px;}
.y132{bottom:351.434550px;}
.y10f{bottom:354.315000px;}
.y4e{bottom:358.275150px;}
.y143{bottom:358.275300px;}
.y38{bottom:358.815450px;}
.y8b{bottom:359.355000px;}
.yb2{bottom:361.695000px;}
.y151{bottom:364.755000px;}
.y24{bottom:366.195150px;}
.ya8{bottom:367.275000px;}
.y178{bottom:373.575000px;}
.y75{bottom:375.555000px;}
.y163{bottom:375.735000px;}
.y185{bottom:378.615000px;}
.yd9{bottom:379.155000px;}
.y3f{bottom:379.155150px;}
.yff{bottom:379.515300px;}
.yc7{bottom:387.615000px;}
.y121{bottom:387.615450px;}
.y18c{bottom:388.155000px;}
.y131{bottom:393.915450px;}
.y10e{bottom:395.715000px;}
.y5d{bottom:398.955300px;}
.y4d{bottom:399.675150px;}
.yc0{bottom:400.215300px;}
.y37{bottom:400.215450px;}
.y8a{bottom:400.755000px;}
.yb1{bottom:401.295000px;}
.y23{bottom:407.595150px;}
.ya7{bottom:408.675000px;}
.y142{bottom:411.555150px;}
.y177{bottom:414.975000px;}
.y74{bottom:416.955000px;}
.y150{bottom:418.215000px;}
.y184{bottom:420.015000px;}
.yd8{bottom:420.555000px;}
.yfe{bottom:420.915300px;}
.y130{bottom:423.795300px;}
.y120{bottom:429.015450px;}
.y18b{bottom:429.555000px;}
.y162{bottom:433.875000px;}
.y10d{bottom:437.115000px;}
.y73{bottom:437.655000px;}
.yc6{bottom:441.075000px;}
.yea{bottom:441.615000px;}
.ybf{bottom:441.615300px;}
.y36{bottom:441.615450px;}
.y89{bottom:442.155000px;}
.y22{bottom:448.995150px;}
.y141{bottom:452.955150px;}
.y12f{bottom:453.495300px;}
.y176{bottom:456.375000px;}
.y72{bottom:458.355000px;}
.y14f{bottom:459.615000px;}
.y5c{bottom:461.415600px;}
.y4c{bottom:461.955000px;}
.yfd{bottom:462.315300px;}
.yb0{bottom:462.675150px;}
.y10c{bottom:469.875150px;}
.ya6{bottom:470.955000px;}
.y161{bottom:477.075000px;}
.y71{bottom:479.055000px;}
.y183{bottom:482.475000px;}
.yc5{bottom:482.475150px;}
.ye9{bottom:483.015000px;}
.yd7{bottom:483.015150px;}
.y35{bottom:483.015450px;}
.y12e{bottom:483.195300px;}
.y88{bottom:483.555000px;}
.y21{bottom:490.395150px;}
.y11f{bottom:491.475150px;}
.y140{bottom:494.355150px;}
.y175{bottom:497.775000px;}
.y70{bottom:499.755000px;}
.y14e{bottom:501.015000px;}
.y10b{bottom:502.455000px;}
.yfc{bottom:503.715300px;}
.ybe{bottom:504.075000px;}
.yaf{bottom:504.075150px;}
.y18a{bottom:512.355000px;}
.y12d{bottom:513.075150px;}
.y6f{bottom:520.455000px;}
.y14{bottom:521.715450px;}
.y182{bottom:523.875000px;}
.y5b{bottom:523.875300px;}
.ye8{bottom:524.415000px;}
.yd6{bottom:524.415150px;}
.y4b{bottom:524.415300px;}
.y34{bottom:524.415450px;}
.y87{bottom:524.955000px;}
.y160{bottom:530.355000px;}
.y20{bottom:531.795150px;}
.y11e{bottom:532.875150px;}
.ya5{bottom:533.415000px;}
.y10a{bottom:535.215000px;}
.y174{bottom:539.175300px;}
.y12c{bottom:542.775150px;}
.yc4{bottom:544.755000px;}
.yfb{bottom:545.115300px;}
.ybd{bottom:545.475000px;}
.yae{bottom:545.475150px;}
.y13f{bottom:547.815450px;}
.y189{bottom:553.755000px;}
.y14d{bottom:554.475000px;}
.y13{bottom:561.135000px;}
.y5a{bottom:565.275300px;}
.ye7{bottom:565.815000px;}
.yd5{bottom:565.815150px;}
.y33{bottom:565.815450px;}
.y86{bottom:566.355000px;}
.y109{bottom:567.975000px;}
.y15f{bottom:571.785000px;}
.y12b{bottom:572.505000px;}
.y1f{bottom:573.225000px;}
.y6e{bottom:573.945000px;}
.y11d{bottom:574.305000px;}
.ya4{bottom:574.845000px;}
.y12{bottom:582.585000px;}
.y181{bottom:586.185000px;}
.y4a{bottom:586.905000px;}
.y13e{bottom:589.245300px;}
.y173{bottom:592.482900px;}
.y14c{bottom:595.905000px;}
.y108{bottom:600.585000px;}
.y11{bottom:602.925000px;}
.y59{bottom:606.705150px;}
.yd4{bottom:607.245000px;}
.y32{bottom:607.245300px;}
.yfa{bottom:607.605000px;}
.y85{bottom:607.785000px;}
.y15e{bottom:613.185000px;}
.y1e{bottom:614.625000px;}
.y11c{bottom:615.705000px;}
.ya3{bottom:616.245000px;}
.y10{bottom:623.445000px;}
.y12a{bottom:625.245150px;}
.y6d{bottom:627.225000px;}
.y180{bottom:627.585600px;}
.ye6{bottom:628.304700px;}
.y17f{bottom:628.304850px;}
.y49{bottom:628.305000px;}
.y13d{bottom:630.645300px;}
.y107{bottom:633.345000px;}
.y172{bottom:633.883500px;}
.y14b{bottom:637.305000px;}
.yf{bottom:643.965000px;}
.yd3{bottom:648.645000px;}
.y31{bottom:648.645300px;}
.yf9{bottom:649.005000px;}
.ybc{bottom:649.184400px;}
.y84{bottom:649.185000px;}
.y15d{bottom:654.585000px;}
.y1d{bottom:656.025000px;}
.ya2{bottom:657.645000px;}
.y106{bottom:665.925000px;}
.y129{bottom:666.645150px;}
.y58{bottom:668.985000px;}
.y17e{bottom:669.525000px;}
.ye5{bottom:669.704700px;}
.y48{bottom:669.705000px;}
.y171{bottom:675.284100px;}
.ye{bottom:677.265450px;}
.y11b{bottom:678.705000px;}
.y13c{bottom:683.925150px;}
.y6c{bottom:689.684700px;}
.yd2{bottom:690.045000px;}
.y30{bottom:690.045300px;}
.yf8{bottom:690.225150px;}
.y83{bottom:690.585000px;}
.ybb{bottom:690.585450px;}
.y15c{bottom:695.985000px;}
.ya1{bottom:699.045000px;}
.y128{bottom:708.045150px;}
.y57{bottom:710.385000px;}
.ye4{bottom:710.924850px;}
.y47{bottom:710.925150px;}
.yd{bottom:711.645300px;}
.y170{bottom:716.684700px;}
.y1c{bottom:718.304850px;}
.y105{bottom:719.385000px;}
.y14a{bottom:719.925000px;}
.y11a{bottom:719.925150px;}
.y13b{bottom:725.325150px;}
.y6b{bottom:731.085300px;}
.yd1{bottom:731.445000px;}
.y2f{bottom:731.445300px;}
.yf7{bottom:731.625150px;}
.yba{bottom:731.984850px;}
.y82{bottom:731.985000px;}
.y15b{bottom:737.385000px;}
.ya0{bottom:740.445000px;}
.yc{bottom:745.845300px;}
.y56{bottom:751.785000px;}
.ye3{bottom:752.324850px;}
.y46{bottom:752.325150px;}
.y16f{bottom:758.085300px;}
.y1b{bottom:759.704850px;}
.y127{bottom:761.325000px;}
.y119{bottom:761.325150px;}
.y13a{bottom:766.725150px;}
.yd0{bottom:772.845000px;}
.y2e{bottom:772.845300px;}
.yf6{bottom:773.025150px;}
.y17d{bottom:773.384850px;}
.y81{bottom:773.385000px;}
.yb9{bottom:773.385450px;}
.yb{bottom:780.225150px;}
.y15a{bottom:790.845000px;}
.y55{bottom:793.185000px;}
.y6a{bottom:793.545000px;}
.ye2{bottom:793.724850px;}
.y45{bottom:793.725150px;}
.y1a{bottom:801.104850px;}
.y126{bottom:802.724850px;}
.y9f{bottom:802.725000px;}
.y118{bottom:802.725150px;}
.y139{bottom:808.125150px;}
.y16e{bottom:811.545000px;}
.ycf{bottom:814.245000px;}
.y3e{bottom:814.245300px;}
.yf5{bottom:814.425150px;}
.ya{bottom:814.605000px;}
.yb8{bottom:814.784850px;}
.y80{bottom:814.785000px;}
.y9e{bottom:823.470000px;}
.ye1{bottom:835.170000px;}
.y2d{bottom:835.170300px;}
.y19{bottom:842.550000px;}
.y9d{bottom:844.170000px;}
.y117{bottom:844.170300px;}
.y9{bottom:849.030000px;}
.y16d{bottom:852.990150px;}
.y3d{bottom:855.690450px;}
.y69{bottom:855.870000px;}
.yf4{bottom:855.870300px;}
.y7f{bottom:856.230000px;}
.y138{bottom:861.630000px;}
.y9c{bottom:864.870000px;}
.ye0{bottom:876.570000px;}
.y2c{bottom:876.570300px;}
.y8{bottom:883.230000px;}
.y18{bottom:883.950000px;}
.y9b{bottom:885.570000px;}
.y116{bottom:885.570300px;}
.y16c{bottom:894.390150px;}
.y54{bottom:897.090450px;}
.y7e{bottom:897.630000px;}
.y9a{bottom:906.270000px;}
.y68{bottom:908.070000px;}
.y137{bottom:915.090000px;}
.y7{bottom:917.609850px;}
.ydf{bottom:917.970000px;}
.y2b{bottom:917.970300px;}
.yf3{bottom:918.330000px;}
.y99{bottom:926.970000px;}
.y67{bottom:939.030000px;}
.y17{bottom:946.409700px;}
.y98{bottom:947.670000px;}
.y6{bottom:951.990300px;}
.yde{bottom:959.370000px;}
.y2a{bottom:959.370300px;}
.yf2{bottom:959.730000px;}
.y97{bottom:968.370000px;}
.y66{bottom:970.170300px;}
.y7d{bottom:980.430000px;}
.y5{bottom:986.370150px;}
.y16{bottom:987.809700px;}
.y96{bottom:989.070000px;}
.y3c{bottom:1000.770300px;}
.y65{bottom:1001.130000px;}
.y95{bottom:1009.770000px;}
.y29{bottom:1021.830000px;}
.y4{bottom:1023.090300px;}
.y16b{bottom:1030.470000px;}
.y64{bottom:1032.270300px;}
.yf1{bottom:1042.530000px;}
.y15{bottom:1058.550000px;}
.y3{bottom:1063.230000px;}
.hb{height:27.907031px;}
.h22{height:28.657800px;}
.hd{height:28.730880px;}
.h14{height:29.974219px;}
.h10{height:33.189120px;}
.h13{height:42.894141px;}
.he{height:45.573120px;}
.h1{height:47.545313px;}
.h19{height:47.554560px;}
.h6{height:47.796328px;}
.h1d{height:47.942227px;}
.h1a{height:48.026250px;}
.h5{height:49.150080px;}
.h2{height:49.536000px;}
.h20{height:49.536600px;}
.h15{height:49.537200px;}
.h4{height:49.824000px;}
.h12{height:50.025544px;}
.h8{height:50.027344px;}
.h21{height:50.027944px;}
.hc{height:50.328000px;}
.h1c{height:52.672260px;}
.h11{height:53.140781px;}
.h9{height:53.424000px;}
.h16{height:57.479760px;}
.h1b{height:58.566300px;}
.ha{height:60.547740px;}
.h1e{height:60.549120px;}
.hf{height:60.550080px;}
.h1f{height:60.558480px;}
.h17{height:60.728160px;}
.h18{height:62.382656px;}
.h7{height:71.818200px;}
.h3{height:71.820000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:108.036000px;}
.xf{left:135.035700px;}
.xb{left:162.030000px;}
.xc{left:189.030120px;}
.xa{left:199.470000px;}
.xd{left:216.029850px;}
.x4{left:312.375000px;}
.xe{left:324.075240px;}
.x5{left:341.534700px;}
.x7{left:361.515240px;}
.x9{left:410.115240px;}
.x8{left:441.074940px;}
.x6{left:448.454880px;}
.x10{left:450.615000px;}
.x1{left:454.935000px;}
.x3{left:459.075000px;}
@media print{
.v4{vertical-align:-24.318773pt;}
.v3{vertical-align:-21.097920pt;}
.v2{vertical-align:-18.558347pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:21.120000pt;}
.v1{vertical-align:24.318773pt;}
.ls4{letter-spacing:-0.736000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.242133pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls27{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.000003pt;}
.lsc{letter-spacing:0.000427pt;}
.ls26{letter-spacing:0.001067pt;}
.ls24{letter-spacing:0.001227pt;}
.ls13{letter-spacing:0.064533pt;}
.ls1b{letter-spacing:0.117333pt;}
.ls15{letter-spacing:0.117867pt;}
.ls1c{letter-spacing:0.124800pt;}
.ls8{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.132693pt;}
.ls18{letter-spacing:0.136853pt;}
.ls20{letter-spacing:0.154667pt;}
.ls1d{letter-spacing:0.154720pt;}
.ls1f{letter-spacing:0.155307pt;}
.ls23{letter-spacing:0.155520pt;}
.ls12{letter-spacing:0.158347pt;}
.ls2{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.227733pt;}
.lse{letter-spacing:0.239467pt;}
.ls14{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.318347pt;}
.ls19{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.320427pt;}
.ls11{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:0.478293pt;}
.lsf{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.692907pt;}
.lsb{letter-spacing:3.326773pt;}
.ls6{letter-spacing:39.808000pt;}
.ls25{letter-spacing:56.890773pt;}
.ls0{letter-spacing:744.476373pt;}
.ws4{word-spacing:-38.400000pt;}
.ws1c{word-spacing:-24.435200pt;}
.wsf{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.271573pt;}
.wsd{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws1d{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.ws2{word-spacing:-15.632640pt;}
.ws17{word-spacing:-15.360003pt;}
.ws9{word-spacing:-14.720000pt;}
.wsc{word-spacing:-13.534613pt;}
.ws14{word-spacing:-13.306880pt;}
.ws13{word-spacing:-13.280000pt;}
.ws1b{word-spacing:-13.173760pt;}
.ws15{word-spacing:-12.129920pt;}
.ws11{word-spacing:-12.005120pt;}
.ws16{word-spacing:-11.040000pt;}
.wsa{word-spacing:-10.959467pt;}
.ws18{word-spacing:-10.400000pt;}
.ws1a{word-spacing:-9.280000pt;}
.ws12{word-spacing:-8.389120pt;}
.ws7{word-spacing:-7.810560pt;}
.ws19{word-spacing:-7.568427pt;}
.wsb{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._18{margin-left:-14.836235pt;}
._1c{margin-left:-13.605872pt;}
._19{margin-left:-11.806744pt;}
._1b{margin-left:-10.432703pt;}
._17{margin-left:-9.275310pt;}
._16{margin-left:-7.834169pt;}
._1a{margin-left:-5.239047pt;}
._9{margin-left:-3.989261pt;}
._7{margin-left:-2.944824pt;}
._8{margin-left:-1.982780pt;}
._1{margin-left:-0.895572pt;}
._0{width:1.042527pt;}
._2{width:2.068906pt;}
._3{width:3.637793pt;}
._12{width:4.991859pt;}
._e{width:6.144719pt;}
._f{width:7.856298pt;}
._c{width:9.403950pt;}
._b{width:10.816575pt;}
._d{width:11.868632pt;}
._4{width:13.505507pt;}
._5{width:14.580491pt;}
._6{width:17.471580pt;}
._a{width:18.624704pt;}
._10{width:20.160703pt;}
._11{width:21.384513pt;}
._14{width:25.153846pt;}
._13{width:26.303427pt;}
._15{width:175.978880pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs9{font-size:40.320000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:69.792133pt;}
.yce{bottom:99.392133pt;}
.y159{bottom:99.392173pt;}
.ydd{bottom:99.392267pt;}
.y16a{bottom:102.592133pt;}
.y44{bottom:104.031733pt;}
.y115{bottom:104.031787pt;}
.y91{bottom:105.471867pt;}
.y63{bottom:105.792667pt;}
.yb7{bottom:106.431733pt;}
.y7c{bottom:110.912000pt;}
.y114{bottom:115.712000pt;}
.y53{bottom:115.712133pt;}
.yf0{bottom:116.192133pt;}
.y43{bottom:116.192400pt;}
.y104{bottom:117.792133pt;}
.y94{bottom:118.271867pt;}
.y90{bottom:118.272133pt;}
.y190{bottom:118.431867pt;}
.y136{bottom:120.351987pt;}
.ycd{bottom:120.352133pt;}
.yad{bottom:123.712000pt;}
.y158{bottom:123.871867pt;}
.y169{bottom:130.271867pt;}
.ycc{bottom:132.352133pt;}
.y62{bottom:133.312400pt;}
.ydc{bottom:133.626400pt;}
.y7b{bottom:134.426667pt;}
.yef{bottom:134.586667pt;}
.y149{bottom:136.186667pt;}
.y135{bottom:136.506667pt;}
.yb6{bottom:141.786667pt;}
.y7a{bottom:146.906933pt;}
.y157{bottom:148.346853pt;}
.y134{bottom:148.666667pt;}
.y52{bottom:152.506933pt;}
.y3b{bottom:152.507067pt;}
.yee{bottom:152.986667pt;}
.ydb{bottom:155.386667pt;}
.y168{bottom:157.786667pt;}
.y103{bottom:158.746667pt;}
.y28{bottom:159.546933pt;}
.yac{bottom:160.506667pt;}
.y148{bottom:160.666667pt;}
.ycb{bottom:168.186667pt;}
.y113{bottom:168.986667pt;}
.yed{bottom:171.386667pt;}
.y8f{bottom:172.186667pt;}
.y17c{bottom:174.106667pt;}
.y156{bottom:174.266667pt;}
.yb5{bottom:176.986667pt;}
.y125{bottom:178.746667pt;}
.y147{bottom:180.826667pt;}
.y167{bottom:185.466667pt;}
.y79{bottom:186.586667pt;}
.yda{bottom:186.746667pt;}
.y93{bottom:187.706933pt;}
.y188{bottom:188.826667pt;}
.y61{bottom:188.826933pt;}
.y42{bottom:189.786667pt;}
.y102{bottom:190.106667pt;}
.y155{bottom:194.586667pt;}
.y27{bottom:196.346933pt;}
.y146{bottom:196.826667pt;}
.y112{bottom:204.826667pt;}
.yca{bottom:204.986667pt;}
.y51{bottom:208.026667pt;}
.y3a{bottom:208.026800pt;}
.yec{bottom:208.186667pt;}
.y8e{bottom:208.986667pt;}
.y17b{bottom:210.906667pt;}
.y154{bottom:212.986667pt;}
.yab{bottom:216.026667pt;}
.y145{bottom:217.626667pt;}
.y111{bottom:222.746667pt;}
.y78{bottom:223.386667pt;}
.y187{bottom:225.626667pt;}
.y60{bottom:225.626933pt;}
.yc3{bottom:226.586533pt;}
.y41{bottom:226.586667pt;}
.y144{bottom:229.786533pt;}
.yb4{bottom:231.386400pt;}
.y153{bottom:231.866800pt;}
.y26{bottom:233.146933pt;}
.y124{bottom:234.106933pt;}
.y18f{bottom:234.586533pt;}
.y92{bottom:235.226667pt;}
.y166{bottom:240.666667pt;}
.yc9{bottom:241.786667pt;}
.y50{bottom:244.826667pt;}
.yeb{bottom:244.986667pt;}
.y8d{bottom:245.786667pt;}
.yaa{bottom:252.826667pt;}
.y17a{bottom:258.426667pt;}
.y77{bottom:260.186667pt;}
.y5f{bottom:262.426933pt;}
.yc2{bottom:263.386533pt;}
.y39{bottom:263.386667pt;}
.y101{bottom:263.706800pt;}
.y123{bottom:270.906933pt;}
.y18e{bottom:271.386533pt;}
.y133{bottom:275.546667pt;}
.y110{bottom:278.106533pt;}
.yc8{bottom:278.586667pt;}
.y165{bottom:278.906667pt;}
.y186{bottom:280.986667pt;}
.y4f{bottom:281.626667pt;}
.y8c{bottom:282.626667pt;}
.yb3{bottom:286.306667pt;}
.y152{bottom:287.426667pt;}
.y25{bottom:288.706800pt;}
.ya9{bottom:289.666667pt;}
.y179{bottom:295.266667pt;}
.y76{bottom:297.026667pt;}
.y5e{bottom:299.267067pt;}
.yc1{bottom:300.226667pt;}
.y40{bottom:300.226800pt;}
.y100{bottom:300.546933pt;}
.y164{bottom:306.466667pt;}
.y122{bottom:307.747067pt;}
.y18d{bottom:308.226667pt;}
.y132{bottom:312.386267pt;}
.y10f{bottom:314.946667pt;}
.y4e{bottom:318.466800pt;}
.y143{bottom:318.466933pt;}
.y38{bottom:318.947067pt;}
.y8b{bottom:319.426667pt;}
.yb2{bottom:321.506667pt;}
.y151{bottom:324.226667pt;}
.y24{bottom:325.506800pt;}
.ya8{bottom:326.466667pt;}
.y178{bottom:332.066667pt;}
.y75{bottom:333.826667pt;}
.y163{bottom:333.986667pt;}
.y185{bottom:336.546667pt;}
.yd9{bottom:337.026667pt;}
.y3f{bottom:337.026800pt;}
.yff{bottom:337.346933pt;}
.yc7{bottom:344.546667pt;}
.y121{bottom:344.547067pt;}
.y18c{bottom:345.026667pt;}
.y131{bottom:350.147067pt;}
.y10e{bottom:351.746667pt;}
.y5d{bottom:354.626933pt;}
.y4d{bottom:355.266800pt;}
.yc0{bottom:355.746933pt;}
.y37{bottom:355.747067pt;}
.y8a{bottom:356.226667pt;}
.yb1{bottom:356.706667pt;}
.y23{bottom:362.306800pt;}
.ya7{bottom:363.266667pt;}
.y142{bottom:365.826800pt;}
.y177{bottom:368.866667pt;}
.y74{bottom:370.626667pt;}
.y150{bottom:371.746667pt;}
.y184{bottom:373.346667pt;}
.yd8{bottom:373.826667pt;}
.yfe{bottom:374.146933pt;}
.y130{bottom:376.706933pt;}
.y120{bottom:381.347067pt;}
.y18b{bottom:381.826667pt;}
.y162{bottom:385.666667pt;}
.y10d{bottom:388.546667pt;}
.y73{bottom:389.026667pt;}
.yc6{bottom:392.066667pt;}
.yea{bottom:392.546667pt;}
.ybf{bottom:392.546933pt;}
.y36{bottom:392.547067pt;}
.y89{bottom:393.026667pt;}
.y22{bottom:399.106800pt;}
.y141{bottom:402.626800pt;}
.y12f{bottom:403.106933pt;}
.y176{bottom:405.666667pt;}
.y72{bottom:407.426667pt;}
.y14f{bottom:408.546667pt;}
.y5c{bottom:410.147200pt;}
.y4c{bottom:410.626667pt;}
.yfd{bottom:410.946933pt;}
.yb0{bottom:411.266800pt;}
.y10c{bottom:417.666800pt;}
.ya6{bottom:418.626667pt;}
.y161{bottom:424.066667pt;}
.y71{bottom:425.826667pt;}
.y183{bottom:428.866667pt;}
.yc5{bottom:428.866800pt;}
.ye9{bottom:429.346667pt;}
.yd7{bottom:429.346800pt;}
.y35{bottom:429.347067pt;}
.y12e{bottom:429.506933pt;}
.y88{bottom:429.826667pt;}
.y21{bottom:435.906800pt;}
.y11f{bottom:436.866800pt;}
.y140{bottom:439.426800pt;}
.y175{bottom:442.466667pt;}
.y70{bottom:444.226667pt;}
.y14e{bottom:445.346667pt;}
.y10b{bottom:446.626667pt;}
.yfc{bottom:447.746933pt;}
.ybe{bottom:448.066667pt;}
.yaf{bottom:448.066800pt;}
.y18a{bottom:455.426667pt;}
.y12d{bottom:456.066800pt;}
.y6f{bottom:462.626667pt;}
.y14{bottom:463.747067pt;}
.y182{bottom:465.666667pt;}
.y5b{bottom:465.666933pt;}
.ye8{bottom:466.146667pt;}
.yd6{bottom:466.146800pt;}
.y4b{bottom:466.146933pt;}
.y34{bottom:466.147067pt;}
.y87{bottom:466.626667pt;}
.y160{bottom:471.426667pt;}
.y20{bottom:472.706800pt;}
.y11e{bottom:473.666800pt;}
.ya5{bottom:474.146667pt;}
.y10a{bottom:475.746667pt;}
.y174{bottom:479.266933pt;}
.y12c{bottom:482.466800pt;}
.yc4{bottom:484.226667pt;}
.yfb{bottom:484.546933pt;}
.ybd{bottom:484.866667pt;}
.yae{bottom:484.866800pt;}
.y13f{bottom:486.947067pt;}
.y189{bottom:492.226667pt;}
.y14d{bottom:492.866667pt;}
.y13{bottom:498.786667pt;}
.y5a{bottom:502.466933pt;}
.ye7{bottom:502.946667pt;}
.yd5{bottom:502.946800pt;}
.y33{bottom:502.947067pt;}
.y86{bottom:503.426667pt;}
.y109{bottom:504.866667pt;}
.y15f{bottom:508.253333pt;}
.y12b{bottom:508.893333pt;}
.y1f{bottom:509.533333pt;}
.y6e{bottom:510.173333pt;}
.y11d{bottom:510.493333pt;}
.ya4{bottom:510.973333pt;}
.y12{bottom:517.853333pt;}
.y181{bottom:521.053333pt;}
.y4a{bottom:521.693333pt;}
.y13e{bottom:523.773600pt;}
.y173{bottom:526.651467pt;}
.y14c{bottom:529.693333pt;}
.y108{bottom:533.853333pt;}
.y11{bottom:535.933333pt;}
.y59{bottom:539.293467pt;}
.yd4{bottom:539.773333pt;}
.y32{bottom:539.773600pt;}
.yfa{bottom:540.093333pt;}
.y85{bottom:540.253333pt;}
.y15e{bottom:545.053333pt;}
.y1e{bottom:546.333333pt;}
.y11c{bottom:547.293333pt;}
.ya3{bottom:547.773333pt;}
.y10{bottom:554.173333pt;}
.y12a{bottom:555.773467pt;}
.y6d{bottom:557.533333pt;}
.y180{bottom:557.853867pt;}
.ye6{bottom:558.493067pt;}
.y17f{bottom:558.493200pt;}
.y49{bottom:558.493333pt;}
.y13d{bottom:560.573600pt;}
.y107{bottom:562.973333pt;}
.y172{bottom:563.452000pt;}
.y14b{bottom:566.493333pt;}
.yf{bottom:572.413333pt;}
.yd3{bottom:576.573333pt;}
.y31{bottom:576.573600pt;}
.yf9{bottom:576.893333pt;}
.ybc{bottom:577.052800pt;}
.y84{bottom:577.053333pt;}
.y15d{bottom:581.853333pt;}
.y1d{bottom:583.133333pt;}
.ya2{bottom:584.573333pt;}
.y106{bottom:591.933333pt;}
.y129{bottom:592.573467pt;}
.y58{bottom:594.653333pt;}
.y17e{bottom:595.133333pt;}
.ye5{bottom:595.293067pt;}
.y48{bottom:595.293333pt;}
.y171{bottom:600.252533pt;}
.ye{bottom:602.013733pt;}
.y11b{bottom:603.293333pt;}
.y13c{bottom:607.933467pt;}
.y6c{bottom:613.053067pt;}
.yd2{bottom:613.373333pt;}
.y30{bottom:613.373600pt;}
.yf8{bottom:613.533467pt;}
.y83{bottom:613.853333pt;}
.ybb{bottom:613.853733pt;}
.y15c{bottom:618.653333pt;}
.ya1{bottom:621.373333pt;}
.y128{bottom:629.373467pt;}
.y57{bottom:631.453333pt;}
.ye4{bottom:631.933200pt;}
.y47{bottom:631.933467pt;}
.yd{bottom:632.573600pt;}
.y170{bottom:637.053067pt;}
.y1c{bottom:638.493200pt;}
.y105{bottom:639.453333pt;}
.y14a{bottom:639.933333pt;}
.y11a{bottom:639.933467pt;}
.y13b{bottom:644.733467pt;}
.y6b{bottom:649.853600pt;}
.yd1{bottom:650.173333pt;}
.y2f{bottom:650.173600pt;}
.yf7{bottom:650.333467pt;}
.yba{bottom:650.653200pt;}
.y82{bottom:650.653333pt;}
.y15b{bottom:655.453333pt;}
.ya0{bottom:658.173333pt;}
.yc{bottom:662.973600pt;}
.y56{bottom:668.253333pt;}
.ye3{bottom:668.733200pt;}
.y46{bottom:668.733467pt;}
.y16f{bottom:673.853600pt;}
.y1b{bottom:675.293200pt;}
.y127{bottom:676.733333pt;}
.y119{bottom:676.733467pt;}
.y13a{bottom:681.533467pt;}
.yd0{bottom:686.973333pt;}
.y2e{bottom:686.973600pt;}
.yf6{bottom:687.133467pt;}
.y17d{bottom:687.453200pt;}
.y81{bottom:687.453333pt;}
.yb9{bottom:687.453733pt;}
.yb{bottom:693.533467pt;}
.y15a{bottom:702.973333pt;}
.y55{bottom:705.053333pt;}
.y6a{bottom:705.373333pt;}
.ye2{bottom:705.533200pt;}
.y45{bottom:705.533467pt;}
.y1a{bottom:712.093200pt;}
.y126{bottom:713.533200pt;}
.y9f{bottom:713.533333pt;}
.y118{bottom:713.533467pt;}
.y139{bottom:718.333467pt;}
.y16e{bottom:721.373333pt;}
.ycf{bottom:723.773333pt;}
.y3e{bottom:723.773600pt;}
.yf5{bottom:723.933467pt;}
.ya{bottom:724.093333pt;}
.yb8{bottom:724.253200pt;}
.y80{bottom:724.253333pt;}
.y9e{bottom:731.973333pt;}
.ye1{bottom:742.373333pt;}
.y2d{bottom:742.373600pt;}
.y19{bottom:748.933333pt;}
.y9d{bottom:750.373333pt;}
.y117{bottom:750.373600pt;}
.y9{bottom:754.693333pt;}
.y16d{bottom:758.213467pt;}
.y3d{bottom:760.613733pt;}
.y69{bottom:760.773333pt;}
.yf4{bottom:760.773600pt;}
.y7f{bottom:761.093333pt;}
.y138{bottom:765.893333pt;}
.y9c{bottom:768.773333pt;}
.ye0{bottom:779.173333pt;}
.y2c{bottom:779.173600pt;}
.y8{bottom:785.093333pt;}
.y18{bottom:785.733333pt;}
.y9b{bottom:787.173333pt;}
.y116{bottom:787.173600pt;}
.y16c{bottom:795.013467pt;}
.y54{bottom:797.413733pt;}
.y7e{bottom:797.893333pt;}
.y9a{bottom:805.573333pt;}
.y68{bottom:807.173333pt;}
.y137{bottom:813.413333pt;}
.y7{bottom:815.653200pt;}
.ydf{bottom:815.973333pt;}
.y2b{bottom:815.973600pt;}
.yf3{bottom:816.293333pt;}
.y99{bottom:823.973333pt;}
.y67{bottom:834.693333pt;}
.y17{bottom:841.253067pt;}
.y98{bottom:842.373333pt;}
.y6{bottom:846.213600pt;}
.yde{bottom:852.773333pt;}
.y2a{bottom:852.773600pt;}
.yf2{bottom:853.093333pt;}
.y97{bottom:860.773333pt;}
.y66{bottom:862.373600pt;}
.y7d{bottom:871.493333pt;}
.y5{bottom:876.773467pt;}
.y16{bottom:878.053067pt;}
.y96{bottom:879.173333pt;}
.y3c{bottom:889.573600pt;}
.y65{bottom:889.893333pt;}
.y95{bottom:897.573333pt;}
.y29{bottom:908.293333pt;}
.y4{bottom:909.413600pt;}
.y16b{bottom:915.973333pt;}
.y64{bottom:917.573600pt;}
.yf1{bottom:926.693333pt;}
.y15{bottom:940.933333pt;}
.y3{bottom:945.093333pt;}
.hb{height:24.806250pt;}
.h22{height:25.473600pt;}
.hd{height:25.538560pt;}
.h14{height:26.643750pt;}
.h10{height:29.501440pt;}
.h13{height:38.128125pt;}
.he{height:40.509440pt;}
.h1{height:42.262500pt;}
.h19{height:42.270720pt;}
.h6{height:42.485625pt;}
.h1d{height:42.615313pt;}
.h1a{height:42.690000pt;}
.h5{height:43.688960pt;}
.h2{height:44.032000pt;}
.h20{height:44.032533pt;}
.h15{height:44.033067pt;}
.h4{height:44.288000pt;}
.h12{height:44.467150pt;}
.h8{height:44.468750pt;}
.h21{height:44.469283pt;}
.hc{height:44.736000pt;}
.h1c{height:46.819787pt;}
.h11{height:47.236250pt;}
.h9{height:47.488000pt;}
.h16{height:51.093120pt;}
.h1b{height:52.058933pt;}
.ha{height:53.820213pt;}
.h1e{height:53.821440pt;}
.hf{height:53.822293pt;}
.h1f{height:53.829760pt;}
.h17{height:53.980587pt;}
.h18{height:55.451250pt;}
.h7{height:63.838400pt;}
.h3{height:63.840000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.032000pt;}
.xf{left:120.031733pt;}
.xb{left:144.026667pt;}
.xc{left:168.026773pt;}
.xa{left:177.306667pt;}
.xd{left:192.026533pt;}
.x4{left:277.666667pt;}
.xe{left:288.066880pt;}
.x5{left:303.586400pt;}
.x7{left:321.346880pt;}
.x9{left:364.546880pt;}
.x8{left:392.066613pt;}
.x6{left:398.626560pt;}
.x10{left:400.546667pt;}
.x1{left:404.386667pt;}
.x3{left:408.066667pt;}
}




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