
    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_086b2f0219f7f98fb85cbdfa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_16434c4fc70390e4ba1d5188.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_716ae80c21fdef753ab2a603.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c28329bc3021497222b8d4c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.982910;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_5feacf54c6bfd75efe113032.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_302181e34f7aeeac9f3cb83b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.982910;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5071c93095aa2758b8f1b193.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_b293accf3f3ced9306d5fd9c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_e598081a11051c25337c8490.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.967773;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_aed7e3a8bb7d8cb8cda59480.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_85705eafefacda389c86196b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.967773;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_fc4bbdd9cc00d289a99180b5.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.091797;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_b2b14222e2f4f67a49c8628e.woff2')format("woff");}.fff{font-family:fff;line-height:1.091797;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_dc8d964a26c2af957e4ac665.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.090332;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_04f96080b6666c20d46ea39b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.923340;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_6901d6a59662f5ae64941249.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.923340;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_f0370ce89a30d989906115e1.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.030273;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_bb71a480d9121b837bfd8a3a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5ebd2842abaf0e7f23ae4682.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_30be2c32f193f79c20d7bf0f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_58d78f50e3402e4d59d872dc.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.030273;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_9a1586da2405be80f583b81a.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.030273;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:ff19;src:url('chunks/assets/font_ffe065dbe02a0443e38a1b3f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_8ae5c8f154aa7e59b6021f37.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.891113;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lse{letter-spacing:-1.812000px;}
.ls16{letter-spacing:-1.260000px;}
.ls1c{letter-spacing:-0.206400px;}
.ls20{letter-spacing:-0.177600px;}
.ls10{letter-spacing:-0.133800px;}
.ls11{letter-spacing:-0.132000px;}
.lsd{letter-spacing:-0.127200px;}
.lsc{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls12{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.108720px;}
.ls9{letter-spacing:0.128880px;}
.ls1{letter-spacing:0.132600px;}
.ls1a{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.ls6{letter-spacing:0.900000px;}
.ls5{letter-spacing:0.936000px;}
.ls13{letter-spacing:1.620000px;}
.ls14{letter-spacing:8.100000px;}
.ls1f{letter-spacing:16.506720px;}
.ls1e{letter-spacing:46.026720px;}
.ls18{letter-spacing:55.386720px;}
.ls15{letter-spacing:64.170720px;}
.ls1d{letter-spacing:70.650720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-84.240000px;}
.wsd{word-spacing:-59.760000px;}
.ws3{word-spacing:-23.587200px;}
.ws5{word-spacing:-21.775200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws9{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199800px;}
.wsa{word-spacing:-14.940000px;}
.ws0{word-spacing:-12.186000px;}
.wsb{word-spacing:-12.131280px;}
.ws8{word-spacing:-11.546640px;}
.ws7{word-spacing:-11.412840px;}
.ws6{word-spacing:-8.136000px;}
.wsc{word-spacing:0.000000px;}
._1d{margin-left:-8.256720px;}
._1e{margin-left:-7.193520px;}
._1b{margin-left:-5.696640px;}
._8{margin-left:-4.601520px;}
._3{margin-left:-3.406320px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.068000px;}
._1{width:1.188000px;}
._b{width:2.218320px;}
._a{width:3.406320px;}
._10{width:5.086800px;}
._d{width:6.848640px;}
._16{width:8.254080px;}
._7{width:9.435600px;}
._9{width:11.055600px;}
._c{width:12.131280px;}
._4{width:13.631760px;}
._1c{width:16.299360px;}
._18{width:17.373360px;}
._17{width:18.499680px;}
._11{width:19.985760px;}
._12{width:21.368160px;}
._6{width:23.014800px;}
._5{width:24.143040px;}
._1a{width:25.285440px;}
._19{width:26.839440px;}
._13{width:29.528640px;}
._15{width:31.978800px;}
._14{width:36.938880px;}
._f{width:38.865600px;}
._e{width:40.158720px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(10,29,48);}
.fc3{color:rgb(70,120,134);}
.fc2{color:rgb(10,47,65);}
.fc1{color:rgb(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:0.180000px;}
.y4{bottom:3.600000px;}
.yf{bottom:4.140000px;}
.y1b{bottom:5.040000px;}
.y46{bottom:5.940000px;}
.y4c{bottom:6.840000px;}
.yd4{bottom:12.240000px;}
.y1e{bottom:12.600000px;}
.yd0{bottom:13.140000px;}
.yd6{bottom:13.170000px;}
.yc6{bottom:13.320000px;}
.yd{bottom:13.860000px;}
.y5{bottom:17.316000px;}
.y3{bottom:20.196000px;}
.yeb{bottom:20.520000px;}
.ye9{bottom:21.600000px;}
.ye7{bottom:21.780000px;}
.y45{bottom:25.740000px;}
.ye0{bottom:26.460000px;}
.y4b{bottom:27.900000px;}
.ydd{bottom:27.945000px;}
.yc{bottom:30.240000px;}
.y6{bottom:31.860000px;}
.y49{bottom:37.440000px;}
.y44{bottom:45.540000px;}
.yb{bottom:46.440000px;}
.y4a{bottom:48.960000px;}
.y1a{bottom:50.760000px;}
.y48{bottom:52.020000px;}
.y2{bottom:54.180000px;}
.y43{bottom:65.340000px;}
.y19{bottom:69.840000px;}
.ya{bottom:73.440000px;}
.y42{bottom:85.185000px;}
.y18{bottom:88.740000px;}
.y9{bottom:93.060000px;}
.y41{bottom:105.165000px;}
.y17{bottom:107.685000px;}
.y8{bottom:111.270000px;}
.ye5{bottom:111.276000px;}
.y50{bottom:117.216000px;}
.y94{bottom:121.536000px;}
.y16{bottom:123.345000px;}
.yc4{bottom:124.776000px;}
.y40{bottom:124.965000px;}
.y84{bottom:129.096000px;}
.ye4{bottom:131.076000px;}
.y116{bottom:132.516000px;}
.y15{bottom:133.965000px;}
.y4f{bottom:137.016000px;}
.y93{bottom:141.336000px;}
.yc3{bottom:144.576000px;}
.y3f{bottom:144.765000px;}
.y83{bottom:148.896000px;}
.ye3{bottom:150.870000px;}
.y14{bottom:152.145000px;}
.y115{bottom:152.310000px;}
.y4e{bottom:156.990000px;}
.y92{bottom:161.130000px;}
.yc2{bottom:164.370000px;}
.y3e{bottom:164.565000px;}
.y82{bottom:168.690000px;}
.ye2{bottom:170.850000px;}
.y13{bottom:171.225000px;}
.y114{bottom:172.110000px;}
.y4d{bottom:174.270000px;}
.y91{bottom:181.110000px;}
.yc1{bottom:184.350000px;}
.y3d{bottom:184.365000px;}
.y47{bottom:188.130000px;}
.y81{bottom:188.490000px;}
.ye1{bottom:190.650000px;}
.y113{bottom:192.090000px;}
.y12{bottom:196.965000px;}
.y90{bottom:200.910000px;}
.yc0{bottom:204.150000px;}
.y3c{bottom:204.345000px;}
.ydf{bottom:205.410000px;}
.y80{bottom:208.470000px;}
.y112{bottom:211.890000px;}
.y8f{bottom:220.710000px;}
.y11{bottom:221.265000px;}
.ybf{bottom:223.950000px;}
.y3b{bottom:224.145000px;}
.y7f{bottom:228.270000px;}
.y111{bottom:231.690000px;}
.y8e{bottom:240.510000px;}
.ybe{bottom:243.750000px;}
.y3a{bottom:243.945000px;}
.y7e{bottom:248.070000px;}
.y2d{bottom:249.345000px;}
.y1f{bottom:251.310000px;}
.y110{bottom:251.490000px;}
.y8d{bottom:261.390000px;}
.ybd{bottom:263.550000px;}
.y39{bottom:263.745000px;}
.y2c{bottom:264.645000px;}
.yde{bottom:267.150000px;}
.y7d{bottom:267.870000px;}
.y10f{bottom:271.290000px;}
.y8c{bottom:281.370000px;}
.y2b{bottom:281.925000px;}
.ybc{bottom:283.530000px;}
.y38{bottom:283.545000px;}
.y7c{bottom:287.670000px;}
.y10e{bottom:291.270000px;}
.y2a{bottom:299.205000px;}
.y8b{bottom:302.250000px;}
.ybb{bottom:303.330000px;}
.y37{bottom:303.525000px;}
.y7b{bottom:307.650000px;}
.y10d{bottom:311.070000px;}
.y29{bottom:316.485000px;}
.y8a{bottom:323.130000px;}
.y36{bottom:323.325000px;}
.y7a{bottom:327.450000px;}
.y10c{bottom:330.870000px;}
.ydc{bottom:331.950000px;}
.y28{bottom:334.485000px;}
.yba{bottom:342.975000px;}
.y35{bottom:343.125000px;}
.y89{bottom:344.055000px;}
.y79{bottom:347.295000px;}
.y10b{bottom:350.715000px;}
.y27{bottom:351.045000px;}
.yb9{bottom:362.775000px;}
.y34{bottom:362.955000px;}
.y88{bottom:363.855000px;}
.y78{bottom:367.095000px;}
.y26{bottom:367.455000px;}
.y10a{bottom:370.515000px;}
.y33{bottom:382.755000px;}
.y87{bottom:383.655000px;}
.y25{bottom:384.735000px;}
.y77{bottom:386.895000px;}
.y109{bottom:390.495000px;}
.ydb{bottom:396.615000px;}
.y24{bottom:402.015000px;}
.yb8{bottom:402.555000px;}
.y32{bottom:402.735000px;}
.y86{bottom:404.715000px;}
.y76{bottom:406.875000px;}
.y108{bottom:410.295000px;}
.y23{bottom:419.475000px;}
.yb7{bottom:422.355000px;}
.y31{bottom:422.535000px;}
.y85{bottom:425.595000px;}
.y75{bottom:426.675000px;}
.y107{bottom:430.095000px;}
.y22{bottom:439.635000px;}
.yb6{bottom:442.155000px;}
.y30{bottom:442.335000px;}
.y74{bottom:446.475000px;}
.y106{bottom:449.895000px;}
.yb5{bottom:461.955000px;}
.y2f{bottom:462.135000px;}
.y73{bottom:466.275000px;}
.y21{bottom:467.175000px;}
.y105{bottom:469.695000px;}
.y2e{bottom:481.935000px;}
.y20{bottom:484.635000px;}
.y72{bottom:486.075000px;}
.yda{bottom:486.975000px;}
.y104{bottom:489.675000px;}
.yb4{bottom:501.735000px;}
.y71{bottom:506.055000px;}
.yd9{bottom:506.955000px;}
.y103{bottom:509.475000px;}
.yb3{bottom:521.535000px;}
.yd8{bottom:521.715000px;}
.y70{bottom:525.855000px;}
.y102{bottom:529.275000px;}
.yb2{bottom:541.335000px;}
.y6f{bottom:545.655000px;}
.y101{bottom:549.075000px;}
.yd7{bottom:556.995000px;}
.yb1{bottom:561.135000px;}
.y6e{bottom:565.455000px;}
.y100{bottom:568.875000px;}
.yb0{bottom:581.115000px;}
.y6d{bottom:585.255000px;}
.yff{bottom:588.855000px;}
.yd5{bottom:592.275000px;}
.yaf{bottom:600.915000px;}
.y6c{bottom:605.265000px;}
.yfe{bottom:608.685000px;}
.yae{bottom:620.745000px;}
.y6b{bottom:625.065000px;}
.yd3{bottom:627.765000px;}
.yfd{bottom:628.485000px;}
.yad{bottom:640.545000px;}
.y6a{bottom:644.865000px;}
.yfc{bottom:648.285000px;}
.yac{bottom:660.345000px;}
.yd2{bottom:661.425000px;}
.y69{bottom:664.665000px;}
.yfb{bottom:668.085000px;}
.yab{bottom:680.145000px;}
.y68{bottom:684.465000px;}
.yfa{bottom:688.065000px;}
.yd1{bottom:696.705000px;}
.yaa{bottom:700.125000px;}
.y67{bottom:704.445000px;}
.yf9{bottom:707.865000px;}
.ya9{bottom:719.925000px;}
.y66{bottom:724.245000px;}
.yf8{bottom:727.665000px;}
.ycf{bottom:732.165000px;}
.ya8{bottom:739.725000px;}
.y65{bottom:744.045000px;}
.y1c{bottom:747.285000px;}
.yf7{bottom:747.465000px;}
.ya7{bottom:759.525000px;}
.y64{bottom:763.845000px;}
.yf6{bottom:767.265000px;}
.yce{bottom:773.205000px;}
.y10{bottom:776.985000px;}
.ya6{bottom:779.325000px;}
.y63{bottom:783.645000px;}
.yf5{bottom:787.245000px;}
.ycd{bottom:793.005000px;}
.ya5{bottom:799.305000px;}
.y62{bottom:803.625000px;}
.yf4{bottom:807.045000px;}
.ycc{bottom:807.765000px;}
.ya4{bottom:819.105000px;}
.y61{bottom:823.425000px;}
.yf3{bottom:826.845000px;}
.ya3{bottom:838.905000px;}
.y60{bottom:843.225000px;}
.ycb{bottom:843.405000px;}
.yf2{bottom:846.645000px;}
.ya2{bottom:858.705000px;}
.y5f{bottom:863.025000px;}
.yf1{bottom:866.445000px;}
.ya1{bottom:878.550000px;}
.yca{bottom:879.090000px;}
.y5e{bottom:882.870000px;}
.yf0{bottom:886.470000px;}
.ya0{bottom:898.530000px;}
.y5d{bottom:902.850000px;}
.yef{bottom:906.270000px;}
.yc9{bottom:914.730000px;}
.y9f{bottom:918.330000px;}
.y5c{bottom:922.650000px;}
.yee{bottom:926.070000px;}
.y9e{bottom:938.130000px;}
.y5b{bottom:942.450000px;}
.yed{bottom:945.870000px;}
.yc8{bottom:948.750000px;}
.y9d{bottom:957.930000px;}
.y5a{bottom:962.250000px;}
.yec{bottom:965.670000px;}
.y9c{bottom:977.730000px;}
.yea{bottom:980.430000px;}
.y59{bottom:982.050000px;}
.yc7{bottom:984.390000px;}
.y9b{bottom:998.790000px;}
.y58{bottom:1002.030000px;}
.ye{bottom:1013.370000px;}
.y9a{bottom:1018.590000px;}
.yc5{bottom:1020.030000px;}
.y57{bottom:1021.830000px;}
.ye8{bottom:1030.470000px;}
.y7{bottom:1033.350000px;}
.y99{bottom:1039.470000px;}
.y56{bottom:1041.630000px;}
.y98{bottom:1059.270000px;}
.y55{bottom:1061.430000px;}
.y97{bottom:1079.070000px;}
.y54{bottom:1081.230000px;}
.ye6{bottom:1082.670000px;}
.y96{bottom:1099.050000px;}
.y53{bottom:1101.210000px;}
.y95{bottom:1119.930000px;}
.y52{bottom:1121.010000px;}
.y51{bottom:1140.840000px;}
.y1{bottom:1218.960000px;}
.hc{height:19.620000px;}
.h13{height:28.968750px;}
.h14{height:29.700000px;}
.h29{height:32.940000px;}
.h3{height:32.976000px;}
.h26{height:33.300000px;}
.h28{height:34.560000px;}
.h2a{height:34.596000px;}
.h25{height:34.920000px;}
.h27{height:34.956000px;}
.h12{height:35.806641px;}
.h8{height:36.180000px;}
.h1b{height:40.243711px;}
.h1f{height:40.773164px;}
.h21{height:41.726953px;}
.h20{height:42.164648px;}
.h1d{height:42.281367px;}
.h24{height:43.506914px;}
.he{height:44.002969px;}
.ha{height:44.820000px;}
.h18{height:47.980898px;}
.h1c{height:48.075820px;}
.h1a{height:49.297852px;}
.h30{height:49.320000px;}
.h23{height:50.510039px;}
.h2f{height:51.480000px;}
.h2e{height:51.660000px;}
.h1e{height:51.793945px;}
.h19{height:51.881484px;}
.h11{height:52.133906px;}
.h5{height:53.709961px;}
.h9{height:54.000000px;}
.h4{height:55.291992px;}
.h10{height:59.439023px;}
.h2d{height:61.020000px;}
.h2{height:62.402344px;}
.h15{height:62.507812px;}
.h22{height:63.180000px;}
.h2c{height:63.936000px;}
.hf{height:64.002656px;}
.h2b{height:64.080000px;}
.h6{height:67.824844px;}
.hb{height:71.613281px;}
.h16{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:236.370000px;}
.h17{height:495.975000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:73.080000px;}
.wd{width:82.620000px;}
.w13{width:88.920000px;}
.w16{width:128.340000px;}
.w5{width:151.950000px;}
.wc{width:161.490000px;}
.w12{width:187.770000px;}
.w10{width:200.055000px;}
.wb{width:202.890000px;}
.w14{width:223.095000px;}
.w8{width:223.455000px;}
.w11{width:250.770000px;}
.wa{width:273.675000px;}
.wf{width:301.530000px;}
.w15{width:372.855000px;}
.we{width:425.445000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w3{width:658.050000px;}
.w7{width:731.130000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:7.560000px;}
.x2{left:8.676000px;}
.x14{left:12.600000px;}
.xb{left:25.236000px;}
.xd{left:45.576000px;}
.x1{left:80.999987px;}
.xc{left:86.070000px;}
.x18{left:89.855987px;}
.x17{left:92.195987px;}
.x4{left:98.130000px;}
.x15{left:108.035987px;}
.x20{left:110.015987px;}
.xe{left:165.990000px;}
.x24{left:193.529987px;}
.x21{left:209.189987px;}
.x12{left:215.175000px;}
.x1e{left:218.549987px;}
.x5{left:232.950000px;}
.x11{left:239.295000px;}
.xf{left:257.295000px;}
.x10{left:258.735000px;}
.x8{left:272.235000px;}
.x22{left:282.495000px;}
.x13{left:304.455000px;}
.x25{left:305.535000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.x1a{left:356.115000px;}
.xa{left:365.475000px;}
.x27{left:396.074987px;}
.x19{left:409.394987px;}
.x9{left:439.500000px;}
.x16{left:446.474987px;}
.x1f{left:507.885000px;}
.x23{left:533.985000px;}
.x1b{left:559.905000px;}
.x26{left:679.110000px;}
.x1d{left:722.310000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lse{letter-spacing:-1.610667pt;}
.ls16{letter-spacing:-1.120000pt;}
.ls1c{letter-spacing:-0.183467pt;}
.ls20{letter-spacing:-0.157867pt;}
.ls10{letter-spacing:-0.118933pt;}
.ls11{letter-spacing:-0.117333pt;}
.lsd{letter-spacing:-0.113067pt;}
.lsc{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls12{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.096640pt;}
.ls9{letter-spacing:0.114560pt;}
.ls1{letter-spacing:0.117867pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls6{letter-spacing:0.800000pt;}
.ls5{letter-spacing:0.832000pt;}
.ls13{letter-spacing:1.440000pt;}
.ls14{letter-spacing:7.200000pt;}
.ls1f{letter-spacing:14.672640pt;}
.ls1e{letter-spacing:40.912640pt;}
.ls18{letter-spacing:49.232640pt;}
.ls15{letter-spacing:57.040640pt;}
.ls1d{letter-spacing:62.800640pt;}
.ws4{word-spacing:-74.880000pt;}
.wsd{word-spacing:-53.120000pt;}
.ws3{word-spacing:-20.966400pt;}
.ws5{word-spacing:-19.355733pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws9{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.280000pt;}
.ws0{word-spacing:-10.832000pt;}
.wsb{word-spacing:-10.783360pt;}
.ws8{word-spacing:-10.263680pt;}
.ws7{word-spacing:-10.144747pt;}
.ws6{word-spacing:-7.232000pt;}
.wsc{word-spacing:0.000000pt;}
._1d{margin-left:-7.339307pt;}
._1e{margin-left:-6.394240pt;}
._1b{margin-left:-5.063680pt;}
._8{margin-left:-4.090240pt;}
._3{margin-left:-3.027840pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-0.949333pt;}
._1{width:1.056000pt;}
._b{width:1.971840pt;}
._a{width:3.027840pt;}
._10{width:4.521600pt;}
._d{width:6.087680pt;}
._16{width:7.336960pt;}
._7{width:8.387200pt;}
._9{width:9.827200pt;}
._c{width:10.783360pt;}
._4{width:12.117120pt;}
._1c{width:14.488320pt;}
._18{width:15.442987pt;}
._17{width:16.444160pt;}
._11{width:17.765120pt;}
._12{width:18.993920pt;}
._6{width:20.457600pt;}
._5{width:21.460480pt;}
._1a{width:22.475947pt;}
._19{width:23.857280pt;}
._13{width:26.247680pt;}
._15{width:28.425600pt;}
._14{width:32.834560pt;}
._f{width:34.547200pt;}
._e{width:35.696640pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:0.160000pt;}
.y4{bottom:3.200000pt;}
.yf{bottom:3.680000pt;}
.y1b{bottom:4.480000pt;}
.y46{bottom:5.280000pt;}
.y4c{bottom:6.080000pt;}
.yd4{bottom:10.880000pt;}
.y1e{bottom:11.200000pt;}
.yd0{bottom:11.680000pt;}
.yd6{bottom:11.706667pt;}
.yc6{bottom:11.840000pt;}
.yd{bottom:12.320000pt;}
.y5{bottom:15.392000pt;}
.y3{bottom:17.952000pt;}
.yeb{bottom:18.240000pt;}
.ye9{bottom:19.200000pt;}
.ye7{bottom:19.360000pt;}
.y45{bottom:22.880000pt;}
.ye0{bottom:23.520000pt;}
.y4b{bottom:24.800000pt;}
.ydd{bottom:24.840000pt;}
.yc{bottom:26.880000pt;}
.y6{bottom:28.320000pt;}
.y49{bottom:33.280000pt;}
.y44{bottom:40.480000pt;}
.yb{bottom:41.280000pt;}
.y4a{bottom:43.520000pt;}
.y1a{bottom:45.120000pt;}
.y48{bottom:46.240000pt;}
.y2{bottom:48.160000pt;}
.y43{bottom:58.080000pt;}
.y19{bottom:62.080000pt;}
.ya{bottom:65.280000pt;}
.y42{bottom:75.720000pt;}
.y18{bottom:78.880000pt;}
.y9{bottom:82.720000pt;}
.y41{bottom:93.480000pt;}
.y17{bottom:95.720000pt;}
.y8{bottom:98.906667pt;}
.ye5{bottom:98.912000pt;}
.y50{bottom:104.192000pt;}
.y94{bottom:108.032000pt;}
.y16{bottom:109.640000pt;}
.yc4{bottom:110.912000pt;}
.y40{bottom:111.080000pt;}
.y84{bottom:114.752000pt;}
.ye4{bottom:116.512000pt;}
.y116{bottom:117.792000pt;}
.y15{bottom:119.080000pt;}
.y4f{bottom:121.792000pt;}
.y93{bottom:125.632000pt;}
.yc3{bottom:128.512000pt;}
.y3f{bottom:128.680000pt;}
.y83{bottom:132.352000pt;}
.ye3{bottom:134.106667pt;}
.y14{bottom:135.240000pt;}
.y115{bottom:135.386667pt;}
.y4e{bottom:139.546667pt;}
.y92{bottom:143.226667pt;}
.yc2{bottom:146.106667pt;}
.y3e{bottom:146.280000pt;}
.y82{bottom:149.946667pt;}
.ye2{bottom:151.866667pt;}
.y13{bottom:152.200000pt;}
.y114{bottom:152.986667pt;}
.y4d{bottom:154.906667pt;}
.y91{bottom:160.986667pt;}
.yc1{bottom:163.866667pt;}
.y3d{bottom:163.880000pt;}
.y47{bottom:167.226667pt;}
.y81{bottom:167.546667pt;}
.ye1{bottom:169.466667pt;}
.y113{bottom:170.746667pt;}
.y12{bottom:175.080000pt;}
.y90{bottom:178.586667pt;}
.yc0{bottom:181.466667pt;}
.y3c{bottom:181.640000pt;}
.ydf{bottom:182.586667pt;}
.y80{bottom:185.306667pt;}
.y112{bottom:188.346667pt;}
.y8f{bottom:196.186667pt;}
.y11{bottom:196.680000pt;}
.ybf{bottom:199.066667pt;}
.y3b{bottom:199.240000pt;}
.y7f{bottom:202.906667pt;}
.y111{bottom:205.946667pt;}
.y8e{bottom:213.786667pt;}
.ybe{bottom:216.666667pt;}
.y3a{bottom:216.840000pt;}
.y7e{bottom:220.506667pt;}
.y2d{bottom:221.640000pt;}
.y1f{bottom:223.386667pt;}
.y110{bottom:223.546667pt;}
.y8d{bottom:232.346667pt;}
.ybd{bottom:234.266667pt;}
.y39{bottom:234.440000pt;}
.y2c{bottom:235.240000pt;}
.yde{bottom:237.466667pt;}
.y7d{bottom:238.106667pt;}
.y10f{bottom:241.146667pt;}
.y8c{bottom:250.106667pt;}
.y2b{bottom:250.600000pt;}
.ybc{bottom:252.026667pt;}
.y38{bottom:252.040000pt;}
.y7c{bottom:255.706667pt;}
.y10e{bottom:258.906667pt;}
.y2a{bottom:265.960000pt;}
.y8b{bottom:268.666667pt;}
.ybb{bottom:269.626667pt;}
.y37{bottom:269.800000pt;}
.y7b{bottom:273.466667pt;}
.y10d{bottom:276.506667pt;}
.y29{bottom:281.320000pt;}
.y8a{bottom:287.226667pt;}
.y36{bottom:287.400000pt;}
.y7a{bottom:291.066667pt;}
.y10c{bottom:294.106667pt;}
.ydc{bottom:295.066667pt;}
.y28{bottom:297.320000pt;}
.yba{bottom:304.866667pt;}
.y35{bottom:305.000000pt;}
.y89{bottom:305.826667pt;}
.y79{bottom:308.706667pt;}
.y10b{bottom:311.746667pt;}
.y27{bottom:312.040000pt;}
.yb9{bottom:322.466667pt;}
.y34{bottom:322.626667pt;}
.y88{bottom:323.426667pt;}
.y78{bottom:326.306667pt;}
.y26{bottom:326.626667pt;}
.y10a{bottom:329.346667pt;}
.y33{bottom:340.226667pt;}
.y87{bottom:341.026667pt;}
.y25{bottom:341.986667pt;}
.y77{bottom:343.906667pt;}
.y109{bottom:347.106667pt;}
.ydb{bottom:352.546667pt;}
.y24{bottom:357.346667pt;}
.yb8{bottom:357.826667pt;}
.y32{bottom:357.986667pt;}
.y86{bottom:359.746667pt;}
.y76{bottom:361.666667pt;}
.y108{bottom:364.706667pt;}
.y23{bottom:372.866667pt;}
.yb7{bottom:375.426667pt;}
.y31{bottom:375.586667pt;}
.y85{bottom:378.306667pt;}
.y75{bottom:379.266667pt;}
.y107{bottom:382.306667pt;}
.y22{bottom:390.786667pt;}
.yb6{bottom:393.026667pt;}
.y30{bottom:393.186667pt;}
.y74{bottom:396.866667pt;}
.y106{bottom:399.906667pt;}
.yb5{bottom:410.626667pt;}
.y2f{bottom:410.786667pt;}
.y73{bottom:414.466667pt;}
.y21{bottom:415.266667pt;}
.y105{bottom:417.506667pt;}
.y2e{bottom:428.386667pt;}
.y20{bottom:430.786667pt;}
.y72{bottom:432.066667pt;}
.yda{bottom:432.866667pt;}
.y104{bottom:435.266667pt;}
.yb4{bottom:445.986667pt;}
.y71{bottom:449.826667pt;}
.yd9{bottom:450.626667pt;}
.y103{bottom:452.866667pt;}
.yb3{bottom:463.586667pt;}
.yd8{bottom:463.746667pt;}
.y70{bottom:467.426667pt;}
.y102{bottom:470.466667pt;}
.yb2{bottom:481.186667pt;}
.y6f{bottom:485.026667pt;}
.y101{bottom:488.066667pt;}
.yd7{bottom:495.106667pt;}
.yb1{bottom:498.786667pt;}
.y6e{bottom:502.626667pt;}
.y100{bottom:505.666667pt;}
.yb0{bottom:516.546667pt;}
.y6d{bottom:520.226667pt;}
.yff{bottom:523.426667pt;}
.yd5{bottom:526.466667pt;}
.yaf{bottom:534.146667pt;}
.y6c{bottom:538.013333pt;}
.yfe{bottom:541.053333pt;}
.yae{bottom:551.773333pt;}
.y6b{bottom:555.613333pt;}
.yd3{bottom:558.013333pt;}
.yfd{bottom:558.653333pt;}
.yad{bottom:569.373333pt;}
.y6a{bottom:573.213333pt;}
.yfc{bottom:576.253333pt;}
.yac{bottom:586.973333pt;}
.yd2{bottom:587.933333pt;}
.y69{bottom:590.813333pt;}
.yfb{bottom:593.853333pt;}
.yab{bottom:604.573333pt;}
.y68{bottom:608.413333pt;}
.yfa{bottom:611.613333pt;}
.yd1{bottom:619.293333pt;}
.yaa{bottom:622.333333pt;}
.y67{bottom:626.173333pt;}
.yf9{bottom:629.213333pt;}
.ya9{bottom:639.933333pt;}
.y66{bottom:643.773333pt;}
.yf8{bottom:646.813333pt;}
.ycf{bottom:650.813333pt;}
.ya8{bottom:657.533333pt;}
.y65{bottom:661.373333pt;}
.y1c{bottom:664.253333pt;}
.yf7{bottom:664.413333pt;}
.ya7{bottom:675.133333pt;}
.y64{bottom:678.973333pt;}
.yf6{bottom:682.013333pt;}
.yce{bottom:687.293333pt;}
.y10{bottom:690.653333pt;}
.ya6{bottom:692.733333pt;}
.y63{bottom:696.573333pt;}
.yf5{bottom:699.773333pt;}
.ycd{bottom:704.893333pt;}
.ya5{bottom:710.493333pt;}
.y62{bottom:714.333333pt;}
.yf4{bottom:717.373333pt;}
.ycc{bottom:718.013333pt;}
.ya4{bottom:728.093333pt;}
.y61{bottom:731.933333pt;}
.yf3{bottom:734.973333pt;}
.ya3{bottom:745.693333pt;}
.y60{bottom:749.533333pt;}
.ycb{bottom:749.693333pt;}
.yf2{bottom:752.573333pt;}
.ya2{bottom:763.293333pt;}
.y5f{bottom:767.133333pt;}
.yf1{bottom:770.173333pt;}
.ya1{bottom:780.933333pt;}
.yca{bottom:781.413333pt;}
.y5e{bottom:784.773333pt;}
.yf0{bottom:787.973333pt;}
.ya0{bottom:798.693333pt;}
.y5d{bottom:802.533333pt;}
.yef{bottom:805.573333pt;}
.yc9{bottom:813.093333pt;}
.y9f{bottom:816.293333pt;}
.y5c{bottom:820.133333pt;}
.yee{bottom:823.173333pt;}
.y9e{bottom:833.893333pt;}
.y5b{bottom:837.733333pt;}
.yed{bottom:840.773333pt;}
.yc8{bottom:843.333333pt;}
.y9d{bottom:851.493333pt;}
.y5a{bottom:855.333333pt;}
.yec{bottom:858.373333pt;}
.y9c{bottom:869.093333pt;}
.yea{bottom:871.493333pt;}
.y59{bottom:872.933333pt;}
.yc7{bottom:875.013333pt;}
.y9b{bottom:887.813333pt;}
.y58{bottom:890.693333pt;}
.ye{bottom:900.773333pt;}
.y9a{bottom:905.413333pt;}
.yc5{bottom:906.693333pt;}
.y57{bottom:908.293333pt;}
.ye8{bottom:915.973333pt;}
.y7{bottom:918.533333pt;}
.y99{bottom:923.973333pt;}
.y56{bottom:925.893333pt;}
.y98{bottom:941.573333pt;}
.y55{bottom:943.493333pt;}
.y97{bottom:959.173333pt;}
.y54{bottom:961.093333pt;}
.ye6{bottom:962.373333pt;}
.y96{bottom:976.933333pt;}
.y53{bottom:978.853333pt;}
.y95{bottom:995.493333pt;}
.y52{bottom:996.453333pt;}
.y51{bottom:1014.080000pt;}
.y1{bottom:1083.520000pt;}
.hc{height:17.440000pt;}
.h13{height:25.750000pt;}
.h14{height:26.400000pt;}
.h29{height:29.280000pt;}
.h3{height:29.312000pt;}
.h26{height:29.600000pt;}
.h28{height:30.720000pt;}
.h2a{height:30.752000pt;}
.h25{height:31.040000pt;}
.h27{height:31.072000pt;}
.h12{height:31.828125pt;}
.h8{height:32.160000pt;}
.h1b{height:35.772188pt;}
.h1f{height:36.242812pt;}
.h21{height:37.090625pt;}
.h20{height:37.479688pt;}
.h1d{height:37.583438pt;}
.h24{height:38.672812pt;}
.he{height:39.113750pt;}
.ha{height:39.840000pt;}
.h18{height:42.649687pt;}
.h1c{height:42.734063pt;}
.h1a{height:43.820312pt;}
.h30{height:43.840000pt;}
.h23{height:44.897813pt;}
.h2f{height:45.760000pt;}
.h2e{height:45.920000pt;}
.h1e{height:46.039063pt;}
.h19{height:46.116875pt;}
.h11{height:46.341250pt;}
.h5{height:47.742188pt;}
.h9{height:48.000000pt;}
.h4{height:49.148438pt;}
.h10{height:52.834688pt;}
.h2d{height:54.240000pt;}
.h2{height:55.468750pt;}
.h15{height:55.562500pt;}
.h22{height:56.160000pt;}
.h2c{height:56.832000pt;}
.hf{height:56.891250pt;}
.h2b{height:56.960000pt;}
.h6{height:60.288750pt;}
.hb{height:63.656250pt;}
.h16{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:210.106667pt;}
.h17{height:440.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:64.960000pt;}
.wd{width:73.440000pt;}
.w13{width:79.040000pt;}
.w16{width:114.080000pt;}
.w5{width:135.066667pt;}
.wc{width:143.546667pt;}
.w12{width:166.906667pt;}
.w10{width:177.826667pt;}
.wb{width:180.346667pt;}
.w14{width:198.306667pt;}
.w8{width:198.626667pt;}
.w11{width:222.906667pt;}
.wa{width:243.266667pt;}
.wf{width:268.026667pt;}
.w15{width:331.426667pt;}
.we{width:378.173333pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w3{width:584.933333pt;}
.w7{width:649.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.720000pt;}
.x2{left:7.712000pt;}
.x14{left:11.200000pt;}
.xb{left:22.432000pt;}
.xd{left:40.512000pt;}
.x1{left:71.999988pt;}
.xc{left:76.506667pt;}
.x18{left:79.871988pt;}
.x17{left:81.951988pt;}
.x4{left:87.226667pt;}
.x15{left:96.031988pt;}
.x20{left:97.791988pt;}
.xe{left:147.546667pt;}
.x24{left:172.026655pt;}
.x21{left:185.946655pt;}
.x12{left:191.266667pt;}
.x1e{left:194.266655pt;}
.x5{left:207.066667pt;}
.x11{left:212.706667pt;}
.xf{left:228.706667pt;}
.x10{left:229.986667pt;}
.x8{left:241.986667pt;}
.x22{left:251.106667pt;}
.x13{left:270.626667pt;}
.x25{left:271.586667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.x1a{left:316.546667pt;}
.xa{left:324.866667pt;}
.x27{left:352.066655pt;}
.x19{left:363.906655pt;}
.x9{left:390.666667pt;}
.x16{left:396.866655pt;}
.x1f{left:451.453333pt;}
.x23{left:474.653333pt;}
.x1b{left:497.693333pt;}
.x26{left:603.653333pt;}
.x1d{left:642.053333pt;}
.x3{left:656.933333pt;}
}




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