
    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_9bc6caf9ae5031432350820d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.201172;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_f85305d20d571ab999751995.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_69522f2c26ab9ff70ddfe7ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_80ac41ac63e0043ec42dcc69.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_ab8bbbad52e2b4cf222876d3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5071c93095aa2758b8f1b193.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b293accf3f3ced9306d5fd9c.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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fcbf5ef1fa1bd41c046eb475.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_bb384720646be6e46b98d55e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0ff916104b16d4ef96351a60.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5a8c127abae45de0154b7a1f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1ba6361cbe38e55fe5e8fda0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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_93be839c83e88dadf8dc14b2.woff2')format("woff");}.fff{font-family:fff;line-height:1.082031;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_bd92baf71b9c32a4893fd5ff.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.040039;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_ff1a17f26f35a50f4c0be969.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_0425ad00c3799713202f7a54.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_64c5decc9e3e303227cc60b3.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_024191ddd5b75d5e39a841cf.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_1298c7802e14c17c3c8f9641.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.082031;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_05642092c67e8c1f5027a9c1.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_a6e6f967d4e3aa421b4ecc1c.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.063477;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_f4889dc8087bcc9c032fcc95.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.063477;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_df46af62196c598fdb82d1f1.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff1c{font-family:ff1c;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v5{vertical-align:22.320000px;}
.v4{vertical-align:40.320000px;}
.v1{vertical-align:46.080000px;}
.v2{vertical-align:68.400000px;}
.lsa{letter-spacing:-4.680000px;}
.ls20{letter-spacing:-3.546000px;}
.ls24{letter-spacing:-2.520000px;}
.ls1a{letter-spacing:-0.612000px;}
.ls25{letter-spacing:-0.540000px;}
.ls21{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.132000px;}
.ls9{letter-spacing:-0.127200px;}
.lsb{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls28{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.108720px;}
.ls5{letter-spacing:0.128880px;}
.ls1{letter-spacing:0.132600px;}
.ls23{letter-spacing:0.135600px;}
.ls1e{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls22{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.399600px;}
.lse{letter-spacing:0.513600px;}
.ls1d{letter-spacing:0.666720px;}
.ls3{letter-spacing:0.786240px;}
.ls13{letter-spacing:2.059200px;}
.ls11{letter-spacing:2.062080px;}
.ls12{letter-spacing:3.180960px;}
.lsf{letter-spacing:6.660000px;}
.ls17{letter-spacing:16.140960px;}
.ls27{letter-spacing:16.506720px;}
.ls19{letter-spacing:17.216640px;}
.ls26{letter-spacing:46.026720px;}
.ls1f{letter-spacing:55.386720px;}
.ls10{letter-spacing:64.026720px;}
.ls14{letter-spacing:114.180960px;}
.ls18{letter-spacing:192.660960px;}
.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;}
}
.ws10{word-spacing:-59.772960px;}
.wsb{word-spacing:-59.760000px;}
.wsd{word-spacing:-46.667040px;}
.wsf{word-spacing:-46.268640px;}
.wse{word-spacing:-43.200720px;}
.wsc{word-spacing:-42.480720px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws3{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.046800px;}
.ws14{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.580000px;}
.ws13{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.186000px;}
.ws8{word-spacing:-12.131280px;}
.ws5{word-spacing:-10.260000px;}
.ws9{word-spacing:0.000000px;}
._13{margin-left:-7.170720px;}
._15{margin-left:-5.677200px;}
._3{margin-left:-4.601520px;}
._11{margin-left:-3.568080px;}
._2{margin-left:-2.554320px;}
._0{margin-left:-1.068000px;}
._1{width:1.238640px;}
._5{width:2.486880px;}
._6{width:3.637680px;}
._10{width:4.694400px;}
._4{width:5.776800px;}
._d{width:6.948480px;}
._e{width:8.327760px;}
._b{width:9.334560px;}
._12{width:10.548960px;}
._9{width:11.861040px;}
._a{width:13.505760px;}
._c{width:16.092240px;}
._8{width:19.800000px;}
._7{width:20.975760px;}
._f{width:22.067760px;}
._14{width:52.220160px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(10,29,48);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(10,47,65);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y44{bottom:4.140000px;}
.y104{bottom:8.460000px;}
.yd0{bottom:8.640000px;}
.ye{bottom:9.360000px;}
.y42{bottom:10.800000px;}
.y17{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.496000px;}
.y15{bottom:19.980000px;}
.y2{bottom:20.196000px;}
.y3e{bottom:20.520000px;}
.y43{bottom:22.500000px;}
.y41{bottom:25.560000px;}
.yb{bottom:30.240000px;}
.y14{bottom:37.080000px;}
.y3d{bottom:37.620000px;}
.y5{bottom:42.120000px;}
.ya{bottom:46.620000px;}
.y3c{bottom:54.900000px;}
.y13{bottom:55.260000px;}
.y1{bottom:64.440000px;}
.y3b{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.y12{bottom:74.160000px;}
.y3a{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y11{bottom:99.900000px;}
.y39{bottom:106.740000px;}
.y55{bottom:110.556000px;}
.y7{bottom:111.450000px;}
.yf5{bottom:114.876000px;}
.yc4{bottom:119.196000px;}
.y90{bottom:120.816000px;}
.y38{bottom:123.840000px;}
.y10{bottom:124.380000px;}
.y54{bottom:127.836000px;}
.y12c{bottom:131.616000px;}
.yc3{bottom:136.476000px;}
.y8f{bottom:138.096000px;}
.y37{bottom:141.120000px;}
.y53{bottom:145.116000px;}
.y27{bottom:147.780000px;}
.y12b{bottom:148.896000px;}
.yc2{bottom:153.750000px;}
.y8e{bottom:155.370000px;}
.y36{bottom:158.400000px;}
.y52{bottom:162.390000px;}
.y26{bottom:163.080000px;}
.yf4{bottom:163.470000px;}
.y12a{bottom:166.170000px;}
.y8d{bottom:169.410000px;}
.y142{bottom:169.770000px;}
.yc1{bottom:172.110000px;}
.y35{bottom:175.710000px;}
.y8c{bottom:179.490000px;}
.y51{bottom:179.670000px;}
.y25{bottom:180.570000px;}
.yf3{bottom:180.750000px;}
.y129{bottom:183.270000px;}
.y141{bottom:187.050000px;}
.yc0{bottom:189.390000px;}
.y34{bottom:192.990000px;}
.y50{bottom:196.770000px;}
.y24{bottom:197.670000px;}
.yf2{bottom:198.030000px;}
.y128{bottom:200.550000px;}
.y140{bottom:204.330000px;}
.ybf{bottom:207.570000px;}
.y8b{bottom:208.470000px;}
.y33{bottom:210.270000px;}
.y4f{bottom:214.050000px;}
.y23{bottom:214.950000px;}
.yf1{bottom:215.310000px;}
.y127{bottom:217.830000px;}
.y13f{bottom:221.610000px;}
.ybe{bottom:224.850000px;}
.y8a{bottom:226.830000px;}
.y32{bottom:227.370000px;}
.y4e{bottom:231.330000px;}
.yf0{bottom:232.590000px;}
.y22{bottom:232.950000px;}
.y126{bottom:235.110000px;}
.y13e{bottom:238.890000px;}
.ybd{bottom:242.130000px;}
.y31{bottom:244.650000px;}
.y89{bottom:245.010000px;}
.y4d{bottom:248.610000px;}
.yef{bottom:249.690000px;}
.y21{bottom:250.410000px;}
.y125{bottom:252.390000px;}
.y13d{bottom:256.170000px;}
.ybc{bottom:259.410000px;}
.y30{bottom:261.930000px;}
.y88{bottom:263.370000px;}
.y4c{bottom:265.890000px;}
.y20{bottom:267.690000px;}
.yee{bottom:268.590000px;}
.y124{bottom:269.670000px;}
.y13c{bottom:273.270000px;}
.y87{bottom:277.410000px;}
.ybb{bottom:277.770000px;}
.y2f{bottom:279.210000px;}
.y4b{bottom:282.990000px;}
.y1f{bottom:285.150000px;}
.y123{bottom:286.770000px;}
.y86{bottom:287.490000px;}
.y13b{bottom:290.550000px;}
.yed{bottom:291.810000px;}
.yba{bottom:295.950000px;}
.y2e{bottom:296.490000px;}
.y4a{bottom:300.270000px;}
.y1e{bottom:302.610000px;}
.y122{bottom:304.050000px;}
.y13a{bottom:307.830000px;}
.y2d{bottom:313.770000px;}
.yb9{bottom:314.310000px;}
.yec{bottom:315.210000px;}
.y85{bottom:316.470000px;}
.y49{bottom:317.550000px;}
.y1d{bottom:319.890000px;}
.y121{bottom:321.330000px;}
.y139{bottom:325.110000px;}
.y2c{bottom:330.870000px;}
.yb8{bottom:331.590000px;}
.y84{bottom:333.750000px;}
.y48{bottom:334.830000px;}
.y1c{bottom:337.350000px;}
.yeb{bottom:338.475000px;}
.y120{bottom:338.655000px;}
.y138{bottom:342.435000px;}
.y2b{bottom:348.150000px;}
.yb7{bottom:348.915000px;}
.y83{bottom:351.075000px;}
.y47{bottom:352.155000px;}
.y11f{bottom:355.935000px;}
.y1b{bottom:357.690000px;}
.y137{bottom:359.715000px;}
.yea{bottom:363.855000px;}
.y2a{bottom:365.430000px;}
.yb6{bottom:367.275000px;}
.y82{bottom:368.355000px;}
.y46{bottom:369.435000px;}
.y11e{bottom:373.035000px;}
.y136{bottom:376.815000px;}
.ye9{bottom:381.135000px;}
.y29{bottom:382.710000px;}
.y1a{bottom:385.050000px;}
.yb5{bottom:385.455000px;}
.y45{bottom:386.535000px;}
.y11d{bottom:390.315000px;}
.y135{bottom:394.095000px;}
.ye8{bottom:398.235000px;}
.y28{bottom:399.990000px;}
.y40{bottom:400.575000px;}
.y19{bottom:402.690000px;}
.yb4{bottom:403.815000px;}
.y81{bottom:404.895000px;}
.y11c{bottom:407.595000px;}
.y134{bottom:411.375000px;}
.ye7{bottom:415.515000px;}
.yb3{bottom:422.175000px;}
.y80{bottom:423.255000px;}
.y11b{bottom:424.875000px;}
.y133{bottom:428.655000px;}
.ye6{bottom:432.795000px;}
.y18{bottom:437.295000px;}
.yb2{bottom:439.455000px;}
.y7f{bottom:441.615000px;}
.y11a{bottom:442.155000px;}
.y132{bottom:445.935000px;}
.ye5{bottom:451.695000px;}
.yb1{bottom:456.735000px;}
.y7e{bottom:458.895000px;}
.y119{bottom:459.435000px;}
.y131{bottom:463.035000px;}
.ye4{bottom:474.915000px;}
.yb0{bottom:475.095000px;}
.y7d{bottom:475.995000px;}
.y118{bottom:476.535000px;}
.y130{bottom:480.315000px;}
.yaf{bottom:493.275000px;}
.y117{bottom:493.815000px;}
.y7c{bottom:494.355000px;}
.y12f{bottom:497.595000px;}
.ye3{bottom:498.135000px;}
.y116{bottom:511.095000px;}
.yae{bottom:511.635000px;}
.y7b{bottom:512.715000px;}
.y12e{bottom:514.875000px;}
.ye2{bottom:521.355000px;}
.yad{bottom:528.915000px;}
.y115{bottom:529.995000px;}
.y7a{bottom:531.075000px;}
.y12d{bottom:532.155000px;}
.ye1{bottom:546.735000px;}
.yac{bottom:547.275000px;}
.y79{bottom:549.435000px;}
.y114{bottom:553.215000px;}
.ye0{bottom:564.015000px;}
.yab{bottom:565.635000px;}
.y78{bottom:566.535000px;}
.y113{bottom:576.435000px;}
.ydf{bottom:581.295000px;}
.y77{bottom:583.815000px;}
.yde{bottom:598.575000px;}
.y112{bottom:599.655000px;}
.y76{bottom:601.095000px;}
.ydd{bottom:615.885000px;}
.y75{bottom:618.405000px;}
.yaa{bottom:619.485000px;}
.y111{bottom:625.065000px;}
.ydc{bottom:632.985000px;}
.y74{bottom:635.685000px;}
.ya9{bottom:637.845000px;}
.y110{bottom:642.345000px;}
.ydb{bottom:650.265000px;}
.y73{bottom:652.965000px;}
.ya8{bottom:656.205000px;}
.y10f{bottom:659.625000px;}
.yda{bottom:669.165000px;}
.y72{bottom:670.065000px;}
.ya7{bottom:673.305000px;}
.y10e{bottom:676.905000px;}
.y71{bottom:687.345000px;}
.ya6{bottom:690.585000px;}
.yd9{bottom:692.385000px;}
.y10d{bottom:694.185000px;}
.y70{bottom:704.625000px;}
.ya5{bottom:707.865000px;}
.y10c{bottom:711.465000px;}
.yd8{bottom:715.605000px;}
.y6f{bottom:721.905000px;}
.ya4{bottom:725.145000px;}
.y10b{bottom:728.565000px;}
.yd7{bottom:739.005000px;}
.y6e{bottom:739.185000px;}
.ya3{bottom:742.425000px;}
.y10a{bottom:745.845000px;}
.y6d{bottom:756.465000px;}
.ya2{bottom:759.705000px;}
.yd6{bottom:762.225000px;}
.y109{bottom:763.125000px;}
.y6c{bottom:773.565000px;}
.ya1{bottom:776.805000px;}
.y108{bottom:782.025000px;}
.yd5{bottom:785.445000px;}
.y6b{bottom:790.845000px;}
.ya0{bottom:795.165000px;}
.y107{bottom:805.245000px;}
.y6a{bottom:808.125000px;}
.yd4{bottom:808.665000px;}
.y9f{bottom:813.525000px;}
.y69{bottom:825.405000px;}
.y106{bottom:828.465000px;}
.y9e{bottom:831.885000px;}
.y68{bottom:842.685000px;}
.y9d{bottom:850.245000px;}
.y16{bottom:851.325000px;}
.y105{bottom:851.685000px;}
.yd3{bottom:855.105000px;}
.y67{bottom:859.785000px;}
.y9c{bottom:868.425000px;}
.y103{bottom:875.130000px;}
.y66{bottom:877.110000px;}
.yd2{bottom:878.550000px;}
.yf{bottom:880.890000px;}
.y9b{bottom:885.750000px;}
.y65{bottom:894.390000px;}
.y102{bottom:898.350000px;}
.yd1{bottom:901.770000px;}
.y9a{bottom:904.110000px;}
.y64{bottom:911.670000px;}
.y101{bottom:921.570000px;}
.y99{bottom:922.470000px;}
.ycf{bottom:924.990000px;}
.y63{bottom:928.950000px;}
.y98{bottom:940.830000px;}
.y100{bottom:944.790000px;}
.y62{bottom:946.230000px;}
.yce{bottom:948.210000px;}
.y97{bottom:958.110000px;}
.y61{bottom:963.330000px;}
.yff{bottom:968.010000px;}
.ycd{bottom:971.430000px;}
.y96{bottom:976.290000px;}
.y60{bottom:980.610000px;}
.yfe{bottom:993.390000px;}
.y95{bottom:993.570000px;}
.ycc{bottom:996.810000px;}
.y5f{bottom:997.890000px;}
.yfd{bottom:1010.670000px;}
.y94{bottom:1011.930000px;}
.ycb{bottom:1014.090000px;}
.y5e{bottom:1015.170000px;}
.yd{bottom:1020.390000px;}
.yfc{bottom:1027.950000px;}
.y93{bottom:1029.210000px;}
.yca{bottom:1031.370000px;}
.y5d{bottom:1032.450000px;}
.yfb{bottom:1045.230000px;}
.y6{bottom:1045.590000px;}
.y92{bottom:1047.570000px;}
.yc9{bottom:1048.650000px;}
.y5c{bottom:1049.730000px;}
.yfa{bottom:1062.330000px;}
.y91{bottom:1065.750000px;}
.y5b{bottom:1066.830000px;}
.yf9{bottom:1079.610000px;}
.yc8{bottom:1083.030000px;}
.y5a{bottom:1084.110000px;}
.yf8{bottom:1098.510000px;}
.yc7{bottom:1100.310000px;}
.y59{bottom:1101.390000px;}
.yc6{bottom:1117.590000px;}
.y58{bottom:1118.670000px;}
.yf7{bottom:1121.730000px;}
.yc5{bottom:1134.870000px;}
.y57{bottom:1135.950000px;}
.yf6{bottom:1144.980000px;}
.y56{bottom:1153.260000px;}
.h23{height:17.100000px;}
.h22{height:17.280000px;}
.h24{height:17.316000px;}
.hc{height:24.840000px;}
.h13{height:29.556000px;}
.h2{height:32.976000px;}
.h8{height:36.180000px;}
.h1d{height:36.720000px;}
.h1a{height:41.691797px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h1f{height:43.506914px;}
.he{height:44.002969px;}
.ha{height:44.820000px;}
.h12{height:47.223633px;}
.h16{height:47.980898px;}
.h17{height:48.075820px;}
.h18{height:49.158984px;}
.h19{height:49.255313px;}
.h11{height:50.510039px;}
.h1e{height:51.648047px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h10{height:59.439023px;}
.h6{height:60.855469px;}
.hf{height:63.180000px;}
.h5{height:67.824844px;}
.hb{height:71.613281px;}
.h14{height:73.722656px;}
.h21{height:90.684141px;}
.h20{height:103.594219px;}
.h7{height:121.536000px;}
.hd{height:139.500000px;}
.h15{height:414.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w1b{width:83.340000px;}
.w1e{width:102.960000px;}
.wf{width:142.416000px;}
.wc{width:147.960000px;}
.w5{width:151.950000px;}
.w19{width:154.620000px;}
.w10{width:159.480000px;}
.wd{width:162.750000px;}
.w11{width:175.170000px;}
.wb{width:185.250000px;}
.w13{width:212.250000px;}
.w16{width:212.790000px;}
.w18{width:212.835000px;}
.w8{width:216.075000px;}
.wa{width:217.155000px;}
.w14{width:233.130000px;}
.w17{width:233.670000px;}
.we{width:235.875000px;}
.w1a{width:262.155000px;}
.w15{width:270.255000px;}
.w12{width:271.695000px;}
.w1c{width:278.895000px;}
.w1d{width:335.235000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:1.080000px;}
.x2{left:8.676000px;}
.x12{left:12.600000px;}
.xe{left:21.456000px;}
.xb{left:37.296000px;}
.x1{left:81.000000px;}
.x1b{left:84.420000px;}
.x4{left:98.130000px;}
.x13{left:108.035987px;}
.x18{left:135.035987px;}
.x19{left:162.029987px;}
.x1a{left:189.029987px;}
.xc{left:200.595000px;}
.x10{left:215.175000px;}
.x2a{left:218.189987px;}
.x23{left:224.669987px;}
.x5{left:232.950000px;}
.x8{left:272.235000px;}
.x11{left:297.075000px;}
.x27{left:301.035000px;}
.x1d{left:305.175000px;}
.xd{left:311.115000px;}
.x20{left:324.075000px;}
.x6{left:331.995000px;}
.xf{left:343.515000px;}
.x16{left:349.634987px;}
.x7{left:351.255000px;}
.x26{left:358.455000px;}
.x24{left:359.715000px;}
.xa{left:365.475000px;}
.x2b{left:366.915000px;}
.x14{left:396.434987px;}
.x17{left:421.274987px;}
.x9{left:439.500000px;}
.x15{left:452.954987px;}
.x28{left:459.435000px;}
.x21{left:470.265000px;}
.x1e{left:494.205000px;}
.x25{left:575.565000px;}
.x22{left:633.525000px;}
.x1f{left:645.945000px;}
.x2c{left:705.750000px;}
.x29{left:725.370000px;}
.x3{left:739.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v5{vertical-align:19.840000pt;}
.v4{vertical-align:35.840000pt;}
.v1{vertical-align:40.960000pt;}
.v2{vertical-align:60.800000pt;}
.lsa{letter-spacing:-4.160000pt;}
.ls20{letter-spacing:-3.152000pt;}
.ls24{letter-spacing:-2.240000pt;}
.ls1a{letter-spacing:-0.544000pt;}
.ls25{letter-spacing:-0.480000pt;}
.ls21{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.117333pt;}
.ls9{letter-spacing:-0.113067pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls28{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.096640pt;}
.ls5{letter-spacing:0.114560pt;}
.ls1{letter-spacing:0.117867pt;}
.ls23{letter-spacing:0.120533pt;}
.ls1e{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls22{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.355200pt;}
.lse{letter-spacing:0.456533pt;}
.ls1d{letter-spacing:0.592640pt;}
.ls3{letter-spacing:0.698880pt;}
.ls13{letter-spacing:1.830400pt;}
.ls11{letter-spacing:1.832960pt;}
.ls12{letter-spacing:2.827520pt;}
.lsf{letter-spacing:5.920000pt;}
.ls17{letter-spacing:14.347520pt;}
.ls27{letter-spacing:14.672640pt;}
.ls19{letter-spacing:15.303680pt;}
.ls26{letter-spacing:40.912640pt;}
.ls1f{letter-spacing:49.232640pt;}
.ls10{letter-spacing:56.912640pt;}
.ls14{letter-spacing:101.494187pt;}
.ls18{letter-spacing:171.254187pt;}
.ws10{word-spacing:-53.131520pt;}
.wsb{word-spacing:-53.120000pt;}
.wsd{word-spacing:-41.481813pt;}
.wsf{word-spacing:-41.127680pt;}
.wse{word-spacing:-38.400640pt;}
.wsc{word-spacing:-37.760640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws3{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.374933pt;}
.ws14{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws11{word-spacing:-12.960000pt;}
.ws13{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws8{word-spacing:-10.783360pt;}
.ws5{word-spacing:-9.120000pt;}
.ws9{word-spacing:0.000000pt;}
._13{margin-left:-6.373973pt;}
._15{margin-left:-5.046400pt;}
._3{margin-left:-4.090240pt;}
._11{margin-left:-3.171627pt;}
._2{margin-left:-2.270507pt;}
._0{margin-left:-0.949333pt;}
._1{width:1.101013pt;}
._5{width:2.210560pt;}
._6{width:3.233493pt;}
._10{width:4.172800pt;}
._4{width:5.134933pt;}
._d{width:6.176427pt;}
._e{width:7.402453pt;}
._b{width:8.297387pt;}
._12{width:9.376853pt;}
._9{width:10.543147pt;}
._a{width:12.005120pt;}
._c{width:14.304213pt;}
._8{width:17.600000pt;}
._7{width:18.645120pt;}
._f{width:19.615787pt;}
._14{width:46.417920pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y44{bottom:3.680000pt;}
.y104{bottom:7.520000pt;}
.yd0{bottom:7.680000pt;}
.ye{bottom:8.320000pt;}
.y42{bottom:9.600000pt;}
.y17{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.552000pt;}
.y15{bottom:17.760000pt;}
.y2{bottom:17.952000pt;}
.y3e{bottom:18.240000pt;}
.y43{bottom:20.000000pt;}
.y41{bottom:22.720000pt;}
.yb{bottom:26.880000pt;}
.y14{bottom:32.960000pt;}
.y3d{bottom:33.440000pt;}
.y5{bottom:37.440000pt;}
.ya{bottom:41.440000pt;}
.y3c{bottom:48.800000pt;}
.y13{bottom:49.120000pt;}
.y1{bottom:57.280000pt;}
.y3b{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.y12{bottom:65.920000pt;}
.y3a{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y11{bottom:88.800000pt;}
.y39{bottom:94.880000pt;}
.y55{bottom:98.272000pt;}
.y7{bottom:99.066667pt;}
.yf5{bottom:102.112000pt;}
.yc4{bottom:105.952000pt;}
.y90{bottom:107.392000pt;}
.y38{bottom:110.080000pt;}
.y10{bottom:110.560000pt;}
.y54{bottom:113.632000pt;}
.y12c{bottom:116.992000pt;}
.yc3{bottom:121.312000pt;}
.y8f{bottom:122.752000pt;}
.y37{bottom:125.440000pt;}
.y53{bottom:128.992000pt;}
.y27{bottom:131.360000pt;}
.y12b{bottom:132.352000pt;}
.yc2{bottom:136.666667pt;}
.y8e{bottom:138.106667pt;}
.y36{bottom:140.800000pt;}
.y52{bottom:144.346667pt;}
.y26{bottom:144.960000pt;}
.yf4{bottom:145.306667pt;}
.y12a{bottom:147.706667pt;}
.y8d{bottom:150.586667pt;}
.y142{bottom:150.906667pt;}
.yc1{bottom:152.986667pt;}
.y35{bottom:156.186667pt;}
.y8c{bottom:159.546667pt;}
.y51{bottom:159.706667pt;}
.y25{bottom:160.506667pt;}
.yf3{bottom:160.666667pt;}
.y129{bottom:162.906667pt;}
.y141{bottom:166.266667pt;}
.yc0{bottom:168.346667pt;}
.y34{bottom:171.546667pt;}
.y50{bottom:174.906667pt;}
.y24{bottom:175.706667pt;}
.yf2{bottom:176.026667pt;}
.y128{bottom:178.266667pt;}
.y140{bottom:181.626667pt;}
.ybf{bottom:184.506667pt;}
.y8b{bottom:185.306667pt;}
.y33{bottom:186.906667pt;}
.y4f{bottom:190.266667pt;}
.y23{bottom:191.066667pt;}
.yf1{bottom:191.386667pt;}
.y127{bottom:193.626667pt;}
.y13f{bottom:196.986667pt;}
.ybe{bottom:199.866667pt;}
.y8a{bottom:201.626667pt;}
.y32{bottom:202.106667pt;}
.y4e{bottom:205.626667pt;}
.yf0{bottom:206.746667pt;}
.y22{bottom:207.066667pt;}
.y126{bottom:208.986667pt;}
.y13e{bottom:212.346667pt;}
.ybd{bottom:215.226667pt;}
.y31{bottom:217.466667pt;}
.y89{bottom:217.786667pt;}
.y4d{bottom:220.986667pt;}
.yef{bottom:221.946667pt;}
.y21{bottom:222.586667pt;}
.y125{bottom:224.346667pt;}
.y13d{bottom:227.706667pt;}
.ybc{bottom:230.586667pt;}
.y30{bottom:232.826667pt;}
.y88{bottom:234.106667pt;}
.y4c{bottom:236.346667pt;}
.y20{bottom:237.946667pt;}
.yee{bottom:238.746667pt;}
.y124{bottom:239.706667pt;}
.y13c{bottom:242.906667pt;}
.y87{bottom:246.586667pt;}
.ybb{bottom:246.906667pt;}
.y2f{bottom:248.186667pt;}
.y4b{bottom:251.546667pt;}
.y1f{bottom:253.466667pt;}
.y123{bottom:254.906667pt;}
.y86{bottom:255.546667pt;}
.y13b{bottom:258.266667pt;}
.yed{bottom:259.386667pt;}
.yba{bottom:263.066667pt;}
.y2e{bottom:263.546667pt;}
.y4a{bottom:266.906667pt;}
.y1e{bottom:268.986667pt;}
.y122{bottom:270.266667pt;}
.y13a{bottom:273.626667pt;}
.y2d{bottom:278.906667pt;}
.yb9{bottom:279.386667pt;}
.yec{bottom:280.186667pt;}
.y85{bottom:281.306667pt;}
.y49{bottom:282.266667pt;}
.y1d{bottom:284.346667pt;}
.y121{bottom:285.626667pt;}
.y139{bottom:288.986667pt;}
.y2c{bottom:294.106667pt;}
.yb8{bottom:294.746667pt;}
.y84{bottom:296.666667pt;}
.y48{bottom:297.626667pt;}
.y1c{bottom:299.866667pt;}
.yeb{bottom:300.866667pt;}
.y120{bottom:301.026667pt;}
.y138{bottom:304.386667pt;}
.y2b{bottom:309.466667pt;}
.yb7{bottom:310.146667pt;}
.y83{bottom:312.066667pt;}
.y47{bottom:313.026667pt;}
.y11f{bottom:316.386667pt;}
.y1b{bottom:317.946667pt;}
.y137{bottom:319.746667pt;}
.yea{bottom:323.426667pt;}
.y2a{bottom:324.826667pt;}
.yb6{bottom:326.466667pt;}
.y82{bottom:327.426667pt;}
.y46{bottom:328.386667pt;}
.y11e{bottom:331.586667pt;}
.y136{bottom:334.946667pt;}
.ye9{bottom:338.786667pt;}
.y29{bottom:340.186667pt;}
.y1a{bottom:342.266667pt;}
.yb5{bottom:342.626667pt;}
.y45{bottom:343.586667pt;}
.y11d{bottom:346.946667pt;}
.y135{bottom:350.306667pt;}
.ye8{bottom:353.986667pt;}
.y28{bottom:355.546667pt;}
.y40{bottom:356.066667pt;}
.y19{bottom:357.946667pt;}
.yb4{bottom:358.946667pt;}
.y81{bottom:359.906667pt;}
.y11c{bottom:362.306667pt;}
.y134{bottom:365.666667pt;}
.ye7{bottom:369.346667pt;}
.yb3{bottom:375.266667pt;}
.y80{bottom:376.226667pt;}
.y11b{bottom:377.666667pt;}
.y133{bottom:381.026667pt;}
.ye6{bottom:384.706667pt;}
.y18{bottom:388.706667pt;}
.yb2{bottom:390.626667pt;}
.y7f{bottom:392.546667pt;}
.y11a{bottom:393.026667pt;}
.y132{bottom:396.386667pt;}
.ye5{bottom:401.506667pt;}
.yb1{bottom:405.986667pt;}
.y7e{bottom:407.906667pt;}
.y119{bottom:408.386667pt;}
.y131{bottom:411.586667pt;}
.ye4{bottom:422.146667pt;}
.yb0{bottom:422.306667pt;}
.y7d{bottom:423.106667pt;}
.y118{bottom:423.586667pt;}
.y130{bottom:426.946667pt;}
.yaf{bottom:438.466667pt;}
.y117{bottom:438.946667pt;}
.y7c{bottom:439.426667pt;}
.y12f{bottom:442.306667pt;}
.ye3{bottom:442.786667pt;}
.y116{bottom:454.306667pt;}
.yae{bottom:454.786667pt;}
.y7b{bottom:455.746667pt;}
.y12e{bottom:457.666667pt;}
.ye2{bottom:463.426667pt;}
.yad{bottom:470.146667pt;}
.y115{bottom:471.106667pt;}
.y7a{bottom:472.066667pt;}
.y12d{bottom:473.026667pt;}
.ye1{bottom:485.986667pt;}
.yac{bottom:486.466667pt;}
.y79{bottom:488.386667pt;}
.y114{bottom:491.746667pt;}
.ye0{bottom:501.346667pt;}
.yab{bottom:502.786667pt;}
.y78{bottom:503.586667pt;}
.y113{bottom:512.386667pt;}
.ydf{bottom:516.706667pt;}
.y77{bottom:518.946667pt;}
.yde{bottom:532.066667pt;}
.y112{bottom:533.026667pt;}
.y76{bottom:534.306667pt;}
.ydd{bottom:547.453333pt;}
.y75{bottom:549.693333pt;}
.yaa{bottom:550.653333pt;}
.y111{bottom:555.613333pt;}
.ydc{bottom:562.653333pt;}
.y74{bottom:565.053333pt;}
.ya9{bottom:566.973333pt;}
.y110{bottom:570.973333pt;}
.ydb{bottom:578.013333pt;}
.y73{bottom:580.413333pt;}
.ya8{bottom:583.293333pt;}
.y10f{bottom:586.333333pt;}
.yda{bottom:594.813333pt;}
.y72{bottom:595.613333pt;}
.ya7{bottom:598.493333pt;}
.y10e{bottom:601.693333pt;}
.y71{bottom:610.973333pt;}
.ya6{bottom:613.853333pt;}
.yd9{bottom:615.453333pt;}
.y10d{bottom:617.053333pt;}
.y70{bottom:626.333333pt;}
.ya5{bottom:629.213333pt;}
.y10c{bottom:632.413333pt;}
.yd8{bottom:636.093333pt;}
.y6f{bottom:641.693333pt;}
.ya4{bottom:644.573333pt;}
.y10b{bottom:647.613333pt;}
.yd7{bottom:656.893333pt;}
.y6e{bottom:657.053333pt;}
.ya3{bottom:659.933333pt;}
.y10a{bottom:662.973333pt;}
.y6d{bottom:672.413333pt;}
.ya2{bottom:675.293333pt;}
.yd6{bottom:677.533333pt;}
.y109{bottom:678.333333pt;}
.y6c{bottom:687.613333pt;}
.ya1{bottom:690.493333pt;}
.y108{bottom:695.133333pt;}
.yd5{bottom:698.173333pt;}
.y6b{bottom:702.973333pt;}
.ya0{bottom:706.813333pt;}
.y107{bottom:715.773333pt;}
.y6a{bottom:718.333333pt;}
.yd4{bottom:718.813333pt;}
.y9f{bottom:723.133333pt;}
.y69{bottom:733.693333pt;}
.y106{bottom:736.413333pt;}
.y9e{bottom:739.453333pt;}
.y68{bottom:749.053333pt;}
.y9d{bottom:755.773333pt;}
.y16{bottom:756.733333pt;}
.y105{bottom:757.053333pt;}
.yd3{bottom:760.093333pt;}
.y67{bottom:764.253333pt;}
.y9c{bottom:771.933333pt;}
.y103{bottom:777.893333pt;}
.y66{bottom:779.653333pt;}
.yd2{bottom:780.933333pt;}
.yf{bottom:783.013333pt;}
.y9b{bottom:787.333333pt;}
.y65{bottom:795.013333pt;}
.y102{bottom:798.533333pt;}
.yd1{bottom:801.573333pt;}
.y9a{bottom:803.653333pt;}
.y64{bottom:810.373333pt;}
.y101{bottom:819.173333pt;}
.y99{bottom:819.973333pt;}
.ycf{bottom:822.213333pt;}
.y63{bottom:825.733333pt;}
.y98{bottom:836.293333pt;}
.y100{bottom:839.813333pt;}
.y62{bottom:841.093333pt;}
.yce{bottom:842.853333pt;}
.y97{bottom:851.653333pt;}
.y61{bottom:856.293333pt;}
.yff{bottom:860.453333pt;}
.ycd{bottom:863.493333pt;}
.y96{bottom:867.813333pt;}
.y60{bottom:871.653333pt;}
.yfe{bottom:883.013333pt;}
.y95{bottom:883.173333pt;}
.ycc{bottom:886.053333pt;}
.y5f{bottom:887.013333pt;}
.yfd{bottom:898.373333pt;}
.y94{bottom:899.493333pt;}
.ycb{bottom:901.413333pt;}
.y5e{bottom:902.373333pt;}
.yd{bottom:907.013333pt;}
.yfc{bottom:913.733333pt;}
.y93{bottom:914.853333pt;}
.yca{bottom:916.773333pt;}
.y5d{bottom:917.733333pt;}
.yfb{bottom:929.093333pt;}
.y6{bottom:929.413333pt;}
.y92{bottom:931.173333pt;}
.yc9{bottom:932.133333pt;}
.y5c{bottom:933.093333pt;}
.yfa{bottom:944.293333pt;}
.y91{bottom:947.333333pt;}
.y5b{bottom:948.293333pt;}
.yf9{bottom:959.653333pt;}
.yc8{bottom:962.693333pt;}
.y5a{bottom:963.653333pt;}
.yf8{bottom:976.453333pt;}
.yc7{bottom:978.053333pt;}
.y59{bottom:979.013333pt;}
.yc6{bottom:993.413333pt;}
.y58{bottom:994.373333pt;}
.yf7{bottom:997.093333pt;}
.yc5{bottom:1008.773333pt;}
.y57{bottom:1009.733333pt;}
.yf6{bottom:1017.760000pt;}
.y56{bottom:1025.120000pt;}
.h23{height:15.200000pt;}
.h22{height:15.360000pt;}
.h24{height:15.392000pt;}
.hc{height:22.080000pt;}
.h13{height:26.272000pt;}
.h2{height:29.312000pt;}
.h8{height:32.160000pt;}
.h1d{height:32.640000pt;}
.h1a{height:37.059375pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h1f{height:38.672812pt;}
.he{height:39.113750pt;}
.ha{height:39.840000pt;}
.h12{height:41.976562pt;}
.h16{height:42.649687pt;}
.h17{height:42.734063pt;}
.h18{height:43.696875pt;}
.h19{height:43.782500pt;}
.h11{height:44.897813pt;}
.h1e{height:45.909375pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h10{height:52.834688pt;}
.h6{height:54.093750pt;}
.hf{height:56.160000pt;}
.h5{height:60.288750pt;}
.hb{height:63.656250pt;}
.h14{height:65.531250pt;}
.h21{height:80.608125pt;}
.h20{height:92.083750pt;}
.h7{height:108.032000pt;}
.hd{height:124.000000pt;}
.h15{height:368.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w1b{width:74.080000pt;}
.w1e{width:91.520000pt;}
.wf{width:126.592000pt;}
.wc{width:131.520000pt;}
.w5{width:135.066667pt;}
.w19{width:137.440000pt;}
.w10{width:141.760000pt;}
.wd{width:144.666667pt;}
.w11{width:155.706667pt;}
.wb{width:164.666667pt;}
.w13{width:188.666667pt;}
.w16{width:189.146667pt;}
.w18{width:189.186667pt;}
.w8{width:192.066667pt;}
.wa{width:193.026667pt;}
.w14{width:207.226667pt;}
.w17{width:207.706667pt;}
.we{width:209.666667pt;}
.w1a{width:233.026667pt;}
.w15{width:240.226667pt;}
.w12{width:241.506667pt;}
.w1c{width:247.906667pt;}
.w1d{width:297.986667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:0.960000pt;}
.x2{left:7.712000pt;}
.x12{left:11.200000pt;}
.xe{left:19.072000pt;}
.xb{left:33.152000pt;}
.x1{left:72.000000pt;}
.x1b{left:75.040000pt;}
.x4{left:87.226667pt;}
.x13{left:96.031988pt;}
.x18{left:120.031988pt;}
.x19{left:144.026655pt;}
.x1a{left:168.026655pt;}
.xc{left:178.306667pt;}
.x10{left:191.266667pt;}
.x2a{left:193.946655pt;}
.x23{left:199.706655pt;}
.x5{left:207.066667pt;}
.x8{left:241.986667pt;}
.x11{left:264.066667pt;}
.x27{left:267.586667pt;}
.x1d{left:271.266667pt;}
.xd{left:276.546667pt;}
.x20{left:288.066667pt;}
.x6{left:295.106667pt;}
.xf{left:305.346667pt;}
.x16{left:310.786655pt;}
.x7{left:312.226667pt;}
.x26{left:318.626667pt;}
.x24{left:319.746667pt;}
.xa{left:324.866667pt;}
.x2b{left:326.146667pt;}
.x14{left:352.386655pt;}
.x17{left:374.466655pt;}
.x9{left:390.666667pt;}
.x15{left:402.626655pt;}
.x28{left:408.386667pt;}
.x21{left:418.013333pt;}
.x1e{left:439.293333pt;}
.x25{left:511.613333pt;}
.x22{left:563.133333pt;}
.x1f{left:574.173333pt;}
.x2c{left:627.333333pt;}
.x29{left:644.773333pt;}
.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; }
  