
    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_a35b8428b6699d45534ac01f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_4419c6a6c46132623ffea06b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_3c94f8451d1b764cb97cbfb4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_2bfaef4b721fcbe7baa90504.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_56702eedd0808353c5659433.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_345a17dde01b02599ea5dddd.woff2')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_d18e3ab6b302770641d6aeeb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_97aec60d61b0531954ea1679.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_0c2429366da8dc19e1f884fd.woff2')format("woff");}.ff9{font-family:ff9;line-height:2.523438;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_4ca1dc119190e3ec87605025.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_03dcd4af6bb455a2b03c2d8f.woff2')format("woff");}.ffb{font-family:ffb;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;}
.mc{transform:matrix(0.000000,-0.250168,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250168,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250168,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250276,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250276,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250276,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.250398,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250398,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250398,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.249188,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249188,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249188,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249832,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);}
.m5{transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251759,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252776,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-50.929121px;}
.v3{vertical-align:-47.335815px;}
.v4{vertical-align:-44.257550px;}
.v6{vertical-align:-42.460897px;}
.vb{vertical-align:-40.475409px;}
.va{vertical-align:-37.375415px;}
.v2{vertical-align:-33.120000px;}
.v15{vertical-align:-29.520000px;}
.v12{vertical-align:-26.640000px;}
.v11{vertical-align:-16.560000px;}
.vc{vertical-align:-14.400000px;}
.v7{vertical-align:-9.360000px;}
.v9{vertical-align:-8.094832px;}
.v1a{vertical-align:-3.312282px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:3.765379px;}
.v1b{vertical-align:5.161997px;}
.vd{vertical-align:14.400000px;}
.v16{vertical-align:21.600000px;}
.v14{vertical-align:23.040000px;}
.v1{vertical-align:33.120000px;}
.v18{vertical-align:36.000000px;}
.vf{vertical-align:50.400000px;}
.ve{vertical-align:52.560000px;}
.v10{vertical-align:58.320000px;}
.v17{vertical-align:64.080000px;}
.v19{vertical-align:78.480000px;}
.v13{vertical-align:84.960000px;}
.ls8{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.288000px;}
.ls25{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.009561px;}
.ls10{letter-spacing:0.009811px;}
.lsf{letter-spacing:0.045360px;}
.ls2f{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.374400px;}
.ls24{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.720000px;}
.lse{letter-spacing:1.584000px;}
.ls17{letter-spacing:2.160000px;}
.ls1d{letter-spacing:2.210400px;}
.ls2c{letter-spacing:2.550240px;}
.ls2e{letter-spacing:2.670240px;}
.ls32{letter-spacing:2.730240px;}
.ls14{letter-spacing:2.801520px;}
.ls2d{letter-spacing:3.270240px;}
.ls22{letter-spacing:3.696480px;}
.ls23{letter-spacing:4.352400px;}
.ls16{letter-spacing:4.416480px;}
.ls21{letter-spacing:4.438080px;}
.ls15{letter-spacing:4.618080px;}
.ls33{letter-spacing:5.880000px;}
.ls30{letter-spacing:12.240000px;}
.ls20{letter-spacing:15.989040px;}
.ls1a{letter-spacing:17.429040px;}
.ls19{letter-spacing:18.334800px;}
.ls29{letter-spacing:19.656000px;}
.ls1e{letter-spacing:22.289760px;}
.ls26{letter-spacing:27.792000px;}
.ls1{letter-spacing:33.984000px;}
.ls1f{letter-spacing:36.198720px;}
.ls2a{letter-spacing:38.801520px;}
.ls1b{letter-spacing:81.876960px;}
.ls28{letter-spacing:102.161520px;}
.ls18{letter-spacing:104.235840px;}
.ls27{letter-spacing:110.952000px;}
.ls31{letter-spacing:303.659695px;}
.ls11{letter-spacing:347.281363px;}
.lsc{letter-spacing:382.130372px;}
.ls13{letter-spacing:395.918622px;}
.ls2b{letter-spacing:671.179537px;}
.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;}
}
.ws12{word-spacing:-28.510739px;}
.ws15{word-spacing:-27.782485px;}
.ws36{word-spacing:-18.432000px;}
.ws2a{word-spacing:-18.406987px;}
.wsf{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.216000px;}
.ws37{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws1c{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.424000px;}
.ws6{word-spacing:-17.064000px;}
.ws13{word-spacing:-16.292060px;}
.ws16{word-spacing:-15.875910px;}
.ws18{word-spacing:-15.840000px;}
.ws19{word-spacing:-14.572800px;}
.ws27{word-spacing:-14.475280px;}
.ws2c{word-spacing:-13.804964px;}
.ws2b{word-spacing:-13.783039px;}
.wsd{word-spacing:-13.319054px;}
.ws0{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws2f{word-spacing:-11.468915px;}
.ws1f{word-spacing:-11.246400px;}
.ws1a{word-spacing:-10.612800px;}
.ws24{word-spacing:-9.649897px;}
.ws21{word-spacing:-9.566806px;}
.ws10{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws1d{word-spacing:38.088000px;}
.ws1e{word-spacing:38.808000px;}
.ws29{word-spacing:63.439933px;}
.ws1b{word-spacing:74.496240px;}
.ws17{word-spacing:78.624009px;}
.ws11{word-spacing:100.186039px;}
.ws20{word-spacing:100.275120px;}
.ws9{word-spacing:101.906632px;}
.ws28{word-spacing:104.889402px;}
.ws23{word-spacing:109.356054px;}
.ws26{word-spacing:110.305849px;}
.ws2d{word-spacing:112.696372px;}
.wsa{word-spacing:112.866215px;}
.ws32{word-spacing:114.996367px;}
.ws22{word-spacing:115.018193px;}
.ws25{word-spacing:116.017165px;}
.ws30{word-spacing:120.768466px;}
.ws34{word-spacing:123.041190px;}
.ws31{word-spacing:123.089088px;}
.wsb{word-spacing:123.649976px;}
.ws33{word-spacing:125.361812px;}
.wsc{word-spacing:129.826538px;}
.ws35{word-spacing:131.098646px;}
.ws2e{word-spacing:135.591715px;}
.ws14{word-spacing:142.221308px;}
.wse{word-spacing:761.277687px;}
._22{margin-left:-885.044616px;}
._24{margin-left:-5.940000px;}
._16{margin-left:-2.700000px;}
._0{margin-left:-1.104000px;}
._2{width:1.092000px;}
._a{width:2.184000px;}
._b{width:3.792000px;}
._10{width:4.896000px;}
._8{width:6.504000px;}
._3{width:7.896000px;}
._4{width:9.084000px;}
._9{width:10.476000px;}
._17{width:11.772000px;}
._1b{width:13.740000px;}
._1a{width:14.988000px;}
._14{width:16.056000px;}
._29{width:17.081040px;}
._19{width:19.032000px;}
._18{width:20.112000px;}
._25{width:21.264000px;}
._49{width:22.476000px;}
._15{width:24.264000px;}
._11{width:26.040000px;}
._12{width:27.060000px;}
._54{width:28.320000px;}
._c{width:29.952000px;}
._d{width:31.296000px;}
._1e{width:32.328000px;}
._1f{width:33.408000px;}
._e{width:39.672000px;}
._f{width:41.604000px;}
._7{width:50.400000px;}
._52{width:52.992000px;}
._53{width:54.072000px;}
._1{width:65.880000px;}
._13{width:67.656000px;}
._4b{width:90.160390px;}
._5{width:93.432000px;}
._6{width:94.860000px;}
._27{width:101.412000px;}
._3d{width:106.401979px;}
._3f{width:111.233191px;}
._2f{width:113.116666px;}
._32{width:115.035208px;}
._4a{width:116.827629px;}
._42{width:117.892817px;}
._28{width:119.640000px;}
._38{width:120.730612px;}
._2d{width:122.666361px;}
._2b{width:124.598095px;}
._3b{width:126.150709px;}
._1c{width:127.850235px;}
._46{width:129.063712px;}
._37{width:130.220040px;}
._35{width:132.203056px;}
._36{width:134.147504px;}
._45{width:135.312620px;}
._2a{width:137.640000px;}
._33{width:139.236659px;}
._30{width:141.461113px;}
._3a{width:142.798151px;}
._44{width:144.038401px;}
._3c{width:145.250100px;}
._47{width:146.796832px;}
._2c{width:148.790370px;}
._48{width:150.304602px;}
._4d{width:156.005982px;}
._20{width:158.161760px;}
._23{width:159.482840px;}
._21{width:163.713794px;}
._50{width:167.476702px;}
._26{width:182.316000px;}
._4e{width:323.449204px;}
._1d{width:339.340088px;}
._43{width:567.692542px;}
._31{width:574.255102px;}
._39{width:583.839535px;}
._2e{width:585.723626px;}
._41{width:591.180349px;}
._34{width:595.594880px;}
._40{width:599.491369px;}
._3e{width:600.935304px;}
._4f{width:675.475709px;}
._4c{width:701.896016px;}
._51{width:713.596568px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs19{font-size:33.104899px;}
.fs12{font-size:34.412972px;}
.fs15{font-size:34.711860px;}
.fs3{font-size:35.932483px;}
.fsd{font-size:37.112995px;}
.fs9{font-size:38.085827px;}
.fs10{font-size:38.880000px;}
.fs1e{font-size:41.255092px;}
.fs11{font-size:41.760000px;}
.fsa{font-size:42.830435px;}
.fs6{font-size:43.953137px;}
.fs18{font-size:44.140131px;}
.fs4{font-size:47.910265px;}
.fs2{font-size:48.240000px;}
.fs1b{font-size:49.579278px;}
.fs1c{font-size:49.658144px;}
.fse{font-size:51.120000px;}
.fs13{font-size:51.621007px;}
.fs14{font-size:51.789196px;}
.fs17{font-size:52.011892px;}
.fs16{font-size:52.069353px;}
.fsc{font-size:57.107590px;}
.fs8{font-size:58.604534px;}
.fs1f{font-size:61.842875px;}
.fs1d{font-size:61.884494px;}
.fs1a{font-size:66.212182px;}
.fsf{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:83.841886px;}
.fsb{font-size:99.936997px;}
.fs7{font-size:102.556616px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:2.880000px;}
.ybd{bottom:3.960000px;}
.y76{bottom:4.485000px;}
.yeb{bottom:4.500000px;}
.y141{bottom:4.860000px;}
.ye5{bottom:6.550152px;}
.y10a{bottom:6.589791px;}
.ybc{bottom:7.560000px;}
.y15a{bottom:7.852473px;}
.yda{bottom:7.860328px;}
.y80{bottom:8.265000px;}
.y134{bottom:8.390992px;}
.yf1{bottom:8.617741px;}
.y110{bottom:8.640000px;}
.yd9{bottom:8.664850px;}
.y14f{bottom:9.423146px;}
.yee{bottom:9.429249px;}
.y14e{bottom:10.387624px;}
.y7c{bottom:10.465427px;}
.y72{bottom:10.755691px;}
.y53{bottom:11.697560px;}
.y12e{bottom:12.001689px;}
.y54{bottom:12.404995px;}
.yde{bottom:12.669485px;}
.y12f{bottom:12.828772px;}
.y9d{bottom:12.960000px;}
.y135{bottom:15.090565px;}
.y153{bottom:15.188476px;}
.yc3{bottom:15.840000px;}
.yc4{bottom:18.360000px;}
.ybe{bottom:19.260000px;}
.yc2{bottom:19.440000px;}
.y15f{bottom:20.700000px;}
.y75{bottom:20.865000px;}
.ybb{bottom:22.320000px;}
.y9a{bottom:24.120000px;}
.y7f{bottom:24.465000px;}
.yc0{bottom:24.840000px;}
.y140{bottom:25.560000px;}
.y10f{bottom:29.340000px;}
.yea{bottom:31.140000px;}
.y9c{bottom:31.680000px;}
.ya0{bottom:32.040000px;}
.yc1{bottom:34.200000px;}
.ye4{bottom:37.034113px;}
.y109{bottom:37.338407px;}
.yd8{bottom:38.269762px;}
.y73{bottom:38.789268px;}
.yd7{bottom:39.074177px;}
.y7d{bottom:39.076259px;}
.yf0{bottom:39.366899px;}
.yed{bottom:40.178299px;}
.y51{bottom:40.182148px;}
.y159{bottom:44.397372px;}
.y9b{bottom:45.360000px;}
.y14d{bottom:45.878701px;}
.y13f{bottom:46.260000px;}
.y14c{bottom:46.843050px;}
.y133{bottom:47.492503px;}
.y12d{bottom:51.102373px;}
.y9e{bottom:51.120000px;}
.y55{bottom:52.016099px;}
.y52{bottom:52.016101px;}
.ye9{bottom:52.020000px;}
.y4e{bottom:57.600000px;}
.y71{bottom:64.745841px;}
.y13e{bottom:66.960000px;}
.ye3{bottom:67.518934px;}
.y108{bottom:68.097762px;}
.yd6{bottom:68.809429px;}
.yfd{bottom:69.418993px;}
.yd5{bottom:69.613844px;}
.yfc{bottom:70.230392px;}
.ye8{bottom:72.540000px;}
.y101{bottom:74.270026px;}
.y7a{bottom:78.252457px;}
.y4d{bottom:78.300000px;}
.y6f{bottom:80.320152px;}
.y158{bottom:80.943303px;}
.yb6{bottom:81.000000px;}
.y5b{bottom:81.725253px;}
.y14b{bottom:82.490382px;}
.y14a{bottom:83.454731px;}
.y4c{bottom:86.400000px;}
.y1f{bottom:86.940000px;}
.y13d{bottom:87.660000px;}
.y132{bottom:88.547374px;}
.y130{bottom:90.204022px;}
.ye7{bottom:93.270000px;}
.y162{bottom:95.580000px;}
.ye2{bottom:98.002679px;}
.y7b{bottom:98.488377px;}
.y107{bottom:98.846269px;}
.yd4{bottom:99.218971px;}
.yd3{bottom:100.023386px;}
.yfb{bottom:100.092652px;}
.yfa{bottom:100.904052px;}
.y70{bottom:101.086510px;}
.y8a{bottom:104.220000px;}
.y150{bottom:104.439598px;}
.yb5{bottom:104.940000px;}
.y13c{bottom:108.360000px;}
.y4b{bottom:109.980000px;}
.y1e{bottom:110.700000px;}
.y5a{bottom:111.432906px;}
.y131{bottom:113.154362px;}
.ydb{bottom:116.091171px;}
.y157{bottom:117.487944px;}
.y122{bottom:117.540000px;}
.y78{bottom:117.771305px;}
.y79{bottom:118.686820px;}
.y149{bottom:118.946066px;}
.y7e{bottom:118.968791px;}
.y148{bottom:119.910415px;}
.y6e{bottom:120.873063px;}
.y161{bottom:127.800000px;}
.y89{bottom:127.980000px;}
.ye1{bottom:128.490727px;}
.yb4{bottom:128.700000px;}
.y58{bottom:128.890390px;}
.y13b{bottom:129.060000px;}
.y106{bottom:129.595861px;}
.yd2{bottom:129.781220px;}
.yd0{bottom:129.781222px;}
.yce{bottom:130.577033px;}
.yf9{bottom:130.897567px;}
.yf8{bottom:131.711136px;}
.y189{bottom:133.200000px;}
.y4a{bottom:133.740000px;}
.y1d{bottom:134.460000px;}
.y136{bottom:136.710253px;}
.y121{bottom:141.300000px;}
.y57{bottom:143.263613px;}
.yfe{bottom:149.370968px;}
.y13a{bottom:149.790000px;}
.y88{bottom:151.740000px;}
.y59{bottom:151.757288px;}
.yb3{bottom:152.460000px;}
.y156{bottom:154.037742px;}
.y147{bottom:155.584822px;}
.y145{bottom:156.538857px;}
.y188{bottom:156.960000px;}
.y56{bottom:157.641328px;}
.y49{bottom:157.680000px;}
.y1c{bottom:158.400000px;}
.ye0{bottom:158.968020px;}
.yd1{bottom:160.258514px;}
.ycf{bottom:160.258515px;}
.y105{bottom:160.348707px;}
.ycd{bottom:161.065081px;}
.yf7{bottom:161.574480px;}
.yf6{bottom:162.377201px;}
.y120{bottom:165.060000px;}
.y139{bottom:170.490000px;}
.y87{bottom:175.710000px;}
.yb2{bottom:176.250000px;}
.y187{bottom:180.750000px;}
.y48{bottom:181.470000px;}
.y1b{bottom:182.190000px;}
.y11f{bottom:188.850000px;}
.ydf{bottom:189.456067px;}
.y155{bottom:190.574648px;}
.ycc{bottom:190.746561px;}
.yca{bottom:190.746563px;}
.y104{bottom:191.090706px;}
.y138{bottom:191.190000px;}
.yc8{bottom:191.553128px;}
.y146{bottom:192.121727px;}
.yf5{bottom:192.392412px;}
.y144{bottom:193.088655px;}
.yf3{bottom:193.205981px;}
.yb1{bottom:200.190000px;}
.y186{bottom:204.510000px;}
.y47{bottom:205.230000px;}
.y1a{bottom:205.950000px;}
.y137{bottom:207.390000px;}
.y86{bottom:211.530000px;}
.y11e{bottom:212.790000px;}
.yc9{bottom:219.944114px;}
.ycb{bottom:221.234609px;}
.y103{bottom:221.843552px;}
.yc7{bottom:222.030421px;}
.yf4{bottom:223.145258px;}
.yf2{bottom:223.958827px;}
.y154{bottom:227.124446px;}
.y185{bottom:228.450000px;}
.y15e{bottom:229.522420px;}
.y19{bottom:229.710000px;}
.y15c{bottom:230.489348px;}
.yb0{bottom:236.010000px;}
.y11d{bottom:236.550000px;}
.y46{bottom:240.870000px;}
.ydc{bottom:246.743484px;}
.y85{bottom:247.350000px;}
.y184{bottom:252.210000px;}
.y102{bottom:252.596398px;}
.y10e{bottom:254.614043px;}
.y10c{bottom:255.416765px;}
.yaf{bottom:259.770000px;}
.y143{bottom:263.674244px;}
.ydd{bottom:264.767456px;}
.y18{bottom:265.350000px;}
.y15d{bottom:266.072218px;}
.y15b{bottom:267.026254px;}
.y84{bottom:271.110000px;}
.y11c{bottom:272.550000px;}
.y183{bottom:275.970000px;}
.y45{bottom:277.050000px;}
.yef{bottom:283.338397px;}
.yae{bottom:283.890000px;}
.y10d{bottom:285.356042px;}
.y10b{bottom:286.169611px;}
.y83{bottom:294.870000px;}
.y151{bottom:295.801968px;}
.y182{bottom:299.730000px;}
.y44{bottom:300.630000px;}
.yad{bottom:307.830000px;}
.y11b{bottom:308.370000px;}
.yff{bottom:310.381376px;}
.y152{bottom:317.409537px;}
.y181{bottom:323.670000px;}
.y43{bottom:324.390000px;}
.y17{bottom:324.930000px;}
.y100{bottom:328.561893px;}
.y82{bottom:330.150000px;}
.yac{bottom:331.590000px;}
.y11a{bottom:331.950000px;}
.y180{bottom:347.430000px;}
.y42{bottom:348.330000px;}
.y16{bottom:350.490000px;}
.y81{bottom:351.030000px;}
.yab{bottom:355.350000px;}
.y119{bottom:355.710000px;}
.y12b{bottom:365.790000px;}
.y74{bottom:367.605000px;}
.y17f{bottom:371.190000px;}
.y41{bottom:372.090000px;}
.y15{bottom:376.050000px;}
.yaa{bottom:379.290000px;}
.y118{bottom:379.470000px;}
.y6d{bottom:388.514996px;}
.y77{bottom:392.115000px;}
.y17e{bottom:394.950000px;}
.y40{bottom:395.850000px;}
.ya9{bottom:403.050000px;}
.y117{bottom:403.590000px;}
.y17d{bottom:418.935000px;}
.y14{bottom:419.655000px;}
.ya8{bottom:426.855000px;}
.y116{bottom:428.835000px;}
.y3f{bottom:431.895000px;}
.y17c{bottom:442.695000px;}
.y13{bottom:445.035000px;}
.ya7{bottom:450.615000px;}
.y115{bottom:452.595000px;}
.y3e{bottom:455.475000px;}
.y17b{bottom:466.455000px;}
.y12{bottom:470.595000px;}
.ya6{bottom:474.375000px;}
.y3d{bottom:479.415000px;}
.y114{bottom:488.235000px;}
.y17a{bottom:490.215000px;}
.y11{bottom:496.155000px;}
.y160{bottom:501.015000px;}
.y3c{bottom:503.175000px;}
.ya5{bottom:510.015000px;}
.y179{bottom:514.155000px;}
.y12a{bottom:517.755000px;}
.y10{bottom:521.535000px;}
.y113{bottom:523.695000px;}
.y3b{bottom:526.935000px;}
.y178{bottom:537.915000px;}
.y142{bottom:538.439996px;}
.y112{bottom:544.395000px;}
.ya4{bottom:546.375000px;}
.yf{bottom:547.095000px;}
.y3a{bottom:550.695000px;}
.y6c{bottom:559.155000px;}
.y177{bottom:561.675000px;}
.y111{bottom:565.635000px;}
.ye{bottom:572.655000px;}
.y39{bottom:574.635000px;}
.ye6{bottom:582.195000px;}
.ya3{bottom:582.555000px;}
.y6b{bottom:582.915000px;}
.y176{bottom:585.435000px;}
.yd{bottom:598.035000px;}
.y38{bottom:598.395000px;}
.y6a{bottom:606.675000px;}
.y175{bottom:609.375000px;}
.ya2{bottom:618.915000px;}
.y37{bottom:622.155000px;}
.yc{bottom:623.595000px;}
.yec{bottom:627.764996px;}
.y69{bottom:630.435000px;}
.y174{bottom:633.135000px;}
.y36{bottom:645.915000px;}
.yb{bottom:649.155000px;}
.y68{bottom:654.195000px;}
.ya1{bottom:655.095000px;}
.y173{bottom:656.895000px;}
.y99{bottom:671.325000px;}
.ya{bottom:674.565000px;}
.y67{bottom:678.165000px;}
.y172{bottom:680.685000px;}
.y35{bottom:681.945000px;}
.yc6{bottom:691.664992px;}
.y66{bottom:701.925000px;}
.y34{bottom:705.525000px;}
.y171{bottom:716.325000px;}
.y9{bottom:720.465000px;}
.y12c{bottom:725.114992px;}
.y33{bottom:729.465000px;}
.y65{bottom:737.925000px;}
.y8{bottom:746.205000px;}
.y98{bottom:751.965000px;}
.y170{bottom:752.505000px;}
.y32{bottom:753.225000px;}
.y64{bottom:761.505000px;}
.y97{bottom:775.905000px;}
.y16f{bottom:776.085000px;}
.y31{bottom:776.985000px;}
.y63{bottom:785.265000px;}
.y7{bottom:789.765000px;}
.y96{bottom:799.845000px;}
.y30{bottom:800.745000px;}
.y62{bottom:809.025000px;}
.y16e{bottom:811.725000px;}
.y6{bottom:815.145000px;}
.y95{bottom:823.605000px;}
.y2f{bottom:824.685000px;}
.y61{bottom:832.965000px;}
.y5{bottom:840.705000px;}
.y94{bottom:847.725000px;}
.y16d{bottom:847.905000px;}
.y2e{bottom:848.445000px;}
.y60{bottom:856.725000px;}
.y16c{bottom:871.485000px;}
.y93{bottom:871.665000px;}
.y2d{bottom:872.205000px;}
.y4{bottom:874.545000px;}
.y5f{bottom:892.725000px;}
.y16b{bottom:895.425000px;}
.y92{bottom:895.605000px;}
.y2c{bottom:895.965000px;}
.y3{bottom:909.330000px;}
.y16a{bottom:919.230000px;}
.y91{bottom:919.410000px;}
.y2b{bottom:919.950000px;}
.y5e{bottom:927.870000px;}
.y129{bottom:942.990000px;}
.y2a{bottom:943.710000px;}
.y5d{bottom:948.750000px;}
.y2{bottom:954.870000px;}
.y90{bottom:955.410000px;}
.y128{bottom:967.110000px;}
.y29{bottom:967.470000px;}
.y169{bottom:978.990000px;}
.y8f{bottom:979.350000px;}
.y50{bottom:980.564992px;}
.y5c{bottom:980.610000px;}
.y1{bottom:985.830000px;}
.yc5{bottom:990.510000px;}
.y28{bottom:991.230000px;}
.y168{bottom:1002.570000px;}
.y8e{bottom:1003.290000px;}
.ybf{bottom:1006.710000px;}
.y27{bottom:1014.990000px;}
.y167{bottom:1026.330000px;}
.y8d{bottom:1027.050000px;}
.y26{bottom:1038.930000px;}
.y127{bottom:1039.110000px;}
.y166{bottom:1050.270000px;}
.y8c{bottom:1050.810000px;}
.yba{bottom:1052.430000px;}
.y126{bottom:1062.690000px;}
.y165{bottom:1074.030000px;}
.y8b{bottom:1074.750000px;}
.y25{bottom:1074.930000px;}
.y125{bottom:1086.450000px;}
.y24{bottom:1098.510000px;}
.yb9{bottom:1107.690000px;}
.y164{bottom:1109.670000px;}
.y124{bottom:1110.210000px;}
.y23{bottom:1122.270000px;}
.yb8{bottom:1135.050000px;}
.y163{bottom:1145.850000px;}
.y22{bottom:1146.030000px;}
.y123{bottom:1146.210000px;}
.yb7{bottom:1166.220000px;}
.y21{bottom:1170.000000px;}
.y4f{bottom:1170.180000px;}
.y20{bottom:1193.580000px;}
.h1c{height:35.625000px;}
.h25{height:35.891654px;}
.h2a{height:36.203386px;}
.h9{height:37.476457px;}
.h30{height:42.728441px;}
.h36{height:43.027771px;}
.h11{height:44.670806px;}
.h22{height:45.705000px;}
.h2f{height:46.036777px;}
.h4{height:47.344922px;}
.ha{height:49.968909px;}
.h32{height:51.709638px;}
.h33{height:51.791892px;}
.h26{height:53.839097px;}
.h27{height:54.014513px;}
.h2c{height:54.246778px;}
.h2b{height:54.306707px;}
.h13{height:59.561432px;}
.h15{height:61.020000px;}
.he{height:61.122698px;}
.h37{height:64.500187px;}
.h35{height:64.543593px;}
.h31{height:69.057237px;}
.h5{height:70.664062px;}
.hb{height:71.824219px;}
.h6{height:72.562500px;}
.h17{height:74.644805px;}
.h7{height:74.953125px;}
.h38{height:75.093750px;}
.h1e{height:79.101211px;}
.h3{height:81.736875px;}
.h12{height:104.231165px;}
.h21{height:106.664062px;}
.h2{height:108.843750px;}
.hd{height:110.728724px;}
.h14{height:111.410156px;}
.h1d{height:114.290156px;}
.h1b{height:134.450156px;}
.h23{height:143.181211px;}
.h1f{height:146.061211px;}
.h19{height:147.137344px;}
.h10{height:147.603180px;}
.h1a{height:149.938594px;}
.hc{height:151.199382px;}
.h2e{height:153.898871px;}
.h16{height:155.057344px;}
.h20{height:157.581211px;}
.h8{height:170.098121px;}
.hf{height:172.095000px;}
.h18{height:197.537344px;}
.h24{height:279.145773px;}
.h34{height:334.646604px;}
.h29{height:343.054242px;}
.h2d{height:381.990000px;}
.h28{height:388.695000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:74.325000px;}
.wa{width:85.665000px;}
.w10{width:168.294106px;}
.wf{width:247.395000px;}
.w5{width:281.690606px;}
.w3{width:288.001613px;}
.w4{width:344.235000px;}
.wd{width:361.117853px;}
.wb{width:364.502333px;}
.we{width:368.355000px;}
.wc{width:371.760000px;}
.w6{width:389.220000px;}
.w12{width:434.849793px;}
.w2{width:441.003502px;}
.w11{width:492.720000px;}
.w9{width:656.235000px;}
.w7{width:667.395000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x34{left:8.098500px;}
.x10{left:12.665452px;}
.x11{left:14.326223px;}
.x1d{left:16.174051px;}
.x6c{left:17.216458px;}
.x50{left:18.619889px;}
.x3c{left:23.390986px;}
.x5f{left:26.761793px;}
.x5d{left:28.316654px;}
.x65{left:33.409946px;}
.x1a{left:35.544210px;}
.x5e{left:36.640464px;}
.x1b{left:39.923583px;}
.x3b{left:42.459818px;}
.x32{left:45.180000px;}
.x23{left:48.040523px;}
.x24{left:50.161200px;}
.x1c{left:51.487719px;}
.x5c{left:54.081352px;}
.x39{left:56.700000px;}
.x66{left:59.039442px;}
.x59{left:61.979607px;}
.x5a{left:65.035619px;}
.x5b{left:68.098516px;}
.x2a{left:72.721500px;}
.x1e{left:76.504500px;}
.x7{left:80.820000px;}
.x60{left:82.459980px;}
.x55{left:86.400000px;}
.x56{left:88.920000px;}
.x12{left:94.137257px;}
.x22{left:97.777588px;}
.x19{left:100.549653px;}
.x3{left:107.856000px;}
.x29{left:109.476000px;}
.x1{left:111.996000px;}
.x58{left:116.039999px;}
.x18{left:117.989999px;}
.x6{left:119.196000px;}
.xa{left:120.824107px;}
.x57{left:123.685500px;}
.x63{left:129.985500px;}
.x16{left:133.056000px;}
.x4{left:134.856000px;}
.x62{left:137.005500px;}
.xb{left:141.925718px;}
.x5{left:146.196000px;}
.x46{left:148.707544px;}
.x17{left:156.450000px;}
.xe{left:159.618781px;}
.x53{left:169.050000px;}
.x20{left:178.405500px;}
.x6b{left:183.051251px;}
.xc{left:184.300864px;}
.x47{left:185.785500px;}
.x54{left:189.930000px;}
.x48{left:192.265500px;}
.x3d{left:193.655351px;}
.x4e{left:194.975685px;}
.x41{left:196.536067px;}
.x44{left:198.931270px;}
.x28{left:200.370000px;}
.x61{left:207.790500px;}
.x2b{left:212.293500px;}
.x14{left:221.555710px;}
.x51{left:232.596867px;}
.x35{left:233.713500px;}
.x42{left:234.740625px;}
.x4c{left:235.750025px;}
.x3e{left:237.146616px;}
.x9{left:239.489998px;}
.x6d{left:242.715549px;}
.x25{left:246.142308px;}
.x2{left:251.130000px;}
.x70{left:252.390000px;}
.x2c{left:254.413500px;}
.x2d{left:262.153500px;}
.xf{left:265.074514px;}
.x3f{left:271.186542px;}
.x4b{left:272.482692px;}
.x43{left:273.581745px;}
.x4d{left:274.758164px;}
.x40{left:275.976947px;}
.x4a{left:277.781297px;}
.x67{left:282.358617px;}
.x68{left:285.798559px;}
.xd{left:322.945105px;}
.x6e{left:328.417754px;}
.x1f{left:329.470500px;}
.x69{left:332.166904px;}
.x4f{left:347.584194px;}
.x27{left:348.735000px;}
.x45{left:351.037412px;}
.x13{left:360.992289px;}
.x64{left:366.239996px;}
.x8{left:378.795000px;}
.x2e{left:389.593500px;}
.x30{left:410.683500px;}
.x2f{left:415.003500px;}
.x6a{left:418.770966px;}
.x26{left:420.735000px;}
.x52{left:448.275000px;}
.x49{left:452.414996px;}
.x6f{left:477.255000px;}
.x21{left:487.740000px;}
.x3a{left:499.423500px;}
.x36{left:508.603500px;}
.x37{left:569.443500px;}
.x33{left:621.285000px;}
.x15{left:680.550000px;}
.x38{left:728.970000px;}
.x31{left:740.130000px;}
.x71{left:839.310000px;}
@media print{
.v5{vertical-align:-45.270330pt;}
.v3{vertical-align:-42.076280pt;}
.v4{vertical-align:-39.340044pt;}
.v6{vertical-align:-37.743019pt;}
.vb{vertical-align:-35.978141pt;}
.va{vertical-align:-33.222591pt;}
.v2{vertical-align:-29.440000pt;}
.v15{vertical-align:-26.240000pt;}
.v12{vertical-align:-23.680000pt;}
.v11{vertical-align:-14.720000pt;}
.vc{vertical-align:-12.800000pt;}
.v7{vertical-align:-8.320000pt;}
.v9{vertical-align:-7.195406pt;}
.v1a{vertical-align:-2.944250pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:3.347004pt;}
.v1b{vertical-align:4.588442pt;}
.vd{vertical-align:12.800000pt;}
.v16{vertical-align:19.200000pt;}
.v14{vertical-align:20.480000pt;}
.v1{vertical-align:29.440000pt;}
.v18{vertical-align:32.000000pt;}
.vf{vertical-align:44.800000pt;}
.ve{vertical-align:46.720000pt;}
.v10{vertical-align:51.840000pt;}
.v17{vertical-align:56.960000pt;}
.v19{vertical-align:69.760000pt;}
.v13{vertical-align:75.520000pt;}
.ls8{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls25{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.008499pt;}
.ls10{letter-spacing:0.008721pt;}
.lsf{letter-spacing:0.040320pt;}
.ls2f{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.332800pt;}
.ls24{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.640000pt;}
.lse{letter-spacing:1.408000pt;}
.ls17{letter-spacing:1.920000pt;}
.ls1d{letter-spacing:1.964800pt;}
.ls2c{letter-spacing:2.266880pt;}
.ls2e{letter-spacing:2.373547pt;}
.ls32{letter-spacing:2.426880pt;}
.ls14{letter-spacing:2.490240pt;}
.ls2d{letter-spacing:2.906880pt;}
.ls22{letter-spacing:3.285760pt;}
.ls23{letter-spacing:3.868800pt;}
.ls16{letter-spacing:3.925760pt;}
.ls21{letter-spacing:3.944960pt;}
.ls15{letter-spacing:4.104960pt;}
.ls33{letter-spacing:5.226667pt;}
.ls30{letter-spacing:10.880000pt;}
.ls20{letter-spacing:14.212480pt;}
.ls1a{letter-spacing:15.492480pt;}
.ls19{letter-spacing:16.297600pt;}
.ls29{letter-spacing:17.472000pt;}
.ls1e{letter-spacing:19.813120pt;}
.ls26{letter-spacing:24.704000pt;}
.ls1{letter-spacing:30.208000pt;}
.ls1f{letter-spacing:32.176640pt;}
.ls2a{letter-spacing:34.490240pt;}
.ls1b{letter-spacing:72.779520pt;}
.ls28{letter-spacing:90.810240pt;}
.ls18{letter-spacing:92.654080pt;}
.ls27{letter-spacing:98.624000pt;}
.ls31{letter-spacing:269.919729pt;}
.ls11{letter-spacing:308.694545pt;}
.lsc{letter-spacing:339.671441pt;}
.ls13{letter-spacing:351.927664pt;}
.ls2b{letter-spacing:596.604033pt;}
.ws12{word-spacing:-25.342879pt;}
.ws15{word-spacing:-24.695542pt;}
.ws36{word-spacing:-16.384000pt;}
.ws2a{word-spacing:-16.361766pt;}
.wsf{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws37{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws1c{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.488000pt;}
.ws6{word-spacing:-15.168000pt;}
.ws13{word-spacing:-14.481832pt;}
.ws16{word-spacing:-14.111920pt;}
.ws18{word-spacing:-14.080000pt;}
.ws19{word-spacing:-12.953600pt;}
.ws27{word-spacing:-12.866916pt;}
.ws2c{word-spacing:-12.271079pt;}
.ws2b{word-spacing:-12.251590pt;}
.wsd{word-spacing:-11.839159pt;}
.ws0{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2f{word-spacing:-10.194592pt;}
.ws1f{word-spacing:-9.996800pt;}
.ws1a{word-spacing:-9.433600pt;}
.ws24{word-spacing:-8.577686pt;}
.ws21{word-spacing:-8.503828pt;}
.ws10{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws1d{word-spacing:33.856000pt;}
.ws1e{word-spacing:34.496000pt;}
.ws29{word-spacing:56.391051pt;}
.ws1b{word-spacing:66.218880pt;}
.ws17{word-spacing:69.888008pt;}
.ws11{word-spacing:89.054257pt;}
.ws20{word-spacing:89.133440pt;}
.ws9{word-spacing:90.583673pt;}
.ws28{word-spacing:93.235024pt;}
.ws23{word-spacing:97.205382pt;}
.ws26{word-spacing:98.049643pt;}
.ws2d{word-spacing:100.174553pt;}
.wsa{word-spacing:100.325524pt;}
.ws32{word-spacing:102.218993pt;}
.ws22{word-spacing:102.238394pt;}
.ws25{word-spacing:103.126369pt;}
.ws30{word-spacing:107.349747pt;}
.ws34{word-spacing:109.369947pt;}
.ws31{word-spacing:109.412522pt;}
.wsb{word-spacing:109.911090pt;}
.ws33{word-spacing:111.432722pt;}
.wsc{word-spacing:115.401367pt;}
.ws35{word-spacing:116.532130pt;}
.ws2e{word-spacing:120.525969pt;}
.ws14{word-spacing:126.418940pt;}
.wse{word-spacing:676.691278pt;}
._22{margin-left:-786.706326pt;}
._24{margin-left:-5.280000pt;}
._16{margin-left:-2.400000pt;}
._0{margin-left:-0.981333pt;}
._2{width:0.970667pt;}
._a{width:1.941333pt;}
._b{width:3.370667pt;}
._10{width:4.352000pt;}
._8{width:5.781333pt;}
._3{width:7.018667pt;}
._4{width:8.074667pt;}
._9{width:9.312000pt;}
._17{width:10.464000pt;}
._1b{width:12.213333pt;}
._1a{width:13.322667pt;}
._14{width:14.272000pt;}
._29{width:15.183147pt;}
._19{width:16.917333pt;}
._18{width:17.877333pt;}
._25{width:18.901333pt;}
._49{width:19.978667pt;}
._15{width:21.568000pt;}
._11{width:23.146667pt;}
._12{width:24.053333pt;}
._54{width:25.173333pt;}
._c{width:26.624000pt;}
._d{width:27.818667pt;}
._1e{width:28.736000pt;}
._1f{width:29.696000pt;}
._e{width:35.264000pt;}
._f{width:36.981333pt;}
._7{width:44.800000pt;}
._52{width:47.104000pt;}
._53{width:48.064000pt;}
._1{width:58.560000pt;}
._13{width:60.138667pt;}
._4b{width:80.142569pt;}
._5{width:83.050667pt;}
._6{width:84.320000pt;}
._27{width:90.144000pt;}
._3d{width:94.579537pt;}
._3f{width:98.873947pt;}
._2f{width:100.548147pt;}
._32{width:102.253518pt;}
._4a{width:103.846782pt;}
._42{width:104.793615pt;}
._28{width:106.346667pt;}
._38{width:107.316100pt;}
._2d{width:109.036765pt;}
._2b{width:110.753862pt;}
._3b{width:112.133964pt;}
._1c{width:113.644654pt;}
._46{width:114.723299pt;}
._37{width:115.751147pt;}
._35{width:117.513827pt;}
._36{width:119.242225pt;}
._45{width:120.277885pt;}
._2a{width:122.346667pt;}
._33{width:123.765919pt;}
._30{width:125.743212pt;}
._3a{width:126.931690pt;}
._44{width:128.034134pt;}
._3c{width:129.111200pt;}
._47{width:130.486073pt;}
._2c{width:132.258106pt;}
._48{width:133.604090pt;}
._4d{width:138.671984pt;}
._20{width:140.588231pt;}
._23{width:141.762524pt;}
._21{width:145.523372pt;}
._50{width:148.868179pt;}
._26{width:162.058667pt;}
._4e{width:287.510404pt;}
._1d{width:301.635634pt;}
._43{width:504.615593pt;}
._31{width:510.448979pt;}
._39{width:518.968476pt;}
._2e{width:520.643223pt;}
._41{width:525.493644pt;}
._34{width:529.417671pt;}
._40{width:532.881217pt;}
._3e{width:534.164715pt;}
._4f{width:600.422852pt;}
._4c{width:623.907570pt;}
._51{width:634.308061pt;}
.fs19{font-size:29.426577pt;}
.fs12{font-size:30.589308pt;}
.fs15{font-size:30.854987pt;}
.fs3{font-size:31.939985pt;}
.fsd{font-size:32.989329pt;}
.fs9{font-size:33.854068pt;}
.fs10{font-size:34.560000pt;}
.fs1e{font-size:36.671192pt;}
.fs11{font-size:37.120000pt;}
.fsa{font-size:38.071498pt;}
.fs6{font-size:39.069455pt;}
.fs18{font-size:39.235672pt;}
.fs4{font-size:42.586902pt;}
.fs2{font-size:42.880000pt;}
.fs1b{font-size:44.070469pt;}
.fs1c{font-size:44.140572pt;}
.fse{font-size:45.440000pt;}
.fs13{font-size:45.885339pt;}
.fs14{font-size:46.034841pt;}
.fs17{font-size:46.232793pt;}
.fs16{font-size:46.283869pt;}
.fsc{font-size:50.762302pt;}
.fs8{font-size:52.092919pt;}
.fs1f{font-size:54.971445pt;}
.fs1d{font-size:55.008439pt;}
.fs1a{font-size:58.855273pt;}
.fsf{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.526121pt;}
.fsb{font-size:88.832886pt;}
.fs7{font-size:91.161436pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:2.560000pt;}
.ybd{bottom:3.520000pt;}
.y76{bottom:3.986667pt;}
.yeb{bottom:4.000000pt;}
.y141{bottom:4.320000pt;}
.ye5{bottom:5.822357pt;}
.y10a{bottom:5.857592pt;}
.ybc{bottom:6.720000pt;}
.y15a{bottom:6.979976pt;}
.yda{bottom:6.986958pt;}
.y80{bottom:7.346667pt;}
.y134{bottom:7.458659pt;}
.yf1{bottom:7.660214pt;}
.y110{bottom:7.680000pt;}
.yd9{bottom:7.702089pt;}
.y14f{bottom:8.376130pt;}
.yee{bottom:8.381555pt;}
.y14e{bottom:9.233443pt;}
.y7c{bottom:9.302602pt;}
.y72{bottom:9.560614pt;}
.y53{bottom:10.397831pt;}
.y12e{bottom:10.668168pt;}
.y54{bottom:11.026662pt;}
.yde{bottom:11.261765pt;}
.y12f{bottom:11.403353pt;}
.y9d{bottom:11.520000pt;}
.y135{bottom:13.413836pt;}
.y153{bottom:13.500867pt;}
.yc3{bottom:14.080000pt;}
.yc4{bottom:16.320000pt;}
.ybe{bottom:17.120000pt;}
.yc2{bottom:17.280000pt;}
.y15f{bottom:18.400000pt;}
.y75{bottom:18.546667pt;}
.ybb{bottom:19.840000pt;}
.y9a{bottom:21.440000pt;}
.y7f{bottom:21.746667pt;}
.yc0{bottom:22.080000pt;}
.y140{bottom:22.720000pt;}
.y10f{bottom:26.080000pt;}
.yea{bottom:27.680000pt;}
.y9c{bottom:28.160000pt;}
.ya0{bottom:28.480000pt;}
.yc1{bottom:30.400000pt;}
.ye4{bottom:32.919211pt;}
.y109{bottom:33.189695pt;}
.yd8{bottom:34.017566pt;}
.y73{bottom:34.479349pt;}
.yd7{bottom:34.732602pt;}
.y7d{bottom:34.734452pt;}
.yf0{bottom:34.992799pt;}
.yed{bottom:35.714044pt;}
.y51{bottom:35.717465pt;}
.y159{bottom:39.464331pt;}
.y9b{bottom:40.320000pt;}
.y14d{bottom:40.781067pt;}
.y13f{bottom:41.120000pt;}
.y14c{bottom:41.638267pt;}
.y133{bottom:42.215558pt;}
.y12d{bottom:45.424332pt;}
.y9e{bottom:45.440000pt;}
.y55{bottom:46.236533pt;}
.y52{bottom:46.236535pt;}
.ye9{bottom:46.240000pt;}
.y4e{bottom:51.200000pt;}
.y71{bottom:57.551859pt;}
.y13e{bottom:59.520000pt;}
.ye3{bottom:60.016830pt;}
.y108{bottom:60.531344pt;}
.yd6{bottom:61.163937pt;}
.yfd{bottom:61.705772pt;}
.yd5{bottom:61.878972pt;}
.yfc{bottom:62.427016pt;}
.ye8{bottom:64.480000pt;}
.y101{bottom:66.017801pt;}
.y7a{bottom:69.557740pt;}
.y4d{bottom:69.600000pt;}
.y6f{bottom:71.395691pt;}
.y158{bottom:71.949602pt;}
.yb6{bottom:72.000000pt;}
.y5b{bottom:72.644669pt;}
.y14b{bottom:73.324784pt;}
.y14a{bottom:74.181983pt;}
.y4c{bottom:76.800000pt;}
.y1f{bottom:77.280000pt;}
.y13d{bottom:77.920000pt;}
.y132{bottom:78.708776pt;}
.y130{bottom:80.181353pt;}
.ye7{bottom:82.906667pt;}
.y162{bottom:84.960000pt;}
.ye2{bottom:87.113493pt;}
.y7b{bottom:87.545224pt;}
.y107{bottom:87.863350pt;}
.yd4{bottom:88.194641pt;}
.yd3{bottom:88.909676pt;}
.yfb{bottom:88.971246pt;}
.yfa{bottom:89.692490pt;}
.y70{bottom:89.854675pt;}
.y8a{bottom:92.640000pt;}
.y150{bottom:92.835198pt;}
.yb5{bottom:93.280000pt;}
.y13c{bottom:96.320000pt;}
.y4b{bottom:97.760000pt;}
.y1e{bottom:98.400000pt;}
.y5a{bottom:99.051472pt;}
.y131{bottom:100.581655pt;}
.ydb{bottom:103.192152pt;}
.y157{bottom:104.433728pt;}
.y122{bottom:104.480000pt;}
.y78{bottom:104.685604pt;}
.y79{bottom:105.499395pt;}
.y149{bottom:105.729837pt;}
.y7e{bottom:105.750037pt;}
.y148{bottom:106.587036pt;}
.y6e{bottom:107.442722pt;}
.y161{bottom:113.600000pt;}
.y89{bottom:113.760000pt;}
.ye1{bottom:114.213979pt;}
.yb4{bottom:114.400000pt;}
.y58{bottom:114.569235pt;}
.y13b{bottom:114.720000pt;}
.y106{bottom:115.196321pt;}
.yd2{bottom:115.361085pt;}
.yd0{bottom:115.361086pt;}
.yce{bottom:116.068474pt;}
.yf9{bottom:116.353393pt;}
.yf8{bottom:117.076565pt;}
.y189{bottom:118.400000pt;}
.y4a{bottom:118.880000pt;}
.y1d{bottom:119.520000pt;}
.y136{bottom:121.520225pt;}
.y121{bottom:125.600000pt;}
.y57{bottom:127.345434pt;}
.yfe{bottom:132.774194pt;}
.y13a{bottom:133.146667pt;}
.y88{bottom:134.880000pt;}
.y59{bottom:134.895367pt;}
.yb3{bottom:135.520000pt;}
.y156{bottom:136.922437pt;}
.y147{bottom:138.297619pt;}
.y145{bottom:139.145650pt;}
.y188{bottom:139.520000pt;}
.y56{bottom:140.125625pt;}
.y49{bottom:140.160000pt;}
.y1c{bottom:140.800000pt;}
.ye0{bottom:141.304906pt;}
.yd1{bottom:142.452012pt;}
.ycf{bottom:142.452014pt;}
.y105{bottom:142.532184pt;}
.ycd{bottom:143.168961pt;}
.yf7{bottom:143.621760pt;}
.yf6{bottom:144.335290pt;}
.y120{bottom:146.720000pt;}
.y139{bottom:151.546667pt;}
.y87{bottom:156.186667pt;}
.yb2{bottom:156.666667pt;}
.y187{bottom:160.666667pt;}
.y48{bottom:161.306667pt;}
.y1b{bottom:161.946667pt;}
.y11f{bottom:167.866667pt;}
.ydf{bottom:168.405393pt;}
.y155{bottom:169.399687pt;}
.ycc{bottom:169.552498pt;}
.yca{bottom:169.552500pt;}
.y104{bottom:169.858405pt;}
.y138{bottom:169.946667pt;}
.yc8{bottom:170.269447pt;}
.y146{bottom:170.774869pt;}
.yf5{bottom:171.015477pt;}
.y144{bottom:171.634360pt;}
.yf3{bottom:171.738649pt;}
.yb1{bottom:177.946667pt;}
.y186{bottom:181.786667pt;}
.y47{bottom:182.426667pt;}
.y1a{bottom:183.066667pt;}
.y137{bottom:184.346667pt;}
.y86{bottom:188.026667pt;}
.y11e{bottom:189.146667pt;}
.yc9{bottom:195.505879pt;}
.ycb{bottom:196.652986pt;}
.y103{bottom:197.194268pt;}
.yc7{bottom:197.360374pt;}
.yf4{bottom:198.351340pt;}
.yf2{bottom:199.074513pt;}
.y154{bottom:201.888396pt;}
.y185{bottom:203.066667pt;}
.y15e{bottom:204.019929pt;}
.y19{bottom:204.186667pt;}
.y15c{bottom:204.879420pt;}
.yb0{bottom:209.786667pt;}
.y11d{bottom:210.266667pt;}
.y46{bottom:214.106667pt;}
.ydc{bottom:219.327541pt;}
.y85{bottom:219.866667pt;}
.y184{bottom:224.186667pt;}
.y102{bottom:224.530132pt;}
.y10e{bottom:226.323594pt;}
.y10c{bottom:227.037124pt;}
.yaf{bottom:230.906667pt;}
.y143{bottom:234.377106pt;}
.ydd{bottom:235.348850pt;}
.y18{bottom:235.866667pt;}
.y15d{bottom:236.508639pt;}
.y15b{bottom:237.356670pt;}
.y84{bottom:240.986667pt;}
.y11c{bottom:242.266667pt;}
.y183{bottom:245.306667pt;}
.y45{bottom:246.266667pt;}
.yef{bottom:251.856353pt;}
.yae{bottom:252.346667pt;}
.y10d{bottom:253.649815pt;}
.y10b{bottom:254.372988pt;}
.y83{bottom:262.106667pt;}
.y151{bottom:262.935082pt;}
.y182{bottom:266.426667pt;}
.y44{bottom:267.226667pt;}
.yad{bottom:273.626667pt;}
.y11b{bottom:274.106667pt;}
.yff{bottom:275.894556pt;}
.y152{bottom:282.141810pt;}
.y181{bottom:287.706667pt;}
.y43{bottom:288.346667pt;}
.y17{bottom:288.826667pt;}
.y100{bottom:292.055016pt;}
.y82{bottom:293.466667pt;}
.yac{bottom:294.746667pt;}
.y11a{bottom:295.066667pt;}
.y180{bottom:308.826667pt;}
.y42{bottom:309.626667pt;}
.y16{bottom:311.546667pt;}
.y81{bottom:312.026667pt;}
.yab{bottom:315.866667pt;}
.y119{bottom:316.186667pt;}
.y12b{bottom:325.146667pt;}
.y74{bottom:326.760000pt;}
.y17f{bottom:329.946667pt;}
.y41{bottom:330.746667pt;}
.y15{bottom:334.266667pt;}
.yaa{bottom:337.146667pt;}
.y118{bottom:337.306667pt;}
.y6d{bottom:345.346663pt;}
.y77{bottom:348.546667pt;}
.y17e{bottom:351.066667pt;}
.y40{bottom:351.866667pt;}
.ya9{bottom:358.266667pt;}
.y117{bottom:358.746667pt;}
.y17d{bottom:372.386667pt;}
.y14{bottom:373.026667pt;}
.ya8{bottom:379.426667pt;}
.y116{bottom:381.186667pt;}
.y3f{bottom:383.906667pt;}
.y17c{bottom:393.506667pt;}
.y13{bottom:395.586667pt;}
.ya7{bottom:400.546667pt;}
.y115{bottom:402.306667pt;}
.y3e{bottom:404.866667pt;}
.y17b{bottom:414.626667pt;}
.y12{bottom:418.306667pt;}
.ya6{bottom:421.666667pt;}
.y3d{bottom:426.146667pt;}
.y114{bottom:433.986667pt;}
.y17a{bottom:435.746667pt;}
.y11{bottom:441.026667pt;}
.y160{bottom:445.346667pt;}
.y3c{bottom:447.266667pt;}
.ya5{bottom:453.346667pt;}
.y179{bottom:457.026667pt;}
.y12a{bottom:460.226667pt;}
.y10{bottom:463.586667pt;}
.y113{bottom:465.506667pt;}
.y3b{bottom:468.386667pt;}
.y178{bottom:478.146667pt;}
.y142{bottom:478.613330pt;}
.y112{bottom:483.906667pt;}
.ya4{bottom:485.666667pt;}
.yf{bottom:486.306667pt;}
.y3a{bottom:489.506667pt;}
.y6c{bottom:497.026667pt;}
.y177{bottom:499.266667pt;}
.y111{bottom:502.786667pt;}
.ye{bottom:509.026667pt;}
.y39{bottom:510.786667pt;}
.ye6{bottom:517.506667pt;}
.ya3{bottom:517.826667pt;}
.y6b{bottom:518.146667pt;}
.y176{bottom:520.386667pt;}
.yd{bottom:531.586667pt;}
.y38{bottom:531.906667pt;}
.y6a{bottom:539.266667pt;}
.y175{bottom:541.666667pt;}
.ya2{bottom:550.146667pt;}
.y37{bottom:553.026667pt;}
.yc{bottom:554.306667pt;}
.yec{bottom:558.013330pt;}
.y69{bottom:560.386667pt;}
.y174{bottom:562.786667pt;}
.y36{bottom:574.146667pt;}
.yb{bottom:577.026667pt;}
.y68{bottom:581.506667pt;}
.ya1{bottom:582.306667pt;}
.y173{bottom:583.906667pt;}
.y99{bottom:596.733333pt;}
.ya{bottom:599.613333pt;}
.y67{bottom:602.813333pt;}
.y172{bottom:605.053333pt;}
.y35{bottom:606.173333pt;}
.yc6{bottom:614.813326pt;}
.y66{bottom:623.933333pt;}
.y34{bottom:627.133333pt;}
.y171{bottom:636.733333pt;}
.y9{bottom:640.413333pt;}
.y12c{bottom:644.546659pt;}
.y33{bottom:648.413333pt;}
.y65{bottom:655.933333pt;}
.y8{bottom:663.293333pt;}
.y98{bottom:668.413333pt;}
.y170{bottom:668.893333pt;}
.y32{bottom:669.533333pt;}
.y64{bottom:676.893333pt;}
.y97{bottom:689.693333pt;}
.y16f{bottom:689.853333pt;}
.y31{bottom:690.653333pt;}
.y63{bottom:698.013333pt;}
.y7{bottom:702.013333pt;}
.y96{bottom:710.973333pt;}
.y30{bottom:711.773333pt;}
.y62{bottom:719.133333pt;}
.y16e{bottom:721.533333pt;}
.y6{bottom:724.573333pt;}
.y95{bottom:732.093333pt;}
.y2f{bottom:733.053333pt;}
.y61{bottom:740.413333pt;}
.y5{bottom:747.293333pt;}
.y94{bottom:753.533333pt;}
.y16d{bottom:753.693333pt;}
.y2e{bottom:754.173333pt;}
.y60{bottom:761.533333pt;}
.y16c{bottom:774.653333pt;}
.y93{bottom:774.813333pt;}
.y2d{bottom:775.293333pt;}
.y4{bottom:777.373333pt;}
.y5f{bottom:793.533333pt;}
.y16b{bottom:795.933333pt;}
.y92{bottom:796.093333pt;}
.y2c{bottom:796.413333pt;}
.y3{bottom:808.293333pt;}
.y16a{bottom:817.093333pt;}
.y91{bottom:817.253333pt;}
.y2b{bottom:817.733333pt;}
.y5e{bottom:824.773333pt;}
.y129{bottom:838.213333pt;}
.y2a{bottom:838.853333pt;}
.y5d{bottom:843.333333pt;}
.y2{bottom:848.773333pt;}
.y90{bottom:849.253333pt;}
.y128{bottom:859.653333pt;}
.y29{bottom:859.973333pt;}
.y169{bottom:870.213333pt;}
.y8f{bottom:870.533333pt;}
.y50{bottom:871.613326pt;}
.y5c{bottom:871.653333pt;}
.y1{bottom:876.293333pt;}
.yc5{bottom:880.453333pt;}
.y28{bottom:881.093333pt;}
.y168{bottom:891.173333pt;}
.y8e{bottom:891.813333pt;}
.ybf{bottom:894.853333pt;}
.y27{bottom:902.213333pt;}
.y167{bottom:912.293333pt;}
.y8d{bottom:912.933333pt;}
.y26{bottom:923.493333pt;}
.y127{bottom:923.653333pt;}
.y166{bottom:933.573333pt;}
.y8c{bottom:934.053333pt;}
.yba{bottom:935.493333pt;}
.y126{bottom:944.613333pt;}
.y165{bottom:954.693333pt;}
.y8b{bottom:955.333333pt;}
.y25{bottom:955.493333pt;}
.y125{bottom:965.733333pt;}
.y24{bottom:976.453333pt;}
.yb9{bottom:984.613333pt;}
.y164{bottom:986.373333pt;}
.y124{bottom:986.853333pt;}
.y23{bottom:997.573333pt;}
.yb8{bottom:1008.933333pt;}
.y163{bottom:1018.533333pt;}
.y22{bottom:1018.693333pt;}
.y123{bottom:1018.853333pt;}
.yb7{bottom:1036.640000pt;}
.y21{bottom:1040.000000pt;}
.y4f{bottom:1040.160000pt;}
.y20{bottom:1060.960000pt;}
.h1c{height:31.666667pt;}
.h25{height:31.903693pt;}
.h2a{height:32.180787pt;}
.h9{height:33.312406pt;}
.h30{height:37.980836pt;}
.h36{height:38.246908pt;}
.h11{height:39.707383pt;}
.h22{height:40.626667pt;}
.h2f{height:40.921579pt;}
.h4{height:42.084375pt;}
.ha{height:44.416808pt;}
.h32{height:45.964122pt;}
.h33{height:46.037237pt;}
.h26{height:47.856975pt;}
.h27{height:48.012900pt;}
.h2c{height:48.219359pt;}
.h2b{height:48.272629pt;}
.h13{height:52.943495pt;}
.h15{height:54.240000pt;}
.he{height:54.331287pt;}
.h37{height:57.333499pt;}
.h35{height:57.372083pt;}
.h31{height:61.384211pt;}
.h5{height:62.812500pt;}
.hb{height:63.843750pt;}
.h6{height:64.500000pt;}
.h17{height:66.350938pt;}
.h7{height:66.625000pt;}
.h38{height:66.750000pt;}
.h1e{height:70.312187pt;}
.h3{height:72.655000pt;}
.h12{height:92.649924pt;}
.h21{height:94.812500pt;}
.h2{height:96.750000pt;}
.hd{height:98.425533pt;}
.h14{height:99.031250pt;}
.h1d{height:101.591250pt;}
.h1b{height:119.511250pt;}
.h23{height:127.272187pt;}
.h1f{height:129.832188pt;}
.h19{height:130.788750pt;}
.h10{height:131.202827pt;}
.h1a{height:133.278750pt;}
.hc{height:134.399451pt;}
.h2e{height:136.798997pt;}
.h16{height:137.828750pt;}
.h20{height:140.072187pt;}
.h8{height:151.198330pt;}
.hf{height:152.973333pt;}
.h18{height:175.588750pt;}
.h24{height:248.129576pt;}
.h34{height:297.463648pt;}
.h29{height:304.937104pt;}
.h2d{height:339.546667pt;}
.h28{height:345.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:66.066667pt;}
.wa{width:76.146667pt;}
.w10{width:149.594761pt;}
.wf{width:219.906667pt;}
.w5{width:250.391649pt;}
.w3{width:256.001433pt;}
.w4{width:305.986667pt;}
.wd{width:320.993647pt;}
.wb{width:324.002074pt;}
.we{width:327.426667pt;}
.wc{width:330.453333pt;}
.w6{width:345.973333pt;}
.w12{width:386.533150pt;}
.w2{width:392.003113pt;}
.w11{width:437.973333pt;}
.w9{width:583.320000pt;}
.w7{width:593.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x34{left:7.198667pt;}
.x10{left:11.258180pt;}
.x11{left:12.734420pt;}
.x1d{left:14.376934pt;}
.x6c{left:15.303519pt;}
.x50{left:16.551013pt;}
.x3c{left:20.791987pt;}
.x5f{left:23.788261pt;}
.x5d{left:25.170359pt;}
.x65{left:29.697730pt;}
.x1a{left:31.594853pt;}
.x5e{left:32.569302pt;}
.x1b{left:35.487629pt;}
.x3b{left:37.742060pt;}
.x32{left:40.160000pt;}
.x23{left:42.702687pt;}
.x24{left:44.587733pt;}
.x1c{left:45.766861pt;}
.x5c{left:48.072313pt;}
.x39{left:50.400000pt;}
.x66{left:52.479504pt;}
.x59{left:55.092984pt;}
.x5a{left:57.809439pt;}
.x5b{left:60.532015pt;}
.x2a{left:64.641333pt;}
.x1e{left:68.004000pt;}
.x7{left:71.840000pt;}
.x60{left:73.297760pt;}
.x55{left:76.800000pt;}
.x56{left:79.040000pt;}
.x12{left:83.677562pt;}
.x22{left:86.913411pt;}
.x19{left:89.377469pt;}
.x3{left:95.872000pt;}
.x29{left:97.312000pt;}
.x1{left:99.552000pt;}
.x58{left:103.146666pt;}
.x18{left:104.879999pt;}
.x6{left:105.952000pt;}
.xa{left:107.399206pt;}
.x57{left:109.942667pt;}
.x63{left:115.542667pt;}
.x16{left:118.272000pt;}
.x4{left:119.872000pt;}
.x62{left:121.782667pt;}
.xb{left:126.156194pt;}
.x5{left:129.952000pt;}
.x46{left:132.184483pt;}
.x17{left:139.066667pt;}
.xe{left:141.883361pt;}
.x53{left:150.266667pt;}
.x20{left:158.582667pt;}
.x6b{left:162.712223pt;}
.xc{left:163.822990pt;}
.x47{left:165.142667pt;}
.x54{left:168.826667pt;}
.x48{left:170.902667pt;}
.x3d{left:172.138090pt;}
.x4e{left:173.311720pt;}
.x41{left:174.698727pt;}
.x44{left:176.827795pt;}
.x28{left:178.106667pt;}
.x61{left:184.702667pt;}
.x2b{left:188.705333pt;}
.x14{left:196.938409pt;}
.x51{left:206.752770pt;}
.x35{left:207.745333pt;}
.x42{left:208.658333pt;}
.x4c{left:209.555578pt;}
.x3e{left:210.796992pt;}
.x9{left:212.879998pt;}
.x6d{left:215.747155pt;}
.x25{left:218.793163pt;}
.x2{left:223.226667pt;}
.x70{left:224.346667pt;}
.x2c{left:226.145333pt;}
.x2d{left:233.025333pt;}
.xf{left:235.621791pt;}
.x3f{left:241.054704pt;}
.x4b{left:242.206837pt;}
.x43{left:243.183773pt;}
.x4d{left:244.229480pt;}
.x40{left:245.312842pt;}
.x4a{left:246.916708pt;}
.x67{left:250.985437pt;}
.x68{left:254.043163pt;}
.xd{left:287.062316pt;}
.x6e{left:291.926892pt;}
.x1f{left:292.862667pt;}
.x69{left:295.259470pt;}
.x4f{left:308.963728pt;}
.x27{left:309.986667pt;}
.x45{left:312.033255pt;}
.x13{left:320.882035pt;}
.x64{left:325.546663pt;}
.x8{left:336.706667pt;}
.x2e{left:346.305333pt;}
.x30{left:365.052000pt;}
.x2f{left:368.892000pt;}
.x6a{left:372.240859pt;}
.x26{left:373.986667pt;}
.x52{left:398.466667pt;}
.x49{left:402.146663pt;}
.x6f{left:424.226667pt;}
.x21{left:433.546667pt;}
.x3a{left:443.932000pt;}
.x36{left:452.092000pt;}
.x37{left:506.172000pt;}
.x33{left:552.253333pt;}
.x15{left:604.933333pt;}
.x38{left:647.973333pt;}
.x31{left:657.893333pt;}
.x71{left:746.053333pt;}
}




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