
    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_55c6f8c6766e2e0e81478fb3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_066b653905786901e78612e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7d8fd61fe0789268c593464c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_67a8e33bf9d8a70ce49d9a14.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{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);}
.m6{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.mb{transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250062,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250524,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.299953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299953,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.300071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300071,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.300620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300620,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-6.583500px;}
.v1{vertical-align:-3.024000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:60.000000px;}
.ls28{letter-spacing:-0.594000px;}
.ls2c{letter-spacing:-0.432000px;}
.ls18{letter-spacing:-0.240000px;}
.ls10{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.048000px;}
.ls23{letter-spacing:0.054000px;}
.ls1a{letter-spacing:0.060000px;}
.ls1f{letter-spacing:0.162000px;}
.ls1c{letter-spacing:0.180000px;}
.ls2e{letter-spacing:0.270000px;}
.ls26{letter-spacing:0.324000px;}
.lsd{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.378000px;}
.lsa{letter-spacing:0.420000px;}
.ls5{letter-spacing:0.480000px;}
.ls2a{letter-spacing:0.486000px;}
.ls1e{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.600000px;}
.ls25{letter-spacing:0.648000px;}
.lsf{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.768000px;}
.ls1d{letter-spacing:0.810000px;}
.ls1b{letter-spacing:0.840000px;}
.ls20{letter-spacing:0.864000px;}
.ls1{letter-spacing:0.960000px;}
.ls19{letter-spacing:1.020000px;}
.ls9{letter-spacing:1.080000px;}
.ls17{letter-spacing:1.140000px;}
.ls2b{letter-spacing:1.188000px;}
.ls3{letter-spacing:1.200000px;}
.lsb{letter-spacing:1.211364px;}
.ls6{letter-spacing:1.260000px;}
.ls7{letter-spacing:1.320000px;}
.ls29{letter-spacing:1.404000px;}
.ls15{letter-spacing:1.440000px;}
.ls24{letter-spacing:1.512000px;}
.ls21{letter-spacing:1.566000px;}
.ls2d{letter-spacing:1.674000px;}
.ls22{letter-spacing:1.782000px;}
.ls2{letter-spacing:2.160000px;}
.lse{letter-spacing:2.340000px;}
.ls4{letter-spacing:2.700000px;}
.lsc{letter-spacing:3.000000px;}
.ls0{letter-spacing:4.500000px;}
.ls16{letter-spacing:75.058272px;}
.ls12{letter-spacing:393.696000px;}
.ls14{letter-spacing:438.672000px;}
.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;}
}
.wscc{word-spacing:-450.672000px;}
.ws99{word-spacing:-405.696000px;}
.wsdc{word-spacing:-84.622272px;}
.ws0{word-spacing:-49.500000px;}
.wse{word-spacing:-16.200000px;}
.ws16b{word-spacing:-14.580000px;}
.ws120{word-spacing:-14.310000px;}
.ws177{word-spacing:-13.500000px;}
.ws66{word-spacing:-13.167000px;}
.wsfd{word-spacing:-8.052000px;}
.ws13{word-spacing:-7.500000px;}
.ws29{word-spacing:-7.440000px;}
.wsb4{word-spacing:-7.380000px;}
.wsfc{word-spacing:-7.320000px;}
.ws114{word-spacing:-7.260000px;}
.wse2{word-spacing:-7.200000px;}
.ws8e{word-spacing:-7.140000px;}
.ws35{word-spacing:-7.080000px;}
.ws3e{word-spacing:-7.020000px;}
.ws11b{word-spacing:-6.960000px;}
.wse1{word-spacing:-6.900000px;}
.ws108{word-spacing:-6.840000px;}
.ws10b{word-spacing:-6.780000px;}
.ws12a{word-spacing:-6.750000px;}
.ws4d{word-spacing:-6.720000px;}
.ws10c{word-spacing:-6.660000px;}
.wsd3{word-spacing:-6.600000px;}
.ws80{word-spacing:-6.540000px;}
.wsd4{word-spacing:-6.480000px;}
.wsb3{word-spacing:-6.420000px;}
.ws17e{word-spacing:-6.372000px;}
.wsaa{word-spacing:-6.360000px;}
.wsbd{word-spacing:-6.300000px;}
.ws16{word-spacing:-6.240000px;}
.ws118{word-spacing:-6.180000px;}
.ws18{word-spacing:-6.120000px;}
.wsf6{word-spacing:-6.000000px;}
.ws102{word-spacing:-5.940000px;}
.wsfa{word-spacing:-5.880000px;}
.ws16d{word-spacing:-5.832000px;}
.wsb{word-spacing:-5.820000px;}
.ws70{word-spacing:-5.760000px;}
.wsab{word-spacing:-5.700000px;}
.ws54{word-spacing:-5.640000px;}
.ws173{word-spacing:-5.616000px;}
.ws155{word-spacing:-5.508000px;}
.wsba{word-spacing:-5.460000px;}
.wsad{word-spacing:-5.400000px;}
.ws3f{word-spacing:-5.340000px;}
.ws52{word-spacing:-5.280000px;}
.ws8b{word-spacing:-5.220000px;}
.ws142{word-spacing:-5.184000px;}
.ws36{word-spacing:-5.160000px;}
.wsea{word-spacing:-5.100000px;}
.wsbe{word-spacing:-5.040000px;}
.ws12{word-spacing:-4.920000px;}
.ws105{word-spacing:-4.860000px;}
.ws156{word-spacing:-4.806000px;}
.wsa9{word-spacing:-4.800000px;}
.ws60{word-spacing:-4.680000px;}
.ws13c{word-spacing:-4.644000px;}
.wsbf{word-spacing:-4.620000px;}
.ws37{word-spacing:-4.560000px;}
.ws3a{word-spacing:-4.500000px;}
.ws171{word-spacing:-4.482000px;}
.ws119{word-spacing:-4.440000px;}
.wsb7{word-spacing:-4.380000px;}
.ws179{word-spacing:-4.374000px;}
.wsd9{word-spacing:-4.320000px;}
.ws72{word-spacing:-4.260000px;}
.ws170{word-spacing:-4.212000px;}
.ws139{word-spacing:-4.158000px;}
.wsb9{word-spacing:-4.140000px;}
.ws64{word-spacing:-4.080000px;}
.ws12f{word-spacing:-4.050000px;}
.ws97{word-spacing:-4.020000px;}
.ws13d{word-spacing:-3.996000px;}
.ws2d{word-spacing:-3.900000px;}
.ws154{word-spacing:-3.888000px;}
.ws13e{word-spacing:-3.834000px;}
.ws23{word-spacing:-3.780000px;}
.ws164{word-spacing:-3.726000px;}
.ws162{word-spacing:-3.672000px;}
.ws56{word-spacing:-3.660000px;}
.ws48{word-spacing:-3.600000px;}
.wsc{word-spacing:-3.540000px;}
.wsa4{word-spacing:-3.480000px;}
.ws6{word-spacing:-3.420000px;}
.ws176{word-spacing:-3.402000px;}
.wsd8{word-spacing:-3.360000px;}
.ws25{word-spacing:-3.300000px;}
.ws43{word-spacing:-3.240000px;}
.ws57{word-spacing:-3.180000px;}
.ws138{word-spacing:-3.132000px;}
.wsd7{word-spacing:-3.120000px;}
.ws15c{word-spacing:-3.078000px;}
.ws79{word-spacing:-3.060000px;}
.ws95{word-spacing:-3.000000px;}
.ws14{word-spacing:-2.940000px;}
.ws17b{word-spacing:-2.916000px;}
.ws1d{word-spacing:-2.880000px;}
.ws27{word-spacing:-2.820000px;}
.ws19{word-spacing:-2.760000px;}
.ws165{word-spacing:-2.754000px;}
.ws112{word-spacing:-2.700000px;}
.wsff{word-spacing:-2.640000px;}
.ws4c{word-spacing:-2.580000px;}
.wsdb{word-spacing:-2.544000px;}
.ws4b{word-spacing:-2.520000px;}
.ws17d{word-spacing:-2.484000px;}
.wsfe{word-spacing:-2.460000px;}
.ws144{word-spacing:-2.430000px;}
.ws26{word-spacing:-2.400000px;}
.ws15e{word-spacing:-2.376000px;}
.ws3d{word-spacing:-2.340000px;}
.ws14d{word-spacing:-2.268000px;}
.ws5c{word-spacing:-2.220000px;}
.wsed{word-spacing:-2.180592px;}
.ws45{word-spacing:-2.160000px;}
.wsdd{word-spacing:-2.142336px;}
.ws21{word-spacing:-2.100000px;}
.ws1a{word-spacing:-2.040000px;}
.wsc3{word-spacing:-1.980000px;}
.ws2f{word-spacing:-1.920000px;}
.wsc6{word-spacing:-1.860000px;}
.ws8{word-spacing:-1.800000px;}
.ws14e{word-spacing:-1.782000px;}
.ws5d{word-spacing:-1.740000px;}
.ws163{word-spacing:-1.728000px;}
.ws77{word-spacing:-1.680000px;}
.ws133{word-spacing:-1.674000px;}
.ws46{word-spacing:-1.620000px;}
.wsb5{word-spacing:-1.560000px;}
.ws12b{word-spacing:-1.512000px;}
.ws10a{word-spacing:-1.500000px;}
.ws4f{word-spacing:-1.440000px;}
.wsc1{word-spacing:-1.380000px;}
.ws161{word-spacing:-1.350000px;}
.ws22{word-spacing:-1.320000px;}
.ws12c{word-spacing:-1.296000px;}
.ws28{word-spacing:-1.260000px;}
.ws14f{word-spacing:-1.242000px;}
.ws94{word-spacing:-1.200000px;}
.ws11f{word-spacing:-1.140000px;}
.ws15{word-spacing:-1.080000px;}
.wsa7{word-spacing:-1.020000px;}
.ws8a{word-spacing:-0.960000px;}
.ws17c{word-spacing:-0.918000px;}
.wsd1{word-spacing:-0.900000px;}
.ws9{word-spacing:-0.840000px;}
.ws15d{word-spacing:-0.810000px;}
.wsec{word-spacing:-0.780000px;}
.ws8f{word-spacing:-0.720000px;}
.ws10d{word-spacing:-0.660000px;}
.ws100{word-spacing:-0.600000px;}
.wsc2{word-spacing:-0.540000px;}
.ws140{word-spacing:-0.486000px;}
.ws84{word-spacing:-0.480000px;}
.ws153{word-spacing:-0.432000px;}
.ws6e{word-spacing:-0.420000px;}
.wsf4{word-spacing:-0.360000px;}
.ws174{word-spacing:-0.324000px;}
.ws7{word-spacing:-0.300000px;}
.ws93{word-spacing:-0.240000px;}
.ws71{word-spacing:-0.180000px;}
.wscf{word-spacing:-0.144000px;}
.ws7f{word-spacing:-0.120000px;}
.ws166{word-spacing:-0.108000px;}
.ws9d{word-spacing:-0.096000px;}
.ws96{word-spacing:-0.060000px;}
.ws131{word-spacing:-0.054000px;}
.ws9e{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:0.048000px;}
.ws6b{word-spacing:0.052668px;}
.ws134{word-spacing:0.054000px;}
.ws5{word-spacing:0.060000px;}
.ws9f{word-spacing:0.096000px;}
.ws4{word-spacing:0.108000px;}
.ws121{word-spacing:0.120000px;}
.wsa8{word-spacing:0.132000px;}
.ws6a{word-spacing:0.144000px;}
.ws16c{word-spacing:0.162000px;}
.ws31{word-spacing:0.180000px;}
.wsf{word-spacing:0.198000px;}
.ws13f{word-spacing:0.216000px;}
.ws3c{word-spacing:0.240000px;}
.wsf8{word-spacing:0.300000px;}
.ws128{word-spacing:0.324000px;}
.ws73{word-spacing:0.360000px;}
.wsda{word-spacing:0.420000px;}
.ws86{word-spacing:0.540000px;}
.wsd0{word-spacing:0.600000px;}
.ws169{word-spacing:0.648000px;}
.ws4e{word-spacing:0.660000px;}
.ws24{word-spacing:0.720000px;}
.ws10{word-spacing:0.780000px;}
.ws141{word-spacing:0.810000px;}
.ws89{word-spacing:0.960000px;}
.wsbb{word-spacing:1.080000px;}
.ws5f{word-spacing:1.140000px;}
.ws1f{word-spacing:1.200000px;}
.ws30{word-spacing:1.260000px;}
.ws136{word-spacing:1.296000px;}
.ws59{word-spacing:1.320000px;}
.ws14b{word-spacing:1.404000px;}
.wsc7{word-spacing:1.440000px;}
.wsa6{word-spacing:1.560000px;}
.wsfb{word-spacing:1.620000px;}
.wsa5{word-spacing:1.680000px;}
.ws4a{word-spacing:1.800000px;}
.ws11a{word-spacing:1.860000px;}
.ws127{word-spacing:1.920000px;}
.wse8{word-spacing:1.980000px;}
.ws145{word-spacing:1.998000px;}
.ws88{word-spacing:2.040000px;}
.ws78{word-spacing:2.100000px;}
.ws6f{word-spacing:2.220000px;}
.wsd6{word-spacing:2.280000px;}
.ws159{word-spacing:2.322000px;}
.ws53{word-spacing:2.340000px;}
.ws5a{word-spacing:2.400000px;}
.ws16a{word-spacing:2.430000px;}
.wsde{word-spacing:2.460000px;}
.ws51{word-spacing:2.520000px;}
.wsac{word-spacing:2.580000px;}
.wsf3{word-spacing:2.700000px;}
.wsd5{word-spacing:2.760000px;}
.ws91{word-spacing:2.820000px;}
.ws81{word-spacing:2.880000px;}
.ws74{word-spacing:2.940000px;}
.ws11{word-spacing:3.000000px;}
.ws58{word-spacing:3.180000px;}
.ws150{word-spacing:3.186000px;}
.wsc8{word-spacing:3.240000px;}
.wse0{word-spacing:3.300000px;}
.ws157{word-spacing:3.456000px;}
.ws2a{word-spacing:3.480000px;}
.ws12d{word-spacing:3.564000px;}
.ws117{word-spacing:3.600000px;}
.ws12e{word-spacing:3.618000px;}
.ws42{word-spacing:3.660000px;}
.wsef{word-spacing:3.720000px;}
.ws160{word-spacing:3.726000px;}
.ws11c{word-spacing:3.840000px;}
.ws132{word-spacing:3.888000px;}
.ws109{word-spacing:3.900000px;}
.ws17a{word-spacing:3.942000px;}
.wsbc{word-spacing:3.960000px;}
.wsca{word-spacing:4.020000px;}
.ws15b{word-spacing:4.050000px;}
.ws92{word-spacing:4.080000px;}
.ws1c{word-spacing:4.140000px;}
.ws148{word-spacing:4.158000px;}
.ws65{word-spacing:4.200000px;}
.ws2e{word-spacing:4.260000px;}
.ws82{word-spacing:4.320000px;}
.ws17{word-spacing:4.380000px;}
.ws7b{word-spacing:4.500000px;}
.ws68{word-spacing:4.620000px;}
.wse5{word-spacing:4.680000px;}
.ws41{word-spacing:4.740000px;}
.ws130{word-spacing:4.752000px;}
.wsd2{word-spacing:4.800000px;}
.wse7{word-spacing:4.980000px;}
.ws5e{word-spacing:5.040000px;}
.ws168{word-spacing:5.076000px;}
.ws63{word-spacing:5.100000px;}
.wsc9{word-spacing:5.160000px;}
.ws13a{word-spacing:5.238000px;}
.ws69{word-spacing:5.280000px;}
.wse9{word-spacing:5.340000px;}
.ws113{word-spacing:5.520000px;}
.ws3{word-spacing:5.616000px;}
.wsa1{word-spacing:5.700000px;}
.ws15a{word-spacing:5.778000px;}
.wse6{word-spacing:5.880000px;}
.ws122{word-spacing:5.940000px;}
.ws3b{word-spacing:6.000000px;}
.ws11d{word-spacing:6.060000px;}
.wsf2{word-spacing:6.120000px;}
.ws104{word-spacing:6.180000px;}
.ws34{word-spacing:6.300000px;}
.ws1b{word-spacing:6.540000px;}
.wsa2{word-spacing:6.600000px;}
.ws50{word-spacing:6.720000px;}
.ws16e{word-spacing:6.750000px;}
.wsf5{word-spacing:6.780000px;}
.ws146{word-spacing:6.858000px;}
.wsee{word-spacing:7.020000px;}
.ws61{word-spacing:7.080000px;}
.ws90{word-spacing:7.140000px;}
.wsa{word-spacing:7.200000px;}
.ws44{word-spacing:7.260000px;}
.ws75{word-spacing:7.320000px;}
.ws172{word-spacing:7.452000px;}
.wse4{word-spacing:7.500000px;}
.ws49{word-spacing:7.620000px;}
.ws7e{word-spacing:7.680000px;}
.wsf9{word-spacing:7.740000px;}
.ws129{word-spacing:7.776000px;}
.ws7c{word-spacing:7.980000px;}
.ws62{word-spacing:8.040000px;}
.ws11e{word-spacing:8.100000px;}
.ws2c{word-spacing:8.160000px;}
.ws152{word-spacing:8.208000px;}
.ws125{word-spacing:8.220000px;}
.ws20{word-spacing:8.280000px;}
.ws103{word-spacing:8.340000px;}
.wsf7{word-spacing:8.400000px;}
.ws87{word-spacing:8.760000px;}
.ws33{word-spacing:8.820000px;}
.ws158{word-spacing:8.910000px;}
.ws175{word-spacing:8.964000px;}
.ws15f{word-spacing:9.126000px;}
.ws124{word-spacing:9.360000px;}
.ws14c{word-spacing:9.396000px;}
.wsc5{word-spacing:9.420000px;}
.ws135{word-spacing:9.450000px;}
.wsf0{word-spacing:9.480000px;}
.ws178{word-spacing:9.504000px;}
.wsb8{word-spacing:9.720000px;}
.ws126{word-spacing:9.840000px;}
.ws85{word-spacing:9.900000px;}
.ws7a{word-spacing:9.960000px;}
.ws107{word-spacing:10.020000px;}
.ws167{word-spacing:10.152000px;}
.ws6c{word-spacing:10.200000px;}
.ws39{word-spacing:10.320000px;}
.wsa3{word-spacing:10.440000px;}
.ws38{word-spacing:10.500000px;}
.ws143{word-spacing:10.530000px;}
.ws110{word-spacing:10.620000px;}
.ws14a{word-spacing:10.638000px;}
.wsb6{word-spacing:10.680000px;}
.ws5b{word-spacing:10.920000px;}
.ws101{word-spacing:11.040000px;}
.ws32{word-spacing:11.160000px;}
.ws16f{word-spacing:11.232000px;}
.ws147{word-spacing:11.286000px;}
.wsae{word-spacing:11.340000px;}
.wsa0{word-spacing:11.640000px;}
.ws10f{word-spacing:11.820000px;}
.ws111{word-spacing:11.940000px;}
.ws47{word-spacing:12.000000px;}
.ws106{word-spacing:12.060000px;}
.ws6d{word-spacing:12.180000px;}
.ws55{word-spacing:12.480000px;}
.ws1e{word-spacing:12.720000px;}
.wsf1{word-spacing:12.960000px;}
.ws115{word-spacing:13.080000px;}
.ws151{word-spacing:13.122000px;}
.wsc4{word-spacing:13.140000px;}
.ws10e{word-spacing:13.200000px;}
.ws149{word-spacing:13.284000px;}
.ws7d{word-spacing:13.320000px;}
.ws40{word-spacing:13.380000px;}
.ws13b{word-spacing:13.446000px;}
.ws137{word-spacing:13.500000px;}
.ws76{word-spacing:13.560000px;}
.ws2b{word-spacing:13.740000px;}
.ws116{word-spacing:13.920000px;}
.ws123{word-spacing:14.040000px;}
.wsc0{word-spacing:14.160000px;}
.wseb{word-spacing:14.220000px;}
.wsdf{word-spacing:14.520000px;}
.ws8d{word-spacing:14.640000px;}
.ws8c{word-spacing:14.760000px;}
.ws83{word-spacing:14.940000px;}
.wse3{word-spacing:15.000000px;}
.wscb{word-spacing:56.400000px;}
.ws98{word-spacing:179.712000px;}
.ws9b{word-spacing:261.936000px;}
.ws9a{word-spacing:262.848000px;}
.ws67{word-spacing:345.765420px;}
.wsce{word-spacing:358.032000px;}
.wsb0{word-spacing:363.936000px;}
.ws9c{word-spacing:376.032000px;}
.wsb1{word-spacing:378.912000px;}
.wsb2{word-spacing:466.560000px;}
.wscd{word-spacing:469.200000px;}
.wsaf{word-spacing:478.560000px;}
.wsd{word-spacing:1816.080000px;}
._4b{margin-left:-48.000000px;}
._1{margin-left:-24.480000px;}
._4{margin-left:-14.796000px;}
._0{margin-left:-8.100000px;}
._8{margin-left:-5.760000px;}
._3{margin-left:-4.320000px;}
._63{margin-left:-2.907456px;}
._6{margin-left:-1.320000px;}
._5{width:1.800000px;}
._12{width:2.976000px;}
._66{width:5.616000px;}
._65{width:7.020000px;}
._64{width:9.960000px;}
._67{width:17.226000px;}
._62{width:26.304000px;}
._61{width:59.280000px;}
._49{width:81.696000px;}
._7{width:135.780000px;}
._2f{width:141.696000px;}
._4a{width:147.984000px;}
._30{width:185.232000px;}
._11{width:191.472000px;}
._59{width:192.816000px;}
._c{width:222.768000px;}
._2c{width:235.344000px;}
._b{width:239.856000px;}
._5a{width:241.344000px;}
._10{width:242.544000px;}
._56{width:248.256000px;}
._2a{width:259.056000px;}
._f{width:261.456000px;}
._4f{width:263.568000px;}
._19{width:274.656000px;}
._1d{width:277.056000px;}
._e{width:282.480000px;}
._1a{width:289.632000px;}
._2d{width:291.456000px;}
._57{width:292.656000px;}
._18{width:296.544000px;}
._d{width:299.856000px;}
._53{width:306.096000px;}
._60{width:307.152000px;}
._48{width:314.832000px;}
._15{width:317.136000px;}
._47{width:319.296000px;}
._21{width:329.280000px;}
._16{width:344.880000px;}
._28{width:359.232000px;}
._51{width:365.280000px;}
._24{width:371.136000px;}
._45{width:376.656000px;}
._3b{width:379.056000px;}
._35{width:385.056000px;}
._14{width:388.704000px;}
._36{width:391.056000px;}
._42{width:397.056000px;}
._20{width:401.280000px;}
._52{width:409.680000px;}
._1f{width:417.120000px;}
._5c{width:418.704000px;}
._5f{width:430.752000px;}
._2e{width:439.344000px;}
._4d{width:443.280000px;}
._3c{width:480.144000px;}
._40{width:484.704000px;}
._3d{width:489.792000px;}
._38{width:491.280000px;}
._39{width:493.536000px;}
._55{width:495.456000px;}
._33{width:503.280000px;}
._32{width:505.536000px;}
._1c{width:518.832000px;}
._25{width:523.920000px;}
._4c{width:539.856000px;}
._1b{width:555.456000px;}
._13{width:569.856000px;}
._46{width:571.296000px;}
._3a{width:581.808000px;}
._5b{width:591.456000px;}
._a{width:601.344000px;}
._50{width:603.456000px;}
._3f{width:612.432000px;}
._37{width:618.432000px;}
._31{width:632.832000px;}
._58{width:637.056000px;}
._29{width:654.192000px;}
._2b{width:664.368000px;}
._5e{width:673.104000px;}
._22{width:679.056000px;}
._26{width:685.056000px;}
._23{width:694.656000px;}
._17{width:697.056000px;}
._54{width:703.632000px;}
._27{width:715.104000px;}
._44{width:717.168000px;}
._5d{width:730.032000px;}
._4e{width:771.408000px;}
._43{width:778.032000px;}
._3e{width:910.032000px;}
._41{width:1099.920000px;}
._34{width:1255.056000px;}
._2{width:1629.696000px;}
._9{width:1822.656000px;}
._1e{width:1951.104000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:34.776000px;}
.fs8{font-size:38.256000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:48.684000px;}
.fs5{font-size:52.668000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:108.000000px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:126.675000px;}
.yb1{bottom:165.675000px;}
.y11{bottom:166.425000px;}
.yc2{bottom:167.169000px;}
.y4a{bottom:167.925000px;}
.yf1{bottom:168.675000px;}
.y133{bottom:169.417500px;}
.y112{bottom:170.175000px;}
.y1c5{bottom:176.166000px;}
.y153{bottom:178.408500px;}
.y1a7{bottom:180.661500px;}
.yb0{bottom:180.675000px;}
.y10{bottom:181.425000px;}
.y132{bottom:182.917500px;}
.y49{bottom:182.925000px;}
.yf0{bottom:183.675000px;}
.y111{bottom:185.175000px;}
.y1c4{bottom:189.666000px;}
.y152{bottom:191.908500px;}
.y131{bottom:196.417500px;}
.y48{bottom:197.925000px;}
.yef{bottom:198.675000px;}
.y110{bottom:200.175000px;}
.y1a6{bottom:203.166000px;}
.y151{bottom:205.408500px;}
.yaf{bottom:208.425000px;}
.yf{bottom:209.175000px;}
.y130{bottom:209.917500px;}
.y1c3{bottom:211.414500px;}
.yc1{bottom:211.425000px;}
.y47{bottom:212.925000px;}
.yee{bottom:213.675000px;}
.y10f{bottom:215.175000px;}
.y1a5{bottom:224.914500px;}
.y150{bottom:227.913000px;}
.y46{bottom:227.925000px;}
.yed{bottom:228.675000px;}
.y10e{bottom:230.175000px;}
.y12f{bottom:231.666000px;}
.y1c2{bottom:238.414500px;}
.yc0{bottom:238.425000px;}
.y14f{bottom:241.413000px;}
.y66{bottom:242.925000px;}
.yec{bottom:243.675000px;}
.y12e{bottom:245.166000px;}
.y10d{bottom:245.175000px;}
.y1a4{bottom:246.663000px;}
.y1e5{bottom:250.416000px;}
.ybf{bottom:251.925000px;}
.yae{bottom:253.425000px;}
.y14e{bottom:254.913000px;}
.y45{bottom:257.925000px;}
.yeb{bottom:258.675000px;}
.y1c1{bottom:260.163000px;}
.y56{bottom:260.175000px;}
.y12d{bottom:267.670500px;}
.yad{bottom:268.425000px;}
.y1a3{bottom:269.167500px;}
.y1e4{bottom:272.164500px;}
.y44{bottom:272.925000px;}
.y1c0{bottom:273.663000px;}
.yea{bottom:273.675000px;}
.y55{bottom:275.175000px;}
.y14d{bottom:276.661500px;}
.ybe{bottom:278.925000px;}
.y12c{bottom:281.170500px;}
.yac{bottom:283.425000px;}
.y43{bottom:287.925000px;}
.ye9{bottom:288.675000px;}
.y14c{bottom:290.161500px;}
.y54{bottom:290.175000px;}
.ye{bottom:291.675000px;}
.ybd{bottom:292.425000px;}
.y1e3{bottom:294.669000px;}
.y12b{bottom:294.670500px;}
.y1bf{bottom:296.167500px;}
.yab{bottom:298.425000px;}
.y42{bottom:302.925000px;}
.y14b{bottom:303.661500px;}
.ye8{bottom:303.675000px;}
.y53{bottom:305.175000px;}
.ybc{bottom:305.925000px;}
.yd{bottom:306.675000px;}
.y1e2{bottom:308.169000px;}
.y1be{bottom:309.667500px;}
.y1a2{bottom:312.664500px;}
.y12a{bottom:316.419000px;}
.y41{bottom:317.925000px;}
.ye7{bottom:318.675000px;}
.ybb{bottom:319.425000px;}
.y52{bottom:320.175000px;}
.yc{bottom:321.675000px;}
.y14a{bottom:325.410000px;}
.y1a1{bottom:326.164500px;}
.yaa{bottom:328.425000px;}
.y1e1{bottom:329.917500px;}
.y129{bottom:329.919000px;}
.y1bd{bottom:331.416000px;}
.y40{bottom:332.925000px;}
.ye6{bottom:333.675000px;}
.y51{bottom:335.175000px;}
.yb{bottom:336.675000px;}
.y149{bottom:338.910000px;}
.y128{bottom:343.419000px;}
.ya9{bottom:343.425000px;}
.y3f{bottom:347.925000px;}
.y1a0{bottom:348.669000px;}
.yf2{bottom:348.675000px;}
.y50{bottom:350.175000px;}
.y1e0{bottom:351.666000px;}
.y148{bottom:352.410000px;}
.y1bc{bottom:353.164500px;}
.y127{bottom:356.919000px;}
.ya8{bottom:358.425000px;}
.yba{bottom:359.925000px;}
.y3e{bottom:362.925000px;}
.ye5{bottom:363.675000px;}
.ya{bottom:364.425000px;}
.y4f{bottom:365.175000px;}
.y1df{bottom:373.414500px;}
.ya7{bottom:373.425000px;}
.y147{bottom:374.914500px;}
.y1bb{bottom:375.669000px;}
.y3d{bottom:377.925000px;}
.y126{bottom:378.667500px;}
.ye4{bottom:378.675000px;}
.y4e{bottom:380.175000px;}
.y146{bottom:388.414500px;}
.ya6{bottom:388.425000px;}
.y19f{bottom:392.166000px;}
.y125{bottom:392.167500px;}
.y3c{bottom:392.925000px;}
.ye3{bottom:393.675000px;}
.y7f{bottom:395.175000px;}
.y1de{bottom:395.919000px;}
.y1ba{bottom:397.417500px;}
.yb9{bottom:400.425000px;}
.y145{bottom:401.914500px;}
.ya5{bottom:403.425000px;}
.y3b{bottom:407.925000px;}
.ye2{bottom:408.675000px;}
.y7e{bottom:410.175000px;}
.y19e{bottom:413.914500px;}
.yb8{bottom:413.925000px;}
.y124{bottom:414.672000px;}
.y1dd{bottom:417.667500px;}
.ya4{bottom:418.425000px;}
.y65{bottom:418.988616px;}
.y3a{bottom:422.925000px;}
.y144{bottom:423.663000px;}
.ye1{bottom:423.675000px;}
.yb7{bottom:427.425000px;}
.y123{bottom:428.172000px;}
.ya3{bottom:433.425000px;}
.y64{bottom:434.789016px;}
.y19d{bottom:436.419000px;}
.y143{bottom:437.163000px;}
.y9{bottom:437.925000px;}
.ye0{bottom:438.675000px;}
.y1dc{bottom:439.416000px;}
.yb6{bottom:440.925000px;}
.y1b9{bottom:441.670500px;}
.ya2{bottom:448.425000px;}
.y122{bottom:449.920500px;}
.y142{bottom:450.663000px;}
.y8{bottom:452.925000px;}
.ydf{bottom:453.675000px;}
.yb5{bottom:454.425000px;}
.y1b8{bottom:455.170500px;}
.y19c{bottom:458.167500px;}
.y121{bottom:463.420500px;}
.ya1{bottom:463.425000px;}
.y141{bottom:464.163000px;}
.y7{bottom:467.925000px;}
.y1b7{bottom:468.670500px;}
.yde{bottom:468.675000px;}
.ya0{bottom:478.425000px;}
.y39{bottom:482.925000px;}
.y1db{bottom:483.669000px;}
.y120{bottom:485.169000px;}
.y140{bottom:485.911500px;}
.y1b6{bottom:490.419000px;}
.y9f{bottom:493.425000px;}
.yb4{bottom:494.925000px;}
.y1da{bottom:497.169000px;}
.y38{bottom:497.925000px;}
.y11f{bottom:498.669000px;}
.y13f{bottom:499.411500px;}
.y19b{bottom:502.420500px;}
.y9e{bottom:508.425000px;}
.y11e{bottom:512.169000px;}
.y13e{bottom:512.911500px;}
.y4d{bottom:512.925000px;}
.y6{bottom:516.675000px;}
.y9d{bottom:523.425000px;}
.y5b{bottom:524.890797px;}
.y37{bottom:527.925000px;}
.y63{bottom:532.711995px;}
.y13d{bottom:534.660000px;}
.y11d{bottom:534.673500px;}
.y9c{bottom:538.425000px;}
.y1d9{bottom:541.422000px;}
.y36{bottom:542.925000px;}
.y5{bottom:543.675000px;}
.y19a{bottom:545.917500px;}
.y13c{bottom:548.160000px;}
.y11c{bottom:548.173500px;}
.y9b{bottom:553.425000px;}
.y35{bottom:557.925000px;}
.y13b{bottom:561.660000px;}
.y11b{bottom:561.673500px;}
.ydb{bottom:568.292676px;}
.ydd{bottom:568.294176px;}
.y9a{bottom:568.425000px;}
.y10a{bottom:569.042676px;}
.y10c{bottom:569.044176px;}
.yb3{bottom:569.925000px;}
.y4{bottom:570.675000px;}
.y34{bottom:572.925000px;}
.y7d{bottom:574.419000px;}
.y13a{bottom:575.160000px;}
.y1b5{bottom:578.169000px;}
.yb2{bottom:581.925000px;}
.y11a{bottom:583.422000px;}
.y99{bottom:583.425000px;}
.y33{bottom:587.925000px;}
.yda{bottom:588.291000px;}
.ydc{bottom:588.292500px;}
.y109{bottom:589.041000px;}
.y10b{bottom:589.042500px;}
.y7c{bottom:589.419000px;}
.y199{bottom:590.170500px;}
.y119{bottom:596.922000px;}
.y139{bottom:597.664500px;}
.y1b4{bottom:599.917500px;}
.y32{bottom:602.925000px;}
.y184{bottom:603.670500px;}
.yd9{bottom:607.419000px;}
.y108{bottom:608.169000px;}
.y171{bottom:608.922000px;}
.y62{bottom:609.896949px;}
.y118{bottom:610.422000px;}
.y138{bottom:611.164500px;}
.y183{bottom:617.170500px;}
.y31{bottom:617.925000px;}
.y170{bottom:622.422000px;}
.y117{bottom:623.922000px;}
.y137{bottom:624.664500px;}
.y61{bottom:625.697349px;}
.yd8{bottom:628.259772px;}
.y107{bottom:629.009772px;}
.y1d8{bottom:629.172000px;}
.y182{bottom:630.670500px;}
.y30{bottom:632.925000px;}
.y7b{bottom:634.419000px;}
.y1b3{bottom:635.922000px;}
.y1d7{bottom:642.672000px;}
.y16f{bottom:644.170500px;}
.y116{bottom:645.670500px;}
.y136{bottom:646.413000px;}
.yd7{bottom:647.621310px;}
.y2f{bottom:647.925000px;}
.y106{bottom:648.371310px;}
.y7a{bottom:649.419000px;}
.y181{bottom:653.175000px;}
.y198{bottom:656.172000px;}
.y16e{bottom:657.670500px;}
.y115{bottom:659.170500px;}
.y135{bottom:659.913000px;}
.y2e{bottom:662.925000px;}
.y79{bottom:664.419000px;}
.y1d6{bottom:664.420500px;}
.y180{bottom:666.675000px;}
.yd6{bottom:666.982848px;}
.y105{bottom:667.732848px;}
.y16d{bottom:671.170500px;}
.y114{bottom:672.670500px;}
.y134{bottom:673.413000px;}
.y1d5{bottom:677.920500px;}
.y2d{bottom:677.925000px;}
.y86{bottom:679.419000px;}
.y98{bottom:683.907000px;}
.yd5{bottom:686.344386px;}
.y104{bottom:687.094386px;}
.y17f{bottom:688.423500px;}
.y2c{bottom:692.925000px;}
.y16c{bottom:693.675000px;}
.y85{bottom:694.419000px;}
.y113{bottom:695.175000px;}
.y97{bottom:695.907000px;}
.y197{bottom:699.669000px;}
.y17e{bottom:701.923500px;}
.yd4{bottom:705.705924px;}
.y103{bottom:706.455924px;}
.y16b{bottom:707.175000px;}
.y2b{bottom:707.925000px;}
.y78{bottom:709.419000px;}
.y196{bottom:713.169000px;}
.y17d{bottom:715.423500px;}
.y16a{bottom:720.675000px;}
.y2a{bottom:722.925000px;}
.y1b2{bottom:723.672000px;}
.y77{bottom:724.419000px;}
.yd3{bottom:725.067462px;}
.y102{bottom:725.817462px;}
.y195{bottom:726.669000px;}
.y60{bottom:726.754074px;}
.y1d4{bottom:735.673500px;}
.y96{bottom:737.163000px;}
.y17c{bottom:737.172000px;}
.y29{bottom:737.925000px;}
.y84{bottom:739.419000px;}
.y194{bottom:740.169000px;}
.y169{bottom:742.423500px;}
.y5f{bottom:742.554474px;}
.yd2{bottom:744.429000px;}
.y101{bottom:745.179000px;}
.y1b1{bottom:745.420500px;}
.y95{bottom:749.163000px;}
.y17b{bottom:750.672000px;}
.y28{bottom:752.925000px;}
.y83{bottom:754.419000px;}
.y168{bottom:755.923500px;}
.y1d3{bottom:757.422000px;}
.y94{bottom:761.163000px;}
.yd1{bottom:761.736000px;}
.y100{bottom:762.486000px;}
.y193{bottom:762.673500px;}
.y17a{bottom:764.172000px;}
.y27{bottom:767.925000px;}
.y76{bottom:769.419000px;}
.y167{bottom:769.423500px;}
.y1d2{bottom:770.922000px;}
.y192{bottom:776.173500px;}
.y179{bottom:777.672000px;}
.y26{bottom:782.925000px;}
.y75{bottom:784.419000px;}
.y191{bottom:789.673500px;}
.y166{bottom:791.172000px;}
.y1d1{bottom:792.670500px;}
.y5a{bottom:796.249500px;}
.y4c{bottom:797.925000px;}
.y74{bottom:799.419000px;}
.y178{bottom:800.176500px;}
.y93{bottom:802.419000px;}
.y190{bottom:803.173500px;}
.y165{bottom:804.672000px;}
.y1d0{bottom:806.170500px;}
.y1b0{bottom:811.422000px;}
.y25{bottom:812.925000px;}
.y177{bottom:813.676500px;}
.y73{bottom:814.419000px;}
.y1cf{bottom:819.670500px;}
.y18f{bottom:824.922000px;}
.y164{bottom:827.176500px;}
.y24{bottom:827.925000px;}
.y82{bottom:829.419000px;}
.y5e{bottom:832.748424px;}
.yce{bottom:838.292676px;}
.yd0{bottom:838.294176px;}
.y18e{bottom:838.422000px;}
.yfd{bottom:839.042676px;}
.yff{bottom:839.044176px;}
.y163{bottom:840.676500px;}
.y1ce{bottom:842.175000px;}
.y23{bottom:842.925000px;}
.y5d{bottom:848.548824px;}
.y176{bottom:848.925000px;}
.y18d{bottom:851.922000px;}
.y92{bottom:855.675000px;}
.y1af{bottom:857.173500px;}
.y22{bottom:857.925000px;}
.ycd{bottom:858.291000px;}
.ycf{bottom:858.292500px;}
.yfc{bottom:859.041000px;}
.yfe{bottom:859.042500px;}
.y72{bottom:859.419000px;}
.y162{bottom:862.425000px;}
.y5c{bottom:864.349224px;}
.y91{bottom:867.675000px;}
.y21{bottom:872.925000px;}
.y18c{bottom:873.670500px;}
.y71{bottom:874.419000px;}
.y161{bottom:875.925000px;}
.ycc{bottom:877.419000px;}
.y1cd{bottom:877.423500px;}
.yfb{bottom:878.169000px;}
.y1ae{bottom:878.922000px;}
.y90{bottom:879.675000px;}
.y18b{bottom:887.170500px;}
.y20{bottom:887.925000px;}
.y70{bottom:889.419000px;}
.y160{bottom:889.425000px;}
.y1cc{bottom:890.923500px;}
.y175{bottom:897.673500px;}
.ycb{bottom:898.259772px;}
.yfa{bottom:899.009772px;}
.y1f{bottom:902.925000px;}
.y6f{bottom:904.419000px;}
.y15f{bottom:911.173500px;}
.y1cb{bottom:912.672000px;}
.yca{bottom:917.621310px;}
.y1e{bottom:917.925000px;}
.yf9{bottom:918.371310px;}
.y6e{bottom:919.419000px;}
.y8f{bottom:920.175000px;}
.y1ad{bottom:923.175000px;}
.y15e{bottom:924.673500px;}
.y18a{bottom:931.423500px;}
.y8e{bottom:932.175000px;}
.y1d{bottom:932.925000px;}
.y6d{bottom:934.419000px;}
.y1ca{bottom:935.176500px;}
.yc9{bottom:936.982848px;}
.y59{bottom:937.425000px;}
.yf8{bottom:937.732848px;}
.y15d{bottom:938.173500px;}
.y8d{bottom:944.175000px;}
.y1ac{bottom:944.923500px;}
.y174{bottom:946.422000px;}
.y4b{bottom:947.925000px;}
.y1c9{bottom:948.676500px;}
.y81{bottom:949.419000px;}
.y58{bottom:949.425000px;}
.y15c{bottom:951.673500px;}
.y189{bottom:953.172000px;}
.y8c{bottom:956.175000px;}
.yc8{bottom:956.344386px;}
.yf7{bottom:957.094386px;}
.y173{bottom:959.922000px;}
.y1c{bottom:962.925000px;}
.y80{bottom:964.419000px;}
.y57{bottom:964.425000px;}
.y1ab{bottom:966.672000px;}
.y1c8{bottom:970.425000px;}
.y15b{bottom:973.422000px;}
.y188{bottom:975.676500px;}
.yc7{bottom:975.705924px;}
.yf6{bottom:976.455924px;}
.y1b{bottom:977.925000px;}
.y6c{bottom:979.419000px;}
.y15a{bottom:986.922000px;}
.y1aa{bottom:989.176500px;}
.y1c7{bottom:992.173500px;}
.y1a{bottom:992.925000px;}
.y6b{bottom:994.419000px;}
.yc6{bottom:995.067462px;}
.yf5{bottom:995.817462px;}
.y187{bottom:997.425000px;}
.y159{bottom:1000.422000px;}
.y8b{bottom:1001.175000px;}
.y19{bottom:1007.925000px;}
.y6a{bottom:1009.419000px;}
.y8a{bottom:1013.175000px;}
.yc5{bottom:1014.429000px;}
.yf4{bottom:1015.179000px;}
.y18{bottom:1022.925000px;}
.y158{bottom:1022.926500px;}
.y69{bottom:1024.419000px;}
.y89{bottom:1025.175000px;}
.yc4{bottom:1031.736000px;}
.yf3{bottom:1032.486000px;}
.y1a9{bottom:1032.673500px;}
.y157{bottom:1036.426500px;}
.y17{bottom:1037.925000px;}
.y186{bottom:1040.922000px;}
.y156{bottom:1049.926500px;}
.y16{bottom:1052.925000px;}
.y185{bottom:1054.422000px;}
.y1c6{bottom:1058.175000px;}
.y155{bottom:1063.426500px;}
.y2{bottom:1064.175000px;}
.y15{bottom:1067.925000px;}
.yc3{bottom:1069.419000px;}
.y172{bottom:1071.675000px;}
.y1a8{bottom:1076.926500px;}
.y14{bottom:1082.925000px;}
.y68{bottom:1084.419000px;}
.y88{bottom:1085.175000px;}
.y13{bottom:1097.925000px;}
.y154{bottom:1098.675000px;}
.y67{bottom:1099.419000px;}
.y87{bottom:1100.175000px;}
.y1{bottom:1109.175000px;}
.y12{bottom:1144.425000px;}
.hc{height:34.130742px;}
.hd{height:37.546172px;}
.ha{height:47.085938px;}
.h2{height:47.109375px;}
.hb{height:47.780684px;}
.h9{height:51.690762px;}
.h10{height:52.971680px;}
.hf{height:52.998047px;}
.he{height:54.421875px;}
.h5{height:58.886719px;}
.h4{height:60.468750px;}
.h8{height:64.775391px;}
.h6{height:66.515625px;}
.h3{height:108.843750px;}
.h7{height:118.886719px;}
.h1{height:181.406250px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:84.750000px;}
.x6{left:86.250000px;}
.x8{left:90.505500px;}
.x5c{left:100.192500px;}
.x57{left:101.697000px;}
.x14{left:106.200000px;}
.x5f{left:120.435000px;}
.x2d{left:121.494000px;}
.x5a{left:145.944000px;}
.x10{left:148.111125px;}
.x1c{left:157.506000px;}
.x30{left:161.299500px;}
.x31{left:165.655500px;}
.x13{left:168.444000px;}
.x33{left:181.009500px;}
.x32{left:186.520500px;}
.xe{left:197.118699px;}
.x9{left:199.580928px;}
.xa{left:205.545579px;}
.xc{left:207.138786px;}
.x34{left:208.456644px;}
.xd{left:214.275300px;}
.xf{left:219.673770px;}
.x60{left:223.183500px;}
.x7{left:225.750000px;}
.x36{left:233.939170px;}
.x5{left:236.250000px;}
.x35{left:238.730920px;}
.xb{left:239.753445px;}
.x11{left:259.622448px;}
.x37{left:264.318865px;}
.x20{left:266.700000px;}
.x1{left:285.750000px;}
.x1d{left:290.262000px;}
.x38{left:292.638108px;}
.x2f{left:300.748500px;}
.x16{left:309.456000px;}
.x3d{left:312.555000px;}
.x15{left:313.956000px;}
.x2{left:315.760500px;}
.x21{left:316.944000px;}
.x1f{left:321.444000px;}
.x3e{left:325.749100px;}
.x17{left:328.200000px;}
.x5b{left:337.941000px;}
.x5e{left:346.515000px;}
.x3a{left:348.404494px;}
.x39{left:353.196244px;}
.x3b{left:376.282896px;}
.x3c{left:404.161297px;}
.x2e{left:410.994000px;}
.x5d{left:414.445500px;}
.x59{left:416.700000px;}
.x1e{left:424.944000px;}
.x1b{left:426.750000px;}
.x12{left:428.700000px;}
.x4{left:463.500000px;}
.x43{left:469.611000px;}
.x23{left:472.944000px;}
.x58{left:480.439500px;}
.x27{left:484.944000px;}
.x29{left:505.944000px;}
.x25{left:513.444000px;}
.x28{left:518.700000px;}
.x2b{left:521.700000px;}
.x40{left:535.536000px;}
.x41{left:539.882250px;}
.x42{left:544.228500px;}
.x24{left:546.444000px;}
.x45{left:559.551000px;}
.x44{left:565.050000px;}
.x46{left:586.938000px;}
.x2a{left:591.456000px;}
.x26{left:597.444000px;}
.x2c{left:602.700000px;}
.x22{left:613.200000px;}
.x47{left:617.145937px;}
.x1a{left:622.944000px;}
.x18{left:629.700000px;}
.x19{left:634.200000px;}
.x49{left:642.677812px;}
.x48{left:647.459062px;}
.x54{left:668.701549px;}
.x4a{left:670.935000px;}
.x53{left:673.484300px;}
.x4c{left:699.192188px;}
.x52{left:702.586500px;}
.x4b{left:703.973438px;}
.x3f{left:715.126500px;}
.x56{left:723.492733px;}
.x4e{left:726.579187px;}
.x4d{left:731.360437px;}
.x55{left:733.058233px;}
.x50{left:754.396500px;}
.x4f{left:759.177750px;}
.x51{left:782.213812px;}
@media print{
.v3{vertical-align:-5.852000pt;}
.v1{vertical-align:-2.688000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:53.333333pt;}
.ls28{letter-spacing:-0.528000pt;}
.ls2c{letter-spacing:-0.384000pt;}
.ls18{letter-spacing:-0.213333pt;}
.ls10{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.042667pt;}
.ls23{letter-spacing:0.048000pt;}
.ls1a{letter-spacing:0.053333pt;}
.ls1f{letter-spacing:0.144000pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls2e{letter-spacing:0.240000pt;}
.ls26{letter-spacing:0.288000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.336000pt;}
.lsa{letter-spacing:0.373333pt;}
.ls5{letter-spacing:0.426667pt;}
.ls2a{letter-spacing:0.432000pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.533333pt;}
.ls25{letter-spacing:0.576000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.682667pt;}
.ls1d{letter-spacing:0.720000pt;}
.ls1b{letter-spacing:0.746667pt;}
.ls20{letter-spacing:0.768000pt;}
.ls1{letter-spacing:0.853333pt;}
.ls19{letter-spacing:0.906667pt;}
.ls9{letter-spacing:0.960000pt;}
.ls17{letter-spacing:1.013333pt;}
.ls2b{letter-spacing:1.056000pt;}
.ls3{letter-spacing:1.066667pt;}
.lsb{letter-spacing:1.076768pt;}
.ls6{letter-spacing:1.120000pt;}
.ls7{letter-spacing:1.173333pt;}
.ls29{letter-spacing:1.248000pt;}
.ls15{letter-spacing:1.280000pt;}
.ls24{letter-spacing:1.344000pt;}
.ls21{letter-spacing:1.392000pt;}
.ls2d{letter-spacing:1.488000pt;}
.ls22{letter-spacing:1.584000pt;}
.ls2{letter-spacing:1.920000pt;}
.lse{letter-spacing:2.080000pt;}
.ls4{letter-spacing:2.400000pt;}
.lsc{letter-spacing:2.666667pt;}
.ls0{letter-spacing:4.000000pt;}
.ls16{letter-spacing:66.718464pt;}
.ls12{letter-spacing:349.952000pt;}
.ls14{letter-spacing:389.930667pt;}
.wscc{word-spacing:-400.597333pt;}
.ws99{word-spacing:-360.618667pt;}
.wsdc{word-spacing:-75.219797pt;}
.ws0{word-spacing:-44.000000pt;}
.wse{word-spacing:-14.400000pt;}
.ws16b{word-spacing:-12.960000pt;}
.ws120{word-spacing:-12.720000pt;}
.ws177{word-spacing:-12.000000pt;}
.ws66{word-spacing:-11.704000pt;}
.wsfd{word-spacing:-7.157333pt;}
.ws13{word-spacing:-6.666667pt;}
.ws29{word-spacing:-6.613333pt;}
.wsb4{word-spacing:-6.560000pt;}
.wsfc{word-spacing:-6.506667pt;}
.ws114{word-spacing:-6.453333pt;}
.wse2{word-spacing:-6.400000pt;}
.ws8e{word-spacing:-6.346667pt;}
.ws35{word-spacing:-6.293333pt;}
.ws3e{word-spacing:-6.240000pt;}
.ws11b{word-spacing:-6.186667pt;}
.wse1{word-spacing:-6.133333pt;}
.ws108{word-spacing:-6.080000pt;}
.ws10b{word-spacing:-6.026667pt;}
.ws12a{word-spacing:-6.000000pt;}
.ws4d{word-spacing:-5.973333pt;}
.ws10c{word-spacing:-5.920000pt;}
.wsd3{word-spacing:-5.866667pt;}
.ws80{word-spacing:-5.813333pt;}
.wsd4{word-spacing:-5.760000pt;}
.wsb3{word-spacing:-5.706667pt;}
.ws17e{word-spacing:-5.664000pt;}
.wsaa{word-spacing:-5.653333pt;}
.wsbd{word-spacing:-5.600000pt;}
.ws16{word-spacing:-5.546667pt;}
.ws118{word-spacing:-5.493333pt;}
.ws18{word-spacing:-5.440000pt;}
.wsf6{word-spacing:-5.333333pt;}
.ws102{word-spacing:-5.280000pt;}
.wsfa{word-spacing:-5.226667pt;}
.ws16d{word-spacing:-5.184000pt;}
.wsb{word-spacing:-5.173333pt;}
.ws70{word-spacing:-5.120000pt;}
.wsab{word-spacing:-5.066667pt;}
.ws54{word-spacing:-5.013333pt;}
.ws173{word-spacing:-4.992000pt;}
.ws155{word-spacing:-4.896000pt;}
.wsba{word-spacing:-4.853333pt;}
.wsad{word-spacing:-4.800000pt;}
.ws3f{word-spacing:-4.746667pt;}
.ws52{word-spacing:-4.693333pt;}
.ws8b{word-spacing:-4.640000pt;}
.ws142{word-spacing:-4.608000pt;}
.ws36{word-spacing:-4.586667pt;}
.wsea{word-spacing:-4.533333pt;}
.wsbe{word-spacing:-4.480000pt;}
.ws12{word-spacing:-4.373333pt;}
.ws105{word-spacing:-4.320000pt;}
.ws156{word-spacing:-4.272000pt;}
.wsa9{word-spacing:-4.266667pt;}
.ws60{word-spacing:-4.160000pt;}
.ws13c{word-spacing:-4.128000pt;}
.wsbf{word-spacing:-4.106667pt;}
.ws37{word-spacing:-4.053333pt;}
.ws3a{word-spacing:-4.000000pt;}
.ws171{word-spacing:-3.984000pt;}
.ws119{word-spacing:-3.946667pt;}
.wsb7{word-spacing:-3.893333pt;}
.ws179{word-spacing:-3.888000pt;}
.wsd9{word-spacing:-3.840000pt;}
.ws72{word-spacing:-3.786667pt;}
.ws170{word-spacing:-3.744000pt;}
.ws139{word-spacing:-3.696000pt;}
.wsb9{word-spacing:-3.680000pt;}
.ws64{word-spacing:-3.626667pt;}
.ws12f{word-spacing:-3.600000pt;}
.ws97{word-spacing:-3.573333pt;}
.ws13d{word-spacing:-3.552000pt;}
.ws2d{word-spacing:-3.466667pt;}
.ws154{word-spacing:-3.456000pt;}
.ws13e{word-spacing:-3.408000pt;}
.ws23{word-spacing:-3.360000pt;}
.ws164{word-spacing:-3.312000pt;}
.ws162{word-spacing:-3.264000pt;}
.ws56{word-spacing:-3.253333pt;}
.ws48{word-spacing:-3.200000pt;}
.wsc{word-spacing:-3.146667pt;}
.wsa4{word-spacing:-3.093333pt;}
.ws6{word-spacing:-3.040000pt;}
.ws176{word-spacing:-3.024000pt;}
.wsd8{word-spacing:-2.986667pt;}
.ws25{word-spacing:-2.933333pt;}
.ws43{word-spacing:-2.880000pt;}
.ws57{word-spacing:-2.826667pt;}
.ws138{word-spacing:-2.784000pt;}
.wsd7{word-spacing:-2.773333pt;}
.ws15c{word-spacing:-2.736000pt;}
.ws79{word-spacing:-2.720000pt;}
.ws95{word-spacing:-2.666667pt;}
.ws14{word-spacing:-2.613333pt;}
.ws17b{word-spacing:-2.592000pt;}
.ws1d{word-spacing:-2.560000pt;}
.ws27{word-spacing:-2.506667pt;}
.ws19{word-spacing:-2.453333pt;}
.ws165{word-spacing:-2.448000pt;}
.ws112{word-spacing:-2.400000pt;}
.wsff{word-spacing:-2.346667pt;}
.ws4c{word-spacing:-2.293333pt;}
.wsdb{word-spacing:-2.261333pt;}
.ws4b{word-spacing:-2.240000pt;}
.ws17d{word-spacing:-2.208000pt;}
.wsfe{word-spacing:-2.186667pt;}
.ws144{word-spacing:-2.160000pt;}
.ws26{word-spacing:-2.133333pt;}
.ws15e{word-spacing:-2.112000pt;}
.ws3d{word-spacing:-2.080000pt;}
.ws14d{word-spacing:-2.016000pt;}
.ws5c{word-spacing:-1.973333pt;}
.wsed{word-spacing:-1.938304pt;}
.ws45{word-spacing:-1.920000pt;}
.wsdd{word-spacing:-1.904299pt;}
.ws21{word-spacing:-1.866667pt;}
.ws1a{word-spacing:-1.813333pt;}
.wsc3{word-spacing:-1.760000pt;}
.ws2f{word-spacing:-1.706667pt;}
.wsc6{word-spacing:-1.653333pt;}
.ws8{word-spacing:-1.600000pt;}
.ws14e{word-spacing:-1.584000pt;}
.ws5d{word-spacing:-1.546667pt;}
.ws163{word-spacing:-1.536000pt;}
.ws77{word-spacing:-1.493333pt;}
.ws133{word-spacing:-1.488000pt;}
.ws46{word-spacing:-1.440000pt;}
.wsb5{word-spacing:-1.386667pt;}
.ws12b{word-spacing:-1.344000pt;}
.ws10a{word-spacing:-1.333333pt;}
.ws4f{word-spacing:-1.280000pt;}
.wsc1{word-spacing:-1.226667pt;}
.ws161{word-spacing:-1.200000pt;}
.ws22{word-spacing:-1.173333pt;}
.ws12c{word-spacing:-1.152000pt;}
.ws28{word-spacing:-1.120000pt;}
.ws14f{word-spacing:-1.104000pt;}
.ws94{word-spacing:-1.066667pt;}
.ws11f{word-spacing:-1.013333pt;}
.ws15{word-spacing:-0.960000pt;}
.wsa7{word-spacing:-0.906667pt;}
.ws8a{word-spacing:-0.853333pt;}
.ws17c{word-spacing:-0.816000pt;}
.wsd1{word-spacing:-0.800000pt;}
.ws9{word-spacing:-0.746667pt;}
.ws15d{word-spacing:-0.720000pt;}
.wsec{word-spacing:-0.693333pt;}
.ws8f{word-spacing:-0.640000pt;}
.ws10d{word-spacing:-0.586667pt;}
.ws100{word-spacing:-0.533333pt;}
.wsc2{word-spacing:-0.480000pt;}
.ws140{word-spacing:-0.432000pt;}
.ws84{word-spacing:-0.426667pt;}
.ws153{word-spacing:-0.384000pt;}
.ws6e{word-spacing:-0.373333pt;}
.wsf4{word-spacing:-0.320000pt;}
.ws174{word-spacing:-0.288000pt;}
.ws7{word-spacing:-0.266667pt;}
.ws93{word-spacing:-0.213333pt;}
.ws71{word-spacing:-0.160000pt;}
.wscf{word-spacing:-0.128000pt;}
.ws7f{word-spacing:-0.106667pt;}
.ws166{word-spacing:-0.096000pt;}
.ws9d{word-spacing:-0.085333pt;}
.ws96{word-spacing:-0.053333pt;}
.ws131{word-spacing:-0.048000pt;}
.ws9e{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:0.042667pt;}
.ws6b{word-spacing:0.046816pt;}
.ws134{word-spacing:0.048000pt;}
.ws5{word-spacing:0.053333pt;}
.ws9f{word-spacing:0.085333pt;}
.ws4{word-spacing:0.096000pt;}
.ws121{word-spacing:0.106667pt;}
.wsa8{word-spacing:0.117333pt;}
.ws6a{word-spacing:0.128000pt;}
.ws16c{word-spacing:0.144000pt;}
.ws31{word-spacing:0.160000pt;}
.wsf{word-spacing:0.176000pt;}
.ws13f{word-spacing:0.192000pt;}
.ws3c{word-spacing:0.213333pt;}
.wsf8{word-spacing:0.266667pt;}
.ws128{word-spacing:0.288000pt;}
.ws73{word-spacing:0.320000pt;}
.wsda{word-spacing:0.373333pt;}
.ws86{word-spacing:0.480000pt;}
.wsd0{word-spacing:0.533333pt;}
.ws169{word-spacing:0.576000pt;}
.ws4e{word-spacing:0.586667pt;}
.ws24{word-spacing:0.640000pt;}
.ws10{word-spacing:0.693333pt;}
.ws141{word-spacing:0.720000pt;}
.ws89{word-spacing:0.853333pt;}
.wsbb{word-spacing:0.960000pt;}
.ws5f{word-spacing:1.013333pt;}
.ws1f{word-spacing:1.066667pt;}
.ws30{word-spacing:1.120000pt;}
.ws136{word-spacing:1.152000pt;}
.ws59{word-spacing:1.173333pt;}
.ws14b{word-spacing:1.248000pt;}
.wsc7{word-spacing:1.280000pt;}
.wsa6{word-spacing:1.386667pt;}
.wsfb{word-spacing:1.440000pt;}
.wsa5{word-spacing:1.493333pt;}
.ws4a{word-spacing:1.600000pt;}
.ws11a{word-spacing:1.653333pt;}
.ws127{word-spacing:1.706667pt;}
.wse8{word-spacing:1.760000pt;}
.ws145{word-spacing:1.776000pt;}
.ws88{word-spacing:1.813333pt;}
.ws78{word-spacing:1.866667pt;}
.ws6f{word-spacing:1.973333pt;}
.wsd6{word-spacing:2.026667pt;}
.ws159{word-spacing:2.064000pt;}
.ws53{word-spacing:2.080000pt;}
.ws5a{word-spacing:2.133333pt;}
.ws16a{word-spacing:2.160000pt;}
.wsde{word-spacing:2.186667pt;}
.ws51{word-spacing:2.240000pt;}
.wsac{word-spacing:2.293333pt;}
.wsf3{word-spacing:2.400000pt;}
.wsd5{word-spacing:2.453333pt;}
.ws91{word-spacing:2.506667pt;}
.ws81{word-spacing:2.560000pt;}
.ws74{word-spacing:2.613333pt;}
.ws11{word-spacing:2.666667pt;}
.ws58{word-spacing:2.826667pt;}
.ws150{word-spacing:2.832000pt;}
.wsc8{word-spacing:2.880000pt;}
.wse0{word-spacing:2.933333pt;}
.ws157{word-spacing:3.072000pt;}
.ws2a{word-spacing:3.093333pt;}
.ws12d{word-spacing:3.168000pt;}
.ws117{word-spacing:3.200000pt;}
.ws12e{word-spacing:3.216000pt;}
.ws42{word-spacing:3.253333pt;}
.wsef{word-spacing:3.306667pt;}
.ws160{word-spacing:3.312000pt;}
.ws11c{word-spacing:3.413333pt;}
.ws132{word-spacing:3.456000pt;}
.ws109{word-spacing:3.466667pt;}
.ws17a{word-spacing:3.504000pt;}
.wsbc{word-spacing:3.520000pt;}
.wsca{word-spacing:3.573333pt;}
.ws15b{word-spacing:3.600000pt;}
.ws92{word-spacing:3.626667pt;}
.ws1c{word-spacing:3.680000pt;}
.ws148{word-spacing:3.696000pt;}
.ws65{word-spacing:3.733333pt;}
.ws2e{word-spacing:3.786667pt;}
.ws82{word-spacing:3.840000pt;}
.ws17{word-spacing:3.893333pt;}
.ws7b{word-spacing:4.000000pt;}
.ws68{word-spacing:4.106667pt;}
.wse5{word-spacing:4.160000pt;}
.ws41{word-spacing:4.213333pt;}
.ws130{word-spacing:4.224000pt;}
.wsd2{word-spacing:4.266667pt;}
.wse7{word-spacing:4.426667pt;}
.ws5e{word-spacing:4.480000pt;}
.ws168{word-spacing:4.512000pt;}
.ws63{word-spacing:4.533333pt;}
.wsc9{word-spacing:4.586667pt;}
.ws13a{word-spacing:4.656000pt;}
.ws69{word-spacing:4.693333pt;}
.wse9{word-spacing:4.746667pt;}
.ws113{word-spacing:4.906667pt;}
.ws3{word-spacing:4.992000pt;}
.wsa1{word-spacing:5.066667pt;}
.ws15a{word-spacing:5.136000pt;}
.wse6{word-spacing:5.226667pt;}
.ws122{word-spacing:5.280000pt;}
.ws3b{word-spacing:5.333333pt;}
.ws11d{word-spacing:5.386667pt;}
.wsf2{word-spacing:5.440000pt;}
.ws104{word-spacing:5.493333pt;}
.ws34{word-spacing:5.600000pt;}
.ws1b{word-spacing:5.813333pt;}
.wsa2{word-spacing:5.866667pt;}
.ws50{word-spacing:5.973333pt;}
.ws16e{word-spacing:6.000000pt;}
.wsf5{word-spacing:6.026667pt;}
.ws146{word-spacing:6.096000pt;}
.wsee{word-spacing:6.240000pt;}
.ws61{word-spacing:6.293333pt;}
.ws90{word-spacing:6.346667pt;}
.wsa{word-spacing:6.400000pt;}
.ws44{word-spacing:6.453333pt;}
.ws75{word-spacing:6.506667pt;}
.ws172{word-spacing:6.624000pt;}
.wse4{word-spacing:6.666667pt;}
.ws49{word-spacing:6.773333pt;}
.ws7e{word-spacing:6.826667pt;}
.wsf9{word-spacing:6.880000pt;}
.ws129{word-spacing:6.912000pt;}
.ws7c{word-spacing:7.093333pt;}
.ws62{word-spacing:7.146667pt;}
.ws11e{word-spacing:7.200000pt;}
.ws2c{word-spacing:7.253333pt;}
.ws152{word-spacing:7.296000pt;}
.ws125{word-spacing:7.306667pt;}
.ws20{word-spacing:7.360000pt;}
.ws103{word-spacing:7.413333pt;}
.wsf7{word-spacing:7.466667pt;}
.ws87{word-spacing:7.786667pt;}
.ws33{word-spacing:7.840000pt;}
.ws158{word-spacing:7.920000pt;}
.ws175{word-spacing:7.968000pt;}
.ws15f{word-spacing:8.112000pt;}
.ws124{word-spacing:8.320000pt;}
.ws14c{word-spacing:8.352000pt;}
.wsc5{word-spacing:8.373333pt;}
.ws135{word-spacing:8.400000pt;}
.wsf0{word-spacing:8.426667pt;}
.ws178{word-spacing:8.448000pt;}
.wsb8{word-spacing:8.640000pt;}
.ws126{word-spacing:8.746667pt;}
.ws85{word-spacing:8.800000pt;}
.ws7a{word-spacing:8.853333pt;}
.ws107{word-spacing:8.906667pt;}
.ws167{word-spacing:9.024000pt;}
.ws6c{word-spacing:9.066667pt;}
.ws39{word-spacing:9.173333pt;}
.wsa3{word-spacing:9.280000pt;}
.ws38{word-spacing:9.333333pt;}
.ws143{word-spacing:9.360000pt;}
.ws110{word-spacing:9.440000pt;}
.ws14a{word-spacing:9.456000pt;}
.wsb6{word-spacing:9.493333pt;}
.ws5b{word-spacing:9.706667pt;}
.ws101{word-spacing:9.813333pt;}
.ws32{word-spacing:9.920000pt;}
.ws16f{word-spacing:9.984000pt;}
.ws147{word-spacing:10.032000pt;}
.wsae{word-spacing:10.080000pt;}
.wsa0{word-spacing:10.346667pt;}
.ws10f{word-spacing:10.506667pt;}
.ws111{word-spacing:10.613333pt;}
.ws47{word-spacing:10.666667pt;}
.ws106{word-spacing:10.720000pt;}
.ws6d{word-spacing:10.826667pt;}
.ws55{word-spacing:11.093333pt;}
.ws1e{word-spacing:11.306667pt;}
.wsf1{word-spacing:11.520000pt;}
.ws115{word-spacing:11.626667pt;}
.ws151{word-spacing:11.664000pt;}
.wsc4{word-spacing:11.680000pt;}
.ws10e{word-spacing:11.733333pt;}
.ws149{word-spacing:11.808000pt;}
.ws7d{word-spacing:11.840000pt;}
.ws40{word-spacing:11.893333pt;}
.ws13b{word-spacing:11.952000pt;}
.ws137{word-spacing:12.000000pt;}
.ws76{word-spacing:12.053333pt;}
.ws2b{word-spacing:12.213333pt;}
.ws116{word-spacing:12.373333pt;}
.ws123{word-spacing:12.480000pt;}
.wsc0{word-spacing:12.586667pt;}
.wseb{word-spacing:12.640000pt;}
.wsdf{word-spacing:12.906667pt;}
.ws8d{word-spacing:13.013333pt;}
.ws8c{word-spacing:13.120000pt;}
.ws83{word-spacing:13.280000pt;}
.wse3{word-spacing:13.333333pt;}
.wscb{word-spacing:50.133333pt;}
.ws98{word-spacing:159.744000pt;}
.ws9b{word-spacing:232.832000pt;}
.ws9a{word-spacing:233.642667pt;}
.ws67{word-spacing:307.347040pt;}
.wsce{word-spacing:318.250667pt;}
.wsb0{word-spacing:323.498667pt;}
.ws9c{word-spacing:334.250667pt;}
.wsb1{word-spacing:336.810667pt;}
.wsb2{word-spacing:414.720000pt;}
.wscd{word-spacing:417.066667pt;}
.wsaf{word-spacing:425.386667pt;}
.wsd{word-spacing:1614.293333pt;}
._4b{margin-left:-42.666667pt;}
._1{margin-left:-21.760000pt;}
._4{margin-left:-13.152000pt;}
._0{margin-left:-7.200000pt;}
._8{margin-left:-5.120000pt;}
._3{margin-left:-3.840000pt;}
._63{margin-left:-2.584405pt;}
._6{margin-left:-1.173333pt;}
._5{width:1.600000pt;}
._12{width:2.645333pt;}
._66{width:4.992000pt;}
._65{width:6.240000pt;}
._64{width:8.853333pt;}
._67{width:15.312000pt;}
._62{width:23.381333pt;}
._61{width:52.693333pt;}
._49{width:72.618667pt;}
._7{width:120.693333pt;}
._2f{width:125.952000pt;}
._4a{width:131.541333pt;}
._30{width:164.650667pt;}
._11{width:170.197333pt;}
._59{width:171.392000pt;}
._c{width:198.016000pt;}
._2c{width:209.194667pt;}
._b{width:213.205333pt;}
._5a{width:214.528000pt;}
._10{width:215.594667pt;}
._56{width:220.672000pt;}
._2a{width:230.272000pt;}
._f{width:232.405333pt;}
._4f{width:234.282667pt;}
._19{width:244.138667pt;}
._1d{width:246.272000pt;}
._e{width:251.093333pt;}
._1a{width:257.450667pt;}
._2d{width:259.072000pt;}
._57{width:260.138667pt;}
._18{width:263.594667pt;}
._d{width:266.538667pt;}
._53{width:272.085333pt;}
._60{width:273.024000pt;}
._48{width:279.850667pt;}
._15{width:281.898667pt;}
._47{width:283.818667pt;}
._21{width:292.693333pt;}
._16{width:306.560000pt;}
._28{width:319.317333pt;}
._51{width:324.693333pt;}
._24{width:329.898667pt;}
._45{width:334.805333pt;}
._3b{width:336.938667pt;}
._35{width:342.272000pt;}
._14{width:345.514667pt;}
._36{width:347.605333pt;}
._42{width:352.938667pt;}
._20{width:356.693333pt;}
._52{width:364.160000pt;}
._1f{width:370.773333pt;}
._5c{width:372.181333pt;}
._5f{width:382.890667pt;}
._2e{width:390.528000pt;}
._4d{width:394.026667pt;}
._3c{width:426.794667pt;}
._40{width:430.848000pt;}
._3d{width:435.370667pt;}
._38{width:436.693333pt;}
._39{width:438.698667pt;}
._55{width:440.405333pt;}
._33{width:447.360000pt;}
._32{width:449.365333pt;}
._1c{width:461.184000pt;}
._25{width:465.706667pt;}
._4c{width:479.872000pt;}
._1b{width:493.738667pt;}
._13{width:506.538667pt;}
._46{width:507.818667pt;}
._3a{width:517.162667pt;}
._5b{width:525.738667pt;}
._a{width:534.528000pt;}
._50{width:536.405333pt;}
._3f{width:544.384000pt;}
._37{width:549.717333pt;}
._31{width:562.517333pt;}
._58{width:566.272000pt;}
._29{width:581.504000pt;}
._2b{width:590.549333pt;}
._5e{width:598.314667pt;}
._22{width:603.605333pt;}
._26{width:608.938667pt;}
._23{width:617.472000pt;}
._17{width:619.605333pt;}
._54{width:625.450667pt;}
._27{width:635.648000pt;}
._44{width:637.482667pt;}
._5d{width:648.917333pt;}
._4e{width:685.696000pt;}
._43{width:691.584000pt;}
._3e{width:808.917333pt;}
._41{width:977.706667pt;}
._34{width:1115.605333pt;}
._2{width:1448.618667pt;}
._9{width:1620.138667pt;}
._1e{width:1734.314667pt;}
.fs7{font-size:30.912000pt;}
.fs8{font-size:34.005333pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:43.274667pt;}
.fs5{font-size:46.816000pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:96.000000pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:112.600000pt;}
.yb1{bottom:147.266667pt;}
.y11{bottom:147.933333pt;}
.yc2{bottom:148.594667pt;}
.y4a{bottom:149.266667pt;}
.yf1{bottom:149.933333pt;}
.y133{bottom:150.593333pt;}
.y112{bottom:151.266667pt;}
.y1c5{bottom:156.592000pt;}
.y153{bottom:158.585333pt;}
.y1a7{bottom:160.588000pt;}
.yb0{bottom:160.600000pt;}
.y10{bottom:161.266667pt;}
.y132{bottom:162.593333pt;}
.y49{bottom:162.600000pt;}
.yf0{bottom:163.266667pt;}
.y111{bottom:164.600000pt;}
.y1c4{bottom:168.592000pt;}
.y152{bottom:170.585333pt;}
.y131{bottom:174.593333pt;}
.y48{bottom:175.933333pt;}
.yef{bottom:176.600000pt;}
.y110{bottom:177.933333pt;}
.y1a6{bottom:180.592000pt;}
.y151{bottom:182.585333pt;}
.yaf{bottom:185.266667pt;}
.yf{bottom:185.933333pt;}
.y130{bottom:186.593333pt;}
.y1c3{bottom:187.924000pt;}
.yc1{bottom:187.933333pt;}
.y47{bottom:189.266667pt;}
.yee{bottom:189.933333pt;}
.y10f{bottom:191.266667pt;}
.y1a5{bottom:199.924000pt;}
.y150{bottom:202.589333pt;}
.y46{bottom:202.600000pt;}
.yed{bottom:203.266667pt;}
.y10e{bottom:204.600000pt;}
.y12f{bottom:205.925333pt;}
.y1c2{bottom:211.924000pt;}
.yc0{bottom:211.933333pt;}
.y14f{bottom:214.589333pt;}
.y66{bottom:215.933333pt;}
.yec{bottom:216.600000pt;}
.y12e{bottom:217.925333pt;}
.y10d{bottom:217.933333pt;}
.y1a4{bottom:219.256000pt;}
.y1e5{bottom:222.592000pt;}
.ybf{bottom:223.933333pt;}
.yae{bottom:225.266667pt;}
.y14e{bottom:226.589333pt;}
.y45{bottom:229.266667pt;}
.yeb{bottom:229.933333pt;}
.y1c1{bottom:231.256000pt;}
.y56{bottom:231.266667pt;}
.y12d{bottom:237.929333pt;}
.yad{bottom:238.600000pt;}
.y1a3{bottom:239.260000pt;}
.y1e4{bottom:241.924000pt;}
.y44{bottom:242.600000pt;}
.y1c0{bottom:243.256000pt;}
.yea{bottom:243.266667pt;}
.y55{bottom:244.600000pt;}
.y14d{bottom:245.921333pt;}
.ybe{bottom:247.933333pt;}
.y12c{bottom:249.929333pt;}
.yac{bottom:251.933333pt;}
.y43{bottom:255.933333pt;}
.ye9{bottom:256.600000pt;}
.y14c{bottom:257.921333pt;}
.y54{bottom:257.933333pt;}
.ye{bottom:259.266667pt;}
.ybd{bottom:259.933333pt;}
.y1e3{bottom:261.928000pt;}
.y12b{bottom:261.929333pt;}
.y1bf{bottom:263.260000pt;}
.yab{bottom:265.266667pt;}
.y42{bottom:269.266667pt;}
.y14b{bottom:269.921333pt;}
.ye8{bottom:269.933333pt;}
.y53{bottom:271.266667pt;}
.ybc{bottom:271.933333pt;}
.yd{bottom:272.600000pt;}
.y1e2{bottom:273.928000pt;}
.y1be{bottom:275.260000pt;}
.y1a2{bottom:277.924000pt;}
.y12a{bottom:281.261333pt;}
.y41{bottom:282.600000pt;}
.ye7{bottom:283.266667pt;}
.ybb{bottom:283.933333pt;}
.y52{bottom:284.600000pt;}
.yc{bottom:285.933333pt;}
.y14a{bottom:289.253333pt;}
.y1a1{bottom:289.924000pt;}
.yaa{bottom:291.933333pt;}
.y1e1{bottom:293.260000pt;}
.y129{bottom:293.261333pt;}
.y1bd{bottom:294.592000pt;}
.y40{bottom:295.933333pt;}
.ye6{bottom:296.600000pt;}
.y51{bottom:297.933333pt;}
.yb{bottom:299.266667pt;}
.y149{bottom:301.253333pt;}
.y128{bottom:305.261333pt;}
.ya9{bottom:305.266667pt;}
.y3f{bottom:309.266667pt;}
.y1a0{bottom:309.928000pt;}
.yf2{bottom:309.933333pt;}
.y50{bottom:311.266667pt;}
.y1e0{bottom:312.592000pt;}
.y148{bottom:313.253333pt;}
.y1bc{bottom:313.924000pt;}
.y127{bottom:317.261333pt;}
.ya8{bottom:318.600000pt;}
.yba{bottom:319.933333pt;}
.y3e{bottom:322.600000pt;}
.ye5{bottom:323.266667pt;}
.ya{bottom:323.933333pt;}
.y4f{bottom:324.600000pt;}
.y1df{bottom:331.924000pt;}
.ya7{bottom:331.933333pt;}
.y147{bottom:333.257333pt;}
.y1bb{bottom:333.928000pt;}
.y3d{bottom:335.933333pt;}
.y126{bottom:336.593333pt;}
.ye4{bottom:336.600000pt;}
.y4e{bottom:337.933333pt;}
.y146{bottom:345.257333pt;}
.ya6{bottom:345.266667pt;}
.y19f{bottom:348.592000pt;}
.y125{bottom:348.593333pt;}
.y3c{bottom:349.266667pt;}
.ye3{bottom:349.933333pt;}
.y7f{bottom:351.266667pt;}
.y1de{bottom:351.928000pt;}
.y1ba{bottom:353.260000pt;}
.yb9{bottom:355.933333pt;}
.y145{bottom:357.257333pt;}
.ya5{bottom:358.600000pt;}
.y3b{bottom:362.600000pt;}
.ye2{bottom:363.266667pt;}
.y7e{bottom:364.600000pt;}
.y19e{bottom:367.924000pt;}
.yb8{bottom:367.933333pt;}
.y124{bottom:368.597333pt;}
.y1dd{bottom:371.260000pt;}
.ya4{bottom:371.933333pt;}
.y65{bottom:372.434325pt;}
.y3a{bottom:375.933333pt;}
.y144{bottom:376.589333pt;}
.ye1{bottom:376.600000pt;}
.yb7{bottom:379.933333pt;}
.y123{bottom:380.597333pt;}
.ya3{bottom:385.266667pt;}
.y64{bottom:386.479125pt;}
.y19d{bottom:387.928000pt;}
.y143{bottom:388.589333pt;}
.y9{bottom:389.266667pt;}
.ye0{bottom:389.933333pt;}
.y1dc{bottom:390.592000pt;}
.yb6{bottom:391.933333pt;}
.y1b9{bottom:392.596000pt;}
.ya2{bottom:398.600000pt;}
.y122{bottom:399.929333pt;}
.y142{bottom:400.589333pt;}
.y8{bottom:402.600000pt;}
.ydf{bottom:403.266667pt;}
.yb5{bottom:403.933333pt;}
.y1b8{bottom:404.596000pt;}
.y19c{bottom:407.260000pt;}
.y121{bottom:411.929333pt;}
.ya1{bottom:411.933333pt;}
.y141{bottom:412.589333pt;}
.y7{bottom:415.933333pt;}
.y1b7{bottom:416.596000pt;}
.yde{bottom:416.600000pt;}
.ya0{bottom:425.266667pt;}
.y39{bottom:429.266667pt;}
.y1db{bottom:429.928000pt;}
.y120{bottom:431.261333pt;}
.y140{bottom:431.921333pt;}
.y1b6{bottom:435.928000pt;}
.y9f{bottom:438.600000pt;}
.yb4{bottom:439.933333pt;}
.y1da{bottom:441.928000pt;}
.y38{bottom:442.600000pt;}
.y11f{bottom:443.261333pt;}
.y13f{bottom:443.921333pt;}
.y19b{bottom:446.596000pt;}
.y9e{bottom:451.933333pt;}
.y11e{bottom:455.261333pt;}
.y13e{bottom:455.921333pt;}
.y4d{bottom:455.933333pt;}
.y6{bottom:459.266667pt;}
.y9d{bottom:465.266667pt;}
.y5b{bottom:466.569597pt;}
.y37{bottom:469.266667pt;}
.y63{bottom:473.521773pt;}
.y13d{bottom:475.253333pt;}
.y11d{bottom:475.265333pt;}
.y9c{bottom:478.600000pt;}
.y1d9{bottom:481.264000pt;}
.y36{bottom:482.600000pt;}
.y5{bottom:483.266667pt;}
.y19a{bottom:485.260000pt;}
.y13c{bottom:487.253333pt;}
.y11c{bottom:487.265333pt;}
.y9b{bottom:491.933333pt;}
.y35{bottom:495.933333pt;}
.y13b{bottom:499.253333pt;}
.y11b{bottom:499.265333pt;}
.ydb{bottom:505.149045pt;}
.ydd{bottom:505.150379pt;}
.y9a{bottom:505.266667pt;}
.y10a{bottom:505.815712pt;}
.y10c{bottom:505.817045pt;}
.yb3{bottom:506.600000pt;}
.y4{bottom:507.266667pt;}
.y34{bottom:509.266667pt;}
.y7d{bottom:510.594667pt;}
.y13a{bottom:511.253333pt;}
.y1b5{bottom:513.928000pt;}
.yb2{bottom:517.266667pt;}
.y11a{bottom:518.597333pt;}
.y99{bottom:518.600000pt;}
.y33{bottom:522.600000pt;}
.yda{bottom:522.925333pt;}
.ydc{bottom:522.926667pt;}
.y109{bottom:523.592000pt;}
.y10b{bottom:523.593333pt;}
.y7c{bottom:523.928000pt;}
.y199{bottom:524.596000pt;}
.y119{bottom:530.597333pt;}
.y139{bottom:531.257333pt;}
.y1b4{bottom:533.260000pt;}
.y32{bottom:535.933333pt;}
.y184{bottom:536.596000pt;}
.yd9{bottom:539.928000pt;}
.y108{bottom:540.594667pt;}
.y171{bottom:541.264000pt;}
.y62{bottom:542.130621pt;}
.y118{bottom:542.597333pt;}
.y138{bottom:543.257333pt;}
.y183{bottom:548.596000pt;}
.y31{bottom:549.266667pt;}
.y170{bottom:553.264000pt;}
.y117{bottom:554.597333pt;}
.y137{bottom:555.257333pt;}
.y61{bottom:556.175421pt;}
.yd8{bottom:558.453131pt;}
.y107{bottom:559.119797pt;}
.y1d8{bottom:559.264000pt;}
.y182{bottom:560.596000pt;}
.y30{bottom:562.600000pt;}
.y7b{bottom:563.928000pt;}
.y1b3{bottom:565.264000pt;}
.y1d7{bottom:571.264000pt;}
.y16f{bottom:572.596000pt;}
.y116{bottom:573.929333pt;}
.y136{bottom:574.589333pt;}
.yd7{bottom:575.663387pt;}
.y2f{bottom:575.933333pt;}
.y106{bottom:576.330053pt;}
.y7a{bottom:577.261333pt;}
.y181{bottom:580.600000pt;}
.y198{bottom:583.264000pt;}
.y16e{bottom:584.596000pt;}
.y115{bottom:585.929333pt;}
.y135{bottom:586.589333pt;}
.y2e{bottom:589.266667pt;}
.y79{bottom:590.594667pt;}
.y1d6{bottom:590.596000pt;}
.y180{bottom:592.600000pt;}
.yd6{bottom:592.873643pt;}
.y105{bottom:593.540309pt;}
.y16d{bottom:596.596000pt;}
.y114{bottom:597.929333pt;}
.y134{bottom:598.589333pt;}
.y1d5{bottom:602.596000pt;}
.y2d{bottom:602.600000pt;}
.y86{bottom:603.928000pt;}
.y98{bottom:607.917333pt;}
.yd5{bottom:610.083899pt;}
.y104{bottom:610.750565pt;}
.y17f{bottom:611.932000pt;}
.y2c{bottom:615.933333pt;}
.y16c{bottom:616.600000pt;}
.y85{bottom:617.261333pt;}
.y113{bottom:617.933333pt;}
.y97{bottom:618.584000pt;}
.y197{bottom:621.928000pt;}
.y17e{bottom:623.932000pt;}
.yd4{bottom:627.294155pt;}
.y103{bottom:627.960821pt;}
.y16b{bottom:628.600000pt;}
.y2b{bottom:629.266667pt;}
.y78{bottom:630.594667pt;}
.y196{bottom:633.928000pt;}
.y17d{bottom:635.932000pt;}
.y16a{bottom:640.600000pt;}
.y2a{bottom:642.600000pt;}
.y1b2{bottom:643.264000pt;}
.y77{bottom:643.928000pt;}
.yd3{bottom:644.504411pt;}
.y102{bottom:645.171077pt;}
.y195{bottom:645.928000pt;}
.y60{bottom:646.003621pt;}
.y1d4{bottom:653.932000pt;}
.y96{bottom:655.256000pt;}
.y17c{bottom:655.264000pt;}
.y29{bottom:655.933333pt;}
.y84{bottom:657.261333pt;}
.y194{bottom:657.928000pt;}
.y169{bottom:659.932000pt;}
.y5f{bottom:660.048421pt;}
.yd2{bottom:661.714667pt;}
.y101{bottom:662.381333pt;}
.y1b1{bottom:662.596000pt;}
.y95{bottom:665.922667pt;}
.y17b{bottom:667.264000pt;}
.y28{bottom:669.266667pt;}
.y83{bottom:670.594667pt;}
.y168{bottom:671.932000pt;}
.y1d3{bottom:673.264000pt;}
.y94{bottom:676.589333pt;}
.yd1{bottom:677.098667pt;}
.y100{bottom:677.765333pt;}
.y193{bottom:677.932000pt;}
.y17a{bottom:679.264000pt;}
.y27{bottom:682.600000pt;}
.y76{bottom:683.928000pt;}
.y167{bottom:683.932000pt;}
.y1d2{bottom:685.264000pt;}
.y192{bottom:689.932000pt;}
.y179{bottom:691.264000pt;}
.y26{bottom:695.933333pt;}
.y75{bottom:697.261333pt;}
.y191{bottom:701.932000pt;}
.y166{bottom:703.264000pt;}
.y1d1{bottom:704.596000pt;}
.y5a{bottom:707.777333pt;}
.y4c{bottom:709.266667pt;}
.y74{bottom:710.594667pt;}
.y178{bottom:711.268000pt;}
.y93{bottom:713.261333pt;}
.y190{bottom:713.932000pt;}
.y165{bottom:715.264000pt;}
.y1d0{bottom:716.596000pt;}
.y1b0{bottom:721.264000pt;}
.y25{bottom:722.600000pt;}
.y177{bottom:723.268000pt;}
.y73{bottom:723.928000pt;}
.y1cf{bottom:728.596000pt;}
.y18f{bottom:733.264000pt;}
.y164{bottom:735.268000pt;}
.y24{bottom:735.933333pt;}
.y82{bottom:737.261333pt;}
.y5e{bottom:740.220821pt;}
.yce{bottom:745.149045pt;}
.yd0{bottom:745.150379pt;}
.y18e{bottom:745.264000pt;}
.yfd{bottom:745.815712pt;}
.yff{bottom:745.817045pt;}
.y163{bottom:747.268000pt;}
.y1ce{bottom:748.600000pt;}
.y23{bottom:749.266667pt;}
.y5d{bottom:754.265621pt;}
.y176{bottom:754.600000pt;}
.y18d{bottom:757.264000pt;}
.y92{bottom:760.600000pt;}
.y1af{bottom:761.932000pt;}
.y22{bottom:762.600000pt;}
.ycd{bottom:762.925333pt;}
.ycf{bottom:762.926667pt;}
.yfc{bottom:763.592000pt;}
.yfe{bottom:763.593333pt;}
.y72{bottom:763.928000pt;}
.y162{bottom:766.600000pt;}
.y5c{bottom:768.310421pt;}
.y91{bottom:771.266667pt;}
.y21{bottom:775.933333pt;}
.y18c{bottom:776.596000pt;}
.y71{bottom:777.261333pt;}
.y161{bottom:778.600000pt;}
.ycc{bottom:779.928000pt;}
.y1cd{bottom:779.932000pt;}
.yfb{bottom:780.594667pt;}
.y1ae{bottom:781.264000pt;}
.y90{bottom:781.933333pt;}
.y18b{bottom:788.596000pt;}
.y20{bottom:789.266667pt;}
.y70{bottom:790.594667pt;}
.y160{bottom:790.600000pt;}
.y1cc{bottom:791.932000pt;}
.y175{bottom:797.932000pt;}
.ycb{bottom:798.453131pt;}
.yfa{bottom:799.119797pt;}
.y1f{bottom:802.600000pt;}
.y6f{bottom:803.928000pt;}
.y15f{bottom:809.932000pt;}
.y1cb{bottom:811.264000pt;}
.yca{bottom:815.663387pt;}
.y1e{bottom:815.933333pt;}
.yf9{bottom:816.330053pt;}
.y6e{bottom:817.261333pt;}
.y8f{bottom:817.933333pt;}
.y1ad{bottom:820.600000pt;}
.y15e{bottom:821.932000pt;}
.y18a{bottom:827.932000pt;}
.y8e{bottom:828.600000pt;}
.y1d{bottom:829.266667pt;}
.y6d{bottom:830.594667pt;}
.y1ca{bottom:831.268000pt;}
.yc9{bottom:832.873643pt;}
.y59{bottom:833.266667pt;}
.yf8{bottom:833.540309pt;}
.y15d{bottom:833.932000pt;}
.y8d{bottom:839.266667pt;}
.y1ac{bottom:839.932000pt;}
.y174{bottom:841.264000pt;}
.y4b{bottom:842.600000pt;}
.y1c9{bottom:843.268000pt;}
.y81{bottom:843.928000pt;}
.y58{bottom:843.933333pt;}
.y15c{bottom:845.932000pt;}
.y189{bottom:847.264000pt;}
.y8c{bottom:849.933333pt;}
.yc8{bottom:850.083899pt;}
.yf7{bottom:850.750565pt;}
.y173{bottom:853.264000pt;}
.y1c{bottom:855.933333pt;}
.y80{bottom:857.261333pt;}
.y57{bottom:857.266667pt;}
.y1ab{bottom:859.264000pt;}
.y1c8{bottom:862.600000pt;}
.y15b{bottom:865.264000pt;}
.y188{bottom:867.268000pt;}
.yc7{bottom:867.294155pt;}
.yf6{bottom:867.960821pt;}
.y1b{bottom:869.266667pt;}
.y6c{bottom:870.594667pt;}
.y15a{bottom:877.264000pt;}
.y1aa{bottom:879.268000pt;}
.y1c7{bottom:881.932000pt;}
.y1a{bottom:882.600000pt;}
.y6b{bottom:883.928000pt;}
.yc6{bottom:884.504411pt;}
.yf5{bottom:885.171077pt;}
.y187{bottom:886.600000pt;}
.y159{bottom:889.264000pt;}
.y8b{bottom:889.933333pt;}
.y19{bottom:895.933333pt;}
.y6a{bottom:897.261333pt;}
.y8a{bottom:900.600000pt;}
.yc5{bottom:901.714667pt;}
.yf4{bottom:902.381333pt;}
.y18{bottom:909.266667pt;}
.y158{bottom:909.268000pt;}
.y69{bottom:910.594667pt;}
.y89{bottom:911.266667pt;}
.yc4{bottom:917.098667pt;}
.yf3{bottom:917.765333pt;}
.y1a9{bottom:917.932000pt;}
.y157{bottom:921.268000pt;}
.y17{bottom:922.600000pt;}
.y186{bottom:925.264000pt;}
.y156{bottom:933.268000pt;}
.y16{bottom:935.933333pt;}
.y185{bottom:937.264000pt;}
.y1c6{bottom:940.600000pt;}
.y155{bottom:945.268000pt;}
.y2{bottom:945.933333pt;}
.y15{bottom:949.266667pt;}
.yc3{bottom:950.594667pt;}
.y172{bottom:952.600000pt;}
.y1a8{bottom:957.268000pt;}
.y14{bottom:962.600000pt;}
.y68{bottom:963.928000pt;}
.y88{bottom:964.600000pt;}
.y13{bottom:975.933333pt;}
.y154{bottom:976.600000pt;}
.y67{bottom:977.261333pt;}
.y87{bottom:977.933333pt;}
.y1{bottom:985.933333pt;}
.y12{bottom:1017.266667pt;}
.hc{height:30.338438pt;}
.hd{height:33.374375pt;}
.ha{height:41.854167pt;}
.h2{height:41.875000pt;}
.hb{height:42.471719pt;}
.h9{height:45.947344pt;}
.h10{height:47.085938pt;}
.hf{height:47.109375pt;}
.he{height:48.375000pt;}
.h5{height:52.343750pt;}
.h4{height:53.750000pt;}
.h8{height:57.578125pt;}
.h6{height:59.125000pt;}
.h3{height:96.750000pt;}
.h7{height:105.677083pt;}
.h1{height:161.250000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:75.333333pt;}
.x6{left:76.666667pt;}
.x8{left:80.449333pt;}
.x5c{left:89.060000pt;}
.x57{left:90.397333pt;}
.x14{left:94.400000pt;}
.x5f{left:107.053333pt;}
.x2d{left:107.994667pt;}
.x5a{left:129.728000pt;}
.x10{left:131.654333pt;}
.x1c{left:140.005333pt;}
.x30{left:143.377333pt;}
.x31{left:147.249333pt;}
.x13{left:149.728000pt;}
.x33{left:160.897333pt;}
.x32{left:165.796000pt;}
.xe{left:175.216621pt;}
.x9{left:177.405269pt;}
.xa{left:182.707181pt;}
.xc{left:184.123365pt;}
.x34{left:185.294795pt;}
.xd{left:190.466933pt;}
.xf{left:195.265573pt;}
.x60{left:198.385333pt;}
.x7{left:200.666667pt;}
.x36{left:207.945929pt;}
.x5{left:210.000000pt;}
.x35{left:212.205263pt;}
.xb{left:213.114173pt;}
.x11{left:230.775509pt;}
.x37{left:234.950103pt;}
.x20{left:237.066667pt;}
.x1{left:254.000000pt;}
.x1d{left:258.010667pt;}
.x38{left:260.122763pt;}
.x2f{left:267.332000pt;}
.x16{left:275.072000pt;}
.x3d{left:277.826667pt;}
.x15{left:279.072000pt;}
.x2{left:280.676000pt;}
.x21{left:281.728000pt;}
.x1f{left:285.728000pt;}
.x3e{left:289.554756pt;}
.x17{left:291.733333pt;}
.x5b{left:300.392000pt;}
.x5e{left:308.013333pt;}
.x3a{left:309.692884pt;}
.x39{left:313.952217pt;}
.x3b{left:334.473685pt;}
.x3c{left:359.254487pt;}
.x2e{left:365.328000pt;}
.x5d{left:368.396000pt;}
.x59{left:370.400000pt;}
.x1e{left:377.728000pt;}
.x1b{left:379.333333pt;}
.x12{left:381.066667pt;}
.x4{left:412.000000pt;}
.x43{left:417.432000pt;}
.x23{left:420.394667pt;}
.x58{left:427.057333pt;}
.x27{left:431.061333pt;}
.x29{left:449.728000pt;}
.x25{left:456.394667pt;}
.x28{left:461.066667pt;}
.x2b{left:463.733333pt;}
.x40{left:476.032000pt;}
.x41{left:479.895333pt;}
.x42{left:483.758667pt;}
.x24{left:485.728000pt;}
.x45{left:497.378667pt;}
.x44{left:502.266667pt;}
.x46{left:521.722667pt;}
.x2a{left:525.738667pt;}
.x26{left:531.061333pt;}
.x2c{left:535.733333pt;}
.x22{left:545.066667pt;}
.x47{left:548.574167pt;}
.x1a{left:553.728000pt;}
.x18{left:559.733333pt;}
.x19{left:563.733333pt;}
.x49{left:571.269167pt;}
.x48{left:575.519167pt;}
.x54{left:594.401377pt;}
.x4a{left:596.386667pt;}
.x53{left:598.652711pt;}
.x4c{left:621.504167pt;}
.x52{left:624.521333pt;}
.x4b{left:625.754167pt;}
.x3f{left:635.668000pt;}
.x56{left:643.104652pt;}
.x4e{left:645.848167pt;}
.x4d{left:650.098167pt;}
.x55{left:651.607319pt;}
.x50{left:670.574667pt;}
.x4f{left:674.824667pt;}
.x51{left:695.301167pt;}
}




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