
    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_cd193e8481953cd8eb3725ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121000;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_315881866d55c32083088d0e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.121000;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_76082c4e4b3d4f6d0b0bd247.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.180176;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_cd193e8481953cd8eb3725ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.121000;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_76082c4e4b3d4f6d0b0bd247.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.180176;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_96e6851c2341816eaf208867.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.182617;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_a50f2b50ce149bb0d2ff725f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.792000;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_a6223d6f6e80882ca63e62d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.336000;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_25037fb11cb7691fa7704a3d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.075000;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_f0098e34cc1b5014da9f9555.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.170000;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_648fae10db758754ad1ee275.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.242000;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_cd8eff9c0681d6a81d920d86.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.251000;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_64d72d4b3cc82ebee52acefe.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.718000;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_0e0c6e78b039d64b2976d6a8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.202000;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_ccbc79b0772ca029e1f880a7.woff2')format("woff");}.fff{font-family:fff;line-height:0.817871;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_b002d94b35a465f4a1311f87.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.164000;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_93e5950b08cf5d81a1043223.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.780000;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_a29d6f597e8b25a411b32fe4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.990234;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_cd193e8481953cd8eb3725ec.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.121000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_659421235f760f811e71ed3a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.180176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_d7f10a24f4d6059b2222d38d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.935000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_cd193e8481953cd8eb3725ec.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.121000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_659421235f760f811e71ed3a.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.180176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_27450d687fd58dc31f893d2a.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.095000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_0a5046576d51432cdc5dc5a1.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.029000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_31559c1e9e49ce7c27c71ef3.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.158000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-20.979000px;}
.v2{vertical-align:-2.184600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.217400px;}
.v4{vertical-align:20.979000px;}
.lsc{letter-spacing:-2.700000px;}
.ls7{letter-spacing:-2.100000px;}
.ls11{letter-spacing:-1.995000px;}
.lsb{letter-spacing:-1.920000px;}
.lsa{letter-spacing:-1.680000px;}
.ls5{letter-spacing:-1.500000px;}
.ls9{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-1.425000px;}
.ls8{letter-spacing:-1.200000px;}
.ls13{letter-spacing:-1.197000px;}
.ls15{letter-spacing:-1.140000px;}
.ls10{letter-spacing:-0.570000px;}
.ls16{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.270000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000423px;}
.ls6{letter-spacing:0.600000px;}
.lse{letter-spacing:0.684000px;}
.ls4{letter-spacing:0.960000px;}
.ls3{letter-spacing:1.200000px;}
.ls2{letter-spacing:2.250000px;}
.ls14{letter-spacing:6.384000px;}
.ls1{letter-spacing:477.756600px;}
.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;}
}
.wsf{word-spacing:-57.000000px;}
.ws1a{word-spacing:-36.000000px;}
.wsd{word-spacing:-13.920000px;}
.ws11{word-spacing:-13.224000px;}
.ws1{word-spacing:-12.720000px;}
.ws12{word-spacing:-11.799000px;}
.ws4{word-spacing:-10.896000px;}
.ws1d{word-spacing:-10.659000px;}
.ws2{word-spacing:-10.176000px;}
.ws3{word-spacing:-8.976000px;}
.ws1f{word-spacing:-6.384000px;}
.ws9{word-spacing:-3.120000px;}
.ws17{word-spacing:-2.850000px;}
.ws5{word-spacing:-2.250000px;}
.wsb{word-spacing:-1.968000px;}
.wsa{word-spacing:-1.872000px;}
.ws19{word-spacing:-1.530000px;}
.ws14{word-spacing:-0.684000px;}
.ws7{word-spacing:-0.600000px;}
.ws15{word-spacing:-0.570000px;}
.ws1c{word-spacing:-0.540000px;}
.wsc{word-spacing:-0.480000px;}
.ws10{word-spacing:-0.450000px;}
.ws0{word-spacing:0.000000px;}
.ws21{word-spacing:0.480000px;}
.ws18{word-spacing:0.570000px;}
.ws20{word-spacing:1.140000px;}
.ws1e{word-spacing:1.197000px;}
.ws23{word-spacing:1.200000px;}
.ws16{word-spacing:1.425000px;}
.ws6{word-spacing:1.500000px;}
.ws22{word-spacing:1.920000px;}
.ws1b{word-spacing:1.995000px;}
.ws8{word-spacing:2.100000px;}
.wse{word-spacing:2.700000px;}
.ws13{word-spacing:455.268000px;}
._8{margin-left:-16.515000px;}
._21{margin-left:-8.501100px;}
._7{margin-left:-6.061800px;}
._6{margin-left:-4.756800px;}
._5{margin-left:-3.741000px;}
._3{margin-left:-2.407800px;}
._4{margin-left:-1.339200px;}
._0{width:1.440000px;}
._2{width:3.060000px;}
._11{width:4.377600px;}
._d{width:5.572800px;}
._a{width:6.893100px;}
._9{width:7.942500px;}
._b{width:9.134100px;}
._c{width:10.208100px;}
._e{width:11.605200px;}
._23{width:13.206900px;}
._f{width:15.048000px;}
._10{width:16.524300px;}
._13{width:18.097500px;}
._17{width:19.220400px;}
._12{width:20.235000px;}
._14{width:21.295200px;}
._15{width:22.517100px;}
._16{width:23.972100px;}
._1c{width:25.128300px;}
._1d{width:27.109200px;}
._1e{width:28.209300px;}
._19{width:29.856600px;}
._18{width:30.985200px;}
._24{width:32.076000px;}
._1a{width:33.692700px;}
._20{width:40.293300px;}
._22{width:49.259400px;}
._1f{width:71.181600px;}
._1b{width:464.740800px;}
._1{width:477.052800px;}
.fc6{color:transparent;}
.fc5{color:rgb(142,210,225);}
.fc4{color:rgb(71,184,210);}
.fc3{color:rgb(215,72,47);}
.fc2{color:rgb(53,92,147);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:30.000000px;}
.fsa{font-size:36.000000px;}
.fs8{font-size:36.729000px;}
.fs0{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs5{font-size:57.012600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.fs4{font-size:150.000000px;}
.fs7{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y88{bottom:14.026500px;}
.y1{bottom:50.775600px;}
.yc0{bottom:50.963250px;}
.y3{bottom:51.321750px;}
.ye4{bottom:96.174900px;}
.y87{bottom:96.420000px;}
.y89{bottom:100.334700px;}
.y144{bottom:101.061600px;}
.yf9{bottom:101.961600px;}
.ybe{bottom:102.280500px;}
.y11d{bottom:103.662300px;}
.y8c{bottom:105.811050px;}
.yfc{bottom:107.819550px;}
.ye3{bottom:110.574900px;}
.y166{bottom:114.447000px;}
.y55{bottom:118.749150px;}
.y143{bottom:119.961600px;}
.yf8{bottom:120.861600px;}
.ybd{bottom:121.180500px;}
.y2a{bottom:121.606350px;}
.y11c{bottom:122.562450px;}
.y165{bottom:128.247000px;}
.ye5{bottom:129.240450px;}
.y54{bottom:138.549150px;}
.y142{bottom:138.861600px;}
.yf7{bottom:139.761600px;}
.ybc{bottom:140.080500px;}
.y29{bottom:140.101350px;}
.y11b{bottom:141.462450px;}
.y164{bottom:142.047000px;}
.y163{bottom:155.847000px;}
.y141{bottom:157.761600px;}
.y53{bottom:158.349150px;}
.y28{bottom:158.596350px;}
.yf6{bottom:158.661600px;}
.ybb{bottom:158.980500px;}
.y11a{bottom:160.362300px;}
.y162{bottom:169.647000px;}
.y140{bottom:176.661600px;}
.yf5{bottom:177.561600px;}
.yba{bottom:177.880500px;}
.y52{bottom:178.149150px;}
.y11f{bottom:179.262300px;}
.y161{bottom:183.447000px;}
.y13f{bottom:195.561600px;}
.y27{bottom:195.586350px;}
.yf4{bottom:196.461600px;}
.yb9{bottom:196.780500px;}
.y160{bottom:197.247000px;}
.y51{bottom:197.949150px;}
.y119{bottom:198.162300px;}
.y15f{bottom:211.047000px;}
.y13e{bottom:214.461600px;}
.yf3{bottom:215.361600px;}
.yb8{bottom:215.680500px;}
.y11e{bottom:217.062450px;}
.y50{bottom:217.749150px;}
.y15e{bottom:224.847000px;}
.y26{bottom:232.576350px;}
.y13d{bottom:233.361600px;}
.yf2{bottom:234.261600px;}
.yb7{bottom:234.580500px;}
.y118{bottom:235.962450px;}
.y4f{bottom:237.549150px;}
.y15d{bottom:238.647000px;}
.y25{bottom:251.071350px;}
.y13c{bottom:252.261600px;}
.y15c{bottom:252.447000px;}
.yf1{bottom:253.161600px;}
.yb6{bottom:253.480500px;}
.y117{bottom:254.862300px;}
.y15b{bottom:266.247000px;}
.y24{bottom:269.566350px;}
.y13b{bottom:271.161600px;}
.yf0{bottom:272.061600px;}
.yb5{bottom:272.380500px;}
.y116{bottom:273.762300px;}
.y4e{bottom:277.149150px;}
.y15a{bottom:280.047000px;}
.y23{bottom:288.061350px;}
.y13a{bottom:290.061600px;}
.yef{bottom:290.961600px;}
.yb4{bottom:291.280500px;}
.y115{bottom:292.662300px;}
.y159{bottom:293.847000px;}
.y4d{bottom:296.949150px;}
.y158{bottom:307.647000px;}
.y139{bottom:308.961600px;}
.yee{bottom:309.861600px;}
.yb3{bottom:310.180500px;}
.y114{bottom:311.562450px;}
.y6f{bottom:313.563900px;}
.y85{bottom:314.009700px;}
.y4c{bottom:316.749150px;}
.y157{bottom:321.447000px;}
.y22{bottom:325.051350px;}
.y138{bottom:327.861600px;}
.yed{bottom:328.761600px;}
.yb2{bottom:329.080500px;}
.y113{bottom:330.462450px;}
.y156{bottom:335.247000px;}
.y4b{bottom:336.549150px;}
.y6e{bottom:338.313900px;}
.y84{bottom:343.259700px;}
.y137{bottom:346.761600px;}
.yec{bottom:347.661600px;}
.yb1{bottom:347.980500px;}
.y155{bottom:349.047000px;}
.y112{bottom:349.362450px;}
.y21{bottom:362.041350px;}
.y154{bottom:362.847000px;}
.y6d{bottom:363.063900px;}
.y136{bottom:365.661600px;}
.yeb{bottom:366.561600px;}
.yb0{bottom:366.880500px;}
.y111{bottom:368.262450px;}
.y83{bottom:370.709700px;}
.y4a{bottom:376.149150px;}
.y153{bottom:376.647000px;}
.y20{bottom:380.536350px;}
.y135{bottom:384.561600px;}
.yea{bottom:385.461600px;}
.yaf{bottom:385.780500px;}
.y110{bottom:387.162300px;}
.y6c{bottom:387.813900px;}
.yfd{bottom:388.559100px;}
.y152{bottom:390.447000px;}
.y49{bottom:395.949150px;}
.y1f{bottom:399.031350px;}
.y134{bottom:403.461600px;}
.y151{bottom:404.247000px;}
.ye9{bottom:404.361600px;}
.yae{bottom:404.680500px;}
.y10f{bottom:406.062450px;}
.y48{bottom:415.749150px;}
.y150{bottom:418.047000px;}
.y133{bottom:422.361600px;}
.ye8{bottom:423.261600px;}
.ybf{bottom:423.580500px;}
.y10e{bottom:424.962300px;}
.y82{bottom:425.609700px;}
.y14f{bottom:431.847000px;}
.y47{bottom:435.549150px;}
.y1e{bottom:436.021350px;}
.y6b{bottom:437.313900px;}
.y132{bottom:441.261600px;}
.ye7{bottom:442.161600px;}
.yad{bottom:442.480500px;}
.y10d{bottom:443.862450px;}
.y14e{bottom:445.647000px;}
.y1d{bottom:454.516350px;}
.y46{bottom:455.349150px;}
.y14d{bottom:459.447000px;}
.y131{bottom:460.161600px;}
.ye6{bottom:461.061600px;}
.y6a{bottom:462.063900px;}
.y10c{bottom:462.762300px;}
.y14c{bottom:473.247000px;}
.y45{bottom:475.149150px;}
.y130{bottom:479.061600px;}
.ye2{bottom:479.961600px;}
.y81{bottom:480.509700px;}
.y10b{bottom:481.662300px;}
.y69{bottom:486.813900px;}
.y14b{bottom:487.047000px;}
.y1c{bottom:491.506350px;}
.y44{bottom:494.949150px;}
.y12f{bottom:497.961600px;}
.ye1{bottom:498.861600px;}
.y10a{bottom:500.562450px;}
.y14a{bottom:500.847000px;}
.y80{bottom:507.959700px;}
.y1b{bottom:510.001350px;}
.y149{bottom:514.647000px;}
.y43{bottom:514.749150px;}
.yac{bottom:516.685350px;}
.y12e{bottom:516.861600px;}
.ye0{bottom:517.761600px;}
.y109{bottom:519.462300px;}
.y148{bottom:528.447000px;}
.y1a{bottom:528.496350px;}
.y42{bottom:534.549150px;}
.y7f{bottom:535.409700px;}
.yab{bottom:535.585350px;}
.y12d{bottom:535.761600px;}
.y68{bottom:536.313900px;}
.ydf{bottom:536.661600px;}
.y108{bottom:538.362450px;}
.yfa{bottom:551.444850px;}
.y41{bottom:554.349150px;}
.yaa{bottom:554.485350px;}
.y12c{bottom:554.661600px;}
.yde{bottom:555.561600px;}
.y147{bottom:556.047000px;}
.y107{bottom:557.262300px;}
.y67{bottom:561.063900px;}
.y7e{bottom:562.859700px;}
.y19{bottom:565.486350px;}
.ya9{bottom:573.385350px;}
.y12b{bottom:573.561600px;}
.ydd{bottom:574.461600px;}
.y106{bottom:576.162300px;}
.y18{bottom:583.981350px;}
.y66{bottom:585.813900px;}
.y7d{bottom:590.309700px;}
.ya8{bottom:592.285350px;}
.y12a{bottom:592.461600px;}
.ydc{bottom:593.361600px;}
.y40{bottom:593.949150px;}
.y105{bottom:595.062450px;}
.y17{bottom:602.476350px;}
.y65{bottom:610.563900px;}
.ya7{bottom:611.185350px;}
.y129{bottom:611.361600px;}
.ydb{bottom:612.261600px;}
.y3f{bottom:613.749150px;}
.y104{bottom:613.962450px;}
.y16{bottom:620.971350px;}
.ya6{bottom:630.085350px;}
.y128{bottom:630.261600px;}
.yda{bottom:631.161600px;}
.y103{bottom:632.862450px;}
.y7c{bottom:645.209700px;}
.ya5{bottom:648.985350px;}
.y127{bottom:649.161600px;}
.yd9{bottom:650.061600px;}
.y102{bottom:651.762300px;}
.y3e{bottom:653.349150px;}
.y15{bottom:657.961350px;}
.y64{bottom:660.063900px;}
.ya4{bottom:667.885350px;}
.y126{bottom:668.061600px;}
.yd8{bottom:668.961600px;}
.y101{bottom:670.662300px;}
.y3d{bottom:673.149150px;}
.y14{bottom:676.456350px;}
.ya3{bottom:686.785350px;}
.y125{bottom:686.961600px;}
.yd7{bottom:687.861600px;}
.y100{bottom:689.562450px;}
.y13{bottom:694.951350px;}
.y7b{bottom:700.109700px;}
.ya2{bottom:705.685350px;}
.y124{bottom:705.861600px;}
.yd6{bottom:706.761600px;}
.yff{bottom:708.462450px;}
.y63{bottom:709.563900px;}
.y3c{bottom:712.749150px;}
.ya1{bottom:724.585350px;}
.y123{bottom:724.761600px;}
.yd5{bottom:725.661600px;}
.yfe{bottom:727.362450px;}
.y7a{bottom:727.559700px;}
.y12{bottom:731.941350px;}
.y3b{bottom:732.549150px;}
.y62{bottom:734.313900px;}
.ya0{bottom:743.485350px;}
.y122{bottom:743.661600px;}
.yd4{bottom:744.561600px;}
.y11{bottom:750.436350px;}
.y3a{bottom:752.349150px;}
.y120{bottom:754.748250px;}
.y79{bottom:755.009700px;}
.y61{bottom:759.063900px;}
.y9f{bottom:762.385350px;}
.yd3{bottom:763.461600px;}
.y10{bottom:768.931200px;}
.y39{bottom:772.149150px;}
.y121{bottom:773.236500px;}
.y145{bottom:773.985600px;}
.yd2{bottom:782.361600px;}
.y78{bottom:782.459700px;}
.yfb{bottom:783.634800px;}
.y146{bottom:791.812950px;}
.y38{bottom:791.949150px;}
.y8d{bottom:795.574200px;}
.y9e{bottom:800.185350px;}
.yd1{bottom:801.261600px;}
.yf{bottom:805.921350px;}
.y60{bottom:808.563900px;}
.y37{bottom:811.749150px;}
.y9d{bottom:819.085350px;}
.yd0{bottom:820.161600px;}
.y5f{bottom:833.313900px;}
.y77{bottom:837.359850px;}
.ycf{bottom:839.061600px;}
.ye{bottom:842.911350px;}
.y36{bottom:851.349150px;}
.y9c{bottom:856.885350px;}
.yce{bottom:857.961600px;}
.y5e{bottom:858.063900px;}
.yd{bottom:861.406350px;}
.y76{bottom:864.809700px;}
.y35{bottom:871.149150px;}
.y8e{bottom:873.630150px;}
.y9b{bottom:875.785350px;}
.ycd{bottom:876.861600px;}
.yc{bottom:879.901350px;}
.y5d{bottom:882.813900px;}
.y34{bottom:890.949150px;}
.y75{bottom:892.259700px;}
.y9a{bottom:894.685350px;}
.ycc{bottom:895.761600px;}
.y33{bottom:910.749150px;}
.y99{bottom:913.585350px;}
.ycb{bottom:914.661600px;}
.yb{bottom:916.891350px;}
.y32{bottom:930.549150px;}
.y5c{bottom:932.313900px;}
.y98{bottom:932.485350px;}
.yca{bottom:933.561600px;}
.ya{bottom:935.386350px;}
.y74{bottom:947.159700px;}
.y31{bottom:950.349150px;}
.y97{bottom:951.385350px;}
.yc9{bottom:952.461600px;}
.y9{bottom:953.881350px;}
.y5b{bottom:957.063900px;}
.y8b{bottom:969.830550px;}
.y30{bottom:970.149150px;}
.y96{bottom:970.285350px;}
.yc8{bottom:971.361600px;}
.y73{bottom:974.609700px;}
.y5a{bottom:981.813900px;}
.y95{bottom:989.185350px;}
.y2f{bottom:989.949150px;}
.yc7{bottom:990.261600px;}
.y8{bottom:990.871350px;}
.y72{bottom:1002.059850px;}
.y59{bottom:1006.563900px;}
.y94{bottom:1008.085350px;}
.yc6{bottom:1009.161600px;}
.y7{bottom:1009.366350px;}
.y2e{bottom:1009.749150px;}
.y8a{bottom:1026.830550px;}
.y93{bottom:1026.985350px;}
.y6{bottom:1027.861350px;}
.yc5{bottom:1028.061600px;}
.y71{bottom:1029.509700px;}
.y2d{bottom:1029.549150px;}
.y92{bottom:1045.885350px;}
.yc4{bottom:1046.961600px;}
.y2c{bottom:1049.349150px;}
.y58{bottom:1056.063900px;}
.y70{bottom:1056.959700px;}
.y91{bottom:1064.785350px;}
.y5{bottom:1064.851350px;}
.yc3{bottom:1065.861600px;}
.y2b{bottom:1069.149150px;}
.y90{bottom:1083.685350px;}
.yc2{bottom:1084.761600px;}
.yc1{bottom:1103.661600px;}
.y57{bottom:1112.083800px;}
.y86{bottom:1129.110600px;}
.y56{bottom:1129.879200px;}
.y4{bottom:1164.791400px;}
.y2{bottom:1165.263900px;}
.y8f{bottom:1165.491750px;}
.hc{height:27.000000px;}
.he{height:29.517000px;}
.h14{height:38.736000px;}
.h18{height:42.384000px;}
.h4{height:43.200000px;}
.h2{height:44.417400px;}
.h12{height:44.460000px;}
.h8{height:45.552000px;}
.hf{height:47.531250px;}
.h13{height:50.331000px;}
.h16{height:51.246000px;}
.h15{height:53.922000px;}
.h17{height:53.952000px;}
.h11{height:54.264000px;}
.h7{height:54.960000px;}
.hb{height:59.863230px;}
.h10{height:64.068000px;}
.h6{height:67.440000px;}
.h3{height:77.885742px;}
.h5{height:89.868164px;}
.h9{height:156.300000px;}
.hd{height:179.736328px;}
.ha{height:184.524000px;}
.h1{height:1258.500000px;}
.h0{height:1258.582500px;}
.w2{width:742.594500px;}
.w1{width:897.000000px;}
.w0{width:897.165000px;}
.x0{left:0.000000px;}
.x4b{left:24.460200px;}
.x4{left:76.535550px;}
.x58{left:79.428750px;}
.x4c{left:81.110400px;}
.x56{left:82.266150px;}
.x3{left:85.344000px;}
.x24{left:90.793650px;}
.x5a{left:95.472150px;}
.x52{left:97.795350px;}
.x26{left:106.095900px;}
.x2f{left:108.472500px;}
.x5e{left:111.401550px;}
.x35{left:114.365400px;}
.x29{left:115.849350px;}
.x2c{left:117.769950px;}
.x4e{left:119.220600px;}
.x2a{left:121.655100px;}
.x37{left:123.266700px;}
.x28{left:124.789500px;}
.x32{left:130.497150px;}
.x31{left:135.850350px;}
.x33{left:141.072000px;}
.x5b{left:153.034350px;}
.x38{left:158.899350px;}
.x50{left:172.046400px;}
.x36{left:190.422300px;}
.x34{left:199.819200px;}
.x27{left:205.286100px;}
.x39{left:213.828900px;}
.x30{left:220.001400px;}
.x4d{left:226.996500px;}
.x2e{left:237.640800px;}
.x2d{left:239.575350px;}
.x2b{left:258.835050px;}
.x5d{left:275.030550px;}
.x53{left:292.411650px;}
.x5c{left:295.597950px;}
.x4a{left:314.221950px;}
.x54{left:331.653600px;}
.x19{left:351.068850px;}
.x9{left:353.173200px;}
.x14{left:354.800700px;}
.x15{left:356.908050px;}
.x1c{left:358.550400px;}
.xf{left:361.655400px;}
.x22{left:362.854650px;}
.x18{left:368.967450px;}
.x1f{left:370.962900px;}
.x6{left:373.198050px;}
.xb{left:374.270100px;}
.x51{left:379.998450px;}
.x20{left:390.037350px;}
.x1a{left:405.732150px;}
.x10{left:413.666850px;}
.x1d{left:422.134500px;}
.x25{left:429.196200px;}
.xe{left:438.745650px;}
.x12{left:456.858600px;}
.x7{left:465.453600px;}
.x43{left:468.980100px;}
.x4f{left:471.621600px;}
.x21{left:474.374400px;}
.x3a{left:480.004800px;}
.xc{left:482.200650px;}
.x3b{left:483.304650px;}
.x16{left:484.472850px;}
.x3f{left:487.984500px;}
.x5{left:491.734950px;}
.x47{left:492.931050px;}
.x13{left:494.419050px;}
.x1e{left:497.238750px;}
.x11{left:503.815950px;}
.x48{left:506.576850px;}
.x1b{left:508.353450px;}
.x17{left:513.393300px;}
.xd{left:517.518150px;}
.x44{left:528.733050px;}
.x23{left:531.924750px;}
.xa{left:535.307700px;}
.x45{left:536.405400px;}
.x41{left:554.839500px;}
.x8{left:556.501950px;}
.x3c{left:560.824650px;}
.x42{left:563.689650px;}
.x3e{left:565.954350px;}
.x46{left:571.556850px;}
.x1{left:579.370500px;}
.x55{left:586.771650px;}
.x40{left:594.588000px;}
.x3d{left:596.073000px;}
.x57{left:608.031450px;}
.x49{left:616.000350px;}
.x2{left:684.567000px;}
.x59{left:819.235950px;}
@media print{
.v3{vertical-align:-18.648000pt;}
.v2{vertical-align:-1.941867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.082133pt;}
.v4{vertical-align:18.648000pt;}
.lsc{letter-spacing:-2.400000pt;}
.ls7{letter-spacing:-1.866667pt;}
.ls11{letter-spacing:-1.773333pt;}
.lsb{letter-spacing:-1.706667pt;}
.lsa{letter-spacing:-1.493333pt;}
.ls5{letter-spacing:-1.333333pt;}
.ls9{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-1.266667pt;}
.ls8{letter-spacing:-1.066667pt;}
.ls13{letter-spacing:-1.064000pt;}
.ls15{letter-spacing:-1.013333pt;}
.ls10{letter-spacing:-0.506667pt;}
.ls16{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000376pt;}
.ls6{letter-spacing:0.533333pt;}
.lse{letter-spacing:0.608000pt;}
.ls4{letter-spacing:0.853333pt;}
.ls3{letter-spacing:1.066667pt;}
.ls2{letter-spacing:2.000000pt;}
.ls14{letter-spacing:5.674667pt;}
.ls1{letter-spacing:424.672533pt;}
.wsf{word-spacing:-50.666667pt;}
.ws1a{word-spacing:-32.000000pt;}
.wsd{word-spacing:-12.373333pt;}
.ws11{word-spacing:-11.754667pt;}
.ws1{word-spacing:-11.306667pt;}
.ws12{word-spacing:-10.488000pt;}
.ws4{word-spacing:-9.685333pt;}
.ws1d{word-spacing:-9.474667pt;}
.ws2{word-spacing:-9.045333pt;}
.ws3{word-spacing:-7.978667pt;}
.ws1f{word-spacing:-5.674667pt;}
.ws9{word-spacing:-2.773333pt;}
.ws17{word-spacing:-2.533333pt;}
.ws5{word-spacing:-2.000000pt;}
.wsb{word-spacing:-1.749333pt;}
.wsa{word-spacing:-1.664000pt;}
.ws19{word-spacing:-1.360000pt;}
.ws14{word-spacing:-0.608000pt;}
.ws7{word-spacing:-0.533333pt;}
.ws15{word-spacing:-0.506667pt;}
.ws1c{word-spacing:-0.480000pt;}
.wsc{word-spacing:-0.426667pt;}
.ws10{word-spacing:-0.400000pt;}
.ws0{word-spacing:0.000000pt;}
.ws21{word-spacing:0.426667pt;}
.ws18{word-spacing:0.506667pt;}
.ws20{word-spacing:1.013333pt;}
.ws1e{word-spacing:1.064000pt;}
.ws23{word-spacing:1.066667pt;}
.ws16{word-spacing:1.266667pt;}
.ws6{word-spacing:1.333333pt;}
.ws22{word-spacing:1.706667pt;}
.ws1b{word-spacing:1.773333pt;}
.ws8{word-spacing:1.866667pt;}
.wse{word-spacing:2.400000pt;}
.ws13{word-spacing:404.682667pt;}
._8{margin-left:-14.680000pt;}
._21{margin-left:-7.556533pt;}
._7{margin-left:-5.388267pt;}
._6{margin-left:-4.228267pt;}
._5{margin-left:-3.325333pt;}
._3{margin-left:-2.140267pt;}
._4{margin-left:-1.190400pt;}
._0{width:1.280000pt;}
._2{width:2.720000pt;}
._11{width:3.891200pt;}
._d{width:4.953600pt;}
._a{width:6.127200pt;}
._9{width:7.060000pt;}
._b{width:8.119200pt;}
._c{width:9.073867pt;}
._e{width:10.315733pt;}
._23{width:11.739467pt;}
._f{width:13.376000pt;}
._10{width:14.688267pt;}
._13{width:16.086667pt;}
._17{width:17.084800pt;}
._12{width:17.986667pt;}
._14{width:18.929067pt;}
._15{width:20.015200pt;}
._16{width:21.308533pt;}
._1c{width:22.336267pt;}
._1d{width:24.097067pt;}
._1e{width:25.074933pt;}
._19{width:26.539200pt;}
._18{width:27.542400pt;}
._24{width:28.512000pt;}
._1a{width:29.949067pt;}
._20{width:35.816267pt;}
._22{width:43.786133pt;}
._1f{width:63.272533pt;}
._1b{width:413.102933pt;}
._1{width:424.046933pt;}
.fs6{font-size:26.666667pt;}
.fsa{font-size:32.000000pt;}
.fs8{font-size:32.648000pt;}
.fs0{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs5{font-size:50.677867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.fs4{font-size:133.333333pt;}
.fs7{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:12.468000pt;}
.y1{bottom:45.133867pt;}
.yc0{bottom:45.300667pt;}
.y3{bottom:45.619333pt;}
.ye4{bottom:85.488800pt;}
.y87{bottom:85.706667pt;}
.y89{bottom:89.186400pt;}
.y144{bottom:89.832533pt;}
.yf9{bottom:90.632533pt;}
.ybe{bottom:90.916000pt;}
.y11d{bottom:92.144267pt;}
.y8c{bottom:94.054267pt;}
.yfc{bottom:95.839600pt;}
.ye3{bottom:98.288800pt;}
.y166{bottom:101.730667pt;}
.y55{bottom:105.554800pt;}
.y143{bottom:106.632533pt;}
.yf8{bottom:107.432533pt;}
.ybd{bottom:107.716000pt;}
.y2a{bottom:108.094533pt;}
.y11c{bottom:108.944400pt;}
.y165{bottom:113.997333pt;}
.ye5{bottom:114.880400pt;}
.y54{bottom:123.154800pt;}
.y142{bottom:123.432533pt;}
.yf7{bottom:124.232533pt;}
.ybc{bottom:124.516000pt;}
.y29{bottom:124.534533pt;}
.y11b{bottom:125.744400pt;}
.y164{bottom:126.264000pt;}
.y163{bottom:138.530667pt;}
.y141{bottom:140.232533pt;}
.y53{bottom:140.754800pt;}
.y28{bottom:140.974533pt;}
.yf6{bottom:141.032533pt;}
.ybb{bottom:141.316000pt;}
.y11a{bottom:142.544267pt;}
.y162{bottom:150.797333pt;}
.y140{bottom:157.032533pt;}
.yf5{bottom:157.832533pt;}
.yba{bottom:158.116000pt;}
.y52{bottom:158.354800pt;}
.y11f{bottom:159.344267pt;}
.y161{bottom:163.064000pt;}
.y13f{bottom:173.832533pt;}
.y27{bottom:173.854533pt;}
.yf4{bottom:174.632533pt;}
.yb9{bottom:174.916000pt;}
.y160{bottom:175.330667pt;}
.y51{bottom:175.954800pt;}
.y119{bottom:176.144267pt;}
.y15f{bottom:187.597333pt;}
.y13e{bottom:190.632533pt;}
.yf3{bottom:191.432533pt;}
.yb8{bottom:191.716000pt;}
.y11e{bottom:192.944400pt;}
.y50{bottom:193.554800pt;}
.y15e{bottom:199.864000pt;}
.y26{bottom:206.734533pt;}
.y13d{bottom:207.432533pt;}
.yf2{bottom:208.232533pt;}
.yb7{bottom:208.516000pt;}
.y118{bottom:209.744400pt;}
.y4f{bottom:211.154800pt;}
.y15d{bottom:212.130667pt;}
.y25{bottom:223.174533pt;}
.y13c{bottom:224.232533pt;}
.y15c{bottom:224.397333pt;}
.yf1{bottom:225.032533pt;}
.yb6{bottom:225.316000pt;}
.y117{bottom:226.544267pt;}
.y15b{bottom:236.664000pt;}
.y24{bottom:239.614533pt;}
.y13b{bottom:241.032533pt;}
.yf0{bottom:241.832533pt;}
.yb5{bottom:242.116000pt;}
.y116{bottom:243.344267pt;}
.y4e{bottom:246.354800pt;}
.y15a{bottom:248.930667pt;}
.y23{bottom:256.054533pt;}
.y13a{bottom:257.832533pt;}
.yef{bottom:258.632533pt;}
.yb4{bottom:258.916000pt;}
.y115{bottom:260.144267pt;}
.y159{bottom:261.197333pt;}
.y4d{bottom:263.954800pt;}
.y158{bottom:273.464000pt;}
.y139{bottom:274.632533pt;}
.yee{bottom:275.432533pt;}
.yb3{bottom:275.716000pt;}
.y114{bottom:276.944400pt;}
.y6f{bottom:278.723467pt;}
.y85{bottom:279.119733pt;}
.y4c{bottom:281.554800pt;}
.y157{bottom:285.730667pt;}
.y22{bottom:288.934533pt;}
.y138{bottom:291.432533pt;}
.yed{bottom:292.232533pt;}
.yb2{bottom:292.516000pt;}
.y113{bottom:293.744400pt;}
.y156{bottom:297.997333pt;}
.y4b{bottom:299.154800pt;}
.y6e{bottom:300.723467pt;}
.y84{bottom:305.119733pt;}
.y137{bottom:308.232533pt;}
.yec{bottom:309.032533pt;}
.yb1{bottom:309.316000pt;}
.y155{bottom:310.264000pt;}
.y112{bottom:310.544400pt;}
.y21{bottom:321.814533pt;}
.y154{bottom:322.530667pt;}
.y6d{bottom:322.723467pt;}
.y136{bottom:325.032533pt;}
.yeb{bottom:325.832533pt;}
.yb0{bottom:326.116000pt;}
.y111{bottom:327.344400pt;}
.y83{bottom:329.519733pt;}
.y4a{bottom:334.354800pt;}
.y153{bottom:334.797333pt;}
.y20{bottom:338.254533pt;}
.y135{bottom:341.832533pt;}
.yea{bottom:342.632533pt;}
.yaf{bottom:342.916000pt;}
.y110{bottom:344.144267pt;}
.y6c{bottom:344.723467pt;}
.yfd{bottom:345.385867pt;}
.y152{bottom:347.064000pt;}
.y49{bottom:351.954800pt;}
.y1f{bottom:354.694533pt;}
.y134{bottom:358.632533pt;}
.y151{bottom:359.330667pt;}
.ye9{bottom:359.432533pt;}
.yae{bottom:359.716000pt;}
.y10f{bottom:360.944400pt;}
.y48{bottom:369.554800pt;}
.y150{bottom:371.597333pt;}
.y133{bottom:375.432533pt;}
.ye8{bottom:376.232533pt;}
.ybf{bottom:376.516000pt;}
.y10e{bottom:377.744267pt;}
.y82{bottom:378.319733pt;}
.y14f{bottom:383.864000pt;}
.y47{bottom:387.154800pt;}
.y1e{bottom:387.574533pt;}
.y6b{bottom:388.723467pt;}
.y132{bottom:392.232533pt;}
.ye7{bottom:393.032533pt;}
.yad{bottom:393.316000pt;}
.y10d{bottom:394.544400pt;}
.y14e{bottom:396.130667pt;}
.y1d{bottom:404.014533pt;}
.y46{bottom:404.754800pt;}
.y14d{bottom:408.397333pt;}
.y131{bottom:409.032533pt;}
.ye6{bottom:409.832533pt;}
.y6a{bottom:410.723467pt;}
.y10c{bottom:411.344267pt;}
.y14c{bottom:420.664000pt;}
.y45{bottom:422.354800pt;}
.y130{bottom:425.832533pt;}
.ye2{bottom:426.632533pt;}
.y81{bottom:427.119733pt;}
.y10b{bottom:428.144267pt;}
.y69{bottom:432.723467pt;}
.y14b{bottom:432.930667pt;}
.y1c{bottom:436.894533pt;}
.y44{bottom:439.954800pt;}
.y12f{bottom:442.632533pt;}
.ye1{bottom:443.432533pt;}
.y10a{bottom:444.944400pt;}
.y14a{bottom:445.197333pt;}
.y80{bottom:451.519733pt;}
.y1b{bottom:453.334533pt;}
.y149{bottom:457.464000pt;}
.y43{bottom:457.554800pt;}
.yac{bottom:459.275867pt;}
.y12e{bottom:459.432533pt;}
.ye0{bottom:460.232533pt;}
.y109{bottom:461.744267pt;}
.y148{bottom:469.730667pt;}
.y1a{bottom:469.774533pt;}
.y42{bottom:475.154800pt;}
.y7f{bottom:475.919733pt;}
.yab{bottom:476.075867pt;}
.y12d{bottom:476.232533pt;}
.y68{bottom:476.723467pt;}
.ydf{bottom:477.032533pt;}
.y108{bottom:478.544400pt;}
.yfa{bottom:490.173200pt;}
.y41{bottom:492.754800pt;}
.yaa{bottom:492.875867pt;}
.y12c{bottom:493.032533pt;}
.yde{bottom:493.832533pt;}
.y147{bottom:494.264000pt;}
.y107{bottom:495.344267pt;}
.y67{bottom:498.723467pt;}
.y7e{bottom:500.319733pt;}
.y19{bottom:502.654533pt;}
.ya9{bottom:509.675867pt;}
.y12b{bottom:509.832533pt;}
.ydd{bottom:510.632533pt;}
.y106{bottom:512.144267pt;}
.y18{bottom:519.094533pt;}
.y66{bottom:520.723467pt;}
.y7d{bottom:524.719733pt;}
.ya8{bottom:526.475867pt;}
.y12a{bottom:526.632533pt;}
.ydc{bottom:527.432533pt;}
.y40{bottom:527.954800pt;}
.y105{bottom:528.944400pt;}
.y17{bottom:535.534533pt;}
.y65{bottom:542.723467pt;}
.ya7{bottom:543.275867pt;}
.y129{bottom:543.432533pt;}
.ydb{bottom:544.232533pt;}
.y3f{bottom:545.554800pt;}
.y104{bottom:545.744400pt;}
.y16{bottom:551.974533pt;}
.ya6{bottom:560.075867pt;}
.y128{bottom:560.232533pt;}
.yda{bottom:561.032533pt;}
.y103{bottom:562.544400pt;}
.y7c{bottom:573.519733pt;}
.ya5{bottom:576.875867pt;}
.y127{bottom:577.032533pt;}
.yd9{bottom:577.832533pt;}
.y102{bottom:579.344267pt;}
.y3e{bottom:580.754800pt;}
.y15{bottom:584.854533pt;}
.y64{bottom:586.723467pt;}
.ya4{bottom:593.675867pt;}
.y126{bottom:593.832533pt;}
.yd8{bottom:594.632533pt;}
.y101{bottom:596.144267pt;}
.y3d{bottom:598.354800pt;}
.y14{bottom:601.294533pt;}
.ya3{bottom:610.475867pt;}
.y125{bottom:610.632533pt;}
.yd7{bottom:611.432533pt;}
.y100{bottom:612.944400pt;}
.y13{bottom:617.734533pt;}
.y7b{bottom:622.319733pt;}
.ya2{bottom:627.275867pt;}
.y124{bottom:627.432533pt;}
.yd6{bottom:628.232533pt;}
.yff{bottom:629.744400pt;}
.y63{bottom:630.723467pt;}
.y3c{bottom:633.554800pt;}
.ya1{bottom:644.075867pt;}
.y123{bottom:644.232533pt;}
.yd5{bottom:645.032533pt;}
.yfe{bottom:646.544400pt;}
.y7a{bottom:646.719733pt;}
.y12{bottom:650.614533pt;}
.y3b{bottom:651.154800pt;}
.y62{bottom:652.723467pt;}
.ya0{bottom:660.875867pt;}
.y122{bottom:661.032533pt;}
.yd4{bottom:661.832533pt;}
.y11{bottom:667.054533pt;}
.y3a{bottom:668.754800pt;}
.y120{bottom:670.887333pt;}
.y79{bottom:671.119733pt;}
.y61{bottom:674.723467pt;}
.y9f{bottom:677.675867pt;}
.yd3{bottom:678.632533pt;}
.y10{bottom:683.494400pt;}
.y39{bottom:686.354800pt;}
.y121{bottom:687.321333pt;}
.y145{bottom:687.987200pt;}
.yd2{bottom:695.432533pt;}
.y78{bottom:695.519733pt;}
.yfb{bottom:696.564267pt;}
.y146{bottom:703.833733pt;}
.y38{bottom:703.954800pt;}
.y8d{bottom:707.177067pt;}
.y9e{bottom:711.275867pt;}
.yd1{bottom:712.232533pt;}
.yf{bottom:716.374533pt;}
.y60{bottom:718.723467pt;}
.y37{bottom:721.554800pt;}
.y9d{bottom:728.075867pt;}
.yd0{bottom:729.032533pt;}
.y5f{bottom:740.723467pt;}
.y77{bottom:744.319867pt;}
.ycf{bottom:745.832533pt;}
.ye{bottom:749.254533pt;}
.y36{bottom:756.754800pt;}
.y9c{bottom:761.675867pt;}
.yce{bottom:762.632533pt;}
.y5e{bottom:762.723467pt;}
.yd{bottom:765.694533pt;}
.y76{bottom:768.719733pt;}
.y35{bottom:774.354800pt;}
.y8e{bottom:776.560133pt;}
.y9b{bottom:778.475867pt;}
.ycd{bottom:779.432533pt;}
.yc{bottom:782.134533pt;}
.y5d{bottom:784.723467pt;}
.y34{bottom:791.954800pt;}
.y75{bottom:793.119733pt;}
.y9a{bottom:795.275867pt;}
.ycc{bottom:796.232533pt;}
.y33{bottom:809.554800pt;}
.y99{bottom:812.075867pt;}
.ycb{bottom:813.032533pt;}
.yb{bottom:815.014533pt;}
.y32{bottom:827.154800pt;}
.y5c{bottom:828.723467pt;}
.y98{bottom:828.875867pt;}
.yca{bottom:829.832533pt;}
.ya{bottom:831.454533pt;}
.y74{bottom:841.919733pt;}
.y31{bottom:844.754800pt;}
.y97{bottom:845.675867pt;}
.yc9{bottom:846.632533pt;}
.y9{bottom:847.894533pt;}
.y5b{bottom:850.723467pt;}
.y8b{bottom:862.071600pt;}
.y30{bottom:862.354800pt;}
.y96{bottom:862.475867pt;}
.yc8{bottom:863.432533pt;}
.y73{bottom:866.319733pt;}
.y5a{bottom:872.723467pt;}
.y95{bottom:879.275867pt;}
.y2f{bottom:879.954800pt;}
.yc7{bottom:880.232533pt;}
.y8{bottom:880.774533pt;}
.y72{bottom:890.719867pt;}
.y59{bottom:894.723467pt;}
.y94{bottom:896.075867pt;}
.yc6{bottom:897.032533pt;}
.y7{bottom:897.214533pt;}
.y2e{bottom:897.554800pt;}
.y8a{bottom:912.738267pt;}
.y93{bottom:912.875867pt;}
.y6{bottom:913.654533pt;}
.yc5{bottom:913.832533pt;}
.y71{bottom:915.119733pt;}
.y2d{bottom:915.154800pt;}
.y92{bottom:929.675867pt;}
.yc4{bottom:930.632533pt;}
.y2c{bottom:932.754800pt;}
.y58{bottom:938.723467pt;}
.y70{bottom:939.519733pt;}
.y91{bottom:946.475867pt;}
.y5{bottom:946.534533pt;}
.yc3{bottom:947.432533pt;}
.y2b{bottom:950.354800pt;}
.y90{bottom:963.275867pt;}
.yc2{bottom:964.232533pt;}
.yc1{bottom:981.032533pt;}
.y57{bottom:988.518933pt;}
.y86{bottom:1003.653867pt;}
.y56{bottom:1004.337067pt;}
.y4{bottom:1035.370133pt;}
.y2{bottom:1035.790133pt;}
.y8f{bottom:1035.992667pt;}
.hc{height:24.000000pt;}
.he{height:26.237333pt;}
.h14{height:34.432000pt;}
.h18{height:37.674667pt;}
.h4{height:38.400000pt;}
.h2{height:39.482133pt;}
.h12{height:39.520000pt;}
.h8{height:40.490667pt;}
.hf{height:42.250000pt;}
.h13{height:44.738667pt;}
.h16{height:45.552000pt;}
.h15{height:47.930667pt;}
.h17{height:47.957333pt;}
.h11{height:48.234667pt;}
.h7{height:48.853333pt;}
.hb{height:53.211760pt;}
.h10{height:56.949333pt;}
.h6{height:59.946667pt;}
.h3{height:69.231771pt;}
.h5{height:79.882812pt;}
.h9{height:138.933333pt;}
.hd{height:159.765625pt;}
.ha{height:164.021333pt;}
.h1{height:1118.666667pt;}
.h0{height:1118.740000pt;}
.w2{width:660.084000pt;}
.w1{width:797.333333pt;}
.w0{width:797.480000pt;}
.x0{left:0.000000pt;}
.x4b{left:21.742400pt;}
.x4{left:68.031600pt;}
.x58{left:70.603333pt;}
.x4c{left:72.098133pt;}
.x56{left:73.125467pt;}
.x3{left:75.861333pt;}
.x24{left:80.705467pt;}
.x5a{left:84.864133pt;}
.x52{left:86.929200pt;}
.x26{left:94.307467pt;}
.x2f{left:96.420000pt;}
.x5e{left:99.023600pt;}
.x35{left:101.658133pt;}
.x29{left:102.977200pt;}
.x2c{left:104.684400pt;}
.x4e{left:105.973867pt;}
.x2a{left:108.137867pt;}
.x37{left:109.570400pt;}
.x28{left:110.924000pt;}
.x32{left:115.997467pt;}
.x31{left:120.755867pt;}
.x33{left:125.397333pt;}
.x5b{left:136.030533pt;}
.x38{left:141.243867pt;}
.x50{left:152.930133pt;}
.x36{left:169.264267pt;}
.x34{left:177.617067pt;}
.x27{left:182.476533pt;}
.x39{left:190.070133pt;}
.x30{left:195.556800pt;}
.x4d{left:201.774667pt;}
.x2e{left:211.236267pt;}
.x2d{left:212.955867pt;}
.x2b{left:230.075600pt;}
.x5d{left:244.471600pt;}
.x53{left:259.921467pt;}
.x5c{left:262.753733pt;}
.x4a{left:279.308400pt;}
.x54{left:294.803200pt;}
.x19{left:312.061200pt;}
.x9{left:313.931733pt;}
.x14{left:315.378400pt;}
.x15{left:317.251600pt;}
.x1c{left:318.711467pt;}
.xf{left:321.471467pt;}
.x22{left:322.537467pt;}
.x18{left:327.971067pt;}
.x1f{left:329.744800pt;}
.x6{left:331.731600pt;}
.xb{left:332.684533pt;}
.x51{left:337.776400pt;}
.x20{left:346.699867pt;}
.x1a{left:360.650800pt;}
.x10{left:367.703867pt;}
.x1d{left:375.230667pt;}
.x25{left:381.507733pt;}
.xe{left:389.996133pt;}
.x12{left:406.096533pt;}
.x7{left:413.736533pt;}
.x43{left:416.871200pt;}
.x4f{left:419.219200pt;}
.x21{left:421.666133pt;}
.x3a{left:426.670933pt;}
.xc{left:428.622800pt;}
.x3b{left:429.604133pt;}
.x16{left:430.642533pt;}
.x3f{left:433.764000pt;}
.x5{left:437.097733pt;}
.x47{left:438.160933pt;}
.x13{left:439.483600pt;}
.x1e{left:441.990000pt;}
.x11{left:447.836400pt;}
.x48{left:450.290533pt;}
.x1b{left:451.869733pt;}
.x17{left:456.349600pt;}
.xd{left:460.016133pt;}
.x44{left:469.984933pt;}
.x23{left:472.822000pt;}
.xa{left:475.829067pt;}
.x45{left:476.804800pt;}
.x41{left:493.190667pt;}
.x8{left:494.668400pt;}
.x3c{left:498.510800pt;}
.x42{left:501.057467pt;}
.x3e{left:503.070533pt;}
.x46{left:508.050533pt;}
.x1{left:514.996000pt;}
.x55{left:521.574800pt;}
.x40{left:528.522667pt;}
.x3d{left:529.842667pt;}
.x57{left:540.472400pt;}
.x49{left:547.555867pt;}
.x2{left:608.504000pt;}
.x59{left:728.209733pt;}
}




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