
    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_3c7b89f62eadfd076d3579f3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_08aec3712f6ba17e237d65e4.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_61e58b521f692fb244e4e645.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_07841f7e3f63e44c96100c7b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d0b9ec14ac11ab55d405f142.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_eea216e3e612e25c07cb4509.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fa9aecaba1fad52801efb499.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e0f0543824139553cd7f9a99.woff')format("woff");}.ff8{font-family:ff8;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;}
.mf{transform:matrix(0.000000,-0.249579,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249579,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249579,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.248169,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248169,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248169,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250080,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250080,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250080,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.249364,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249364,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249364,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.249085,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249085,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249085,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250003,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249840,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249840,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249840,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249367,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249367,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249367,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249920,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);}
.m8{transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250422,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250634,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-112.226519px;}
.v4{vertical-align:-110.821641px;}
.va{vertical-align:-33.366941px;}
.v6{vertical-align:-26.640000px;}
.v1{vertical-align:-23.040000px;}
.v8{vertical-align:-17.280000px;}
.v2{vertical-align:-9.360000px;}
.vd{vertical-align:-2.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.000000px;}
.v9{vertical-align:22.238497px;}
.v7{vertical-align:26.640000px;}
.vc{vertical-align:28.800000px;}
.vb{vertical-align:33.366896px;}
.ve{vertical-align:60.768000px;}
.vf{vertical-align:93.744000px;}
.ls11{letter-spacing:-3.792000px;}
.ls2f{letter-spacing:-1.782000px;}
.ls25{letter-spacing:-0.428400px;}
.ls1e{letter-spacing:-0.378600px;}
.ls9{letter-spacing:-0.367800px;}
.ls20{letter-spacing:-0.288000px;}
.ls39{letter-spacing:-0.216000px;}
.ls24{letter-spacing:-0.208200px;}
.ls22{letter-spacing:-0.181200px;}
.lsa{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.109710px;}
.ls1c{letter-spacing:-0.108337px;}
.ls2c{letter-spacing:-0.037440px;}
.ls12{letter-spacing:-0.028080px;}
.lsc{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.018720px;}
.ls38{letter-spacing:0.031980px;}
.ls1f{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.037440px;}
.ls2d{letter-spacing:0.106800px;}
.ls28{letter-spacing:0.108000px;}
.ls32{letter-spacing:0.143116px;}
.ls33{letter-spacing:0.151800px;}
.ls36{letter-spacing:0.154483px;}
.ls31{letter-spacing:0.154600px;}
.ls37{letter-spacing:0.161238px;}
.ls21{letter-spacing:0.175800px;}
.ls2b{letter-spacing:0.181200px;}
.ls26{letter-spacing:0.186000px;}
.ls2a{letter-spacing:0.208200px;}
.ls2{letter-spacing:0.216000px;}
.ls29{letter-spacing:0.252000px;}
.ls23{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.341400px;}
.ls8{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.570960px;}
.ls27{letter-spacing:0.738720px;}
.ls1a{letter-spacing:0.792000px;}
.ls2e{letter-spacing:0.828000px;}
.ls14{letter-spacing:0.875671px;}
.ls15{letter-spacing:0.886772px;}
.ls19{letter-spacing:20.448000px;}
.ls5{letter-spacing:26.597376px;}
.ls17{letter-spacing:26.928000px;}
.ls7{letter-spacing:27.397440px;}
.lsd{letter-spacing:29.952000px;}
.ls16{letter-spacing:30.312000px;}
.ls34{letter-spacing:30.348000px;}
.ls1{letter-spacing:39.456000px;}
.ls4{letter-spacing:82.708704px;}
.ls6{letter-spacing:82.787760px;}
.lse{letter-spacing:82.795968px;}
.ls3{letter-spacing:82.861920px;}
.ls1b{letter-spacing:93.678048px;}
.ls18{letter-spacing:93.744000px;}
.ls30{letter-spacing:199.296972px;}
.ls35{letter-spacing:326.395508px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(77,77,77),0 0.015em rgb(77,77,77),0.015em 0 rgb(77,77,77),0 -0.015em  rgb(77,77,77);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(77,77,77);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1e{word-spacing:-108.000000px;}
.ws1b{word-spacing:-72.703902px;}
.ws16{word-spacing:-71.794833px;}
.ws3c{word-spacing:-40.072032px;}
.wsa{word-spacing:-40.032000px;}
.ws6{word-spacing:-39.888000px;}
.ws32{word-spacing:-39.744000px;}
.ws31{word-spacing:-30.276000px;}
.ws3b{word-spacing:-30.240000px;}
.ws2{word-spacing:-30.064032px;}
.ws2c{word-spacing:-30.060000px;}
.ws5{word-spacing:-30.024000px;}
.ws25{word-spacing:-29.880000px;}
.ws24{word-spacing:-29.736000px;}
.ws4{word-spacing:-29.696232px;}
.ws2a{word-spacing:-26.661312px;}
.ws26{word-spacing:-26.658720px;}
.ws27{word-spacing:-26.640000px;}
.ws9{word-spacing:-26.621280px;}
.ws29{word-spacing:-26.413080px;}
.ws21{word-spacing:-23.730688px;}
.ws11{word-spacing:-23.418720px;}
.ws1d{word-spacing:-23.400000px;}
.ws10{word-spacing:-23.390640px;}
.ws2e{word-spacing:-23.381280px;}
.ws3a{word-spacing:-22.383929px;}
.ws36{word-spacing:-22.362100px;}
.ws1c{word-spacing:-21.919048px;}
.ws17{word-spacing:-21.644660px;}
.ws30{word-spacing:-21.636720px;}
.ws28{word-spacing:-20.056032px;}
.ws1f{word-spacing:-20.016000px;}
.ws2b{word-spacing:-18.000240px;}
.ws7{word-spacing:-17.814240px;}
.ws23{word-spacing:-14.094801px;}
.ws20{word-spacing:-13.410720px;}
.ws22{word-spacing:-0.783409px;}
.ws0{word-spacing:-0.610080px;}
.ws3{word-spacing:-0.312000px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:0.093600px;}
.wsf{word-spacing:0.682560px;}
.ws37{word-spacing:0.821340px;}
.ws33{word-spacing:0.937800px;}
.ws12{word-spacing:1.231920px;}
.wse{word-spacing:7.946640px;}
.wsd{word-spacing:9.386640px;}
.ws39{word-spacing:42.741067px;}
.ws19{word-spacing:79.825853px;}
.ws14{word-spacing:100.671006px;}
.ws34{word-spacing:108.977237px;}
.ws15{word-spacing:118.292768px;}
.ws1a{word-spacing:119.792357px;}
.ws13{word-spacing:121.882319px;}
.ws18{word-spacing:123.427413px;}
.ws35{word-spacing:242.267984px;}
.ws38{word-spacing:258.907784px;}
.wsc{word-spacing:790.176000px;}
.wsb{word-spacing:1042.668000px;}
.ws2d{word-spacing:1519.818000px;}
.ws2f{word-spacing:1534.032000px;}
._15{margin-left:-18.468000px;}
._7{margin-left:-16.524000px;}
._4{margin-left:-12.007440px;}
._e{margin-left:-10.866960px;}
._8{margin-left:-9.720000px;}
._3{margin-left:-7.344000px;}
._2{margin-left:-5.676000px;}
._c{margin-left:-3.830400px;}
._a{margin-left:-2.376000px;}
._0{margin-left:-1.188000px;}
._1{width:1.080000px;}
._5{width:2.772000px;}
._14{width:4.728000px;}
._f{width:21.819360px;}
._6{width:27.965520px;}
._9{width:31.056000px;}
._b{width:42.828000px;}
._11{width:134.772000px;}
._d{width:143.798912px;}
._13{width:154.614341px;}
._12{width:176.350414px;}
._10{width:997.548000px;}
.fc7{color:transparent;}
.fc4{color:rgb(169,124,17);}
.fc5{color:rgb(255,0,0);}
.fc2{color:rgb(126,139,176);}
.fc1{color:rgb(0,65,155);}
.fc6{color:rgb(0,0,0);}
.fc3{color:rgb(77,77,77);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:48.240000px;}
.fs16{font-size:50.700722px;}
.fs23{font-size:62.892097px;}
.fs8{font-size:64.080000px;}
.fs17{font-size:64.224000px;}
.fs25{font-size:65.315276px;}
.fs21{font-size:67.250483px;}
.fs1b{font-size:69.031818px;}
.fsb{font-size:71.612083px;}
.fsc{font-size:71.794833px;}
.fs12{font-size:72.000000px;}
.fs13{font-size:72.144000px;}
.fsf{font-size:72.519905px;}
.fs10{font-size:72.703902px;}
.fs1e{font-size:74.917065px;}
.fsa{font-size:77.858491px;}
.fsd{font-size:78.626830px;}
.fse{font-size:78.845498px;}
.fs11{font-size:79.622406px;}
.fs1f{font-size:80.367706px;}
.fs19{font-size:80.428993px;}
.fs1c{font-size:80.439208px;}
.fs1a{font-size:80.480372px;}
.fs22{font-size:80.517732px;}
.fs24{font-size:80.653702px;}
.fs20{font-size:80.663016px;}
.fs1d{font-size:81.032850px;}
.fs9{font-size:84.240000px;}
.fs15{font-size:85.334985px;}
.fs14{font-size:85.362187px;}
.fs5{font-size:95.760000px;}
.fs18{font-size:95.842898px;}
.fs6{font-size:95.904000px;}
.fs0{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fs3{font-size:144.000000px;}
.fs26{font-size:144.144000px;}
.fs1{font-size:192.240000px;}
.fs2{font-size:192.384000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:5.030044px;}
.yf3{bottom:5.517234px;}
.yce{bottom:5.521461px;}
.ye3{bottom:5.522161px;}
.y107{bottom:5.528166px;}
.y99{bottom:6.797398px;}
.y54{bottom:10.574052px;}
.y8d{bottom:19.480330px;}
.y44{bottom:28.116000px;}
.y19{bottom:29.196000px;}
.y85{bottom:29.993524px;}
.y63{bottom:31.072772px;}
.yeb{bottom:31.816048px;}
.y8f{bottom:31.839517px;}
.yc6{bottom:31.840316px;}
.yd8{bottom:31.844359px;}
.yfb{bottom:31.879088px;}
.y4a{bottom:36.290772px;}
.y5{bottom:39.096000px;}
.y7b{bottom:44.388000px;}
.yec{bottom:47.939015px;}
.yc7{bottom:47.975577px;}
.yd3{bottom:47.975615px;}
.yd9{bottom:47.981668px;}
.yfc{bottom:48.034000px;}
.y86{bottom:50.398396px;}
.y43{bottom:53.316000px;}
.y65{bottom:57.401279px;}
.y90{bottom:60.286983px;}
.yfa{bottom:61.341949px;}
.yea{bottom:61.834327px;}
.y4c{bottom:62.289691px;}
.y9a{bottom:63.994430px;}
.yd7{bottom:64.085289px;}
.yc5{bottom:64.130152px;}
.y87{bottom:70.806361px;}
.y4{bottom:75.096000px;}
.y6f{bottom:84.882480px;}
.y56{bottom:89.426876px;}
.yda{bottom:92.601729px;}
.y91{bottom:101.402848px;}
.yfd{bottom:107.563130px;}
.yc2{bottom:109.872000px;}
.y70{bottom:111.930237px;}
.y47{bottom:112.572000px;}
.y18{bottom:115.632000px;}
.yb8{bottom:115.812000px;}
.y57{bottom:116.136043px;}
.y66{bottom:118.553147px;}
.yed{bottom:119.246963px;}
.yc8{bottom:119.337902px;}
.y114{bottom:119.340000px;}
.ybf{bottom:120.312000px;}
.y89{bottom:122.435420px;}
.y4d{bottom:122.676046px;}
.yc4{bottom:131.674695px;}
.y106{bottom:133.478709px;}
.ydb{bottom:137.133206px;}
.y71{bottom:138.836062px;}
.y92{bottom:142.527988px;}
.y58{bottom:142.705054px;}
.ye2{bottom:145.071284px;}
.yf2{bottom:145.545778px;}
.ycd{bottom:145.656770px;}
.y17{bottom:145.692000px;}
.y3{bottom:147.132000px;}
.y46{bottom:151.635000px;}
.yc1{bottom:153.255000px;}
.y105{bottom:153.696823px;}
.y72{bottom:165.889573px;}
.yfe{bottom:167.088804px;}
.y59{bottom:169.419903px;}
.yb4{bottom:176.940000px;}
.y67{bottom:179.699261px;}
.ydc{bottom:181.749816px;}
.y8e{bottom:181.770000px;}
.y4e{bottom:183.056718px;}
.y2{bottom:183.135000px;}
.yf9{bottom:183.571014px;}
.y93{bottom:183.650037px;}
.y8c{bottom:183.965433px;}
.yd6{bottom:185.954132px;}
.y6e{bottom:188.046436px;}
.yee{bottom:190.553763px;}
.y45{bottom:190.695000px;}
.yc9{bottom:190.699079px;}
.yd4{bottom:190.699118px;}
.y55{bottom:191.299401px;}
.y73{bottom:192.793480px;}
.y5a{bottom:195.987020px;}
.y113{bottom:203.430000px;}
.y83{bottom:208.695000px;}
.y16{bottom:210.135000px;}
.y25{bottom:211.860000px;}
.y104{bottom:212.790610px;}
.y1{bottom:219.135000px;}
.y74{bottom:219.843155px;}
.y5b{bottom:222.698081px;}
.y94{bottom:224.456690px;}
.ydd{bottom:226.367576px;}
.yff{bottom:226.614479px;}
.y49{bottom:230.535000px;}
.y62{bottom:232.905000px;}
.y88{bottom:235.285280px;}
.y15{bottom:240.225000px;}
.y68{bottom:240.993062px;}
.y4f{bottom:243.583228px;}
.y112{bottom:245.370000px;}
.y75{bottom:246.747062px;}
.y84{bottom:247.619699px;}
.y5c{bottom:249.265198px;}
.y24{bottom:256.680000px;}
.ya6{bottom:261.285000px;}
.yef{bottom:261.777803px;}
.yca{bottom:261.977434px;}
.y95{bottom:265.581831px;}
.y82{bottom:265.785000px;}
.yde{bottom:270.984186px;}
.y76{bottom:273.796737px;}
.y14{bottom:274.605000px;}
.y103{bottom:275.512255px;}
.y5d{bottom:275.976259px;}
.y8a{bottom:276.410421px;}
.yc3{bottom:277.216210px;}
.yb2{bottom:279.105000px;}
.ye8{bottom:284.879313px;}
.y100{bottom:286.140153px;}
.y8b{bottom:286.614403px;}
.yf8{bottom:291.266269px;}
.y23{bottom:295.740000px;}
.y37{bottom:298.800000px;}
.y2c{bottom:300.270000px;}
.yd2{bottom:300.633282px;}
.y77{bottom:300.850249px;}
.y69{bottom:302.144930px;}
.y5e{bottom:302.691108px;}
.y50{bottom:303.969583px;}
.ya5{bottom:304.845000px;}
.y96{bottom:306.703880px;}
.ye7{bottom:307.836469px;}
.yb1{bottom:309.165000px;}
.y6b{bottom:310.200562px;}
.yf7{bottom:311.873137px;}
.y52{bottom:311.924372px;}
.y10c{bottom:312.404698px;}
.y13{bottom:313.665000px;}
.ydf{bottom:315.515662px;}
.y9{bottom:316.440000px;}
.yd1{bottom:321.775800px;}
.y78{bottom:327.754155px;}
.y36{bottom:328.890000px;}
.y5f{bottom:329.258225px;}
.ye6{bottom:330.790175px;}
.y10b{bottom:332.446602px;}
.yf6{bottom:332.482304px;}
.yf0{bottom:333.085752px;}
.ycb{bottom:333.339760px;}
.yd5{bottom:333.339800px;}
.y22{bottom:334.830000px;}
.y42{bottom:336.345000px;}
.yb0{bottom:339.225000px;}
.yd0{bottom:342.916018px;}
.yaa{bottom:343.725000px;}
.y101{bottom:345.665828px;}
.y97{bottom:347.829021px;}
.y10a{bottom:352.491961px;}
.y12{bottom:352.725000px;}
.yf5{bottom:353.088023px;}
.ye5{bottom:353.747331px;}
.yba{bottom:353.955000px;}
.y79{bottom:354.803830px;}
.y60{bottom:355.969286px;}
.ye0{bottom:360.132274px;}
.y6a{bottom:363.291045px;}
.ycf{bottom:364.058537px;}
.y51{bottom:364.350255px;}
.y8{bottom:367.590000px;}
.y21{bottom:369.210000px;}
.y109{bottom:372.535016px;}
.yaf{bottom:373.605000px;}
.yf4{bottom:373.694892px;}
.ybb{bottom:373.860000px;}
.ye4{bottom:376.704485px;}
.yb9{bottom:379.155000px;}
.y35{bottom:381.450000px;}
.y11{bottom:382.605000px;}
.y7a{bottom:383.433949px;}
.y61{bottom:384.241005px;}
.y10f{bottom:387.285000px;}
.y2f{bottom:388.695000px;}
.y98{bottom:388.944886px;}
.y41{bottom:390.165000px;}
.y64{bottom:390.919957px;}
.y4b{bottom:391.633301px;}
.y108{bottom:392.580375px;}
.y20{bottom:399.270000px;}
.y9e{bottom:402.915000px;}
.yf1{bottom:404.392551px;}
.ycc{bottom:404.700936px;}
.ye1{bottom:404.752334px;}
.y102{bottom:405.193806px;}
.yae{bottom:408.210000px;}
.y9b{bottom:410.586605px;}
.y34{bottom:411.330000px;}
.y6c{bottom:416.241500px;}
.y53{bottom:416.637864px;}
.y7{bottom:418.530000px;}
.ya9{bottom:420.270000px;}
.y10{bottom:421.710000px;}
.y9d{bottom:424.515000px;}
.y2e{bottom:427.755000px;}
.y40{bottom:429.270000px;}
.y2b{bottom:432.255000px;}
.y1f{bottom:433.830000px;}
.yad{bottom:438.270000px;}
.y10e{bottom:439.890000px;}
.yc0{bottom:446.610000px;}
.yf{bottom:460.770000px;}
.ya4{bottom:463.650000px;}
.yb7{bottom:465.270000px;}
.y2d{bottom:465.375000px;}
.y3f{bottom:466.890000px;}
.y6{bottom:469.470000px;}
.y9c{bottom:470.370000px;}
.y2a{bottom:471.135000px;}
.y1e{bottom:471.495000px;}
.yac{bottom:472.650000px;}
.y3a{bottom:477.255000px;}
.y33{bottom:486.255000px;}
.y10d{bottom:487.770000px;}
.ye{bottom:490.650000px;}
.yb6{bottom:495.150000px;}
.ye9{bottom:501.450000px;}
.ya3{bottom:502.710000px;}
.y29{bottom:508.785000px;}
.yab{bottom:510.270000px;}
.y3e{bottom:511.710000px;}
.y1d{bottom:516.315000px;}
.ya8{bottom:520.710000px;}
.y38{bottom:524.310000px;}
.ybe{bottom:525.210000px;}
.y32{bottom:525.315000px;}
.yd{bottom:529.710000px;}
.ya2{bottom:540.330000px;}
.y3d{bottom:550.770000px;}
.y28{bottom:553.785000px;}
.ya7{bottom:555.300000px;}
.y1c{bottom:555.375000px;}
.yb5{bottom:559.800000px;}
.ybd{bottom:564.300000px;}
.y31{bottom:564.375000px;}
.yc{bottom:571.860000px;}
.ya1{bottom:583.920000px;}
.y3c{bottom:588.420000px;}
.y80{bottom:588.450000px;}
.y27{bottom:592.665000px;}
.y81{bottom:594.180000px;}
.y1b{bottom:594.255000px;}
.yb{bottom:601.920000px;}
.y30{bottom:601.995000px;}
.y48{bottom:608.655000px;}
.y7f{bottom:610.950000px;}
.y26{bottom:630.285000px;}
.y3b{bottom:631.800000px;}
.y1a{bottom:631.905000px;}
.ybc{bottom:633.240000px;}
.y7e{bottom:633.450000px;}
.yb3{bottom:656.385000px;}
.y7d{bottom:657.750000px;}
.y111{bottom:665.430000px;}
.y7c{bottom:690.870000px;}
.y39{bottom:698.250000px;}
.ya0{bottom:701.790000px;}
.y110{bottom:707.550000px;}
.ya{bottom:722.730000px;}
.y9f{bottom:743.730000px;}
.h9{height:50.312812px;}
.h1a{height:62.376207px;}
.h17{height:62.396091px;}
.h2d{height:65.594492px;}
.h2f{height:68.121792px;}
.h2a{height:70.140152px;}
.h7{height:70.931602px;}
.h22{height:71.998029px;}
.h13{height:75.093750px;}
.h14{height:75.243937px;}
.h26{height:78.136158px;}
.h15{height:78.943359px;}
.he{height:81.203973px;}
.hf{height:82.005325px;}
.h11{height:82.233390px;}
.h12{height:83.043679px;}
.h28{height:83.821006px;}
.h20{height:83.884927px;}
.h24{height:83.895580px;}
.h21{height:83.938512px;}
.h2c{height:83.977478px;}
.h2e{height:84.119291px;}
.h29{height:84.129005px;}
.h25{height:84.514731px;}
.h18{height:84.634588px;}
.hb{height:87.859687px;}
.h6{height:99.874688px;}
.h1e{height:99.961147px;}
.hc{height:99.984375px;}
.h8{height:100.024875px;}
.h1{height:112.640625px;}
.h5{height:112.790813px;}
.ha{height:127.640625px;}
.h1c{height:144.056812px;}
.h1b{height:148.627687px;}
.h4{height:150.187500px;}
.h30{height:150.337688px;}
.h2{height:200.500313px;}
.h3{height:200.650500px;}
.h16{height:328.973299px;}
.h1d{height:339.926785px;}
.h27{height:423.620111px;}
.h1f{height:423.943202px;}
.h23{height:423.997043px;}
.h2b{height:424.332551px;}
.h10{height:446.430554px;}
.h19{height:446.458241px;}
.hd{height:446.460000px;}
.h0{height:810.000000px;}
.w4{width:328.958167px;}
.w6{width:386.885836px;}
.w5{width:442.425000px;}
.w2{width:483.975000px;}
.w3{width:491.760000px;}
.w8{width:590.354109px;}
.wa{width:609.255798px;}
.w7{width:618.011346px;}
.w9{width:619.413882px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x14{left:4.789500px;}
.x31{left:13.859979px;}
.x39{left:19.591668px;}
.x11{left:21.959706px;}
.x1b{left:23.032288px;}
.x27{left:30.602218px;}
.x38{left:33.061078px;}
.xd{left:38.483354px;}
.x17{left:39.765147px;}
.x2b{left:42.975976px;}
.x37{left:44.283673px;}
.x20{left:51.319003px;}
.x1{left:53.639979px;}
.x36{left:55.509719px;}
.x35{left:67.597889px;}
.x2a{left:69.259864px;}
.x16{left:70.344624px;}
.xc{left:71.386280px;}
.xb{left:74.092151px;}
.x15{left:75.824821px;}
.x34{left:79.762500px;}
.x2{left:81.683979px;}
.x42{left:95.062500px;}
.xe{left:105.998195px;}
.x18{left:108.134886px;}
.x43{left:111.970589px;}
.x3{left:113.399979px;}
.x24{left:128.303591px;}
.x25{left:140.980289px;}
.x2c{left:147.483943px;}
.x44{left:149.527576px;}
.x3b{left:155.231940px;}
.x21{left:158.296844px;}
.x4a{left:161.521082px;}
.xf{left:165.393646px;}
.x26{left:167.264170px;}
.x19{left:168.282414px;}
.x10{left:196.158560px;}
.x1a{left:199.436837px;}
.x23{left:206.215515px;}
.x28{left:226.314085px;}
.x3f{left:245.579727px;}
.x22{left:249.191532px;}
.x3a{left:266.954860px;}
.x49{left:284.577115px;}
.x2e{left:376.949979px;}
.x2f{left:378.074979px;}
.x13{left:386.592371px;}
.x1d{left:392.281962px;}
.x12{left:449.120934px;}
.x1c{left:455.602237px;}
.x40{left:458.479795px;}
.x2d{left:461.849979px;}
.x8{left:473.474979px;}
.x7{left:493.274979px;}
.x48{left:496.242272px;}
.x41{left:500.554994px;}
.xa{left:507.120000px;}
.x33{left:523.514979px;}
.x3c{left:579.330812px;}
.x45{left:580.645565px;}
.x3d{left:612.141065px;}
.x46{left:613.530276px;}
.x30{left:667.079979px;}
.x5{left:698.759979px;}
.x3e{left:706.875000px;}
.x4{left:730.904979px;}
.x47{left:735.060000px;}
.x29{left:799.125000px;}
.x1f{left:889.101554px;}
.x6{left:989.459979px;}
.x1e{left:1007.024979px;}
.x32{left:1017.029979px;}
.x9{left:1256.429979px;}
@media print{
.v5{vertical-align:-99.756906pt;}
.v4{vertical-align:-98.508125pt;}
.va{vertical-align:-29.659503pt;}
.v6{vertical-align:-23.680000pt;}
.v1{vertical-align:-20.480000pt;}
.v8{vertical-align:-15.360000pt;}
.v2{vertical-align:-8.320000pt;}
.vd{vertical-align:-2.453333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.333333pt;}
.v9{vertical-align:19.767553pt;}
.v7{vertical-align:23.680000pt;}
.vc{vertical-align:25.600000pt;}
.vb{vertical-align:29.659463pt;}
.ve{vertical-align:54.016000pt;}
.vf{vertical-align:83.328000pt;}
.ls11{letter-spacing:-3.370667pt;}
.ls2f{letter-spacing:-1.584000pt;}
.ls25{letter-spacing:-0.380800pt;}
.ls1e{letter-spacing:-0.336533pt;}
.ls9{letter-spacing:-0.326933pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls39{letter-spacing:-0.192000pt;}
.ls24{letter-spacing:-0.185067pt;}
.ls22{letter-spacing:-0.161067pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.097520pt;}
.ls1c{letter-spacing:-0.096299pt;}
.ls2c{letter-spacing:-0.033280pt;}
.ls12{letter-spacing:-0.024960pt;}
.lsc{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.016640pt;}
.ls38{letter-spacing:0.028427pt;}
.ls1f{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.033280pt;}
.ls2d{letter-spacing:0.094933pt;}
.ls28{letter-spacing:0.096000pt;}
.ls32{letter-spacing:0.127214pt;}
.ls33{letter-spacing:0.134933pt;}
.ls36{letter-spacing:0.137318pt;}
.ls31{letter-spacing:0.137423pt;}
.ls37{letter-spacing:0.143323pt;}
.ls21{letter-spacing:0.156267pt;}
.ls2b{letter-spacing:0.161067pt;}
.ls26{letter-spacing:0.165333pt;}
.ls2a{letter-spacing:0.185067pt;}
.ls2{letter-spacing:0.192000pt;}
.ls29{letter-spacing:0.224000pt;}
.ls23{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.303467pt;}
.ls8{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.507520pt;}
.ls27{letter-spacing:0.656640pt;}
.ls1a{letter-spacing:0.704000pt;}
.ls2e{letter-spacing:0.736000pt;}
.ls14{letter-spacing:0.778374pt;}
.ls15{letter-spacing:0.788242pt;}
.ls19{letter-spacing:18.176000pt;}
.ls5{letter-spacing:23.642112pt;}
.ls17{letter-spacing:23.936000pt;}
.ls7{letter-spacing:24.353280pt;}
.lsd{letter-spacing:26.624000pt;}
.ls16{letter-spacing:26.944000pt;}
.ls34{letter-spacing:26.976000pt;}
.ls1{letter-spacing:35.072000pt;}
.ls4{letter-spacing:73.518848pt;}
.ls6{letter-spacing:73.589120pt;}
.lse{letter-spacing:73.596416pt;}
.ls3{letter-spacing:73.655040pt;}
.ls1b{letter-spacing:83.269376pt;}
.ls18{letter-spacing:83.328000pt;}
.ls30{letter-spacing:177.152864pt;}
.ls35{letter-spacing:290.129340pt;}
.ws1e{word-spacing:-96.000000pt;}
.ws1b{word-spacing:-64.625690pt;}
.ws16{word-spacing:-63.817629pt;}
.ws3c{word-spacing:-35.619584pt;}
.wsa{word-spacing:-35.584000pt;}
.ws6{word-spacing:-35.456000pt;}
.ws32{word-spacing:-35.328000pt;}
.ws31{word-spacing:-26.912000pt;}
.ws3b{word-spacing:-26.880000pt;}
.ws2{word-spacing:-26.723584pt;}
.ws2c{word-spacing:-26.720000pt;}
.ws5{word-spacing:-26.688000pt;}
.ws25{word-spacing:-26.560000pt;}
.ws24{word-spacing:-26.432000pt;}
.ws4{word-spacing:-26.396651pt;}
.ws2a{word-spacing:-23.698944pt;}
.ws26{word-spacing:-23.696640pt;}
.ws27{word-spacing:-23.680000pt;}
.ws9{word-spacing:-23.663360pt;}
.ws29{word-spacing:-23.478293pt;}
.ws21{word-spacing:-21.093945pt;}
.ws11{word-spacing:-20.816640pt;}
.ws1d{word-spacing:-20.800000pt;}
.ws10{word-spacing:-20.791680pt;}
.ws2e{word-spacing:-20.783360pt;}
.ws3a{word-spacing:-19.896826pt;}
.ws36{word-spacing:-19.877422pt;}
.ws1c{word-spacing:-19.483599pt;}
.ws17{word-spacing:-19.239698pt;}
.ws30{word-spacing:-19.232640pt;}
.ws28{word-spacing:-17.827584pt;}
.ws1f{word-spacing:-17.792000pt;}
.ws2b{word-spacing:-16.000213pt;}
.ws7{word-spacing:-15.834880pt;}
.ws23{word-spacing:-12.528712pt;}
.ws20{word-spacing:-11.920640pt;}
.ws22{word-spacing:-0.696363pt;}
.ws0{word-spacing:-0.542293pt;}
.ws3{word-spacing:-0.277333pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:0.083200pt;}
.wsf{word-spacing:0.606720pt;}
.ws37{word-spacing:0.730080pt;}
.ws33{word-spacing:0.833600pt;}
.ws12{word-spacing:1.095040pt;}
.wse{word-spacing:7.063680pt;}
.wsd{word-spacing:8.343680pt;}
.ws39{word-spacing:37.992060pt;}
.ws19{word-spacing:70.956314pt;}
.ws14{word-spacing:89.485338pt;}
.ws34{word-spacing:96.868655pt;}
.ws15{word-spacing:105.149127pt;}
.ws1a{word-spacing:106.482095pt;}
.ws13{word-spacing:108.339839pt;}
.ws18{word-spacing:109.713256pt;}
.ws35{word-spacing:215.349319pt;}
.ws38{word-spacing:230.140253pt;}
.wsc{word-spacing:702.378667pt;}
.wsb{word-spacing:926.816000pt;}
.ws2d{word-spacing:1350.949333pt;}
.ws2f{word-spacing:1363.584000pt;}
._15{margin-left:-16.416000pt;}
._7{margin-left:-14.688000pt;}
._4{margin-left:-10.673280pt;}
._e{margin-left:-9.659520pt;}
._8{margin-left:-8.640000pt;}
._3{margin-left:-6.528000pt;}
._2{margin-left:-5.045333pt;}
._c{margin-left:-3.404800pt;}
._a{margin-left:-2.112000pt;}
._0{margin-left:-1.056000pt;}
._1{width:0.960000pt;}
._5{width:2.464000pt;}
._14{width:4.202667pt;}
._f{width:19.394987pt;}
._6{width:24.858240pt;}
._9{width:27.605333pt;}
._b{width:38.069333pt;}
._11{width:119.797333pt;}
._d{width:127.821255pt;}
._13{width:137.434970pt;}
._12{width:156.755924pt;}
._10{width:886.709333pt;}
.fs7{font-size:42.880000pt;}
.fs16{font-size:45.067309pt;}
.fs23{font-size:55.904086pt;}
.fs8{font-size:56.960000pt;}
.fs17{font-size:57.088000pt;}
.fs25{font-size:58.058023pt;}
.fs21{font-size:59.778207pt;}
.fs1b{font-size:61.361616pt;}
.fsb{font-size:63.655185pt;}
.fsc{font-size:63.817629pt;}
.fs12{font-size:64.000000pt;}
.fs13{font-size:64.128000pt;}
.fsf{font-size:64.462138pt;}
.fs10{font-size:64.625690pt;}
.fs1e{font-size:66.592947pt;}
.fsa{font-size:69.207547pt;}
.fsd{font-size:69.890516pt;}
.fse{font-size:70.084887pt;}
.fs11{font-size:70.775472pt;}
.fs1f{font-size:71.437961pt;}
.fs19{font-size:71.492438pt;}
.fs1c{font-size:71.501518pt;}
.fs1a{font-size:71.538108pt;}
.fs22{font-size:71.571317pt;}
.fs24{font-size:71.692180pt;}
.fs20{font-size:71.700459pt;}
.fs1d{font-size:72.029200pt;}
.fs9{font-size:74.880000pt;}
.fs15{font-size:75.853320pt;}
.fs14{font-size:75.877500pt;}
.fs5{font-size:85.120000pt;}
.fs18{font-size:85.193687pt;}
.fs6{font-size:85.248000pt;}
.fs0{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fs3{font-size:128.000000pt;}
.fs26{font-size:128.128000pt;}
.fs1{font-size:170.880000pt;}
.fs2{font-size:171.008000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:4.471150pt;}
.yf3{bottom:4.904208pt;}
.yce{bottom:4.907965pt;}
.ye3{bottom:4.908588pt;}
.y107{bottom:4.913925pt;}
.y99{bottom:6.042132pt;}
.y54{bottom:9.399157pt;}
.y8d{bottom:17.315849pt;}
.y44{bottom:24.992000pt;}
.y19{bottom:25.952000pt;}
.y85{bottom:26.660910pt;}
.y63{bottom:27.620242pt;}
.yeb{bottom:28.280932pt;}
.y8f{bottom:28.301793pt;}
.yc6{bottom:28.302503pt;}
.yd8{bottom:28.306097pt;}
.yfb{bottom:28.336967pt;}
.y4a{bottom:32.258464pt;}
.y5{bottom:34.752000pt;}
.y7b{bottom:39.456000pt;}
.yec{bottom:42.612458pt;}
.yc7{bottom:42.644957pt;}
.yd3{bottom:42.644991pt;}
.yd9{bottom:42.650371pt;}
.yfc{bottom:42.696889pt;}
.y86{bottom:44.798575pt;}
.y43{bottom:47.392000pt;}
.y65{bottom:51.023359pt;}
.y90{bottom:53.588429pt;}
.yfa{bottom:54.526177pt;}
.yea{bottom:54.963846pt;}
.y4c{bottom:55.368614pt;}
.y9a{bottom:56.883938pt;}
.yd7{bottom:56.964701pt;}
.yc5{bottom:57.004579pt;}
.y87{bottom:62.938988pt;}
.y4{bottom:66.752000pt;}
.y6f{bottom:75.451093pt;}
.y56{bottom:79.490556pt;}
.yda{bottom:82.312648pt;}
.y91{bottom:90.135864pt;}
.yfd{bottom:95.611671pt;}
.yc2{bottom:97.664000pt;}
.y70{bottom:99.493544pt;}
.y47{bottom:100.064000pt;}
.y18{bottom:102.784000pt;}
.yb8{bottom:102.944000pt;}
.y57{bottom:103.232038pt;}
.y66{bottom:105.380575pt;}
.yed{bottom:105.997301pt;}
.yc8{bottom:106.078136pt;}
.y114{bottom:106.080000pt;}
.ybf{bottom:106.944000pt;}
.y89{bottom:108.831484pt;}
.y4d{bottom:109.045374pt;}
.yc4{bottom:117.044173pt;}
.y106{bottom:118.647742pt;}
.ydb{bottom:121.896183pt;}
.y71{bottom:123.409833pt;}
.y92{bottom:126.691545pt;}
.y58{bottom:126.848937pt;}
.ye2{bottom:128.952253pt;}
.yf2{bottom:129.374025pt;}
.ycd{bottom:129.472685pt;}
.y17{bottom:129.504000pt;}
.y3{bottom:130.784000pt;}
.y46{bottom:134.786667pt;}
.yc1{bottom:136.226667pt;}
.y105{bottom:136.619398pt;}
.y72{bottom:147.457399pt;}
.yfe{bottom:148.523382pt;}
.y59{bottom:150.595469pt;}
.yb4{bottom:157.280000pt;}
.y67{bottom:159.732677pt;}
.ydc{bottom:161.555392pt;}
.y8e{bottom:161.573333pt;}
.y4e{bottom:162.717083pt;}
.y2{bottom:162.786667pt;}
.yf9{bottom:163.174234pt;}
.y93{bottom:163.244478pt;}
.y8c{bottom:163.524829pt;}
.yd6{bottom:165.292562pt;}
.y6e{bottom:167.152387pt;}
.yee{bottom:169.381122pt;}
.y45{bottom:169.506667pt;}
.yc9{bottom:169.510292pt;}
.yd4{bottom:169.510328pt;}
.y55{bottom:170.043912pt;}
.y73{bottom:171.371982pt;}
.y5a{bottom:174.210684pt;}
.y113{bottom:180.826667pt;}
.y83{bottom:185.506667pt;}
.y16{bottom:186.786667pt;}
.y25{bottom:188.320000pt;}
.y104{bottom:189.147209pt;}
.y1{bottom:194.786667pt;}
.y74{bottom:195.416138pt;}
.y5b{bottom:197.953850pt;}
.y94{bottom:199.517058pt;}
.ydd{bottom:201.215623pt;}
.yff{bottom:201.435092pt;}
.y49{bottom:204.920000pt;}
.y62{bottom:207.026667pt;}
.y88{bottom:209.142471pt;}
.y15{bottom:213.533333pt;}
.y68{bottom:214.216055pt;}
.y4f{bottom:216.518425pt;}
.y112{bottom:218.106667pt;}
.y75{bottom:219.330722pt;}
.y84{bottom:220.106399pt;}
.y5c{bottom:221.569065pt;}
.y24{bottom:228.160000pt;}
.ya6{bottom:232.253333pt;}
.yef{bottom:232.691381pt;}
.yca{bottom:232.868830pt;}
.y95{bottom:236.072739pt;}
.y82{bottom:236.253333pt;}
.yde{bottom:240.874832pt;}
.y76{bottom:243.374878pt;}
.y14{bottom:244.093333pt;}
.y103{bottom:244.899782pt;}
.y5d{bottom:245.312230pt;}
.y8a{bottom:245.698152pt;}
.yc3{bottom:246.414409pt;}
.yb2{bottom:248.093333pt;}
.ye8{bottom:253.226056pt;}
.y100{bottom:254.346803pt;}
.y8b{bottom:254.768359pt;}
.yf8{bottom:258.903350pt;}
.y23{bottom:262.880000pt;}
.y37{bottom:265.600000pt;}
.y2c{bottom:266.906667pt;}
.yd2{bottom:267.229584pt;}
.y77{bottom:267.422443pt;}
.y69{bottom:268.573271pt;}
.y5e{bottom:269.058762pt;}
.y50{bottom:270.195184pt;}
.ya5{bottom:270.973333pt;}
.y96{bottom:272.625671pt;}
.ye7{bottom:273.632417pt;}
.yb1{bottom:274.813333pt;}
.y6b{bottom:275.733833pt;}
.yf7{bottom:277.220566pt;}
.y52{bottom:277.266108pt;}
.y10c{bottom:277.693065pt;}
.y13{bottom:278.813333pt;}
.ydf{bottom:280.458367pt;}
.y9{bottom:281.280000pt;}
.yd1{bottom:286.022934pt;}
.y78{bottom:291.337027pt;}
.y36{bottom:292.346667pt;}
.y5f{bottom:292.673977pt;}
.ye6{bottom:294.035711pt;}
.y10b{bottom:295.508091pt;}
.yf6{bottom:295.539826pt;}
.yf0{bottom:296.076224pt;}
.ycb{bottom:296.302009pt;}
.yd5{bottom:296.302044pt;}
.y22{bottom:297.626667pt;}
.y42{bottom:298.973333pt;}
.yb0{bottom:301.533333pt;}
.yd0{bottom:304.814238pt;}
.yaa{bottom:305.533333pt;}
.y101{bottom:307.258514pt;}
.y97{bottom:309.181352pt;}
.y10a{bottom:313.326187pt;}
.y12{bottom:313.533333pt;}
.yf5{bottom:313.856021pt;}
.ye5{bottom:314.442072pt;}
.yba{bottom:314.626667pt;}
.y79{bottom:315.381183pt;}
.y60{bottom:316.417143pt;}
.ye0{bottom:320.117577pt;}
.y6a{bottom:322.925373pt;}
.ycf{bottom:323.607588pt;}
.y51{bottom:323.866893pt;}
.y8{bottom:326.746667pt;}
.y21{bottom:328.186667pt;}
.y109{bottom:331.142236pt;}
.yaf{bottom:332.093333pt;}
.yf4{bottom:332.173237pt;}
.ybb{bottom:332.320000pt;}
.ye4{bottom:334.848431pt;}
.yb9{bottom:337.026667pt;}
.y35{bottom:339.066667pt;}
.y11{bottom:340.093333pt;}
.y7a{bottom:340.830177pt;}
.y61{bottom:341.547560pt;}
.y10f{bottom:344.253333pt;}
.y2f{bottom:345.506667pt;}
.y98{bottom:345.728787pt;}
.y41{bottom:346.813333pt;}
.y64{bottom:347.484406pt;}
.y4b{bottom:348.118490pt;}
.y108{bottom:348.960333pt;}
.y20{bottom:354.906667pt;}
.y9e{bottom:358.146667pt;}
.yf1{bottom:359.460045pt;}
.ycc{bottom:359.734165pt;}
.ye1{bottom:359.779852pt;}
.y102{bottom:360.172272pt;}
.yae{bottom:362.853333pt;}
.y9b{bottom:364.965871pt;}
.y34{bottom:365.626667pt;}
.y6c{bottom:369.992444pt;}
.y53{bottom:370.344768pt;}
.y7{bottom:372.026667pt;}
.ya9{bottom:373.573333pt;}
.y10{bottom:374.853333pt;}
.y9d{bottom:377.346667pt;}
.y2e{bottom:380.226667pt;}
.y40{bottom:381.573333pt;}
.y2b{bottom:384.226667pt;}
.y1f{bottom:385.626667pt;}
.yad{bottom:389.573333pt;}
.y10e{bottom:391.013333pt;}
.yc0{bottom:396.986667pt;}
.yf{bottom:409.573333pt;}
.ya4{bottom:412.133333pt;}
.yb7{bottom:413.573333pt;}
.y2d{bottom:413.666667pt;}
.y3f{bottom:415.013333pt;}
.y6{bottom:417.306667pt;}
.y9c{bottom:418.106667pt;}
.y2a{bottom:418.786667pt;}
.y1e{bottom:419.106667pt;}
.yac{bottom:420.133333pt;}
.y3a{bottom:424.226667pt;}
.y33{bottom:432.226667pt;}
.y10d{bottom:433.573333pt;}
.ye{bottom:436.133333pt;}
.yb6{bottom:440.133333pt;}
.ye9{bottom:445.733333pt;}
.ya3{bottom:446.853333pt;}
.y29{bottom:452.253333pt;}
.yab{bottom:453.573333pt;}
.y3e{bottom:454.853333pt;}
.y1d{bottom:458.946667pt;}
.ya8{bottom:462.853333pt;}
.y38{bottom:466.053333pt;}
.ybe{bottom:466.853333pt;}
.y32{bottom:466.946667pt;}
.yd{bottom:470.853333pt;}
.ya2{bottom:480.293333pt;}
.y3d{bottom:489.573333pt;}
.y28{bottom:492.253333pt;}
.ya7{bottom:493.600000pt;}
.y1c{bottom:493.666667pt;}
.yb5{bottom:497.600000pt;}
.ybd{bottom:501.600000pt;}
.y31{bottom:501.666667pt;}
.yc{bottom:508.320000pt;}
.ya1{bottom:519.040000pt;}
.y3c{bottom:523.040000pt;}
.y80{bottom:523.066667pt;}
.y27{bottom:526.813333pt;}
.y81{bottom:528.160000pt;}
.y1b{bottom:528.226667pt;}
.yb{bottom:535.040000pt;}
.y30{bottom:535.106667pt;}
.y48{bottom:541.026667pt;}
.y7f{bottom:543.066667pt;}
.y26{bottom:560.253333pt;}
.y3b{bottom:561.600000pt;}
.y1a{bottom:561.693333pt;}
.ybc{bottom:562.880000pt;}
.y7e{bottom:563.066667pt;}
.yb3{bottom:583.453333pt;}
.y7d{bottom:584.666667pt;}
.y111{bottom:591.493333pt;}
.y7c{bottom:614.106667pt;}
.y39{bottom:620.666667pt;}
.ya0{bottom:623.813333pt;}
.y110{bottom:628.933333pt;}
.ya{bottom:642.426667pt;}
.y9f{bottom:661.093333pt;}
.h9{height:44.722500pt;}
.h1a{height:55.445518pt;}
.h17{height:55.463192pt;}
.h2d{height:58.306215pt;}
.h2f{height:60.552704pt;}
.h2a{height:62.346802pt;}
.h7{height:63.050313pt;}
.h22{height:63.998248pt;}
.h13{height:66.750000pt;}
.h14{height:66.883500pt;}
.h26{height:69.454363pt;}
.h15{height:70.171875pt;}
.he{height:72.181309pt;}
.hf{height:72.893622pt;}
.h11{height:73.096347pt;}
.h12{height:73.816604pt;}
.h28{height:74.507561pt;}
.h20{height:74.564379pt;}
.h24{height:74.573849pt;}
.h21{height:74.612011pt;}
.h2c{height:74.646647pt;}
.h2e{height:74.772703pt;}
.h29{height:74.781338pt;}
.h25{height:75.124205pt;}
.h18{height:75.230745pt;}
.hb{height:78.097500pt;}
.h6{height:88.777500pt;}
.h1e{height:88.854353pt;}
.hc{height:88.875000pt;}
.h8{height:88.911000pt;}
.h1{height:100.125000pt;}
.h5{height:100.258500pt;}
.ha{height:113.458333pt;}
.h1c{height:128.050500pt;}
.h1b{height:132.113500pt;}
.h4{height:133.500000pt;}
.h30{height:133.633500pt;}
.h2{height:178.222500pt;}
.h3{height:178.356000pt;}
.h16{height:292.420710pt;}
.h1d{height:302.157142pt;}
.h27{height:376.551210pt;}
.h1f{height:376.838402pt;}
.h23{height:376.886260pt;}
.h2b{height:377.184490pt;}
.h10{height:396.827159pt;}
.h19{height:396.851770pt;}
.hd{height:396.853333pt;}
.h0{height:720.000000pt;}
.w4{width:292.407260pt;}
.w6{width:343.898521pt;}
.w5{width:393.266667pt;}
.w2{width:430.200000pt;}
.w3{width:437.120000pt;}
.w8{width:524.759208pt;}
.wa{width:541.560710pt;}
.w7{width:549.343418pt;}
.w9{width:550.590117pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x14{left:4.257333pt;}
.x31{left:12.319981pt;}
.x39{left:17.414816pt;}
.x11{left:19.519739pt;}
.x1b{left:20.473145pt;}
.x27{left:27.201972pt;}
.x38{left:29.387625pt;}
.xd{left:34.207426pt;}
.x17{left:35.346797pt;}
.x2b{left:38.200868pt;}
.x37{left:39.363265pt;}
.x20{left:45.616892pt;}
.x1{left:47.679981pt;}
.x36{left:49.341972pt;}
.x35{left:60.087013pt;}
.x2a{left:61.564324pt;}
.x16{left:62.528555pt;}
.xc{left:63.454471pt;}
.xb{left:65.859690pt;}
.x15{left:67.399841pt;}
.x34{left:70.900000pt;}
.x2{left:72.607981pt;}
.x42{left:84.500000pt;}
.xe{left:94.220618pt;}
.x18{left:96.119899pt;}
.x43{left:99.529412pt;}
.x3{left:100.799981pt;}
.x24{left:114.047637pt;}
.x25{left:125.315813pt;}
.x2c{left:131.096839pt;}
.x44{left:132.913401pt;}
.x3b{left:137.983946pt;}
.x21{left:140.708305pt;}
.x4a{left:143.574295pt;}
.xf{left:147.016574pt;}
.x26{left:148.679262pt;}
.x19{left:149.584368pt;}
.x10{left:174.363165pt;}
.x1a{left:177.277188pt;}
.x23{left:183.302680pt;}
.x28{left:201.168075pt;}
.x3f{left:218.293091pt;}
.x22{left:221.503584pt;}
.x3a{left:237.293209pt;}
.x49{left:252.957436pt;}
.x2e{left:335.066648pt;}
.x2f{left:336.066648pt;}
.x13{left:343.637664pt;}
.x1d{left:348.695078pt;}
.x12{left:399.218608pt;}
.x1c{left:404.979766pt;}
.x40{left:407.537596pt;}
.x2d{left:410.533314pt;}
.x8{left:420.866648pt;}
.x7{left:438.466648pt;}
.x48{left:441.104241pt;}
.x41{left:444.937773pt;}
.xa{left:450.773333pt;}
.x33{left:465.346648pt;}
.x3c{left:514.960722pt;}
.x45{left:516.129391pt;}
.x3d{left:544.125391pt;}
.x46{left:545.360246pt;}
.x30{left:592.959981pt;}
.x5{left:621.119981pt;}
.x3e{left:628.333333pt;}
.x4{left:649.693314pt;}
.x47{left:653.386667pt;}
.x29{left:710.333333pt;}
.x1f{left:790.312493pt;}
.x6{left:879.519981pt;}
.x1e{left:895.133314pt;}
.x32{left:904.026648pt;}
.x9{left:1116.826648pt;}
}




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