
    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_7fd1015fa18f4f28310bed09.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_78b42067a5b774fe23ad2e00.woff2')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_e5f8a8594db8339534f71046.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4e35c4f780418c75240e4bd9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5faba53c9ef7249c9b1d48b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a5064b314903c0a9906ff372.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cda65b7da200123dff3dd892.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3b84be2cc8e3d80f01ab2830.woff2')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_cd8d7dd533b73716f48a9677.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bbb3e890bae540269622cffa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.710938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ae1cce9855e7e9e57e30eaf2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.760342;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_7925c2fefec6b17fcbf1d4cb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.968262;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_839d60c430e0ea6d06f0b682.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.771120;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_12bdf23f2bb0356523698d91.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958556;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_fb934f19cbf700a60988ca4d.woff2')format("woff");}.fff{font-family:fff;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_52bff86fadce7f738cb694e5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d8acd4c9c9d43c4378d71971.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.927000;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:ff12;src:url('chunks/assets/font_d8acd4c9c9d43c4378d71971.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.927000;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:ff13;src:url('chunks/assets/font_52bff86fadce7f738cb694e5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938000;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:ff14;src:url('chunks/assets/font_fb934f19cbf700a60988ca4d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.927000;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:ff15;src:url('chunks/assets/font_4535bad06ab79988ae682a31.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:34.184400px;}
.lsb{letter-spacing:-1.200000px;}
.ls25{letter-spacing:-0.972000px;}
.ls20{letter-spacing:-0.960000px;}
.ls8{letter-spacing:-0.691200px;}
.ls19{letter-spacing:-0.648000px;}
.lsc{letter-spacing:-0.600000px;}
.ls10{letter-spacing:-0.546000px;}
.ls23{letter-spacing:-0.420000px;}
.lsa{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.324000px;}
.ls27{letter-spacing:-0.270000px;}
.ls6{letter-spacing:-0.204000px;}
.ls18{letter-spacing:-0.180000px;}
.ls21{letter-spacing:-0.120000px;}
.ls7{letter-spacing:-0.102000px;}
.ls9{letter-spacing:-0.060000px;}
.ls26{letter-spacing:-0.054000px;}
.ls5{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.007200px;}
.ls2{letter-spacing:0.012000px;}
.ls4{letter-spacing:0.025800px;}
.ls2a{letter-spacing:0.026400px;}
.ls3{letter-spacing:0.190800px;}
.ls29{letter-spacing:0.420600px;}
.ls2b{letter-spacing:0.540000px;}
.ls2c{letter-spacing:0.600000px;}
.ls1c{letter-spacing:0.960000px;}
.ls1d{letter-spacing:1.699800px;}
.ls1a{letter-spacing:2.035800px;}
.ls22{letter-spacing:2.298000px;}
.ls1b{letter-spacing:2.363400px;}
.ls28{letter-spacing:17.227200px;}
.ls1e{letter-spacing:21.574800px;}
.lsf{letter-spacing:41.947800px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.ls14{letter-spacing:200.753400px;}
.ls12{letter-spacing:204.133200px;}
.ls15{letter-spacing:205.828200px;}
.ls17{letter-spacing:207.751200px;}
.lsd{letter-spacing:207.760800px;}
.lse{letter-spacing:208.255800px;}
.ls11{letter-spacing:211.159800px;}
.ls13{letter-spacing:212.083800px;}
.ls16{letter-spacing:295.377600px;}
.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;}
}
.wsb2{word-spacing:-305.049600px;}
.ws0{word-spacing:-24.990000px;}
.ws7{word-spacing:-17.928000px;}
.wsbe{word-spacing:-16.434000px;}
.ws18f{word-spacing:-15.360000px;}
.ws4{word-spacing:-14.940000px;}
.wsbc{word-spacing:-14.880000px;}
.ws9{word-spacing:-14.820000px;}
.ws30{word-spacing:-14.700000px;}
.ws8{word-spacing:-14.640000px;}
.ws111{word-spacing:-14.580000px;}
.wsbd{word-spacing:-14.520000px;}
.ws2f{word-spacing:-14.340000px;}
.wsb9{word-spacing:-14.280000px;}
.wsed{word-spacing:-14.220000px;}
.ws53{word-spacing:-14.100000px;}
.ws10f{word-spacing:-13.980000px;}
.ws110{word-spacing:-13.860000px;}
.wsec{word-spacing:-13.740000px;}
.ws51{word-spacing:-13.680000px;}
.ws52{word-spacing:-13.500000px;}
.wse3{word-spacing:-13.446000px;}
.ws6{word-spacing:-13.392000px;}
.ws14a{word-spacing:-13.338000px;}
.ws5{word-spacing:-13.230000px;}
.ws13a{word-spacing:-13.068000px;}
.wsdc{word-spacing:-12.582000px;}
.ws149{word-spacing:-12.420000px;}
.wsc{word-spacing:-12.150000px;}
.wsa{word-spacing:-11.772000px;}
.ws2{word-spacing:-10.896000px;}
.ws2e{word-spacing:-10.800000px;}
.wsd{word-spacing:-10.464000px;}
.wse7{word-spacing:-10.200000px;}
.wse8{word-spacing:-10.140000px;}
.wsdb{word-spacing:-9.973306px;}
.ws6c{word-spacing:-9.711000px;}
.ws73{word-spacing:-9.672000px;}
.ws99{word-spacing:-9.555000px;}
.ws1{word-spacing:-9.542544px;}
.ws3{word-spacing:-9.417600px;}
.wsef{word-spacing:-9.300000px;}
.wsee{word-spacing:-9.180000px;}
.wsde{word-spacing:-6.534000px;}
.ws11e{word-spacing:-6.120000px;}
.ws11d{word-spacing:-6.060000px;}
.wse2{word-spacing:-5.562000px;}
.wsdd{word-spacing:-5.508000px;}
.ws157{word-spacing:-4.212000px;}
.ws2d{word-spacing:-3.900000px;}
.ws69{word-spacing:-3.840000px;}
.ws188{word-spacing:-3.510000px;}
.ws17{word-spacing:-3.402000px;}
.ws132{word-spacing:-3.360000px;}
.ws18{word-spacing:-3.348000px;}
.ws1f{word-spacing:-3.240000px;}
.wsd4{word-spacing:-3.060000px;}
.ws105{word-spacing:-3.024000px;}
.ws40{word-spacing:-3.000000px;}
.ws106{word-spacing:-2.970000px;}
.wsbb{word-spacing:-2.820000px;}
.ws141{word-spacing:-2.808000px;}
.ws12e{word-spacing:-2.700000px;}
.ws166{word-spacing:-2.646000px;}
.ws4c{word-spacing:-2.640000px;}
.wsd3{word-spacing:-2.580000px;}
.ws65{word-spacing:-2.520000px;}
.ws11c{word-spacing:-2.460000px;}
.ws62{word-spacing:-2.400000px;}
.ws59{word-spacing:-2.340000px;}
.wse1{word-spacing:-2.322000px;}
.ws42{word-spacing:-2.280000px;}
.wse0{word-spacing:-2.268000px;}
.ws1b{word-spacing:-2.220000px;}
.ws64{word-spacing:-2.160000px;}
.ws193{word-spacing:-2.106000px;}
.ws58{word-spacing:-2.100000px;}
.wsc0{word-spacing:-2.040000px;}
.ws5d{word-spacing:-1.980000px;}
.ws13e{word-spacing:-1.944000px;}
.wse9{word-spacing:-1.920000px;}
.ws15{word-spacing:-1.836000px;}
.ws153{word-spacing:-1.782000px;}
.ws165{word-spacing:-1.728000px;}
.ws15d{word-spacing:-1.620000px;}
.ws68{word-spacing:-1.560000px;}
.ws107{word-spacing:-1.512000px;}
.wsba{word-spacing:-1.500000px;}
.ws3c{word-spacing:-1.440000px;}
.ws18d{word-spacing:-1.404000px;}
.wsc3{word-spacing:-1.380000px;}
.ws37{word-spacing:-1.320000px;}
.ws143{word-spacing:-1.296000px;}
.ws55{word-spacing:-1.260000px;}
.ws112{word-spacing:-1.200000px;}
.ws158{word-spacing:-1.134000px;}
.ws31{word-spacing:-1.080000px;}
.ws109{word-spacing:-1.020000px;}
.ws4d{word-spacing:-0.960000px;}
.ws41{word-spacing:-0.900000px;}
.ws16{word-spacing:-0.864000px;}
.ws33{word-spacing:-0.840000px;}
.ws146{word-spacing:-0.810000px;}
.ws17e{word-spacing:-0.756000px;}
.ws96{word-spacing:-0.741000px;}
.ws21{word-spacing:-0.720000px;}
.ws152{word-spacing:-0.702000px;}
.wscc{word-spacing:-0.660000px;}
.ws175{word-spacing:-0.648000px;}
.ws2c{word-spacing:-0.600000px;}
.ws154{word-spacing:-0.594000px;}
.wsfa{word-spacing:-0.540000px;}
.ws173{word-spacing:-0.486000px;}
.ws114{word-spacing:-0.480000px;}
.wsce{word-spacing:-0.360000px;}
.ws19{word-spacing:-0.324000px;}
.ws2a{word-spacing:-0.300000px;}
.ws11f{word-spacing:-0.240000px;}
.ws11{word-spacing:-0.216000px;}
.ws66{word-spacing:-0.180000px;}
.ws54{word-spacing:-0.120000px;}
.wsb{word-spacing:-0.054000px;}
.wse{word-spacing:0.000000px;}
.ws14{word-spacing:0.054000px;}
.ws20{word-spacing:0.060000px;}
.ws10{word-spacing:0.102000px;}
.ws161{word-spacing:0.108000px;}
.ws29{word-spacing:0.120000px;}
.ws172{word-spacing:0.162000px;}
.wscb{word-spacing:0.180000px;}
.wsf{word-spacing:0.204000px;}
.ws1a{word-spacing:0.216000px;}
.ws16f{word-spacing:0.270000px;}
.ws3e{word-spacing:0.300000px;}
.ws140{word-spacing:0.324000px;}
.ws3b{word-spacing:0.360000px;}
.ws150{word-spacing:0.378000px;}
.wsca{word-spacing:0.420000px;}
.ws155{word-spacing:0.432000px;}
.ws115{word-spacing:0.480000px;}
.wsf8{word-spacing:0.540000px;}
.ws6b{word-spacing:0.600000px;}
.wsdf{word-spacing:0.648000px;}
.ws12{word-spacing:0.691200px;}
.ws16d{word-spacing:0.702000px;}
.ws39{word-spacing:0.720000px;}
.ws129{word-spacing:0.780000px;}
.ws144{word-spacing:0.810000px;}
.ws18b{word-spacing:0.864000px;}
.ws11b{word-spacing:0.960000px;}
.ws14b{word-spacing:0.972000px;}
.ws56{word-spacing:1.020000px;}
.ws13d{word-spacing:1.026000px;}
.ws137{word-spacing:1.080000px;}
.ws187{word-spacing:1.188000px;}
.ws5b{word-spacing:1.200000px;}
.ws138{word-spacing:1.296000px;}
.wsbf{word-spacing:1.320000px;}
.ws142{word-spacing:1.350000px;}
.ws16e{word-spacing:1.404000px;}
.wsea{word-spacing:1.440000px;}
.ws145{word-spacing:1.458000px;}
.ws17f{word-spacing:1.512000px;}
.wsf7{word-spacing:1.560000px;}
.wsc1{word-spacing:1.620000px;}
.wse6{word-spacing:1.680000px;}
.ws10d{word-spacing:1.728000px;}
.ws159{word-spacing:1.782000px;}
.ws130{word-spacing:1.860000px;}
.ws15c{word-spacing:1.890000px;}
.wsc4{word-spacing:1.920000px;}
.ws169{word-spacing:1.944000px;}
.ws36{word-spacing:1.980000px;}
.ws6a{word-spacing:2.040000px;}
.wseb{word-spacing:2.052000px;}
.ws176{word-spacing:2.106000px;}
.ws10b{word-spacing:2.220000px;}
.wsf0{word-spacing:2.280000px;}
.ws12a{word-spacing:2.322000px;}
.ws46{word-spacing:2.340000px;}
.ws2b{word-spacing:2.400000px;}
.ws16c{word-spacing:2.430000px;}
.wsf3{word-spacing:2.520000px;}
.ws48{word-spacing:2.580000px;}
.ws13{word-spacing:2.592000px;}
.ws1c{word-spacing:2.640000px;}
.ws61{word-spacing:2.700000px;}
.ws5e{word-spacing:2.760000px;}
.ws13b{word-spacing:2.808000px;}
.ws24{word-spacing:2.820000px;}
.ws135{word-spacing:2.862000px;}
.ws23{word-spacing:2.880000px;}
.ws151{word-spacing:2.916000px;}
.ws131{word-spacing:2.940000px;}
.ws180{word-spacing:2.970000px;}
.ws133{word-spacing:3.000000px;}
.ws5a{word-spacing:3.060000px;}
.ws44{word-spacing:3.120000px;}
.ws171{word-spacing:3.132000px;}
.ws5c{word-spacing:3.180000px;}
.ws156{word-spacing:3.186000px;}
.ws35{word-spacing:3.240000px;}
.ws3f{word-spacing:3.300000px;}
.ws34{word-spacing:3.360000px;}
.wsd0{word-spacing:3.420000px;}
.ws4e{word-spacing:3.480000px;}
.ws22{word-spacing:3.540000px;}
.ws15e{word-spacing:3.564000px;}
.ws147{word-spacing:3.618000px;}
.ws1d{word-spacing:3.660000px;}
.ws1e{word-spacing:3.720000px;}
.ws57{word-spacing:3.780000px;}
.ws170{word-spacing:3.834000px;}
.ws174{word-spacing:3.888000px;}
.ws18a{word-spacing:3.942000px;}
.wsd2{word-spacing:3.960000px;}
.ws10e{word-spacing:3.996000px;}
.ws32{word-spacing:4.020000px;}
.ws148{word-spacing:4.050000px;}
.ws11a{word-spacing:4.080000px;}
.ws139{word-spacing:4.104000px;}
.ws10a{word-spacing:4.140000px;}
.ws67{word-spacing:4.260000px;}
.wsd1{word-spacing:4.320000px;}
.ws13f{word-spacing:4.428000px;}
.ws26{word-spacing:4.440000px;}
.ws184{word-spacing:4.536000px;}
.ws3a{word-spacing:4.560000px;}
.ws14d{word-spacing:4.590000px;}
.wsf2{word-spacing:4.620000px;}
.ws4b{word-spacing:4.740000px;}
.ws4a{word-spacing:4.800000px;}
.ws177{word-spacing:4.806000px;}
.ws15f{word-spacing:4.860000px;}
.ws160{word-spacing:4.914000px;}
.wscd{word-spacing:4.920000px;}
.ws18e{word-spacing:4.968000px;}
.ws120{word-spacing:4.980000px;}
.ws14e{word-spacing:5.022000px;}
.ws25{word-spacing:5.040000px;}
.ws28{word-spacing:5.100000px;}
.ws136{word-spacing:5.130000px;}
.ws12d{word-spacing:5.340000px;}
.ws134{word-spacing:5.460000px;}
.ws63{word-spacing:5.520000px;}
.ws14f{word-spacing:5.562000px;}
.wsf9{word-spacing:5.640000px;}
.ws183{word-spacing:5.724000px;}
.ws182{word-spacing:5.832000px;}
.ws192{word-spacing:5.994000px;}
.ws43{word-spacing:6.060000px;}
.wsf1{word-spacing:6.120000px;}
.ws168{word-spacing:6.156000px;}
.ws164{word-spacing:6.210000px;}
.ws163{word-spacing:6.264000px;}
.ws128{word-spacing:6.300000px;}
.ws15a{word-spacing:6.318000px;}
.ws49{word-spacing:6.360000px;}
.ws15b{word-spacing:6.426000px;}
.ws117{word-spacing:6.480000px;}
.ws13c{word-spacing:6.534000px;}
.ws47{word-spacing:6.720000px;}
.ws167{word-spacing:6.750000px;}
.ws27{word-spacing:6.780000px;}
.wsc2{word-spacing:6.840000px;}
.ws121{word-spacing:6.900000px;}
.ws104{word-spacing:6.960000px;}
.ws14c{word-spacing:7.182000px;}
.ws127{word-spacing:7.200000px;}
.wsff{word-spacing:7.260000px;}
.ws17a{word-spacing:7.290000px;}
.ws100{word-spacing:7.320000px;}
.wsc7{word-spacing:7.440000px;}
.ws178{word-spacing:7.452000px;}
.ws16a{word-spacing:7.506000px;}
.ws3d{word-spacing:7.560000px;}
.ws16b{word-spacing:7.614000px;}
.wsf4{word-spacing:7.620000px;}
.ws4f{word-spacing:7.680000px;}
.wsfe{word-spacing:7.800000px;}
.ws191{word-spacing:7.830000px;}
.ws60{word-spacing:7.860000px;}
.ws190{word-spacing:7.884000px;}
.ws125{word-spacing:7.920000px;}
.wsc6{word-spacing:7.980000px;}
.wsf6{word-spacing:8.040000px;}
.ws181{word-spacing:8.046000px;}
.ws162{word-spacing:8.154000px;}
.ws122{word-spacing:8.220000px;}
.ws118{word-spacing:8.280000px;}
.ws18c{word-spacing:8.316000px;}
.ws119{word-spacing:8.340000px;}
.ws17c{word-spacing:8.424000px;}
.ws116{word-spacing:8.580000px;}
.wsc9{word-spacing:8.640000px;}
.wsc8{word-spacing:8.700000px;}
.ws103{word-spacing:8.760000px;}
.wse4{word-spacing:8.880000px;}
.ws101{word-spacing:8.940000px;}
.ws50{word-spacing:9.000000px;}
.wse5{word-spacing:9.060000px;}
.ws12c{word-spacing:9.240000px;}
.wsc5{word-spacing:9.420000px;}
.ws5f{word-spacing:9.480000px;}
.ws10c{word-spacing:9.540000px;}
.ws108{word-spacing:9.600000px;}
.ws126{word-spacing:9.660000px;}
.ws17b{word-spacing:9.666000px;}
.ws194{word-spacing:9.828000px;}
.wsfd{word-spacing:10.140000px;}
.ws179{word-spacing:10.206000px;}
.ws195{word-spacing:10.260000px;}
.ws185{word-spacing:10.314000px;}
.ws38{word-spacing:10.860000px;}
.ws123{word-spacing:11.880000px;}
.ws189{word-spacing:11.934000px;}
.ws124{word-spacing:12.000000px;}
.ws45{word-spacing:12.180000px;}
.wsfc{word-spacing:12.300000px;}
.wsfb{word-spacing:12.420000px;}
.ws12b{word-spacing:14.640000px;}
.ws12f{word-spacing:14.820000px;}
.ws17d{word-spacing:15.120000px;}
.wsf5{word-spacing:16.560000px;}
.ws186{word-spacing:17.388000px;}
.wsd9{word-spacing:17.580000px;}
.wsd6{word-spacing:18.120000px;}
.wsd8{word-spacing:18.240000px;}
.wsd5{word-spacing:18.300000px;}
.wscf{word-spacing:18.900000px;}
.ws113{word-spacing:21.420000px;}
.ws102{word-spacing:21.600000px;}
.ws196{word-spacing:24.786000px;}
.wsd7{word-spacing:29.580000px;}
.wsda{word-spacing:29.700000px;}
.wsad{word-spacing:76.463400px;}
.ws95{word-spacing:85.330800px;}
.ws94{word-spacing:88.390800px;}
.ws93{word-spacing:91.352400px;}
.ws78{word-spacing:96.321600px;}
.wsa6{word-spacing:96.409200px;}
.ws91{word-spacing:98.871000px;}
.ws79{word-spacing:102.816000px;}
.ws9b{word-spacing:103.107600px;}
.ws9c{word-spacing:103.108200px;}
.wsa5{word-spacing:103.117200px;}
.ws9e{word-spacing:103.206000px;}
.ws7c{word-spacing:103.642200px;}
.ws8a{word-spacing:104.082600px;}
.ws89{word-spacing:104.112000px;}
.wsa8{word-spacing:106.462200px;}
.wsb8{word-spacing:106.500600px;}
.ws8e{word-spacing:108.181500px;}
.ws7a{word-spacing:108.472800px;}
.wsaa{word-spacing:109.798200px;}
.wsb6{word-spacing:110.322600px;}
.wsb3{word-spacing:110.352000px;}
.ws8f{word-spacing:111.307200px;}
.wsae{word-spacing:111.375600px;}
.ws71{word-spacing:112.534800px;}
.ws7e{word-spacing:113.520600px;}
.ws7f{word-spacing:113.559600px;}
.ws97{word-spacing:113.755200px;}
.ws72{word-spacing:114.105600px;}
.ws77{word-spacing:115.276200px;}
.ws75{word-spacing:115.305600px;}
.ws81{word-spacing:115.743600px;}
.ws88{word-spacing:115.753200px;}
.ws70{word-spacing:115.899600px;}
.wsb0{word-spacing:115.909200px;}
.ws9f{word-spacing:125.969400px;}
.ws8b{word-spacing:129.450000px;}
.ws87{word-spacing:133.464600px;}
.ws80{word-spacing:136.603200px;}
.wsa3{word-spacing:137.252700px;}
.ws86{word-spacing:141.837000px;}
.ws92{word-spacing:143.070000px;}
.wsa2{word-spacing:150.107400px;}
.wsac{word-spacing:153.120000px;}
.ws74{word-spacing:154.325700px;}
.wsb4{word-spacing:155.642400px;}
.wsb5{word-spacing:155.671800px;}
.ws76{word-spacing:162.765900px;}
.ws84{word-spacing:178.717800px;}
.ws8c{word-spacing:181.923600px;}
.wsa4{word-spacing:194.352600px;}
.ws8d{word-spacing:196.030800px;}
.wsab{word-spacing:196.060200px;}
.ws82{word-spacing:196.601400px;}
.ws7b{word-spacing:197.978400px;}
.ws83{word-spacing:198.008400px;}
.wsb1{word-spacing:201.834000px;}
.ws85{word-spacing:202.284600px;}
.wsa1{word-spacing:202.313400px;}
.wsa0{word-spacing:202.314000px;}
.ws6f{word-spacing:218.842200px;}
.ws6e{word-spacing:222.796200px;}
.wsaf{word-spacing:223.878000px;}
.ws6d{word-spacing:233.798700px;}
.ws90{word-spacing:238.321800px;}
.wsa7{word-spacing:244.389000px;}
.ws98{word-spacing:254.730600px;}
.ws9d{word-spacing:277.919400px;}
.wsa9{word-spacing:279.656400px;}
.wsb7{word-spacing:281.516400px;}
.ws7d{word-spacing:281.545800px;}
.ws9a{word-spacing:371.725800px;}
._86{margin-left:-10.525800px;}
._7{margin-left:-9.445800px;}
._5{margin-left:-7.345800px;}
._85{margin-left:-6.333600px;}
._3{margin-left:-5.314200px;}
._8b{margin-left:-4.164000px;}
._2{margin-left:-3.142800px;}
._6{margin-left:-2.110200px;}
._0{margin-left:-1.071000px;}
._1{width:1.622400px;}
._a{width:2.833800px;}
._9{width:3.870000px;}
._8{width:5.656800px;}
._b{width:7.171200px;}
._87{width:8.744400px;}
._89{width:10.479600px;}
._88{width:11.561400px;}
._8d{width:14.505600px;}
._81{width:16.046400px;}
._83{width:17.898000px;}
._82{width:19.236000px;}
._8a{width:22.332600px;}
._84{width:29.649000px;}
._4{width:36.624000px;}
._8c{width:43.123200px;}
._80{width:78.259800px;}
._59{width:83.377800px;}
._7e{width:85.059000px;}
._39{width:89.386800px;}
._7f{width:91.234800px;}
._43{width:95.721000px;}
._36{width:98.634000px;}
._58{width:99.714600px;}
._44{width:104.134800px;}
._18{width:106.352400px;}
._57{width:109.151400px;}
._f{width:110.908800px;}
._1b{width:114.792600px;}
._28{width:116.970000px;}
._49{width:119.027400px;}
._61{width:121.252200px;}
._2c{width:122.889000px;}
._14{width:123.906000px;}
._7c{width:124.909800px;}
._24{width:126.761700px;}
._30{width:128.600400px;}
._5e{width:129.663000px;}
._67{width:133.248600px;}
._2b{width:134.475600px;}
._4e{width:136.062000px;}
._10{width:141.905400px;}
._7d{width:143.070600px;}
._54{width:147.346800px;}
._53{width:148.785600px;}
._66{width:150.510600px;}
._62{width:160.474200px;}
._7b{width:161.715600px;}
._11{width:168.120600px;}
._51{width:169.213800px;}
._20{width:177.777600px;}
._55{width:181.371600px;}
._7a{width:182.401200px;}
._21{width:186.175800px;}
._52{width:187.429200px;}
._56{width:191.472600px;}
._c{width:193.112400px;}
._23{width:194.436000px;}
._74{width:200.278200px;}
._6b{width:201.357900px;}
._26{width:202.843800px;}
._5f{width:204.024600px;}
._34{width:205.315200px;}
._38{width:206.764200px;}
._4c{width:208.292400px;}
._3f{width:210.337800px;}
._5a{width:212.782800px;}
._27{width:214.317000px;}
._6f{width:217.764600px;}
._1e{width:221.808600px;}
._1f{width:230.206800px;}
._13{width:239.520000px;}
._72{width:240.810000px;}
._33{width:242.676000px;}
._2f{width:244.894800px;}
._42{width:250.181400px;}
._2e{width:251.571600px;}
._2a{width:254.200800px;}
._65{width:255.833400px;}
._6c{width:257.352600px;}
._1c{width:258.585600px;}
._4d{width:260.896200px;}
._3b{width:262.426800px;}
._16{width:265.618800px;}
._1d{width:266.983800px;}
._41{width:268.379400px;}
._17{width:272.335800px;}
._3e{width:276.768000px;}
._5b{width:278.300400px;}
._1a{width:280.743600px;}
._4a{width:284.172300px;}
._5c{width:286.698000px;}
._73{width:287.805000px;}
._19{width:289.450800px;}
._25{width:290.870400px;}
._6a{width:291.996900px;}
._31{width:295.377600px;}
._78{width:298.624800px;}
._2d{width:301.026600px;}
._68{width:303.529800px;}
._37{width:308.909400px;}
._12{width:312.967800px;}
._70{width:314.141400px;}
._29{width:315.193800px;}
._75{width:317.572800px;}
._6e{width:321.292200px;}
._71{width:322.539000px;}
._77{width:325.970400px;}
._76{width:334.578000px;}
._46{width:338.334000px;}
._4b{width:340.088400px;}
._3a{width:341.905800px;}
._40{width:347.466600px;}
._45{width:350.712000px;}
._60{width:356.121000px;}
._15{width:362.319000px;}
._5d{width:364.519200px;}
._79{width:366.777600px;}
._63{width:371.925600px;}
._22{width:375.874800px;}
._32{width:378.945000px;}
._35{width:381.022800px;}
._d{width:382.194600px;}
._3d{width:386.571600px;}
._47{width:395.405400px;}
._6d{width:397.367400px;}
._3c{width:404.529000px;}
._64{width:407.539200px;}
._69{width:412.680000px;}
._48{width:444.852600px;}
._4f{width:655.625400px;}
._e{width:661.378800px;}
._50{width:689.886000px;}
.fc6{color:rgb(238,38,55);}
.fc5{color:rgb(237,28,36);}
.fc4{color:rgb(14,15,15);}
.fc2{color:rgb(109,111,79);}
.fc1{color:rgb(70,71,49);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:12.718800px;}
.fsc{font-size:15.262800px;}
.fsd{font-size:31.088400px;}
.fsb{font-size:35.875200px;}
.fs3{font-size:38.478000px;}
.fs9{font-size:39.000000px;}
.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;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.036150px;}
.ye0{bottom:113.078700px;}
.y6a{bottom:113.078850px;}
.y9c{bottom:116.378700px;}
.y2b{bottom:117.212700px;}
.ye{bottom:117.875550px;}
.y199{bottom:120.500700px;}
.y1a8{bottom:120.500850px;}
.yd{bottom:132.275550px;}
.y9b{bottom:133.895850px;}
.ydf{bottom:134.078700px;}
.y69{bottom:134.078850px;}
.y2a{bottom:138.212700px;}
.y198{bottom:140.300850px;}
.yc{bottom:146.675550px;}
.y9a{bottom:151.413150px;}
.yde{bottom:155.078700px;}
.y68{bottom:155.078850px;}
.y29{bottom:159.212700px;}
.y197{bottom:160.100700px;}
.y1a7{bottom:160.100850px;}
.yb{bottom:161.075550px;}
.y99{bottom:168.930450px;}
.ydd{bottom:176.078700px;}
.y67{bottom:176.078850px;}
.y196{bottom:179.900850px;}
.y28{bottom:180.212700px;}
.y98{bottom:186.447600px;}
.ydc{bottom:197.078700px;}
.y6e{bottom:197.078850px;}
.y37{bottom:199.392600px;}
.y195{bottom:199.700850px;}
.y27{bottom:201.212700px;}
.y1b3{bottom:202.529400px;}
.y97{bottom:203.964900px;}
.y66{bottom:210.513600px;}
.y36{bottom:217.392600px;}
.y19f{bottom:218.078700px;}
.ye5{bottom:218.078850px;}
.y96{bottom:221.482050px;}
.y26{bottom:222.212700px;}
.ye6{bottom:224.519400px;}
.y6d{bottom:232.441050px;}
.y35{bottom:235.392600px;}
.y95{bottom:238.999350px;}
.y19e{bottom:239.078700px;}
.ye4{bottom:239.078850px;}
.y129{bottom:239.168467px;}
.ydb{bottom:240.349950px;}
.y65{bottom:242.811000px;}
.y25{bottom:243.212700px;}
.y166{bottom:246.783814px;}
.yf1{bottom:249.357024px;}
.y34{bottom:253.392600px;}
.y94{bottom:256.516500px;}
.y16c{bottom:259.226812px;}
.y128{bottom:259.581456px;}
.y19d{bottom:260.078700px;}
.y1a3{bottom:260.078850px;}
.yda{bottom:260.556300px;}
.y24{bottom:264.212700px;}
.yec{bottom:269.770013px;}
.y33{bottom:271.392600px;}
.y184{bottom:271.670100px;}
.y93{bottom:274.033650px;}
.yd9{bottom:277.648350px;}
.y117{bottom:279.967538px;}
.y19c{bottom:281.078700px;}
.y6c{bottom:281.078850px;}
.y174{bottom:281.239585px;}
.y23{bottom:285.212700px;}
.y32{bottom:289.392600px;}
.y12c{bottom:290.209908px;}
.y92{bottom:291.550950px;}
.yd8{bottom:294.740250px;}
.y113{bottom:300.389496px;}
.y19b{bottom:302.078700px;}
.y64{bottom:302.078850px;}
.y22{bottom:306.212700px;}
.y31{bottom:307.392600px;}
.y91{bottom:309.068250px;}
.y132{bottom:310.622897px;}
.yd7{bottom:311.832300px;}
.y1a9{bottom:313.901550px;}
.y169{bottom:318.240428px;}
.y124{bottom:320.820422px;}
.y19a{bottom:323.078700px;}
.y63{bottom:323.078850px;}
.y30{bottom:325.392600px;}
.y90{bottom:326.585400px;}
.y21{bottom:327.212700px;}
.yd6{bottom:328.924350px;}
.ye9{bottom:331.017948px;}
.y15d{bottom:341.214757px;}
.y115{bottom:341.215474px;}
.y62{bottom:344.078850px;}
.y8f{bottom:344.102700px;}
.yd5{bottom:346.016400px;}
.y20{bottom:348.212700px;}
.y15a{bottom:348.876683px;}
.y1b2{bottom:349.529400px;}
.y121{bottom:351.439906px;}
.y1a6{bottom:352.402800px;}
.ye3{bottom:358.441050px;}
.y1ac{bottom:358.780800px;}
.y2f{bottom:360.400500px;}
.y8e{bottom:361.619850px;}
.yf8{bottom:361.637431px;}
.yd4{bottom:363.108450px;}
.y61{bottom:365.078850px;}
.y1a2{bottom:365.992200px;}
.y1f{bottom:369.212700px;}
.y13f{bottom:371.831934px;}
.y12b{bottom:371.870832px;}
.y1a5{bottom:372.202800px;}
.y16d{bottom:373.110194px;}
.y2e{bottom:378.400500px;}
.y1ab{bottom:378.580800px;}
.y8d{bottom:379.137150px;}
.y181{bottom:379.822010px;}
.yd3{bottom:380.200500px;}
.y14e{bottom:382.042747px;}
.y11b{bottom:382.059389px;}
.y1a1{bottom:385.792050px;}
.y60{bottom:386.078850px;}
.y176{bottom:389.964141px;}
.y1e{bottom:390.212700px;}
.y1a4{bottom:392.002800px;}
.y13c{bottom:392.301758px;}
.y2d{bottom:396.400500px;}
.y8c{bottom:396.654300px;}
.yd2{bottom:397.292550px;}
.y1aa{bottom:398.380800px;}
.y14f{bottom:402.460558px;}
.y118{bottom:402.472378px;}
.y1a0{bottom:405.592050px;}
.y5f{bottom:407.078850px;}
.y1d{bottom:411.212550px;}
.y142{bottom:412.663740px;}
.y127{bottom:412.696810px;}
.y8b{bottom:414.171450px;}
.yd1{bottom:414.384450px;}
.y2c{bottom:414.400500px;}
.y156{bottom:418.108744px;}
.y13b{bottom:422.921242px;}
.y5e{bottom:428.078850px;}
.yd0{bottom:431.476500px;}
.y8a{bottom:431.688750px;}
.y146{bottom:431.810923px;}
.y1c{bottom:432.212550px;}
.y116{bottom:433.091861px;}
.y165{bottom:435.191633px;}
.y16f{bottom:441.388330px;}
.y126{bottom:443.316293px;}
.ycf{bottom:448.568550px;}
.y5d{bottom:449.078850px;}
.y89{bottom:449.205900px;}
.y150{bottom:450.950474px;}
.y1b{bottom:453.212550px;}
.yf0{bottom:453.513818px;}
.y1b1{bottom:454.529400px;}
.y171{bottom:461.157471px;}
.y11d{bottom:463.729282px;}
.yce{bottom:465.660600px;}
.y88{bottom:466.723200px;}
.y5c{bottom:470.078850px;}
.y134{bottom:473.953714px;}
.ycd{bottom:482.752650px;}
.y106{bottom:484.133302px;}
.y87{bottom:484.240500px;}
.y1a{bottom:486.352350px;}
.y5b{bottom:491.078850px;}
.y15b{bottom:494.338798px;}
.y130{bottom:494.375671px;}
.ycc{bottom:499.844700px;}
.y86{bottom:501.757650px;}
.y148{bottom:503.103461px;}
.yfb{bottom:504.546290px;}
.y18f{bottom:507.426940px;}
.y153{bottom:510.944725px;}
.y5a{bottom:512.078850px;}
.y107{bottom:514.752785px;}
.ycb{bottom:516.936750px;}
.y1b0{bottom:517.529400px;}
.y85{bottom:519.274950px;}
.y16b{bottom:524.955975px;}
.yf3{bottom:524.977217px;}
.y152{bottom:532.617901px;}
.y59{bottom:533.078850px;}
.yca{bottom:534.453900px;}
.y120{bottom:535.183711px;}
.y84{bottom:536.792100px;}
.y10e{bottom:545.381237px;}
.y18c{bottom:546.526418px;}
.yc9{bottom:551.971050px;}
.y158{bottom:552.421384px;}
.y58{bottom:554.078850px;}
.y83{bottom:554.309400px;}
.y18d{bottom:555.539101px;}
.yfe{bottom:555.587731px;}
.y19{bottom:562.627950px;}
.y172{bottom:565.791597px;}
.y136{bottom:565.821132px;}
.yc8{bottom:569.488350px;}
.y82{bottom:571.826550px;}
.y154{bottom:573.449707px;}
.y57{bottom:575.078850px;}
.yf2{bottom:576.009689px;}
.y1af{bottom:580.529400px;}
.y185{bottom:581.180605px;}
.y131{bottom:586.243090px;}
.yc7{bottom:587.005500px;}
.y81{bottom:589.343700px;}
.y56{bottom:596.078850px;}
.yee{bottom:596.422678px;}
.y18{bottom:603.687900px;}
.y149{bottom:604.066883px;}
.yc6{bottom:604.522800px;}
.y17c{bottom:605.505402px;}
.y109{bottom:606.629172px;}
.y80{bottom:606.861000px;}
.yfa{bottom:616.835666px;}
.y55{bottom:617.078850px;}
.y7f{bottom:618.861000px;}
.yc5{bottom:622.040100px;}
.y14b{bottom:622.256325px;}
.y17{bottom:623.487900px;}
.y11c{bottom:627.051130px;}
.y161{bottom:630.040353px;}
.y7e{bottom:636.378150px;}
.y11a{bottom:637.257624px;}
.y54{bottom:638.078850px;}
.yc4{bottom:639.557250px;}
.y17a{bottom:640.438136px;}
.y16{bottom:643.287900px;}
.y1ae{bottom:643.937100px;}
.y167{bottom:646.012873px;}
.yef{bottom:647.464118px;}
.y6b{bottom:652.441050px;}
.y7d{bottom:653.895450px;}
.y14a{bottom:656.387762px;}
.yc3{bottom:657.074550px;}
.yff{bottom:657.670613px;}
.y53{bottom:659.078850px;}
.y15{bottom:663.087900px;}
.y13e{bottom:665.644650px;}
.y7c{bottom:665.895450px;}
.y123{bottom:667.886076px;}
.y1ad{bottom:673.441050px;}
.yc2{bottom:674.591700px;}
.y168{bottom:675.527313px;}
.y139{bottom:678.119477px;}
.y52{bottom:680.078850px;}
.y14{bottom:682.887750px;}
.y7b{bottom:683.412750px;}
.y12a{bottom:688.317002px;}
.yc1{bottom:692.108850px;}
.y145{bottom:695.941308px;}
.yf4{bottom:698.505559px;}
.y7a{bottom:700.929900px;}
.y51{bottom:701.078850px;}
.y13{bottom:702.687900px;}
.y119{bottom:708.712054px;}
.yc0{bottom:709.626150px;}
.y188{bottom:710.807566px;}
.y79{bottom:712.929900px;}
.yea{bottom:718.918548px;}
.y141{bottom:721.010457px;}
.y50{bottom:722.078850px;}
.y12{bottom:722.487900px;}
.ybf{bottom:727.143300px;}
.y101{bottom:729.134011px;}
.y78{bottom:730.447200px;}
.y179{bottom:731.259427px;}
.y194{bottom:734.947800px;}
.ye2{bottom:735.513600px;}
.y144{bottom:736.776929px;}
.y111{bottom:739.331537px;}
.y11{bottom:742.287900px;}
.y4f{bottom:743.078850px;}
.ybe{bottom:744.660600px;}
.y77{bottom:747.964350px;}
.y12e{bottom:749.573906px;}
.y151{bottom:759.751259px;}
.y11f{bottom:759.762463px;}
.ybd{bottom:762.177750px;}
.y4e{bottom:764.078850px;}
.y76{bottom:765.481500px;}
.y15e{bottom:766.573731px;}
.y177{bottom:767.405553px;}
.ye1{bottom:767.811150px;}
.y110{bottom:769.959989px;}
.y10{bottom:773.385300px;}
.ybc{bottom:779.695050px;}
.yfd{bottom:780.166483px;}
.y75{bottom:782.998800px;}
.y4d{bottom:785.078850px;}
.y17d{bottom:785.930777px;}
.y112{bottom:790.372978px;}
.y74{bottom:794.998800px;}
.ybb{bottom:797.212350px;}
.y175{bottom:798.026546px;}
.y155{bottom:800.132812px;}
.yfc{bottom:800.579472px;}
.y4c{bottom:806.078850px;}
.y17b{bottom:807.684082px;}
.y108{bottom:810.785966px;}
.y73{bottom:812.516100px;}
.yba{bottom:814.729500px;}
.y187{bottom:818.772797px;}
.y1b7{bottom:819.513600px;}
.y122{bottom:821.010398px;}
.y193{bottom:826.506900px;}
.y4b{bottom:827.078850px;}
.y15f{bottom:828.651354px;}
.y72{bottom:830.033250px;}
.y114{bottom:831.198955px;}
.yb9{bottom:832.246800px;}
.yed{bottom:841.414418px;}
.y186{bottom:846.848718px;}
.y71{bottom:847.850400px;}
.y4a{bottom:848.078850px;}
.yb8{bottom:849.763950px;}
.y11e{bottom:851.629882px;}
.y1b6{bottom:851.811000px;}
.ya{bottom:852.666900px;}
.y147{bottom:853.392353px;}
.y70{bottom:856.396500px;}
.y125{bottom:861.845345px;}
.y192{bottom:866.038800px;}
.yb7{bottom:867.281100px;}
.y49{bottom:869.078850px;}
.y17e{bottom:869.483160px;}
.y9{bottom:870.666900px;}
.yeb{bottom:872.033902px;}
.y137{bottom:882.276271px;}
.yb6{bottom:884.798400px;}
.y18a{bottom:887.852230px;}
.y8{bottom:888.666900px;}
.y48{bottom:890.078850px;}
.y162{bottom:892.449858px;}
.y13d{bottom:892.491734px;}
.y6f{bottom:893.736900px;}
.y14d{bottom:901.107681px;}
.yb5{bottom:902.315550px;}
.y10c{bottom:902.653385px;}
.y7{bottom:906.666900px;}
.y47{bottom:911.078850px;}
.y10f{bottom:912.868848px;}
.y160{bottom:917.335853px;}
.y16e{bottom:917.522823px;}
.yb4{bottom:919.832850px;}
.y10a{bottom:923.075342px;}
.y6{bottom:924.666900px;}
.y1b5{bottom:925.441050px;}
.y46{bottom:932.078850px;}
.y10d{bottom:933.281837px;}
.y18b{bottom:936.281095px;}
.yb3{bottom:937.350000px;}
.y157{bottom:943.328402px;}
.ye7{bottom:943.497300px;}
.ya7{bottom:950.050650px;}
.y45{bottom:953.078850px;}
.yf5{bottom:953.703794px;}
.y17f{bottom:954.252751px;}
.yb2{bottom:954.867300px;}
.y5{bottom:959.674650px;}
.y18e{bottom:961.354059px;}
.y140{bottom:962.242827px;}
.y12f{bottom:963.946164px;}
.ya6{bottom:967.567950px;}
.y164{bottom:971.564582px;}
.yb1{bottom:972.384450px;}
.y44{bottom:974.078850px;}
.y100{bottom:974.125752px;}
.y4{bottom:979.474800px;}
.y135{bottom:984.350184px;}
.ya5{bottom:985.085100px;}
.yb0{bottom:989.901750px;}
.ya4{bottom:990.602400px;}
.y16a{bottom:991.974761px;}
.y138{bottom:994.565647px;}
.y43{bottom:995.078850px;}
.ya3{bottom:1002.602400px;}
.y133{bottom:1004.772142px;}
.yaf{bottom:1007.418900px;}
.y159{bottom:1012.880981px;}
.yf9{bottom:1014.951730px;}
.y42{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.ya2{bottom:1020.119700px;}
.y15c{bottom:1020.882504px;}
.y1b4{bottom:1021.529250px;}
.yae{bottom:1024.936200px;}
.y104{bottom:1025.167193px;}
.y183{bottom:1034.242950px;}
.y180{bottom:1034.882308px;}
.y190{bottom:1036.388100px;}
.y41{bottom:1037.078850px;}
.ya1{bottom:1037.636850px;}
.yad{bottom:1042.453350px;}
.yf6{bottom:1045.571213px;}
.y2{bottom:1049.282550px;}
.ya0{bottom:1055.154000px;}
.y103{bottom:1055.786676px;}
.y40{bottom:1058.078850px;}
.y189{bottom:1058.994007px;}
.yac{bottom:1059.970650px;}
.y143{bottom:1061.355634px;}
.y13a{bottom:1066.020077px;}
.y9f{bottom:1072.671300px;}
.y178{bottom:1075.866741px;}
.y10b{bottom:1076.190696px;}
.yab{bottom:1077.487950px;}
.y3f{bottom:1079.078850px;}
.y14c{bottom:1084.959554px;}
.ye8{bottom:1086.406159px;}
.y9e{bottom:1090.488600px;}
.y170{bottom:1094.059999px;}
.yaa{bottom:1095.005100px;}
.y102{bottom:1096.612654px;}
.y173{bottom:1098.715153px;}
.y3e{bottom:1100.078850px;}
.y191{bottom:1100.770200px;}
.y12d{bottom:1106.846054px;}
.yf{bottom:1109.815500px;}
.ya9{bottom:1112.822250px;}
.y182{bottom:1115.584363px;}
.yf7{bottom:1117.025642px;}
.y9d{bottom:1119.282900px;}
.y3d{bottom:1121.078850px;}
.ya8{bottom:1121.368350px;}
.y163{bottom:1125.795176px;}
.y105{bottom:1127.241106px;}
.y39{bottom:1155.615300px;}
.y38{bottom:1175.115300px;}
.y3c{bottom:1178.691750px;}
.h16{height:9.259286px;}
.h18{height:11.111318px;}
.h19{height:13.431264px;}
.h1a{height:22.632355px;}
.h17{height:26.117146px;}
.h12{height:31.059082px;}
.h14{height:31.287598px;}
.h6{height:34.446094px;}
.h13{height:35.781738px;}
.h2{height:38.039062px;}
.hf{height:38.273438px;}
.h5{height:38.531250px;}
.he{height:42.793945px;}
.h7{height:43.004883px;}
.hd{height:43.057617px;}
.h9{height:43.321289px;}
.h8{height:45.615234px;}
.hb{height:48.134766px;}
.h1b{height:49.543945px;}
.h10{height:50.176758px;}
.h4{height:52.948242px;}
.ha{height:54.738281px;}
.hc{height:55.048828px;}
.h15{height:65.242882px;}
.h11{height:65.243482px;}
.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.992100px;}
.xb{left:107.068950px;}
.xd{left:108.286950px;}
.x10{left:112.251900px;}
.x13{left:113.946600px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.xe{left:150.295950px;}
.x19{left:152.811300px;}
.x18{left:156.051000px;}
.x14{left:168.400350px;}
.x15{left:169.795350px;}
.x11{left:231.850050px;}
.x4b{left:269.942477px;}
.x4f{left:283.774390px;}
.x52{left:285.834868px;}
.x4d{left:290.283974px;}
.x40{left:296.602773px;}
.x3e{left:298.293128px;}
.x5{left:300.189000px;}
.x43{left:306.504515px;}
.x51{left:307.561464px;}
.x3c{left:309.038140px;}
.x42{left:311.510713px;}
.xc{left:317.196900px;}
.x2c{left:318.845248px;}
.x1e{left:320.316131px;}
.x3d{left:322.877684px;}
.x4a{left:328.421896px;}
.x41{left:329.528449px;}
.x53{left:331.353585px;}
.x12{left:332.358300px;}
.x46{left:335.290156px;}
.x44{left:337.903910px;}
.x45{left:339.930047px;}
.x37{left:341.760532px;}
.x4e{left:343.738115px;}
.x25{left:344.872705px;}
.x3f{left:347.122641px;}
.xf{left:348.294900px;}
.x47{left:350.407959px;}
.x2a{left:351.527555px;}
.x21{left:352.675561px;}
.x4c{left:353.891693px;}
.x35{left:355.787735px;}
.x1d{left:357.671183px;}
.x22{left:359.626381px;}
.x48{left:361.172049px;}
.x32{left:362.550210px;}
.x1f{left:363.895530px;}
.x2f{left:365.554758px;}
.x30{left:366.756577px;}
.x50{left:367.933469px;}
.x28{left:369.366498px;}
.x2d{left:370.541411px;}
.x1c{left:371.680448px;}
.x36{left:373.241020px;}
.x27{left:375.608783px;}
.x24{left:377.124510px;}
.x31{left:378.263548px;}
.x20{left:379.339804px;}
.x1b{left:382.057350px;}
.x1a{left:383.649450px;}
.x29{left:387.860164px;}
.x3b{left:389.061000px;}
.x3a{left:390.066488px;}
.x33{left:392.514971px;}
.x34{left:394.802015px;}
.x4{left:396.050700px;}
.x2e{left:398.595817px;}
.x49{left:413.347931px;}
.x2b{left:416.102915px;}
.x39{left:419.385496px;}
.x55{left:438.074850px;}
.x16{left:442.242600px;}
.x54{left:456.497850px;}
.x56{left:463.484850px;}
.x26{left:470.310342px;}
.x38{left:472.722949px;}
.x23{left:485.046080px;}
.xa{left:649.641600px;}
.x9{left:670.366200px;}
.x17{left:671.570550px;}
.x1{left:801.350850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:30.386133pt;}
.lsb{letter-spacing:-1.066667pt;}
.ls25{letter-spacing:-0.864000pt;}
.ls20{letter-spacing:-0.853333pt;}
.ls8{letter-spacing:-0.614400pt;}
.ls19{letter-spacing:-0.576000pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls10{letter-spacing:-0.485333pt;}
.ls23{letter-spacing:-0.373333pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.288000pt;}
.ls27{letter-spacing:-0.240000pt;}
.ls6{letter-spacing:-0.181333pt;}
.ls18{letter-spacing:-0.160000pt;}
.ls21{letter-spacing:-0.106667pt;}
.ls7{letter-spacing:-0.090667pt;}
.ls9{letter-spacing:-0.053333pt;}
.ls26{letter-spacing:-0.048000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.006400pt;}
.ls2{letter-spacing:0.010667pt;}
.ls4{letter-spacing:0.022933pt;}
.ls2a{letter-spacing:0.023467pt;}
.ls3{letter-spacing:0.169600pt;}
.ls29{letter-spacing:0.373867pt;}
.ls2b{letter-spacing:0.480000pt;}
.ls2c{letter-spacing:0.533333pt;}
.ls1c{letter-spacing:0.853333pt;}
.ls1d{letter-spacing:1.510933pt;}
.ls1a{letter-spacing:1.809600pt;}
.ls22{letter-spacing:2.042667pt;}
.ls1b{letter-spacing:2.100800pt;}
.ls28{letter-spacing:15.313067pt;}
.ls1e{letter-spacing:19.177600pt;}
.lsf{letter-spacing:37.286933pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ls14{letter-spacing:178.447467pt;}
.ls12{letter-spacing:181.451733pt;}
.ls15{letter-spacing:182.958400pt;}
.ls17{letter-spacing:184.667733pt;}
.lsd{letter-spacing:184.676267pt;}
.lse{letter-spacing:185.116267pt;}
.ls11{letter-spacing:187.697600pt;}
.ls13{letter-spacing:188.518933pt;}
.ls16{letter-spacing:262.557867pt;}
.wsb2{word-spacing:-271.155200pt;}
.ws0{word-spacing:-22.213333pt;}
.ws7{word-spacing:-15.936000pt;}
.wsbe{word-spacing:-14.608000pt;}
.ws18f{word-spacing:-13.653333pt;}
.ws4{word-spacing:-13.280000pt;}
.wsbc{word-spacing:-13.226667pt;}
.ws9{word-spacing:-13.173333pt;}
.ws30{word-spacing:-13.066667pt;}
.ws8{word-spacing:-13.013333pt;}
.ws111{word-spacing:-12.960000pt;}
.wsbd{word-spacing:-12.906667pt;}
.ws2f{word-spacing:-12.746667pt;}
.wsb9{word-spacing:-12.693333pt;}
.wsed{word-spacing:-12.640000pt;}
.ws53{word-spacing:-12.533333pt;}
.ws10f{word-spacing:-12.426667pt;}
.ws110{word-spacing:-12.320000pt;}
.wsec{word-spacing:-12.213333pt;}
.ws51{word-spacing:-12.160000pt;}
.ws52{word-spacing:-12.000000pt;}
.wse3{word-spacing:-11.952000pt;}
.ws6{word-spacing:-11.904000pt;}
.ws14a{word-spacing:-11.856000pt;}
.ws5{word-spacing:-11.760000pt;}
.ws13a{word-spacing:-11.616000pt;}
.wsdc{word-spacing:-11.184000pt;}
.ws149{word-spacing:-11.040000pt;}
.wsc{word-spacing:-10.800000pt;}
.wsa{word-spacing:-10.464000pt;}
.ws2{word-spacing:-9.685333pt;}
.ws2e{word-spacing:-9.600000pt;}
.wsd{word-spacing:-9.301333pt;}
.wse7{word-spacing:-9.066667pt;}
.wse8{word-spacing:-9.013333pt;}
.wsdb{word-spacing:-8.865161pt;}
.ws6c{word-spacing:-8.632000pt;}
.ws73{word-spacing:-8.597333pt;}
.ws99{word-spacing:-8.493333pt;}
.ws1{word-spacing:-8.482261pt;}
.ws3{word-spacing:-8.371200pt;}
.wsef{word-spacing:-8.266667pt;}
.wsee{word-spacing:-8.160000pt;}
.wsde{word-spacing:-5.808000pt;}
.ws11e{word-spacing:-5.440000pt;}
.ws11d{word-spacing:-5.386667pt;}
.wse2{word-spacing:-4.944000pt;}
.wsdd{word-spacing:-4.896000pt;}
.ws157{word-spacing:-3.744000pt;}
.ws2d{word-spacing:-3.466667pt;}
.ws69{word-spacing:-3.413333pt;}
.ws188{word-spacing:-3.120000pt;}
.ws17{word-spacing:-3.024000pt;}
.ws132{word-spacing:-2.986667pt;}
.ws18{word-spacing:-2.976000pt;}
.ws1f{word-spacing:-2.880000pt;}
.wsd4{word-spacing:-2.720000pt;}
.ws105{word-spacing:-2.688000pt;}
.ws40{word-spacing:-2.666667pt;}
.ws106{word-spacing:-2.640000pt;}
.wsbb{word-spacing:-2.506667pt;}
.ws141{word-spacing:-2.496000pt;}
.ws12e{word-spacing:-2.400000pt;}
.ws166{word-spacing:-2.352000pt;}
.ws4c{word-spacing:-2.346667pt;}
.wsd3{word-spacing:-2.293333pt;}
.ws65{word-spacing:-2.240000pt;}
.ws11c{word-spacing:-2.186667pt;}
.ws62{word-spacing:-2.133333pt;}
.ws59{word-spacing:-2.080000pt;}
.wse1{word-spacing:-2.064000pt;}
.ws42{word-spacing:-2.026667pt;}
.wse0{word-spacing:-2.016000pt;}
.ws1b{word-spacing:-1.973333pt;}
.ws64{word-spacing:-1.920000pt;}
.ws193{word-spacing:-1.872000pt;}
.ws58{word-spacing:-1.866667pt;}
.wsc0{word-spacing:-1.813333pt;}
.ws5d{word-spacing:-1.760000pt;}
.ws13e{word-spacing:-1.728000pt;}
.wse9{word-spacing:-1.706667pt;}
.ws15{word-spacing:-1.632000pt;}
.ws153{word-spacing:-1.584000pt;}
.ws165{word-spacing:-1.536000pt;}
.ws15d{word-spacing:-1.440000pt;}
.ws68{word-spacing:-1.386667pt;}
.ws107{word-spacing:-1.344000pt;}
.wsba{word-spacing:-1.333333pt;}
.ws3c{word-spacing:-1.280000pt;}
.ws18d{word-spacing:-1.248000pt;}
.wsc3{word-spacing:-1.226667pt;}
.ws37{word-spacing:-1.173333pt;}
.ws143{word-spacing:-1.152000pt;}
.ws55{word-spacing:-1.120000pt;}
.ws112{word-spacing:-1.066667pt;}
.ws158{word-spacing:-1.008000pt;}
.ws31{word-spacing:-0.960000pt;}
.ws109{word-spacing:-0.906667pt;}
.ws4d{word-spacing:-0.853333pt;}
.ws41{word-spacing:-0.800000pt;}
.ws16{word-spacing:-0.768000pt;}
.ws33{word-spacing:-0.746667pt;}
.ws146{word-spacing:-0.720000pt;}
.ws17e{word-spacing:-0.672000pt;}
.ws96{word-spacing:-0.658667pt;}
.ws21{word-spacing:-0.640000pt;}
.ws152{word-spacing:-0.624000pt;}
.wscc{word-spacing:-0.586667pt;}
.ws175{word-spacing:-0.576000pt;}
.ws2c{word-spacing:-0.533333pt;}
.ws154{word-spacing:-0.528000pt;}
.wsfa{word-spacing:-0.480000pt;}
.ws173{word-spacing:-0.432000pt;}
.ws114{word-spacing:-0.426667pt;}
.wsce{word-spacing:-0.320000pt;}
.ws19{word-spacing:-0.288000pt;}
.ws2a{word-spacing:-0.266667pt;}
.ws11f{word-spacing:-0.213333pt;}
.ws11{word-spacing:-0.192000pt;}
.ws66{word-spacing:-0.160000pt;}
.ws54{word-spacing:-0.106667pt;}
.wsb{word-spacing:-0.048000pt;}
.wse{word-spacing:0.000000pt;}
.ws14{word-spacing:0.048000pt;}
.ws20{word-spacing:0.053333pt;}
.ws10{word-spacing:0.090667pt;}
.ws161{word-spacing:0.096000pt;}
.ws29{word-spacing:0.106667pt;}
.ws172{word-spacing:0.144000pt;}
.wscb{word-spacing:0.160000pt;}
.wsf{word-spacing:0.181333pt;}
.ws1a{word-spacing:0.192000pt;}
.ws16f{word-spacing:0.240000pt;}
.ws3e{word-spacing:0.266667pt;}
.ws140{word-spacing:0.288000pt;}
.ws3b{word-spacing:0.320000pt;}
.ws150{word-spacing:0.336000pt;}
.wsca{word-spacing:0.373333pt;}
.ws155{word-spacing:0.384000pt;}
.ws115{word-spacing:0.426667pt;}
.wsf8{word-spacing:0.480000pt;}
.ws6b{word-spacing:0.533333pt;}
.wsdf{word-spacing:0.576000pt;}
.ws12{word-spacing:0.614400pt;}
.ws16d{word-spacing:0.624000pt;}
.ws39{word-spacing:0.640000pt;}
.ws129{word-spacing:0.693333pt;}
.ws144{word-spacing:0.720000pt;}
.ws18b{word-spacing:0.768000pt;}
.ws11b{word-spacing:0.853333pt;}
.ws14b{word-spacing:0.864000pt;}
.ws56{word-spacing:0.906667pt;}
.ws13d{word-spacing:0.912000pt;}
.ws137{word-spacing:0.960000pt;}
.ws187{word-spacing:1.056000pt;}
.ws5b{word-spacing:1.066667pt;}
.ws138{word-spacing:1.152000pt;}
.wsbf{word-spacing:1.173333pt;}
.ws142{word-spacing:1.200000pt;}
.ws16e{word-spacing:1.248000pt;}
.wsea{word-spacing:1.280000pt;}
.ws145{word-spacing:1.296000pt;}
.ws17f{word-spacing:1.344000pt;}
.wsf7{word-spacing:1.386667pt;}
.wsc1{word-spacing:1.440000pt;}
.wse6{word-spacing:1.493333pt;}
.ws10d{word-spacing:1.536000pt;}
.ws159{word-spacing:1.584000pt;}
.ws130{word-spacing:1.653333pt;}
.ws15c{word-spacing:1.680000pt;}
.wsc4{word-spacing:1.706667pt;}
.ws169{word-spacing:1.728000pt;}
.ws36{word-spacing:1.760000pt;}
.ws6a{word-spacing:1.813333pt;}
.wseb{word-spacing:1.824000pt;}
.ws176{word-spacing:1.872000pt;}
.ws10b{word-spacing:1.973333pt;}
.wsf0{word-spacing:2.026667pt;}
.ws12a{word-spacing:2.064000pt;}
.ws46{word-spacing:2.080000pt;}
.ws2b{word-spacing:2.133333pt;}
.ws16c{word-spacing:2.160000pt;}
.wsf3{word-spacing:2.240000pt;}
.ws48{word-spacing:2.293333pt;}
.ws13{word-spacing:2.304000pt;}
.ws1c{word-spacing:2.346667pt;}
.ws61{word-spacing:2.400000pt;}
.ws5e{word-spacing:2.453333pt;}
.ws13b{word-spacing:2.496000pt;}
.ws24{word-spacing:2.506667pt;}
.ws135{word-spacing:2.544000pt;}
.ws23{word-spacing:2.560000pt;}
.ws151{word-spacing:2.592000pt;}
.ws131{word-spacing:2.613333pt;}
.ws180{word-spacing:2.640000pt;}
.ws133{word-spacing:2.666667pt;}
.ws5a{word-spacing:2.720000pt;}
.ws44{word-spacing:2.773333pt;}
.ws171{word-spacing:2.784000pt;}
.ws5c{word-spacing:2.826667pt;}
.ws156{word-spacing:2.832000pt;}
.ws35{word-spacing:2.880000pt;}
.ws3f{word-spacing:2.933333pt;}
.ws34{word-spacing:2.986667pt;}
.wsd0{word-spacing:3.040000pt;}
.ws4e{word-spacing:3.093333pt;}
.ws22{word-spacing:3.146667pt;}
.ws15e{word-spacing:3.168000pt;}
.ws147{word-spacing:3.216000pt;}
.ws1d{word-spacing:3.253333pt;}
.ws1e{word-spacing:3.306667pt;}
.ws57{word-spacing:3.360000pt;}
.ws170{word-spacing:3.408000pt;}
.ws174{word-spacing:3.456000pt;}
.ws18a{word-spacing:3.504000pt;}
.wsd2{word-spacing:3.520000pt;}
.ws10e{word-spacing:3.552000pt;}
.ws32{word-spacing:3.573333pt;}
.ws148{word-spacing:3.600000pt;}
.ws11a{word-spacing:3.626667pt;}
.ws139{word-spacing:3.648000pt;}
.ws10a{word-spacing:3.680000pt;}
.ws67{word-spacing:3.786667pt;}
.wsd1{word-spacing:3.840000pt;}
.ws13f{word-spacing:3.936000pt;}
.ws26{word-spacing:3.946667pt;}
.ws184{word-spacing:4.032000pt;}
.ws3a{word-spacing:4.053333pt;}
.ws14d{word-spacing:4.080000pt;}
.wsf2{word-spacing:4.106667pt;}
.ws4b{word-spacing:4.213333pt;}
.ws4a{word-spacing:4.266667pt;}
.ws177{word-spacing:4.272000pt;}
.ws15f{word-spacing:4.320000pt;}
.ws160{word-spacing:4.368000pt;}
.wscd{word-spacing:4.373333pt;}
.ws18e{word-spacing:4.416000pt;}
.ws120{word-spacing:4.426667pt;}
.ws14e{word-spacing:4.464000pt;}
.ws25{word-spacing:4.480000pt;}
.ws28{word-spacing:4.533333pt;}
.ws136{word-spacing:4.560000pt;}
.ws12d{word-spacing:4.746667pt;}
.ws134{word-spacing:4.853333pt;}
.ws63{word-spacing:4.906667pt;}
.ws14f{word-spacing:4.944000pt;}
.wsf9{word-spacing:5.013333pt;}
.ws183{word-spacing:5.088000pt;}
.ws182{word-spacing:5.184000pt;}
.ws192{word-spacing:5.328000pt;}
.ws43{word-spacing:5.386667pt;}
.wsf1{word-spacing:5.440000pt;}
.ws168{word-spacing:5.472000pt;}
.ws164{word-spacing:5.520000pt;}
.ws163{word-spacing:5.568000pt;}
.ws128{word-spacing:5.600000pt;}
.ws15a{word-spacing:5.616000pt;}
.ws49{word-spacing:5.653333pt;}
.ws15b{word-spacing:5.712000pt;}
.ws117{word-spacing:5.760000pt;}
.ws13c{word-spacing:5.808000pt;}
.ws47{word-spacing:5.973333pt;}
.ws167{word-spacing:6.000000pt;}
.ws27{word-spacing:6.026667pt;}
.wsc2{word-spacing:6.080000pt;}
.ws121{word-spacing:6.133333pt;}
.ws104{word-spacing:6.186667pt;}
.ws14c{word-spacing:6.384000pt;}
.ws127{word-spacing:6.400000pt;}
.wsff{word-spacing:6.453333pt;}
.ws17a{word-spacing:6.480000pt;}
.ws100{word-spacing:6.506667pt;}
.wsc7{word-spacing:6.613333pt;}
.ws178{word-spacing:6.624000pt;}
.ws16a{word-spacing:6.672000pt;}
.ws3d{word-spacing:6.720000pt;}
.ws16b{word-spacing:6.768000pt;}
.wsf4{word-spacing:6.773333pt;}
.ws4f{word-spacing:6.826667pt;}
.wsfe{word-spacing:6.933333pt;}
.ws191{word-spacing:6.960000pt;}
.ws60{word-spacing:6.986667pt;}
.ws190{word-spacing:7.008000pt;}
.ws125{word-spacing:7.040000pt;}
.wsc6{word-spacing:7.093333pt;}
.wsf6{word-spacing:7.146667pt;}
.ws181{word-spacing:7.152000pt;}
.ws162{word-spacing:7.248000pt;}
.ws122{word-spacing:7.306667pt;}
.ws118{word-spacing:7.360000pt;}
.ws18c{word-spacing:7.392000pt;}
.ws119{word-spacing:7.413333pt;}
.ws17c{word-spacing:7.488000pt;}
.ws116{word-spacing:7.626667pt;}
.wsc9{word-spacing:7.680000pt;}
.wsc8{word-spacing:7.733333pt;}
.ws103{word-spacing:7.786667pt;}
.wse4{word-spacing:7.893333pt;}
.ws101{word-spacing:7.946667pt;}
.ws50{word-spacing:8.000000pt;}
.wse5{word-spacing:8.053333pt;}
.ws12c{word-spacing:8.213333pt;}
.wsc5{word-spacing:8.373333pt;}
.ws5f{word-spacing:8.426667pt;}
.ws10c{word-spacing:8.480000pt;}
.ws108{word-spacing:8.533333pt;}
.ws126{word-spacing:8.586667pt;}
.ws17b{word-spacing:8.592000pt;}
.ws194{word-spacing:8.736000pt;}
.wsfd{word-spacing:9.013333pt;}
.ws179{word-spacing:9.072000pt;}
.ws195{word-spacing:9.120000pt;}
.ws185{word-spacing:9.168000pt;}
.ws38{word-spacing:9.653333pt;}
.ws123{word-spacing:10.560000pt;}
.ws189{word-spacing:10.608000pt;}
.ws124{word-spacing:10.666667pt;}
.ws45{word-spacing:10.826667pt;}
.wsfc{word-spacing:10.933333pt;}
.wsfb{word-spacing:11.040000pt;}
.ws12b{word-spacing:13.013333pt;}
.ws12f{word-spacing:13.173333pt;}
.ws17d{word-spacing:13.440000pt;}
.wsf5{word-spacing:14.720000pt;}
.ws186{word-spacing:15.456000pt;}
.wsd9{word-spacing:15.626667pt;}
.wsd6{word-spacing:16.106667pt;}
.wsd8{word-spacing:16.213333pt;}
.wsd5{word-spacing:16.266667pt;}
.wscf{word-spacing:16.800000pt;}
.ws113{word-spacing:19.040000pt;}
.ws102{word-spacing:19.200000pt;}
.ws196{word-spacing:22.032000pt;}
.wsd7{word-spacing:26.293333pt;}
.wsda{word-spacing:26.400000pt;}
.wsad{word-spacing:67.967467pt;}
.ws95{word-spacing:75.849600pt;}
.ws94{word-spacing:78.569600pt;}
.ws93{word-spacing:81.202133pt;}
.ws78{word-spacing:85.619200pt;}
.wsa6{word-spacing:85.697067pt;}
.ws91{word-spacing:87.885333pt;}
.ws79{word-spacing:91.392000pt;}
.ws9b{word-spacing:91.651200pt;}
.ws9c{word-spacing:91.651733pt;}
.wsa5{word-spacing:91.659733pt;}
.ws9e{word-spacing:91.738667pt;}
.ws7c{word-spacing:92.126400pt;}
.ws8a{word-spacing:92.517867pt;}
.ws89{word-spacing:92.544000pt;}
.wsa8{word-spacing:94.633067pt;}
.wsb8{word-spacing:94.667200pt;}
.ws8e{word-spacing:96.161333pt;}
.ws7a{word-spacing:96.420267pt;}
.wsaa{word-spacing:97.598400pt;}
.wsb6{word-spacing:98.064533pt;}
.wsb3{word-spacing:98.090667pt;}
.ws8f{word-spacing:98.939733pt;}
.wsae{word-spacing:99.000533pt;}
.ws71{word-spacing:100.030933pt;}
.ws7e{word-spacing:100.907200pt;}
.ws7f{word-spacing:100.941867pt;}
.ws97{word-spacing:101.115733pt;}
.ws72{word-spacing:101.427200pt;}
.ws77{word-spacing:102.467733pt;}
.ws75{word-spacing:102.493867pt;}
.ws81{word-spacing:102.883200pt;}
.ws88{word-spacing:102.891733pt;}
.ws70{word-spacing:103.021867pt;}
.wsb0{word-spacing:103.030400pt;}
.ws9f{word-spacing:111.972800pt;}
.ws8b{word-spacing:115.066667pt;}
.ws87{word-spacing:118.635200pt;}
.ws80{word-spacing:121.425067pt;}
.wsa3{word-spacing:122.002400pt;}
.ws86{word-spacing:126.077333pt;}
.ws92{word-spacing:127.173333pt;}
.wsa2{word-spacing:133.428800pt;}
.wsac{word-spacing:136.106667pt;}
.ws74{word-spacing:137.178400pt;}
.wsb4{word-spacing:138.348800pt;}
.wsb5{word-spacing:138.374933pt;}
.ws76{word-spacing:144.680800pt;}
.ws84{word-spacing:158.860267pt;}
.ws8c{word-spacing:161.709867pt;}
.wsa4{word-spacing:172.757867pt;}
.ws8d{word-spacing:174.249600pt;}
.wsab{word-spacing:174.275733pt;}
.ws82{word-spacing:174.756800pt;}
.ws7b{word-spacing:175.980800pt;}
.ws83{word-spacing:176.007467pt;}
.wsb1{word-spacing:179.408000pt;}
.ws85{word-spacing:179.808533pt;}
.wsa1{word-spacing:179.834133pt;}
.wsa0{word-spacing:179.834667pt;}
.ws6f{word-spacing:194.526400pt;}
.ws6e{word-spacing:198.041067pt;}
.wsaf{word-spacing:199.002667pt;}
.ws6d{word-spacing:207.821067pt;}
.ws90{word-spacing:211.841600pt;}
.wsa7{word-spacing:217.234667pt;}
.ws98{word-spacing:226.427200pt;}
.ws9d{word-spacing:247.039467pt;}
.wsa9{word-spacing:248.583467pt;}
.wsb7{word-spacing:250.236800pt;}
.ws7d{word-spacing:250.262933pt;}
.ws9a{word-spacing:330.422933pt;}
._86{margin-left:-9.356267pt;}
._7{margin-left:-8.396267pt;}
._5{margin-left:-6.529600pt;}
._85{margin-left:-5.629867pt;}
._3{margin-left:-4.723733pt;}
._8b{margin-left:-3.701333pt;}
._2{margin-left:-2.793600pt;}
._6{margin-left:-1.875733pt;}
._0{margin-left:-0.952000pt;}
._1{width:1.442133pt;}
._a{width:2.518933pt;}
._9{width:3.440000pt;}
._8{width:5.028267pt;}
._b{width:6.374400pt;}
._87{width:7.772800pt;}
._89{width:9.315200pt;}
._88{width:10.276800pt;}
._8d{width:12.893867pt;}
._81{width:14.263467pt;}
._83{width:15.909333pt;}
._82{width:17.098667pt;}
._8a{width:19.851200pt;}
._84{width:26.354667pt;}
._4{width:32.554667pt;}
._8c{width:38.331733pt;}
._80{width:69.564267pt;}
._59{width:74.113600pt;}
._7e{width:75.608000pt;}
._39{width:79.454933pt;}
._7f{width:81.097600pt;}
._43{width:85.085333pt;}
._36{width:87.674667pt;}
._58{width:88.635200pt;}
._44{width:92.564267pt;}
._18{width:94.535467pt;}
._57{width:97.023467pt;}
._f{width:98.585600pt;}
._1b{width:102.037867pt;}
._28{width:103.973333pt;}
._49{width:105.802133pt;}
._61{width:107.779733pt;}
._2c{width:109.234667pt;}
._14{width:110.138667pt;}
._7c{width:111.030933pt;}
._24{width:112.677067pt;}
._30{width:114.311467pt;}
._5e{width:115.256000pt;}
._67{width:118.443200pt;}
._2b{width:119.533867pt;}
._4e{width:120.944000pt;}
._10{width:126.138133pt;}
._7d{width:127.173867pt;}
._54{width:130.974933pt;}
._53{width:132.253867pt;}
._66{width:133.787200pt;}
._62{width:142.643733pt;}
._7b{width:143.747200pt;}
._11{width:149.440533pt;}
._51{width:150.412267pt;}
._20{width:158.024533pt;}
._55{width:161.219200pt;}
._7a{width:162.134400pt;}
._21{width:165.489600pt;}
._52{width:166.603733pt;}
._56{width:170.197867pt;}
._c{width:171.655467pt;}
._23{width:172.832000pt;}
._74{width:178.025067pt;}
._6b{width:178.984800pt;}
._26{width:180.305600pt;}
._5f{width:181.355200pt;}
._34{width:182.502400pt;}
._38{width:183.790400pt;}
._4c{width:185.148800pt;}
._3f{width:186.966933pt;}
._5a{width:189.140267pt;}
._27{width:190.504000pt;}
._6f{width:193.568533pt;}
._1e{width:197.163200pt;}
._1f{width:204.628267pt;}
._13{width:212.906667pt;}
._72{width:214.053333pt;}
._33{width:215.712000pt;}
._2f{width:217.684267pt;}
._42{width:222.383467pt;}
._2e{width:223.619200pt;}
._2a{width:225.956267pt;}
._65{width:227.407467pt;}
._6c{width:228.757867pt;}
._1c{width:229.853867pt;}
._4d{width:231.907733pt;}
._3b{width:233.268267pt;}
._16{width:236.105600pt;}
._1d{width:237.318933pt;}
._41{width:238.559467pt;}
._17{width:242.076267pt;}
._3e{width:246.016000pt;}
._5b{width:247.378133pt;}
._1a{width:249.549867pt;}
._4a{width:252.597600pt;}
._5c{width:254.842667pt;}
._73{width:255.826667pt;}
._19{width:257.289600pt;}
._25{width:258.551467pt;}
._6a{width:259.552800pt;}
._31{width:262.557867pt;}
._78{width:265.444267pt;}
._2d{width:267.579200pt;}
._68{width:269.804267pt;}
._37{width:274.586133pt;}
._12{width:278.193600pt;}
._70{width:279.236800pt;}
._29{width:280.172267pt;}
._75{width:282.286933pt;}
._6e{width:285.593067pt;}
._71{width:286.701333pt;}
._77{width:289.751467pt;}
._76{width:297.402667pt;}
._46{width:300.741333pt;}
._4b{width:302.300800pt;}
._3a{width:303.916267pt;}
._40{width:308.859200pt;}
._45{width:311.744000pt;}
._60{width:316.552000pt;}
._15{width:322.061333pt;}
._5d{width:324.017067pt;}
._79{width:326.024533pt;}
._63{width:330.600533pt;}
._22{width:334.110933pt;}
._32{width:336.840000pt;}
._35{width:338.686933pt;}
._d{width:339.728533pt;}
._3d{width:343.619200pt;}
._47{width:351.471467pt;}
._6d{width:353.215467pt;}
._3c{width:359.581333pt;}
._64{width:362.257067pt;}
._69{width:366.826667pt;}
._48{width:395.424533pt;}
._4f{width:582.778133pt;}
._e{width:587.892267pt;}
._50{width:613.232000pt;}
.fsa{font-size:11.305600pt;}
.fsc{font-size:13.566933pt;}
.fsd{font-size:27.634133pt;}
.fsb{font-size:31.889067pt;}
.fs3{font-size:34.202667pt;}
.fs9{font-size:34.666667pt;}
.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;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.698800pt;}
.ye0{bottom:100.514400pt;}
.y6a{bottom:100.514533pt;}
.y9c{bottom:103.447733pt;}
.y2b{bottom:104.189067pt;}
.ye{bottom:104.778267pt;}
.y199{bottom:107.111733pt;}
.y1a8{bottom:107.111867pt;}
.yd{bottom:117.578267pt;}
.y9b{bottom:119.018533pt;}
.ydf{bottom:119.181067pt;}
.y69{bottom:119.181200pt;}
.y2a{bottom:122.855733pt;}
.y198{bottom:124.711867pt;}
.yc{bottom:130.378267pt;}
.y9a{bottom:134.589467pt;}
.yde{bottom:137.847733pt;}
.y68{bottom:137.847867pt;}
.y29{bottom:141.522400pt;}
.y197{bottom:142.311733pt;}
.y1a7{bottom:142.311867pt;}
.yb{bottom:143.178267pt;}
.y99{bottom:150.160400pt;}
.ydd{bottom:156.514400pt;}
.y67{bottom:156.514533pt;}
.y196{bottom:159.911867pt;}
.y28{bottom:160.189067pt;}
.y98{bottom:165.731200pt;}
.ydc{bottom:175.181067pt;}
.y6e{bottom:175.181200pt;}
.y37{bottom:177.237867pt;}
.y195{bottom:177.511867pt;}
.y27{bottom:178.855733pt;}
.y1b3{bottom:180.026133pt;}
.y97{bottom:181.302133pt;}
.y66{bottom:187.123200pt;}
.y36{bottom:193.237867pt;}
.y19f{bottom:193.847733pt;}
.ye5{bottom:193.847867pt;}
.y96{bottom:196.872933pt;}
.y26{bottom:197.522400pt;}
.ye6{bottom:199.572800pt;}
.y6d{bottom:206.614267pt;}
.y35{bottom:209.237867pt;}
.y95{bottom:212.443867pt;}
.y19e{bottom:212.514400pt;}
.ye4{bottom:212.514533pt;}
.y129{bottom:212.594193pt;}
.ydb{bottom:213.644400pt;}
.y65{bottom:215.832000pt;}
.y25{bottom:216.189067pt;}
.y166{bottom:219.363390pt;}
.yf1{bottom:221.650688pt;}
.y34{bottom:225.237867pt;}
.y94{bottom:228.014667pt;}
.y16c{bottom:230.423833pt;}
.y128{bottom:230.739072pt;}
.y19d{bottom:231.181067pt;}
.y1a3{bottom:231.181200pt;}
.yda{bottom:231.605600pt;}
.y24{bottom:234.855733pt;}
.yec{bottom:239.795567pt;}
.y33{bottom:241.237867pt;}
.y184{bottom:241.484533pt;}
.y93{bottom:243.585467pt;}
.yd9{bottom:246.798533pt;}
.y117{bottom:248.860034pt;}
.y19c{bottom:249.847733pt;}
.y6c{bottom:249.847867pt;}
.y174{bottom:249.990742pt;}
.y23{bottom:253.522400pt;}
.y32{bottom:257.237867pt;}
.y12c{bottom:257.964363pt;}
.y92{bottom:259.156400pt;}
.yd8{bottom:261.991333pt;}
.y113{bottom:267.012885pt;}
.y19b{bottom:268.514400pt;}
.y64{bottom:268.514533pt;}
.y22{bottom:272.189067pt;}
.y31{bottom:273.237867pt;}
.y91{bottom:274.727333pt;}
.y132{bottom:276.109242pt;}
.yd7{bottom:277.184267pt;}
.y1a9{bottom:279.023600pt;}
.y169{bottom:282.880380pt;}
.y124{bottom:285.173709pt;}
.y19a{bottom:287.181067pt;}
.y63{bottom:287.181200pt;}
.y30{bottom:289.237867pt;}
.y90{bottom:290.298133pt;}
.y21{bottom:290.855733pt;}
.yd6{bottom:292.377200pt;}
.ye9{bottom:294.238176pt;}
.y15d{bottom:303.302007pt;}
.y115{bottom:303.302643pt;}
.y62{bottom:305.847867pt;}
.y8f{bottom:305.869067pt;}
.yd5{bottom:307.570133pt;}
.y20{bottom:309.522400pt;}
.y15a{bottom:310.112607pt;}
.y1b2{bottom:310.692800pt;}
.y121{bottom:312.391027pt;}
.y1a6{bottom:313.246933pt;}
.ye3{bottom:318.614267pt;}
.y1ac{bottom:318.916267pt;}
.y2f{bottom:320.356000pt;}
.y8e{bottom:321.439867pt;}
.yf8{bottom:321.455494pt;}
.yd4{bottom:322.763067pt;}
.y61{bottom:324.514533pt;}
.y1a2{bottom:325.326400pt;}
.y1f{bottom:328.189067pt;}
.y13f{bottom:330.517275pt;}
.y12b{bottom:330.551851pt;}
.y1a5{bottom:330.846933pt;}
.y16d{bottom:331.653506pt;}
.y2e{bottom:336.356000pt;}
.y1ab{bottom:336.516267pt;}
.y8d{bottom:337.010800pt;}
.y181{bottom:337.619565pt;}
.yd3{bottom:337.956000pt;}
.y14e{bottom:339.593553pt;}
.y11b{bottom:339.608346pt;}
.y1a1{bottom:342.926267pt;}
.y60{bottom:343.181200pt;}
.y176{bottom:346.634792pt;}
.y1e{bottom:346.855733pt;}
.y1a4{bottom:348.446933pt;}
.y13c{bottom:348.712674pt;}
.y2d{bottom:352.356000pt;}
.y8c{bottom:352.581600pt;}
.yd2{bottom:353.148933pt;}
.y1aa{bottom:354.116267pt;}
.y14f{bottom:357.742718pt;}
.y118{bottom:357.753225pt;}
.y1a0{bottom:360.526267pt;}
.y5f{bottom:361.847867pt;}
.y1d{bottom:365.522267pt;}
.y142{bottom:366.812213pt;}
.y127{bottom:366.841609pt;}
.y8b{bottom:368.152400pt;}
.yd1{bottom:368.341733pt;}
.y2c{bottom:368.356000pt;}
.y156{bottom:371.652217pt;}
.y13b{bottom:375.929993pt;}
.y5e{bottom:380.514533pt;}
.yd0{bottom:383.534667pt;}
.y8a{bottom:383.723333pt;}
.y146{bottom:383.831931pt;}
.y1c{bottom:384.188933pt;}
.y116{bottom:384.970543pt;}
.y165{bottom:386.837007pt;}
.y16f{bottom:392.345182pt;}
.y126{bottom:394.058927pt;}
.ycf{bottom:398.727600pt;}
.y5d{bottom:399.181200pt;}
.y89{bottom:399.294133pt;}
.y150{bottom:400.844866pt;}
.y1b{bottom:402.855600pt;}
.yf0{bottom:403.123394pt;}
.y1b1{bottom:404.026133pt;}
.y171{bottom:409.917752pt;}
.y11d{bottom:412.203806pt;}
.yce{bottom:413.920533pt;}
.y88{bottom:414.865067pt;}
.y5c{bottom:417.847867pt;}
.y134{bottom:421.292190pt;}
.ycd{bottom:429.113467pt;}
.y106{bottom:430.340713pt;}
.y87{bottom:430.436000pt;}
.y1a{bottom:432.313200pt;}
.y5b{bottom:436.514533pt;}
.y15b{bottom:439.412265pt;}
.y130{bottom:439.445041pt;}
.ycc{bottom:444.306400pt;}
.y86{bottom:446.006800pt;}
.y148{bottom:447.203077pt;}
.yfb{bottom:448.485591pt;}
.y18f{bottom:451.046169pt;}
.y153{bottom:454.173089pt;}
.y5a{bottom:455.181200pt;}
.y107{bottom:457.558031pt;}
.ycb{bottom:459.499333pt;}
.y1b0{bottom:460.026133pt;}
.y85{bottom:461.577733pt;}
.y16b{bottom:466.627534pt;}
.yf3{bottom:466.646415pt;}
.y152{bottom:473.438134pt;}
.y59{bottom:473.847867pt;}
.yca{bottom:475.070133pt;}
.y120{bottom:475.718854pt;}
.y84{bottom:477.148533pt;}
.y10e{bottom:484.783322pt;}
.y18c{bottom:485.801261pt;}
.yc9{bottom:490.640933pt;}
.y158{bottom:491.041230pt;}
.y58{bottom:492.514533pt;}
.y83{bottom:492.719467pt;}
.y18d{bottom:493.812535pt;}
.yfe{bottom:493.855761pt;}
.y19{bottom:500.113733pt;}
.y172{bottom:502.925864pt;}
.y136{bottom:502.952117pt;}
.yc8{bottom:506.211867pt;}
.y82{bottom:508.290267pt;}
.y154{bottom:509.733073pt;}
.y57{bottom:511.181200pt;}
.yf2{bottom:512.008612pt;}
.y1af{bottom:516.026133pt;}
.y185{bottom:516.604983pt;}
.y131{bottom:521.104969pt;}
.yc7{bottom:521.782667pt;}
.y81{bottom:523.861067pt;}
.y56{bottom:529.847867pt;}
.yee{bottom:530.153491pt;}
.y18{bottom:536.611467pt;}
.y149{bottom:536.948341pt;}
.yc6{bottom:537.353600pt;}
.y17c{bottom:538.227024pt;}
.y109{bottom:539.225931pt;}
.y80{bottom:539.432000pt;}
.yfa{bottom:548.298370pt;}
.y55{bottom:548.514533pt;}
.y7f{bottom:550.098667pt;}
.yc5{bottom:552.924533pt;}
.y14b{bottom:553.116734pt;}
.y17{bottom:554.211467pt;}
.y11c{bottom:557.378782pt;}
.y161{bottom:560.035870pt;}
.y7e{bottom:565.669467pt;}
.y11a{bottom:566.451221pt;}
.y54{bottom:567.181200pt;}
.yc4{bottom:568.495333pt;}
.y17a{bottom:569.278343pt;}
.y16{bottom:571.811467pt;}
.y1ae{bottom:572.388533pt;}
.y167{bottom:574.233665pt;}
.yef{bottom:575.523661pt;}
.y6b{bottom:579.947600pt;}
.y7d{bottom:581.240400pt;}
.y14a{bottom:583.455788pt;}
.yc3{bottom:584.066267pt;}
.yff{bottom:584.596100pt;}
.y53{bottom:585.847867pt;}
.y15{bottom:589.411467pt;}
.y13e{bottom:591.684133pt;}
.y7c{bottom:591.907067pt;}
.y123{bottom:593.676512pt;}
.y1ad{bottom:598.614267pt;}
.yc2{bottom:599.637067pt;}
.y168{bottom:600.468723pt;}
.y139{bottom:602.772868pt;}
.y52{bottom:604.514533pt;}
.y14{bottom:607.011333pt;}
.y7b{bottom:607.478000pt;}
.y12a{bottom:611.837335pt;}
.yc1{bottom:615.207867pt;}
.y145{bottom:618.614496pt;}
.yf4{bottom:620.893830pt;}
.y7a{bottom:623.048800pt;}
.y51{bottom:623.181200pt;}
.y13{bottom:624.611467pt;}
.y119{bottom:629.966270pt;}
.yc0{bottom:630.778800pt;}
.y188{bottom:631.828947pt;}
.y79{bottom:633.715467pt;}
.yea{bottom:639.038709pt;}
.y141{bottom:640.898184pt;}
.y50{bottom:641.847867pt;}
.y12{bottom:642.211467pt;}
.ybf{bottom:646.349600pt;}
.y101{bottom:648.119121pt;}
.y78{bottom:649.286400pt;}
.y179{bottom:650.008380pt;}
.y194{bottom:653.286933pt;}
.ye2{bottom:653.789867pt;}
.y144{bottom:654.912826pt;}
.y111{bottom:657.183588pt;}
.y11{bottom:659.811467pt;}
.y4f{bottom:660.514533pt;}
.ybe{bottom:661.920533pt;}
.y77{bottom:664.857200pt;}
.y12e{bottom:666.287917pt;}
.y151{bottom:675.334453pt;}
.y11f{bottom:675.344412pt;}
.ybd{bottom:677.491333pt;}
.y4e{bottom:679.181200pt;}
.y76{bottom:680.428000pt;}
.y15e{bottom:681.398872pt;}
.y177{bottom:682.138270pt;}
.ye1{bottom:682.498800pt;}
.y110{bottom:684.408879pt;}
.y10{bottom:687.453600pt;}
.ybc{bottom:693.062267pt;}
.yfd{bottom:693.481318pt;}
.y75{bottom:695.998933pt;}
.y4d{bottom:697.847867pt;}
.y17d{bottom:698.605135pt;}
.y112{bottom:702.553758pt;}
.y74{bottom:706.665600pt;}
.ybb{bottom:708.633200pt;}
.y175{bottom:709.356930pt;}
.y155{bottom:711.229166pt;}
.yfc{bottom:711.626197pt;}
.y4c{bottom:716.514533pt;}
.y17b{bottom:717.941407pt;}
.y108{bottom:720.698637pt;}
.y73{bottom:722.236533pt;}
.yba{bottom:724.204000pt;}
.y187{bottom:727.798042pt;}
.y1b7{bottom:728.456533pt;}
.y122{bottom:729.787021pt;}
.y193{bottom:734.672800pt;}
.y4b{bottom:735.181200pt;}
.y15f{bottom:736.578981pt;}
.y72{bottom:737.807333pt;}
.y114{bottom:738.843516pt;}
.yb9{bottom:739.774933pt;}
.yed{bottom:747.923927pt;}
.y186{bottom:752.754416pt;}
.y71{bottom:753.644800pt;}
.y4a{bottom:753.847867pt;}
.yb8{bottom:755.345733pt;}
.y11e{bottom:757.004339pt;}
.y1b6{bottom:757.165333pt;}
.ya{bottom:757.926133pt;}
.y147{bottom:758.570980pt;}
.y70{bottom:761.241333pt;}
.y125{bottom:766.084751pt;}
.y192{bottom:769.812267pt;}
.yb7{bottom:770.916533pt;}
.y49{bottom:772.514533pt;}
.y17e{bottom:772.873920pt;}
.y9{bottom:773.926133pt;}
.yeb{bottom:775.141246pt;}
.y137{bottom:784.245574pt;}
.yb6{bottom:786.487467pt;}
.y18a{bottom:789.201982pt;}
.y8{bottom:789.926133pt;}
.y48{bottom:791.181200pt;}
.y162{bottom:793.288763pt;}
.y13d{bottom:793.325986pt;}
.y6f{bottom:794.432800pt;}
.y14d{bottom:800.984606pt;}
.yb5{bottom:802.058267pt;}
.y10c{bottom:802.358564pt;}
.y7{bottom:805.926133pt;}
.y47{bottom:809.847867pt;}
.y10f{bottom:811.438976pt;}
.y160{bottom:815.409647pt;}
.y16e{bottom:815.575842pt;}
.yb4{bottom:817.629200pt;}
.y10a{bottom:820.511415pt;}
.y6{bottom:821.926133pt;}
.y1b5{bottom:822.614267pt;}
.y46{bottom:828.514533pt;}
.y10d{bottom:829.583855pt;}
.y18b{bottom:832.249862pt;}
.yb3{bottom:833.200000pt;}
.y157{bottom:838.514135pt;}
.ye7{bottom:838.664267pt;}
.ya7{bottom:844.489467pt;}
.y45{bottom:847.181200pt;}
.yf5{bottom:847.736706pt;}
.y17f{bottom:848.224667pt;}
.yb2{bottom:848.770933pt;}
.y5{bottom:853.044133pt;}
.y18e{bottom:854.536942pt;}
.y140{bottom:855.326957pt;}
.y12f{bottom:856.841035pt;}
.ya6{bottom:860.060400pt;}
.y164{bottom:863.612962pt;}
.yb1{bottom:864.341733pt;}
.y44{bottom:865.847867pt;}
.y100{bottom:865.889557pt;}
.y4{bottom:870.644267pt;}
.y135{bottom:874.977941pt;}
.ya5{bottom:875.631200pt;}
.yb0{bottom:879.912667pt;}
.ya4{bottom:880.535467pt;}
.y16a{bottom:881.755343pt;}
.y138{bottom:884.058353pt;}
.y43{bottom:884.514533pt;}
.ya3{bottom:891.202133pt;}
.y133{bottom:893.130793pt;}
.yaf{bottom:895.483467pt;}
.y159{bottom:900.338650pt;}
.yf9{bottom:902.179315pt;}
.y42{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.ya2{bottom:906.773067pt;}
.y15c{bottom:907.451115pt;}
.y1b4{bottom:908.026000pt;}
.yae{bottom:911.054400pt;}
.y104{bottom:911.259727pt;}
.y183{bottom:919.327067pt;}
.y180{bottom:919.895385pt;}
.y190{bottom:921.233867pt;}
.y41{bottom:921.847867pt;}
.ya1{bottom:922.343867pt;}
.yad{bottom:926.625200pt;}
.yf6{bottom:929.396634pt;}
.y2{bottom:932.695600pt;}
.ya0{bottom:937.914667pt;}
.y103{bottom:938.477045pt;}
.y40{bottom:940.514533pt;}
.y189{bottom:941.328006pt;}
.yac{bottom:942.196133pt;}
.y143{bottom:943.427230pt;}
.y13a{bottom:947.573402pt;}
.y9f{bottom:953.485600pt;}
.y178{bottom:956.325992pt;}
.y10b{bottom:956.613952pt;}
.yab{bottom:957.767067pt;}
.y3f{bottom:959.181200pt;}
.y14c{bottom:964.408493pt;}
.ye8{bottom:965.694364pt;}
.y9e{bottom:969.323200pt;}
.y170{bottom:972.497777pt;}
.yaa{bottom:973.337867pt;}
.y102{bottom:974.766803pt;}
.y173{bottom:976.635691pt;}
.y3e{bottom:977.847867pt;}
.y191{bottom:978.462400pt;}
.y12d{bottom:983.863159pt;}
.yf{bottom:986.502667pt;}
.ya9{bottom:989.175333pt;}
.y182{bottom:991.630545pt;}
.yf7{bottom:992.911682pt;}
.y9d{bottom:994.918133pt;}
.y3d{bottom:996.514533pt;}
.ya8{bottom:996.771867pt;}
.y163{bottom:1000.706823pt;}
.y105{bottom:1001.992094pt;}
.y39{bottom:1027.213600pt;}
.y38{bottom:1044.546933pt;}
.y3c{bottom:1047.726000pt;}
.h16{height:8.230477pt;}
.h18{height:9.876727pt;}
.h19{height:11.938901pt;}
.h1a{height:20.117649pt;}
.h17{height:23.215241pt;}
.h12{height:27.608073pt;}
.h14{height:27.811198pt;}
.h6{height:30.618750pt;}
.h13{height:31.805990pt;}
.h2{height:33.812500pt;}
.hf{height:34.020833pt;}
.h5{height:34.250000pt;}
.he{height:38.039062pt;}
.h7{height:38.226562pt;}
.hd{height:38.273438pt;}
.h9{height:38.507812pt;}
.h8{height:40.546875pt;}
.hb{height:42.786458pt;}
.h1b{height:44.039062pt;}
.h10{height:44.601562pt;}
.h4{height:47.065104pt;}
.ha{height:48.656250pt;}
.hc{height:48.932292pt;}
.h15{height:57.993673pt;}
.h11{height:57.994206pt;}
.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.881867pt;}
.xb{left:95.172400pt;}
.xd{left:96.255067pt;}
.x10{left:99.779467pt;}
.x13{left:101.285867pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.xe{left:133.596400pt;}
.x19{left:135.832267pt;}
.x18{left:138.712000pt;}
.x14{left:149.689200pt;}
.x15{left:150.929200pt;}
.x11{left:206.088933pt;}
.x4b{left:239.948869pt;}
.x4f{left:252.243902pt;}
.x52{left:254.075438pt;}
.x4d{left:258.030199pt;}
.x40{left:263.646910pt;}
.x3e{left:265.149447pt;}
.x5{left:266.834667pt;}
.x43{left:272.448458pt;}
.x51{left:273.387968pt;}
.x3c{left:274.700569pt;}
.x42{left:276.898412pt;}
.xc{left:281.952800pt;}
.x2c{left:283.417998pt;}
.x1e{left:284.725450pt;}
.x3d{left:287.002385pt;}
.x4a{left:291.930574pt;}
.x41{left:292.914177pt;}
.x53{left:294.536520pt;}
.x12{left:295.429600pt;}
.x46{left:298.035694pt;}
.x44{left:300.359031pt;}
.x45{left:302.160042pt;}
.x37{left:303.787139pt;}
.x4e{left:305.544991pt;}
.x25{left:306.553516pt;}
.x3f{left:308.553459pt;}
.xf{left:309.595467pt;}
.x47{left:311.473741pt;}
.x2a{left:312.468938pt;}
.x21{left:313.489388pt;}
.x4c{left:314.570394pt;}
.x35{left:316.255764pt;}
.x1d{left:317.929940pt;}
.x22{left:319.667894pt;}
.x48{left:321.041821pt;}
.x32{left:322.266853pt;}
.x1f{left:323.462693pt;}
.x2f{left:324.937563pt;}
.x30{left:326.005846pt;}
.x50{left:327.051973pt;}
.x28{left:328.325776pt;}
.x2d{left:329.370143pt;}
.x1c{left:330.382621pt;}
.x36{left:331.769795pt;}
.x27{left:333.874474pt;}
.x24{left:335.221787pt;}
.x31{left:336.234265pt;}
.x20{left:337.190937pt;}
.x1b{left:339.606533pt;}
.x1a{left:341.021733pt;}
.x29{left:344.764590pt;}
.x3b{left:345.832000pt;}
.x3a{left:346.725767pt;}
.x33{left:348.902196pt;}
.x34{left:350.935124pt;}
.x4{left:352.045067pt;}
.x2e{left:354.307393pt;}
.x49{left:367.420383pt;}
.x2b{left:369.869258pt;}
.x39{left:372.787107pt;}
.x55{left:389.399867pt;}
.x16{left:393.104533pt;}
.x54{left:405.775867pt;}
.x56{left:411.986533pt;}
.x26{left:418.053637pt;}
.x38{left:420.198177pt;}
.x23{left:431.152071pt;}
.xa{left:577.459200pt;}
.x9{left:595.881067pt;}
.x17{left:596.951600pt;}
.x1{left:712.311867pt;}
}




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