
    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_b39a8cf13d23e4f9214a6e4f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.222000;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_505481d2a2d6bafc26e2930d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.197000;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_d4423a452272c54a352b894b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_3e88ae806b434c45310dd09d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_579d26329d10172e9007d7a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239000;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_c25f651e8a09d76a0d45d046.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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_2f2b615d189d3a1e5e7a3c8f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_e9ff9c68ddbac531565154cb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.213000;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_c80c97cdd505dd1dd59598af.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.222000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.256000;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_505481d2a2d6bafc26e2930d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.197000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.256000;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_9a453579465cf96f7750eed1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.230000;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_a5d7c7ab4fc22b2774be4b5d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.692871;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:fff;src:url('chunks/assets/font_197da46466af76d85f1bb134.woff2')format("woff");}.fff{font-family:fff;line-height:0.558000;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:ff10;src:url('chunks/assets/font_890aaf13e947f7e2011d8b98.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d2b855bfcf79afdff56d8a0c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.929688;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.399963px;}
.v3{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls4{letter-spacing:-2.220000px;}
.ls3{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000037px;}
.ls7{letter-spacing:0.000103px;}
.ls6{letter-spacing:0.000220px;}
.ls8{letter-spacing:0.000652px;}
.lsa{letter-spacing:3.805206px;}
.ls0{letter-spacing:3.990000px;}
.ls9{letter-spacing:15.708000px;}
.ls1{letter-spacing:27.307191px;}
.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;}
}
.ws125{word-spacing:-51.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws3{word-spacing:-14.544000px;}
.ws26{word-spacing:-12.780000px;}
.ws49{word-spacing:-12.750000px;}
.wsf8{word-spacing:-12.474000px;}
.ws7{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.120000px;}
.ws6{word-spacing:-11.520000px;}
.ws2{word-spacing:-10.500000px;}
.ws0{word-spacing:-9.996000px;}
.wse1{word-spacing:-9.792000px;}
.ws4{word-spacing:-8.925000px;}
.ws5e{word-spacing:-7.500000px;}
.ws116{word-spacing:-6.528000px;}
.ws62{word-spacing:-5.100000px;}
.wsb6{word-spacing:-4.800000px;}
.wsab{word-spacing:-4.380000px;}
.wsd0{word-spacing:-3.720000px;}
.ws12e{word-spacing:-3.417000px;}
.ws98{word-spacing:-3.360000px;}
.wsb3{word-spacing:-3.180000px;}
.ws8f{word-spacing:-3.120000px;}
.ws102{word-spacing:-3.111000px;}
.ws60{word-spacing:-3.060000px;}
.ws6c{word-spacing:-2.940000px;}
.wsc4{word-spacing:-2.880000px;}
.wsde{word-spacing:-2.700000px;}
.wsc9{word-spacing:-2.640000px;}
.ws1a{word-spacing:-2.580000px;}
.wsc2{word-spacing:-2.460000px;}
.ws97{word-spacing:-2.400000px;}
.ws87{word-spacing:-2.340000px;}
.wsbd{word-spacing:-2.280000px;}
.ws105{word-spacing:-2.244000px;}
.ws90{word-spacing:-2.220000px;}
.wsd4{word-spacing:-2.160000px;}
.ws91{word-spacing:-2.100000px;}
.ws64{word-spacing:-2.040000px;}
.ws99{word-spacing:-1.980000px;}
.ws130{word-spacing:-1.938000px;}
.wsfa{word-spacing:-1.887000px;}
.ws51{word-spacing:-1.860000px;}
.ws9f{word-spacing:-1.740000px;}
.ws7b{word-spacing:-1.560000px;}
.ws118{word-spacing:-1.479000px;}
.ws110{word-spacing:-1.326000px;}
.ws81{word-spacing:-1.320000px;}
.ws101{word-spacing:-1.275000px;}
.wsc6{word-spacing:-1.140000px;}
.ws7e{word-spacing:-1.080000px;}
.wscb{word-spacing:-0.960000px;}
.ws66{word-spacing:-0.840000px;}
.ws35{word-spacing:-0.780000px;}
.wsa2{word-spacing:-0.720000px;}
.wsd9{word-spacing:-0.600000px;}
.wsb{word-spacing:-0.570000px;}
.ws6b{word-spacing:-0.540000px;}
.wsf{word-spacing:-0.480000px;}
.ws7a{word-spacing:-0.420000px;}
.ws8b{word-spacing:-0.306000px;}
.ws3d{word-spacing:-0.300000px;}
.wsa0{word-spacing:-0.240000px;}
.wscc{word-spacing:-0.180000px;}
.ws12d{word-spacing:-0.153000px;}
.ws17{word-spacing:-0.120000px;}
.ws24{word-spacing:-0.060000px;}
.wsc{word-spacing:0.000000px;}
.ws25{word-spacing:0.060000px;}
.ws40{word-spacing:0.120000px;}
.ws2c{word-spacing:0.180000px;}
.wsb2{word-spacing:0.240000px;}
.wsa4{word-spacing:0.300000px;}
.ws4d{word-spacing:0.420000px;}
.ws8d{word-spacing:0.480000px;}
.wse9{word-spacing:0.510000px;}
.wsf0{word-spacing:0.540000px;}
.ws10a{word-spacing:0.561000px;}
.ws6a{word-spacing:0.600000px;}
.ws10c{word-spacing:0.612000px;}
.ws48{word-spacing:0.660000px;}
.wsea{word-spacing:0.714000px;}
.ws57{word-spacing:0.720000px;}
.wse3{word-spacing:0.780000px;}
.ws46{word-spacing:0.840000px;}
.wsd2{word-spacing:0.900000px;}
.wsb5{word-spacing:0.960000px;}
.wsfd{word-spacing:0.969000px;}
.wsd5{word-spacing:1.020000px;}
.ws12a{word-spacing:1.071000px;}
.wsf7{word-spacing:1.080000px;}
.wsc8{word-spacing:1.140000px;}
.ws29{word-spacing:1.200000px;}
.ws82{word-spacing:1.260000px;}
.ws72{word-spacing:1.275000px;}
.wsaf{word-spacing:1.320000px;}
.wsf9{word-spacing:1.377000px;}
.ws2b{word-spacing:1.440000px;}
.wsbc{word-spacing:1.500000px;}
.ws67{word-spacing:1.560000px;}
.ws11d{word-spacing:1.581000px;}
.ws79{word-spacing:1.620000px;}
.ws18{word-spacing:1.680000px;}
.ws65{word-spacing:1.920000px;}
.ws56{word-spacing:1.980000px;}
.ws3c{word-spacing:2.040000px;}
.ws42{word-spacing:2.100000px;}
.ws9a{word-spacing:2.160000px;}
.wsac{word-spacing:2.220000px;}
.ws11f{word-spacing:2.244000px;}
.wsd6{word-spacing:2.280000px;}
.ws103{word-spacing:2.295000px;}
.ws4b{word-spacing:2.340000px;}
.wsff{word-spacing:2.346000px;}
.ws136{word-spacing:2.397000px;}
.ws100{word-spacing:2.448000px;}
.ws3f{word-spacing:2.520000px;}
.wse0{word-spacing:2.640000px;}
.ws4c{word-spacing:2.700000px;}
.wse{word-spacing:2.760000px;}
.ws86{word-spacing:2.820000px;}
.ws77{word-spacing:2.880000px;}
.ws11{word-spacing:2.940000px;}
.wsed{word-spacing:2.958000px;}
.ws38{word-spacing:3.000000px;}
.ws27{word-spacing:3.009000px;}
.ws78{word-spacing:3.060000px;}
.wsbb{word-spacing:3.180000px;}
.ws11a{word-spacing:3.213000px;}
.ws80{word-spacing:3.240000px;}
.wsc5{word-spacing:3.360000px;}
.ws1c{word-spacing:3.420000px;}
.wscd{word-spacing:3.540000px;}
.ws7d{word-spacing:3.600000px;}
.wsca{word-spacing:3.660000px;}
.ws9e{word-spacing:3.840000px;}
.ws134{word-spacing:3.876000px;}
.ws69{word-spacing:3.900000px;}
.wsdb{word-spacing:3.960000px;}
.ws12{word-spacing:4.020000px;}
.wsf5{word-spacing:4.080000px;}
.ws5f{word-spacing:4.140000px;}
.wsd3{word-spacing:4.320000px;}
.ws33{word-spacing:4.380000px;}
.wsba{word-spacing:4.440000px;}
.ws10b{word-spacing:4.488000px;}
.ws23{word-spacing:4.500000px;}
.ws6d{word-spacing:4.560000px;}
.ws44{word-spacing:4.620000px;}
.ws83{word-spacing:4.740000px;}
.ws122{word-spacing:4.743000px;}
.ws119{word-spacing:4.845000px;}
.ws45{word-spacing:4.860000px;}
.ws2a{word-spacing:4.920000px;}
.wsfb{word-spacing:4.947000px;}
.ws16{word-spacing:4.980000px;}
.ws10e{word-spacing:4.998000px;}
.wsa6{word-spacing:5.040000px;}
.ws2d{word-spacing:5.100000px;}
.ws70{word-spacing:5.160000px;}
.ws123{word-spacing:5.202000px;}
.ws54{word-spacing:5.220000px;}
.ws10{word-spacing:5.280000px;}
.wsbe{word-spacing:5.400000px;}
.ws12f{word-spacing:5.406000px;}
.ws39{word-spacing:5.460000px;}
.ws36{word-spacing:5.580000px;}
.wse8{word-spacing:5.610000px;}
.wsb1{word-spacing:5.640000px;}
.ws95{word-spacing:5.700000px;}
.ws10f{word-spacing:5.712000px;}
.ws3e{word-spacing:5.760000px;}
.ws9b{word-spacing:5.763000px;}
.ws5c{word-spacing:5.820000px;}
.ws3a{word-spacing:5.940000px;}
.wsc0{word-spacing:6.000000px;}
.wsa3{word-spacing:6.060000px;}
.ws6f{word-spacing:6.180000px;}
.ws55{word-spacing:6.240000px;}
.ws47{word-spacing:6.300000px;}
.wsf4{word-spacing:6.420000px;}
.ws10d{word-spacing:6.477000px;}
.ws19{word-spacing:6.480000px;}
.ws28{word-spacing:6.540000px;}
.ws7c{word-spacing:6.600000px;}
.ws9d{word-spacing:6.630000px;}
.wsc7{word-spacing:6.660000px;}
.wsf2{word-spacing:6.720000px;}
.ws20{word-spacing:6.780000px;}
.wsfe{word-spacing:6.834000px;}
.wsa5{word-spacing:6.840000px;}
.ws21{word-spacing:6.960000px;}
.ws1f{word-spacing:7.020000px;}
.wsa8{word-spacing:7.140000px;}
.ws106{word-spacing:7.191000px;}
.ws11e{word-spacing:7.446000px;}
.ws124{word-spacing:7.497000px;}
.ws8e{word-spacing:7.500000px;}
.ws109{word-spacing:7.548000px;}
.ws8c{word-spacing:7.560000px;}
.ws2f{word-spacing:7.620000px;}
.ws61{word-spacing:7.680000px;}
.ws58{word-spacing:7.740000px;}
.ws37{word-spacing:7.800000px;}
.wsd8{word-spacing:7.860000px;}
.ws133{word-spacing:7.905000px;}
.wsdc{word-spacing:7.980000px;}
.wsb7{word-spacing:8.040000px;}
.ws120{word-spacing:8.058000px;}
.ws5d{word-spacing:8.100000px;}
.ws1b{word-spacing:8.220000px;}
.wseb{word-spacing:8.313000px;}
.ws22{word-spacing:8.340000px;}
.wscf{word-spacing:8.460000px;}
.ws14{word-spacing:8.520000px;}
.wsc1{word-spacing:8.580000px;}
.wsee{word-spacing:8.640000px;}
.ws121{word-spacing:8.721000px;}
.wsda{word-spacing:8.760000px;}
.wse2{word-spacing:8.820000px;}
.ws107{word-spacing:8.874000px;}
.ws41{word-spacing:8.880000px;}
.ws4f{word-spacing:8.940000px;}
.ws52{word-spacing:9.000000px;}
.ws73{word-spacing:9.060000px;}
.wsef{word-spacing:9.120000px;}
.ws132{word-spacing:9.129000px;}
.ws59{word-spacing:9.180000px;}
.wsd1{word-spacing:9.240000px;}
.wsdd{word-spacing:9.360000px;}
.wsce{word-spacing:9.540000px;}
.ws1d{word-spacing:9.600000px;}
.ws71{word-spacing:9.660000px;}
.wsb9{word-spacing:9.720000px;}
.ws84{word-spacing:9.840000px;}
.ws43{word-spacing:9.900000px;}
.ws12c{word-spacing:10.047000px;}
.wsb8{word-spacing:10.200000px;}
.ws104{word-spacing:10.506000px;}
.wsa1{word-spacing:10.560000px;}
.ws75{word-spacing:10.620000px;}
.wsdf{word-spacing:10.740000px;}
.ws31{word-spacing:10.800000px;}
.ws1e{word-spacing:10.980000px;}
.ws53{word-spacing:11.040000px;}
.wse7{word-spacing:11.118000px;}
.ws127{word-spacing:11.220000px;}
.ws92{word-spacing:11.280000px;}
.wsad{word-spacing:11.460000px;}
.ws68{word-spacing:11.520000px;}
.wsd7{word-spacing:11.700000px;}
.ws9c{word-spacing:11.730000px;}
.ws11b{word-spacing:11.781000px;}
.ws74{word-spacing:11.820000px;}
.ws85{word-spacing:11.880000px;}
.ws50{word-spacing:12.000000px;}
.ws89{word-spacing:12.120000px;}
.ws4e{word-spacing:12.180000px;}
.wsb4{word-spacing:12.360000px;}
.ws4a{word-spacing:12.720000px;}
.ws5b{word-spacing:12.840000px;}
.ws114{word-spacing:12.903000px;}
.wsf1{word-spacing:13.260000px;}
.ws32{word-spacing:13.440000px;}
.wsf6{word-spacing:13.500000px;}
.wsbf{word-spacing:13.620000px;}
.ws108{word-spacing:13.719000px;}
.ws76{word-spacing:13.800000px;}
.wsec{word-spacing:13.821000px;}
.ws96{word-spacing:13.920000px;}
.ws117{word-spacing:13.923000px;}
.wsa9{word-spacing:14.040000px;}
.wsc3{word-spacing:14.100000px;}
.wsf3{word-spacing:14.400000px;}
.ws7f{word-spacing:14.460000px;}
.ws128{word-spacing:14.637000px;}
.ws5a{word-spacing:14.640000px;}
.ws88{word-spacing:15.300000px;}
.ws11c{word-spacing:15.402000px;}
.ws2e{word-spacing:16.140000px;}
.ws34{word-spacing:16.560000px;}
.wsa7{word-spacing:16.920000px;}
.ws3b{word-spacing:17.040000px;}
.wsaa{word-spacing:17.340000px;}
.ws131{word-spacing:17.748000px;}
.ws6e{word-spacing:17.760000px;}
.wsd{word-spacing:18.060000px;}
.ws115{word-spacing:18.156000px;}
.ws63{word-spacing:18.180000px;}
.wsae{word-spacing:18.480000px;}
.ws111{word-spacing:18.768000px;}
.ws8a{word-spacing:19.860000px;}
.ws113{word-spacing:19.941000px;}
.ws135{word-spacing:20.298000px;}
.ws13{word-spacing:20.760000px;}
.ws93{word-spacing:20.880000px;}
.ws30{word-spacing:22.080000px;}
.wse4{word-spacing:23.760000px;}
.ws15{word-spacing:24.060000px;}
.ws137{word-spacing:24.072000px;}
.ws94{word-spacing:27.300000px;}
.ws12b{word-spacing:27.897000px;}
.ws129{word-spacing:28.662000px;}
.wsfc{word-spacing:30.141000px;}
.ws126{word-spacing:32.028000px;}
.ws112{word-spacing:32.487000px;}
.wsb0{word-spacing:38.280000px;}
.ws9{word-spacing:44.321294px;}
.ws8{word-spacing:44.321385px;}
.wsa{word-spacing:44.321477px;}
.wse5{word-spacing:54.468000px;}
.wse6{word-spacing:70.890000px;}
._8{margin-left:-70.498787px;}
._25{margin-left:-59.802859px;}
._24{margin-left:-20.742578px;}
._1d{margin-left:-17.381429px;}
._13{margin-left:-15.600000px;}
._21{margin-left:-14.491238px;}
._11{margin-left:-13.343438px;}
._12{margin-left:-7.527057px;}
._a{margin-left:-5.664000px;}
._6{margin-left:-3.924000px;}
._1{margin-left:-1.989000px;}
._0{width:1.116900px;}
._7{width:2.255100px;}
._5{width:3.963677px;}
._2{width:5.331584px;}
._3{width:6.980416px;}
._4{width:8.436000px;}
._d{width:9.546000px;}
._b{width:11.544000px;}
._1e{width:13.320000px;}
._27{width:14.351400px;}
._c{width:16.362001px;}
._1c{width:17.748577px;}
._e{width:19.266000px;}
._26{width:20.867192px;}
._20{width:22.187997px;}
._1f{width:23.322001px;}
._31{width:24.375299px;}
._22{width:25.403100px;}
._23{width:26.472001px;}
._f{width:27.630000px;}
._10{width:28.659001px;}
._2e{width:29.899199px;}
._2d{width:31.201799px;}
._29{width:32.696099px;}
._30{width:34.241401px;}
._2c{width:35.934599px;}
._2a{width:44.604599px;}
._2f{width:49.189500px;}
._2b{width:51.051000px;}
._9{width:54.416991px;}
._16{width:74.384375px;}
._28{width:80.789099px;}
._1a{width:116.609376px;}
._14{width:122.632230px;}
._17{width:127.880376px;}
._15{width:131.348376px;}
._18{width:169.297230px;}
._1b{width:206.168375px;}
._19{width:228.865230px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.699999px;}
.fs3{font-size:42.000000px;}
.fs1{font-size:51.000000px;}
.fs0{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs6{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y36{bottom:60.997650px;}
.y1e{bottom:110.551048px;}
.y83{bottom:110.551197px;}
.y81{bottom:114.803100px;}
.ye6{bottom:115.458904px;}
.ya4{bottom:119.799145px;}
.y15{bottom:124.299145px;}
.y11d{bottom:125.235603px;}
.y82{bottom:125.551197px;}
.ye5{bottom:130.458904px;}
.y1d{bottom:130.651050px;}
.y80{bottom:132.147446px;}
.ya3{bottom:134.799145px;}
.y11c{bottom:140.235603px;}
.y14{bottom:143.049145px;}
.ye4{bottom:145.458904px;}
.y7f{bottom:147.147446px;}
.y1c{bottom:148.051048px;}
.ya2{bottom:149.799145px;}
.y11b{bottom:155.235603px;}
.ye3{bottom:160.458904px;}
.y13{bottom:161.799145px;}
.y1b{bottom:163.051048px;}
.y7e{bottom:164.492249px;}
.ya1{bottom:164.799145px;}
.y11a{bottom:170.235603px;}
.ye2{bottom:175.458904px;}
.y1a{bottom:178.051048px;}
.y7d{bottom:179.492249px;}
.ya0{bottom:179.799145px;}
.y12{bottom:180.549145px;}
.y119{bottom:185.235603px;}
.ye1{bottom:190.458904px;}
.y19{bottom:193.051048px;}
.y7c{bottom:194.492249px;}
.y9f{bottom:194.799156px;}
.y11{bottom:199.299156px;}
.y118{bottom:200.235603px;}
.ye0{bottom:205.458893px;}
.y7b{bottom:209.492249px;}
.y18{bottom:213.151039px;}
.y117{bottom:215.235603px;}
.y10{bottom:218.049156px;}
.ydf{bottom:220.458893px;}
.y7a{bottom:224.492249px;}
.y9e{bottom:227.799156px;}
.y116{bottom:230.235603px;}
.yde{bottom:235.458893px;}
.yf{bottom:236.799156px;}
.y17{bottom:238.051048px;}
.y79{bottom:239.492249px;}
.y9d{bottom:242.799156px;}
.y115{bottom:245.235603px;}
.ydd{bottom:250.458893px;}
.y16{bottom:253.051048px;}
.ye{bottom:255.549156px;}
.y78{bottom:256.837050px;}
.y9c{bottom:257.799156px;}
.y114{bottom:260.235603px;}
.ydc{bottom:265.458893px;}
.y77{bottom:271.837050px;}
.y9b{bottom:272.799156px;}
.yd{bottom:274.299156px;}
.y64{bottom:274.629295px;}
.y113{bottom:275.235603px;}
.ydb{bottom:280.458893px;}
.y9a{bottom:287.799156px;}
.y76{bottom:289.181854px;}
.y63{bottom:289.629295px;}
.y112{bottom:290.235603px;}
.yc{bottom:293.049156px;}
.yda{bottom:295.458893px;}
.y99{bottom:302.799156px;}
.y62{bottom:304.629295px;}
.y111{bottom:305.235603px;}
.y75{bottom:306.526657px;}
.yd9{bottom:310.458893px;}
.yb{bottom:311.799156px;}
.y98{bottom:317.799156px;}
.y61{bottom:319.629295px;}
.y110{bottom:320.235603px;}
.y74{bottom:321.526657px;}
.yd8{bottom:325.458893px;}
.ya{bottom:330.549156px;}
.y60{bottom:334.629295px;}
.y10f{bottom:335.235603px;}
.y73{bottom:336.526657px;}
.yd7{bottom:340.458893px;}
.y9{bottom:349.299156px;}
.y5f{bottom:349.629295px;}
.y10e{bottom:350.235603px;}
.y97{bottom:350.799156px;}
.y72{bottom:351.526657px;}
.yd6{bottom:355.458893px;}
.y5e{bottom:364.629295px;}
.y10d{bottom:365.235603px;}
.y96{bottom:365.799156px;}
.y8{bottom:368.049156px;}
.y71{bottom:368.871460px;}
.yd5{bottom:370.458893px;}
.y5d{bottom:379.629295px;}
.y10c{bottom:380.235603px;}
.y95{bottom:380.799156px;}
.y70{bottom:383.871460px;}
.yd4{bottom:385.458893px;}
.y7{bottom:386.799133px;}
.y5c{bottom:394.629318px;}
.y10b{bottom:395.235580px;}
.y94{bottom:395.799133px;}
.y6f{bottom:398.871460px;}
.yd3{bottom:400.458893px;}
.y6{bottom:405.549133px;}
.y5b{bottom:409.629318px;}
.y10a{bottom:410.235580px;}
.y93{bottom:410.799133px;}
.yd2{bottom:415.458893px;}
.y6e{bottom:416.216263px;}
.y65{bottom:421.711349px;}
.y5{bottom:424.299133px;}
.y5a{bottom:424.629318px;}
.y109{bottom:425.235580px;}
.y92{bottom:425.799133px;}
.yd1{bottom:430.458893px;}
.y6d{bottom:431.216263px;}
.y108{bottom:440.235580px;}
.y91{bottom:440.799133px;}
.y4{bottom:443.049133px;}
.yd0{bottom:445.458893px;}
.y6c{bottom:446.216263px;}
.y107{bottom:455.235580px;}
.ycf{bottom:460.458893px;}
.y6b{bottom:461.216263px;}
.y59{bottom:461.799133px;}
.y106{bottom:470.235580px;}
.y90{bottom:473.799133px;}
.yce{bottom:475.458893px;}
.y6a{bottom:476.216263px;}
.y58{bottom:480.549133px;}
.y105{bottom:485.235580px;}
.y8f{bottom:488.799133px;}
.ycd{bottom:490.458893px;}
.y69{bottom:491.216263px;}
.y2f{bottom:495.612579px;}
.y57{bottom:499.299133px;}
.y104{bottom:500.235580px;}
.y8e{bottom:503.799133px;}
.ycc{bottom:505.458893px;}
.y68{bottom:506.216263px;}
.y103{bottom:515.235580px;}
.y56{bottom:518.049133px;}
.ycb{bottom:520.458893px;}
.y67{bottom:524.304611px;}
.y102{bottom:530.235580px;}
.y2e{bottom:532.362579px;}
.yca{bottom:535.458893px;}
.y55{bottom:536.799133px;}
.y66{bottom:541.648819px;}
.y101{bottom:545.235580px;}
.yc9{bottom:550.458893px;}
.y2d{bottom:551.112579px;}
.y54{bottom:555.549133px;}
.y100{bottom:560.235580px;}
.yc8{bottom:565.458893px;}
.y2c{bottom:569.862579px;}
.y84{bottom:574.074142px;}
.y53{bottom:574.299133px;}
.yff{bottom:575.235580px;}
.yc7{bottom:580.458893px;}
.y8d{bottom:583.094238px;}
.y2b{bottom:588.612579px;}
.yfe{bottom:590.235580px;}
.y52{bottom:593.049133px;}
.yc6{bottom:595.458893px;}
.y8c{bottom:598.094238px;}
.yfd{bottom:605.235580px;}
.y2a{bottom:607.362579px;}
.yc5{bottom:610.458893px;}
.y51{bottom:611.799133px;}
.y8b{bottom:613.094238px;}
.yfc{bottom:620.235580px;}
.y86{bottom:620.415894px;}
.yc4{bottom:625.458893px;}
.y29{bottom:626.112579px;}
.y8a{bottom:628.094238px;}
.y50{bottom:630.549133px;}
.yfb{bottom:635.235580px;}
.y85{bottom:635.415894px;}
.yc3{bottom:640.458893px;}
.y89{bottom:643.094238px;}
.y28{bottom:644.862579px;}
.y4f{bottom:649.299133px;}
.yfa{bottom:650.235580px;}
.yc2{bottom:655.458893px;}
.y88{bottom:658.094238px;}
.y27{bottom:663.612579px;}
.y4e{bottom:668.049133px;}
.yc1{bottom:670.458893px;}
.y26{bottom:682.362579px;}
.yf9{bottom:683.985580px;}
.yc0{bottom:685.458893px;}
.y4d{bottom:686.799133px;}
.ybf{bottom:700.458893px;}
.y25{bottom:701.112762px;}
.y4c{bottom:705.549133px;}
.ybe{bottom:715.458893px;}
.y24{bottom:719.862762px;}
.y4b{bottom:724.299133px;}
.ybd{bottom:730.458893px;}
.y23{bottom:738.612762px;}
.yf8{bottom:740.235580px;}
.y4a{bottom:743.049133px;}
.ybc{bottom:745.458893px;}
.yf7{bottom:755.235580px;}
.y22{bottom:757.362762px;}
.ybb{bottom:760.458893px;}
.y49{bottom:761.799133px;}
.yf6{bottom:770.235626px;}
.yba{bottom:775.458893px;}
.y21{bottom:776.112579px;}
.y48{bottom:780.549133px;}
.yf5{bottom:785.235626px;}
.yb9{bottom:790.458893px;}
.y20{bottom:794.862579px;}
.y47{bottom:799.299133px;}
.yf4{bottom:800.235626px;}
.yb8{bottom:805.458893px;}
.y1f{bottom:813.612579px;}
.yf3{bottom:815.235626px;}
.y46{bottom:818.049133px;}
.yb7{bottom:820.458893px;}
.yf2{bottom:830.235626px;}
.yb6{bottom:835.458893px;}
.y45{bottom:836.799133px;}
.yf1{bottom:845.235626px;}
.yb5{bottom:850.458893px;}
.y44{bottom:855.549133px;}
.y31{bottom:858.878357px;}
.yf0{bottom:860.235626px;}
.yb4{bottom:865.458893px;}
.y30{bottom:873.878357px;}
.y43{bottom:874.299133px;}
.yef{bottom:875.235626px;}
.yb3{bottom:880.458893px;}
.yee{bottom:890.235626px;}
.y42{bottom:893.049133px;}
.yb2{bottom:895.458893px;}
.yed{bottom:905.235626px;}
.yb1{bottom:910.458893px;}
.y41{bottom:911.799133px;}
.y35{bottom:917.456726px;}
.yec{bottom:920.235626px;}
.yb0{bottom:925.458893px;}
.y40{bottom:930.549133px;}
.y34{bottom:936.206726px;}
.yaf{bottom:940.458893px;}
.y3f{bottom:949.299133px;}
.yeb{bottom:953.235626px;}
.yae{bottom:955.458893px;}
.y11f{bottom:967.458893px;}
.y3e{bottom:968.049133px;}
.yad{bottom:970.458893px;}
.y33{bottom:980.043274px;}
.y11e{bottom:982.458893px;}
.yac{bottom:985.458893px;}
.yea{bottom:986.235626px;}
.y3d{bottom:986.799133px;}
.yab{bottom:1000.458893px;}
.y3c{bottom:1005.549133px;}
.y32{bottom:1007.043274px;}
.yaa{bottom:1015.458893px;}
.ye9{bottom:1019.235626px;}
.y3b{bottom:1024.299133px;}
.ya9{bottom:1030.458893px;}
.y3a{bottom:1043.049133px;}
.ya8{bottom:1045.458893px;}
.ye8{bottom:1052.235626px;}
.ya7{bottom:1060.458893px;}
.y39{bottom:1061.799133px;}
.y1{bottom:1075.294006px;}
.ya6{bottom:1075.458893px;}
.y38{bottom:1080.549133px;}
.y87{bottom:1086.818665px;}
.ye7{bottom:1089.736633px;}
.ya5{bottom:1090.458893px;}
.y3{bottom:1109.543884px;}
.y37{bottom:1125.713104px;}
.y2{bottom:1126.031982px;}
.ha{height:24.805224px;}
.h15{height:35.411133px;}
.h9{height:35.436035px;}
.h8{height:36.855469px;}
.h4{height:41.689453px;}
.hb{height:44.749512px;}
.h3{height:48.297000px;}
.h11{height:49.113000px;}
.h12{height:50.027344px;}
.h14{height:50.439000px;}
.h5{height:52.646484px;}
.h6{height:53.182617px;}
.h2{height:55.404000px;}
.hd{height:57.780000px;}
.hc{height:59.340000px;}
.h13{height:64.680000px;}
.hf{height:64.824000px;}
.h7{height:71.208000px;}
.h10{height:72.000000px;}
.he{height:92.448000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535402px;}
.x1{left:85.181849px;}
.x5{left:90.972599px;}
.x9{left:93.543303px;}
.x6{left:97.795200px;}
.xe{left:102.047253px;}
.xa{left:178.350746px;}
.xb{left:295.759804px;}
.x3{left:459.850342px;}
.x4{left:476.858231px;}
.xd{left:484.724396px;}
.x8{left:506.879562px;}
.x7{left:755.658737px;}
.xc{left:792.153625px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.v3{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls4{letter-spacing:-1.973333pt;}
.ls3{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000033pt;}
.ls7{letter-spacing:0.000091pt;}
.ls6{letter-spacing:0.000195pt;}
.ls8{letter-spacing:0.000579pt;}
.lsa{letter-spacing:3.382406pt;}
.ls0{letter-spacing:3.546667pt;}
.ls9{letter-spacing:13.962667pt;}
.ls1{letter-spacing:24.273059pt;}
.ws125{word-spacing:-45.333333pt;}
.ws1{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.928000pt;}
.ws26{word-spacing:-11.360000pt;}
.ws49{word-spacing:-11.333333pt;}
.wsf8{word-spacing:-11.088000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.773333pt;}
.ws6{word-spacing:-10.240000pt;}
.ws2{word-spacing:-9.333333pt;}
.ws0{word-spacing:-8.885333pt;}
.wse1{word-spacing:-8.704000pt;}
.ws4{word-spacing:-7.933333pt;}
.ws5e{word-spacing:-6.666667pt;}
.ws116{word-spacing:-5.802667pt;}
.ws62{word-spacing:-4.533333pt;}
.wsb6{word-spacing:-4.266667pt;}
.wsab{word-spacing:-3.893333pt;}
.wsd0{word-spacing:-3.306667pt;}
.ws12e{word-spacing:-3.037333pt;}
.ws98{word-spacing:-2.986667pt;}
.wsb3{word-spacing:-2.826667pt;}
.ws8f{word-spacing:-2.773333pt;}
.ws102{word-spacing:-2.765333pt;}
.ws60{word-spacing:-2.720000pt;}
.ws6c{word-spacing:-2.613333pt;}
.wsc4{word-spacing:-2.560000pt;}
.wsde{word-spacing:-2.400000pt;}
.wsc9{word-spacing:-2.346667pt;}
.ws1a{word-spacing:-2.293333pt;}
.wsc2{word-spacing:-2.186667pt;}
.ws97{word-spacing:-2.133333pt;}
.ws87{word-spacing:-2.080000pt;}
.wsbd{word-spacing:-2.026667pt;}
.ws105{word-spacing:-1.994667pt;}
.ws90{word-spacing:-1.973333pt;}
.wsd4{word-spacing:-1.920000pt;}
.ws91{word-spacing:-1.866667pt;}
.ws64{word-spacing:-1.813333pt;}
.ws99{word-spacing:-1.760000pt;}
.ws130{word-spacing:-1.722667pt;}
.wsfa{word-spacing:-1.677333pt;}
.ws51{word-spacing:-1.653333pt;}
.ws9f{word-spacing:-1.546667pt;}
.ws7b{word-spacing:-1.386667pt;}
.ws118{word-spacing:-1.314667pt;}
.ws110{word-spacing:-1.178667pt;}
.ws81{word-spacing:-1.173333pt;}
.ws101{word-spacing:-1.133333pt;}
.wsc6{word-spacing:-1.013333pt;}
.ws7e{word-spacing:-0.960000pt;}
.wscb{word-spacing:-0.853333pt;}
.ws66{word-spacing:-0.746667pt;}
.ws35{word-spacing:-0.693333pt;}
.wsa2{word-spacing:-0.640000pt;}
.wsd9{word-spacing:-0.533333pt;}
.wsb{word-spacing:-0.506667pt;}
.ws6b{word-spacing:-0.480000pt;}
.wsf{word-spacing:-0.426667pt;}
.ws7a{word-spacing:-0.373333pt;}
.ws8b{word-spacing:-0.272000pt;}
.ws3d{word-spacing:-0.266667pt;}
.wsa0{word-spacing:-0.213333pt;}
.wscc{word-spacing:-0.160000pt;}
.ws12d{word-spacing:-0.136000pt;}
.ws17{word-spacing:-0.106667pt;}
.ws24{word-spacing:-0.053333pt;}
.wsc{word-spacing:0.000000pt;}
.ws25{word-spacing:0.053333pt;}
.ws40{word-spacing:0.106667pt;}
.ws2c{word-spacing:0.160000pt;}
.wsb2{word-spacing:0.213333pt;}
.wsa4{word-spacing:0.266667pt;}
.ws4d{word-spacing:0.373333pt;}
.ws8d{word-spacing:0.426667pt;}
.wse9{word-spacing:0.453333pt;}
.wsf0{word-spacing:0.480000pt;}
.ws10a{word-spacing:0.498667pt;}
.ws6a{word-spacing:0.533333pt;}
.ws10c{word-spacing:0.544000pt;}
.ws48{word-spacing:0.586667pt;}
.wsea{word-spacing:0.634667pt;}
.ws57{word-spacing:0.640000pt;}
.wse3{word-spacing:0.693333pt;}
.ws46{word-spacing:0.746667pt;}
.wsd2{word-spacing:0.800000pt;}
.wsb5{word-spacing:0.853333pt;}
.wsfd{word-spacing:0.861333pt;}
.wsd5{word-spacing:0.906667pt;}
.ws12a{word-spacing:0.952000pt;}
.wsf7{word-spacing:0.960000pt;}
.wsc8{word-spacing:1.013333pt;}
.ws29{word-spacing:1.066667pt;}
.ws82{word-spacing:1.120000pt;}
.ws72{word-spacing:1.133333pt;}
.wsaf{word-spacing:1.173333pt;}
.wsf9{word-spacing:1.224000pt;}
.ws2b{word-spacing:1.280000pt;}
.wsbc{word-spacing:1.333333pt;}
.ws67{word-spacing:1.386667pt;}
.ws11d{word-spacing:1.405333pt;}
.ws79{word-spacing:1.440000pt;}
.ws18{word-spacing:1.493333pt;}
.ws65{word-spacing:1.706667pt;}
.ws56{word-spacing:1.760000pt;}
.ws3c{word-spacing:1.813333pt;}
.ws42{word-spacing:1.866667pt;}
.ws9a{word-spacing:1.920000pt;}
.wsac{word-spacing:1.973333pt;}
.ws11f{word-spacing:1.994667pt;}
.wsd6{word-spacing:2.026667pt;}
.ws103{word-spacing:2.040000pt;}
.ws4b{word-spacing:2.080000pt;}
.wsff{word-spacing:2.085333pt;}
.ws136{word-spacing:2.130667pt;}
.ws100{word-spacing:2.176000pt;}
.ws3f{word-spacing:2.240000pt;}
.wse0{word-spacing:2.346667pt;}
.ws4c{word-spacing:2.400000pt;}
.wse{word-spacing:2.453333pt;}
.ws86{word-spacing:2.506667pt;}
.ws77{word-spacing:2.560000pt;}
.ws11{word-spacing:2.613333pt;}
.wsed{word-spacing:2.629333pt;}
.ws38{word-spacing:2.666667pt;}
.ws27{word-spacing:2.674667pt;}
.ws78{word-spacing:2.720000pt;}
.wsbb{word-spacing:2.826667pt;}
.ws11a{word-spacing:2.856000pt;}
.ws80{word-spacing:2.880000pt;}
.wsc5{word-spacing:2.986667pt;}
.ws1c{word-spacing:3.040000pt;}
.wscd{word-spacing:3.146667pt;}
.ws7d{word-spacing:3.200000pt;}
.wsca{word-spacing:3.253333pt;}
.ws9e{word-spacing:3.413333pt;}
.ws134{word-spacing:3.445333pt;}
.ws69{word-spacing:3.466667pt;}
.wsdb{word-spacing:3.520000pt;}
.ws12{word-spacing:3.573333pt;}
.wsf5{word-spacing:3.626667pt;}
.ws5f{word-spacing:3.680000pt;}
.wsd3{word-spacing:3.840000pt;}
.ws33{word-spacing:3.893333pt;}
.wsba{word-spacing:3.946667pt;}
.ws10b{word-spacing:3.989333pt;}
.ws23{word-spacing:4.000000pt;}
.ws6d{word-spacing:4.053333pt;}
.ws44{word-spacing:4.106667pt;}
.ws83{word-spacing:4.213333pt;}
.ws122{word-spacing:4.216000pt;}
.ws119{word-spacing:4.306667pt;}
.ws45{word-spacing:4.320000pt;}
.ws2a{word-spacing:4.373333pt;}
.wsfb{word-spacing:4.397333pt;}
.ws16{word-spacing:4.426667pt;}
.ws10e{word-spacing:4.442667pt;}
.wsa6{word-spacing:4.480000pt;}
.ws2d{word-spacing:4.533333pt;}
.ws70{word-spacing:4.586667pt;}
.ws123{word-spacing:4.624000pt;}
.ws54{word-spacing:4.640000pt;}
.ws10{word-spacing:4.693333pt;}
.wsbe{word-spacing:4.800000pt;}
.ws12f{word-spacing:4.805333pt;}
.ws39{word-spacing:4.853333pt;}
.ws36{word-spacing:4.960000pt;}
.wse8{word-spacing:4.986667pt;}
.wsb1{word-spacing:5.013333pt;}
.ws95{word-spacing:5.066667pt;}
.ws10f{word-spacing:5.077333pt;}
.ws3e{word-spacing:5.120000pt;}
.ws9b{word-spacing:5.122667pt;}
.ws5c{word-spacing:5.173333pt;}
.ws3a{word-spacing:5.280000pt;}
.wsc0{word-spacing:5.333333pt;}
.wsa3{word-spacing:5.386667pt;}
.ws6f{word-spacing:5.493333pt;}
.ws55{word-spacing:5.546667pt;}
.ws47{word-spacing:5.600000pt;}
.wsf4{word-spacing:5.706667pt;}
.ws10d{word-spacing:5.757333pt;}
.ws19{word-spacing:5.760000pt;}
.ws28{word-spacing:5.813333pt;}
.ws7c{word-spacing:5.866667pt;}
.ws9d{word-spacing:5.893333pt;}
.wsc7{word-spacing:5.920000pt;}
.wsf2{word-spacing:5.973333pt;}
.ws20{word-spacing:6.026667pt;}
.wsfe{word-spacing:6.074667pt;}
.wsa5{word-spacing:6.080000pt;}
.ws21{word-spacing:6.186667pt;}
.ws1f{word-spacing:6.240000pt;}
.wsa8{word-spacing:6.346667pt;}
.ws106{word-spacing:6.392000pt;}
.ws11e{word-spacing:6.618667pt;}
.ws124{word-spacing:6.664000pt;}
.ws8e{word-spacing:6.666667pt;}
.ws109{word-spacing:6.709333pt;}
.ws8c{word-spacing:6.720000pt;}
.ws2f{word-spacing:6.773333pt;}
.ws61{word-spacing:6.826667pt;}
.ws58{word-spacing:6.880000pt;}
.ws37{word-spacing:6.933333pt;}
.wsd8{word-spacing:6.986667pt;}
.ws133{word-spacing:7.026667pt;}
.wsdc{word-spacing:7.093333pt;}
.wsb7{word-spacing:7.146667pt;}
.ws120{word-spacing:7.162667pt;}
.ws5d{word-spacing:7.200000pt;}
.ws1b{word-spacing:7.306667pt;}
.wseb{word-spacing:7.389333pt;}
.ws22{word-spacing:7.413333pt;}
.wscf{word-spacing:7.520000pt;}
.ws14{word-spacing:7.573333pt;}
.wsc1{word-spacing:7.626667pt;}
.wsee{word-spacing:7.680000pt;}
.ws121{word-spacing:7.752000pt;}
.wsda{word-spacing:7.786667pt;}
.wse2{word-spacing:7.840000pt;}
.ws107{word-spacing:7.888000pt;}
.ws41{word-spacing:7.893333pt;}
.ws4f{word-spacing:7.946667pt;}
.ws52{word-spacing:8.000000pt;}
.ws73{word-spacing:8.053333pt;}
.wsef{word-spacing:8.106667pt;}
.ws132{word-spacing:8.114667pt;}
.ws59{word-spacing:8.160000pt;}
.wsd1{word-spacing:8.213333pt;}
.wsdd{word-spacing:8.320000pt;}
.wsce{word-spacing:8.480000pt;}
.ws1d{word-spacing:8.533333pt;}
.ws71{word-spacing:8.586667pt;}
.wsb9{word-spacing:8.640000pt;}
.ws84{word-spacing:8.746667pt;}
.ws43{word-spacing:8.800000pt;}
.ws12c{word-spacing:8.930667pt;}
.wsb8{word-spacing:9.066667pt;}
.ws104{word-spacing:9.338667pt;}
.wsa1{word-spacing:9.386667pt;}
.ws75{word-spacing:9.440000pt;}
.wsdf{word-spacing:9.546667pt;}
.ws31{word-spacing:9.600000pt;}
.ws1e{word-spacing:9.760000pt;}
.ws53{word-spacing:9.813333pt;}
.wse7{word-spacing:9.882667pt;}
.ws127{word-spacing:9.973333pt;}
.ws92{word-spacing:10.026667pt;}
.wsad{word-spacing:10.186667pt;}
.ws68{word-spacing:10.240000pt;}
.wsd7{word-spacing:10.400000pt;}
.ws9c{word-spacing:10.426667pt;}
.ws11b{word-spacing:10.472000pt;}
.ws74{word-spacing:10.506667pt;}
.ws85{word-spacing:10.560000pt;}
.ws50{word-spacing:10.666667pt;}
.ws89{word-spacing:10.773333pt;}
.ws4e{word-spacing:10.826667pt;}
.wsb4{word-spacing:10.986667pt;}
.ws4a{word-spacing:11.306667pt;}
.ws5b{word-spacing:11.413333pt;}
.ws114{word-spacing:11.469333pt;}
.wsf1{word-spacing:11.786667pt;}
.ws32{word-spacing:11.946667pt;}
.wsf6{word-spacing:12.000000pt;}
.wsbf{word-spacing:12.106667pt;}
.ws108{word-spacing:12.194667pt;}
.ws76{word-spacing:12.266667pt;}
.wsec{word-spacing:12.285333pt;}
.ws96{word-spacing:12.373333pt;}
.ws117{word-spacing:12.376000pt;}
.wsa9{word-spacing:12.480000pt;}
.wsc3{word-spacing:12.533333pt;}
.wsf3{word-spacing:12.800000pt;}
.ws7f{word-spacing:12.853333pt;}
.ws128{word-spacing:13.010667pt;}
.ws5a{word-spacing:13.013333pt;}
.ws88{word-spacing:13.600000pt;}
.ws11c{word-spacing:13.690667pt;}
.ws2e{word-spacing:14.346667pt;}
.ws34{word-spacing:14.720000pt;}
.wsa7{word-spacing:15.040000pt;}
.ws3b{word-spacing:15.146667pt;}
.wsaa{word-spacing:15.413333pt;}
.ws131{word-spacing:15.776000pt;}
.ws6e{word-spacing:15.786667pt;}
.wsd{word-spacing:16.053333pt;}
.ws115{word-spacing:16.138667pt;}
.ws63{word-spacing:16.160000pt;}
.wsae{word-spacing:16.426667pt;}
.ws111{word-spacing:16.682667pt;}
.ws8a{word-spacing:17.653333pt;}
.ws113{word-spacing:17.725333pt;}
.ws135{word-spacing:18.042667pt;}
.ws13{word-spacing:18.453333pt;}
.ws93{word-spacing:18.560000pt;}
.ws30{word-spacing:19.626667pt;}
.wse4{word-spacing:21.120000pt;}
.ws15{word-spacing:21.386667pt;}
.ws137{word-spacing:21.397333pt;}
.ws94{word-spacing:24.266667pt;}
.ws12b{word-spacing:24.797333pt;}
.ws129{word-spacing:25.477333pt;}
.wsfc{word-spacing:26.792000pt;}
.ws126{word-spacing:28.469333pt;}
.ws112{word-spacing:28.877333pt;}
.wsb0{word-spacing:34.026667pt;}
.ws9{word-spacing:39.396706pt;}
.ws8{word-spacing:39.396787pt;}
.wsa{word-spacing:39.396868pt;}
.wse5{word-spacing:48.416000pt;}
.wse6{word-spacing:63.013333pt;}
._8{margin-left:-62.665588pt;}
._25{margin-left:-53.158097pt;}
._24{margin-left:-18.437847pt;}
._1d{margin-left:-15.450159pt;}
._13{margin-left:-13.866667pt;}
._21{margin-left:-12.881100pt;}
._11{margin-left:-11.860833pt;}
._12{margin-left:-6.690717pt;}
._a{margin-left:-5.034667pt;}
._6{margin-left:-3.488000pt;}
._1{margin-left:-1.768000pt;}
._0{width:0.992800pt;}
._7{width:2.004533pt;}
._5{width:3.523268pt;}
._2{width:4.739186pt;}
._3{width:6.204814pt;}
._4{width:7.498667pt;}
._d{width:8.485334pt;}
._b{width:10.261333pt;}
._1e{width:11.840000pt;}
._27{width:12.756800pt;}
._c{width:14.544001pt;}
._1c{width:15.776513pt;}
._e{width:17.125334pt;}
._26{width:18.548615pt;}
._20{width:19.722664pt;}
._1f{width:20.730667pt;}
._31{width:21.666933pt;}
._22{width:22.580534pt;}
._23{width:23.530667pt;}
._f{width:24.560000pt;}
._10{width:25.474668pt;}
._2e{width:26.577066pt;}
._2d{width:27.734933pt;}
._29{width:29.063199pt;}
._30{width:30.436801pt;}
._2c{width:31.941866pt;}
._2a{width:39.648532pt;}
._2f{width:43.724000pt;}
._2b{width:45.378667pt;}
._9{width:48.370659pt;}
._16{width:66.119445pt;}
._28{width:71.812532pt;}
._1a{width:103.652778pt;}
._14{width:109.006427pt;}
._17{width:113.671445pt;}
._15{width:116.754112pt;}
._18{width:150.486427pt;}
._1b{width:183.260778pt;}
._19{width:203.435760pt;}
.fs5{font-size:31.733332pt;}
.fs3{font-size:37.333333pt;}
.fs1{font-size:45.333333pt;}
.fs0{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs6{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:54.220133pt;}
.y1e{bottom:98.267598pt;}
.y83{bottom:98.267731pt;}
.y81{bottom:102.047200pt;}
.ye6{bottom:102.630137pt;}
.ya4{bottom:106.488129pt;}
.y15{bottom:110.488129pt;}
.y11d{bottom:111.320536pt;}
.y82{bottom:111.601064pt;}
.ye5{bottom:115.963470pt;}
.y1d{bottom:116.134267pt;}
.y80{bottom:117.464396pt;}
.ya3{bottom:119.821462pt;}
.y11c{bottom:124.653870pt;}
.y14{bottom:127.154795pt;}
.ye4{bottom:129.296804pt;}
.y7f{bottom:130.797729pt;}
.y1c{bottom:131.600932pt;}
.ya2{bottom:133.154795pt;}
.y11b{bottom:137.987203pt;}
.ye3{bottom:142.630137pt;}
.y13{bottom:143.821462pt;}
.y1b{bottom:144.934265pt;}
.y7e{bottom:146.215332pt;}
.ya1{bottom:146.488129pt;}
.y11a{bottom:151.320536pt;}
.ye2{bottom:155.963470pt;}
.y1a{bottom:158.267598pt;}
.y7d{bottom:159.548665pt;}
.ya0{bottom:159.821462pt;}
.y12{bottom:160.488129pt;}
.y119{bottom:164.653870pt;}
.ye1{bottom:169.296804pt;}
.y19{bottom:171.600932pt;}
.y7c{bottom:172.881999pt;}
.y9f{bottom:173.154805pt;}
.y11{bottom:177.154805pt;}
.y118{bottom:177.987203pt;}
.ye0{bottom:182.630127pt;}
.y7b{bottom:186.215332pt;}
.y18{bottom:189.467590pt;}
.y117{bottom:191.320536pt;}
.y10{bottom:193.821472pt;}
.ydf{bottom:195.963460pt;}
.y7a{bottom:199.548665pt;}
.y9e{bottom:202.488139pt;}
.y116{bottom:204.653870pt;}
.yde{bottom:209.296794pt;}
.yf{bottom:210.488139pt;}
.y17{bottom:211.600932pt;}
.y79{bottom:212.881999pt;}
.y9d{bottom:215.821472pt;}
.y115{bottom:217.987203pt;}
.ydd{bottom:222.630127pt;}
.y16{bottom:224.934265pt;}
.ye{bottom:227.154805pt;}
.y78{bottom:228.299600pt;}
.y9c{bottom:229.154805pt;}
.y114{bottom:231.320536pt;}
.ydc{bottom:235.963460pt;}
.y77{bottom:241.632933pt;}
.y9b{bottom:242.488139pt;}
.yd{bottom:243.821472pt;}
.y64{bottom:244.114929pt;}
.y113{bottom:244.653870pt;}
.ydb{bottom:249.296794pt;}
.y9a{bottom:255.821472pt;}
.y76{bottom:257.050537pt;}
.y63{bottom:257.448263pt;}
.y112{bottom:257.987203pt;}
.yc{bottom:260.488139pt;}
.yda{bottom:262.630127pt;}
.y99{bottom:269.154805pt;}
.y62{bottom:270.781596pt;}
.y111{bottom:271.320536pt;}
.y75{bottom:272.468140pt;}
.yd9{bottom:275.963460pt;}
.yb{bottom:277.154805pt;}
.y98{bottom:282.488139pt;}
.y61{bottom:284.114929pt;}
.y110{bottom:284.653870pt;}
.y74{bottom:285.801473pt;}
.yd8{bottom:289.296794pt;}
.ya{bottom:293.821472pt;}
.y60{bottom:297.448263pt;}
.y10f{bottom:297.987203pt;}
.y73{bottom:299.134806pt;}
.yd7{bottom:302.630127pt;}
.y9{bottom:310.488139pt;}
.y5f{bottom:310.781596pt;}
.y10e{bottom:311.320536pt;}
.y97{bottom:311.821472pt;}
.y72{bottom:312.468140pt;}
.yd6{bottom:315.963460pt;}
.y5e{bottom:324.114929pt;}
.y10d{bottom:324.653870pt;}
.y96{bottom:325.154805pt;}
.y8{bottom:327.154805pt;}
.y71{bottom:327.885742pt;}
.yd5{bottom:329.296794pt;}
.y5d{bottom:337.448263pt;}
.y10c{bottom:337.987203pt;}
.y95{bottom:338.488139pt;}
.y70{bottom:341.219076pt;}
.yd4{bottom:342.630127pt;}
.y7{bottom:343.821452pt;}
.y5c{bottom:350.781616pt;}
.y10b{bottom:351.320516pt;}
.y94{bottom:351.821452pt;}
.y6f{bottom:354.552409pt;}
.yd3{bottom:355.963460pt;}
.y6{bottom:360.488118pt;}
.y5b{bottom:364.114950pt;}
.y10a{bottom:364.653849pt;}
.y93{bottom:365.154785pt;}
.yd2{bottom:369.296794pt;}
.y6e{bottom:369.970011pt;}
.y65{bottom:374.854533pt;}
.y5{bottom:377.154785pt;}
.y5a{bottom:377.448283pt;}
.y109{bottom:377.987183pt;}
.y92{bottom:378.488118pt;}
.yd1{bottom:382.630127pt;}
.y6d{bottom:383.303345pt;}
.y108{bottom:391.320516pt;}
.y91{bottom:391.821452pt;}
.y4{bottom:393.821452pt;}
.yd0{bottom:395.963460pt;}
.y6c{bottom:396.636678pt;}
.y107{bottom:404.653849pt;}
.ycf{bottom:409.296794pt;}
.y6b{bottom:409.970011pt;}
.y59{bottom:410.488118pt;}
.y106{bottom:417.987183pt;}
.y90{bottom:421.154785pt;}
.yce{bottom:422.630127pt;}
.y6a{bottom:423.303345pt;}
.y58{bottom:427.154785pt;}
.y105{bottom:431.320516pt;}
.y8f{bottom:434.488118pt;}
.ycd{bottom:435.963460pt;}
.y69{bottom:436.636678pt;}
.y2f{bottom:440.544515pt;}
.y57{bottom:443.821452pt;}
.y104{bottom:444.653849pt;}
.y8e{bottom:447.821452pt;}
.ycc{bottom:449.296794pt;}
.y68{bottom:449.970011pt;}
.y103{bottom:457.987183pt;}
.y56{bottom:460.488118pt;}
.ycb{bottom:462.630127pt;}
.y67{bottom:466.048543pt;}
.y102{bottom:471.320516pt;}
.y2e{bottom:473.211182pt;}
.yca{bottom:475.963460pt;}
.y55{bottom:477.154785pt;}
.y66{bottom:481.465617pt;}
.y101{bottom:484.653849pt;}
.yc9{bottom:489.296794pt;}
.y2d{bottom:489.877848pt;}
.y54{bottom:493.821452pt;}
.y100{bottom:497.987183pt;}
.yc8{bottom:502.630127pt;}
.y2c{bottom:506.544515pt;}
.y84{bottom:510.288127pt;}
.y53{bottom:510.488118pt;}
.yff{bottom:511.320516pt;}
.yc7{bottom:515.963460pt;}
.y8d{bottom:518.305990pt;}
.y2b{bottom:523.211182pt;}
.yfe{bottom:524.653849pt;}
.y52{bottom:527.154785pt;}
.yc6{bottom:529.296794pt;}
.y8c{bottom:531.639323pt;}
.yfd{bottom:537.987183pt;}
.y2a{bottom:539.877848pt;}
.yc5{bottom:542.630127pt;}
.y51{bottom:543.821452pt;}
.y8b{bottom:544.972656pt;}
.yfc{bottom:551.320516pt;}
.y86{bottom:551.480794pt;}
.yc4{bottom:555.963460pt;}
.y29{bottom:556.544515pt;}
.y8a{bottom:558.305990pt;}
.y50{bottom:560.488118pt;}
.yfb{bottom:564.653849pt;}
.y85{bottom:564.814128pt;}
.yc3{bottom:569.296794pt;}
.y89{bottom:571.639323pt;}
.y28{bottom:573.211182pt;}
.y4f{bottom:577.154785pt;}
.yfa{bottom:577.987183pt;}
.yc2{bottom:582.630127pt;}
.y88{bottom:584.972656pt;}
.y27{bottom:589.877848pt;}
.y4e{bottom:593.821452pt;}
.yc1{bottom:595.963460pt;}
.y26{bottom:606.544515pt;}
.yf9{bottom:607.987183pt;}
.yc0{bottom:609.296794pt;}
.y4d{bottom:610.488118pt;}
.ybf{bottom:622.630127pt;}
.y25{bottom:623.211344pt;}
.y4c{bottom:627.154785pt;}
.ybe{bottom:635.963460pt;}
.y24{bottom:639.878011pt;}
.y4b{bottom:643.821452pt;}
.ybd{bottom:649.296794pt;}
.y23{bottom:656.544678pt;}
.yf8{bottom:657.987183pt;}
.y4a{bottom:660.488118pt;}
.ybc{bottom:662.630127pt;}
.yf7{bottom:671.320516pt;}
.y22{bottom:673.211344pt;}
.ybb{bottom:675.963460pt;}
.y49{bottom:677.154785pt;}
.yf6{bottom:684.653890pt;}
.yba{bottom:689.296794pt;}
.y21{bottom:689.877848pt;}
.y48{bottom:693.821452pt;}
.yf5{bottom:697.987223pt;}
.yb9{bottom:702.630127pt;}
.y20{bottom:706.544515pt;}
.y47{bottom:710.488118pt;}
.yf4{bottom:711.320557pt;}
.yb8{bottom:715.963460pt;}
.y1f{bottom:723.211182pt;}
.yf3{bottom:724.653890pt;}
.y46{bottom:727.154785pt;}
.yb7{bottom:729.296794pt;}
.yf2{bottom:737.987223pt;}
.yb6{bottom:742.630127pt;}
.y45{bottom:743.821452pt;}
.yf1{bottom:751.320557pt;}
.yb5{bottom:755.963460pt;}
.y44{bottom:760.488118pt;}
.y31{bottom:763.447428pt;}
.yf0{bottom:764.653890pt;}
.yb4{bottom:769.296794pt;}
.y30{bottom:776.780762pt;}
.y43{bottom:777.154785pt;}
.yef{bottom:777.987223pt;}
.yb3{bottom:782.630127pt;}
.yee{bottom:791.320557pt;}
.y42{bottom:793.821452pt;}
.yb2{bottom:795.963460pt;}
.yed{bottom:804.653890pt;}
.yb1{bottom:809.296794pt;}
.y41{bottom:810.488118pt;}
.y35{bottom:815.517090pt;}
.yec{bottom:817.987223pt;}
.yb0{bottom:822.630127pt;}
.y40{bottom:827.154785pt;}
.y34{bottom:832.183757pt;}
.yaf{bottom:835.963460pt;}
.y3f{bottom:843.821452pt;}
.yeb{bottom:847.320557pt;}
.yae{bottom:849.296794pt;}
.y11f{bottom:859.963460pt;}
.y3e{bottom:860.488118pt;}
.yad{bottom:862.630127pt;}
.y33{bottom:871.149577pt;}
.y11e{bottom:873.296794pt;}
.yac{bottom:875.963460pt;}
.yea{bottom:876.653890pt;}
.y3d{bottom:877.154785pt;}
.yab{bottom:889.296794pt;}
.y3c{bottom:893.821452pt;}
.y32{bottom:895.149577pt;}
.yaa{bottom:902.630127pt;}
.ye9{bottom:905.987223pt;}
.y3b{bottom:910.488118pt;}
.ya9{bottom:915.963460pt;}
.y3a{bottom:927.154785pt;}
.ya8{bottom:929.296794pt;}
.ye8{bottom:935.320557pt;}
.ya7{bottom:942.630127pt;}
.y39{bottom:943.821452pt;}
.y1{bottom:955.816895pt;}
.ya6{bottom:955.963460pt;}
.y38{bottom:960.488118pt;}
.y87{bottom:966.061035pt;}
.ye7{bottom:968.654785pt;}
.ya5{bottom:969.296794pt;}
.y3{bottom:986.261230pt;}
.y37{bottom:1000.633870pt;}
.y2{bottom:1000.917318pt;}
.ha{height:22.049088pt;}
.h15{height:31.476562pt;}
.h9{height:31.498698pt;}
.h8{height:32.760417pt;}
.h4{height:37.057292pt;}
.hb{height:39.777344pt;}
.h3{height:42.930667pt;}
.h11{height:43.656000pt;}
.h12{height:44.468750pt;}
.h14{height:44.834667pt;}
.h5{height:46.796875pt;}
.h6{height:47.273438pt;}
.h2{height:49.248000pt;}
.hd{height:51.360000pt;}
.hc{height:52.746667pt;}
.h13{height:57.493333pt;}
.hf{height:57.621333pt;}
.h7{height:63.296000pt;}
.h10{height:64.000000pt;}
.he{height:82.176000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031469pt;}
.x1{left:75.717199pt;}
.x5{left:80.864532pt;}
.x9{left:83.149602pt;}
.x6{left:86.929067pt;}
.xe{left:90.708669pt;}
.xa{left:158.533997pt;}
.xb{left:262.897603pt;}
.x3{left:408.755859pt;}
.x4{left:423.873983pt;}
.xd{left:430.866130pt;}
.x8{left:450.559611pt;}
.x7{left:671.696655pt;}
.xc{left:704.136556pt;}
}




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