
    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_d300bf147324c43877a26e11.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.981000;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_c2a58d0c87dc41beb12a51d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.683000;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_1fb6eece268f1b92c4410b09.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.957000;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_2d020f91fdab6b6119620e7f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.968000;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_0115db6ce866ae7279335974.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.979000;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_ea57149ad47014a7a8dfbbe6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.021000;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_00beee0a75b1d0fd461473f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962000;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_ae572dc6b1623b5aa1c5bf3d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.979000;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_4319d018aea593e597c3153a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.957000;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_402ce0bc732367e820909525.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.692000;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_eeab4c84cad0089ae3daa202.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.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);}
.vc{vertical-align:-43.683000px;}
.va{vertical-align:-24.000000px;}
.v6{vertical-align:-22.977000px;}
.v3{vertical-align:-19.980000px;}
.v8{vertical-align:-17.943000px;}
.v4{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.994000px;}
.v9{vertical-align:17.982000px;}
.v2{vertical-align:19.980000px;}
.v5{vertical-align:22.977000px;}
.vb{vertical-align:24.000000px;}
.vd{vertical-align:25.692600px;}
.v7{vertical-align:43.632000px;}
.ls34{letter-spacing:-3.402000px;}
.ls3d{letter-spacing:-3.240000px;}
.ls33{letter-spacing:-2.646000px;}
.lsa{letter-spacing:-1.320000px;}
.ls19{letter-spacing:-1.200000px;}
.ls12{letter-spacing:-1.080000px;}
.ls27{letter-spacing:-0.702000px;}
.lsb{letter-spacing:-0.660000px;}
.ls5d{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.540000px;}
.ls5{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000060px;}
.ls35{letter-spacing:0.000132px;}
.ls17{letter-spacing:0.000180px;}
.ls48{letter-spacing:0.000234px;}
.ls24{letter-spacing:0.001800px;}
.ls4e{letter-spacing:0.002400px;}
.ls2c{letter-spacing:0.003000px;}
.ls25{letter-spacing:0.004200px;}
.ls2b{letter-spacing:0.005400px;}
.ls43{letter-spacing:0.007200px;}
.ls23{letter-spacing:0.013200px;}
.ls4a{letter-spacing:0.014400px;}
.ls32{letter-spacing:0.020400px;}
.ls31{letter-spacing:0.021600px;}
.ls28{letter-spacing:0.022200px;}
.ls49{letter-spacing:0.022800px;}
.ls47{letter-spacing:0.025200px;}
.ls26{letter-spacing:0.025800px;}
.ls30{letter-spacing:0.028800px;}
.ls3c{letter-spacing:0.031200px;}
.ls44{letter-spacing:0.037200px;}
.ls46{letter-spacing:0.045600px;}
.ls5b{letter-spacing:0.053400px;}
.ls2f{letter-spacing:0.054600px;}
.ls2e{letter-spacing:0.071400px;}
.ls45{letter-spacing:0.075600px;}
.ls29{letter-spacing:0.106800px;}
.ls2d{letter-spacing:0.123600px;}
.ls4f{letter-spacing:0.139800px;}
.ls3b{letter-spacing:0.141000px;}
.ls2a{letter-spacing:0.169800px;}
.ls55{letter-spacing:0.196200px;}
.ls54{letter-spacing:0.230400px;}
.ls42{letter-spacing:0.325800px;}
.ls21{letter-spacing:0.349980px;}
.ls7{letter-spacing:0.540000px;}
.ls20{letter-spacing:0.600000px;}
.ls40{letter-spacing:0.698820px;}
.ls1d{letter-spacing:0.699180px;}
.ls38{letter-spacing:0.699420px;}
.ls3a{letter-spacing:0.699780px;}
.ls1a{letter-spacing:0.803712px;}
.ls52{letter-spacing:0.803889px;}
.ls22{letter-spacing:0.804312px;}
.ls53{letter-spacing:0.804489px;}
.ls1e{letter-spacing:1.020000px;}
.ls57{letter-spacing:1.048980px;}
.ls5a{letter-spacing:1.049220px;}
.ls36{letter-spacing:1.071000px;}
.ls6{letter-spacing:1.080000px;}
.ls1c{letter-spacing:1.131600px;}
.ls39{letter-spacing:1.164600px;}
.ls37{letter-spacing:1.182000px;}
.ls4d{letter-spacing:1.195800px;}
.ls4c{letter-spacing:1.197600px;}
.ls10{letter-spacing:1.200000px;}
.ls3f{letter-spacing:1.208400px;}
.ls4b{letter-spacing:1.215000px;}
.ls41{letter-spacing:1.216800px;}
.ls3e{letter-spacing:1.263600px;}
.ls1f{letter-spacing:1.320000px;}
.ls51{letter-spacing:1.378200px;}
.ls18{letter-spacing:1.380000px;}
.ls13{letter-spacing:1.440000px;}
.ls15{letter-spacing:1.560000px;}
.lsd{letter-spacing:1.620000px;}
.ls5c{letter-spacing:1.800000px;}
.ls58{letter-spacing:1.803600px;}
.ls56{letter-spacing:1.806600px;}
.ls59{letter-spacing:1.807800px;}
.ls3{letter-spacing:1.890000px;}
.ls14{letter-spacing:2.760000px;}
.ls16{letter-spacing:3.239400px;}
.ls0{letter-spacing:3.240000px;}
.ls4{letter-spacing:3.600000px;}
.ls8{letter-spacing:4.320000px;}
.ls9{letter-spacing:6.480000px;}
.ls11{letter-spacing:7.200000px;}
.lsf{letter-spacing:7.260000px;}
.ls2{letter-spacing:7.560000px;}
.ls1{letter-spacing:8.640000px;}
.lse{letter-spacing:9.879156px;}
.ls50{letter-spacing:195.912000px;}
.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;}
}
.wsbc{word-spacing:-209.412000px;}
.ws9{word-spacing:-37.200000px;}
.ws4{word-spacing:-22.320000px;}
.wsc3{word-spacing:-21.060000px;}
.ws8{word-spacing:-17.550000px;}
.ws7{word-spacing:-13.770000px;}
.ws2{word-spacing:-13.530000px;}
.ws96{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.150000px;}
.ws29{word-spacing:-12.000000px;}
.ws2b{word-spacing:-10.056750px;}
.ws7d{word-spacing:-8.657550px;}
.wsc{word-spacing:-7.870500px;}
.ws2e{word-spacing:-7.083450px;}
.ws2a{word-spacing:-6.996000px;}
.wsa2{word-spacing:-6.240000px;}
.wsc5{word-spacing:-6.000000px;}
.ws90{word-spacing:-5.400000px;}
.ws1e{word-spacing:-3.960000px;}
.ws5d{word-spacing:-3.720000px;}
.ws1f{word-spacing:-3.360000px;}
.ws95{word-spacing:-3.294000px;}
.wsa5{word-spacing:-3.240000px;}
.wsdc{word-spacing:-2.940000px;}
.ws18{word-spacing:-2.700000px;}
.ws76{word-spacing:-2.460000px;}
.ws4b{word-spacing:-2.400000px;}
.ws6e{word-spacing:-2.340000px;}
.wsaa{word-spacing:-2.280000px;}
.ws51{word-spacing:-2.220000px;}
.ws77{word-spacing:-2.160000px;}
.ws71{word-spacing:-2.100000px;}
.ws7a{word-spacing:-2.040000px;}
.wsac{word-spacing:-1.920000px;}
.ws48{word-spacing:-1.860000px;}
.ws24{word-spacing:-1.800000px;}
.wsab{word-spacing:-1.740000px;}
.wsd3{word-spacing:-1.680000px;}
.wsb{word-spacing:-1.620000px;}
.wse{word-spacing:-1.560000px;}
.ws55{word-spacing:-1.500000px;}
.ws5c{word-spacing:-1.380000px;}
.ws36{word-spacing:-1.260000px;}
.wsa3{word-spacing:-1.200000px;}
.ws6{word-spacing:-1.080000px;}
.ws78{word-spacing:-0.960000px;}
.ws54{word-spacing:-0.900000px;}
.wsb6{word-spacing:-0.840000px;}
.ws17{word-spacing:-0.660000px;}
.wsdb{word-spacing:-0.540000px;}
.ws22{word-spacing:-0.480000px;}
.ws25{word-spacing:-0.360000px;}
.wsd0{word-spacing:-0.300000px;}
.wsd{word-spacing:-0.288000px;}
.ws27{word-spacing:-0.240000px;}
.ws9e{word-spacing:-0.180000px;}
.ws6b{word-spacing:-0.120000px;}
.wsd1{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.wsa9{word-spacing:0.120000px;}
.ws6f{word-spacing:0.180000px;}
.ws62{word-spacing:0.240000px;}
.ws6a{word-spacing:0.360000px;}
.ws46{word-spacing:0.480000px;}
.ws3b{word-spacing:0.540000px;}
.ws4a{word-spacing:0.600000px;}
.ws50{word-spacing:0.660000px;}
.wsa1{word-spacing:0.720000px;}
.wsb8{word-spacing:0.840000px;}
.ws3a{word-spacing:0.900000px;}
.wsd4{word-spacing:0.960000px;}
.wsb2{word-spacing:1.020000px;}
.wsa{word-spacing:1.080000px;}
.ws11{word-spacing:1.140000px;}
.wsb9{word-spacing:1.200000px;}
.ws10{word-spacing:1.260000px;}
.ws5{word-spacing:1.320000px;}
.wscf{word-spacing:1.380000px;}
.ws23{word-spacing:1.440000px;}
.ws6d{word-spacing:1.680000px;}
.ws5b{word-spacing:1.740000px;}
.ws16{word-spacing:1.800000px;}
.wsc6{word-spacing:1.860000px;}
.ws73{word-spacing:1.980000px;}
.wsa7{word-spacing:2.040000px;}
.ws4d{word-spacing:2.160000px;}
.ws69{word-spacing:2.280000px;}
.ws65{word-spacing:2.340000px;}
.wsa6{word-spacing:2.400000px;}
.wsaf{word-spacing:2.460000px;}
.ws79{word-spacing:2.520000px;}
.ws37{word-spacing:2.580000px;}
.ws1d{word-spacing:2.640000px;}
.ws72{word-spacing:2.700000px;}
.ws59{word-spacing:2.760000px;}
.ws34{word-spacing:2.820000px;}
.ws1{word-spacing:2.880000px;}
.ws35{word-spacing:2.940000px;}
.ws5f{word-spacing:3.060000px;}
.ws47{word-spacing:3.120000px;}
.ws68{word-spacing:3.240000px;}
.ws1c{word-spacing:3.300000px;}
.ws43{word-spacing:3.360000px;}
.ws42{word-spacing:3.420000px;}
.ws4f{word-spacing:3.540000px;}
.wsc4{word-spacing:3.600000px;}
.ws64{word-spacing:3.720000px;}
.wsb1{word-spacing:3.780000px;}
.ws56{word-spacing:3.840000px;}
.ws5a{word-spacing:4.020000px;}
.ws75{word-spacing:4.200000px;}
.ws1b{word-spacing:4.320000px;}
.ws6c{word-spacing:4.560000px;}
.ws58{word-spacing:4.620000px;}
.wsde{word-spacing:4.680000px;}
.ws15{word-spacing:4.740000px;}
.ws21{word-spacing:4.800000px;}
.ws67{word-spacing:4.980000px;}
.ws53{word-spacing:5.040000px;}
.wsb3{word-spacing:5.100000px;}
.wsc7{word-spacing:5.160000px;}
.wscb{word-spacing:5.220000px;}
.ws1a{word-spacing:5.280000px;}
.wsdd{word-spacing:5.400000px;}
.ws7b{word-spacing:5.460000px;}
.ws63{word-spacing:5.520000px;}
.wsa4{word-spacing:5.580000px;}
.wsa8{word-spacing:5.700000px;}
.ws14{word-spacing:5.820000px;}
.ws70{word-spacing:5.880000px;}
.wsc9{word-spacing:5.940000px;}
.ws44{word-spacing:6.060000px;}
.ws66{word-spacing:6.180000px;}
.ws39{word-spacing:6.240000px;}
.wsb0{word-spacing:6.300000px;}
.ws61{word-spacing:6.420000px;}
.wsa0{word-spacing:6.660000px;}
.ws4c{word-spacing:6.780000px;}
.ws20{word-spacing:6.960000px;}
.wsb7{word-spacing:7.080000px;}
.ws74{word-spacing:7.140000px;}
.ws60{word-spacing:7.260000px;}
.wse2{word-spacing:7.320000px;}
.wsd8{word-spacing:7.500000px;}
.ws38{word-spacing:7.680000px;}
.wsca{word-spacing:8.340000px;}
.wsd9{word-spacing:8.580000px;}
.wsd5{word-spacing:9.180000px;}
.wsda{word-spacing:9.600000px;}
.wscc{word-spacing:9.720000px;}
.ws26{word-spacing:9.960000px;}
.ws12{word-spacing:10.200000px;}
.wsce{word-spacing:10.320000px;}
.wsc8{word-spacing:10.980000px;}
.ws45{word-spacing:11.340000px;}
.ws19{word-spacing:11.460000px;}
.wse1{word-spacing:11.520000px;}
.wscd{word-spacing:11.580000px;}
.ws49{word-spacing:11.760000px;}
.wsd2{word-spacing:11.820000px;}
.wse0{word-spacing:13.080000px;}
.ws52{word-spacing:13.200000px;}
.wsd7{word-spacing:13.260000px;}
.ws7c{word-spacing:13.800000px;}
.wsd6{word-spacing:14.940000px;}
.wse3{word-spacing:15.000000px;}
.ws57{word-spacing:15.540000px;}
.wsdf{word-spacing:15.660000px;}
.ws13{word-spacing:15.960000px;}
.wsf{word-spacing:17.160000px;}
.ws28{word-spacing:19.404000px;}
.ws4e{word-spacing:21.480000px;}
.ws9f{word-spacing:22.440000px;}
.ws33{word-spacing:62.748000px;}
.ws86{word-spacing:64.260000px;}
.wsc0{word-spacing:90.396000px;}
.ws31{word-spacing:91.746000px;}
.ws80{word-spacing:94.014000px;}
.ws41{word-spacing:97.308000px;}
.ws85{word-spacing:100.494000px;}
.ws8c{word-spacing:101.304000px;}
.ws87{word-spacing:102.276000px;}
.ws89{word-spacing:105.570000px;}
.ws7f{word-spacing:109.026000px;}
.ws8b{word-spacing:112.050000px;}
.wsba{word-spacing:114.966000px;}
.ws2d{word-spacing:117.342000px;}
.wsbe{word-spacing:119.394000px;}
.ws3f{word-spacing:126.306000px;}
.ws84{word-spacing:129.492000px;}
.ws8a{word-spacing:130.788000px;}
.ws92{word-spacing:131.166000px;}
.ws82{word-spacing:131.220000px;}
.ws81{word-spacing:136.134000px;}
.ws83{word-spacing:138.024000px;}
.ws5e{word-spacing:148.446000px;}
.ws3c{word-spacing:151.902000px;}
.ws30{word-spacing:154.764000px;}
.wsc2{word-spacing:178.092000px;}
.ws32{word-spacing:182.250000px;}
.wsc1{word-spacing:182.412000px;}
.ws3e{word-spacing:189.324000px;}
.wsbf{word-spacing:192.618000px;}
.ws2f{word-spacing:196.776000px;}
.wsbd{word-spacing:224.100000px;}
.ws40{word-spacing:230.850000px;}
.ws8f{word-spacing:244.188000px;}
.ws3d{word-spacing:245.376000px;}
.wsbb{word-spacing:254.124000px;}
.ws8e{word-spacing:292.734000px;}
.ws2c{word-spacing:548.532000px;}
.ws9b{word-spacing:638.442000px;}
.ws9d{word-spacing:640.170000px;}
.ws9c{word-spacing:643.194000px;}
.ws99{word-spacing:667.440000px;}
.ws9a{word-spacing:668.790000px;}
.ws98{word-spacing:669.060000px;}
.ws97{word-spacing:715.932000px;}
.ws91{word-spacing:773.012400px;}
.ws7e{word-spacing:773.013000px;}
.ws93{word-spacing:874.368000px;}
.ws88{word-spacing:874.422000px;}
.ws94{word-spacing:876.096000px;}
.ws8d{word-spacing:876.150000px;}
.wsae{word-spacing:2939.867400px;}
.wsb5{word-spacing:2939.868000px;}
.wsad{word-spacing:2968.865400px;}
.wsb4{word-spacing:2968.866000px;}
._5e{margin-left:-195.912000px;}
._c{margin-left:-38.124000px;}
._7{margin-left:-31.052400px;}
._d{margin-left:-15.336000px;}
._6{margin-left:-5.886000px;}
._5{margin-left:-4.878000px;}
._2{margin-left:-3.312000px;}
._3{margin-left:-2.304000px;}
._0{margin-left:-1.242000px;}
._4{width:1.800000px;}
._b{width:2.880000px;}
._39{width:4.248000px;}
._e{width:5.589000px;}
._5a{width:6.960000px;}
._65{width:10.320000px;}
._64{width:12.450000px;}
._57{width:21.960000px;}
._1c{width:23.040000px;}
._1b{width:24.360000px;}
._28{width:27.205200px;}
._29{width:71.819220px;}
._27{width:74.992380px;}
._14{width:76.248000px;}
._33{width:77.760000px;}
._3a{width:79.434000px;}
._3e{width:81.000000px;}
._42{width:82.296000px;}
._2b{width:83.388000px;}
._59{width:85.266000px;}
._2a{width:88.487220px;}
._15{width:90.720000px;}
._36{width:95.472000px;}
._1{width:97.275600px;}
._61{width:104.112000px;}
._11{width:105.246000px;}
._49{width:106.974000px;}
._2f{width:108.054000px;}
._34{width:109.188000px;}
._43{width:110.448000px;}
._3f{width:111.474000px;}
._3b{width:113.508000px;}
._32{width:114.534000px;}
._3c{width:115.758000px;}
._48{width:117.108000px;}
._40{width:118.206000px;}
._1a{width:125.280000px;}
._31{width:129.006000px;}
._62{width:132.894000px;}
._12{width:136.728000px;}
._17{width:139.806000px;}
._37{width:142.992000px;}
._38{width:144.288000px;}
._46{width:145.400400px;}
._f{width:147.204000px;}
._63{width:149.256000px;}
._47{width:150.318000px;}
._4f{width:157.788000px;}
._60{width:164.430000px;}
._13{width:168.264000px;}
._18{width:171.288000px;}
._50{width:173.016000px;}
._16{width:181.764000px;}
._5f{width:195.912000px;}
._4e{width:197.532000px;}
._19{width:202.824000px;}
._1d{width:209.250000px;}
._22{width:220.212000px;}
._26{width:221.400000px;}
._21{width:224.208000px;}
._1e{width:226.206000px;}
._23{width:230.202000px;}
._25{width:233.226000px;}
._4c{width:260.766000px;}
._4b{width:262.710000px;}
._10{width:317.952000px;}
._52{width:456.462000px;}
._4d{width:469.530000px;}
._20{width:471.366000px;}
._51{width:543.869106px;}
._24{width:552.366000px;}
._1f{width:581.364000px;}
._8{width:649.536600px;}
._9{width:686.478000px;}
._a{width:752.676600px;}
._2e{width:766.584834px;}
._58{width:800.030034px;}
._45{width:803.466834px;}
._5d{width:846.450234px;}
._3d{width:887.886000px;}
._41{width:889.434000px;}
._35{width:916.974000px;}
._4a{width:918.738000px;}
._56{width:921.618000px;}
._54{width:931.590000px;}
._55{width:932.868000px;}
._53{width:993.870000px;}
._30{width:1085.400000px;}
._2c{width:1539.715506px;}
._5c{width:1740.505332px;}
._44{width:1757.504166px;}
._2d{width:1794.425166px;}
._5b{width:2792.079906px;}
.fc6{color:rgb(189,188,188);}
.fc5{color:rgb(123,121,121);}
.fc4{color:rgb(79,76,77);}
.fc3{color:transparent;}
.fc2{color:rgb(23,29,58);}
.fc7{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs13{font-size:31.482000px;}
.fsf{font-size:34.980000px;}
.fs11{font-size:36.000000px;}
.fs12{font-size:40.227000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs10{font-size:69.000000px;}
.fs8{font-size:72.000000px;}
.fsd{font-size:78.000000px;}
.fs4{font-size:94.500000px;}
.fsc{font-size:102.000000px;}
.fs9{font-size:108.000000px;}
.fse{font-size:120.000000px;}
.fs3{font-size:126.000000px;}
.fsb{font-size:132.000000px;}
.fs7{font-size:138.000000px;}
.fs2{font-size:144.000000px;}
.fsa{font-size:164.652600px;}
.y0{bottom:0.000000px;}
.y1{bottom:41.145000px;}
.y12a{bottom:76.739850px;}
.y66{bottom:79.083000px;}
.y64{bottom:80.935500px;}
.y8f{bottom:85.414350px;}
.ya2{bottom:85.440150px;}
.y65{bottom:97.078500px;}
.y63{bottom:97.432500px;}
.y8e{bottom:104.914350px;}
.ya1{bottom:104.940150px;}
.y129{bottom:107.039850px;}
.yc7{bottom:110.701650px;}
.y62{bottom:113.929500px;}
.y1d8{bottom:116.355900px;}
.y8d{bottom:124.414350px;}
.ya0{bottom:124.440150px;}
.y192{bottom:128.241900px;}
.y22e{bottom:129.034350px;}
.y207{bottom:130.166850px;}
.y61{bottom:130.426500px;}
.yc6{bottom:132.544650px;}
.y128{bottom:137.339850px;}
.y1d7{bottom:138.207150px;}
.y8c{bottom:143.914350px;}
.y60{bottom:146.923500px;}
.y191{bottom:147.741900px;}
.y22d{bottom:148.534350px;}
.y1b2{bottom:150.221250px;}
.y9f{bottom:150.690150px;}
.y106{bottom:151.800000px;}
.yc5{bottom:154.387650px;}
.y1d6{bottom:160.058250px;}
.yee{bottom:161.022150px;}
.y8b{bottom:163.414350px;}
.y206{bottom:163.892250px;}
.y190{bottom:167.241900px;}
.y14c{bottom:167.550150px;}
.y127{bottom:167.639850px;}
.y1b1{bottom:172.077750px;}
.yc4{bottom:176.230650px;}
.y1cf{bottom:179.178000px;}
.yed{bottom:180.522150px;}
.y22c{bottom:181.534350px;}
.y1d5{bottom:181.909350px;}
.y8a{bottom:182.914350px;}
.y105{bottom:184.800000px;}
.y205{bottom:185.748750px;}
.y18f{bottom:186.741900px;}
.y14b{bottom:187.050150px;}
.y1ab{bottom:191.217600px;}
.y2c{bottom:192.667350px;}
.y1b0{bottom:193.934250px;}
.y126{bottom:197.939850px;}
.yc3{bottom:198.073650px;}
.yec{bottom:200.022150px;}
.y22b{bottom:201.034350px;}
.y89{bottom:202.414350px;}
.y1d4{bottom:203.760600px;}
.y104{bottom:204.300000px;}
.y18e{bottom:206.241900px;}
.y14a{bottom:206.550150px;}
.y204{bottom:207.605250px;}
.y2b{bottom:209.164350px;}
.y9e{bottom:210.690150px;}
.y1af{bottom:215.790750px;}
.yeb{bottom:219.522150px;}
.yc2{bottom:219.916650px;}
.y22a{bottom:220.534350px;}
.y88{bottom:221.914350px;}
.y1d3{bottom:225.611700px;}
.y149{bottom:226.050150px;}
.y125{bottom:228.239850px;}
.y203{bottom:229.461750px;}
.y9d{bottom:230.190150px;}
.y103{bottom:237.300000px;}
.y1ae{bottom:237.647250px;}
.yea{bottom:239.022150px;}
.y2a{bottom:239.161350px;}
.y18d{bottom:239.241900px;}
.y87{bottom:241.414350px;}
.yc1{bottom:241.759650px;}
.y148{bottom:245.550000px;}
.y1d2{bottom:247.462950px;}
.y9c{bottom:249.690150px;}
.y202{bottom:251.318250px;}
.y229{bottom:253.534350px;}
.y29{bottom:255.658350px;}
.y102{bottom:256.800000px;}
.ye9{bottom:258.522150px;}
.y124{bottom:258.539850px;}
.y1ad{bottom:259.503750px;}
.yc0{bottom:263.602650px;}
.y147{bottom:265.050000px;}
.y86{bottom:267.664350px;}
.y9b{bottom:269.190150px;}
.y1d1{bottom:269.314050px;}
.y18c{bottom:272.241900px;}
.y228{bottom:273.034350px;}
.y201{bottom:273.174750px;}
.y5e{bottom:275.715150px;}
.y101{bottom:276.300000px;}
.ye8{bottom:278.022150px;}
.y1d0{bottom:280.239600px;}
.y1ac{bottom:281.360250px;}
.y146{bottom:284.550000px;}
.ybf{bottom:285.445650px;}
.y9a{bottom:288.690150px;}
.y123{bottom:288.839850px;}
.y18b{bottom:291.741900px;}
.y227{bottom:292.534350px;}
.y200{bottom:295.031250px;}
.ye7{bottom:297.522150px;}
.y16d{bottom:298.004250px;}
.y1aa{bottom:303.206100px;}
.y52{bottom:303.772350px;}
.y145{bottom:304.050000px;}
.y75{bottom:306.860550px;}
.ybe{bottom:307.288650px;}
.y99{bottom:308.190150px;}
.y100{bottom:309.300000px;}
.y1a9{bottom:314.098200px;}
.y1ff{bottom:316.874250px;}
.y44{bottom:318.757350px;}
.y51{bottom:318.770850px;}
.y16c{bottom:319.860750px;}
.y122{bottom:321.839850px;}
.y1fd{bottom:322.220250px;}
.y144{bottom:323.550000px;}
.y18a{bottom:324.741900px;}
.y226{bottom:325.534350px;}
.y74{bottom:326.360550px;}
.y98{bottom:327.690150px;}
.yff{bottom:328.800000px;}
.ybd{bottom:329.118150px;}
.ye6{bottom:330.522150px;}
.ybb{bottom:331.780650px;}
.y43{bottom:333.755850px;}
.y50{bottom:333.769350px;}
.y1ce{bottom:334.880850px;}
.y81{bottom:338.253300px;}
.y1fc{bottom:338.714550px;}
.y1fe{bottom:338.717250px;}
.y121{bottom:341.339850px;}
.y245{bottom:341.550000px;}
.y143{bottom:343.050000px;}
.y189{bottom:344.241900px;}
.y225{bottom:345.034350px;}
.y97{bottom:347.190150px;}
.yba{bottom:348.277650px;}
.y42{bottom:348.754350px;}
.y4f{bottom:348.767850px;}
.ye5{bottom:350.022150px;}
.ybc{bottom:350.946900px;}
.y73{bottom:352.610550px;}
.y1cd{bottom:356.732100px;}
.y80{bottom:360.753300px;}
.y120{bottom:360.839850px;}
.y244{bottom:361.050000px;}
.y1fb{bottom:361.300050px;}
.yfe{bottom:361.800000px;}
.y37{bottom:362.240850px;}
.y142{bottom:362.550000px;}
.y188{bottom:363.741900px;}
.y96{bottom:366.690150px;}
.y1a8{bottom:368.746200px;}
.ye4{bottom:369.522150px;}
.y224{bottom:371.284350px;}
.yb9{bottom:372.793650px;}
.y36{bottom:377.239350px;}
.y41{bottom:377.252850px;}
.y4e{bottom:377.266350px;}
.y5c{bottom:377.279850px;}
.y1cc{bottom:378.583200px;}
.y243{bottom:380.550000px;}
.y141{bottom:382.050000px;}
.y16b{bottom:382.073550px;}
.y7f{bottom:383.253300px;}
.yb8{bottom:383.715150px;}
.y72{bottom:386.360550px;}
.ye3{bottom:389.022150px;}
.y1a7{bottom:390.602700px;}
.y1fa{bottom:390.627900px;}
.y35{bottom:392.237850px;}
.y40{bottom:392.251350px;}
.y4d{bottom:392.264850px;}
.y5b{bottom:392.278350px;}
.y11f{bottom:395.339850px;}
.y1c5{bottom:397.702950px;}
.y187{bottom:398.241900px;}
.y95{bottom:399.690150px;}
.y242{bottom:400.050000px;}
.y1cb{bottom:400.434300px;}
.y140{bottom:401.550000px;}
.y16a{bottom:403.915050px;}
.y7e{bottom:405.753300px;}
.y3f{bottom:407.249850px;}
.y4c{bottom:407.263350px;}
.y5a{bottom:407.276850px;}
.y1a1{bottom:409.742550px;}
.y1a6{bottom:412.459200px;}
.yb7{bottom:417.222150px;}
.y94{bottom:419.190150px;}
.y34{bottom:420.736350px;}
.y13f{bottom:421.050000px;}
.ye2{bottom:422.022150px;}
.y3e{bottom:422.248350px;}
.y59{bottom:422.275350px;}
.y1ca{bottom:422.285550px;}
.y164{bottom:423.009000px;}
.y1f9{bottom:424.353300px;}
.y11e{bottom:425.639850px;}
.y169{bottom:425.756700px;}
.y7d{bottom:428.253300px;}
.y186{bottom:431.241900px;}
.y223{bottom:431.284350px;}
.y1a5{bottom:434.315700px;}
.y33{bottom:435.734850px;}
.y4b{bottom:435.761850px;}
.y93{bottom:438.690150px;}
.y13e{bottom:440.550000px;}
.ye1{bottom:441.522150px;}
.y1c9{bottom:444.136650px;}
.y1f8{bottom:446.209800px;}
.yb6{bottom:446.550000px;}
.y168{bottom:447.598200px;}
.y32{bottom:450.733350px;}
.y3d{bottom:450.746850px;}
.y7c{bottom:450.753300px;}
.y4a{bottom:450.760350px;}
.y58{bottom:450.773850px;}
.y222{bottom:450.784350px;}
.y241{bottom:452.550000px;}
.y71{bottom:453.860550px;}
.y11d{bottom:455.939850px;}
.y1a4{bottom:456.172200px;}
.y92{bottom:458.190150px;}
.y13d{bottom:460.050000px;}
.ye0{bottom:461.022150px;}
.y185{bottom:464.241900px;}
.y3c{bottom:465.745350px;}
.y49{bottom:465.758850px;}
.y57{bottom:465.772350px;}
.y1c8{bottom:465.987750px;}
.y1f7{bottom:468.066300px;}
.y167{bottom:469.439700px;}
.y221{bottom:470.284350px;}
.y240{bottom:472.050000px;}
.y7b{bottom:473.253300px;}
.y70{bottom:473.360550px;}
.y1a3{bottom:478.028700px;}
.y31{bottom:479.231850px;}
.ydf{bottom:480.522150px;}
.y3b{bottom:480.743850px;}
.y56{bottom:480.770850px;}
.y11c{bottom:486.239850px;}
.y13c{bottom:486.300000px;}
.y1c7{bottom:487.839000px;}
.y220{bottom:489.784350px;}
.y1f6{bottom:489.922800px;}
.y91{bottom:491.190150px;}
.y166{bottom:491.281350px;}
.y23f{bottom:491.550000px;}
.y30{bottom:494.230350px;}
.y48{bottom:494.257350px;}
.y7a{bottom:495.753300px;}
.y184{bottom:497.241900px;}
.y1c6{bottom:498.764550px;}
.y6f{bottom:499.610550px;}
.y1a2{bottom:499.885200px;}
.yde{bottom:500.022150px;}
.yb5{bottom:506.550000px;}
.y2f{bottom:509.228850px;}
.y3a{bottom:509.242350px;}
.y47{bottom:509.255850px;}
.y55{bottom:509.269350px;}
.y90{bottom:510.690150px;}
.y23e{bottom:511.050000px;}
.y1f5{bottom:511.779300px;}
.y165{bottom:513.122850px;}
.y11b{bottom:515.039850px;}
.y21f{bottom:516.034350px;}
.y79{bottom:518.253300px;}
.ydd{bottom:519.522150px;}
.y1a0{bottom:521.731050px;}
.y2e{bottom:524.227350px;}
.y39{bottom:524.240850px;}
.y46{bottom:524.254350px;}
.y54{bottom:524.267850px;}
.yb4{bottom:526.050000px;}
.y183{bottom:530.241900px;}
.y19f{bottom:532.623150px;}
.y13b{bottom:532.800000px;}
.y6e{bottom:533.360550px;}
.y1f4{bottom:533.635800px;}
.y163{bottom:534.964350px;}
.ydc{bottom:539.022150px;}
.y2d{bottom:539.225850px;}
.y38{bottom:539.239350px;}
.y45{bottom:539.252850px;}
.y53{bottom:539.266350px;}
.y78{bottom:540.753300px;}
.y23d{bottom:544.050000px;}
.yb3{bottom:545.550000px;}
.y11a{bottom:546.839850px;}
.y1c4{bottom:553.405800px;}
.y1f3{bottom:555.492300px;}
.y162{bottom:556.806000px;}
.ydb{bottom:558.522150px;}
.y182{bottom:561.741900px;}
.y77{bottom:563.253300px;}
.y23c{bottom:563.550000px;}
.y5d{bottom:564.315150px;}
.yb2{bottom:565.050000px;}
.y13a{bottom:565.800000px;}
.y1c3{bottom:575.256900px;}
.y21e{bottom:576.034350px;}
.y119{bottom:577.139850px;}
.y1f2{bottom:577.335300px;}
.ya5{bottom:577.674750px;}
.yda{bottom:578.022150px;}
.y181{bottom:581.241900px;}
.y1f0{bottom:582.681300px;}
.y23b{bottom:583.050000px;}
.yb1{bottom:584.550000px;}
.y139{bottom:585.300000px;}
.y19e{bottom:587.271150px;}
.y21d{bottom:595.534350px;}
.y1c2{bottom:597.108150px;}
.y1ef{bottom:599.175600px;}
.y1f1{bottom:599.178300px;}
.y161{bottom:600.502500px;}
.y180{bottom:600.741900px;}
.y6d{bottom:600.860550px;}
.y23a{bottom:602.550000px;}
.yb0{bottom:604.050000px;}
.y118{bottom:607.439850px;}
.y19d{bottom:609.127650px;}
.y21c{bottom:615.034350px;}
.y1bb{bottom:616.227900px;}
.yfd{bottom:616.800000px;}
.y138{bottom:618.300000px;}
.y1c1{bottom:618.959250px;}
.y6c{bottom:620.360550px;}
.y1ee{bottom:621.761100px;}
.y239{bottom:622.050000px;}
.y160{bottom:622.344000px;}
.yaf{bottom:623.550000px;}
.y17f{bottom:626.991900px;}
.y197{bottom:628.267350px;}
.y19c{bottom:630.984150px;}
.y18{bottom:634.519500px;}
.y21b{bottom:634.534350px;}
.y117{bottom:636.239850px;}
.y137{bottom:637.800000px;}
.yd9{bottom:638.728650px;}
.y1c0{bottom:640.810350px;}
.y15a{bottom:641.437950px;}
.y15f{bottom:644.185650px;}
.y6b{bottom:646.610550px;}
.y1ed{bottom:651.089100px;}
.y19b{bottom:652.840650px;}
.y17{bottom:654.022500px;}
.y21a{bottom:654.034350px;}
.yd8{bottom:660.585150px;}
.y1bf{bottom:662.661600px;}
.y15e{bottom:666.027150px;}
.y85{bottom:666.860550px;}
.y116{bottom:669.239850px;}
.y136{bottom:670.800000px;}
.y28{bottom:673.393500px;}
.y16{bottom:673.525500px;}
.y238{bottom:674.550000px;}
.y19a{bottom:674.697150px;}
.yfc{bottom:676.800150px;}
.y6a{bottom:680.360550px;}
.yd7{bottom:682.441650px;}
.yae{bottom:683.550000px;}
.y1be{bottom:684.512700px;}
.y1ec{bottom:684.814350px;}
.y84{bottom:686.360550px;}
.y219{bottom:687.034350px;}
.y17e{bottom:687.666450px;}
.y15d{bottom:687.868650px;}
.y115{bottom:688.739850px;}
.y135{bottom:690.300000px;}
.y27{bottom:692.896500px;}
.y237{bottom:694.050000px;}
.yfb{bottom:696.300150px;}
.y199{bottom:696.553650px;}
.yd6{bottom:704.298150px;}
.y1bd{bottom:706.363800px;}
.y218{bottom:706.534350px;}
.y1eb{bottom:706.670850px;}
.y114{bottom:708.239850px;}
.y17d{bottom:709.522950px;}
.y15c{bottom:709.710300px;}
.y26{bottom:712.399500px;}
.y15{bottom:713.274000px;}
.y236{bottom:713.550000px;}
.yfa{bottom:715.800150px;}
.y134{bottom:716.550000px;}
.y1bc{bottom:717.289500px;}
.y198{bottom:718.410150px;}
.y83{bottom:719.377050px;}
.y217{bottom:726.034350px;}
.yd5{bottom:726.154650px;}
.y113{bottom:727.739850px;}
.y1ea{bottom:728.527350px;}
.y17c{bottom:731.379450px;}
.y15b{bottom:731.551800px;}
.y25{bottom:731.902500px;}
.y14{bottom:732.777000px;}
.y235{bottom:733.050000px;}
.yf9{bottom:735.300150px;}
.y196{bottom:740.256000px;}
.y216{bottom:745.534350px;}
.y112{bottom:747.239850px;}
.yd4{bottom:748.011150px;}
.y1e9{bottom:750.383850px;}
.y1ba{bottom:750.824700px;}
.y195{bottom:751.188150px;}
.y76{bottom:752.009850px;}
.y13{bottom:752.280000px;}
.y17b{bottom:753.235950px;}
.y159{bottom:753.393300px;}
.yf8{bottom:754.800150px;}
.y82{bottom:755.360550px;}
.y111{bottom:766.739850px;}
.yd3{bottom:769.867650px;}
.y24{bottom:771.651000px;}
.y12{bottom:771.783000px;}
.y1e8{bottom:772.240350px;}
.yf7{bottom:774.300150px;}
.y17a{bottom:775.092450px;}
.y158{bottom:775.234950px;}
.y133{bottom:776.550150px;}
.y215{bottom:778.534350px;}
.y1b9{bottom:780.152700px;}
.y194{bottom:784.722150px;}
.y23{bottom:791.154000px;}
.y11{bottom:791.286000px;}
.yd2{bottom:791.724150px;}
.yf6{bottom:793.800150px;}
.y1e7{bottom:794.096850px;}
.y132{bottom:796.050150px;}
.y179{bottom:796.948950px;}
.y214{bottom:798.034350px;}
.y110{bottom:799.739850px;}
.ya4{bottom:805.674750px;}
.y22{bottom:810.657000px;}
.yd1{bottom:813.580650px;}
.y193{bottom:814.050150px;}
.y131{bottom:815.550150px;}
.y1e6{bottom:815.953350px;}
.y213{bottom:817.534350px;}
.y178{bottom:818.805450px;}
.y157{bottom:818.931450px;}
.y10f{bottom:819.239850px;}
.y234{bottom:820.050150px;}
.y1b8{bottom:820.800150px;}
.yf5{bottom:826.800150px;}
.y21{bottom:830.160000px;}
.y10{bottom:831.034500px;}
.y130{bottom:835.050150px;}
.yd0{bottom:835.437150px;}
.y212{bottom:837.034350px;}
.y5{bottom:837.108075px;}
.y1e5{bottom:837.796350px;}
.yad{bottom:838.050150px;}
.y233{bottom:839.550150px;}
.y1b7{bottom:840.300150px;}
.y177{bottom:840.661950px;}
.y156{bottom:840.772950px;}
.y1e3{bottom:843.142350px;}
.y10e{bottom:845.489850px;}
.yf4{bottom:846.300150px;}
.y1e0{bottom:847.050150px;}
.y150{bottom:848.946150px;}
.y20{bottom:849.663000px;}
.yf{bottom:850.537500px;}
.y67{bottom:853.011450px;}
.y12f{bottom:854.550150px;}
.y211{bottom:856.534350px;}
.ycf{bottom:857.280150px;}
.y1e2{bottom:859.636650px;}
.y1e4{bottom:859.639350px;}
.y1b6{bottom:859.800150px;}
.y176{bottom:862.518450px;}
.y155{bottom:862.614600px;}
.yce{bottom:862.626150px;}
.yf3{bottom:865.800150px;}
.y1df{bottom:866.550150px;}
.ye{bottom:870.040500px;}
.y4{bottom:870.868200px;}
.y232{bottom:872.550150px;}
.y12e{bottom:874.050150px;}
.ycd{bottom:879.123150px;}
.y1b5{bottom:879.300150px;}
.y1e1{bottom:882.222150px;}
.y175{bottom:884.374950px;}
.y154{bottom:884.456100px;}
.yf2{bottom:885.300150px;}
.y1f{bottom:889.411500px;}
.y210{bottom:889.534350px;}
.yd{bottom:889.543500px;}
.y231{bottom:892.050150px;}
.y12d{bottom:893.550150px;}
.yac{bottom:898.050150px;}
.y1b4{bottom:898.800150px;}
.y1de{bottom:899.550150px;}
.y69{bottom:900.581400px;}
.ycc{bottom:901.722150px;}
.y10d{bottom:906.215250px;}
.y174{bottom:906.231450px;}
.y153{bottom:906.297600px;}
.y1e{bottom:908.914500px;}
.y20f{bottom:909.034350px;}
.yc{bottom:909.046500px;}
.yf1{bottom:911.550150px;}
.y12c{bottom:913.050150px;}
.yab{bottom:917.550150px;}
.y1dd{bottom:919.050150px;}
.y1b3{bottom:925.050150px;}
.y10c{bottom:928.071750px;}
.y173{bottom:928.087950px;}
.y152{bottom:928.139250px;}
.y1d{bottom:928.417500px;}
.y20e{bottom:928.534350px;}
.ycb{bottom:931.057650px;}
.y12b{bottom:932.550150px;}
.y6{bottom:932.919750px;}
.y1dc{bottom:938.550150px;}
.y230{bottom:944.550150px;}
.y1c{bottom:947.920500px;}
.y20d{bottom:948.034350px;}
.yb{bottom:948.795000px;}
.y10b{bottom:949.928250px;}
.y172{bottom:949.944450px;}
.y151{bottom:949.980750px;}
.y68{bottom:950.320200px;}
.yca{bottom:950.550150px;}
.yaa{bottom:952.050150px;}
.y1db{bottom:958.050150px;}
.y20c{bottom:967.534350px;}
.y3{bottom:968.100150px;}
.ya{bottom:968.298000px;}
.yf0{bottom:971.550150px;}
.y10a{bottom:971.784750px;}
.y171{bottom:971.800950px;}
.y14f{bottom:971.822250px;}
.y1da{bottom:977.550150px;}
.y14e{bottom:982.743000px;}
.ya9{bottom:985.050150px;}
.y1b{bottom:987.669000px;}
.y9{bottom:987.801000px;}
.yef{bottom:991.050150px;}
.y109{bottom:993.641250px;}
.y170{bottom:993.657450px;}
.y1d9{bottom:997.050150px;}
.y20b{bottom:1000.534350px;}
.y1a{bottom:1007.172000px;}
.y8{bottom:1007.304000px;}
.yc9{bottom:1010.550150px;}
.y2{bottom:1011.600150px;}
.y108{bottom:1015.497750px;}
.y16f{bottom:1015.513950px;}
.y14d{bottom:1015.524750px;}
.y22f{bottom:1016.550150px;}
.ya8{bottom:1018.050150px;}
.y20a{bottom:1020.034350px;}
.y19{bottom:1026.675000px;}
.y7{bottom:1026.807000px;}
.y16e{bottom:1027.177950px;}
.yc8{bottom:1030.050150px;}
.y107{bottom:1038.096750px;}
.y209{bottom:1039.534350px;}
.ya7{bottom:1049.550150px;}
.y5f{bottom:1054.815150px;}
.y208{bottom:1065.784350px;}
.ya3{bottom:1067.424750px;}
.ya6{bottom:1069.050150px;}
.h18{height:36.660000px;}
.h1b{height:37.530000px;}
.h1d{height:37.533000px;}
.h1c{height:37.569000px;}
.hd{height:37.584000px;}
.h27{height:37.594800px;}
.hb{height:38.232000px;}
.h1{height:38.394000px;}
.ha{height:40.500000px;}
.h5{height:42.660000px;}
.h21{height:42.660600px;}
.h1f{height:44.850180px;}
.h16{height:44.850780px;}
.h12{height:45.000000px;}
.h6{height:45.540000px;}
.h7{height:45.936000px;}
.he{height:46.494000px;}
.h9{height:46.728000px;}
.h8{height:46.926000px;}
.h20{height:49.824000px;}
.h17{height:51.750000px;}
.h1e{height:53.117250px;}
.h19{height:53.147250px;}
.h14{height:54.000000px;}
.h15{height:58.500000px;}
.h4{height:67.189500px;}
.h11{height:72.522000px;}
.h1a{height:81.162000px;}
.h22{height:81.213600px;}
.h24{height:81.227400px;}
.h26{height:81.232200px;}
.h23{height:81.270000px;}
.h25{height:81.387600px;}
.h3{height:89.586000px;}
.h13{height:90.000000px;}
.h10{height:93.588000px;}
.hc{height:98.118000px;}
.h2{height:102.384000px;}
.hf{height:116.738693px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x25{left:-702.000000px;}
.x2d{left:-695.995050px;}
.x2a{left:-686.145000px;}
.x28{left:-670.080000px;}
.x2c{left:-640.337250px;}
.x2b{left:-633.087900px;}
.x29{left:-590.023950px;}
.x26{left:-487.080000px;}
.x27{left:-459.540000px;}
.x38{left:-412.152150px;}
.x0{left:0.000000px;}
.x7{left:81.000000px;}
.x15{left:86.994000px;}
.x14{left:88.028850px;}
.x34{left:96.859800px;}
.x1d{left:101.250000px;}
.x32{left:112.919850px;}
.x3d{left:114.750000px;}
.xb{left:121.599450px;}
.x11{left:135.000000px;}
.x10{left:137.123850px;}
.x36{left:142.657650px;}
.x35{left:149.907150px;}
.xf{left:158.779350px;}
.xe{left:167.245650px;}
.x17{left:181.494000px;}
.x3{left:188.565450px;}
.x33{left:192.980400px;}
.x13{left:216.000000px;}
.x19{left:222.009750px;}
.x1e{left:223.028850px;}
.x3a{left:224.903700px;}
.x23{left:231.855000px;}
.x2f{left:236.243850px;}
.x39{left:246.654300px;}
.x21{left:247.920000px;}
.x3e{left:249.735000px;}
.x2{left:252.259500px;}
.x1c{left:263.576250px;}
.x9{left:276.750000px;}
.x24{left:284.911950px;}
.x16{left:290.277000px;}
.xc{left:292.389750px;}
.x3c{left:303.509400px;}
.x22{left:327.976050px;}
.x2e{left:344.663250px;}
.x1b{left:350.759250px;}
.x31{left:365.425950px;}
.x4{left:421.134450px;}
.x1f{left:430.920000px;}
.x20{left:458.460000px;}
.x8{left:472.495500px;}
.x18{left:479.873250px;}
.x1a{left:483.005250px;}
.x5{left:500.845200px;}
.x37{left:505.847850px;}
.x3b{left:528.194700px;}
.x30{left:537.453000px;}
.x1{left:543.514350px;}
.x12{left:545.836350px;}
.xd{left:553.812300px;}
.x6{left:631.302450px;}
.xa{left:668.250000px;}
@media print{
.vc{vertical-align:-38.829333pt;}
.va{vertical-align:-21.333333pt;}
.v6{vertical-align:-20.424000pt;}
.v3{vertical-align:-17.760000pt;}
.v8{vertical-align:-15.949333pt;}
.v4{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.328000pt;}
.v9{vertical-align:15.984000pt;}
.v2{vertical-align:17.760000pt;}
.v5{vertical-align:20.424000pt;}
.vb{vertical-align:21.333333pt;}
.vd{vertical-align:22.837867pt;}
.v7{vertical-align:38.784000pt;}
.ls34{letter-spacing:-3.024000pt;}
.ls3d{letter-spacing:-2.880000pt;}
.ls33{letter-spacing:-2.352000pt;}
.lsa{letter-spacing:-1.173333pt;}
.ls19{letter-spacing:-1.066667pt;}
.ls12{letter-spacing:-0.960000pt;}
.ls27{letter-spacing:-0.624000pt;}
.lsb{letter-spacing:-0.586667pt;}
.ls5d{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000053pt;}
.ls35{letter-spacing:0.000117pt;}
.ls17{letter-spacing:0.000160pt;}
.ls48{letter-spacing:0.000208pt;}
.ls24{letter-spacing:0.001600pt;}
.ls4e{letter-spacing:0.002133pt;}
.ls2c{letter-spacing:0.002667pt;}
.ls25{letter-spacing:0.003733pt;}
.ls2b{letter-spacing:0.004800pt;}
.ls43{letter-spacing:0.006400pt;}
.ls23{letter-spacing:0.011733pt;}
.ls4a{letter-spacing:0.012800pt;}
.ls32{letter-spacing:0.018133pt;}
.ls31{letter-spacing:0.019200pt;}
.ls28{letter-spacing:0.019733pt;}
.ls49{letter-spacing:0.020267pt;}
.ls47{letter-spacing:0.022400pt;}
.ls26{letter-spacing:0.022933pt;}
.ls30{letter-spacing:0.025600pt;}
.ls3c{letter-spacing:0.027733pt;}
.ls44{letter-spacing:0.033067pt;}
.ls46{letter-spacing:0.040533pt;}
.ls5b{letter-spacing:0.047467pt;}
.ls2f{letter-spacing:0.048533pt;}
.ls2e{letter-spacing:0.063467pt;}
.ls45{letter-spacing:0.067200pt;}
.ls29{letter-spacing:0.094933pt;}
.ls2d{letter-spacing:0.109867pt;}
.ls4f{letter-spacing:0.124267pt;}
.ls3b{letter-spacing:0.125333pt;}
.ls2a{letter-spacing:0.150933pt;}
.ls55{letter-spacing:0.174400pt;}
.ls54{letter-spacing:0.204800pt;}
.ls42{letter-spacing:0.289600pt;}
.ls21{letter-spacing:0.311093pt;}
.ls7{letter-spacing:0.480000pt;}
.ls20{letter-spacing:0.533333pt;}
.ls40{letter-spacing:0.621173pt;}
.ls1d{letter-spacing:0.621493pt;}
.ls38{letter-spacing:0.621707pt;}
.ls3a{letter-spacing:0.622027pt;}
.ls1a{letter-spacing:0.714411pt;}
.ls52{letter-spacing:0.714568pt;}
.ls22{letter-spacing:0.714944pt;}
.ls53{letter-spacing:0.715101pt;}
.ls1e{letter-spacing:0.906667pt;}
.ls57{letter-spacing:0.932427pt;}
.ls5a{letter-spacing:0.932640pt;}
.ls36{letter-spacing:0.952000pt;}
.ls6{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:1.005867pt;}
.ls39{letter-spacing:1.035200pt;}
.ls37{letter-spacing:1.050667pt;}
.ls4d{letter-spacing:1.062933pt;}
.ls4c{letter-spacing:1.064533pt;}
.ls10{letter-spacing:1.066667pt;}
.ls3f{letter-spacing:1.074133pt;}
.ls4b{letter-spacing:1.080000pt;}
.ls41{letter-spacing:1.081600pt;}
.ls3e{letter-spacing:1.123200pt;}
.ls1f{letter-spacing:1.173333pt;}
.ls51{letter-spacing:1.225067pt;}
.ls18{letter-spacing:1.226667pt;}
.ls13{letter-spacing:1.280000pt;}
.ls15{letter-spacing:1.386667pt;}
.lsd{letter-spacing:1.440000pt;}
.ls5c{letter-spacing:1.600000pt;}
.ls58{letter-spacing:1.603200pt;}
.ls56{letter-spacing:1.605867pt;}
.ls59{letter-spacing:1.606933pt;}
.ls3{letter-spacing:1.680000pt;}
.ls14{letter-spacing:2.453333pt;}
.ls16{letter-spacing:2.879467pt;}
.ls0{letter-spacing:2.880000pt;}
.ls4{letter-spacing:3.200000pt;}
.ls8{letter-spacing:3.840000pt;}
.ls9{letter-spacing:5.760000pt;}
.ls11{letter-spacing:6.400000pt;}
.lsf{letter-spacing:6.453333pt;}
.ls2{letter-spacing:6.720000pt;}
.ls1{letter-spacing:7.680000pt;}
.lse{letter-spacing:8.781472pt;}
.ls50{letter-spacing:174.144000pt;}
.wsbc{word-spacing:-186.144000pt;}
.ws9{word-spacing:-33.066667pt;}
.ws4{word-spacing:-19.840000pt;}
.wsc3{word-spacing:-18.720000pt;}
.ws8{word-spacing:-15.600000pt;}
.ws7{word-spacing:-12.240000pt;}
.ws2{word-spacing:-12.026667pt;}
.ws96{word-spacing:-12.000000pt;}
.ws3{word-spacing:-10.800000pt;}
.ws29{word-spacing:-10.666667pt;}
.ws2b{word-spacing:-8.939333pt;}
.ws7d{word-spacing:-7.695600pt;}
.wsc{word-spacing:-6.996000pt;}
.ws2e{word-spacing:-6.296400pt;}
.ws2a{word-spacing:-6.218667pt;}
.wsa2{word-spacing:-5.546667pt;}
.wsc5{word-spacing:-5.333333pt;}
.ws90{word-spacing:-4.800000pt;}
.ws1e{word-spacing:-3.520000pt;}
.ws5d{word-spacing:-3.306667pt;}
.ws1f{word-spacing:-2.986667pt;}
.ws95{word-spacing:-2.928000pt;}
.wsa5{word-spacing:-2.880000pt;}
.wsdc{word-spacing:-2.613333pt;}
.ws18{word-spacing:-2.400000pt;}
.ws76{word-spacing:-2.186667pt;}
.ws4b{word-spacing:-2.133333pt;}
.ws6e{word-spacing:-2.080000pt;}
.wsaa{word-spacing:-2.026667pt;}
.ws51{word-spacing:-1.973333pt;}
.ws77{word-spacing:-1.920000pt;}
.ws71{word-spacing:-1.866667pt;}
.ws7a{word-spacing:-1.813333pt;}
.wsac{word-spacing:-1.706667pt;}
.ws48{word-spacing:-1.653333pt;}
.ws24{word-spacing:-1.600000pt;}
.wsab{word-spacing:-1.546667pt;}
.wsd3{word-spacing:-1.493333pt;}
.wsb{word-spacing:-1.440000pt;}
.wse{word-spacing:-1.386667pt;}
.ws55{word-spacing:-1.333333pt;}
.ws5c{word-spacing:-1.226667pt;}
.ws36{word-spacing:-1.120000pt;}
.wsa3{word-spacing:-1.066667pt;}
.ws6{word-spacing:-0.960000pt;}
.ws78{word-spacing:-0.853333pt;}
.ws54{word-spacing:-0.800000pt;}
.wsb6{word-spacing:-0.746667pt;}
.ws17{word-spacing:-0.586667pt;}
.wsdb{word-spacing:-0.480000pt;}
.ws22{word-spacing:-0.426667pt;}
.ws25{word-spacing:-0.320000pt;}
.wsd0{word-spacing:-0.266667pt;}
.wsd{word-spacing:-0.256000pt;}
.ws27{word-spacing:-0.213333pt;}
.ws9e{word-spacing:-0.160000pt;}
.ws6b{word-spacing:-0.106667pt;}
.wsd1{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.wsa9{word-spacing:0.106667pt;}
.ws6f{word-spacing:0.160000pt;}
.ws62{word-spacing:0.213333pt;}
.ws6a{word-spacing:0.320000pt;}
.ws46{word-spacing:0.426667pt;}
.ws3b{word-spacing:0.480000pt;}
.ws4a{word-spacing:0.533333pt;}
.ws50{word-spacing:0.586667pt;}
.wsa1{word-spacing:0.640000pt;}
.wsb8{word-spacing:0.746667pt;}
.ws3a{word-spacing:0.800000pt;}
.wsd4{word-spacing:0.853333pt;}
.wsb2{word-spacing:0.906667pt;}
.wsa{word-spacing:0.960000pt;}
.ws11{word-spacing:1.013333pt;}
.wsb9{word-spacing:1.066667pt;}
.ws10{word-spacing:1.120000pt;}
.ws5{word-spacing:1.173333pt;}
.wscf{word-spacing:1.226667pt;}
.ws23{word-spacing:1.280000pt;}
.ws6d{word-spacing:1.493333pt;}
.ws5b{word-spacing:1.546667pt;}
.ws16{word-spacing:1.600000pt;}
.wsc6{word-spacing:1.653333pt;}
.ws73{word-spacing:1.760000pt;}
.wsa7{word-spacing:1.813333pt;}
.ws4d{word-spacing:1.920000pt;}
.ws69{word-spacing:2.026667pt;}
.ws65{word-spacing:2.080000pt;}
.wsa6{word-spacing:2.133333pt;}
.wsaf{word-spacing:2.186667pt;}
.ws79{word-spacing:2.240000pt;}
.ws37{word-spacing:2.293333pt;}
.ws1d{word-spacing:2.346667pt;}
.ws72{word-spacing:2.400000pt;}
.ws59{word-spacing:2.453333pt;}
.ws34{word-spacing:2.506667pt;}
.ws1{word-spacing:2.560000pt;}
.ws35{word-spacing:2.613333pt;}
.ws5f{word-spacing:2.720000pt;}
.ws47{word-spacing:2.773333pt;}
.ws68{word-spacing:2.880000pt;}
.ws1c{word-spacing:2.933333pt;}
.ws43{word-spacing:2.986667pt;}
.ws42{word-spacing:3.040000pt;}
.ws4f{word-spacing:3.146667pt;}
.wsc4{word-spacing:3.200000pt;}
.ws64{word-spacing:3.306667pt;}
.wsb1{word-spacing:3.360000pt;}
.ws56{word-spacing:3.413333pt;}
.ws5a{word-spacing:3.573333pt;}
.ws75{word-spacing:3.733333pt;}
.ws1b{word-spacing:3.840000pt;}
.ws6c{word-spacing:4.053333pt;}
.ws58{word-spacing:4.106667pt;}
.wsde{word-spacing:4.160000pt;}
.ws15{word-spacing:4.213333pt;}
.ws21{word-spacing:4.266667pt;}
.ws67{word-spacing:4.426667pt;}
.ws53{word-spacing:4.480000pt;}
.wsb3{word-spacing:4.533333pt;}
.wsc7{word-spacing:4.586667pt;}
.wscb{word-spacing:4.640000pt;}
.ws1a{word-spacing:4.693333pt;}
.wsdd{word-spacing:4.800000pt;}
.ws7b{word-spacing:4.853333pt;}
.ws63{word-spacing:4.906667pt;}
.wsa4{word-spacing:4.960000pt;}
.wsa8{word-spacing:5.066667pt;}
.ws14{word-spacing:5.173333pt;}
.ws70{word-spacing:5.226667pt;}
.wsc9{word-spacing:5.280000pt;}
.ws44{word-spacing:5.386667pt;}
.ws66{word-spacing:5.493333pt;}
.ws39{word-spacing:5.546667pt;}
.wsb0{word-spacing:5.600000pt;}
.ws61{word-spacing:5.706667pt;}
.wsa0{word-spacing:5.920000pt;}
.ws4c{word-spacing:6.026667pt;}
.ws20{word-spacing:6.186667pt;}
.wsb7{word-spacing:6.293333pt;}
.ws74{word-spacing:6.346667pt;}
.ws60{word-spacing:6.453333pt;}
.wse2{word-spacing:6.506667pt;}
.wsd8{word-spacing:6.666667pt;}
.ws38{word-spacing:6.826667pt;}
.wsca{word-spacing:7.413333pt;}
.wsd9{word-spacing:7.626667pt;}
.wsd5{word-spacing:8.160000pt;}
.wsda{word-spacing:8.533333pt;}
.wscc{word-spacing:8.640000pt;}
.ws26{word-spacing:8.853333pt;}
.ws12{word-spacing:9.066667pt;}
.wsce{word-spacing:9.173333pt;}
.wsc8{word-spacing:9.760000pt;}
.ws45{word-spacing:10.080000pt;}
.ws19{word-spacing:10.186667pt;}
.wse1{word-spacing:10.240000pt;}
.wscd{word-spacing:10.293333pt;}
.ws49{word-spacing:10.453333pt;}
.wsd2{word-spacing:10.506667pt;}
.wse0{word-spacing:11.626667pt;}
.ws52{word-spacing:11.733333pt;}
.wsd7{word-spacing:11.786667pt;}
.ws7c{word-spacing:12.266667pt;}
.wsd6{word-spacing:13.280000pt;}
.wse3{word-spacing:13.333333pt;}
.ws57{word-spacing:13.813333pt;}
.wsdf{word-spacing:13.920000pt;}
.ws13{word-spacing:14.186667pt;}
.wsf{word-spacing:15.253333pt;}
.ws28{word-spacing:17.248000pt;}
.ws4e{word-spacing:19.093333pt;}
.ws9f{word-spacing:19.946667pt;}
.ws33{word-spacing:55.776000pt;}
.ws86{word-spacing:57.120000pt;}
.wsc0{word-spacing:80.352000pt;}
.ws31{word-spacing:81.552000pt;}
.ws80{word-spacing:83.568000pt;}
.ws41{word-spacing:86.496000pt;}
.ws85{word-spacing:89.328000pt;}
.ws8c{word-spacing:90.048000pt;}
.ws87{word-spacing:90.912000pt;}
.ws89{word-spacing:93.840000pt;}
.ws7f{word-spacing:96.912000pt;}
.ws8b{word-spacing:99.600000pt;}
.wsba{word-spacing:102.192000pt;}
.ws2d{word-spacing:104.304000pt;}
.wsbe{word-spacing:106.128000pt;}
.ws3f{word-spacing:112.272000pt;}
.ws84{word-spacing:115.104000pt;}
.ws8a{word-spacing:116.256000pt;}
.ws92{word-spacing:116.592000pt;}
.ws82{word-spacing:116.640000pt;}
.ws81{word-spacing:121.008000pt;}
.ws83{word-spacing:122.688000pt;}
.ws5e{word-spacing:131.952000pt;}
.ws3c{word-spacing:135.024000pt;}
.ws30{word-spacing:137.568000pt;}
.wsc2{word-spacing:158.304000pt;}
.ws32{word-spacing:162.000000pt;}
.wsc1{word-spacing:162.144000pt;}
.ws3e{word-spacing:168.288000pt;}
.wsbf{word-spacing:171.216000pt;}
.ws2f{word-spacing:174.912000pt;}
.wsbd{word-spacing:199.200000pt;}
.ws40{word-spacing:205.200000pt;}
.ws8f{word-spacing:217.056000pt;}
.ws3d{word-spacing:218.112000pt;}
.wsbb{word-spacing:225.888000pt;}
.ws8e{word-spacing:260.208000pt;}
.ws2c{word-spacing:487.584000pt;}
.ws9b{word-spacing:567.504000pt;}
.ws9d{word-spacing:569.040000pt;}
.ws9c{word-spacing:571.728000pt;}
.ws99{word-spacing:593.280000pt;}
.ws9a{word-spacing:594.480000pt;}
.ws98{word-spacing:594.720000pt;}
.ws97{word-spacing:636.384000pt;}
.ws91{word-spacing:687.122133pt;}
.ws7e{word-spacing:687.122667pt;}
.ws93{word-spacing:777.216000pt;}
.ws88{word-spacing:777.264000pt;}
.ws94{word-spacing:778.752000pt;}
.ws8d{word-spacing:778.800000pt;}
.wsae{word-spacing:2613.215467pt;}
.wsb5{word-spacing:2613.216000pt;}
.wsad{word-spacing:2638.991467pt;}
.wsb4{word-spacing:2638.992000pt;}
._5e{margin-left:-174.144000pt;}
._c{margin-left:-33.888000pt;}
._7{margin-left:-27.602133pt;}
._d{margin-left:-13.632000pt;}
._6{margin-left:-5.232000pt;}
._5{margin-left:-4.336000pt;}
._2{margin-left:-2.944000pt;}
._3{margin-left:-2.048000pt;}
._0{margin-left:-1.104000pt;}
._4{width:1.600000pt;}
._b{width:2.560000pt;}
._39{width:3.776000pt;}
._e{width:4.968000pt;}
._5a{width:6.186667pt;}
._65{width:9.173333pt;}
._64{width:11.066667pt;}
._57{width:19.520000pt;}
._1c{width:20.480000pt;}
._1b{width:21.653333pt;}
._28{width:24.182400pt;}
._29{width:63.839307pt;}
._27{width:66.659893pt;}
._14{width:67.776000pt;}
._33{width:69.120000pt;}
._3a{width:70.608000pt;}
._3e{width:72.000000pt;}
._42{width:73.152000pt;}
._2b{width:74.122667pt;}
._59{width:75.792000pt;}
._2a{width:78.655307pt;}
._15{width:80.640000pt;}
._36{width:84.864000pt;}
._1{width:86.467200pt;}
._61{width:92.544000pt;}
._11{width:93.552000pt;}
._49{width:95.088000pt;}
._2f{width:96.048000pt;}
._34{width:97.056000pt;}
._43{width:98.176000pt;}
._3f{width:99.088000pt;}
._3b{width:100.896000pt;}
._32{width:101.808000pt;}
._3c{width:102.896000pt;}
._48{width:104.096000pt;}
._40{width:105.072000pt;}
._1a{width:111.360000pt;}
._31{width:114.672000pt;}
._62{width:118.128000pt;}
._12{width:121.536000pt;}
._17{width:124.272000pt;}
._37{width:127.104000pt;}
._38{width:128.256000pt;}
._46{width:129.244800pt;}
._f{width:130.848000pt;}
._63{width:132.672000pt;}
._47{width:133.616000pt;}
._4f{width:140.256000pt;}
._60{width:146.160000pt;}
._13{width:149.568000pt;}
._18{width:152.256000pt;}
._50{width:153.792000pt;}
._16{width:161.568000pt;}
._5f{width:174.144000pt;}
._4e{width:175.584000pt;}
._19{width:180.288000pt;}
._1d{width:186.000000pt;}
._22{width:195.744000pt;}
._26{width:196.800000pt;}
._21{width:199.296000pt;}
._1e{width:201.072000pt;}
._23{width:204.624000pt;}
._25{width:207.312000pt;}
._4c{width:231.792000pt;}
._4b{width:233.520000pt;}
._10{width:282.624000pt;}
._52{width:405.744000pt;}
._4d{width:417.360000pt;}
._20{width:418.992000pt;}
._51{width:483.439205pt;}
._24{width:490.992000pt;}
._1f{width:516.768000pt;}
._8{width:577.365867pt;}
._9{width:610.202667pt;}
._a{width:669.045867pt;}
._2e{width:681.408741pt;}
._58{width:711.137808pt;}
._45{width:714.192741pt;}
._5d{width:752.400208pt;}
._3d{width:789.232000pt;}
._41{width:790.608000pt;}
._35{width:815.088000pt;}
._4a{width:816.656000pt;}
._56{width:819.216000pt;}
._54{width:828.080000pt;}
._55{width:829.216000pt;}
._53{width:883.440000pt;}
._30{width:964.800000pt;}
._2c{width:1368.636005pt;}
._5c{width:1547.115851pt;}
._44{width:1562.225925pt;}
._2d{width:1595.044592pt;}
._5b{width:2481.848805pt;}
.fs13{font-size:27.984000pt;}
.fsf{font-size:31.093333pt;}
.fs11{font-size:32.000000pt;}
.fs12{font-size:35.757333pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs10{font-size:61.333333pt;}
.fs8{font-size:64.000000pt;}
.fsd{font-size:69.333333pt;}
.fs4{font-size:84.000000pt;}
.fsc{font-size:90.666667pt;}
.fs9{font-size:96.000000pt;}
.fse{font-size:106.666667pt;}
.fs3{font-size:112.000000pt;}
.fsb{font-size:117.333333pt;}
.fs7{font-size:122.666667pt;}
.fs2{font-size:128.000000pt;}
.fsa{font-size:146.357867pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:36.573333pt;}
.y12a{bottom:68.213200pt;}
.y66{bottom:70.296000pt;}
.y64{bottom:71.942667pt;}
.y8f{bottom:75.923867pt;}
.ya2{bottom:75.946800pt;}
.y65{bottom:86.292000pt;}
.y63{bottom:86.606667pt;}
.y8e{bottom:93.257200pt;}
.ya1{bottom:93.280133pt;}
.y129{bottom:95.146533pt;}
.yc7{bottom:98.401467pt;}
.y62{bottom:101.270667pt;}
.y1d8{bottom:103.427467pt;}
.y8d{bottom:110.590533pt;}
.ya0{bottom:110.613467pt;}
.y192{bottom:113.992800pt;}
.y22e{bottom:114.697200pt;}
.y207{bottom:115.703867pt;}
.y61{bottom:115.934667pt;}
.yc6{bottom:117.817467pt;}
.y128{bottom:122.079867pt;}
.y1d7{bottom:122.850800pt;}
.y8c{bottom:127.923867pt;}
.y60{bottom:130.598667pt;}
.y191{bottom:131.326133pt;}
.y22d{bottom:132.030533pt;}
.y1b2{bottom:133.530000pt;}
.y9f{bottom:133.946800pt;}
.y106{bottom:134.933333pt;}
.yc5{bottom:137.233467pt;}
.y1d6{bottom:142.274000pt;}
.yee{bottom:143.130800pt;}
.y8b{bottom:145.257200pt;}
.y206{bottom:145.682000pt;}
.y190{bottom:148.659467pt;}
.y14c{bottom:148.933467pt;}
.y127{bottom:149.013200pt;}
.y1b1{bottom:152.958000pt;}
.yc4{bottom:156.649467pt;}
.y1cf{bottom:159.269333pt;}
.yed{bottom:160.464133pt;}
.y22c{bottom:161.363867pt;}
.y1d5{bottom:161.697200pt;}
.y8a{bottom:162.590533pt;}
.y105{bottom:164.266667pt;}
.y205{bottom:165.110000pt;}
.y18f{bottom:165.992800pt;}
.y14b{bottom:166.266800pt;}
.y1ab{bottom:169.971200pt;}
.y2c{bottom:171.259867pt;}
.y1b0{bottom:172.386000pt;}
.y126{bottom:175.946533pt;}
.yc3{bottom:176.065467pt;}
.yec{bottom:177.797467pt;}
.y22b{bottom:178.697200pt;}
.y89{bottom:179.923867pt;}
.y1d4{bottom:181.120533pt;}
.y104{bottom:181.600000pt;}
.y18e{bottom:183.326133pt;}
.y14a{bottom:183.600133pt;}
.y204{bottom:184.538000pt;}
.y2b{bottom:185.923867pt;}
.y9e{bottom:187.280133pt;}
.y1af{bottom:191.814000pt;}
.yeb{bottom:195.130800pt;}
.yc2{bottom:195.481467pt;}
.y22a{bottom:196.030533pt;}
.y88{bottom:197.257200pt;}
.y1d3{bottom:200.543733pt;}
.y149{bottom:200.933467pt;}
.y125{bottom:202.879867pt;}
.y203{bottom:203.966000pt;}
.y9d{bottom:204.613467pt;}
.y103{bottom:210.933333pt;}
.y1ae{bottom:211.242000pt;}
.yea{bottom:212.464133pt;}
.y2a{bottom:212.587867pt;}
.y18d{bottom:212.659467pt;}
.y87{bottom:214.590533pt;}
.yc1{bottom:214.897467pt;}
.y148{bottom:218.266667pt;}
.y1d2{bottom:219.967067pt;}
.y9c{bottom:221.946800pt;}
.y202{bottom:223.394000pt;}
.y229{bottom:225.363867pt;}
.y29{bottom:227.251867pt;}
.y102{bottom:228.266667pt;}
.ye9{bottom:229.797467pt;}
.y124{bottom:229.813200pt;}
.y1ad{bottom:230.670000pt;}
.yc0{bottom:234.313467pt;}
.y147{bottom:235.600000pt;}
.y86{bottom:237.923867pt;}
.y9b{bottom:239.280133pt;}
.y1d1{bottom:239.390267pt;}
.y18c{bottom:241.992800pt;}
.y228{bottom:242.697200pt;}
.y201{bottom:242.822000pt;}
.y5e{bottom:245.080133pt;}
.y101{bottom:245.600000pt;}
.ye8{bottom:247.130800pt;}
.y1d0{bottom:249.101867pt;}
.y1ac{bottom:250.098000pt;}
.y146{bottom:252.933333pt;}
.ybf{bottom:253.729467pt;}
.y9a{bottom:256.613467pt;}
.y123{bottom:256.746533pt;}
.y18b{bottom:259.326133pt;}
.y227{bottom:260.030533pt;}
.y200{bottom:262.250000pt;}
.ye7{bottom:264.464133pt;}
.y16d{bottom:264.892667pt;}
.y1aa{bottom:269.516533pt;}
.y52{bottom:270.019867pt;}
.y145{bottom:270.266667pt;}
.y75{bottom:272.764933pt;}
.ybe{bottom:273.145467pt;}
.y99{bottom:273.946800pt;}
.y100{bottom:274.933333pt;}
.y1a9{bottom:279.198400pt;}
.y1ff{bottom:281.666000pt;}
.y44{bottom:283.339867pt;}
.y51{bottom:283.351867pt;}
.y16c{bottom:284.320667pt;}
.y122{bottom:286.079867pt;}
.y1fd{bottom:286.418000pt;}
.y144{bottom:287.600000pt;}
.y18a{bottom:288.659467pt;}
.y226{bottom:289.363867pt;}
.y74{bottom:290.098267pt;}
.y98{bottom:291.280133pt;}
.yff{bottom:292.266667pt;}
.ybd{bottom:292.549467pt;}
.ye6{bottom:293.797467pt;}
.ybb{bottom:294.916133pt;}
.y43{bottom:296.671867pt;}
.y50{bottom:296.683867pt;}
.y1ce{bottom:297.671867pt;}
.y81{bottom:300.669600pt;}
.y1fc{bottom:301.079600pt;}
.y1fe{bottom:301.082000pt;}
.y121{bottom:303.413200pt;}
.y245{bottom:303.600000pt;}
.y143{bottom:304.933333pt;}
.y189{bottom:305.992800pt;}
.y225{bottom:306.697200pt;}
.y97{bottom:308.613467pt;}
.yba{bottom:309.580133pt;}
.y42{bottom:310.003867pt;}
.y4f{bottom:310.015867pt;}
.ye5{bottom:311.130800pt;}
.ybc{bottom:311.952800pt;}
.y73{bottom:313.431600pt;}
.y1cd{bottom:317.095200pt;}
.y80{bottom:320.669600pt;}
.y120{bottom:320.746533pt;}
.y244{bottom:320.933333pt;}
.y1fb{bottom:321.155600pt;}
.yfe{bottom:321.600000pt;}
.y37{bottom:321.991867pt;}
.y142{bottom:322.266667pt;}
.y188{bottom:323.326133pt;}
.y96{bottom:325.946800pt;}
.y1a8{bottom:327.774400pt;}
.ye4{bottom:328.464133pt;}
.y224{bottom:330.030533pt;}
.yb9{bottom:331.372133pt;}
.y36{bottom:335.323867pt;}
.y41{bottom:335.335867pt;}
.y4e{bottom:335.347867pt;}
.y5c{bottom:335.359867pt;}
.y1cc{bottom:336.518400pt;}
.y243{bottom:338.266667pt;}
.y141{bottom:339.600000pt;}
.y16b{bottom:339.620933pt;}
.y7f{bottom:340.669600pt;}
.yb8{bottom:341.080133pt;}
.y72{bottom:343.431600pt;}
.ye3{bottom:345.797467pt;}
.y1a7{bottom:347.202400pt;}
.y1fa{bottom:347.224800pt;}
.y35{bottom:348.655867pt;}
.y40{bottom:348.667867pt;}
.y4d{bottom:348.679867pt;}
.y5b{bottom:348.691867pt;}
.y11f{bottom:351.413200pt;}
.y1c5{bottom:353.513733pt;}
.y187{bottom:353.992800pt;}
.y95{bottom:355.280133pt;}
.y242{bottom:355.600000pt;}
.y1cb{bottom:355.941600pt;}
.y140{bottom:356.933333pt;}
.y16a{bottom:359.035600pt;}
.y7e{bottom:360.669600pt;}
.y3f{bottom:361.999867pt;}
.y4c{bottom:362.011867pt;}
.y5a{bottom:362.023867pt;}
.y1a1{bottom:364.215600pt;}
.y1a6{bottom:366.630400pt;}
.yb7{bottom:370.864133pt;}
.y94{bottom:372.613467pt;}
.y34{bottom:373.987867pt;}
.y13f{bottom:374.266667pt;}
.ye2{bottom:375.130800pt;}
.y3e{bottom:375.331867pt;}
.y59{bottom:375.355867pt;}
.y1ca{bottom:375.364933pt;}
.y164{bottom:376.008000pt;}
.y1f9{bottom:377.202933pt;}
.y11e{bottom:378.346533pt;}
.y169{bottom:378.450400pt;}
.y7d{bottom:380.669600pt;}
.y186{bottom:383.326133pt;}
.y223{bottom:383.363867pt;}
.y1a5{bottom:386.058400pt;}
.y33{bottom:387.319867pt;}
.y4b{bottom:387.343867pt;}
.y93{bottom:389.946800pt;}
.y13e{bottom:391.600000pt;}
.ye1{bottom:392.464133pt;}
.y1c9{bottom:394.788133pt;}
.y1f8{bottom:396.630933pt;}
.yb6{bottom:396.933333pt;}
.y168{bottom:397.865067pt;}
.y32{bottom:400.651867pt;}
.y3d{bottom:400.663867pt;}
.y7c{bottom:400.669600pt;}
.y4a{bottom:400.675867pt;}
.y58{bottom:400.687867pt;}
.y222{bottom:400.697200pt;}
.y241{bottom:402.266667pt;}
.y71{bottom:403.431600pt;}
.y11d{bottom:405.279867pt;}
.y1a4{bottom:405.486400pt;}
.y92{bottom:407.280133pt;}
.y13d{bottom:408.933333pt;}
.ye0{bottom:409.797467pt;}
.y185{bottom:412.659467pt;}
.y3c{bottom:413.995867pt;}
.y49{bottom:414.007867pt;}
.y57{bottom:414.019867pt;}
.y1c8{bottom:414.211333pt;}
.y1f7{bottom:416.058933pt;}
.y167{bottom:417.279733pt;}
.y221{bottom:418.030533pt;}
.y240{bottom:419.600000pt;}
.y7b{bottom:420.669600pt;}
.y70{bottom:420.764933pt;}
.y1a3{bottom:424.914400pt;}
.y31{bottom:425.983867pt;}
.ydf{bottom:427.130800pt;}
.y3b{bottom:427.327867pt;}
.y56{bottom:427.351867pt;}
.y11c{bottom:432.213200pt;}
.y13c{bottom:432.266667pt;}
.y1c7{bottom:433.634667pt;}
.y220{bottom:435.363867pt;}
.y1f6{bottom:435.486933pt;}
.y91{bottom:436.613467pt;}
.y166{bottom:436.694533pt;}
.y23f{bottom:436.933333pt;}
.y30{bottom:439.315867pt;}
.y48{bottom:439.339867pt;}
.y7a{bottom:440.669600pt;}
.y184{bottom:441.992800pt;}
.y1c6{bottom:443.346267pt;}
.y6f{bottom:444.098267pt;}
.y1a2{bottom:444.342400pt;}
.yde{bottom:444.464133pt;}
.yb5{bottom:450.266667pt;}
.y2f{bottom:452.647867pt;}
.y3a{bottom:452.659867pt;}
.y47{bottom:452.671867pt;}
.y55{bottom:452.683867pt;}
.y90{bottom:453.946800pt;}
.y23e{bottom:454.266667pt;}
.y1f5{bottom:454.914933pt;}
.y165{bottom:456.109200pt;}
.y11b{bottom:457.813200pt;}
.y21f{bottom:458.697200pt;}
.y79{bottom:460.669600pt;}
.ydd{bottom:461.797467pt;}
.y1a0{bottom:463.760933pt;}
.y2e{bottom:465.979867pt;}
.y39{bottom:465.991867pt;}
.y46{bottom:466.003867pt;}
.y54{bottom:466.015867pt;}
.yb4{bottom:467.600000pt;}
.y183{bottom:471.326133pt;}
.y19f{bottom:473.442800pt;}
.y13b{bottom:473.600000pt;}
.y6e{bottom:474.098267pt;}
.y1f4{bottom:474.342933pt;}
.y163{bottom:475.523867pt;}
.ydc{bottom:479.130800pt;}
.y2d{bottom:479.311867pt;}
.y38{bottom:479.323867pt;}
.y45{bottom:479.335867pt;}
.y53{bottom:479.347867pt;}
.y78{bottom:480.669600pt;}
.y23d{bottom:483.600000pt;}
.yb3{bottom:484.933333pt;}
.y11a{bottom:486.079867pt;}
.y1c4{bottom:491.916267pt;}
.y1f3{bottom:493.770933pt;}
.y162{bottom:494.938667pt;}
.ydb{bottom:496.464133pt;}
.y182{bottom:499.326133pt;}
.y77{bottom:500.669600pt;}
.y23c{bottom:500.933333pt;}
.y5d{bottom:501.613467pt;}
.yb2{bottom:502.266667pt;}
.y13a{bottom:502.933333pt;}
.y1c3{bottom:511.339467pt;}
.y21e{bottom:512.030533pt;}
.y119{bottom:513.013200pt;}
.y1f2{bottom:513.186933pt;}
.ya5{bottom:513.488667pt;}
.yda{bottom:513.797467pt;}
.y181{bottom:516.659467pt;}
.y1f0{bottom:517.938933pt;}
.y23b{bottom:518.266667pt;}
.yb1{bottom:519.600000pt;}
.y139{bottom:520.266667pt;}
.y19e{bottom:522.018800pt;}
.y21d{bottom:529.363867pt;}
.y1c2{bottom:530.762800pt;}
.y1ef{bottom:532.600533pt;}
.y1f1{bottom:532.602933pt;}
.y161{bottom:533.780000pt;}
.y180{bottom:533.992800pt;}
.y6d{bottom:534.098267pt;}
.y23a{bottom:535.600000pt;}
.yb0{bottom:536.933333pt;}
.y118{bottom:539.946533pt;}
.y19d{bottom:541.446800pt;}
.y21c{bottom:546.697200pt;}
.y1bb{bottom:547.758133pt;}
.yfd{bottom:548.266667pt;}
.y138{bottom:549.600000pt;}
.y1c1{bottom:550.186000pt;}
.y6c{bottom:551.431600pt;}
.y1ee{bottom:552.676533pt;}
.y239{bottom:552.933333pt;}
.y160{bottom:553.194667pt;}
.yaf{bottom:554.266667pt;}
.y17f{bottom:557.326133pt;}
.y197{bottom:558.459867pt;}
.y19c{bottom:560.874800pt;}
.y18{bottom:564.017333pt;}
.y21b{bottom:564.030533pt;}
.y117{bottom:565.546533pt;}
.y137{bottom:566.933333pt;}
.yd9{bottom:567.758800pt;}
.y1c0{bottom:569.609200pt;}
.y15a{bottom:570.167067pt;}
.y15f{bottom:572.609467pt;}
.y6b{bottom:574.764933pt;}
.y1ed{bottom:578.745867pt;}
.y19b{bottom:580.302800pt;}
.y17{bottom:581.353333pt;}
.y21a{bottom:581.363867pt;}
.yd8{bottom:587.186800pt;}
.y1bf{bottom:589.032533pt;}
.y15e{bottom:592.024133pt;}
.y85{bottom:592.764933pt;}
.y116{bottom:594.879867pt;}
.y136{bottom:596.266667pt;}
.y28{bottom:598.572000pt;}
.y16{bottom:598.689333pt;}
.y238{bottom:599.600000pt;}
.y19a{bottom:599.730800pt;}
.yfc{bottom:601.600133pt;}
.y6a{bottom:604.764933pt;}
.yd7{bottom:606.614800pt;}
.yae{bottom:607.600000pt;}
.y1be{bottom:608.455733pt;}
.y1ec{bottom:608.723867pt;}
.y84{bottom:610.098267pt;}
.y219{bottom:610.697200pt;}
.y17e{bottom:611.259067pt;}
.y15d{bottom:611.438800pt;}
.y115{bottom:612.213200pt;}
.y135{bottom:613.600000pt;}
.y27{bottom:615.908000pt;}
.y237{bottom:616.933333pt;}
.yfb{bottom:618.933467pt;}
.y199{bottom:619.158800pt;}
.yd6{bottom:626.042800pt;}
.y1bd{bottom:627.878933pt;}
.y218{bottom:628.030533pt;}
.y1eb{bottom:628.151867pt;}
.y114{bottom:629.546533pt;}
.y17d{bottom:630.687067pt;}
.y15c{bottom:630.853600pt;}
.y26{bottom:633.244000pt;}
.y15{bottom:634.021333pt;}
.y236{bottom:634.266667pt;}
.yfa{bottom:636.266800pt;}
.y134{bottom:636.933333pt;}
.y1bc{bottom:637.590667pt;}
.y198{bottom:638.586800pt;}
.y83{bottom:639.446267pt;}
.y217{bottom:645.363867pt;}
.yd5{bottom:645.470800pt;}
.y113{bottom:646.879867pt;}
.y1ea{bottom:647.579867pt;}
.y17c{bottom:650.115067pt;}
.y15b{bottom:650.268267pt;}
.y25{bottom:650.580000pt;}
.y14{bottom:651.357333pt;}
.y235{bottom:651.600000pt;}
.yf9{bottom:653.600133pt;}
.y196{bottom:658.005333pt;}
.y216{bottom:662.697200pt;}
.y112{bottom:664.213200pt;}
.yd4{bottom:664.898800pt;}
.y1e9{bottom:667.007867pt;}
.y1ba{bottom:667.399733pt;}
.y195{bottom:667.722800pt;}
.y76{bottom:668.453200pt;}
.y13{bottom:668.693333pt;}
.y17b{bottom:669.543067pt;}
.y159{bottom:669.682933pt;}
.yf8{bottom:670.933467pt;}
.y82{bottom:671.431600pt;}
.y111{bottom:681.546533pt;}
.yd3{bottom:684.326800pt;}
.y24{bottom:685.912000pt;}
.y12{bottom:686.029333pt;}
.y1e8{bottom:686.435867pt;}
.yf7{bottom:688.266800pt;}
.y17a{bottom:688.971067pt;}
.y158{bottom:689.097733pt;}
.y133{bottom:690.266800pt;}
.y215{bottom:692.030533pt;}
.y1b9{bottom:693.469067pt;}
.y194{bottom:697.530800pt;}
.y23{bottom:703.248000pt;}
.y11{bottom:703.365333pt;}
.yd2{bottom:703.754800pt;}
.yf6{bottom:705.600133pt;}
.y1e7{bottom:705.863867pt;}
.y132{bottom:707.600133pt;}
.y179{bottom:708.399067pt;}
.y214{bottom:709.363867pt;}
.y110{bottom:710.879867pt;}
.ya4{bottom:716.155333pt;}
.y22{bottom:720.584000pt;}
.yd1{bottom:723.182800pt;}
.y193{bottom:723.600133pt;}
.y131{bottom:724.933467pt;}
.y1e6{bottom:725.291867pt;}
.y213{bottom:726.697200pt;}
.y178{bottom:727.827067pt;}
.y157{bottom:727.939067pt;}
.y10f{bottom:728.213200pt;}
.y234{bottom:728.933467pt;}
.y1b8{bottom:729.600133pt;}
.yf5{bottom:734.933467pt;}
.y21{bottom:737.920000pt;}
.y10{bottom:738.697333pt;}
.y130{bottom:742.266800pt;}
.yd0{bottom:742.610800pt;}
.y212{bottom:744.030533pt;}
.y5{bottom:744.096067pt;}
.y1e5{bottom:744.707867pt;}
.yad{bottom:744.933467pt;}
.y233{bottom:746.266800pt;}
.y1b7{bottom:746.933467pt;}
.y177{bottom:747.255067pt;}
.y156{bottom:747.353733pt;}
.y1e3{bottom:749.459867pt;}
.y10e{bottom:751.546533pt;}
.yf4{bottom:752.266800pt;}
.y1e0{bottom:752.933467pt;}
.y150{bottom:754.618800pt;}
.y20{bottom:755.256000pt;}
.yf{bottom:756.033333pt;}
.y67{bottom:758.232400pt;}
.y12f{bottom:759.600133pt;}
.y211{bottom:761.363867pt;}
.ycf{bottom:762.026800pt;}
.y1e2{bottom:764.121467pt;}
.y1e4{bottom:764.123867pt;}
.y1b6{bottom:764.266800pt;}
.y176{bottom:766.683067pt;}
.y155{bottom:766.768533pt;}
.yce{bottom:766.778800pt;}
.yf3{bottom:769.600133pt;}
.y1df{bottom:770.266800pt;}
.ye{bottom:773.369333pt;}
.y4{bottom:774.105067pt;}
.y232{bottom:775.600133pt;}
.y12e{bottom:776.933467pt;}
.ycd{bottom:781.442800pt;}
.y1b5{bottom:781.600133pt;}
.y1e1{bottom:784.197467pt;}
.y175{bottom:786.111067pt;}
.y154{bottom:786.183200pt;}
.yf2{bottom:786.933467pt;}
.y1f{bottom:790.588000pt;}
.y210{bottom:790.697200pt;}
.yd{bottom:790.705333pt;}
.y231{bottom:792.933467pt;}
.y12d{bottom:794.266800pt;}
.yac{bottom:798.266800pt;}
.y1b4{bottom:798.933467pt;}
.y1de{bottom:799.600133pt;}
.y69{bottom:800.516800pt;}
.ycc{bottom:801.530800pt;}
.y10d{bottom:805.524667pt;}
.y174{bottom:805.539067pt;}
.y153{bottom:805.597867pt;}
.y1e{bottom:807.924000pt;}
.y20f{bottom:808.030533pt;}
.yc{bottom:808.041333pt;}
.yf1{bottom:810.266800pt;}
.y12c{bottom:811.600133pt;}
.yab{bottom:815.600133pt;}
.y1dd{bottom:816.933467pt;}
.y1b3{bottom:822.266800pt;}
.y10c{bottom:824.952667pt;}
.y173{bottom:824.967067pt;}
.y152{bottom:825.012667pt;}
.y1d{bottom:825.260000pt;}
.y20e{bottom:825.363867pt;}
.ycb{bottom:827.606800pt;}
.y12b{bottom:828.933467pt;}
.y6{bottom:829.262000pt;}
.y1dc{bottom:834.266800pt;}
.y230{bottom:839.600133pt;}
.y1c{bottom:842.596000pt;}
.y20d{bottom:842.697200pt;}
.yb{bottom:843.373333pt;}
.y10b{bottom:844.380667pt;}
.y172{bottom:844.395067pt;}
.y151{bottom:844.427333pt;}
.y68{bottom:844.729067pt;}
.yca{bottom:844.933467pt;}
.yaa{bottom:846.266800pt;}
.y1db{bottom:851.600133pt;}
.y20c{bottom:860.030533pt;}
.y3{bottom:860.533467pt;}
.ya{bottom:860.709333pt;}
.yf0{bottom:863.600133pt;}
.y10a{bottom:863.808667pt;}
.y171{bottom:863.823067pt;}
.y14f{bottom:863.842000pt;}
.y1da{bottom:868.933467pt;}
.y14e{bottom:873.549333pt;}
.ya9{bottom:875.600133pt;}
.y1b{bottom:877.928000pt;}
.y9{bottom:878.045333pt;}
.yef{bottom:880.933467pt;}
.y109{bottom:883.236667pt;}
.y170{bottom:883.251067pt;}
.y1d9{bottom:886.266800pt;}
.y20b{bottom:889.363867pt;}
.y1a{bottom:895.264000pt;}
.y8{bottom:895.381333pt;}
.yc9{bottom:898.266800pt;}
.y2{bottom:899.200133pt;}
.y108{bottom:902.664667pt;}
.y16f{bottom:902.679067pt;}
.y14d{bottom:902.688667pt;}
.y22f{bottom:903.600133pt;}
.ya8{bottom:904.933467pt;}
.y20a{bottom:906.697200pt;}
.y19{bottom:912.600000pt;}
.y7{bottom:912.717333pt;}
.y16e{bottom:913.047067pt;}
.yc8{bottom:915.600133pt;}
.y107{bottom:922.752667pt;}
.y209{bottom:924.030533pt;}
.ya7{bottom:932.933467pt;}
.y5f{bottom:937.613467pt;}
.y208{bottom:947.363867pt;}
.ya3{bottom:948.822000pt;}
.ya6{bottom:950.266800pt;}
.h18{height:32.586667pt;}
.h1b{height:33.360000pt;}
.h1d{height:33.362667pt;}
.h1c{height:33.394667pt;}
.hd{height:33.408000pt;}
.h27{height:33.417600pt;}
.hb{height:33.984000pt;}
.h1{height:34.128000pt;}
.ha{height:36.000000pt;}
.h5{height:37.920000pt;}
.h21{height:37.920533pt;}
.h1f{height:39.866827pt;}
.h16{height:39.867360pt;}
.h12{height:40.000000pt;}
.h6{height:40.480000pt;}
.h7{height:40.832000pt;}
.he{height:41.328000pt;}
.h9{height:41.536000pt;}
.h8{height:41.712000pt;}
.h20{height:44.288000pt;}
.h17{height:46.000000pt;}
.h1e{height:47.215333pt;}
.h19{height:47.242000pt;}
.h14{height:48.000000pt;}
.h15{height:52.000000pt;}
.h4{height:59.724000pt;}
.h11{height:64.464000pt;}
.h1a{height:72.144000pt;}
.h22{height:72.189867pt;}
.h24{height:72.202133pt;}
.h26{height:72.206400pt;}
.h23{height:72.240000pt;}
.h25{height:72.344533pt;}
.h3{height:79.632000pt;}
.h13{height:80.000000pt;}
.h10{height:83.189333pt;}
.hc{height:87.216000pt;}
.h2{height:91.008000pt;}
.hf{height:103.767727pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x25{left:-624.000000pt;}
.x2d{left:-618.662267pt;}
.x2a{left:-609.906667pt;}
.x28{left:-595.626667pt;}
.x2c{left:-569.188667pt;}
.x2b{left:-562.744800pt;}
.x29{left:-524.465733pt;}
.x26{left:-432.960000pt;}
.x27{left:-408.480000pt;}
.x38{left:-366.357467pt;}
.x0{left:0.000000pt;}
.x7{left:72.000000pt;}
.x15{left:77.328000pt;}
.x14{left:78.247867pt;}
.x34{left:86.097600pt;}
.x1d{left:90.000000pt;}
.x32{left:100.373200pt;}
.x3d{left:102.000000pt;}
.xb{left:108.088400pt;}
.x11{left:120.000000pt;}
.x10{left:121.887867pt;}
.x36{left:126.806800pt;}
.x35{left:133.250800pt;}
.xf{left:141.137200pt;}
.xe{left:148.662800pt;}
.x17{left:161.328000pt;}
.x3{left:167.613733pt;}
.x33{left:171.538133pt;}
.x13{left:192.000000pt;}
.x19{left:197.342000pt;}
.x1e{left:198.247867pt;}
.x3a{left:199.914400pt;}
.x23{left:206.093333pt;}
.x2f{left:209.994533pt;}
.x39{left:219.248267pt;}
.x21{left:220.373333pt;}
.x3e{left:221.986667pt;}
.x2{left:224.230667pt;}
.x1c{left:234.290000pt;}
.x9{left:246.000000pt;}
.x24{left:253.255067pt;}
.x16{left:258.024000pt;}
.xc{left:259.902000pt;}
.x3c{left:269.786133pt;}
.x22{left:291.534267pt;}
.x2e{left:306.367333pt;}
.x1b{left:311.786000pt;}
.x31{left:324.823067pt;}
.x4{left:374.341733pt;}
.x1f{left:383.040000pt;}
.x20{left:407.520000pt;}
.x8{left:419.996000pt;}
.x18{left:426.554000pt;}
.x1a{left:429.338000pt;}
.x5{left:445.195733pt;}
.x37{left:449.642533pt;}
.x3b{left:469.506400pt;}
.x30{left:477.736000pt;}
.x1{left:483.123867pt;}
.x12{left:485.187867pt;}
.xd{left:492.277600pt;}
.x6{left:561.157733pt;}
.xa{left:594.000000pt;}
}




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