
    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_a2770ea39c79a3692475bf8c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_fc9ce196d10efcf117f5f688.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958630;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_49993b6367f59e15052eff37.woff')format("woff");}.ff3{font-family:ff3;line-height:1.022461;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_c6dc694abbdd9553f20377c5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.031738;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_f0b51608ba90c4a32c640c59.woff')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_7471905a8611945afb0dc7a3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_2f5e256cb0203b6c5a4b5eae.woff')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_d9d1a94c3a18b16a7086edc3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.031738;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_7772f97cc37e526e9f8e2c12.woff')format("woff");}.ff9{font-family:ff9;line-height:0.976118;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_11e3e46010a7fea60e38fc59.woff')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_663b047f4b8a05abccaf611d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.961048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_463f937c1b05c5050bb24ebc.woff')format("woff");}.ffc{font-family:ffc;line-height:0.964844;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5318450fc93284dd7f4d0ec5.woff')format("woff");}.ffd{font-family:ffd;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_cfc5c4425e0031a7eb65a1c1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.770020;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.986000px;}
.v1{vertical-align:21.978000px;}
.v4{vertical-align:27.000000px;}
.v2{vertical-align:37.009800px;}
.ls15{letter-spacing:-7.560000px;}
.ls14{letter-spacing:-3.564000px;}
.lsb{letter-spacing:-2.040000px;}
.ls2d{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-1.020000px;}
.ls9{letter-spacing:-0.918000px;}
.ls8{letter-spacing:-0.900000px;}
.ls10{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.714000px;}
.ls7{letter-spacing:-0.691200px;}
.ls29{letter-spacing:-0.630000px;}
.ls2b{letter-spacing:-0.600000px;}
.ls2c{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.324000px;}
.lsf{letter-spacing:-0.300000px;}
.ls4{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.001200px;}
.ls1{letter-spacing:0.012000px;}
.ls2a{letter-spacing:0.013200px;}
.lse{letter-spacing:0.013800px;}
.lsc{letter-spacing:0.015000px;}
.lsd{letter-spacing:0.019200px;}
.ls3{letter-spacing:0.025800px;}
.ls2{letter-spacing:0.054000px;}
.ls16{letter-spacing:0.588000px;}
.ls11{letter-spacing:0.600000px;}
.ls17{letter-spacing:0.615000px;}
.ls2e{letter-spacing:0.780000px;}
.lsa{letter-spacing:1.200000px;}
.ls0{letter-spacing:43.181364px;}
.ls1f{letter-spacing:76.733022px;}
.ls27{letter-spacing:100.677798px;}
.ls25{letter-spacing:115.781646px;}
.ls28{letter-spacing:126.060702px;}
.ls26{letter-spacing:127.224846px;}
.ls1a{letter-spacing:129.676554px;}
.ls1c{letter-spacing:142.029822px;}
.ls1b{letter-spacing:156.282222px;}
.ls23{letter-spacing:157.596414px;}
.ls1d{letter-spacing:171.920496px;}
.ls21{letter-spacing:200.971758px;}
.ls22{letter-spacing:237.773154px;}
.ls20{letter-spacing:238.388220px;}
.ls18{letter-spacing:238.568616px;}
.ls24{letter-spacing:243.590502px;}
.ls1e{letter-spacing:273.231420px;}
.ls12{letter-spacing:731.607600px;}
.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;}
}
.ws4{word-spacing:-17.928000px;}
.wse8{word-spacing:-16.434000px;}
.wse7{word-spacing:-15.900000px;}
.ws68{word-spacing:-15.540000px;}
.wsa7{word-spacing:-15.480000px;}
.ws88{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws4a{word-spacing:-14.880000px;}
.ws59{word-spacing:-14.820000px;}
.ws2e{word-spacing:-14.700000px;}
.ws5a{word-spacing:-14.100000px;}
.ws5{word-spacing:-13.800000px;}
.wscf{word-spacing:-13.392000px;}
.ws4b{word-spacing:-13.230000px;}
.ws7e{word-spacing:-13.122000px;}
.ws7d{word-spacing:-12.906000px;}
.wsf7{word-spacing:-12.852000px;}
.wsf6{word-spacing:-12.690000px;}
.ws105{word-spacing:-12.312000px;}
.ws9{word-spacing:-12.150000px;}
.ws6{word-spacing:-11.772000px;}
.ws8{word-spacing:-11.232000px;}
.ws1{word-spacing:-10.896000px;}
.ws7{word-spacing:-10.854000px;}
.ws2d{word-spacing:-10.800000px;}
.wsa{word-spacing:-10.464000px;}
.wsaa{word-spacing:-10.416000px;}
.wsd8{word-spacing:-10.290000px;}
.ws7f{word-spacing:-9.882000px;}
.wsa9{word-spacing:-9.828000px;}
.ws2{word-spacing:-9.417600px;}
.ws76{word-spacing:-6.072528px;}
.ws80{word-spacing:-5.886000px;}
.wse3{word-spacing:-5.760000px;}
.ws65{word-spacing:-4.980000px;}
.ws81{word-spacing:-3.726000px;}
.ws7b{word-spacing:-3.600000px;}
.ws111{word-spacing:-3.510000px;}
.ws82{word-spacing:-3.348000px;}
.ws83{word-spacing:-3.294000px;}
.ws67{word-spacing:-3.180000px;}
.wsea{word-spacing:-3.060000px;}
.ws103{word-spacing:-3.024000px;}
.wseb{word-spacing:-3.000000px;}
.ws113{word-spacing:-2.970000px;}
.ws74{word-spacing:-2.940000px;}
.ws107{word-spacing:-2.916000px;}
.ws64{word-spacing:-2.820000px;}
.wse1{word-spacing:-2.760000px;}
.wsff{word-spacing:-2.700000px;}
.ws8a{word-spacing:-2.640000px;}
.wsfc{word-spacing:-2.592000px;}
.wsdd{word-spacing:-2.580000px;}
.wsfd{word-spacing:-2.538000px;}
.ws5e{word-spacing:-2.460000px;}
.wsc9{word-spacing:-2.400000px;}
.ws10c{word-spacing:-2.376000px;}
.wse2{word-spacing:-2.340000px;}
.wsde{word-spacing:-2.280000px;}
.ws54{word-spacing:-2.160000px;}
.ws4f{word-spacing:-2.100000px;}
.ws10{word-spacing:-1.998000px;}
.ws6e{word-spacing:-1.920000px;}
.ws100{word-spacing:-1.782000px;}
.ws6b{word-spacing:-1.740000px;}
.wscd{word-spacing:-1.674000px;}
.wsce{word-spacing:-1.620000px;}
.ws1d{word-spacing:-1.566000px;}
.ws2f{word-spacing:-1.560000px;}
.ws1e{word-spacing:-1.512000px;}
.ws29{word-spacing:-1.440000px;}
.ws35{word-spacing:-1.380000px;}
.ws102{word-spacing:-1.350000px;}
.ws91{word-spacing:-1.320000px;}
.wse6{word-spacing:-1.242000px;}
.ws79{word-spacing:-1.200000px;}
.ws44{word-spacing:-1.140000px;}
.ws36{word-spacing:-1.080000px;}
.ws2b{word-spacing:-1.026000px;}
.wsf2{word-spacing:-0.960000px;}
.ws98{word-spacing:-0.840000px;}
.ws5d{word-spacing:-0.780000px;}
.ws23{word-spacing:-0.756000px;}
.ws70{word-spacing:-0.600000px;}
.ws106{word-spacing:-0.540000px;}
.ws6a{word-spacing:-0.480000px;}
.wse9{word-spacing:-0.360000px;}
.wsc{word-spacing:-0.306000px;}
.wsd{word-spacing:-0.216000px;}
.ws42{word-spacing:-0.180000px;}
.ws5f{word-spacing:-0.120000px;}
.wsc5{word-spacing:-0.060000px;}
.wsf{word-spacing:-0.054000px;}
.wsb{word-spacing:0.000000px;}
.wsfb{word-spacing:0.054000px;}
.ws97{word-spacing:0.120000px;}
.ws5b{word-spacing:0.300000px;}
.ws22{word-spacing:0.324000px;}
.ws61{word-spacing:0.360000px;}
.ws31{word-spacing:0.420000px;}
.wsf1{word-spacing:0.480000px;}
.ws38{word-spacing:0.540000px;}
.wsc8{word-spacing:0.600000px;}
.wse{word-spacing:0.691200px;}
.ws66{word-spacing:0.720000px;}
.wse5{word-spacing:0.756000px;}
.ws84{word-spacing:0.780000px;}
.ws1f{word-spacing:0.810000px;}
.wsc0{word-spacing:0.840000px;}
.ws27{word-spacing:0.900000px;}
.ws2c{word-spacing:0.918000px;}
.ws3e{word-spacing:0.960000px;}
.ws6f{word-spacing:1.020000px;}
.ws112{word-spacing:1.080000px;}
.ws30{word-spacing:1.140000px;}
.wsf8{word-spacing:1.242000px;}
.ws43{word-spacing:1.260000px;}
.ws1c{word-spacing:1.296000px;}
.ws58{word-spacing:1.440000px;}
.wsdf{word-spacing:1.500000px;}
.wsf5{word-spacing:1.566000px;}
.ws10f{word-spacing:1.620000px;}
.ws73{word-spacing:1.680000px;}
.wsc4{word-spacing:1.740000px;}
.ws33{word-spacing:1.800000px;}
.ws10e{word-spacing:1.836000px;}
.ws34{word-spacing:1.860000px;}
.ws10d{word-spacing:1.890000px;}
.wscb{word-spacing:1.920000px;}
.wsca{word-spacing:1.980000px;}
.ws72{word-spacing:2.040000px;}
.ws4d{word-spacing:2.100000px;}
.ws108{word-spacing:2.106000px;}
.ws41{word-spacing:2.160000px;}
.ws56{word-spacing:2.220000px;}
.ws32{word-spacing:2.280000px;}
.ws69{word-spacing:2.340000px;}
.ws7a{word-spacing:2.520000px;}
.ws55{word-spacing:2.580000px;}
.ws9b{word-spacing:2.640000px;}
.ws4c{word-spacing:2.760000px;}
.ws95{word-spacing:2.820000px;}
.wsc1{word-spacing:2.940000px;}
.ws10a{word-spacing:2.970000px;}
.wsdc{word-spacing:3.000000px;}
.ws93{word-spacing:3.060000px;}
.ws85{word-spacing:3.120000px;}
.ws57{word-spacing:3.240000px;}
.wsf4{word-spacing:3.300000px;}
.ws21{word-spacing:3.348000px;}
.ws20{word-spacing:3.402000px;}
.ws62{word-spacing:3.420000px;}
.ws6c{word-spacing:3.480000px;}
.ws28{word-spacing:3.600000px;}
.ws87{word-spacing:3.720000px;}
.ws47{word-spacing:3.780000px;}
.ws40{word-spacing:3.840000px;}
.ws3f{word-spacing:3.900000px;}
.ws89{word-spacing:4.140000px;}
.wse4{word-spacing:4.500000px;}
.ws49{word-spacing:4.560000px;}
.ws10b{word-spacing:4.590000px;}
.ws24{word-spacing:4.644000px;}
.ws8e{word-spacing:4.740000px;}
.ws6d{word-spacing:4.800000px;}
.ws115{word-spacing:4.860000px;}
.ws2a{word-spacing:4.980000px;}
.ws1b{word-spacing:5.022000px;}
.ws99{word-spacing:5.040000px;}
.ws9a{word-spacing:5.100000px;}
.ws60{word-spacing:5.220000px;}
.ws104{word-spacing:5.238000px;}
.ws5c{word-spacing:5.280000px;}
.ws8d{word-spacing:5.340000px;}
.ws110{word-spacing:5.346000px;}
.ws63{word-spacing:5.400000px;}
.ws45{word-spacing:5.460000px;}
.ws53{word-spacing:5.580000px;}
.ws16{word-spacing:5.616000px;}
.ws86{word-spacing:5.640000px;}
.wscc{word-spacing:5.820000px;}
.wsfa{word-spacing:5.886000px;}
.wsf9{word-spacing:5.994000px;}
.wse0{word-spacing:6.120000px;}
.wsf3{word-spacing:6.180000px;}
.ws1a{word-spacing:6.318000px;}
.ws9c{word-spacing:6.360000px;}
.ws15{word-spacing:6.372000px;}
.ws71{word-spacing:6.420000px;}
.ws19{word-spacing:6.426000px;}
.ws14{word-spacing:6.480000px;}
.wsfe{word-spacing:6.696000px;}
.ws92{word-spacing:6.780000px;}
.ws109{word-spacing:6.804000px;}
.ws94{word-spacing:6.840000px;}
.ws13{word-spacing:6.858000px;}
.ws3c{word-spacing:6.900000px;}
.ws12{word-spacing:6.912000px;}
.wsc2{word-spacing:7.020000px;}
.wsc3{word-spacing:7.080000px;}
.ws11{word-spacing:7.128000px;}
.ws101{word-spacing:7.236000px;}
.ws51{word-spacing:7.320000px;}
.wsec{word-spacing:7.440000px;}
.ws18{word-spacing:7.452000px;}
.wsed{word-spacing:7.500000px;}
.ws17{word-spacing:7.560000px;}
.ws3b{word-spacing:7.620000px;}
.ws3a{word-spacing:7.740000px;}
.ws39{word-spacing:7.800000px;}
.wsf0{word-spacing:7.860000px;}
.ws7c{word-spacing:7.980000px;}
.wsdb{word-spacing:8.040000px;}
.ws48{word-spacing:8.100000px;}
.ws3d{word-spacing:8.340000px;}
.wsa1{word-spacing:8.460000px;}
.ws37{word-spacing:8.580000px;}
.ws96{word-spacing:8.640000px;}
.ws26{word-spacing:8.700000px;}
.wsc7{word-spacing:8.880000px;}
.wsc6{word-spacing:9.000000px;}
.ws8c{word-spacing:9.240000px;}
.ws8f{word-spacing:9.360000px;}
.wsee{word-spacing:9.840000px;}
.wsef{word-spacing:9.900000px;}
.ws25{word-spacing:9.960000px;}
.ws4e{word-spacing:10.200000px;}
.ws50{word-spacing:10.440000px;}
.ws8b{word-spacing:10.920000px;}
.ws9e{word-spacing:11.760000px;}
.ws9d{word-spacing:11.880000px;}
.ws52{word-spacing:12.600000px;}
.ws46{word-spacing:12.660000px;}
.ws90{word-spacing:13.260000px;}
.ws9f{word-spacing:13.560000px;}
.wsa0{word-spacing:13.680000px;}
.wsa5{word-spacing:15.180000px;}
.wsa6{word-spacing:15.300000px;}
.wsa2{word-spacing:18.780000px;}
.wsa4{word-spacing:18.960000px;}
.wsa3{word-spacing:19.140000px;}
.ws114{word-spacing:24.786000px;}
.ws0{word-spacing:33.651135px;}
.wsac{word-spacing:56.124600px;}
.wsd3{word-spacing:59.453400px;}
.wsd7{word-spacing:59.454000px;}
.wsd4{word-spacing:60.796800px;}
.wsd1{word-spacing:61.154400px;}
.wsd2{word-spacing:62.497800px;}
.wsbe{word-spacing:62.989200px;}
.wsd9{word-spacing:66.316200px;}
.wsda{word-spacing:71.143200px;}
.wsb6{word-spacing:74.801400px;}
.wsba{word-spacing:74.833200px;}
.wsbd{word-spacing:79.593000px;}
.wsb9{word-spacing:79.624200px;}
.wsb4{word-spacing:96.816000px;}
.wsbf{word-spacing:96.912000px;}
.wsbb{word-spacing:100.354800px;}
.wsab{word-spacing:100.384200px;}
.wsad{word-spacing:103.077000px;}
.wsb3{word-spacing:108.585600px;}
.wsb8{word-spacing:114.165600px;}
.wsb0{word-spacing:116.987400px;}
.wsb5{word-spacing:116.997600px;}
.wsbc{word-spacing:117.007800px;}
.wsd0{word-spacing:118.756800px;}
.wsb7{word-spacing:122.379000px;}
.wsae{word-spacing:134.306400px;}
.wsa8{word-spacing:144.982200px;}
.wsb2{word-spacing:189.496800px;}
.wsaf{word-spacing:198.021000px;}
.wsb1{word-spacing:199.948200px;}
.wsd6{word-spacing:404.622000px;}
.wsd5{word-spacing:428.676600px;}
.ws78{word-spacing:622.024800px;}
.ws75{word-spacing:697.578000px;}
.ws77{word-spacing:697.620000px;}
._8{margin-left:-10.552800px;}
._3f{margin-left:-8.533200px;}
._11{margin-left:-7.268400px;}
._2{margin-left:-5.824200px;}
._4{margin-left:-4.244400px;}
._1{margin-left:-2.518200px;}
._0{margin-left:-1.173000px;}
._3{width:1.058400px;}
._9{width:2.089200px;}
._6{width:3.218400px;}
._7{width:4.962600px;}
._a{width:6.857400px;}
._b{width:8.022000px;}
._c{width:9.360000px;}
._d{width:10.434000px;}
._f{width:11.478000px;}
._e{width:12.630000px;}
._12{width:13.632000px;}
._72{width:16.146000px;}
._10{width:18.834000px;}
._5{width:36.624000px;}
._71{width:43.131000px;}
._41{width:45.361200px;}
._42{width:53.256600px;}
._40{width:60.505200px;}
._6b{width:69.869400px;}
._69{width:71.212800px;}
._68{width:72.913800px;}
._6f{width:76.613400px;}
._55{width:79.233600px;}
._6d{width:81.529200px;}
._48{width:90.291600px;}
._51{width:95.560200px;}
._45{width:98.961000px;}
._5c{width:101.265000px;}
._64{width:104.832600px;}
._63{width:105.885000px;}
._60{width:107.273400px;}
._44{width:116.754000px;}
._5d{width:119.004600px;}
._4a{width:122.614800px;}
._43{width:128.646600px;}
._54{width:129.660600px;}
._62{width:130.915200px;}
._57{width:132.772800px;}
._49{width:135.972000px;}
._53{width:138.993000px;}
._46{width:141.506400px;}
._47{width:144.574800px;}
._58{width:148.242600px;}
._4b{width:153.279000px;}
._56{width:155.238000px;}
._52{width:156.832800px;}
._70{width:164.172600px;}
._4f{width:192.618000px;}
._5f{width:196.662600px;}
._4c{width:200.223600px;}
._4d{width:203.383800px;}
._5b{width:209.521800px;}
._50{width:218.014200px;}
._5a{width:229.983600px;}
._5e{width:231.661800px;}
._61{width:340.720200px;}
._6e{width:414.954600px;}
._6c{width:439.062600px;}
._66{width:462.582600px;}
._6a{width:469.428600px;}
._65{width:502.063200px;}
._67{width:527.514600px;}
._14{width:536.134800px;}
._2c{width:581.038800px;}
._16{width:620.639400px;}
._30{width:626.020800px;}
._39{width:632.451000px;}
._37{width:636.159600px;}
._34{width:646.182600px;}
._59{width:663.360600px;}
._32{width:664.785000px;}
._18{width:672.629400px;}
._4e{width:700.795800px;}
._1b{width:707.994000px;}
._23{width:726.058200px;}
._1d{width:744.379200px;}
._13{width:827.735400px;}
._36{width:888.316200px;}
._22{width:976.077000px;}
._24{width:1011.624000px;}
._26{width:1017.025224px;}
._25{width:1023.709902px;}
._33{width:1034.184600px;}
._3e{width:1037.963400px;}
._27{width:1115.835600px;}
._28{width:1135.782600px;}
._35{width:1138.809600px;}
._3c{width:1141.273200px;}
._1f{width:1143.765600px;}
._2b{width:1152.315000px;}
._15{width:1154.595000px;}
._19{width:1167.421800px;}
._1e{width:1170.384000px;}
._2d{width:1174.471800px;}
._29{width:1178.793600px;}
._31{width:1198.876800px;}
._2e{width:1201.251000px;}
._3b{width:1203.316800px;}
._2f{width:1211.593800px;}
._3d{width:1222.081200px;}
._3a{width:1232.245200px;}
._1c{width:1239.399600px;}
._17{width:1243.240200px;}
._38{width:1247.029200px;}
._1a{width:1249.563600px;}
._20{width:1264.347600px;}
._21{width:1268.421600px;}
._2a{width:1292.781600px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:24.486000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3b{bottom:71.212050px;}
.y3c{bottom:75.036150px;}
.y6b{bottom:113.078700px;}
.y87{bottom:113.078850px;}
.y2b{bottom:117.212550px;}
.yc{bottom:120.001500px;}
.yfd{bottom:120.500850px;}
.y6a{bottom:134.078700px;}
.y86{bottom:134.078850px;}
.yb{bottom:134.401500px;}
.y2a{bottom:138.212550px;}
.yfc{bottom:140.300850px;}
.ya{bottom:148.801500px;}
.y69{bottom:155.078700px;}
.y85{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.yfb{bottom:160.100850px;}
.y9{bottom:163.201500px;}
.y68{bottom:176.078700px;}
.y84{bottom:176.078850px;}
.yfa{bottom:179.900850px;}
.y28{bottom:180.212550px;}
.y105{bottom:181.529400px;}
.y67{bottom:197.078700px;}
.y83{bottom:197.078850px;}
.y38{bottom:199.392600px;}
.y27{bottom:201.212550px;}
.y37{bottom:217.392600px;}
.y66{bottom:218.078700px;}
.y82{bottom:218.078850px;}
.y26{bottom:222.212550px;}
.y36{bottom:235.392600px;}
.y8e{bottom:239.078700px;}
.y81{bottom:239.078850px;}
.y25{bottom:243.212550px;}
.y65{bottom:252.513450px;}
.y35{bottom:253.392600px;}
.ybb{bottom:258.301800px;}
.y8d{bottom:260.078700px;}
.y80{bottom:260.078850px;}
.y24{bottom:264.212550px;}
.y34{bottom:271.392600px;}
.yba{bottom:278.101800px;}
.y8c{bottom:281.078700px;}
.y7f{bottom:281.078850px;}
.y64{bottom:284.811000px;}
.y23{bottom:285.212550px;}
.y33{bottom:289.392600px;}
.yb9{bottom:297.901800px;}
.y8b{bottom:302.078700px;}
.y7e{bottom:302.078850px;}
.y104{bottom:307.529400px;}
.y22{bottom:317.648400px;}
.yb8{bottom:317.701800px;}
.yd0{bottom:323.078700px;}
.y7d{bottom:323.078850px;}
.y32{bottom:324.400350px;}
.y31{bottom:342.400350px;}
.y63{bottom:344.078700px;}
.y7c{bottom:344.078850px;}
.y30{bottom:360.400350px;}
.y62{bottom:365.078700px;}
.y7b{bottom:365.078850px;}
.y109{bottom:378.513600px;}
.yb7{bottom:384.427050px;}
.y61{bottom:386.078700px;}
.y7a{bottom:386.078850px;}
.y103{bottom:391.529400px;}
.y2f{bottom:395.408250px;}
.y21{bottom:402.427950px;}
.yb6{bottom:404.632800px;}
.y60{bottom:407.078700px;}
.y79{bottom:407.078850px;}
.y108{bottom:410.811150px;}
.y2e{bottom:413.408250px;}
.yb5{bottom:424.838550px;}
.y5f{bottom:428.078700px;}
.y78{bottom:428.078850px;}
.y2d{bottom:431.408250px;}
.y20{bottom:443.487750px;}
.yb4{bottom:445.044150px;}
.y5e{bottom:449.078700px;}
.y77{bottom:449.078850px;}
.y2c{bottom:449.408250px;}
.y102{bottom:454.529400px;}
.y1f{bottom:463.287750px;}
.yb3{bottom:465.249900px;}
.y5d{bottom:470.078700px;}
.y91{bottom:470.078850px;}
.y1e{bottom:483.087750px;}
.y8a{bottom:483.513450px;}
.y76{bottom:484.441050px;}
.yb2{bottom:485.455650px;}
.y5c{bottom:491.078700px;}
.y90{bottom:491.078850px;}
.y1d{bottom:502.887750px;}
.yb1{bottom:505.661400px;}
.y5b{bottom:512.078700px;}
.y8f{bottom:512.078850px;}
.y89{bottom:515.811000px;}
.y101{bottom:517.529400px;}
.y1c{bottom:522.687750px;}
.yb0{bottom:525.867000px;}
.y5a{bottom:533.078700px;}
.y75{bottom:533.078850px;}
.y1b{bottom:542.487750px;}
.yaf{bottom:546.072750px;}
.y59{bottom:554.078700px;}
.y74{bottom:554.078850px;}
.y1a{bottom:562.287750px;}
.yae{bottom:566.278500px;}
.y58{bottom:575.078700px;}
.y73{bottom:575.078850px;}
.y100{bottom:580.937100px;}
.y19{bottom:582.087750px;}
.yad{bottom:586.484100px;}
.y57{bottom:596.078700px;}
.y72{bottom:596.078850px;}
.y18{bottom:601.887750px;}
.yac{bottom:606.689850px;}
.yff{bottom:610.441050px;}
.y56{bottom:617.078700px;}
.y71{bottom:617.078850px;}
.y17{bottom:621.687750px;}
.yab{bottom:626.895600px;}
.y55{bottom:638.078700px;}
.y70{bottom:638.078850px;}
.y16{bottom:641.487750px;}
.yaa{bottom:647.101350px;}
.y54{bottom:659.078700px;}
.y6f{bottom:659.078850px;}
.y15{bottom:661.287750px;}
.ya9{bottom:667.306950px;}
.y53{bottom:680.078700px;}
.y6e{bottom:680.078850px;}
.y14{bottom:681.087750px;}
.ya8{bottom:687.512700px;}
.y13{bottom:700.887750px;}
.y52{bottom:701.078700px;}
.y6d{bottom:701.078850px;}
.ye6{bottom:703.356000px;}
.ya7{bottom:707.718450px;}
.ye5{bottom:716.856000px;}
.y12{bottom:720.687750px;}
.y92{bottom:721.426200px;}
.y51{bottom:722.078700px;}
.ycf{bottom:722.078850px;}
.ya6{bottom:727.924200px;}
.y6c{bottom:733.845450px;}
.yfe{bottom:736.441050px;}
.ye4{bottom:739.837800px;}
.y11{bottom:740.487750px;}
.y50{bottom:743.078700px;}
.yce{bottom:743.078850px;}
.ya5{bottom:748.129800px;}
.ye7{bottom:756.106350px;}
.ye3{bottom:759.618300px;}
.y10{bottom:760.287750px;}
.y4f{bottom:764.078700px;}
.ycd{bottom:764.078850px;}
.ya4{bottom:768.335550px;}
.ye2{bottom:779.398800px;}
.yf{bottom:780.087750px;}
.y4e{bottom:785.078700px;}
.ycc{bottom:785.078850px;}
.ya3{bottom:788.541300px;}
.y88{bottom:789.229200px;}
.ye1{bottom:799.179450px;}
.yf9{bottom:803.162550px;}
.y4d{bottom:806.078700px;}
.ycb{bottom:806.078850px;}
.ya2{bottom:808.747050px;}
.ye{bottom:811.185300px;}
.ye0{bottom:818.959950px;}
.yf8{bottom:820.817100px;}
.y4c{bottom:827.078700px;}
.yca{bottom:827.078850px;}
.ya1{bottom:828.952650px;}
.yf7{bottom:838.471500px;}
.ydf{bottom:838.740450px;}
.y4b{bottom:848.078700px;}
.yc9{bottom:848.078850px;}
.ya0{bottom:849.158400px;}
.yf6{bottom:856.126050px;}
.yde{bottom:858.520950px;}
.y4a{bottom:869.078700px;}
.yc8{bottom:869.078850px;}
.y9f{bottom:869.364000px;}
.yf5{bottom:873.780600px;}
.ydd{bottom:878.301300px;}
.y9e{bottom:889.569750px;}
.y49{bottom:890.078700px;}
.yc7{bottom:890.078850px;}
.y8{bottom:890.466750px;}
.yf4{bottom:891.435150px;}
.ydc{bottom:898.081950px;}
.y7{bottom:908.466750px;}
.yf3{bottom:909.089700px;}
.y9d{bottom:909.775500px;}
.y48{bottom:911.078700px;}
.yc6{bottom:911.078850px;}
.ydb{bottom:917.862450px;}
.y6{bottom:926.466750px;}
.yf2{bottom:926.744250px;}
.y9c{bottom:929.981250px;}
.y47{bottom:932.078700px;}
.yc5{bottom:932.078850px;}
.yda{bottom:937.642950px;}
.yf1{bottom:944.398650px;}
.y5{bottom:944.466750px;}
.y9b{bottom:950.186850px;}
.y46{bottom:953.078700px;}
.yc4{bottom:953.078850px;}
.yd9{bottom:957.423450px;}
.yf0{bottom:962.053200px;}
.y9a{bottom:970.392600px;}
.y45{bottom:974.078700px;}
.yc3{bottom:974.078850px;}
.yd8{bottom:977.203950px;}
.y4{bottom:979.474800px;}
.yef{bottom:979.707750px;}
.y99{bottom:990.598350px;}
.y44{bottom:995.078700px;}
.yc2{bottom:995.078850px;}
.yd7{bottom:996.984450px;}
.yee{bottom:997.362300px;}
.y98{bottom:1010.804100px;}
.yed{bottom:1015.016850px;}
.y43{bottom:1016.078700px;}
.yc1{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.yd6{bottom:1016.764950px;}
.y107{bottom:1030.440900px;}
.y97{bottom:1031.009700px;}
.yec{bottom:1032.671400px;}
.yd5{bottom:1036.545450px;}
.y42{bottom:1037.078700px;}
.yc0{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.yeb{bottom:1050.325950px;}
.y96{bottom:1051.215450px;}
.yd3{bottom:1056.626100px;}
.y41{bottom:1058.078700px;}
.ybf{bottom:1058.078850px;}
.yd2{bottom:1063.376100px;}
.yd4{bottom:1070.126100px;}
.y95{bottom:1071.421200px;}
.y40{bottom:1079.078700px;}
.ybe{bottom:1079.078850px;}
.yea{bottom:1079.682750px;}
.y94{bottom:1080.673650px;}
.ye9{bottom:1099.482750px;}
.yd1{bottom:1099.482900px;}
.y3f{bottom:1100.078700px;}
.ybd{bottom:1100.078850px;}
.yd{bottom:1109.815500px;}
.ye8{bottom:1119.282750px;}
.y93{bottom:1119.282900px;}
.y3e{bottom:1121.078700px;}
.ybc{bottom:1121.078850px;}
.y106{bottom:1125.451800px;}
.y3a{bottom:1155.615300px;}
.y39{bottom:1175.115300px;}
.y3d{bottom:1178.691750px;}
.h15{height:31.930664px;}
.h13{height:33.140625px;}
.h11{height:33.448242px;}
.h12{height:33.694336px;}
.h6{height:34.446094px;}
.h2{height:38.039062px;}
.he{height:38.273438px;}
.h5{height:38.531250px;}
.hd{height:42.793945px;}
.h7{height:43.004883px;}
.hc{height:43.057617px;}
.h9{height:43.321289px;}
.h8{height:47.343750px;}
.hb{height:48.134766px;}
.h17{height:50.176758px;}
.hf{height:52.078125px;}
.h4{height:52.948242px;}
.ha{height:56.812500px;}
.h14{height:58.930664px;}
.h16{height:60.448242px;}
.h10{height:68.509800px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.068950px;}
.xc{left:108.286950px;}
.xf{left:112.251900px;}
.x5{left:119.576400px;}
.x6{left:121.047600px;}
.x7{left:123.420750px;}
.x10{left:136.214700px;}
.xd{left:150.796950px;}
.x1a{left:176.608350px;}
.x4{left:300.189000px;}
.xb{left:317.196750px;}
.x11{left:383.045850px;}
.x3{left:396.050700px;}
.x12{left:435.222750px;}
.x13{left:447.250650px;}
.xe{left:465.727350px;}
.x15{left:492.619650px;}
.x14{left:495.847200px;}
.x17{left:551.717550px;}
.x16{left:558.313350px;}
.x18{left:642.284550px;}
.x19{left:644.894250px;}
.x9{left:652.471650px;}
.x8{left:683.848650px;}
.x1{left:807.210300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.432000pt;}
.v1{vertical-align:19.536000pt;}
.v4{vertical-align:24.000000pt;}
.v2{vertical-align:32.897600pt;}
.ls15{letter-spacing:-6.720000pt;}
.ls14{letter-spacing:-3.168000pt;}
.lsb{letter-spacing:-1.813333pt;}
.ls2d{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.906667pt;}
.ls9{letter-spacing:-0.816000pt;}
.ls8{letter-spacing:-0.800000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.634667pt;}
.ls7{letter-spacing:-0.614400pt;}
.ls29{letter-spacing:-0.560000pt;}
.ls2b{letter-spacing:-0.533333pt;}
.ls2c{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.288000pt;}
.lsf{letter-spacing:-0.266667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.001067pt;}
.ls1{letter-spacing:0.010667pt;}
.ls2a{letter-spacing:0.011733pt;}
.lse{letter-spacing:0.012267pt;}
.lsc{letter-spacing:0.013333pt;}
.lsd{letter-spacing:0.017067pt;}
.ls3{letter-spacing:0.022933pt;}
.ls2{letter-spacing:0.048000pt;}
.ls16{letter-spacing:0.522667pt;}
.ls11{letter-spacing:0.533333pt;}
.ls17{letter-spacing:0.546667pt;}
.ls2e{letter-spacing:0.693333pt;}
.lsa{letter-spacing:1.066667pt;}
.ls0{letter-spacing:38.383435pt;}
.ls1f{letter-spacing:68.207131pt;}
.ls27{letter-spacing:89.491376pt;}
.ls25{letter-spacing:102.917019pt;}
.ls28{letter-spacing:112.053957pt;}
.ls26{letter-spacing:113.088752pt;}
.ls1a{letter-spacing:115.268048pt;}
.ls1c{letter-spacing:126.248731pt;}
.ls1b{letter-spacing:138.917531pt;}
.ls23{letter-spacing:140.085701pt;}
.ls1d{letter-spacing:152.818219pt;}
.ls21{letter-spacing:178.641563pt;}
.ls22{letter-spacing:211.353915pt;}
.ls20{letter-spacing:211.900640pt;}
.ls18{letter-spacing:212.060992pt;}
.ls24{letter-spacing:216.524891pt;}
.ls1e{letter-spacing:242.872373pt;}
.ls12{letter-spacing:650.317867pt;}
.ws4{word-spacing:-15.936000pt;}
.wse8{word-spacing:-14.608000pt;}
.wse7{word-spacing:-14.133333pt;}
.ws68{word-spacing:-13.813333pt;}
.wsa7{word-spacing:-13.760000pt;}
.ws88{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4a{word-spacing:-13.226667pt;}
.ws59{word-spacing:-13.173333pt;}
.ws2e{word-spacing:-13.066667pt;}
.ws5a{word-spacing:-12.533333pt;}
.ws5{word-spacing:-12.266667pt;}
.wscf{word-spacing:-11.904000pt;}
.ws4b{word-spacing:-11.760000pt;}
.ws7e{word-spacing:-11.664000pt;}
.ws7d{word-spacing:-11.472000pt;}
.wsf7{word-spacing:-11.424000pt;}
.wsf6{word-spacing:-11.280000pt;}
.ws105{word-spacing:-10.944000pt;}
.ws9{word-spacing:-10.800000pt;}
.ws6{word-spacing:-10.464000pt;}
.ws8{word-spacing:-9.984000pt;}
.ws1{word-spacing:-9.685333pt;}
.ws7{word-spacing:-9.648000pt;}
.ws2d{word-spacing:-9.600000pt;}
.wsa{word-spacing:-9.301333pt;}
.wsaa{word-spacing:-9.258667pt;}
.wsd8{word-spacing:-9.146667pt;}
.ws7f{word-spacing:-8.784000pt;}
.wsa9{word-spacing:-8.736000pt;}
.ws2{word-spacing:-8.371200pt;}
.ws76{word-spacing:-5.397803pt;}
.ws80{word-spacing:-5.232000pt;}
.wse3{word-spacing:-5.120000pt;}
.ws65{word-spacing:-4.426667pt;}
.ws81{word-spacing:-3.312000pt;}
.ws7b{word-spacing:-3.200000pt;}
.ws111{word-spacing:-3.120000pt;}
.ws82{word-spacing:-2.976000pt;}
.ws83{word-spacing:-2.928000pt;}
.ws67{word-spacing:-2.826667pt;}
.wsea{word-spacing:-2.720000pt;}
.ws103{word-spacing:-2.688000pt;}
.wseb{word-spacing:-2.666667pt;}
.ws113{word-spacing:-2.640000pt;}
.ws74{word-spacing:-2.613333pt;}
.ws107{word-spacing:-2.592000pt;}
.ws64{word-spacing:-2.506667pt;}
.wse1{word-spacing:-2.453333pt;}
.wsff{word-spacing:-2.400000pt;}
.ws8a{word-spacing:-2.346667pt;}
.wsfc{word-spacing:-2.304000pt;}
.wsdd{word-spacing:-2.293333pt;}
.wsfd{word-spacing:-2.256000pt;}
.ws5e{word-spacing:-2.186667pt;}
.wsc9{word-spacing:-2.133333pt;}
.ws10c{word-spacing:-2.112000pt;}
.wse2{word-spacing:-2.080000pt;}
.wsde{word-spacing:-2.026667pt;}
.ws54{word-spacing:-1.920000pt;}
.ws4f{word-spacing:-1.866667pt;}
.ws10{word-spacing:-1.776000pt;}
.ws6e{word-spacing:-1.706667pt;}
.ws100{word-spacing:-1.584000pt;}
.ws6b{word-spacing:-1.546667pt;}
.wscd{word-spacing:-1.488000pt;}
.wsce{word-spacing:-1.440000pt;}
.ws1d{word-spacing:-1.392000pt;}
.ws2f{word-spacing:-1.386667pt;}
.ws1e{word-spacing:-1.344000pt;}
.ws29{word-spacing:-1.280000pt;}
.ws35{word-spacing:-1.226667pt;}
.ws102{word-spacing:-1.200000pt;}
.ws91{word-spacing:-1.173333pt;}
.wse6{word-spacing:-1.104000pt;}
.ws79{word-spacing:-1.066667pt;}
.ws44{word-spacing:-1.013333pt;}
.ws36{word-spacing:-0.960000pt;}
.ws2b{word-spacing:-0.912000pt;}
.wsf2{word-spacing:-0.853333pt;}
.ws98{word-spacing:-0.746667pt;}
.ws5d{word-spacing:-0.693333pt;}
.ws23{word-spacing:-0.672000pt;}
.ws70{word-spacing:-0.533333pt;}
.ws106{word-spacing:-0.480000pt;}
.ws6a{word-spacing:-0.426667pt;}
.wse9{word-spacing:-0.320000pt;}
.wsc{word-spacing:-0.272000pt;}
.wsd{word-spacing:-0.192000pt;}
.ws42{word-spacing:-0.160000pt;}
.ws5f{word-spacing:-0.106667pt;}
.wsc5{word-spacing:-0.053333pt;}
.wsf{word-spacing:-0.048000pt;}
.wsb{word-spacing:0.000000pt;}
.wsfb{word-spacing:0.048000pt;}
.ws97{word-spacing:0.106667pt;}
.ws5b{word-spacing:0.266667pt;}
.ws22{word-spacing:0.288000pt;}
.ws61{word-spacing:0.320000pt;}
.ws31{word-spacing:0.373333pt;}
.wsf1{word-spacing:0.426667pt;}
.ws38{word-spacing:0.480000pt;}
.wsc8{word-spacing:0.533333pt;}
.wse{word-spacing:0.614400pt;}
.ws66{word-spacing:0.640000pt;}
.wse5{word-spacing:0.672000pt;}
.ws84{word-spacing:0.693333pt;}
.ws1f{word-spacing:0.720000pt;}
.wsc0{word-spacing:0.746667pt;}
.ws27{word-spacing:0.800000pt;}
.ws2c{word-spacing:0.816000pt;}
.ws3e{word-spacing:0.853333pt;}
.ws6f{word-spacing:0.906667pt;}
.ws112{word-spacing:0.960000pt;}
.ws30{word-spacing:1.013333pt;}
.wsf8{word-spacing:1.104000pt;}
.ws43{word-spacing:1.120000pt;}
.ws1c{word-spacing:1.152000pt;}
.ws58{word-spacing:1.280000pt;}
.wsdf{word-spacing:1.333333pt;}
.wsf5{word-spacing:1.392000pt;}
.ws10f{word-spacing:1.440000pt;}
.ws73{word-spacing:1.493333pt;}
.wsc4{word-spacing:1.546667pt;}
.ws33{word-spacing:1.600000pt;}
.ws10e{word-spacing:1.632000pt;}
.ws34{word-spacing:1.653333pt;}
.ws10d{word-spacing:1.680000pt;}
.wscb{word-spacing:1.706667pt;}
.wsca{word-spacing:1.760000pt;}
.ws72{word-spacing:1.813333pt;}
.ws4d{word-spacing:1.866667pt;}
.ws108{word-spacing:1.872000pt;}
.ws41{word-spacing:1.920000pt;}
.ws56{word-spacing:1.973333pt;}
.ws32{word-spacing:2.026667pt;}
.ws69{word-spacing:2.080000pt;}
.ws7a{word-spacing:2.240000pt;}
.ws55{word-spacing:2.293333pt;}
.ws9b{word-spacing:2.346667pt;}
.ws4c{word-spacing:2.453333pt;}
.ws95{word-spacing:2.506667pt;}
.wsc1{word-spacing:2.613333pt;}
.ws10a{word-spacing:2.640000pt;}
.wsdc{word-spacing:2.666667pt;}
.ws93{word-spacing:2.720000pt;}
.ws85{word-spacing:2.773333pt;}
.ws57{word-spacing:2.880000pt;}
.wsf4{word-spacing:2.933333pt;}
.ws21{word-spacing:2.976000pt;}
.ws20{word-spacing:3.024000pt;}
.ws62{word-spacing:3.040000pt;}
.ws6c{word-spacing:3.093333pt;}
.ws28{word-spacing:3.200000pt;}
.ws87{word-spacing:3.306667pt;}
.ws47{word-spacing:3.360000pt;}
.ws40{word-spacing:3.413333pt;}
.ws3f{word-spacing:3.466667pt;}
.ws89{word-spacing:3.680000pt;}
.wse4{word-spacing:4.000000pt;}
.ws49{word-spacing:4.053333pt;}
.ws10b{word-spacing:4.080000pt;}
.ws24{word-spacing:4.128000pt;}
.ws8e{word-spacing:4.213333pt;}
.ws6d{word-spacing:4.266667pt;}
.ws115{word-spacing:4.320000pt;}
.ws2a{word-spacing:4.426667pt;}
.ws1b{word-spacing:4.464000pt;}
.ws99{word-spacing:4.480000pt;}
.ws9a{word-spacing:4.533333pt;}
.ws60{word-spacing:4.640000pt;}
.ws104{word-spacing:4.656000pt;}
.ws5c{word-spacing:4.693333pt;}
.ws8d{word-spacing:4.746667pt;}
.ws110{word-spacing:4.752000pt;}
.ws63{word-spacing:4.800000pt;}
.ws45{word-spacing:4.853333pt;}
.ws53{word-spacing:4.960000pt;}
.ws16{word-spacing:4.992000pt;}
.ws86{word-spacing:5.013333pt;}
.wscc{word-spacing:5.173333pt;}
.wsfa{word-spacing:5.232000pt;}
.wsf9{word-spacing:5.328000pt;}
.wse0{word-spacing:5.440000pt;}
.wsf3{word-spacing:5.493333pt;}
.ws1a{word-spacing:5.616000pt;}
.ws9c{word-spacing:5.653333pt;}
.ws15{word-spacing:5.664000pt;}
.ws71{word-spacing:5.706667pt;}
.ws19{word-spacing:5.712000pt;}
.ws14{word-spacing:5.760000pt;}
.wsfe{word-spacing:5.952000pt;}
.ws92{word-spacing:6.026667pt;}
.ws109{word-spacing:6.048000pt;}
.ws94{word-spacing:6.080000pt;}
.ws13{word-spacing:6.096000pt;}
.ws3c{word-spacing:6.133333pt;}
.ws12{word-spacing:6.144000pt;}
.wsc2{word-spacing:6.240000pt;}
.wsc3{word-spacing:6.293333pt;}
.ws11{word-spacing:6.336000pt;}
.ws101{word-spacing:6.432000pt;}
.ws51{word-spacing:6.506667pt;}
.wsec{word-spacing:6.613333pt;}
.ws18{word-spacing:6.624000pt;}
.wsed{word-spacing:6.666667pt;}
.ws17{word-spacing:6.720000pt;}
.ws3b{word-spacing:6.773333pt;}
.ws3a{word-spacing:6.880000pt;}
.ws39{word-spacing:6.933333pt;}
.wsf0{word-spacing:6.986667pt;}
.ws7c{word-spacing:7.093333pt;}
.wsdb{word-spacing:7.146667pt;}
.ws48{word-spacing:7.200000pt;}
.ws3d{word-spacing:7.413333pt;}
.wsa1{word-spacing:7.520000pt;}
.ws37{word-spacing:7.626667pt;}
.ws96{word-spacing:7.680000pt;}
.ws26{word-spacing:7.733333pt;}
.wsc7{word-spacing:7.893333pt;}
.wsc6{word-spacing:8.000000pt;}
.ws8c{word-spacing:8.213333pt;}
.ws8f{word-spacing:8.320000pt;}
.wsee{word-spacing:8.746667pt;}
.wsef{word-spacing:8.800000pt;}
.ws25{word-spacing:8.853333pt;}
.ws4e{word-spacing:9.066667pt;}
.ws50{word-spacing:9.280000pt;}
.ws8b{word-spacing:9.706667pt;}
.ws9e{word-spacing:10.453333pt;}
.ws9d{word-spacing:10.560000pt;}
.ws52{word-spacing:11.200000pt;}
.ws46{word-spacing:11.253333pt;}
.ws90{word-spacing:11.786667pt;}
.ws9f{word-spacing:12.053333pt;}
.wsa0{word-spacing:12.160000pt;}
.wsa5{word-spacing:13.493333pt;}
.wsa6{word-spacing:13.600000pt;}
.wsa2{word-spacing:16.693333pt;}
.wsa4{word-spacing:16.853333pt;}
.wsa3{word-spacing:17.013333pt;}
.ws114{word-spacing:22.032000pt;}
.ws0{word-spacing:29.912120pt;}
.wsac{word-spacing:49.888533pt;}
.wsd3{word-spacing:52.847467pt;}
.wsd7{word-spacing:52.848000pt;}
.wsd4{word-spacing:54.041600pt;}
.wsd1{word-spacing:54.359467pt;}
.wsd2{word-spacing:55.553600pt;}
.wsbe{word-spacing:55.990400pt;}
.wsd9{word-spacing:58.947733pt;}
.wsda{word-spacing:63.238400pt;}
.wsb6{word-spacing:66.490133pt;}
.wsba{word-spacing:66.518400pt;}
.wsbd{word-spacing:70.749333pt;}
.wsb9{word-spacing:70.777067pt;}
.wsb4{word-spacing:86.058667pt;}
.wsbf{word-spacing:86.144000pt;}
.wsbb{word-spacing:89.204267pt;}
.wsab{word-spacing:89.230400pt;}
.wsad{word-spacing:91.624000pt;}
.wsb3{word-spacing:96.520533pt;}
.wsb8{word-spacing:101.480533pt;}
.wsb0{word-spacing:103.988800pt;}
.wsb5{word-spacing:103.997867pt;}
.wsbc{word-spacing:104.006933pt;}
.wsd0{word-spacing:105.561600pt;}
.wsb7{word-spacing:108.781333pt;}
.wsae{word-spacing:119.383467pt;}
.wsa8{word-spacing:128.873067pt;}
.wsb2{word-spacing:168.441600pt;}
.wsaf{word-spacing:176.018667pt;}
.wsb1{word-spacing:177.731733pt;}
.wsd6{word-spacing:359.664000pt;}
.wsd5{word-spacing:381.045867pt;}
.ws78{word-spacing:552.910933pt;}
.ws75{word-spacing:620.069333pt;}
.ws77{word-spacing:620.106667pt;}
._8{margin-left:-9.380267pt;}
._3f{margin-left:-7.585067pt;}
._11{margin-left:-6.460800pt;}
._2{margin-left:-5.177067pt;}
._4{margin-left:-3.772800pt;}
._1{margin-left:-2.238400pt;}
._0{margin-left:-1.042667pt;}
._3{width:0.940800pt;}
._9{width:1.857067pt;}
._6{width:2.860800pt;}
._7{width:4.411200pt;}
._a{width:6.095467pt;}
._b{width:7.130667pt;}
._c{width:8.320000pt;}
._d{width:9.274667pt;}
._f{width:10.202667pt;}
._e{width:11.226667pt;}
._12{width:12.117333pt;}
._72{width:14.352000pt;}
._10{width:16.741333pt;}
._5{width:32.554667pt;}
._71{width:38.338667pt;}
._41{width:40.321067pt;}
._42{width:47.339200pt;}
._40{width:53.782400pt;}
._6b{width:62.106133pt;}
._69{width:63.300267pt;}
._68{width:64.812267pt;}
._6f{width:68.100800pt;}
._55{width:70.429867pt;}
._6d{width:72.470400pt;}
._48{width:80.259200pt;}
._51{width:84.942400pt;}
._45{width:87.965333pt;}
._5c{width:90.013333pt;}
._64{width:93.184533pt;}
._63{width:94.120000pt;}
._60{width:95.354133pt;}
._44{width:103.781333pt;}
._5d{width:105.781867pt;}
._4a{width:108.990933pt;}
._43{width:114.352533pt;}
._54{width:115.253867pt;}
._62{width:116.369067pt;}
._57{width:118.020267pt;}
._49{width:120.864000pt;}
._53{width:123.549333pt;}
._46{width:125.783467pt;}
._47{width:128.510933pt;}
._58{width:131.771200pt;}
._4b{width:136.248000pt;}
._56{width:137.989333pt;}
._52{width:139.406933pt;}
._70{width:145.931200pt;}
._4f{width:171.216000pt;}
._5f{width:174.811200pt;}
._4c{width:177.976533pt;}
._4d{width:180.785600pt;}
._5b{width:186.241600pt;}
._50{width:193.790400pt;}
._5a{width:204.429867pt;}
._5e{width:205.921600pt;}
._61{width:302.862400pt;}
._6e{width:368.848533pt;}
._6c{width:390.277867pt;}
._66{width:411.184533pt;}
._6a{width:417.269867pt;}
._65{width:446.278400pt;}
._67{width:468.901867pt;}
._14{width:476.564267pt;}
._2c{width:516.478933pt;}
._16{width:551.679467pt;}
._30{width:556.462933pt;}
._39{width:562.178667pt;}
._37{width:565.475200pt;}
._34{width:574.384533pt;}
._59{width:589.653867pt;}
._32{width:590.920000pt;}
._18{width:597.892800pt;}
._4e{width:622.929600pt;}
._1b{width:629.328000pt;}
._23{width:645.385067pt;}
._1d{width:661.670400pt;}
._13{width:735.764800pt;}
._36{width:789.614400pt;}
._22{width:867.624000pt;}
._24{width:899.221333pt;}
._26{width:904.022421pt;}
._25{width:909.964357pt;}
._33{width:919.275200pt;}
._3e{width:922.634133pt;}
._27{width:991.853867pt;}
._28{width:1009.584533pt;}
._35{width:1012.275200pt;}
._3c{width:1014.465067pt;}
._1f{width:1016.680533pt;}
._2b{width:1024.280000pt;}
._15{width:1026.306667pt;}
._19{width:1037.708267pt;}
._1e{width:1040.341333pt;}
._2d{width:1043.974933pt;}
._29{width:1047.816533pt;}
._31{width:1065.668267pt;}
._2e{width:1067.778667pt;}
._3b{width:1069.614933pt;}
._2f{width:1076.972267pt;}
._3d{width:1086.294400pt;}
._3a{width:1095.329067pt;}
._1c{width:1101.688533pt;}
._17{width:1105.102400pt;}
._38{width:1108.470400pt;}
._1a{width:1110.723200pt;}
._20{width:1123.864533pt;}
._21{width:1127.485867pt;}
._2a{width:1149.139200pt;}
.fs9{font-size:21.765333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3b{bottom:63.299600pt;}
.y3c{bottom:66.698800pt;}
.y6b{bottom:100.514400pt;}
.y87{bottom:100.514533pt;}
.y2b{bottom:104.188933pt;}
.yc{bottom:106.668000pt;}
.yfd{bottom:107.111867pt;}
.y6a{bottom:119.181067pt;}
.y86{bottom:119.181200pt;}
.yb{bottom:119.468000pt;}
.y2a{bottom:122.855600pt;}
.yfc{bottom:124.711867pt;}
.ya{bottom:132.268000pt;}
.y69{bottom:137.847733pt;}
.y85{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.yfb{bottom:142.311867pt;}
.y9{bottom:145.068000pt;}
.y68{bottom:156.514400pt;}
.y84{bottom:156.514533pt;}
.yfa{bottom:159.911867pt;}
.y28{bottom:160.188933pt;}
.y105{bottom:161.359467pt;}
.y67{bottom:175.181067pt;}
.y83{bottom:175.181200pt;}
.y38{bottom:177.237867pt;}
.y27{bottom:178.855600pt;}
.y37{bottom:193.237867pt;}
.y66{bottom:193.847733pt;}
.y82{bottom:193.847867pt;}
.y26{bottom:197.522267pt;}
.y36{bottom:209.237867pt;}
.y8e{bottom:212.514400pt;}
.y81{bottom:212.514533pt;}
.y25{bottom:216.188933pt;}
.y65{bottom:224.456400pt;}
.y35{bottom:225.237867pt;}
.ybb{bottom:229.601600pt;}
.y8d{bottom:231.181067pt;}
.y80{bottom:231.181200pt;}
.y24{bottom:234.855600pt;}
.y34{bottom:241.237867pt;}
.yba{bottom:247.201600pt;}
.y8c{bottom:249.847733pt;}
.y7f{bottom:249.847867pt;}
.y64{bottom:253.165333pt;}
.y23{bottom:253.522267pt;}
.y33{bottom:257.237867pt;}
.yb9{bottom:264.801600pt;}
.y8b{bottom:268.514400pt;}
.y7e{bottom:268.514533pt;}
.y104{bottom:273.359467pt;}
.y22{bottom:282.354133pt;}
.yb8{bottom:282.401600pt;}
.yd0{bottom:287.181067pt;}
.y7d{bottom:287.181200pt;}
.y32{bottom:288.355867pt;}
.y31{bottom:304.355867pt;}
.y63{bottom:305.847733pt;}
.y7c{bottom:305.847867pt;}
.y30{bottom:320.355867pt;}
.y62{bottom:324.514400pt;}
.y7b{bottom:324.514533pt;}
.y109{bottom:336.456533pt;}
.yb7{bottom:341.712933pt;}
.y61{bottom:343.181067pt;}
.y7a{bottom:343.181200pt;}
.y103{bottom:348.026133pt;}
.y2f{bottom:351.474000pt;}
.y21{bottom:357.713733pt;}
.yb6{bottom:359.673600pt;}
.y60{bottom:361.847733pt;}
.y79{bottom:361.847867pt;}
.y108{bottom:365.165467pt;}
.y2e{bottom:367.474000pt;}
.yb5{bottom:377.634267pt;}
.y5f{bottom:380.514400pt;}
.y78{bottom:380.514533pt;}
.y2d{bottom:383.474000pt;}
.y20{bottom:394.211333pt;}
.yb4{bottom:395.594800pt;}
.y5e{bottom:399.181067pt;}
.y77{bottom:399.181200pt;}
.y2c{bottom:399.474000pt;}
.y102{bottom:404.026133pt;}
.y1f{bottom:411.811333pt;}
.yb3{bottom:413.555467pt;}
.y5d{bottom:417.847733pt;}
.y91{bottom:417.847867pt;}
.y1e{bottom:429.411333pt;}
.y8a{bottom:429.789733pt;}
.y76{bottom:430.614267pt;}
.yb2{bottom:431.516133pt;}
.y5c{bottom:436.514400pt;}
.y90{bottom:436.514533pt;}
.y1d{bottom:447.011333pt;}
.yb1{bottom:449.476800pt;}
.y5b{bottom:455.181067pt;}
.y8f{bottom:455.181200pt;}
.y89{bottom:458.498667pt;}
.y101{bottom:460.026133pt;}
.y1c{bottom:464.611333pt;}
.yb0{bottom:467.437333pt;}
.y5a{bottom:473.847733pt;}
.y75{bottom:473.847867pt;}
.y1b{bottom:482.211333pt;}
.yaf{bottom:485.398000pt;}
.y59{bottom:492.514400pt;}
.y74{bottom:492.514533pt;}
.y1a{bottom:499.811333pt;}
.yae{bottom:503.358667pt;}
.y58{bottom:511.181067pt;}
.y73{bottom:511.181200pt;}
.y100{bottom:516.388533pt;}
.y19{bottom:517.411333pt;}
.yad{bottom:521.319200pt;}
.y57{bottom:529.847733pt;}
.y72{bottom:529.847867pt;}
.y18{bottom:535.011333pt;}
.yac{bottom:539.279867pt;}
.yff{bottom:542.614267pt;}
.y56{bottom:548.514400pt;}
.y71{bottom:548.514533pt;}
.y17{bottom:552.611333pt;}
.yab{bottom:557.240533pt;}
.y55{bottom:567.181067pt;}
.y70{bottom:567.181200pt;}
.y16{bottom:570.211333pt;}
.yaa{bottom:575.201200pt;}
.y54{bottom:585.847733pt;}
.y6f{bottom:585.847867pt;}
.y15{bottom:587.811333pt;}
.ya9{bottom:593.161733pt;}
.y53{bottom:604.514400pt;}
.y6e{bottom:604.514533pt;}
.y14{bottom:605.411333pt;}
.ya8{bottom:611.122400pt;}
.y13{bottom:623.011333pt;}
.y52{bottom:623.181067pt;}
.y6d{bottom:623.181200pt;}
.ye6{bottom:625.205333pt;}
.ya7{bottom:629.083067pt;}
.ye5{bottom:637.205333pt;}
.y12{bottom:640.611333pt;}
.y92{bottom:641.267733pt;}
.y51{bottom:641.847733pt;}
.ycf{bottom:641.847867pt;}
.ya6{bottom:647.043733pt;}
.y6c{bottom:652.307067pt;}
.yfe{bottom:654.614267pt;}
.ye4{bottom:657.633600pt;}
.y11{bottom:658.211333pt;}
.y50{bottom:660.514400pt;}
.yce{bottom:660.514533pt;}
.ya5{bottom:665.004267pt;}
.ye7{bottom:672.094533pt;}
.ye3{bottom:675.216267pt;}
.y10{bottom:675.811333pt;}
.y4f{bottom:679.181067pt;}
.ycd{bottom:679.181200pt;}
.ya4{bottom:682.964933pt;}
.ye2{bottom:692.798933pt;}
.yf{bottom:693.411333pt;}
.y4e{bottom:697.847733pt;}
.ycc{bottom:697.847867pt;}
.ya3{bottom:700.925600pt;}
.y88{bottom:701.537067pt;}
.ye1{bottom:710.381733pt;}
.yf9{bottom:713.922267pt;}
.y4d{bottom:716.514400pt;}
.ycb{bottom:716.514533pt;}
.ya2{bottom:718.886267pt;}
.ye{bottom:721.053600pt;}
.ye0{bottom:727.964400pt;}
.yf8{bottom:729.615200pt;}
.y4c{bottom:735.181067pt;}
.yca{bottom:735.181200pt;}
.ya1{bottom:736.846800pt;}
.yf7{bottom:745.308000pt;}
.ydf{bottom:745.547067pt;}
.y4b{bottom:753.847733pt;}
.yc9{bottom:753.847867pt;}
.ya0{bottom:754.807467pt;}
.yf6{bottom:761.000933pt;}
.yde{bottom:763.129733pt;}
.y4a{bottom:772.514400pt;}
.yc8{bottom:772.514533pt;}
.y9f{bottom:772.768000pt;}
.yf5{bottom:776.693867pt;}
.ydd{bottom:780.712267pt;}
.y9e{bottom:790.728667pt;}
.y49{bottom:791.181067pt;}
.yc7{bottom:791.181200pt;}
.y8{bottom:791.526000pt;}
.yf4{bottom:792.386800pt;}
.ydc{bottom:798.295067pt;}
.y7{bottom:807.526000pt;}
.yf3{bottom:808.079733pt;}
.y9d{bottom:808.689333pt;}
.y48{bottom:809.847733pt;}
.yc6{bottom:809.847867pt;}
.ydb{bottom:815.877733pt;}
.y6{bottom:823.526000pt;}
.yf2{bottom:823.772667pt;}
.y9c{bottom:826.650000pt;}
.y47{bottom:828.514400pt;}
.yc5{bottom:828.514533pt;}
.yda{bottom:833.460400pt;}
.yf1{bottom:839.465467pt;}
.y5{bottom:839.526000pt;}
.y9b{bottom:844.610533pt;}
.y46{bottom:847.181067pt;}
.yc4{bottom:847.181200pt;}
.yd9{bottom:851.043067pt;}
.yf0{bottom:855.158400pt;}
.y9a{bottom:862.571200pt;}
.y45{bottom:865.847733pt;}
.yc3{bottom:865.847867pt;}
.yd8{bottom:868.625733pt;}
.y4{bottom:870.644267pt;}
.yef{bottom:870.851333pt;}
.y99{bottom:880.531867pt;}
.y44{bottom:884.514400pt;}
.yc2{bottom:884.514533pt;}
.yd7{bottom:886.208400pt;}
.yee{bottom:886.544267pt;}
.y98{bottom:898.492533pt;}
.yed{bottom:902.237200pt;}
.y43{bottom:903.181067pt;}
.yc1{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.yd6{bottom:903.791067pt;}
.y107{bottom:915.947467pt;}
.y97{bottom:916.453067pt;}
.yec{bottom:917.930133pt;}
.yd5{bottom:921.373733pt;}
.y42{bottom:921.847733pt;}
.yc0{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.yeb{bottom:933.623067pt;}
.y96{bottom:934.413733pt;}
.yd3{bottom:939.223200pt;}
.y41{bottom:940.514400pt;}
.ybf{bottom:940.514533pt;}
.yd2{bottom:945.223200pt;}
.yd4{bottom:951.223200pt;}
.y95{bottom:952.374400pt;}
.y40{bottom:959.181067pt;}
.ybe{bottom:959.181200pt;}
.yea{bottom:959.718000pt;}
.y94{bottom:960.598800pt;}
.ye9{bottom:977.318000pt;}
.yd1{bottom:977.318133pt;}
.y3f{bottom:977.847733pt;}
.ybd{bottom:977.847867pt;}
.yd{bottom:986.502667pt;}
.ye8{bottom:994.918000pt;}
.y93{bottom:994.918133pt;}
.y3e{bottom:996.514400pt;}
.ybc{bottom:996.514533pt;}
.y106{bottom:1000.401600pt;}
.y3a{bottom:1027.213600pt;}
.y39{bottom:1044.546933pt;}
.y3d{bottom:1047.726000pt;}
.h15{height:28.382812pt;}
.h13{height:29.458333pt;}
.h11{height:29.731771pt;}
.h12{height:29.950521pt;}
.h6{height:30.618750pt;}
.h2{height:33.812500pt;}
.he{height:34.020833pt;}
.h5{height:34.250000pt;}
.hd{height:38.039062pt;}
.h7{height:38.226562pt;}
.hc{height:38.273438pt;}
.h9{height:38.507812pt;}
.h8{height:42.083333pt;}
.hb{height:42.786458pt;}
.h17{height:44.601562pt;}
.hf{height:46.291667pt;}
.h4{height:47.065104pt;}
.ha{height:50.500000pt;}
.h14{height:52.382812pt;}
.h16{height:53.731771pt;}
.h10{height:60.897600pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.172400pt;}
.xc{left:96.255067pt;}
.xf{left:99.779467pt;}
.x5{left:106.290133pt;}
.x6{left:107.597867pt;}
.x7{left:109.707333pt;}
.x10{left:121.079733pt;}
.xd{left:134.041733pt;}
.x1a{left:156.985200pt;}
.x4{left:266.834667pt;}
.xb{left:281.952667pt;}
.x11{left:340.485200pt;}
.x3{left:352.045067pt;}
.x12{left:386.864667pt;}
.x13{left:397.556133pt;}
.xe{left:413.979867pt;}
.x15{left:437.884133pt;}
.x14{left:440.753067pt;}
.x17{left:490.415600pt;}
.x16{left:496.278533pt;}
.x18{left:570.919600pt;}
.x19{left:573.239333pt;}
.x9{left:579.974800pt;}
.x8{left:607.865467pt;}
.x1{left:717.520267pt;}
}




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