
    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_863823eed9b145924e9a17af.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_af9f399178434adbefc49840.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.089355;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_d5d73709d0d48482acc27537.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_7870e4da9f61a19d8c4ff111.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.070312;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_0a4f66eaf88b7b828bc6d827.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.089355;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_7efba51babbfca79a14f74cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.070312;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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5c5edc7a2a83c7aec42fd03e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.961914;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2ccd4bf34e2fb337125f39af.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.961914;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_0f5d8991ddd9577858dea5cd.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7c63905b7716da8eff806530.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_97d75cb50c9702a534d6bde1.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250772,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251930,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v1{vertical-align:-29.520000px;}
.v3{vertical-align:-26.640000px;}
.v5{vertical-align:-23.760000px;}
.v9{vertical-align:-20.160000px;}
.v4{vertical-align:-18.000000px;}
.v8{vertical-align:-11.108700px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:32.400000px;}
.v6{vertical-align:40.320000px;}
.v7{vertical-align:55.230377px;}
.ls27{letter-spacing:-3.672000px;}
.ls37{letter-spacing:-1.947725px;}
.ls36{letter-spacing:-1.473754px;}
.ls1b{letter-spacing:-0.342600px;}
.ls1{letter-spacing:-0.295800px;}
.ls42{letter-spacing:-0.288000px;}
.ls33{letter-spacing:-0.257831px;}
.ls31{letter-spacing:-0.252000px;}
.ls38{letter-spacing:-0.236400px;}
.ls3{letter-spacing:-0.216000px;}
.ls3f{letter-spacing:-0.186600px;}
.ls35{letter-spacing:-0.125158px;}
.ls26{letter-spacing:-0.106800px;}
.ls25{letter-spacing:-0.097800px;}
.ls40{letter-spacing:-0.093600px;}
.ls3e{letter-spacing:-0.053280px;}
.ls12{letter-spacing:-0.045540px;}
.ls8{letter-spacing:-0.042600px;}
.ls34{letter-spacing:-0.037440px;}
.ls32{letter-spacing:-0.033960px;}
.ls1f{letter-spacing:-0.028080px;}
.ls0{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.005760px;}
.ls1c{letter-spacing:0.026460px;}
.lsa{letter-spacing:0.034560px;}
.ls41{letter-spacing:0.037440px;}
.ls39{letter-spacing:0.054720px;}
.ls29{letter-spacing:0.061920px;}
.ls20{letter-spacing:0.124200px;}
.ls1e{letter-spacing:0.124416px;}
.ls1d{letter-spacing:0.170400px;}
.lsf{letter-spacing:0.180288px;}
.ls22{letter-spacing:0.204480px;}
.ls3c{letter-spacing:0.205800px;}
.ls28{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.222000px;}
.ls16{letter-spacing:0.222048px;}
.ls2{letter-spacing:0.252000px;}
.lse{letter-spacing:0.270000px;}
.ls10{letter-spacing:0.280200px;}
.ls23{letter-spacing:0.288000px;}
.ls2f{letter-spacing:0.298200px;}
.ls21{letter-spacing:0.339600px;}
.lsd{letter-spacing:0.360000px;}
.ls3a{letter-spacing:0.396000px;}
.ls24{letter-spacing:0.648000px;}
.ls2d{letter-spacing:0.864466px;}
.ls2c{letter-spacing:1.146960px;}
.ls2e{letter-spacing:2.112946px;}
.ls3d{letter-spacing:16.453440px;}
.ls2a{letter-spacing:21.024000px;}
.ls19{letter-spacing:28.114560px;}
.ls18{letter-spacing:28.834560px;}
.ls1a{letter-spacing:29.014560px;}
.ls7{letter-spacing:29.871936px;}
.ls11{letter-spacing:52.750944px;}
.ls6{letter-spacing:61.869600px;}
.ls14{letter-spacing:64.365600px;}
.ls4{letter-spacing:64.413600px;}
.ls13{letter-spacing:64.416000px;}
.lsc{letter-spacing:64.440000px;}
.ls5{letter-spacing:64.464000px;}
.ls3b{letter-spacing:66.405600px;}
.ls17{letter-spacing:66.456000px;}
.lsb{letter-spacing:66.549600px;}
.ls9{letter-spacing:66.600000px;}
.ls2b{letter-spacing:67.824000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1f{word-spacing:-108.144000px;}
.ws20{word-spacing:-108.000000px;}
.ws1{word-spacing:-60.048000px;}
.ws48{word-spacing:-55.084032px;}
.ws12{word-spacing:-45.076032px;}
.ws1e{word-spacing:-35.068032px;}
.ws1d{word-spacing:-35.034072px;}
.ws3{word-spacing:-35.028000px;}
.ws2{word-spacing:-34.772232px;}
.ws16{word-spacing:-33.766320px;}
.ws10{word-spacing:-33.493212px;}
.ws11{word-spacing:-33.466752px;}
.ws17{word-spacing:-33.426720px;}
.ws34{word-spacing:-30.064032px;}
.ws6{word-spacing:-30.024000px;}
.wsd{word-spacing:-28.462752px;}
.ws9{word-spacing:-28.457280px;}
.wse{word-spacing:-28.422720px;}
.wsa{word-spacing:-28.417212px;}
.wsf{word-spacing:-28.080120px;}
.ws13{word-spacing:-27.662112px;}
.ws14{word-spacing:-27.622080px;}
.ws5{word-spacing:-26.618712px;}
.wsb{word-spacing:-25.340232px;}
.wsc{word-spacing:-25.282032px;}
.ws24{word-spacing:-23.418720px;}
.ws15{word-spacing:-23.390640px;}
.ws23{word-spacing:-23.381280px;}
.ws8{word-spacing:-23.318630px;}
.ws7{word-spacing:-23.272085px;}
.ws1c{word-spacing:-22.618080px;}
.ws25{word-spacing:-20.176361px;}
.ws18{word-spacing:-20.016000px;}
.ws43{word-spacing:-16.650720px;}
.ws1a{word-spacing:-16.613280px;}
.ws38{word-spacing:-16.506480px;}
.ws33{word-spacing:-15.612480px;}
.ws0{word-spacing:-13.410720px;}
.ws19{word-spacing:-11.111160px;}
.ws42{word-spacing:-2.241360px;}
.ws1b{word-spacing:-1.645560px;}
.ws3a{word-spacing:-1.580400px;}
.ws41{word-spacing:-1.116960px;}
.ws3f{word-spacing:-0.913680px;}
.ws47{word-spacing:-0.826560px;}
.ws37{word-spacing:-0.812448px;}
.ws45{word-spacing:-0.787680px;}
.ws39{word-spacing:-0.665520px;}
.ws3b{word-spacing:-0.612720px;}
.ws46{word-spacing:-0.485280px;}
.ws3c{word-spacing:-0.408240px;}
.ws3e{word-spacing:-0.199440px;}
.ws3d{word-spacing:-0.198240px;}
.ws44{word-spacing:-0.179280px;}
.ws22{word-spacing:-0.083808px;}
.ws21{word-spacing:-0.070393px;}
.ws40{word-spacing:-0.053280px;}
.ws4{word-spacing:0.000000px;}
.ws36{word-spacing:0.186552px;}
.ws35{word-spacing:0.264000px;}
.ws32{word-spacing:8.637120px;}
.ws2a{word-spacing:117.727037px;}
.ws2b{word-spacing:120.606412px;}
.ws29{word-spacing:154.080627px;}
.ws28{word-spacing:178.940416px;}
.ws27{word-spacing:178.961152px;}
.ws2c{word-spacing:195.739732px;}
.ws2e{word-spacing:199.381905px;}
.ws31{word-spacing:199.455963px;}
.ws26{word-spacing:231.764505px;}
.ws30{word-spacing:259.536254px;}
.ws2d{word-spacing:259.610312px;}
.ws2f{word-spacing:290.205152px;}
._e{margin-left:-1194.822000px;}
._1{margin-left:-12.312000px;}
._8{margin-left:-10.736160px;}
._b{margin-left:-9.242208px;}
._9{margin-left:-7.958400px;}
._3{margin-left:-6.871680px;}
._6{margin-left:-5.043024px;}
._2{margin-left:-3.674448px;}
._5{margin-left:-2.404800px;}
._0{margin-left:-1.013040px;}
._4{width:1.014000px;}
._7{width:2.877888px;}
._c{width:4.049424px;}
._29{width:11.899248px;}
._28{width:15.121104px;}
._2b{width:16.626096px;}
._2a{width:18.630000px;}
._2c{width:20.101968px;}
._d{width:22.012080px;}
._a{width:29.734320px;}
._10{width:31.768608px;}
._27{width:51.876000px;}
._21{width:136.977275px;}
._20{width:138.069494px;}
._1f{width:176.711270px;}
._14{width:199.564078px;}
._19{width:209.741417px;}
._1c{width:216.320111px;}
._1d{width:233.424803px;}
._16{width:238.444527px;}
._13{width:249.701343px;}
._24{width:288.281427px;}
._23{width:298.380679px;}
._18{width:300.346280px;}
._1a{width:310.104080px;}
._17{width:311.347518px;}
._1b{width:322.563679px;}
._12{width:339.226729px;}
._15{width:349.605582px;}
._22{width:378.107178px;}
._25{width:399.074478px;}
._1e{width:400.509722px;}
._11{width:552.816000px;}
._26{width:688.565091px;}
._f{width:816.711888px;}
.fca{color:rgb(112,48,160);}
.fc9{color:rgb(255,153,0);}
.fcc{color:rgb(0,119,205);}
.fc6{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,174,0);}
.fc3{color:rgb(252,1,40);}
.fc8{color:rgb(0,112,192);}
.fc1{color:rgb(0,99,166);}
.fcb{color:rgb(0,0,0);}
.fc7{color:rgb(51,102,255);}
.fc2{color:rgb(23,23,23);}
.fc0{color:rgb(255,255,255);}
.fs20{font-size:40.320000px;}
.fsc{font-size:41.856269px;}
.fs0{font-size:48.240000px;}
.fs27{font-size:50.174294px;}
.fs23{font-size:54.000000px;}
.fs28{font-size:56.160000px;}
.fs2a{font-size:56.880000px;}
.fs21{font-size:59.760000px;}
.fs2b{font-size:59.904000px;}
.fs25{font-size:70.392623px;}
.fs1e{font-size:72.000000px;}
.fs1f{font-size:72.144000px;}
.fs26{font-size:72.576838px;}
.fs1d{font-size:79.920000px;}
.fs1c{font-size:80.064000px;}
.fs22{font-size:81.360000px;}
.fsd{font-size:83.712538px;}
.fs24{font-size:83.808153px;}
.fs11{font-size:83.879963px;}
.fs1b{font-size:84.240000px;}
.fs1a{font-size:84.384000px;}
.fs29{font-size:85.680000px;}
.fs14{font-size:90.000000px;}
.fs15{font-size:90.144000px;}
.fsb{font-size:95.760000px;}
.fsa{font-size:95.904000px;}
.fs19{font-size:99.360000px;}
.fs18{font-size:99.504000px;}
.fs12{font-size:102.240000px;}
.fs13{font-size:102.384000px;}
.fs8{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fse{font-size:111.337675px;}
.fsf{font-size:111.505100px;}
.fs9{font-size:115.344000px;}
.fs5{font-size:120.240000px;}
.fs6{font-size:120.384000px;}
.fs3{font-size:126.000000px;}
.fs4{font-size:126.144000px;}
.fs17{font-size:162.000000px;}
.fs16{font-size:162.144000px;}
.fs2c{font-size:198.144000px;}
.fs1{font-size:216.000000px;}
.fs2{font-size:216.144000px;}
.fs10{font-size:335.017576px;}
.y0{bottom:0.000000px;}
.y7a{bottom:5.023932px;}
.y98{bottom:5.554350px;}
.y14{bottom:5.882627px;}
.y84{bottom:6.998482px;}
.y8a{bottom:9.775656px;}
.y38{bottom:23.616000px;}
.y9d{bottom:26.640000px;}
.y74{bottom:27.576000px;}
.y64{bottom:28.368000px;}
.y4f{bottom:28.584000px;}
.y78{bottom:29.258920px;}
.y97{bottom:29.299195px;}
.y83{bottom:30.697041px;}
.y13{bottom:34.328706px;}
.y6{bottom:34.560000px;}
.yc0{bottom:34.776000px;}
.yd6{bottom:45.756000px;}
.y7b{bottom:46.827252px;}
.ya5{bottom:47.016000px;}
.y42{bottom:50.328000px;}
.yb3{bottom:51.768000px;}
.y9c{bottom:51.840000px;}
.y96{bottom:52.997755px;}
.yab{bottom:53.100000px;}
.y63{bottom:53.712000px;}
.y4e{bottom:53.784000px;}
.y79{bottom:54.346884px;}
.y82{bottom:55.784188px;}
.y89{bottom:57.172775px;}
.y87{bottom:57.172781px;}
.y2c{bottom:57.816000px;}
.y57{bottom:57.960000px;}
.y60{bottom:58.500000px;}
.y7c{bottom:58.548981px;}
.y73{bottom:65.376000px;}
.yd5{bottom:65.556000px;}
.y5{bottom:68.616000px;}
.y76{bottom:70.308000px;}
.y37{bottom:72.396000px;}
.y19{bottom:74.276467px;}
.y95{bottom:76.696314px;}
.y9b{bottom:77.040000px;}
.y4d{bottom:78.984000px;}
.y12{bottom:81.756000px;}
.ybe{bottom:82.548000px;}
.y2b{bottom:91.476000px;}
.y5f{bottom:94.500000px;}
.ydb{bottom:94.608000px;}
.yd4{bottom:97.236000px;}
.y41{bottom:99.108000px;}
.y94{bottom:100.394874px;}
.y4{bottom:102.636000px;}
.y75{bottom:102.744000px;}
.y72{bottom:103.212000px;}
.y4c{bottom:104.184000px;}
.yc3{bottom:106.128000px;}
.y8d{bottom:107.337000px;}
.y9e{bottom:115.596000px;}
.ybd{bottom:116.208000px;}
.yd3{bottom:117.036000px;}
.ya4{bottom:117.072000px;}
.y11{bottom:117.396000px;}
.y36{bottom:121.212000px;}
.y93{bottom:124.093433px;}
.y80{bottom:126.972000px;}
.yda{bottom:127.008000px;}
.y4b{bottom:129.420000px;}
.yb2{bottom:134.568000px;}
.y2a{bottom:136.152000px;}
.yd2{bottom:136.836000px;}
.ya3{bottom:143.892000px;}
.y92{bottom:147.791992px;}
.y40{bottom:147.924000px;}
.y50{bottom:150.150000px;}
.y7f{bottom:152.175000px;}
.y62{bottom:154.980000px;}
.y20{bottom:156.691461px;}
.y35{bottom:157.935000px;}
.yd9{bottom:159.405000px;}
.ybc{bottom:161.970000px;}
.y10{bottom:165.090000px;}
.yd1{bottom:168.690000px;}
.y5e{bottom:169.410000px;}
.y91{bottom:171.490552px;}
.y29{bottom:171.795000px;}
.y1d{bottom:172.680555px;}
.ya2{bottom:176.325000px;}
.y7e{bottom:180.180000px;}
.ya9{bottom:180.690000px;}
.y49{bottom:184.710000px;}
.yd0{bottom:188.535000px;}
.yd8{bottom:191.850000px;}
.y1f{bottom:191.885607px;}
.y1b{bottom:194.152821px;}
.yc2{bottom:194.865000px;}
.y90{bottom:195.179854px;}
.ybb{bottom:195.630000px;}
.y3f{bottom:196.530000px;}
.y51{bottom:197.430000px;}
.y77{bottom:199.140000px;}
.yf{bottom:200.775000px;}
.y28{bottom:201.495000px;}
.y34{bottom:205.455000px;}
.ya8{bottom:205.890000px;}
.yad{bottom:207.030000px;}
.ycf{bottom:208.335000px;}
.y7d{bottom:210.705000px;}
.y8f{bottom:218.878413px;}
.y5d{bottom:219.810000px;}
.yba{bottom:229.290000px;}
.y27{bottom:231.195000px;}
.y1c{bottom:231.526981px;}
.ya1{bottom:235.515000px;}
.yac{bottom:239.430000px;}
.yce{bottom:240.195000px;}
.y8e{bottom:242.576973px;}
.y33{bottom:244.005000px;}
.y48{bottom:244.110000px;}
.yb1{bottom:245.160000px;}
.y3e{bottom:245.310000px;}
.y45{bottom:248.070000px;}
.ye{bottom:248.475000px;}
.y1a{bottom:254.129366px;}
.y3{bottom:258.765000px;}
.y61{bottom:259.560000px;}
.ycd{bottom:259.995000px;}
.ya0{bottom:262.335000px;}
.y26{bottom:267.045000px;}
.yc1{bottom:269.895000px;}
.y5c{bottom:270.255000px;}
.y47{bottom:273.810000px;}
.yb9{bottom:274.860000px;}
.y1e{bottom:279.330328px;}
.y32{bottom:282.345000px;}
.ycc{bottom:291.675000px;}
.y3d{bottom:294.120000px;}
.y9f{bottom:294.735000px;}
.yd{bottom:295.095000px;}
.y44{bottom:296.670000px;}
.y25{bottom:296.745000px;}
.y56{bottom:301.755000px;}
.y46{bottom:303.555000px;}
.y68{bottom:304.560000px;}
.ycb{bottom:311.505000px;}
.y31{bottom:314.745000px;}
.y2{bottom:317.085000px;}
.yd7{bottom:320.505000px;}
.yb8{bottom:320.580000px;}
.y5b{bottom:320.655000px;}
.y16{bottom:324.779260px;}
.y6b{bottom:325.440000px;}
.y67{bottom:326.190000px;}
.yc{bottom:326.805000px;}
.y3c{bottom:330.840000px;}
.yca{bottom:331.305000px;}
.y24{bottom:333.285000px;}
.y55{bottom:338.475000px;}
.y6a{bottom:347.070000px;}
.y66{bottom:347.790000px;}
.y15{bottom:348.149010px;}
.y30{bottom:354.165000px;}
.yb7{bottom:354.240000px;}
.ya7{bottom:355.245000px;}
.yb0{bottom:355.755000px;}
.yc9{bottom:363.165000px;}
.yb{bottom:365.505000px;}
.y86{bottom:369.446760px;}
.y8c{bottom:369.446762px;}
.y8b{bottom:369.446763px;}
.y88{bottom:369.446764px;}
.y85{bottom:369.446766px;}
.y81{bottom:369.446767px;}
.y69{bottom:374.145000px;}
.y65{bottom:377.565000px;}
.y6d{bottom:378.465000px;}
.y23{bottom:379.050000px;}
.y3b{bottom:379.440000px;}
.ya6{bottom:382.065000px;}
.yc8{bottom:382.965000px;}
.y54{bottom:387.105000px;}
.yb6{bottom:387.930000px;}
.y18{bottom:388.243828px;}
.y2f{bottom:390.930000px;}
.ya{bottom:401.145000px;}
.y5a{bottom:404.205000px;}
.y6c{bottom:410.910000px;}
.yc7{bottom:414.825000px;}
.y3a{bottom:416.190000px;}
.y17{bottom:418.380341px;}
.y43{bottom:423.000000px;}
.y6f{bottom:423.975000px;}
.y71{bottom:424.365000px;}
.y22{bottom:424.770000px;}
.yb5{bottom:433.650000px;}
.yc6{bottom:434.670000px;}
.y53{bottom:435.885000px;}
.y2e{bottom:439.710000px;}
.y59{bottom:440.205000px;}
.yaf{bottom:447.765000px;}
.y9{bottom:448.710000px;}
.yc5{bottom:454.470000px;}
.y21{bottom:458.430000px;}
.y1{bottom:460.410000px;}
.yaa{bottom:460.725000px;}
.y6e{bottom:461.805000px;}
.y9a{bottom:461.910000px;}
.y70{bottom:462.165000px;}
.y39{bottom:464.970000px;}
.yb4{bottom:467.310000px;}
.y52{bottom:472.605000px;}
.ybf{bottom:475.890000px;}
.y58{bottom:476.205000px;}
.y2d{bottom:476.430000px;}
.yae{bottom:483.810000px;}
.y4a{bottom:484.635000px;}
.yc4{bottom:486.150000px;}
.y99{bottom:487.290000px;}
.y8{bottom:539.925000px;}
.y7{bottom:572.325000px;}
.h24{height:36.165937px;}
.he{height:36.603798px;}
.h39{height:41.479805px;}
.h1{height:43.269961px;}
.h3c{height:53.603086px;}
.h3d{height:53.732250px;}
.h36{height:54.105469px;}
.h2d{height:61.055549px;}
.h26{height:62.964844px;}
.h27{height:63.090773px;}
.h30{height:63.469295px;}
.h22{height:64.582031px;}
.h23{height:64.711195px;}
.h33{height:65.099439px;}
.hf{height:73.207595px;}
.h13{height:73.354010px;}
.h1d{height:73.794797px;}
.h2f{height:75.307728px;}
.h31{height:75.307737px;}
.h1e{height:75.560977px;}
.h37{height:76.852617px;}
.h17{height:77.387695px;}
.h16{height:77.511516px;}
.h2a{height:81.158203px;}
.h29{height:81.266414px;}
.hb{height:82.340508px;}
.h3b{height:83.743242px;}
.h34{height:83.787539px;}
.h3a{height:83.869172px;}
.h35{height:83.930766px;}
.h1c{height:86.891484px;}
.h1b{height:87.017414px;}
.h25{height:87.543633px;}
.h18{height:89.410078px;}
.h14{height:91.706484px;}
.h15{height:91.835648px;}
.h2c{height:91.978865px;}
.hc{height:94.447266px;}
.h38{height:94.573195px;}
.h9{height:96.873047px;}
.h21{height:96.982031px;}
.h8{height:97.002211px;}
.h10{height:97.366102px;}
.h11{height:97.512517px;}
.ha{height:103.460414px;}
.h6{height:105.151289px;}
.h7{height:105.277219px;}
.h2e{height:106.512503px;}
.h20{height:107.851992px;}
.h1f{height:107.981156px;}
.h28{height:110.188477px;}
.h2b{height:110.314406px;}
.h4{height:113.018555px;}
.h5{height:113.147719px;}
.h1a{height:141.670898px;}
.h19{height:141.796828px;}
.h3e{height:173.279250px;}
.h2{height:188.894531px;}
.h3{height:189.020461px;}
.h12{height:292.976796px;}
.h32{height:338.805000px;}
.hd{height:470.883024px;}
.h0{height:607.500000px;}
.w7{width:83.711656px;}
.w4{width:93.461765px;}
.w8{width:96.247511px;}
.w5{width:96.293940px;}
.w3{width:237.995296px;}
.w2{width:627.854194px;}
.w6{width:837.097976px;}
.w9{width:838.490839px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x54{left:4.178611px;}
.x46{left:5.571492px;}
.x4a{left:7.001508px;}
.x37{left:11.771984px;}
.x48{left:20.939523px;}
.x4c{left:22.323110px;}
.x3c{left:24.983984px;}
.x66{left:26.747984px;}
.x4b{left:29.287473px;}
.x41{left:31.064814px;}
.x47{left:32.082504px;}
.x50{left:33.466091px;}
.x29{left:41.399984px;}
.x4{left:42.515984px;}
.xd{left:45.601312px;}
.x22{left:46.979984px;}
.x2a{left:53.315984px;}
.x68{left:54.683984px;}
.x67{left:56.447984px;}
.x20{left:68.075984px;}
.x3{left:82.259984px;}
.xf{left:84.821275px;}
.x3b{left:89.423984px;}
.x36{left:91.007984px;}
.x1{left:95.903984px;}
.x3e{left:99.479655px;}
.x1c{left:100.799984px;}
.x2{left:104.399984px;}
.x17{left:106.775984px;}
.x30{left:113.867984px;}
.x10{left:119.813684px;}
.xc{left:121.362381px;}
.x1d{left:126.395984px;}
.x5{left:131.003984px;}
.x18{left:132.371984px;}
.x62{left:142.379984px;}
.x63{left:144.827984px;}
.x1e{left:147.635984px;}
.x19{left:153.614984px;}
.x6{left:156.569984px;}
.x1f{left:173.189984px;}
.x7{left:177.809984px;}
.x1a{left:179.174984px;}
.x1b{left:183.314984px;}
.x8{left:203.369984px;}
.x14{left:206.834269px;}
.x40{left:214.901514px;}
.x3f{left:220.769669px;}
.x9{left:226.108312px;}
.x38{left:228.269984px;}
.x15{left:244.749688px;}
.x16{left:250.818947px;}
.x61{left:284.834984px;}
.x5b{left:288.104984px;}
.xe{left:292.606134px;}
.x49{left:308.826577px;}
.xb{left:311.092939px;}
.x4d{left:312.504936px;}
.x32{left:317.444984px;}
.x33{left:342.899984px;}
.x28{left:358.994984px;}
.x25{left:372.674984px;}
.x12{left:379.825536px;}
.x5d{left:381.494984px;}
.xa{left:397.283380px;}
.x11{left:400.126153px;}
.x26{left:405.254984px;}
.x64{left:408.449984px;}
.x27{left:412.664984px;}
.x13{left:426.705317px;}
.x5a{left:432.329984px;}
.x57{left:436.139984px;}
.x21{left:451.874984px;}
.x65{left:456.629984px;}
.x5c{left:462.134984px;}
.x59{left:466.709984px;}
.x56{left:482.399984px;}
.x4e{left:491.608629px;}
.x58{left:494.249984px;}
.x34{left:549.929984px;}
.x3a{left:555.734984px;}
.x60{left:568.439984px;}
.x4f{left:576.722441px;}
.x2e{left:613.769984px;}
.x52{left:671.086103px;}
.x51{left:674.390680px;}
.x23{left:685.184984px;}
.x39{left:691.049984px;}
.x2f{left:692.069984px;}
.x5e{left:703.439984px;}
.x2b{left:708.119984px;}
.x2c{left:751.214984px;}
.x5f{left:762.119984px;}
.x35{left:767.489984px;}
.x24{left:773.564984px;}
.x3d{left:785.340000px;}
.x42{left:812.339984px;}
.x55{left:814.574984px;}
.x45{left:851.939984px;}
.x53{left:857.154160px;}
.x44{left:860.219984px;}
.x43{left:893.624984px;}
.x2d{left:906.689984px;}
.x31{left:946.289984px;}
@media print{
.v1{vertical-align:-26.240000pt;}
.v3{vertical-align:-23.680000pt;}
.v5{vertical-align:-21.120000pt;}
.v9{vertical-align:-17.920000pt;}
.v4{vertical-align:-16.000000pt;}
.v8{vertical-align:-9.874400pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:28.800000pt;}
.v6{vertical-align:35.840000pt;}
.v7{vertical-align:49.093669pt;}
.ls27{letter-spacing:-3.264000pt;}
.ls37{letter-spacing:-1.731311pt;}
.ls36{letter-spacing:-1.310004pt;}
.ls1b{letter-spacing:-0.304533pt;}
.ls1{letter-spacing:-0.262933pt;}
.ls42{letter-spacing:-0.256000pt;}
.ls33{letter-spacing:-0.229183pt;}
.ls31{letter-spacing:-0.224000pt;}
.ls38{letter-spacing:-0.210133pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls3f{letter-spacing:-0.165867pt;}
.ls35{letter-spacing:-0.111252pt;}
.ls26{letter-spacing:-0.094933pt;}
.ls25{letter-spacing:-0.086933pt;}
.ls40{letter-spacing:-0.083200pt;}
.ls3e{letter-spacing:-0.047360pt;}
.ls12{letter-spacing:-0.040480pt;}
.ls8{letter-spacing:-0.037867pt;}
.ls34{letter-spacing:-0.033280pt;}
.ls32{letter-spacing:-0.030187pt;}
.ls1f{letter-spacing:-0.024960pt;}
.ls0{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.005120pt;}
.ls1c{letter-spacing:0.023520pt;}
.lsa{letter-spacing:0.030720pt;}
.ls41{letter-spacing:0.033280pt;}
.ls39{letter-spacing:0.048640pt;}
.ls29{letter-spacing:0.055040pt;}
.ls20{letter-spacing:0.110400pt;}
.ls1e{letter-spacing:0.110592pt;}
.ls1d{letter-spacing:0.151467pt;}
.lsf{letter-spacing:0.160256pt;}
.ls22{letter-spacing:0.181760pt;}
.ls3c{letter-spacing:0.182933pt;}
.ls28{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.197333pt;}
.ls16{letter-spacing:0.197376pt;}
.ls2{letter-spacing:0.224000pt;}
.lse{letter-spacing:0.240000pt;}
.ls10{letter-spacing:0.249067pt;}
.ls23{letter-spacing:0.256000pt;}
.ls2f{letter-spacing:0.265067pt;}
.ls21{letter-spacing:0.301867pt;}
.lsd{letter-spacing:0.320000pt;}
.ls3a{letter-spacing:0.352000pt;}
.ls24{letter-spacing:0.576000pt;}
.ls2d{letter-spacing:0.768415pt;}
.ls2c{letter-spacing:1.019520pt;}
.ls2e{letter-spacing:1.878174pt;}
.ls3d{letter-spacing:14.625280pt;}
.ls2a{letter-spacing:18.688000pt;}
.ls19{letter-spacing:24.990720pt;}
.ls18{letter-spacing:25.630720pt;}
.ls1a{letter-spacing:25.790720pt;}
.ls7{letter-spacing:26.552832pt;}
.ls11{letter-spacing:46.889728pt;}
.ls6{letter-spacing:54.995200pt;}
.ls14{letter-spacing:57.213867pt;}
.ls4{letter-spacing:57.256533pt;}
.ls13{letter-spacing:57.258667pt;}
.lsc{letter-spacing:57.280000pt;}
.ls5{letter-spacing:57.301333pt;}
.ls3b{letter-spacing:59.027200pt;}
.ls17{letter-spacing:59.072000pt;}
.lsb{letter-spacing:59.155200pt;}
.ls9{letter-spacing:59.200000pt;}
.ls2b{letter-spacing:60.288000pt;}
.ws1f{word-spacing:-96.128000pt;}
.ws20{word-spacing:-96.000000pt;}
.ws1{word-spacing:-53.376000pt;}
.ws48{word-spacing:-48.963584pt;}
.ws12{word-spacing:-40.067584pt;}
.ws1e{word-spacing:-31.171584pt;}
.ws1d{word-spacing:-31.141397pt;}
.ws3{word-spacing:-31.136000pt;}
.ws2{word-spacing:-30.908651pt;}
.ws16{word-spacing:-30.014507pt;}
.ws10{word-spacing:-29.771744pt;}
.ws11{word-spacing:-29.748224pt;}
.ws17{word-spacing:-29.712640pt;}
.ws34{word-spacing:-26.723584pt;}
.ws6{word-spacing:-26.688000pt;}
.wsd{word-spacing:-25.300224pt;}
.ws9{word-spacing:-25.295360pt;}
.wse{word-spacing:-25.264640pt;}
.wsa{word-spacing:-25.259744pt;}
.wsf{word-spacing:-24.960107pt;}
.ws13{word-spacing:-24.588544pt;}
.ws14{word-spacing:-24.552960pt;}
.ws5{word-spacing:-23.661077pt;}
.wsb{word-spacing:-22.524651pt;}
.wsc{word-spacing:-22.472917pt;}
.ws24{word-spacing:-20.816640pt;}
.ws15{word-spacing:-20.791680pt;}
.ws23{word-spacing:-20.783360pt;}
.ws8{word-spacing:-20.727671pt;}
.ws7{word-spacing:-20.686298pt;}
.ws1c{word-spacing:-20.104960pt;}
.ws25{word-spacing:-17.934543pt;}
.ws18{word-spacing:-17.792000pt;}
.ws43{word-spacing:-14.800640pt;}
.ws1a{word-spacing:-14.767360pt;}
.ws38{word-spacing:-14.672427pt;}
.ws33{word-spacing:-13.877760pt;}
.ws0{word-spacing:-11.920640pt;}
.ws19{word-spacing:-9.876587pt;}
.ws42{word-spacing:-1.992320pt;}
.ws1b{word-spacing:-1.462720pt;}
.ws3a{word-spacing:-1.404800pt;}
.ws41{word-spacing:-0.992853pt;}
.ws3f{word-spacing:-0.812160pt;}
.ws47{word-spacing:-0.734720pt;}
.ws37{word-spacing:-0.722176pt;}
.ws45{word-spacing:-0.700160pt;}
.ws39{word-spacing:-0.591573pt;}
.ws3b{word-spacing:-0.544640pt;}
.ws46{word-spacing:-0.431360pt;}
.ws3c{word-spacing:-0.362880pt;}
.ws3e{word-spacing:-0.177280pt;}
.ws3d{word-spacing:-0.176213pt;}
.ws44{word-spacing:-0.159360pt;}
.ws22{word-spacing:-0.074496pt;}
.ws21{word-spacing:-0.062571pt;}
.ws40{word-spacing:-0.047360pt;}
.ws4{word-spacing:0.000000pt;}
.ws36{word-spacing:0.165824pt;}
.ws35{word-spacing:0.234667pt;}
.ws32{word-spacing:7.677440pt;}
.ws2a{word-spacing:104.646255pt;}
.ws2b{word-spacing:107.205700pt;}
.ws29{word-spacing:136.960558pt;}
.ws28{word-spacing:159.058148pt;}
.ws27{word-spacing:159.076580pt;}
.ws2c{word-spacing:173.990873pt;}
.ws2e{word-spacing:177.228360pt;}
.ws31{word-spacing:177.294189pt;}
.ws26{word-spacing:206.012893pt;}
.ws30{word-spacing:230.698893pt;}
.ws2d{word-spacing:230.764722pt;}
.ws2f{word-spacing:257.960135pt;}
._e{margin-left:-1062.064000pt;}
._1{margin-left:-10.944000pt;}
._8{margin-left:-9.543253pt;}
._b{margin-left:-8.215296pt;}
._9{margin-left:-7.074133pt;}
._3{margin-left:-6.108160pt;}
._6{margin-left:-4.482688pt;}
._2{margin-left:-3.266176pt;}
._5{margin-left:-2.137600pt;}
._0{margin-left:-0.900480pt;}
._4{width:0.901333pt;}
._7{width:2.558123pt;}
._c{width:3.599488pt;}
._29{width:10.577109pt;}
._28{width:13.440981pt;}
._2b{width:14.778752pt;}
._2a{width:16.560000pt;}
._2c{width:17.868416pt;}
._d{width:19.566293pt;}
._a{width:26.430507pt;}
._10{width:28.238763pt;}
._27{width:46.112000pt;}
._21{width:121.757578pt;}
._20{width:122.728439pt;}
._1f{width:157.076685pt;}
._14{width:177.390292pt;}
._19{width:186.436815pt;}
._1c{width:192.284543pt;}
._1d{width:207.488714pt;}
._16{width:211.950691pt;}
._13{width:221.956749pt;}
._24{width:256.250157pt;}
._23{width:265.227270pt;}
._18{width:266.974471pt;}
._1a{width:275.648071pt;}
._17{width:276.753350pt;}
._1b{width:286.723271pt;}
._12{width:301.534870pt;}
._15{width:310.760518pt;}
._22{width:336.095269pt;}
._25{width:354.732870pt;}
._1e{width:356.008642pt;}
._11{width:491.392000pt;}
._26{width:612.057859pt;}
._f{width:725.966123pt;}
.fs20{font-size:35.840000pt;}
.fsc{font-size:37.205572pt;}
.fs0{font-size:42.880000pt;}
.fs27{font-size:44.599372pt;}
.fs23{font-size:48.000000pt;}
.fs28{font-size:49.920000pt;}
.fs2a{font-size:50.560000pt;}
.fs21{font-size:53.120000pt;}
.fs2b{font-size:53.248000pt;}
.fs25{font-size:62.571221pt;}
.fs1e{font-size:64.000000pt;}
.fs1f{font-size:64.128000pt;}
.fs26{font-size:64.512745pt;}
.fs1d{font-size:71.040000pt;}
.fs1c{font-size:71.168000pt;}
.fs22{font-size:72.320000pt;}
.fsd{font-size:74.411145pt;}
.fs24{font-size:74.496136pt;}
.fs11{font-size:74.559967pt;}
.fs1b{font-size:74.880000pt;}
.fs1a{font-size:75.008000pt;}
.fs29{font-size:76.160000pt;}
.fs14{font-size:80.000000pt;}
.fs15{font-size:80.128000pt;}
.fsb{font-size:85.120000pt;}
.fsa{font-size:85.248000pt;}
.fs19{font-size:88.320000pt;}
.fs18{font-size:88.448000pt;}
.fs12{font-size:90.880000pt;}
.fs13{font-size:91.008000pt;}
.fs8{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fse{font-size:98.966822pt;}
.fsf{font-size:99.115645pt;}
.fs9{font-size:102.528000pt;}
.fs5{font-size:106.880000pt;}
.fs6{font-size:107.008000pt;}
.fs3{font-size:112.000000pt;}
.fs4{font-size:112.128000pt;}
.fs17{font-size:144.000000pt;}
.fs16{font-size:144.128000pt;}
.fs2c{font-size:176.128000pt;}
.fs1{font-size:192.000000pt;}
.fs2{font-size:192.128000pt;}
.fs10{font-size:297.793401pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:4.465717pt;}
.y98{bottom:4.937200pt;}
.y14{bottom:5.229001pt;}
.y84{bottom:6.220873pt;}
.y8a{bottom:8.689472pt;}
.y38{bottom:20.992000pt;}
.y9d{bottom:23.680000pt;}
.y74{bottom:24.512000pt;}
.y64{bottom:25.216000pt;}
.y4f{bottom:25.408000pt;}
.y78{bottom:26.007929pt;}
.y97{bottom:26.043729pt;}
.y83{bottom:27.286259pt;}
.y13{bottom:30.514405pt;}
.y6{bottom:30.720000pt;}
.yc0{bottom:30.912000pt;}
.yd6{bottom:40.672000pt;}
.y7b{bottom:41.624224pt;}
.ya5{bottom:41.792000pt;}
.y42{bottom:44.736000pt;}
.yb3{bottom:46.016000pt;}
.y9c{bottom:46.080000pt;}
.y96{bottom:47.109115pt;}
.yab{bottom:47.200000pt;}
.y63{bottom:47.744000pt;}
.y4e{bottom:47.808000pt;}
.y79{bottom:48.308341pt;}
.y82{bottom:49.585945pt;}
.y89{bottom:50.820245pt;}
.y87{bottom:50.820250pt;}
.y2c{bottom:51.392000pt;}
.y57{bottom:51.520000pt;}
.y60{bottom:52.000000pt;}
.y7c{bottom:52.043538pt;}
.y73{bottom:58.112000pt;}
.yd5{bottom:58.272000pt;}
.y5{bottom:60.992000pt;}
.y76{bottom:62.496000pt;}
.y37{bottom:64.352000pt;}
.y19{bottom:66.023527pt;}
.y95{bottom:68.174502pt;}
.y9b{bottom:68.480000pt;}
.y4d{bottom:70.208000pt;}
.y12{bottom:72.672000pt;}
.ybe{bottom:73.376000pt;}
.y2b{bottom:81.312000pt;}
.y5f{bottom:84.000000pt;}
.ydb{bottom:84.096000pt;}
.yd4{bottom:86.432000pt;}
.y41{bottom:88.096000pt;}
.y94{bottom:89.239888pt;}
.y4{bottom:91.232000pt;}
.y75{bottom:91.328000pt;}
.y72{bottom:91.744000pt;}
.y4c{bottom:92.608000pt;}
.yc3{bottom:94.336000pt;}
.y8d{bottom:95.410667pt;}
.y9e{bottom:102.752000pt;}
.ybd{bottom:103.296000pt;}
.yd3{bottom:104.032000pt;}
.ya4{bottom:104.064000pt;}
.y11{bottom:104.352000pt;}
.y36{bottom:107.744000pt;}
.y93{bottom:110.305274pt;}
.y80{bottom:112.864000pt;}
.yda{bottom:112.896000pt;}
.y4b{bottom:115.040000pt;}
.yb2{bottom:119.616000pt;}
.y2a{bottom:121.024000pt;}
.yd2{bottom:121.632000pt;}
.ya3{bottom:127.904000pt;}
.y92{bottom:131.370660pt;}
.y40{bottom:131.488000pt;}
.y50{bottom:133.466667pt;}
.y7f{bottom:135.266667pt;}
.y62{bottom:137.760000pt;}
.y20{bottom:139.281298pt;}
.y35{bottom:140.386667pt;}
.yd9{bottom:141.693333pt;}
.ybc{bottom:143.973333pt;}
.y10{bottom:146.746667pt;}
.yd1{bottom:149.946667pt;}
.y5e{bottom:150.586667pt;}
.y91{bottom:152.436046pt;}
.y29{bottom:152.706667pt;}
.y1d{bottom:153.493827pt;}
.ya2{bottom:156.733333pt;}
.y7e{bottom:160.160000pt;}
.ya9{bottom:160.613333pt;}
.y49{bottom:164.186667pt;}
.yd0{bottom:167.586667pt;}
.yd8{bottom:170.533333pt;}
.y1f{bottom:170.564984pt;}
.y1b{bottom:172.580286pt;}
.yc2{bottom:173.213333pt;}
.y90{bottom:173.493203pt;}
.ybb{bottom:173.893333pt;}
.y3f{bottom:174.693333pt;}
.y51{bottom:175.493333pt;}
.y77{bottom:177.013333pt;}
.yf{bottom:178.466667pt;}
.y28{bottom:179.106667pt;}
.y34{bottom:182.626667pt;}
.ya8{bottom:183.013333pt;}
.yad{bottom:184.026667pt;}
.ycf{bottom:185.186667pt;}
.y7d{bottom:187.293333pt;}
.y8f{bottom:194.558590pt;}
.y5d{bottom:195.386667pt;}
.yba{bottom:203.813333pt;}
.y27{bottom:205.506667pt;}
.y1c{bottom:205.801761pt;}
.ya1{bottom:209.346667pt;}
.yac{bottom:212.826667pt;}
.yce{bottom:213.506667pt;}
.y8e{bottom:215.623976pt;}
.y33{bottom:216.893333pt;}
.y48{bottom:216.986667pt;}
.yb1{bottom:217.920000pt;}
.y3e{bottom:218.053333pt;}
.y45{bottom:220.506667pt;}
.ye{bottom:220.866667pt;}
.y1a{bottom:225.892770pt;}
.y3{bottom:230.013333pt;}
.y61{bottom:230.720000pt;}
.ycd{bottom:231.106667pt;}
.ya0{bottom:233.186667pt;}
.y26{bottom:237.373333pt;}
.yc1{bottom:239.906667pt;}
.y5c{bottom:240.226667pt;}
.y47{bottom:243.386667pt;}
.yb9{bottom:244.320000pt;}
.y1e{bottom:248.293625pt;}
.y32{bottom:250.973333pt;}
.ycc{bottom:259.266667pt;}
.y3d{bottom:261.440000pt;}
.y9f{bottom:261.986667pt;}
.yd{bottom:262.306667pt;}
.y44{bottom:263.706667pt;}
.y25{bottom:263.773333pt;}
.y56{bottom:268.226667pt;}
.y46{bottom:269.826667pt;}
.y68{bottom:270.720000pt;}
.ycb{bottom:276.893333pt;}
.y31{bottom:279.773333pt;}
.y2{bottom:281.853333pt;}
.yd7{bottom:284.893333pt;}
.yb8{bottom:284.960000pt;}
.y5b{bottom:285.026667pt;}
.y16{bottom:288.692676pt;}
.y6b{bottom:289.280000pt;}
.y67{bottom:289.946667pt;}
.yc{bottom:290.493333pt;}
.y3c{bottom:294.080000pt;}
.yca{bottom:294.493333pt;}
.y24{bottom:296.253333pt;}
.y55{bottom:300.866667pt;}
.y6a{bottom:308.506667pt;}
.y66{bottom:309.146667pt;}
.y15{bottom:309.465787pt;}
.y30{bottom:314.813333pt;}
.yb7{bottom:314.880000pt;}
.ya7{bottom:315.773333pt;}
.yb0{bottom:316.226667pt;}
.yc9{bottom:322.813333pt;}
.yb{bottom:324.893333pt;}
.y86{bottom:328.397120pt;}
.y8c{bottom:328.397121pt;}
.y8b{bottom:328.397122pt;}
.y88{bottom:328.397124pt;}
.y85{bottom:328.397125pt;}
.y81{bottom:328.397126pt;}
.y69{bottom:332.573333pt;}
.y65{bottom:335.613333pt;}
.y6d{bottom:336.413333pt;}
.y23{bottom:336.933333pt;}
.y3b{bottom:337.280000pt;}
.ya6{bottom:339.613333pt;}
.yc8{bottom:340.413333pt;}
.y54{bottom:344.093333pt;}
.yb6{bottom:344.826667pt;}
.y18{bottom:345.105625pt;}
.y2f{bottom:347.493333pt;}
.ya{bottom:356.573333pt;}
.y5a{bottom:359.293333pt;}
.y6c{bottom:365.253333pt;}
.yc7{bottom:368.733333pt;}
.y3a{bottom:369.946667pt;}
.y17{bottom:371.893637pt;}
.y43{bottom:376.000000pt;}
.y6f{bottom:376.866667pt;}
.y71{bottom:377.213333pt;}
.y22{bottom:377.573333pt;}
.yb5{bottom:385.466667pt;}
.yc6{bottom:386.373333pt;}
.y53{bottom:387.453333pt;}
.y2e{bottom:390.853333pt;}
.y59{bottom:391.293333pt;}
.yaf{bottom:398.013333pt;}
.y9{bottom:398.853333pt;}
.yc5{bottom:403.973333pt;}
.y21{bottom:407.493333pt;}
.y1{bottom:409.253333pt;}
.yaa{bottom:409.533333pt;}
.y6e{bottom:410.493333pt;}
.y9a{bottom:410.586667pt;}
.y70{bottom:410.813333pt;}
.y39{bottom:413.306667pt;}
.yb4{bottom:415.386667pt;}
.y52{bottom:420.093333pt;}
.ybf{bottom:423.013333pt;}
.y58{bottom:423.293333pt;}
.y2d{bottom:423.493333pt;}
.yae{bottom:430.053333pt;}
.y4a{bottom:430.786667pt;}
.yc4{bottom:432.133333pt;}
.y99{bottom:433.146667pt;}
.y8{bottom:479.933333pt;}
.y7{bottom:508.733333pt;}
.h24{height:32.147500pt;}
.he{height:32.536709pt;}
.h39{height:36.870937pt;}
.h1{height:38.462187pt;}
.h3c{height:47.647188pt;}
.h3d{height:47.762000pt;}
.h36{height:48.093750pt;}
.h2d{height:54.271599pt;}
.h26{height:55.968750pt;}
.h27{height:56.080687pt;}
.h30{height:56.417152pt;}
.h22{height:57.406250pt;}
.h23{height:57.521062pt;}
.h33{height:57.866168pt;}
.hf{height:65.073418pt;}
.h13{height:65.203565pt;}
.h1d{height:65.595375pt;}
.h2f{height:66.940203pt;}
.h31{height:66.940211pt;}
.h1e{height:67.165312pt;}
.h37{height:68.313437pt;}
.h17{height:68.789062pt;}
.h16{height:68.899125pt;}
.h2a{height:72.140625pt;}
.h29{height:72.236812pt;}
.hb{height:73.191563pt;}
.h3b{height:74.438437pt;}
.h34{height:74.477812pt;}
.h3a{height:74.550375pt;}
.h35{height:74.605125pt;}
.h1c{height:77.236875pt;}
.h1b{height:77.348812pt;}
.h25{height:77.816562pt;}
.h18{height:79.475625pt;}
.h14{height:81.516875pt;}
.h15{height:81.631687pt;}
.h2c{height:81.758991pt;}
.hc{height:83.953125pt;}
.h38{height:84.065062pt;}
.h9{height:86.109375pt;}
.h21{height:86.206250pt;}
.h8{height:86.224187pt;}
.h10{height:86.547646pt;}
.h11{height:86.677793pt;}
.ha{height:91.964812pt;}
.h6{height:93.467812pt;}
.h7{height:93.579750pt;}
.h2e{height:94.677781pt;}
.h20{height:95.868437pt;}
.h1f{height:95.983250pt;}
.h28{height:97.945312pt;}
.h2b{height:98.057250pt;}
.h4{height:100.460938pt;}
.h5{height:100.575750pt;}
.h1a{height:125.929688pt;}
.h19{height:126.041625pt;}
.h3e{height:154.026000pt;}
.h2{height:167.906250pt;}
.h3{height:168.018188pt;}
.h12{height:260.423819pt;}
.h32{height:301.160000pt;}
.hd{height:418.562688pt;}
.h0{height:540.000000pt;}
.w7{width:74.410361pt;}
.w4{width:83.077125pt;}
.w8{width:85.553343pt;}
.w5{width:85.594613pt;}
.w3{width:211.551374pt;}
.w2{width:558.092617pt;}
.w6{width:744.087090pt;}
.w9{width:745.325190pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x54{left:3.714321pt;}
.x46{left:4.952437pt;}
.x4a{left:6.223562pt;}
.x37{left:10.463986pt;}
.x48{left:18.612909pt;}
.x4c{left:19.842764pt;}
.x3c{left:22.207986pt;}
.x66{left:23.775986pt;}
.x4b{left:26.033309pt;}
.x41{left:27.613168pt;}
.x47{left:28.517782pt;}
.x50{left:29.747637pt;}
.x29{left:36.799986pt;}
.x4{left:37.791986pt;}
.xd{left:40.534500pt;}
.x22{left:41.759986pt;}
.x2a{left:47.391986pt;}
.x68{left:48.607986pt;}
.x67{left:50.175986pt;}
.x20{left:60.511986pt;}
.x3{left:73.119986pt;}
.xf{left:75.396689pt;}
.x3b{left:79.487986pt;}
.x36{left:80.895986pt;}
.x1{left:85.247986pt;}
.x3e{left:88.426360pt;}
.x1c{left:89.599986pt;}
.x2{left:92.799986pt;}
.x17{left:94.911986pt;}
.x30{left:101.215986pt;}
.x10{left:106.501052pt;}
.xc{left:107.877672pt;}
.x1d{left:112.351986pt;}
.x5{left:116.447986pt;}
.x18{left:117.663986pt;}
.x62{left:126.559986pt;}
.x63{left:128.735986pt;}
.x1e{left:131.231986pt;}
.x19{left:136.546652pt;}
.x6{left:139.173319pt;}
.x1f{left:153.946652pt;}
.x7{left:158.053319pt;}
.x1a{left:159.266652pt;}
.x1b{left:162.946652pt;}
.x8{left:180.773319pt;}
.x14{left:183.852683pt;}
.x40{left:191.023568pt;}
.x3f{left:196.239706pt;}
.x9{left:200.985166pt;}
.x38{left:202.906652pt;}
.x15{left:217.555279pt;}
.x16{left:222.950175pt;}
.x61{left:253.186652pt;}
.x5b{left:256.093319pt;}
.xe{left:260.094341pt;}
.x49{left:274.512513pt;}
.xb{left:276.527057pt;}
.x4d{left:277.782166pt;}
.x32{left:282.173319pt;}
.x33{left:304.799986pt;}
.x28{left:319.106652pt;}
.x25{left:331.266652pt;}
.x12{left:337.622699pt;}
.x5d{left:339.106652pt;}
.xa{left:353.140782pt;}
.x11{left:355.667692pt;}
.x26{left:360.226652pt;}
.x64{left:363.066652pt;}
.x27{left:366.813319pt;}
.x13{left:379.293615pt;}
.x5a{left:384.293319pt;}
.x57{left:387.679986pt;}
.x21{left:401.666652pt;}
.x65{left:405.893319pt;}
.x5c{left:410.786652pt;}
.x59{left:414.853319pt;}
.x56{left:428.799986pt;}
.x4e{left:436.985448pt;}
.x58{left:439.333319pt;}
.x34{left:488.826652pt;}
.x3a{left:493.986652pt;}
.x60{left:505.279986pt;}
.x4f{left:512.642170pt;}
.x2e{left:545.573319pt;}
.x52{left:596.520981pt;}
.x51{left:599.458382pt;}
.x23{left:609.053319pt;}
.x39{left:614.266652pt;}
.x2f{left:615.173319pt;}
.x5e{left:625.279986pt;}
.x2b{left:629.439986pt;}
.x2c{left:667.746652pt;}
.x5f{left:677.439986pt;}
.x35{left:682.213319pt;}
.x24{left:687.613319pt;}
.x3d{left:698.080000pt;}
.x42{left:722.079986pt;}
.x55{left:724.066652pt;}
.x45{left:757.279986pt;}
.x53{left:761.914808pt;}
.x44{left:764.639986pt;}
.x43{left:794.333319pt;}
.x2d{left:805.946652pt;}
.x31{left:841.146652pt;}
}




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