
    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_270a87e720a483101e659414.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_0c6ecabfdd8f8cdd04e8347c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_7c9d996effaf6b84744addce.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_a34357b36020743eb6301483.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.952000;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_ac4b321eff5e58d7f4e20f05.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952000;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_4781845ac275d05ed744799c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_a3bcb0db93f296396d3f7dce.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.888000;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_69e0b767bc3a7e4a035148bf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.710000;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_bcc98fcda7d9d5b197f3d372.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.851000;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_8bb8e806bf57480dc7cf3dcb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.454000;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_c0aaff6e73a4dae6d569ba96.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.856934;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_5d7fb4fb504800c14f864128.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.802000;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_ec854416666457980d98ebdc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910000;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_4d4b6b21f6a6500725379306.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666000;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_2ef667022da2c7fa77c9c84b.woff2')format("woff");}.fff{font-family:fff;line-height:0.429000;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_3e0652b1d4c0a97f2231eb8a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.706000;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_72953d854e8c8e20ad904afb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.514000;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_2f1ca8275085a44271b0cb89.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666000;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_7958084022a7e103becd2f31.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.706000;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.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,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);}
.v4{vertical-align:-23.916000px;}
.v2{vertical-align:-20.922000px;}
.v5{vertical-align:-9.000000px;}
.v7{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.256000px;}
.v8{vertical-align:16.944000px;}
.v6{vertical-align:21.774000px;}
.v1{vertical-align:23.016000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000144px;}
.ls29{letter-spacing:0.000192px;}
.ls6{letter-spacing:0.000288px;}
.lsc{letter-spacing:0.000300px;}
.ls23{letter-spacing:0.000325px;}
.ls26{letter-spacing:0.000350px;}
.lsf{letter-spacing:0.000362px;}
.ls28{letter-spacing:0.000365px;}
.ls31{letter-spacing:0.000395px;}
.ls1f{letter-spacing:0.000467px;}
.ls1d{letter-spacing:0.000494px;}
.ls1b{letter-spacing:0.000578px;}
.ls8{letter-spacing:0.000600px;}
.ls17{letter-spacing:0.002733px;}
.ls27{letter-spacing:0.006350px;}
.lse{letter-spacing:0.006361px;}
.ls2f{letter-spacing:0.672275px;}
.ls4{letter-spacing:1.799964px;}
.ls3{letter-spacing:1.949961px;}
.ls12{letter-spacing:2.985120px;}
.ls24{letter-spacing:2.986584px;}
.ls2b{letter-spacing:2.987751px;}
.ls15{letter-spacing:2.988096px;}
.ls11{letter-spacing:2.991120px;}
.ls30{letter-spacing:2.991983px;}
.ls2a{letter-spacing:2.993751px;}
.ls2{letter-spacing:3.119961px;}
.ls5{letter-spacing:3.899961px;}
.ls16{letter-spacing:11.039296px;}
.ls2e{letter-spacing:11.040144px;}
.ls1{letter-spacing:11.040294px;}
.ls19{letter-spacing:11.040312px;}
.ls1a{letter-spacing:11.045296px;}
.ls18{letter-spacing:11.712275px;}
.ls9{letter-spacing:13.200288px;}
.ls1c{letter-spacing:14.028096px;}
.ls1e{letter-spacing:19.902144px;}
.ls2d{letter-spacing:19.902288px;}
.ls13{letter-spacing:19.902467px;}
.ls32{letter-spacing:19.902600px;}
.lsd{letter-spacing:19.908144px;}
.ls20{letter-spacing:19.908312px;}
.ls21{letter-spacing:19.908467px;}
.ls33{letter-spacing:19.908600px;}
.ls22{letter-spacing:20.742275px;}
.ls25{letter-spacing:20.748275px;}
.lsb{letter-spacing:21.831983px;}
.ls10{letter-spacing:22.893120px;}
.ls2c{letter-spacing:22.895751px;}
.ls14{letter-spacing:22.899120px;}
.lsa{letter-spacing:26.688288px;}
.sc_{text-shadow:none;}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2f{word-spacing:-55.007542px;}
.ws12{word-spacing:-50.423542px;}
.ws30{word-spacing:-40.679661px;}
.ws15{word-spacing:-40.607662px;}
.ws10{word-spacing:-36.671542px;}
.wsa{word-spacing:-33.899661px;}
.ws1c{word-spacing:-33.839662px;}
.ws1a{word-spacing:-28.799712px;}
.ws1d{word-spacing:-27.119661px;}
.ws11{word-spacing:-27.116941px;}
.wsf{word-spacing:-27.069733px;}
.ws3{word-spacing:-26.999700px;}
.ws3d{word-spacing:-25.636954px;}
.ws31{word-spacing:-25.630954px;}
.ws35{word-spacing:-25.630660px;}
.ws2{word-spacing:-23.039712px;}
.ws26{word-spacing:-20.234880px;}
.ws5{word-spacing:-16.949661px;}
.ws8{word-spacing:-16.799664px;}
.wsd{word-spacing:-16.703712px;}
.ws13{word-spacing:-16.565849px;}
.ws14{word-spacing:-16.499850px;}
.ws2c{word-spacing:-16.187904px;}
.ws4{word-spacing:-14.879814px;}
.ws19{word-spacing:-13.967825px;}
.ws25{word-spacing:-13.799862px;}
.wse{word-spacing:-12.047849px;}
.ws20{word-spacing:-12.045176px;}
.ws32{word-spacing:-12.004142px;}
.ws38{word-spacing:-12.002800px;}
.ws1{word-spacing:-11.999850px;}
.ws1f{word-spacing:-11.998806px;}
.ws3a{word-spacing:-11.039862px;}
.ws6{word-spacing:-10.240649px;}
.ws9{word-spacing:-10.199850px;}
.ws17{word-spacing:-8.999910px;}
.ws29{word-spacing:-8.956520px;}
.ws2d{word-spacing:-8.956312px;}
.ws21{word-spacing:-8.956266px;}
.ws23{word-spacing:-8.955967px;}
.ws28{word-spacing:-8.951226px;}
.ws16{word-spacing:-8.939911px;}
.ws2b{word-spacing:-8.897136px;}
.ws27{word-spacing:-8.896806px;}
.ws2a{word-spacing:-8.891136px;}
.ws22{word-spacing:-8.890806px;}
.ws18{word-spacing:-8.879911px;}
.ws7{word-spacing:-5.639887px;}
.wsc{word-spacing:-0.059999px;}
.ws36{word-spacing:-0.048943px;}
.ws1e{word-spacing:-0.047999px;}
.ws3e{word-spacing:-0.045896px;}
.ws33{word-spacing:-0.045651px;}
.ws39{word-spacing:-0.045392px;}
.ws3f{word-spacing:-0.044956px;}
.ws1b{word-spacing:-0.041999px;}
.wsb{word-spacing:-0.035999px;}
.ws3c{word-spacing:-0.003929px;}
.ws34{word-spacing:-0.003652px;}
.ws37{word-spacing:-0.002957px;}
.ws3b{word-spacing:-0.002860px;}
.ws0{word-spacing:0.000000px;}
.ws24{word-spacing:2.656824px;}
.ws2e{word-spacing:2.662824px;}
._7{margin-left:-7.451917px;}
._8{margin-left:-5.938318px;}
._4{margin-left:-4.211953px;}
._6{margin-left:-3.119961px;}
._2{margin-left:-2.051977px;}
._5{margin-left:-1.007987px;}
._a{width:1.030382px;}
._3{width:2.051977px;}
._11{width:3.419357px;}
._10{width:10.556175px;}
._12{width:12.001461px;}
._d{width:13.043874px;}
._b{width:14.149480px;}
._9{width:15.198890px;}
._f{width:18.867025px;}
._c{width:20.891786px;}
._0{width:276.240000px;}
._1{width:1144.123678px;}
._e{width:1666.453678px;}
.fc5{color:rgb(167,208,57);}
.fc4{color:rgb(210,32,39);}
.fc3{color:rgb(47,122,181);}
.fc2{color:rgb(0,110,178);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.999400px;}
.fs12{font-size:33.724800px;}
.fsb{font-size:34.799400px;}
.fsc{font-size:35.999400px;}
.fsd{font-size:37.799400px;}
.fs9{font-size:40.799400px;}
.fs11{font-size:41.999400px;}
.fs5{font-size:42.000000px;}
.fs10{font-size:42.156000px;}
.fs6{font-size:47.999400px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:49.072383px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:59.999400px;}
.fse{font-size:65.999400px;}
.fsf{font-size:71.999400px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.fs7{font-size:107.998800px;}
.y0{bottom:0.000000px;}
.yfe{bottom:39.301500px;}
.y98{bottom:39.391500px;}
.yde{bottom:39.481500px;}
.ye3{bottom:39.571500px;}
.y5e{bottom:40.411500px;}
.y18{bottom:64.920000px;}
.y97{bottom:71.053500px;}
.y5d{bottom:79.056000px;}
.y96{bottom:89.803500px;}
.yfd{bottom:97.165500px;}
.y5c{bottom:97.806000px;}
.y95{bottom:108.553500px;}
.yfc{bottom:115.915500px;}
.y5b{bottom:116.556000px;}
.y12c{bottom:117.519000px;}
.y94{bottom:127.303500px;}
.yfb{bottom:134.665500px;}
.y5a{bottom:135.306000px;}
.y12b{bottom:136.269000px;}
.ydd{bottom:146.053500px;}
.y93{bottom:146.202000px;}
.yfa{bottom:153.415500px;}
.y59{bottom:154.056000px;}
.y12a{bottom:163.986000px;}
.ydc{bottom:164.803500px;}
.yf9{bottom:172.165500px;}
.y58{bottom:172.806000px;}
.y129{bottom:182.736000px;}
.ydb{bottom:183.553500px;}
.y92{bottom:183.873000px;}
.yf8{bottom:190.915500px;}
.y57{bottom:191.556000px;}
.yb7{bottom:193.732500px;}
.yda{bottom:202.303500px;}
.y91{bottom:202.623000px;}
.yf7{bottom:209.665500px;}
.y56{bottom:210.306000px;}
.y128{bottom:210.451500px;}
.yb6{bottom:212.482500px;}
.yd9{bottom:221.053500px;}
.y90{bottom:221.373000px;}
.yf6{bottom:228.415500px;}
.y55{bottom:229.056000px;}
.y127{bottom:229.201500px;}
.yb5{bottom:231.232500px;}
.yd8{bottom:239.803500px;}
.y8f{bottom:240.123000px;}
.yf5{bottom:247.165500px;}
.y54{bottom:247.806000px;}
.yb4{bottom:249.982500px;}
.y126{bottom:256.918500px;}
.yd7{bottom:258.553500px;}
.y8e{bottom:258.873000px;}
.yf4{bottom:265.915500px;}
.y53{bottom:266.556000px;}
.yb3{bottom:268.732500px;}
.y125{bottom:275.668500px;}
.yd6{bottom:277.303500px;}
.y8d{bottom:277.623000px;}
.yf3{bottom:284.665500px;}
.y52{bottom:285.306000px;}
.yb2{bottom:287.482500px;}
.yd5{bottom:296.053500px;}
.y8c{bottom:296.373000px;}
.ye2{bottom:300.103500px;}
.y124{bottom:303.385500px;}
.yf2{bottom:303.415500px;}
.y51{bottom:304.056000px;}
.yb1{bottom:306.232500px;}
.ye1{bottom:313.603500px;}
.yd4{bottom:314.803500px;}
.y8b{bottom:315.123000px;}
.y123{bottom:322.135500px;}
.yf1{bottom:322.165500px;}
.yb0{bottom:324.982500px;}
.yd3{bottom:333.553500px;}
.y8a{bottom:333.873000px;}
.yf0{bottom:340.915500px;}
.y50{bottom:341.485500px;}
.yaf{bottom:343.732500px;}
.y15d{bottom:345.444000px;}
.y122{bottom:349.851000px;}
.yd2{bottom:352.303500px;}
.y89{bottom:352.623000px;}
.yef{bottom:359.665500px;}
.y15c{bottom:360.444000px;}
.yae{bottom:362.482500px;}
.y121{bottom:368.601000px;}
.yd1{bottom:371.053500px;}
.y88{bottom:371.373000px;}
.y15b{bottom:375.444000px;}
.yee{bottom:378.415500px;}
.yad{bottom:381.232500px;}
.yd0{bottom:389.803500px;}
.y87{bottom:390.123000px;}
.y15a{bottom:390.444000px;}
.y120{bottom:396.318000px;}
.yed{bottom:397.165500px;}
.yac{bottom:399.982500px;}
.y4f{bottom:404.290500px;}
.y159{bottom:405.444000px;}
.ycf{bottom:408.553500px;}
.y86{bottom:408.873000px;}
.y11f{bottom:415.068000px;}
.yec{bottom:415.915500px;}
.yab{bottom:418.732500px;}
.y158{bottom:420.444000px;}
.y4e{bottom:424.540500px;}
.yce{bottom:427.303500px;}
.y85{bottom:427.623000px;}
.y11e{bottom:433.818000px;}
.yeb{bottom:434.665500px;}
.y157{bottom:435.444000px;}
.yaa{bottom:437.482500px;}
.y4d{bottom:444.790500px;}
.ycd{bottom:446.053500px;}
.y84{bottom:446.373000px;}
.y156{bottom:450.444000px;}
.yea{bottom:453.415500px;}
.ya9{bottom:456.232500px;}
.ycc{bottom:464.803500px;}
.y4c{bottom:465.040500px;}
.y83{bottom:465.123000px;}
.y155{bottom:465.444000px;}
.y11d{bottom:471.247500px;}
.ye9{bottom:472.165500px;}
.ya8{bottom:474.982500px;}
.y154{bottom:480.444000px;}
.ycb{bottom:483.553500px;}
.y82{bottom:483.873000px;}
.y4b{bottom:485.290500px;}
.ye8{bottom:490.915500px;}
.ya7{bottom:493.732500px;}
.y153{bottom:495.444000px;}
.yca{bottom:502.303500px;}
.y81{bottom:502.623000px;}
.y4a{bottom:505.540500px;}
.y11c{bottom:506.859000px;}
.y152{bottom:510.444000px;}
.ya6{bottom:512.482500px;}
.yc9{bottom:521.053500px;}
.y80{bottom:521.373000px;}
.y151{bottom:525.444000px;}
.y11b{bottom:525.609000px;}
.y49{bottom:525.790500px;}
.ya5{bottom:531.232500px;}
.yc8{bottom:539.803500px;}
.y7f{bottom:540.123000px;}
.y150{bottom:540.444000px;}
.y11a{bottom:544.359000px;}
.y48{bottom:546.040500px;}
.ya4{bottom:549.982500px;}
.y14f{bottom:555.444000px;}
.ye7{bottom:557.961000px;}
.yc7{bottom:558.553500px;}
.y7e{bottom:558.873000px;}
.y119{bottom:563.109000px;}
.y47{bottom:566.290500px;}
.ya3{bottom:568.732500px;}
.y14e{bottom:570.444000px;}
.ye6{bottom:571.461000px;}
.yc6{bottom:577.303500px;}
.y7d{bottom:577.623000px;}
.y118{bottom:581.859000px;}
.y14d{bottom:585.444000px;}
.y46{bottom:586.540500px;}
.ya2{bottom:587.482500px;}
.yc5{bottom:596.053500px;}
.y7c{bottom:596.523000px;}
.y14c{bottom:600.444000px;}
.y117{bottom:600.609000px;}
.ya1{bottom:606.232500px;}
.y45{bottom:606.790500px;}
.yc4{bottom:614.803500px;}
.y14b{bottom:615.444000px;}
.y116{bottom:619.359000px;}
.ya0{bottom:624.982500px;}
.y44{bottom:627.040500px;}
.y14a{bottom:630.444000px;}
.yc3{bottom:633.553500px;}
.y7b{bottom:633.952500px;}
.y115{bottom:638.109000px;}
.ye0{bottom:642.187500px;}
.y9f{bottom:643.732500px;}
.y149{bottom:645.444000px;}
.y43{bottom:647.290500px;}
.yc2{bottom:652.303500px;}
.ydf{bottom:655.687500px;}
.y114{bottom:656.859000px;}
.y148{bottom:660.444000px;}
.y42{bottom:667.540500px;}
.yc1{bottom:671.053500px;}
.y7a{bottom:671.623500px;}
.y147{bottom:675.444000px;}
.y41{bottom:687.790500px;}
.yc0{bottom:689.803500px;}
.y79{bottom:690.373500px;}
.y146{bottom:690.442500px;}
.y113{bottom:694.290000px;}
.y145{bottom:705.442500px;}
.y40{bottom:708.040500px;}
.ybf{bottom:708.553500px;}
.y78{bottom:709.123500px;}
.y9e{bottom:717.097500px;}
.y144{bottom:720.442500px;}
.y2e{bottom:723.607500px;}
.ybe{bottom:727.303500px;}
.y77{bottom:727.873500px;}
.y3f{bottom:728.290500px;}
.y112{bottom:729.901500px;}
.y9d{bottom:730.597500px;}
.y143{bottom:735.442500px;}
.y2d{bottom:735.607500px;}
.ybd{bottom:746.053500px;}
.y76{bottom:746.623500px;}
.y2c{bottom:747.607500px;}
.y142{bottom:750.442500px;}
.y2b{bottom:759.607500px;}
.ybc{bottom:764.803500px;}
.y75{bottom:765.373500px;}
.y141{bottom:765.442500px;}
.y111{bottom:767.331000px;}
.y2a{bottom:771.607500px;}
.y140{bottom:780.442500px;}
.y3e{bottom:782.589000px;}
.ybb{bottom:783.553500px;}
.y29{bottom:783.607500px;}
.y74{bottom:784.123500px;}
.y13f{bottom:795.442500px;}
.y3d{bottom:797.589000px;}
.y28{bottom:801.585000px;}
.y73{bottom:802.873500px;}
.y110{bottom:802.942500px;}
.y13e{bottom:810.442500px;}
.y27{bottom:813.585000px;}
.y72{bottom:821.623500px;}
.y10f{bottom:821.692500px;}
.y3c{bottom:823.210500px;}
.y13d{bottom:825.442500px;}
.y26{bottom:825.585000px;}
.y25{bottom:837.585000px;}
.y71{bottom:840.373500px;}
.y10e{bottom:840.442500px;}
.y24{bottom:849.585000px;}
.y3b{bottom:850.326000px;}
.y13c{bottom:855.442500px;}
.y70{bottom:859.123500px;}
.y10d{bottom:859.192500px;}
.y17{bottom:862.260000px;}
.yba{bottom:862.645500px;}
.y3a{bottom:864.577500px;}
.y13b{bottom:870.442500px;}
.y16{bottom:874.260000px;}
.yb9{bottom:876.145500px;}
.y6f{bottom:877.873500px;}
.y10c{bottom:877.942500px;}
.y39{bottom:879.577500px;}
.y23{bottom:885.148500px;}
.y13a{bottom:885.442500px;}
.y15{bottom:886.260000px;}
.yb8{bottom:889.645500px;}
.ye5{bottom:892.891500px;}
.y38{bottom:894.577500px;}
.y6e{bottom:896.623500px;}
.y10b{bottom:896.692500px;}
.y22{bottom:897.471000px;}
.y14{bottom:898.260000px;}
.y139{bottom:900.442500px;}
.y7{bottom:903.150000px;}
.y37{bottom:904.347000px;}
.ye4{bottom:906.391500px;}
.y36{bottom:909.577500px;}
.y13{bottom:910.260000px;}
.y6d{bottom:915.373500px;}
.y10a{bottom:915.442500px;}
.y21{bottom:916.972500px;}
.y12{bottom:922.260000px;}
.y35{bottom:924.577500px;}
.y20{bottom:929.295000px;}
.y138{bottom:930.442500px;}
.y6{bottom:932.250000px;}
.y6c{bottom:934.123500px;}
.y109{bottom:934.192500px;}
.y34{bottom:939.577500px;}
.y137{bottom:945.442500px;}
.y11{bottom:945.510000px;}
.y9c{bottom:945.982500px;}
.y1f{bottom:948.796500px;}
.y6b{bottom:952.873500px;}
.y108{bottom:952.942500px;}
.y33{bottom:954.876000px;}
.y10{bottom:957.510000px;}
.y9b{bottom:959.482500px;}
.y136{bottom:960.442500px;}
.y1e{bottom:961.119000px;}
.yf{bottom:969.510000px;}
.y6a{bottom:971.623500px;}
.y107{bottom:971.692500px;}
.y5{bottom:972.630000px;}
.y32{bottom:972.876000px;}
.y9a{bottom:972.982500px;}
.y135{bottom:975.442500px;}
.y1d{bottom:980.620500px;}
.ye{bottom:981.510000px;}
.y99{bottom:986.482500px;}
.y69{bottom:990.373500px;}
.y106{bottom:990.442500px;}
.y1c{bottom:992.419500px;}
.yd{bottom:993.510000px;}
.y134{bottom:1005.442500px;}
.y68{bottom:1009.123500px;}
.y105{bottom:1009.192500px;}
.y31{bottom:1009.911000px;}
.y4{bottom:1011.165000px;}
.yc{bottom:1016.760000px;}
.y133{bottom:1020.442500px;}
.y67{bottom:1027.873500px;}
.y104{bottom:1027.942500px;}
.y1b{bottom:1028.253000px;}
.yb{bottom:1028.760000px;}
.y132{bottom:1035.442500px;}
.y3{bottom:1039.965000px;}
.ya{bottom:1040.760000px;}
.y30{bottom:1041.411000px;}
.y66{bottom:1046.623500px;}
.y103{bottom:1046.692500px;}
.y131{bottom:1050.442500px;}
.y9{bottom:1052.760000px;}
.y65{bottom:1065.373500px;}
.y102{bottom:1065.442500px;}
.y8{bottom:1078.260000px;}
.y130{bottom:1080.442500px;}
.y2{bottom:1081.485000px;}
.y2f{bottom:1082.214000px;}
.y64{bottom:1084.123500px;}
.y101{bottom:1084.192500px;}
.y12f{bottom:1095.442500px;}
.y63{bottom:1102.873500px;}
.y100{bottom:1102.942500px;}
.y12e{bottom:1110.442500px;}
.y62{bottom:1121.623500px;}
.yff{bottom:1121.692500px;}
.y12d{bottom:1125.442500px;}
.y61{bottom:1140.373500px;}
.y1a{bottom:1151.571000px;}
.y60{bottom:1159.123500px;}
.y1{bottom:1176.375000px;}
.y19{bottom:1196.496000px;}
.y5f{bottom:1211.496000px;}
.h11{height:17.171714px;}
.hc{height:20.999580px;}
.h10{height:26.837574px;}
.hd{height:28.967574px;}
.hb{height:33.599580px;}
.h9{height:34.079574px;}
.h1a{height:34.085574px;}
.h17{height:34.109714px;}
.h19{height:34.247581px;}
.h4{height:36.000000px;}
.h5{height:36.804287px;}
.h16{height:40.888608px;}
.he{height:41.999580px;}
.h14{height:42.599574px;}
.h7{height:43.804688px;}
.h12{height:46.859574px;}
.h18{height:47.138200px;}
.hf{height:47.723574px;}
.h1{height:50.062500px;}
.h13{height:51.119574px;}
.h15{height:51.704760px;}
.h2{height:56.320312px;}
.h3{height:72.000000px;}
.h6{height:75.093750px;}
.ha{height:75.599160px;}
.h8{height:1262.835000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.w1{width:892.920000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:58.500000px;}
.xc{left:63.780000px;}
.xb{left:178.582500px;}
.x11{left:184.362000px;}
.x10{left:193.975500px;}
.xe{left:200.998500px;}
.x12{left:203.502000px;}
.x3{left:214.395000px;}
.xa{left:219.780000px;}
.x4{left:237.045000px;}
.x5{left:270.390000px;}
.x13{left:300.868500px;}
.xd{left:330.045000px;}
.x6{left:369.015000px;}
.xf{left:442.857000px;}
.x7{left:605.490000px;}
.x9{left:627.990000px;}
.x8{left:634.410000px;}
.x1{left:652.950000px;}
@media print{
.v4{vertical-align:-21.258667pt;}
.v2{vertical-align:-18.597333pt;}
.v5{vertical-align:-8.000000pt;}
.v7{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.005333pt;}
.v8{vertical-align:15.061333pt;}
.v6{vertical-align:19.354667pt;}
.v1{vertical-align:20.458667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000128pt;}
.ls29{letter-spacing:0.000171pt;}
.ls6{letter-spacing:0.000256pt;}
.lsc{letter-spacing:0.000267pt;}
.ls23{letter-spacing:0.000289pt;}
.ls26{letter-spacing:0.000311pt;}
.lsf{letter-spacing:0.000321pt;}
.ls28{letter-spacing:0.000324pt;}
.ls31{letter-spacing:0.000351pt;}
.ls1f{letter-spacing:0.000415pt;}
.ls1d{letter-spacing:0.000439pt;}
.ls1b{letter-spacing:0.000514pt;}
.ls8{letter-spacing:0.000533pt;}
.ls17{letter-spacing:0.002429pt;}
.ls27{letter-spacing:0.005644pt;}
.lse{letter-spacing:0.005655pt;}
.ls2f{letter-spacing:0.597578pt;}
.ls4{letter-spacing:1.599968pt;}
.ls3{letter-spacing:1.733299pt;}
.ls12{letter-spacing:2.653440pt;}
.ls24{letter-spacing:2.654741pt;}
.ls2b{letter-spacing:2.655779pt;}
.ls15{letter-spacing:2.656085pt;}
.ls11{letter-spacing:2.658773pt;}
.ls30{letter-spacing:2.659541pt;}
.ls2a{letter-spacing:2.661112pt;}
.ls2{letter-spacing:2.773299pt;}
.ls5{letter-spacing:3.466632pt;}
.ls16{letter-spacing:9.812707pt;}
.ls2e{letter-spacing:9.813461pt;}
.ls1{letter-spacing:9.813595pt;}
.ls19{letter-spacing:9.813611pt;}
.ls1a{letter-spacing:9.818041pt;}
.ls18{letter-spacing:10.410911pt;}
.ls9{letter-spacing:11.733589pt;}
.ls1c{letter-spacing:12.469419pt;}
.ls1e{letter-spacing:17.690795pt;}
.ls2d{letter-spacing:17.690923pt;}
.ls13{letter-spacing:17.691081pt;}
.ls32{letter-spacing:17.691200pt;}
.lsd{letter-spacing:17.696128pt;}
.ls20{letter-spacing:17.696277pt;}
.ls21{letter-spacing:17.696415pt;}
.ls33{letter-spacing:17.696533pt;}
.ls22{letter-spacing:18.437578pt;}
.ls25{letter-spacing:18.442911pt;}
.lsb{letter-spacing:19.406207pt;}
.ls10{letter-spacing:20.349440pt;}
.ls2c{letter-spacing:20.351779pt;}
.ls14{letter-spacing:20.354773pt;}
.lsa{letter-spacing:23.722923pt;}
.ws2f{word-spacing:-48.895593pt;}
.ws12{word-spacing:-44.820926pt;}
.ws30{word-spacing:-36.159699pt;}
.ws15{word-spacing:-36.095699pt;}
.ws10{word-spacing:-32.596926pt;}
.wsa{word-spacing:-30.133032pt;}
.ws1c{word-spacing:-30.079699pt;}
.ws1a{word-spacing:-25.599744pt;}
.ws1d{word-spacing:-24.106365pt;}
.ws11{word-spacing:-24.103947pt;}
.wsf{word-spacing:-24.061985pt;}
.ws3{word-spacing:-23.999733pt;}
.ws3d{word-spacing:-22.788403pt;}
.ws31{word-spacing:-22.783070pt;}
.ws35{word-spacing:-22.782809pt;}
.ws2{word-spacing:-20.479744pt;}
.ws26{word-spacing:-17.986560pt;}
.ws5{word-spacing:-15.066365pt;}
.ws8{word-spacing:-14.933035pt;}
.wsd{word-spacing:-14.847744pt;}
.ws13{word-spacing:-14.725199pt;}
.ws14{word-spacing:-14.666533pt;}
.ws2c{word-spacing:-14.389248pt;}
.ws4{word-spacing:-13.226501pt;}
.ws19{word-spacing:-12.415845pt;}
.ws25{word-spacing:-12.266544pt;}
.wse{word-spacing:-10.709199pt;}
.ws20{word-spacing:-10.706823pt;}
.ws32{word-spacing:-10.670348pt;}
.ws38{word-spacing:-10.669156pt;}
.ws1{word-spacing:-10.666533pt;}
.ws1f{word-spacing:-10.665605pt;}
.ws3a{word-spacing:-9.813211pt;}
.ws6{word-spacing:-9.102799pt;}
.ws9{word-spacing:-9.066533pt;}
.ws17{word-spacing:-7.999920pt;}
.ws29{word-spacing:-7.961351pt;}
.ws2d{word-spacing:-7.961166pt;}
.ws21{word-spacing:-7.961125pt;}
.ws23{word-spacing:-7.960860pt;}
.ws28{word-spacing:-7.956645pt;}
.ws16{word-spacing:-7.946587pt;}
.ws2b{word-spacing:-7.908565pt;}
.ws27{word-spacing:-7.908272pt;}
.ws2a{word-spacing:-7.903232pt;}
.ws22{word-spacing:-7.902939pt;}
.ws18{word-spacing:-7.893254pt;}
.ws7{word-spacing:-5.013233pt;}
.wsc{word-spacing:-0.053333pt;}
.ws36{word-spacing:-0.043505pt;}
.ws1e{word-spacing:-0.042666pt;}
.ws3e{word-spacing:-0.040797pt;}
.ws33{word-spacing:-0.040579pt;}
.ws39{word-spacing:-0.040349pt;}
.ws3f{word-spacing:-0.039961pt;}
.ws1b{word-spacing:-0.037333pt;}
.wsb{word-spacing:-0.031999pt;}
.ws3c{word-spacing:-0.003493pt;}
.ws34{word-spacing:-0.003246pt;}
.ws37{word-spacing:-0.002628pt;}
.ws3b{word-spacing:-0.002542pt;}
.ws0{word-spacing:0.000000pt;}
.ws24{word-spacing:2.361621pt;}
.ws2e{word-spacing:2.366955pt;}
._7{margin-left:-6.623926pt;}
._8{margin-left:-5.278505pt;}
._4{margin-left:-3.743958pt;}
._6{margin-left:-2.773299pt;}
._2{margin-left:-1.823980pt;}
._5{margin-left:-0.895989pt;}
._a{width:0.915895pt;}
._3{width:1.823980pt;}
._11{width:3.039428pt;}
._10{width:9.383267pt;}
._12{width:10.667965pt;}
._d{width:11.594555pt;}
._b{width:12.577316pt;}
._9{width:13.510124pt;}
._f{width:16.770689pt;}
._c{width:18.570477pt;}
._0{width:245.546667pt;}
._1{width:1016.998825pt;}
._e{width:1481.292158pt;}
.fs8{font-size:26.666133pt;}
.fs12{font-size:29.977600pt;}
.fsb{font-size:30.932800pt;}
.fsc{font-size:31.999467pt;}
.fsd{font-size:33.599467pt;}
.fs9{font-size:36.266133pt;}
.fs11{font-size:37.332800pt;}
.fs5{font-size:37.333333pt;}
.fs10{font-size:37.472000pt;}
.fs6{font-size:42.666133pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:43.619896pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:53.332800pt;}
.fse{font-size:58.666133pt;}
.fsf{font-size:63.999467pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.fs7{font-size:95.998933pt;}
.y0{bottom:0.000000pt;}
.yfe{bottom:34.934667pt;}
.y98{bottom:35.014667pt;}
.yde{bottom:35.094667pt;}
.ye3{bottom:35.174667pt;}
.y5e{bottom:35.921333pt;}
.y18{bottom:57.706667pt;}
.y97{bottom:63.158667pt;}
.y5d{bottom:70.272000pt;}
.y96{bottom:79.825333pt;}
.yfd{bottom:86.369333pt;}
.y5c{bottom:86.938667pt;}
.y95{bottom:96.492000pt;}
.yfc{bottom:103.036000pt;}
.y5b{bottom:103.605333pt;}
.y12c{bottom:104.461333pt;}
.y94{bottom:113.158667pt;}
.yfb{bottom:119.702667pt;}
.y5a{bottom:120.272000pt;}
.y12b{bottom:121.128000pt;}
.ydd{bottom:129.825333pt;}
.y93{bottom:129.957333pt;}
.yfa{bottom:136.369333pt;}
.y59{bottom:136.938667pt;}
.y12a{bottom:145.765333pt;}
.ydc{bottom:146.492000pt;}
.yf9{bottom:153.036000pt;}
.y58{bottom:153.605333pt;}
.y129{bottom:162.432000pt;}
.ydb{bottom:163.158667pt;}
.y92{bottom:163.442667pt;}
.yf8{bottom:169.702667pt;}
.y57{bottom:170.272000pt;}
.yb7{bottom:172.206667pt;}
.yda{bottom:179.825333pt;}
.y91{bottom:180.109333pt;}
.yf7{bottom:186.369333pt;}
.y56{bottom:186.938667pt;}
.y128{bottom:187.068000pt;}
.yb6{bottom:188.873333pt;}
.yd9{bottom:196.492000pt;}
.y90{bottom:196.776000pt;}
.yf6{bottom:203.036000pt;}
.y55{bottom:203.605333pt;}
.y127{bottom:203.734667pt;}
.yb5{bottom:205.540000pt;}
.yd8{bottom:213.158667pt;}
.y8f{bottom:213.442667pt;}
.yf5{bottom:219.702667pt;}
.y54{bottom:220.272000pt;}
.yb4{bottom:222.206667pt;}
.y126{bottom:228.372000pt;}
.yd7{bottom:229.825333pt;}
.y8e{bottom:230.109333pt;}
.yf4{bottom:236.369333pt;}
.y53{bottom:236.938667pt;}
.yb3{bottom:238.873333pt;}
.y125{bottom:245.038667pt;}
.yd6{bottom:246.492000pt;}
.y8d{bottom:246.776000pt;}
.yf3{bottom:253.036000pt;}
.y52{bottom:253.605333pt;}
.yb2{bottom:255.540000pt;}
.yd5{bottom:263.158667pt;}
.y8c{bottom:263.442667pt;}
.ye2{bottom:266.758667pt;}
.y124{bottom:269.676000pt;}
.yf2{bottom:269.702667pt;}
.y51{bottom:270.272000pt;}
.yb1{bottom:272.206667pt;}
.ye1{bottom:278.758667pt;}
.yd4{bottom:279.825333pt;}
.y8b{bottom:280.109333pt;}
.y123{bottom:286.342667pt;}
.yf1{bottom:286.369333pt;}
.yb0{bottom:288.873333pt;}
.yd3{bottom:296.492000pt;}
.y8a{bottom:296.776000pt;}
.yf0{bottom:303.036000pt;}
.y50{bottom:303.542667pt;}
.yaf{bottom:305.540000pt;}
.y15d{bottom:307.061333pt;}
.y122{bottom:310.978667pt;}
.yd2{bottom:313.158667pt;}
.y89{bottom:313.442667pt;}
.yef{bottom:319.702667pt;}
.y15c{bottom:320.394667pt;}
.yae{bottom:322.206667pt;}
.y121{bottom:327.645333pt;}
.yd1{bottom:329.825333pt;}
.y88{bottom:330.109333pt;}
.y15b{bottom:333.728000pt;}
.yee{bottom:336.369333pt;}
.yad{bottom:338.873333pt;}
.yd0{bottom:346.492000pt;}
.y87{bottom:346.776000pt;}
.y15a{bottom:347.061333pt;}
.y120{bottom:352.282667pt;}
.yed{bottom:353.036000pt;}
.yac{bottom:355.540000pt;}
.y4f{bottom:359.369333pt;}
.y159{bottom:360.394667pt;}
.ycf{bottom:363.158667pt;}
.y86{bottom:363.442667pt;}
.y11f{bottom:368.949333pt;}
.yec{bottom:369.702667pt;}
.yab{bottom:372.206667pt;}
.y158{bottom:373.728000pt;}
.y4e{bottom:377.369333pt;}
.yce{bottom:379.825333pt;}
.y85{bottom:380.109333pt;}
.y11e{bottom:385.616000pt;}
.yeb{bottom:386.369333pt;}
.y157{bottom:387.061333pt;}
.yaa{bottom:388.873333pt;}
.y4d{bottom:395.369333pt;}
.ycd{bottom:396.492000pt;}
.y84{bottom:396.776000pt;}
.y156{bottom:400.394667pt;}
.yea{bottom:403.036000pt;}
.ya9{bottom:405.540000pt;}
.ycc{bottom:413.158667pt;}
.y4c{bottom:413.369333pt;}
.y83{bottom:413.442667pt;}
.y155{bottom:413.728000pt;}
.y11d{bottom:418.886667pt;}
.ye9{bottom:419.702667pt;}
.ya8{bottom:422.206667pt;}
.y154{bottom:427.061333pt;}
.ycb{bottom:429.825333pt;}
.y82{bottom:430.109333pt;}
.y4b{bottom:431.369333pt;}
.ye8{bottom:436.369333pt;}
.ya7{bottom:438.873333pt;}
.y153{bottom:440.394667pt;}
.yca{bottom:446.492000pt;}
.y81{bottom:446.776000pt;}
.y4a{bottom:449.369333pt;}
.y11c{bottom:450.541333pt;}
.y152{bottom:453.728000pt;}
.ya6{bottom:455.540000pt;}
.yc9{bottom:463.158667pt;}
.y80{bottom:463.442667pt;}
.y151{bottom:467.061333pt;}
.y11b{bottom:467.208000pt;}
.y49{bottom:467.369333pt;}
.ya5{bottom:472.206667pt;}
.yc8{bottom:479.825333pt;}
.y7f{bottom:480.109333pt;}
.y150{bottom:480.394667pt;}
.y11a{bottom:483.874667pt;}
.y48{bottom:485.369333pt;}
.ya4{bottom:488.873333pt;}
.y14f{bottom:493.728000pt;}
.ye7{bottom:495.965333pt;}
.yc7{bottom:496.492000pt;}
.y7e{bottom:496.776000pt;}
.y119{bottom:500.541333pt;}
.y47{bottom:503.369333pt;}
.ya3{bottom:505.540000pt;}
.y14e{bottom:507.061333pt;}
.ye6{bottom:507.965333pt;}
.yc6{bottom:513.158667pt;}
.y7d{bottom:513.442667pt;}
.y118{bottom:517.208000pt;}
.y14d{bottom:520.394667pt;}
.y46{bottom:521.369333pt;}
.ya2{bottom:522.206667pt;}
.yc5{bottom:529.825333pt;}
.y7c{bottom:530.242667pt;}
.y14c{bottom:533.728000pt;}
.y117{bottom:533.874667pt;}
.ya1{bottom:538.873333pt;}
.y45{bottom:539.369333pt;}
.yc4{bottom:546.492000pt;}
.y14b{bottom:547.061333pt;}
.y116{bottom:550.541333pt;}
.ya0{bottom:555.540000pt;}
.y44{bottom:557.369333pt;}
.y14a{bottom:560.394667pt;}
.yc3{bottom:563.158667pt;}
.y7b{bottom:563.513333pt;}
.y115{bottom:567.208000pt;}
.ye0{bottom:570.833333pt;}
.y9f{bottom:572.206667pt;}
.y149{bottom:573.728000pt;}
.y43{bottom:575.369333pt;}
.yc2{bottom:579.825333pt;}
.ydf{bottom:582.833333pt;}
.y114{bottom:583.874667pt;}
.y148{bottom:587.061333pt;}
.y42{bottom:593.369333pt;}
.yc1{bottom:596.492000pt;}
.y7a{bottom:596.998667pt;}
.y147{bottom:600.394667pt;}
.y41{bottom:611.369333pt;}
.yc0{bottom:613.158667pt;}
.y79{bottom:613.665333pt;}
.y146{bottom:613.726667pt;}
.y113{bottom:617.146667pt;}
.y145{bottom:627.060000pt;}
.y40{bottom:629.369333pt;}
.ybf{bottom:629.825333pt;}
.y78{bottom:630.332000pt;}
.y9e{bottom:637.420000pt;}
.y144{bottom:640.393333pt;}
.y2e{bottom:643.206667pt;}
.ybe{bottom:646.492000pt;}
.y77{bottom:646.998667pt;}
.y3f{bottom:647.369333pt;}
.y112{bottom:648.801333pt;}
.y9d{bottom:649.420000pt;}
.y143{bottom:653.726667pt;}
.y2d{bottom:653.873333pt;}
.ybd{bottom:663.158667pt;}
.y76{bottom:663.665333pt;}
.y2c{bottom:664.540000pt;}
.y142{bottom:667.060000pt;}
.y2b{bottom:675.206667pt;}
.ybc{bottom:679.825333pt;}
.y75{bottom:680.332000pt;}
.y141{bottom:680.393333pt;}
.y111{bottom:682.072000pt;}
.y2a{bottom:685.873333pt;}
.y140{bottom:693.726667pt;}
.y3e{bottom:695.634667pt;}
.ybb{bottom:696.492000pt;}
.y29{bottom:696.540000pt;}
.y74{bottom:696.998667pt;}
.y13f{bottom:707.060000pt;}
.y3d{bottom:708.968000pt;}
.y28{bottom:712.520000pt;}
.y73{bottom:713.665333pt;}
.y110{bottom:713.726667pt;}
.y13e{bottom:720.393333pt;}
.y27{bottom:723.186667pt;}
.y72{bottom:730.332000pt;}
.y10f{bottom:730.393333pt;}
.y3c{bottom:731.742667pt;}
.y13d{bottom:733.726667pt;}
.y26{bottom:733.853333pt;}
.y25{bottom:744.520000pt;}
.y71{bottom:746.998667pt;}
.y10e{bottom:747.060000pt;}
.y24{bottom:755.186667pt;}
.y3b{bottom:755.845333pt;}
.y13c{bottom:760.393333pt;}
.y70{bottom:763.665333pt;}
.y10d{bottom:763.726667pt;}
.y17{bottom:766.453333pt;}
.yba{bottom:766.796000pt;}
.y3a{bottom:768.513333pt;}
.y13b{bottom:773.726667pt;}
.y16{bottom:777.120000pt;}
.yb9{bottom:778.796000pt;}
.y6f{bottom:780.332000pt;}
.y10c{bottom:780.393333pt;}
.y39{bottom:781.846667pt;}
.y23{bottom:786.798667pt;}
.y13a{bottom:787.060000pt;}
.y15{bottom:787.786667pt;}
.yb8{bottom:790.796000pt;}
.ye5{bottom:793.681333pt;}
.y38{bottom:795.180000pt;}
.y6e{bottom:796.998667pt;}
.y10b{bottom:797.060000pt;}
.y22{bottom:797.752000pt;}
.y14{bottom:798.453333pt;}
.y139{bottom:800.393333pt;}
.y7{bottom:802.800000pt;}
.y37{bottom:803.864000pt;}
.ye4{bottom:805.681333pt;}
.y36{bottom:808.513333pt;}
.y13{bottom:809.120000pt;}
.y6d{bottom:813.665333pt;}
.y10a{bottom:813.726667pt;}
.y21{bottom:815.086667pt;}
.y12{bottom:819.786667pt;}
.y35{bottom:821.846667pt;}
.y20{bottom:826.040000pt;}
.y138{bottom:827.060000pt;}
.y6{bottom:828.666667pt;}
.y6c{bottom:830.332000pt;}
.y109{bottom:830.393333pt;}
.y34{bottom:835.180000pt;}
.y137{bottom:840.393333pt;}
.y11{bottom:840.453333pt;}
.y9c{bottom:840.873333pt;}
.y1f{bottom:843.374667pt;}
.y6b{bottom:846.998667pt;}
.y108{bottom:847.060000pt;}
.y33{bottom:848.778667pt;}
.y10{bottom:851.120000pt;}
.y9b{bottom:852.873333pt;}
.y136{bottom:853.726667pt;}
.y1e{bottom:854.328000pt;}
.yf{bottom:861.786667pt;}
.y6a{bottom:863.665333pt;}
.y107{bottom:863.726667pt;}
.y5{bottom:864.560000pt;}
.y32{bottom:864.778667pt;}
.y9a{bottom:864.873333pt;}
.y135{bottom:867.060000pt;}
.y1d{bottom:871.662667pt;}
.ye{bottom:872.453333pt;}
.y99{bottom:876.873333pt;}
.y69{bottom:880.332000pt;}
.y106{bottom:880.393333pt;}
.y1c{bottom:882.150667pt;}
.yd{bottom:883.120000pt;}
.y134{bottom:893.726667pt;}
.y68{bottom:896.998667pt;}
.y105{bottom:897.060000pt;}
.y31{bottom:897.698667pt;}
.y4{bottom:898.813333pt;}
.yc{bottom:903.786667pt;}
.y133{bottom:907.060000pt;}
.y67{bottom:913.665333pt;}
.y104{bottom:913.726667pt;}
.y1b{bottom:914.002667pt;}
.yb{bottom:914.453333pt;}
.y132{bottom:920.393333pt;}
.y3{bottom:924.413333pt;}
.ya{bottom:925.120000pt;}
.y30{bottom:925.698667pt;}
.y66{bottom:930.332000pt;}
.y103{bottom:930.393333pt;}
.y131{bottom:933.726667pt;}
.y9{bottom:935.786667pt;}
.y65{bottom:946.998667pt;}
.y102{bottom:947.060000pt;}
.y8{bottom:958.453333pt;}
.y130{bottom:960.393333pt;}
.y2{bottom:961.320000pt;}
.y2f{bottom:961.968000pt;}
.y64{bottom:963.665333pt;}
.y101{bottom:963.726667pt;}
.y12f{bottom:973.726667pt;}
.y63{bottom:980.332000pt;}
.y100{bottom:980.393333pt;}
.y12e{bottom:987.060000pt;}
.y62{bottom:996.998667pt;}
.yff{bottom:997.060000pt;}
.y12d{bottom:1000.393333pt;}
.y61{bottom:1013.665333pt;}
.y1a{bottom:1023.618667pt;}
.y60{bottom:1030.332000pt;}
.y1{bottom:1045.666667pt;}
.y19{bottom:1063.552000pt;}
.y5f{bottom:1076.885333pt;}
.h11{height:15.263746pt;}
.hc{height:18.666293pt;}
.h10{height:23.855621pt;}
.hd{height:25.748955pt;}
.hb{height:29.866293pt;}
.h9{height:30.292955pt;}
.h1a{height:30.298288pt;}
.h17{height:30.319746pt;}
.h19{height:30.442294pt;}
.h4{height:32.000000pt;}
.h5{height:32.714922pt;}
.h16{height:36.345429pt;}
.he{height:37.332960pt;}
.h14{height:37.866288pt;}
.h7{height:38.937500pt;}
.h12{height:41.652955pt;}
.h18{height:41.900623pt;}
.hf{height:42.420955pt;}
.h1{height:44.500000pt;}
.h13{height:45.439621pt;}
.h15{height:45.959787pt;}
.h2{height:50.062500pt;}
.h3{height:64.000000pt;}
.h6{height:66.750000pt;}
.ha{height:67.199253pt;}
.h8{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.w1{width:793.706667pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:52.000000pt;}
.xc{left:56.693333pt;}
.xb{left:158.740000pt;}
.x11{left:163.877333pt;}
.x10{left:172.422667pt;}
.xe{left:178.665333pt;}
.x12{left:180.890667pt;}
.x3{left:190.573333pt;}
.xa{left:195.360000pt;}
.x4{left:210.706667pt;}
.x5{left:240.346667pt;}
.x13{left:267.438667pt;}
.xd{left:293.373333pt;}
.x6{left:328.013333pt;}
.xf{left:393.650667pt;}
.x7{left:538.213333pt;}
.x9{left:558.213333pt;}
.x8{left:563.920000pt;}
.x1{left:580.400000pt;}
}




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