
    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_00fd83125d1be16a4c2dfb6d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_548d3296ef842fd1fe8d6482.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_820fb64955968acbf399c635.woff')format("woff");}.ff3{font-family:ff3;line-height:1.130859;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_2db3929273143e96729ee82e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.032715;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_eccae562abdc0bd0a42a3f1b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.133301;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_e3ef9e9e023121090f474afc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f581a42d6e93c7e31336574c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.146973;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_262325055ad7786f381f10a4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.976118;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3c7b4a93de17e43b53289ee3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.710938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9b19c17721718350bd5ef027.woff')format("woff");}.ffa{font-family:ffa;line-height:0.977087;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_e1280928866ebcbda08db912.woff')format("woff");}.ffb{font-family:ffb;line-height:0.976092;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8f9ecf4d30077904afdcc381.woff')format("woff");}.ffc{font-family:ffc;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_554e91f1dda6e28b67702128.woff')format("woff");}.ffd{font-family:ffd;line-height:0.964372;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a4ba3a5262f35d4e6080f25a.woff')format("woff");}.ffe{font-family:ffe;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4cc7f8a97750bce8fdb96813.woff')format("woff");}.fff{font-family:fff;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-13.986000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.986000px;}
.v6{vertical-align:18.150000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v4{vertical-align:27.000000px;}
.ls34{letter-spacing:-12.480000px;}
.ls32{letter-spacing:-11.820000px;}
.ls41{letter-spacing:-8.316000px;}
.ls49{letter-spacing:-8.262000px;}
.ls10{letter-spacing:-7.236000px;}
.ls53{letter-spacing:-7.020000px;}
.ls4b{letter-spacing:-6.750000px;}
.ls40{letter-spacing:-4.320000px;}
.ls48{letter-spacing:-4.266000px;}
.ls1a{letter-spacing:-4.140000px;}
.ls3f{letter-spacing:-3.840000px;}
.ls19{letter-spacing:-3.720000px;}
.lsf{letter-spacing:-3.240000px;}
.ls52{letter-spacing:-3.024000px;}
.ls4a{letter-spacing:-2.754000px;}
.ls18{letter-spacing:-1.920000px;}
.lsa{letter-spacing:-1.200000px;}
.ls17{letter-spacing:-1.080000px;}
.ls47{letter-spacing:-1.026000px;}
.ls14{letter-spacing:-1.020000px;}
.ls58{letter-spacing:-0.972000px;}
.lsb{letter-spacing:-0.960000px;}
.ls7{letter-spacing:-0.918000px;}
.ls27{letter-spacing:-0.840000px;}
.ls5d{letter-spacing:-0.756000px;}
.ls59{letter-spacing:-0.702000px;}
.ls4{letter-spacing:-0.691200px;}
.ls33{letter-spacing:-0.660000px;}
.ls5e{letter-spacing:-0.648000px;}
.ls26{letter-spacing:-0.600000px;}
.ls13{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.420000px;}
.ls2{letter-spacing:-0.408000px;}
.ls5b{letter-spacing:-0.378000px;}
.ls6{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.300000px;}
.ls1b{letter-spacing:-0.240000px;}
.ls3c{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.180000px;}
.ls1c{letter-spacing:-0.120000px;}
.ls3{letter-spacing:-0.102000px;}
.ls1{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.108000px;}
.ls4d{letter-spacing:0.135000px;}
.ls4c{letter-spacing:0.216000px;}
.ls60{letter-spacing:0.405000px;}
.ls2f{letter-spacing:0.420000px;}
.ls5f{letter-spacing:0.432000px;}
.ls31{letter-spacing:0.453600px;}
.ls1d{letter-spacing:0.480000px;}
.ls42{letter-spacing:0.486000px;}
.ls57{letter-spacing:0.540000px;}
.ls5c{letter-spacing:0.594000px;}
.ls1f{letter-spacing:0.660000px;}
.ls36{letter-spacing:0.720000px;}
.ls5a{letter-spacing:0.756000px;}
.ls20{letter-spacing:0.780000px;}
.ls24{letter-spacing:0.840000px;}
.ls15{letter-spacing:0.900000px;}
.ls29{letter-spacing:0.918000px;}
.ls35{letter-spacing:0.930000px;}
.ls11{letter-spacing:0.960000px;}
.ls25{letter-spacing:1.020000px;}
.ls56{letter-spacing:1.026000px;}
.lsd{letter-spacing:1.080000px;}
.ls1e{letter-spacing:1.104000px;}
.lsc{letter-spacing:1.200000px;}
.ls28{letter-spacing:2.322000px;}
.ls12{letter-spacing:2.580000px;}
.ls21{letter-spacing:2.700000px;}
.ls30{letter-spacing:2.754000px;}
.ls44{letter-spacing:3.348000px;}
.ls43{letter-spacing:3.375000px;}
.ls46{letter-spacing:3.834000px;}
.ls45{letter-spacing:3.888000px;}
.ls2a{letter-spacing:4.374000px;}
.lse{letter-spacing:4.428000px;}
.ls23{letter-spacing:4.482000px;}
.ls50{letter-spacing:4.914000px;}
.ls4f{letter-spacing:4.968000px;}
.ls2b{letter-spacing:5.562000px;}
.ls51{letter-spacing:5.670000px;}
.ls22{letter-spacing:5.778000px;}
.ls2e{letter-spacing:6.426000px;}
.ls2d{letter-spacing:6.453000px;}
.ls2c{letter-spacing:8.760000px;}
.ls61{letter-spacing:13.230000px;}
.ls54{letter-spacing:13.516200px;}
.ls55{letter-spacing:13.554000px;}
.ls0{letter-spacing:43.181964px;}
.ls37{letter-spacing:64.014552px;}
.ls3b{letter-spacing:315.486552px;}
.ls3a{letter-spacing:406.812000px;}
.ls39{letter-spacing:418.614000px;}
.ls38{letter-spacing:428.820000px;}
.ls3e{letter-spacing:486.654000px;}
.ls3d{letter-spacing:501.984000px;}
.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;}
}
.ws5{word-spacing:-17.928000px;}
.ws49{word-spacing:-16.434000px;}
.ws55{word-spacing:-16.368000px;}
.ws50{word-spacing:-16.140000px;}
.ws57{word-spacing:-16.020000px;}
.ws103{word-spacing:-15.960000px;}
.ws64{word-spacing:-15.900000px;}
.ws6e{word-spacing:-15.840000px;}
.ws58{word-spacing:-15.780000px;}
.wsf7{word-spacing:-15.720000px;}
.ws148{word-spacing:-15.660000px;}
.ws13c{word-spacing:-15.600000px;}
.wsd8{word-spacing:-15.420000px;}
.ws126{word-spacing:-15.360000px;}
.ws1a7{word-spacing:-15.240000px;}
.wsd7{word-spacing:-15.180000px;}
.ws3{word-spacing:-14.940000px;}
.ws69{word-spacing:-14.880000px;}
.ws56{word-spacing:-14.820000px;}
.ws77{word-spacing:-14.760000px;}
.ws22{word-spacing:-14.700000px;}
.ws113{word-spacing:-14.640000px;}
.wsa8{word-spacing:-14.580000px;}
.ws114{word-spacing:-14.520000px;}
.wsa7{word-spacing:-14.460000px;}
.ws35{word-spacing:-14.400000px;}
.ws3c{word-spacing:-14.280000px;}
.wsa6{word-spacing:-14.160000px;}
.ws10e{word-spacing:-14.100000px;}
.ws1b0{word-spacing:-13.986000px;}
.ws18f{word-spacing:-13.932000px;}
.ws11e{word-spacing:-13.920000px;}
.ws185{word-spacing:-13.860000px;}
.ws1de{word-spacing:-13.797000px;}
.ws192{word-spacing:-13.716000px;}
.ws14e{word-spacing:-13.680000px;}
.ws19a{word-spacing:-13.662000px;}
.ws142{word-spacing:-13.500000px;}
.ws5d{word-spacing:-13.446000px;}
.ws1a9{word-spacing:-13.392000px;}
.ws138{word-spacing:-13.260000px;}
.wsfe{word-spacing:-13.230000px;}
.ws80{word-spacing:-13.020000px;}
.ws1da{word-spacing:-13.014000px;}
.ws1c9{word-spacing:-12.852000px;}
.ws4{word-spacing:-12.798000px;}
.ws18b{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.366000px;}
.ws1c2{word-spacing:-12.258000px;}
.ws18d{word-spacing:-12.204000px;}
.ws9{word-spacing:-12.150000px;}
.ws7{word-spacing:-11.448000px;}
.ws8{word-spacing:-11.232000px;}
.ws9a{word-spacing:-11.220000px;}
.wsa{word-spacing:-10.992000px;}
.ws1{word-spacing:-10.896000px;}
.ws21{word-spacing:-10.800000px;}
.ws9b{word-spacing:-10.740000px;}
.ws190{word-spacing:-10.692000px;}
.ws14f{word-spacing:-10.458000px;}
.ws19b{word-spacing:-10.422000px;}
.ws5c{word-spacing:-10.206000px;}
.ws2{word-spacing:-9.892800px;}
.ws133{word-spacing:-9.660000px;}
.ws0{word-spacing:-9.618000px;}
.ws18c{word-spacing:-9.180000px;}
.ws186{word-spacing:-9.126000px;}
.ws136{word-spacing:-8.820000px;}
.ws2e{word-spacing:-8.675040px;}
.ws17b{word-spacing:-8.220000px;}
.ws1c8{word-spacing:-7.807536px;}
.ws191{word-spacing:-6.696000px;}
.ws99{word-spacing:-6.600000px;}
.ws13b{word-spacing:-6.480000px;}
.ws19c{word-spacing:-6.426000px;}
.ws135{word-spacing:-6.240000px;}
.ws5e{word-spacing:-6.210000px;}
.ws109{word-spacing:-5.700000px;}
.ws141{word-spacing:-5.460000px;}
.ws140{word-spacing:-5.400000px;}
.ws120{word-spacing:-5.340000px;}
.ws11f{word-spacing:-5.280000px;}
.ws144{word-spacing:-5.220000px;}
.ws18e{word-spacing:-5.184000px;}
.ws145{word-spacing:-5.160000px;}
.ws187{word-spacing:-5.130000px;}
.ws139{word-spacing:-4.920000px;}
.ws13d{word-spacing:-4.620000px;}
.ws182{word-spacing:-4.320000px;}
.ws9f{word-spacing:-4.080000px;}
.ws9e{word-spacing:-4.020000px;}
.ws43{word-spacing:-3.720000px;}
.ws44{word-spacing:-3.660000px;}
.wsef{word-spacing:-3.480000px;}
.ws1c3{word-spacing:-3.456000px;}
.ws184{word-spacing:-3.402000px;}
.wsb3{word-spacing:-3.300000px;}
.wsb4{word-spacing:-3.240000px;}
.ws8d{word-spacing:-3.180000px;}
.ws28{word-spacing:-3.060000px;}
.ws193{word-spacing:-3.024000px;}
.ws194{word-spacing:-2.970000px;}
.ws7f{word-spacing:-2.940000px;}
.ws38{word-spacing:-2.880000px;}
.ws17c{word-spacing:-2.862000px;}
.ws83{word-spacing:-2.820000px;}
.wseb{word-spacing:-2.760000px;}
.ws188{word-spacing:-2.754000px;}
.ws36{word-spacing:-2.700000px;}
.ws23{word-spacing:-2.640000px;}
.ws1a4{word-spacing:-2.592000px;}
.wsac{word-spacing:-2.580000px;}
.wsa0{word-spacing:-2.520000px;}
.ws8a{word-spacing:-2.460000px;}
.ws29{word-spacing:-2.400000px;}
.ws5f{word-spacing:-2.376000px;}
.ws60{word-spacing:-2.322000px;}
.wsd0{word-spacing:-2.280000px;}
.ws13a{word-spacing:-2.160000px;}
.ws12c{word-spacing:-2.100000px;}
.ws1bf{word-spacing:-2.052000px;}
.ws6b{word-spacing:-2.040000px;}
.ws10{word-spacing:-1.998000px;}
.wsf2{word-spacing:-1.980000px;}
.ws119{word-spacing:-1.944000px;}
.ws8f{word-spacing:-1.920000px;}
.ws18a{word-spacing:-1.890000px;}
.ws1a8{word-spacing:-1.860000px;}
.ws189{word-spacing:-1.836000px;}
.ws32{word-spacing:-1.800000px;}
.ws37{word-spacing:-1.740000px;}
.ws1b{word-spacing:-1.728000px;}
.wsaf{word-spacing:-1.680000px;}
.ws46{word-spacing:-1.620000px;}
.ws1c5{word-spacing:-1.566000px;}
.wsf5{word-spacing:-1.560000px;}
.ws14d{word-spacing:-1.500000px;}
.ws84{word-spacing:-1.440000px;}
.wsed{word-spacing:-1.380000px;}
.ws15{word-spacing:-1.350000px;}
.ws147{word-spacing:-1.320000px;}
.wsbd{word-spacing:-1.260000px;}
.ws1dc{word-spacing:-1.242000px;}
.ws53{word-spacing:-1.200000px;}
.ws1a5{word-spacing:-1.188000px;}
.ws78{word-spacing:-1.140000px;}
.ws2d{word-spacing:-1.080000px;}
.wsaa{word-spacing:-1.020000px;}
.ws1d6{word-spacing:-0.972000px;}
.ws67{word-spacing:-0.960000px;}
.ws1ce{word-spacing:-0.918000px;}
.ws70{word-spacing:-0.900000px;}
.ws61{word-spacing:-0.864000px;}
.ws2c{word-spacing:-0.840000px;}
.ws1b2{word-spacing:-0.810000px;}
.wsf8{word-spacing:-0.780000px;}
.ws123{word-spacing:-0.756000px;}
.ws149{word-spacing:-0.720000px;}
.ws1e0{word-spacing:-0.702000px;}
.ws7c{word-spacing:-0.660000px;}
.wsae{word-spacing:-0.600000px;}
.ws1c{word-spacing:-0.594000px;}
.wscf{word-spacing:-0.540000px;}
.ws198{word-spacing:-0.486000px;}
.wsdb{word-spacing:-0.480000px;}
.ws1a6{word-spacing:-0.432000px;}
.ws98{word-spacing:-0.420000px;}
.wsa3{word-spacing:-0.360000px;}
.ws1a0{word-spacing:-0.324000px;}
.wsca{word-spacing:-0.300000px;}
.ws129{word-spacing:-0.270000px;}
.ws89{word-spacing:-0.240000px;}
.wse{word-spacing:-0.216000px;}
.ws41{word-spacing:-0.180000px;}
.ws62{word-spacing:-0.162000px;}
.wsf6{word-spacing:-0.120000px;}
.ws1cc{word-spacing:-0.108000px;}
.ws115{word-spacing:-0.060000px;}
.ws19d{word-spacing:-0.054000px;}
.ws17d{word-spacing:-0.042000px;}
.wsb{word-spacing:0.000000px;}
.ws27{word-spacing:0.060000px;}
.wsd{word-spacing:0.102000px;}
.ws1c6{word-spacing:0.108000px;}
.wsad{word-spacing:0.120000px;}
.ws75{word-spacing:0.180000px;}
.ws1d{word-spacing:0.216000px;}
.ws2a{word-spacing:0.240000px;}
.ws34{word-spacing:0.300000px;}
.ws1e{word-spacing:0.360000px;}
.ws1cb{word-spacing:0.378000px;}
.wsc{word-spacing:0.408000px;}
.ws39{word-spacing:0.420000px;}
.ws12{word-spacing:0.432000px;}
.wsb7{word-spacing:0.480000px;}
.ws134{word-spacing:0.486000px;}
.ws65{word-spacing:0.540000px;}
.ws1d9{word-spacing:0.594000px;}
.ws10c{word-spacing:0.600000px;}
.ws1db{word-spacing:0.648000px;}
.ws137{word-spacing:0.660000px;}
.wsf{word-spacing:0.691200px;}
.ws1af{word-spacing:0.702000px;}
.ws5b{word-spacing:0.720000px;}
.ws1d0{word-spacing:0.756000px;}
.ws76{word-spacing:0.780000px;}
.ws1b5{word-spacing:0.810000px;}
.ws30{word-spacing:0.840000px;}
.ws118{word-spacing:0.918000px;}
.ws45{word-spacing:0.960000px;}
.ws1aa{word-spacing:0.972000px;}
.ws6c{word-spacing:1.020000px;}
.ws195{word-spacing:1.026000px;}
.ws7a{word-spacing:1.080000px;}
.ws1b7{word-spacing:1.134000px;}
.wsd1{word-spacing:1.140000px;}
.ws1df{word-spacing:1.188000px;}
.ws3f{word-spacing:1.200000px;}
.ws1c1{word-spacing:1.242000px;}
.ws13f{word-spacing:1.260000px;}
.ws31{word-spacing:1.320000px;}
.ws1bc{word-spacing:1.350000px;}
.ws94{word-spacing:1.380000px;}
.ws1e1{word-spacing:1.404000px;}
.wsc8{word-spacing:1.440000px;}
.wsb8{word-spacing:1.500000px;}
.ws125{word-spacing:1.512000px;}
.ws2f{word-spacing:1.560000px;}
.wsc2{word-spacing:1.620000px;}
.ws66{word-spacing:1.680000px;}
.ws12b{word-spacing:1.740000px;}
.ws54{word-spacing:1.782000px;}
.wsc9{word-spacing:1.800000px;}
.ws1cf{word-spacing:1.836000px;}
.wsce{word-spacing:1.860000px;}
.wse6{word-spacing:1.920000px;}
.ws16{word-spacing:1.944000px;}
.ws2b{word-spacing:1.980000px;}
.ws1d7{word-spacing:1.998000px;}
.wsd5{word-spacing:2.040000px;}
.ws1ae{word-spacing:2.052000px;}
.wsda{word-spacing:2.100000px;}
.ws128{word-spacing:2.106000px;}
.wsc4{word-spacing:2.160000px;}
.wse3{word-spacing:2.220000px;}
.wsb6{word-spacing:2.280000px;}
.ws13{word-spacing:2.322000px;}
.ws3d{word-spacing:2.340000px;}
.ws1c7{word-spacing:2.376000px;}
.wscd{word-spacing:2.400000px;}
.wsba{word-spacing:2.460000px;}
.wsd9{word-spacing:2.520000px;}
.ws143{word-spacing:2.580000px;}
.ws1e5{word-spacing:2.646000px;}
.ws82{word-spacing:2.700000px;}
.ws88{word-spacing:2.760000px;}
.ws19{word-spacing:2.808000px;}
.wsa1{word-spacing:2.820000px;}
.ws197{word-spacing:2.862000px;}
.wse7{word-spacing:2.880000px;}
.ws196{word-spacing:2.916000px;}
.ws51{word-spacing:2.940000px;}
.ws127{word-spacing:3.000000px;}
.ws124{word-spacing:3.078000px;}
.ws40{word-spacing:3.120000px;}
.ws1b8{word-spacing:3.132000px;}
.ws5a{word-spacing:3.180000px;}
.ws6d{word-spacing:3.240000px;}
.wsc3{word-spacing:3.300000px;}
.ws199{word-spacing:3.348000px;}
.wscc{word-spacing:3.360000px;}
.ws52{word-spacing:3.420000px;}
.ws4f{word-spacing:3.480000px;}
.ws12a{word-spacing:3.510000px;}
.wse9{word-spacing:3.540000px;}
.ws13e{word-spacing:3.600000px;}
.ws79{word-spacing:3.660000px;}
.wsab{word-spacing:3.720000px;}
.ws33{word-spacing:3.780000px;}
.ws42{word-spacing:3.840000px;}
.wsbc{word-spacing:3.900000px;}
.ws47{word-spacing:3.960000px;}
.wsb1{word-spacing:4.020000px;}
.ws72{word-spacing:4.080000px;}
.ws1d3{word-spacing:4.104000px;}
.ws104{word-spacing:4.140000px;}
.ws4c{word-spacing:4.200000px;}
.ws1ca{word-spacing:4.212000px;}
.ws4b{word-spacing:4.260000px;}
.ws20{word-spacing:4.320000px;}
.ws11a{word-spacing:4.374000px;}
.ws4e{word-spacing:4.380000px;}
.ws63{word-spacing:4.428000px;}
.ws4d{word-spacing:4.440000px;}
.ws100{word-spacing:4.482000px;}
.wsbb{word-spacing:4.500000px;}
.ws14{word-spacing:4.536000px;}
.ws4a{word-spacing:4.560000px;}
.ws1e3{word-spacing:4.590000px;}
.ws91{word-spacing:4.620000px;}
.ws1b1{word-spacing:4.644000px;}
.ws19e{word-spacing:4.698000px;}
.ws14c{word-spacing:4.740000px;}
.ws1b4{word-spacing:4.752000px;}
.ws90{word-spacing:4.800000px;}
.wsa5{word-spacing:4.860000px;}
.ws1a{word-spacing:4.914000px;}
.wsa4{word-spacing:4.920000px;}
.ws11{word-spacing:4.968000px;}
.ws12f{word-spacing:4.980000px;}
.wsec{word-spacing:5.040000px;}
.wsb5{word-spacing:5.160000px;}
.wsdd{word-spacing:5.220000px;}
.wsc1{word-spacing:5.280000px;}
.wsc0{word-spacing:5.340000px;}
.wse8{word-spacing:5.400000px;}
.ws7e{word-spacing:5.460000px;}
.ws11b{word-spacing:5.508000px;}
.ws81{word-spacing:5.520000px;}
.ws1d8{word-spacing:5.562000px;}
.ws68{word-spacing:5.580000px;}
.ws1ba{word-spacing:5.616000px;}
.ws48{word-spacing:5.640000px;}
.ws19f{word-spacing:5.670000px;}
.ws1f{word-spacing:5.700000px;}
.wsff{word-spacing:5.724000px;}
.wsd4{word-spacing:5.760000px;}
.wse2{word-spacing:5.820000px;}
.wse1{word-spacing:5.880000px;}
.ws73{word-spacing:5.940000px;}
.wsf1{word-spacing:6.000000px;}
.ws1ad{word-spacing:6.048000px;}
.wsb2{word-spacing:6.060000px;}
.ws25{word-spacing:6.120000px;}
.ws131{word-spacing:6.180000px;}
.ws17{word-spacing:6.210000px;}
.wscb{word-spacing:6.240000px;}
.ws18{word-spacing:6.264000px;}
.ws3a{word-spacing:6.300000px;}
.ws3b{word-spacing:6.360000px;}
.wsfd{word-spacing:6.480000px;}
.ws122{word-spacing:6.534000px;}
.ws95{word-spacing:6.600000px;}
.wsd2{word-spacing:6.660000px;}
.wsd3{word-spacing:6.720000px;}
.ws1cd{word-spacing:6.750000px;}
.ws8e{word-spacing:6.840000px;}
.ws1bd{word-spacing:6.858000px;}
.ws12e{word-spacing:6.900000px;}
.ws1be{word-spacing:6.912000px;}
.ws108{word-spacing:6.960000px;}
.wsa9{word-spacing:7.020000px;}
.wsf3{word-spacing:7.080000px;}
.wsa2{word-spacing:7.200000px;}
.wsfb{word-spacing:7.320000px;}
.ws1b6{word-spacing:7.344000px;}
.wsf0{word-spacing:7.440000px;}
.ws12d{word-spacing:7.500000px;}
.ws24{word-spacing:7.560000px;}
.ws11d{word-spacing:7.668000px;}
.wsbe{word-spacing:7.680000px;}
.ws11c{word-spacing:7.722000px;}
.wsbf{word-spacing:7.740000px;}
.ws59{word-spacing:7.920000px;}
.ws1c0{word-spacing:7.938000px;}
.wsee{word-spacing:8.040000px;}
.ws74{word-spacing:8.100000px;}
.ws1b9{word-spacing:8.154000px;}
.wsb9{word-spacing:8.160000px;}
.ws1ac{word-spacing:8.316000px;}
.wsb0{word-spacing:8.340000px;}
.ws130{word-spacing:8.400000px;}
.ws96{word-spacing:8.460000px;}
.ws1b3{word-spacing:8.478000px;}
.ws87{word-spacing:8.640000px;}
.ws86{word-spacing:8.700000px;}
.wsd6{word-spacing:8.820000px;}
.ws132{word-spacing:8.880000px;}
.ws121{word-spacing:8.940000px;}
.wse5{word-spacing:9.000000px;}
.wsf9{word-spacing:9.060000px;}
.wse4{word-spacing:9.120000px;}
.wsea{word-spacing:9.180000px;}
.wsc6{word-spacing:9.240000px;}
.wsc7{word-spacing:9.300000px;}
.ws85{word-spacing:9.420000px;}
.ws101{word-spacing:9.480000px;}
.wsf4{word-spacing:9.540000px;}
.ws1ab{word-spacing:9.558000px;}
.ws1dd{word-spacing:9.612000px;}
.ws146{word-spacing:9.720000px;}
.wsde{word-spacing:10.020000px;}
.ws26{word-spacing:10.500000px;}
.ws183{word-spacing:10.680000px;}
.wsfc{word-spacing:10.800000px;}
.wsc5{word-spacing:10.920000px;}
.ws102{word-spacing:11.040000px;}
.ws10d{word-spacing:11.100000px;}
.ws106{word-spacing:11.220000px;}
.ws105{word-spacing:11.280000px;}
.ws111{word-spacing:11.760000px;}
.wsdf{word-spacing:11.880000px;}
.wse0{word-spacing:12.000000px;}
.ws112{word-spacing:12.300000px;}
.ws107{word-spacing:12.720000px;}
.ws1bb{word-spacing:12.744000px;}
.ws1d4{word-spacing:12.798000px;}
.ws1d5{word-spacing:12.906000px;}
.ws8c{word-spacing:12.960000px;}
.ws1e2{word-spacing:13.122000px;}
.ws1e4{word-spacing:13.230000px;}
.ws116{word-spacing:13.380000px;}
.ws117{word-spacing:13.440000px;}
.ws1a3{word-spacing:13.446000px;}
.ws1a2{word-spacing:13.554000px;}
.ws1a1{word-spacing:13.662000px;}
.wsdc{word-spacing:13.800000px;}
.ws14b{word-spacing:14.160000px;}
.ws110{word-spacing:14.340000px;}
.ws14a{word-spacing:16.680000px;}
.ws1d1{word-spacing:16.848000px;}
.ws1d2{word-spacing:17.280000px;}
.ws9d{word-spacing:17.940000px;}
.ws7b{word-spacing:18.240000px;}
.ws1c4{word-spacing:18.306000px;}
.ws6a{word-spacing:18.480000px;}
.ws9c{word-spacing:18.780000px;}
.ws92{word-spacing:18.960000px;}
.ws8b{word-spacing:19.500000px;}
.ws93{word-spacing:20.280000px;}
.wsfa{word-spacing:20.340000px;}
.ws10b{word-spacing:20.940000px;}
.ws10a{word-spacing:21.060000px;}
.ws71{word-spacing:24.180000px;}
.ws6f{word-spacing:24.300000px;}
.ws7d{word-spacing:24.540000px;}
.ws97{word-spacing:25.800000px;}
.ws3e{word-spacing:27.780000px;}
.ws10f{word-spacing:29.760000px;}
.ws17a{word-spacing:260.190000px;}
.ws179{word-spacing:302.736000px;}
.ws178{word-spacing:312.942000px;}
.ws177{word-spacing:318.444000px;}
.ws158{word-spacing:342.048000px;}
.ws154{word-spacing:353.850000px;}
.ws151{word-spacing:365.652000px;}
.ws15b{word-spacing:376.068000px;}
.ws16b{word-spacing:384.594000px;}
.ws15e{word-spacing:399.672000px;}
.ws15a{word-spacing:406.560000px;}
.ws17f{word-spacing:413.280000px;}
.ws181{word-spacing:447.300000px;}
.ws180{word-spacing:476.238000px;}
.ws17e{word-spacing:479.724000px;}
.ws162{word-spacing:547.768200px;}
.ws167{word-spacing:577.500000px;}
.ws170{word-spacing:596.274000px;}
.ws15d{word-spacing:600.478200px;}
.ws16e{word-spacing:602.448000px;}
.ws172{word-spacing:608.580000px;}
.ws156{word-spacing:614.149200px;}
.ws15f{word-spacing:620.499600px;}
.ws16a{word-spacing:632.226000px;}
.ws163{word-spacing:638.912400px;}
.ws166{word-spacing:655.326000px;}
.ws173{word-spacing:656.670000px;}
.ws161{word-spacing:658.509600px;}
.ws174{word-spacing:666.166200px;}
.ws160{word-spacing:671.290200px;}
.ws164{word-spacing:672.957600px;}
.ws165{word-spacing:673.268400px;}
.ws168{word-spacing:677.892600px;}
.ws157{word-spacing:679.686000px;}
.ws152{word-spacing:680.274000px;}
.ws16c{word-spacing:682.122000px;}
.ws150{word-spacing:691.026000px;}
.ws16d{word-spacing:707.868000px;}
.ws153{word-spacing:717.049200px;}
.ws16f{word-spacing:717.822000px;}
.ws169{word-spacing:722.820000px;}
.ws159{word-spacing:723.702000px;}
.ws171{word-spacing:724.794000px;}
.ws155{word-spacing:731.556000px;}
.ws175{word-spacing:765.244200px;}
.ws15c{word-spacing:771.078000px;}
.ws176{word-spacing:785.047200px;}
._6{margin-left:-11.224200px;}
._11{margin-left:-9.940200px;}
._4{margin-left:-8.098800px;}
._d{margin-left:-6.328800px;}
._3{margin-left:-5.089800px;}
._8{margin-left:-4.081200px;}
._1{margin-left:-2.917200px;}
._2{margin-left:-1.009800px;}
._0{width:1.203600px;}
._5{width:2.362800px;}
._9{width:4.023000px;}
._a{width:5.832000px;}
._b{width:6.912000px;}
._e{width:8.862000px;}
._c{width:10.188000px;}
._10{width:11.208000px;}
._12{width:12.672000px;}
._14{width:13.789800px;}
._39{width:14.816400px;}
._13{width:16.058400px;}
._16{width:17.122800px;}
._f{width:18.720000px;}
._18{width:20.245200px;}
._15{width:21.480000px;}
._17{width:23.220000px;}
._1c{width:24.324000px;}
._19{width:25.344000px;}
._1b{width:27.476400px;}
._1a{width:28.651200px;}
._7{width:36.369600px;}
._38{width:43.028400px;}
._3a{width:50.997600px;}
._1e{width:82.020000px;}
._1d{width:87.480000px;}
._29{width:107.604000px;}
._28{width:121.590000px;}
._31{width:123.774000px;}
._27{width:304.550400px;}
._1f{width:305.970000px;}
._36{width:361.074000px;}
._26{width:374.682000px;}
._25{width:395.832600px;}
._23{width:397.924800px;}
._24{width:405.216000px;}
._22{width:410.088000px;}
._37{width:412.272000px;}
._21{width:418.614000px;}
._2e{width:423.696000px;}
._32{width:427.056000px;}
._20{width:428.820000px;}
._2f{width:436.212000px;}
._2a{width:450.996000px;}
._35{width:457.716000px;}
._34{width:486.654000px;}
._2d{width:501.984000px;}
._33{width:539.364000px;}
._2b{width:549.780000px;}
._30{width:561.540000px;}
._2c{width:574.367400px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:24.486000px;}
.fsb{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y40{bottom:71.212050px;}
.y41{bottom:75.040050px;}
.y1d7{bottom:112.790850px;}
.y200{bottom:112.832850px;}
.y1a7{bottom:112.988850px;}
.y10a{bottom:113.076900px;}
.y73{bottom:113.078700px;}
.ya0{bottom:113.078850px;}
.ydb{bottom:113.080800px;}
.y10{bottom:117.205050px;}
.y2b{bottom:117.212700px;}
.y118{bottom:120.478350px;}
.ye0{bottom:120.482850px;}
.y17e{bottom:120.491700px;}
.yac{bottom:120.496200px;}
.y175{bottom:120.496350px;}
.y184{bottom:120.846450px;}
.yf{bottom:131.601450px;}
.y1d6{bottom:133.796850px;}
.y1ff{bottom:133.838850px;}
.y1a6{bottom:133.994850px;}
.y109{bottom:134.076900px;}
.y72{bottom:134.078700px;}
.y9f{bottom:134.078850px;}
.yda{bottom:134.080800px;}
.y2a{bottom:138.212700px;}
.y117{bottom:140.282850px;}
.ydf{bottom:140.287350px;}
.y17d{bottom:140.296200px;}
.yab{bottom:140.300700px;}
.y174{bottom:140.300850px;}
.y183{bottom:140.650950px;}
.ye{bottom:145.997850px;}
.y1d5{bottom:154.802850px;}
.y1fe{bottom:154.844850px;}
.y1a5{bottom:155.000850px;}
.y108{bottom:155.076900px;}
.y71{bottom:155.078700px;}
.y9e{bottom:155.078850px;}
.yd9{bottom:155.080800px;}
.y29{bottom:159.212700px;}
.y116{bottom:160.087350px;}
.yde{bottom:160.091850px;}
.y17c{bottom:160.100700px;}
.yd{bottom:160.397850px;}
.y182{bottom:160.455450px;}
.y1d4{bottom:175.808850px;}
.y1fd{bottom:175.850850px;}
.y1a4{bottom:176.006850px;}
.y107{bottom:176.076900px;}
.y70{bottom:176.078700px;}
.y9d{bottom:176.078850px;}
.yd8{bottom:176.080800px;}
.y115{bottom:179.891850px;}
.ydd{bottom:179.896350px;}
.y28{bottom:180.212700px;}
.y1d3{bottom:196.814850px;}
.y1fc{bottom:196.856850px;}
.y1a3{bottom:197.012850px;}
.y106{bottom:197.076900px;}
.y6f{bottom:197.078700px;}
.y9c{bottom:197.078850px;}
.yd7{bottom:197.080800px;}
.yb3{bottom:199.144200px;}
.y114{bottom:199.696350px;}
.ydc{bottom:199.700850px;}
.y27{bottom:201.212700px;}
.y11b{bottom:203.227200px;}
.y3d{bottom:203.472300px;}
.y15f{bottom:211.440900px;}
.y133{bottom:211.441050px;}
.y1d2{bottom:217.820850px;}
.y1fb{bottom:217.862850px;}
.y1a2{bottom:218.018850px;}
.y105{bottom:218.076900px;}
.y6e{bottom:218.078700px;}
.y9b{bottom:218.078850px;}
.yd6{bottom:218.080800px;}
.yb2{bottom:218.948700px;}
.y113{bottom:219.500850px;}
.y3c{bottom:221.467800px;}
.y26{bottom:222.212700px;}
.y11a{bottom:223.031700px;}
.yb1{bottom:238.753200px;}
.y1d1{bottom:238.826850px;}
.y1fa{bottom:238.868850px;}
.y1a1{bottom:239.024850px;}
.y104{bottom:239.076900px;}
.y6d{bottom:239.078700px;}
.y9a{bottom:239.078850px;}
.yd5{bottom:239.080800px;}
.y3b{bottom:239.463300px;}
.y119{bottom:242.836200px;}
.y25{bottom:243.212700px;}
.ya9{bottom:253.441050px;}
.y3a{bottom:257.458800px;}
.yb0{bottom:258.557700px;}
.y1d0{bottom:259.832850px;}
.y1f9{bottom:259.874850px;}
.y1a0{bottom:260.030850px;}
.y103{bottom:260.076900px;}
.y6c{bottom:260.078700px;}
.y99{bottom:260.078850px;}
.yd4{bottom:260.080800px;}
.y24{bottom:264.212700px;}
.y39{bottom:275.454300px;}
.yaf{bottom:278.362200px;}
.y1cf{bottom:280.838850px;}
.y1f8{bottom:280.880850px;}
.y19f{bottom:281.036850px;}
.y102{bottom:281.076900px;}
.y6b{bottom:281.078700px;}
.y98{bottom:281.078850px;}
.y38{bottom:293.449800px;}
.y23{bottom:296.752350px;}
.y1ce{bottom:301.844850px;}
.y1f7{bottom:301.886850px;}
.y19e{bottom:302.042850px;}
.y101{bottom:302.076900px;}
.y6a{bottom:302.078700px;}
.y97{bottom:302.078850px;}
.yd3{bottom:302.080800px;}
.y37{bottom:311.445300px;}
.y1cd{bottom:322.850850px;}
.y1f6{bottom:322.892850px;}
.y19d{bottom:323.048850px;}
.y112{bottom:323.076900px;}
.y69{bottom:323.078700px;}
.y96{bottom:323.078850px;}
.yd2{bottom:323.080800px;}
.y36{bottom:329.440800px;}
.y10c{bottom:337.433850px;}
.y1cc{bottom:343.856850px;}
.y1f5{bottom:343.898850px;}
.y19c{bottom:344.054850px;}
.y100{bottom:344.076900px;}
.y68{bottom:344.078700px;}
.y95{bottom:344.078850px;}
.yd1{bottom:344.080800px;}
.y35{bottom:347.436300px;}
.y127{bottom:352.309350px;}
.y1cb{bottom:364.862850px;}
.y1f4{bottom:364.904850px;}
.y19b{bottom:365.060850px;}
.yff{bottom:365.076900px;}
.y67{bottom:365.078700px;}
.y94{bottom:365.078850px;}
.y34{bottom:365.431800px;}
.y126{bottom:372.113850px;}
.y22{bottom:373.023450px;}
.y33{bottom:383.427300px;}
.y1ca{bottom:385.868850px;}
.y1f3{bottom:385.910850px;}
.y19a{bottom:386.066850px;}
.yfe{bottom:386.076900px;}
.y66{bottom:386.078700px;}
.y93{bottom:386.078850px;}
.yd0{bottom:386.080800px;}
.y125{bottom:391.918350px;}
.y21{bottom:392.827950px;}
.y1c9{bottom:406.874850px;}
.y1f2{bottom:406.916850px;}
.y199{bottom:407.072850px;}
.y111{bottom:407.076900px;}
.y65{bottom:407.078700px;}
.y92{bottom:407.078850px;}
.ycf{bottom:407.080800px;}
.y124{bottom:411.722850px;}
.y32{bottom:418.432800px;}
.y1c8{bottom:427.880850px;}
.y1f1{bottom:427.922850px;}
.yfd{bottom:428.076900px;}
.y64{bottom:428.078700px;}
.y91{bottom:428.078850px;}
.y123{bottom:431.527350px;}
.y20{bottom:433.829400px;}
.y31{bottom:436.428300px;}
.y1c7{bottom:448.886850px;}
.y1f0{bottom:448.928850px;}
.y110{bottom:449.076900px;}
.y63{bottom:449.078700px;}
.y90{bottom:449.078850px;}
.y1f{bottom:453.633900px;}
.y30{bottom:454.423800px;}
.y15d{bottom:461.235300px;}
.y198{bottom:463.441050px;}
.y1c6{bottom:469.892850px;}
.y1ef{bottom:469.934850px;}
.y10f{bottom:470.076900px;}
.y62{bottom:470.078700px;}
.y8f{bottom:470.078850px;}
.yce{bottom:470.080800px;}
.y1e{bottom:473.438400px;}
.y15c{bottom:478.077300px;}
.y2f{bottom:489.429300px;}
.y1c5{bottom:490.898850px;}
.y1ee{bottom:490.940850px;}
.yfc{bottom:491.076900px;}
.y61{bottom:491.078700px;}
.y8e{bottom:491.078850px;}
.ycd{bottom:491.080800px;}
.y1d{bottom:493.242900px;}
.y15b{bottom:494.919300px;}
.y2e{bottom:507.429300px;}
.y15a{bottom:511.761300px;}
.y1c4{bottom:511.904850px;}
.y1ed{bottom:511.946850px;}
.yfb{bottom:512.076900px;}
.y60{bottom:512.078700px;}
.y8d{bottom:512.078850px;}
.ycc{bottom:512.080800px;}
.y1c{bottom:513.047400px;}
.y2d{bottom:525.429300px;}
.y12e{bottom:526.436400px;}
.y159{bottom:528.603300px;}
.y1b{bottom:532.851900px;}
.y1c3{bottom:532.910850px;}
.y1ec{bottom:532.952850px;}
.yfa{bottom:533.076900px;}
.y5f{bottom:533.078700px;}
.y8c{bottom:533.078850px;}
.ycb{bottom:533.080800px;}
.y197{bottom:538.529400px;}
.y2c{bottom:543.429300px;}
.y158{bottom:545.445300px;}
.y12d{bottom:547.440900px;}
.y1a{bottom:552.656400px;}
.y1c2{bottom:553.916850px;}
.y1eb{bottom:553.958850px;}
.yf9{bottom:554.076900px;}
.y5e{bottom:554.078700px;}
.y8b{bottom:554.078850px;}
.yca{bottom:554.080800px;}
.y122{bottom:559.574850px;}
.y157{bottom:562.287300px;}
.y15e{bottom:568.440900px;}
.y19{bottom:572.460900px;}
.y1c1{bottom:574.922850px;}
.y1ea{bottom:574.964850px;}
.y196{bottom:575.072850px;}
.yf8{bottom:575.076900px;}
.y5d{bottom:575.078700px;}
.y8a{bottom:575.078850px;}
.yc9{bottom:575.080800px;}
.y156{bottom:579.129300px;}
.y121{bottom:579.379350px;}
.y120{bottom:580.432950px;}
.y18{bottom:592.265400px;}
.y1c0{bottom:595.928850px;}
.y1e9{bottom:595.970850px;}
.y155{bottom:595.971300px;}
.y195{bottom:596.072850px;}
.yf7{bottom:596.076900px;}
.y5c{bottom:596.078700px;}
.y89{bottom:596.078850px;}
.yc8{bottom:596.080800px;}
.y11f{bottom:600.237450px;}
.y17{bottom:612.069900px;}
.y154{bottom:612.813300px;}
.y1bf{bottom:616.934850px;}
.y1e8{bottom:616.976850px;}
.y194{bottom:617.072850px;}
.yf6{bottom:617.076900px;}
.y5b{bottom:617.078700px;}
.y88{bottom:617.078850px;}
.yc7{bottom:617.080800px;}
.y153{bottom:629.655300px;}
.y16{bottom:631.874400px;}
.y1be{bottom:637.940850px;}
.y1e7{bottom:637.982850px;}
.y193{bottom:638.072850px;}
.yf5{bottom:638.076900px;}
.y5a{bottom:638.078700px;}
.y87{bottom:638.078850px;}
.yc6{bottom:638.080800px;}
.y178{bottom:641.568150px;}
.yae{bottom:641.811000px;}
.y17b{bottom:643.802250px;}
.y187{bottom:645.507000px;}
.y181{bottom:645.595500px;}
.y152{bottom:646.497300px;}
.y15{bottom:651.678900px;}
.y135{bottom:652.441050px;}
.y1bd{bottom:658.946850px;}
.y1e6{bottom:658.988850px;}
.y192{bottom:659.072850px;}
.yf4{bottom:659.076900px;}
.y59{bottom:659.078700px;}
.y86{bottom:659.078850px;}
.yc5{bottom:659.080800px;}
.ya1{bottom:659.083800px;}
.y177{bottom:661.372650px;}
.y151{bottom:663.339300px;}
.y17a{bottom:663.606750px;}
.y186{bottom:665.311500px;}
.y180{bottom:665.400000px;}
.y11e{bottom:667.245300px;}
.y14{bottom:671.483400px;}
.y1bc{bottom:679.952850px;}
.y1e5{bottom:679.994850px;}
.yf3{bottom:680.076900px;}
.y58{bottom:680.078700px;}
.y85{bottom:680.078850px;}
.yc4{bottom:680.080800px;}
.y150{bottom:680.181300px;}
.y131{bottom:680.210700px;}
.y176{bottom:681.177150px;}
.y179{bottom:683.411250px;}
.y185{bottom:685.116000px;}
.y17f{bottom:685.204500px;}
.y11d{bottom:687.049800px;}
.y13{bottom:691.287900px;}
.y14f{bottom:697.023300px;}
.y130{bottom:700.015200px;}
.y1bb{bottom:700.958850px;}
.y1e4{bottom:701.000850px;}
.yf2{bottom:701.076900px;}
.y57{bottom:701.078700px;}
.y84{bottom:701.078850px;}
.yc3{bottom:701.080800px;}
.y191{bottom:706.529400px;}
.y11c{bottom:706.854300px;}
.y14e{bottom:713.865300px;}
.y132{bottom:715.433850px;}
.y12f{bottom:719.819700px;}
.y1ba{bottom:721.964850px;}
.y1e3{bottom:722.006850px;}
.yf1{bottom:722.076900px;}
.y56{bottom:722.078700px;}
.y83{bottom:722.078850px;}
.yc2{bottom:722.080800px;}
.y12{bottom:722.385300px;}
.y14d{bottom:730.707300px;}
.y12c{bottom:731.019750px;}
.y173{bottom:736.441050px;}
.y1b9{bottom:742.970850px;}
.y1e2{bottom:743.012850px;}
.y190{bottom:743.060850px;}
.yf0{bottom:743.076900px;}
.y55{bottom:743.078700px;}
.y82{bottom:743.078850px;}
.yc1{bottom:743.080800px;}
.y129{bottom:745.297200px;}
.y14c{bottom:747.549300px;}
.y12b{bottom:750.824250px;}
.y1b8{bottom:763.976850px;}
.y1e1{bottom:764.018850px;}
.y18f{bottom:764.066850px;}
.yef{bottom:764.076900px;}
.y54{bottom:764.078700px;}
.y81{bottom:764.078850px;}
.yc0{bottom:764.080800px;}
.y14b{bottom:764.391300px;}
.y128{bottom:765.101700px;}
.y12a{bottom:770.628750px;}
.y10e{bottom:778.431900px;}
.y14a{bottom:781.233300px;}
.y1b7{bottom:784.982850px;}
.y1e0{bottom:785.024850px;}
.y18e{bottom:785.072850px;}
.yee{bottom:785.076900px;}
.y53{bottom:785.078700px;}
.ya7{bottom:785.078850px;}
.ybf{bottom:785.080800px;}
.y149{bottom:798.075300px;}
.y80{bottom:799.441050px;}
.yc{bottom:801.666900px;}
.y1b6{bottom:805.988850px;}
.y1df{bottom:806.030850px;}
.yed{bottom:806.076900px;}
.y52{bottom:806.078700px;}
.ya6{bottom:806.078850px;}
.y148{bottom:814.917300px;}
.yb{bottom:819.666900px;}
.yb4{bottom:820.433850px;}
.y1b5{bottom:826.994850px;}
.y1de{bottom:827.036850px;}
.yec{bottom:827.076900px;}
.y51{bottom:827.078700px;}
.ya5{bottom:827.078850px;}
.ybe{bottom:827.080800px;}
.y147{bottom:831.759300px;}
.y18d{bottom:832.529250px;}
.y168{bottom:834.441000px;}
.ya{bottom:837.666900px;}
.y1b4{bottom:848.000850px;}
.y1dd{bottom:848.042850px;}
.yeb{bottom:848.076900px;}
.y50{bottom:848.078700px;}
.y7f{bottom:848.078850px;}
.ybd{bottom:848.080800px;}
.y146{bottom:848.601300px;}
.y167{bottom:851.283000px;}
.y9{bottom:855.666900px;}
.y145{bottom:865.443300px;}
.y166{bottom:868.125000px;}
.y1b3{bottom:869.006850px;}
.y1dc{bottom:869.048850px;}
.yea{bottom:869.076900px;}
.y4f{bottom:869.078700px;}
.y7e{bottom:869.078850px;}
.y8{bottom:873.666900px;}
.y144{bottom:882.285300px;}
.ya8{bottom:883.441050px;}
.y165{bottom:885.268800px;}
.y163{bottom:885.270300px;}
.y1b2{bottom:890.012850px;}
.y1db{bottom:890.054850px;}
.ye9{bottom:890.076900px;}
.y4e{bottom:890.078700px;}
.y7d{bottom:890.078850px;}
.ybc{bottom:890.080800px;}
.y7{bottom:891.666900px;}
.y162{bottom:892.021800px;}
.y18c{bottom:895.529250px;}
.y164{bottom:898.771800px;}
.y143{bottom:899.127300px;}
.y1b1{bottom:911.018850px;}
.y1da{bottom:911.060850px;}
.ye8{bottom:911.076900px;}
.y4d{bottom:911.078700px;}
.y7c{bottom:911.078850px;}
.y142{bottom:915.969300px;}
.y134{bottom:925.441050px;}
.y6{bottom:926.674800px;}
.y161{bottom:928.124100px;}
.y1b0{bottom:932.024850px;}
.y1d9{bottom:932.066850px;}
.ye7{bottom:932.076900px;}
.y4c{bottom:932.078700px;}
.y7b{bottom:932.078850px;}
.y141{bottom:932.811300px;}
.y5{bottom:946.474800px;}
.y160{bottom:947.928600px;}
.y140{bottom:949.653300px;}
.y1af{bottom:953.030850px;}
.y1d8{bottom:953.072850px;}
.ye6{bottom:953.076900px;}
.y4b{bottom:953.078700px;}
.y7a{bottom:953.078850px;}
.ybb{bottom:953.080800px;}
.y18b{bottom:958.529250px;}
.y13f{bottom:966.495300px;}
.y1ae{bottom:974.036850px;}
.y10d{bottom:974.076900px;}
.y4a{bottom:974.078700px;}
.y79{bottom:974.078850px;}
.yba{bottom:974.080800px;}
.y4{bottom:983.288550px;}
.y13e{bottom:983.337300px;}
.y1ad{bottom:995.042850px;}
.ye5{bottom:995.076900px;}
.y49{bottom:995.078700px;}
.y78{bottom:995.078850px;}
.yb9{bottom:995.080800px;}
.y13d{bottom:1000.179300px;}
.y172{bottom:1005.795150px;}
.y1ac{bottom:1016.048850px;}
.ye4{bottom:1016.076900px;}
.y48{bottom:1016.078700px;}
.ya4{bottom:1016.078850px;}
.yb8{bottom:1016.080800px;}
.y3{bottom:1016.285550px;}
.y13b{bottom:1017.022950px;}
.y18a{bottom:1021.529250px;}
.y171{bottom:1022.637150px;}
.y13a{bottom:1023.775950px;}
.y10b{bottom:1030.433850px;}
.y77{bottom:1030.441050px;}
.y13c{bottom:1030.525950px;}
.y1ab{bottom:1037.054850px;}
.ye3{bottom:1037.076900px;}
.y47{bottom:1037.078700px;}
.ya3{bottom:1037.078850px;}
.yb7{bottom:1037.080800px;}
.y170{bottom:1039.479150px;}
.y2{bottom:1049.282550px;}
.y16f{bottom:1056.622950px;}
.y16c{bottom:1056.624450px;}
.y1aa{bottom:1058.060850px;}
.y46{bottom:1058.078700px;}
.ya2{bottom:1058.078850px;}
.y139{bottom:1059.869400px;}
.y16b{bottom:1063.375950px;}
.y16e{bottom:1070.125950px;}
.y16d{bottom:1070.127450px;}
.y1a9{bottom:1079.066850px;}
.ye2{bottom:1079.076900px;}
.y45{bottom:1079.078700px;}
.y76{bottom:1079.078850px;}
.yb6{bottom:1079.080800px;}
.y138{bottom:1079.673900px;}
.y189{bottom:1084.192950px;}
.y16a{bottom:1099.478250px;}
.y137{bottom:1099.478400px;}
.y1a8{bottom:1100.072850px;}
.y44{bottom:1100.078700px;}
.y75{bottom:1100.078850px;}
.y11{bottom:1109.815500px;}
.yb5{bottom:1112.695800px;}
.y188{bottom:1113.696750px;}
.yaa{bottom:1113.696900px;}
.ye1{bottom:1114.821900px;}
.y169{bottom:1119.282750px;}
.y136{bottom:1119.282900px;}
.y43{bottom:1121.078700px;}
.y74{bottom:1121.078850px;}
.yad{bottom:1123.325850px;}
.y3f{bottom:1159.189500px;}
.y3e{bottom:1178.689500px;}
.y42{bottom:1178.692050px;}
.h15{height:33.448242px;}
.h1a{height:33.491725px;}
.h1c{height:33.492325px;}
.h1b{height:33.497725px;}
.h14{height:33.498325px;}
.h16{height:37.857422px;}
.h18{height:37.938380px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h17{height:38.534180px;}
.h6{height:39.044531px;}
.h7{height:43.004883px;}
.hf{height:43.321289px;}
.h10{height:43.382812px;}
.h8{height:47.343750px;}
.h9{height:48.673828px;}
.he{height:48.805664px;}
.ha{height:49.543945px;}
.h1d{height:49.567945px;}
.h11{height:52.078125px;}
.hd{height:54.082031px;}
.hc{height:55.048828px;}
.hb{height:56.812500px;}
.h4{height:59.490234px;}
.h13{height:60.448242px;}
.h19{height:60.454242px;}
.h12{height:60.553711px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.987600px;}
.xb{left:107.063850px;}
.xd{left:108.289650px;}
.x17{left:112.251900px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.xf{left:180.228000px;}
.x1c{left:254.601600px;}
.x18{left:257.986050px;}
.x5{left:300.189000px;}
.xc{left:317.199000px;}
.xe{left:334.209000px;}
.x4{left:396.050700px;}
.x1d{left:436.944600px;}
.x10{left:444.209100px;}
.x11{left:519.447450px;}
.x1e{left:537.282600px;}
.x12{left:554.758950px;}
.x1f{left:586.664100px;}
.x19{left:607.919550px;}
.x13{left:629.631300px;}
.xa{left:648.913650px;}
.x14{left:663.189300px;}
.x9{left:669.721650px;}
.x20{left:674.271900px;}
.x1a{left:702.644400px;}
.x21{left:733.344900px;}
.x15{left:735.440850px;}
.x1b{left:746.103900px;}
.x16{left:763.108350px;}
.x1{left:801.157500px;}
@media print{
.v5{vertical-align:-12.432000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.432000pt;}
.v6{vertical-align:16.133333pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v4{vertical-align:24.000000pt;}
.ls34{letter-spacing:-11.093333pt;}
.ls32{letter-spacing:-10.506667pt;}
.ls41{letter-spacing:-7.392000pt;}
.ls49{letter-spacing:-7.344000pt;}
.ls10{letter-spacing:-6.432000pt;}
.ls53{letter-spacing:-6.240000pt;}
.ls4b{letter-spacing:-6.000000pt;}
.ls40{letter-spacing:-3.840000pt;}
.ls48{letter-spacing:-3.792000pt;}
.ls1a{letter-spacing:-3.680000pt;}
.ls3f{letter-spacing:-3.413333pt;}
.ls19{letter-spacing:-3.306667pt;}
.lsf{letter-spacing:-2.880000pt;}
.ls52{letter-spacing:-2.688000pt;}
.ls4a{letter-spacing:-2.448000pt;}
.ls18{letter-spacing:-1.706667pt;}
.lsa{letter-spacing:-1.066667pt;}
.ls17{letter-spacing:-0.960000pt;}
.ls47{letter-spacing:-0.912000pt;}
.ls14{letter-spacing:-0.906667pt;}
.ls58{letter-spacing:-0.864000pt;}
.lsb{letter-spacing:-0.853333pt;}
.ls7{letter-spacing:-0.816000pt;}
.ls27{letter-spacing:-0.746667pt;}
.ls5d{letter-spacing:-0.672000pt;}
.ls59{letter-spacing:-0.624000pt;}
.ls4{letter-spacing:-0.614400pt;}
.ls33{letter-spacing:-0.586667pt;}
.ls5e{letter-spacing:-0.576000pt;}
.ls26{letter-spacing:-0.533333pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.373333pt;}
.ls2{letter-spacing:-0.362667pt;}
.ls5b{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls1b{letter-spacing:-0.213333pt;}
.ls3c{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.160000pt;}
.ls1c{letter-spacing:-0.106667pt;}
.ls3{letter-spacing:-0.090667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.096000pt;}
.ls4d{letter-spacing:0.120000pt;}
.ls4c{letter-spacing:0.192000pt;}
.ls60{letter-spacing:0.360000pt;}
.ls2f{letter-spacing:0.373333pt;}
.ls5f{letter-spacing:0.384000pt;}
.ls31{letter-spacing:0.403200pt;}
.ls1d{letter-spacing:0.426667pt;}
.ls42{letter-spacing:0.432000pt;}
.ls57{letter-spacing:0.480000pt;}
.ls5c{letter-spacing:0.528000pt;}
.ls1f{letter-spacing:0.586667pt;}
.ls36{letter-spacing:0.640000pt;}
.ls5a{letter-spacing:0.672000pt;}
.ls20{letter-spacing:0.693333pt;}
.ls24{letter-spacing:0.746667pt;}
.ls15{letter-spacing:0.800000pt;}
.ls29{letter-spacing:0.816000pt;}
.ls35{letter-spacing:0.826667pt;}
.ls11{letter-spacing:0.853333pt;}
.ls25{letter-spacing:0.906667pt;}
.ls56{letter-spacing:0.912000pt;}
.lsd{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:0.981333pt;}
.lsc{letter-spacing:1.066667pt;}
.ls28{letter-spacing:2.064000pt;}
.ls12{letter-spacing:2.293333pt;}
.ls21{letter-spacing:2.400000pt;}
.ls30{letter-spacing:2.448000pt;}
.ls44{letter-spacing:2.976000pt;}
.ls43{letter-spacing:3.000000pt;}
.ls46{letter-spacing:3.408000pt;}
.ls45{letter-spacing:3.456000pt;}
.ls2a{letter-spacing:3.888000pt;}
.lse{letter-spacing:3.936000pt;}
.ls23{letter-spacing:3.984000pt;}
.ls50{letter-spacing:4.368000pt;}
.ls4f{letter-spacing:4.416000pt;}
.ls2b{letter-spacing:4.944000pt;}
.ls51{letter-spacing:5.040000pt;}
.ls22{letter-spacing:5.136000pt;}
.ls2e{letter-spacing:5.712000pt;}
.ls2d{letter-spacing:5.736000pt;}
.ls2c{letter-spacing:7.786667pt;}
.ls61{letter-spacing:11.760000pt;}
.ls54{letter-spacing:12.014400pt;}
.ls55{letter-spacing:12.048000pt;}
.ls0{letter-spacing:38.383968pt;}
.ls37{letter-spacing:56.901824pt;}
.ls3b{letter-spacing:280.432491pt;}
.ls3a{letter-spacing:361.610667pt;}
.ls39{letter-spacing:372.101333pt;}
.ls38{letter-spacing:381.173333pt;}
.ls3e{letter-spacing:432.581333pt;}
.ls3d{letter-spacing:446.208000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws49{word-spacing:-14.608000pt;}
.ws55{word-spacing:-14.549333pt;}
.ws50{word-spacing:-14.346667pt;}
.ws57{word-spacing:-14.240000pt;}
.ws103{word-spacing:-14.186667pt;}
.ws64{word-spacing:-14.133333pt;}
.ws6e{word-spacing:-14.080000pt;}
.ws58{word-spacing:-14.026667pt;}
.wsf7{word-spacing:-13.973333pt;}
.ws148{word-spacing:-13.920000pt;}
.ws13c{word-spacing:-13.866667pt;}
.wsd8{word-spacing:-13.706667pt;}
.ws126{word-spacing:-13.653333pt;}
.ws1a7{word-spacing:-13.546667pt;}
.wsd7{word-spacing:-13.493333pt;}
.ws3{word-spacing:-13.280000pt;}
.ws69{word-spacing:-13.226667pt;}
.ws56{word-spacing:-13.173333pt;}
.ws77{word-spacing:-13.120000pt;}
.ws22{word-spacing:-13.066667pt;}
.ws113{word-spacing:-13.013333pt;}
.wsa8{word-spacing:-12.960000pt;}
.ws114{word-spacing:-12.906667pt;}
.wsa7{word-spacing:-12.853333pt;}
.ws35{word-spacing:-12.800000pt;}
.ws3c{word-spacing:-12.693333pt;}
.wsa6{word-spacing:-12.586667pt;}
.ws10e{word-spacing:-12.533333pt;}
.ws1b0{word-spacing:-12.432000pt;}
.ws18f{word-spacing:-12.384000pt;}
.ws11e{word-spacing:-12.373333pt;}
.ws185{word-spacing:-12.320000pt;}
.ws1de{word-spacing:-12.264000pt;}
.ws192{word-spacing:-12.192000pt;}
.ws14e{word-spacing:-12.160000pt;}
.ws19a{word-spacing:-12.144000pt;}
.ws142{word-spacing:-12.000000pt;}
.ws5d{word-spacing:-11.952000pt;}
.ws1a9{word-spacing:-11.904000pt;}
.ws138{word-spacing:-11.786667pt;}
.wsfe{word-spacing:-11.760000pt;}
.ws80{word-spacing:-11.573333pt;}
.ws1da{word-spacing:-11.568000pt;}
.ws1c9{word-spacing:-11.424000pt;}
.ws4{word-spacing:-11.376000pt;}
.ws18b{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.992000pt;}
.ws1c2{word-spacing:-10.896000pt;}
.ws18d{word-spacing:-10.848000pt;}
.ws9{word-spacing:-10.800000pt;}
.ws7{word-spacing:-10.176000pt;}
.ws8{word-spacing:-9.984000pt;}
.ws9a{word-spacing:-9.973333pt;}
.wsa{word-spacing:-9.770667pt;}
.ws1{word-spacing:-9.685333pt;}
.ws21{word-spacing:-9.600000pt;}
.ws9b{word-spacing:-9.546667pt;}
.ws190{word-spacing:-9.504000pt;}
.ws14f{word-spacing:-9.296000pt;}
.ws19b{word-spacing:-9.264000pt;}
.ws5c{word-spacing:-9.072000pt;}
.ws2{word-spacing:-8.793600pt;}
.ws133{word-spacing:-8.586667pt;}
.ws0{word-spacing:-8.549333pt;}
.ws18c{word-spacing:-8.160000pt;}
.ws186{word-spacing:-8.112000pt;}
.ws136{word-spacing:-7.840000pt;}
.ws2e{word-spacing:-7.711147pt;}
.ws17b{word-spacing:-7.306667pt;}
.ws1c8{word-spacing:-6.940032pt;}
.ws191{word-spacing:-5.952000pt;}
.ws99{word-spacing:-5.866667pt;}
.ws13b{word-spacing:-5.760000pt;}
.ws19c{word-spacing:-5.712000pt;}
.ws135{word-spacing:-5.546667pt;}
.ws5e{word-spacing:-5.520000pt;}
.ws109{word-spacing:-5.066667pt;}
.ws141{word-spacing:-4.853333pt;}
.ws140{word-spacing:-4.800000pt;}
.ws120{word-spacing:-4.746667pt;}
.ws11f{word-spacing:-4.693333pt;}
.ws144{word-spacing:-4.640000pt;}
.ws18e{word-spacing:-4.608000pt;}
.ws145{word-spacing:-4.586667pt;}
.ws187{word-spacing:-4.560000pt;}
.ws139{word-spacing:-4.373333pt;}
.ws13d{word-spacing:-4.106667pt;}
.ws182{word-spacing:-3.840000pt;}
.ws9f{word-spacing:-3.626667pt;}
.ws9e{word-spacing:-3.573333pt;}
.ws43{word-spacing:-3.306667pt;}
.ws44{word-spacing:-3.253333pt;}
.wsef{word-spacing:-3.093333pt;}
.ws1c3{word-spacing:-3.072000pt;}
.ws184{word-spacing:-3.024000pt;}
.wsb3{word-spacing:-2.933333pt;}
.wsb4{word-spacing:-2.880000pt;}
.ws8d{word-spacing:-2.826667pt;}
.ws28{word-spacing:-2.720000pt;}
.ws193{word-spacing:-2.688000pt;}
.ws194{word-spacing:-2.640000pt;}
.ws7f{word-spacing:-2.613333pt;}
.ws38{word-spacing:-2.560000pt;}
.ws17c{word-spacing:-2.544000pt;}
.ws83{word-spacing:-2.506667pt;}
.wseb{word-spacing:-2.453333pt;}
.ws188{word-spacing:-2.448000pt;}
.ws36{word-spacing:-2.400000pt;}
.ws23{word-spacing:-2.346667pt;}
.ws1a4{word-spacing:-2.304000pt;}
.wsac{word-spacing:-2.293333pt;}
.wsa0{word-spacing:-2.240000pt;}
.ws8a{word-spacing:-2.186667pt;}
.ws29{word-spacing:-2.133333pt;}
.ws5f{word-spacing:-2.112000pt;}
.ws60{word-spacing:-2.064000pt;}
.wsd0{word-spacing:-2.026667pt;}
.ws13a{word-spacing:-1.920000pt;}
.ws12c{word-spacing:-1.866667pt;}
.ws1bf{word-spacing:-1.824000pt;}
.ws6b{word-spacing:-1.813333pt;}
.ws10{word-spacing:-1.776000pt;}
.wsf2{word-spacing:-1.760000pt;}
.ws119{word-spacing:-1.728000pt;}
.ws8f{word-spacing:-1.706667pt;}
.ws18a{word-spacing:-1.680000pt;}
.ws1a8{word-spacing:-1.653333pt;}
.ws189{word-spacing:-1.632000pt;}
.ws32{word-spacing:-1.600000pt;}
.ws37{word-spacing:-1.546667pt;}
.ws1b{word-spacing:-1.536000pt;}
.wsaf{word-spacing:-1.493333pt;}
.ws46{word-spacing:-1.440000pt;}
.ws1c5{word-spacing:-1.392000pt;}
.wsf5{word-spacing:-1.386667pt;}
.ws14d{word-spacing:-1.333333pt;}
.ws84{word-spacing:-1.280000pt;}
.wsed{word-spacing:-1.226667pt;}
.ws15{word-spacing:-1.200000pt;}
.ws147{word-spacing:-1.173333pt;}
.wsbd{word-spacing:-1.120000pt;}
.ws1dc{word-spacing:-1.104000pt;}
.ws53{word-spacing:-1.066667pt;}
.ws1a5{word-spacing:-1.056000pt;}
.ws78{word-spacing:-1.013333pt;}
.ws2d{word-spacing:-0.960000pt;}
.wsaa{word-spacing:-0.906667pt;}
.ws1d6{word-spacing:-0.864000pt;}
.ws67{word-spacing:-0.853333pt;}
.ws1ce{word-spacing:-0.816000pt;}
.ws70{word-spacing:-0.800000pt;}
.ws61{word-spacing:-0.768000pt;}
.ws2c{word-spacing:-0.746667pt;}
.ws1b2{word-spacing:-0.720000pt;}
.wsf8{word-spacing:-0.693333pt;}
.ws123{word-spacing:-0.672000pt;}
.ws149{word-spacing:-0.640000pt;}
.ws1e0{word-spacing:-0.624000pt;}
.ws7c{word-spacing:-0.586667pt;}
.wsae{word-spacing:-0.533333pt;}
.ws1c{word-spacing:-0.528000pt;}
.wscf{word-spacing:-0.480000pt;}
.ws198{word-spacing:-0.432000pt;}
.wsdb{word-spacing:-0.426667pt;}
.ws1a6{word-spacing:-0.384000pt;}
.ws98{word-spacing:-0.373333pt;}
.wsa3{word-spacing:-0.320000pt;}
.ws1a0{word-spacing:-0.288000pt;}
.wsca{word-spacing:-0.266667pt;}
.ws129{word-spacing:-0.240000pt;}
.ws89{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.192000pt;}
.ws41{word-spacing:-0.160000pt;}
.ws62{word-spacing:-0.144000pt;}
.wsf6{word-spacing:-0.106667pt;}
.ws1cc{word-spacing:-0.096000pt;}
.ws115{word-spacing:-0.053333pt;}
.ws19d{word-spacing:-0.048000pt;}
.ws17d{word-spacing:-0.037333pt;}
.wsb{word-spacing:0.000000pt;}
.ws27{word-spacing:0.053333pt;}
.wsd{word-spacing:0.090667pt;}
.ws1c6{word-spacing:0.096000pt;}
.wsad{word-spacing:0.106667pt;}
.ws75{word-spacing:0.160000pt;}
.ws1d{word-spacing:0.192000pt;}
.ws2a{word-spacing:0.213333pt;}
.ws34{word-spacing:0.266667pt;}
.ws1e{word-spacing:0.320000pt;}
.ws1cb{word-spacing:0.336000pt;}
.wsc{word-spacing:0.362667pt;}
.ws39{word-spacing:0.373333pt;}
.ws12{word-spacing:0.384000pt;}
.wsb7{word-spacing:0.426667pt;}
.ws134{word-spacing:0.432000pt;}
.ws65{word-spacing:0.480000pt;}
.ws1d9{word-spacing:0.528000pt;}
.ws10c{word-spacing:0.533333pt;}
.ws1db{word-spacing:0.576000pt;}
.ws137{word-spacing:0.586667pt;}
.wsf{word-spacing:0.614400pt;}
.ws1af{word-spacing:0.624000pt;}
.ws5b{word-spacing:0.640000pt;}
.ws1d0{word-spacing:0.672000pt;}
.ws76{word-spacing:0.693333pt;}
.ws1b5{word-spacing:0.720000pt;}
.ws30{word-spacing:0.746667pt;}
.ws118{word-spacing:0.816000pt;}
.ws45{word-spacing:0.853333pt;}
.ws1aa{word-spacing:0.864000pt;}
.ws6c{word-spacing:0.906667pt;}
.ws195{word-spacing:0.912000pt;}
.ws7a{word-spacing:0.960000pt;}
.ws1b7{word-spacing:1.008000pt;}
.wsd1{word-spacing:1.013333pt;}
.ws1df{word-spacing:1.056000pt;}
.ws3f{word-spacing:1.066667pt;}
.ws1c1{word-spacing:1.104000pt;}
.ws13f{word-spacing:1.120000pt;}
.ws31{word-spacing:1.173333pt;}
.ws1bc{word-spacing:1.200000pt;}
.ws94{word-spacing:1.226667pt;}
.ws1e1{word-spacing:1.248000pt;}
.wsc8{word-spacing:1.280000pt;}
.wsb8{word-spacing:1.333333pt;}
.ws125{word-spacing:1.344000pt;}
.ws2f{word-spacing:1.386667pt;}
.wsc2{word-spacing:1.440000pt;}
.ws66{word-spacing:1.493333pt;}
.ws12b{word-spacing:1.546667pt;}
.ws54{word-spacing:1.584000pt;}
.wsc9{word-spacing:1.600000pt;}
.ws1cf{word-spacing:1.632000pt;}
.wsce{word-spacing:1.653333pt;}
.wse6{word-spacing:1.706667pt;}
.ws16{word-spacing:1.728000pt;}
.ws2b{word-spacing:1.760000pt;}
.ws1d7{word-spacing:1.776000pt;}
.wsd5{word-spacing:1.813333pt;}
.ws1ae{word-spacing:1.824000pt;}
.wsda{word-spacing:1.866667pt;}
.ws128{word-spacing:1.872000pt;}
.wsc4{word-spacing:1.920000pt;}
.wse3{word-spacing:1.973333pt;}
.wsb6{word-spacing:2.026667pt;}
.ws13{word-spacing:2.064000pt;}
.ws3d{word-spacing:2.080000pt;}
.ws1c7{word-spacing:2.112000pt;}
.wscd{word-spacing:2.133333pt;}
.wsba{word-spacing:2.186667pt;}
.wsd9{word-spacing:2.240000pt;}
.ws143{word-spacing:2.293333pt;}
.ws1e5{word-spacing:2.352000pt;}
.ws82{word-spacing:2.400000pt;}
.ws88{word-spacing:2.453333pt;}
.ws19{word-spacing:2.496000pt;}
.wsa1{word-spacing:2.506667pt;}
.ws197{word-spacing:2.544000pt;}
.wse7{word-spacing:2.560000pt;}
.ws196{word-spacing:2.592000pt;}
.ws51{word-spacing:2.613333pt;}
.ws127{word-spacing:2.666667pt;}
.ws124{word-spacing:2.736000pt;}
.ws40{word-spacing:2.773333pt;}
.ws1b8{word-spacing:2.784000pt;}
.ws5a{word-spacing:2.826667pt;}
.ws6d{word-spacing:2.880000pt;}
.wsc3{word-spacing:2.933333pt;}
.ws199{word-spacing:2.976000pt;}
.wscc{word-spacing:2.986667pt;}
.ws52{word-spacing:3.040000pt;}
.ws4f{word-spacing:3.093333pt;}
.ws12a{word-spacing:3.120000pt;}
.wse9{word-spacing:3.146667pt;}
.ws13e{word-spacing:3.200000pt;}
.ws79{word-spacing:3.253333pt;}
.wsab{word-spacing:3.306667pt;}
.ws33{word-spacing:3.360000pt;}
.ws42{word-spacing:3.413333pt;}
.wsbc{word-spacing:3.466667pt;}
.ws47{word-spacing:3.520000pt;}
.wsb1{word-spacing:3.573333pt;}
.ws72{word-spacing:3.626667pt;}
.ws1d3{word-spacing:3.648000pt;}
.ws104{word-spacing:3.680000pt;}
.ws4c{word-spacing:3.733333pt;}
.ws1ca{word-spacing:3.744000pt;}
.ws4b{word-spacing:3.786667pt;}
.ws20{word-spacing:3.840000pt;}
.ws11a{word-spacing:3.888000pt;}
.ws4e{word-spacing:3.893333pt;}
.ws63{word-spacing:3.936000pt;}
.ws4d{word-spacing:3.946667pt;}
.ws100{word-spacing:3.984000pt;}
.wsbb{word-spacing:4.000000pt;}
.ws14{word-spacing:4.032000pt;}
.ws4a{word-spacing:4.053333pt;}
.ws1e3{word-spacing:4.080000pt;}
.ws91{word-spacing:4.106667pt;}
.ws1b1{word-spacing:4.128000pt;}
.ws19e{word-spacing:4.176000pt;}
.ws14c{word-spacing:4.213333pt;}
.ws1b4{word-spacing:4.224000pt;}
.ws90{word-spacing:4.266667pt;}
.wsa5{word-spacing:4.320000pt;}
.ws1a{word-spacing:4.368000pt;}
.wsa4{word-spacing:4.373333pt;}
.ws11{word-spacing:4.416000pt;}
.ws12f{word-spacing:4.426667pt;}
.wsec{word-spacing:4.480000pt;}
.wsb5{word-spacing:4.586667pt;}
.wsdd{word-spacing:4.640000pt;}
.wsc1{word-spacing:4.693333pt;}
.wsc0{word-spacing:4.746667pt;}
.wse8{word-spacing:4.800000pt;}
.ws7e{word-spacing:4.853333pt;}
.ws11b{word-spacing:4.896000pt;}
.ws81{word-spacing:4.906667pt;}
.ws1d8{word-spacing:4.944000pt;}
.ws68{word-spacing:4.960000pt;}
.ws1ba{word-spacing:4.992000pt;}
.ws48{word-spacing:5.013333pt;}
.ws19f{word-spacing:5.040000pt;}
.ws1f{word-spacing:5.066667pt;}
.wsff{word-spacing:5.088000pt;}
.wsd4{word-spacing:5.120000pt;}
.wse2{word-spacing:5.173333pt;}
.wse1{word-spacing:5.226667pt;}
.ws73{word-spacing:5.280000pt;}
.wsf1{word-spacing:5.333333pt;}
.ws1ad{word-spacing:5.376000pt;}
.wsb2{word-spacing:5.386667pt;}
.ws25{word-spacing:5.440000pt;}
.ws131{word-spacing:5.493333pt;}
.ws17{word-spacing:5.520000pt;}
.wscb{word-spacing:5.546667pt;}
.ws18{word-spacing:5.568000pt;}
.ws3a{word-spacing:5.600000pt;}
.ws3b{word-spacing:5.653333pt;}
.wsfd{word-spacing:5.760000pt;}
.ws122{word-spacing:5.808000pt;}
.ws95{word-spacing:5.866667pt;}
.wsd2{word-spacing:5.920000pt;}
.wsd3{word-spacing:5.973333pt;}
.ws1cd{word-spacing:6.000000pt;}
.ws8e{word-spacing:6.080000pt;}
.ws1bd{word-spacing:6.096000pt;}
.ws12e{word-spacing:6.133333pt;}
.ws1be{word-spacing:6.144000pt;}
.ws108{word-spacing:6.186667pt;}
.wsa9{word-spacing:6.240000pt;}
.wsf3{word-spacing:6.293333pt;}
.wsa2{word-spacing:6.400000pt;}
.wsfb{word-spacing:6.506667pt;}
.ws1b6{word-spacing:6.528000pt;}
.wsf0{word-spacing:6.613333pt;}
.ws12d{word-spacing:6.666667pt;}
.ws24{word-spacing:6.720000pt;}
.ws11d{word-spacing:6.816000pt;}
.wsbe{word-spacing:6.826667pt;}
.ws11c{word-spacing:6.864000pt;}
.wsbf{word-spacing:6.880000pt;}
.ws59{word-spacing:7.040000pt;}
.ws1c0{word-spacing:7.056000pt;}
.wsee{word-spacing:7.146667pt;}
.ws74{word-spacing:7.200000pt;}
.ws1b9{word-spacing:7.248000pt;}
.wsb9{word-spacing:7.253333pt;}
.ws1ac{word-spacing:7.392000pt;}
.wsb0{word-spacing:7.413333pt;}
.ws130{word-spacing:7.466667pt;}
.ws96{word-spacing:7.520000pt;}
.ws1b3{word-spacing:7.536000pt;}
.ws87{word-spacing:7.680000pt;}
.ws86{word-spacing:7.733333pt;}
.wsd6{word-spacing:7.840000pt;}
.ws132{word-spacing:7.893333pt;}
.ws121{word-spacing:7.946667pt;}
.wse5{word-spacing:8.000000pt;}
.wsf9{word-spacing:8.053333pt;}
.wse4{word-spacing:8.106667pt;}
.wsea{word-spacing:8.160000pt;}
.wsc6{word-spacing:8.213333pt;}
.wsc7{word-spacing:8.266667pt;}
.ws85{word-spacing:8.373333pt;}
.ws101{word-spacing:8.426667pt;}
.wsf4{word-spacing:8.480000pt;}
.ws1ab{word-spacing:8.496000pt;}
.ws1dd{word-spacing:8.544000pt;}
.ws146{word-spacing:8.640000pt;}
.wsde{word-spacing:8.906667pt;}
.ws26{word-spacing:9.333333pt;}
.ws183{word-spacing:9.493333pt;}
.wsfc{word-spacing:9.600000pt;}
.wsc5{word-spacing:9.706667pt;}
.ws102{word-spacing:9.813333pt;}
.ws10d{word-spacing:9.866667pt;}
.ws106{word-spacing:9.973333pt;}
.ws105{word-spacing:10.026667pt;}
.ws111{word-spacing:10.453333pt;}
.wsdf{word-spacing:10.560000pt;}
.wse0{word-spacing:10.666667pt;}
.ws112{word-spacing:10.933333pt;}
.ws107{word-spacing:11.306667pt;}
.ws1bb{word-spacing:11.328000pt;}
.ws1d4{word-spacing:11.376000pt;}
.ws1d5{word-spacing:11.472000pt;}
.ws8c{word-spacing:11.520000pt;}
.ws1e2{word-spacing:11.664000pt;}
.ws1e4{word-spacing:11.760000pt;}
.ws116{word-spacing:11.893333pt;}
.ws117{word-spacing:11.946667pt;}
.ws1a3{word-spacing:11.952000pt;}
.ws1a2{word-spacing:12.048000pt;}
.ws1a1{word-spacing:12.144000pt;}
.wsdc{word-spacing:12.266667pt;}
.ws14b{word-spacing:12.586667pt;}
.ws110{word-spacing:12.746667pt;}
.ws14a{word-spacing:14.826667pt;}
.ws1d1{word-spacing:14.976000pt;}
.ws1d2{word-spacing:15.360000pt;}
.ws9d{word-spacing:15.946667pt;}
.ws7b{word-spacing:16.213333pt;}
.ws1c4{word-spacing:16.272000pt;}
.ws6a{word-spacing:16.426667pt;}
.ws9c{word-spacing:16.693333pt;}
.ws92{word-spacing:16.853333pt;}
.ws8b{word-spacing:17.333333pt;}
.ws93{word-spacing:18.026667pt;}
.wsfa{word-spacing:18.080000pt;}
.ws10b{word-spacing:18.613333pt;}
.ws10a{word-spacing:18.720000pt;}
.ws71{word-spacing:21.493333pt;}
.ws6f{word-spacing:21.600000pt;}
.ws7d{word-spacing:21.813333pt;}
.ws97{word-spacing:22.933333pt;}
.ws3e{word-spacing:24.693333pt;}
.ws10f{word-spacing:26.453333pt;}
.ws17a{word-spacing:231.280000pt;}
.ws179{word-spacing:269.098667pt;}
.ws178{word-spacing:278.170667pt;}
.ws177{word-spacing:283.061333pt;}
.ws158{word-spacing:304.042667pt;}
.ws154{word-spacing:314.533333pt;}
.ws151{word-spacing:325.024000pt;}
.ws15b{word-spacing:334.282667pt;}
.ws16b{word-spacing:341.861333pt;}
.ws15e{word-spacing:355.264000pt;}
.ws15a{word-spacing:361.386667pt;}
.ws17f{word-spacing:367.360000pt;}
.ws181{word-spacing:397.600000pt;}
.ws180{word-spacing:423.322667pt;}
.ws17e{word-spacing:426.421333pt;}
.ws162{word-spacing:486.905067pt;}
.ws167{word-spacing:513.333333pt;}
.ws170{word-spacing:530.021333pt;}
.ws15d{word-spacing:533.758400pt;}
.ws16e{word-spacing:535.509333pt;}
.ws172{word-spacing:540.960000pt;}
.ws156{word-spacing:545.910400pt;}
.ws15f{word-spacing:551.555200pt;}
.ws16a{word-spacing:561.978667pt;}
.ws163{word-spacing:567.922133pt;}
.ws166{word-spacing:582.512000pt;}
.ws173{word-spacing:583.706667pt;}
.ws161{word-spacing:585.341867pt;}
.ws174{word-spacing:592.147733pt;}
.ws160{word-spacing:596.702400pt;}
.ws164{word-spacing:598.184533pt;}
.ws165{word-spacing:598.460800pt;}
.ws168{word-spacing:602.571200pt;}
.ws157{word-spacing:604.165333pt;}
.ws152{word-spacing:604.688000pt;}
.ws16c{word-spacing:606.330667pt;}
.ws150{word-spacing:614.245333pt;}
.ws16d{word-spacing:629.216000pt;}
.ws153{word-spacing:637.377067pt;}
.ws16f{word-spacing:638.064000pt;}
.ws169{word-spacing:642.506667pt;}
.ws159{word-spacing:643.290667pt;}
.ws171{word-spacing:644.261333pt;}
.ws155{word-spacing:650.272000pt;}
.ws175{word-spacing:680.217067pt;}
.ws15c{word-spacing:685.402667pt;}
.ws176{word-spacing:697.819733pt;}
._6{margin-left:-9.977067pt;}
._11{margin-left:-8.835733pt;}
._4{margin-left:-7.198933pt;}
._d{margin-left:-5.625600pt;}
._3{margin-left:-4.524267pt;}
._8{margin-left:-3.627733pt;}
._1{margin-left:-2.593067pt;}
._2{margin-left:-0.897600pt;}
._0{width:1.069867pt;}
._5{width:2.100267pt;}
._9{width:3.576000pt;}
._a{width:5.184000pt;}
._b{width:6.144000pt;}
._e{width:7.877333pt;}
._c{width:9.056000pt;}
._10{width:9.962667pt;}
._12{width:11.264000pt;}
._14{width:12.257600pt;}
._39{width:13.170133pt;}
._13{width:14.274133pt;}
._16{width:15.220267pt;}
._f{width:16.640000pt;}
._18{width:17.995733pt;}
._15{width:19.093333pt;}
._17{width:20.640000pt;}
._1c{width:21.621333pt;}
._19{width:22.528000pt;}
._1b{width:24.423467pt;}
._1a{width:25.467733pt;}
._7{width:32.328533pt;}
._38{width:38.247467pt;}
._3a{width:45.331200pt;}
._1e{width:72.906667pt;}
._1d{width:77.760000pt;}
._29{width:95.648000pt;}
._28{width:108.080000pt;}
._31{width:110.021333pt;}
._27{width:270.711467pt;}
._1f{width:271.973333pt;}
._36{width:320.954667pt;}
._26{width:333.050667pt;}
._25{width:351.851200pt;}
._23{width:353.710933pt;}
._24{width:360.192000pt;}
._22{width:364.522667pt;}
._37{width:366.464000pt;}
._21{width:372.101333pt;}
._2e{width:376.618667pt;}
._32{width:379.605333pt;}
._20{width:381.173333pt;}
._2f{width:387.744000pt;}
._2a{width:400.885333pt;}
._35{width:406.858667pt;}
._34{width:432.581333pt;}
._2d{width:446.208000pt;}
._33{width:479.434667pt;}
._2b{width:488.693333pt;}
._30{width:499.146667pt;}
._2c{width:510.548800pt;}
.fsa{font-size:21.765333pt;}
.fsb{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y40{bottom:63.299600pt;}
.y41{bottom:66.702267pt;}
.y1d7{bottom:100.258533pt;}
.y200{bottom:100.295867pt;}
.y1a7{bottom:100.434533pt;}
.y10a{bottom:100.512800pt;}
.y73{bottom:100.514400pt;}
.ya0{bottom:100.514533pt;}
.ydb{bottom:100.516267pt;}
.y10{bottom:104.182267pt;}
.y2b{bottom:104.189067pt;}
.y118{bottom:107.091867pt;}
.ye0{bottom:107.095867pt;}
.y17e{bottom:107.103733pt;}
.yac{bottom:107.107733pt;}
.y175{bottom:107.107867pt;}
.y184{bottom:107.419067pt;}
.yf{bottom:116.979067pt;}
.y1d6{bottom:118.930533pt;}
.y1ff{bottom:118.967867pt;}
.y1a6{bottom:119.106533pt;}
.y109{bottom:119.179467pt;}
.y72{bottom:119.181067pt;}
.y9f{bottom:119.181200pt;}
.yda{bottom:119.182933pt;}
.y2a{bottom:122.855733pt;}
.y117{bottom:124.695867pt;}
.ydf{bottom:124.699867pt;}
.y17d{bottom:124.707733pt;}
.yab{bottom:124.711733pt;}
.y174{bottom:124.711867pt;}
.y183{bottom:125.023067pt;}
.ye{bottom:129.775867pt;}
.y1d5{bottom:137.602533pt;}
.y1fe{bottom:137.639867pt;}
.y1a5{bottom:137.778533pt;}
.y108{bottom:137.846133pt;}
.y71{bottom:137.847733pt;}
.y9e{bottom:137.847867pt;}
.yd9{bottom:137.849600pt;}
.y29{bottom:141.522400pt;}
.y116{bottom:142.299867pt;}
.yde{bottom:142.303867pt;}
.y17c{bottom:142.311733pt;}
.yd{bottom:142.575867pt;}
.y182{bottom:142.627067pt;}
.y1d4{bottom:156.274533pt;}
.y1fd{bottom:156.311867pt;}
.y1a4{bottom:156.450533pt;}
.y107{bottom:156.512800pt;}
.y70{bottom:156.514400pt;}
.y9d{bottom:156.514533pt;}
.yd8{bottom:156.516267pt;}
.y115{bottom:159.903867pt;}
.ydd{bottom:159.907867pt;}
.y28{bottom:160.189067pt;}
.y1d3{bottom:174.946533pt;}
.y1fc{bottom:174.983867pt;}
.y1a3{bottom:175.122533pt;}
.y106{bottom:175.179467pt;}
.y6f{bottom:175.181067pt;}
.y9c{bottom:175.181200pt;}
.yd7{bottom:175.182933pt;}
.yb3{bottom:177.017067pt;}
.y114{bottom:177.507867pt;}
.ydc{bottom:177.511867pt;}
.y27{bottom:178.855733pt;}
.y11b{bottom:180.646400pt;}
.y3d{bottom:180.864267pt;}
.y15f{bottom:187.947467pt;}
.y133{bottom:187.947600pt;}
.y1d2{bottom:193.618533pt;}
.y1fb{bottom:193.655867pt;}
.y1a2{bottom:193.794533pt;}
.y105{bottom:193.846133pt;}
.y6e{bottom:193.847733pt;}
.y9b{bottom:193.847867pt;}
.yd6{bottom:193.849600pt;}
.yb2{bottom:194.621067pt;}
.y113{bottom:195.111867pt;}
.y3c{bottom:196.860267pt;}
.y26{bottom:197.522400pt;}
.y11a{bottom:198.250400pt;}
.yb1{bottom:212.225067pt;}
.y1d1{bottom:212.290533pt;}
.y1fa{bottom:212.327867pt;}
.y1a1{bottom:212.466533pt;}
.y104{bottom:212.512800pt;}
.y6d{bottom:212.514400pt;}
.y9a{bottom:212.514533pt;}
.yd5{bottom:212.516267pt;}
.y3b{bottom:212.856267pt;}
.y119{bottom:215.854400pt;}
.y25{bottom:216.189067pt;}
.ya9{bottom:225.280933pt;}
.y3a{bottom:228.852267pt;}
.yb0{bottom:229.829067pt;}
.y1d0{bottom:230.962533pt;}
.y1f9{bottom:230.999867pt;}
.y1a0{bottom:231.138533pt;}
.y103{bottom:231.179467pt;}
.y6c{bottom:231.181067pt;}
.y99{bottom:231.181200pt;}
.yd4{bottom:231.182933pt;}
.y24{bottom:234.855733pt;}
.y39{bottom:244.848267pt;}
.yaf{bottom:247.433067pt;}
.y1cf{bottom:249.634533pt;}
.y1f8{bottom:249.671867pt;}
.y19f{bottom:249.810533pt;}
.y102{bottom:249.846133pt;}
.y6b{bottom:249.847733pt;}
.y98{bottom:249.847867pt;}
.y38{bottom:260.844267pt;}
.y23{bottom:263.779867pt;}
.y1ce{bottom:268.306533pt;}
.y1f7{bottom:268.343867pt;}
.y19e{bottom:268.482533pt;}
.y101{bottom:268.512800pt;}
.y6a{bottom:268.514400pt;}
.y97{bottom:268.514533pt;}
.yd3{bottom:268.516267pt;}
.y37{bottom:276.840267pt;}
.y1cd{bottom:286.978533pt;}
.y1f6{bottom:287.015867pt;}
.y19d{bottom:287.154533pt;}
.y112{bottom:287.179467pt;}
.y69{bottom:287.181067pt;}
.y96{bottom:287.181200pt;}
.yd2{bottom:287.182933pt;}
.y36{bottom:292.836267pt;}
.y10c{bottom:299.941200pt;}
.y1cc{bottom:305.650533pt;}
.y1f5{bottom:305.687867pt;}
.y19c{bottom:305.826533pt;}
.y100{bottom:305.846133pt;}
.y68{bottom:305.847733pt;}
.y95{bottom:305.847867pt;}
.yd1{bottom:305.849600pt;}
.y35{bottom:308.832267pt;}
.y127{bottom:313.163867pt;}
.y1cb{bottom:324.322533pt;}
.y1f4{bottom:324.359867pt;}
.y19b{bottom:324.498533pt;}
.yff{bottom:324.512800pt;}
.y67{bottom:324.514400pt;}
.y94{bottom:324.514533pt;}
.y34{bottom:324.828267pt;}
.y126{bottom:330.767867pt;}
.y22{bottom:331.576400pt;}
.y33{bottom:340.824267pt;}
.y1ca{bottom:342.994533pt;}
.y1f3{bottom:343.031867pt;}
.y19a{bottom:343.170533pt;}
.yfe{bottom:343.179467pt;}
.y66{bottom:343.181067pt;}
.y93{bottom:343.181200pt;}
.yd0{bottom:343.182933pt;}
.y125{bottom:348.371867pt;}
.y21{bottom:349.180400pt;}
.y1c9{bottom:361.666533pt;}
.y1f2{bottom:361.703867pt;}
.y199{bottom:361.842533pt;}
.y111{bottom:361.846133pt;}
.y65{bottom:361.847733pt;}
.y92{bottom:361.847867pt;}
.ycf{bottom:361.849600pt;}
.y124{bottom:365.975867pt;}
.y32{bottom:371.940267pt;}
.y1c8{bottom:380.338533pt;}
.y1f1{bottom:380.375867pt;}
.yfd{bottom:380.512800pt;}
.y64{bottom:380.514400pt;}
.y91{bottom:380.514533pt;}
.y123{bottom:383.579867pt;}
.y20{bottom:385.626133pt;}
.y31{bottom:387.936267pt;}
.y1c7{bottom:399.010533pt;}
.y1f0{bottom:399.047867pt;}
.y110{bottom:399.179467pt;}
.y63{bottom:399.181067pt;}
.y90{bottom:399.181200pt;}
.y1f{bottom:403.230133pt;}
.y30{bottom:403.932267pt;}
.y15d{bottom:409.986933pt;}
.y198{bottom:411.947600pt;}
.y1c6{bottom:417.682533pt;}
.y1ef{bottom:417.719867pt;}
.y10f{bottom:417.846133pt;}
.y62{bottom:417.847733pt;}
.y8f{bottom:417.847867pt;}
.yce{bottom:417.849600pt;}
.y1e{bottom:420.834133pt;}
.y15c{bottom:424.957600pt;}
.y2f{bottom:435.048267pt;}
.y1c5{bottom:436.354533pt;}
.y1ee{bottom:436.391867pt;}
.yfc{bottom:436.512800pt;}
.y61{bottom:436.514400pt;}
.y8e{bottom:436.514533pt;}
.ycd{bottom:436.516267pt;}
.y1d{bottom:438.438133pt;}
.y15b{bottom:439.928267pt;}
.y2e{bottom:451.048267pt;}
.y15a{bottom:454.898933pt;}
.y1c4{bottom:455.026533pt;}
.y1ed{bottom:455.063867pt;}
.yfb{bottom:455.179467pt;}
.y60{bottom:455.181067pt;}
.y8d{bottom:455.181200pt;}
.ycc{bottom:455.182933pt;}
.y1c{bottom:456.042133pt;}
.y2d{bottom:467.048267pt;}
.y12e{bottom:467.943467pt;}
.y159{bottom:469.869600pt;}
.y1b{bottom:473.646133pt;}
.y1c3{bottom:473.698533pt;}
.y1ec{bottom:473.735867pt;}
.yfa{bottom:473.846133pt;}
.y5f{bottom:473.847733pt;}
.y8c{bottom:473.847867pt;}
.ycb{bottom:473.849600pt;}
.y197{bottom:478.692800pt;}
.y2c{bottom:483.048267pt;}
.y158{bottom:484.840267pt;}
.y12d{bottom:486.614133pt;}
.y1a{bottom:491.250133pt;}
.y1c2{bottom:492.370533pt;}
.y1eb{bottom:492.407867pt;}
.yf9{bottom:492.512800pt;}
.y5e{bottom:492.514400pt;}
.y8b{bottom:492.514533pt;}
.yca{bottom:492.516267pt;}
.y122{bottom:497.399867pt;}
.y157{bottom:499.810933pt;}
.y15e{bottom:505.280800pt;}
.y19{bottom:508.854133pt;}
.y1c1{bottom:511.042533pt;}
.y1ea{bottom:511.079867pt;}
.y196{bottom:511.175867pt;}
.yf8{bottom:511.179467pt;}
.y5d{bottom:511.181067pt;}
.y8a{bottom:511.181200pt;}
.yc9{bottom:511.182933pt;}
.y156{bottom:514.781600pt;}
.y121{bottom:515.003867pt;}
.y120{bottom:515.940400pt;}
.y18{bottom:526.458133pt;}
.y1c0{bottom:529.714533pt;}
.y1e9{bottom:529.751867pt;}
.y155{bottom:529.752267pt;}
.y195{bottom:529.842533pt;}
.yf7{bottom:529.846133pt;}
.y5c{bottom:529.847733pt;}
.y89{bottom:529.847867pt;}
.yc8{bottom:529.849600pt;}
.y11f{bottom:533.544400pt;}
.y17{bottom:544.062133pt;}
.y154{bottom:544.722933pt;}
.y1bf{bottom:548.386533pt;}
.y1e8{bottom:548.423867pt;}
.y194{bottom:548.509200pt;}
.yf6{bottom:548.512800pt;}
.y5b{bottom:548.514400pt;}
.y88{bottom:548.514533pt;}
.yc7{bottom:548.516267pt;}
.y153{bottom:559.693600pt;}
.y16{bottom:561.666133pt;}
.y1be{bottom:567.058533pt;}
.y1e7{bottom:567.095867pt;}
.y193{bottom:567.175867pt;}
.yf5{bottom:567.179467pt;}
.y5a{bottom:567.181067pt;}
.y87{bottom:567.181200pt;}
.yc6{bottom:567.182933pt;}
.y178{bottom:570.282800pt;}
.yae{bottom:570.498667pt;}
.y17b{bottom:572.268667pt;}
.y187{bottom:573.784000pt;}
.y181{bottom:573.862667pt;}
.y152{bottom:574.664267pt;}
.y15{bottom:579.270133pt;}
.y135{bottom:579.947600pt;}
.y1bd{bottom:585.730533pt;}
.y1e6{bottom:585.767867pt;}
.y192{bottom:585.842533pt;}
.yf4{bottom:585.846133pt;}
.y59{bottom:585.847733pt;}
.y86{bottom:585.847867pt;}
.yc5{bottom:585.849600pt;}
.ya1{bottom:585.852267pt;}
.y177{bottom:587.886800pt;}
.y151{bottom:589.634933pt;}
.y17a{bottom:589.872667pt;}
.y186{bottom:591.388000pt;}
.y180{bottom:591.466667pt;}
.y11e{bottom:593.106933pt;}
.y14{bottom:596.874133pt;}
.y1bc{bottom:604.402533pt;}
.y1e5{bottom:604.439867pt;}
.yf3{bottom:604.512800pt;}
.y58{bottom:604.514400pt;}
.y85{bottom:604.514533pt;}
.yc4{bottom:604.516267pt;}
.y150{bottom:604.605600pt;}
.y131{bottom:604.631733pt;}
.y176{bottom:605.490800pt;}
.y179{bottom:607.476667pt;}
.y185{bottom:608.992000pt;}
.y17f{bottom:609.070667pt;}
.y11d{bottom:610.710933pt;}
.y13{bottom:614.478133pt;}
.y14f{bottom:619.576267pt;}
.y130{bottom:622.235733pt;}
.y1bb{bottom:623.074533pt;}
.y1e4{bottom:623.111867pt;}
.yf2{bottom:623.179467pt;}
.y57{bottom:623.181067pt;}
.y84{bottom:623.181200pt;}
.yc3{bottom:623.182933pt;}
.y191{bottom:628.026133pt;}
.y11c{bottom:628.314933pt;}
.y14e{bottom:634.546933pt;}
.y132{bottom:635.941200pt;}
.y12f{bottom:639.839733pt;}
.y1ba{bottom:641.746533pt;}
.y1e3{bottom:641.783867pt;}
.yf1{bottom:641.846133pt;}
.y56{bottom:641.847733pt;}
.y83{bottom:641.847867pt;}
.yc2{bottom:641.849600pt;}
.y12{bottom:642.120267pt;}
.y14d{bottom:649.517600pt;}
.y12c{bottom:649.795333pt;}
.y173{bottom:654.614267pt;}
.y1b9{bottom:660.418533pt;}
.y1e2{bottom:660.455867pt;}
.y190{bottom:660.498533pt;}
.yf0{bottom:660.512800pt;}
.y55{bottom:660.514400pt;}
.y82{bottom:660.514533pt;}
.yc1{bottom:660.516267pt;}
.y129{bottom:662.486400pt;}
.y14c{bottom:664.488267pt;}
.y12b{bottom:667.399333pt;}
.y1b8{bottom:679.090533pt;}
.y1e1{bottom:679.127867pt;}
.y18f{bottom:679.170533pt;}
.yef{bottom:679.179467pt;}
.y54{bottom:679.181067pt;}
.y81{bottom:679.181200pt;}
.yc0{bottom:679.182933pt;}
.y14b{bottom:679.458933pt;}
.y128{bottom:680.090400pt;}
.y12a{bottom:685.003333pt;}
.y10e{bottom:691.939467pt;}
.y14a{bottom:694.429600pt;}
.y1b7{bottom:697.762533pt;}
.y1e0{bottom:697.799867pt;}
.y18e{bottom:697.842533pt;}
.yee{bottom:697.846133pt;}
.y53{bottom:697.847733pt;}
.ya7{bottom:697.847867pt;}
.ybf{bottom:697.849600pt;}
.y149{bottom:709.400267pt;}
.y80{bottom:710.614267pt;}
.yc{bottom:712.592800pt;}
.y1b6{bottom:716.434533pt;}
.y1df{bottom:716.471867pt;}
.yed{bottom:716.512800pt;}
.y52{bottom:716.514400pt;}
.ya6{bottom:716.514533pt;}
.y148{bottom:724.370933pt;}
.yb{bottom:728.592800pt;}
.yb4{bottom:729.274533pt;}
.y1b5{bottom:735.106533pt;}
.y1de{bottom:735.143867pt;}
.yec{bottom:735.179467pt;}
.y51{bottom:735.181067pt;}
.ya5{bottom:735.181200pt;}
.ybe{bottom:735.182933pt;}
.y147{bottom:739.341600pt;}
.y18d{bottom:740.026000pt;}
.y168{bottom:741.725333pt;}
.ya{bottom:744.592800pt;}
.y1b4{bottom:753.778533pt;}
.y1dd{bottom:753.815867pt;}
.yeb{bottom:753.846133pt;}
.y50{bottom:753.847733pt;}
.y7f{bottom:753.847867pt;}
.ybd{bottom:753.849600pt;}
.y146{bottom:754.312267pt;}
.y167{bottom:756.696000pt;}
.y9{bottom:760.592800pt;}
.y145{bottom:769.282933pt;}
.y166{bottom:771.666667pt;}
.y1b3{bottom:772.450533pt;}
.y1dc{bottom:772.487867pt;}
.yea{bottom:772.512800pt;}
.y4f{bottom:772.514400pt;}
.y7e{bottom:772.514533pt;}
.y8{bottom:776.592800pt;}
.y144{bottom:784.253600pt;}
.ya8{bottom:785.280933pt;}
.y165{bottom:786.905600pt;}
.y163{bottom:786.906933pt;}
.y1b2{bottom:791.122533pt;}
.y1db{bottom:791.159867pt;}
.ye9{bottom:791.179467pt;}
.y4e{bottom:791.181067pt;}
.y7d{bottom:791.181200pt;}
.ybc{bottom:791.182933pt;}
.y7{bottom:792.592800pt;}
.y162{bottom:792.908267pt;}
.y18c{bottom:796.026000pt;}
.y164{bottom:798.908267pt;}
.y143{bottom:799.224267pt;}
.y1b1{bottom:809.794533pt;}
.y1da{bottom:809.831867pt;}
.ye8{bottom:809.846133pt;}
.y4d{bottom:809.847733pt;}
.y7c{bottom:809.847867pt;}
.y142{bottom:814.194933pt;}
.y134{bottom:822.614267pt;}
.y6{bottom:823.710933pt;}
.y161{bottom:824.999200pt;}
.y1b0{bottom:828.466533pt;}
.y1d9{bottom:828.503867pt;}
.ye7{bottom:828.512800pt;}
.y4c{bottom:828.514400pt;}
.y7b{bottom:828.514533pt;}
.y141{bottom:829.165600pt;}
.y5{bottom:841.310933pt;}
.y160{bottom:842.603200pt;}
.y140{bottom:844.136267pt;}
.y1af{bottom:847.138533pt;}
.y1d8{bottom:847.175867pt;}
.ye6{bottom:847.179467pt;}
.y4b{bottom:847.181067pt;}
.y7a{bottom:847.181200pt;}
.ybb{bottom:847.182933pt;}
.y18b{bottom:852.026000pt;}
.y13f{bottom:859.106933pt;}
.y1ae{bottom:865.810533pt;}
.y10d{bottom:865.846133pt;}
.y4a{bottom:865.847733pt;}
.y79{bottom:865.847867pt;}
.yba{bottom:865.849600pt;}
.y4{bottom:874.034267pt;}
.y13e{bottom:874.077600pt;}
.y1ad{bottom:884.482533pt;}
.ye5{bottom:884.512800pt;}
.y49{bottom:884.514400pt;}
.y78{bottom:884.514533pt;}
.yb9{bottom:884.516267pt;}
.y13d{bottom:889.048267pt;}
.y172{bottom:894.040133pt;}
.y1ac{bottom:903.154533pt;}
.ye4{bottom:903.179467pt;}
.y48{bottom:903.181067pt;}
.ya4{bottom:903.181200pt;}
.yb8{bottom:903.182933pt;}
.y3{bottom:903.364933pt;}
.y13b{bottom:904.020400pt;}
.y18a{bottom:908.026000pt;}
.y171{bottom:909.010800pt;}
.y13a{bottom:910.023067pt;}
.y10b{bottom:915.941200pt;}
.y77{bottom:915.947600pt;}
.y13c{bottom:916.023067pt;}
.y1ab{bottom:921.826533pt;}
.ye3{bottom:921.846133pt;}
.y47{bottom:921.847733pt;}
.ya3{bottom:921.847867pt;}
.yb7{bottom:921.849600pt;}
.y170{bottom:923.981467pt;}
.y2{bottom:932.695600pt;}
.y16f{bottom:939.220400pt;}
.y16c{bottom:939.221733pt;}
.y1aa{bottom:940.498533pt;}
.y46{bottom:940.514400pt;}
.ya2{bottom:940.514533pt;}
.y139{bottom:942.106133pt;}
.y16b{bottom:945.223067pt;}
.y16e{bottom:951.223067pt;}
.y16d{bottom:951.224400pt;}
.y1a9{bottom:959.170533pt;}
.ye2{bottom:959.179467pt;}
.y45{bottom:959.181067pt;}
.y76{bottom:959.181200pt;}
.yb6{bottom:959.182933pt;}
.y138{bottom:959.710133pt;}
.y189{bottom:963.727067pt;}
.y16a{bottom:977.314000pt;}
.y137{bottom:977.314133pt;}
.y1a8{bottom:977.842533pt;}
.y44{bottom:977.847733pt;}
.y75{bottom:977.847867pt;}
.y11{bottom:986.502667pt;}
.yb5{bottom:989.062933pt;}
.y188{bottom:989.952667pt;}
.yaa{bottom:989.952800pt;}
.ye1{bottom:990.952800pt;}
.y169{bottom:994.918000pt;}
.y136{bottom:994.918133pt;}
.y43{bottom:996.514400pt;}
.y74{bottom:996.514533pt;}
.yad{bottom:998.511867pt;}
.y3f{bottom:1030.390667pt;}
.y3e{bottom:1047.724000pt;}
.y42{bottom:1047.726267pt;}
.h15{height:29.731771pt;}
.h1a{height:29.770422pt;}
.h1c{height:29.770956pt;}
.h1b{height:29.775756pt;}
.h14{height:29.776289pt;}
.h16{height:33.651042pt;}
.h18{height:33.723004pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h17{height:34.252604pt;}
.h6{height:34.706250pt;}
.h7{height:38.226562pt;}
.hf{height:38.507812pt;}
.h10{height:38.562500pt;}
.h8{height:42.083333pt;}
.h9{height:43.265625pt;}
.he{height:43.382812pt;}
.ha{height:44.039062pt;}
.h1d{height:44.060396pt;}
.h11{height:46.291667pt;}
.hd{height:48.072917pt;}
.hc{height:48.932292pt;}
.hb{height:50.500000pt;}
.h4{height:52.880208pt;}
.h13{height:53.731771pt;}
.h19{height:53.737104pt;}
.h12{height:53.825521pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.877867pt;}
.xb{left:95.167867pt;}
.xd{left:96.257467pt;}
.x17{left:99.779467pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.xf{left:160.202667pt;}
.x1c{left:226.312533pt;}
.x18{left:229.320933pt;}
.x5{left:266.834667pt;}
.xc{left:281.954667pt;}
.xe{left:297.074667pt;}
.x4{left:352.045067pt;}
.x1d{left:388.395200pt;}
.x10{left:394.852533pt;}
.x11{left:461.731067pt;}
.x1e{left:477.584533pt;}
.x12{left:493.119067pt;}
.x1f{left:521.479200pt;}
.x19{left:540.372933pt;}
.x13{left:559.672267pt;}
.xa{left:576.812133pt;}
.x14{left:589.501600pt;}
.x9{left:595.308133pt;}
.x20{left:599.352800pt;}
.x1a{left:624.572800pt;}
.x21{left:651.862133pt;}
.x15{left:653.725200pt;}
.x1b{left:663.203467pt;}
.x16{left:678.318533pt;}
.x1{left:712.140000pt;}
}




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