
    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_be8a230570083001ef8daf5c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.096000;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_77176613b6b5e27c832ba606.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.077000;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_38cbbf4da50d1e407507c8f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.096000;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_6287402a6c61ef160ca8476a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.077000;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_998a2153b0398c400ec835c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_fb1d6e51a3d12381b62252f4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.091000;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_211c8546ca2f0a354148f895.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_775f01622617c8e60ab36f17.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.096000;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_61e6fe706ce66a1e4e372538.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.716000;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_e2fd1f19348588bece63c7b5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.091000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-13.860000px;}
.v1{vertical-align:-1.404000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.820000px;}
.v2{vertical-align:23.760600px;}
.ls10{letter-spacing:-3.504000px;}
.lse{letter-spacing:-2.448000px;}
.ls8{letter-spacing:-1.200000px;}
.ls13{letter-spacing:-0.714000px;}
.ls6{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.480000px;}
.ls11{letter-spacing:-0.420000px;}
.ls7{letter-spacing:-0.378000px;}
.ls3{letter-spacing:-0.336000px;}
.ls12{letter-spacing:-0.294000px;}
.ls5{letter-spacing:-0.240000px;}
.ls14{letter-spacing:-0.210000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.484800px;}
.lsb{letter-spacing:3.888000px;}
.ls1{letter-spacing:11.760000px;}
.lsd{letter-spacing:20.118000px;}
.lsa{letter-spacing:22.944000px;}
.ls9{letter-spacing:24.628800px;}
.lsc{letter-spacing:34.070400px;}
.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;}
}
.ws47{word-spacing:-42.000000px;}
.ws1{word-spacing:-19.068000px;}
.wsba{word-spacing:-16.344000px;}
.wsb{word-spacing:-12.690000px;}
.ws9{word-spacing:-12.258000px;}
.ws7{word-spacing:-11.568000px;}
.ws6{word-spacing:-11.280000px;}
.ws5{word-spacing:-10.944000px;}
.ws4{word-spacing:-10.896000px;}
.ws8{word-spacing:-10.704000px;}
.ws48{word-spacing:-9.870000px;}
.wsbb{word-spacing:-9.576000px;}
.ws46{word-spacing:-9.534000px;}
.ws2{word-spacing:-9.479520px;}
.wsbc{word-spacing:-9.156000px;}
.ws45{word-spacing:-7.776000px;}
.wsa{word-spacing:-7.109640px;}
.ws3{word-spacing:-5.724600px;}
.ws12a{word-spacing:-4.872000px;}
.ws1b{word-spacing:-3.618000px;}
.ws11d{word-spacing:-3.318000px;}
.ws22{word-spacing:-2.484000px;}
.wsbf{word-spacing:-1.998000px;}
.ws118{word-spacing:-1.974000px;}
.ws99{word-spacing:-1.968000px;}
.wsf5{word-spacing:-1.890000px;}
.ws30{word-spacing:-1.836000px;}
.ws133{word-spacing:-1.680000px;}
.wse9{word-spacing:-1.674000px;}
.ws5a{word-spacing:-1.632000px;}
.ws10e{word-spacing:-1.596000px;}
.wsb2{word-spacing:-1.512000px;}
.ws146{word-spacing:-1.470000px;}
.wse7{word-spacing:-1.458000px;}
.ws97{word-spacing:-1.344000px;}
.ws8a{word-spacing:-1.296000px;}
.ws69{word-spacing:-1.152000px;}
.ws147{word-spacing:-1.092000px;}
.ws13f{word-spacing:-0.840000px;}
.ws42{word-spacing:-0.768000px;}
.wsd8{word-spacing:-0.702000px;}
.wsfc{word-spacing:-0.672000px;}
.ws8e{word-spacing:-0.576000px;}
.ws32{word-spacing:-0.540000px;}
.ws12{word-spacing:-0.528000px;}
.ws13{word-spacing:-0.504000px;}
.ws94{word-spacing:-0.480000px;}
.ws104{word-spacing:-0.462000px;}
.ws115{word-spacing:-0.378000px;}
.ws75{word-spacing:-0.336000px;}
.wsb9{word-spacing:-0.294000px;}
.ws4c{word-spacing:-0.288000px;}
.ws21{word-spacing:-0.270000px;}
.ws13a{word-spacing:-0.252000px;}
.ws5b{word-spacing:-0.144000px;}
.ws8d{word-spacing:-0.096000px;}
.ws130{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws26{word-spacing:0.054000px;}
.ws1e{word-spacing:0.162000px;}
.ws101{word-spacing:0.168000px;}
.ws89{word-spacing:0.192000px;}
.ws105{word-spacing:0.210000px;}
.wsb0{word-spacing:0.216000px;}
.wsb8{word-spacing:0.294000px;}
.ws15{word-spacing:0.336000px;}
.ws3e{word-spacing:0.378000px;}
.ws76{word-spacing:0.420000px;}
.ws141{word-spacing:0.462000px;}
.ws10{word-spacing:0.528000px;}
.ws12f{word-spacing:0.546000px;}
.ws13b{word-spacing:0.588000px;}
.ws111{word-spacing:0.630000px;}
.wscf{word-spacing:0.648000px;}
.ws6e{word-spacing:0.840000px;}
.ws54{word-spacing:0.912000px;}
.wsd{word-spacing:0.924000px;}
.ws103{word-spacing:1.008000px;}
.wsb1{word-spacing:1.080000px;}
.ws12b{word-spacing:1.134000px;}
.ws5f{word-spacing:1.440000px;}
.ws1d{word-spacing:1.458000px;}
.wsd0{word-spacing:1.512000px;}
.ws100{word-spacing:1.554000px;}
.wsc2{word-spacing:1.566000px;}
.ws37{word-spacing:1.998000px;}
.ws70{word-spacing:2.016000px;}
.ws102{word-spacing:2.058000px;}
.wse4{word-spacing:2.160000px;}
.ws14a{word-spacing:2.226000px;}
.ws3d{word-spacing:2.268000px;}
.ws87{word-spacing:2.304000px;}
.wsb5{word-spacing:2.430000px;}
.ws9a{word-spacing:2.544000px;}
.wsd1{word-spacing:2.646000px;}
.wsc6{word-spacing:2.754000px;}
.ws16{word-spacing:2.784000px;}
.ws36{word-spacing:2.808000px;}
.ws17{word-spacing:2.832000px;}
.ws13c{word-spacing:2.856000px;}
.ws27{word-spacing:2.862000px;}
.ws9f{word-spacing:2.880000px;}
.ws41{word-spacing:2.928000px;}
.ws1c{word-spacing:2.970000px;}
.ws57{word-spacing:2.976000px;}
.ws73{word-spacing:2.982000px;}
.ws78{word-spacing:3.024000px;}
.ws148{word-spacing:3.066000px;}
.ws95{word-spacing:3.168000px;}
.ws12e{word-spacing:3.192000px;}
.wsd6{word-spacing:3.294000px;}
.ws77{word-spacing:3.360000px;}
.ws10b{word-spacing:3.402000px;}
.ws38{word-spacing:3.456000px;}
.ws149{word-spacing:3.486000px;}
.ws12d{word-spacing:3.528000px;}
.wsa3{word-spacing:3.600000px;}
.ws129{word-spacing:3.654000px;}
.ws113{word-spacing:3.696000px;}
.wsf4{word-spacing:3.726000px;}
.ws7a{word-spacing:3.738000px;}
.ws96{word-spacing:3.792000px;}
.ws68{word-spacing:3.888000px;}
.ws6d{word-spacing:3.906000px;}
.ws3c{word-spacing:3.942000px;}
.wsb7{word-spacing:3.996000px;}
.ws59{word-spacing:4.032000px;}
.ws79{word-spacing:4.074000px;}
.ws28{word-spacing:4.104000px;}
.ws98{word-spacing:4.128000px;}
.ws10c{word-spacing:4.200000px;}
.ws20{word-spacing:4.266000px;}
.ws12c{word-spacing:4.284000px;}
.ws49{word-spacing:4.303800px;}
.ws112{word-spacing:4.326000px;}
.wsfe{word-spacing:4.368000px;}
.ws1f{word-spacing:4.374000px;}
.ws88{word-spacing:4.416000px;}
.wse3{word-spacing:4.428000px;}
.wsd5{word-spacing:4.482000px;}
.ws18{word-spacing:4.560000px;}
.ws11f{word-spacing:4.578000px;}
.wsbd{word-spacing:4.644000px;}
.ws128{word-spacing:4.704000px;}
.wsdb{word-spacing:4.752000px;}
.ws91{word-spacing:4.896000px;}
.ws19{word-spacing:4.944000px;}
.ws122{word-spacing:5.040000px;}
.ws114{word-spacing:5.124000px;}
.wse1{word-spacing:5.130000px;}
.ws31{word-spacing:5.238000px;}
.ws74{word-spacing:5.250000px;}
.ws29{word-spacing:5.346000px;}
.wsc0{word-spacing:5.454000px;}
.ws134{word-spacing:5.460000px;}
.ws93{word-spacing:5.616000px;}
.wsfb{word-spacing:5.628000px;}
.ws2d{word-spacing:5.670000px;}
.ws33{word-spacing:5.724000px;}
.ws3b{word-spacing:5.778000px;}
.ws85{word-spacing:5.808000px;}
.ws1a{word-spacing:5.856000px;}
.ws2a{word-spacing:5.886000px;}
.ws108{word-spacing:5.922000px;}
.ws9c{word-spacing:5.952000px;}
.wsd3{word-spacing:5.994000px;}
.wsa2{word-spacing:6.000000px;}
.ws81{word-spacing:6.264000px;}
.wse8{word-spacing:6.318000px;}
.wsf6{word-spacing:6.426000px;}
.ws86{word-spacing:6.432000px;}
.ws35{word-spacing:6.480000px;}
.wsa6{word-spacing:6.528000px;}
.wsf7{word-spacing:6.594000px;}
.ws145{word-spacing:6.636000px;}
.wsa8{word-spacing:6.672000px;}
.ws4a{word-spacing:6.720000px;}
.wsf9{word-spacing:6.762000px;}
.ws92{word-spacing:6.768000px;}
.ws123{word-spacing:6.804000px;}
.ws137{word-spacing:6.846000px;}
.wsc8{word-spacing:6.858000px;}
.wsbe{word-spacing:6.912000px;}
.ws14{word-spacing:7.104000px;}
.wsc7{word-spacing:7.128000px;}
.ws11e{word-spacing:7.224000px;}
.ws53{word-spacing:7.344000px;}
.wseb{word-spacing:7.398000px;}
.ws2b{word-spacing:7.506000px;}
.ws11a{word-spacing:7.518000px;}
.ws82{word-spacing:7.776000px;}
.ws55{word-spacing:7.824000px;}
.wsc1{word-spacing:7.830000px;}
.ws5c{word-spacing:7.872000px;}
.ws125{word-spacing:7.896000px;}
.wsf{word-spacing:7.920000px;}
.ws11{word-spacing:7.968000px;}
.ws7c{word-spacing:7.980000px;}
.ws126{word-spacing:8.106000px;}
.wse0{word-spacing:8.262000px;}
.ws3a{word-spacing:8.316000px;}
.ws8c{word-spacing:8.352000px;}
.wsec{word-spacing:8.424000px;}
.wsff{word-spacing:8.652000px;}
.ws8f{word-spacing:8.688000px;}
.ws67{word-spacing:8.736000px;}
.wsdc{word-spacing:8.748000px;}
.ws7d{word-spacing:8.778000px;}
.ws2e{word-spacing:8.802000px;}
.ws10f{word-spacing:8.820000px;}
.ws58{word-spacing:8.928000px;}
.ws43{word-spacing:9.072000px;}
.wsa4{word-spacing:9.120000px;}
.wsfd{word-spacing:9.156000px;}
.ws34{word-spacing:9.180000px;}
.ws110{word-spacing:9.240000px;}
.ws7e{word-spacing:9.324000px;}
.wsa9{word-spacing:9.408000px;}
.ws14b{word-spacing:9.450000px;}
.wsee{word-spacing:9.558000px;}
.ws142{word-spacing:9.660000px;}
.ws116{word-spacing:9.702000px;}
.wsce{word-spacing:9.720000px;}
.wsb6{word-spacing:9.774000px;}
.ws138{word-spacing:9.870000px;}
.ws2f{word-spacing:9.936000px;}
.wsa5{word-spacing:9.984000px;}
.wsc{word-spacing:9.996000px;}
.ws44{word-spacing:10.032000px;}
.wsae{word-spacing:10.044000px;}
.ws9e{word-spacing:10.128000px;}
.wsd2{word-spacing:10.206000px;}
.ws5e{word-spacing:10.224000px;}
.wsda{word-spacing:10.368000px;}
.ws127{word-spacing:10.374000px;}
.ws24{word-spacing:10.584000px;}
.ws6a{word-spacing:10.608000px;}
.ws7b{word-spacing:10.752000px;}
.ws84{word-spacing:10.800000px;}
.ws4d{word-spacing:10.848000px;}
.ws131{word-spacing:10.878000px;}
.wsef{word-spacing:11.178000px;}
.ws109{word-spacing:11.214000px;}
.wsc4{word-spacing:11.286000px;}
.ws121{word-spacing:11.466000px;}
.ws106{word-spacing:11.550000px;}
.wsdf{word-spacing:11.556000px;}
.wsf8{word-spacing:11.718000px;}
.wse{word-spacing:11.760000px;}
.ws117{word-spacing:11.802000px;}
.ws119{word-spacing:12.138000px;}
.wse2{word-spacing:12.150000px;}
.ws4b{word-spacing:12.192000px;}
.ws72{word-spacing:12.306000px;}
.ws9b{word-spacing:12.336000px;}
.wsd9{word-spacing:12.366000px;}
.ws25{word-spacing:12.420000px;}
.wsb4{word-spacing:12.474000px;}
.ws8b{word-spacing:12.672000px;}
.wsea{word-spacing:12.690000px;}
.ws107{word-spacing:12.726000px;}
.ws90{word-spacing:12.816000px;}
.wscc{word-spacing:12.852000px;}
.ws60{word-spacing:12.864000px;}
.ws63{word-spacing:12.912000px;}
.wsad{word-spacing:12.960000px;}
.wse6{word-spacing:13.068000px;}
.wsa0{word-spacing:13.104000px;}
.wsab{word-spacing:13.176000px;}
.wsc3{word-spacing:13.230000px;}
.ws71{word-spacing:13.314000px;}
.wscd{word-spacing:13.338000px;}
.ws10d{word-spacing:13.524000px;}
.ws9d{word-spacing:13.920000px;}
.wsed{word-spacing:14.364000px;}
.wscb{word-spacing:14.688000px;}
.wsf2{word-spacing:15.174000px;}
.wsf0{word-spacing:15.606000px;}
.ws10a{word-spacing:15.624000px;}
.ws40{word-spacing:15.648000px;}
.ws124{word-spacing:15.834000px;}
.wsd7{word-spacing:15.984000px;}
.ws7f{word-spacing:16.200000px;}
.ws56{word-spacing:16.752000px;}
.ws65{word-spacing:16.896000px;}
.wsc9{word-spacing:16.902000px;}
.ws66{word-spacing:16.992000px;}
.ws80{word-spacing:17.010000px;}
.wsd4{word-spacing:17.172000px;}
.ws144{word-spacing:17.220000px;}
.wsca{word-spacing:17.334000px;}
.ws140{word-spacing:17.514000px;}
.ws120{word-spacing:17.682000px;}
.wsaa{word-spacing:17.874000px;}
.ws139{word-spacing:18.102000px;}
.wsf3{word-spacing:18.306000px;}
.wsb3{word-spacing:18.360000px;}
.ws2c{word-spacing:18.414000px;}
.wsc5{word-spacing:18.630000px;}
.ws62{word-spacing:19.248000px;}
.ws132{word-spacing:19.446000px;}
.ws39{word-spacing:19.764000px;}
.ws4e{word-spacing:20.304000px;}
.wsa1{word-spacing:20.400000px;}
.ws64{word-spacing:20.448000px;}
.ws3f{word-spacing:20.496000px;}
.ws51{word-spacing:20.832000px;}
.wsdd{word-spacing:21.006000px;}
.ws143{word-spacing:21.084000px;}
.wsa7{word-spacing:21.216000px;}
.wse5{word-spacing:21.546000px;}
.ws83{word-spacing:22.518000px;}
.ws6c{word-spacing:22.806000px;}
.wsaf{word-spacing:23.382000px;}
.ws13e{word-spacing:23.730000px;}
.ws5d{word-spacing:23.760000px;}
.ws52{word-spacing:24.624000px;}
.ws135{word-spacing:24.696000px;}
.wsde{word-spacing:24.948000px;}
.ws61{word-spacing:25.872000px;}
.wsfa{word-spacing:26.586000px;}
.ws136{word-spacing:26.880000px;}
.ws6f{word-spacing:27.048000px;}
.ws11b{word-spacing:27.384000px;}
.wsac{word-spacing:27.432000px;}
.ws23{word-spacing:27.810000px;}
.ws13d{word-spacing:28.518000px;}
.ws4f{word-spacing:29.904000px;}
.ws50{word-spacing:32.352000px;}
.ws11c{word-spacing:35.112000px;}
.ws6b{word-spacing:35.322000px;}
.wsf1{word-spacing:38.016000px;}
._0{margin-left:-15.408000px;}
._2{margin-left:-10.512000px;}
._16{margin-left:-9.460800px;}
._14{margin-left:-8.452800px;}
._1{margin-left:-5.760000px;}
._19{margin-left:-4.752000px;}
._5{margin-left:-3.672000px;}
._b{margin-left:-2.189520px;}
._6{margin-left:-1.184400px;}
._4{width:1.296000px;}
._7{width:2.360400px;}
._3{width:3.441600px;}
._c{width:4.771200px;}
._e{width:6.220800px;}
._a{width:7.920000px;}
._d{width:9.684720px;}
._11{width:11.045520px;}
._9{width:12.304800px;}
._12{width:13.545600px;}
._10{width:15.657600px;}
._15{width:16.891200px;}
._1b{width:18.021600px;}
._13{width:19.627200px;}
._f{width:20.817600px;}
._17{width:23.170200px;}
._18{width:28.015800px;}
._1a{width:38.377440px;}
._8{width:488.160000px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:24.360000px;}
.fs9{font-size:31.320000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y48{bottom:71.818050px;}
.y49{bottom:86.395800px;}
.y3e{bottom:124.175400px;}
.y47{bottom:124.775250px;}
.yd9{bottom:125.587950px;}
.y90{bottom:125.626050px;}
.yd4{bottom:125.705550px;}
.y15e{bottom:127.841550px;}
.y11a{bottom:128.141400px;}
.y5{bottom:128.222700px;}
.y46{bottom:139.175250px;}
.y3d{bottom:140.375400px;}
.y15d{bottom:140.441550px;}
.yd3{bottom:141.311550px;}
.y8f{bottom:141.529050px;}
.yd8{bottom:141.787950px;}
.y119{bottom:144.341400px;}
.y15c{bottom:153.041550px;}
.y4{bottom:153.548700px;}
.y45{bottom:153.575250px;}
.y3c{bottom:156.575400px;}
.yd2{bottom:156.917550px;}
.y8e{bottom:157.432050px;}
.yd7{bottom:157.987950px;}
.y118{bottom:160.541400px;}
.y15b{bottom:165.641550px;}
.y44{bottom:167.975250px;}
.yd1{bottom:172.523550px;}
.y3b{bottom:172.775400px;}
.y8d{bottom:173.335050px;}
.yd6{bottom:174.187950px;}
.y15a{bottom:178.241550px;}
.y43{bottom:182.375250px;}
.yd0{bottom:188.129550px;}
.y3a{bottom:188.975400px;}
.y8c{bottom:189.238050px;}
.y159{bottom:190.841550px;}
.y117{bottom:192.941550px;}
.y42{bottom:196.775250px;}
.y158{bottom:203.441550px;}
.ycf{bottom:203.735550px;}
.y8b{bottom:205.141050px;}
.y39{bottom:205.175400px;}
.y41{bottom:211.175250px;}
.ydf{bottom:215.912550px;}
.y157{bottom:216.041550px;}
.yce{bottom:219.341550px;}
.y8a{bottom:221.044050px;}
.y38{bottom:221.375400px;}
.yde{bottom:228.512550px;}
.y156{bottom:228.641550px;}
.y116{bottom:230.884050px;}
.ycd{bottom:234.977550px;}
.y89{bottom:236.944050px;}
.y37{bottom:237.575400px;}
.y40{bottom:240.734400px;}
.ydd{bottom:241.112550px;}
.y155{bottom:241.241400px;}
.y115{bottom:246.989550px;}
.ycc{bottom:249.377550px;}
.y88{bottom:249.544050px;}
.ydc{bottom:253.712550px;}
.y36{bottom:253.775400px;}
.y154{bottom:253.841550px;}
.y3f{bottom:255.881400px;}
.y87{bottom:262.144050px;}
.y114{bottom:263.095050px;}
.ycb{bottom:263.777550px;}
.ydb{bottom:266.312550px;}
.y153{bottom:266.441550px;}
.y35{bottom:269.975400px;}
.y86{bottom:274.744050px;}
.yca{bottom:278.177550px;}
.yda{bottom:278.912550px;}
.y152{bottom:279.041550px;}
.y113{bottom:279.200550px;}
.y34{bottom:286.175400px;}
.y85{bottom:287.344050px;}
.y151{bottom:291.641550px;}
.yc9{bottom:292.577550px;}
.y112{bottom:295.306050px;}
.y84{bottom:299.944050px;}
.y33{bottom:302.375400px;}
.y150{bottom:304.241550px;}
.yc8{bottom:306.821550px;}
.y111{bottom:311.411550px;}
.y83{bottom:312.544050px;}
.y14f{bottom:316.841550px;}
.y32{bottom:318.575400px;}
.yc7{bottom:321.065550px;}
.y82{bottom:325.144050px;}
.y110{bottom:327.517050px;}
.y14e{bottom:329.441550px;}
.y31{bottom:334.775400px;}
.yc6{bottom:335.309550px;}
.y81{bottom:337.744050px;}
.y14d{bottom:342.041550px;}
.y10f{bottom:343.622550px;}
.yc5{bottom:349.553550px;}
.y80{bottom:350.344050px;}
.y30{bottom:350.975400px;}
.y14c{bottom:354.641550px;}
.y10e{bottom:359.728050px;}
.y7f{bottom:362.944050px;}
.yc4{bottom:363.797550px;}
.y2f{bottom:367.175400px;}
.y14b{bottom:367.241550px;}
.y7e{bottom:375.544050px;}
.y10d{bottom:375.833550px;}
.yc3{bottom:378.041550px;}
.y14a{bottom:379.841550px;}
.y2e{bottom:383.375400px;}
.y7d{bottom:388.144050px;}
.y10c{bottom:391.939050px;}
.yc2{bottom:392.441550px;}
.y2d{bottom:399.575400px;}
.y7c{bottom:400.744050px;}
.y149{bottom:405.041550px;}
.yc1{bottom:406.841550px;}
.y10b{bottom:408.044550px;}
.y7b{bottom:413.344050px;}
.y2c{bottom:415.775400px;}
.y2{bottom:416.116950px;}
.y148{bottom:417.641550px;}
.yc0{bottom:421.241550px;}
.y10a{bottom:424.150050px;}
.y7a{bottom:425.944050px;}
.y147{bottom:430.241550px;}
.y2b{bottom:431.975400px;}
.ybf{bottom:435.641550px;}
.y1e9{bottom:437.605650px;}
.y1b6{bottom:437.734050px;}
.y79{bottom:438.544050px;}
.y109{bottom:440.255550px;}
.y146{bottom:442.841550px;}
.y2a{bottom:448.175400px;}
.ybe{bottom:450.041550px;}
.y1e8{bottom:450.205650px;}
.y1b5{bottom:450.334050px;}
.y78{bottom:451.144050px;}
.y145{bottom:455.441550px;}
.y108{bottom:456.361050px;}
.y1e7{bottom:462.805650px;}
.y1b4{bottom:462.934050px;}
.y77{bottom:463.744050px;}
.y29{bottom:464.375400px;}
.ybd{bottom:464.441550px;}
.y1{bottom:466.768950px;}
.y144{bottom:468.041550px;}
.y107{bottom:472.466550px;}
.y1e6{bottom:475.405650px;}
.y1b3{bottom:475.534050px;}
.y76{bottom:476.344050px;}
.ybc{bottom:478.841550px;}
.y28{bottom:480.575400px;}
.y143{bottom:480.641550px;}
.y1e5{bottom:488.005650px;}
.y1b2{bottom:488.134050px;}
.y106{bottom:488.572050px;}
.y75{bottom:488.944050px;}
.ybb{bottom:493.241550px;}
.y27{bottom:496.775400px;}
.y1e4{bottom:500.605650px;}
.y1b1{bottom:500.734050px;}
.y74{bottom:501.544050px;}
.y105{bottom:504.677550px;}
.y142{bottom:505.841550px;}
.yba{bottom:507.641550px;}
.y26{bottom:512.975400px;}
.y1e3{bottom:513.205650px;}
.y1b0{bottom:513.334050px;}
.y73{bottom:514.144050px;}
.y141{bottom:518.441550px;}
.y104{bottom:520.783050px;}
.yb9{bottom:522.041550px;}
.y1e2{bottom:525.805650px;}
.y1af{bottom:525.934050px;}
.y72{bottom:526.744050px;}
.y140{bottom:531.041550px;}
.yb8{bottom:536.441550px;}
.y103{bottom:536.888550px;}
.y1e1{bottom:538.405650px;}
.y1ae{bottom:538.534050px;}
.y71{bottom:539.344050px;}
.y13f{bottom:543.641550px;}
.yb7{bottom:550.841550px;}
.y1e0{bottom:551.005650px;}
.y1ad{bottom:551.134050px;}
.y102{bottom:552.994050px;}
.y70{bottom:553.744050px;}
.y13e{bottom:556.241400px;}
.y25{bottom:557.329050px;}
.y1df{bottom:563.605650px;}
.y1ac{bottom:563.734050px;}
.yb6{bottom:565.241550px;}
.y6f{bottom:568.144050px;}
.y13d{bottom:568.841400px;}
.y101{bottom:569.099550px;}
.y1de{bottom:576.205650px;}
.y1ab{bottom:576.334050px;}
.yb5{bottom:579.641550px;}
.y13c{bottom:581.441400px;}
.y6e{bottom:582.544050px;}
.y100{bottom:585.205050px;}
.y24{bottom:585.529050px;}
.y1dd{bottom:588.805650px;}
.y1aa{bottom:588.934050px;}
.y13b{bottom:594.041400px;}
.yb4{bottom:594.041550px;}
.y6d{bottom:596.944050px;}
.y23{bottom:599.629050px;}
.yff{bottom:601.310550px;}
.y1dc{bottom:601.405650px;}
.y1a9{bottom:601.534050px;}
.y13a{bottom:606.641400px;}
.yb3{bottom:608.441550px;}
.y6c{bottom:611.344050px;}
.y22{bottom:613.729050px;}
.y1db{bottom:614.005650px;}
.y1a8{bottom:614.134050px;}
.yfe{bottom:617.416050px;}
.y139{bottom:619.241400px;}
.yb2{bottom:622.841550px;}
.y6b{bottom:625.744050px;}
.y1da{bottom:626.605650px;}
.y1a7{bottom:626.734050px;}
.y21{bottom:627.829050px;}
.y138{bottom:631.841400px;}
.yfd{bottom:633.521550px;}
.yb1{bottom:637.241550px;}
.y1d9{bottom:639.205650px;}
.y1a6{bottom:639.334050px;}
.y6a{bottom:640.143900px;}
.y20{bottom:641.929050px;}
.y137{bottom:644.441400px;}
.yfc{bottom:649.627050px;}
.y3{bottom:649.840500px;}
.yb0{bottom:651.641550px;}
.y1d8{bottom:651.805650px;}
.y1a5{bottom:651.934050px;}
.y69{bottom:654.543900px;}
.y1f{bottom:656.029050px;}
.y136{bottom:657.041400px;}
.y1d7{bottom:664.405650px;}
.y1a4{bottom:664.534050px;}
.yfb{bottom:665.705550px;}
.yaf{bottom:666.041400px;}
.y68{bottom:668.943900px;}
.y135{bottom:669.641400px;}
.y1e{bottom:670.129050px;}
.y1d6{bottom:677.005650px;}
.y1a3{bottom:677.134050px;}
.yae{bottom:680.441400px;}
.yfa{bottom:681.784050px;}
.y134{bottom:682.241400px;}
.y67{bottom:683.343900px;}
.y1d5{bottom:689.605650px;}
.y1a2{bottom:689.734050px;}
.yad{bottom:694.841400px;}
.y66{bottom:697.743900px;}
.yf9{bottom:697.862550px;}
.y1d{bottom:700.429050px;}
.y1d4{bottom:702.205650px;}
.y1a1{bottom:702.334050px;}
.y133{bottom:707.441400px;}
.yac{bottom:709.241400px;}
.y65{bottom:712.143900px;}
.yf8{bottom:713.941050px;}
.y1d3{bottom:714.805500px;}
.y1a0{bottom:714.934050px;}
.y1c{bottom:716.494050px;}
.y132{bottom:720.041400px;}
.yab{bottom:723.641400px;}
.y64{bottom:726.543900px;}
.y1d2{bottom:727.405500px;}
.y19f{bottom:727.534050px;}
.y1b{bottom:729.094050px;}
.yf7{bottom:730.019550px;}
.y131{bottom:732.641400px;}
.yaa{bottom:738.041400px;}
.y1d1{bottom:740.005500px;}
.y19e{bottom:740.134050px;}
.y63{bottom:740.943900px;}
.y130{bottom:745.241400px;}
.yf6{bottom:746.098050px;}
.ya9{bottom:752.441400px;}
.y1d0{bottom:752.605500px;}
.y19d{bottom:752.734050px;}
.y1a{bottom:754.429050px;}
.y62{bottom:755.343900px;}
.y12f{bottom:757.841400px;}
.yf5{bottom:762.176550px;}
.y1cf{bottom:765.205500px;}
.y19c{bottom:765.334050px;}
.ya8{bottom:766.841400px;}
.y61{bottom:769.743900px;}
.y12e{bottom:770.441400px;}
.y1ce{bottom:777.805500px;}
.y19b{bottom:777.934050px;}
.yf4{bottom:778.255050px;}
.ya7{bottom:781.241400px;}
.y12d{bottom:783.041400px;}
.y60{bottom:784.143900px;}
.y19{bottom:786.829050px;}
.y1cd{bottom:790.405500px;}
.y19a{bottom:790.534050px;}
.yf3{bottom:794.333550px;}
.ya6{bottom:795.641400px;}
.y5f{bottom:798.543900px;}
.y1cc{bottom:803.005500px;}
.y18{bottom:803.029050px;}
.y199{bottom:803.134050px;}
.y12c{bottom:808.241400px;}
.ya5{bottom:810.041400px;}
.yf2{bottom:810.412050px;}
.y5e{bottom:812.943900px;}
.y1cb{bottom:815.605500px;}
.y198{bottom:815.734050px;}
.y12b{bottom:820.841400px;}
.ya4{bottom:824.441400px;}
.yf1{bottom:826.490550px;}
.y5d{bottom:827.343900px;}
.y1ca{bottom:828.205500px;}
.y197{bottom:828.334050px;}
.y12a{bottom:833.441400px;}
.y17{bottom:835.429050px;}
.ya3{bottom:838.841400px;}
.y1c9{bottom:840.805500px;}
.y196{bottom:840.934050px;}
.y5c{bottom:841.743900px;}
.yf0{bottom:842.569050px;}
.y182{bottom:844.791600px;}
.y129{bottom:846.041400px;}
.ya2{bottom:853.241400px;}
.y1c8{bottom:853.405500px;}
.y195{bottom:853.534050px;}
.y5b{bottom:856.143900px;}
.y181{bottom:856.791600px;}
.y128{bottom:858.641400px;}
.yef{bottom:858.647550px;}
.y16{bottom:863.629050px;}
.y1c7{bottom:866.005500px;}
.y194{bottom:866.134050px;}
.ya1{bottom:867.641400px;}
.y180{bottom:868.791600px;}
.y5a{bottom:870.543900px;}
.y127{bottom:871.241400px;}
.yee{bottom:874.726050px;}
.y15{bottom:877.729050px;}
.y1c6{bottom:878.605500px;}
.y193{bottom:878.734050px;}
.ya0{bottom:882.041400px;}
.y59{bottom:884.943900px;}
.yed{bottom:890.804550px;}
.y1c5{bottom:891.205500px;}
.y192{bottom:891.334050px;}
.y14{bottom:891.829050px;}
.y9f{bottom:896.441400px;}
.y58{bottom:899.343900px;}
.y126{bottom:900.041400px;}
.y1c4{bottom:903.805500px;}
.y191{bottom:903.934050px;}
.y13{bottom:905.929050px;}
.yec{bottom:906.883050px;}
.y16f{bottom:910.023900px;}
.y17f{bottom:910.034400px;}
.y9e{bottom:910.841400px;}
.y57{bottom:913.743900px;}
.y1c3{bottom:916.405500px;}
.y190{bottom:916.534050px;}
.y12{bottom:920.029050px;}
.y16e{bottom:922.025400px;}
.y17e{bottom:922.833900px;}
.yeb{bottom:922.961550px;}
.y9d{bottom:925.241400px;}
.y56{bottom:928.143900px;}
.y1c2{bottom:929.005500px;}
.y18f{bottom:929.134050px;}
.y16d{bottom:934.026900px;}
.y17d{bottom:935.633400px;}
.y125{bottom:937.844400px;}
.yea{bottom:939.056550px;}
.y9c{bottom:939.641400px;}
.y1c1{bottom:941.605500px;}
.y18e{bottom:941.734050px;}
.y55{bottom:942.543900px;}
.y16c{bottom:946.028400px;}
.y17c{bottom:948.432900px;}
.y11{bottom:950.329200px;}
.y9b{bottom:954.041400px;}
.y124{bottom:954.044400px;}
.y1c0{bottom:954.205500px;}
.y18d{bottom:954.334050px;}
.ye9{bottom:955.135050px;}
.y54{bottom:956.943900px;}
.y16b{bottom:958.029900px;}
.y17b{bottom:961.232400px;}
.y10{bottom:966.394200px;}
.y1bf{bottom:966.805500px;}
.y18c{bottom:966.934050px;}
.y9a{bottom:968.441400px;}
.y16a{bottom:970.031400px;}
.y123{bottom:970.244400px;}
.ye8{bottom:971.213550px;}
.y53{bottom:971.343900px;}
.y17a{bottom:974.031900px;}
.yf{bottom:975.529050px;}
.y1be{bottom:979.405500px;}
.y18b{bottom:979.534050px;}
.y169{bottom:982.032900px;}
.y99{bottom:982.841400px;}
.y52{bottom:985.743900px;}
.y122{bottom:986.444400px;}
.y179{bottom:986.831400px;}
.ye7{bottom:987.292050px;}
.ye{bottom:991.594050px;}
.y1bd{bottom:992.005500px;}
.y18a{bottom:992.134050px;}
.y168{bottom:994.034400px;}
.y98{bottom:997.241400px;}
.y178{bottom:999.630900px;}
.y51{bottom:1000.143900px;}
.y121{bottom:1002.644400px;}
.ye6{bottom:1003.370550px;}
.y1bc{bottom:1004.608050px;}
.y189{bottom:1004.734050px;}
.y167{bottom:1006.035900px;}
.y97{bottom:1011.641400px;}
.y177{bottom:1012.430400px;}
.y50{bottom:1014.543900px;}
.y9{bottom:1015.577700px;}
.y1bb{bottom:1017.208050px;}
.y188{bottom:1017.334050px;}
.y166{bottom:1018.037400px;}
.y120{bottom:1018.844400px;}
.ye5{bottom:1019.449050px;}
.yd{bottom:1022.329050px;}
.y176{bottom:1025.229900px;}
.y96{bottom:1026.041400px;}
.y4f{bottom:1028.943900px;}
.y1ba{bottom:1029.808050px;}
.y187{bottom:1029.934050px;}
.y165{bottom:1030.038900px;}
.y11f{bottom:1035.044400px;}
.ye4{bottom:1035.527550px;}
.y8{bottom:1036.577700px;}
.y175{bottom:1038.029400px;}
.y95{bottom:1040.441400px;}
.y164{bottom:1042.040400px;}
.y1b9{bottom:1042.408050px;}
.y186{bottom:1042.534050px;}
.y4e{bottom:1043.343900px;}
.y174{bottom:1050.828900px;}
.y11e{bottom:1051.244400px;}
.ye3{bottom:1051.606050px;}
.y163{bottom:1054.041900px;}
.y94{bottom:1054.841400px;}
.y1b8{bottom:1055.008050px;}
.y185{bottom:1055.134050px;}
.y4d{bottom:1057.743900px;}
.y173{bottom:1063.628400px;}
.y162{bottom:1066.043400px;}
.y11d{bottom:1067.444400px;}
.y1b7{bottom:1067.608050px;}
.ye2{bottom:1067.684550px;}
.y184{bottom:1067.734050px;}
.yc{bottom:1069.129050px;}
.y93{bottom:1069.241400px;}
.y4c{bottom:1072.143900px;}
.y7{bottom:1073.327700px;}
.y172{bottom:1076.427900px;}
.y161{bottom:1078.044900px;}
.y92{bottom:1083.626550px;}
.y11c{bottom:1083.644400px;}
.ye1{bottom:1083.763050px;}
.y4b{bottom:1086.543900px;}
.y171{bottom:1089.227400px;}
.y160{bottom:1090.046400px;}
.y6{bottom:1094.327700px;}
.yb{bottom:1094.329050px;}
.y183{bottom:1096.534050px;}
.y91{bottom:1099.826550px;}
.ye0{bottom:1099.841550px;}
.y11b{bottom:1099.844400px;}
.y4a{bottom:1100.943900px;}
.y170{bottom:1102.026900px;}
.y15f{bottom:1102.046400px;}
.ya{bottom:1150.865100px;}
.yd5{bottom:1151.967600px;}
.h7{height:21.882000px;}
.h8{height:35.742000px;}
.h9{height:40.848000px;}
.ha{height:45.630000px;}
.h5{height:45.954000px;}
.hb{height:50.400000px;}
.h6{height:60.840000px;}
.h4{height:70.980000px;}
.h3{height:91.260000px;}
.h2{height:122.544000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.299150px;}
.xa{left:110.369700px;}
.x2{left:122.286450px;}
.xc{left:133.074150px;}
.x1{left:136.063050px;}
.xd{left:227.788950px;}
.xb{left:254.511450px;}
.x5{left:269.483550px;}
.x7{left:272.423550px;}
.x13{left:300.414000px;}
.xe{left:309.787950px;}
.x8{left:322.823550px;}
.x6{left:330.215550px;}
.x17{left:346.540350px;}
.x3{left:383.030550px;}
.x4{left:438.617550px;}
.x10{left:457.091100px;}
.x11{left:479.798100px;}
.xf{left:483.861600px;}
.x16{left:515.574000px;}
.x12{left:592.671600px;}
.x14{left:620.766000px;}
.x15{left:630.318000px;}
@media print{
.v3{vertical-align:-12.320000pt;}
.v1{vertical-align:-1.248000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.840000pt;}
.v2{vertical-align:21.120533pt;}
.ls10{letter-spacing:-3.114667pt;}
.lse{letter-spacing:-2.176000pt;}
.ls8{letter-spacing:-1.066667pt;}
.ls13{letter-spacing:-0.634667pt;}
.ls6{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.426667pt;}
.ls11{letter-spacing:-0.373333pt;}
.ls7{letter-spacing:-0.336000pt;}
.ls3{letter-spacing:-0.298667pt;}
.ls12{letter-spacing:-0.261333pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls14{letter-spacing:-0.186667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.430933pt;}
.lsb{letter-spacing:3.456000pt;}
.ls1{letter-spacing:10.453333pt;}
.lsd{letter-spacing:17.882667pt;}
.lsa{letter-spacing:20.394667pt;}
.ls9{letter-spacing:21.892267pt;}
.lsc{letter-spacing:30.284800pt;}
.ws47{word-spacing:-37.333333pt;}
.ws1{word-spacing:-16.949333pt;}
.wsba{word-spacing:-14.528000pt;}
.wsb{word-spacing:-11.280000pt;}
.ws9{word-spacing:-10.896000pt;}
.ws7{word-spacing:-10.282667pt;}
.ws6{word-spacing:-10.026667pt;}
.ws5{word-spacing:-9.728000pt;}
.ws4{word-spacing:-9.685333pt;}
.ws8{word-spacing:-9.514667pt;}
.ws48{word-spacing:-8.773333pt;}
.wsbb{word-spacing:-8.512000pt;}
.ws46{word-spacing:-8.474667pt;}
.ws2{word-spacing:-8.426240pt;}
.wsbc{word-spacing:-8.138667pt;}
.ws45{word-spacing:-6.912000pt;}
.wsa{word-spacing:-6.319680pt;}
.ws3{word-spacing:-5.088533pt;}
.ws12a{word-spacing:-4.330667pt;}
.ws1b{word-spacing:-3.216000pt;}
.ws11d{word-spacing:-2.949333pt;}
.ws22{word-spacing:-2.208000pt;}
.wsbf{word-spacing:-1.776000pt;}
.ws118{word-spacing:-1.754667pt;}
.ws99{word-spacing:-1.749333pt;}
.wsf5{word-spacing:-1.680000pt;}
.ws30{word-spacing:-1.632000pt;}
.ws133{word-spacing:-1.493333pt;}
.wse9{word-spacing:-1.488000pt;}
.ws5a{word-spacing:-1.450667pt;}
.ws10e{word-spacing:-1.418667pt;}
.wsb2{word-spacing:-1.344000pt;}
.ws146{word-spacing:-1.306667pt;}
.wse7{word-spacing:-1.296000pt;}
.ws97{word-spacing:-1.194667pt;}
.ws8a{word-spacing:-1.152000pt;}
.ws69{word-spacing:-1.024000pt;}
.ws147{word-spacing:-0.970667pt;}
.ws13f{word-spacing:-0.746667pt;}
.ws42{word-spacing:-0.682667pt;}
.wsd8{word-spacing:-0.624000pt;}
.wsfc{word-spacing:-0.597333pt;}
.ws8e{word-spacing:-0.512000pt;}
.ws32{word-spacing:-0.480000pt;}
.ws12{word-spacing:-0.469333pt;}
.ws13{word-spacing:-0.448000pt;}
.ws94{word-spacing:-0.426667pt;}
.ws104{word-spacing:-0.410667pt;}
.ws115{word-spacing:-0.336000pt;}
.ws75{word-spacing:-0.298667pt;}
.wsb9{word-spacing:-0.261333pt;}
.ws4c{word-spacing:-0.256000pt;}
.ws21{word-spacing:-0.240000pt;}
.ws13a{word-spacing:-0.224000pt;}
.ws5b{word-spacing:-0.128000pt;}
.ws8d{word-spacing:-0.085333pt;}
.ws130{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws26{word-spacing:0.048000pt;}
.ws1e{word-spacing:0.144000pt;}
.ws101{word-spacing:0.149333pt;}
.ws89{word-spacing:0.170667pt;}
.ws105{word-spacing:0.186667pt;}
.wsb0{word-spacing:0.192000pt;}
.wsb8{word-spacing:0.261333pt;}
.ws15{word-spacing:0.298667pt;}
.ws3e{word-spacing:0.336000pt;}
.ws76{word-spacing:0.373333pt;}
.ws141{word-spacing:0.410667pt;}
.ws10{word-spacing:0.469333pt;}
.ws12f{word-spacing:0.485333pt;}
.ws13b{word-spacing:0.522667pt;}
.ws111{word-spacing:0.560000pt;}
.wscf{word-spacing:0.576000pt;}
.ws6e{word-spacing:0.746667pt;}
.ws54{word-spacing:0.810667pt;}
.wsd{word-spacing:0.821333pt;}
.ws103{word-spacing:0.896000pt;}
.wsb1{word-spacing:0.960000pt;}
.ws12b{word-spacing:1.008000pt;}
.ws5f{word-spacing:1.280000pt;}
.ws1d{word-spacing:1.296000pt;}
.wsd0{word-spacing:1.344000pt;}
.ws100{word-spacing:1.381333pt;}
.wsc2{word-spacing:1.392000pt;}
.ws37{word-spacing:1.776000pt;}
.ws70{word-spacing:1.792000pt;}
.ws102{word-spacing:1.829333pt;}
.wse4{word-spacing:1.920000pt;}
.ws14a{word-spacing:1.978667pt;}
.ws3d{word-spacing:2.016000pt;}
.ws87{word-spacing:2.048000pt;}
.wsb5{word-spacing:2.160000pt;}
.ws9a{word-spacing:2.261333pt;}
.wsd1{word-spacing:2.352000pt;}
.wsc6{word-spacing:2.448000pt;}
.ws16{word-spacing:2.474667pt;}
.ws36{word-spacing:2.496000pt;}
.ws17{word-spacing:2.517333pt;}
.ws13c{word-spacing:2.538667pt;}
.ws27{word-spacing:2.544000pt;}
.ws9f{word-spacing:2.560000pt;}
.ws41{word-spacing:2.602667pt;}
.ws1c{word-spacing:2.640000pt;}
.ws57{word-spacing:2.645333pt;}
.ws73{word-spacing:2.650667pt;}
.ws78{word-spacing:2.688000pt;}
.ws148{word-spacing:2.725333pt;}
.ws95{word-spacing:2.816000pt;}
.ws12e{word-spacing:2.837333pt;}
.wsd6{word-spacing:2.928000pt;}
.ws77{word-spacing:2.986667pt;}
.ws10b{word-spacing:3.024000pt;}
.ws38{word-spacing:3.072000pt;}
.ws149{word-spacing:3.098667pt;}
.ws12d{word-spacing:3.136000pt;}
.wsa3{word-spacing:3.200000pt;}
.ws129{word-spacing:3.248000pt;}
.ws113{word-spacing:3.285333pt;}
.wsf4{word-spacing:3.312000pt;}
.ws7a{word-spacing:3.322667pt;}
.ws96{word-spacing:3.370667pt;}
.ws68{word-spacing:3.456000pt;}
.ws6d{word-spacing:3.472000pt;}
.ws3c{word-spacing:3.504000pt;}
.wsb7{word-spacing:3.552000pt;}
.ws59{word-spacing:3.584000pt;}
.ws79{word-spacing:3.621333pt;}
.ws28{word-spacing:3.648000pt;}
.ws98{word-spacing:3.669333pt;}
.ws10c{word-spacing:3.733333pt;}
.ws20{word-spacing:3.792000pt;}
.ws12c{word-spacing:3.808000pt;}
.ws49{word-spacing:3.825600pt;}
.ws112{word-spacing:3.845333pt;}
.wsfe{word-spacing:3.882667pt;}
.ws1f{word-spacing:3.888000pt;}
.ws88{word-spacing:3.925333pt;}
.wse3{word-spacing:3.936000pt;}
.wsd5{word-spacing:3.984000pt;}
.ws18{word-spacing:4.053333pt;}
.ws11f{word-spacing:4.069333pt;}
.wsbd{word-spacing:4.128000pt;}
.ws128{word-spacing:4.181333pt;}
.wsdb{word-spacing:4.224000pt;}
.ws91{word-spacing:4.352000pt;}
.ws19{word-spacing:4.394667pt;}
.ws122{word-spacing:4.480000pt;}
.ws114{word-spacing:4.554667pt;}
.wse1{word-spacing:4.560000pt;}
.ws31{word-spacing:4.656000pt;}
.ws74{word-spacing:4.666667pt;}
.ws29{word-spacing:4.752000pt;}
.wsc0{word-spacing:4.848000pt;}
.ws134{word-spacing:4.853333pt;}
.ws93{word-spacing:4.992000pt;}
.wsfb{word-spacing:5.002667pt;}
.ws2d{word-spacing:5.040000pt;}
.ws33{word-spacing:5.088000pt;}
.ws3b{word-spacing:5.136000pt;}
.ws85{word-spacing:5.162667pt;}
.ws1a{word-spacing:5.205333pt;}
.ws2a{word-spacing:5.232000pt;}
.ws108{word-spacing:5.264000pt;}
.ws9c{word-spacing:5.290667pt;}
.wsd3{word-spacing:5.328000pt;}
.wsa2{word-spacing:5.333333pt;}
.ws81{word-spacing:5.568000pt;}
.wse8{word-spacing:5.616000pt;}
.wsf6{word-spacing:5.712000pt;}
.ws86{word-spacing:5.717333pt;}
.ws35{word-spacing:5.760000pt;}
.wsa6{word-spacing:5.802667pt;}
.wsf7{word-spacing:5.861333pt;}
.ws145{word-spacing:5.898667pt;}
.wsa8{word-spacing:5.930667pt;}
.ws4a{word-spacing:5.973333pt;}
.wsf9{word-spacing:6.010667pt;}
.ws92{word-spacing:6.016000pt;}
.ws123{word-spacing:6.048000pt;}
.ws137{word-spacing:6.085333pt;}
.wsc8{word-spacing:6.096000pt;}
.wsbe{word-spacing:6.144000pt;}
.ws14{word-spacing:6.314667pt;}
.wsc7{word-spacing:6.336000pt;}
.ws11e{word-spacing:6.421333pt;}
.ws53{word-spacing:6.528000pt;}
.wseb{word-spacing:6.576000pt;}
.ws2b{word-spacing:6.672000pt;}
.ws11a{word-spacing:6.682667pt;}
.ws82{word-spacing:6.912000pt;}
.ws55{word-spacing:6.954667pt;}
.wsc1{word-spacing:6.960000pt;}
.ws5c{word-spacing:6.997333pt;}
.ws125{word-spacing:7.018667pt;}
.wsf{word-spacing:7.040000pt;}
.ws11{word-spacing:7.082667pt;}
.ws7c{word-spacing:7.093333pt;}
.ws126{word-spacing:7.205333pt;}
.wse0{word-spacing:7.344000pt;}
.ws3a{word-spacing:7.392000pt;}
.ws8c{word-spacing:7.424000pt;}
.wsec{word-spacing:7.488000pt;}
.wsff{word-spacing:7.690667pt;}
.ws8f{word-spacing:7.722667pt;}
.ws67{word-spacing:7.765333pt;}
.wsdc{word-spacing:7.776000pt;}
.ws7d{word-spacing:7.802667pt;}
.ws2e{word-spacing:7.824000pt;}
.ws10f{word-spacing:7.840000pt;}
.ws58{word-spacing:7.936000pt;}
.ws43{word-spacing:8.064000pt;}
.wsa4{word-spacing:8.106667pt;}
.wsfd{word-spacing:8.138667pt;}
.ws34{word-spacing:8.160000pt;}
.ws110{word-spacing:8.213333pt;}
.ws7e{word-spacing:8.288000pt;}
.wsa9{word-spacing:8.362667pt;}
.ws14b{word-spacing:8.400000pt;}
.wsee{word-spacing:8.496000pt;}
.ws142{word-spacing:8.586667pt;}
.ws116{word-spacing:8.624000pt;}
.wsce{word-spacing:8.640000pt;}
.wsb6{word-spacing:8.688000pt;}
.ws138{word-spacing:8.773333pt;}
.ws2f{word-spacing:8.832000pt;}
.wsa5{word-spacing:8.874667pt;}
.wsc{word-spacing:8.885333pt;}
.ws44{word-spacing:8.917333pt;}
.wsae{word-spacing:8.928000pt;}
.ws9e{word-spacing:9.002667pt;}
.wsd2{word-spacing:9.072000pt;}
.ws5e{word-spacing:9.088000pt;}
.wsda{word-spacing:9.216000pt;}
.ws127{word-spacing:9.221333pt;}
.ws24{word-spacing:9.408000pt;}
.ws6a{word-spacing:9.429333pt;}
.ws7b{word-spacing:9.557333pt;}
.ws84{word-spacing:9.600000pt;}
.ws4d{word-spacing:9.642667pt;}
.ws131{word-spacing:9.669333pt;}
.wsef{word-spacing:9.936000pt;}
.ws109{word-spacing:9.968000pt;}
.wsc4{word-spacing:10.032000pt;}
.ws121{word-spacing:10.192000pt;}
.ws106{word-spacing:10.266667pt;}
.wsdf{word-spacing:10.272000pt;}
.wsf8{word-spacing:10.416000pt;}
.wse{word-spacing:10.453333pt;}
.ws117{word-spacing:10.490667pt;}
.ws119{word-spacing:10.789333pt;}
.wse2{word-spacing:10.800000pt;}
.ws4b{word-spacing:10.837333pt;}
.ws72{word-spacing:10.938667pt;}
.ws9b{word-spacing:10.965333pt;}
.wsd9{word-spacing:10.992000pt;}
.ws25{word-spacing:11.040000pt;}
.wsb4{word-spacing:11.088000pt;}
.ws8b{word-spacing:11.264000pt;}
.wsea{word-spacing:11.280000pt;}
.ws107{word-spacing:11.312000pt;}
.ws90{word-spacing:11.392000pt;}
.wscc{word-spacing:11.424000pt;}
.ws60{word-spacing:11.434667pt;}
.ws63{word-spacing:11.477333pt;}
.wsad{word-spacing:11.520000pt;}
.wse6{word-spacing:11.616000pt;}
.wsa0{word-spacing:11.648000pt;}
.wsab{word-spacing:11.712000pt;}
.wsc3{word-spacing:11.760000pt;}
.ws71{word-spacing:11.834667pt;}
.wscd{word-spacing:11.856000pt;}
.ws10d{word-spacing:12.021333pt;}
.ws9d{word-spacing:12.373333pt;}
.wsed{word-spacing:12.768000pt;}
.wscb{word-spacing:13.056000pt;}
.wsf2{word-spacing:13.488000pt;}
.wsf0{word-spacing:13.872000pt;}
.ws10a{word-spacing:13.888000pt;}
.ws40{word-spacing:13.909333pt;}
.ws124{word-spacing:14.074667pt;}
.wsd7{word-spacing:14.208000pt;}
.ws7f{word-spacing:14.400000pt;}
.ws56{word-spacing:14.890667pt;}
.ws65{word-spacing:15.018667pt;}
.wsc9{word-spacing:15.024000pt;}
.ws66{word-spacing:15.104000pt;}
.ws80{word-spacing:15.120000pt;}
.wsd4{word-spacing:15.264000pt;}
.ws144{word-spacing:15.306667pt;}
.wsca{word-spacing:15.408000pt;}
.ws140{word-spacing:15.568000pt;}
.ws120{word-spacing:15.717333pt;}
.wsaa{word-spacing:15.888000pt;}
.ws139{word-spacing:16.090667pt;}
.wsf3{word-spacing:16.272000pt;}
.wsb3{word-spacing:16.320000pt;}
.ws2c{word-spacing:16.368000pt;}
.wsc5{word-spacing:16.560000pt;}
.ws62{word-spacing:17.109333pt;}
.ws132{word-spacing:17.285333pt;}
.ws39{word-spacing:17.568000pt;}
.ws4e{word-spacing:18.048000pt;}
.wsa1{word-spacing:18.133333pt;}
.ws64{word-spacing:18.176000pt;}
.ws3f{word-spacing:18.218667pt;}
.ws51{word-spacing:18.517333pt;}
.wsdd{word-spacing:18.672000pt;}
.ws143{word-spacing:18.741333pt;}
.wsa7{word-spacing:18.858667pt;}
.wse5{word-spacing:19.152000pt;}
.ws83{word-spacing:20.016000pt;}
.ws6c{word-spacing:20.272000pt;}
.wsaf{word-spacing:20.784000pt;}
.ws13e{word-spacing:21.093333pt;}
.ws5d{word-spacing:21.120000pt;}
.ws52{word-spacing:21.888000pt;}
.ws135{word-spacing:21.952000pt;}
.wsde{word-spacing:22.176000pt;}
.ws61{word-spacing:22.997333pt;}
.wsfa{word-spacing:23.632000pt;}
.ws136{word-spacing:23.893333pt;}
.ws6f{word-spacing:24.042667pt;}
.ws11b{word-spacing:24.341333pt;}
.wsac{word-spacing:24.384000pt;}
.ws23{word-spacing:24.720000pt;}
.ws13d{word-spacing:25.349333pt;}
.ws4f{word-spacing:26.581333pt;}
.ws50{word-spacing:28.757333pt;}
.ws11c{word-spacing:31.210667pt;}
.ws6b{word-spacing:31.397333pt;}
.wsf1{word-spacing:33.792000pt;}
._0{margin-left:-13.696000pt;}
._2{margin-left:-9.344000pt;}
._16{margin-left:-8.409600pt;}
._14{margin-left:-7.513600pt;}
._1{margin-left:-5.120000pt;}
._19{margin-left:-4.224000pt;}
._5{margin-left:-3.264000pt;}
._b{margin-left:-1.946240pt;}
._6{margin-left:-1.052800pt;}
._4{width:1.152000pt;}
._7{width:2.098133pt;}
._3{width:3.059200pt;}
._c{width:4.241067pt;}
._e{width:5.529600pt;}
._a{width:7.040000pt;}
._d{width:8.608640pt;}
._11{width:9.818240pt;}
._9{width:10.937600pt;}
._12{width:12.040533pt;}
._10{width:13.917867pt;}
._15{width:15.014400pt;}
._1b{width:16.019200pt;}
._13{width:17.446400pt;}
._f{width:18.504533pt;}
._17{width:20.595733pt;}
._18{width:24.902933pt;}
._1a{width:34.113280pt;}
._8{width:433.920000pt;}
.fs6{font-size:21.653333pt;}
.fs9{font-size:27.840000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:63.838267pt;}
.y49{bottom:76.796267pt;}
.y3e{bottom:110.378133pt;}
.y47{bottom:110.911333pt;}
.yd9{bottom:111.633733pt;}
.y90{bottom:111.667600pt;}
.yd4{bottom:111.738267pt;}
.y15e{bottom:113.636933pt;}
.y11a{bottom:113.903467pt;}
.y5{bottom:113.975733pt;}
.y46{bottom:123.711333pt;}
.y3d{bottom:124.778133pt;}
.y15d{bottom:124.836933pt;}
.yd3{bottom:125.610267pt;}
.y8f{bottom:125.803600pt;}
.yd8{bottom:126.033733pt;}
.y119{bottom:128.303467pt;}
.y15c{bottom:136.036933pt;}
.y4{bottom:136.487733pt;}
.y45{bottom:136.511333pt;}
.y3c{bottom:139.178133pt;}
.yd2{bottom:139.482267pt;}
.y8e{bottom:139.939600pt;}
.yd7{bottom:140.433733pt;}
.y118{bottom:142.703467pt;}
.y15b{bottom:147.236933pt;}
.y44{bottom:149.311333pt;}
.yd1{bottom:153.354267pt;}
.y3b{bottom:153.578133pt;}
.y8d{bottom:154.075600pt;}
.yd6{bottom:154.833733pt;}
.y15a{bottom:158.436933pt;}
.y43{bottom:162.111333pt;}
.yd0{bottom:167.226267pt;}
.y3a{bottom:167.978133pt;}
.y8c{bottom:168.211600pt;}
.y159{bottom:169.636933pt;}
.y117{bottom:171.503600pt;}
.y42{bottom:174.911333pt;}
.y158{bottom:180.836933pt;}
.ycf{bottom:181.098267pt;}
.y8b{bottom:182.347600pt;}
.y39{bottom:182.378133pt;}
.y41{bottom:187.711333pt;}
.ydf{bottom:191.922267pt;}
.y157{bottom:192.036933pt;}
.yce{bottom:194.970267pt;}
.y8a{bottom:196.483600pt;}
.y38{bottom:196.778133pt;}
.yde{bottom:203.122267pt;}
.y156{bottom:203.236933pt;}
.y116{bottom:205.230267pt;}
.ycd{bottom:208.868933pt;}
.y89{bottom:210.616933pt;}
.y37{bottom:211.178133pt;}
.y40{bottom:213.986133pt;}
.ydd{bottom:214.322267pt;}
.y155{bottom:214.436800pt;}
.y115{bottom:219.546267pt;}
.ycc{bottom:221.668933pt;}
.y88{bottom:221.816933pt;}
.ydc{bottom:225.522267pt;}
.y36{bottom:225.578133pt;}
.y154{bottom:225.636933pt;}
.y3f{bottom:227.450133pt;}
.y87{bottom:233.016933pt;}
.y114{bottom:233.862267pt;}
.ycb{bottom:234.468933pt;}
.ydb{bottom:236.722267pt;}
.y153{bottom:236.836933pt;}
.y35{bottom:239.978133pt;}
.y86{bottom:244.216933pt;}
.yca{bottom:247.268933pt;}
.yda{bottom:247.922267pt;}
.y152{bottom:248.036933pt;}
.y113{bottom:248.178267pt;}
.y34{bottom:254.378133pt;}
.y85{bottom:255.416933pt;}
.y151{bottom:259.236933pt;}
.yc9{bottom:260.068933pt;}
.y112{bottom:262.494267pt;}
.y84{bottom:266.616933pt;}
.y33{bottom:268.778133pt;}
.y150{bottom:270.436933pt;}
.yc8{bottom:272.730267pt;}
.y111{bottom:276.810267pt;}
.y83{bottom:277.816933pt;}
.y14f{bottom:281.636933pt;}
.y32{bottom:283.178133pt;}
.yc7{bottom:285.391600pt;}
.y82{bottom:289.016933pt;}
.y110{bottom:291.126267pt;}
.y14e{bottom:292.836933pt;}
.y31{bottom:297.578133pt;}
.yc6{bottom:298.052933pt;}
.y81{bottom:300.216933pt;}
.y14d{bottom:304.036933pt;}
.y10f{bottom:305.442267pt;}
.yc5{bottom:310.714267pt;}
.y80{bottom:311.416933pt;}
.y30{bottom:311.978133pt;}
.y14c{bottom:315.236933pt;}
.y10e{bottom:319.758267pt;}
.y7f{bottom:322.616933pt;}
.yc4{bottom:323.375600pt;}
.y2f{bottom:326.378133pt;}
.y14b{bottom:326.436933pt;}
.y7e{bottom:333.816933pt;}
.y10d{bottom:334.074267pt;}
.yc3{bottom:336.036933pt;}
.y14a{bottom:337.636933pt;}
.y2e{bottom:340.778133pt;}
.y7d{bottom:345.016933pt;}
.y10c{bottom:348.390267pt;}
.yc2{bottom:348.836933pt;}
.y2d{bottom:355.178133pt;}
.y7c{bottom:356.216933pt;}
.y149{bottom:360.036933pt;}
.yc1{bottom:361.636933pt;}
.y10b{bottom:362.706267pt;}
.y7b{bottom:367.416933pt;}
.y2c{bottom:369.578133pt;}
.y2{bottom:369.881733pt;}
.y148{bottom:371.236933pt;}
.yc0{bottom:374.436933pt;}
.y10a{bottom:377.022267pt;}
.y7a{bottom:378.616933pt;}
.y147{bottom:382.436933pt;}
.y2b{bottom:383.978133pt;}
.ybf{bottom:387.236933pt;}
.y1e9{bottom:388.982800pt;}
.y1b6{bottom:389.096933pt;}
.y79{bottom:389.816933pt;}
.y109{bottom:391.338267pt;}
.y146{bottom:393.636933pt;}
.y2a{bottom:398.378133pt;}
.ybe{bottom:400.036933pt;}
.y1e8{bottom:400.182800pt;}
.y1b5{bottom:400.296933pt;}
.y78{bottom:401.016933pt;}
.y145{bottom:404.836933pt;}
.y108{bottom:405.654267pt;}
.y1e7{bottom:411.382800pt;}
.y1b4{bottom:411.496933pt;}
.y77{bottom:412.216933pt;}
.y29{bottom:412.778133pt;}
.ybd{bottom:412.836933pt;}
.y1{bottom:414.905733pt;}
.y144{bottom:416.036933pt;}
.y107{bottom:419.970267pt;}
.y1e6{bottom:422.582800pt;}
.y1b3{bottom:422.696933pt;}
.y76{bottom:423.416933pt;}
.ybc{bottom:425.636933pt;}
.y28{bottom:427.178133pt;}
.y143{bottom:427.236933pt;}
.y1e5{bottom:433.782800pt;}
.y1b2{bottom:433.896933pt;}
.y106{bottom:434.286267pt;}
.y75{bottom:434.616933pt;}
.ybb{bottom:438.436933pt;}
.y27{bottom:441.578133pt;}
.y1e4{bottom:444.982800pt;}
.y1b1{bottom:445.096933pt;}
.y74{bottom:445.816933pt;}
.y105{bottom:448.602267pt;}
.y142{bottom:449.636933pt;}
.yba{bottom:451.236933pt;}
.y26{bottom:455.978133pt;}
.y1e3{bottom:456.182800pt;}
.y1b0{bottom:456.296933pt;}
.y73{bottom:457.016933pt;}
.y141{bottom:460.836933pt;}
.y104{bottom:462.918267pt;}
.yb9{bottom:464.036933pt;}
.y1e2{bottom:467.382800pt;}
.y1af{bottom:467.496933pt;}
.y72{bottom:468.216933pt;}
.y140{bottom:472.036933pt;}
.yb8{bottom:476.836933pt;}
.y103{bottom:477.234267pt;}
.y1e1{bottom:478.582800pt;}
.y1ae{bottom:478.696933pt;}
.y71{bottom:479.416933pt;}
.y13f{bottom:483.236933pt;}
.yb7{bottom:489.636933pt;}
.y1e0{bottom:489.782800pt;}
.y1ad{bottom:489.896933pt;}
.y102{bottom:491.550267pt;}
.y70{bottom:492.216933pt;}
.y13e{bottom:494.436800pt;}
.y25{bottom:495.403600pt;}
.y1df{bottom:500.982800pt;}
.y1ac{bottom:501.096933pt;}
.yb6{bottom:502.436933pt;}
.y6f{bottom:505.016933pt;}
.y13d{bottom:505.636800pt;}
.y101{bottom:505.866267pt;}
.y1de{bottom:512.182800pt;}
.y1ab{bottom:512.296933pt;}
.yb5{bottom:515.236933pt;}
.y13c{bottom:516.836800pt;}
.y6e{bottom:517.816933pt;}
.y100{bottom:520.182267pt;}
.y24{bottom:520.470267pt;}
.y1dd{bottom:523.382800pt;}
.y1aa{bottom:523.496933pt;}
.y13b{bottom:528.036800pt;}
.yb4{bottom:528.036933pt;}
.y6d{bottom:530.616933pt;}
.y23{bottom:533.003600pt;}
.yff{bottom:534.498267pt;}
.y1dc{bottom:534.582800pt;}
.y1a9{bottom:534.696933pt;}
.y13a{bottom:539.236800pt;}
.yb3{bottom:540.836933pt;}
.y6c{bottom:543.416933pt;}
.y22{bottom:545.536933pt;}
.y1db{bottom:545.782800pt;}
.y1a8{bottom:545.896933pt;}
.yfe{bottom:548.814267pt;}
.y139{bottom:550.436800pt;}
.yb2{bottom:553.636933pt;}
.y6b{bottom:556.216933pt;}
.y1da{bottom:556.982800pt;}
.y1a7{bottom:557.096933pt;}
.y21{bottom:558.070267pt;}
.y138{bottom:561.636800pt;}
.yfd{bottom:563.130267pt;}
.yb1{bottom:566.436933pt;}
.y1d9{bottom:568.182800pt;}
.y1a6{bottom:568.296933pt;}
.y6a{bottom:569.016800pt;}
.y20{bottom:570.603600pt;}
.y137{bottom:572.836800pt;}
.yfc{bottom:577.446267pt;}
.y3{bottom:577.636000pt;}
.yb0{bottom:579.236933pt;}
.y1d8{bottom:579.382800pt;}
.y1a5{bottom:579.496933pt;}
.y69{bottom:581.816800pt;}
.y1f{bottom:583.136933pt;}
.y136{bottom:584.036800pt;}
.y1d7{bottom:590.582800pt;}
.y1a4{bottom:590.696933pt;}
.yfb{bottom:591.738267pt;}
.yaf{bottom:592.036800pt;}
.y68{bottom:594.616800pt;}
.y135{bottom:595.236800pt;}
.y1e{bottom:595.670267pt;}
.y1d6{bottom:601.782800pt;}
.y1a3{bottom:601.896933pt;}
.yae{bottom:604.836800pt;}
.yfa{bottom:606.030267pt;}
.y134{bottom:606.436800pt;}
.y67{bottom:607.416800pt;}
.y1d5{bottom:612.982800pt;}
.y1a2{bottom:613.096933pt;}
.yad{bottom:617.636800pt;}
.y66{bottom:620.216800pt;}
.yf9{bottom:620.322267pt;}
.y1d{bottom:622.603600pt;}
.y1d4{bottom:624.182800pt;}
.y1a1{bottom:624.296933pt;}
.y133{bottom:628.836800pt;}
.yac{bottom:630.436800pt;}
.y65{bottom:633.016800pt;}
.yf8{bottom:634.614267pt;}
.y1d3{bottom:635.382667pt;}
.y1a0{bottom:635.496933pt;}
.y1c{bottom:636.883600pt;}
.y132{bottom:640.036800pt;}
.yab{bottom:643.236800pt;}
.y64{bottom:645.816800pt;}
.y1d2{bottom:646.582667pt;}
.y19f{bottom:646.696933pt;}
.y1b{bottom:648.083600pt;}
.yf7{bottom:648.906267pt;}
.y131{bottom:651.236800pt;}
.yaa{bottom:656.036800pt;}
.y1d1{bottom:657.782667pt;}
.y19e{bottom:657.896933pt;}
.y63{bottom:658.616800pt;}
.y130{bottom:662.436800pt;}
.yf6{bottom:663.198267pt;}
.ya9{bottom:668.836800pt;}
.y1d0{bottom:668.982667pt;}
.y19d{bottom:669.096933pt;}
.y1a{bottom:670.603600pt;}
.y62{bottom:671.416800pt;}
.y12f{bottom:673.636800pt;}
.yf5{bottom:677.490267pt;}
.y1cf{bottom:680.182667pt;}
.y19c{bottom:680.296933pt;}
.ya8{bottom:681.636800pt;}
.y61{bottom:684.216800pt;}
.y12e{bottom:684.836800pt;}
.y1ce{bottom:691.382667pt;}
.y19b{bottom:691.496933pt;}
.yf4{bottom:691.782267pt;}
.ya7{bottom:694.436800pt;}
.y12d{bottom:696.036800pt;}
.y60{bottom:697.016800pt;}
.y19{bottom:699.403600pt;}
.y1cd{bottom:702.582667pt;}
.y19a{bottom:702.696933pt;}
.yf3{bottom:706.074267pt;}
.ya6{bottom:707.236800pt;}
.y5f{bottom:709.816800pt;}
.y1cc{bottom:713.782667pt;}
.y18{bottom:713.803600pt;}
.y199{bottom:713.896933pt;}
.y12c{bottom:718.436800pt;}
.ya5{bottom:720.036800pt;}
.yf2{bottom:720.366267pt;}
.y5e{bottom:722.616800pt;}
.y1cb{bottom:724.982667pt;}
.y198{bottom:725.096933pt;}
.y12b{bottom:729.636800pt;}
.ya4{bottom:732.836800pt;}
.yf1{bottom:734.658267pt;}
.y5d{bottom:735.416800pt;}
.y1ca{bottom:736.182667pt;}
.y197{bottom:736.296933pt;}
.y12a{bottom:740.836800pt;}
.y17{bottom:742.603600pt;}
.ya3{bottom:745.636800pt;}
.y1c9{bottom:747.382667pt;}
.y196{bottom:747.496933pt;}
.y5c{bottom:748.216800pt;}
.yf0{bottom:748.950267pt;}
.y182{bottom:750.925867pt;}
.y129{bottom:752.036800pt;}
.ya2{bottom:758.436800pt;}
.y1c8{bottom:758.582667pt;}
.y195{bottom:758.696933pt;}
.y5b{bottom:761.016800pt;}
.y181{bottom:761.592533pt;}
.y128{bottom:763.236800pt;}
.yef{bottom:763.242267pt;}
.y16{bottom:767.670267pt;}
.y1c7{bottom:769.782667pt;}
.y194{bottom:769.896933pt;}
.ya1{bottom:771.236800pt;}
.y180{bottom:772.259200pt;}
.y5a{bottom:773.816800pt;}
.y127{bottom:774.436800pt;}
.yee{bottom:777.534267pt;}
.y15{bottom:780.203600pt;}
.y1c6{bottom:780.982667pt;}
.y193{bottom:781.096933pt;}
.ya0{bottom:784.036800pt;}
.y59{bottom:786.616800pt;}
.yed{bottom:791.826267pt;}
.y1c5{bottom:792.182667pt;}
.y192{bottom:792.296933pt;}
.y14{bottom:792.736933pt;}
.y9f{bottom:796.836800pt;}
.y58{bottom:799.416800pt;}
.y126{bottom:800.036800pt;}
.y1c4{bottom:803.382667pt;}
.y191{bottom:803.496933pt;}
.y13{bottom:805.270267pt;}
.yec{bottom:806.118267pt;}
.y16f{bottom:808.910133pt;}
.y17f{bottom:808.919467pt;}
.y9e{bottom:809.636800pt;}
.y57{bottom:812.216800pt;}
.y1c3{bottom:814.582667pt;}
.y190{bottom:814.696933pt;}
.y12{bottom:817.803600pt;}
.y16e{bottom:819.578133pt;}
.y17e{bottom:820.296800pt;}
.yeb{bottom:820.410267pt;}
.y9d{bottom:822.436800pt;}
.y56{bottom:825.016800pt;}
.y1c2{bottom:825.782667pt;}
.y18f{bottom:825.896933pt;}
.y16d{bottom:830.246133pt;}
.y17d{bottom:831.674133pt;}
.y125{bottom:833.639467pt;}
.yea{bottom:834.716933pt;}
.y9c{bottom:835.236800pt;}
.y1c1{bottom:836.982667pt;}
.y18e{bottom:837.096933pt;}
.y55{bottom:837.816800pt;}
.y16c{bottom:840.914133pt;}
.y17c{bottom:843.051467pt;}
.y11{bottom:844.737067pt;}
.y9b{bottom:848.036800pt;}
.y124{bottom:848.039467pt;}
.y1c0{bottom:848.182667pt;}
.y18d{bottom:848.296933pt;}
.ye9{bottom:849.008933pt;}
.y54{bottom:850.616800pt;}
.y16b{bottom:851.582133pt;}
.y17b{bottom:854.428800pt;}
.y10{bottom:859.017067pt;}
.y1bf{bottom:859.382667pt;}
.y18c{bottom:859.496933pt;}
.y9a{bottom:860.836800pt;}
.y16a{bottom:862.250133pt;}
.y123{bottom:862.439467pt;}
.ye8{bottom:863.300933pt;}
.y53{bottom:863.416800pt;}
.y17a{bottom:865.806133pt;}
.yf{bottom:867.136933pt;}
.y1be{bottom:870.582667pt;}
.y18b{bottom:870.696933pt;}
.y169{bottom:872.918133pt;}
.y99{bottom:873.636800pt;}
.y52{bottom:876.216800pt;}
.y122{bottom:876.839467pt;}
.y179{bottom:877.183467pt;}
.ye7{bottom:877.592933pt;}
.ye{bottom:881.416933pt;}
.y1bd{bottom:881.782667pt;}
.y18a{bottom:881.896933pt;}
.y168{bottom:883.586133pt;}
.y98{bottom:886.436800pt;}
.y178{bottom:888.560800pt;}
.y51{bottom:889.016800pt;}
.y121{bottom:891.239467pt;}
.ye6{bottom:891.884933pt;}
.y1bc{bottom:892.984933pt;}
.y189{bottom:893.096933pt;}
.y167{bottom:894.254133pt;}
.y97{bottom:899.236800pt;}
.y177{bottom:899.938133pt;}
.y50{bottom:901.816800pt;}
.y9{bottom:902.735733pt;}
.y1bb{bottom:904.184933pt;}
.y188{bottom:904.296933pt;}
.y166{bottom:904.922133pt;}
.y120{bottom:905.639467pt;}
.ye5{bottom:906.176933pt;}
.yd{bottom:908.736933pt;}
.y176{bottom:911.315467pt;}
.y96{bottom:912.036800pt;}
.y4f{bottom:914.616800pt;}
.y1ba{bottom:915.384933pt;}
.y187{bottom:915.496933pt;}
.y165{bottom:915.590133pt;}
.y11f{bottom:920.039467pt;}
.ye4{bottom:920.468933pt;}
.y8{bottom:921.402400pt;}
.y175{bottom:922.692800pt;}
.y95{bottom:924.836800pt;}
.y164{bottom:926.258133pt;}
.y1b9{bottom:926.584933pt;}
.y186{bottom:926.696933pt;}
.y4e{bottom:927.416800pt;}
.y174{bottom:934.070133pt;}
.y11e{bottom:934.439467pt;}
.ye3{bottom:934.760933pt;}
.y163{bottom:936.926133pt;}
.y94{bottom:937.636800pt;}
.y1b8{bottom:937.784933pt;}
.y185{bottom:937.896933pt;}
.y4d{bottom:940.216800pt;}
.y173{bottom:945.447467pt;}
.y162{bottom:947.594133pt;}
.y11d{bottom:948.839467pt;}
.y1b7{bottom:948.984933pt;}
.ye2{bottom:949.052933pt;}
.y184{bottom:949.096933pt;}
.yc{bottom:950.336933pt;}
.y93{bottom:950.436800pt;}
.y4c{bottom:953.016800pt;}
.y7{bottom:954.069067pt;}
.y172{bottom:956.824800pt;}
.y161{bottom:958.262133pt;}
.y92{bottom:963.223600pt;}
.y11c{bottom:963.239467pt;}
.ye1{bottom:963.344933pt;}
.y4b{bottom:965.816800pt;}
.y171{bottom:968.202133pt;}
.y160{bottom:968.930133pt;}
.y6{bottom:972.735733pt;}
.yb{bottom:972.736933pt;}
.y183{bottom:974.696933pt;}
.y91{bottom:977.623600pt;}
.ye0{bottom:977.636933pt;}
.y11b{bottom:977.639467pt;}
.y4a{bottom:978.616800pt;}
.y170{bottom:979.579467pt;}
.y15f{bottom:979.596800pt;}
.ya{bottom:1022.991200pt;}
.yd5{bottom:1023.971200pt;}
.h7{height:19.450667pt;}
.h8{height:31.770667pt;}
.h9{height:36.309333pt;}
.ha{height:40.560000pt;}
.h5{height:40.848000pt;}
.hb{height:44.800000pt;}
.h6{height:54.080000pt;}
.h4{height:63.093333pt;}
.h3{height:81.120000pt;}
.h2{height:108.928000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.488133pt;}
.xa{left:98.106400pt;}
.x2{left:108.699067pt;}
.xc{left:118.288133pt;}
.x1{left:120.944933pt;}
.xd{left:202.479067pt;}
.xb{left:226.232400pt;}
.x5{left:239.540933pt;}
.x7{left:242.154267pt;}
.x13{left:267.034667pt;}
.xe{left:275.367067pt;}
.x8{left:286.954267pt;}
.x6{left:293.524933pt;}
.x17{left:308.035867pt;}
.x3{left:340.471600pt;}
.x4{left:389.882267pt;}
.x10{left:406.303200pt;}
.x11{left:426.487200pt;}
.xf{left:430.099200pt;}
.x16{left:458.288000pt;}
.x12{left:526.819200pt;}
.x14{left:551.792000pt;}
.x15{left:560.282667pt;}
}




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