
    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_c1e13daa7998e2437a0bb9bd.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_03b10c4814749794cd0164d3.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_b0dcc63414ea16376be78fec.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_27a698a58e7e3b9d06c1f0df.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b87444467a102aee52b375a9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d74b4ace65817fba3430d716.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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_498dcb72c63d965b18a4ef37.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_02d126fbdcd132882cebbc21.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b458e1d6daaa597ae5c07c6a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d4440fce360e4e2156bc6b53.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_aad19b30a47c34b19831cb8e.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_2ede5fa56b8d7d091f634245.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_f683aa24d3bcea8399d69e4f.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_7c12350678650b1e213c6c5c.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_fed100b2778bce1a8bc96457.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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_195b7c49494ebd2cfc60af99.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_1c80fe82f6891ee7b057c6f7.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.937500;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_6bc1ceda3f8ff10487438239.woff2')format("woff");}.ff16{font-family:ff16;line-height:2.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_fb810df5923bf2d386b6775a.woff2')format("woff");}.ff17{font-family:ff17;line-height:2.230469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_df46af62196c598fdb82d1f1.woff2')format("woff");}.ff18{font-family:ff18;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;}
.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);}
.v5{vertical-align:-37.440000px;}
.v4{vertical-align:-22.320000px;}
.v2{vertical-align:-15.300000px;}
.v6{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.440000px;}
.v7{vertical-align:12.240000px;}
.v1{vertical-align:20.880000px;}
.v9{vertical-align:40.320000px;}
.v8{vertical-align:46.080000px;}
.lse{letter-spacing:-1.650000px;}
.ls10{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.298200px;}
.ls2d{letter-spacing:-0.253200px;}
.ls9{letter-spacing:-0.127200px;}
.ls2b{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls29{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls25{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.174240px;}
.ls12{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls28{letter-spacing:0.298800px;}
.ls27{letter-spacing:0.301200px;}
.lsc{letter-spacing:0.330000px;}
.ls1d{letter-spacing:0.331920px;}
.ls5{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.399600px;}
.lsf{letter-spacing:0.421800px;}
.lsb{letter-spacing:0.431400px;}
.ls4{letter-spacing:0.447840px;}
.ls1a{letter-spacing:0.451920px;}
.ls16{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.786240px;}
.lsd{letter-spacing:0.810000px;}
.ls14{letter-spacing:0.893520px;}
.ls15{letter-spacing:0.900000px;}
.ls22{letter-spacing:1.584000px;}
.ls1c{letter-spacing:2.436960px;}
.ls19{letter-spacing:2.460960px;}
.ls21{letter-spacing:2.483280px;}
.ls1f{letter-spacing:12.972960px;}
.ls20{letter-spacing:13.692960px;}
.ls2a{letter-spacing:14.580000px;}
.ls23{letter-spacing:15.540960px;}
.ls17{letter-spacing:16.140960px;}
.ls18{letter-spacing:16.860960px;}
.ls1e{letter-spacing:19.020960px;}
.ls24{letter-spacing:21.900960px;}
.ls2e{letter-spacing:46.026720px;}
.ls26{letter-spacing:55.386720px;}
.ls13{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,116,186),0 0.015em rgb(0,116,186),0.015em 0 rgb(0,116,186),0 -0.015em  rgb(0,116,186);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,116,186);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-59.760000px;}
.ws15{word-spacing:-42.061200px;}
.ws11{word-spacing:-24.816960px;}
.ws13{word-spacing:-23.341680px;}
.ws12{word-spacing:-21.093120px;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.wsb{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.238800px;}
.ws18{word-spacing:-14.993280px;}
.wsc{word-spacing:-14.940000px;}
.ws17{word-spacing:-14.833200px;}
.ws19{word-spacing:-14.686800px;}
.wsd{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.315760px;}
.ws5{word-spacing:-13.937160px;}
.ws6{word-spacing:-13.835760px;}
.wse{word-spacing:-13.505760px;}
.wsa{word-spacing:-12.854880px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws8{word-spacing:-11.855760px;}
.ws4{word-spacing:-8.786880px;}
.ws9{word-spacing:-8.136000px;}
.wsf{word-spacing:0.000000px;}
.ws14{word-spacing:1.656720px;}
._16{margin-left:-7.393200px;}
._4{margin-left:-5.557680px;}
._5{margin-left:-4.512480px;}
._3{margin-left:-3.453840px;}
._2{margin-left:-2.274480px;}
._0{margin-left:-1.188000px;}
._1{width:1.074000px;}
._6{width:2.226000px;}
._a{width:3.944160px;}
._9{width:5.439840px;}
._13{width:6.573600px;}
._1d{width:8.004480px;}
._10{width:9.144960px;}
._11{width:10.514400px;}
._b{width:12.491520px;}
._15{width:13.691520px;}
._f{width:16.017360px;}
._1c{width:17.141280px;}
._d{width:18.172320px;}
._c{width:19.422000px;}
._14{width:20.846880px;}
._1e{width:22.672080px;}
._8{width:25.875360px;}
._7{width:26.966880px;}
._12{width:28.468080px;}
._e{width:35.856000px;}
._18{width:41.682960px;}
._17{width:42.957360px;}
._19{width:44.490480px;}
._1b{width:74.010000px;}
._1a{width:75.339840px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc6{color:rgb(0,116,186);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{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;}
.y49{bottom:3.240000px;}
.y4{bottom:3.600000px;}
.y4f{bottom:3.960000px;}
.yf{bottom:9.360000px;}
.y1c{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.y6{bottom:15.480000px;}
.y3{bottom:20.160000px;}
.y48{bottom:20.520000px;}
.y4e{bottom:22.320000px;}
.y1a{bottom:23.760000px;}
.y4c{bottom:28.980000px;}
.yc{bottom:30.240000px;}
.y5{bottom:33.876000px;}
.y2{bottom:36.576000px;}
.y47{bottom:37.800000px;}
.y1{bottom:37.980000px;}
.y19{bottom:40.365000px;}
.y4d{bottom:40.680000px;}
.y4b{bottom:43.560000px;}
.yb{bottom:46.620000px;}
.y18{bottom:53.325000px;}
.y46{bottom:55.080000px;}
.y17{bottom:71.685000px;}
.y45{bottom:72.360000px;}
.ya{bottom:73.470000px;}
.y44{bottom:89.460000px;}
.y16{bottom:90.045000px;}
.y9{bottom:93.090000px;}
.y43{bottom:106.740000px;}
.y15{bottom:108.405000px;}
.y8{bottom:111.450000px;}
.y59{bottom:113.256000px;}
.y10c{bottom:115.776000px;}
.y13f{bottom:123.156000px;}
.y42{bottom:124.020000px;}
.y14{bottom:127.305000px;}
.yd0{bottom:128.736000px;}
.y58{bottom:130.536000px;}
.y10b{bottom:133.056000px;}
.y95{bottom:134.136000px;}
.y96{bottom:139.716000px;}
.y41{bottom:141.300000px;}
.y13e{bottom:141.516000px;}
.ycf{bottom:147.096000px;}
.y57{bottom:147.816000px;}
.y10a{bottom:150.150000px;}
.y13{bottom:153.045000px;}
.y40{bottom:158.580000px;}
.y13d{bottom:159.870000px;}
.y94{bottom:162.390000px;}
.yce{bottom:164.370000px;}
.y56{bottom:164.910000px;}
.y2e{bottom:167.400000px;}
.y109{bottom:167.430000px;}
.y3f{bottom:175.860000px;}
.y13c{bottom:178.050000px;}
.y12{bottom:178.785000px;}
.y93{bottom:179.670000px;}
.ycd{bottom:181.650000px;}
.y55{bottom:182.190000px;}
.y2d{bottom:182.700000px;}
.y108{bottom:184.710000px;}
.y3e{bottom:192.960000px;}
.y13b{bottom:196.410000px;}
.y92{bottom:196.950000px;}
.y54{bottom:199.470000px;}
.ycc{bottom:200.010000px;}
.y2c{bottom:200.340000px;}
.y107{bottom:201.990000px;}
.y11{bottom:203.265000px;}
.y3d{bottom:210.240000px;}
.y13a{bottom:213.690000px;}
.y91{bottom:214.050000px;}
.y53{bottom:216.750000px;}
.y2b{bottom:217.440000px;}
.ycb{bottom:218.370000px;}
.y3c{bottom:227.520000px;}
.y90{bottom:231.870000px;}
.y139{bottom:232.050000px;}
.y52{bottom:234.030000px;}
.y2a{bottom:234.720000px;}
.y106{bottom:234.750000px;}
.yca{bottom:236.550000px;}
.y3b{bottom:244.800000px;}
.y138{bottom:250.410000px;}
.y51{bottom:251.310000px;}
.y29{bottom:252.540000px;}
.y105{bottom:252.750000px;}
.yc9{bottom:253.830000px;}
.y3a{bottom:262.080000px;}
.y137{bottom:267.510000px;}
.y8f{bottom:268.590000px;}
.y50{bottom:269.130000px;}
.y28{bottom:270.030000px;}
.y104{bottom:270.750000px;}
.yc8{bottom:271.110000px;}
.y39{bottom:279.210000px;}
.y4a{bottom:283.530000px;}
.y136{bottom:284.790000px;}
.y8e{bottom:285.870000px;}
.y27{bottom:287.310000px;}
.y103{bottom:288.750000px;}
.yc7{bottom:289.470000px;}
.y38{bottom:296.490000px;}
.y135{bottom:302.070000px;}
.y8d{bottom:303.150000px;}
.y26{bottom:304.770000px;}
.y102{bottom:306.750000px;}
.yc6{bottom:307.830000px;}
.y37{bottom:313.770000px;}
.y8c{bottom:320.250000px;}
.y134{bottom:320.430000px;}
.y25{bottom:322.230000px;}
.yc5{bottom:326.010000px;}
.y101{bottom:327.990000px;}
.y36{bottom:331.050000px;}
.y8b{bottom:337.575000px;}
.y1d{bottom:338.475000px;}
.y133{bottom:338.835000px;}
.y24{bottom:339.510000px;}
.yc4{bottom:344.415000px;}
.y100{bottom:345.315000px;}
.y35{bottom:348.330000px;}
.y8a{bottom:354.855000px;}
.y132{bottom:356.115000px;}
.y23{bottom:356.970000px;}
.yc3{bottom:361.695000px;}
.yff{bottom:362.415000px;}
.y34{bottom:365.610000px;}
.y89{bottom:372.135000px;}
.y131{bottom:374.295000px;}
.y22{bottom:374.430000px;}
.yc2{bottom:378.975000px;}
.yfe{bottom:379.695000px;}
.y33{bottom:382.710000px;}
.y88{bottom:389.415000px;}
.y130{bottom:391.575000px;}
.y21{bottom:391.710000px;}
.yfd{bottom:396.975000px;}
.yc1{bottom:397.335000px;}
.y32{bottom:399.990000px;}
.y87{bottom:406.515000px;}
.y20{bottom:409.350000px;}
.y12f{bottom:409.935000px;}
.yfc{bottom:414.255000px;}
.yc0{bottom:415.515000px;}
.y31{bottom:417.270000px;}
.y86{bottom:423.795000px;}
.y12e{bottom:427.215000px;}
.yfb{bottom:429.015000px;}
.ybf{bottom:433.875000px;}
.y30{bottom:434.550000px;}
.y1f{bottom:436.710000px;}
.y85{bottom:441.075000px;}
.y12d{bottom:445.575000px;}
.yfa{bottom:447.015000px;}
.y2f{bottom:451.830000px;}
.ybe{bottom:452.235000px;}
.y1e{bottom:454.530000px;}
.y84{bottom:458.355000px;}
.y12c{bottom:462.675000px;}
.yf9{bottom:465.015000px;}
.ybd{bottom:470.595000px;}
.y83{bottom:475.635000px;}
.y12b{bottom:479.955000px;}
.yf8{bottom:483.015000px;}
.ybc{bottom:488.955000px;}
.y82{bottom:492.915000px;}
.y12a{bottom:497.235000px;}
.yf7{bottom:501.015000px;}
.ybb{bottom:506.235000px;}
.y81{bottom:510.015000px;}
.y129{bottom:514.515000px;}
.yf6{bottom:519.015000px;}
.yba{bottom:523.335000px;}
.y80{bottom:527.295000px;}
.y128{bottom:531.795000px;}
.yf5{bottom:540.255000px;}
.yb9{bottom:541.695000px;}
.y7f{bottom:544.575000px;}
.y127{bottom:549.075000px;}
.yf4{bottom:557.535000px;}
.yb8{bottom:558.975000px;}
.y7e{bottom:561.855000px;}
.y126{bottom:566.175000px;}
.yf3{bottom:574.635000px;}
.yb7{bottom:576.255000px;}
.y7d{bottom:579.135000px;}
.y125{bottom:583.455000px;}
.yf2{bottom:591.915000px;}
.yb6{bottom:594.615000px;}
.y7c{bottom:596.415000px;}
.y124{bottom:600.735000px;}
.yf1{bottom:609.225000px;}
.yb5{bottom:612.825000px;}
.y7b{bottom:613.545000px;}
.y123{bottom:618.045000px;}
.yf0{bottom:626.505000px;}
.yb4{bottom:630.645000px;}
.y7a{bottom:630.825000px;}
.y122{bottom:635.325000px;}
.yef{bottom:641.265000px;}
.y79{bottom:648.105000px;}
.yb3{bottom:650.085000px;}
.y121{bottom:652.605000px;}
.yee{bottom:659.265000px;}
.y78{bottom:665.385000px;}
.yb2{bottom:667.365000px;}
.y120{bottom:669.705000px;}
.yed{bottom:677.265000px;}
.y77{bottom:682.665000px;}
.y11f{bottom:684.465000px;}
.yb1{bottom:684.645000px;}
.yec{bottom:695.265000px;}
.y76{bottom:699.945000px;}
.yb0{bottom:701.925000px;}
.y11e{bottom:702.465000px;}
.yeb{bottom:713.265000px;}
.y75{bottom:717.045000px;}
.yaf{bottom:719.025000px;}
.y11d{bottom:720.465000px;}
.yae{bottom:733.245000px;}
.yea{bottom:734.505000px;}
.y74{bottom:735.405000px;}
.y11c{bottom:738.465000px;}
.yad{bottom:743.325000px;}
.ye9{bottom:751.785000px;}
.y73{bottom:752.685000px;}
.y11b{bottom:756.465000px;}
.ye8{bottom:769.065000px;}
.yac{bottom:770.505000px;}
.y72{bottom:771.045000px;}
.y11a{bottom:774.465000px;}
.ye7{bottom:786.165000px;}
.y71{bottom:788.325000px;}
.y119{bottom:792.465000px;}
.y153{bottom:803.265000px;}
.ye6{bottom:803.445000px;}
.y1b{bottom:804.345000px;}
.y70{bottom:805.425000px;}
.yab{bottom:807.765000px;}
.y118{bottom:810.465000px;}
.ye5{bottom:818.205000px;}
.y152{bottom:820.545000px;}
.y6f{bottom:822.705000px;}
.y117{bottom:828.465000px;}
.ya9{bottom:833.325000px;}
.y10{bottom:833.865000px;}
.ye4{bottom:836.205000px;}
.y151{bottom:837.825000px;}
.yaa{bottom:838.905000px;}
.y6e{bottom:839.985000px;}
.y116{bottom:846.465000px;}
.ye3{bottom:854.205000px;}
.y150{bottom:855.105000px;}
.y6d{bottom:857.265000px;}
.ya8{bottom:861.585000px;}
.y115{bottom:864.465000px;}
.ye2{bottom:872.250000px;}
.y14f{bottom:872.430000px;}
.y6c{bottom:874.590000px;}
.ya7{bottom:878.910000px;}
.y114{bottom:882.510000px;}
.y14e{bottom:889.710000px;}
.ye1{bottom:890.250000px;}
.y6b{bottom:891.870000px;}
.ya6{bottom:897.450000px;}
.y113{bottom:900.510000px;}
.y14d{bottom:906.810000px;}
.ye0{bottom:908.250000px;}
.y6a{bottom:908.970000px;}
.ya5{bottom:915.810000px;}
.y112{bottom:918.510000px;}
.y14c{bottom:924.090000px;}
.y69{bottom:926.250000px;}
.ydf{bottom:929.490000px;}
.ya4{bottom:929.850000px;}
.y111{bottom:936.510000px;}
.ya3{bottom:939.930000px;}
.y14b{bottom:941.370000px;}
.y68{bottom:943.530000px;}
.yde{bottom:946.770000px;}
.y110{bottom:954.510000px;}
.y14a{bottom:958.650000px;}
.y67{bottom:960.810000px;}
.ya2{bottom:963.510000px;}
.ydd{bottom:964.050000px;}
.y10f{bottom:972.510000px;}
.ya1{bottom:973.590000px;}
.y149{bottom:975.930000px;}
.y66{bottom:978.090000px;}
.ydc{bottom:982.410000px;}
.y10e{bottom:990.510000px;}
.y148{bottom:993.210000px;}
.y65{bottom:995.370000px;}
.ya0{bottom:1000.410000px;}
.ydb{bottom:1000.590000px;}
.y10d{bottom:1008.510000px;}
.y147{bottom:1010.310000px;}
.y64{bottom:1012.470000px;}
.y9f{bottom:1018.230000px;}
.yda{bottom:1018.410000px;}
.y146{bottom:1027.590000px;}
.y63{bottom:1029.750000px;}
.y9e{bottom:1037.670000px;}
.yd9{bottom:1037.850000px;}
.y145{bottom:1044.870000px;}
.y62{bottom:1047.030000px;}
.ye{bottom:1052.250000px;}
.yd8{bottom:1055.130000px;}
.y9d{bottom:1056.750000px;}
.y144{bottom:1062.150000px;}
.y61{bottom:1064.310000px;}
.yd7{bottom:1073.490000px;}
.y9c{bottom:1074.210000px;}
.y7{bottom:1077.450000px;}
.y143{bottom:1079.430000px;}
.y60{bottom:1081.590000px;}
.yd6{bottom:1091.850000px;}
.y9b{bottom:1092.030000px;}
.y142{bottom:1096.710000px;}
.y5f{bottom:1098.690000px;}
.yd5{bottom:1110.030000px;}
.y9a{bottom:1111.470000px;}
.y141{bottom:1113.810000px;}
.y5e{bottom:1115.970000px;}
.yd4{bottom:1128.930000px;}
.y99{bottom:1129.830000px;}
.y140{bottom:1131.090000px;}
.y5d{bottom:1133.250000px;}
.y98{bottom:1148.220000px;}
.yd3{bottom:1148.400000px;}
.y5c{bottom:1150.560000px;}
.yd2{bottom:1165.680000px;}
.y97{bottom:1166.760000px;}
.y5b{bottom:1167.840000px;}
.yd1{bottom:1184.040000px;}
.y5a{bottom:1185.120000px;}
.h28{height:17.280000px;}
.h29{height:17.316000px;}
.hb{height:24.840000px;}
.h11{height:28.968750px;}
.h13{height:29.520000px;}
.h8{height:36.180000px;}
.h1a{height:38.818125px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h19{height:42.281367px;}
.h12{height:43.453125px;}
.h1f{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h1e{height:48.088125px;}
.h20{height:49.080234px;}
.h2{height:49.536000px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h1d{height:54.936000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h22{height:63.264023px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h23{height:85.584023px;}
.h26{height:86.304023px;}
.h21{height:87.024023px;}
.h27{height:87.806953px;}
.h7{height:121.536000px;}
.h25{height:125.904023px;}
.h24{height:131.664023px;}
.hc{height:218.370000px;}
.h15{height:465.870000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.wd{width:79.560000px;}
.w15{width:84.960000px;}
.w19{width:127.800000px;}
.wc{width:135.936000px;}
.w18{width:137.016000px;}
.w14{width:144.936000px;}
.wb{width:146.556000px;}
.w17{width:149.436000px;}
.w5{width:151.950000px;}
.w10{width:153.030000px;}
.w13{width:156.090000px;}
.wf{width:162.360000px;}
.w11{width:195.690000px;}
.we{width:216.075000px;}
.w8{width:223.455000px;}
.w16{width:313.095000px;}
.w12{width:341.355000px;}
.wa{width:365.475000px;}
.w9{width:507.675000px;}
.w1a{width:575.925000px;}
.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;}
.x29{left:7.590000px;}
.x2{left:8.676000px;}
.x13{left:12.600000px;}
.xd{left:21.456000px;}
.xb{left:23.076000px;}
.xc{left:36.756000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x14{left:108.035987px;}
.x10{left:111.810000px;}
.x15{left:135.035987px;}
.x21{left:162.029987px;}
.x22{left:189.029987px;}
.xf{left:191.190000px;}
.x11{left:215.175000px;}
.xe{left:223.455000px;}
.x5{left:232.950000px;}
.x33{left:235.470000px;}
.x2b{left:243.749987px;}
.x23{left:266.429987px;}
.x2f{left:267.509987px;}
.x8{left:272.235000px;}
.x26{left:275.609987px;}
.x27{left:298.515000px;}
.x12{left:304.455000px;}
.x16{left:313.274987px;}
.x1f{left:321.554987px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x17{left:376.634987px;}
.x19{left:379.154987px;}
.x1a{left:388.874987px;}
.x1c{left:392.474987px;}
.x30{left:395.535000px;}
.x18{left:410.474987px;}
.x2c{left:423.975000px;}
.x1b{left:434.234987px;}
.x9{left:439.500000px;}
.x34{left:446.474987px;}
.x20{left:447.914987px;}
.x1d{left:458.534987px;}
.x28{left:461.775000px;}
.x1e{left:489.164987px;}
.x31{left:545.685000px;}
.x2d{left:580.785000px;}
.x24{left:595.185000px;}
.x2a{left:615.705000px;}
.x32{left:683.610000px;}
.x2e{left:726.450000px;}
.x25{left:731.850000px;}
.x3{left:739.050000px;}
@media print{
.v5{vertical-align:-33.280000pt;}
.v4{vertical-align:-19.840000pt;}
.v2{vertical-align:-13.600000pt;}
.v6{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.280000pt;}
.v7{vertical-align:10.880000pt;}
.v1{vertical-align:18.560000pt;}
.v9{vertical-align:35.840000pt;}
.v8{vertical-align:40.960000pt;}
.lse{letter-spacing:-1.466667pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.265067pt;}
.ls2d{letter-spacing:-0.225067pt;}
.ls9{letter-spacing:-0.113067pt;}
.ls2b{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls29{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls25{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.154880pt;}
.ls12{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls28{letter-spacing:0.265600pt;}
.ls27{letter-spacing:0.267733pt;}
.lsc{letter-spacing:0.293333pt;}
.ls1d{letter-spacing:0.295040pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.355200pt;}
.lsf{letter-spacing:0.374933pt;}
.lsb{letter-spacing:0.383467pt;}
.ls4{letter-spacing:0.398080pt;}
.ls1a{letter-spacing:0.401707pt;}
.ls16{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.698880pt;}
.lsd{letter-spacing:0.720000pt;}
.ls14{letter-spacing:0.794240pt;}
.ls15{letter-spacing:0.800000pt;}
.ls22{letter-spacing:1.408000pt;}
.ls1c{letter-spacing:2.166187pt;}
.ls19{letter-spacing:2.187520pt;}
.ls21{letter-spacing:2.207360pt;}
.ls1f{letter-spacing:11.531520pt;}
.ls20{letter-spacing:12.171520pt;}
.ls2a{letter-spacing:12.960000pt;}
.ls23{letter-spacing:13.814187pt;}
.ls17{letter-spacing:14.347520pt;}
.ls18{letter-spacing:14.987520pt;}
.ls1e{letter-spacing:16.907520pt;}
.ls24{letter-spacing:19.467520pt;}
.ls2e{letter-spacing:40.912640pt;}
.ls26{letter-spacing:49.232640pt;}
.ls13{letter-spacing:56.912640pt;}
.ws10{word-spacing:-53.120000pt;}
.ws15{word-spacing:-37.387733pt;}
.ws11{word-spacing:-22.059520pt;}
.ws13{word-spacing:-20.748160pt;}
.ws12{word-spacing:-18.749440pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.wsb{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.545600pt;}
.ws18{word-spacing:-13.327360pt;}
.wsc{word-spacing:-13.280000pt;}
.ws17{word-spacing:-13.185067pt;}
.ws19{word-spacing:-13.054933pt;}
.wsd{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.725120pt;}
.ws5{word-spacing:-12.388587pt;}
.ws6{word-spacing:-12.298453pt;}
.wse{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.426560pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws8{word-spacing:-10.538453pt;}
.ws4{word-spacing:-7.810560pt;}
.ws9{word-spacing:-7.232000pt;}
.wsf{word-spacing:0.000000pt;}
.ws14{word-spacing:1.472640pt;}
._16{margin-left:-6.571733pt;}
._4{margin-left:-4.940160pt;}
._5{margin-left:-4.011093pt;}
._3{margin-left:-3.070080pt;}
._2{margin-left:-2.021760pt;}
._0{margin-left:-1.056000pt;}
._1{width:0.954667pt;}
._6{width:1.978667pt;}
._a{width:3.505920pt;}
._9{width:4.835413pt;}
._13{width:5.843200pt;}
._1d{width:7.115093pt;}
._10{width:8.128853pt;}
._11{width:9.346133pt;}
._b{width:11.103573pt;}
._15{width:12.170240pt;}
._f{width:14.237653pt;}
._1c{width:15.236693pt;}
._d{width:16.153173pt;}
._c{width:17.264000pt;}
._14{width:18.530560pt;}
._1e{width:20.152960pt;}
._8{width:23.000320pt;}
._7{width:23.970560pt;}
._12{width:25.304960pt;}
._e{width:31.872000pt;}
._18{width:37.051520pt;}
._17{width:38.184320pt;}
._19{width:39.547093pt;}
._1b{width:65.786667pt;}
._1a{width:66.968747pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{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;}
.y49{bottom:2.880000pt;}
.y4{bottom:3.200000pt;}
.y4f{bottom:3.520000pt;}
.yf{bottom:8.320000pt;}
.y1c{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.y6{bottom:13.760000pt;}
.y3{bottom:17.920000pt;}
.y48{bottom:18.240000pt;}
.y4e{bottom:19.840000pt;}
.y1a{bottom:21.120000pt;}
.y4c{bottom:25.760000pt;}
.yc{bottom:26.880000pt;}
.y5{bottom:30.112000pt;}
.y2{bottom:32.512000pt;}
.y47{bottom:33.600000pt;}
.y1{bottom:33.760000pt;}
.y19{bottom:35.880000pt;}
.y4d{bottom:36.160000pt;}
.y4b{bottom:38.720000pt;}
.yb{bottom:41.440000pt;}
.y18{bottom:47.400000pt;}
.y46{bottom:48.960000pt;}
.y17{bottom:63.720000pt;}
.y45{bottom:64.320000pt;}
.ya{bottom:65.306667pt;}
.y44{bottom:79.520000pt;}
.y16{bottom:80.040000pt;}
.y9{bottom:82.746667pt;}
.y43{bottom:94.880000pt;}
.y15{bottom:96.360000pt;}
.y8{bottom:99.066667pt;}
.y59{bottom:100.672000pt;}
.y10c{bottom:102.912000pt;}
.y13f{bottom:109.472000pt;}
.y42{bottom:110.240000pt;}
.y14{bottom:113.160000pt;}
.yd0{bottom:114.432000pt;}
.y58{bottom:116.032000pt;}
.y10b{bottom:118.272000pt;}
.y95{bottom:119.232000pt;}
.y96{bottom:124.192000pt;}
.y41{bottom:125.600000pt;}
.y13e{bottom:125.792000pt;}
.ycf{bottom:130.752000pt;}
.y57{bottom:131.392000pt;}
.y10a{bottom:133.466667pt;}
.y13{bottom:136.040000pt;}
.y40{bottom:140.960000pt;}
.y13d{bottom:142.106667pt;}
.y94{bottom:144.346667pt;}
.yce{bottom:146.106667pt;}
.y56{bottom:146.586667pt;}
.y2e{bottom:148.800000pt;}
.y109{bottom:148.826667pt;}
.y3f{bottom:156.320000pt;}
.y13c{bottom:158.266667pt;}
.y12{bottom:158.920000pt;}
.y93{bottom:159.706667pt;}
.ycd{bottom:161.466667pt;}
.y55{bottom:161.946667pt;}
.y2d{bottom:162.400000pt;}
.y108{bottom:164.186667pt;}
.y3e{bottom:171.520000pt;}
.y13b{bottom:174.586667pt;}
.y92{bottom:175.066667pt;}
.y54{bottom:177.306667pt;}
.ycc{bottom:177.786667pt;}
.y2c{bottom:178.080000pt;}
.y107{bottom:179.546667pt;}
.y11{bottom:180.680000pt;}
.y3d{bottom:186.880000pt;}
.y13a{bottom:189.946667pt;}
.y91{bottom:190.266667pt;}
.y53{bottom:192.666667pt;}
.y2b{bottom:193.280000pt;}
.ycb{bottom:194.106667pt;}
.y3c{bottom:202.240000pt;}
.y90{bottom:206.106667pt;}
.y139{bottom:206.266667pt;}
.y52{bottom:208.026667pt;}
.y2a{bottom:208.640000pt;}
.y106{bottom:208.666667pt;}
.yca{bottom:210.266667pt;}
.y3b{bottom:217.600000pt;}
.y138{bottom:222.586667pt;}
.y51{bottom:223.386667pt;}
.y29{bottom:224.480000pt;}
.y105{bottom:224.666667pt;}
.yc9{bottom:225.626667pt;}
.y3a{bottom:232.960000pt;}
.y137{bottom:237.786667pt;}
.y8f{bottom:238.746667pt;}
.y50{bottom:239.226667pt;}
.y28{bottom:240.026667pt;}
.y104{bottom:240.666667pt;}
.yc8{bottom:240.986667pt;}
.y39{bottom:248.186667pt;}
.y4a{bottom:252.026667pt;}
.y136{bottom:253.146667pt;}
.y8e{bottom:254.106667pt;}
.y27{bottom:255.386667pt;}
.y103{bottom:256.666667pt;}
.yc7{bottom:257.306667pt;}
.y38{bottom:263.546667pt;}
.y135{bottom:268.506667pt;}
.y8d{bottom:269.466667pt;}
.y26{bottom:270.906667pt;}
.y102{bottom:272.666667pt;}
.yc6{bottom:273.626667pt;}
.y37{bottom:278.906667pt;}
.y8c{bottom:284.666667pt;}
.y134{bottom:284.826667pt;}
.y25{bottom:286.426667pt;}
.yc5{bottom:289.786667pt;}
.y101{bottom:291.546667pt;}
.y36{bottom:294.266667pt;}
.y8b{bottom:300.066667pt;}
.y1d{bottom:300.866667pt;}
.y133{bottom:301.186667pt;}
.y24{bottom:301.786667pt;}
.yc4{bottom:306.146667pt;}
.y100{bottom:306.946667pt;}
.y35{bottom:309.626667pt;}
.y8a{bottom:315.426667pt;}
.y132{bottom:316.546667pt;}
.y23{bottom:317.306667pt;}
.yc3{bottom:321.506667pt;}
.yff{bottom:322.146667pt;}
.y34{bottom:324.986667pt;}
.y89{bottom:330.786667pt;}
.y131{bottom:332.706667pt;}
.y22{bottom:332.826667pt;}
.yc2{bottom:336.866667pt;}
.yfe{bottom:337.506667pt;}
.y33{bottom:340.186667pt;}
.y88{bottom:346.146667pt;}
.y130{bottom:348.066667pt;}
.y21{bottom:348.186667pt;}
.yfd{bottom:352.866667pt;}
.yc1{bottom:353.186667pt;}
.y32{bottom:355.546667pt;}
.y87{bottom:361.346667pt;}
.y20{bottom:363.866667pt;}
.y12f{bottom:364.386667pt;}
.yfc{bottom:368.226667pt;}
.yc0{bottom:369.346667pt;}
.y31{bottom:370.906667pt;}
.y86{bottom:376.706667pt;}
.y12e{bottom:379.746667pt;}
.yfb{bottom:381.346667pt;}
.ybf{bottom:385.666667pt;}
.y30{bottom:386.266667pt;}
.y1f{bottom:388.186667pt;}
.y85{bottom:392.066667pt;}
.y12d{bottom:396.066667pt;}
.yfa{bottom:397.346667pt;}
.y2f{bottom:401.626667pt;}
.ybe{bottom:401.986667pt;}
.y1e{bottom:404.026667pt;}
.y84{bottom:407.426667pt;}
.y12c{bottom:411.266667pt;}
.yf9{bottom:413.346667pt;}
.ybd{bottom:418.306667pt;}
.y83{bottom:422.786667pt;}
.y12b{bottom:426.626667pt;}
.yf8{bottom:429.346667pt;}
.ybc{bottom:434.626667pt;}
.y82{bottom:438.146667pt;}
.y12a{bottom:441.986667pt;}
.yf7{bottom:445.346667pt;}
.ybb{bottom:449.986667pt;}
.y81{bottom:453.346667pt;}
.y129{bottom:457.346667pt;}
.yf6{bottom:461.346667pt;}
.yba{bottom:465.186667pt;}
.y80{bottom:468.706667pt;}
.y128{bottom:472.706667pt;}
.yf5{bottom:480.226667pt;}
.yb9{bottom:481.506667pt;}
.y7f{bottom:484.066667pt;}
.y127{bottom:488.066667pt;}
.yf4{bottom:495.586667pt;}
.yb8{bottom:496.866667pt;}
.y7e{bottom:499.426667pt;}
.y126{bottom:503.266667pt;}
.yf3{bottom:510.786667pt;}
.yb7{bottom:512.226667pt;}
.y7d{bottom:514.786667pt;}
.y125{bottom:518.626667pt;}
.yf2{bottom:526.146667pt;}
.yb6{bottom:528.546667pt;}
.y7c{bottom:530.146667pt;}
.y124{bottom:533.986667pt;}
.yf1{bottom:541.533333pt;}
.yb5{bottom:544.733333pt;}
.y7b{bottom:545.373333pt;}
.y123{bottom:549.373333pt;}
.yf0{bottom:556.893333pt;}
.yb4{bottom:560.573333pt;}
.y7a{bottom:560.733333pt;}
.y122{bottom:564.733333pt;}
.yef{bottom:570.013333pt;}
.y79{bottom:576.093333pt;}
.yb3{bottom:577.853333pt;}
.y121{bottom:580.093333pt;}
.yee{bottom:586.013333pt;}
.y78{bottom:591.453333pt;}
.yb2{bottom:593.213333pt;}
.y120{bottom:595.293333pt;}
.yed{bottom:602.013333pt;}
.y77{bottom:606.813333pt;}
.y11f{bottom:608.413333pt;}
.yb1{bottom:608.573333pt;}
.yec{bottom:618.013333pt;}
.y76{bottom:622.173333pt;}
.yb0{bottom:623.933333pt;}
.y11e{bottom:624.413333pt;}
.yeb{bottom:634.013333pt;}
.y75{bottom:637.373333pt;}
.yaf{bottom:639.133333pt;}
.y11d{bottom:640.413333pt;}
.yae{bottom:651.773333pt;}
.yea{bottom:652.893333pt;}
.y74{bottom:653.693333pt;}
.y11c{bottom:656.413333pt;}
.yad{bottom:660.733333pt;}
.ye9{bottom:668.253333pt;}
.y73{bottom:669.053333pt;}
.y11b{bottom:672.413333pt;}
.ye8{bottom:683.613333pt;}
.yac{bottom:684.893333pt;}
.y72{bottom:685.373333pt;}
.y11a{bottom:688.413333pt;}
.ye7{bottom:698.813333pt;}
.y71{bottom:700.733333pt;}
.y119{bottom:704.413333pt;}
.y153{bottom:714.013333pt;}
.ye6{bottom:714.173333pt;}
.y1b{bottom:714.973333pt;}
.y70{bottom:715.933333pt;}
.yab{bottom:718.013333pt;}
.y118{bottom:720.413333pt;}
.ye5{bottom:727.293333pt;}
.y152{bottom:729.373333pt;}
.y6f{bottom:731.293333pt;}
.y117{bottom:736.413333pt;}
.ya9{bottom:740.733333pt;}
.y10{bottom:741.213333pt;}
.ye4{bottom:743.293333pt;}
.y151{bottom:744.733333pt;}
.yaa{bottom:745.693333pt;}
.y6e{bottom:746.653333pt;}
.y116{bottom:752.413333pt;}
.ye3{bottom:759.293333pt;}
.y150{bottom:760.093333pt;}
.y6d{bottom:762.013333pt;}
.ya8{bottom:765.853333pt;}
.y115{bottom:768.413333pt;}
.ye2{bottom:775.333333pt;}
.y14f{bottom:775.493333pt;}
.y6c{bottom:777.413333pt;}
.ya7{bottom:781.253333pt;}
.y114{bottom:784.453333pt;}
.y14e{bottom:790.853333pt;}
.ye1{bottom:791.333333pt;}
.y6b{bottom:792.773333pt;}
.ya6{bottom:797.733333pt;}
.y113{bottom:800.453333pt;}
.y14d{bottom:806.053333pt;}
.ye0{bottom:807.333333pt;}
.y6a{bottom:807.973333pt;}
.ya5{bottom:814.053333pt;}
.y112{bottom:816.453333pt;}
.y14c{bottom:821.413333pt;}
.y69{bottom:823.333333pt;}
.ydf{bottom:826.213333pt;}
.ya4{bottom:826.533333pt;}
.y111{bottom:832.453333pt;}
.ya3{bottom:835.493333pt;}
.y14b{bottom:836.773333pt;}
.y68{bottom:838.693333pt;}
.yde{bottom:841.573333pt;}
.y110{bottom:848.453333pt;}
.y14a{bottom:852.133333pt;}
.y67{bottom:854.053333pt;}
.ya2{bottom:856.453333pt;}
.ydd{bottom:856.933333pt;}
.y10f{bottom:864.453333pt;}
.ya1{bottom:865.413333pt;}
.y149{bottom:867.493333pt;}
.y66{bottom:869.413333pt;}
.ydc{bottom:873.253333pt;}
.y10e{bottom:880.453333pt;}
.y148{bottom:882.853333pt;}
.y65{bottom:884.773333pt;}
.ya0{bottom:889.253333pt;}
.ydb{bottom:889.413333pt;}
.y10d{bottom:896.453333pt;}
.y147{bottom:898.053333pt;}
.y64{bottom:899.973333pt;}
.y9f{bottom:905.093333pt;}
.yda{bottom:905.253333pt;}
.y146{bottom:913.413333pt;}
.y63{bottom:915.333333pt;}
.y9e{bottom:922.373333pt;}
.yd9{bottom:922.533333pt;}
.y145{bottom:928.773333pt;}
.y62{bottom:930.693333pt;}
.ye{bottom:935.333333pt;}
.yd8{bottom:937.893333pt;}
.y9d{bottom:939.333333pt;}
.y144{bottom:944.133333pt;}
.y61{bottom:946.053333pt;}
.yd7{bottom:954.213333pt;}
.y9c{bottom:954.853333pt;}
.y7{bottom:957.733333pt;}
.y143{bottom:959.493333pt;}
.y60{bottom:961.413333pt;}
.yd6{bottom:970.533333pt;}
.y9b{bottom:970.693333pt;}
.y142{bottom:974.853333pt;}
.y5f{bottom:976.613333pt;}
.yd5{bottom:986.693333pt;}
.y9a{bottom:987.973333pt;}
.y141{bottom:990.053333pt;}
.y5e{bottom:991.973333pt;}
.yd4{bottom:1003.493333pt;}
.y99{bottom:1004.293333pt;}
.y140{bottom:1005.413333pt;}
.y5d{bottom:1007.333333pt;}
.y98{bottom:1020.640000pt;}
.yd3{bottom:1020.800000pt;}
.y5c{bottom:1022.720000pt;}
.yd2{bottom:1036.160000pt;}
.y97{bottom:1037.120000pt;}
.y5b{bottom:1038.080000pt;}
.yd1{bottom:1052.480000pt;}
.y5a{bottom:1053.440000pt;}
.h28{height:15.360000pt;}
.h29{height:15.392000pt;}
.hb{height:22.080000pt;}
.h11{height:25.750000pt;}
.h13{height:26.240000pt;}
.h8{height:32.160000pt;}
.h1a{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h19{height:37.583438pt;}
.h12{height:38.625000pt;}
.h1f{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h1e{height:42.745000pt;}
.h20{height:43.626875pt;}
.h2{height:44.032000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h1d{height:48.832000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h22{height:56.234688pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h23{height:76.074687pt;}
.h26{height:76.714688pt;}
.h21{height:77.354687pt;}
.h27{height:78.050625pt;}
.h7{height:108.032000pt;}
.h25{height:111.914688pt;}
.h24{height:117.034688pt;}
.hc{height:194.106667pt;}
.h15{height:414.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.wd{width:70.720000pt;}
.w15{width:75.520000pt;}
.w19{width:113.600000pt;}
.wc{width:120.832000pt;}
.w18{width:121.792000pt;}
.w14{width:128.832000pt;}
.wb{width:130.272000pt;}
.w17{width:132.832000pt;}
.w5{width:135.066667pt;}
.w10{width:136.026667pt;}
.w13{width:138.746667pt;}
.wf{width:144.320000pt;}
.w11{width:173.946667pt;}
.we{width:192.066667pt;}
.w8{width:198.626667pt;}
.w16{width:278.306667pt;}
.w12{width:303.426667pt;}
.wa{width:324.866667pt;}
.w9{width:451.266667pt;}
.w1a{width:511.933333pt;}
.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;}
.x29{left:6.746667pt;}
.x2{left:7.712000pt;}
.x13{left:11.200000pt;}
.xd{left:19.072000pt;}
.xb{left:20.512000pt;}
.xc{left:32.672000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x14{left:96.031988pt;}
.x10{left:99.386667pt;}
.x15{left:120.031988pt;}
.x21{left:144.026655pt;}
.x22{left:168.026655pt;}
.xf{left:169.946667pt;}
.x11{left:191.266667pt;}
.xe{left:198.626667pt;}
.x5{left:207.066667pt;}
.x33{left:209.306667pt;}
.x2b{left:216.666655pt;}
.x23{left:236.826655pt;}
.x2f{left:237.786655pt;}
.x8{left:241.986667pt;}
.x26{left:244.986655pt;}
.x27{left:265.346667pt;}
.x12{left:270.626667pt;}
.x16{left:278.466655pt;}
.x1f{left:285.826655pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x17{left:334.786655pt;}
.x19{left:337.026655pt;}
.x1a{left:345.666655pt;}
.x1c{left:348.866655pt;}
.x30{left:351.586667pt;}
.x18{left:364.866655pt;}
.x2c{left:376.866667pt;}
.x1b{left:385.986655pt;}
.x9{left:390.666667pt;}
.x34{left:396.866655pt;}
.x20{left:398.146655pt;}
.x1d{left:407.586655pt;}
.x28{left:410.466667pt;}
.x1e{left:434.813322pt;}
.x31{left:485.053333pt;}
.x2d{left:516.253333pt;}
.x24{left:529.053333pt;}
.x2a{left:547.293333pt;}
.x32{left:607.653333pt;}
.x2e{left:645.733333pt;}
.x25{left:650.533333pt;}
.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; }
  