
    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_d35c300c9098320cf1af2700.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_a7936bfbb0c8b404406fa7dd.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_03666f920d20909aaab9e5e5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958630;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_c84ecc279e46129e87b49ff3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.041992;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_256520b05d3106d6dce616fc.woff')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_b32c16a68d4db5ac9403b8b4.woff')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_50e03009e7aac16b4fe4e658.woff')format("woff");}.ff7{font-family:ff7;line-height:1.102051;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_8bf0cf04daea7b97d28730f8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.964860;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_6b735685431a2ceb60749d75.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_38d291a31a238691ddc9c8dd.woff')format("woff");}.ffa{font-family:ffa;line-height:0.976607;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_abdb52eb2aac6fbe0e98027e.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5cfca6f3f6115ecf6b317878.woff')format("woff");}.ffc{font-family:ffc;line-height:0.961048;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_c47a1b43392744936cbf2b23.woff')format("woff");}.ffd{font-family:ffd;line-height:0.976109;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_7ceebb9e90e84e2872e1ac18.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5d0fdccf20621a490a3011f9.woff')format("woff");}.fff{font-family:fff;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;}
.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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.104000px;}
.v2{vertical-align:18.036000px;}
.v4{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v5{vertical-align:30.000000px;}
.ls1b{letter-spacing:-7.236000px;}
.ls13{letter-spacing:-6.060000px;}
.ls1a{letter-spacing:-3.240000px;}
.ls33{letter-spacing:-3.060000px;}
.ls14{letter-spacing:-2.760000px;}
.ls15{letter-spacing:-2.460000px;}
.ls16{letter-spacing:-2.100000px;}
.ls1f{letter-spacing:-1.200000px;}
.ls10{letter-spacing:-1.080000px;}
.ls2b{letter-spacing:-1.020000px;}
.ls32{letter-spacing:-0.960000px;}
.lsb{letter-spacing:-0.918000px;}
.ls18{letter-spacing:-0.900000px;}
.ls3c{letter-spacing:-0.840000px;}
.ls31{letter-spacing:-0.780000px;}
.ls3e{letter-spacing:-0.756000px;}
.ls17{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.691200px;}
.ls20{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.594000px;}
.ls39{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.510000px;}
.ls2d{letter-spacing:-0.480000px;}
.ls36{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.420000px;}
.ls2a{letter-spacing:-0.360000px;}
.ls35{letter-spacing:-0.336000px;}
.ls8{letter-spacing:-0.324000px;}
.ls24{letter-spacing:-0.300000px;}
.ls2f{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.204000px;}
.ls9{letter-spacing:-0.188892px;}
.ls30{letter-spacing:-0.180000px;}
.ls1c{letter-spacing:-0.120000px;}
.ls3{letter-spacing:-0.102000px;}
.lsf{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.108000px;}
.ls28{letter-spacing:0.120000px;}
.ls23{letter-spacing:0.150000px;}
.ls27{letter-spacing:0.180000px;}
.ls40{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.240000px;}
.ls22{letter-spacing:0.282000px;}
.ls45{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.306000px;}
.ls26{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.420000px;}
.lsd{letter-spacing:0.480000px;}
.ls44{letter-spacing:0.540000px;}
.ls3a{letter-spacing:0.600000px;}
.ls29{letter-spacing:0.660000px;}
.ls42{letter-spacing:0.729000px;}
.ls41{letter-spacing:0.756000px;}
.ls1e{letter-spacing:0.780000px;}
.ls38{letter-spacing:0.810000px;}
.ls12{letter-spacing:0.840000px;}
.ls43{letter-spacing:0.864000px;}
.ls3b{letter-spacing:0.900000px;}
.lse{letter-spacing:0.960000px;}
.lsc{letter-spacing:1.020000px;}
.ls3f{letter-spacing:1.026000px;}
.ls11{letter-spacing:1.080000px;}
.ls3d{letter-spacing:1.140000px;}
.ls37{letter-spacing:1.200000px;}
.ls1d{letter-spacing:1.917000px;}
.ls2e{letter-spacing:3.420000px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.ls34{letter-spacing:393.936000px;}
.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;}
}
.ws161{word-spacing:-60.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws7f{word-spacing:-16.434000px;}
.ws98{word-spacing:-16.302000px;}
.ws135{word-spacing:-15.960000px;}
.ws1c5{word-spacing:-15.840000px;}
.ws166{word-spacing:-15.780000px;}
.ws5b{word-spacing:-15.660000px;}
.ws99{word-spacing:-15.540000px;}
.ws106{word-spacing:-15.480000px;}
.ws186{word-spacing:-15.300000px;}
.ws5a{word-spacing:-15.180000px;}
.ws211{word-spacing:-15.000000px;}
.ws5{word-spacing:-14.940000px;}
.wsd6{word-spacing:-14.880000px;}
.wsd7{word-spacing:-14.820000px;}
.ws15f{word-spacing:-14.760000px;}
.ws9{word-spacing:-14.700000px;}
.ws159{word-spacing:-14.640000px;}
.wsf0{word-spacing:-14.580000px;}
.ws1a1{word-spacing:-14.520000px;}
.ws134{word-spacing:-14.460000px;}
.ws1e8{word-spacing:-14.418000px;}
.ws1c6{word-spacing:-14.400000px;}
.ws160{word-spacing:-14.340000px;}
.wsd8{word-spacing:-14.280000px;}
.ws20c{word-spacing:-14.256000px;}
.ws162{word-spacing:-14.220000px;}
.ws1f5{word-spacing:-14.148000px;}
.ws1f6{word-spacing:-14.121000px;}
.ws10e{word-spacing:-14.100000px;}
.ws18e{word-spacing:-14.040000px;}
.ws1f4{word-spacing:-13.986000px;}
.ws163{word-spacing:-13.980000px;}
.ws14c{word-spacing:-13.920000px;}
.ws190{word-spacing:-13.680000px;}
.wsef{word-spacing:-13.620000px;}
.ws1e9{word-spacing:-13.608000px;}
.ws107{word-spacing:-13.500000px;}
.ws1cb{word-spacing:-13.446000px;}
.ws1e7{word-spacing:-13.392000px;}
.ws1ae{word-spacing:-13.380000px;}
.ws1c0{word-spacing:-13.320000px;}
.ws1ac{word-spacing:-13.260000px;}
.wsca{word-spacing:-13.230000px;}
.ws194{word-spacing:-13.200000px;}
.ws1a9{word-spacing:-13.080000px;}
.ws1f3{word-spacing:-13.068000px;}
.ws6{word-spacing:-12.906000px;}
.ws1a3{word-spacing:-12.720000px;}
.ws1de{word-spacing:-12.690000px;}
.ws1a8{word-spacing:-12.600000px;}
.ws188{word-spacing:-12.420000px;}
.wsa{word-spacing:-12.366000px;}
.ws18b{word-spacing:-12.240000px;}
.ws18f{word-spacing:-12.180000px;}
.wse{word-spacing:-12.150000px;}
.ws1be{word-spacing:-12.120000px;}
.ws17b{word-spacing:-11.904000px;}
.ws1b3{word-spacing:-11.880000px;}
.ws17d{word-spacing:-11.568000px;}
.wsb{word-spacing:-11.448000px;}
.ws1af{word-spacing:-11.280000px;}
.wsc{word-spacing:-11.232000px;}
.wsf{word-spacing:-10.992000px;}
.ws18d{word-spacing:-10.920000px;}
.ws3{word-spacing:-10.896000px;}
.ws33{word-spacing:-10.800000px;}
.ws18c{word-spacing:-10.500000px;}
.ws1bd{word-spacing:-10.200000px;}
.ws1a6{word-spacing:-10.080000px;}
.ws1c1{word-spacing:-9.960000px;}
.ws4{word-spacing:-9.892800px;}
.ws2{word-spacing:-9.618000px;}
.ws19c{word-spacing:-9.540000px;}
.ws1b4{word-spacing:-9.480000px;}
.ws1ad{word-spacing:-9.060000px;}
.ws195{word-spacing:-8.820000px;}
.ws34{word-spacing:-8.675040px;}
.ws1b9{word-spacing:-8.640000px;}
.ws196{word-spacing:-8.520000px;}
.ws1ba{word-spacing:-8.460000px;}
.ws1a5{word-spacing:-8.400000px;}
.ws19f{word-spacing:-7.920000px;}
.ws1bf{word-spacing:-7.860000px;}
.ws204{word-spacing:-7.807536px;}
.ws1b1{word-spacing:-7.620000px;}
.ws7{word-spacing:-7.618644px;}
.ws1b0{word-spacing:-7.140000px;}
.ws19b{word-spacing:-7.080000px;}
.ws1a7{word-spacing:-6.720000px;}
.ws1b6{word-spacing:-6.660000px;}
.ws192{word-spacing:-6.300000px;}
.wsb9{word-spacing:-6.060000px;}
.wse2{word-spacing:-5.520000px;}
.ws1a4{word-spacing:-5.460000px;}
.ws198{word-spacing:-5.220000px;}
.ws1c8{word-spacing:-5.160000px;}
.ws1b8{word-spacing:-4.980000px;}
.ws19d{word-spacing:-4.800000px;}
.ws1c4{word-spacing:-4.740000px;}
.ws152{word-spacing:-4.620000px;}
.ws13c{word-spacing:-4.500000px;}
.ws13d{word-spacing:-4.440000px;}
.wsdc{word-spacing:-4.320000px;}
.ws12f{word-spacing:-4.260000px;}
.wsfb{word-spacing:-4.200000px;}
.ws143{word-spacing:-4.080000px;}
.ws137{word-spacing:-3.900000px;}
.wsf9{word-spacing:-3.840000px;}
.ws158{word-spacing:-3.780000px;}
.ws154{word-spacing:-3.720000px;}
.ws1e3{word-spacing:-3.600000px;}
.ws20b{word-spacing:-3.564000px;}
.ws1c2{word-spacing:-3.540000px;}
.ws127{word-spacing:-3.480000px;}
.ws199{word-spacing:-3.420000px;}
.ws1a0{word-spacing:-3.360000px;}
.ws40{word-spacing:-3.300000px;}
.ws1ff{word-spacing:-3.294000px;}
.ws149{word-spacing:-3.240000px;}
.wsad{word-spacing:-3.180000px;}
.ws145{word-spacing:-3.120000px;}
.ws165{word-spacing:-3.060000px;}
.ws121{word-spacing:-3.000000px;}
.wsf1{word-spacing:-2.940000px;}
.ws29{word-spacing:-2.916000px;}
.ws38{word-spacing:-2.880000px;}
.ws2a{word-spacing:-2.862000px;}
.wsf3{word-spacing:-2.820000px;}
.wsba{word-spacing:-2.760000px;}
.ws104{word-spacing:-2.754000px;}
.wsbb{word-spacing:-2.700000px;}
.ws17{word-spacing:-2.646000px;}
.ws2d{word-spacing:-2.640000px;}
.ws113{word-spacing:-2.592000px;}
.wse4{word-spacing:-2.580000px;}
.ws43{word-spacing:-2.520000px;}
.ws1d7{word-spacing:-2.484000px;}
.ws3f{word-spacing:-2.460000px;}
.ws1d8{word-spacing:-2.430000px;}
.ws148{word-spacing:-2.400000px;}
.ws18{word-spacing:-2.376000px;}
.ws14a{word-spacing:-2.340000px;}
.wsfe{word-spacing:-2.322000px;}
.ws3b{word-spacing:-2.280000px;}
.ws114{word-spacing:-2.268000px;}
.ws6b{word-spacing:-2.220000px;}
.ws3c{word-spacing:-2.160000px;}
.wsbd{word-spacing:-2.106000px;}
.wsc7{word-spacing:-2.100000px;}
.ws19{word-spacing:-2.052000px;}
.wsdf{word-spacing:-2.040000px;}
.ws1f2{word-spacing:-1.998000px;}
.ws41{word-spacing:-1.980000px;}
.ws120{word-spacing:-1.920000px;}
.ws16{word-spacing:-1.890000px;}
.ws85{word-spacing:-1.860000px;}
.ws1c{word-spacing:-1.836000px;}
.wsdb{word-spacing:-1.800000px;}
.ws1e0{word-spacing:-1.782000px;}
.wse6{word-spacing:-1.740000px;}
.ws1f0{word-spacing:-1.728000px;}
.wsda{word-spacing:-1.680000px;}
.ws1dd{word-spacing:-1.674000px;}
.ws123{word-spacing:-1.620000px;}
.ws1e2{word-spacing:-1.566000px;}
.wsde{word-spacing:-1.560000px;}
.ws1f{word-spacing:-1.512000px;}
.ws128{word-spacing:-1.500000px;}
.ws91{word-spacing:-1.440000px;}
.ws103{word-spacing:-1.404000px;}
.ws142{word-spacing:-1.380000px;}
.wsec{word-spacing:-1.350000px;}
.wsb5{word-spacing:-1.320000px;}
.ws184{word-spacing:-1.296000px;}
.wsf7{word-spacing:-1.260000px;}
.ws1d3{word-spacing:-1.242000px;}
.ws10f{word-spacing:-1.200000px;}
.ws1db{word-spacing:-1.188000px;}
.wsa3{word-spacing:-1.140000px;}
.ws1b{word-spacing:-1.134000px;}
.ws95{word-spacing:-1.080000px;}
.ws31{word-spacing:-1.026000px;}
.ws51{word-spacing:-1.020000px;}
.ws7a{word-spacing:-0.960000px;}
.wsee{word-spacing:-0.918000px;}
.ws181{word-spacing:-0.912000px;}
.ws12d{word-spacing:-0.900000px;}
.ws20d{word-spacing:-0.864000px;}
.ws45{word-spacing:-0.840000px;}
.ws177{word-spacing:-0.810000px;}
.wsa0{word-spacing:-0.780000px;}
.ws202{word-spacing:-0.756000px;}
.ws118{word-spacing:-0.720000px;}
.wsc4{word-spacing:-0.660000px;}
.ws71{word-spacing:-0.600000px;}
.ws200{word-spacing:-0.594000px;}
.ws58{word-spacing:-0.540000px;}
.ws1d4{word-spacing:-0.486000px;}
.ws60{word-spacing:-0.480000px;}
.ws5c{word-spacing:-0.420000px;}
.ws0{word-spacing:-0.408000px;}
.ws187{word-spacing:-0.378000px;}
.ws86{word-spacing:-0.360000px;}
.ws1fe{word-spacing:-0.324000px;}
.ws75{word-spacing:-0.300000px;}
.ws3a{word-spacing:-0.240000px;}
.ws13{word-spacing:-0.216000px;}
.ws49{word-spacing:-0.180000px;}
.wse7{word-spacing:-0.162000px;}
.ws110{word-spacing:-0.120000px;}
.ws1df{word-spacing:-0.108000px;}
.wsc3{word-spacing:-0.060000px;}
.wsd{word-spacing:-0.054000px;}
.ws10{word-spacing:0.000000px;}
.ws25{word-spacing:0.054000px;}
.ws81{word-spacing:0.060000px;}
.ws11{word-spacing:0.102000px;}
.wsa4{word-spacing:0.120000px;}
.wsbc{word-spacing:0.162000px;}
.ws109{word-spacing:0.180000px;}
.ws12{word-spacing:0.204000px;}
.ws28{word-spacing:0.216000px;}
.wsb1{word-spacing:0.240000px;}
.ws97{word-spacing:0.270000px;}
.ws57{word-spacing:0.300000px;}
.ws1e{word-spacing:0.324000px;}
.ws3d{word-spacing:0.360000px;}
.wse9{word-spacing:0.378000px;}
.ws1{word-spacing:0.408000px;}
.ws6e{word-spacing:0.420000px;}
.ws23{word-spacing:0.432000px;}
.wse5{word-spacing:0.480000px;}
.wsc9{word-spacing:0.540000px;}
.wsc6{word-spacing:0.600000px;}
.ws1d{word-spacing:0.648000px;}
.ws4b{word-spacing:0.660000px;}
.ws14{word-spacing:0.691200px;}
.wsdd{word-spacing:0.720000px;}
.ws101{word-spacing:0.756000px;}
.ws100{word-spacing:0.780000px;}
.ws126{word-spacing:0.840000px;}
.ws16e{word-spacing:0.864000px;}
.ws4d{word-spacing:0.900000px;}
.ws32{word-spacing:0.918000px;}
.ws42{word-spacing:0.960000px;}
.ws1fa{word-spacing:0.972000px;}
.ws77{word-spacing:1.020000px;}
.ws56{word-spacing:1.080000px;}
.ws20{word-spacing:1.134000px;}
.ws88{word-spacing:1.140000px;}
.ws206{word-spacing:1.188000px;}
.wsb3{word-spacing:1.200000px;}
.ws1d9{word-spacing:1.242000px;}
.ws122{word-spacing:1.260000px;}
.ws26{word-spacing:1.296000px;}
.ws117{word-spacing:1.320000px;}
.ws183{word-spacing:1.350000px;}
.ws63{word-spacing:1.380000px;}
.ws10d{word-spacing:1.404000px;}
.wsfc{word-spacing:1.440000px;}
.wsc1{word-spacing:1.458000px;}
.wsfd{word-spacing:1.500000px;}
.wse8{word-spacing:1.512000px;}
.wsea{word-spacing:1.560000px;}
.ws24{word-spacing:1.566000px;}
.wsd3{word-spacing:1.620000px;}
.ws209{word-spacing:1.674000px;}
.wsf2{word-spacing:1.680000px;}
.wsa8{word-spacing:1.740000px;}
.ws66{word-spacing:1.800000px;}
.ws7c{word-spacing:1.860000px;}
.ws9b{word-spacing:1.920000px;}
.wsd2{word-spacing:1.944000px;}
.ws9a{word-spacing:1.980000px;}
.ws1e4{word-spacing:1.998000px;}
.ws4e{word-spacing:2.040000px;}
.wsc8{word-spacing:2.100000px;}
.ws1f9{word-spacing:2.106000px;}
.wsd4{word-spacing:2.160000px;}
.ws1e5{word-spacing:2.214000px;}
.ws55{word-spacing:2.220000px;}
.ws1ea{word-spacing:2.268000px;}
.ws108{word-spacing:2.280000px;}
.ws11a{word-spacing:2.340000px;}
.ws1e6{word-spacing:2.376000px;}
.wsf4{word-spacing:2.400000px;}
.ws8a{word-spacing:2.460000px;}
.ws1f1{word-spacing:2.484000px;}
.ws61{word-spacing:2.520000px;}
.ws1ed{word-spacing:2.538000px;}
.ws10a{word-spacing:2.580000px;}
.ws70{word-spacing:2.640000px;}
.ws16f{word-spacing:2.646000px;}
.ws59{word-spacing:2.700000px;}
.wsc2{word-spacing:2.754000px;}
.ws4c{word-spacing:2.760000px;}
.ws130{word-spacing:2.820000px;}
.ws6c{word-spacing:2.880000px;}
.ws1fd{word-spacing:2.916000px;}
.ws13a{word-spacing:2.940000px;}
.wsd5{word-spacing:2.970000px;}
.ws150{word-spacing:3.000000px;}
.ws1d0{word-spacing:3.024000px;}
.ws69{word-spacing:3.060000px;}
.ws1cf{word-spacing:3.078000px;}
.ws68{word-spacing:3.120000px;}
.ws1d2{word-spacing:3.132000px;}
.ws52{word-spacing:3.180000px;}
.ws9e{word-spacing:3.240000px;}
.ws2e{word-spacing:3.300000px;}
.wsf8{word-spacing:3.360000px;}
.ws4f{word-spacing:3.420000px;}
.ws73{word-spacing:3.480000px;}
.ws1a{word-spacing:3.510000px;}
.ws140{word-spacing:3.540000px;}
.ws1d5{word-spacing:3.564000px;}
.ws2c{word-spacing:3.600000px;}
.ws8c{word-spacing:3.660000px;}
.ws112{word-spacing:3.672000px;}
.ws44{word-spacing:3.720000px;}
.ws111{word-spacing:3.726000px;}
.ws12c{word-spacing:3.780000px;}
.ws5d{word-spacing:3.840000px;}
.wsb7{word-spacing:3.900000px;}
.ws1d1{word-spacing:3.942000px;}
.ws119{word-spacing:3.960000px;}
.ws1e1{word-spacing:3.996000px;}
.ws89{word-spacing:4.020000px;}
.ws35{word-spacing:4.080000px;}
.ws16d{word-spacing:4.104000px;}
.wsa1{word-spacing:4.140000px;}
.ws16c{word-spacing:4.158000px;}
.ws9c{word-spacing:4.200000px;}
.ws1d6{word-spacing:4.212000px;}
.ws83{word-spacing:4.260000px;}
.ws7e{word-spacing:4.320000px;}
.ws102{word-spacing:4.374000px;}
.ws37{word-spacing:4.380000px;}
.ws1dc{word-spacing:4.428000px;}
.ws30{word-spacing:4.440000px;}
.wsfa{word-spacing:4.500000px;}
.ws1ee{word-spacing:4.536000px;}
.ws90{word-spacing:4.560000px;}
.ws1da{word-spacing:4.590000px;}
.ws141{word-spacing:4.620000px;}
.ws67{word-spacing:4.680000px;}
.wsac{word-spacing:4.740000px;}
.ws139{word-spacing:4.800000px;}
.ws93{word-spacing:4.860000px;}
.ws157{word-spacing:4.920000px;}
.ws7b{word-spacing:4.980000px;}
.ws92{word-spacing:5.040000px;}
.ws131{word-spacing:5.100000px;}
.ws50{word-spacing:5.160000px;}
.wse1{word-spacing:5.220000px;}
.ws105{word-spacing:5.238000px;}
.ws78{word-spacing:5.280000px;}
.ws1ca{word-spacing:5.292000px;}
.wsa2{word-spacing:5.340000px;}
.ws11b{word-spacing:5.400000px;}
.ws185{word-spacing:5.454000px;}
.ws15c{word-spacing:5.460000px;}
.ws180{word-spacing:5.508000px;}
.wsab{word-spacing:5.520000px;}
.ws17f{word-spacing:5.562000px;}
.ws10b{word-spacing:5.580000px;}
.ws20a{word-spacing:5.616000px;}
.ws4a{word-spacing:5.640000px;}
.ws5e{word-spacing:5.700000px;}
.ws1ec{word-spacing:5.724000px;}
.ws6a{word-spacing:5.760000px;}
.ws138{word-spacing:5.820000px;}
.ws46{word-spacing:5.880000px;}
.wsf5{word-spacing:5.940000px;}
.wsb6{word-spacing:6.000000px;}
.ws47{word-spacing:6.060000px;}
.ws22{word-spacing:6.102000px;}
.ws11f{word-spacing:6.120000px;}
.ws21{word-spacing:6.156000px;}
.ws74{word-spacing:6.180000px;}
.ws151{word-spacing:6.240000px;}
.ws84{word-spacing:6.300000px;}
.ws13f{word-spacing:6.360000px;}
.ws164{word-spacing:6.420000px;}
.wsa9{word-spacing:6.480000px;}
.wse0{word-spacing:6.540000px;}
.wsb2{word-spacing:6.600000px;}
.ws1f8{word-spacing:6.642000px;}
.ws14d{word-spacing:6.660000px;}
.ws72{word-spacing:6.720000px;}
.ws6d{word-spacing:6.780000px;}
.wsa5{word-spacing:6.840000px;}
.ws79{word-spacing:6.900000px;}
.ws1f7{word-spacing:6.912000px;}
.ws153{word-spacing:6.960000px;}
.ws12e{word-spacing:7.020000px;}
.ws6f{word-spacing:7.080000px;}
.ws15{word-spacing:7.128000px;}
.ws87{word-spacing:7.140000px;}
.ws15a{word-spacing:7.200000px;}
.wsed{word-spacing:7.236000px;}
.ws146{word-spacing:7.260000px;}
.ws9d{word-spacing:7.320000px;}
.ws205{word-spacing:7.344000px;}
.ws3e{word-spacing:7.380000px;}
.ws132{word-spacing:7.440000px;}
.ws1ce{word-spacing:7.452000px;}
.ws1b2{word-spacing:7.500000px;}
.ws1cd{word-spacing:7.506000px;}
.wsff{word-spacing:7.560000px;}
.ws11c{word-spacing:7.620000px;}
.ws27{word-spacing:7.668000px;}
.ws147{word-spacing:7.680000px;}
.ws8b{word-spacing:7.740000px;}
.wseb{word-spacing:7.800000px;}
.ws14b{word-spacing:7.860000px;}
.ws36{word-spacing:7.920000px;}
.ws11e{word-spacing:7.980000px;}
.ws11d{word-spacing:8.040000px;}
.ws7d{word-spacing:8.100000px;}
.ws54{word-spacing:8.160000px;}
.ws76{word-spacing:8.220000px;}
.ws5f{word-spacing:8.280000px;}
.ws96{word-spacing:8.340000px;}
.ws62{word-spacing:8.400000px;}
.ws136{word-spacing:8.460000px;}
.wsa6{word-spacing:8.520000px;}
.ws15b{word-spacing:8.580000px;}
.ws53{word-spacing:8.640000px;}
.ws12b{word-spacing:8.700000px;}
.ws125{word-spacing:8.760000px;}
.ws12a{word-spacing:8.820000px;}
.ws1ab{word-spacing:8.880000px;}
.ws39{word-spacing:8.940000px;}
.ws65{word-spacing:9.000000px;}
.ws13e{word-spacing:9.060000px;}
.ws129{word-spacing:9.120000px;}
.ws20f{word-spacing:9.126000px;}
.ws1b5{word-spacing:9.180000px;}
.ws20e{word-spacing:9.234000px;}
.ws10c{word-spacing:9.240000px;}
.ws208{word-spacing:9.288000px;}
.wsa7{word-spacing:9.300000px;}
.ws207{word-spacing:9.342000px;}
.ws169{word-spacing:9.360000px;}
.ws48{word-spacing:9.420000px;}
.ws19e{word-spacing:9.540000px;}
.ws156{word-spacing:9.660000px;}
.ws124{word-spacing:9.780000px;}
.ws64{word-spacing:9.900000px;}
.ws8e{word-spacing:10.080000px;}
.ws82{word-spacing:10.140000px;}
.ws14e{word-spacing:10.200000px;}
.ws1c7{word-spacing:10.260000px;}
.ws14f{word-spacing:10.320000px;}
.ws13b{word-spacing:10.440000px;}
.wsf6{word-spacing:10.500000px;}
.wsb8{word-spacing:10.560000px;}
.ws1cc{word-spacing:10.620000px;}
.ws1c9{word-spacing:10.680000px;}
.ws197{word-spacing:10.800000px;}
.wse3{word-spacing:10.860000px;}
.ws133{word-spacing:10.920000px;}
.wsc5{word-spacing:11.100000px;}
.ws15e{word-spacing:11.160000px;}
.ws15d{word-spacing:11.220000px;}
.ws2b{word-spacing:11.280000px;}
.ws144{word-spacing:11.340000px;}
.ws182{word-spacing:11.400000px;}
.ws2f{word-spacing:11.640000px;}
.ws1eb{word-spacing:11.664000px;}
.ws189{word-spacing:12.120000px;}
.ws1bb{word-spacing:12.240000px;}
.ws19a{word-spacing:12.360000px;}
.ws18a{word-spacing:12.480000px;}
.ws1fc{word-spacing:13.068000px;}
.ws116{word-spacing:13.080000px;}
.ws115{word-spacing:13.140000px;}
.ws8d{word-spacing:13.260000px;}
.ws16b{word-spacing:13.560000px;}
.ws16a{word-spacing:13.680000px;}
.ws9f{word-spacing:13.740000px;}
.ws155{word-spacing:13.860000px;}
.ws1bc{word-spacing:14.100000px;}
.ws191{word-spacing:14.700000px;}
.ws193{word-spacing:15.060000px;}
.ws201{word-spacing:15.174000px;}
.ws8f{word-spacing:15.420000px;}
.ws1b7{word-spacing:15.660000px;}
.ws210{word-spacing:15.876000px;}
.ws1c3{word-spacing:16.860000px;}
.ws1aa{word-spacing:16.920000px;}
.ws1fb{word-spacing:17.604000px;}
.ws1a2{word-spacing:17.820000px;}
.ws1ef{word-spacing:18.252000px;}
.wsb4{word-spacing:19.380000px;}
.ws94{word-spacing:19.500000px;}
.ws203{word-spacing:22.950000px;}
.ws212{word-spacing:24.786000px;}
.ws176{word-spacing:24.900000px;}
.ws175{word-spacing:25.200000px;}
.wsaa{word-spacing:25.620000px;}
.wsd9{word-spacing:188.832000px;}
.wsce{word-spacing:202.320000px;}
.ws172{word-spacing:210.816000px;}
.wscd{word-spacing:211.248000px;}
.wscf{word-spacing:224.736000px;}
.ws171{word-spacing:241.728000px;}
.wsd1{word-spacing:244.560000px;}
.wscc{word-spacing:255.600000px;}
.ws168{word-spacing:261.840000px;}
.wsbf{word-spacing:265.392000px;}
.wscb{word-spacing:267.552000px;}
.ws174{word-spacing:275.040000px;}
.wsaf{word-spacing:278.880000px;}
.wsd0{word-spacing:292.540800px;}
.ws170{word-spacing:297.163200px;}
.ws173{word-spacing:314.524800px;}
.ws167{word-spacing:315.120000px;}
.ws178{word-spacing:326.304000px;}
.wsae{word-spacing:332.112000px;}
.ws17a{word-spacing:332.880000px;}
.wsbe{word-spacing:333.120000px;}
.ws17e{word-spacing:360.000000px;}
.ws179{word-spacing:372.768000px;}
.wsc0{word-spacing:377.808000px;}
.wsb0{word-spacing:379.488000px;}
.ws17c{word-spacing:390.480000px;}
.ws80{word-spacing:409.819200px;}
._7{margin-left:-10.865400px;}
._15{margin-left:-9.018000px;}
._37{margin-left:-7.356000px;}
._6{margin-left:-6.069600px;}
._2{margin-left:-5.069400px;}
._3{margin-left:-3.835200px;}
._a{margin-left:-2.745600px;}
._1{margin-left:-1.662600px;}
._0{width:1.081200px;}
._e{width:2.088000px;}
._4{width:3.151800px;}
._8{width:4.458600px;}
._b{width:5.580000px;}
._d{width:6.682800px;}
._c{width:7.740000px;}
._9{width:8.766000px;}
._1e{width:10.032000px;}
._21{width:11.982000px;}
._1f{width:13.062000px;}
._6f{width:14.160000px;}
._72{width:15.805800px;}
._73{width:16.972200px;}
._74{width:18.559800px;}
._77{width:20.325600px;}
._12{width:22.320000px;}
._71{width:23.452800px;}
._10{width:25.320000px;}
._20{width:26.730600px;}
._75{width:32.734800px;}
._76{width:33.868800px;}
._5{width:36.369600px;}
._6b{width:38.100000px;}
._38{width:42.024000px;}
._70{width:43.633200px;}
._69{width:45.780000px;}
._6d{width:48.120000px;}
._68{width:49.620000px;}
._6c{width:52.140000px;}
._67{width:53.760000px;}
._6e{width:54.840000px;}
._6a{width:57.120000px;}
._13{width:64.620000px;}
._f{width:67.560000px;}
._14{width:70.620000px;}
._11{width:72.360000px;}
._5c{width:75.006600px;}
._65{width:80.760000px;}
._62{width:81.840000px;}
._66{width:83.040000px;}
._63{width:86.700000px;}
._64{width:88.020000px;}
._61{width:89.220000px;}
._48{width:116.976000px;}
._4c{width:129.072000px;}
._46{width:154.891200px;}
._59{width:158.448000px;}
._4f{width:160.494600px;}
._58{width:166.272000px;}
._57{width:174.576000px;}
._60{width:191.568000px;}
._40{width:214.512000px;}
._53{width:217.920000px;}
._43{width:230.208000px;}
._34{width:233.376000px;}
._32{width:236.640000px;}
._42{width:238.320000px;}
._33{width:246.864000px;}
._45{width:255.102600px;}
._36{width:256.464000px;}
._35{width:269.952000px;}
._31{width:283.440000px;}
._44{width:286.944000px;}
._2e{width:291.744000px;}
._3f{width:297.696000px;}
._41{width:299.956800px;}
._25{width:304.944000px;}
._2b{width:306.672000px;}
._3e{width:309.648000px;}
._2f{width:312.336000px;}
._39{width:313.488000px;}
._3d{width:321.072000px;}
._49{width:324.576000px;}
._30{width:329.568000px;}
._2a{width:333.072000px;}
._23{width:334.752000px;}
._24{width:341.424000px;}
._55{width:344.496000px;}
._52{width:346.464000px;}
._5e{width:348.192000px;}
._29{width:350.880000px;}
._1c{width:353.904000px;}
._54{width:361.680000px;}
._4d{width:371.472000px;}
._5f{width:375.216000px;}
._2c{width:376.224000px;}
._27{width:377.904000px;}
._50{width:385.440000px;}
._19{width:387.766800px;}
._28{width:391.392000px;}
._5b{width:394.560000px;}
._47{width:398.761200px;}
._22{width:403.296000px;}
._3b{width:404.880000px;}
._2d{width:409.536000px;}
._3c{width:411.696000px;}
._1d{width:421.134600px;}
._26{width:423.024000px;}
._5a{width:432.528000px;}
._3a{width:436.512000px;}
._17{width:449.664000px;}
._1a{width:466.206600px;}
._1b{width:493.776000px;}
._18{width:524.304000px;}
._16{width:572.400000px;}
._56{width:895.488000px;}
._4e{width:931.920000px;}
._4a{width:1031.232000px;}
._4b{width:1061.472000px;}
._5d{width:1065.600000px;}
._51{width:1104.624000px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc5{color:rgb(237,32,35);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:31.482000px;}
.fsa{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;}
.fs9{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3e{bottom:71.212050px;}
.y3f{bottom:75.040050px;}
.y173{bottom:113.072850px;}
.y71{bottom:113.078700px;}
.ya2{bottom:113.078850px;}
.yad{bottom:116.250750px;}
.ybc{bottom:116.688150px;}
.yc{bottom:117.205050px;}
.y2b{bottom:117.212550px;}
.y144{bottom:120.487350px;}
.ye2{bottom:120.491700px;}
.ydb{bottom:120.491850px;}
.y156{bottom:120.496200px;}
.yb{bottom:131.601450px;}
.y1cb{bottom:133.796850px;}
.y19d{bottom:133.850850px;}
.y1cc{bottom:134.072850px;}
.y70{bottom:134.078700px;}
.ya1{bottom:134.078850px;}
.yac{bottom:135.030750px;}
.ybb{bottom:135.888150px;}
.y2a{bottom:138.212550px;}
.y143{bottom:140.291850px;}
.ye1{bottom:140.296200px;}
.yda{bottom:140.296350px;}
.y155{bottom:140.300700px;}
.ya{bottom:145.997850px;}
.yab{bottom:153.810750px;}
.y1ca{bottom:154.802850px;}
.y19c{bottom:154.856850px;}
.y6f{bottom:155.078700px;}
.ya0{bottom:155.078850px;}
.yeb{bottom:155.088150px;}
.yba{bottom:155.388150px;}
.y29{bottom:159.212550px;}
.y142{bottom:160.096350px;}
.ye0{bottom:160.100700px;}
.yd9{bottom:160.100850px;}
.y9{bottom:160.397850px;}
.y172{bottom:160.529400px;}
.yaa{bottom:172.590750px;}
.y1c9{bottom:175.808850px;}
.y19b{bottom:175.862850px;}
.y6e{bottom:176.078700px;}
.y9f{bottom:176.078850px;}
.y141{bottom:179.900850px;}
.y28{bottom:180.212550px;}
.yb9{bottom:185.856600px;}
.yea{bottom:185.981700px;}
.ya9{bottom:191.370750px;}
.y1c8{bottom:196.814850px;}
.y19a{bottom:196.868850px;}
.y171{bottom:197.066850px;}
.y6d{bottom:197.078700px;}
.y9e{bottom:197.078850px;}
.ybd{bottom:198.266700px;}
.y27{bottom:201.212550px;}
.y3b{bottom:203.463300px;}
.yb8{bottom:205.661100px;}
.ye9{bottom:205.786200px;}
.ya8{bottom:210.150750px;}
.y1c7{bottom:217.820850px;}
.y199{bottom:217.874850px;}
.y170{bottom:218.072850px;}
.y6c{bottom:218.078700px;}
.y9d{bottom:218.078850px;}
.y128{bottom:218.909100px;}
.y3a{bottom:221.458800px;}
.y26{bottom:222.212550px;}
.yb7{bottom:225.465600px;}
.ye8{bottom:225.590700px;}
.ya7{bottom:229.230750px;}
.y127{bottom:233.909100px;}
.y1c6{bottom:238.826850px;}
.y198{bottom:238.880850px;}
.y6b{bottom:239.078700px;}
.y9c{bottom:239.078850px;}
.y39{bottom:239.454300px;}
.yc6{bottom:243.293700px;}
.yb6{bottom:245.270100px;}
.ye7{bottom:245.395200px;}
.y126{bottom:251.885100px;}
.yae{bottom:253.440900px;}
.y25{bottom:256.004250px;}
.y38{bottom:257.449800px;}
.ya6{bottom:259.712550px;}
.y1c5{bottom:259.832850px;}
.y197{bottom:259.886850px;}
.y1ec{bottom:260.036850px;}
.y6a{bottom:260.078700px;}
.y9b{bottom:260.078850px;}
.y15b{bottom:260.182650px;}
.yc5{bottom:262.493700px;}
.yd5{bottom:263.487900px;}
.y16f{bottom:265.529400px;}
.y125{bottom:266.885100px;}
.yb3{bottom:274.441050px;}
.y37{bottom:275.445300px;}
.y15a{bottom:279.987150px;}
.y1c4{bottom:280.838850px;}
.y196{bottom:280.892850px;}
.y1eb{bottom:281.042850px;}
.y69{bottom:281.078700px;}
.y9a{bottom:281.078850px;}
.y124{bottom:281.885100px;}
.yc4{bottom:281.993700px;}
.yd4{bottom:283.292400px;}
.y36{bottom:293.440800px;}
.y123{bottom:296.885100px;}
.y159{bottom:299.791650px;}
.y13e{bottom:300.372300px;}
.y1c3{bottom:301.844850px;}
.y195{bottom:301.898850px;}
.y208{bottom:302.036700px;}
.y1ea{bottom:302.048850px;}
.y16e{bottom:302.066850px;}
.y68{bottom:302.078700px;}
.y99{bottom:302.078850px;}
.yd3{bottom:303.096900px;}
.yd8{bottom:304.315350px;}
.ydd{bottom:306.132300px;}
.y132{bottom:306.441300px;}
.y134{bottom:306.750300px;}
.ydf{bottom:308.876250px;}
.y35{bottom:311.436300px;}
.y122{bottom:311.885100px;}
.yc3{bottom:312.462000px;}
.y158{bottom:319.596150px;}
.y13d{bottom:320.176800px;}
.y1c2{bottom:322.850850px;}
.y194{bottom:322.904850px;}
.y207{bottom:323.042700px;}
.y1e9{bottom:323.054850px;}
.y16d{bottom:323.072850px;}
.y67{bottom:323.078700px;}
.y98{bottom:323.078850px;}
.yd7{bottom:324.119850px;}
.ydc{bottom:325.936800px;}
.y131{bottom:326.245800px;}
.y133{bottom:326.554800px;}
.y12e{bottom:328.010100px;}
.y24{bottom:328.027950px;}
.yde{bottom:328.680750px;}
.y34{bottom:329.431800px;}
.y121{bottom:329.861100px;}
.yc2{bottom:332.266500px;}
.y136{bottom:338.349900px;}
.y157{bottom:339.400650px;}
.y1c1{bottom:343.856850px;}
.y193{bottom:343.910850px;}
.y206{bottom:344.048700px;}
.y1e8{bottom:344.060850px;}
.y66{bottom:344.078700px;}
.y97{bottom:344.078850px;}
.y120{bottom:344.861100px;}
.y140{bottom:345.367350px;}
.y33{bottom:347.427300px;}
.y130{bottom:347.761950px;}
.y12d{bottom:347.814600px;}
.yc1{bottom:352.071000px;}
.y135{bottom:358.154400px;}
.y11f{bottom:362.837100px;}
.y1c0{bottom:364.862850px;}
.y192{bottom:364.916850px;}
.y205{bottom:365.054700px;}
.y1e7{bottom:365.066850px;}
.y65{bottom:365.078700px;}
.y96{bottom:365.078850px;}
.y13f{bottom:365.171850px;}
.y12f{bottom:367.566450px;}
.y23{bottom:369.011250px;}
.y16c{bottom:370.529400px;}
.yc0{bottom:371.875500px;}
.yc9{bottom:376.204350px;}
.yee{bottom:379.436550px;}
.y139{bottom:379.441050px;}
.y11e{bottom:380.813100px;}
.y32{bottom:382.432800px;}
.y12a{bottom:384.474600px;}
.y1bf{bottom:385.868850px;}
.y191{bottom:385.922850px;}
.y204{bottom:386.060700px;}
.y1e6{bottom:386.072850px;}
.y64{bottom:386.078700px;}
.y95{bottom:386.078850px;}
.y22{bottom:388.815750px;}
.y161{bottom:391.937700px;}
.y11d{bottom:395.813100px;}
.yc8{bottom:396.008850px;}
.y31{bottom:400.428300px;}
.yed{bottom:400.441050px;}
.y129{bottom:404.279100px;}
.y1be{bottom:406.874850px;}
.y190{bottom:406.928850px;}
.y203{bottom:407.066700px;}
.y63{bottom:407.078700px;}
.y94{bottom:407.078850px;}
.y21{bottom:408.620250px;}
.y11c{bottom:410.813100px;}
.y160{bottom:411.742200px;}
.yc7{bottom:415.813350px;}
.y30{bottom:418.423800px;}
.y1bd{bottom:427.880850px;}
.y18f{bottom:427.934850px;}
.y202{bottom:428.072700px;}
.y62{bottom:428.078700px;}
.y93{bottom:428.078850px;}
.y20{bottom:428.424750px;}
.y11b{bottom:428.789100px;}
.ybf{bottom:431.216550px;}
.y16b{bottom:433.529400px;}
.y1e5{bottom:441.513600px;}
.y11a{bottom:443.789100px;}
.y1f{bottom:448.229250px;}
.y1bc{bottom:448.886850px;}
.y18e{bottom:448.940850px;}
.y61{bottom:449.078700px;}
.y92{bottom:449.078850px;}
.ybe{bottom:451.021050px;}
.y2f{bottom:453.429300px;}
.y119{bottom:458.789100px;}
.y1e4{bottom:462.513600px;}
.y1e{bottom:468.033750px;}
.y1bb{bottom:469.892850px;}
.y18d{bottom:469.946850px;}
.y60{bottom:470.078700px;}
.y91{bottom:470.078850px;}
.y2e{bottom:471.429300px;}
.y15e{bottom:473.188050px;}
.y154{bottom:476.454150px;}
.y118{bottom:476.765100px;}
.y201{bottom:483.513450px;}
.y1d{bottom:487.838250px;}
.y2d{bottom:489.429300px;}
.y1ba{bottom:490.898850px;}
.y18c{bottom:490.952850px;}
.y5f{bottom:491.078700px;}
.y90{bottom:491.078850px;}
.y117{bottom:491.765100px;}
.y15d{bottom:492.992550px;}
.y1e3{bottom:494.811150px;}
.y153{bottom:496.258650px;}
.y16a{bottom:496.529400px;}
.y200{bottom:504.513450px;}
.y2c{bottom:507.429300px;}
.y1c{bottom:507.642750px;}
.y116{bottom:510.161100px;}
.y1b9{bottom:511.904850px;}
.y18b{bottom:511.958850px;}
.y5e{bottom:512.078700px;}
.y8f{bottom:512.078850px;}
.y1b{bottom:527.447250px;}
.y115{bottom:528.941100px;}
.y1b8{bottom:532.910850px;}
.y18a{bottom:532.964850px;}
.y5d{bottom:533.078700px;}
.y8e{bottom:533.078850px;}
.y1ff{bottom:536.811000px;}
.y114{bottom:543.941100px;}
.y1a{bottom:547.251750px;}
.y1b7{bottom:553.916850px;}
.y189{bottom:553.970850px;}
.y1e2{bottom:554.036850px;}
.y5c{bottom:554.078700px;}
.y8d{bottom:554.078850px;}
.y113{bottom:558.941100px;}
.y169{bottom:559.937100px;}
.y19{bottom:567.056250px;}
.ye4{bottom:567.627300px;}
.y13c{bottom:567.936150px;}
.yd6{bottom:568.440900px;}
.y1b6{bottom:574.922850px;}
.y188{bottom:574.976850px;}
.y1e1{bottom:575.042850px;}
.y5b{bottom:575.078700px;}
.y8c{bottom:575.078850px;}
.y112{bottom:577.721100px;}
.ye6{bottom:580.383150px;}
.y18{bottom:586.860750px;}
.ye3{bottom:587.431800px;}
.y13b{bottom:587.740650px;}
.yb5{bottom:588.513600px;}
.y168{bottom:589.441050px;}
.y111{bottom:592.721100px;}
.y1b5{bottom:595.928850px;}
.y187{bottom:595.982850px;}
.y1fe{bottom:596.036700px;}
.y1e0{bottom:596.048850px;}
.y5a{bottom:596.078700px;}
.y8b{bottom:596.078850px;}
.ye5{bottom:600.187650px;}
.y165{bottom:601.002600px;}
.y17{bottom:606.665250px;}
.y110{bottom:611.501100px;}
.y1b4{bottom:616.934850px;}
.y186{bottom:616.988850px;}
.y1fd{bottom:617.042700px;}
.y1df{bottom:617.054850px;}
.y59{bottom:617.078700px;}
.y8a{bottom:617.078850px;}
.y164{bottom:620.807100px;}
.yb4{bottom:620.811150px;}
.y16{bottom:626.469750px;}
.y10f{bottom:626.501100px;}
.y150{bottom:630.209850px;}
.y1b3{bottom:637.940850px;}
.y185{bottom:637.994850px;}
.y1fc{bottom:638.048700px;}
.y1de{bottom:638.060850px;}
.y58{bottom:638.078700px;}
.y89{bottom:638.078850px;}
.y148{bottom:639.722250px;}
.y163{bottom:640.611600px;}
.y10e{bottom:645.281100px;}
.y15{bottom:646.274250px;}
.y14f{bottom:650.014350px;}
.y14b{bottom:654.582750px;}
.y1b2{bottom:658.946850px;}
.y184{bottom:659.000850px;}
.y1fb{bottom:659.054700px;}
.y1dd{bottom:659.066850px;}
.y57{bottom:659.078700px;}
.y88{bottom:659.078850px;}
.y147{bottom:659.526750px;}
.y10d{bottom:660.281100px;}
.y162{bottom:660.416100px;}
.y14{bottom:666.078750px;}
.y14e{bottom:669.818850px;}
.y14a{bottom:674.387250px;}
.y10c{bottom:675.281100px;}
.y146{bottom:679.331250px;}
.y1b1{bottom:679.952850px;}
.y183{bottom:680.006850px;}
.y1fa{bottom:680.060700px;}
.y1dc{bottom:680.072850px;}
.y56{bottom:680.078700px;}
.y87{bottom:680.078850px;}
.y13{bottom:685.883250px;}
.y14d{bottom:689.623350px;}
.y10b{bottom:690.281100px;}
.y149{bottom:694.191750px;}
.y145{bottom:699.135750px;}
.y1b0{bottom:700.958850px;}
.y182{bottom:701.012850px;}
.y1f9{bottom:701.066700px;}
.y55{bottom:701.078700px;}
.y86{bottom:701.078850px;}
.y12{bottom:705.674250px;}
.y10a{bottom:709.061100px;}
.y14c{bottom:709.427850px;}
.yb2{bottom:715.436550px;}
.y1af{bottom:721.964850px;}
.y181{bottom:722.018850px;}
.y1f8{bottom:722.072700px;}
.y54{bottom:722.078700px;}
.y85{bottom:722.078850px;}
.y109{bottom:724.061100px;}
.y11{bottom:725.478750px;}
.y15f{bottom:732.268650px;}
.y1db{bottom:735.513600px;}
.yb1{bottom:736.441050px;}
.y108{bottom:742.841100px;}
.y1ae{bottom:742.970850px;}
.y180{bottom:743.024850px;}
.y53{bottom:743.078700px;}
.y84{bottom:743.078850px;}
.y10{bottom:745.283250px;}
.y1da{bottom:756.513600px;}
.y107{bottom:761.621100px;}
.y1ad{bottom:763.976850px;}
.y17f{bottom:764.030850px;}
.y52{bottom:764.078700px;}
.y83{bottom:764.078850px;}
.yf{bottom:765.087750px;}
.y12c{bottom:767.241450px;}
.y106{bottom:776.621100px;}
.y1f7{bottom:777.513450px;}
.y1d9{bottom:777.513600px;}
.y1ac{bottom:784.982850px;}
.y17e{bottom:785.036850px;}
.y51{bottom:785.078700px;}
.y82{bottom:785.078850px;}
.y12b{bottom:787.045950px;}
.y105{bottom:795.401100px;}
.ye{bottom:796.185300px;}
.y15c{bottom:796.513500px;}
.y1f6{bottom:798.513450px;}
.y167{bottom:799.441050px;}
.y1ab{bottom:805.988850px;}
.y17d{bottom:806.042850px;}
.y50{bottom:806.078700px;}
.y81{bottom:806.078850px;}
.y1d8{bottom:809.811000px;}
.y104{bottom:810.401100px;}
.y1aa{bottom:826.994850px;}
.y17c{bottom:827.048850px;}
.y4f{bottom:827.078700px;}
.y80{bottom:827.078850px;}
.y103{bottom:829.181100px;}
.y1f5{bottom:830.811000px;}
.y152{bottom:835.461600px;}
.y102{bottom:847.961100px;}
.y1a9{bottom:848.000850px;}
.y17b{bottom:848.054850px;}
.y4e{bottom:848.078700px;}
.y7f{bottom:848.078850px;}
.y151{bottom:855.266100px;}
.y101{bottom:862.961100px;}
.y1a8{bottom:869.006850px;}
.y1d7{bottom:869.036850px;}
.y17a{bottom:869.060850px;}
.y4d{bottom:869.078700px;}
.y7e{bottom:869.078850px;}
.y8{bottom:875.466750px;}
.y100{bottom:877.961100px;}
.yb0{bottom:882.396300px;}
.ya5{bottom:882.513600px;}
.y1a7{bottom:890.012850px;}
.y1f4{bottom:890.036700px;}
.y1d6{bottom:890.042850px;}
.y179{bottom:890.066850px;}
.y4c{bottom:890.078700px;}
.y7d{bottom:890.078850px;}
.y7{bottom:893.466750px;}
.yff{bottom:896.741100px;}
.yaf{bottom:902.200800px;}
.y13a{bottom:904.441050px;}
.yec{bottom:904.987200px;}
.y1a6{bottom:911.018850px;}
.y1f3{bottom:911.042700px;}
.y1d5{bottom:911.048850px;}
.y178{bottom:911.072850px;}
.y4b{bottom:911.078700px;}
.y7c{bottom:911.078850px;}
.y6{bottom:911.466750px;}
.yfe{bottom:911.741100px;}
.ya4{bottom:914.811000px;}
.yfd{bottom:926.741100px;}
.y1a5{bottom:932.024850px;}
.y1f2{bottom:932.048700px;}
.y1d4{bottom:932.054850px;}
.y4a{bottom:932.078700px;}
.y7b{bottom:932.078850px;}
.yfc{bottom:941.741100px;}
.y5{bottom:946.474800px;}
.yf7{bottom:951.700950px;}
.yd2{bottom:951.701100px;}
.y1a4{bottom:953.030850px;}
.y1f1{bottom:953.054700px;}
.y1d3{bottom:953.060850px;}
.y49{bottom:953.078700px;}
.y7a{bottom:953.078850px;}
.yfb{bottom:960.521100px;}
.y177{bottom:967.441050px;}
.yf6{bottom:970.900950px;}
.yd1{bottom:970.901100px;}
.y1a3{bottom:974.036850px;}
.y1f0{bottom:974.060700px;}
.y1d2{bottom:974.066850px;}
.y48{bottom:974.078700px;}
.y79{bottom:974.078850px;}
.yfa{bottom:975.521100px;}
.y4{bottom:983.288550px;}
.yf5{bottom:990.100950px;}
.yd0{bottom:990.101100px;}
.yf9{bottom:994.601100px;}
.y1a2{bottom:995.042850px;}
.y1ef{bottom:995.066700px;}
.y1d1{bottom:995.072850px;}
.y47{bottom:995.078700px;}
.y78{bottom:995.078850px;}
.yf8{bottom:1002.101100px;}
.y138{bottom:1009.441050px;}
.yf4{bottom:1009.600950px;}
.ycf{bottom:1009.601100px;}
.y1a1{bottom:1016.048850px;}
.y1ee{bottom:1016.072700px;}
.y176{bottom:1016.072850px;}
.y46{bottom:1016.078700px;}
.y77{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y166{bottom:1030.441050px;}
.y1a0{bottom:1037.054850px;}
.y45{bottom:1037.078700px;}
.y76{bottom:1037.078850px;}
.yf3{bottom:1040.064750px;}
.yce{bottom:1040.064900px;}
.y2{bottom:1049.282550px;}
.y1d0{bottom:1050.029250px;}
.y19f{bottom:1058.060850px;}
.y44{bottom:1058.078700px;}
.y75{bottom:1058.078850px;}
.yf2{bottom:1059.869250px;}
.ycd{bottom:1059.869400px;}
.y175{bottom:1063.529400px;}
.y1cf{bottom:1071.029250px;}
.y19e{bottom:1079.066850px;}
.y43{bottom:1079.078700px;}
.y74{bottom:1079.078850px;}
.yf1{bottom:1079.673750px;}
.ycc{bottom:1079.673900px;}
.y1ce{bottom:1092.029250px;}
.yf0{bottom:1099.478250px;}
.ycb{bottom:1099.478400px;}
.y174{bottom:1100.072850px;}
.y42{bottom:1100.078700px;}
.y73{bottom:1100.078850px;}
.yd{bottom:1109.815500px;}
.ya3{bottom:1114.821750px;}
.y137{bottom:1114.821900px;}
.yef{bottom:1119.282750px;}
.yca{bottom:1119.282900px;}
.y41{bottom:1121.078700px;}
.y72{bottom:1121.078850px;}
.y1ed{bottom:1124.326650px;}
.y1cd{bottom:1124.326800px;}
.y3d{bottom:1159.189500px;}
.y3c{bottom:1178.689500px;}
.y40{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h15{height:38.226562px;}
.h12{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h16{height:39.000000px;}
.h8{height:43.004883px;}
.h11{height:43.057617px;}
.h18{height:43.265625px;}
.h10{height:43.321289px;}
.ha{height:43.875000px;}
.h1a{height:43.899000px;}
.hb{height:43.929000px;}
.h1c{height:47.343750px;}
.hc{height:47.513672px;}
.hd{height:48.673828px;}
.hf{height:48.750000px;}
.h1b{height:49.777828px;}
.h19{height:52.078125px;}
.h9{height:52.792969px;}
.h4{height:53.625000px;}
.h13{height:54.082031px;}
.h14{height:58.072266px;}
.he{height:63.351562px;}
.h17{height:69.000000px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:69.732300px;}
.x2{left:73.984200px;}
.xb{left:107.067450px;}
.xd{left:108.293250px;}
.x11{left:112.244100px;}
.x6{left:115.626900px;}
.x7{left:117.780450px;}
.x8{left:119.850900px;}
.x16{left:184.821600px;}
.x13{left:218.882250px;}
.x15{left:221.008200px;}
.x14{left:233.764200px;}
.x10{left:238.016100px;}
.x4{left:300.189000px;}
.xf{left:304.432050px;}
.x24{left:313.269600px;}
.xc{left:317.192250px;}
.x17{left:323.157600px;}
.x1b{left:330.105600px;}
.x32{left:334.209000px;}
.x2c{left:338.481600px;}
.x18{left:387.081600px;}
.xe{left:393.784050px;}
.x3{left:396.050700px;}
.x20{left:537.465600px;}
.x1c{left:540.201600px;}
.x27{left:541.257600px;}
.x2f{left:548.745600px;}
.x1d{left:553.005600px;}
.x2d{left:554.709600px;}
.x1e{left:556.113600px;}
.x28{left:558.561600px;}
.x21{left:561.513600px;}
.x31{left:578.241600px;}
.x19{left:581.709600px;}
.x25{left:588.309600px;}
.xa{left:648.925200px;}
.x30{left:682.869600px;}
.x22{left:685.209600px;}
.x9{left:687.493200px;}
.x2a{left:692.949600px;}
.x1f{left:702.873600px;}
.x2b{left:711.093600px;}
.x29{left:715.077600px;}
.x23{left:724.953600px;}
.x1a{left:726.249600px;}
.x2e{left:728.433600px;}
.x26{left:732.345600px;}
.x12{left:806.443650px;}
.x1{left:813.005250px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:0.981333pt;}
.v2{vertical-align:16.032000pt;}
.v4{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v5{vertical-align:26.666667pt;}
.ls1b{letter-spacing:-6.432000pt;}
.ls13{letter-spacing:-5.386667pt;}
.ls1a{letter-spacing:-2.880000pt;}
.ls33{letter-spacing:-2.720000pt;}
.ls14{letter-spacing:-2.453333pt;}
.ls15{letter-spacing:-2.186667pt;}
.ls16{letter-spacing:-1.866667pt;}
.ls1f{letter-spacing:-1.066667pt;}
.ls10{letter-spacing:-0.960000pt;}
.ls2b{letter-spacing:-0.906667pt;}
.ls32{letter-spacing:-0.853333pt;}
.lsb{letter-spacing:-0.816000pt;}
.ls18{letter-spacing:-0.800000pt;}
.ls3c{letter-spacing:-0.746667pt;}
.ls31{letter-spacing:-0.693333pt;}
.ls3e{letter-spacing:-0.672000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.614400pt;}
.ls20{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.528000pt;}
.ls39{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.453333pt;}
.ls2d{letter-spacing:-0.426667pt;}
.ls36{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.373333pt;}
.ls2a{letter-spacing:-0.320000pt;}
.ls35{letter-spacing:-0.298667pt;}
.ls8{letter-spacing:-0.288000pt;}
.ls24{letter-spacing:-0.266667pt;}
.ls2f{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.181333pt;}
.ls9{letter-spacing:-0.167904pt;}
.ls30{letter-spacing:-0.160000pt;}
.ls1c{letter-spacing:-0.106667pt;}
.ls3{letter-spacing:-0.090667pt;}
.lsf{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.096000pt;}
.ls28{letter-spacing:0.106667pt;}
.ls23{letter-spacing:0.133333pt;}
.ls27{letter-spacing:0.160000pt;}
.ls40{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.213333pt;}
.ls22{letter-spacing:0.250667pt;}
.ls45{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.272000pt;}
.ls26{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.373333pt;}
.lsd{letter-spacing:0.426667pt;}
.ls44{letter-spacing:0.480000pt;}
.ls3a{letter-spacing:0.533333pt;}
.ls29{letter-spacing:0.586667pt;}
.ls42{letter-spacing:0.648000pt;}
.ls41{letter-spacing:0.672000pt;}
.ls1e{letter-spacing:0.693333pt;}
.ls38{letter-spacing:0.720000pt;}
.ls12{letter-spacing:0.746667pt;}
.ls43{letter-spacing:0.768000pt;}
.ls3b{letter-spacing:0.800000pt;}
.lse{letter-spacing:0.853333pt;}
.lsc{letter-spacing:0.906667pt;}
.ls3f{letter-spacing:0.912000pt;}
.ls11{letter-spacing:0.960000pt;}
.ls3d{letter-spacing:1.013333pt;}
.ls37{letter-spacing:1.066667pt;}
.ls1d{letter-spacing:1.704000pt;}
.ls2e{letter-spacing:3.040000pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ls34{letter-spacing:350.165333pt;}
.ws161{word-spacing:-53.333333pt;}
.ws8{word-spacing:-15.936000pt;}
.ws7f{word-spacing:-14.608000pt;}
.ws98{word-spacing:-14.490667pt;}
.ws135{word-spacing:-14.186667pt;}
.ws1c5{word-spacing:-14.080000pt;}
.ws166{word-spacing:-14.026667pt;}
.ws5b{word-spacing:-13.920000pt;}
.ws99{word-spacing:-13.813333pt;}
.ws106{word-spacing:-13.760000pt;}
.ws186{word-spacing:-13.600000pt;}
.ws5a{word-spacing:-13.493333pt;}
.ws211{word-spacing:-13.333333pt;}
.ws5{word-spacing:-13.280000pt;}
.wsd6{word-spacing:-13.226667pt;}
.wsd7{word-spacing:-13.173333pt;}
.ws15f{word-spacing:-13.120000pt;}
.ws9{word-spacing:-13.066667pt;}
.ws159{word-spacing:-13.013333pt;}
.wsf0{word-spacing:-12.960000pt;}
.ws1a1{word-spacing:-12.906667pt;}
.ws134{word-spacing:-12.853333pt;}
.ws1e8{word-spacing:-12.816000pt;}
.ws1c6{word-spacing:-12.800000pt;}
.ws160{word-spacing:-12.746667pt;}
.wsd8{word-spacing:-12.693333pt;}
.ws20c{word-spacing:-12.672000pt;}
.ws162{word-spacing:-12.640000pt;}
.ws1f5{word-spacing:-12.576000pt;}
.ws1f6{word-spacing:-12.552000pt;}
.ws10e{word-spacing:-12.533333pt;}
.ws18e{word-spacing:-12.480000pt;}
.ws1f4{word-spacing:-12.432000pt;}
.ws163{word-spacing:-12.426667pt;}
.ws14c{word-spacing:-12.373333pt;}
.ws190{word-spacing:-12.160000pt;}
.wsef{word-spacing:-12.106667pt;}
.ws1e9{word-spacing:-12.096000pt;}
.ws107{word-spacing:-12.000000pt;}
.ws1cb{word-spacing:-11.952000pt;}
.ws1e7{word-spacing:-11.904000pt;}
.ws1ae{word-spacing:-11.893333pt;}
.ws1c0{word-spacing:-11.840000pt;}
.ws1ac{word-spacing:-11.786667pt;}
.wsca{word-spacing:-11.760000pt;}
.ws194{word-spacing:-11.733333pt;}
.ws1a9{word-spacing:-11.626667pt;}
.ws1f3{word-spacing:-11.616000pt;}
.ws6{word-spacing:-11.472000pt;}
.ws1a3{word-spacing:-11.306667pt;}
.ws1de{word-spacing:-11.280000pt;}
.ws1a8{word-spacing:-11.200000pt;}
.ws188{word-spacing:-11.040000pt;}
.wsa{word-spacing:-10.992000pt;}
.ws18b{word-spacing:-10.880000pt;}
.ws18f{word-spacing:-10.826667pt;}
.wse{word-spacing:-10.800000pt;}
.ws1be{word-spacing:-10.773333pt;}
.ws17b{word-spacing:-10.581333pt;}
.ws1b3{word-spacing:-10.560000pt;}
.ws17d{word-spacing:-10.282667pt;}
.wsb{word-spacing:-10.176000pt;}
.ws1af{word-spacing:-10.026667pt;}
.wsc{word-spacing:-9.984000pt;}
.wsf{word-spacing:-9.770667pt;}
.ws18d{word-spacing:-9.706667pt;}
.ws3{word-spacing:-9.685333pt;}
.ws33{word-spacing:-9.600000pt;}
.ws18c{word-spacing:-9.333333pt;}
.ws1bd{word-spacing:-9.066667pt;}
.ws1a6{word-spacing:-8.960000pt;}
.ws1c1{word-spacing:-8.853333pt;}
.ws4{word-spacing:-8.793600pt;}
.ws2{word-spacing:-8.549333pt;}
.ws19c{word-spacing:-8.480000pt;}
.ws1b4{word-spacing:-8.426667pt;}
.ws1ad{word-spacing:-8.053333pt;}
.ws195{word-spacing:-7.840000pt;}
.ws34{word-spacing:-7.711147pt;}
.ws1b9{word-spacing:-7.680000pt;}
.ws196{word-spacing:-7.573333pt;}
.ws1ba{word-spacing:-7.520000pt;}
.ws1a5{word-spacing:-7.466667pt;}
.ws19f{word-spacing:-7.040000pt;}
.ws1bf{word-spacing:-6.986667pt;}
.ws204{word-spacing:-6.940032pt;}
.ws1b1{word-spacing:-6.773333pt;}
.ws7{word-spacing:-6.772128pt;}
.ws1b0{word-spacing:-6.346667pt;}
.ws19b{word-spacing:-6.293333pt;}
.ws1a7{word-spacing:-5.973333pt;}
.ws1b6{word-spacing:-5.920000pt;}
.ws192{word-spacing:-5.600000pt;}
.wsb9{word-spacing:-5.386667pt;}
.wse2{word-spacing:-4.906667pt;}
.ws1a4{word-spacing:-4.853333pt;}
.ws198{word-spacing:-4.640000pt;}
.ws1c8{word-spacing:-4.586667pt;}
.ws1b8{word-spacing:-4.426667pt;}
.ws19d{word-spacing:-4.266667pt;}
.ws1c4{word-spacing:-4.213333pt;}
.ws152{word-spacing:-4.106667pt;}
.ws13c{word-spacing:-4.000000pt;}
.ws13d{word-spacing:-3.946667pt;}
.wsdc{word-spacing:-3.840000pt;}
.ws12f{word-spacing:-3.786667pt;}
.wsfb{word-spacing:-3.733333pt;}
.ws143{word-spacing:-3.626667pt;}
.ws137{word-spacing:-3.466667pt;}
.wsf9{word-spacing:-3.413333pt;}
.ws158{word-spacing:-3.360000pt;}
.ws154{word-spacing:-3.306667pt;}
.ws1e3{word-spacing:-3.200000pt;}
.ws20b{word-spacing:-3.168000pt;}
.ws1c2{word-spacing:-3.146667pt;}
.ws127{word-spacing:-3.093333pt;}
.ws199{word-spacing:-3.040000pt;}
.ws1a0{word-spacing:-2.986667pt;}
.ws40{word-spacing:-2.933333pt;}
.ws1ff{word-spacing:-2.928000pt;}
.ws149{word-spacing:-2.880000pt;}
.wsad{word-spacing:-2.826667pt;}
.ws145{word-spacing:-2.773333pt;}
.ws165{word-spacing:-2.720000pt;}
.ws121{word-spacing:-2.666667pt;}
.wsf1{word-spacing:-2.613333pt;}
.ws29{word-spacing:-2.592000pt;}
.ws38{word-spacing:-2.560000pt;}
.ws2a{word-spacing:-2.544000pt;}
.wsf3{word-spacing:-2.506667pt;}
.wsba{word-spacing:-2.453333pt;}
.ws104{word-spacing:-2.448000pt;}
.wsbb{word-spacing:-2.400000pt;}
.ws17{word-spacing:-2.352000pt;}
.ws2d{word-spacing:-2.346667pt;}
.ws113{word-spacing:-2.304000pt;}
.wse4{word-spacing:-2.293333pt;}
.ws43{word-spacing:-2.240000pt;}
.ws1d7{word-spacing:-2.208000pt;}
.ws3f{word-spacing:-2.186667pt;}
.ws1d8{word-spacing:-2.160000pt;}
.ws148{word-spacing:-2.133333pt;}
.ws18{word-spacing:-2.112000pt;}
.ws14a{word-spacing:-2.080000pt;}
.wsfe{word-spacing:-2.064000pt;}
.ws3b{word-spacing:-2.026667pt;}
.ws114{word-spacing:-2.016000pt;}
.ws6b{word-spacing:-1.973333pt;}
.ws3c{word-spacing:-1.920000pt;}
.wsbd{word-spacing:-1.872000pt;}
.wsc7{word-spacing:-1.866667pt;}
.ws19{word-spacing:-1.824000pt;}
.wsdf{word-spacing:-1.813333pt;}
.ws1f2{word-spacing:-1.776000pt;}
.ws41{word-spacing:-1.760000pt;}
.ws120{word-spacing:-1.706667pt;}
.ws16{word-spacing:-1.680000pt;}
.ws85{word-spacing:-1.653333pt;}
.ws1c{word-spacing:-1.632000pt;}
.wsdb{word-spacing:-1.600000pt;}
.ws1e0{word-spacing:-1.584000pt;}
.wse6{word-spacing:-1.546667pt;}
.ws1f0{word-spacing:-1.536000pt;}
.wsda{word-spacing:-1.493333pt;}
.ws1dd{word-spacing:-1.488000pt;}
.ws123{word-spacing:-1.440000pt;}
.ws1e2{word-spacing:-1.392000pt;}
.wsde{word-spacing:-1.386667pt;}
.ws1f{word-spacing:-1.344000pt;}
.ws128{word-spacing:-1.333333pt;}
.ws91{word-spacing:-1.280000pt;}
.ws103{word-spacing:-1.248000pt;}
.ws142{word-spacing:-1.226667pt;}
.wsec{word-spacing:-1.200000pt;}
.wsb5{word-spacing:-1.173333pt;}
.ws184{word-spacing:-1.152000pt;}
.wsf7{word-spacing:-1.120000pt;}
.ws1d3{word-spacing:-1.104000pt;}
.ws10f{word-spacing:-1.066667pt;}
.ws1db{word-spacing:-1.056000pt;}
.wsa3{word-spacing:-1.013333pt;}
.ws1b{word-spacing:-1.008000pt;}
.ws95{word-spacing:-0.960000pt;}
.ws31{word-spacing:-0.912000pt;}
.ws51{word-spacing:-0.906667pt;}
.ws7a{word-spacing:-0.853333pt;}
.wsee{word-spacing:-0.816000pt;}
.ws181{word-spacing:-0.810667pt;}
.ws12d{word-spacing:-0.800000pt;}
.ws20d{word-spacing:-0.768000pt;}
.ws45{word-spacing:-0.746667pt;}
.ws177{word-spacing:-0.720000pt;}
.wsa0{word-spacing:-0.693333pt;}
.ws202{word-spacing:-0.672000pt;}
.ws118{word-spacing:-0.640000pt;}
.wsc4{word-spacing:-0.586667pt;}
.ws71{word-spacing:-0.533333pt;}
.ws200{word-spacing:-0.528000pt;}
.ws58{word-spacing:-0.480000pt;}
.ws1d4{word-spacing:-0.432000pt;}
.ws60{word-spacing:-0.426667pt;}
.ws5c{word-spacing:-0.373333pt;}
.ws0{word-spacing:-0.362667pt;}
.ws187{word-spacing:-0.336000pt;}
.ws86{word-spacing:-0.320000pt;}
.ws1fe{word-spacing:-0.288000pt;}
.ws75{word-spacing:-0.266667pt;}
.ws3a{word-spacing:-0.213333pt;}
.ws13{word-spacing:-0.192000pt;}
.ws49{word-spacing:-0.160000pt;}
.wse7{word-spacing:-0.144000pt;}
.ws110{word-spacing:-0.106667pt;}
.ws1df{word-spacing:-0.096000pt;}
.wsc3{word-spacing:-0.053333pt;}
.wsd{word-spacing:-0.048000pt;}
.ws10{word-spacing:0.000000pt;}
.ws25{word-spacing:0.048000pt;}
.ws81{word-spacing:0.053333pt;}
.ws11{word-spacing:0.090667pt;}
.wsa4{word-spacing:0.106667pt;}
.wsbc{word-spacing:0.144000pt;}
.ws109{word-spacing:0.160000pt;}
.ws12{word-spacing:0.181333pt;}
.ws28{word-spacing:0.192000pt;}
.wsb1{word-spacing:0.213333pt;}
.ws97{word-spacing:0.240000pt;}
.ws57{word-spacing:0.266667pt;}
.ws1e{word-spacing:0.288000pt;}
.ws3d{word-spacing:0.320000pt;}
.wse9{word-spacing:0.336000pt;}
.ws1{word-spacing:0.362667pt;}
.ws6e{word-spacing:0.373333pt;}
.ws23{word-spacing:0.384000pt;}
.wse5{word-spacing:0.426667pt;}
.wsc9{word-spacing:0.480000pt;}
.wsc6{word-spacing:0.533333pt;}
.ws1d{word-spacing:0.576000pt;}
.ws4b{word-spacing:0.586667pt;}
.ws14{word-spacing:0.614400pt;}
.wsdd{word-spacing:0.640000pt;}
.ws101{word-spacing:0.672000pt;}
.ws100{word-spacing:0.693333pt;}
.ws126{word-spacing:0.746667pt;}
.ws16e{word-spacing:0.768000pt;}
.ws4d{word-spacing:0.800000pt;}
.ws32{word-spacing:0.816000pt;}
.ws42{word-spacing:0.853333pt;}
.ws1fa{word-spacing:0.864000pt;}
.ws77{word-spacing:0.906667pt;}
.ws56{word-spacing:0.960000pt;}
.ws20{word-spacing:1.008000pt;}
.ws88{word-spacing:1.013333pt;}
.ws206{word-spacing:1.056000pt;}
.wsb3{word-spacing:1.066667pt;}
.ws1d9{word-spacing:1.104000pt;}
.ws122{word-spacing:1.120000pt;}
.ws26{word-spacing:1.152000pt;}
.ws117{word-spacing:1.173333pt;}
.ws183{word-spacing:1.200000pt;}
.ws63{word-spacing:1.226667pt;}
.ws10d{word-spacing:1.248000pt;}
.wsfc{word-spacing:1.280000pt;}
.wsc1{word-spacing:1.296000pt;}
.wsfd{word-spacing:1.333333pt;}
.wse8{word-spacing:1.344000pt;}
.wsea{word-spacing:1.386667pt;}
.ws24{word-spacing:1.392000pt;}
.wsd3{word-spacing:1.440000pt;}
.ws209{word-spacing:1.488000pt;}
.wsf2{word-spacing:1.493333pt;}
.wsa8{word-spacing:1.546667pt;}
.ws66{word-spacing:1.600000pt;}
.ws7c{word-spacing:1.653333pt;}
.ws9b{word-spacing:1.706667pt;}
.wsd2{word-spacing:1.728000pt;}
.ws9a{word-spacing:1.760000pt;}
.ws1e4{word-spacing:1.776000pt;}
.ws4e{word-spacing:1.813333pt;}
.wsc8{word-spacing:1.866667pt;}
.ws1f9{word-spacing:1.872000pt;}
.wsd4{word-spacing:1.920000pt;}
.ws1e5{word-spacing:1.968000pt;}
.ws55{word-spacing:1.973333pt;}
.ws1ea{word-spacing:2.016000pt;}
.ws108{word-spacing:2.026667pt;}
.ws11a{word-spacing:2.080000pt;}
.ws1e6{word-spacing:2.112000pt;}
.wsf4{word-spacing:2.133333pt;}
.ws8a{word-spacing:2.186667pt;}
.ws1f1{word-spacing:2.208000pt;}
.ws61{word-spacing:2.240000pt;}
.ws1ed{word-spacing:2.256000pt;}
.ws10a{word-spacing:2.293333pt;}
.ws70{word-spacing:2.346667pt;}
.ws16f{word-spacing:2.352000pt;}
.ws59{word-spacing:2.400000pt;}
.wsc2{word-spacing:2.448000pt;}
.ws4c{word-spacing:2.453333pt;}
.ws130{word-spacing:2.506667pt;}
.ws6c{word-spacing:2.560000pt;}
.ws1fd{word-spacing:2.592000pt;}
.ws13a{word-spacing:2.613333pt;}
.wsd5{word-spacing:2.640000pt;}
.ws150{word-spacing:2.666667pt;}
.ws1d0{word-spacing:2.688000pt;}
.ws69{word-spacing:2.720000pt;}
.ws1cf{word-spacing:2.736000pt;}
.ws68{word-spacing:2.773333pt;}
.ws1d2{word-spacing:2.784000pt;}
.ws52{word-spacing:2.826667pt;}
.ws9e{word-spacing:2.880000pt;}
.ws2e{word-spacing:2.933333pt;}
.wsf8{word-spacing:2.986667pt;}
.ws4f{word-spacing:3.040000pt;}
.ws73{word-spacing:3.093333pt;}
.ws1a{word-spacing:3.120000pt;}
.ws140{word-spacing:3.146667pt;}
.ws1d5{word-spacing:3.168000pt;}
.ws2c{word-spacing:3.200000pt;}
.ws8c{word-spacing:3.253333pt;}
.ws112{word-spacing:3.264000pt;}
.ws44{word-spacing:3.306667pt;}
.ws111{word-spacing:3.312000pt;}
.ws12c{word-spacing:3.360000pt;}
.ws5d{word-spacing:3.413333pt;}
.wsb7{word-spacing:3.466667pt;}
.ws1d1{word-spacing:3.504000pt;}
.ws119{word-spacing:3.520000pt;}
.ws1e1{word-spacing:3.552000pt;}
.ws89{word-spacing:3.573333pt;}
.ws35{word-spacing:3.626667pt;}
.ws16d{word-spacing:3.648000pt;}
.wsa1{word-spacing:3.680000pt;}
.ws16c{word-spacing:3.696000pt;}
.ws9c{word-spacing:3.733333pt;}
.ws1d6{word-spacing:3.744000pt;}
.ws83{word-spacing:3.786667pt;}
.ws7e{word-spacing:3.840000pt;}
.ws102{word-spacing:3.888000pt;}
.ws37{word-spacing:3.893333pt;}
.ws1dc{word-spacing:3.936000pt;}
.ws30{word-spacing:3.946667pt;}
.wsfa{word-spacing:4.000000pt;}
.ws1ee{word-spacing:4.032000pt;}
.ws90{word-spacing:4.053333pt;}
.ws1da{word-spacing:4.080000pt;}
.ws141{word-spacing:4.106667pt;}
.ws67{word-spacing:4.160000pt;}
.wsac{word-spacing:4.213333pt;}
.ws139{word-spacing:4.266667pt;}
.ws93{word-spacing:4.320000pt;}
.ws157{word-spacing:4.373333pt;}
.ws7b{word-spacing:4.426667pt;}
.ws92{word-spacing:4.480000pt;}
.ws131{word-spacing:4.533333pt;}
.ws50{word-spacing:4.586667pt;}
.wse1{word-spacing:4.640000pt;}
.ws105{word-spacing:4.656000pt;}
.ws78{word-spacing:4.693333pt;}
.ws1ca{word-spacing:4.704000pt;}
.wsa2{word-spacing:4.746667pt;}
.ws11b{word-spacing:4.800000pt;}
.ws185{word-spacing:4.848000pt;}
.ws15c{word-spacing:4.853333pt;}
.ws180{word-spacing:4.896000pt;}
.wsab{word-spacing:4.906667pt;}
.ws17f{word-spacing:4.944000pt;}
.ws10b{word-spacing:4.960000pt;}
.ws20a{word-spacing:4.992000pt;}
.ws4a{word-spacing:5.013333pt;}
.ws5e{word-spacing:5.066667pt;}
.ws1ec{word-spacing:5.088000pt;}
.ws6a{word-spacing:5.120000pt;}
.ws138{word-spacing:5.173333pt;}
.ws46{word-spacing:5.226667pt;}
.wsf5{word-spacing:5.280000pt;}
.wsb6{word-spacing:5.333333pt;}
.ws47{word-spacing:5.386667pt;}
.ws22{word-spacing:5.424000pt;}
.ws11f{word-spacing:5.440000pt;}
.ws21{word-spacing:5.472000pt;}
.ws74{word-spacing:5.493333pt;}
.ws151{word-spacing:5.546667pt;}
.ws84{word-spacing:5.600000pt;}
.ws13f{word-spacing:5.653333pt;}
.ws164{word-spacing:5.706667pt;}
.wsa9{word-spacing:5.760000pt;}
.wse0{word-spacing:5.813333pt;}
.wsb2{word-spacing:5.866667pt;}
.ws1f8{word-spacing:5.904000pt;}
.ws14d{word-spacing:5.920000pt;}
.ws72{word-spacing:5.973333pt;}
.ws6d{word-spacing:6.026667pt;}
.wsa5{word-spacing:6.080000pt;}
.ws79{word-spacing:6.133333pt;}
.ws1f7{word-spacing:6.144000pt;}
.ws153{word-spacing:6.186667pt;}
.ws12e{word-spacing:6.240000pt;}
.ws6f{word-spacing:6.293333pt;}
.ws15{word-spacing:6.336000pt;}
.ws87{word-spacing:6.346667pt;}
.ws15a{word-spacing:6.400000pt;}
.wsed{word-spacing:6.432000pt;}
.ws146{word-spacing:6.453333pt;}
.ws9d{word-spacing:6.506667pt;}
.ws205{word-spacing:6.528000pt;}
.ws3e{word-spacing:6.560000pt;}
.ws132{word-spacing:6.613333pt;}
.ws1ce{word-spacing:6.624000pt;}
.ws1b2{word-spacing:6.666667pt;}
.ws1cd{word-spacing:6.672000pt;}
.wsff{word-spacing:6.720000pt;}
.ws11c{word-spacing:6.773333pt;}
.ws27{word-spacing:6.816000pt;}
.ws147{word-spacing:6.826667pt;}
.ws8b{word-spacing:6.880000pt;}
.wseb{word-spacing:6.933333pt;}
.ws14b{word-spacing:6.986667pt;}
.ws36{word-spacing:7.040000pt;}
.ws11e{word-spacing:7.093333pt;}
.ws11d{word-spacing:7.146667pt;}
.ws7d{word-spacing:7.200000pt;}
.ws54{word-spacing:7.253333pt;}
.ws76{word-spacing:7.306667pt;}
.ws5f{word-spacing:7.360000pt;}
.ws96{word-spacing:7.413333pt;}
.ws62{word-spacing:7.466667pt;}
.ws136{word-spacing:7.520000pt;}
.wsa6{word-spacing:7.573333pt;}
.ws15b{word-spacing:7.626667pt;}
.ws53{word-spacing:7.680000pt;}
.ws12b{word-spacing:7.733333pt;}
.ws125{word-spacing:7.786667pt;}
.ws12a{word-spacing:7.840000pt;}
.ws1ab{word-spacing:7.893333pt;}
.ws39{word-spacing:7.946667pt;}
.ws65{word-spacing:8.000000pt;}
.ws13e{word-spacing:8.053333pt;}
.ws129{word-spacing:8.106667pt;}
.ws20f{word-spacing:8.112000pt;}
.ws1b5{word-spacing:8.160000pt;}
.ws20e{word-spacing:8.208000pt;}
.ws10c{word-spacing:8.213333pt;}
.ws208{word-spacing:8.256000pt;}
.wsa7{word-spacing:8.266667pt;}
.ws207{word-spacing:8.304000pt;}
.ws169{word-spacing:8.320000pt;}
.ws48{word-spacing:8.373333pt;}
.ws19e{word-spacing:8.480000pt;}
.ws156{word-spacing:8.586667pt;}
.ws124{word-spacing:8.693333pt;}
.ws64{word-spacing:8.800000pt;}
.ws8e{word-spacing:8.960000pt;}
.ws82{word-spacing:9.013333pt;}
.ws14e{word-spacing:9.066667pt;}
.ws1c7{word-spacing:9.120000pt;}
.ws14f{word-spacing:9.173333pt;}
.ws13b{word-spacing:9.280000pt;}
.wsf6{word-spacing:9.333333pt;}
.wsb8{word-spacing:9.386667pt;}
.ws1cc{word-spacing:9.440000pt;}
.ws1c9{word-spacing:9.493333pt;}
.ws197{word-spacing:9.600000pt;}
.wse3{word-spacing:9.653333pt;}
.ws133{word-spacing:9.706667pt;}
.wsc5{word-spacing:9.866667pt;}
.ws15e{word-spacing:9.920000pt;}
.ws15d{word-spacing:9.973333pt;}
.ws2b{word-spacing:10.026667pt;}
.ws144{word-spacing:10.080000pt;}
.ws182{word-spacing:10.133333pt;}
.ws2f{word-spacing:10.346667pt;}
.ws1eb{word-spacing:10.368000pt;}
.ws189{word-spacing:10.773333pt;}
.ws1bb{word-spacing:10.880000pt;}
.ws19a{word-spacing:10.986667pt;}
.ws18a{word-spacing:11.093333pt;}
.ws1fc{word-spacing:11.616000pt;}
.ws116{word-spacing:11.626667pt;}
.ws115{word-spacing:11.680000pt;}
.ws8d{word-spacing:11.786667pt;}
.ws16b{word-spacing:12.053333pt;}
.ws16a{word-spacing:12.160000pt;}
.ws9f{word-spacing:12.213333pt;}
.ws155{word-spacing:12.320000pt;}
.ws1bc{word-spacing:12.533333pt;}
.ws191{word-spacing:13.066667pt;}
.ws193{word-spacing:13.386667pt;}
.ws201{word-spacing:13.488000pt;}
.ws8f{word-spacing:13.706667pt;}
.ws1b7{word-spacing:13.920000pt;}
.ws210{word-spacing:14.112000pt;}
.ws1c3{word-spacing:14.986667pt;}
.ws1aa{word-spacing:15.040000pt;}
.ws1fb{word-spacing:15.648000pt;}
.ws1a2{word-spacing:15.840000pt;}
.ws1ef{word-spacing:16.224000pt;}
.wsb4{word-spacing:17.226667pt;}
.ws94{word-spacing:17.333333pt;}
.ws203{word-spacing:20.400000pt;}
.ws212{word-spacing:22.032000pt;}
.ws176{word-spacing:22.133333pt;}
.ws175{word-spacing:22.400000pt;}
.wsaa{word-spacing:22.773333pt;}
.wsd9{word-spacing:167.850667pt;}
.wsce{word-spacing:179.840000pt;}
.ws172{word-spacing:187.392000pt;}
.wscd{word-spacing:187.776000pt;}
.wscf{word-spacing:199.765333pt;}
.ws171{word-spacing:214.869333pt;}
.wsd1{word-spacing:217.386667pt;}
.wscc{word-spacing:227.200000pt;}
.ws168{word-spacing:232.746667pt;}
.wsbf{word-spacing:235.904000pt;}
.wscb{word-spacing:237.824000pt;}
.ws174{word-spacing:244.480000pt;}
.wsaf{word-spacing:247.893333pt;}
.wsd0{word-spacing:260.036267pt;}
.ws170{word-spacing:264.145067pt;}
.ws173{word-spacing:279.577600pt;}
.ws167{word-spacing:280.106667pt;}
.ws178{word-spacing:290.048000pt;}
.wsae{word-spacing:295.210667pt;}
.ws17a{word-spacing:295.893333pt;}
.wsbe{word-spacing:296.106667pt;}
.ws17e{word-spacing:320.000000pt;}
.ws179{word-spacing:331.349333pt;}
.wsc0{word-spacing:335.829333pt;}
.wsb0{word-spacing:337.322667pt;}
.ws17c{word-spacing:347.093333pt;}
.ws80{word-spacing:364.283733pt;}
._7{margin-left:-9.658133pt;}
._15{margin-left:-8.016000pt;}
._37{margin-left:-6.538667pt;}
._6{margin-left:-5.395200pt;}
._2{margin-left:-4.506133pt;}
._3{margin-left:-3.409067pt;}
._a{margin-left:-2.440533pt;}
._1{margin-left:-1.477867pt;}
._0{width:0.961067pt;}
._e{width:1.856000pt;}
._4{width:2.801600pt;}
._8{width:3.963200pt;}
._b{width:4.960000pt;}
._d{width:5.940267pt;}
._c{width:6.880000pt;}
._9{width:7.792000pt;}
._1e{width:8.917333pt;}
._21{width:10.650667pt;}
._1f{width:11.610667pt;}
._6f{width:12.586667pt;}
._72{width:14.049600pt;}
._73{width:15.086400pt;}
._74{width:16.497600pt;}
._77{width:18.067200pt;}
._12{width:19.840000pt;}
._71{width:20.846933pt;}
._10{width:22.506667pt;}
._20{width:23.760533pt;}
._75{width:29.097600pt;}
._76{width:30.105600pt;}
._5{width:32.328533pt;}
._6b{width:33.866667pt;}
._38{width:37.354667pt;}
._70{width:38.785067pt;}
._69{width:40.693333pt;}
._6d{width:42.773333pt;}
._68{width:44.106667pt;}
._6c{width:46.346667pt;}
._67{width:47.786667pt;}
._6e{width:48.746667pt;}
._6a{width:50.773333pt;}
._13{width:57.440000pt;}
._f{width:60.053333pt;}
._14{width:62.773333pt;}
._11{width:64.320000pt;}
._5c{width:66.672533pt;}
._65{width:71.786667pt;}
._62{width:72.746667pt;}
._66{width:73.813333pt;}
._63{width:77.066667pt;}
._64{width:78.240000pt;}
._61{width:79.306667pt;}
._48{width:103.978667pt;}
._4c{width:114.730667pt;}
._46{width:137.681067pt;}
._59{width:140.842667pt;}
._4f{width:142.661867pt;}
._58{width:147.797333pt;}
._57{width:155.178667pt;}
._60{width:170.282667pt;}
._40{width:190.677333pt;}
._53{width:193.706667pt;}
._43{width:204.629333pt;}
._34{width:207.445333pt;}
._32{width:210.346667pt;}
._42{width:211.840000pt;}
._33{width:219.434667pt;}
._45{width:226.757867pt;}
._36{width:227.968000pt;}
._35{width:239.957333pt;}
._31{width:251.946667pt;}
._44{width:255.061333pt;}
._2e{width:259.328000pt;}
._3f{width:264.618667pt;}
._41{width:266.628267pt;}
._25{width:271.061333pt;}
._2b{width:272.597333pt;}
._3e{width:275.242667pt;}
._2f{width:277.632000pt;}
._39{width:278.656000pt;}
._3d{width:285.397333pt;}
._49{width:288.512000pt;}
._30{width:292.949333pt;}
._2a{width:296.064000pt;}
._23{width:297.557333pt;}
._24{width:303.488000pt;}
._55{width:306.218667pt;}
._52{width:307.968000pt;}
._5e{width:309.504000pt;}
._29{width:311.893333pt;}
._1c{width:314.581333pt;}
._54{width:321.493333pt;}
._4d{width:330.197333pt;}
._5f{width:333.525333pt;}
._2c{width:334.421333pt;}
._27{width:335.914667pt;}
._50{width:342.613333pt;}
._19{width:344.681600pt;}
._28{width:347.904000pt;}
._5b{width:350.720000pt;}
._47{width:354.454400pt;}
._22{width:358.485333pt;}
._3b{width:359.893333pt;}
._2d{width:364.032000pt;}
._3c{width:365.952000pt;}
._1d{width:374.341867pt;}
._26{width:376.021333pt;}
._5a{width:384.469333pt;}
._3a{width:388.010667pt;}
._17{width:399.701333pt;}
._1a{width:414.405867pt;}
._1b{width:438.912000pt;}
._18{width:466.048000pt;}
._16{width:508.800000pt;}
._56{width:795.989333pt;}
._4e{width:828.373333pt;}
._4a{width:916.650667pt;}
._4b{width:943.530667pt;}
._5d{width:947.200000pt;}
._51{width:981.888000pt;}
.fs8{font-size:27.984000pt;}
.fsa{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;}
.fs9{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3e{bottom:63.299600pt;}
.y3f{bottom:66.702267pt;}
.y173{bottom:100.509200pt;}
.y71{bottom:100.514400pt;}
.ya2{bottom:100.514533pt;}
.yad{bottom:103.334000pt;}
.ybc{bottom:103.722800pt;}
.yc{bottom:104.182267pt;}
.y2b{bottom:104.188933pt;}
.y144{bottom:107.099867pt;}
.ye2{bottom:107.103733pt;}
.ydb{bottom:107.103867pt;}
.y156{bottom:107.107733pt;}
.yb{bottom:116.979067pt;}
.y1cb{bottom:118.930533pt;}
.y19d{bottom:118.978533pt;}
.y1cc{bottom:119.175867pt;}
.y70{bottom:119.181067pt;}
.ya1{bottom:119.181200pt;}
.yac{bottom:120.027333pt;}
.ybb{bottom:120.789467pt;}
.y2a{bottom:122.855600pt;}
.y143{bottom:124.703867pt;}
.ye1{bottom:124.707733pt;}
.yda{bottom:124.707867pt;}
.y155{bottom:124.711733pt;}
.ya{bottom:129.775867pt;}
.yab{bottom:136.720667pt;}
.y1ca{bottom:137.602533pt;}
.y19c{bottom:137.650533pt;}
.y6f{bottom:137.847733pt;}
.ya0{bottom:137.847867pt;}
.yeb{bottom:137.856133pt;}
.yba{bottom:138.122800pt;}
.y29{bottom:141.522267pt;}
.y142{bottom:142.307867pt;}
.ye0{bottom:142.311733pt;}
.yd9{bottom:142.311867pt;}
.y9{bottom:142.575867pt;}
.y172{bottom:142.692800pt;}
.yaa{bottom:153.414000pt;}
.y1c9{bottom:156.274533pt;}
.y19b{bottom:156.322533pt;}
.y6e{bottom:156.514400pt;}
.y9f{bottom:156.514533pt;}
.y141{bottom:159.911867pt;}
.y28{bottom:160.188933pt;}
.yb9{bottom:165.205867pt;}
.yea{bottom:165.317067pt;}
.ya9{bottom:170.107333pt;}
.y1c8{bottom:174.946533pt;}
.y19a{bottom:174.994533pt;}
.y171{bottom:175.170533pt;}
.y6d{bottom:175.181067pt;}
.y9e{bottom:175.181200pt;}
.ybd{bottom:176.237067pt;}
.y27{bottom:178.855600pt;}
.y3b{bottom:180.856267pt;}
.yb8{bottom:182.809867pt;}
.ye9{bottom:182.921067pt;}
.ya8{bottom:186.800667pt;}
.y1c7{bottom:193.618533pt;}
.y199{bottom:193.666533pt;}
.y170{bottom:193.842533pt;}
.y6c{bottom:193.847733pt;}
.y9d{bottom:193.847867pt;}
.y128{bottom:194.585867pt;}
.y3a{bottom:196.852267pt;}
.y26{bottom:197.522267pt;}
.yb7{bottom:200.413867pt;}
.ye8{bottom:200.525067pt;}
.ya7{bottom:203.760667pt;}
.y127{bottom:207.919200pt;}
.y1c6{bottom:212.290533pt;}
.y198{bottom:212.338533pt;}
.y6b{bottom:212.514400pt;}
.y9c{bottom:212.514533pt;}
.y39{bottom:212.848267pt;}
.yc6{bottom:216.261067pt;}
.yb6{bottom:218.017867pt;}
.ye7{bottom:218.129067pt;}
.y126{bottom:223.897867pt;}
.yae{bottom:225.280800pt;}
.y25{bottom:227.559333pt;}
.y38{bottom:228.844267pt;}
.ya6{bottom:230.855600pt;}
.y1c5{bottom:230.962533pt;}
.y197{bottom:231.010533pt;}
.y1ec{bottom:231.143867pt;}
.y6a{bottom:231.181067pt;}
.y9b{bottom:231.181200pt;}
.y15b{bottom:231.273467pt;}
.yc5{bottom:233.327733pt;}
.yd5{bottom:234.211467pt;}
.y16f{bottom:236.026133pt;}
.y125{bottom:237.231200pt;}
.yb3{bottom:243.947600pt;}
.y37{bottom:244.840267pt;}
.y15a{bottom:248.877467pt;}
.y1c4{bottom:249.634533pt;}
.y196{bottom:249.682533pt;}
.y1eb{bottom:249.815867pt;}
.y69{bottom:249.847733pt;}
.y9a{bottom:249.847867pt;}
.y124{bottom:250.564533pt;}
.yc4{bottom:250.661067pt;}
.yd4{bottom:251.815467pt;}
.y36{bottom:260.836267pt;}
.y123{bottom:263.897867pt;}
.y159{bottom:266.481467pt;}
.y13e{bottom:266.997600pt;}
.y1c3{bottom:268.306533pt;}
.y195{bottom:268.354533pt;}
.y208{bottom:268.477067pt;}
.y1ea{bottom:268.487867pt;}
.y16e{bottom:268.503867pt;}
.y68{bottom:268.514400pt;}
.y99{bottom:268.514533pt;}
.yd3{bottom:269.419467pt;}
.yd8{bottom:270.502533pt;}
.ydd{bottom:272.117600pt;}
.y132{bottom:272.392267pt;}
.y134{bottom:272.666933pt;}
.ydf{bottom:274.556667pt;}
.y35{bottom:276.832267pt;}
.y122{bottom:277.231200pt;}
.yc3{bottom:277.744000pt;}
.y158{bottom:284.085467pt;}
.y13d{bottom:284.601600pt;}
.y1c2{bottom:286.978533pt;}
.y194{bottom:287.026533pt;}
.y207{bottom:287.149067pt;}
.y1e9{bottom:287.159867pt;}
.y16d{bottom:287.175867pt;}
.y67{bottom:287.181067pt;}
.y98{bottom:287.181200pt;}
.yd7{bottom:288.106533pt;}
.ydc{bottom:289.721600pt;}
.y131{bottom:289.996267pt;}
.y133{bottom:290.270933pt;}
.y12e{bottom:291.564533pt;}
.y24{bottom:291.580400pt;}
.yde{bottom:292.160667pt;}
.y34{bottom:292.828267pt;}
.y121{bottom:293.209867pt;}
.yc2{bottom:295.348000pt;}
.y136{bottom:300.755467pt;}
.y157{bottom:301.689467pt;}
.y1c1{bottom:305.650533pt;}
.y193{bottom:305.698533pt;}
.y206{bottom:305.821067pt;}
.y1e8{bottom:305.831867pt;}
.y66{bottom:305.847733pt;}
.y97{bottom:305.847867pt;}
.y120{bottom:306.543200pt;}
.y140{bottom:306.993200pt;}
.y33{bottom:308.824267pt;}
.y130{bottom:309.121733pt;}
.y12d{bottom:309.168533pt;}
.yc1{bottom:312.952000pt;}
.y135{bottom:318.359467pt;}
.y11f{bottom:322.521867pt;}
.y1c0{bottom:324.322533pt;}
.y192{bottom:324.370533pt;}
.y205{bottom:324.493067pt;}
.y1e7{bottom:324.503867pt;}
.y65{bottom:324.514400pt;}
.y96{bottom:324.514533pt;}
.y13f{bottom:324.597200pt;}
.y12f{bottom:326.725733pt;}
.y23{bottom:328.010000pt;}
.y16c{bottom:329.359467pt;}
.yc0{bottom:330.556000pt;}
.yc9{bottom:334.403867pt;}
.yee{bottom:337.276933pt;}
.y139{bottom:337.280933pt;}
.y11e{bottom:338.500533pt;}
.y32{bottom:339.940267pt;}
.y12a{bottom:341.755200pt;}
.y1bf{bottom:342.994533pt;}
.y191{bottom:343.042533pt;}
.y204{bottom:343.165067pt;}
.y1e6{bottom:343.175867pt;}
.y64{bottom:343.181067pt;}
.y95{bottom:343.181200pt;}
.y22{bottom:345.614000pt;}
.y161{bottom:348.389067pt;}
.y11d{bottom:351.833867pt;}
.yc8{bottom:352.007867pt;}
.y31{bottom:355.936267pt;}
.yed{bottom:355.947600pt;}
.y129{bottom:359.359200pt;}
.y1be{bottom:361.666533pt;}
.y190{bottom:361.714533pt;}
.y203{bottom:361.837067pt;}
.y63{bottom:361.847733pt;}
.y94{bottom:361.847867pt;}
.y21{bottom:363.218000pt;}
.y11c{bottom:365.167200pt;}
.y160{bottom:365.993067pt;}
.yc7{bottom:369.611867pt;}
.y30{bottom:371.932267pt;}
.y1bd{bottom:380.338533pt;}
.y18f{bottom:380.386533pt;}
.y202{bottom:380.509067pt;}
.y62{bottom:380.514400pt;}
.y93{bottom:380.514533pt;}
.y20{bottom:380.822000pt;}
.y11b{bottom:381.145867pt;}
.ybf{bottom:383.303600pt;}
.y16b{bottom:385.359467pt;}
.y1e5{bottom:392.456533pt;}
.y11a{bottom:394.479200pt;}
.y1f{bottom:398.426000pt;}
.y1bc{bottom:399.010533pt;}
.y18e{bottom:399.058533pt;}
.y61{bottom:399.181067pt;}
.y92{bottom:399.181200pt;}
.ybe{bottom:400.907600pt;}
.y2f{bottom:403.048267pt;}
.y119{bottom:407.812533pt;}
.y1e4{bottom:411.123200pt;}
.y1e{bottom:416.030000pt;}
.y1bb{bottom:417.682533pt;}
.y18d{bottom:417.730533pt;}
.y60{bottom:417.847733pt;}
.y91{bottom:417.847867pt;}
.y2e{bottom:419.048267pt;}
.y15e{bottom:420.611600pt;}
.y154{bottom:423.514800pt;}
.y118{bottom:423.791200pt;}
.y201{bottom:429.789733pt;}
.y1d{bottom:433.634000pt;}
.y2d{bottom:435.048267pt;}
.y1ba{bottom:436.354533pt;}
.y18c{bottom:436.402533pt;}
.y5f{bottom:436.514400pt;}
.y90{bottom:436.514533pt;}
.y117{bottom:437.124533pt;}
.y15d{bottom:438.215600pt;}
.y1e3{bottom:439.832133pt;}
.y153{bottom:441.118800pt;}
.y16a{bottom:441.359467pt;}
.y200{bottom:448.456400pt;}
.y2c{bottom:451.048267pt;}
.y1c{bottom:451.238000pt;}
.y116{bottom:453.476533pt;}
.y1b9{bottom:455.026533pt;}
.y18b{bottom:455.074533pt;}
.y5e{bottom:455.181067pt;}
.y8f{bottom:455.181200pt;}
.y1b{bottom:468.842000pt;}
.y115{bottom:470.169867pt;}
.y1b8{bottom:473.698533pt;}
.y18a{bottom:473.746533pt;}
.y5d{bottom:473.847733pt;}
.y8e{bottom:473.847867pt;}
.y1ff{bottom:477.165333pt;}
.y114{bottom:483.503200pt;}
.y1a{bottom:486.446000pt;}
.y1b7{bottom:492.370533pt;}
.y189{bottom:492.418533pt;}
.y1e2{bottom:492.477200pt;}
.y5c{bottom:492.514400pt;}
.y8d{bottom:492.514533pt;}
.y113{bottom:496.836533pt;}
.y169{bottom:497.721867pt;}
.y19{bottom:504.050000pt;}
.ye4{bottom:504.557600pt;}
.y13c{bottom:504.832133pt;}
.yd6{bottom:505.280800pt;}
.y1b6{bottom:511.042533pt;}
.y188{bottom:511.090533pt;}
.y1e1{bottom:511.149200pt;}
.y5b{bottom:511.181067pt;}
.y8c{bottom:511.181200pt;}
.y112{bottom:513.529867pt;}
.ye6{bottom:515.896133pt;}
.y18{bottom:521.654000pt;}
.ye3{bottom:522.161600pt;}
.y13b{bottom:522.436133pt;}
.yb5{bottom:523.123200pt;}
.y168{bottom:523.947600pt;}
.y111{bottom:526.863200pt;}
.y1b5{bottom:529.714533pt;}
.y187{bottom:529.762533pt;}
.y1fe{bottom:529.810400pt;}
.y1e0{bottom:529.821200pt;}
.y5a{bottom:529.847733pt;}
.y8b{bottom:529.847867pt;}
.ye5{bottom:533.500133pt;}
.y165{bottom:534.224533pt;}
.y17{bottom:539.258000pt;}
.y110{bottom:543.556533pt;}
.y1b4{bottom:548.386533pt;}
.y186{bottom:548.434533pt;}
.y1fd{bottom:548.482400pt;}
.y1df{bottom:548.493200pt;}
.y59{bottom:548.514400pt;}
.y8a{bottom:548.514533pt;}
.y164{bottom:551.828533pt;}
.yb4{bottom:551.832133pt;}
.y16{bottom:556.862000pt;}
.y10f{bottom:556.889867pt;}
.y150{bottom:560.186533pt;}
.y1b3{bottom:567.058533pt;}
.y185{bottom:567.106533pt;}
.y1fc{bottom:567.154400pt;}
.y1de{bottom:567.165200pt;}
.y58{bottom:567.181067pt;}
.y89{bottom:567.181200pt;}
.y148{bottom:568.642000pt;}
.y163{bottom:569.432533pt;}
.y10e{bottom:573.583200pt;}
.y15{bottom:574.466000pt;}
.y14f{bottom:577.790533pt;}
.y14b{bottom:581.851333pt;}
.y1b2{bottom:585.730533pt;}
.y184{bottom:585.778533pt;}
.y1fb{bottom:585.826400pt;}
.y1dd{bottom:585.837200pt;}
.y57{bottom:585.847733pt;}
.y88{bottom:585.847867pt;}
.y147{bottom:586.246000pt;}
.y10d{bottom:586.916533pt;}
.y162{bottom:587.036533pt;}
.y14{bottom:592.070000pt;}
.y14e{bottom:595.394533pt;}
.y14a{bottom:599.455333pt;}
.y10c{bottom:600.249867pt;}
.y146{bottom:603.850000pt;}
.y1b1{bottom:604.402533pt;}
.y183{bottom:604.450533pt;}
.y1fa{bottom:604.498400pt;}
.y1dc{bottom:604.509200pt;}
.y56{bottom:604.514400pt;}
.y87{bottom:604.514533pt;}
.y13{bottom:609.674000pt;}
.y14d{bottom:612.998533pt;}
.y10b{bottom:613.583200pt;}
.y149{bottom:617.059333pt;}
.y145{bottom:621.454000pt;}
.y1b0{bottom:623.074533pt;}
.y182{bottom:623.122533pt;}
.y1f9{bottom:623.170400pt;}
.y55{bottom:623.181067pt;}
.y86{bottom:623.181200pt;}
.y12{bottom:627.266000pt;}
.y10a{bottom:630.276533pt;}
.y14c{bottom:630.602533pt;}
.yb2{bottom:635.943600pt;}
.y1af{bottom:641.746533pt;}
.y181{bottom:641.794533pt;}
.y1f8{bottom:641.842400pt;}
.y54{bottom:641.847733pt;}
.y85{bottom:641.847867pt;}
.y109{bottom:643.609867pt;}
.y11{bottom:644.870000pt;}
.y15f{bottom:650.905467pt;}
.y1db{bottom:653.789867pt;}
.yb1{bottom:654.614267pt;}
.y108{bottom:660.303200pt;}
.y1ae{bottom:660.418533pt;}
.y180{bottom:660.466533pt;}
.y53{bottom:660.514400pt;}
.y84{bottom:660.514533pt;}
.y10{bottom:662.474000pt;}
.y1da{bottom:672.456533pt;}
.y107{bottom:676.996533pt;}
.y1ad{bottom:679.090533pt;}
.y17f{bottom:679.138533pt;}
.y52{bottom:679.181067pt;}
.y83{bottom:679.181200pt;}
.yf{bottom:680.078000pt;}
.y12c{bottom:681.992400pt;}
.y106{bottom:690.329867pt;}
.y1f7{bottom:691.123067pt;}
.y1d9{bottom:691.123200pt;}
.y1ac{bottom:697.762533pt;}
.y17e{bottom:697.810533pt;}
.y51{bottom:697.847733pt;}
.y82{bottom:697.847867pt;}
.y12b{bottom:699.596400pt;}
.y105{bottom:707.023200pt;}
.ye{bottom:707.720267pt;}
.y15c{bottom:708.012000pt;}
.y1f6{bottom:709.789733pt;}
.y167{bottom:710.614267pt;}
.y1ab{bottom:716.434533pt;}
.y17d{bottom:716.482533pt;}
.y50{bottom:716.514400pt;}
.y81{bottom:716.514533pt;}
.y1d8{bottom:719.832000pt;}
.y104{bottom:720.356533pt;}
.y1aa{bottom:735.106533pt;}
.y17c{bottom:735.154533pt;}
.y4f{bottom:735.181067pt;}
.y80{bottom:735.181200pt;}
.y103{bottom:737.049867pt;}
.y1f5{bottom:738.498667pt;}
.y152{bottom:742.632533pt;}
.y102{bottom:753.743200pt;}
.y1a9{bottom:753.778533pt;}
.y17b{bottom:753.826533pt;}
.y4e{bottom:753.847733pt;}
.y7f{bottom:753.847867pt;}
.y151{bottom:760.236533pt;}
.y101{bottom:767.076533pt;}
.y1a8{bottom:772.450533pt;}
.y1d7{bottom:772.477200pt;}
.y17a{bottom:772.498533pt;}
.y4d{bottom:772.514400pt;}
.y7e{bottom:772.514533pt;}
.y8{bottom:778.192667pt;}
.y100{bottom:780.409867pt;}
.yb0{bottom:784.352267pt;}
.ya5{bottom:784.456533pt;}
.y1a7{bottom:791.122533pt;}
.y1f4{bottom:791.143733pt;}
.y1d6{bottom:791.149200pt;}
.y179{bottom:791.170533pt;}
.y4c{bottom:791.181067pt;}
.y7d{bottom:791.181200pt;}
.y7{bottom:794.192667pt;}
.yff{bottom:797.103200pt;}
.yaf{bottom:801.956267pt;}
.y13a{bottom:803.947600pt;}
.yec{bottom:804.433067pt;}
.y1a6{bottom:809.794533pt;}
.y1f3{bottom:809.815733pt;}
.y1d5{bottom:809.821200pt;}
.y178{bottom:809.842533pt;}
.y4b{bottom:809.847733pt;}
.y7c{bottom:809.847867pt;}
.y6{bottom:810.192667pt;}
.yfe{bottom:810.436533pt;}
.ya4{bottom:813.165333pt;}
.yfd{bottom:823.769867pt;}
.y1a5{bottom:828.466533pt;}
.y1f2{bottom:828.487733pt;}
.y1d4{bottom:828.493200pt;}
.y4a{bottom:828.514400pt;}
.y7b{bottom:828.514533pt;}
.yfc{bottom:837.103200pt;}
.y5{bottom:841.310933pt;}
.yf7{bottom:845.956400pt;}
.yd2{bottom:845.956533pt;}
.y1a4{bottom:847.138533pt;}
.y1f1{bottom:847.159733pt;}
.y1d3{bottom:847.165200pt;}
.y49{bottom:847.181067pt;}
.y7a{bottom:847.181200pt;}
.yfb{bottom:853.796533pt;}
.y177{bottom:859.947600pt;}
.yf6{bottom:863.023067pt;}
.yd1{bottom:863.023200pt;}
.y1a3{bottom:865.810533pt;}
.y1f0{bottom:865.831733pt;}
.y1d2{bottom:865.837200pt;}
.y48{bottom:865.847733pt;}
.y79{bottom:865.847867pt;}
.yfa{bottom:867.129867pt;}
.y4{bottom:874.034267pt;}
.yf5{bottom:880.089733pt;}
.yd0{bottom:880.089867pt;}
.yf9{bottom:884.089867pt;}
.y1a2{bottom:884.482533pt;}
.y1ef{bottom:884.503733pt;}
.y1d1{bottom:884.509200pt;}
.y47{bottom:884.514400pt;}
.y78{bottom:884.514533pt;}
.yf8{bottom:890.756533pt;}
.y138{bottom:897.280933pt;}
.yf4{bottom:897.423067pt;}
.ycf{bottom:897.423200pt;}
.y1a1{bottom:903.154533pt;}
.y1ee{bottom:903.175733pt;}
.y176{bottom:903.175867pt;}
.y46{bottom:903.181067pt;}
.y77{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y166{bottom:915.947600pt;}
.y1a0{bottom:921.826533pt;}
.y45{bottom:921.847733pt;}
.y76{bottom:921.847867pt;}
.yf3{bottom:924.502000pt;}
.yce{bottom:924.502133pt;}
.y2{bottom:932.695600pt;}
.y1d0{bottom:933.359333pt;}
.y19f{bottom:940.498533pt;}
.y44{bottom:940.514400pt;}
.y75{bottom:940.514533pt;}
.yf2{bottom:942.106000pt;}
.ycd{bottom:942.106133pt;}
.y175{bottom:945.359467pt;}
.y1cf{bottom:952.026000pt;}
.y19e{bottom:959.170533pt;}
.y43{bottom:959.181067pt;}
.y74{bottom:959.181200pt;}
.yf1{bottom:959.710000pt;}
.ycc{bottom:959.710133pt;}
.y1ce{bottom:970.692667pt;}
.yf0{bottom:977.314000pt;}
.ycb{bottom:977.314133pt;}
.y174{bottom:977.842533pt;}
.y42{bottom:977.847733pt;}
.y73{bottom:977.847867pt;}
.yd{bottom:986.502667pt;}
.ya3{bottom:990.952667pt;}
.y137{bottom:990.952800pt;}
.yef{bottom:994.918000pt;}
.yca{bottom:994.918133pt;}
.y41{bottom:996.514400pt;}
.y72{bottom:996.514533pt;}
.y1ed{bottom:999.401467pt;}
.y1cd{bottom:999.401600pt;}
.y3d{bottom:1030.390667pt;}
.y3c{bottom:1047.724000pt;}
.y40{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h15{height:33.979167pt;}
.h12{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h16{height:34.666667pt;}
.h8{height:38.226562pt;}
.h11{height:38.273438pt;}
.h18{height:38.458333pt;}
.h10{height:38.507812pt;}
.ha{height:39.000000pt;}
.h1a{height:39.021333pt;}
.hb{height:39.048000pt;}
.h1c{height:42.083333pt;}
.hc{height:42.234375pt;}
.hd{height:43.265625pt;}
.hf{height:43.333333pt;}
.h1b{height:44.246958pt;}
.h19{height:46.291667pt;}
.h9{height:46.927083pt;}
.h4{height:47.666667pt;}
.h13{height:48.072917pt;}
.h14{height:51.619792pt;}
.he{height:56.312500pt;}
.h17{height:61.333333pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:61.984267pt;}
.x2{left:65.763733pt;}
.xb{left:95.171067pt;}
.xd{left:96.260667pt;}
.x11{left:99.772533pt;}
.x6{left:102.779467pt;}
.x7{left:104.693733pt;}
.x8{left:106.534133pt;}
.x16{left:164.285867pt;}
.x13{left:194.562000pt;}
.x15{left:196.451733pt;}
.x14{left:207.790400pt;}
.x10{left:211.569867pt;}
.x4{left:266.834667pt;}
.xf{left:270.606267pt;}
.x24{left:278.461867pt;}
.xc{left:281.948667pt;}
.x17{left:287.251200pt;}
.x1b{left:293.427200pt;}
.x32{left:297.074667pt;}
.x2c{left:300.872533pt;}
.x18{left:344.072533pt;}
.xe{left:350.030267pt;}
.x3{left:352.045067pt;}
.x20{left:477.747200pt;}
.x1c{left:480.179200pt;}
.x27{left:481.117867pt;}
.x2f{left:487.773867pt;}
.x1d{left:491.560533pt;}
.x2d{left:493.075200pt;}
.x1e{left:494.323200pt;}
.x28{left:496.499200pt;}
.x21{left:499.123200pt;}
.x31{left:513.992533pt;}
.x19{left:517.075200pt;}
.x25{left:522.941867pt;}
.xa{left:576.822400pt;}
.x30{left:606.995200pt;}
.x22{left:609.075200pt;}
.x9{left:611.105067pt;}
.x2a{left:615.955200pt;}
.x1f{left:624.776533pt;}
.x2b{left:632.083200pt;}
.x29{left:635.624533pt;}
.x23{left:644.403200pt;}
.x1a{left:645.555200pt;}
.x2e{left:647.496533pt;}
.x26{left:650.973867pt;}
.x12{left:716.838800pt;}
.x1{left:722.671333pt;}
}




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