
    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_0247065b2f427065647f7a4f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946000;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_2f4bbeba03ddee3111f1a0b7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_1517e307962006562ed79fb6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_0247065b2f427065647f7a4f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946000;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_82453dcca9e63cb3c1952f7b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.010254;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_c72d8238e9705ef5bcba2bc4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.962891;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_57336830301fefb7402a780f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.187012;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_9b245e94b422c38905b66983.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.010254;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_fcf92068f27ea1faa614706f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8ff0a316e54c8e3a65c4ad61.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.991699;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_e05d22c551532c789f3e36d9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.947000;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_56ebd0a19ce187cbe933d763.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_153dc6c5638279cef1a7e12c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.745605;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.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);}
.m1{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);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:27.948000px;}
.ls9{letter-spacing:-4.404000px;}
.lsf{letter-spacing:-2.280000px;}
.ls12{letter-spacing:-1.800000px;}
.lsc{letter-spacing:-1.680000px;}
.lsd{letter-spacing:-1.200000px;}
.ls10{letter-spacing:-0.900000px;}
.lse{letter-spacing:-0.600000px;}
.ls11{letter-spacing:-0.524700px;}
.ls13{letter-spacing:-0.300000px;}
.ls8{letter-spacing:-0.084000px;}
.ls5{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.600000px;}
.ls18{letter-spacing:0.918000px;}
.ls7{letter-spacing:1.080000px;}
.ls6{letter-spacing:1.200000px;}
.ls3{letter-spacing:3.360000px;}
.lsb{letter-spacing:3.480000px;}
.ls1{letter-spacing:3.546000px;}
.lsa{letter-spacing:4.800000px;}
.ls14{letter-spacing:6.960000px;}
.ls2{letter-spacing:7.200000px;}
.ls4{letter-spacing:7.344000px;}
.ls17{letter-spacing:8.886000px;}
.ls0{letter-spacing:186.287400px;}
.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;}
}
.ws1{word-spacing:-27.480000px;}
.ws6{word-spacing:-23.184000px;}
.ws3{word-spacing:-18.396000px;}
.ws0{word-spacing:-16.344000px;}
.ws7{word-spacing:-15.360000px;}
.ws70{word-spacing:-15.000000px;}
.wsed{word-spacing:-14.100000px;}
.ws100{word-spacing:-13.800000px;}
.ws5{word-spacing:-12.000000px;}
.ws2{word-spacing:-10.773840px;}
.ws4{word-spacing:-8.745000px;}
.wse{word-spacing:-7.200000px;}
.ws1d{word-spacing:-4.800000px;}
.wsb6{word-spacing:-4.740000px;}
.wsae{word-spacing:-4.560000px;}
.ws19{word-spacing:-3.984000px;}
.wsbc{word-spacing:-3.780000px;}
.ws17{word-spacing:-3.420000px;}
.ws1a{word-spacing:-3.408000px;}
.ws1f{word-spacing:-3.372000px;}
.ws1c{word-spacing:-3.366000px;}
.ws1b{word-spacing:-3.360000px;}
.ws28{word-spacing:-3.000000px;}
.wsce{word-spacing:-2.940000px;}
.wscc{word-spacing:-2.880000px;}
.wscd{word-spacing:-2.820000px;}
.wsa7{word-spacing:-2.760000px;}
.ws3b{word-spacing:-2.640000px;}
.ws5e{word-spacing:-2.580000px;}
.ws5a{word-spacing:-2.520000px;}
.ws36{word-spacing:-2.460000px;}
.ws91{word-spacing:-2.400000px;}
.ws9f{word-spacing:-2.340000px;}
.ws4c{word-spacing:-2.280000px;}
.wsc3{word-spacing:-2.220000px;}
.ws109{word-spacing:-2.160000px;}
.wsaf{word-spacing:-2.040000px;}
.ws94{word-spacing:-1.980000px;}
.ws9{word-spacing:-1.920000px;}
.wsbe{word-spacing:-1.860000px;}
.ws1e{word-spacing:-1.776000px;}
.ws2e{word-spacing:-1.740000px;}
.wsd9{word-spacing:-1.680000px;}
.wsa3{word-spacing:-1.620000px;}
.wsa2{word-spacing:-1.560000px;}
.wsbd{word-spacing:-1.500000px;}
.ws54{word-spacing:-1.380000px;}
.ws49{word-spacing:-1.320000px;}
.ws96{word-spacing:-1.260000px;}
.wsd2{word-spacing:-1.200000px;}
.wsd{word-spacing:-1.140000px;}
.wsc5{word-spacing:-1.080000px;}
.ws69{word-spacing:-1.020000px;}
.ws18{word-spacing:-0.966000px;}
.ws41{word-spacing:-0.960000px;}
.ws72{word-spacing:-0.900000px;}
.ws92{word-spacing:-0.840000px;}
.ws7e{word-spacing:-0.780000px;}
.ws7c{word-spacing:-0.720000px;}
.ws38{word-spacing:-0.600000px;}
.wsa8{word-spacing:-0.540000px;}
.ws58{word-spacing:-0.480000px;}
.ws103{word-spacing:-0.420000px;}
.wsb1{word-spacing:-0.336000px;}
.wsc0{word-spacing:-0.300000px;}
.wsb9{word-spacing:-0.240000px;}
.ws97{word-spacing:-0.180000px;}
.ws61{word-spacing:-0.120000px;}
.ws42{word-spacing:-0.060000px;}
.ws8{word-spacing:0.000000px;}
.ws11{word-spacing:0.048000px;}
.wsd8{word-spacing:0.060000px;}
.ws8c{word-spacing:0.120000px;}
.ws12{word-spacing:0.144000px;}
.wse6{word-spacing:0.180000px;}
.ws80{word-spacing:0.240000px;}
.ws2c{word-spacing:0.300000px;}
.ws29{word-spacing:0.360000px;}
.wsba{word-spacing:0.420000px;}
.ws2d{word-spacing:0.480000px;}
.ws6c{word-spacing:0.524700px;}
.ws13{word-spacing:0.528000px;}
.wsc9{word-spacing:0.540000px;}
.ws16{word-spacing:0.594000px;}
.ws32{word-spacing:0.600000px;}
.wsfb{word-spacing:0.660000px;}
.ws78{word-spacing:0.720000px;}
.ws73{word-spacing:0.780000px;}
.ws5f{word-spacing:0.840000px;}
.ws65{word-spacing:0.900000px;}
.ws14{word-spacing:0.912000px;}
.wsaa{word-spacing:0.960000px;}
.ws40{word-spacing:1.020000px;}
.ws6a{word-spacing:1.080000px;}
.ws9c{word-spacing:1.140000px;}
.ws4a{word-spacing:1.200000px;}
.wsbf{word-spacing:1.260000px;}
.ws6e{word-spacing:1.320000px;}
.ws8b{word-spacing:1.440000px;}
.ws67{word-spacing:1.500000px;}
.wsb5{word-spacing:1.560000px;}
.ws43{word-spacing:1.620000px;}
.wsb3{word-spacing:1.680000px;}
.ws22{word-spacing:1.740000px;}
.ws77{word-spacing:1.800000px;}
.wsb2{word-spacing:1.860000px;}
.ws60{word-spacing:1.920000px;}
.wsdb{word-spacing:1.980000px;}
.ws8e{word-spacing:2.040000px;}
.ws4b{word-spacing:2.100000px;}
.wsa5{word-spacing:2.160000px;}
.wsa0{word-spacing:2.220000px;}
.ws46{word-spacing:2.280000px;}
.wsd3{word-spacing:2.340000px;}
.ws57{word-spacing:2.400000px;}
.wsab{word-spacing:2.460000px;}
.ws7a{word-spacing:2.520000px;}
.ws8f{word-spacing:2.580000px;}
.wsd5{word-spacing:2.640000px;}
.ws48{word-spacing:2.700000px;}
.ws3c{word-spacing:2.820000px;}
.ws3a{word-spacing:2.880000px;}
.ws64{word-spacing:2.940000px;}
.ws3f{word-spacing:3.000000px;}
.ws74{word-spacing:3.060000px;}
.ws2f{word-spacing:3.120000px;}
.ws7f{word-spacing:3.180000px;}
.ws9e{word-spacing:3.240000px;}
.ws2b{word-spacing:3.300000px;}
.ws31{word-spacing:3.360000px;}
.wsd7{word-spacing:3.420000px;}
.wsbb{word-spacing:3.480000px;}
.ws7b{word-spacing:3.540000px;}
.ws10{word-spacing:3.600000px;}
.ws21{word-spacing:3.660000px;}
.ws25{word-spacing:3.720000px;}
.ws20{word-spacing:3.780000px;}
.wse3{word-spacing:3.840000px;}
.wscf{word-spacing:3.900000px;}
.ws98{word-spacing:3.960000px;}
.wsa6{word-spacing:4.020000px;}
.ws88{word-spacing:4.080000px;}
.ws34{word-spacing:4.140000px;}
.ws5d{word-spacing:4.176000px;}
.wse2{word-spacing:4.200000px;}
.wsad{word-spacing:4.260000px;}
.ws5c{word-spacing:4.320000px;}
.ws5b{word-spacing:4.380000px;}
.wsf6{word-spacing:4.440000px;}
.ws37{word-spacing:4.500000px;}
.ws8d{word-spacing:4.560000px;}
.wse8{word-spacing:4.620000px;}
.ws33{word-spacing:4.680000px;}
.ws71{word-spacing:4.800000px;}
.ws55{word-spacing:4.860000px;}
.ws53{word-spacing:4.920000px;}
.ws82{word-spacing:4.980000px;}
.ws68{word-spacing:5.040000px;}
.ws59{word-spacing:5.100000px;}
.wsea{word-spacing:5.160000px;}
.ws52{word-spacing:5.220000px;}
.ws6b{word-spacing:5.280000px;}
.wsa4{word-spacing:5.340000px;}
.wsc7{word-spacing:5.400000px;}
.wsa1{word-spacing:5.460000px;}
.wsa9{word-spacing:5.520000px;}
.ws4f{word-spacing:5.580000px;}
.wsdc{word-spacing:5.640000px;}
.ws66{word-spacing:5.700000px;}
.ws8a{word-spacing:5.760000px;}
.ws86{word-spacing:5.820000px;}
.wsdf{word-spacing:5.880000px;}
.wsfc{word-spacing:5.940000px;}
.wsf4{word-spacing:6.000000px;}
.wsee{word-spacing:6.060000px;}
.ws95{word-spacing:6.120000px;}
.ws51{word-spacing:6.180000px;}
.ws27{word-spacing:6.240000px;}
.ws24{word-spacing:6.300000px;}
.wsf2{word-spacing:6.360000px;}
.ws81{word-spacing:6.420000px;}
.wsc4{word-spacing:6.480000px;}
.ws79{word-spacing:6.540000px;}
.wsca{word-spacing:6.600000px;}
.ws6d{word-spacing:6.780000px;}
.ws23{word-spacing:6.840000px;}
.wsd6{word-spacing:6.900000px;}
.ws99{word-spacing:6.960000px;}
.wsb7{word-spacing:7.020000px;}
.ws89{word-spacing:7.080000px;}
.wsd0{word-spacing:7.140000px;}
.wse4{word-spacing:7.200000px;}
.ws75{word-spacing:7.320000px;}
.wse9{word-spacing:7.380000px;}
.wscb{word-spacing:7.440000px;}
.wsb4{word-spacing:7.500000px;}
.ws9d{word-spacing:7.560000px;}
.wsf8{word-spacing:7.620000px;}
.ws56{word-spacing:7.680000px;}
.ws4d{word-spacing:7.800000px;}
.ws84{word-spacing:7.860000px;}
.ws106{word-spacing:7.920000px;}
.ws7d{word-spacing:7.980000px;}
.ws3e{word-spacing:8.040000px;}
.wsda{word-spacing:8.100000px;}
.wsf7{word-spacing:8.160000px;}
.ws39{word-spacing:8.220000px;}
.ws104{word-spacing:8.280000px;}
.wsd1{word-spacing:8.340000px;}
.ws62{word-spacing:8.400000px;}
.ws90{word-spacing:8.460000px;}
.ws15{word-spacing:8.496000px;}
.ws45{word-spacing:8.580000px;}
.wsef{word-spacing:8.640000px;}
.wsc8{word-spacing:8.820000px;}
.ws87{word-spacing:8.880000px;}
.ws35{word-spacing:9.000000px;}
.ws93{word-spacing:9.060000px;}
.wsdd{word-spacing:9.180000px;}
.wse7{word-spacing:9.240000px;}
.wsec{word-spacing:9.360000px;}
.ws85{word-spacing:9.420000px;}
.wsc2{word-spacing:9.540000px;}
.wse1{word-spacing:9.780000px;}
.wsd4{word-spacing:9.960000px;}
.ws102{word-spacing:10.200000px;}
.ws44{word-spacing:10.260000px;}
.wsde{word-spacing:10.380000px;}
.wsc6{word-spacing:10.500000px;}
.ws105{word-spacing:10.560000px;}
.ws26{word-spacing:10.680000px;}
.ws83{word-spacing:10.740000px;}
.ws50{word-spacing:10.920000px;}
.ws4e{word-spacing:11.040000px;}
.ws108{word-spacing:11.100000px;}
.wsfa{word-spacing:11.160000px;}
.wsf0{word-spacing:11.340000px;}
.wsc1{word-spacing:11.460000px;}
.wsb8{word-spacing:11.520000px;}
.ws47{word-spacing:11.640000px;}
.wsf3{word-spacing:11.700000px;}
.wse0{word-spacing:11.760000px;}
.wsac{word-spacing:11.880000px;}
.ws76{word-spacing:11.940000px;}
.ws101{word-spacing:12.240000px;}
.ws30{word-spacing:12.360000px;}
.ws9b{word-spacing:12.600000px;}
.ws2a{word-spacing:12.660000px;}
.wsf{word-spacing:12.768000px;}
.wsf1{word-spacing:12.780000px;}
.wse5{word-spacing:13.680000px;}
.ws3d{word-spacing:13.740000px;}
.wseb{word-spacing:14.100000px;}
.ws10a{word-spacing:15.120000px;}
.wsfe{word-spacing:15.960000px;}
.ws6f{word-spacing:16.140000px;}
.wsc{word-spacing:16.464000px;}
.wsff{word-spacing:16.860000px;}
.wsf9{word-spacing:17.760000px;}
.ws107{word-spacing:18.360000px;}
.wsfd{word-spacing:18.420000px;}
.ws9a{word-spacing:18.480000px;}
.wsb{word-spacing:18.648000px;}
.wsf5{word-spacing:18.780000px;}
.ws63{word-spacing:19.980000px;}
.wsa{word-spacing:23.400000px;}
.wsb0{word-spacing:50.548800px;}
._4{margin-left:-50.457600px;}
._5{margin-left:-36.967200px;}
._6{margin-left:-34.817976px;}
._1f{margin-left:-19.500000px;}
._21{margin-left:-15.834000px;}
._18{margin-left:-14.700000px;}
._f{margin-left:-12.326400px;}
._17{margin-left:-8.220000px;}
._12{margin-left:-6.642000px;}
._8{margin-left:-5.496000px;}
._10{margin-left:-3.561600px;}
._2{margin-left:-2.395200px;}
._1{margin-left:-1.368000px;}
._0{width:1.092000px;}
._3{width:2.107200px;}
._a{width:3.516000px;}
._9{width:4.728000px;}
._14{width:5.760000px;}
._e{width:6.846000px;}
._b{width:8.262000px;}
._15{width:9.282000px;}
._16{width:10.854000px;}
._11{width:11.964000px;}
._c{width:13.566000px;}
._1c{width:16.032000px;}
._1d{width:17.190000px;}
._20{width:18.444000px;}
._d{width:23.202000px;}
._1e{width:24.948000px;}
._1a{width:49.320000px;}
._1b{width:88.560000px;}
._13{width:106.916400px;}
._7{width:170.151312px;}
._19{width:381.686400px;}
.fc1{color:rgb(72,89,177);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:34.980000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:48.972000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:120.000000px;}
.fs0{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y215{bottom:57.126600px;}
.y19f{bottom:57.622950px;}
.y173{bottom:58.011600px;}
.y47{bottom:58.556700px;}
.y15f{bottom:59.642400px;}
.yab{bottom:61.476900px;}
.y251{bottom:62.511600px;}
.y123{bottom:62.676600px;}
.y1dd{bottom:62.990850px;}
.y2a6{bottom:64.706100px;}
.ye7{bottom:64.911600px;}
.y20b{bottom:66.997350px;}
.y53{bottom:67.046700px;}
.y23c{bottom:69.576600px;}
.y8f{bottom:69.741600px;}
.y135{bottom:70.533150px;}
.y214{bottom:75.126600px;}
.y172{bottom:76.011600px;}
.y46{bottom:76.556700px;}
.y15e{bottom:77.642400px;}
.y19e{bottom:79.522950px;}
.yaa{bottom:79.776900px;}
.y250{bottom:80.511600px;}
.y122{bottom:80.676600px;}
.y1dc{bottom:80.990850px;}
.y2a5{bottom:82.706100px;}
.ye6{bottom:82.761600px;}
.y20a{bottom:84.997350px;}
.y52{bottom:85.046700px;}
.y23b{bottom:87.726600px;}
.y8e{bottom:87.741600px;}
.y134{bottom:92.433150px;}
.y213{bottom:93.126600px;}
.y171{bottom:94.011600px;}
.y45{bottom:94.556700px;}
.y19d{bottom:97.522950px;}
.ya9{bottom:98.076900px;}
.y24f{bottom:98.511600px;}
.y121{bottom:98.676600px;}
.y1db{bottom:98.990850px;}
.ye5{bottom:100.611600px;}
.y2a4{bottom:100.706100px;}
.y209{bottom:102.997350px;}
.y51{bottom:103.046700px;}
.y15d{bottom:103.142400px;}
.y8d{bottom:105.741600px;}
.y23a{bottom:105.876600px;}
.y133{bottom:110.433150px;}
.y212{bottom:111.126600px;}
.y170{bottom:112.011600px;}
.y44{bottom:112.556700px;}
.ya8{bottom:116.376900px;}
.y24e{bottom:116.511600px;}
.y120{bottom:116.676600px;}
.y1da{bottom:116.990850px;}
.ye4{bottom:118.611600px;}
.y2a3{bottom:118.706100px;}
.y208{bottom:120.997350px;}
.y50{bottom:121.046700px;}
.y8c{bottom:123.741600px;}
.y239{bottom:124.026600px;}
.y211{bottom:129.126600px;}
.y16f{bottom:130.011600px;}
.y43{bottom:130.556700px;}
.ya7{bottom:134.376900px;}
.y24d{bottom:134.511600px;}
.y11f{bottom:134.676600px;}
.y1d9{bottom:134.990850px;}
.ye3{bottom:136.611600px;}
.y207{bottom:138.997350px;}
.y4f{bottom:139.046700px;}
.y8b{bottom:141.741600px;}
.y238{bottom:142.176600px;}
.y15c{bottom:144.647400px;}
.y210{bottom:147.126600px;}
.y16e{bottom:148.011600px;}
.y42{bottom:148.556700px;}
.ya6{bottom:152.376900px;}
.y24c{bottom:152.511600px;}
.y11e{bottom:152.676600px;}
.y1d8{bottom:152.990850px;}
.ye2{bottom:154.611600px;}
.y2a2{bottom:154.706100px;}
.y206{bottom:156.997350px;}
.y4e{bottom:157.046700px;}
.y8a{bottom:159.741600px;}
.y237{bottom:160.326600px;}
.y15b{bottom:162.647400px;}
.y20f{bottom:165.126600px;}
.y16d{bottom:166.011600px;}
.y41{bottom:166.556700px;}
.ya5{bottom:170.376900px;}
.y24b{bottom:170.511600px;}
.y287{bottom:170.540850px;}
.y11d{bottom:170.676600px;}
.y1d7{bottom:170.990850px;}
.ye1{bottom:172.611600px;}
.y2a1{bottom:172.706100px;}
.y205{bottom:174.997350px;}
.y4d{bottom:175.046700px;}
.y236{bottom:178.476600px;}
.y20e{bottom:183.126600px;}
.y16c{bottom:184.011600px;}
.y40{bottom:184.556700px;}
.y89{bottom:186.246600px;}
.ya4{bottom:188.376900px;}
.y24a{bottom:188.511600px;}
.y286{bottom:188.540850px;}
.y11c{bottom:188.676600px;}
.y1d6{bottom:188.840850px;}
.ye0{bottom:190.611600px;}
.y2a0{bottom:190.706100px;}
.y204{bottom:192.997350px;}
.y4c{bottom:193.046700px;}
.y15a{bottom:195.527400px;}
.y235{bottom:196.626600px;}
.y20d{bottom:201.126600px;}
.y16b{bottom:202.011600px;}
.y3f{bottom:202.556700px;}
.ya3{bottom:206.376900px;}
.y249{bottom:206.511600px;}
.y285{bottom:206.540850px;}
.y11b{bottom:206.676600px;}
.y1d5{bottom:206.690850px;}
.y29f{bottom:208.706700px;}
.ydf{bottom:208.911600px;}
.y203{bottom:210.997350px;}
.y4b{bottom:211.046700px;}
.y159{bottom:213.527400px;}
.y234{bottom:214.776600px;}
.y88{bottom:219.126600px;}
.y16a{bottom:220.011600px;}
.y3e{bottom:220.556700px;}
.ya2{bottom:224.376900px;}
.y248{bottom:224.511600px;}
.y1d4{bottom:224.540850px;}
.y11a{bottom:224.676600px;}
.y29e{bottom:226.706700px;}
.yde{bottom:227.211600px;}
.y202{bottom:228.997350px;}
.y4a{bottom:229.046700px;}
.y158{bottom:231.527400px;}
.y233{bottom:232.926600px;}
.y87{bottom:237.126600px;}
.y169{bottom:238.011600px;}
.y3d{bottom:238.556700px;}
.ya1{bottom:242.376900px;}
.y1d3{bottom:242.390850px;}
.y247{bottom:242.511600px;}
.y284{bottom:242.540850px;}
.y119{bottom:242.676600px;}
.y29d{bottom:244.706700px;}
.ydd{bottom:245.511600px;}
.y201{bottom:246.997350px;}
.y49{bottom:247.046700px;}
.y157{bottom:249.527400px;}
.y232{bottom:251.076600px;}
.y86{bottom:255.126600px;}
.y1d2{bottom:260.240850px;}
.ya0{bottom:260.376900px;}
.y246{bottom:260.511600px;}
.y283{bottom:260.540850px;}
.y118{bottom:260.676600px;}
.y29c{bottom:262.706700px;}
.y168{bottom:263.511600px;}
.ydc{bottom:263.811600px;}
.y3c{bottom:264.854250px;}
.y200{bottom:264.997350px;}
.y48{bottom:265.046700px;}
.y156{bottom:267.527400px;}
.y231{bottom:269.226600px;}
.y85{bottom:273.126600px;}
.y1d1{bottom:278.090850px;}
.y9f{bottom:278.376900px;}
.y245{bottom:278.511600px;}
.y282{bottom:278.540850px;}
.y117{bottom:278.676600px;}
.y29b{bottom:280.706700px;}
.ydb{bottom:282.111600px;}
.y1ff{bottom:282.997350px;}
.y155{bottom:285.527400px;}
.y230{bottom:287.376600px;}
.y84{bottom:291.126600px;}
.y167{bottom:294.261600px;}
.y1d0{bottom:295.940850px;}
.y9e{bottom:296.376900px;}
.y244{bottom:296.511600px;}
.y281{bottom:296.540850px;}
.y116{bottom:296.676600px;}
.y29a{bottom:298.706700px;}
.yda{bottom:300.411600px;}
.y1fe{bottom:300.997350px;}
.y154{bottom:303.527400px;}
.y22f{bottom:305.526600px;}
.y83{bottom:309.126600px;}
.y166{bottom:312.261600px;}
.y3b{bottom:313.601250px;}
.y1cf{bottom:313.790850px;}
.y9d{bottom:314.376900px;}
.y243{bottom:314.511600px;}
.y280{bottom:314.540850px;}
.y115{bottom:314.676600px;}
.yd9{bottom:318.711600px;}
.y1fd{bottom:318.997350px;}
.y153{bottom:321.527400px;}
.y22e{bottom:323.676600px;}
.y299{bottom:325.211700px;}
.y82{bottom:327.126600px;}
.y3a{bottom:328.605750px;}
.y165{bottom:330.261600px;}
.y1ce{bottom:331.640850px;}
.y9c{bottom:332.376900px;}
.y242{bottom:332.511600px;}
.y27f{bottom:332.540850px;}
.y114{bottom:332.676600px;}
.y1fc{bottom:336.997350px;}
.yd8{bottom:337.011600px;}
.y152{bottom:339.527400px;}
.y22d{bottom:341.826600px;}
.y39{bottom:343.610250px;}
.y81{bottom:345.126600px;}
.y164{bottom:348.261600px;}
.y1cd{bottom:349.490850px;}
.y9b{bottom:350.376900px;}
.y241{bottom:350.511600px;}
.y27e{bottom:350.540850px;}
.y113{bottom:350.676600px;}
.y1fb{bottom:354.997350px;}
.yd7{bottom:355.311600px;}
.y151{bottom:357.527400px;}
.y298{bottom:358.091700px;}
.y38{bottom:358.614750px;}
.y22c{bottom:359.976600px;}
.y80{bottom:363.126600px;}
.y24{bottom:364.709250px;}
.y163{bottom:366.261600px;}
.y1cc{bottom:367.340850px;}
.y9a{bottom:368.376900px;}
.y240{bottom:368.511600px;}
.y27d{bottom:368.540850px;}
.y112{bottom:368.676600px;}
.y1fa{bottom:372.997350px;}
.yd6{bottom:373.611600px;}
.y37{bottom:373.619250px;}
.y150{bottom:375.527400px;}
.y297{bottom:376.091700px;}
.y22b{bottom:378.126600px;}
.y23{bottom:379.709250px;}
.y7f{bottom:381.126600px;}
.y162{bottom:384.261600px;}
.y1cb{bottom:385.190850px;}
.y99{bottom:386.376900px;}
.y23f{bottom:386.511600px;}
.y27c{bottom:386.540850px;}
.y111{bottom:386.676600px;}
.y36{bottom:388.623750px;}
.y1f9{bottom:390.997350px;}
.yd5{bottom:391.911600px;}
.y14f{bottom:393.527400px;}
.y19c{bottom:393.955950px;}
.y296{bottom:394.091700px;}
.y22a{bottom:396.276600px;}
.y7e{bottom:399.126600px;}
.y161{bottom:402.261600px;}
.y1ca{bottom:403.040850px;}
.y35{bottom:403.598250px;}
.y98{bottom:404.376900px;}
.y23e{bottom:404.511600px;}
.y27b{bottom:404.540850px;}
.y110{bottom:404.676600px;}
.y1f8{bottom:408.997350px;}
.y22{bottom:409.820250px;}
.yd4{bottom:410.211600px;}
.y14e{bottom:411.527400px;}
.y19b{bottom:411.955950px;}
.y295{bottom:412.091700px;}
.y229{bottom:414.426600px;}
.y7d{bottom:417.126600px;}
.y1c9{bottom:420.890850px;}
.y97{bottom:422.376900px;}
.y23d{bottom:422.511600px;}
.y27a{bottom:422.540850px;}
.y10f{bottom:422.676600px;}
.y21{bottom:424.820250px;}
.y160{bottom:427.761600px;}
.yd3{bottom:428.511600px;}
.y14d{bottom:429.527400px;}
.y19a{bottom:429.955950px;}
.y294{bottom:430.091700px;}
.y228{bottom:432.576600px;}
.y7c{bottom:435.126600px;}
.y34{bottom:435.654750px;}
.y1c8{bottom:438.740850px;}
.y20{bottom:439.820250px;}
.y96{bottom:440.376900px;}
.y132{bottom:440.511600px;}
.y279{bottom:440.540850px;}
.y1f7{bottom:441.997350px;}
.yd2{bottom:446.811600px;}
.y14c{bottom:447.527400px;}
.y199{bottom:447.955950px;}
.y293{bottom:448.091700px;}
.y10e{bottom:449.181600px;}
.y33{bottom:450.665250px;}
.y227{bottom:450.726600px;}
.y7b{bottom:453.126600px;}
.y1f{bottom:454.820250px;}
.y1c7{bottom:456.590850px;}
.y95{bottom:458.376900px;}
.y131{bottom:458.511600px;}
.y278{bottom:458.540850px;}
.y1f6{bottom:463.897350px;}
.yd1{bottom:465.111600px;}
.y14b{bottom:465.527400px;}
.y32{bottom:465.675750px;}
.y198{bottom:465.955950px;}
.y292{bottom:466.091700px;}
.y226{bottom:468.876600px;}
.y1e{bottom:469.820250px;}
.y7a{bottom:471.126600px;}
.y1c6{bottom:474.440850px;}
.y94{bottom:476.376900px;}
.y130{bottom:476.511600px;}
.y277{bottom:476.540850px;}
.y31{bottom:480.656250px;}
.y1f5{bottom:481.897350px;}
.y10d{bottom:482.061600px;}
.yd0{bottom:483.411600px;}
.y14a{bottom:483.527400px;}
.y291{bottom:484.091700px;}
.y1d{bottom:484.820250px;}
.y225{bottom:487.026600px;}
.y79{bottom:489.126600px;}
.y1c5{bottom:492.290850px;}
.y93{bottom:494.376900px;}
.y12f{bottom:494.511600px;}
.y276{bottom:494.540850px;}
.y197{bottom:498.944700px;}
.y1c{bottom:499.820250px;}
.y10c{bottom:500.061600px;}
.y149{bottom:501.527400px;}
.ycf{bottom:501.711600px;}
.y290{bottom:502.091700px;}
.y224{bottom:505.176600px;}
.y78{bottom:507.126600px;}
.y1c4{bottom:510.140850px;}
.y12e{bottom:512.511600px;}
.y275{bottom:512.540850px;}
.y30{bottom:512.601750px;}
.y1b{bottom:514.820250px;}
.y10b{bottom:517.911600px;}
.y148{bottom:519.527400px;}
.yce{bottom:520.011600px;}
.y28f{bottom:520.091700px;}
.y223{bottom:523.326600px;}
.y77{bottom:525.126600px;}
.y92{bottom:527.376900px;}
.y1c3{bottom:527.990850px;}
.y196{bottom:528.788700px;}
.y1a{bottom:529.820250px;}
.y12d{bottom:530.511600px;}
.y274{bottom:530.540850px;}
.y10a{bottom:535.761600px;}
.y147{bottom:537.527400px;}
.ycd{bottom:538.311600px;}
.y222{bottom:541.476600px;}
.y91{bottom:541.776900px;}
.y76{bottom:543.126600px;}
.y195{bottom:543.188700px;}
.y2f{bottom:544.116750px;}
.y1c2{bottom:545.840850px;}
.y28e{bottom:546.596700px;}
.y12c{bottom:548.511600px;}
.y273{bottom:548.540850px;}
.y20c{bottom:551.631600px;}
.y109{bottom:553.611600px;}
.y146{bottom:555.527400px;}
.ycc{bottom:556.611600px;}
.y2e{bottom:559.121250px;}
.y221{bottom:559.626600px;}
.y75{bottom:561.126600px;}
.y19{bottom:561.713250px;}
.y90{bottom:563.676900px;}
.y1c1{bottom:563.690850px;}
.y12b{bottom:566.511600px;}
.y272{bottom:566.540850px;}
.y194{bottom:567.056700px;}
.y216{bottom:569.631600px;}
.y108{bottom:571.461600px;}
.y145{bottom:573.527400px;}
.y2d{bottom:574.125750px;}
.y193{bottom:574.256700px;}
.ycb{bottom:574.911600px;}
.y220{bottom:577.776600px;}
.y74{bottom:579.126600px;}
.y28d{bottom:579.476700px;}
.y1c0{bottom:581.540850px;}
.y12a{bottom:584.511600px;}
.y271{bottom:584.540850px;}
.y2c{bottom:589.130250px;}
.y107{bottom:589.311600px;}
.y18{bottom:591.224250px;}
.y144{bottom:591.527400px;}
.yca{bottom:593.211600px;}
.y190{bottom:593.396700px;}
.y21f{bottom:595.926600px;}
.y73{bottom:597.126600px;}
.y28c{bottom:597.476700px;}
.y1bf{bottom:599.390850px;}
.y129{bottom:602.511600px;}
.y270{bottom:602.540850px;}
.y2b{bottom:604.134750px;}
.y192{bottom:605.324700px;}
.y17{bottom:606.224250px;}
.y106{bottom:607.161600px;}
.y143{bottom:609.527400px;}
.yc9{bottom:611.511600px;}
.y191{bottom:612.524700px;}
.y21e{bottom:614.076600px;}
.y72{bottom:615.126600px;}
.y28b{bottom:615.476700px;}
.y1be{bottom:617.240850px;}
.y2a{bottom:619.139250px;}
.y128{bottom:620.511600px;}
.y26f{bottom:620.540850px;}
.y16{bottom:621.224250px;}
.y105{bottom:625.011600px;}
.y142{bottom:627.527400px;}
.yc8{bottom:629.811600px;}
.y21d{bottom:632.226600px;}
.y71{bottom:633.126600px;}
.y29{bottom:634.113750px;}
.y1bd{bottom:635.090850px;}
.y15{bottom:636.224250px;}
.y127{bottom:638.511600px;}
.y26e{bottom:638.540850px;}
.y28a{bottom:641.981700px;}
.y104{bottom:642.861600px;}
.y18f{bottom:644.420700px;}
.y141{bottom:645.527400px;}
.yc7{bottom:648.111600px;}
.y21c{bottom:650.376600px;}
.y70{bottom:651.126600px;}
.y14{bottom:651.224250px;}
.y1bc{bottom:652.940850px;}
.y126{bottom:656.511600px;}
.y26d{bottom:656.540850px;}
.y103{bottom:660.711600px;}
.y140{bottom:663.527400px;}
.y28{bottom:666.170250px;}
.y13{bottom:666.224250px;}
.yc6{bottom:666.411600px;}
.y21b{bottom:668.526600px;}
.y18e{bottom:669.104700px;}
.y1bb{bottom:670.790850px;}
.y125{bottom:674.511600px;}
.y26c{bottom:674.540850px;}
.y18d{bottom:676.304700px;}
.y6f{bottom:677.631600px;}
.y102{bottom:678.561600px;}
.y27{bottom:681.180750px;}
.y12{bottom:681.224250px;}
.y13f{bottom:681.527400px;}
.yc5{bottom:684.711600px;}
.y21a{bottom:686.676600px;}
.y1ba{bottom:688.640850px;}
.y289{bottom:689.863500px;}
.y124{bottom:692.511600px;}
.y26b{bottom:692.540850px;}
.y26{bottom:696.191250px;}
.y11{bottom:696.224250px;}
.y101{bottom:696.411600px;}
.y13e{bottom:699.527400px;}
.yc4{bottom:703.011600px;}
.y219{bottom:704.826600px;}
.y1b9{bottom:706.490850px;}
.y18c{bottom:707.372700px;}
.y6e{bottom:710.511600px;}
.y26a{bottom:710.540850px;}
.y25{bottom:711.171750px;}
.y10{bottom:711.223500px;}
.y100{bottom:714.261600px;}
.y18b{bottom:714.572700px;}
.y13d{bottom:717.527400px;}
.yc3{bottom:721.311600px;}
.y218{bottom:722.976600px;}
.y1b8{bottom:724.340850px;}
.y186{bottom:725.216700px;}
.y6d{bottom:728.511600px;}
.y269{bottom:728.540850px;}
.yff{bottom:732.111600px;}
.y13c{bottom:735.527400px;}
.yc2{bottom:739.611600px;}
.y1b7{bottom:742.190850px;}
.yf{bottom:743.116500px;}
.y18a{bottom:744.332700px;}
.y6c{bottom:746.511600px;}
.y268{bottom:746.540850px;}
.y217{bottom:749.631600px;}
.yfe{bottom:749.961600px;}
.y13b{bottom:753.527400px;}
.yc1{bottom:757.911600px;}
.y1b6{bottom:760.040850px;}
.y1f4{bottom:764.510850px;}
.y6b{bottom:764.511600px;}
.y267{bottom:764.540850px;}
.y189{bottom:765.596700px;}
.yfd{bottom:767.811600px;}
.y13a{bottom:771.527400px;}
.yc{bottom:776.185350px;}
.yc0{bottom:776.211600px;}
.y1b5{bottom:777.890850px;}
.y1f3{bottom:782.510850px;}
.y6a{bottom:782.511600px;}
.y266{bottom:782.540850px;}
.yfc{bottom:785.661600px;}
.y188{bottom:786.860700px;}
.y139{bottom:789.527400px;}
.ybf{bottom:794.511600px;}
.y1b4{bottom:795.740850px;}
.yb{bottom:799.180350px;}
.y1f2{bottom:800.510850px;}
.y69{bottom:800.511600px;}
.y265{bottom:800.540850px;}
.yfb{bottom:803.511600px;}
.y187{bottom:808.124700px;}
.ybe{bottom:812.811600px;}
.y1b3{bottom:813.590850px;}
.y1f1{bottom:818.510850px;}
.y68{bottom:818.511600px;}
.y264{bottom:818.540850px;}
.yfa{bottom:821.361600px;}
.y138{bottom:822.527400px;}
.ya{bottom:827.185350px;}
.y185{bottom:829.388700px;}
.ybd{bottom:831.111600px;}
.y1b2{bottom:831.440850px;}
.y1f0{bottom:836.510850px;}
.y67{bottom:836.511600px;}
.y263{bottom:836.540850px;}
.yf9{bottom:839.211600px;}
.y137{bottom:844.427250px;}
.y1b1{bottom:849.290850px;}
.ybc{bottom:849.411600px;}
.y9{bottom:852.391350px;}
.y1ef{bottom:854.510850px;}
.y66{bottom:854.511600px;}
.y262{bottom:854.540850px;}
.yf8{bottom:857.061600px;}
.y184{bottom:857.526600px;}
.y136{bottom:862.427250px;}
.y1b0{bottom:867.140850px;}
.ybb{bottom:867.711600px;}
.y1ee{bottom:872.510850px;}
.y65{bottom:872.511600px;}
.y261{bottom:872.540850px;}
.yf7{bottom:874.911600px;}
.y1af{bottom:884.990850px;}
.yba{bottom:886.011600px;}
.y1ed{bottom:890.510850px;}
.y64{bottom:890.511600px;}
.y183{bottom:890.526600px;}
.y260{bottom:890.540850px;}
.y8{bottom:892.585350px;}
.yf6{bottom:892.761600px;}
.y1ae{bottom:902.840850px;}
.yb9{bottom:904.311600px;}
.y1ec{bottom:908.510850px;}
.y63{bottom:908.511600px;}
.y182{bottom:908.526600px;}
.y25f{bottom:908.540850px;}
.yf5{bottom:910.611600px;}
.y7{bottom:917.785350px;}
.y1ad{bottom:920.690850px;}
.yb8{bottom:922.611600px;}
.y1eb{bottom:926.510850px;}
.y62{bottom:926.511600px;}
.y181{bottom:926.526600px;}
.y25e{bottom:926.540850px;}
.yf4{bottom:928.461600px;}
.y1ac{bottom:938.540850px;}
.yb7{bottom:940.911600px;}
.y1ea{bottom:944.510850px;}
.y61{bottom:944.511600px;}
.y180{bottom:944.526600px;}
.y25d{bottom:944.540850px;}
.yf3{bottom:946.311600px;}
.y6{bottom:950.485350px;}
.y1ab{bottom:956.390850px;}
.yb6{bottom:959.211600px;}
.y1e9{bottom:962.510850px;}
.y60{bottom:962.511600px;}
.y17f{bottom:962.526600px;}
.y25c{bottom:962.540850px;}
.yf2{bottom:964.161600px;}
.y288{bottom:965.631600px;}
.y1aa{bottom:974.240850px;}
.yb5{bottom:977.511600px;}
.y1e8{bottom:980.510850px;}
.y5f{bottom:980.511600px;}
.y17e{bottom:980.526600px;}
.y25b{bottom:980.540850px;}
.yf1{bottom:982.011600px;}
.y5{bottom:983.485350px;}
.y1a9{bottom:992.090850px;}
.yb4{bottom:995.811600px;}
.y1e7{bottom:998.510850px;}
.y5e{bottom:998.511600px;}
.y17d{bottom:998.526600px;}
.y25a{bottom:998.540850px;}
.yf0{bottom:999.861600px;}
.y1a8{bottom:1009.940850px;}
.yb3{bottom:1014.111600px;}
.y4{bottom:1016.485350px;}
.y1e6{bottom:1016.510850px;}
.y5d{bottom:1016.511600px;}
.y17c{bottom:1016.526600px;}
.y259{bottom:1016.540850px;}
.yef{bottom:1017.711600px;}
.y1a7{bottom:1027.790850px;}
.yb2{bottom:1032.411600px;}
.y1e5{bottom:1034.510850px;}
.y5c{bottom:1034.511600px;}
.y17b{bottom:1034.526600px;}
.y258{bottom:1034.540850px;}
.yee{bottom:1035.561600px;}
.y1a6{bottom:1045.640850px;}
.yb1{bottom:1050.711600px;}
.y1e4{bottom:1052.510850px;}
.y5b{bottom:1052.511600px;}
.y17a{bottom:1052.526600px;}
.y257{bottom:1052.540850px;}
.yed{bottom:1053.411600px;}
.y1a5{bottom:1063.490850px;}
.yd{bottom:1064.561250px;}
.yb0{bottom:1069.011600px;}
.y1e3{bottom:1070.510850px;}
.y5a{bottom:1070.511600px;}
.y179{bottom:1070.526600px;}
.y256{bottom:1070.540850px;}
.yec{bottom:1071.261600px;}
.y1a4{bottom:1081.340850px;}
.yaf{bottom:1087.311600px;}
.y1e2{bottom:1088.510850px;}
.y59{bottom:1088.511600px;}
.y178{bottom:1088.526600px;}
.y255{bottom:1088.540850px;}
.yeb{bottom:1089.111600px;}
.y2{bottom:1094.863650px;}
.y1a3{bottom:1099.190850px;}
.yae{bottom:1105.611600px;}
.y1e1{bottom:1106.510850px;}
.y58{bottom:1106.511600px;}
.y177{bottom:1106.526600px;}
.y254{bottom:1106.540850px;}
.yea{bottom:1106.961600px;}
.y1a2{bottom:1117.040850px;}
.yad{bottom:1123.911600px;}
.y1e0{bottom:1124.510850px;}
.y57{bottom:1124.511600px;}
.y176{bottom:1124.526600px;}
.y253{bottom:1124.540850px;}
.ye9{bottom:1124.811600px;}
.y1a1{bottom:1135.040850px;}
.y1{bottom:1140.741750px;}
.yac{bottom:1142.211600px;}
.y1df{bottom:1142.510850px;}
.y56{bottom:1142.511600px;}
.y175{bottom:1142.526600px;}
.y252{bottom:1142.540850px;}
.ye8{bottom:1142.661600px;}
.y1de{bottom:1160.510850px;}
.y55{bottom:1160.511600px;}
.y174{bottom:1160.526600px;}
.y1a0{bottom:1160.540850px;}
.ye{bottom:1192.682850px;}
.y3{bottom:1194.864600px;}
.y54{bottom:1196.811750px;}
.h9{height:25.466396px;}
.h15{height:33.744000px;}
.h4{height:34.176000px;}
.h11{height:34.828125px;}
.hb{height:34.945312px;}
.he{height:34.948313px;}
.hf{height:43.429688px;}
.h14{height:43.535156px;}
.h12{height:43.593750px;}
.ha{height:43.681641px;}
.hd{height:45.304688px;}
.h10{height:45.307688px;}
.h18{height:45.449396px;}
.h3{height:51.264000px;}
.hc{height:52.417969px;}
.h19{height:54.284709px;}
.h13{height:54.287109px;}
.h6{height:58.800000px;}
.h7{height:62.228400px;}
.h8{height:62.252400px;}
.h16{height:62.976000px;}
.h5{height:84.000000px;}
.h17{height:91.776000px;}
.h2{height:109.200000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:54.000000px;}
.xa{left:72.100350px;}
.x6{left:205.813500px;}
.x1{left:212.431650px;}
.x2{left:290.307600px;}
.x7{left:306.100500px;}
.x8{left:451.732350px;}
.xc{left:461.170350px;}
.xe{left:466.596600px;}
.xd{left:468.336600px;}
.xb{left:479.170350px;}
.xf{left:540.840600px;}
.x5{left:594.268350px;}
.x10{left:610.992600px;}
.x9{left:640.252350px;}
.x3{left:658.255950px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:24.842667pt;}
.ls9{letter-spacing:-3.914667pt;}
.lsf{letter-spacing:-2.026667pt;}
.ls12{letter-spacing:-1.600000pt;}
.lsc{letter-spacing:-1.493333pt;}
.lsd{letter-spacing:-1.066667pt;}
.ls10{letter-spacing:-0.800000pt;}
.lse{letter-spacing:-0.533333pt;}
.ls11{letter-spacing:-0.466400pt;}
.ls13{letter-spacing:-0.266667pt;}
.ls8{letter-spacing:-0.074667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.533333pt;}
.ls18{letter-spacing:0.816000pt;}
.ls7{letter-spacing:0.960000pt;}
.ls6{letter-spacing:1.066667pt;}
.ls3{letter-spacing:2.986667pt;}
.lsb{letter-spacing:3.093333pt;}
.ls1{letter-spacing:3.152000pt;}
.lsa{letter-spacing:4.266667pt;}
.ls14{letter-spacing:6.186667pt;}
.ls2{letter-spacing:6.400000pt;}
.ls4{letter-spacing:6.528000pt;}
.ls17{letter-spacing:7.898667pt;}
.ls0{letter-spacing:165.588800pt;}
.ws1{word-spacing:-24.426667pt;}
.ws6{word-spacing:-20.608000pt;}
.ws3{word-spacing:-16.352000pt;}
.ws0{word-spacing:-14.528000pt;}
.ws7{word-spacing:-13.653333pt;}
.ws70{word-spacing:-13.333333pt;}
.wsed{word-spacing:-12.533333pt;}
.ws100{word-spacing:-12.266667pt;}
.ws5{word-spacing:-10.666667pt;}
.ws2{word-spacing:-9.576747pt;}
.ws4{word-spacing:-7.773333pt;}
.wse{word-spacing:-6.400000pt;}
.ws1d{word-spacing:-4.266667pt;}
.wsb6{word-spacing:-4.213333pt;}
.wsae{word-spacing:-4.053333pt;}
.ws19{word-spacing:-3.541333pt;}
.wsbc{word-spacing:-3.360000pt;}
.ws17{word-spacing:-3.040000pt;}
.ws1a{word-spacing:-3.029333pt;}
.ws1f{word-spacing:-2.997333pt;}
.ws1c{word-spacing:-2.992000pt;}
.ws1b{word-spacing:-2.986667pt;}
.ws28{word-spacing:-2.666667pt;}
.wsce{word-spacing:-2.613333pt;}
.wscc{word-spacing:-2.560000pt;}
.wscd{word-spacing:-2.506667pt;}
.wsa7{word-spacing:-2.453333pt;}
.ws3b{word-spacing:-2.346667pt;}
.ws5e{word-spacing:-2.293333pt;}
.ws5a{word-spacing:-2.240000pt;}
.ws36{word-spacing:-2.186667pt;}
.ws91{word-spacing:-2.133333pt;}
.ws9f{word-spacing:-2.080000pt;}
.ws4c{word-spacing:-2.026667pt;}
.wsc3{word-spacing:-1.973333pt;}
.ws109{word-spacing:-1.920000pt;}
.wsaf{word-spacing:-1.813333pt;}
.ws94{word-spacing:-1.760000pt;}
.ws9{word-spacing:-1.706667pt;}
.wsbe{word-spacing:-1.653333pt;}
.ws1e{word-spacing:-1.578667pt;}
.ws2e{word-spacing:-1.546667pt;}
.wsd9{word-spacing:-1.493333pt;}
.wsa3{word-spacing:-1.440000pt;}
.wsa2{word-spacing:-1.386667pt;}
.wsbd{word-spacing:-1.333333pt;}
.ws54{word-spacing:-1.226667pt;}
.ws49{word-spacing:-1.173333pt;}
.ws96{word-spacing:-1.120000pt;}
.wsd2{word-spacing:-1.066667pt;}
.wsd{word-spacing:-1.013333pt;}
.wsc5{word-spacing:-0.960000pt;}
.ws69{word-spacing:-0.906667pt;}
.ws18{word-spacing:-0.858667pt;}
.ws41{word-spacing:-0.853333pt;}
.ws72{word-spacing:-0.800000pt;}
.ws92{word-spacing:-0.746667pt;}
.ws7e{word-spacing:-0.693333pt;}
.ws7c{word-spacing:-0.640000pt;}
.ws38{word-spacing:-0.533333pt;}
.wsa8{word-spacing:-0.480000pt;}
.ws58{word-spacing:-0.426667pt;}
.ws103{word-spacing:-0.373333pt;}
.wsb1{word-spacing:-0.298667pt;}
.wsc0{word-spacing:-0.266667pt;}
.wsb9{word-spacing:-0.213333pt;}
.ws97{word-spacing:-0.160000pt;}
.ws61{word-spacing:-0.106667pt;}
.ws42{word-spacing:-0.053333pt;}
.ws8{word-spacing:0.000000pt;}
.ws11{word-spacing:0.042667pt;}
.wsd8{word-spacing:0.053333pt;}
.ws8c{word-spacing:0.106667pt;}
.ws12{word-spacing:0.128000pt;}
.wse6{word-spacing:0.160000pt;}
.ws80{word-spacing:0.213333pt;}
.ws2c{word-spacing:0.266667pt;}
.ws29{word-spacing:0.320000pt;}
.wsba{word-spacing:0.373333pt;}
.ws2d{word-spacing:0.426667pt;}
.ws6c{word-spacing:0.466400pt;}
.ws13{word-spacing:0.469333pt;}
.wsc9{word-spacing:0.480000pt;}
.ws16{word-spacing:0.528000pt;}
.ws32{word-spacing:0.533333pt;}
.wsfb{word-spacing:0.586667pt;}
.ws78{word-spacing:0.640000pt;}
.ws73{word-spacing:0.693333pt;}
.ws5f{word-spacing:0.746667pt;}
.ws65{word-spacing:0.800000pt;}
.ws14{word-spacing:0.810667pt;}
.wsaa{word-spacing:0.853333pt;}
.ws40{word-spacing:0.906667pt;}
.ws6a{word-spacing:0.960000pt;}
.ws9c{word-spacing:1.013333pt;}
.ws4a{word-spacing:1.066667pt;}
.wsbf{word-spacing:1.120000pt;}
.ws6e{word-spacing:1.173333pt;}
.ws8b{word-spacing:1.280000pt;}
.ws67{word-spacing:1.333333pt;}
.wsb5{word-spacing:1.386667pt;}
.ws43{word-spacing:1.440000pt;}
.wsb3{word-spacing:1.493333pt;}
.ws22{word-spacing:1.546667pt;}
.ws77{word-spacing:1.600000pt;}
.wsb2{word-spacing:1.653333pt;}
.ws60{word-spacing:1.706667pt;}
.wsdb{word-spacing:1.760000pt;}
.ws8e{word-spacing:1.813333pt;}
.ws4b{word-spacing:1.866667pt;}
.wsa5{word-spacing:1.920000pt;}
.wsa0{word-spacing:1.973333pt;}
.ws46{word-spacing:2.026667pt;}
.wsd3{word-spacing:2.080000pt;}
.ws57{word-spacing:2.133333pt;}
.wsab{word-spacing:2.186667pt;}
.ws7a{word-spacing:2.240000pt;}
.ws8f{word-spacing:2.293333pt;}
.wsd5{word-spacing:2.346667pt;}
.ws48{word-spacing:2.400000pt;}
.ws3c{word-spacing:2.506667pt;}
.ws3a{word-spacing:2.560000pt;}
.ws64{word-spacing:2.613333pt;}
.ws3f{word-spacing:2.666667pt;}
.ws74{word-spacing:2.720000pt;}
.ws2f{word-spacing:2.773333pt;}
.ws7f{word-spacing:2.826667pt;}
.ws9e{word-spacing:2.880000pt;}
.ws2b{word-spacing:2.933333pt;}
.ws31{word-spacing:2.986667pt;}
.wsd7{word-spacing:3.040000pt;}
.wsbb{word-spacing:3.093333pt;}
.ws7b{word-spacing:3.146667pt;}
.ws10{word-spacing:3.200000pt;}
.ws21{word-spacing:3.253333pt;}
.ws25{word-spacing:3.306667pt;}
.ws20{word-spacing:3.360000pt;}
.wse3{word-spacing:3.413333pt;}
.wscf{word-spacing:3.466667pt;}
.ws98{word-spacing:3.520000pt;}
.wsa6{word-spacing:3.573333pt;}
.ws88{word-spacing:3.626667pt;}
.ws34{word-spacing:3.680000pt;}
.ws5d{word-spacing:3.712000pt;}
.wse2{word-spacing:3.733333pt;}
.wsad{word-spacing:3.786667pt;}
.ws5c{word-spacing:3.840000pt;}
.ws5b{word-spacing:3.893333pt;}
.wsf6{word-spacing:3.946667pt;}
.ws37{word-spacing:4.000000pt;}
.ws8d{word-spacing:4.053333pt;}
.wse8{word-spacing:4.106667pt;}
.ws33{word-spacing:4.160000pt;}
.ws71{word-spacing:4.266667pt;}
.ws55{word-spacing:4.320000pt;}
.ws53{word-spacing:4.373333pt;}
.ws82{word-spacing:4.426667pt;}
.ws68{word-spacing:4.480000pt;}
.ws59{word-spacing:4.533333pt;}
.wsea{word-spacing:4.586667pt;}
.ws52{word-spacing:4.640000pt;}
.ws6b{word-spacing:4.693333pt;}
.wsa4{word-spacing:4.746667pt;}
.wsc7{word-spacing:4.800000pt;}
.wsa1{word-spacing:4.853333pt;}
.wsa9{word-spacing:4.906667pt;}
.ws4f{word-spacing:4.960000pt;}
.wsdc{word-spacing:5.013333pt;}
.ws66{word-spacing:5.066667pt;}
.ws8a{word-spacing:5.120000pt;}
.ws86{word-spacing:5.173333pt;}
.wsdf{word-spacing:5.226667pt;}
.wsfc{word-spacing:5.280000pt;}
.wsf4{word-spacing:5.333333pt;}
.wsee{word-spacing:5.386667pt;}
.ws95{word-spacing:5.440000pt;}
.ws51{word-spacing:5.493333pt;}
.ws27{word-spacing:5.546667pt;}
.ws24{word-spacing:5.600000pt;}
.wsf2{word-spacing:5.653333pt;}
.ws81{word-spacing:5.706667pt;}
.wsc4{word-spacing:5.760000pt;}
.ws79{word-spacing:5.813333pt;}
.wsca{word-spacing:5.866667pt;}
.ws6d{word-spacing:6.026667pt;}
.ws23{word-spacing:6.080000pt;}
.wsd6{word-spacing:6.133333pt;}
.ws99{word-spacing:6.186667pt;}
.wsb7{word-spacing:6.240000pt;}
.ws89{word-spacing:6.293333pt;}
.wsd0{word-spacing:6.346667pt;}
.wse4{word-spacing:6.400000pt;}
.ws75{word-spacing:6.506667pt;}
.wse9{word-spacing:6.560000pt;}
.wscb{word-spacing:6.613333pt;}
.wsb4{word-spacing:6.666667pt;}
.ws9d{word-spacing:6.720000pt;}
.wsf8{word-spacing:6.773333pt;}
.ws56{word-spacing:6.826667pt;}
.ws4d{word-spacing:6.933333pt;}
.ws84{word-spacing:6.986667pt;}
.ws106{word-spacing:7.040000pt;}
.ws7d{word-spacing:7.093333pt;}
.ws3e{word-spacing:7.146667pt;}
.wsda{word-spacing:7.200000pt;}
.wsf7{word-spacing:7.253333pt;}
.ws39{word-spacing:7.306667pt;}
.ws104{word-spacing:7.360000pt;}
.wsd1{word-spacing:7.413333pt;}
.ws62{word-spacing:7.466667pt;}
.ws90{word-spacing:7.520000pt;}
.ws15{word-spacing:7.552000pt;}
.ws45{word-spacing:7.626667pt;}
.wsef{word-spacing:7.680000pt;}
.wsc8{word-spacing:7.840000pt;}
.ws87{word-spacing:7.893333pt;}
.ws35{word-spacing:8.000000pt;}
.ws93{word-spacing:8.053333pt;}
.wsdd{word-spacing:8.160000pt;}
.wse7{word-spacing:8.213333pt;}
.wsec{word-spacing:8.320000pt;}
.ws85{word-spacing:8.373333pt;}
.wsc2{word-spacing:8.480000pt;}
.wse1{word-spacing:8.693333pt;}
.wsd4{word-spacing:8.853333pt;}
.ws102{word-spacing:9.066667pt;}
.ws44{word-spacing:9.120000pt;}
.wsde{word-spacing:9.226667pt;}
.wsc6{word-spacing:9.333333pt;}
.ws105{word-spacing:9.386667pt;}
.ws26{word-spacing:9.493333pt;}
.ws83{word-spacing:9.546667pt;}
.ws50{word-spacing:9.706667pt;}
.ws4e{word-spacing:9.813333pt;}
.ws108{word-spacing:9.866667pt;}
.wsfa{word-spacing:9.920000pt;}
.wsf0{word-spacing:10.080000pt;}
.wsc1{word-spacing:10.186667pt;}
.wsb8{word-spacing:10.240000pt;}
.ws47{word-spacing:10.346667pt;}
.wsf3{word-spacing:10.400000pt;}
.wse0{word-spacing:10.453333pt;}
.wsac{word-spacing:10.560000pt;}
.ws76{word-spacing:10.613333pt;}
.ws101{word-spacing:10.880000pt;}
.ws30{word-spacing:10.986667pt;}
.ws9b{word-spacing:11.200000pt;}
.ws2a{word-spacing:11.253333pt;}
.wsf{word-spacing:11.349333pt;}
.wsf1{word-spacing:11.360000pt;}
.wse5{word-spacing:12.160000pt;}
.ws3d{word-spacing:12.213333pt;}
.wseb{word-spacing:12.533333pt;}
.ws10a{word-spacing:13.440000pt;}
.wsfe{word-spacing:14.186667pt;}
.ws6f{word-spacing:14.346667pt;}
.wsc{word-spacing:14.634667pt;}
.wsff{word-spacing:14.986667pt;}
.wsf9{word-spacing:15.786667pt;}
.ws107{word-spacing:16.320000pt;}
.wsfd{word-spacing:16.373333pt;}
.ws9a{word-spacing:16.426667pt;}
.wsb{word-spacing:16.576000pt;}
.wsf5{word-spacing:16.693333pt;}
.ws63{word-spacing:17.760000pt;}
.wsa{word-spacing:20.800000pt;}
.wsb0{word-spacing:44.932267pt;}
._4{margin-left:-44.851200pt;}
._5{margin-left:-32.859733pt;}
._6{margin-left:-30.949312pt;}
._1f{margin-left:-17.333333pt;}
._21{margin-left:-14.074667pt;}
._18{margin-left:-13.066667pt;}
._f{margin-left:-10.956800pt;}
._17{margin-left:-7.306667pt;}
._12{margin-left:-5.904000pt;}
._8{margin-left:-4.885333pt;}
._10{margin-left:-3.165867pt;}
._2{margin-left:-2.129067pt;}
._1{margin-left:-1.216000pt;}
._0{width:0.970667pt;}
._3{width:1.873067pt;}
._a{width:3.125333pt;}
._9{width:4.202667pt;}
._14{width:5.120000pt;}
._e{width:6.085333pt;}
._b{width:7.344000pt;}
._15{width:8.250667pt;}
._16{width:9.648000pt;}
._11{width:10.634667pt;}
._c{width:12.058667pt;}
._1c{width:14.250667pt;}
._1d{width:15.280000pt;}
._20{width:16.394667pt;}
._d{width:20.624000pt;}
._1e{width:22.176000pt;}
._1a{width:43.840000pt;}
._1b{width:78.720000pt;}
._13{width:95.036800pt;}
._7{width:151.245611pt;}
._19{width:339.276800pt;}
.fs6{font-size:31.093333pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:43.530667pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:106.666667pt;}
.fs0{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y215{bottom:50.779200pt;}
.y19f{bottom:51.220400pt;}
.y173{bottom:51.565867pt;}
.y47{bottom:52.050400pt;}
.y15f{bottom:53.015467pt;}
.yab{bottom:54.646133pt;}
.y251{bottom:55.565867pt;}
.y123{bottom:55.712533pt;}
.y1dd{bottom:55.991867pt;}
.y2a6{bottom:57.516533pt;}
.ye7{bottom:57.699200pt;}
.y20b{bottom:59.553200pt;}
.y53{bottom:59.597067pt;}
.y23c{bottom:61.845867pt;}
.y8f{bottom:61.992533pt;}
.y135{bottom:62.696133pt;}
.y214{bottom:66.779200pt;}
.y172{bottom:67.565867pt;}
.y46{bottom:68.050400pt;}
.y15e{bottom:69.015467pt;}
.y19e{bottom:70.687067pt;}
.yaa{bottom:70.912800pt;}
.y250{bottom:71.565867pt;}
.y122{bottom:71.712533pt;}
.y1dc{bottom:71.991867pt;}
.y2a5{bottom:73.516533pt;}
.ye6{bottom:73.565867pt;}
.y20a{bottom:75.553200pt;}
.y52{bottom:75.597067pt;}
.y23b{bottom:77.979200pt;}
.y8e{bottom:77.992533pt;}
.y134{bottom:82.162800pt;}
.y213{bottom:82.779200pt;}
.y171{bottom:83.565867pt;}
.y45{bottom:84.050400pt;}
.y19d{bottom:86.687067pt;}
.ya9{bottom:87.179467pt;}
.y24f{bottom:87.565867pt;}
.y121{bottom:87.712533pt;}
.y1db{bottom:87.991867pt;}
.ye5{bottom:89.432533pt;}
.y2a4{bottom:89.516533pt;}
.y209{bottom:91.553200pt;}
.y51{bottom:91.597067pt;}
.y15d{bottom:91.682133pt;}
.y8d{bottom:93.992533pt;}
.y23a{bottom:94.112533pt;}
.y133{bottom:98.162800pt;}
.y212{bottom:98.779200pt;}
.y170{bottom:99.565867pt;}
.y44{bottom:100.050400pt;}
.ya8{bottom:103.446133pt;}
.y24e{bottom:103.565867pt;}
.y120{bottom:103.712533pt;}
.y1da{bottom:103.991867pt;}
.ye4{bottom:105.432533pt;}
.y2a3{bottom:105.516533pt;}
.y208{bottom:107.553200pt;}
.y50{bottom:107.597067pt;}
.y8c{bottom:109.992533pt;}
.y239{bottom:110.245867pt;}
.y211{bottom:114.779200pt;}
.y16f{bottom:115.565867pt;}
.y43{bottom:116.050400pt;}
.ya7{bottom:119.446133pt;}
.y24d{bottom:119.565867pt;}
.y11f{bottom:119.712533pt;}
.y1d9{bottom:119.991867pt;}
.ye3{bottom:121.432533pt;}
.y207{bottom:123.553200pt;}
.y4f{bottom:123.597067pt;}
.y8b{bottom:125.992533pt;}
.y238{bottom:126.379200pt;}
.y15c{bottom:128.575467pt;}
.y210{bottom:130.779200pt;}
.y16e{bottom:131.565867pt;}
.y42{bottom:132.050400pt;}
.ya6{bottom:135.446133pt;}
.y24c{bottom:135.565867pt;}
.y11e{bottom:135.712533pt;}
.y1d8{bottom:135.991867pt;}
.ye2{bottom:137.432533pt;}
.y2a2{bottom:137.516533pt;}
.y206{bottom:139.553200pt;}
.y4e{bottom:139.597067pt;}
.y8a{bottom:141.992533pt;}
.y237{bottom:142.512533pt;}
.y15b{bottom:144.575467pt;}
.y20f{bottom:146.779200pt;}
.y16d{bottom:147.565867pt;}
.y41{bottom:148.050400pt;}
.ya5{bottom:151.446133pt;}
.y24b{bottom:151.565867pt;}
.y287{bottom:151.591867pt;}
.y11d{bottom:151.712533pt;}
.y1d7{bottom:151.991867pt;}
.ye1{bottom:153.432533pt;}
.y2a1{bottom:153.516533pt;}
.y205{bottom:155.553200pt;}
.y4d{bottom:155.597067pt;}
.y236{bottom:158.645867pt;}
.y20e{bottom:162.779200pt;}
.y16c{bottom:163.565867pt;}
.y40{bottom:164.050400pt;}
.y89{bottom:165.552533pt;}
.ya4{bottom:167.446133pt;}
.y24a{bottom:167.565867pt;}
.y286{bottom:167.591867pt;}
.y11c{bottom:167.712533pt;}
.y1d6{bottom:167.858533pt;}
.ye0{bottom:169.432533pt;}
.y2a0{bottom:169.516533pt;}
.y204{bottom:171.553200pt;}
.y4c{bottom:171.597067pt;}
.y15a{bottom:173.802133pt;}
.y235{bottom:174.779200pt;}
.y20d{bottom:178.779200pt;}
.y16b{bottom:179.565867pt;}
.y3f{bottom:180.050400pt;}
.ya3{bottom:183.446133pt;}
.y249{bottom:183.565867pt;}
.y285{bottom:183.591867pt;}
.y11b{bottom:183.712533pt;}
.y1d5{bottom:183.725200pt;}
.y29f{bottom:185.517067pt;}
.ydf{bottom:185.699200pt;}
.y203{bottom:187.553200pt;}
.y4b{bottom:187.597067pt;}
.y159{bottom:189.802133pt;}
.y234{bottom:190.912533pt;}
.y88{bottom:194.779200pt;}
.y16a{bottom:195.565867pt;}
.y3e{bottom:196.050400pt;}
.ya2{bottom:199.446133pt;}
.y248{bottom:199.565867pt;}
.y1d4{bottom:199.591867pt;}
.y11a{bottom:199.712533pt;}
.y29e{bottom:201.517067pt;}
.yde{bottom:201.965867pt;}
.y202{bottom:203.553200pt;}
.y4a{bottom:203.597067pt;}
.y158{bottom:205.802133pt;}
.y233{bottom:207.045867pt;}
.y87{bottom:210.779200pt;}
.y169{bottom:211.565867pt;}
.y3d{bottom:212.050400pt;}
.ya1{bottom:215.446133pt;}
.y1d3{bottom:215.458533pt;}
.y247{bottom:215.565867pt;}
.y284{bottom:215.591867pt;}
.y119{bottom:215.712533pt;}
.y29d{bottom:217.517067pt;}
.ydd{bottom:218.232533pt;}
.y201{bottom:219.553200pt;}
.y49{bottom:219.597067pt;}
.y157{bottom:221.802133pt;}
.y232{bottom:223.179200pt;}
.y86{bottom:226.779200pt;}
.y1d2{bottom:231.325200pt;}
.ya0{bottom:231.446133pt;}
.y246{bottom:231.565867pt;}
.y283{bottom:231.591867pt;}
.y118{bottom:231.712533pt;}
.y29c{bottom:233.517067pt;}
.y168{bottom:234.232533pt;}
.ydc{bottom:234.499200pt;}
.y3c{bottom:235.426000pt;}
.y200{bottom:235.553200pt;}
.y48{bottom:235.597067pt;}
.y156{bottom:237.802133pt;}
.y231{bottom:239.312533pt;}
.y85{bottom:242.779200pt;}
.y1d1{bottom:247.191867pt;}
.y9f{bottom:247.446133pt;}
.y245{bottom:247.565867pt;}
.y282{bottom:247.591867pt;}
.y117{bottom:247.712533pt;}
.y29b{bottom:249.517067pt;}
.ydb{bottom:250.765867pt;}
.y1ff{bottom:251.553200pt;}
.y155{bottom:253.802133pt;}
.y230{bottom:255.445867pt;}
.y84{bottom:258.779200pt;}
.y167{bottom:261.565867pt;}
.y1d0{bottom:263.058533pt;}
.y9e{bottom:263.446133pt;}
.y244{bottom:263.565867pt;}
.y281{bottom:263.591867pt;}
.y116{bottom:263.712533pt;}
.y29a{bottom:265.517067pt;}
.yda{bottom:267.032533pt;}
.y1fe{bottom:267.553200pt;}
.y154{bottom:269.802133pt;}
.y22f{bottom:271.579200pt;}
.y83{bottom:274.779200pt;}
.y166{bottom:277.565867pt;}
.y3b{bottom:278.756667pt;}
.y1cf{bottom:278.925200pt;}
.y9d{bottom:279.446133pt;}
.y243{bottom:279.565867pt;}
.y280{bottom:279.591867pt;}
.y115{bottom:279.712533pt;}
.yd9{bottom:283.299200pt;}
.y1fd{bottom:283.553200pt;}
.y153{bottom:285.802133pt;}
.y22e{bottom:287.712533pt;}
.y299{bottom:289.077067pt;}
.y82{bottom:290.779200pt;}
.y3a{bottom:292.094000pt;}
.y165{bottom:293.565867pt;}
.y1ce{bottom:294.791867pt;}
.y9c{bottom:295.446133pt;}
.y242{bottom:295.565867pt;}
.y27f{bottom:295.591867pt;}
.y114{bottom:295.712533pt;}
.y1fc{bottom:299.553200pt;}
.yd8{bottom:299.565867pt;}
.y152{bottom:301.802133pt;}
.y22d{bottom:303.845867pt;}
.y39{bottom:305.431333pt;}
.y81{bottom:306.779200pt;}
.y164{bottom:309.565867pt;}
.y1cd{bottom:310.658533pt;}
.y9b{bottom:311.446133pt;}
.y241{bottom:311.565867pt;}
.y27e{bottom:311.591867pt;}
.y113{bottom:311.712533pt;}
.y1fb{bottom:315.553200pt;}
.yd7{bottom:315.832533pt;}
.y151{bottom:317.802133pt;}
.y298{bottom:318.303733pt;}
.y38{bottom:318.768667pt;}
.y22c{bottom:319.979200pt;}
.y80{bottom:322.779200pt;}
.y24{bottom:324.186000pt;}
.y163{bottom:325.565867pt;}
.y1cc{bottom:326.525200pt;}
.y9a{bottom:327.446133pt;}
.y240{bottom:327.565867pt;}
.y27d{bottom:327.591867pt;}
.y112{bottom:327.712533pt;}
.y1fa{bottom:331.553200pt;}
.yd6{bottom:332.099200pt;}
.y37{bottom:332.106000pt;}
.y150{bottom:333.802133pt;}
.y297{bottom:334.303733pt;}
.y22b{bottom:336.112533pt;}
.y23{bottom:337.519333pt;}
.y7f{bottom:338.779200pt;}
.y162{bottom:341.565867pt;}
.y1cb{bottom:342.391867pt;}
.y99{bottom:343.446133pt;}
.y23f{bottom:343.565867pt;}
.y27c{bottom:343.591867pt;}
.y111{bottom:343.712533pt;}
.y36{bottom:345.443333pt;}
.y1f9{bottom:347.553200pt;}
.yd5{bottom:348.365867pt;}
.y14f{bottom:349.802133pt;}
.y19c{bottom:350.183067pt;}
.y296{bottom:350.303733pt;}
.y22a{bottom:352.245867pt;}
.y7e{bottom:354.779200pt;}
.y161{bottom:357.565867pt;}
.y1ca{bottom:358.258533pt;}
.y35{bottom:358.754000pt;}
.y98{bottom:359.446133pt;}
.y23e{bottom:359.565867pt;}
.y27b{bottom:359.591867pt;}
.y110{bottom:359.712533pt;}
.y1f8{bottom:363.553200pt;}
.y22{bottom:364.284667pt;}
.yd4{bottom:364.632533pt;}
.y14e{bottom:365.802133pt;}
.y19b{bottom:366.183067pt;}
.y295{bottom:366.303733pt;}
.y229{bottom:368.379200pt;}
.y7d{bottom:370.779200pt;}
.y1c9{bottom:374.125200pt;}
.y97{bottom:375.446133pt;}
.y23d{bottom:375.565867pt;}
.y27a{bottom:375.591867pt;}
.y10f{bottom:375.712533pt;}
.y21{bottom:377.618000pt;}
.y160{bottom:380.232533pt;}
.yd3{bottom:380.899200pt;}
.y14d{bottom:381.802133pt;}
.y19a{bottom:382.183067pt;}
.y294{bottom:382.303733pt;}
.y228{bottom:384.512533pt;}
.y7c{bottom:386.779200pt;}
.y34{bottom:387.248667pt;}
.y1c8{bottom:389.991867pt;}
.y20{bottom:390.951333pt;}
.y96{bottom:391.446133pt;}
.y132{bottom:391.565867pt;}
.y279{bottom:391.591867pt;}
.y1f7{bottom:392.886533pt;}
.yd2{bottom:397.165867pt;}
.y14c{bottom:397.802133pt;}
.y199{bottom:398.183067pt;}
.y293{bottom:398.303733pt;}
.y10e{bottom:399.272533pt;}
.y33{bottom:400.591333pt;}
.y227{bottom:400.645867pt;}
.y7b{bottom:402.779200pt;}
.y1f{bottom:404.284667pt;}
.y1c7{bottom:405.858533pt;}
.y95{bottom:407.446133pt;}
.y131{bottom:407.565867pt;}
.y278{bottom:407.591867pt;}
.y1f6{bottom:412.353200pt;}
.yd1{bottom:413.432533pt;}
.y14b{bottom:413.802133pt;}
.y32{bottom:413.934000pt;}
.y198{bottom:414.183067pt;}
.y292{bottom:414.303733pt;}
.y226{bottom:416.779200pt;}
.y1e{bottom:417.618000pt;}
.y7a{bottom:418.779200pt;}
.y1c6{bottom:421.725200pt;}
.y94{bottom:423.446133pt;}
.y130{bottom:423.565867pt;}
.y277{bottom:423.591867pt;}
.y31{bottom:427.250000pt;}
.y1f5{bottom:428.353200pt;}
.y10d{bottom:428.499200pt;}
.yd0{bottom:429.699200pt;}
.y14a{bottom:429.802133pt;}
.y291{bottom:430.303733pt;}
.y1d{bottom:430.951333pt;}
.y225{bottom:432.912533pt;}
.y79{bottom:434.779200pt;}
.y1c5{bottom:437.591867pt;}
.y93{bottom:439.446133pt;}
.y12f{bottom:439.565867pt;}
.y276{bottom:439.591867pt;}
.y197{bottom:443.506400pt;}
.y1c{bottom:444.284667pt;}
.y10c{bottom:444.499200pt;}
.y149{bottom:445.802133pt;}
.ycf{bottom:445.965867pt;}
.y290{bottom:446.303733pt;}
.y224{bottom:449.045867pt;}
.y78{bottom:450.779200pt;}
.y1c4{bottom:453.458533pt;}
.y12e{bottom:455.565867pt;}
.y275{bottom:455.591867pt;}
.y30{bottom:455.646000pt;}
.y1b{bottom:457.618000pt;}
.y10b{bottom:460.365867pt;}
.y148{bottom:461.802133pt;}
.yce{bottom:462.232533pt;}
.y28f{bottom:462.303733pt;}
.y223{bottom:465.179200pt;}
.y77{bottom:466.779200pt;}
.y92{bottom:468.779467pt;}
.y1c3{bottom:469.325200pt;}
.y196{bottom:470.034400pt;}
.y1a{bottom:470.951333pt;}
.y12d{bottom:471.565867pt;}
.y274{bottom:471.591867pt;}
.y10a{bottom:476.232533pt;}
.y147{bottom:477.802133pt;}
.ycd{bottom:478.499200pt;}
.y222{bottom:481.312533pt;}
.y91{bottom:481.579467pt;}
.y76{bottom:482.779200pt;}
.y195{bottom:482.834400pt;}
.y2f{bottom:483.659333pt;}
.y1c2{bottom:485.191867pt;}
.y28e{bottom:485.863733pt;}
.y12c{bottom:487.565867pt;}
.y273{bottom:487.591867pt;}
.y20c{bottom:490.339200pt;}
.y109{bottom:492.099200pt;}
.y146{bottom:493.802133pt;}
.ycc{bottom:494.765867pt;}
.y2e{bottom:496.996667pt;}
.y221{bottom:497.445867pt;}
.y75{bottom:498.779200pt;}
.y19{bottom:499.300667pt;}
.y90{bottom:501.046133pt;}
.y1c1{bottom:501.058533pt;}
.y12b{bottom:503.565867pt;}
.y272{bottom:503.591867pt;}
.y194{bottom:504.050400pt;}
.y216{bottom:506.339200pt;}
.y108{bottom:507.965867pt;}
.y145{bottom:509.802133pt;}
.y2d{bottom:510.334000pt;}
.y193{bottom:510.450400pt;}
.ycb{bottom:511.032533pt;}
.y220{bottom:513.579200pt;}
.y74{bottom:514.779200pt;}
.y28d{bottom:515.090400pt;}
.y1c0{bottom:516.925200pt;}
.y12a{bottom:519.565867pt;}
.y271{bottom:519.591867pt;}
.y2c{bottom:523.671333pt;}
.y107{bottom:523.832533pt;}
.y18{bottom:525.532667pt;}
.y144{bottom:525.802133pt;}
.yca{bottom:527.299200pt;}
.y190{bottom:527.463733pt;}
.y21f{bottom:529.712533pt;}
.y73{bottom:530.779200pt;}
.y28c{bottom:531.090400pt;}
.y1bf{bottom:532.791867pt;}
.y129{bottom:535.565867pt;}
.y270{bottom:535.591867pt;}
.y2b{bottom:537.008667pt;}
.y192{bottom:538.066400pt;}
.y17{bottom:538.866000pt;}
.y106{bottom:539.699200pt;}
.y143{bottom:541.802133pt;}
.yc9{bottom:543.565867pt;}
.y191{bottom:544.466400pt;}
.y21e{bottom:545.845867pt;}
.y72{bottom:546.779200pt;}
.y28b{bottom:547.090400pt;}
.y1be{bottom:548.658533pt;}
.y2a{bottom:550.346000pt;}
.y128{bottom:551.565867pt;}
.y26f{bottom:551.591867pt;}
.y16{bottom:552.199333pt;}
.y105{bottom:555.565867pt;}
.y142{bottom:557.802133pt;}
.yc8{bottom:559.832533pt;}
.y21d{bottom:561.979200pt;}
.y71{bottom:562.779200pt;}
.y29{bottom:563.656667pt;}
.y1bd{bottom:564.525200pt;}
.y15{bottom:565.532667pt;}
.y127{bottom:567.565867pt;}
.y26e{bottom:567.591867pt;}
.y28a{bottom:570.650400pt;}
.y104{bottom:571.432533pt;}
.y18f{bottom:572.818400pt;}
.y141{bottom:573.802133pt;}
.yc7{bottom:576.099200pt;}
.y21c{bottom:578.112533pt;}
.y70{bottom:578.779200pt;}
.y14{bottom:578.866000pt;}
.y1bc{bottom:580.391867pt;}
.y126{bottom:583.565867pt;}
.y26d{bottom:583.591867pt;}
.y103{bottom:587.299200pt;}
.y140{bottom:589.802133pt;}
.y28{bottom:592.151333pt;}
.y13{bottom:592.199333pt;}
.yc6{bottom:592.365867pt;}
.y21b{bottom:594.245867pt;}
.y18e{bottom:594.759733pt;}
.y1bb{bottom:596.258533pt;}
.y125{bottom:599.565867pt;}
.y26c{bottom:599.591867pt;}
.y18d{bottom:601.159733pt;}
.y6f{bottom:602.339200pt;}
.y102{bottom:603.165867pt;}
.y27{bottom:605.494000pt;}
.y12{bottom:605.532667pt;}
.y13f{bottom:605.802133pt;}
.yc5{bottom:608.632533pt;}
.y21a{bottom:610.379200pt;}
.y1ba{bottom:612.125200pt;}
.y289{bottom:613.212000pt;}
.y124{bottom:615.565867pt;}
.y26b{bottom:615.591867pt;}
.y26{bottom:618.836667pt;}
.y11{bottom:618.866000pt;}
.y101{bottom:619.032533pt;}
.y13e{bottom:621.802133pt;}
.yc4{bottom:624.899200pt;}
.y219{bottom:626.512533pt;}
.y1b9{bottom:627.991867pt;}
.y18c{bottom:628.775733pt;}
.y6e{bottom:631.565867pt;}
.y26a{bottom:631.591867pt;}
.y25{bottom:632.152667pt;}
.y10{bottom:632.198667pt;}
.y100{bottom:634.899200pt;}
.y18b{bottom:635.175733pt;}
.y13d{bottom:637.802133pt;}
.yc3{bottom:641.165867pt;}
.y218{bottom:642.645867pt;}
.y1b8{bottom:643.858533pt;}
.y186{bottom:644.637067pt;}
.y6d{bottom:647.565867pt;}
.y269{bottom:647.591867pt;}
.yff{bottom:650.765867pt;}
.y13c{bottom:653.802133pt;}
.yc2{bottom:657.432533pt;}
.y1b7{bottom:659.725200pt;}
.yf{bottom:660.548000pt;}
.y18a{bottom:661.629067pt;}
.y6c{bottom:663.565867pt;}
.y268{bottom:663.591867pt;}
.y217{bottom:666.339200pt;}
.yfe{bottom:666.632533pt;}
.y13b{bottom:669.802133pt;}
.yc1{bottom:673.699200pt;}
.y1b6{bottom:675.591867pt;}
.y1f4{bottom:679.565200pt;}
.y6b{bottom:679.565867pt;}
.y267{bottom:679.591867pt;}
.y189{bottom:680.530400pt;}
.yfd{bottom:682.499200pt;}
.y13a{bottom:685.802133pt;}
.yc{bottom:689.942533pt;}
.yc0{bottom:689.965867pt;}
.y1b5{bottom:691.458533pt;}
.y1f3{bottom:695.565200pt;}
.y6a{bottom:695.565867pt;}
.y266{bottom:695.591867pt;}
.yfc{bottom:698.365867pt;}
.y188{bottom:699.431733pt;}
.y139{bottom:701.802133pt;}
.ybf{bottom:706.232533pt;}
.y1b4{bottom:707.325200pt;}
.yb{bottom:710.382533pt;}
.y1f2{bottom:711.565200pt;}
.y69{bottom:711.565867pt;}
.y265{bottom:711.591867pt;}
.yfb{bottom:714.232533pt;}
.y187{bottom:718.333067pt;}
.ybe{bottom:722.499200pt;}
.y1b3{bottom:723.191867pt;}
.y1f1{bottom:727.565200pt;}
.y68{bottom:727.565867pt;}
.y264{bottom:727.591867pt;}
.yfa{bottom:730.099200pt;}
.y138{bottom:731.135467pt;}
.ya{bottom:735.275867pt;}
.y185{bottom:737.234400pt;}
.ybd{bottom:738.765867pt;}
.y1b2{bottom:739.058533pt;}
.y1f0{bottom:743.565200pt;}
.y67{bottom:743.565867pt;}
.y263{bottom:743.591867pt;}
.yf9{bottom:745.965867pt;}
.y137{bottom:750.602000pt;}
.y1b1{bottom:754.925200pt;}
.ybc{bottom:755.032533pt;}
.y9{bottom:757.681200pt;}
.y1ef{bottom:759.565200pt;}
.y66{bottom:759.565867pt;}
.y262{bottom:759.591867pt;}
.yf8{bottom:761.832533pt;}
.y184{bottom:762.245867pt;}
.y136{bottom:766.602000pt;}
.y1b0{bottom:770.791867pt;}
.ybb{bottom:771.299200pt;}
.y1ee{bottom:775.565200pt;}
.y65{bottom:775.565867pt;}
.y261{bottom:775.591867pt;}
.yf7{bottom:777.699200pt;}
.y1af{bottom:786.658533pt;}
.yba{bottom:787.565867pt;}
.y1ed{bottom:791.565200pt;}
.y64{bottom:791.565867pt;}
.y183{bottom:791.579200pt;}
.y260{bottom:791.591867pt;}
.y8{bottom:793.409200pt;}
.yf6{bottom:793.565867pt;}
.y1ae{bottom:802.525200pt;}
.yb9{bottom:803.832533pt;}
.y1ec{bottom:807.565200pt;}
.y63{bottom:807.565867pt;}
.y182{bottom:807.579200pt;}
.y25f{bottom:807.591867pt;}
.yf5{bottom:809.432533pt;}
.y7{bottom:815.809200pt;}
.y1ad{bottom:818.391867pt;}
.yb8{bottom:820.099200pt;}
.y1eb{bottom:823.565200pt;}
.y62{bottom:823.565867pt;}
.y181{bottom:823.579200pt;}
.y25e{bottom:823.591867pt;}
.yf4{bottom:825.299200pt;}
.y1ac{bottom:834.258533pt;}
.yb7{bottom:836.365867pt;}
.y1ea{bottom:839.565200pt;}
.y61{bottom:839.565867pt;}
.y180{bottom:839.579200pt;}
.y25d{bottom:839.591867pt;}
.yf3{bottom:841.165867pt;}
.y6{bottom:844.875867pt;}
.y1ab{bottom:850.125200pt;}
.yb6{bottom:852.632533pt;}
.y1e9{bottom:855.565200pt;}
.y60{bottom:855.565867pt;}
.y17f{bottom:855.579200pt;}
.y25c{bottom:855.591867pt;}
.yf2{bottom:857.032533pt;}
.y288{bottom:858.339200pt;}
.y1aa{bottom:865.991867pt;}
.yb5{bottom:868.899200pt;}
.y1e8{bottom:871.565200pt;}
.y5f{bottom:871.565867pt;}
.y17e{bottom:871.579200pt;}
.y25b{bottom:871.591867pt;}
.yf1{bottom:872.899200pt;}
.y5{bottom:874.209200pt;}
.y1a9{bottom:881.858533pt;}
.yb4{bottom:885.165867pt;}
.y1e7{bottom:887.565200pt;}
.y5e{bottom:887.565867pt;}
.y17d{bottom:887.579200pt;}
.y25a{bottom:887.591867pt;}
.yf0{bottom:888.765867pt;}
.y1a8{bottom:897.725200pt;}
.yb3{bottom:901.432533pt;}
.y4{bottom:903.542533pt;}
.y1e6{bottom:903.565200pt;}
.y5d{bottom:903.565867pt;}
.y17c{bottom:903.579200pt;}
.y259{bottom:903.591867pt;}
.yef{bottom:904.632533pt;}
.y1a7{bottom:913.591867pt;}
.yb2{bottom:917.699200pt;}
.y1e5{bottom:919.565200pt;}
.y5c{bottom:919.565867pt;}
.y17b{bottom:919.579200pt;}
.y258{bottom:919.591867pt;}
.yee{bottom:920.499200pt;}
.y1a6{bottom:929.458533pt;}
.yb1{bottom:933.965867pt;}
.y1e4{bottom:935.565200pt;}
.y5b{bottom:935.565867pt;}
.y17a{bottom:935.579200pt;}
.y257{bottom:935.591867pt;}
.yed{bottom:936.365867pt;}
.y1a5{bottom:945.325200pt;}
.yd{bottom:946.276667pt;}
.yb0{bottom:950.232533pt;}
.y1e3{bottom:951.565200pt;}
.y5a{bottom:951.565867pt;}
.y179{bottom:951.579200pt;}
.y256{bottom:951.591867pt;}
.yec{bottom:952.232533pt;}
.y1a4{bottom:961.191867pt;}
.yaf{bottom:966.499200pt;}
.y1e2{bottom:967.565200pt;}
.y59{bottom:967.565867pt;}
.y178{bottom:967.579200pt;}
.y255{bottom:967.591867pt;}
.yeb{bottom:968.099200pt;}
.y2{bottom:973.212133pt;}
.y1a3{bottom:977.058533pt;}
.yae{bottom:982.765867pt;}
.y1e1{bottom:983.565200pt;}
.y58{bottom:983.565867pt;}
.y177{bottom:983.579200pt;}
.y254{bottom:983.591867pt;}
.yea{bottom:983.965867pt;}
.y1a2{bottom:992.925200pt;}
.yad{bottom:999.032533pt;}
.y1e0{bottom:999.565200pt;}
.y57{bottom:999.565867pt;}
.y176{bottom:999.579200pt;}
.y253{bottom:999.591867pt;}
.ye9{bottom:999.832533pt;}
.y1a1{bottom:1008.925200pt;}
.y1{bottom:1013.992667pt;}
.yac{bottom:1015.299200pt;}
.y1df{bottom:1015.565200pt;}
.y56{bottom:1015.565867pt;}
.y175{bottom:1015.579200pt;}
.y252{bottom:1015.591867pt;}
.ye8{bottom:1015.699200pt;}
.y1de{bottom:1031.565200pt;}
.y55{bottom:1031.565867pt;}
.y174{bottom:1031.579200pt;}
.y1a0{bottom:1031.591867pt;}
.ye{bottom:1060.162533pt;}
.y3{bottom:1062.101867pt;}
.y54{bottom:1063.832667pt;}
.h9{height:22.636797pt;}
.h15{height:29.994667pt;}
.h4{height:30.378667pt;}
.h11{height:30.958333pt;}
.hb{height:31.062500pt;}
.he{height:31.065167pt;}
.hf{height:38.604167pt;}
.h14{height:38.697917pt;}
.h12{height:38.750000pt;}
.ha{height:38.828125pt;}
.hd{height:40.270833pt;}
.h10{height:40.273500pt;}
.h18{height:40.399464pt;}
.h3{height:45.568000pt;}
.hc{height:46.593750pt;}
.h19{height:48.253075pt;}
.h13{height:48.255208pt;}
.h6{height:52.266667pt;}
.h7{height:55.314133pt;}
.h8{height:55.335467pt;}
.h16{height:55.978667pt;}
.h5{height:74.666667pt;}
.h17{height:81.578667pt;}
.h2{height:97.066667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:48.000000pt;}
.xa{left:64.089200pt;}
.x6{left:182.945333pt;}
.x1{left:188.828133pt;}
.x2{left:258.051200pt;}
.x7{left:272.089333pt;}
.x8{left:401.539867pt;}
.xc{left:409.929200pt;}
.xe{left:414.752533pt;}
.xd{left:416.299200pt;}
.xb{left:425.929200pt;}
.xf{left:480.747200pt;}
.x5{left:528.238533pt;}
.x10{left:543.104533pt;}
.x9{left:569.113200pt;}
.x3{left:585.116400pt;}
}




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