
    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_ed94175772bb30a70d21fcb9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ab9a900de5f7868569b9499e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.935059;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_4ac749abe94bd8fccc26141f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_7548ce6b49bc38965152a57b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_b05e33f588870c7d0a2d7cce.woff')format("woff");}.ff5{font-family:ff5;line-height:0.970215;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_4a9369ea8bcbd676671426bf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.966309;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_cfb63f00c130558db63e9dc0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_5727acb6f64ee209abe20c0e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_d445719d678e1156d3550dd3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.941406;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_6df5eee91f4cacf53170da86.woff')format("woff");}.ffa{font-family:ffa;line-height:0.948242;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_0e7f87461d7adc667f2fc3fd.woff')format("woff");}.ffb{font-family:ffb;line-height:0.941406;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_b1452bed51225cf5d8aa4aea.woff')format("woff");}.ffc{font-family:ffc;line-height:0.971191;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_400983898060aaa81efcb227.woff')format("woff");}.ffd{font-family:ffd;line-height:1.061035;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_95d1710bd0a7104ac863262f.woff')format("woff");}.ffe{font-family:ffe;line-height:1.026367;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;}
.ma{transform:matrix(0.000000,-0.251686,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251686,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251686,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249804,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249804,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249804,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.248946,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248946,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248946,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.249910,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249910,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249910,0.250000,0.000000,0,0);}
.m6{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);}
.m5{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m9{transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248325,0.000000,0.000000,0.250000,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.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250196,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251058,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-28.800000px;}
.v4{vertical-align:-18.000005px;}
.va{vertical-align:-14.700000px;}
.v6{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.000000px;}
.v7{vertical-align:13.500000px;}
.v5{vertical-align:17.999997px;}
.v1{vertical-align:22.440000px;}
.v2{vertical-align:27.180000px;}
.v9{vertical-align:58.320000px;}
.ls19{letter-spacing:-2.396504px;}
.ls7{letter-spacing:-1.764000px;}
.ls2f{letter-spacing:-1.122000px;}
.ls1d{letter-spacing:-0.864000px;}
.ls1b{letter-spacing:-0.857451px;}
.ls1e{letter-spacing:-0.810000px;}
.ls1c{letter-spacing:-0.774088px;}
.ls1a{letter-spacing:-0.625225px;}
.ls14{letter-spacing:-0.623091px;}
.ls13{letter-spacing:-0.555989px;}
.ls30{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.503266px;}
.ls11{letter-spacing:-0.436164px;}
.ls20{letter-spacing:-0.399600px;}
.ls18{letter-spacing:-0.311658px;}
.ls15{letter-spacing:-0.278095px;}
.ls17{letter-spacing:-0.191789px;}
.ls2b{letter-spacing:-0.190314px;}
.ls16{letter-spacing:-0.158226px;}
.ls22{letter-spacing:-0.108600px;}
.ls29{letter-spacing:-0.106932px;}
.ls2a{letter-spacing:-0.040696px;}
.ls21{letter-spacing:-0.027000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.019179px;}
.ls2e{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.038358px;}
.ls26{letter-spacing:0.042414px;}
.lse{letter-spacing:0.043153px;}
.lsf{letter-spacing:0.057537px;}
.ls8{letter-spacing:0.062332px;}
.lsc{letter-spacing:0.081510px;}
.ls2d{letter-spacing:0.101400px;}
.lsd{letter-spacing:0.119868px;}
.ls23{letter-spacing:0.123000px;}
.ls10{letter-spacing:0.139047px;}
.lsa{letter-spacing:0.158226px;}
.ls2{letter-spacing:0.314850px;}
.ls5{letter-spacing:0.483450px;}
.ls28{letter-spacing:0.882000px;}
.ls2c{letter-spacing:1.104000px;}
.ls6{letter-spacing:1.128000px;}
.ls1{letter-spacing:1.632000px;}
.ls1f{letter-spacing:2.166000px;}
.ls3{letter-spacing:2.754000px;}
.ls25{letter-spacing:41.923950px;}
.ls24{letter-spacing:57.018000px;}
.ls27{letter-spacing:336.997050px;}
.ls4{letter-spacing:2322.453450px;}
.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;}
}
.ws1b{word-spacing:-72.150000px;}
.ws1c{word-spacing:-72.000000px;}
.ws2{word-spacing:-66.487500px;}
.ws0{word-spacing:-41.700000px;}
.ws13{word-spacing:-33.451350px;}
.ws1e{word-spacing:-31.687950px;}
.ws6{word-spacing:-29.625450px;}
.ws7{word-spacing:-29.578500px;}
.ws8{word-spacing:-28.860450px;}
.ws3{word-spacing:-28.489650px;}
.ws5{word-spacing:-27.732450px;}
.wsa{word-spacing:-26.808450px;}
.ws9{word-spacing:-26.761500px;}
.wsc{word-spacing:-25.095450px;}
.ws1a{word-spacing:-25.051500px;}
.wsb{word-spacing:-25.044450px;}
.ws1d{word-spacing:-23.686950px;}
.ws16{word-spacing:-22.536000px;}
.wsf{word-spacing:-21.139950px;}
.wse{word-spacing:-21.096000px;}
.ws10{word-spacing:-20.329950px;}
.wsd{word-spacing:-20.232000px;}
.ws12{word-spacing:-19.068000px;}
.ws20{word-spacing:-17.994600px;}
.ws21{word-spacing:-17.893200px;}
.ws1f{word-spacing:-17.892000px;}
.ws24{word-spacing:-17.856000px;}
.ws23{word-spacing:-17.316000px;}
.ws22{word-spacing:-16.771200px;}
.ws19{word-spacing:-15.616500px;}
.ws4{word-spacing:-15.540450px;}
.ws15{word-spacing:-15.466500px;}
.ws18{word-spacing:-15.431850px;}
.ws11{word-spacing:-11.300700px;}
.ws1{word-spacing:0.000000px;}
.ws17{word-spacing:17.052000px;}
.ws14{word-spacing:1052.652000px;}
._16{margin-left:-3780.910650px;}
._10{margin-left:-2971.933050px;}
._e{margin-left:-1104.355500px;}
._15{margin-left:-25.265250px;}
._11{margin-left:-16.222950px;}
._1a{margin-left:-10.316850px;}
._a{margin-left:-9.308250px;}
._9{margin-left:-7.142100px;}
._d{margin-left:-5.420700px;}
._7{margin-left:-4.100100px;}
._5{margin-left:-2.838750px;}
._1{margin-left:-1.834800px;}
._0{width:1.668000px;}
._2{width:3.002400px;}
._4{width:4.003200px;}
._6{width:5.169450px;}
._b{width:7.359900px;}
._c{width:12.306600px;}
._3{width:23.164350px;}
._1c{width:28.895400px;}
._1d{width:29.913750px;}
._1b{width:35.595600px;}
._8{width:36.823650px;}
._19{width:37.906577px;}
._1e{width:45.972000px;}
._1f{width:47.111700px;}
._12{width:53.583386px;}
._20{width:63.589950px;}
._13{width:64.599248px;}
._14{width:75.414591px;}
._18{width:118.313450px;}
._17{width:1253.886450px;}
._f{width:2114.464500px;}
.fc8{color:transparent;}
.fc7{color:rgb(91,181,255);}
.fc6{color:rgb(218,120,123);}
.fc5{color:rgb(49,62,72);}
.fc9{color:rgb(80,80,80);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(77,77,77);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(50,62,72);}
.fs16{font-size:40.500000px;}
.fs17{font-size:40.650000px;}
.fsf{font-size:43.137074px;}
.fs1a{font-size:49.500000px;}
.fs6{font-size:49.650000px;}
.fsc{font-size:52.723090px;}
.fsd{font-size:52.742070px;}
.fsb{font-size:52.842915px;}
.fse{font-size:52.861939px;}
.fs1c{font-size:53.913823px;}
.fs18{font-size:54.000000px;}
.fs1b{font-size:54.150000px;}
.fs1f{font-size:54.161827px;}
.fs9{font-size:63.150000px;}
.fs10{font-size:65.648583px;}
.fs21{font-size:65.688169px;}
.fs11{font-size:65.797446px;}
.fs1d{font-size:65.861485px;}
.fs1e{font-size:65.913162px;}
.fs12{font-size:65.926472px;}
.fs20{font-size:66.131292px;}
.fs13{font-size:72.000000px;}
.fs5{font-size:72.150000px;}
.fs14{font-size:75.893905px;}
.fs15{font-size:76.052017px;}
.fsa{font-size:85.500000px;}
.fs3{font-size:85.650000px;}
.fs8{font-size:94.500000px;}
.fs2{font-size:94.650000px;}
.fs19{font-size:108.150000px;}
.fs7{font-size:121.650000px;}
.fs1{font-size:166.650000px;}
.fs0{font-size:166.800000px;}
.fs4{font-size:265.950000px;}
.ye1{bottom:-13.775809px;}
.y0{bottom:0.000000px;}
.ye0{bottom:5.001289px;}
.y90{bottom:8.863794px;}
.ye{bottom:9.600000px;}
.yf{bottom:9.862500px;}
.yc{bottom:10.725000px;}
.yd8{bottom:11.420918px;}
.y9d{bottom:11.458368px;}
.yc3{bottom:11.512500px;}
.y68{bottom:21.685091px;}
.ydb{bottom:22.357463px;}
.y2c{bottom:22.923858px;}
.y72{bottom:23.871901px;}
.y76{bottom:24.650765px;}
.y82{bottom:28.275477px;}
.y84{bottom:28.305433px;}
.yd7{bottom:30.088694px;}
.y9c{bottom:30.774091px;}
.y85{bottom:31.241151px;}
.y89{bottom:37.831537px;}
.y7e{bottom:38.580445px;}
.y61{bottom:41.486206px;}
.ydc{bottom:45.062041px;}
.y55{bottom:45.170831px;}
.yf9{bottom:46.425000px;}
.y80{bottom:46.638690px;}
.y5a{bottom:48.076592px;}
.y6c{bottom:50.323315px;}
.yd3{bottom:51.258458px;}
.y7c{bottom:51.761217px;}
.y6e{bottom:53.229076px;}
.y5e{bottom:53.977984px;}
.y78{bottom:54.696935px;}
.y97{bottom:54.813979px;}
.y4a{bottom:57.632652px;}
.y57{bottom:59.100511px;}
.ye2{bottom:59.126163px;}
.y8e{bottom:59.849419px;}
.y4d{bottom:60.538414px;}
.y51{bottom:60.568370px;}
.y7a{bottom:61.287321px;}
.y8d{bottom:61.317277px;}
.y81{bottom:62.036229px;}
.y5f{bottom:62.755180px;}
.y71{bottom:64.223039px;}
.y8c{bottom:64.941990px;}
.y4f{bottom:65.690897px;}
.y8f{bottom:65.720854px;}
.y4e{bottom:66.439805px;}
.y69{bottom:67.158756px;}
.ydd{bottom:67.804024px;}
.yf8{bottom:67.837500px;}
.y86{bottom:67.877707px;}
.y8a{bottom:67.907664px;}
.y66{bottom:68.626615px;}
.y6a{bottom:69.345566px;}
.y73{bottom:69.375522px;}
.y48{bottom:70.094474px;}
.ycb{bottom:71.362500px;}
.y4b{bottom:71.562332px;}
.y79{bottom:71.592289px;}
.y77{bottom:72.311240px;}
.y88{bottom:73.030191px;}
.y63{bottom:74.498050px;}
.y74{bottom:74.528006px;}
.y49{bottom:75.217001px;}
.y70{bottom:75.246957px;}
.y52{bottom:75.965909px;}
.y5c{bottom:76.714816px;}
.y54{bottom:77.433767px;}
.y5d{bottom:78.152719px;}
.y7d{bottom:78.182675px;}
.y7f{bottom:78.931582px;}
.y9f{bottom:79.237500px;}
.y67{bottom:79.620577px;}
.y64{bottom:80.399441px;}
.y50{bottom:81.088436px;}
.yf3{bottom:81.637500px;}
.y65{bottom:82.556295px;}
.y53{bottom:84.024154px;}
.y60{bottom:84.773061px;}
.y4c{bottom:85.521969px;}
.y47{bottom:86.240920px;}
.yba{bottom:86.850000px;}
.y62{bottom:86.959871px;}
.y6d{bottom:87.678822px;}
.y83{bottom:87.708779px;}
.y6f{bottom:89.146681px;}
.y58{bottom:89.176637px;}
.yf7{bottom:89.250000px;}
.yde{bottom:90.508602px;}
.y75{bottom:90.644496px;}
.y8b{bottom:92.112355px;}
.y7b{bottom:93.550257px;}
.y5b{bottom:93.580214px;}
.yca{bottom:96.112500px;}
.y87{bottom:96.515931px;}
.y56{bottom:97.234883px;}
.y6b{bottom:97.953834px;}
.y59{bottom:98.732698px;}
.yd4{bottom:101.326629px;}
.y98{bottom:106.060068px;}
.yf6{bottom:110.662500px;}
.ydf{bottom:113.213181px;}
.yf2{bottom:115.462500px;}
.y9e{bottom:120.501268px;}
.yc9{bottom:120.900000px;}
.yd9{bottom:126.416719px;}
.ya3{bottom:132.750000px;}
.yf5{bottom:133.200000px;}
.y27{bottom:134.850000px;}
.y2d{bottom:138.249852px;}
.yb{bottom:144.450000px;}
.yf1{bottom:149.250000px;}
.yd5{bottom:151.438109px;}
.yf4{bottom:154.575000px;}
.y2e{bottom:156.223633px;}
.y99{bottom:157.340394px;}
.y26{bottom:159.645000px;}
.ye4{bottom:164.355000px;}
.ya{bottom:170.370000px;}
.y2f{bottom:174.221378px;}
.yd0{bottom:175.050000px;}
.yf0{bottom:183.045000px;}
.y25{bottom:184.425000px;}
.ya4{bottom:186.225000px;}
.yce{bottom:187.125000px;}
.y2b{bottom:190.125000px;}
.y30{bottom:192.195159px;}
.ycf{bottom:194.325000px;}
.yb9{bottom:195.045000px;}
.y96{bottom:200.793702px;}
.yd6{bottom:201.498812px;}
.y9a{bottom:208.593925px;}
.y31{bottom:210.168940px;}
.y24{bottom:210.345000px;}
.y9{bottom:210.900000px;}
.yef{bottom:216.825000px;}
.y2a{bottom:218.280000px;}
.yb8{bottom:219.825000px;}
.yd2{bottom:224.396211px;}
.y32{bottom:228.142721px;}
.y23{bottom:235.125000px;}
.ya0{bottom:239.700000px;}
.yb7{bottom:245.745000px;}
.y33{bottom:246.116501px;}
.y29{bottom:247.575000px;}
.y9b{bottom:259.832570px;}
.yee{bottom:260.775000px;}
.y22{bottom:261.045000px;}
.y34{bottom:264.126230px;}
.yb6{bottom:270.525000px;}
.y1a{bottom:276.000000px;}
.y35{bottom:282.100010px;}
.y21{bottom:285.825000px;}
.ybf{bottom:287.625000px;}
.ya1{bottom:293.220000px;}
.yed{bottom:293.445000px;}
.yb5{bottom:295.320000px;}
.y36{bottom:300.073791px;}
.y8{bottom:301.425000px;}
.y19{bottom:305.445000px;}
.y15{bottom:308.325000px;}
.yc5{bottom:309.000000px;}
.y20{bottom:310.620000px;}
.yda{bottom:316.125000px;}
.y37{bottom:318.047572px;}
.yec{bottom:327.225000px;}
.ybe{bottom:329.325000px;}
.ycd{bottom:329.445000px;}
.y91{bottom:331.312222px;}
.y18{bottom:334.755000px;}
.y38{bottom:336.045318px;}
.y14{bottom:337.620000px;}
.y95{bottom:339.939637px;}
.y7{bottom:346.500000px;}
.yc6{bottom:351.870000px;}
.y39{bottom:354.019098px;}
.y94{bottom:360.669397px;}
.yeb{bottom:361.050000px;}
.yb0{bottom:362.370000px;}
.y17{bottom:362.925000px;}
.y13{bottom:365.775000px;}
.ybd{bottom:371.025000px;}
.y3a{bottom:371.992879px;}
.yc8{bottom:376.020000px;}
.ycc{bottom:377.625000px;}
.y93{bottom:381.399158px;}
.yaf{bottom:383.025000px;}
.y3b{bottom:390.002607px;}
.y6{bottom:391.530000px;}
.y16{bottom:392.220000px;}
.y12{bottom:395.070000px;}
.y1e{bottom:395.700000px;}
.yc7{bottom:400.800000px;}
.yc4{bottom:402.300000px;}
.ybc{bottom:402.570000px;}
.y92{bottom:403.506908px;}
.yae{bottom:403.725000px;}
.yea{bottom:404.970000px;}
.y3c{bottom:407.976388px;}
.y1d{bottom:424.995000px;}
.y3d{bottom:425.950169px;}
.y5{bottom:436.620000px;}
.ye9{bottom:438.750000px;}
.yb2{bottom:443.445000px;}
.y3e{bottom:443.923949px;}
.ybb{bottom:444.225000px;}
.yc2{bottom:445.320000px;}
.yb3{bottom:452.625000px;}
.y1c{bottom:453.150000px;}
.y3f{bottom:461.921695px;}
.ye8{bottom:471.450000px;}
.y1f{bottom:477.255000px;}
.y40{bottom:479.895476px;}
.ye3{bottom:480.720000px;}
.y1b{bottom:482.445000px;}
.y4{bottom:482.820000px;}
.ya2{bottom:482.880000px;}
.y41{bottom:497.869257px;}
.yab{bottom:499.650000px;}
.ye7{bottom:505.245000px;}
.y42{bottom:515.843037px;}
.yaa{bottom:521.070000px;}
.y3{bottom:527.850000px;}
.ya8{bottom:532.755000px;}
.y43{bottom:533.852766px;}
.ya5{bottom:534.330000px;}
.yc1{bottom:537.000000px;}
.ye6{bottom:539.025000px;}
.yac{bottom:544.050000px;}
.y44{bottom:551.826546px;}
.ya7{bottom:556.725000px;}
.yc0{bottom:558.420000px;}
.y45{bottom:569.800327px;}
.y11{bottom:571.275000px;}
.ye5{bottom:572.820000px;}
.y2{bottom:572.925000px;}
.y10{bottom:573.345000px;}
.yb1{bottom:584.400000px;}
.y28{bottom:584.925000px;}
.yb4{bottom:585.225000px;}
.ya6{bottom:585.825000px;}
.y46{bottom:587.798073px;}
.yd1{bottom:588.720000px;}
.ya9{bottom:604.950000px;}
.yad{bottom:607.245000px;}
.y1{bottom:619.125000px;}
.yd{bottom:713.595000px;}
.h1b{height:29.603760px;}
.h1c{height:29.713403px;}
.h12{height:31.531347px;}
.he{height:38.538313px;}
.h11{height:38.552187px;}
.hd{height:38.625901px;}
.hf{height:38.912729px;}
.h10{height:39.001167px;}
.h24{height:39.408688px;}
.h28{height:39.589969px;}
.h14{height:47.986293px;}
.h2a{height:48.015229px;}
.h15{height:48.095106px;}
.h25{height:48.141916px;}
.h26{height:48.179689px;}
.h16{height:48.189419px;}
.h29{height:48.339133px;}
.h17{height:55.054688px;}
.h19{height:55.169385px;}
.h18{height:58.032156px;}
.h1a{height:58.153056px;}
.h2b{height:58.500000px;}
.h2c{height:58.621875px;}
.h7{height:60.404795px;}
.h22{height:60.679688px;}
.h20{height:60.806104px;}
.h4{height:65.199390px;}
.h1d{height:65.377441px;}
.hb{height:65.492139px;}
.h1f{height:71.936279px;}
.h6{height:72.050464px;}
.h9{height:72.259277px;}
.h3{height:72.373975px;}
.ha{height:75.467549px;}
.h1e{height:82.696729px;}
.h21{height:90.326104px;}
.h8{height:93.019482px;}
.h2{height:112.863062px;}
.h1{height:112.964648px;}
.h27{height:144.523807px;}
.h5{height:180.113599px;}
.h23{height:254.261196px;}
.h13{height:295.865233px;}
.hc{height:611.108545px;}
.h0{height:810.000000px;}
.w5{width:187.343564px;}
.w4{width:317.235196px;}
.w3{width:338.601991px;}
.w2{width:1019.480248px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.xc3{left:-3.752581px;}
.x0{left:0.000000px;}
.xc2{left:3.789677px;}
.x5{left:6.037479px;}
.x10{left:10.799979px;}
.x8d{left:15.916395px;}
.x94{left:19.476348px;}
.x21{left:22.029680px;}
.x91{left:27.100493px;}
.x20{left:29.371616px;}
.x1c{left:34.225599px;}
.x1f{left:36.713552px;}
.x3{left:43.087479px;}
.x1e{left:46.003349px;}
.xc0{left:49.028756px;}
.x1d{left:51.367458px;}
.x13{left:63.487479px;}
.xbf{left:72.187479px;}
.x12{left:74.174979px;}
.x92{left:82.338224px;}
.x14{left:91.237479px;}
.x22{left:95.898547px;}
.x23{left:103.450253px;}
.xb0{left:107.249979px;}
.x24{left:110.971991px;}
.x25{left:118.523697px;}
.x26{left:126.045435px;}
.x27{left:133.597141px;}
.x28{left:141.148846px;}
.xb5{left:144.374979px;}
.x29{left:148.664591px;}
.x2a{left:156.216297px;}
.x93{left:157.570647px;}
.x2b{left:163.744029px;}
.x17{left:167.129979px;}
.x2c{left:171.295734px;}
.x2d{left:178.847440px;}
.x2e{left:186.399145px;}
.xa5{left:192.074979px;}
.x2f{left:193.914890px;}
.x30{left:201.478583px;}
.x9d{left:204.449979px;}
.x31{left:208.994328px;}
.x32{left:216.546033px;}
.x33{left:224.097739px;}
.x34{left:231.625471px;}
.x35{left:239.165189px;}
.x36{left:246.728882px;}
.x9e{left:249.599979px;}
.x37{left:254.244627px;}
.x38{left:261.796332px;}
.x39{left:269.324064px;}
.x3a{left:276.875770px;}
.x3b{left:284.415488px;}
.xc5{left:287.444979px;}
.x11{left:290.969979px;}
.x3c{left:291.979181px;}
.x3d{left:299.494926px;}
.x3e{left:307.046631px;}
.x3f{left:314.574363px;}
.x40{left:322.126069px;}
.x41{left:329.665787px;}
.x42{left:337.193519px;}
.x43{left:344.745225px;}
.x44{left:352.272956px;}
.x45{left:359.812675px;}
.x46{left:367.376368px;}
.x47{left:374.916086px;}
.xa6{left:379.619979px;}
.x48{left:382.443818px;}
.x49{left:389.995524px;}
.x4a{left:397.547229px;}
.xb6{left:403.424979px;}
.x4b{left:405.074961px;}
.x4c{left:412.626666px;}
.xbd{left:414.029979px;}
.xb7{left:416.369979px;}
.x4d{left:420.142412px;}
.xb1{left:421.844979px;}
.x4e{left:427.694117px;}
.x4f{left:435.245823px;}
.x50{left:442.773554px;}
.x51{left:450.313273px;}
.x52{left:457.841005px;}
.x90{left:460.718088px;}
.x53{left:465.392711px;}
.x54{left:472.944416px;}
.x55{left:480.496122px;}
.x1a{left:483.299979px;}
.x56{left:488.011867px;}
.xbe{left:492.899979px;}
.x57{left:495.575559px;}
.x58{left:503.091304px;}
.x1b{left:510.749979px;}
.x59{left:518.194715px;}
.x5a{left:525.722447px;}
.xa9{left:531.629979px;}
.x5b{left:533.262166px;}
.x15{left:541.244979px;}
.x5c{left:548.341603px;}
.x5d{left:555.893309px;}
.x5e{left:563.445014px;}
.x5f{left:570.972746px;}
.x60{left:578.512465px;}
.x61{left:586.076157px;}
.xa7{left:590.024979px;}
.x62{left:593.591902px;}
.xa8{left:599.324979px;}
.x63{left:601.143607px;}
.x64{left:608.671339px;}
.xaa{left:611.894979px;}
.x65{left:616.211058px;}
.x9f{left:618.794979px;}
.x66{left:623.762764px;}
.x67{left:631.290495px;}
.x68{left:638.842201px;}
.xa0{left:641.924979px;}
.x69{left:646.369933px;}
.x6a{left:653.909652px;}
.xa1{left:656.999979px;}
.x6b{left:661.461357px;}
.xad{left:663.149979px;}
.x6c{left:669.025049px;}
.x6d{left:676.540795px;}
.x6e{left:684.092500px;}
.x6f{left:691.620232px;}
.x2{left:693.749979px;}
.x70{left:699.159951px;}
.x71{left:706.723643px;}
.x72{left:714.239388px;}
.x73{left:721.791094px;}
.x74{left:729.342799px;}
.xb2{left:731.324979px;}
.x75{left:736.894504px;}
.x76{left:744.422236px;}
.xa2{left:747.629979px;}
.xb9{left:749.369979px;}
.x77{left:751.961955px;}
.x78{left:759.489687px;}
.xb8{left:765.254979px;}
.x79{left:767.041392px;}
.xa3{left:771.344979px;}
.x7a{left:774.593098px;}
.x6{left:777.419979px;}
.xac{left:778.574979px;}
.x7b{left:782.120830px;}
.x7c{left:789.672535px;}
.x7d{left:797.188280px;}
.x7e{left:804.739986px;}
.x7f{left:812.291691px;}
.x80{left:819.819423px;}
.x81{left:827.371129px;}
.x82{left:834.910847px;}
.x83{left:842.438579px;}
.x84{left:849.990285px;}
.x85{left:857.541990px;}
.xab{left:862.724979px;}
.x86{left:865.057735px;}
.x18{left:869.174979px;}
.x87{left:872.621428px;}
.x88{left:880.161146px;}
.x89{left:887.688878px;}
.x8a{left:895.240584px;}
.xb{left:903.569979px;}
.x8b{left:910.320021px;}
.x8{left:918.599979px;}
.x8c{left:925.411445px;}
.x9{left:943.649979px;}
.x8e{left:944.926010px;}
.xa{left:956.249979px;}
.x1{left:959.024979px;}
.x8f{left:972.196058px;}
.x95{left:976.124979px;}
.xaf{left:979.274979px;}
.x7{left:980.744979px;}
.xae{left:1006.469979px;}
.x4{left:1049.549979px;}
.xbb{left:1054.544979px;}
.xa4{left:1059.299979px;}
.x97{left:1067.174979px;}
.xb4{left:1077.824979px;}
.xba{left:1092.749979px;}
.xb3{left:1099.424979px;}
.xc6{left:1110.479979px;}
.x9a{left:1127.774979px;}
.x9b{left:1145.924979px;}
.xc1{left:1162.125000px;}
.x16{left:1168.499979px;}
.x19{left:1178.099979px;}
.x99{left:1181.699979px;}
.x98{left:1188.269979px;}
.xc4{left:1202.069979px;}
.x96{left:1207.454979px;}
.xc{left:1210.319979px;}
.xe{left:1212.419979px;}
.xd{left:1241.249979px;}
.x9c{left:1244.024979px;}
.xf{left:1261.349979px;}
.xbc{left:1324.799979px;}
@media print{
.v8{vertical-align:-25.600000pt;}
.v4{vertical-align:-16.000004pt;}
.va{vertical-align:-13.066667pt;}
.v6{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.000000pt;}
.v7{vertical-align:12.000000pt;}
.v5{vertical-align:15.999998pt;}
.v1{vertical-align:19.946667pt;}
.v2{vertical-align:24.160000pt;}
.v9{vertical-align:51.840000pt;}
.ls19{letter-spacing:-2.130226pt;}
.ls7{letter-spacing:-1.568000pt;}
.ls2f{letter-spacing:-0.997333pt;}
.ls1d{letter-spacing:-0.768000pt;}
.ls1b{letter-spacing:-0.762179pt;}
.ls1e{letter-spacing:-0.720000pt;}
.ls1c{letter-spacing:-0.688078pt;}
.ls1a{letter-spacing:-0.555755pt;}
.ls14{letter-spacing:-0.553859pt;}
.ls13{letter-spacing:-0.494212pt;}
.ls30{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.447347pt;}
.ls11{letter-spacing:-0.387701pt;}
.ls20{letter-spacing:-0.355200pt;}
.ls18{letter-spacing:-0.277029pt;}
.ls15{letter-spacing:-0.247195pt;}
.ls17{letter-spacing:-0.170479pt;}
.ls2b{letter-spacing:-0.169168pt;}
.ls16{letter-spacing:-0.140646pt;}
.ls22{letter-spacing:-0.096533pt;}
.ls29{letter-spacing:-0.095050pt;}
.ls2a{letter-spacing:-0.036174pt;}
.ls21{letter-spacing:-0.024000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.017048pt;}
.ls2e{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.034096pt;}
.ls26{letter-spacing:0.037702pt;}
.lse{letter-spacing:0.038358pt;}
.lsf{letter-spacing:0.051144pt;}
.ls8{letter-spacing:0.055406pt;}
.lsc{letter-spacing:0.072454pt;}
.ls2d{letter-spacing:0.090133pt;}
.lsd{letter-spacing:0.106550pt;}
.ls23{letter-spacing:0.109333pt;}
.ls10{letter-spacing:0.123598pt;}
.lsa{letter-spacing:0.140646pt;}
.ls2{letter-spacing:0.279867pt;}
.ls5{letter-spacing:0.429733pt;}
.ls28{letter-spacing:0.784000pt;}
.ls2c{letter-spacing:0.981333pt;}
.ls6{letter-spacing:1.002667pt;}
.ls1{letter-spacing:1.450667pt;}
.ls1f{letter-spacing:1.925333pt;}
.ls3{letter-spacing:2.448000pt;}
.ls25{letter-spacing:37.265733pt;}
.ls24{letter-spacing:50.682667pt;}
.ls27{letter-spacing:299.552933pt;}
.ls4{letter-spacing:2064.403067pt;}
.ws1b{word-spacing:-64.133333pt;}
.ws1c{word-spacing:-64.000000pt;}
.ws2{word-spacing:-59.100000pt;}
.ws0{word-spacing:-37.066667pt;}
.ws13{word-spacing:-29.734533pt;}
.ws1e{word-spacing:-28.167067pt;}
.ws6{word-spacing:-26.333733pt;}
.ws7{word-spacing:-26.292000pt;}
.ws8{word-spacing:-25.653733pt;}
.ws3{word-spacing:-25.324133pt;}
.ws5{word-spacing:-24.651067pt;}
.wsa{word-spacing:-23.829733pt;}
.ws9{word-spacing:-23.788000pt;}
.wsc{word-spacing:-22.307067pt;}
.ws1a{word-spacing:-22.268000pt;}
.wsb{word-spacing:-22.261733pt;}
.ws1d{word-spacing:-21.055067pt;}
.ws16{word-spacing:-20.032000pt;}
.wsf{word-spacing:-18.791067pt;}
.wse{word-spacing:-18.752000pt;}
.ws10{word-spacing:-18.071067pt;}
.wsd{word-spacing:-17.984000pt;}
.ws12{word-spacing:-16.949333pt;}
.ws20{word-spacing:-15.995200pt;}
.ws21{word-spacing:-15.905067pt;}
.ws1f{word-spacing:-15.904000pt;}
.ws24{word-spacing:-15.872000pt;}
.ws23{word-spacing:-15.392000pt;}
.ws22{word-spacing:-14.907733pt;}
.ws19{word-spacing:-13.881333pt;}
.ws4{word-spacing:-13.813733pt;}
.ws15{word-spacing:-13.748000pt;}
.ws18{word-spacing:-13.717200pt;}
.ws11{word-spacing:-10.045067pt;}
.ws1{word-spacing:0.000000pt;}
.ws17{word-spacing:15.157333pt;}
.ws14{word-spacing:935.690667pt;}
._16{margin-left:-3360.809467pt;}
._10{margin-left:-2641.718267pt;}
._e{margin-left:-981.649333pt;}
._15{margin-left:-22.458000pt;}
._11{margin-left:-14.420400pt;}
._1a{margin-left:-9.170533pt;}
._a{margin-left:-8.274000pt;}
._9{margin-left:-6.348533pt;}
._d{margin-left:-4.818400pt;}
._7{margin-left:-3.644533pt;}
._5{margin-left:-2.523333pt;}
._1{margin-left:-1.630933pt;}
._0{width:1.482667pt;}
._2{width:2.668800pt;}
._4{width:3.558400pt;}
._6{width:4.595067pt;}
._b{width:6.542133pt;}
._c{width:10.939200pt;}
._3{width:20.590533pt;}
._1c{width:25.684800pt;}
._1d{width:26.590000pt;}
._1b{width:31.640533pt;}
._8{width:32.732133pt;}
._19{width:33.694735pt;}
._1e{width:40.864000pt;}
._1f{width:41.877067pt;}
._12{width:47.629676pt;}
._20{width:56.524400pt;}
._13{width:57.421554pt;}
._14{width:67.035192pt;}
._18{width:105.167511pt;}
._17{width:1114.565733pt;}
._f{width:1879.524000pt;}
.fs16{font-size:36.000000pt;}
.fs17{font-size:36.133333pt;}
.fsf{font-size:38.344066pt;}
.fs1a{font-size:44.000000pt;}
.fs6{font-size:44.133333pt;}
.fsc{font-size:46.864969pt;}
.fsd{font-size:46.881840pt;}
.fsb{font-size:46.971480pt;}
.fse{font-size:46.988390pt;}
.fs1c{font-size:47.923399pt;}
.fs18{font-size:48.000000pt;}
.fs1b{font-size:48.133333pt;}
.fs1f{font-size:48.143847pt;}
.fs9{font-size:56.133333pt;}
.fs10{font-size:58.354296pt;}
.fs21{font-size:58.389484pt;}
.fs11{font-size:58.486619pt;}
.fs1d{font-size:58.543542pt;}
.fs1e{font-size:58.589477pt;}
.fs12{font-size:58.601309pt;}
.fs20{font-size:58.783371pt;}
.fs13{font-size:64.000000pt;}
.fs5{font-size:64.133333pt;}
.fs14{font-size:67.461249pt;}
.fs15{font-size:67.601793pt;}
.fsa{font-size:76.000000pt;}
.fs3{font-size:76.133333pt;}
.fs8{font-size:84.000000pt;}
.fs2{font-size:84.133333pt;}
.fs19{font-size:96.133333pt;}
.fs7{font-size:108.133333pt;}
.fs1{font-size:148.133333pt;}
.fs0{font-size:148.266667pt;}
.fs4{font-size:236.400000pt;}
.ye1{bottom:-12.245163pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:4.445590pt;}
.y90{bottom:7.878928pt;}
.ye{bottom:8.533333pt;}
.yf{bottom:8.766667pt;}
.yc{bottom:9.533333pt;}
.yd8{bottom:10.151927pt;}
.y9d{bottom:10.185216pt;}
.yc3{bottom:10.233333pt;}
.y68{bottom:19.275636pt;}
.ydb{bottom:19.873300pt;}
.y2c{bottom:20.376762pt;}
.y72{bottom:21.219467pt;}
.y76{bottom:21.911791pt;}
.y82{bottom:25.133757pt;}
.y84{bottom:25.160385pt;}
.yd7{bottom:26.745506pt;}
.y9c{bottom:27.354748pt;}
.y85{bottom:27.769912pt;}
.y89{bottom:33.628033pt;}
.y7e{bottom:34.293729pt;}
.y61{bottom:36.876628pt;}
.ydc{bottom:40.055148pt;}
.y55{bottom:40.151850pt;}
.yf9{bottom:41.266667pt;}
.y80{bottom:41.456613pt;}
.y5a{bottom:42.734749pt;}
.y6c{bottom:44.731835pt;}
.yd3{bottom:45.563074pt;}
.y7c{bottom:46.009971pt;}
.y6e{bottom:47.314734pt;}
.y5e{bottom:47.980430pt;}
.y78{bottom:48.619498pt;}
.y97{bottom:48.723537pt;}
.y4a{bottom:51.229024pt;}
.y57{bottom:52.533788pt;}
.ye2{bottom:52.556590pt;}
.y8e{bottom:53.199483pt;}
.y4d{bottom:53.811923pt;}
.y51{bottom:53.838551pt;}
.y7a{bottom:54.477619pt;}
.y8d{bottom:54.504247pt;}
.y81{bottom:55.143314pt;}
.y5f{bottom:55.782382pt;}
.y71{bottom:57.087145pt;}
.y8c{bottom:57.726213pt;}
.y4f{bottom:58.391909pt;}
.y8f{bottom:58.418537pt;}
.y4e{bottom:59.057604pt;}
.y69{bottom:59.696672pt;}
.ydd{bottom:60.270244pt;}
.yf8{bottom:60.300000pt;}
.y86{bottom:60.335740pt;}
.y8a{bottom:60.362368pt;}
.y66{bottom:61.001435pt;}
.y6a{bottom:61.640503pt;}
.y73{bottom:61.667131pt;}
.y48{bottom:62.306199pt;}
.ycb{bottom:63.433333pt;}
.y4b{bottom:63.610962pt;}
.y79{bottom:63.637590pt;}
.y77{bottom:64.276658pt;}
.y88{bottom:64.915725pt;}
.y63{bottom:66.220489pt;}
.y74{bottom:66.247117pt;}
.y49{bottom:66.859557pt;}
.y70{bottom:66.886184pt;}
.y52{bottom:67.525252pt;}
.y5c{bottom:68.190948pt;}
.y54{bottom:68.830015pt;}
.y5d{bottom:69.469083pt;}
.y7d{bottom:69.495711pt;}
.y7f{bottom:70.161407pt;}
.y9f{bottom:70.433333pt;}
.y67{bottom:70.773847pt;}
.y64{bottom:71.466170pt;}
.y50{bottom:72.078610pt;}
.yf3{bottom:72.566667pt;}
.y65{bottom:73.383373pt;}
.y53{bottom:74.688137pt;}
.y60{bottom:75.353832pt;}
.y4c{bottom:76.019528pt;}
.y47{bottom:76.658596pt;}
.yba{bottom:77.200000pt;}
.y62{bottom:77.297663pt;}
.y6d{bottom:77.936731pt;}
.y83{bottom:77.963359pt;}
.y6f{bottom:79.241494pt;}
.y58{bottom:79.268122pt;}
.yf7{bottom:79.333333pt;}
.yde{bottom:80.452091pt;}
.y75{bottom:80.572886pt;}
.y8b{bottom:81.877649pt;}
.y7b{bottom:83.155784pt;}
.y5b{bottom:83.182412pt;}
.yca{bottom:85.433333pt;}
.y87{bottom:85.791939pt;}
.y56{bottom:86.431007pt;}
.y6b{bottom:87.070074pt;}
.y59{bottom:87.762398pt;}
.yd4{bottom:90.068115pt;}
.y98{bottom:94.275616pt;}
.yf6{bottom:98.366667pt;}
.ydf{bottom:100.633938pt;}
.yf2{bottom:102.633333pt;}
.y9e{bottom:107.112238pt;}
.yc9{bottom:107.466667pt;}
.yd9{bottom:112.370417pt;}
.ya3{bottom:118.000000pt;}
.yf5{bottom:118.400000pt;}
.y27{bottom:119.866667pt;}
.y2d{bottom:122.888757pt;}
.yb{bottom:128.400000pt;}
.yf1{bottom:132.666667pt;}
.yd5{bottom:134.611653pt;}
.yf4{bottom:137.400000pt;}
.y2e{bottom:138.865451pt;}
.y99{bottom:139.858128pt;}
.y26{bottom:141.906667pt;}
.ye4{bottom:146.093333pt;}
.ya{bottom:151.440000pt;}
.y2f{bottom:154.863447pt;}
.yd0{bottom:155.600000pt;}
.yf0{bottom:162.706667pt;}
.y25{bottom:163.933333pt;}
.ya4{bottom:165.533333pt;}
.yce{bottom:166.333333pt;}
.y2b{bottom:169.000000pt;}
.y30{bottom:170.840141pt;}
.ycf{bottom:172.733333pt;}
.yb9{bottom:173.373333pt;}
.y96{bottom:178.483291pt;}
.yd6{bottom:179.110055pt;}
.y9a{bottom:185.416822pt;}
.y31{bottom:186.816835pt;}
.y24{bottom:186.973333pt;}
.y9{bottom:187.466667pt;}
.yef{bottom:192.733333pt;}
.y2a{bottom:194.026667pt;}
.yb8{bottom:195.400000pt;}
.yd2{bottom:199.463299pt;}
.y32{bottom:202.793529pt;}
.y23{bottom:209.000000pt;}
.ya0{bottom:213.066667pt;}
.yb7{bottom:218.440000pt;}
.y33{bottom:218.770223pt;}
.y29{bottom:220.066667pt;}
.y9b{bottom:230.962284pt;}
.yee{bottom:231.800000pt;}
.y22{bottom:232.040000pt;}
.y34{bottom:234.778871pt;}
.yb6{bottom:240.466667pt;}
.y1a{bottom:245.333333pt;}
.y35{bottom:250.755565pt;}
.y21{bottom:254.066667pt;}
.ybf{bottom:255.666667pt;}
.ya1{bottom:260.640000pt;}
.yed{bottom:260.840000pt;}
.yb5{bottom:262.506667pt;}
.y36{bottom:266.732259pt;}
.y8{bottom:267.933333pt;}
.y19{bottom:271.506667pt;}
.y15{bottom:274.066667pt;}
.yc5{bottom:274.666667pt;}
.y20{bottom:276.106667pt;}
.yda{bottom:281.000000pt;}
.y37{bottom:282.708953pt;}
.yec{bottom:290.866667pt;}
.ybe{bottom:292.733333pt;}
.ycd{bottom:292.840000pt;}
.y91{bottom:294.499753pt;}
.y18{bottom:297.560000pt;}
.y38{bottom:298.706949pt;}
.y14{bottom:300.106667pt;}
.y95{bottom:302.168566pt;}
.y7{bottom:308.000000pt;}
.yc6{bottom:312.773333pt;}
.y39{bottom:314.683643pt;}
.y94{bottom:320.595020pt;}
.yeb{bottom:320.933333pt;}
.yb0{bottom:322.106667pt;}
.y17{bottom:322.600000pt;}
.y13{bottom:325.133333pt;}
.ybd{bottom:329.800000pt;}
.y3a{bottom:330.660337pt;}
.yc8{bottom:334.240000pt;}
.ycc{bottom:335.666667pt;}
.y93{bottom:339.021473pt;}
.yaf{bottom:340.466667pt;}
.y3b{bottom:346.668984pt;}
.y6{bottom:348.026667pt;}
.y16{bottom:348.640000pt;}
.y12{bottom:351.173333pt;}
.y1e{bottom:351.733333pt;}
.yc7{bottom:356.266667pt;}
.yc4{bottom:357.600000pt;}
.ybc{bottom:357.840000pt;}
.y92{bottom:358.672807pt;}
.yae{bottom:358.866667pt;}
.yea{bottom:359.973333pt;}
.y3c{bottom:362.645678pt;}
.y1d{bottom:377.773333pt;}
.y3d{bottom:378.622372pt;}
.y5{bottom:388.106667pt;}
.ye9{bottom:390.000000pt;}
.yb2{bottom:394.173333pt;}
.y3e{bottom:394.599066pt;}
.ybb{bottom:394.866667pt;}
.yc2{bottom:395.840000pt;}
.yb3{bottom:402.333333pt;}
.y1c{bottom:402.800000pt;}
.y3f{bottom:410.597062pt;}
.ye8{bottom:419.066667pt;}
.y1f{bottom:424.226667pt;}
.y40{bottom:426.573756pt;}
.ye3{bottom:427.306667pt;}
.y1b{bottom:428.840000pt;}
.y4{bottom:429.173333pt;}
.ya2{bottom:429.226667pt;}
.y41{bottom:442.550450pt;}
.yab{bottom:444.133333pt;}
.ye7{bottom:449.106667pt;}
.y42{bottom:458.527144pt;}
.yaa{bottom:463.173333pt;}
.y3{bottom:469.200000pt;}
.ya8{bottom:473.560000pt;}
.y43{bottom:474.535792pt;}
.ya5{bottom:474.960000pt;}
.yc1{bottom:477.333333pt;}
.ye6{bottom:479.133333pt;}
.yac{bottom:483.600000pt;}
.y44{bottom:490.512486pt;}
.ya7{bottom:494.866667pt;}
.yc0{bottom:496.373333pt;}
.y45{bottom:506.489180pt;}
.y11{bottom:507.800000pt;}
.ye5{bottom:509.173333pt;}
.y2{bottom:509.266667pt;}
.y10{bottom:509.640000pt;}
.yb1{bottom:519.466667pt;}
.y28{bottom:519.933333pt;}
.yb4{bottom:520.200000pt;}
.ya6{bottom:520.733333pt;}
.y46{bottom:522.487176pt;}
.yd1{bottom:523.306667pt;}
.ya9{bottom:537.733333pt;}
.yad{bottom:539.773333pt;}
.y1{bottom:550.333333pt;}
.yd{bottom:634.306667pt;}
.h1b{height:26.314453pt;}
.h1c{height:26.411914pt;}
.h12{height:28.027864pt;}
.he{height:34.256279pt;}
.h11{height:34.268611pt;}
.hd{height:34.334134pt;}
.hf{height:34.589092pt;}
.h10{height:34.667704pt;}
.h24{height:35.029945pt;}
.h28{height:35.191083pt;}
.h14{height:42.654483pt;}
.h2a{height:42.680204pt;}
.h15{height:42.751205pt;}
.h25{height:42.792814pt;}
.h26{height:42.826390pt;}
.h16{height:42.835039pt;}
.h29{height:42.968118pt;}
.h17{height:48.937500pt;}
.h19{height:49.039453pt;}
.h18{height:51.584139pt;}
.h1a{height:51.691605pt;}
.h2b{height:52.000000pt;}
.h2c{height:52.108333pt;}
.h7{height:53.693151pt;}
.h22{height:53.937500pt;}
.h20{height:54.049870pt;}
.h4{height:57.955013pt;}
.h1d{height:58.113281pt;}
.hb{height:58.215234pt;}
.h1f{height:63.943359pt;}
.h6{height:64.044857pt;}
.h9{height:64.230469pt;}
.h3{height:64.332422pt;}
.ha{height:67.082266pt;}
.h1e{height:73.508203pt;}
.h21{height:80.289870pt;}
.h8{height:82.683984pt;}
.h2{height:100.322721pt;}
.h1{height:100.413021pt;}
.h27{height:128.465606pt;}
.h5{height:160.100977pt;}
.h23{height:226.009952pt;}
.h13{height:262.991318pt;}
.hc{height:543.207595pt;}
.h0{height:720.000000pt;}
.w5{width:166.527613pt;}
.w4{width:281.986841pt;}
.w3{width:300.979547pt;}
.w2{width:906.204665pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.xc3{left:-3.335628pt;}
.x0{left:0.000000pt;}
.xc2{left:3.368602pt;}
.x5{left:5.366648pt;}
.x10{left:9.599981pt;}
.x8d{left:14.147907pt;}
.x94{left:17.312310pt;}
.x21{left:19.581937pt;}
.x91{left:24.089327pt;}
.x20{left:26.108103pt;}
.x1c{left:30.422755pt;}
.x1f{left:32.634268pt;}
.x3{left:38.299981pt;}
.x1e{left:40.891866pt;}
.xc0{left:43.581116pt;}
.x1d{left:45.659963pt;}
.x13{left:56.433314pt;}
.xbf{left:64.166648pt;}
.x12{left:65.933314pt;}
.x92{left:73.189532pt;}
.x14{left:81.099981pt;}
.x22{left:85.243153pt;}
.x23{left:91.955780pt;}
.xb0{left:95.333314pt;}
.x24{left:98.641770pt;}
.x25{left:105.354397pt;}
.x26{left:112.040387pt;}
.x27{left:118.753014pt;}
.x28{left:125.465641pt;}
.xb5{left:128.333314pt;}
.x29{left:132.146303pt;}
.x2a{left:138.858931pt;}
.x93{left:140.062797pt;}
.x2b{left:145.550248pt;}
.x17{left:148.559981pt;}
.x2c{left:152.262875pt;}
.x2d{left:158.975502pt;}
.x2e{left:165.688129pt;}
.xa5{left:170.733314pt;}
.x2f{left:172.368791pt;}
.x30{left:179.092073pt;}
.x9d{left:181.733314pt;}
.x31{left:185.772736pt;}
.x32{left:192.485363pt;}
.x33{left:199.197990pt;}
.x34{left:205.889307pt;}
.x35{left:212.591279pt;}
.x36{left:219.314561pt;}
.x9e{left:221.866648pt;}
.x37{left:225.995224pt;}
.x38{left:232.707851pt;}
.x39{left:239.399168pt;}
.x3a{left:246.111795pt;}
.x3b{left:252.813767pt;}
.xc5{left:255.506648pt;}
.x11{left:258.639981pt;}
.x3c{left:259.537049pt;}
.x3d{left:266.217712pt;}
.x3e{left:272.930339pt;}
.x3f{left:279.621656pt;}
.x40{left:286.334283pt;}
.x41{left:293.036255pt;}
.x42{left:299.727573pt;}
.x43{left:306.440200pt;}
.x44{left:313.131517pt;}
.x45{left:319.833489pt;}
.x46{left:326.556771pt;}
.x47{left:333.258743pt;}
.xa6{left:337.439981pt;}
.x48{left:339.950061pt;}
.x49{left:346.662688pt;}
.x4a{left:353.375315pt;}
.xb6{left:358.599981pt;}
.x4b{left:360.066632pt;}
.x4c{left:366.779259pt;}
.xbd{left:368.026648pt;}
.xb7{left:370.106648pt;}
.x4d{left:373.459921pt;}
.xb1{left:374.973314pt;}
.x4e{left:380.172549pt;}
.x4f{left:386.885176pt;}
.x50{left:393.576493pt;}
.x51{left:400.278465pt;}
.x52{left:406.969782pt;}
.x90{left:409.527190pt;}
.x53{left:413.682409pt;}
.x54{left:420.395036pt;}
.x55{left:427.107664pt;}
.x1a{left:429.599981pt;}
.x56{left:433.788326pt;}
.xbe{left:438.133314pt;}
.x57{left:440.511608pt;}
.x58{left:447.192270pt;}
.x1b{left:453.999981pt;}
.x59{left:460.617524pt;}
.x5a{left:467.308842pt;}
.xa9{left:472.559981pt;}
.x5b{left:474.010814pt;}
.x15{left:481.106648pt;}
.x5c{left:487.414758pt;}
.x5d{left:494.127385pt;}
.x5e{left:500.840012pt;}
.x5f{left:507.531330pt;}
.x60{left:514.233302pt;}
.x61{left:520.956584pt;}
.xa7{left:524.466648pt;}
.x62{left:527.637246pt;}
.xa8{left:532.733314pt;}
.x63{left:534.349873pt;}
.x64{left:541.041191pt;}
.xaa{left:543.906648pt;}
.x65{left:547.743163pt;}
.x9f{left:550.039981pt;}
.x66{left:554.455790pt;}
.x67{left:561.147107pt;}
.x68{left:567.859734pt;}
.xa0{left:570.599981pt;}
.x69{left:574.551051pt;}
.x6a{left:581.253024pt;}
.xa1{left:583.999981pt;}
.x6b{left:587.965651pt;}
.xad{left:589.466648pt;}
.x6c{left:594.688933pt;}
.x6d{left:601.369595pt;}
.x6e{left:608.082222pt;}
.x6f{left:614.773539pt;}
.x2{left:616.666648pt;}
.x70{left:621.475512pt;}
.x71{left:628.198794pt;}
.x72{left:634.879456pt;}
.x73{left:641.592083pt;}
.x74{left:648.304710pt;}
.xb2{left:650.066648pt;}
.x75{left:655.017337pt;}
.x76{left:661.708654pt;}
.xa2{left:664.559981pt;}
.xb9{left:666.106648pt;}
.x77{left:668.410627pt;}
.x78{left:675.101944pt;}
.xb8{left:680.226648pt;}
.x79{left:681.814571pt;}
.xa3{left:685.639981pt;}
.x7a{left:688.527198pt;}
.x6{left:691.039981pt;}
.xac{left:692.066648pt;}
.x7b{left:695.218515pt;}
.x7c{left:701.931142pt;}
.x7d{left:708.611805pt;}
.x7e{left:715.324432pt;}
.x7f{left:722.037059pt;}
.x80{left:728.728376pt;}
.x81{left:735.441003pt;}
.x82{left:742.142976pt;}
.x83{left:748.834293pt;}
.x84{left:755.546920pt;}
.x85{left:762.259547pt;}
.xab{left:766.866648pt;}
.x86{left:768.940209pt;}
.x18{left:772.599981pt;}
.x87{left:775.663491pt;}
.x88{left:782.365463pt;}
.x89{left:789.056781pt;}
.x8a{left:795.769408pt;}
.xb{left:803.173314pt;}
.x8b{left:809.173352pt;}
.x8{left:816.533314pt;}
.x8c{left:822.587951pt;}
.x9{left:838.799981pt;}
.x8e{left:839.934231pt;}
.xa{left:849.999981pt;}
.x1{left:852.466648pt;}
.x8f{left:864.174274pt;}
.x95{left:867.666648pt;}
.xaf{left:870.466648pt;}
.x7{left:871.773314pt;}
.xae{left:894.639981pt;}
.x4{left:932.933314pt;}
.xbb{left:937.373314pt;}
.xa4{left:941.599981pt;}
.x97{left:948.599981pt;}
.xb4{left:958.066648pt;}
.xba{left:971.333314pt;}
.xb3{left:977.266648pt;}
.xc6{left:987.093314pt;}
.x9a{left:1002.466648pt;}
.x9b{left:1018.599981pt;}
.xc1{left:1033.000000pt;}
.x16{left:1038.666648pt;}
.x19{left:1047.199981pt;}
.x99{left:1050.399981pt;}
.x98{left:1056.239981pt;}
.xc4{left:1068.506648pt;}
.x96{left:1073.293314pt;}
.xc{left:1075.839981pt;}
.xe{left:1077.706648pt;}
.xd{left:1103.333314pt;}
.x9c{left:1105.799981pt;}
.xf{left:1121.199981pt;}
.xbc{left:1177.599981pt;}
}




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