
    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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_8c340ee3280b158cd2dc5129.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_69d2f174f987d8f66e9aa1ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_3675022a3404d9008db86820.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_86ca9c14f41ef570a8507162.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_c5beb456d23984055fedb881.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_a40039c0b520bdcc4c34215e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972168;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_f501d6226d705eaf5ef3298e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_6203bbb6ee8cea351f490689.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.947754;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_fc65efd21fcb012423930d84.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.128906;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_432a3e9e174645fd7ca5ed37.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.128906;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_b9eb58bdea520b283f09725b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.962402;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_085ca947ab72304809a5f7f0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.128906;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_1c480711fdf4ab402c7279ca.woff2')format("woff");}.fff{font-family:fff;line-height:0.927734;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_148015175cc9c02b065862b1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.950684;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_aa0fb5056b60d132118dab8d.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_856d32e782585e228616d67b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.747070;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_3f163bfc82eae7ec02b75644.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.128906;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_7b95092b15b7a5d84646a838.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.402354;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.v3{vertical-align:-23.760000px;}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-15.120000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls12{letter-spacing:-0.900000px;}
.ls6{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.576000px;}
.ls30{letter-spacing:-0.432000px;}
.ls2f{letter-spacing:-0.342000px;}
.lsd{letter-spacing:-0.331200px;}
.ls16{letter-spacing:-0.326400px;}
.ls27{letter-spacing:-0.324000px;}
.ls1d{letter-spacing:-0.306000px;}
.ls20{letter-spacing:-0.288000px;}
.ls31{letter-spacing:-0.270000px;}
.lse{letter-spacing:-0.234000px;}
.lsf{letter-spacing:-0.216000px;}
.ls2e{letter-spacing:-0.198000px;}
.ls14{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.091200px;}
.ls7{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.054000px;}
.lsc{letter-spacing:-0.036000px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.011520px;}
.ls3{letter-spacing:0.031680px;}
.ls11{letter-spacing:0.036000px;}
.ls25{letter-spacing:0.054000px;}
.ls8{letter-spacing:0.060715px;}
.ls21{letter-spacing:0.090000px;}
.ls18{letter-spacing:0.104400px;}
.ls15{letter-spacing:0.136800px;}
.ls1e{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.162000px;}
.ls1c{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.216000px;}
.ls2d{letter-spacing:0.234000px;}
.ls1{letter-spacing:0.234600px;}
.ls0{letter-spacing:0.234720px;}
.ls10{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.331200px;}
.lsa{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.378000px;}
.ls26{letter-spacing:0.540000px;}
.ls1f{letter-spacing:1.386000px;}
.ls2a{letter-spacing:5.706000px;}
.ls24{letter-spacing:10.026000px;}
.ls29{letter-spacing:11.466000px;}
.ls2b{letter-spacing:17.964000px;}
.ls23{letter-spacing:21.546000px;}
.ls2c{letter-spacing:35.226000px;}
.ls1b{letter-spacing:176.484000px;}
.ls1a{letter-spacing:176.508000px;}
.ls19{letter-spacing:176.688000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-72.000000px;}
.ws14{word-spacing:-54.000000px;}
.ws1{word-spacing:-22.316640px;}
.ws3{word-spacing:-19.152000px;}
.ws5{word-spacing:-18.360000px;}
.ws8{word-spacing:-18.234000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws7{word-spacing:-16.824960px;}
.ws26{word-spacing:-14.094000px;}
.ws1f{word-spacing:-14.004000px;}
.ws21{word-spacing:-13.950000px;}
.ws18{word-spacing:-13.932000px;}
.ws19{word-spacing:-13.896000px;}
.ws1d{word-spacing:-13.878000px;}
.ws1b{word-spacing:-13.806000px;}
.ws1c{word-spacing:-13.770000px;}
.ws20{word-spacing:-13.752000px;}
.ws17{word-spacing:-13.716000px;}
.ws23{word-spacing:-13.374000px;}
.ws24{word-spacing:-13.284000px;}
.ws13{word-spacing:-13.194000px;}
.ws15{word-spacing:-13.158000px;}
.wsa{word-spacing:-13.014000px;}
.ws1e{word-spacing:-12.978000px;}
.wsc{word-spacing:-12.960000px;}
.ws12{word-spacing:-12.834000px;}
.ws22{word-spacing:-12.816000px;}
.ws25{word-spacing:-12.744000px;}
.ws16{word-spacing:-12.726000px;}
.ws1a{word-spacing:-12.690000px;}
.wsf{word-spacing:-11.762640px;}
.ws11{word-spacing:-11.730240px;}
.wse{word-spacing:-11.637360px;}
.ws10{word-spacing:-11.625840px;}
.wsd{word-spacing:-11.299440px;}
.ws2{word-spacing:-10.576680px;}
.wsb{word-spacing:-8.676000px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.290480px;}
._1{width:1.053360px;}
._9{width:2.172000px;}
._2{width:3.870480px;}
._a{width:5.038080px;}
._f{width:6.053040px;}
._14{width:7.062480px;}
._6{width:8.064000px;}
._32{width:9.068160px;}
._d{width:10.070160px;}
._10{width:11.610000px;}
._7{width:13.248000px;}
._8{width:14.484000px;}
._e{width:16.466160px;}
._17{width:17.897520px;}
._19{width:18.924960px;}
._3{width:20.448000px;}
._4{width:22.464000px;}
._5{width:23.616000px;}
._b{width:25.422480px;}
._c{width:26.629680px;}
._12{width:28.134000px;}
._13{width:29.430000px;}
._18{width:30.942000px;}
._1f{width:32.400000px;}
._1a{width:33.966000px;}
._2b{width:35.046000px;}
._11{width:36.126000px;}
._15{width:37.938000px;}
._16{width:39.332640px;}
._20{width:40.932000px;}
._21{width:42.300000px;}
._33{width:43.362000px;}
._28{width:44.442000px;}
._29{width:45.576000px;}
._2a{width:47.088000px;}
._1e{width:48.492000px;}
._1c{width:50.220000px;}
._1b{width:51.300000px;}
._22{width:52.596000px;}
._23{width:53.892000px;}
._35{width:54.902640px;}
._2e{width:57.078000px;}
._24{width:58.806000px;}
._25{width:59.912640px;}
._26{width:61.317360px;}
._27{width:63.774000px;}
._2c{width:65.448000px;}
._2d{width:66.690000px;}
._36{width:69.228000px;}
._30{width:76.410000px;}
._2f{width:77.436000px;}
._1d{width:86.994000px;}
._31{width:89.082000px;}
._34{width:104.112000px;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(34,34,34);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fs8{font-size:33.120000px;}
.fsd{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fsb{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:74.880000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs5{font-size:100.938894px;}
.fs2{font-size:108.000000px;}
.y43{bottom:-15.660000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.340000px;}
.y7{bottom:2.880000px;}
.y24{bottom:3.240000px;}
.y11{bottom:3.420000px;}
.y2a{bottom:3.600000px;}
.y20{bottom:3.960000px;}
.y4{bottom:4.140000px;}
.y7e{bottom:4.170000px;}
.y7a{bottom:4.320000px;}
.y3{bottom:4.500000px;}
.y8c{bottom:4.665000px;}
.y9a{bottom:4.672500px;}
.y89{bottom:4.680000px;}
.ybb{bottom:4.845000px;}
.y28{bottom:4.860000px;}
.yca{bottom:5.925000px;}
.yb5{bottom:5.940000px;}
.ybc{bottom:6.105000px;}
.yb8{bottom:6.120000px;}
.yc7{bottom:6.465000px;}
.yc8{bottom:7.725000px;}
.y9d{bottom:7.740000px;}
.ye4{bottom:7.905000px;}
.ya1{bottom:7.920000px;}
.y42{bottom:9.000000px;}
.y3b{bottom:9.705000px;}
.y22{bottom:10.980000px;}
.y26{bottom:14.940000px;}
.y14{bottom:15.120000px;}
.y1e{bottom:15.150000px;}
.y3d{bottom:16.185000px;}
.yf{bottom:19.980000px;}
.y76{bottom:20.340000px;}
.y73{bottom:21.420000px;}
.ya4{bottom:28.980000px;}
.y3a{bottom:30.225000px;}
.y41{bottom:30.240000px;}
.y13{bottom:45.765000px;}
.y9f{bottom:50.040000px;}
.y39{bottom:50.565000px;}
.y40{bottom:51.660000px;}
.y1d{bottom:51.690000px;}
.y5{bottom:58.320000px;}
.ye{bottom:60.840000px;}
.y38{bottom:71.085000px;}
.y2{bottom:74.520000px;}
.y3f{bottom:75.810000px;}
.y1c{bottom:76.350000px;}
.ya{bottom:80.460000px;}
.y37{bottom:91.425000px;}
.y9{bottom:91.440000px;}
.y1b{bottom:106.950000px;}
.yfb{bottom:111.600000px;}
.y36{bottom:111.945000px;}
.yef{bottom:115.920000px;}
.ycd{bottom:119.520000px;}
.y9b{bottom:126.720000px;}
.y71{bottom:130.320000px;}
.y35{bottom:132.465000px;}
.ycc{bottom:133.740000px;}
.yfa{bottom:134.640000px;}
.y1a{bottom:143.490000px;}
.y99{bottom:144.763500px;}
.yee{bottom:151.425000px;}
.ycb{bottom:151.785000px;}
.y34{bottom:152.805000px;}
.y70{bottom:153.210000px;}
.y3c{bottom:155.385000px;}
.yf9{bottom:157.710000px;}
.y98{bottom:162.765000px;}
.y19{bottom:168.150000px;}
.yc9{bottom:171.045000px;}
.yed{bottom:172.485000px;}
.y33{bottom:173.325000px;}
.y6f{bottom:176.250000px;}
.yf8{bottom:180.570000px;}
.y97{bottom:180.765000px;}
.y2c{bottom:181.125000px;}
.yc6{bottom:190.305000px;}
.yec{bottom:193.545000px;}
.y32{bottom:193.845000px;}
.y96{bottom:198.765000px;}
.y6e{bottom:199.290000px;}
.yf7{bottom:203.610000px;}
.y18{bottom:204.870000px;}
.yc5{bottom:211.185000px;}
.y31{bottom:214.230000px;}
.yeb{bottom:214.605000px;}
.y95{bottom:216.765000px;}
.y6d{bottom:222.330000px;}
.yf6{bottom:226.650000px;}
.yc4{bottom:229.185000px;}
.y30{bottom:234.750000px;}
.y94{bottom:234.765000px;}
.yea{bottom:235.665000px;}
.y6c{bottom:245.370000px;}
.yc3{bottom:247.185000px;}
.yf5{bottom:249.690000px;}
.y93{bottom:252.765000px;}
.y2f{bottom:255.090000px;}
.ye9{bottom:256.725000px;}
.yc2{bottom:265.185000px;}
.y6b{bottom:268.410000px;}
.y92{bottom:270.765000px;}
.yf4{bottom:272.730000px;}
.y2e{bottom:275.610000px;}
.ye8{bottom:277.785000px;}
.yc1{bottom:283.185000px;}
.y91{bottom:288.765000px;}
.y6a{bottom:291.270000px;}
.yf3{bottom:295.770000px;}
.y2d{bottom:296.130000px;}
.ye7{bottom:298.845000px;}
.yc0{bottom:301.185000px;}
.y90{bottom:306.765000px;}
.y69{bottom:314.310000px;}
.yf2{bottom:318.630000px;}
.ybf{bottom:319.185000px;}
.ye6{bottom:319.905000px;}
.y8f{bottom:324.765000px;}
.ybe{bottom:337.185000px;}
.y68{bottom:337.350000px;}
.ye5{bottom:340.965000px;}
.yf1{bottom:341.670000px;}
.y8e{bottom:342.765000px;}
.ybd{bottom:355.185000px;}
.y67{bottom:360.390000px;}
.y8d{bottom:360.765000px;}
.ye3{bottom:363.105000px;}
.yba{bottom:373.185000px;}
.y8b{bottom:378.765000px;}
.y66{bottom:383.430000px;}
.yf0{bottom:387.750000px;}
.yb9{bottom:392.475000px;}
.ye2{bottom:396.255000px;}
.y8a{bottom:396.795000px;}
.y65{bottom:406.515000px;}
.yb7{bottom:411.555000px;}
.y88{bottom:414.795000px;}
.ye1{bottom:419.295000px;}
.y64{bottom:429.375000px;}
.yb6{bottom:430.815000px;}
.y87{bottom:433.875000px;}
.ye0{bottom:442.335000px;}
.yb4{bottom:450.075000px;}
.y63{bottom:452.415000px;}
.y86{bottom:463.935000px;}
.ydf{bottom:465.375000px;}
.yb3{bottom:469.155000px;}
.y62{bottom:475.455000px;}
.y85{bottom:486.975000px;}
.yb2{bottom:487.155000px;}
.y2b{bottom:488.055000px;}
.yde{bottom:488.415000px;}
.y61{bottom:498.495000px;}
.y29{bottom:503.355000px;}
.yb1{bottom:506.415000px;}
.y84{bottom:509.835000px;}
.ydd{bottom:511.275000px;}
.y60{bottom:521.535000px;}
.y27{bottom:522.075000px;}
.y83{bottom:532.875000px;}
.ydc{bottom:534.315000px;}
.yb0{bottom:536.475000px;}
.y25{bottom:542.055000px;}
.y5f{bottom:544.575000px;}
.y82{bottom:555.915000px;}
.ydb{bottom:557.355000px;}
.yaf{bottom:559.335000px;}
.y5e{bottom:567.435000px;}
.y23{bottom:572.115000px;}
.y81{bottom:578.955000px;}
.yda{bottom:580.395000px;}
.yae{bottom:582.375000px;}
.y21{bottom:585.435000px;}
.y5d{bottom:590.475000px;}
.y80{bottom:601.995000px;}
.yd9{bottom:603.435000px;}
.yad{bottom:605.415000px;}
.y1f{bottom:608.475000px;}
.y5c{bottom:613.515000px;}
.y7f{bottom:625.035000px;}
.y17{bottom:625.395000px;}
.yd8{bottom:626.475000px;}
.yac{bottom:628.455000px;}
.y5b{bottom:636.555000px;}
.y7d{bottom:639.255000px;}
.yd7{bottom:649.365000px;}
.yab{bottom:651.525000px;}
.y7b{bottom:655.485000px;}
.y5a{bottom:659.625000px;}
.y7c{bottom:671.505000px;}
.yd6{bottom:672.405000px;}
.yaa{bottom:674.565000px;}
.y59{bottom:682.485000px;}
.y78{bottom:687.705000px;}
.ya9{bottom:688.785000px;}
.yd5{bottom:695.445000px;}
.y79{bottom:703.725000px;}
.y58{bottom:705.525000px;}
.ya8{bottom:709.845000px;}
.yd4{bottom:718.485000px;}
.y75{bottom:719.925000px;}
.y57{bottom:728.565000px;}
.ya7{bottom:730.905000px;}
.y77{bottom:736.125000px;}
.yd3{bottom:741.525000px;}
.y56{bottom:751.605000px;}
.ya6{bottom:751.965000px;}
.y72{bottom:752.145000px;}
.yd2{bottom:755.745000px;}
.y74{bottom:769.425000px;}
.ya3{bottom:773.025000px;}
.y55{bottom:774.645000px;}
.yd1{bottom:779.865000px;}
.ya5{bottom:794.085000px;}
.y54{bottom:797.685000px;}
.yd0{bottom:803.985000px;}
.y9e{bottom:815.145000px;}
.y53{bottom:820.545000px;}
.ycf{bottom:828.105000px;}
.ya2{bottom:836.205000px;}
.y15{bottom:839.805000px;}
.y52{bottom:843.585000px;}
.yce{bottom:853.485000px;}
.y12{bottom:854.385000px;}
.ya0{bottom:857.265000px;}
.y51{bottom:866.625000px;}
.y9c{bottom:879.585000px;}
.y50{bottom:889.710000px;}
.y4f{bottom:912.750000px;}
.y10{bottom:915.450000px;}
.yd{bottom:929.130000px;}
.y4e{bottom:935.790000px;}
.y4d{bottom:958.650000px;}
.y4c{bottom:981.690000px;}
.y4b{bottom:1004.730000px;}
.yc{bottom:1013.370000px;}
.y4a{bottom:1027.770000px;}
.yb{bottom:1030.110000px;}
.y8{bottom:1046.850000px;}
.y49{bottom:1050.810000px;}
.y3e{bottom:1065.210000px;}
.y48{bottom:1073.850000px;}
.y47{bottom:1096.710000px;}
.y46{bottom:1119.750000px;}
.y45{bottom:1142.820000px;}
.y1{bottom:1171.080000px;}
.y44{bottom:1192.680000px;}
.y6{bottom:1195.740000px;}
.hc{height:8.289492px;}
.h1c{height:13.305000px;}
.h10{height:13.665000px;}
.h14{height:14.580000px;}
.h2d{height:14.940000px;}
.h30{height:14.970000px;}
.h2f{height:15.120000px;}
.h23{height:15.285000px;}
.h31{height:16.725000px;}
.h33{height:16.732500px;}
.h32{height:16.761000px;}
.h34{height:16.776000px;}
.h18{height:16.905000px;}
.h3e{height:16.956000px;}
.h39{height:17.985000px;}
.h3b{height:18.165000px;}
.h3c{height:18.201000px;}
.h21{height:18.705000px;}
.h3d{height:19.785000px;}
.h35{height:19.822500px;}
.h40{height:19.836000px;}
.h20{height:19.965000px;}
.h37{height:19.980000px;}
.h3{height:20.698500px;}
.h5{height:20.880000px;}
.h1a{height:23.025000px;}
.h3f{height:23.040000px;}
.h17{height:25.001719px;}
.h26{height:25.725000px;}
.h27{height:29.145586px;}
.h1e{height:30.045000px;}
.h2e{height:31.140000px;}
.h2c{height:32.220000px;}
.h11{height:32.670352px;}
.h1d{height:33.588984px;}
.h15{height:36.886641px;}
.h19{height:40.472227px;}
.h38{height:41.040000px;}
.h2a{height:41.291016px;}
.h25{height:44.000156px;}
.h13{height:48.761719px;}
.h1b{height:49.253906px;}
.h1f{height:50.132812px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h29{height:55.054688px;}
.h2b{height:55.209375px;}
.h3a{height:55.503491px;}
.h6{height:57.051211px;}
.h22{height:60.418125px;}
.h12{height:61.042500px;}
.h36{height:62.100000px;}
.he{height:64.853086px;}
.hf{height:68.360471px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.hd{height:81.525000px;}
.h7{height:84.898125px;}
.h28{height:93.810000px;}
.h8{height:108.030000px;}
.h16{height:214.410000px;}
.h24{height:306.915000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.529500px;}
.w10{width:64.656000px;}
.w12{width:65.329500px;}
.w6{width:76.669500px;}
.w28{width:84.945000px;}
.w11{width:93.225000px;}
.w1a{width:93.261000px;}
.w27{width:94.881000px;}
.w19{width:101.685000px;}
.w1b{width:107.085000px;}
.w25{width:107.316000px;}
.wc{width:114.649500px;}
.w26{width:116.805000px;}
.w5{width:124.005000px;}
.w24{width:127.641000px;}
.w1f{width:134.085000px;}
.w21{width:143.989500px;}
.w1e{width:147.996000px;}
.we{width:157.710000px;}
.w15{width:162.019500px;}
.wd{width:174.435000px;}
.w23{width:179.835000px;}
.w20{width:183.435000px;}
.w1c{width:209.539500px;}
.w13{width:218.175000px;}
.w17{width:218.535000px;}
.wf{width:228.255000px;}
.w16{width:293.970000px;}
.wa{width:332.115000px;}
.w22{width:351.780000px;}
.w9{width:356.464500px;}
.w18{width:373.024500px;}
.w14{width:391.575000px;}
.wb{width:464.475000px;}
.w1d{width:465.555000px;}
.w4{width:551.790000px;}
.w7{width:616.455000px;}
.w3{width:628.290000px;}
.w29{width:675.630000px;}
.w8{width:688.590000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.465000px;}
.x9{left:8.089500px;}
.x43{left:9.165000px;}
.x5{left:10.789500px;}
.x50{left:11.865000px;}
.x53{left:15.660000px;}
.x14{left:16.740000px;}
.x2c{left:19.785000px;}
.x2{left:21.049500px;}
.x39{left:22.680000px;}
.x21{left:25.725000px;}
.x1a{left:27.169500px;}
.x24{left:28.980000px;}
.x35{left:30.060000px;}
.x5c{left:32.385000px;}
.x62{left:33.649500px;}
.xc{left:35.269500px;}
.x2a{left:36.885000px;}
.x22{left:38.329500px;}
.x7{left:39.780000px;}
.x1c{left:41.025000px;}
.x26{left:42.643500px;}
.x40{left:44.265000px;}
.x67{left:45.345000px;}
.x55{left:46.650000px;}
.x31{left:49.125000px;}
.x68{left:50.250000px;}
.x20{left:51.285000px;}
.x25{left:52.590000px;}
.x3b{left:54.165000px;}
.x4c{left:57.043500px;}
.x33{left:59.385000px;}
.x4d{left:62.100000px;}
.x23{left:63.210000px;}
.x4a{left:64.423500px;}
.x5e{left:65.503500px;}
.x28{left:66.990000px;}
.x38{left:68.205000px;}
.x1e{left:69.690000px;}
.x27{left:71.850000px;}
.x11{left:73.785000px;}
.x36{left:76.305000px;}
.x3e{left:78.825000px;}
.x2f{left:81.165000px;}
.x46{left:83.010000px;}
.x29{left:84.990000px;}
.x42{left:90.210000px;}
.x47{left:97.740000px;}
.x8{left:100.126500px;}
.xb{left:101.386500px;}
.x15{left:105.300000px;}
.x49{left:106.770000px;}
.x1{left:108.036000px;}
.x3c{left:109.110000px;}
.x56{left:110.503500px;}
.x41{left:113.610000px;}
.x54{left:116.443500px;}
.x57{left:118.063500px;}
.x4e{left:122.203500px;}
.x48{left:123.660000px;}
.x3f{left:125.670000px;}
.x4b{left:126.900000px;}
.x58{left:131.563500px;}
.x60{left:134.850000px;}
.x32{left:146.010000px;}
.x3a{left:150.690000px;}
.x37{left:152.310000px;}
.x2e{left:153.930000px;}
.x3{left:157.005000px;}
.x3d{left:158.610000px;}
.x30{left:159.870000px;}
.x34{left:161.490000px;}
.x2b{left:173.385000px;}
.xa{left:176.805000px;}
.xd{left:185.248500px;}
.x5a{left:191.730000px;}
.x1b{left:222.705000px;}
.x17{left:230.430000px;}
.xe{left:233.308500px;}
.xf{left:245.548500px;}
.x5f{left:252.045000px;}
.x66{left:256.708500px;}
.x16{left:263.910000px;}
.x44{left:270.075000px;}
.x59{left:317.595000px;}
.x13{left:325.875000px;}
.x63{left:379.695000px;}
.x2d{left:391.575000px;}
.x1d{left:397.155000px;}
.x18{left:453.855000px;}
.x10{left:457.860000px;}
.x19{left:462.705000px;}
.x5b{left:465.600000px;}
.x4f{left:481.080000px;}
.x64{left:487.020000px;}
.x1f{left:554.880000px;}
.x45{left:564.060000px;}
.x51{left:582.780000px;}
.x5d{left:599.700000px;}
.x61{left:603.840000px;}
.x6{left:661.650000px;}
.x52{left:676.050000px;}
.x12{left:680.323500px;}
.x65{left:698.730000px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-13.440000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls12{letter-spacing:-0.800000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls30{letter-spacing:-0.384000pt;}
.ls2f{letter-spacing:-0.304000pt;}
.lsd{letter-spacing:-0.294400pt;}
.ls16{letter-spacing:-0.290133pt;}
.ls27{letter-spacing:-0.288000pt;}
.ls1d{letter-spacing:-0.272000pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls31{letter-spacing:-0.240000pt;}
.lse{letter-spacing:-0.208000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls2e{letter-spacing:-0.176000pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.081067pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.048000pt;}
.lsc{letter-spacing:-0.032000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.010240pt;}
.ls3{letter-spacing:0.028160pt;}
.ls11{letter-spacing:0.032000pt;}
.ls25{letter-spacing:0.048000pt;}
.ls8{letter-spacing:0.053969pt;}
.ls21{letter-spacing:0.080000pt;}
.ls18{letter-spacing:0.092800pt;}
.ls15{letter-spacing:0.121600pt;}
.ls1e{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.144000pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.192000pt;}
.ls2d{letter-spacing:0.208000pt;}
.ls1{letter-spacing:0.208533pt;}
.ls0{letter-spacing:0.208640pt;}
.ls10{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.294400pt;}
.lsa{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.336000pt;}
.ls26{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:1.232000pt;}
.ls2a{letter-spacing:5.072000pt;}
.ls24{letter-spacing:8.912000pt;}
.ls29{letter-spacing:10.192000pt;}
.ls2b{letter-spacing:15.968000pt;}
.ls23{letter-spacing:19.152000pt;}
.ls2c{letter-spacing:31.312000pt;}
.ls1b{letter-spacing:156.874667pt;}
.ls1a{letter-spacing:156.896000pt;}
.ls19{letter-spacing:157.056000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws14{word-spacing:-48.000000pt;}
.ws1{word-spacing:-19.837013pt;}
.ws3{word-spacing:-17.024000pt;}
.ws5{word-spacing:-16.320000pt;}
.ws8{word-spacing:-16.208000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws7{word-spacing:-14.955520pt;}
.ws26{word-spacing:-12.528000pt;}
.ws1f{word-spacing:-12.448000pt;}
.ws21{word-spacing:-12.400000pt;}
.ws18{word-spacing:-12.384000pt;}
.ws19{word-spacing:-12.352000pt;}
.ws1d{word-spacing:-12.336000pt;}
.ws1b{word-spacing:-12.272000pt;}
.ws1c{word-spacing:-12.240000pt;}
.ws20{word-spacing:-12.224000pt;}
.ws17{word-spacing:-12.192000pt;}
.ws23{word-spacing:-11.888000pt;}
.ws24{word-spacing:-11.808000pt;}
.ws13{word-spacing:-11.728000pt;}
.ws15{word-spacing:-11.696000pt;}
.wsa{word-spacing:-11.568000pt;}
.ws1e{word-spacing:-11.536000pt;}
.wsc{word-spacing:-11.520000pt;}
.ws12{word-spacing:-11.408000pt;}
.ws22{word-spacing:-11.392000pt;}
.ws25{word-spacing:-11.328000pt;}
.ws16{word-spacing:-11.312000pt;}
.ws1a{word-spacing:-11.280000pt;}
.wsf{word-spacing:-10.455680pt;}
.ws11{word-spacing:-10.426880pt;}
.wse{word-spacing:-10.344320pt;}
.ws10{word-spacing:-10.334080pt;}
.wsd{word-spacing:-10.043947pt;}
.ws2{word-spacing:-9.401493pt;}
.wsb{word-spacing:-7.712000pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-1.147093pt;}
._1{width:0.936320pt;}
._9{width:1.930667pt;}
._2{width:3.440427pt;}
._a{width:4.478293pt;}
._f{width:5.380480pt;}
._14{width:6.277760pt;}
._6{width:7.168000pt;}
._32{width:8.060587pt;}
._d{width:8.951253pt;}
._10{width:10.320000pt;}
._7{width:11.776000pt;}
._8{width:12.874667pt;}
._e{width:14.636587pt;}
._17{width:15.908907pt;}
._19{width:16.822187pt;}
._3{width:18.176000pt;}
._4{width:19.968000pt;}
._5{width:20.992000pt;}
._b{width:22.597760pt;}
._c{width:23.670827pt;}
._12{width:25.008000pt;}
._13{width:26.160000pt;}
._18{width:27.504000pt;}
._1f{width:28.800000pt;}
._1a{width:30.192000pt;}
._2b{width:31.152000pt;}
._11{width:32.112000pt;}
._15{width:33.722667pt;}
._16{width:34.962347pt;}
._20{width:36.384000pt;}
._21{width:37.600000pt;}
._33{width:38.544000pt;}
._28{width:39.504000pt;}
._29{width:40.512000pt;}
._2a{width:41.856000pt;}
._1e{width:43.104000pt;}
._1c{width:44.640000pt;}
._1b{width:45.600000pt;}
._22{width:46.752000pt;}
._23{width:47.904000pt;}
._35{width:48.802347pt;}
._2e{width:50.736000pt;}
._24{width:52.272000pt;}
._25{width:53.255680pt;}
._26{width:54.504320pt;}
._27{width:56.688000pt;}
._2c{width:58.176000pt;}
._2d{width:59.280000pt;}
._36{width:61.536000pt;}
._30{width:67.920000pt;}
._2f{width:68.832000pt;}
._1d{width:77.328000pt;}
._31{width:79.184000pt;}
._34{width:92.544000pt;}
.fs3{font-size:10.880000pt;}
.fs8{font-size:29.440000pt;}
.fsd{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fsb{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:66.560000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs5{font-size:89.723461pt;}
.fs2{font-size:96.000000pt;}
.y43{bottom:-13.920000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.080000pt;}
.y7{bottom:2.560000pt;}
.y24{bottom:2.880000pt;}
.y11{bottom:3.040000pt;}
.y2a{bottom:3.200000pt;}
.y20{bottom:3.520000pt;}
.y4{bottom:3.680000pt;}
.y7e{bottom:3.706667pt;}
.y7a{bottom:3.840000pt;}
.y3{bottom:4.000000pt;}
.y8c{bottom:4.146667pt;}
.y9a{bottom:4.153333pt;}
.y89{bottom:4.160000pt;}
.ybb{bottom:4.306667pt;}
.y28{bottom:4.320000pt;}
.yca{bottom:5.266667pt;}
.yb5{bottom:5.280000pt;}
.ybc{bottom:5.426667pt;}
.yb8{bottom:5.440000pt;}
.yc7{bottom:5.746667pt;}
.yc8{bottom:6.866667pt;}
.y9d{bottom:6.880000pt;}
.ye4{bottom:7.026667pt;}
.ya1{bottom:7.040000pt;}
.y42{bottom:8.000000pt;}
.y3b{bottom:8.626667pt;}
.y22{bottom:9.760000pt;}
.y26{bottom:13.280000pt;}
.y14{bottom:13.440000pt;}
.y1e{bottom:13.466667pt;}
.y3d{bottom:14.386667pt;}
.yf{bottom:17.760000pt;}
.y76{bottom:18.080000pt;}
.y73{bottom:19.040000pt;}
.ya4{bottom:25.760000pt;}
.y3a{bottom:26.866667pt;}
.y41{bottom:26.880000pt;}
.y13{bottom:40.680000pt;}
.y9f{bottom:44.480000pt;}
.y39{bottom:44.946667pt;}
.y40{bottom:45.920000pt;}
.y1d{bottom:45.946667pt;}
.y5{bottom:51.840000pt;}
.ye{bottom:54.080000pt;}
.y38{bottom:63.186667pt;}
.y2{bottom:66.240000pt;}
.y3f{bottom:67.386667pt;}
.y1c{bottom:67.866667pt;}
.ya{bottom:71.520000pt;}
.y37{bottom:81.266667pt;}
.y9{bottom:81.280000pt;}
.y1b{bottom:95.066667pt;}
.yfb{bottom:99.200000pt;}
.y36{bottom:99.506667pt;}
.yef{bottom:103.040000pt;}
.ycd{bottom:106.240000pt;}
.y9b{bottom:112.640000pt;}
.y71{bottom:115.840000pt;}
.y35{bottom:117.746667pt;}
.ycc{bottom:118.880000pt;}
.yfa{bottom:119.680000pt;}
.y1a{bottom:127.546667pt;}
.y99{bottom:128.678667pt;}
.yee{bottom:134.600000pt;}
.ycb{bottom:134.920000pt;}
.y34{bottom:135.826667pt;}
.y70{bottom:136.186667pt;}
.y3c{bottom:138.120000pt;}
.yf9{bottom:140.186667pt;}
.y98{bottom:144.680000pt;}
.y19{bottom:149.466667pt;}
.yc9{bottom:152.040000pt;}
.yed{bottom:153.320000pt;}
.y33{bottom:154.066667pt;}
.y6f{bottom:156.666667pt;}
.yf8{bottom:160.506667pt;}
.y97{bottom:160.680000pt;}
.y2c{bottom:161.000000pt;}
.yc6{bottom:169.160000pt;}
.yec{bottom:172.040000pt;}
.y32{bottom:172.306667pt;}
.y96{bottom:176.680000pt;}
.y6e{bottom:177.146667pt;}
.yf7{bottom:180.986667pt;}
.y18{bottom:182.106667pt;}
.yc5{bottom:187.720000pt;}
.y31{bottom:190.426667pt;}
.yeb{bottom:190.760000pt;}
.y95{bottom:192.680000pt;}
.y6d{bottom:197.626667pt;}
.yf6{bottom:201.466667pt;}
.yc4{bottom:203.720000pt;}
.y30{bottom:208.666667pt;}
.y94{bottom:208.680000pt;}
.yea{bottom:209.480000pt;}
.y6c{bottom:218.106667pt;}
.yc3{bottom:219.720000pt;}
.yf5{bottom:221.946667pt;}
.y93{bottom:224.680000pt;}
.y2f{bottom:226.746667pt;}
.ye9{bottom:228.200000pt;}
.yc2{bottom:235.720000pt;}
.y6b{bottom:238.586667pt;}
.y92{bottom:240.680000pt;}
.yf4{bottom:242.426667pt;}
.y2e{bottom:244.986667pt;}
.ye8{bottom:246.920000pt;}
.yc1{bottom:251.720000pt;}
.y91{bottom:256.680000pt;}
.y6a{bottom:258.906667pt;}
.yf3{bottom:262.906667pt;}
.y2d{bottom:263.226667pt;}
.ye7{bottom:265.640000pt;}
.yc0{bottom:267.720000pt;}
.y90{bottom:272.680000pt;}
.y69{bottom:279.386667pt;}
.yf2{bottom:283.226667pt;}
.ybf{bottom:283.720000pt;}
.ye6{bottom:284.360000pt;}
.y8f{bottom:288.680000pt;}
.ybe{bottom:299.720000pt;}
.y68{bottom:299.866667pt;}
.ye5{bottom:303.080000pt;}
.yf1{bottom:303.706667pt;}
.y8e{bottom:304.680000pt;}
.ybd{bottom:315.720000pt;}
.y67{bottom:320.346667pt;}
.y8d{bottom:320.680000pt;}
.ye3{bottom:322.760000pt;}
.yba{bottom:331.720000pt;}
.y8b{bottom:336.680000pt;}
.y66{bottom:340.826667pt;}
.yf0{bottom:344.666667pt;}
.yb9{bottom:348.866667pt;}
.ye2{bottom:352.226667pt;}
.y8a{bottom:352.706667pt;}
.y65{bottom:361.346667pt;}
.yb7{bottom:365.826667pt;}
.y88{bottom:368.706667pt;}
.ye1{bottom:372.706667pt;}
.y64{bottom:381.666667pt;}
.yb6{bottom:382.946667pt;}
.y87{bottom:385.666667pt;}
.ye0{bottom:393.186667pt;}
.yb4{bottom:400.066667pt;}
.y63{bottom:402.146667pt;}
.y86{bottom:412.386667pt;}
.ydf{bottom:413.666667pt;}
.yb3{bottom:417.026667pt;}
.y62{bottom:422.626667pt;}
.y85{bottom:432.866667pt;}
.yb2{bottom:433.026667pt;}
.y2b{bottom:433.826667pt;}
.yde{bottom:434.146667pt;}
.y61{bottom:443.106667pt;}
.y29{bottom:447.426667pt;}
.yb1{bottom:450.146667pt;}
.y84{bottom:453.186667pt;}
.ydd{bottom:454.466667pt;}
.y60{bottom:463.586667pt;}
.y27{bottom:464.066667pt;}
.y83{bottom:473.666667pt;}
.ydc{bottom:474.946667pt;}
.yb0{bottom:476.866667pt;}
.y25{bottom:481.826667pt;}
.y5f{bottom:484.066667pt;}
.y82{bottom:494.146667pt;}
.ydb{bottom:495.426667pt;}
.yaf{bottom:497.186667pt;}
.y5e{bottom:504.386667pt;}
.y23{bottom:508.546667pt;}
.y81{bottom:514.626667pt;}
.yda{bottom:515.906667pt;}
.yae{bottom:517.666667pt;}
.y21{bottom:520.386667pt;}
.y5d{bottom:524.866667pt;}
.y80{bottom:535.106667pt;}
.yd9{bottom:536.386667pt;}
.yad{bottom:538.146667pt;}
.y1f{bottom:540.866667pt;}
.y5c{bottom:545.346667pt;}
.y7f{bottom:555.586667pt;}
.y17{bottom:555.906667pt;}
.yd8{bottom:556.866667pt;}
.yac{bottom:558.626667pt;}
.y5b{bottom:565.826667pt;}
.y7d{bottom:568.226667pt;}
.yd7{bottom:577.213333pt;}
.yab{bottom:579.133333pt;}
.y7b{bottom:582.653333pt;}
.y5a{bottom:586.333333pt;}
.y7c{bottom:596.893333pt;}
.yd6{bottom:597.693333pt;}
.yaa{bottom:599.613333pt;}
.y59{bottom:606.653333pt;}
.y78{bottom:611.293333pt;}
.ya9{bottom:612.253333pt;}
.yd5{bottom:618.173333pt;}
.y79{bottom:625.533333pt;}
.y58{bottom:627.133333pt;}
.ya8{bottom:630.973333pt;}
.yd4{bottom:638.653333pt;}
.y75{bottom:639.933333pt;}
.y57{bottom:647.613333pt;}
.ya7{bottom:649.693333pt;}
.y77{bottom:654.333333pt;}
.yd3{bottom:659.133333pt;}
.y56{bottom:668.093333pt;}
.ya6{bottom:668.413333pt;}
.y72{bottom:668.573333pt;}
.yd2{bottom:671.773333pt;}
.y74{bottom:683.933333pt;}
.ya3{bottom:687.133333pt;}
.y55{bottom:688.573333pt;}
.yd1{bottom:693.213333pt;}
.ya5{bottom:705.853333pt;}
.y54{bottom:709.053333pt;}
.yd0{bottom:714.653333pt;}
.y9e{bottom:724.573333pt;}
.y53{bottom:729.373333pt;}
.ycf{bottom:736.093333pt;}
.ya2{bottom:743.293333pt;}
.y15{bottom:746.493333pt;}
.y52{bottom:749.853333pt;}
.yce{bottom:758.653333pt;}
.y12{bottom:759.453333pt;}
.ya0{bottom:762.013333pt;}
.y51{bottom:770.333333pt;}
.y9c{bottom:781.853333pt;}
.y50{bottom:790.853333pt;}
.y4f{bottom:811.333333pt;}
.y10{bottom:813.733333pt;}
.yd{bottom:825.893333pt;}
.y4e{bottom:831.813333pt;}
.y4d{bottom:852.133333pt;}
.y4c{bottom:872.613333pt;}
.y4b{bottom:893.093333pt;}
.yc{bottom:900.773333pt;}
.y4a{bottom:913.573333pt;}
.yb{bottom:915.653333pt;}
.y8{bottom:930.533333pt;}
.y49{bottom:934.053333pt;}
.y3e{bottom:946.853333pt;}
.y48{bottom:954.533333pt;}
.y47{bottom:974.853333pt;}
.y46{bottom:995.333333pt;}
.y45{bottom:1015.840000pt;}
.y1{bottom:1040.960000pt;}
.y44{bottom:1060.160000pt;}
.y6{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.h1c{height:11.826667pt;}
.h10{height:12.146667pt;}
.h14{height:12.960000pt;}
.h2d{height:13.280000pt;}
.h30{height:13.306667pt;}
.h2f{height:13.440000pt;}
.h23{height:13.586667pt;}
.h31{height:14.866667pt;}
.h33{height:14.873333pt;}
.h32{height:14.898667pt;}
.h34{height:14.912000pt;}
.h18{height:15.026667pt;}
.h3e{height:15.072000pt;}
.h39{height:15.986667pt;}
.h3b{height:16.146667pt;}
.h3c{height:16.178667pt;}
.h21{height:16.626667pt;}
.h3d{height:17.586667pt;}
.h35{height:17.620000pt;}
.h40{height:17.632000pt;}
.h20{height:17.746667pt;}
.h37{height:17.760000pt;}
.h3{height:18.398667pt;}
.h5{height:18.560000pt;}
.h1a{height:20.466667pt;}
.h3f{height:20.480000pt;}
.h17{height:22.223750pt;}
.h26{height:22.866667pt;}
.h27{height:25.907187pt;}
.h1e{height:26.706667pt;}
.h2e{height:27.680000pt;}
.h2c{height:28.640000pt;}
.h11{height:29.040312pt;}
.h1d{height:29.856875pt;}
.h15{height:32.788125pt;}
.h19{height:35.975313pt;}
.h38{height:36.480000pt;}
.h2a{height:36.703125pt;}
.h25{height:39.111250pt;}
.h13{height:43.343750pt;}
.h1b{height:43.781250pt;}
.h1f{height:44.562500pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h29{height:48.937500pt;}
.h2b{height:49.075000pt;}
.h3a{height:49.336436pt;}
.h6{height:50.712187pt;}
.h22{height:53.705000pt;}
.h12{height:54.260000pt;}
.h36{height:55.200000pt;}
.he{height:57.647187pt;}
.hf{height:60.764863pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.hd{height:72.466667pt;}
.h7{height:75.465000pt;}
.h28{height:83.386667pt;}
.h8{height:96.026667pt;}
.h16{height:190.586667pt;}
.h24{height:272.813333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.470667pt;}
.w10{width:57.472000pt;}
.w12{width:58.070667pt;}
.w6{width:68.150667pt;}
.w28{width:75.506667pt;}
.w11{width:82.866667pt;}
.w1a{width:82.898667pt;}
.w27{width:84.338667pt;}
.w19{width:90.386667pt;}
.w1b{width:95.186667pt;}
.w25{width:95.392000pt;}
.wc{width:101.910667pt;}
.w26{width:103.826667pt;}
.w5{width:110.226667pt;}
.w24{width:113.458667pt;}
.w1f{width:119.186667pt;}
.w21{width:127.990667pt;}
.w1e{width:131.552000pt;}
.we{width:140.186667pt;}
.w15{width:144.017333pt;}
.wd{width:155.053333pt;}
.w23{width:159.853333pt;}
.w20{width:163.053333pt;}
.w1c{width:186.257333pt;}
.w13{width:193.933333pt;}
.w17{width:194.253333pt;}
.wf{width:202.893333pt;}
.w16{width:261.306667pt;}
.wa{width:295.213333pt;}
.w22{width:312.693333pt;}
.w9{width:316.857333pt;}
.w18{width:331.577333pt;}
.w14{width:348.066667pt;}
.wb{width:412.866667pt;}
.w1d{width:413.826667pt;}
.w4{width:490.480000pt;}
.w7{width:547.960000pt;}
.w3{width:558.480000pt;}
.w29{width:600.560000pt;}
.w8{width:612.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:5.746667pt;}
.x9{left:7.190667pt;}
.x43{left:8.146667pt;}
.x5{left:9.590667pt;}
.x50{left:10.546667pt;}
.x53{left:13.920000pt;}
.x14{left:14.880000pt;}
.x2c{left:17.586667pt;}
.x2{left:18.710667pt;}
.x39{left:20.160000pt;}
.x21{left:22.866667pt;}
.x1a{left:24.150667pt;}
.x24{left:25.760000pt;}
.x35{left:26.720000pt;}
.x5c{left:28.786667pt;}
.x62{left:29.910667pt;}
.xc{left:31.350667pt;}
.x2a{left:32.786667pt;}
.x22{left:34.070667pt;}
.x7{left:35.360000pt;}
.x1c{left:36.466667pt;}
.x26{left:37.905333pt;}
.x40{left:39.346667pt;}
.x67{left:40.306667pt;}
.x55{left:41.466667pt;}
.x31{left:43.666667pt;}
.x68{left:44.666667pt;}
.x20{left:45.586667pt;}
.x25{left:46.746667pt;}
.x3b{left:48.146667pt;}
.x4c{left:50.705333pt;}
.x33{left:52.786667pt;}
.x4d{left:55.200000pt;}
.x23{left:56.186667pt;}
.x4a{left:57.265333pt;}
.x5e{left:58.225333pt;}
.x28{left:59.546667pt;}
.x38{left:60.626667pt;}
.x1e{left:61.946667pt;}
.x27{left:63.866667pt;}
.x11{left:65.586667pt;}
.x36{left:67.826667pt;}
.x3e{left:70.066667pt;}
.x2f{left:72.146667pt;}
.x46{left:73.786667pt;}
.x29{left:75.546667pt;}
.x42{left:80.186667pt;}
.x47{left:86.880000pt;}
.x8{left:89.001333pt;}
.xb{left:90.121333pt;}
.x15{left:93.600000pt;}
.x49{left:94.906667pt;}
.x1{left:96.032000pt;}
.x3c{left:96.986667pt;}
.x56{left:98.225333pt;}
.x41{left:100.986667pt;}
.x54{left:103.505333pt;}
.x57{left:104.945333pt;}
.x4e{left:108.625333pt;}
.x48{left:109.920000pt;}
.x3f{left:111.706667pt;}
.x4b{left:112.800000pt;}
.x58{left:116.945333pt;}
.x60{left:119.866667pt;}
.x32{left:129.786667pt;}
.x3a{left:133.946667pt;}
.x37{left:135.386667pt;}
.x2e{left:136.826667pt;}
.x3{left:139.560000pt;}
.x3d{left:140.986667pt;}
.x30{left:142.106667pt;}
.x34{left:143.546667pt;}
.x2b{left:154.120000pt;}
.xa{left:157.160000pt;}
.xd{left:164.665333pt;}
.x5a{left:170.426667pt;}
.x1b{left:197.960000pt;}
.x17{left:204.826667pt;}
.xe{left:207.385333pt;}
.xf{left:218.265333pt;}
.x5f{left:224.040000pt;}
.x66{left:228.185333pt;}
.x16{left:234.586667pt;}
.x44{left:240.066667pt;}
.x59{left:282.306667pt;}
.x13{left:289.666667pt;}
.x63{left:337.506667pt;}
.x2d{left:348.066667pt;}
.x1d{left:353.026667pt;}
.x18{left:403.426667pt;}
.x10{left:406.986667pt;}
.x19{left:411.293333pt;}
.x5b{left:413.866667pt;}
.x4f{left:427.626667pt;}
.x64{left:432.906667pt;}
.x1f{left:493.226667pt;}
.x45{left:501.386667pt;}
.x51{left:518.026667pt;}
.x5d{left:533.066667pt;}
.x61{left:536.746667pt;}
.x6{left:588.133333pt;}
.x52{left:600.933333pt;}
.x12{left:604.732000pt;}
.x65{left:621.093333pt;}
}




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