
    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_ae282cdbb9c4c2c93cc00be8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_a7073b03e343a375dde2af5a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_3947261f85725f93b66101a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.866000;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_fb73aad2f0f7f3dd8f7003f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.151000;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_7618dc1736df9cb6dd25693a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984048;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_dd57c2b91467b44d04de1d56.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984000;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_2aa75a113e2a8b09c069e210.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.689453;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_d630df3d06b175e8fce412ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984000;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_4b91a8d343e17d7840c845c6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.984000;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_c771fd1e8b0734c0d20c6310.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.984000;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_fa6d6e8858d09efd642ddac8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.984000;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_a980cb91e7f61b52a9d54e02.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.984000;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_1c6fc5594d4059e50ce1161f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.652000;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_abb987b2ee295f2348417709.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.984000;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_029dc37fba9d6179f0d2ef4e.woff2')format("woff");}.fff{font-family:fff;line-height:0.984000;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_9222561c26d6cb5f7243db39.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.000000;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_e3a17369be657a07c931e506.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.922000;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_afbdc762a1db0455e250c18a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.913000;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_3d24bdaa86df3710372a3194.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_1a9a8dd69c996d77b9501a8e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.725000;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_ba06489579ad84be577d5739.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.984000;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_a619e82c0b66c01022ba8621.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.984000;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_2642cd476bc4de0ba7f968cf.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.984000;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_b2b40a250028b5969655c3d1.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.103000;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_5d9d15ec45a204464d781fc5.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.137000;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_6f4c179550a81cb2873fa3b7.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.984000;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:ff1b;src:url('chunks/assets/font_7f7b5b5753e698cd6fe07b93.woff2')format("woff");}.ff1b{font-family:ff1b;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;}
.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);}
.v2{vertical-align:-17.999993px;}
.v3{vertical-align:-2.267999px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.999993px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000540px;}
.ls5{letter-spacing:0.001140px;}
.ls0{letter-spacing:0.001680px;}
.ls4{letter-spacing:0.002220px;}
.ls3{letter-spacing:1.404359px;}
.lsa{letter-spacing:1.483139px;}
.ls9{letter-spacing:4.270318px;}
.ls8{letter-spacing:107.191157px;}
.ls6{letter-spacing:275.916490px;}
.ls7{letter-spacing:390.871044px;}
.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;}
}
.ws2{word-spacing:-29.999988px;}
.ws0{word-spacing:-26.999989px;}
.wsa{word-spacing:-17.999993px;}
.ws5{word-spacing:-16.499993px;}
.ws4{word-spacing:-15.839994px;}
.ws9{word-spacing:-14.999994px;}
.ws1{word-spacing:-13.499995px;}
.ws8{word-spacing:-12.899995px;}
.ws7{word-spacing:-12.719995px;}
.ws6{word-spacing:-8.999996px;}
.ws3{word-spacing:0.000000px;}
._20{margin-left:-12.900655px;}
._5d{margin-left:-11.626779px;}
._1c{margin-left:-8.485785px;}
._5{margin-left:-7.184288px;}
._14{margin-left:-5.642631px;}
._0{margin-left:-3.995858px;}
._2{margin-left:-2.367949px;}
._3{margin-left:-1.160151px;}
._1{width:1.108672px;}
._4{width:2.130553px;}
._6{width:3.187512px;}
._7{width:4.344627px;}
._13{width:5.678870px;}
._8{width:7.020048px;}
._9{width:8.030696px;}
._f{width:9.480135px;}
._15{width:10.539199px;}
._c{width:11.550325px;}
._d{width:13.001401px;}
._10{width:14.122740px;}
._12{width:15.443202px;}
._18{width:17.688145px;}
._11{width:19.660034px;}
._17{width:20.724256px;}
._19{width:21.726500px;}
._b{width:22.984557px;}
._a{width:24.279940px;}
._1a{width:25.540868px;}
._1b{width:26.860801px;}
._e{width:28.775724px;}
._74{width:29.790537px;}
._67{width:32.626387px;}
._16{width:34.377738px;}
._73{width:35.822167px;}
._5c{width:36.890016px;}
._7b{width:39.609596px;}
._60{width:41.568523px;}
._53{width:43.260343px;}
._6d{width:45.461442px;}
._71{width:48.659981px;}
._76{width:50.249431px;}
._6b{width:54.178178px;}
._72{width:56.158178px;}
._61{width:58.863398px;}
._5f{width:61.343435px;}
._79{width:62.461197px;}
._31{width:64.499974px;}
._68{width:66.107072px;}
._64{width:67.671741px;}
._4d{width:68.881772px;}
._69{width:71.242275px;}
._55{width:73.381771px;}
._5e{width:75.442170px;}
._28{width:76.501169px;}
._47{width:80.849968px;}
._52{width:83.099367px;}
._4f{width:86.161766px;}
._77{width:88.043825px;}
._39{width:92.518163px;}
._54{width:96.300091px;}
._51{width:98.704161px;}
._1d{width:100.175960px;}
._49{width:102.181759px;}
._66{width:104.581158px;}
._6f{width:106.915781px;}
._4b{width:108.896956px;}
._4a{width:110.848156px;}
._6c{width:113.009955px;}
._30{width:120.421152px;}
._4e{width:122.338010px;}
._70{width:125.159950px;}
._75{width:129.055148px;}
._36{width:130.501148px;}
._5a{width:135.118005px;}
._62{width:139.199944px;}
._37{width:140.279944px;}
._3b{width:142.260925px;}
._33{width:144.779942px;}
._65{width:145.921742px;}
._6e{width:147.534430px;}
._6a{width:148.919940px;}
._46{width:150.176940px;}
._24{width:156.237538px;}
._63{width:159.719936px;}
._2e{width:161.761735px;}
._59{width:163.859934px;}
._27{width:167.761133px;}
._22{width:168.958732px;}
._34{width:173.820501px;}
._2b{width:175.559930px;}
._7a{width:176.581129px;}
._2c{width:178.678429px;}
._4c{width:182.639216px;}
._2f{width:184.498126px;}
._2a{width:191.280523px;}
._50{width:199.558090px;}
._38{width:204.001501px;}
._58{width:205.198118px;}
._56{width:211.199916px;}
._78{width:217.919313px;}
._57{width:218.999312px;}
._48{width:221.009912px;}
._3a{width:229.919908px;}
._29{width:235.860506px;}
._1f{width:238.175905px;}
._2d{width:242.099543px;}
._42{width:252.599899px;}
._3e{width:255.958098px;}
._23{width:258.301097px;}
._26{width:271.740491px;}
._25{width:277.021089px;}
._45{width:310.498076px;}
._35{width:317.158073px;}
._5b{width:320.274952px;}
._40{width:326.518069px;}
._3d{width:375.661050px;}
._44{width:411.177436px;}
._3c{width:429.359828px;}
._3f{width:435.837426px;}
._41{width:439.201024px;}
._43{width:461.518015px;}
._1e{width:472.175811px;}
._32{width:575.613972px;}
._21{width:597.420961px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:25.799990px;}
.fs6{font-size:35.999986px;}
.fs7{font-size:47.999981px;}
.fs0{font-size:53.999978px;}
.fs1{font-size:59.999976px;}
.fs4{font-size:65.999974px;}
.fs5{font-size:71.999971px;}
.fs3{font-size:83.999966px;}
.y0{bottom:0.000000px;}
.y4{bottom:9.222828px;}
.y2d{bottom:9.224028px;}
.y28{bottom:67.243910px;}
.ybc{bottom:68.305909px;}
.y5d{bottom:68.307409px;}
.y6{bottom:68.874409px;}
.y2b{bottom:69.086374px;}
.y29{bottom:69.910909px;}
.y2{bottom:70.336908px;}
.y5{bottom:76.374406px;}
.y2a{bottom:76.586371px;}
.y1{bottom:108.569520px;}
.y119{bottom:114.132391px;}
.y106{bottom:114.743641px;}
.ye7{bottom:115.009891px;}
.y94{bottom:115.044391px;}
.yb7{bottom:115.255890px;}
.y86{bottom:115.864890px;}
.y59{bottom:115.865640px;}
.y1b0{bottom:115.866390px;}
.y171{bottom:116.398890px;}
.y142{bottom:116.475390px;}
.y185{bottom:123.007887px;}
.y118{bottom:132.132384px;}
.ye6{bottom:133.009883px;}
.y170{bottom:134.398883px;}
.y105{bottom:134.543633px;}
.y93{bottom:134.844383px;}
.yb6{bottom:135.055883px;}
.y85{bottom:135.664882px;}
.y58{bottom:135.665632px;}
.y1af{bottom:135.666382px;}
.y141{bottom:136.275382px;}
.y184{bottom:141.007880px;}
.y27{bottom:143.683879px;}
.y117{bottom:150.132377px;}
.ye5{bottom:151.009876px;}
.y16f{bottom:152.398876px;}
.y104{bottom:154.343625px;}
.y92{bottom:154.644375px;}
.yb5{bottom:154.855875px;}
.y84{bottom:155.464874px;}
.y57{bottom:155.465624px;}
.y1ae{bottom:155.466374px;}
.y140{bottom:156.075374px;}
.y183{bottom:159.007873px;}
.y116{bottom:168.132369px;}
.ye4{bottom:169.009869px;}
.y3{bottom:169.797600px;}
.y2c{bottom:170.222400px;}
.y16e{bottom:170.398868px;}
.y103{bottom:174.143617px;}
.y91{bottom:174.444367px;}
.yb8{bottom:174.655867px;}
.y83{bottom:175.264866px;}
.y56{bottom:175.265616px;}
.y1ad{bottom:175.266366px;}
.y13f{bottom:175.875366px;}
.y182{bottom:177.007866px;}
.y115{bottom:186.132362px;}
.ye3{bottom:187.009862px;}
.y16d{bottom:188.398861px;}
.y26{bottom:189.988111px;}
.y102{bottom:193.944359px;}
.y90{bottom:194.244359px;}
.yb4{bottom:194.455859px;}
.y181{bottom:195.007859px;}
.y82{bottom:195.064859px;}
.y55{bottom:195.065609px;}
.y1ac{bottom:195.066359px;}
.y13e{bottom:195.675358px;}
.y114{bottom:204.132355px;}
.ye2{bottom:205.009855px;}
.y25{bottom:206.188104px;}
.y16c{bottom:206.398854px;}
.y180{bottom:213.007851px;}
.y101{bottom:213.744351px;}
.y8f{bottom:214.044351px;}
.yb3{bottom:214.255851px;}
.y81{bottom:214.864851px;}
.y54{bottom:214.865601px;}
.y1ab{bottom:214.866351px;}
.y13d{bottom:215.475350px;}
.y113{bottom:222.132348px;}
.y24{bottom:222.388098px;}
.ye1{bottom:223.009847px;}
.y16b{bottom:224.398847px;}
.y100{bottom:233.544343px;}
.y8e{bottom:233.844343px;}
.yb2{bottom:234.055843px;}
.y80{bottom:234.664843px;}
.y53{bottom:234.665593px;}
.y1aa{bottom:234.666343px;}
.y13c{bottom:235.275342px;}
.y23{bottom:238.588091px;}
.y112{bottom:240.132341px;}
.ye0{bottom:241.009840px;}
.y16a{bottom:242.398840px;}
.y17f{bottom:244.507839px;}
.yff{bottom:253.344335px;}
.y8d{bottom:253.644335px;}
.yb1{bottom:253.855835px;}
.y7f{bottom:254.464835px;}
.y52{bottom:254.465585px;}
.y1a9{bottom:254.466335px;}
.y22{bottom:254.788085px;}
.y13b{bottom:255.075335px;}
.y111{bottom:258.132333px;}
.ydf{bottom:259.009833px;}
.y169{bottom:260.398832px;}
.y17e{bottom:262.507832px;}
.y21{bottom:270.988078px;}
.yfe{bottom:273.144327px;}
.y8c{bottom:273.444327px;}
.yb0{bottom:273.655827px;}
.y7e{bottom:274.264827px;}
.y51{bottom:274.265577px;}
.y1a8{bottom:274.266327px;}
.y13a{bottom:274.875327px;}
.y110{bottom:276.132326px;}
.yde{bottom:277.009826px;}
.y168{bottom:278.398825px;}
.y20{bottom:287.188072px;}
.y17d{bottom:289.507821px;}
.yfd{bottom:292.944319px;}
.y8b{bottom:293.244319px;}
.yaf{bottom:293.455819px;}
.y7d{bottom:294.064819px;}
.y50{bottom:294.065569px;}
.y1a7{bottom:294.066319px;}
.y139{bottom:294.675319px;}
.ydd{bottom:295.009819px;}
.y167{bottom:296.398818px;}
.y1f{bottom:303.388065px;}
.y17c{bottom:305.707814px;}
.yfc{bottom:312.744311px;}
.ydc{bottom:313.009811px;}
.y8a{bottom:313.044311px;}
.yae{bottom:313.255811px;}
.y7c{bottom:313.864811px;}
.y4f{bottom:313.865561px;}
.y1a6{bottom:313.866311px;}
.y166{bottom:314.398811px;}
.y138{bottom:314.475311px;}
.y1e{bottom:319.588059px;}
.ydb{bottom:331.009804px;}
.yfb{bottom:332.544304px;}
.y89{bottom:332.844303px;}
.yad{bottom:333.055803px;}
.y7b{bottom:333.664803px;}
.y4e{bottom:333.665553px;}
.y1a5{bottom:333.666303px;}
.y137{bottom:334.275303px;}
.y1d{bottom:335.788052px;}
.y19a{bottom:343.147799px;}
.y87{bottom:344.465549px;}
.yda{bottom:349.009797px;}
.y1c{bottom:351.988046px;}
.yfa{bottom:352.344296px;}
.y88{bottom:352.644296px;}
.yac{bottom:352.855795px;}
.y7a{bottom:353.464795px;}
.y4d{bottom:353.465545px;}
.y1a4{bottom:353.466295px;}
.y136{bottom:354.075295px;}
.y199{bottom:362.947791px;}
.y1b{bottom:368.188039px;}
.yf9{bottom:372.144288px;}
.yab{bottom:372.655788px;}
.y79{bottom:373.264787px;}
.y4c{bottom:373.265537px;}
.y1a3{bottom:373.266287px;}
.y135{bottom:373.875287px;}
.yd9{bottom:377.509786px;}
.y198{bottom:382.747783px;}
.y1a{bottom:384.388033px;}
.yf8{bottom:391.944280px;}
.yaa{bottom:392.455780px;}
.y78{bottom:393.064779px;}
.y4b{bottom:393.065529px;}
.y1a2{bottom:393.066279px;}
.y134{bottom:393.675279px;}
.ya6{bottom:395.127279px;}
.y19{bottom:400.588026px;}
.y197{bottom:402.547776px;}
.ya5{bottom:411.327272px;}
.yd8{bottom:411.708272px;}
.yf7{bottom:411.744272px;}
.ya9{bottom:412.255772px;}
.y77{bottom:412.864771px;}
.y4a{bottom:412.865521px;}
.y1a1{bottom:412.866271px;}
.y133{bottom:413.475271px;}
.y18{bottom:416.788020px;}
.y196{bottom:422.347768px;}
.ya4{bottom:427.527266px;}
.yd7{bottom:427.908265px;}
.yf6{bottom:431.544264px;}
.ya8{bottom:432.055764px;}
.y76{bottom:432.664764px;}
.y49{bottom:432.665514px;}
.y1a0{bottom:432.666264px;}
.y17{bottom:432.988013px;}
.y132{bottom:433.275263px;}
.y195{bottom:442.147760px;}
.ya3{bottom:443.727259px;}
.yd6{bottom:444.108259px;}
.y16{bottom:449.188007px;}
.yf5{bottom:451.344256px;}
.ya7{bottom:451.855756px;}
.y75{bottom:452.464756px;}
.y48{bottom:452.465506px;}
.y19f{bottom:452.466256px;}
.y131{bottom:453.075255px;}
.ya2{bottom:459.927253px;}
.y194{bottom:461.947752px;}
.y15{bottom:465.388000px;}
.yf4{bottom:471.144248px;}
.y74{bottom:472.264748px;}
.y47{bottom:472.265498px;}
.y19e{bottom:472.266248px;}
.y130{bottom:472.875247px;}
.ya1{bottom:476.127246px;}
.ycc{bottom:478.714745px;}
.y14{bottom:481.587244px;}
.y193{bottom:481.747744px;}
.yf3{bottom:490.944240px;}
.y125{bottom:490.945740px;}
.y73{bottom:492.064740px;}
.y46{bottom:492.065490px;}
.y19d{bottom:492.066240px;}
.ya0{bottom:492.327240px;}
.y12f{bottom:492.675240px;}
.y13{bottom:497.787237px;}
.ycb{bottom:498.514737px;}
.ybb{bottom:500.043237px;}
.y192{bottom:501.547736px;}
.y9f{bottom:508.527233px;}
.yf2{bottom:510.744232px;}
.y124{bottom:510.745732px;}
.y72{bottom:511.864732px;}
.y45{bottom:511.865482px;}
.y19c{bottom:511.866232px;}
.y12{bottom:513.987231px;}
.yba{bottom:516.243230px;}
.yca{bottom:518.314729px;}
.y191{bottom:521.347728px;}
.y9e{bottom:524.727227px;}
.y11{bottom:530.187224px;}
.yf1{bottom:530.544224px;}
.y123{bottom:530.545724px;}
.y71{bottom:531.664724px;}
.y44{bottom:531.665474px;}
.y19b{bottom:531.666224px;}
.y12e{bottom:532.275224px;}
.yb9{bottom:532.443224px;}
.yc9{bottom:538.114721px;}
.y9d{bottom:540.927220px;}
.y190{bottom:541.147720px;}
.y10{bottom:546.387218px;}
.yf0{bottom:550.344216px;}
.y122{bottom:550.345716px;}
.y70{bottom:551.464716px;}
.y43{bottom:551.465466px;}
.y158{bottom:551.466216px;}
.y12d{bottom:552.075216px;}
.y9c{bottom:557.127214px;}
.yc8{bottom:557.914713px;}
.y18f{bottom:560.947712px;}
.yf{bottom:562.587212px;}
.yef{bottom:570.144209px;}
.y121{bottom:570.145709px;}
.y6f{bottom:571.264708px;}
.y42{bottom:571.265458px;}
.y157{bottom:571.266208px;}
.y12c{bottom:571.875208px;}
.y9b{bottom:573.327207px;}
.yc7{bottom:577.714705px;}
.ye{bottom:578.787205px;}
.y18e{bottom:580.747704px;}
.y9a{bottom:589.527201px;}
.yee{bottom:589.944201px;}
.y120{bottom:589.945701px;}
.y6e{bottom:591.064700px;}
.y41{bottom:591.065450px;}
.y156{bottom:591.066200px;}
.y12b{bottom:591.675200px;}
.yd{bottom:594.987199px;}
.yc6{bottom:597.514698px;}
.y18d{bottom:600.547696px;}
.y99{bottom:605.727194px;}
.yed{bottom:609.744193px;}
.y11f{bottom:609.745693px;}
.y6d{bottom:610.864692px;}
.y40{bottom:610.865442px;}
.y155{bottom:610.866192px;}
.y12a{bottom:611.475192px;}
.yc5{bottom:617.314690px;}
.y18c{bottom:620.347688px;}
.y98{bottom:621.927188px;}
.yc{bottom:627.387186px;}
.yec{bottom:629.544185px;}
.y11e{bottom:629.545685px;}
.y6c{bottom:630.664684px;}
.y3f{bottom:630.665434px;}
.y154{bottom:630.666184px;}
.y129{bottom:631.275184px;}
.yc4{bottom:637.114682px;}
.y97{bottom:638.127181px;}
.y18b{bottom:640.147681px;}
.yb{bottom:643.587179px;}
.yeb{bottom:649.344177px;}
.y11d{bottom:649.345677px;}
.y6b{bottom:650.464676px;}
.y3e{bottom:650.465426px;}
.y153{bottom:650.466176px;}
.y128{bottom:651.075176px;}
.y96{bottom:654.327175px;}
.yc3{bottom:656.914674px;}
.y18a{bottom:659.947673px;}
.yea{bottom:669.144169px;}
.y11c{bottom:669.145669px;}
.y6a{bottom:670.264668px;}
.y3d{bottom:670.265418px;}
.y152{bottom:670.266168px;}
.y95{bottom:670.527168px;}
.y127{bottom:670.875168px;}
.yc2{bottom:676.714666px;}
.ya{bottom:679.587165px;}
.y189{bottom:679.747665px;}
.ye9{bottom:688.944161px;}
.y11b{bottom:688.945661px;}
.y69{bottom:690.064661px;}
.y3c{bottom:690.065411px;}
.y151{bottom:690.066161px;}
.y126{bottom:690.675160px;}
.yc1{bottom:696.514658px;}
.y188{bottom:699.547657px;}
.ye8{bottom:708.744153px;}
.y11a{bottom:708.745653px;}
.y68{bottom:709.864653px;}
.y3b{bottom:709.865403px;}
.y150{bottom:709.866153px;}
.yc0{bottom:716.314650px;}
.y187{bottom:719.347649px;}
.y9{bottom:720.987148px;}
.y160{bottom:729.444145px;}
.y67{bottom:729.664645px;}
.y3a{bottom:729.665395px;}
.y14f{bottom:729.666145px;}
.ybf{bottom:736.114642px;}
.y186{bottom:739.147641px;}
.y8{bottom:746.187138px;}
.y15f{bottom:747.444138px;}
.y66{bottom:749.464637px;}
.y39{bottom:749.465387px;}
.y14e{bottom:749.466137px;}
.ybe{bottom:755.914634px;}
.y10f{bottom:757.476134px;}
.y15e{bottom:765.444130px;}
.y65{bottom:769.264629px;}
.y38{bottom:769.265379px;}
.y14d{bottom:769.266129px;}
.y7{bottom:771.387128px;}
.y10e{bottom:775.476126px;}
.ybd{bottom:775.714626px;}
.y17b{bottom:777.739625px;}
.y15d{bottom:783.444123px;}
.y64{bottom:789.064621px;}
.y37{bottom:789.065371px;}
.y14c{bottom:789.066121px;}
.y10d{bottom:793.476119px;}
.y17a{bottom:795.739618px;}
.y15c{bottom:801.444116px;}
.y63{bottom:808.864613px;}
.y36{bottom:808.865363px;}
.y14b{bottom:808.866113px;}
.y10c{bottom:811.476112px;}
.y179{bottom:813.739611px;}
.y15b{bottom:819.444109px;}
.yd5{bottom:826.776106px;}
.y62{bottom:828.664605px;}
.y35{bottom:828.665355px;}
.y14a{bottom:828.666105px;}
.y10b{bottom:829.476105px;}
.y178{bottom:831.739604px;}
.yd4{bottom:844.776099px;}
.y10a{bottom:847.476098px;}
.y61{bottom:848.464597px;}
.y34{bottom:848.465347px;}
.y149{bottom:848.466097px;}
.y177{bottom:849.739597px;}
.y15a{bottom:853.945595px;}
.yd3{bottom:862.776091px;}
.y176{bottom:867.739589px;}
.y60{bottom:868.264589px;}
.y33{bottom:868.265339px;}
.y148{bottom:868.266089px;}
.y159{bottom:870.145589px;}
.yd2{bottom:880.776084px;}
.y109{bottom:881.976084px;}
.y5f{bottom:888.064581px;}
.y32{bottom:888.065331px;}
.y147{bottom:888.066081px;}
.y175{bottom:899.239577px;}
.y108{bottom:899.976077px;}
.yd1{bottom:901.776076px;}
.y165{bottom:904.639575px;}
.y5e{bottom:907.864573px;}
.y31{bottom:907.865323px;}
.y146{bottom:907.866073px;}
.y174{bottom:917.239570px;}
.yd0{bottom:919.776069px;}
.y164{bottom:920.839568px;}
.y30{bottom:927.664566px;}
.y5c{bottom:927.665316px;}
.y145{bottom:927.666066px;}
.y107{bottom:935.976062px;}
.y163{bottom:937.039562px;}
.ycf{bottom:937.776061px;}
.y2f{bottom:947.464558px;}
.y5b{bottom:947.465308px;}
.y144{bottom:947.466058px;}
.yce{bottom:952.176056px;}
.y162{bottom:953.239555px;}
.y173{bottom:953.241055px;}
.y2e{bottom:967.264550px;}
.y5a{bottom:967.265300px;}
.y143{bottom:967.266050px;}
.ycd{bottom:968.376049px;}
.y161{bottom:969.439549px;}
.y172{bottom:969.441049px;}
.h10{height:0.000000px;}
.h5{height:23.968190px;}
.h3{height:29.764620px;}
.h9{height:38.609985px;}
.ha{height:38.612556px;}
.h14{height:40.229984px;}
.h4{height:42.179983px;}
.h2{height:42.899983px;}
.h13{height:42.902840px;}
.h12{height:44.279982px;}
.h11{height:44.699982px;}
.h15{height:46.388231px;}
.h8{height:47.189981px;}
.he{height:47.192981px;}
.hc{height:47.193124px;}
.hb{height:48.656231px;}
.h16{height:55.043978px;}
.hf{height:56.609977px;}
.h17{height:57.287977px;}
.h7{height:60.059976px;}
.h6{height:60.063976px;}
.hd{height:65.189974px;}
.h1{height:1045.983600px;}
.h0{height:1263.000000px;}
.w2{width:72.284040px;}
.w1{width:748.346400px;}
.w0{width:892.500000px;}
.x4{left:-79.441915px;}
.x0{left:0.000000px;}
.xe{left:65.692955px;}
.x2{left:66.756004px;}
.xf{left:67.819204px;}
.x1{left:72.046440px;}
.xb{left:83.762998px;}
.x9{left:98.645992px;}
.x3{left:367.984800px;}
.x5{left:372.046382px;}
.x16{left:382.001728px;}
.xc{left:383.173108px;}
.x12{left:385.246377px;}
.x14{left:387.353276px;}
.x15{left:399.010372px;}
.xd{left:400.180401px;}
.x13{left:402.255020px;}
.xa{left:446.857200px;}
.x10{left:486.850336px;}
.x6{left:490.027335px;}
.x8{left:542.720814px;}
.x7{left:661.964766px;}
.x17{left:663.094266px;}
.x11{left:664.157766px;}
@media print{
.v2{vertical-align:-15.999994pt;}
.v3{vertical-align:-2.015999pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.999994pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000480pt;}
.ls5{letter-spacing:0.001013pt;}
.ls0{letter-spacing:0.001493pt;}
.ls4{letter-spacing:0.001973pt;}
.ls3{letter-spacing:1.248320pt;}
.lsa{letter-spacing:1.318346pt;}
.ls9{letter-spacing:3.795838pt;}
.ls8{letter-spacing:95.281029pt;}
.ls6{letter-spacing:245.259102pt;}
.ls7{letter-spacing:347.440928pt;}
.ws2{word-spacing:-26.666656pt;}
.ws0{word-spacing:-23.999990pt;}
.wsa{word-spacing:-15.999994pt;}
.ws5{word-spacing:-14.666661pt;}
.ws4{word-spacing:-14.079994pt;}
.ws9{word-spacing:-13.333328pt;}
.ws1{word-spacing:-11.999995pt;}
.ws8{word-spacing:-11.466662pt;}
.ws7{word-spacing:-11.306662pt;}
.ws6{word-spacing:-7.999997pt;}
.ws3{word-spacing:0.000000pt;}
._20{margin-left:-11.467249pt;}
._5d{margin-left:-10.334914pt;}
._1c{margin-left:-7.542920pt;}
._5{margin-left:-6.386034pt;}
._14{margin-left:-5.015672pt;}
._0{margin-left:-3.551874pt;}
._2{margin-left:-2.104843pt;}
._3{margin-left:-1.031245pt;}
._1{width:0.985486pt;}
._4{width:1.893825pt;}
._6{width:2.833344pt;}
._7{width:3.861891pt;}
._13{width:5.047884pt;}
._8{width:6.240043pt;}
._9{width:7.138397pt;}
._f{width:8.426786pt;}
._15{width:9.368177pt;}
._c{width:10.266956pt;}
._d{width:11.556801pt;}
._10{width:12.553547pt;}
._12{width:13.727291pt;}
._18{width:15.722795pt;}
._11{width:17.475586pt;}
._17{width:18.421561pt;}
._19{width:19.312445pt;}
._b{width:20.430717pt;}
._a{width:21.582169pt;}
._1a{width:22.702994pt;}
._1b{width:23.876268pt;}
._e{width:25.578422pt;}
._74{width:26.480477pt;}
._67{width:29.001233pt;}
._16{width:30.557989pt;}
._73{width:31.841926pt;}
._5c{width:32.791125pt;}
._7b{width:35.208530pt;}
._60{width:36.949799pt;}
._53{width:38.453638pt;}
._6d{width:40.410171pt;}
._71{width:43.253316pt;}
._76{width:44.666161pt;}
._6b{width:48.158381pt;}
._72{width:49.918380pt;}
._61{width:52.323020pt;}
._5f{width:54.527498pt;}
._79{width:55.521064pt;}
._31{width:57.333310pt;}
._68{width:58.761842pt;}
._64{width:60.152658pt;}
._4d{width:61.228242pt;}
._69{width:63.326467pt;}
._55{width:65.228241pt;}
._5e{width:67.059707pt;}
._28{width:68.001039pt;}
._47{width:71.866638pt;}
._52{width:73.866104pt;}
._4f{width:76.588236pt;}
._77{width:78.261178pt;}
._39{width:82.238367pt;}
._54{width:85.600081pt;}
._51{width:87.737032pt;}
._1d{width:89.045298pt;}
._49{width:90.828230pt;}
._66{width:92.961029pt;}
._6f{width:95.036250pt;}
._4b{width:96.797295pt;}
._4a{width:98.531694pt;}
._6c{width:100.453293pt;}
._30{width:107.041024pt;}
._4e{width:108.744898pt;}
._70{width:111.253289pt;}
._75{width:114.715687pt;}
._36{width:116.001020pt;}
._5a{width:120.104893pt;}
._62{width:123.733284pt;}
._37{width:124.693283pt;}
._3b{width:126.454156pt;}
._33{width:128.693282pt;}
._65{width:129.708215pt;}
._6e{width:131.141716pt;}
._6a{width:132.373280pt;}
._46{width:133.490613pt;}
._24{width:138.877811pt;}
._63{width:141.973277pt;}
._2e{width:143.788209pt;}
._59{width:145.653275pt;}
._27{width:149.121007pt;}
._22{width:150.185540pt;}
._34{width:154.507112pt;}
._2b{width:156.053271pt;}
._7a{width:156.961004pt;}
._2c{width:158.825270pt;}
._4c{width:162.345970pt;}
._2f{width:163.998334pt;}
._2a{width:170.027132pt;}
._50{width:177.384969pt;}
._38{width:181.334667pt;}
._58{width:182.398327pt;}
._56{width:187.733258pt;}
._78{width:193.706056pt;}
._57{width:194.666055pt;}
._48{width:196.453255pt;}
._3a{width:204.373252pt;}
._29{width:209.653783pt;}
._1f{width:211.711915pt;}
._2d{width:215.199594pt;}
._42{width:224.533244pt;}
._3e{width:227.518309pt;}
._23{width:229.600975pt;}
._26{width:241.547103pt;}
._25{width:246.240968pt;}
._45{width:275.998290pt;}
._35{width:281.918287pt;}
._5b{width:284.688846pt;}
._40{width:290.238284pt;}
._3d{width:333.920933pt;}
._44{width:365.491054pt;}
._3c{width:381.653181pt;}
._3f{width:387.411045pt;}
._41{width:390.400911pt;}
._43{width:410.238236pt;}
._1e{width:419.711832pt;}
._32{width:511.656864pt;}
._21{width:531.040854pt;}
.fs2{font-size:22.933324pt;}
.fs6{font-size:31.999987pt;}
.fs7{font-size:42.666650pt;}
.fs0{font-size:47.999981pt;}
.fs1{font-size:53.333312pt;}
.fs4{font-size:58.666643pt;}
.fs5{font-size:63.999974pt;}
.fs3{font-size:74.666637pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:8.198070pt;}
.y2d{bottom:8.199136pt;}
.y28{bottom:59.772364pt;}
.ybc{bottom:60.716364pt;}
.y5d{bottom:60.717697pt;}
.y6{bottom:61.221697pt;}
.y2b{bottom:61.410110pt;}
.y29{bottom:62.143030pt;}
.y2{bottom:62.521696pt;}
.y5{bottom:67.888361pt;}
.y2a{bottom:68.076774pt;}
.y1{bottom:96.506240pt;}
.y119{bottom:101.451014pt;}
.y106{bottom:101.994347pt;}
.ye7{bottom:102.231014pt;}
.y94{bottom:102.261680pt;}
.yb7{bottom:102.449680pt;}
.y86{bottom:102.991014pt;}
.y59{bottom:102.991680pt;}
.y1b0{bottom:102.992347pt;}
.y171{bottom:103.465680pt;}
.y142{bottom:103.533680pt;}
.y185{bottom:109.340344pt;}
.y118{bottom:117.451008pt;}
.ye6{bottom:118.231007pt;}
.y170{bottom:119.465674pt;}
.y105{bottom:119.594340pt;}
.y93{bottom:119.861673pt;}
.yb6{bottom:120.049673pt;}
.y85{bottom:120.591006pt;}
.y58{bottom:120.591673pt;}
.y1af{bottom:120.592340pt;}
.y141{bottom:121.133673pt;}
.y184{bottom:125.340338pt;}
.y27{bottom:127.719004pt;}
.y117{bottom:133.451001pt;}
.ye5{bottom:134.231001pt;}
.y16f{bottom:135.465667pt;}
.y104{bottom:137.194333pt;}
.y92{bottom:137.461666pt;}
.yb5{bottom:137.649666pt;}
.y84{bottom:138.190999pt;}
.y57{bottom:138.191666pt;}
.y1ae{bottom:138.192333pt;}
.y140{bottom:138.733666pt;}
.y183{bottom:141.340332pt;}
.y116{bottom:149.450995pt;}
.ye4{bottom:150.230995pt;}
.y3{bottom:150.931200pt;}
.y2c{bottom:151.308800pt;}
.y16e{bottom:151.465661pt;}
.y103{bottom:154.794326pt;}
.y91{bottom:155.061659pt;}
.yb8{bottom:155.249659pt;}
.y83{bottom:155.790992pt;}
.y56{bottom:155.791659pt;}
.y1ad{bottom:155.792326pt;}
.y13f{bottom:156.333659pt;}
.y182{bottom:157.340325pt;}
.y115{bottom:165.450989pt;}
.ye3{bottom:166.230988pt;}
.y16d{bottom:167.465654pt;}
.y26{bottom:168.878321pt;}
.y102{bottom:172.394986pt;}
.y90{bottom:172.661652pt;}
.yb4{bottom:172.849652pt;}
.y181{bottom:173.340319pt;}
.y82{bottom:173.390985pt;}
.y55{bottom:173.391652pt;}
.y1ac{bottom:173.392319pt;}
.y13e{bottom:173.933652pt;}
.y114{bottom:181.450982pt;}
.ye2{bottom:182.230982pt;}
.y25{bottom:183.278315pt;}
.y16c{bottom:183.465648pt;}
.y180{bottom:189.340312pt;}
.y101{bottom:189.994979pt;}
.y8f{bottom:190.261645pt;}
.yb3{bottom:190.449645pt;}
.y81{bottom:190.990978pt;}
.y54{bottom:190.991645pt;}
.y1ab{bottom:190.992312pt;}
.y13d{bottom:191.533645pt;}
.y113{bottom:197.450976pt;}
.y24{bottom:197.678309pt;}
.ye1{bottom:198.230975pt;}
.y16b{bottom:199.465642pt;}
.y100{bottom:207.594972pt;}
.y8e{bottom:207.861638pt;}
.yb2{bottom:208.049638pt;}
.y80{bottom:208.590971pt;}
.y53{bottom:208.591638pt;}
.y1aa{bottom:208.592305pt;}
.y13c{bottom:209.133638pt;}
.y23{bottom:212.078303pt;}
.y112{bottom:213.450969pt;}
.ye0{bottom:214.230969pt;}
.y16a{bottom:215.465635pt;}
.y17f{bottom:217.340301pt;}
.yff{bottom:225.194965pt;}
.y8d{bottom:225.461631pt;}
.yb1{bottom:225.649631pt;}
.y7f{bottom:226.190964pt;}
.y52{bottom:226.191631pt;}
.y1a9{bottom:226.192298pt;}
.y22{bottom:226.478297pt;}
.y13b{bottom:226.733631pt;}
.y111{bottom:229.450963pt;}
.ydf{bottom:230.230963pt;}
.y169{bottom:231.465629pt;}
.y17e{bottom:233.340295pt;}
.y21{bottom:240.878292pt;}
.yfe{bottom:242.794958pt;}
.y8c{bottom:243.061624pt;}
.yb0{bottom:243.249624pt;}
.y7e{bottom:243.790957pt;}
.y51{bottom:243.791624pt;}
.y1a8{bottom:243.792291pt;}
.y13a{bottom:244.333624pt;}
.y110{bottom:245.450957pt;}
.yde{bottom:246.230956pt;}
.y168{bottom:247.465622pt;}
.y20{bottom:255.278286pt;}
.y17d{bottom:257.340285pt;}
.yfd{bottom:260.394951pt;}
.y8b{bottom:260.661617pt;}
.yaf{bottom:260.849617pt;}
.y7d{bottom:261.390950pt;}
.y50{bottom:261.391617pt;}
.y1a7{bottom:261.392284pt;}
.y139{bottom:261.933617pt;}
.ydd{bottom:262.230950pt;}
.y167{bottom:263.465616pt;}
.y1f{bottom:269.678280pt;}
.y17c{bottom:271.740279pt;}
.yfc{bottom:277.994944pt;}
.ydc{bottom:278.230943pt;}
.y8a{bottom:278.261610pt;}
.yae{bottom:278.449610pt;}
.y7c{bottom:278.990943pt;}
.y4f{bottom:278.991610pt;}
.y1a6{bottom:278.992276pt;}
.y166{bottom:279.465610pt;}
.y138{bottom:279.533610pt;}
.y1e{bottom:284.078274pt;}
.ydb{bottom:294.230937pt;}
.yfb{bottom:295.594936pt;}
.y89{bottom:295.861603pt;}
.yad{bottom:296.049603pt;}
.y7b{bottom:296.590936pt;}
.y4e{bottom:296.591603pt;}
.y1a5{bottom:296.592269pt;}
.y137{bottom:297.133603pt;}
.y1d{bottom:298.478269pt;}
.y19a{bottom:305.020266pt;}
.y87{bottom:306.191599pt;}
.yda{bottom:310.230931pt;}
.y1c{bottom:312.878263pt;}
.yfa{bottom:313.194929pt;}
.y88{bottom:313.461596pt;}
.yac{bottom:313.649596pt;}
.y7a{bottom:314.190929pt;}
.y4d{bottom:314.191596pt;}
.y1a4{bottom:314.192262pt;}
.y136{bottom:314.733596pt;}
.y199{bottom:322.620259pt;}
.y1b{bottom:327.278257pt;}
.yf9{bottom:330.794922pt;}
.yab{bottom:331.249589pt;}
.y79{bottom:331.790922pt;}
.y4c{bottom:331.791589pt;}
.y1a3{bottom:331.792255pt;}
.y135{bottom:332.333588pt;}
.yd9{bottom:335.564254pt;}
.y198{bottom:340.220252pt;}
.y1a{bottom:341.678251pt;}
.yf8{bottom:348.394915pt;}
.yaa{bottom:348.849582pt;}
.y78{bottom:349.390915pt;}
.y4b{bottom:349.391582pt;}
.y1a2{bottom:349.392248pt;}
.y134{bottom:349.933581pt;}
.ya6{bottom:351.224248pt;}
.y19{bottom:356.078246pt;}
.y197{bottom:357.820245pt;}
.ya5{bottom:365.624242pt;}
.yd8{bottom:365.962908pt;}
.yf7{bottom:365.994908pt;}
.ya9{bottom:366.449575pt;}
.y77{bottom:366.990908pt;}
.y4a{bottom:366.991575pt;}
.y1a1{bottom:366.992241pt;}
.y133{bottom:367.533574pt;}
.y18{bottom:370.478240pt;}
.y196{bottom:375.420238pt;}
.ya4{bottom:380.024236pt;}
.yd7{bottom:380.362903pt;}
.yf6{bottom:383.594901pt;}
.ya8{bottom:384.049568pt;}
.y76{bottom:384.590901pt;}
.y49{bottom:384.591568pt;}
.y1a0{bottom:384.592234pt;}
.y17{bottom:384.878234pt;}
.y132{bottom:385.133567pt;}
.y195{bottom:393.020231pt;}
.ya3{bottom:394.424230pt;}
.yd6{bottom:394.762897pt;}
.y16{bottom:399.278228pt;}
.yf5{bottom:401.194894pt;}
.ya7{bottom:401.649561pt;}
.y75{bottom:402.190894pt;}
.y48{bottom:402.191561pt;}
.y19f{bottom:402.192227pt;}
.y131{bottom:402.733560pt;}
.ya2{bottom:408.824225pt;}
.y194{bottom:410.620224pt;}
.y15{bottom:413.678223pt;}
.yf4{bottom:418.794887pt;}
.y74{bottom:419.790887pt;}
.y47{bottom:419.791553pt;}
.y19e{bottom:419.792220pt;}
.y130{bottom:420.333553pt;}
.ya1{bottom:423.224219pt;}
.ycc{bottom:425.524218pt;}
.y14{bottom:428.077550pt;}
.y193{bottom:428.220217pt;}
.yf3{bottom:436.394880pt;}
.y125{bottom:436.396214pt;}
.y73{bottom:437.390880pt;}
.y46{bottom:437.391546pt;}
.y19d{bottom:437.392213pt;}
.ya0{bottom:437.624213pt;}
.y12f{bottom:437.933546pt;}
.y13{bottom:442.477544pt;}
.ycb{bottom:443.124211pt;}
.ybb{bottom:444.482877pt;}
.y192{bottom:445.820210pt;}
.y9f{bottom:452.024207pt;}
.yf2{bottom:453.994873pt;}
.y124{bottom:453.996206pt;}
.y72{bottom:454.990873pt;}
.y45{bottom:454.991539pt;}
.y19c{bottom:454.992206pt;}
.y12{bottom:456.877539pt;}
.yba{bottom:458.882871pt;}
.yca{bottom:460.724204pt;}
.y191{bottom:463.420203pt;}
.y9e{bottom:466.424201pt;}
.y11{bottom:471.277533pt;}
.yf1{bottom:471.594866pt;}
.y123{bottom:471.596199pt;}
.y71{bottom:472.590866pt;}
.y44{bottom:472.591532pt;}
.y19b{bottom:472.592199pt;}
.y12e{bottom:473.133532pt;}
.yb9{bottom:473.282865pt;}
.yc9{bottom:478.324197pt;}
.y9d{bottom:480.824196pt;}
.y190{bottom:481.020196pt;}
.y10{bottom:485.677527pt;}
.yf0{bottom:489.194859pt;}
.y122{bottom:489.196192pt;}
.y70{bottom:490.190859pt;}
.y43{bottom:490.191525pt;}
.y158{bottom:490.192192pt;}
.y12d{bottom:490.733525pt;}
.y9c{bottom:495.224190pt;}
.yc8{bottom:495.924190pt;}
.y18f{bottom:498.620189pt;}
.yf{bottom:500.077521pt;}
.yef{bottom:506.794852pt;}
.y121{bottom:506.796185pt;}
.y6f{bottom:507.790852pt;}
.y42{bottom:507.791518pt;}
.y157{bottom:507.792185pt;}
.y12c{bottom:508.333518pt;}
.y9b{bottom:509.624184pt;}
.yc7{bottom:513.524183pt;}
.ye{bottom:514.477516pt;}
.y18e{bottom:516.220182pt;}
.y9a{bottom:524.024178pt;}
.yee{bottom:524.394845pt;}
.y120{bottom:524.396178pt;}
.y6e{bottom:525.390845pt;}
.y41{bottom:525.391511pt;}
.y156{bottom:525.392178pt;}
.y12b{bottom:525.933511pt;}
.yd{bottom:528.877510pt;}
.yc6{bottom:531.124176pt;}
.y18d{bottom:533.820175pt;}
.y99{bottom:538.424173pt;}
.yed{bottom:541.994838pt;}
.y11f{bottom:541.996171pt;}
.y6d{bottom:542.990838pt;}
.y40{bottom:542.991504pt;}
.y155{bottom:542.992171pt;}
.y12a{bottom:543.533504pt;}
.yc5{bottom:548.724169pt;}
.y18c{bottom:551.420167pt;}
.y98{bottom:552.824167pt;}
.yc{bottom:557.677498pt;}
.yec{bottom:559.594831pt;}
.y11e{bottom:559.596164pt;}
.y6c{bottom:560.590830pt;}
.y3f{bottom:560.591497pt;}
.y154{bottom:560.592164pt;}
.y129{bottom:561.133497pt;}
.yc4{bottom:566.324162pt;}
.y97{bottom:567.224161pt;}
.y18b{bottom:569.020160pt;}
.yb{bottom:572.077493pt;}
.yeb{bottom:577.194824pt;}
.y11d{bottom:577.196157pt;}
.y6b{bottom:578.190823pt;}
.y3e{bottom:578.191490pt;}
.y153{bottom:578.192157pt;}
.y128{bottom:578.733490pt;}
.y96{bottom:581.624155pt;}
.yc3{bottom:583.924154pt;}
.y18a{bottom:586.620153pt;}
.yea{bottom:594.794817pt;}
.y11c{bottom:594.796150pt;}
.y6a{bottom:595.790816pt;}
.y3d{bottom:595.791483pt;}
.y152{bottom:595.792150pt;}
.y95{bottom:596.024150pt;}
.y127{bottom:596.333483pt;}
.yc2{bottom:601.524147pt;}
.ya{bottom:604.077480pt;}
.y189{bottom:604.220146pt;}
.ye9{bottom:612.394810pt;}
.y11b{bottom:612.396143pt;}
.y69{bottom:613.390809pt;}
.y3c{bottom:613.391476pt;}
.y151{bottom:613.392143pt;}
.y126{bottom:613.933476pt;}
.yc1{bottom:619.124140pt;}
.y188{bottom:621.820139pt;}
.ye8{bottom:629.994803pt;}
.y11a{bottom:629.996136pt;}
.y68{bottom:630.990802pt;}
.y3b{bottom:630.991469pt;}
.y150{bottom:630.992136pt;}
.yc0{bottom:636.724133pt;}
.y187{bottom:639.420132pt;}
.y9{bottom:640.877465pt;}
.y160{bottom:648.394795pt;}
.y67{bottom:648.590795pt;}
.y3a{bottom:648.591462pt;}
.y14f{bottom:648.592129pt;}
.ybf{bottom:654.324126pt;}
.y186{bottom:657.020125pt;}
.y8{bottom:663.277456pt;}
.y15f{bottom:664.394789pt;}
.y66{bottom:666.190788pt;}
.y39{bottom:666.191455pt;}
.y14e{bottom:666.192122pt;}
.ybe{bottom:671.924119pt;}
.y10f{bottom:673.312119pt;}
.y15e{bottom:680.394783pt;}
.y65{bottom:683.790781pt;}
.y38{bottom:683.791448pt;}
.y14d{bottom:683.792115pt;}
.y7{bottom:685.677447pt;}
.y10e{bottom:689.312112pt;}
.ybd{bottom:689.524112pt;}
.y17b{bottom:691.324112pt;}
.y15d{bottom:696.394776pt;}
.y64{bottom:701.390774pt;}
.y37{bottom:701.391441pt;}
.y14c{bottom:701.392108pt;}
.y10d{bottom:705.312106pt;}
.y17a{bottom:707.324105pt;}
.y15c{bottom:712.394770pt;}
.y63{bottom:718.990767pt;}
.y36{bottom:718.991434pt;}
.y14b{bottom:718.992100pt;}
.y10c{bottom:721.312100pt;}
.y179{bottom:723.324099pt;}
.y15b{bottom:728.394763pt;}
.yd5{bottom:734.912094pt;}
.y62{bottom:736.590760pt;}
.y35{bottom:736.591427pt;}
.y14a{bottom:736.592093pt;}
.y10b{bottom:737.312093pt;}
.y178{bottom:739.324092pt;}
.yd4{bottom:750.912088pt;}
.y10a{bottom:753.312087pt;}
.y61{bottom:754.190753pt;}
.y34{bottom:754.191420pt;}
.y149{bottom:754.192086pt;}
.y177{bottom:755.324086pt;}
.y15a{bottom:759.062751pt;}
.yd3{bottom:766.912081pt;}
.y176{bottom:771.324080pt;}
.y60{bottom:771.790746pt;}
.y33{bottom:771.791413pt;}
.y148{bottom:771.792079pt;}
.y159{bottom:773.462745pt;}
.yd2{bottom:782.912075pt;}
.y109{bottom:783.978741pt;}
.y5f{bottom:789.390739pt;}
.y32{bottom:789.391406pt;}
.y147{bottom:789.392072pt;}
.y175{bottom:799.324068pt;}
.y108{bottom:799.978735pt;}
.yd1{bottom:801.578734pt;}
.y165{bottom:804.124066pt;}
.y5e{bottom:806.990732pt;}
.y31{bottom:806.991399pt;}
.y146{bottom:806.992065pt;}
.y174{bottom:815.324062pt;}
.yd0{bottom:817.578728pt;}
.y164{bottom:818.524061pt;}
.y30{bottom:824.590725pt;}
.y5c{bottom:824.591392pt;}
.y145{bottom:824.592058pt;}
.y107{bottom:831.978722pt;}
.y163{bottom:832.924055pt;}
.ycf{bottom:833.578721pt;}
.y2f{bottom:842.190718pt;}
.y5b{bottom:842.191385pt;}
.y144{bottom:842.192051pt;}
.yce{bottom:846.378716pt;}
.y162{bottom:847.324049pt;}
.y173{bottom:847.325382pt;}
.y2e{bottom:859.790711pt;}
.y5a{bottom:859.791377pt;}
.y143{bottom:859.792044pt;}
.ycd{bottom:860.778710pt;}
.y161{bottom:861.724043pt;}
.y172{bottom:861.725377pt;}
.h10{height:0.000000pt;}
.h5{height:21.305058pt;}
.h3{height:26.457440pt;}
.h9{height:34.319986pt;}
.ha{height:34.322272pt;}
.h14{height:35.759986pt;}
.h4{height:37.493318pt;}
.h2{height:38.133318pt;}
.h13{height:38.135858pt;}
.h12{height:39.359984pt;}
.h11{height:39.733317pt;}
.h15{height:41.233984pt;}
.h8{height:41.946650pt;}
.he{height:41.949317pt;}
.hc{height:41.949444pt;}
.hb{height:43.249983pt;}
.h16{height:48.927980pt;}
.hf{height:50.319980pt;}
.h17{height:50.922646pt;}
.h7{height:53.386645pt;}
.h6{height:53.390201pt;}
.hd{height:57.946643pt;}
.h1{height:929.763200pt;}
.h0{height:1122.666667pt;}
.w2{width:64.252480pt;}
.w1{width:665.196800pt;}
.w0{width:793.333333pt;}
.x4{left:-70.615036pt;}
.x0{left:0.000000pt;}
.xe{left:58.393738pt;}
.x2{left:59.338671pt;}
.xf{left:60.283737pt;}
.x1{left:64.041280pt;}
.xb{left:74.455998pt;}
.x9{left:87.685326pt;}
.x3{left:327.097600pt;}
.x5{left:330.707895pt;}
.x16{left:339.557092pt;}
.xc{left:340.598318pt;}
.x12{left:342.441224pt;}
.x14{left:344.314023pt;}
.x15{left:354.675886pt;}
.xd{left:355.715912pt;}
.x13{left:357.560018pt;}
.xa{left:397.206400pt;}
.x10{left:432.755855pt;}
.x6{left:435.579853pt;}
.x8{left:482.418501pt;}
.x7{left:588.413126pt;}
.x17{left:589.417125pt;}
.x11{left:590.362458pt;}
}




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