
    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_7f485ccf9e8969f610f926ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.123000;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_535c444e1c8bdb119d0829b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.146000;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_6936c1c10123aa43e4313924.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.169000;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_6112e5301683f46a04d73b3f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_3db72592050763d8ad1e98a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_0e81123abe9beb835bd9f1fa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6112e5301683f46a04d73b3f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942000;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_9e88109d958000202e06244e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.911000;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_0198d2311440b841449cc29d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.641000;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;}
.m7{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.091093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091093,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.098814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098814,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113636,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189394,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(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);}
.v6{vertical-align:-27.000000px;}
.v4{vertical-align:-21.599400px;}
.v1{vertical-align:-6.006000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:22.956000px;}
.v2{vertical-align:27.000000px;}
.v3{vertical-align:32.400000px;}
.ls14{letter-spacing:-3.725694px;}
.ls11{letter-spacing:-1.756399px;}
.ls15{letter-spacing:-1.064484px;}
.ls39{letter-spacing:-0.900000px;}
.ls13{letter-spacing:-0.691915px;}
.ls3a{letter-spacing:-0.630000px;}
.ls9{letter-spacing:-0.600000px;}
.ls3d{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.420000px;}
.ls3e{letter-spacing:-0.378000px;}
.ls17{letter-spacing:-0.106448px;}
.ls10{letter-spacing:-0.053224px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053224px;}
.ls12{letter-spacing:0.585466px;}
.lsa{letter-spacing:0.600000px;}
.ls3b{letter-spacing:0.629400px;}
.ls8{letter-spacing:0.630000px;}
.ls41{letter-spacing:0.765000px;}
.ls7{letter-spacing:0.900000px;}
.ls18{letter-spacing:0.958036px;}
.ls16{letter-spacing:1.117708px;}
.ls3f{letter-spacing:6.000000px;}
.ls40{letter-spacing:6.600000px;}
.lsb{letter-spacing:7.140000px;}
.ls0{letter-spacing:7.200000px;}
.ls1b{letter-spacing:7.560000px;}
.ls5{letter-spacing:9.600000px;}
.ls1{letter-spacing:10.800000px;}
.ls3c{letter-spacing:11.640000px;}
.ls1a{letter-spacing:13.518947px;}
.ls19{letter-spacing:14.796328px;}
.ls6{letter-spacing:31.332000px;}
.lsc{letter-spacing:47.901780px;}
.lse{letter-spacing:48.008228px;}
.ls2a{letter-spacing:75.045600px;}
.ls24{letter-spacing:77.044800px;}
.ls32{letter-spacing:77.045400px;}
.ls29{letter-spacing:90.895800px;}
.ls31{letter-spacing:90.896400px;}
.ls2{letter-spacing:92.030400px;}
.ls3{letter-spacing:92.031000px;}
.ls21{letter-spacing:92.895000px;}
.ls2d{letter-spacing:100.545600px;}
.ls2e{letter-spacing:100.546200px;}
.ls38{letter-spacing:100.840200px;}
.ls36{letter-spacing:102.544800px;}
.ls22{letter-spacing:107.041800px;}
.ls30{letter-spacing:109.040400px;}
.ls34{letter-spacing:116.395800px;}
.ls2b{letter-spacing:116.396400px;}
.ls37{letter-spacing:118.395000px;}
.ls26{letter-spacing:118.395600px;}
.ls1f{letter-spacing:127.190400px;}
.ls20{letter-spacing:127.191000px;}
.ls23{letter-spacing:127.191600px;}
.ls25{letter-spacing:129.190200px;}
.ls1e{letter-spacing:132.541200px;}
.ls2c{letter-spacing:132.541800px;}
.ls27{letter-spacing:134.540400px;}
.ls35{letter-spacing:134.541000px;}
.ls1c{letter-spacing:152.690400px;}
.ls1d{letter-spacing:152.691000px;}
.ls2f{letter-spacing:152.691600px;}
.ls28{letter-spacing:154.690200px;}
.ls33{letter-spacing:154.690800px;}
.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;}
}
.ws78{word-spacing:-28.102378px;}
.ws79{word-spacing:-26.824997px;}
.ws110{word-spacing:-21.600000px;}
.ws10f{word-spacing:-21.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws25{word-spacing:-15.900000px;}
.ws24{word-spacing:-15.000000px;}
.ws73{word-spacing:-14.423758px;}
.ws74{word-spacing:-14.264086px;}
.wscf{word-spacing:-14.100000px;}
.ws70{word-spacing:-13.891516px;}
.ws6e{word-spacing:-13.306050px;}
.ws77{word-spacing:-13.252826px;}
.ws76{word-spacing:-13.199602px;}
.wscc{word-spacing:-12.750000px;}
.ws71{word-spacing:-12.614135px;}
.ws75{word-spacing:-12.241566px;}
.ws3{word-spacing:-12.000000px;}
.ws6f{word-spacing:-11.549651px;}
.wsdf{word-spacing:-11.130000px;}
.ws0{word-spacing:-10.500000px;}
.wsec{word-spacing:-10.122000px;}
.ws6d{word-spacing:-10.080000px;}
.wsce{word-spacing:-9.870000px;}
.ws22{word-spacing:-9.600000px;}
.ws72{word-spacing:-9.580356px;}
.ws96{word-spacing:-8.925000px;}
.ws2{word-spacing:-8.400000px;}
.ws23{word-spacing:-7.350000px;}
.ws6{word-spacing:-7.200000px;}
.wsde{word-spacing:-7.089000px;}
.ws21{word-spacing:-4.080000px;}
.ws128{word-spacing:-3.927000px;}
.ws112{word-spacing:-3.780000px;}
.ws80{word-spacing:-3.480000px;}
.ws117{word-spacing:-3.120000px;}
.ws48{word-spacing:-3.060000px;}
.ws33{word-spacing:-2.820000px;}
.ws40{word-spacing:-2.760000px;}
.ws1f{word-spacing:-2.700000px;}
.ws152{word-spacing:-2.448000px;}
.ws47{word-spacing:-2.400000px;}
.ws150{word-spacing:-2.397000px;}
.ws105{word-spacing:-2.340000px;}
.ws12a{word-spacing:-2.295000px;}
.ws66{word-spacing:-2.280000px;}
.ws151{word-spacing:-2.244000px;}
.ws2b{word-spacing:-2.220000px;}
.ws15b{word-spacing:-2.193000px;}
.ws2f{word-spacing:-2.160000px;}
.ws19{word-spacing:-2.100000px;}
.ws64{word-spacing:-2.040000px;}
.ws153{word-spacing:-1.989000px;}
.ws13f{word-spacing:-1.938000px;}
.ws118{word-spacing:-1.860000px;}
.ws11d{word-spacing:-1.836000px;}
.ws11{word-spacing:-1.800000px;}
.ws101{word-spacing:-1.740000px;}
.wsd7{word-spacing:-1.680000px;}
.wsb9{word-spacing:-1.620000px;}
.ws134{word-spacing:-1.530000px;}
.wsfd{word-spacing:-1.500000px;}
.ws8b{word-spacing:-1.440000px;}
.ws62{word-spacing:-1.320000px;}
.ws130{word-spacing:-1.275000px;}
.wsf4{word-spacing:-1.200000px;}
.ws166{word-spacing:-1.173000px;}
.wsb7{word-spacing:-1.140000px;}
.wsf{word-spacing:-1.080000px;}
.ws13e{word-spacing:-1.071000px;}
.ws162{word-spacing:-1.020000px;}
.ws170{word-spacing:-0.969000px;}
.ws18{word-spacing:-0.960000px;}
.ws8{word-spacing:-0.900000px;}
.ws42{word-spacing:-0.780000px;}
.ws16a{word-spacing:-0.765000px;}
.wsee{word-spacing:-0.720000px;}
.ws3c{word-spacing:-0.660000px;}
.ws4c{word-spacing:-0.630000px;}
.ws4a{word-spacing:-0.600000px;}
.ws87{word-spacing:-0.540000px;}
.ws10{word-spacing:-0.480000px;}
.ws2c{word-spacing:-0.360000px;}
.ws16f{word-spacing:-0.255000px;}
.ws28{word-spacing:-0.240000px;}
.ws14f{word-spacing:-0.204000px;}
.wsb0{word-spacing:-0.180000px;}
.ws167{word-spacing:-0.153000px;}
.ws9b{word-spacing:-0.120000px;}
.ws26{word-spacing:-0.042000px;}
.ws4{word-spacing:0.000000px;}
.ws8c{word-spacing:0.060000px;}
.ws2d{word-spacing:0.120000px;}
.ws31{word-spacing:0.180000px;}
.ws131{word-spacing:0.204000px;}
.wsfa{word-spacing:0.240000px;}
.ws32{word-spacing:0.300000px;}
.ws13{word-spacing:0.360000px;}
.wsa8{word-spacing:0.420000px;}
.ws3e{word-spacing:0.480000px;}
.ws7f{word-spacing:0.540000px;}
.ws11c{word-spacing:0.561000px;}
.ws8f{word-spacing:0.600000px;}
.ws12e{word-spacing:0.714000px;}
.ws4e{word-spacing:0.720000px;}
.ws14d{word-spacing:0.816000px;}
.ws114{word-spacing:0.840000px;}
.ws149{word-spacing:0.867000px;}
.ws5b{word-spacing:0.900000px;}
.ws15d{word-spacing:0.918000px;}
.ws41{word-spacing:1.020000px;}
.ws92{word-spacing:1.064484px;}
.ws17{word-spacing:1.080000px;}
.ws136{word-spacing:1.122000px;}
.wse{word-spacing:1.140000px;}
.ws16{word-spacing:1.200000px;}
.ws5a{word-spacing:1.320000px;}
.ws140{word-spacing:1.377000px;}
.ws6a{word-spacing:1.380000px;}
.ws159{word-spacing:1.428000px;}
.ws68{word-spacing:1.440000px;}
.ws11f{word-spacing:1.479000px;}
.ws9f{word-spacing:1.500000px;}
.ws69{word-spacing:1.560000px;}
.wsd9{word-spacing:1.620000px;}
.ws1d{word-spacing:1.680000px;}
.ws3a{word-spacing:1.740000px;}
.wse5{word-spacing:1.800000px;}
.wsb3{word-spacing:1.860000px;}
.ws1a{word-spacing:1.980000px;}
.ws1b{word-spacing:2.040000px;}
.wsdc{word-spacing:2.100000px;}
.ws143{word-spacing:2.142000px;}
.ws109{word-spacing:2.160000px;}
.ws6c{word-spacing:2.220000px;}
.ws63{word-spacing:2.280000px;}
.wsab{word-spacing:2.340000px;}
.ws129{word-spacing:2.397000px;}
.wsf2{word-spacing:2.400000px;}
.ws161{word-spacing:2.499000px;}
.wsfb{word-spacing:2.520000px;}
.ws46{word-spacing:2.580000px;}
.ws145{word-spacing:2.601000px;}
.ws52{word-spacing:2.640000px;}
.ws29{word-spacing:2.700000px;}
.ws154{word-spacing:2.754000px;}
.wsad{word-spacing:2.760000px;}
.ws5c{word-spacing:2.820000px;}
.ws36{word-spacing:2.880000px;}
.ws1c{word-spacing:2.940000px;}
.ws65{word-spacing:3.000000px;}
.ws115{word-spacing:3.060000px;}
.ws88{word-spacing:3.120000px;}
.ws103{word-spacing:3.180000px;}
.wsef{word-spacing:3.300000px;}
.ws126{word-spacing:3.315000px;}
.ws8e{word-spacing:3.420000px;}
.wsf3{word-spacing:3.480000px;}
.ws116{word-spacing:3.540000px;}
.wsdb{word-spacing:3.600000px;}
.ws104{word-spacing:3.660000px;}
.ws14b{word-spacing:3.672000px;}
.ws7d{word-spacing:3.720000px;}
.ws35{word-spacing:3.780000px;}
.ws57{word-spacing:3.900000px;}
.ws133{word-spacing:3.927000px;}
.ws7a{word-spacing:3.960000px;}
.ws20{word-spacing:4.020000px;}
.ws59{word-spacing:4.080000px;}
.wsa0{word-spacing:4.140000px;}
.ws3f{word-spacing:4.200000px;}
.ws8a{word-spacing:4.260000px;}
.ws5d{word-spacing:4.380000px;}
.ws15{word-spacing:4.440000px;}
.ws148{word-spacing:4.539000px;}
.ws49{word-spacing:4.560000px;}
.ws14{word-spacing:4.620000px;}
.ws81{word-spacing:4.680000px;}
.wsf9{word-spacing:4.740000px;}
.ws147{word-spacing:4.794000px;}
.ws7b{word-spacing:4.800000px;}
.wse6{word-spacing:4.860000px;}
.wsa7{word-spacing:4.920000px;}
.ws4b{word-spacing:4.980000px;}
.ws12f{word-spacing:4.998000px;}
.ws4f{word-spacing:5.040000px;}
.ws155{word-spacing:5.049000px;}
.wsf0{word-spacing:5.160000px;}
.ws44{word-spacing:5.220000px;}
.ws67{word-spacing:5.280000px;}
.ws85{word-spacing:5.340000px;}
.ws12d{word-spacing:5.355000px;}
.ws2e{word-spacing:5.400000px;}
.ws11e{word-spacing:5.457000px;}
.ws102{word-spacing:5.460000px;}
.wsa6{word-spacing:5.520000px;}
.ws61{word-spacing:5.580000px;}
.wsf1{word-spacing:5.700000px;}
.ws156{word-spacing:5.865000px;}
.wsf8{word-spacing:5.880000px;}
.ws15a{word-spacing:5.916000px;}
.ws3b{word-spacing:5.940000px;}
.wsfe{word-spacing:6.000000px;}
.wsea{word-spacing:6.060000px;}
.wsf5{word-spacing:6.120000px;}
.ws16e{word-spacing:6.171000px;}
.wsa{word-spacing:6.180000px;}
.ws107{word-spacing:6.240000px;}
.wsda{word-spacing:6.300000px;}
.ws10c{word-spacing:6.360000px;}
.ws15c{word-spacing:6.375000px;}
.ws6b{word-spacing:6.420000px;}
.ws137{word-spacing:6.477000px;}
.ws7c{word-spacing:6.480000px;}
.ws120{word-spacing:6.579000px;}
.ws50{word-spacing:6.660000px;}
.wsa5{word-spacing:6.720000px;}
.ws122{word-spacing:6.783000px;}
.ws142{word-spacing:6.834000px;}
.wsa4{word-spacing:6.840000px;}
.ws34{word-spacing:6.900000px;}
.wseb{word-spacing:6.960000px;}
.ws13d{word-spacing:6.987000px;}
.ws45{word-spacing:7.020000px;}
.ws106{word-spacing:7.080000px;}
.ws160{word-spacing:7.191000px;}
.ws37{word-spacing:7.200000px;}
.ws2a{word-spacing:7.260000px;}
.ws9c{word-spacing:7.320000px;}
.ws86{word-spacing:7.440000px;}
.ws14e{word-spacing:7.497000px;}
.ws10a{word-spacing:7.560000px;}
.wsa2{word-spacing:7.620000px;}
.wsa9{word-spacing:7.680000px;}
.ws3d{word-spacing:7.740000px;}
.ws119{word-spacing:7.800000px;}
.ws158{word-spacing:7.803000px;}
.wsb5{word-spacing:7.860000px;}
.wsaf{word-spacing:8.040000px;}
.ws58{word-spacing:8.100000px;}
.wsb8{word-spacing:8.160000px;}
.wsf7{word-spacing:8.220000px;}
.wsac{word-spacing:8.340000px;}
.ws10d{word-spacing:8.400000px;}
.wsc{word-spacing:8.460000px;}
.ws141{word-spacing:8.517000px;}
.ws10b{word-spacing:8.520000px;}
.ws84{word-spacing:8.580000px;}
.wsf6{word-spacing:8.640000px;}
.ws5e{word-spacing:8.760000px;}
.wsed{word-spacing:8.820000px;}
.ws8d{word-spacing:8.880000px;}
.ws1e{word-spacing:8.940000px;}
.ws171{word-spacing:9.060000px;}
.ws138{word-spacing:9.078000px;}
.wsa1{word-spacing:9.120000px;}
.ws132{word-spacing:9.180000px;}
.ws13c{word-spacing:9.231000px;}
.wse4{word-spacing:9.360000px;}
.ws144{word-spacing:9.435000px;}
.ws121{word-spacing:9.486000px;}
.ws9d{word-spacing:9.600000px;}
.ws9{word-spacing:9.660000px;}
.ws39{word-spacing:9.720000px;}
.wsd{word-spacing:9.780000px;}
.ws13b{word-spacing:9.996000px;}
.ws83{word-spacing:10.260000px;}
.wsff{word-spacing:10.380000px;}
.ws100{word-spacing:10.500000px;}
.wsa3{word-spacing:10.620000px;}
.wsfc{word-spacing:10.680000px;}
.wsae{word-spacing:11.040000px;}
.ws15f{word-spacing:11.067000px;}
.ws43{word-spacing:11.160000px;}
.wsb6{word-spacing:11.220000px;}
.ws139{word-spacing:11.424000px;}
.ws12{word-spacing:11.460000px;}
.ws165{word-spacing:11.475000px;}
.wsb4{word-spacing:11.520000px;}
.wse7{word-spacing:11.580000px;}
.ws10e{word-spacing:11.640000px;}
.wsb2{word-spacing:11.820000px;}
.ws108{word-spacing:11.880000px;}
.wsd8{word-spacing:12.000000px;}
.ws30{word-spacing:12.060000px;}
.ws82{word-spacing:12.360000px;}
.wsaa{word-spacing:12.480000px;}
.ws51{word-spacing:12.540000px;}
.ws127{word-spacing:12.801000px;}
.ws111{word-spacing:12.840000px;}
.ws146{word-spacing:12.954000px;}
.ws123{word-spacing:13.158000px;}
.wsb1{word-spacing:13.320000px;}
.ws164{word-spacing:13.413000px;}
.ws60{word-spacing:13.500000px;}
.ws125{word-spacing:13.770000px;}
.ws113{word-spacing:13.800000px;}
.ws12b{word-spacing:13.872000px;}
.wsb{word-spacing:13.920000px;}
.ws163{word-spacing:13.923000px;}
.ws9a{word-spacing:14.040000px;}
.ws5f{word-spacing:14.280000px;}
.ws135{word-spacing:14.841000px;}
.ws38{word-spacing:15.000000px;}
.ws55{word-spacing:15.300000px;}
.ws11b{word-spacing:15.351000px;}
.wsdd{word-spacing:15.660000px;}
.ws13a{word-spacing:15.810000px;}
.wse8{word-spacing:15.960000px;}
.ws16c{word-spacing:15.963000px;}
.ws53{word-spacing:16.020000px;}
.ws124{word-spacing:16.218000px;}
.ws16d{word-spacing:16.575000px;}
.wse9{word-spacing:16.860000px;}
.ws9e{word-spacing:17.100000px;}
.ws157{word-spacing:17.289000px;}
.ws12c{word-spacing:17.391000px;}
.ws14c{word-spacing:17.442000px;}
.ws54{word-spacing:17.700000px;}
.ws168{word-spacing:18.258000px;}
.ws91{word-spacing:18.420000px;}
.ws7e{word-spacing:18.480000px;}
.ws169{word-spacing:18.513000px;}
.ws14a{word-spacing:19.941000px;}
.ws90{word-spacing:20.520000px;}
.ws15e{word-spacing:20.859000px;}
.ws56{word-spacing:21.960000px;}
.ws89{word-spacing:22.260000px;}
.ws11a{word-spacing:24.429000px;}
.ws16b{word-spacing:24.582000px;}
.ws4d{word-spacing:29.520000px;}
.ws5{word-spacing:30.450000px;}
.ws27{word-spacing:31.500000px;}
.ws7{word-spacing:54.000000px;}
.wsc7{word-spacing:66.120000px;}
.wscb{word-spacing:66.120600px;}
.wscd{word-spacing:68.119200px;}
.wsc2{word-spacing:68.119800px;}
.wsc0{word-spacing:75.769800px;}
.wsc1{word-spacing:78.438000px;}
.wsc3{word-spacing:82.265400px;}
.ws94{word-spacing:83.903400px;}
.wsc6{word-spacing:84.564600px;}
.wsbe{word-spacing:91.620000px;}
.wsc5{word-spacing:93.619800px;}
.wsc8{word-spacing:100.416000px;}
.wsd0{word-spacing:100.827000px;}
.ws98{word-spacing:101.753400px;}
.wsc9{word-spacing:102.415200px;}
.wsbd{word-spacing:103.938000px;}
.wsd1{word-spacing:105.264000px;}
.ws93{word-spacing:105.570000px;}
.wsc4{word-spacing:107.766000px;}
.ws95{word-spacing:109.403400px;}
.wsca{word-spacing:125.915400px;}
.wsbf{word-spacing:127.915200px;}
.wsbb{word-spacing:128.010000px;}
.wsbc{word-spacing:129.438000px;}
.ws97{word-spacing:131.070000px;}
.ws99{word-spacing:140.964000px;}
.wsd5{word-spacing:177.735000px;}
.wse1{word-spacing:177.990000px;}
.wsd2{word-spacing:183.702000px;}
.wse2{word-spacing:195.993000px;}
.wsd3{word-spacing:209.202000px;}
.wsd6{word-spacing:213.690000px;}
.wse3{word-spacing:213.996000px;}
.wsba{word-spacing:266.542800px;}
.wsd4{word-spacing:504.900000px;}
.wse0{word-spacing:505.563000px;}
._74{margin-left:-38.097000px;}
._6f{margin-left:-30.447000px;}
._71{margin-left:-27.795000px;}
._f{margin-left:-25.200000px;}
._73{margin-left:-23.919000px;}
._6b{margin-left:-21.930000px;}
._6c{margin-left:-19.737000px;}
._72{margin-left:-17.697000px;}
._6a{margin-left:-16.626000px;}
._14{margin-left:-15.168897px;}
._15{margin-left:-13.307560px;}
._6d{margin-left:-11.883000px;}
._69{margin-left:-10.710000px;}
._62{margin-left:-9.435000px;}
._70{margin-left:-8.109000px;}
._6{margin-left:-5.659200px;}
._9{margin-left:-4.129800px;}
._3{margin-left:-2.566200px;}
._0{margin-left:-1.260000px;}
._4{width:1.900200px;}
._e{width:3.000000px;}
._7{width:4.020000px;}
._c{width:5.208000px;}
._5d{width:6.217800px;}
._12{width:7.806000px;}
._11{width:9.342000px;}
._b{width:11.160000px;}
._d{width:13.524000px;}
._5c{width:16.756800px;}
._65{width:18.921000px;}
._64{width:20.646000px;}
._6e{width:21.879000px;}
._68{width:23.358000px;}
._63{width:25.165200px;}
._66{width:27.183000px;}
._10{width:34.524000px;}
._13{width:38.250000px;}
._5{width:40.950000px;}
._a{width:54.000000px;}
._61{width:68.018400px;}
._51{width:75.939000px;}
._35{width:82.977000px;}
._3e{width:91.188000px;}
._33{width:98.838000px;}
._34{width:115.005000px;}
._23{width:118.320000px;}
._1d{width:128.214000px;}
._31{width:133.161000px;}
._32{width:135.150000px;}
._17{width:136.476000px;}
._16{width:142.392000px;}
._1a{width:143.820000px;}
._22{width:146.370000px;}
._52{width:149.940000px;}
._19{width:153.714000px;}
._2b{width:169.320000px;}
._1b{width:171.870000px;}
._2e{width:173.111400px;}
._24{width:180.591000px;}
._55{width:190.485000px;}
._3d{width:195.993000px;}
._56{width:208.437000px;}
._5e{width:209.661000px;}
._5f{width:216.495000px;}
._3f{width:218.688000px;}
._29{width:225.930000px;}
._5b{width:227.358000px;}
._59{width:234.396000px;}
._60{width:245.667000px;}
._21{width:248.625000px;}
._43{width:251.736000px;}
._40{width:253.929000px;}
._41{width:262.446000px;}
._36{width:269.637000px;}
._26{width:271.320000px;}
._25{width:276.981000px;}
._57{width:280.041000px;}
._27{width:281.061000px;}
._28{width:298.095000px;}
._5a{width:308.040000px;}
._45{width:315.486000px;}
._2f{width:318.082200px;}
._4f{width:322.575000px;}
._4b{width:323.901000px;}
._1f{width:332.746200px;}
._42{width:337.110000px;}
._30{width:341.088600px;}
._50{width:342.414000px;}
._2d{width:349.554000px;}
._1c{width:350.625000px;}
._3c{width:354.654000px;}
._3b{width:362.610000px;}
._54{width:366.129000px;}
._2c{width:375.910800px;}
._39{width:378.420000px;}
._3a{width:394.587000px;}
._4a{width:395.760000px;}
._2a{width:400.197000px;}
._20{width:407.286000px;}
._37{width:412.743000px;}
._38{width:414.732000px;}
._49{width:420.954000px;}
._18{width:441.303000px;}
._46{width:446.454000px;}
._1e{width:448.494000px;}
._47{width:467.466000px;}
._4e{width:475.575000px;}
._58{width:483.684000px;}
._53{width:489.294000px;}
._4d{width:518.058000px;}
._48{width:523.668000px;}
._4c{width:535.041000px;}
._44{width:552.024000px;}
._1{width:928.956000px;}
._2{width:1272.264000px;}
._67{width:2142.450600px;}
._8{width:2163.450600px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:29.400000px;}
.fsf{font-size:31.080000px;}
.fsa{font-size:33.600000px;}
.fs11{font-size:35.700000px;}
.fs0{font-size:42.000000px;}
.fs12{font-size:45.000000px;}
.fsb{font-size:48.000000px;}
.fs8{font-size:50.400000px;}
.fsc{font-size:51.000000px;}
.fs10{font-size:53.224200px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:92.400000px;}
.fs9{font-size:93.600000px;}
.fs3{font-size:95.040000px;}
.fsd{font-size:103.740000px;}
.fs5{font-size:106.260000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:30.840300px;}
.y2{bottom:43.968300px;}
.y3{bottom:44.343300px;}
.y1{bottom:45.843300px;}
.y4{bottom:45.844800px;}
.y17{bottom:75.871500px;}
.y6c{bottom:75.871800px;}
.y13f{bottom:75.949050px;}
.yb1{bottom:83.349150px;}
.yb5{bottom:83.368350px;}
.y13e{bottom:93.199800px;}
.yad{bottom:93.871500px;}
.yb2{bottom:94.594650px;}
.yb6{bottom:94.613850px;}
.yb3{bottom:94.626300px;}
.yb4{bottom:94.626450px;}
.yb7{bottom:94.626600px;}
.y103{bottom:95.352300px;}
.y6b{bottom:95.371800px;}
.y13d{bottom:110.450550px;}
.yac{bottom:111.871500px;}
.y102{bottom:112.603050px;}
.yc{bottom:114.871800px;}
.y145{bottom:120.121800px;}
.yab{bottom:127.621500px;}
.y13c{bottom:127.701300px;}
.y101{bottom:129.853800px;}
.y77{bottom:132.871800px;}
.yb{bottom:134.371800px;}
.yb9{bottom:134.383800px;}
.y144{bottom:139.621800px;}
.yaa{bottom:143.371500px;}
.y13b{bottom:144.952050px;}
.y100{bottom:147.104550px;}
.ya{bottom:153.871800px;}
.yb8{bottom:153.877800px;}
.ya9{bottom:159.121500px;}
.y143{bottom:159.121800px;}
.y13a{bottom:162.202800px;}
.yff{bottom:164.355300px;}
.y72{bottom:171.871800px;}
.y9{bottom:173.371800px;}
.ya8{bottom:174.871500px;}
.y142{bottom:178.621800px;}
.y139{bottom:179.453550px;}
.yfe{bottom:181.606050px;}
.ya7{bottom:192.871500px;}
.y8{bottom:192.871800px;}
.y138{bottom:196.704300px;}
.y141{bottom:198.121800px;}
.yfd{bottom:198.856800px;}
.yd{bottom:212.371800px;}
.y137{bottom:213.955050px;}
.yfc{bottom:216.107550px;}
.y140{bottom:217.621800px;}
.ya6{bottom:217.628250px;}
.y7{bottom:230.371800px;}
.yb0{bottom:231.083400px;}
.yae{bottom:231.084150px;}
.y136{bottom:231.205800px;}
.y6{bottom:231.871800px;}
.yfb{bottom:233.358300px;}
.ya5{bottom:239.188500px;}
.y135{bottom:248.456550px;}
.yfa{bottom:250.609050px;}
.y6a{bottom:251.371800px;}
.ya4{bottom:260.748750px;}
.y134{bottom:265.707300px;}
.yf9{bottom:267.859800px;}
.y69{bottom:270.871800px;}
.ya3{bottom:282.322500px;}
.y133{bottom:282.958050px;}
.yf8{bottom:285.110550px;}
.y68{bottom:290.371800px;}
.y3d{bottom:299.943300px;}
.y132{bottom:300.208800px;}
.yf7{bottom:302.361300px;}
.ya2{bottom:303.882750px;}
.y67{bottom:309.871800px;}
.y131{bottom:317.459550px;}
.yf6{bottom:319.612050px;}
.y3c{bottom:320.943300px;}
.ya1{bottom:325.443000px;}
.y66{bottom:329.371800px;}
.y79{bottom:329.377800px;}
.y130{bottom:334.710300px;}
.yf5{bottom:336.862800px;}
.ya0{bottom:347.003250px;}
.y78{bottom:347.371800px;}
.y65{bottom:348.871800px;}
.y12f{bottom:351.961050px;}
.yf4{bottom:354.113550px;}
.yda{bottom:355.480500px;}
.y3b{bottom:356.943300px;}
.y64{bottom:368.371800px;}
.y9f{bottom:368.563500px;}
.y12e{bottom:369.211800px;}
.yf3{bottom:371.364300px;}
.y3a{bottom:379.443300px;}
.yd9{bottom:380.242500px;}
.y12d{bottom:386.462550px;}
.y63{bottom:387.871800px;}
.yf2{bottom:388.615050px;}
.y9e{bottom:390.123750px;}
.yd8{bottom:401.802750px;}
.y39{bottom:401.943300px;}
.y12c{bottom:403.713300px;}
.yf1{bottom:405.865800px;}
.y62{bottom:407.371800px;}
.y9d{bottom:411.686250px;}
.y12b{bottom:420.964050px;}
.yf0{bottom:423.116550px;}
.yd7{bottom:423.363000px;}
.y38{bottom:424.443300px;}
.y71{bottom:426.871800px;}
.y94{bottom:426.883800px;}
.y9c{bottom:433.248750px;}
.y12a{bottom:438.214800px;}
.yef{bottom:440.367300px;}
.y60{bottom:444.871800px;}
.yd6{bottom:444.923250px;}
.y5f{bottom:446.365800px;}
.y61{bottom:446.371800px;}
.y93{bottom:446.377800px;}
.y37{bottom:446.943300px;}
.y9b{bottom:454.811250px;}
.y129{bottom:455.465550px;}
.yee{bottom:457.618050px;}
.y92{bottom:464.371800px;}
.y70{bottom:465.871800px;}
.yd5{bottom:466.483500px;}
.y36{bottom:469.443300px;}
.y128{bottom:472.716300px;}
.yed{bottom:474.868800px;}
.y9a{bottom:476.370000px;}
.y5e{bottom:483.871800px;}
.y5d{bottom:485.371800px;}
.yd4{bottom:488.043750px;}
.y127{bottom:489.967050px;}
.y35{bottom:491.943300px;}
.yec{bottom:492.119550px;}
.y99{bottom:497.930250px;}
.y6f{bottom:504.871800px;}
.y126{bottom:507.217800px;}
.yeb{bottom:509.370300px;}
.yd3{bottom:509.604000px;}
.y34{bottom:514.443300px;}
.y98{bottom:522.346500px;}
.y6e{bottom:524.371800px;}
.y125{bottom:524.468550px;}
.yea{bottom:526.621050px;}
.yd2{bottom:531.164250px;}
.y33{bottom:536.943300px;}
.y124{bottom:541.719300px;}
.y5c{bottom:543.871800px;}
.y26{bottom:548.193300px;}
.y97{bottom:550.358250px;}
.yd0{bottom:555.580500px;}
.y123{bottom:558.970050px;}
.y32{bottom:559.443300px;}
.y5b{bottom:563.371800px;}
.y25{bottom:564.693300px;}
.y96{bottom:567.609000px;}
.yd1{bottom:572.831250px;}
.y122{bottom:576.220800px;}
.y24{bottom:581.193300px;}
.y31{bottom:581.943300px;}
.y8a{bottom:582.152982px;}
.y5a{bottom:582.871800px;}
.y121{bottom:593.471550px;}
.y95{bottom:596.146500px;}
.y23{bottom:597.693300px;}
.ycf{bottom:601.368000px;}
.y59{bottom:602.371800px;}
.y30{bottom:604.443300px;}
.y120{bottom:610.722300px;}
.y89{bottom:610.894050px;}
.y58{bottom:621.871800px;}
.y2f{bottom:626.943300px;}
.y11f{bottom:627.973050px;}
.y22{bottom:630.693300px;}
.y57{bottom:641.371800px;}
.y11e{bottom:645.223800px;}
.y21{bottom:647.193300px;}
.y2e{bottom:649.443300px;}
.yce{bottom:656.269650px;}
.y56{bottom:660.871800px;}
.y11d{bottom:662.474550px;}
.y20{bottom:663.693300px;}
.y2d{bottom:671.943300px;}
.ycd{bottom:677.829900px;}
.y11c{bottom:679.725300px;}
.y1f{bottom:680.193300px;}
.y55{bottom:680.371800px;}
.y2c{bottom:694.443300px;}
.y1e{bottom:696.693300px;}
.y11b{bottom:696.976050px;}
.ycc{bottom:699.390150px;}
.y54{bottom:699.871800px;}
.y1d{bottom:713.193300px;}
.y11a{bottom:714.226800px;}
.y2b{bottom:716.943300px;}
.y53{bottom:719.371800px;}
.ycb{bottom:720.950400px;}
.y81{bottom:725.213060px;}
.y119{bottom:731.477550px;}
.y52{bottom:738.871800px;}
.y2a{bottom:739.443300px;}
.yca{bottom:742.510650px;}
.y80{bottom:742.777045px;}
.y1c{bottom:746.193300px;}
.y118{bottom:748.728300px;}
.ye9{bottom:748.921500px;}
.y51{bottom:758.371800px;}
.y7f{bottom:760.341032px;}
.y29{bottom:761.943300px;}
.y1b{bottom:762.693300px;}
.yc9{bottom:764.070900px;}
.y117{bottom:765.979050px;}
.ye8{bottom:766.924500px;}
.y50{bottom:777.871800px;}
.y7e{bottom:777.905018px;}
.y116{bottom:783.229800px;}
.y28{bottom:784.443300px;}
.y1a{bottom:784.593150px;}
.ye7{bottom:784.927500px;}
.yc8{bottom:785.631150px;}
.y7d{bottom:795.602064px;}
.y4f{bottom:797.371800px;}
.y19{bottom:800.193300px;}
.y115{bottom:800.480550px;}
.ye6{bottom:802.930500px;}
.y27{bottom:806.943300px;}
.yc7{bottom:807.191400px;}
.y7c{bottom:813.166050px;}
.y4e{bottom:816.871800px;}
.y8e{bottom:816.877800px;}
.y114{bottom:817.731300px;}
.y18{bottom:822.093150px;}
.yc6{bottom:828.751650px;}
.y8d{bottom:834.871800px;}
.y113{bottom:834.982050px;}
.y8c{bottom:836.365800px;}
.y4d{bottom:836.371800px;}
.ye5{bottom:847.480800px;}
.yc5{bottom:850.311900px;}
.y112{bottom:852.232800px;}
.y4c{bottom:855.871800px;}
.y16{bottom:869.193300px;}
.y111{bottom:869.483550px;}
.yc4{bottom:871.872150px;}
.ye4{bottom:872.242650px;}
.y8b{bottom:873.871800px;}
.y4b{bottom:875.371800px;}
.y110{bottom:886.734300px;}
.yc3{bottom:893.432400px;}
.ye3{bottom:893.802900px;}
.y15{bottom:893.943300px;}
.y4a{bottom:894.871800px;}
.y14{bottom:896.193300px;}
.yaf{bottom:902.035200px;}
.y10f{bottom:903.985050px;}
.y49{bottom:914.371800px;}
.yc2{bottom:914.992650px;}
.ye2{bottom:915.363150px;}
.y10e{bottom:921.235800px;}
.y85{bottom:922.575342px;}
.y48{bottom:933.871800px;}
.yc1{bottom:936.552900px;}
.ye1{bottom:936.923400px;}
.y10d{bottom:938.486550px;}
.y84{bottom:940.139328px;}
.y6d{bottom:951.871800px;}
.y47{bottom:953.371800px;}
.y13{bottom:954.687300px;}
.y10c{bottom:955.737300px;}
.y83{bottom:957.703314px;}
.yc0{bottom:958.113150px;}
.ye0{bottom:958.483650px;}
.y46{bottom:972.871800px;}
.y10b{bottom:972.988050px;}
.y82{bottom:975.267300px;}
.ybf{bottom:979.673400px;}
.ydf{bottom:980.043900px;}
.y12{bottom:989.193300px;}
.y10a{bottom:990.238800px;}
.y45{bottom:992.371800px;}
.ybe{bottom:1001.233650px;}
.yde{bottom:1001.604150px;}
.y109{bottom:1007.489550px;}
.y44{bottom:1011.871800px;}
.ybd{bottom:1022.793900px;}
.ydd{bottom:1023.164400px;}
.y108{bottom:1024.740300px;}
.y43{bottom:1031.371800px;}
.y107{bottom:1041.991050px;}
.y88{bottom:1047.119778px;}
.ybc{bottom:1047.579900px;}
.ydb{bottom:1047.580650px;}
.y42{bottom:1050.871800px;}
.y91{bottom:1050.883800px;}
.y106{bottom:1059.241800px;}
.y11{bottom:1059.693300px;}
.y87{bottom:1064.683764px;}
.ybb{bottom:1064.830650px;}
.ydc{bottom:1064.831400px;}
.y41{bottom:1070.371800px;}
.y90{bottom:1070.377800px;}
.y7b{bottom:1075.927800px;}
.y105{bottom:1076.492550px;}
.y86{bottom:1082.247750px;}
.y8f{bottom:1088.371800px;}
.y40{bottom:1089.871800px;}
.yba{bottom:1093.368300px;}
.y104{bottom:1093.743300px;}
.y7a{bottom:1093.930800px;}
.y10{bottom:1100.151150px;}
.yf{bottom:1115.446650px;}
.ye{bottom:1121.896650px;}
.y3f{bottom:1123.823550px;}
.y75{bottom:1123.824300px;}
.y76{bottom:1129.551600px;}
.y3e{bottom:1129.673550px;}
.y74{bottom:1129.674300px;}
.y73{bottom:1150.065000px;}
.h15{height:30.503320px;}
.he{height:31.180800px;}
.h17{height:36.990819px;}
.h2{height:38.976000px;}
.h4{height:40.446000px;}
.h1b{height:41.760000px;}
.hf{height:44.544000px;}
.h10{height:46.224000px;}
.h12{height:47.328000px;}
.h16{height:49.113000px;}
.h1c{height:49.116000px;}
.ha{height:52.002000px;}
.h7{height:55.680000px;}
.h1a{height:56.025600px;}
.h1d{height:56.052600px;}
.h19{height:56.070600px;}
.h18{height:56.085600px;}
.h11{height:57.780000px;}
.h8{height:65.976000px;}
.h5{height:69.336000px;}
.hc{height:80.935200px;}
.h3{height:85.747200px;}
.hd{height:86.860800px;}
.h6{height:88.197120px;}
.h9{height:98.609280px;}
.h13{height:99.901620px;}
.hb{height:104.004000px;}
.h14{height:1173.540000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:67.181700px;}
.x14{left:69.732000px;}
.x4b{left:76.181850px;}
.x2f{left:78.724200px;}
.x4a{left:86.675100px;}
.x17{left:89.232750px;}
.x4f{left:95.232300px;}
.x6{left:97.781100px;}
.x18{left:100.332300px;}
.x7{left:103.181100px;}
.x19{left:105.732150px;}
.x21{left:107.681100px;}
.x15{left:110.293350px;}
.x16{left:112.372200px;}
.x1a{left:113.832150px;}
.x4d{left:115.543350px;}
.x4e{left:117.622200px;}
.xa{left:180.086850px;}
.xb{left:182.186700px;}
.x2e{left:221.979300px;}
.x30{left:225.356100px;}
.x48{left:228.687450px;}
.x46{left:248.532600px;}
.x32{left:253.893600px;}
.x31{left:271.143600px;}
.x33{left:299.155350px;}
.xc{left:300.804750px;}
.xd{left:302.904750px;}
.x13{left:310.665000px;}
.xe{left:317.832450px;}
.xf{left:321.432450px;}
.x34{left:323.941350px;}
.x24{left:333.701250px;}
.x35{left:345.501600px;}
.x25{left:353.660325px;}
.x36{left:367.061850px;}
.x37{left:388.628850px;}
.x38{left:410.191350px;}
.x39{left:431.753850px;}
.x28{left:446.798850px;}
.x3a{left:453.316350px;}
.x8{left:458.698500px;}
.x1b{left:461.231700px;}
.x2c{left:469.053552px;}
.x2a{left:475.832651px;}
.x9{left:478.201650px;}
.x51{left:479.253150px;}
.x2d{left:480.747000px;}
.x4c{left:484.202100px;}
.x50{left:486.753150px;}
.x3b{left:496.441350px;}
.x22{left:499.181100px;}
.x1c{left:501.732150px;}
.x23{left:502.781100px;}
.x1d{left:505.332000px;}
.x10{left:507.447150px;}
.x11{left:511.047000px;}
.x29{left:516.815285px;}
.x3c{left:518.001600px;}
.x3d{left:539.561850px;}
.x3e{left:561.128850px;}
.x3f{left:582.691350px;}
.x26{left:588.141150px;}
.x40{left:604.253850px;}
.x27{left:608.126837px;}
.x47{left:610.071600px;}
.x5{left:621.174000px;}
.x41{left:625.816350px;}
.x2b{left:640.588650px;}
.x42{left:647.378850px;}
.x43{left:672.131100px;}
.x44{left:690.131100px;}
.x45{left:708.131100px;}
.x1f{left:753.166650px;}
.x49{left:771.709950px;}
.x2{left:777.875850px;}
.x3{left:779.975700px;}
.x20{left:782.178000px;}
.x4{left:793.363200px;}
.x12{left:797.230650px;}
.x1e{left:870.135000px;}
@media print{
.v6{vertical-align:-24.000000pt;}
.v4{vertical-align:-19.199467pt;}
.v1{vertical-align:-5.338667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:20.405333pt;}
.v2{vertical-align:24.000000pt;}
.v3{vertical-align:28.800000pt;}
.ls14{letter-spacing:-3.311728pt;}
.ls11{letter-spacing:-1.561243pt;}
.ls15{letter-spacing:-0.946208pt;}
.ls39{letter-spacing:-0.800000pt;}
.ls13{letter-spacing:-0.615035pt;}
.ls3a{letter-spacing:-0.560000pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls3d{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.373333pt;}
.ls3e{letter-spacing:-0.336000pt;}
.ls17{letter-spacing:-0.094621pt;}
.ls10{letter-spacing:-0.047310pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047310pt;}
.ls12{letter-spacing:0.520414pt;}
.lsa{letter-spacing:0.533333pt;}
.ls3b{letter-spacing:0.559467pt;}
.ls8{letter-spacing:0.560000pt;}
.ls41{letter-spacing:0.680000pt;}
.ls7{letter-spacing:0.800000pt;}
.ls18{letter-spacing:0.851587pt;}
.ls16{letter-spacing:0.993518pt;}
.ls3f{letter-spacing:5.333333pt;}
.ls40{letter-spacing:5.866667pt;}
.lsb{letter-spacing:6.346667pt;}
.ls0{letter-spacing:6.400000pt;}
.ls1b{letter-spacing:6.720000pt;}
.ls5{letter-spacing:8.533333pt;}
.ls1{letter-spacing:9.600000pt;}
.ls3c{letter-spacing:10.346667pt;}
.ls1a{letter-spacing:12.016842pt;}
.ls19{letter-spacing:13.152291pt;}
.ls6{letter-spacing:27.850667pt;}
.lsc{letter-spacing:42.579360pt;}
.lse{letter-spacing:42.673981pt;}
.ls2a{letter-spacing:66.707200pt;}
.ls24{letter-spacing:68.484267pt;}
.ls32{letter-spacing:68.484800pt;}
.ls29{letter-spacing:80.796267pt;}
.ls31{letter-spacing:80.796800pt;}
.ls2{letter-spacing:81.804800pt;}
.ls3{letter-spacing:81.805333pt;}
.ls21{letter-spacing:82.573333pt;}
.ls2d{letter-spacing:89.373867pt;}
.ls2e{letter-spacing:89.374400pt;}
.ls38{letter-spacing:89.635733pt;}
.ls36{letter-spacing:91.150933pt;}
.ls22{letter-spacing:95.148267pt;}
.ls30{letter-spacing:96.924800pt;}
.ls34{letter-spacing:103.462933pt;}
.ls2b{letter-spacing:103.463467pt;}
.ls37{letter-spacing:105.240000pt;}
.ls26{letter-spacing:105.240533pt;}
.ls1f{letter-spacing:113.058133pt;}
.ls20{letter-spacing:113.058667pt;}
.ls23{letter-spacing:113.059200pt;}
.ls25{letter-spacing:114.835733pt;}
.ls1e{letter-spacing:117.814400pt;}
.ls2c{letter-spacing:117.814933pt;}
.ls27{letter-spacing:119.591467pt;}
.ls35{letter-spacing:119.592000pt;}
.ls1c{letter-spacing:135.724800pt;}
.ls1d{letter-spacing:135.725333pt;}
.ls2f{letter-spacing:135.725867pt;}
.ls28{letter-spacing:137.502400pt;}
.ls33{letter-spacing:137.502933pt;}
.ws78{word-spacing:-24.979891pt;}
.ws79{word-spacing:-23.844442pt;}
.ws110{word-spacing:-19.200000pt;}
.ws10f{word-spacing:-18.666667pt;}
.ws1{word-spacing:-16.000000pt;}
.ws25{word-spacing:-14.133333pt;}
.ws24{word-spacing:-13.333333pt;}
.ws73{word-spacing:-12.821118pt;}
.ws74{word-spacing:-12.679187pt;}
.wscf{word-spacing:-12.533333pt;}
.ws70{word-spacing:-12.348014pt;}
.ws6e{word-spacing:-11.827600pt;}
.ws77{word-spacing:-11.780290pt;}
.ws76{word-spacing:-11.732979pt;}
.wscc{word-spacing:-11.333333pt;}
.ws71{word-spacing:-11.212565pt;}
.ws75{word-spacing:-10.881392pt;}
.ws3{word-spacing:-10.666667pt;}
.ws6f{word-spacing:-10.266357pt;}
.wsdf{word-spacing:-9.893333pt;}
.ws0{word-spacing:-9.333333pt;}
.wsec{word-spacing:-8.997333pt;}
.ws6d{word-spacing:-8.960000pt;}
.wsce{word-spacing:-8.773333pt;}
.ws22{word-spacing:-8.533333pt;}
.ws72{word-spacing:-8.515872pt;}
.ws96{word-spacing:-7.933333pt;}
.ws2{word-spacing:-7.466667pt;}
.ws23{word-spacing:-6.533333pt;}
.ws6{word-spacing:-6.400000pt;}
.wsde{word-spacing:-6.301333pt;}
.ws21{word-spacing:-3.626667pt;}
.ws128{word-spacing:-3.490667pt;}
.ws112{word-spacing:-3.360000pt;}
.ws80{word-spacing:-3.093333pt;}
.ws117{word-spacing:-2.773333pt;}
.ws48{word-spacing:-2.720000pt;}
.ws33{word-spacing:-2.506667pt;}
.ws40{word-spacing:-2.453333pt;}
.ws1f{word-spacing:-2.400000pt;}
.ws152{word-spacing:-2.176000pt;}
.ws47{word-spacing:-2.133333pt;}
.ws150{word-spacing:-2.130667pt;}
.ws105{word-spacing:-2.080000pt;}
.ws12a{word-spacing:-2.040000pt;}
.ws66{word-spacing:-2.026667pt;}
.ws151{word-spacing:-1.994667pt;}
.ws2b{word-spacing:-1.973333pt;}
.ws15b{word-spacing:-1.949333pt;}
.ws2f{word-spacing:-1.920000pt;}
.ws19{word-spacing:-1.866667pt;}
.ws64{word-spacing:-1.813333pt;}
.ws153{word-spacing:-1.768000pt;}
.ws13f{word-spacing:-1.722667pt;}
.ws118{word-spacing:-1.653333pt;}
.ws11d{word-spacing:-1.632000pt;}
.ws11{word-spacing:-1.600000pt;}
.ws101{word-spacing:-1.546667pt;}
.wsd7{word-spacing:-1.493333pt;}
.wsb9{word-spacing:-1.440000pt;}
.ws134{word-spacing:-1.360000pt;}
.wsfd{word-spacing:-1.333333pt;}
.ws8b{word-spacing:-1.280000pt;}
.ws62{word-spacing:-1.173333pt;}
.ws130{word-spacing:-1.133333pt;}
.wsf4{word-spacing:-1.066667pt;}
.ws166{word-spacing:-1.042667pt;}
.wsb7{word-spacing:-1.013333pt;}
.wsf{word-spacing:-0.960000pt;}
.ws13e{word-spacing:-0.952000pt;}
.ws162{word-spacing:-0.906667pt;}
.ws170{word-spacing:-0.861333pt;}
.ws18{word-spacing:-0.853333pt;}
.ws8{word-spacing:-0.800000pt;}
.ws42{word-spacing:-0.693333pt;}
.ws16a{word-spacing:-0.680000pt;}
.wsee{word-spacing:-0.640000pt;}
.ws3c{word-spacing:-0.586667pt;}
.ws4c{word-spacing:-0.560000pt;}
.ws4a{word-spacing:-0.533333pt;}
.ws87{word-spacing:-0.480000pt;}
.ws10{word-spacing:-0.426667pt;}
.ws2c{word-spacing:-0.320000pt;}
.ws16f{word-spacing:-0.226667pt;}
.ws28{word-spacing:-0.213333pt;}
.ws14f{word-spacing:-0.181333pt;}
.wsb0{word-spacing:-0.160000pt;}
.ws167{word-spacing:-0.136000pt;}
.ws9b{word-spacing:-0.106667pt;}
.ws26{word-spacing:-0.037333pt;}
.ws4{word-spacing:0.000000pt;}
.ws8c{word-spacing:0.053333pt;}
.ws2d{word-spacing:0.106667pt;}
.ws31{word-spacing:0.160000pt;}
.ws131{word-spacing:0.181333pt;}
.wsfa{word-spacing:0.213333pt;}
.ws32{word-spacing:0.266667pt;}
.ws13{word-spacing:0.320000pt;}
.wsa8{word-spacing:0.373333pt;}
.ws3e{word-spacing:0.426667pt;}
.ws7f{word-spacing:0.480000pt;}
.ws11c{word-spacing:0.498667pt;}
.ws8f{word-spacing:0.533333pt;}
.ws12e{word-spacing:0.634667pt;}
.ws4e{word-spacing:0.640000pt;}
.ws14d{word-spacing:0.725333pt;}
.ws114{word-spacing:0.746667pt;}
.ws149{word-spacing:0.770667pt;}
.ws5b{word-spacing:0.800000pt;}
.ws15d{word-spacing:0.816000pt;}
.ws41{word-spacing:0.906667pt;}
.ws92{word-spacing:0.946208pt;}
.ws17{word-spacing:0.960000pt;}
.ws136{word-spacing:0.997333pt;}
.wse{word-spacing:1.013333pt;}
.ws16{word-spacing:1.066667pt;}
.ws5a{word-spacing:1.173333pt;}
.ws140{word-spacing:1.224000pt;}
.ws6a{word-spacing:1.226667pt;}
.ws159{word-spacing:1.269333pt;}
.ws68{word-spacing:1.280000pt;}
.ws11f{word-spacing:1.314667pt;}
.ws9f{word-spacing:1.333333pt;}
.ws69{word-spacing:1.386667pt;}
.wsd9{word-spacing:1.440000pt;}
.ws1d{word-spacing:1.493333pt;}
.ws3a{word-spacing:1.546667pt;}
.wse5{word-spacing:1.600000pt;}
.wsb3{word-spacing:1.653333pt;}
.ws1a{word-spacing:1.760000pt;}
.ws1b{word-spacing:1.813333pt;}
.wsdc{word-spacing:1.866667pt;}
.ws143{word-spacing:1.904000pt;}
.ws109{word-spacing:1.920000pt;}
.ws6c{word-spacing:1.973333pt;}
.ws63{word-spacing:2.026667pt;}
.wsab{word-spacing:2.080000pt;}
.ws129{word-spacing:2.130667pt;}
.wsf2{word-spacing:2.133333pt;}
.ws161{word-spacing:2.221333pt;}
.wsfb{word-spacing:2.240000pt;}
.ws46{word-spacing:2.293333pt;}
.ws145{word-spacing:2.312000pt;}
.ws52{word-spacing:2.346667pt;}
.ws29{word-spacing:2.400000pt;}
.ws154{word-spacing:2.448000pt;}
.wsad{word-spacing:2.453333pt;}
.ws5c{word-spacing:2.506667pt;}
.ws36{word-spacing:2.560000pt;}
.ws1c{word-spacing:2.613333pt;}
.ws65{word-spacing:2.666667pt;}
.ws115{word-spacing:2.720000pt;}
.ws88{word-spacing:2.773333pt;}
.ws103{word-spacing:2.826667pt;}
.wsef{word-spacing:2.933333pt;}
.ws126{word-spacing:2.946667pt;}
.ws8e{word-spacing:3.040000pt;}
.wsf3{word-spacing:3.093333pt;}
.ws116{word-spacing:3.146667pt;}
.wsdb{word-spacing:3.200000pt;}
.ws104{word-spacing:3.253333pt;}
.ws14b{word-spacing:3.264000pt;}
.ws7d{word-spacing:3.306667pt;}
.ws35{word-spacing:3.360000pt;}
.ws57{word-spacing:3.466667pt;}
.ws133{word-spacing:3.490667pt;}
.ws7a{word-spacing:3.520000pt;}
.ws20{word-spacing:3.573333pt;}
.ws59{word-spacing:3.626667pt;}
.wsa0{word-spacing:3.680000pt;}
.ws3f{word-spacing:3.733333pt;}
.ws8a{word-spacing:3.786667pt;}
.ws5d{word-spacing:3.893333pt;}
.ws15{word-spacing:3.946667pt;}
.ws148{word-spacing:4.034667pt;}
.ws49{word-spacing:4.053333pt;}
.ws14{word-spacing:4.106667pt;}
.ws81{word-spacing:4.160000pt;}
.wsf9{word-spacing:4.213333pt;}
.ws147{word-spacing:4.261333pt;}
.ws7b{word-spacing:4.266667pt;}
.wse6{word-spacing:4.320000pt;}
.wsa7{word-spacing:4.373333pt;}
.ws4b{word-spacing:4.426667pt;}
.ws12f{word-spacing:4.442667pt;}
.ws4f{word-spacing:4.480000pt;}
.ws155{word-spacing:4.488000pt;}
.wsf0{word-spacing:4.586667pt;}
.ws44{word-spacing:4.640000pt;}
.ws67{word-spacing:4.693333pt;}
.ws85{word-spacing:4.746667pt;}
.ws12d{word-spacing:4.760000pt;}
.ws2e{word-spacing:4.800000pt;}
.ws11e{word-spacing:4.850667pt;}
.ws102{word-spacing:4.853333pt;}
.wsa6{word-spacing:4.906667pt;}
.ws61{word-spacing:4.960000pt;}
.wsf1{word-spacing:5.066667pt;}
.ws156{word-spacing:5.213333pt;}
.wsf8{word-spacing:5.226667pt;}
.ws15a{word-spacing:5.258667pt;}
.ws3b{word-spacing:5.280000pt;}
.wsfe{word-spacing:5.333333pt;}
.wsea{word-spacing:5.386667pt;}
.wsf5{word-spacing:5.440000pt;}
.ws16e{word-spacing:5.485333pt;}
.wsa{word-spacing:5.493333pt;}
.ws107{word-spacing:5.546667pt;}
.wsda{word-spacing:5.600000pt;}
.ws10c{word-spacing:5.653333pt;}
.ws15c{word-spacing:5.666667pt;}
.ws6b{word-spacing:5.706667pt;}
.ws137{word-spacing:5.757333pt;}
.ws7c{word-spacing:5.760000pt;}
.ws120{word-spacing:5.848000pt;}
.ws50{word-spacing:5.920000pt;}
.wsa5{word-spacing:5.973333pt;}
.ws122{word-spacing:6.029333pt;}
.ws142{word-spacing:6.074667pt;}
.wsa4{word-spacing:6.080000pt;}
.ws34{word-spacing:6.133333pt;}
.wseb{word-spacing:6.186667pt;}
.ws13d{word-spacing:6.210667pt;}
.ws45{word-spacing:6.240000pt;}
.ws106{word-spacing:6.293333pt;}
.ws160{word-spacing:6.392000pt;}
.ws37{word-spacing:6.400000pt;}
.ws2a{word-spacing:6.453333pt;}
.ws9c{word-spacing:6.506667pt;}
.ws86{word-spacing:6.613333pt;}
.ws14e{word-spacing:6.664000pt;}
.ws10a{word-spacing:6.720000pt;}
.wsa2{word-spacing:6.773333pt;}
.wsa9{word-spacing:6.826667pt;}
.ws3d{word-spacing:6.880000pt;}
.ws119{word-spacing:6.933333pt;}
.ws158{word-spacing:6.936000pt;}
.wsb5{word-spacing:6.986667pt;}
.wsaf{word-spacing:7.146667pt;}
.ws58{word-spacing:7.200000pt;}
.wsb8{word-spacing:7.253333pt;}
.wsf7{word-spacing:7.306667pt;}
.wsac{word-spacing:7.413333pt;}
.ws10d{word-spacing:7.466667pt;}
.wsc{word-spacing:7.520000pt;}
.ws141{word-spacing:7.570667pt;}
.ws10b{word-spacing:7.573333pt;}
.ws84{word-spacing:7.626667pt;}
.wsf6{word-spacing:7.680000pt;}
.ws5e{word-spacing:7.786667pt;}
.wsed{word-spacing:7.840000pt;}
.ws8d{word-spacing:7.893333pt;}
.ws1e{word-spacing:7.946667pt;}
.ws171{word-spacing:8.053333pt;}
.ws138{word-spacing:8.069333pt;}
.wsa1{word-spacing:8.106667pt;}
.ws132{word-spacing:8.160000pt;}
.ws13c{word-spacing:8.205333pt;}
.wse4{word-spacing:8.320000pt;}
.ws144{word-spacing:8.386667pt;}
.ws121{word-spacing:8.432000pt;}
.ws9d{word-spacing:8.533333pt;}
.ws9{word-spacing:8.586667pt;}
.ws39{word-spacing:8.640000pt;}
.wsd{word-spacing:8.693333pt;}
.ws13b{word-spacing:8.885333pt;}
.ws83{word-spacing:9.120000pt;}
.wsff{word-spacing:9.226667pt;}
.ws100{word-spacing:9.333333pt;}
.wsa3{word-spacing:9.440000pt;}
.wsfc{word-spacing:9.493333pt;}
.wsae{word-spacing:9.813333pt;}
.ws15f{word-spacing:9.837333pt;}
.ws43{word-spacing:9.920000pt;}
.wsb6{word-spacing:9.973333pt;}
.ws139{word-spacing:10.154667pt;}
.ws12{word-spacing:10.186667pt;}
.ws165{word-spacing:10.200000pt;}
.wsb4{word-spacing:10.240000pt;}
.wse7{word-spacing:10.293333pt;}
.ws10e{word-spacing:10.346667pt;}
.wsb2{word-spacing:10.506667pt;}
.ws108{word-spacing:10.560000pt;}
.wsd8{word-spacing:10.666667pt;}
.ws30{word-spacing:10.720000pt;}
.ws82{word-spacing:10.986667pt;}
.wsaa{word-spacing:11.093333pt;}
.ws51{word-spacing:11.146667pt;}
.ws127{word-spacing:11.378667pt;}
.ws111{word-spacing:11.413333pt;}
.ws146{word-spacing:11.514667pt;}
.ws123{word-spacing:11.696000pt;}
.wsb1{word-spacing:11.840000pt;}
.ws164{word-spacing:11.922667pt;}
.ws60{word-spacing:12.000000pt;}
.ws125{word-spacing:12.240000pt;}
.ws113{word-spacing:12.266667pt;}
.ws12b{word-spacing:12.330667pt;}
.wsb{word-spacing:12.373333pt;}
.ws163{word-spacing:12.376000pt;}
.ws9a{word-spacing:12.480000pt;}
.ws5f{word-spacing:12.693333pt;}
.ws135{word-spacing:13.192000pt;}
.ws38{word-spacing:13.333333pt;}
.ws55{word-spacing:13.600000pt;}
.ws11b{word-spacing:13.645333pt;}
.wsdd{word-spacing:13.920000pt;}
.ws13a{word-spacing:14.053333pt;}
.wse8{word-spacing:14.186667pt;}
.ws16c{word-spacing:14.189333pt;}
.ws53{word-spacing:14.240000pt;}
.ws124{word-spacing:14.416000pt;}
.ws16d{word-spacing:14.733333pt;}
.wse9{word-spacing:14.986667pt;}
.ws9e{word-spacing:15.200000pt;}
.ws157{word-spacing:15.368000pt;}
.ws12c{word-spacing:15.458667pt;}
.ws14c{word-spacing:15.504000pt;}
.ws54{word-spacing:15.733333pt;}
.ws168{word-spacing:16.229333pt;}
.ws91{word-spacing:16.373333pt;}
.ws7e{word-spacing:16.426667pt;}
.ws169{word-spacing:16.456000pt;}
.ws14a{word-spacing:17.725333pt;}
.ws90{word-spacing:18.240000pt;}
.ws15e{word-spacing:18.541333pt;}
.ws56{word-spacing:19.520000pt;}
.ws89{word-spacing:19.786667pt;}
.ws11a{word-spacing:21.714667pt;}
.ws16b{word-spacing:21.850667pt;}
.ws4d{word-spacing:26.240000pt;}
.ws5{word-spacing:27.066667pt;}
.ws27{word-spacing:28.000000pt;}
.ws7{word-spacing:48.000000pt;}
.wsc7{word-spacing:58.773333pt;}
.wscb{word-spacing:58.773867pt;}
.wscd{word-spacing:60.550400pt;}
.wsc2{word-spacing:60.550933pt;}
.wsc0{word-spacing:67.350933pt;}
.wsc1{word-spacing:69.722667pt;}
.wsc3{word-spacing:73.124800pt;}
.ws94{word-spacing:74.580800pt;}
.wsc6{word-spacing:75.168533pt;}
.wsbe{word-spacing:81.440000pt;}
.wsc5{word-spacing:83.217600pt;}
.wsc8{word-spacing:89.258667pt;}
.wsd0{word-spacing:89.624000pt;}
.ws98{word-spacing:90.447467pt;}
.wsc9{word-spacing:91.035733pt;}
.wsbd{word-spacing:92.389333pt;}
.wsd1{word-spacing:93.568000pt;}
.ws93{word-spacing:93.840000pt;}
.wsc4{word-spacing:95.792000pt;}
.ws95{word-spacing:97.247467pt;}
.wsca{word-spacing:111.924800pt;}
.wsbf{word-spacing:113.702400pt;}
.wsbb{word-spacing:113.786667pt;}
.wsbc{word-spacing:115.056000pt;}
.ws97{word-spacing:116.506667pt;}
.ws99{word-spacing:125.301333pt;}
.wsd5{word-spacing:157.986667pt;}
.wse1{word-spacing:158.213333pt;}
.wsd2{word-spacing:163.290667pt;}
.wse2{word-spacing:174.216000pt;}
.wsd3{word-spacing:185.957333pt;}
.wsd6{word-spacing:189.946667pt;}
.wse3{word-spacing:190.218667pt;}
.wsba{word-spacing:236.926933pt;}
.wsd4{word-spacing:448.800000pt;}
.wse0{word-spacing:449.389333pt;}
._74{margin-left:-33.864000pt;}
._6f{margin-left:-27.064000pt;}
._71{margin-left:-24.706667pt;}
._f{margin-left:-22.400000pt;}
._73{margin-left:-21.261333pt;}
._6b{margin-left:-19.493333pt;}
._6c{margin-left:-17.544000pt;}
._72{margin-left:-15.730667pt;}
._6a{margin-left:-14.778667pt;}
._14{margin-left:-13.483464pt;}
._15{margin-left:-11.828942pt;}
._6d{margin-left:-10.562667pt;}
._69{margin-left:-9.520000pt;}
._62{margin-left:-8.386667pt;}
._70{margin-left:-7.208000pt;}
._6{margin-left:-5.030400pt;}
._9{margin-left:-3.670933pt;}
._3{margin-left:-2.281067pt;}
._0{margin-left:-1.120000pt;}
._4{width:1.689067pt;}
._e{width:2.666667pt;}
._7{width:3.573333pt;}
._c{width:4.629333pt;}
._5d{width:5.526933pt;}
._12{width:6.938667pt;}
._11{width:8.304000pt;}
._b{width:9.920000pt;}
._d{width:12.021333pt;}
._5c{width:14.894933pt;}
._65{width:16.818667pt;}
._64{width:18.352000pt;}
._6e{width:19.448000pt;}
._68{width:20.762667pt;}
._63{width:22.369067pt;}
._66{width:24.162667pt;}
._10{width:30.688000pt;}
._13{width:34.000000pt;}
._5{width:36.400000pt;}
._a{width:48.000000pt;}
._61{width:60.460800pt;}
._51{width:67.501333pt;}
._35{width:73.757333pt;}
._3e{width:81.056000pt;}
._33{width:87.856000pt;}
._34{width:102.226667pt;}
._23{width:105.173333pt;}
._1d{width:113.968000pt;}
._31{width:118.365333pt;}
._32{width:120.133333pt;}
._17{width:121.312000pt;}
._16{width:126.570667pt;}
._1a{width:127.840000pt;}
._22{width:130.106667pt;}
._52{width:133.280000pt;}
._19{width:136.634667pt;}
._2b{width:150.506667pt;}
._1b{width:152.773333pt;}
._2e{width:153.876800pt;}
._24{width:160.525333pt;}
._55{width:169.320000pt;}
._3d{width:174.216000pt;}
._56{width:185.277333pt;}
._5e{width:186.365333pt;}
._5f{width:192.440000pt;}
._3f{width:194.389333pt;}
._29{width:200.826667pt;}
._5b{width:202.096000pt;}
._59{width:208.352000pt;}
._60{width:218.370667pt;}
._21{width:221.000000pt;}
._43{width:223.765333pt;}
._40{width:225.714667pt;}
._41{width:233.285333pt;}
._36{width:239.677333pt;}
._26{width:241.173333pt;}
._25{width:246.205333pt;}
._57{width:248.925333pt;}
._27{width:249.832000pt;}
._28{width:264.973333pt;}
._5a{width:273.813333pt;}
._45{width:280.432000pt;}
._2f{width:282.739733pt;}
._4f{width:286.733333pt;}
._4b{width:287.912000pt;}
._1f{width:295.774400pt;}
._42{width:299.653333pt;}
._30{width:303.189867pt;}
._50{width:304.368000pt;}
._2d{width:310.714667pt;}
._1c{width:311.666667pt;}
._3c{width:315.248000pt;}
._3b{width:322.320000pt;}
._54{width:325.448000pt;}
._2c{width:334.142933pt;}
._39{width:336.373333pt;}
._3a{width:350.744000pt;}
._4a{width:351.786667pt;}
._2a{width:355.730667pt;}
._20{width:362.032000pt;}
._37{width:366.882667pt;}
._38{width:368.650667pt;}
._49{width:374.181333pt;}
._18{width:392.269333pt;}
._46{width:396.848000pt;}
._1e{width:398.661333pt;}
._47{width:415.525333pt;}
._4e{width:422.733333pt;}
._58{width:429.941333pt;}
._53{width:434.928000pt;}
._4d{width:460.496000pt;}
._48{width:465.482667pt;}
._4c{width:475.592000pt;}
._44{width:490.688000pt;}
._1{width:825.738667pt;}
._2{width:1130.901333pt;}
._67{width:1904.400533pt;}
._8{width:1923.067200pt;}
.fse{font-size:26.133333pt;}
.fsf{font-size:27.626667pt;}
.fsa{font-size:29.866667pt;}
.fs11{font-size:31.733333pt;}
.fs0{font-size:37.333333pt;}
.fs12{font-size:40.000000pt;}
.fsb{font-size:42.666667pt;}
.fs8{font-size:44.800000pt;}
.fsc{font-size:45.333333pt;}
.fs10{font-size:47.310400pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:82.133333pt;}
.fs9{font-size:83.200000pt;}
.fs3{font-size:84.480000pt;}
.fsd{font-size:92.213333pt;}
.fs5{font-size:94.453333pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:27.413600pt;}
.y2{bottom:39.082933pt;}
.y3{bottom:39.416267pt;}
.y1{bottom:40.749600pt;}
.y4{bottom:40.750933pt;}
.y17{bottom:67.441333pt;}
.y6c{bottom:67.441600pt;}
.y13f{bottom:67.510267pt;}
.yb1{bottom:74.088133pt;}
.yb5{bottom:74.105200pt;}
.y13e{bottom:82.844267pt;}
.yad{bottom:83.441333pt;}
.yb2{bottom:84.084133pt;}
.yb6{bottom:84.101200pt;}
.yb3{bottom:84.112267pt;}
.yb4{bottom:84.112400pt;}
.yb7{bottom:84.112533pt;}
.y103{bottom:84.757600pt;}
.y6b{bottom:84.774933pt;}
.y13d{bottom:98.178267pt;}
.yac{bottom:99.441333pt;}
.y102{bottom:100.091600pt;}
.yc{bottom:102.108267pt;}
.y145{bottom:106.774933pt;}
.yab{bottom:113.441333pt;}
.y13c{bottom:113.512267pt;}
.y101{bottom:115.425600pt;}
.y77{bottom:118.108267pt;}
.yb{bottom:119.441600pt;}
.yb9{bottom:119.452267pt;}
.y144{bottom:124.108267pt;}
.yaa{bottom:127.441333pt;}
.y13b{bottom:128.846267pt;}
.y100{bottom:130.759600pt;}
.ya{bottom:136.774933pt;}
.yb8{bottom:136.780267pt;}
.ya9{bottom:141.441333pt;}
.y143{bottom:141.441600pt;}
.y13a{bottom:144.180267pt;}
.yff{bottom:146.093600pt;}
.y72{bottom:152.774933pt;}
.y9{bottom:154.108267pt;}
.ya8{bottom:155.441333pt;}
.y142{bottom:158.774933pt;}
.y139{bottom:159.514267pt;}
.yfe{bottom:161.427600pt;}
.ya7{bottom:171.441333pt;}
.y8{bottom:171.441600pt;}
.y138{bottom:174.848267pt;}
.y141{bottom:176.108267pt;}
.yfd{bottom:176.761600pt;}
.yd{bottom:188.774933pt;}
.y137{bottom:190.182267pt;}
.yfc{bottom:192.095600pt;}
.y140{bottom:193.441600pt;}
.ya6{bottom:193.447333pt;}
.y7{bottom:204.774933pt;}
.yb0{bottom:205.407467pt;}
.yae{bottom:205.408133pt;}
.y136{bottom:205.516267pt;}
.y6{bottom:206.108267pt;}
.yfb{bottom:207.429600pt;}
.ya5{bottom:212.612000pt;}
.y135{bottom:220.850267pt;}
.yfa{bottom:222.763600pt;}
.y6a{bottom:223.441600pt;}
.ya4{bottom:231.776667pt;}
.y134{bottom:236.184267pt;}
.yf9{bottom:238.097600pt;}
.y69{bottom:240.774933pt;}
.ya3{bottom:250.953333pt;}
.y133{bottom:251.518267pt;}
.yf8{bottom:253.431600pt;}
.y68{bottom:258.108267pt;}
.y3d{bottom:266.616267pt;}
.y132{bottom:266.852267pt;}
.yf7{bottom:268.765600pt;}
.ya2{bottom:270.118000pt;}
.y67{bottom:275.441600pt;}
.y131{bottom:282.186267pt;}
.yf6{bottom:284.099600pt;}
.y3c{bottom:285.282933pt;}
.ya1{bottom:289.282667pt;}
.y66{bottom:292.774933pt;}
.y79{bottom:292.780267pt;}
.y130{bottom:297.520267pt;}
.yf5{bottom:299.433600pt;}
.ya0{bottom:308.447333pt;}
.y78{bottom:308.774933pt;}
.y65{bottom:310.108267pt;}
.y12f{bottom:312.854267pt;}
.yf4{bottom:314.767600pt;}
.yda{bottom:315.982667pt;}
.y3b{bottom:317.282933pt;}
.y64{bottom:327.441600pt;}
.y9f{bottom:327.612000pt;}
.y12e{bottom:328.188267pt;}
.yf3{bottom:330.101600pt;}
.y3a{bottom:337.282933pt;}
.yd9{bottom:337.993333pt;}
.y12d{bottom:343.522267pt;}
.y63{bottom:344.774933pt;}
.yf2{bottom:345.435600pt;}
.y9e{bottom:346.776667pt;}
.yd8{bottom:357.158000pt;}
.y39{bottom:357.282933pt;}
.y12c{bottom:358.856267pt;}
.yf1{bottom:360.769600pt;}
.y62{bottom:362.108267pt;}
.y9d{bottom:365.943333pt;}
.y12b{bottom:374.190267pt;}
.yf0{bottom:376.103600pt;}
.yd7{bottom:376.322667pt;}
.y38{bottom:377.282933pt;}
.y71{bottom:379.441600pt;}
.y94{bottom:379.452267pt;}
.y9c{bottom:385.110000pt;}
.y12a{bottom:389.524267pt;}
.yef{bottom:391.437600pt;}
.y60{bottom:395.441600pt;}
.yd6{bottom:395.487333pt;}
.y5f{bottom:396.769600pt;}
.y61{bottom:396.774933pt;}
.y93{bottom:396.780267pt;}
.y37{bottom:397.282933pt;}
.y9b{bottom:404.276667pt;}
.y129{bottom:404.858267pt;}
.yee{bottom:406.771600pt;}
.y92{bottom:412.774933pt;}
.y70{bottom:414.108267pt;}
.yd5{bottom:414.652000pt;}
.y36{bottom:417.282933pt;}
.y128{bottom:420.192267pt;}
.yed{bottom:422.105600pt;}
.y9a{bottom:423.440000pt;}
.y5e{bottom:430.108267pt;}
.y5d{bottom:431.441600pt;}
.yd4{bottom:433.816667pt;}
.y127{bottom:435.526267pt;}
.y35{bottom:437.282933pt;}
.yec{bottom:437.439600pt;}
.y99{bottom:442.604667pt;}
.y6f{bottom:448.774933pt;}
.y126{bottom:450.860267pt;}
.yeb{bottom:452.773600pt;}
.yd3{bottom:452.981333pt;}
.y34{bottom:457.282933pt;}
.y98{bottom:464.308000pt;}
.y6e{bottom:466.108267pt;}
.y125{bottom:466.194267pt;}
.yea{bottom:468.107600pt;}
.yd2{bottom:472.146000pt;}
.y33{bottom:477.282933pt;}
.y124{bottom:481.528267pt;}
.y5c{bottom:483.441600pt;}
.y26{bottom:487.282933pt;}
.y97{bottom:489.207333pt;}
.yd0{bottom:493.849333pt;}
.y123{bottom:496.862267pt;}
.y32{bottom:497.282933pt;}
.y5b{bottom:500.774933pt;}
.y25{bottom:501.949600pt;}
.y96{bottom:504.541333pt;}
.yd1{bottom:509.183333pt;}
.y122{bottom:512.196267pt;}
.y24{bottom:516.616267pt;}
.y31{bottom:517.282933pt;}
.y8a{bottom:517.469317pt;}
.y5a{bottom:518.108267pt;}
.y121{bottom:527.530267pt;}
.y95{bottom:529.908000pt;}
.y23{bottom:531.282933pt;}
.ycf{bottom:534.549333pt;}
.y59{bottom:535.441600pt;}
.y30{bottom:537.282933pt;}
.y120{bottom:542.864267pt;}
.y89{bottom:543.016933pt;}
.y58{bottom:552.774933pt;}
.y2f{bottom:557.282933pt;}
.y11f{bottom:558.198267pt;}
.y22{bottom:560.616267pt;}
.y57{bottom:570.108267pt;}
.y11e{bottom:573.532267pt;}
.y21{bottom:575.282933pt;}
.y2e{bottom:577.282933pt;}
.yce{bottom:583.350800pt;}
.y56{bottom:587.441600pt;}
.y11d{bottom:588.866267pt;}
.y20{bottom:589.949600pt;}
.y2d{bottom:597.282933pt;}
.ycd{bottom:602.515467pt;}
.y11c{bottom:604.200267pt;}
.y1f{bottom:604.616267pt;}
.y55{bottom:604.774933pt;}
.y2c{bottom:617.282933pt;}
.y1e{bottom:619.282933pt;}
.y11b{bottom:619.534267pt;}
.ycc{bottom:621.680133pt;}
.y54{bottom:622.108267pt;}
.y1d{bottom:633.949600pt;}
.y11a{bottom:634.868267pt;}
.y2b{bottom:637.282933pt;}
.y53{bottom:639.441600pt;}
.ycb{bottom:640.844800pt;}
.y81{bottom:644.633831pt;}
.y119{bottom:650.202267pt;}
.y52{bottom:656.774933pt;}
.y2a{bottom:657.282933pt;}
.yca{bottom:660.009467pt;}
.y80{bottom:660.246263pt;}
.y1c{bottom:663.282933pt;}
.y118{bottom:665.536267pt;}
.ye9{bottom:665.708000pt;}
.y51{bottom:674.108267pt;}
.y7f{bottom:675.858695pt;}
.y29{bottom:677.282933pt;}
.y1b{bottom:677.949600pt;}
.yc9{bottom:679.174133pt;}
.y117{bottom:680.870267pt;}
.ye8{bottom:681.710667pt;}
.y50{bottom:691.441600pt;}
.y7e{bottom:691.471127pt;}
.y116{bottom:696.204267pt;}
.y28{bottom:697.282933pt;}
.y1a{bottom:697.416133pt;}
.ye7{bottom:697.713333pt;}
.yc8{bottom:698.338800pt;}
.y7d{bottom:707.201835pt;}
.y4f{bottom:708.774933pt;}
.y19{bottom:711.282933pt;}
.y115{bottom:711.538267pt;}
.ye6{bottom:713.716000pt;}
.y27{bottom:717.282933pt;}
.yc7{bottom:717.503467pt;}
.y7c{bottom:722.814267pt;}
.y4e{bottom:726.108267pt;}
.y8e{bottom:726.113600pt;}
.y114{bottom:726.872267pt;}
.y18{bottom:730.749467pt;}
.yc6{bottom:736.668133pt;}
.y8d{bottom:742.108267pt;}
.y113{bottom:742.206267pt;}
.y8c{bottom:743.436267pt;}
.y4d{bottom:743.441600pt;}
.ye5{bottom:753.316267pt;}
.yc5{bottom:755.832800pt;}
.y112{bottom:757.540267pt;}
.y4c{bottom:760.774933pt;}
.y16{bottom:772.616267pt;}
.y111{bottom:772.874267pt;}
.yc4{bottom:774.997467pt;}
.ye4{bottom:775.326800pt;}
.y8b{bottom:776.774933pt;}
.y4b{bottom:778.108267pt;}
.y110{bottom:788.208267pt;}
.yc3{bottom:794.162133pt;}
.ye3{bottom:794.491467pt;}
.y15{bottom:794.616267pt;}
.y4a{bottom:795.441600pt;}
.y14{bottom:796.616267pt;}
.yaf{bottom:801.809067pt;}
.y10f{bottom:803.542267pt;}
.y49{bottom:812.774933pt;}
.yc2{bottom:813.326800pt;}
.ye2{bottom:813.656133pt;}
.y10e{bottom:818.876267pt;}
.y85{bottom:820.066971pt;}
.y48{bottom:830.108267pt;}
.yc1{bottom:832.491467pt;}
.ye1{bottom:832.820800pt;}
.y10d{bottom:834.210267pt;}
.y84{bottom:835.679403pt;}
.y6d{bottom:846.108267pt;}
.y47{bottom:847.441600pt;}
.y13{bottom:848.610933pt;}
.y10c{bottom:849.544267pt;}
.y83{bottom:851.291835pt;}
.yc0{bottom:851.656133pt;}
.ye0{bottom:851.985467pt;}
.y46{bottom:864.774933pt;}
.y10b{bottom:864.878267pt;}
.y82{bottom:866.904267pt;}
.ybf{bottom:870.820800pt;}
.ydf{bottom:871.150133pt;}
.y12{bottom:879.282933pt;}
.y10a{bottom:880.212267pt;}
.y45{bottom:882.108267pt;}
.ybe{bottom:889.985467pt;}
.yde{bottom:890.314800pt;}
.y109{bottom:895.546267pt;}
.y44{bottom:899.441600pt;}
.ybd{bottom:909.150133pt;}
.ydd{bottom:909.479467pt;}
.y108{bottom:910.880267pt;}
.y43{bottom:916.774933pt;}
.y107{bottom:926.214267pt;}
.y88{bottom:930.773136pt;}
.ybc{bottom:931.182133pt;}
.ydb{bottom:931.182800pt;}
.y42{bottom:934.108267pt;}
.y91{bottom:934.118933pt;}
.y106{bottom:941.548267pt;}
.y11{bottom:941.949600pt;}
.y87{bottom:946.385568pt;}
.ybb{bottom:946.516133pt;}
.ydc{bottom:946.516800pt;}
.y41{bottom:951.441600pt;}
.y90{bottom:951.446933pt;}
.y7b{bottom:956.380267pt;}
.y105{bottom:956.882267pt;}
.y86{bottom:961.998000pt;}
.y8f{bottom:967.441600pt;}
.y40{bottom:968.774933pt;}
.yba{bottom:971.882933pt;}
.y104{bottom:972.216267pt;}
.y7a{bottom:972.382933pt;}
.y10{bottom:977.912133pt;}
.yf{bottom:991.508133pt;}
.ye{bottom:997.241467pt;}
.y3f{bottom:998.954267pt;}
.y75{bottom:998.954933pt;}
.y76{bottom:1004.045867pt;}
.y3e{bottom:1004.154267pt;}
.y74{bottom:1004.154933pt;}
.y73{bottom:1022.280000pt;}
.h15{height:27.114062pt;}
.he{height:27.716267pt;}
.h17{height:32.880728pt;}
.h2{height:34.645333pt;}
.h4{height:35.952000pt;}
.h1b{height:37.120000pt;}
.hf{height:39.594667pt;}
.h10{height:41.088000pt;}
.h12{height:42.069333pt;}
.h16{height:43.656000pt;}
.h1c{height:43.658667pt;}
.ha{height:46.224000pt;}
.h7{height:49.493333pt;}
.h1a{height:49.800533pt;}
.h1d{height:49.824533pt;}
.h19{height:49.840533pt;}
.h18{height:49.853867pt;}
.h11{height:51.360000pt;}
.h8{height:58.645333pt;}
.h5{height:61.632000pt;}
.hc{height:71.942400pt;}
.h3{height:76.219733pt;}
.hd{height:77.209600pt;}
.h6{height:78.397440pt;}
.h9{height:87.652693pt;}
.h13{height:88.801440pt;}
.hb{height:92.448000pt;}
.h14{height:1043.146667pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:59.717067pt;}
.x14{left:61.984000pt;}
.x4b{left:67.717200pt;}
.x2f{left:69.977067pt;}
.x4a{left:77.044533pt;}
.x17{left:79.318000pt;}
.x4f{left:84.650933pt;}
.x6{left:86.916533pt;}
.x18{left:89.184267pt;}
.x7{left:91.716533pt;}
.x19{left:93.984133pt;}
.x21{left:95.716533pt;}
.x15{left:98.038533pt;}
.x16{left:99.886400pt;}
.x1a{left:101.184133pt;}
.x4d{left:102.705200pt;}
.x4e{left:104.553067pt;}
.xa{left:160.077200pt;}
.xb{left:161.943733pt;}
.x2e{left:197.314933pt;}
.x30{left:200.316533pt;}
.x48{left:203.277733pt;}
.x46{left:220.917867pt;}
.x32{left:225.683200pt;}
.x31{left:241.016533pt;}
.x33{left:265.915867pt;}
.xc{left:267.382000pt;}
.xd{left:269.248667pt;}
.x13{left:276.146667pt;}
.xe{left:282.517733pt;}
.xf{left:285.717733pt;}
.x34{left:287.947867pt;}
.x24{left:296.623333pt;}
.x35{left:307.112533pt;}
.x25{left:314.364733pt;}
.x36{left:326.277200pt;}
.x37{left:345.447867pt;}
.x38{left:364.614533pt;}
.x39{left:383.781200pt;}
.x28{left:397.154533pt;}
.x3a{left:402.947867pt;}
.x8{left:407.732000pt;}
.x1b{left:409.983733pt;}
.x2c{left:416.936491pt;}
.x2a{left:422.962357pt;}
.x9{left:425.068133pt;}
.x51{left:426.002800pt;}
.x2d{left:427.330667pt;}
.x4c{left:430.401867pt;}
.x50{left:432.669467pt;}
.x3b{left:441.281200pt;}
.x22{left:443.716533pt;}
.x1c{left:445.984133pt;}
.x23{left:446.916533pt;}
.x1d{left:449.184000pt;}
.x10{left:451.064133pt;}
.x11{left:454.264000pt;}
.x29{left:459.391365pt;}
.x3c{left:460.445867pt;}
.x3d{left:479.610533pt;}
.x3e{left:498.781200pt;}
.x3f{left:517.947867pt;}
.x26{left:522.792133pt;}
.x40{left:537.114533pt;}
.x27{left:540.557189pt;}
.x47{left:542.285867pt;}
.x5{left:552.154667pt;}
.x41{left:556.281200pt;}
.x2b{left:569.412133pt;}
.x42{left:575.447867pt;}
.x43{left:597.449867pt;}
.x44{left:613.449867pt;}
.x45{left:629.449867pt;}
.x1f{left:669.481467pt;}
.x49{left:685.964400pt;}
.x2{left:691.445200pt;}
.x3{left:693.311733pt;}
.x20{left:695.269333pt;}
.x4{left:705.211733pt;}
.x12{left:708.649467pt;}
.x1e{left:773.453333pt;}
}




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