
    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_945cad8cc5671855e58308f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.071000;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_cc4c00c256a5d3b11a21ce68.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933000;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_5fb470f4dc82aad0511c5c1c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.027000;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_fe7b3451a838c443fb8fd8de.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9813630f3aaff01550ba33a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.071000;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_9bcf023aaf29b38941d9b66a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.996000;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_3426ad645ae0c6321b87dd65.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921875;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_d665820d6207db6cfe25d9cf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.946000px;}
.v1{vertical-align:19.776000px;}
.v3{vertical-align:27.312000px;}
.v2{vertical-align:31.482000px;}
.ls11{letter-spacing:-1.200000px;}
.ls4{letter-spacing:-1.080000px;}
.ls2{letter-spacing:-0.840000px;}
.lsa{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.420000px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.004800px;}
.ls12{letter-spacing:0.005400px;}
.lsf{letter-spacing:0.016200px;}
.ls9{letter-spacing:0.060000px;}
.ls18{letter-spacing:0.162000px;}
.lsd{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.240000px;}
.ls1b{letter-spacing:0.270000px;}
.ls19{letter-spacing:0.378000px;}
.ls10{letter-spacing:0.420000px;}
.ls3{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.600000px;}
.lse{letter-spacing:0.900000px;}
.ls8{letter-spacing:2.220000px;}
.ls1a{letter-spacing:2.754000px;}
.ls7{letter-spacing:3.660000px;}
.ls1c{letter-spacing:4.266000px;}
.ls13{letter-spacing:9.660000px;}
.ls17{letter-spacing:9.840000px;}
.ls15{letter-spacing:97.968000px;}
.ls5{letter-spacing:400.717200px;}
.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;}
}
.wsb7{word-spacing:-113.328000px;}
.wsbe{word-spacing:-60.240000px;}
.wsa7{word-spacing:-60.060000px;}
.ws95{word-spacing:-60.000000px;}
.wsa6{word-spacing:-59.400000px;}
.wsa4{word-spacing:-50.760000px;}
.ws0{word-spacing:-19.200000px;}
.ws4e{word-spacing:-17.280000px;}
.ws1{word-spacing:-13.440000px;}
.ws4f{word-spacing:-12.096000px;}
.ws96{word-spacing:-11.136000px;}
.wsc7{word-spacing:-10.022400px;}
.ws8f{word-spacing:-4.800000px;}
.wsa2{word-spacing:-4.440000px;}
.ws68{word-spacing:-4.320000px;}
.wsae{word-spacing:-4.260000px;}
.wsa9{word-spacing:-4.080000px;}
.ws1b{word-spacing:-3.834000px;}
.ws13{word-spacing:-3.780000px;}
.ws65{word-spacing:-3.720000px;}
.wsf0{word-spacing:-3.672000px;}
.ws7a{word-spacing:-3.540000px;}
.ws17{word-spacing:-3.510000px;}
.ws85{word-spacing:-3.420000px;}
.ws89{word-spacing:-3.360000px;}
.ws55{word-spacing:-3.300000px;}
.ws3b{word-spacing:-3.240000px;}
.ws67{word-spacing:-3.180000px;}
.wsa8{word-spacing:-3.120000px;}
.wsa1{word-spacing:-3.060000px;}
.ws3{word-spacing:-3.000000px;}
.wsef{word-spacing:-2.970000px;}
.ws7f{word-spacing:-2.940000px;}
.ws6e{word-spacing:-2.880000px;}
.ws28{word-spacing:-2.760000px;}
.ws9d{word-spacing:-2.700000px;}
.wsd7{word-spacing:-2.646000px;}
.ws58{word-spacing:-2.640000px;}
.ws76{word-spacing:-2.580000px;}
.wse7{word-spacing:-2.538000px;}
.ws29{word-spacing:-2.520000px;}
.ws59{word-spacing:-2.460000px;}
.wse0{word-spacing:-2.376000px;}
.wsca{word-spacing:-2.340000px;}
.wsd8{word-spacing:-2.214000px;}
.ws93{word-spacing:-2.160000px;}
.wsf2{word-spacing:-2.106000px;}
.ws38{word-spacing:-2.100000px;}
.wse8{word-spacing:-2.052000px;}
.wse2{word-spacing:-1.998000px;}
.ws64{word-spacing:-1.920000px;}
.ws4{word-spacing:-1.860000px;}
.ws39{word-spacing:-1.800000px;}
.wsaf{word-spacing:-1.740000px;}
.wsc0{word-spacing:-1.680000px;}
.ws2c{word-spacing:-1.620000px;}
.ws12{word-spacing:-1.512000px;}
.ws3f{word-spacing:-1.500000px;}
.ws10{word-spacing:-1.458000px;}
.ws8e{word-spacing:-1.440000px;}
.ws7d{word-spacing:-1.380000px;}
.ws9{word-spacing:-1.296000px;}
.ws3e{word-spacing:-1.260000px;}
.ws8{word-spacing:-1.242000px;}
.wsab{word-spacing:-1.200000px;}
.ws15{word-spacing:-1.188000px;}
.ws74{word-spacing:-1.140000px;}
.ws47{word-spacing:-1.080000px;}
.wse1{word-spacing:-0.972000px;}
.ws77{word-spacing:-0.960000px;}
.ws42{word-spacing:-0.900000px;}
.wsf{word-spacing:-0.864000px;}
.wsbf{word-spacing:-0.840000px;}
.wsea{word-spacing:-0.810000px;}
.wscc{word-spacing:-0.720000px;}
.wseb{word-spacing:-0.702000px;}
.wsee{word-spacing:-0.648000px;}
.ws36{word-spacing:-0.600000px;}
.ws78{word-spacing:-0.540000px;}
.ws83{word-spacing:-0.480000px;}
.wsc8{word-spacing:-0.420000px;}
.wsdc{word-spacing:-0.378000px;}
.wsce{word-spacing:-0.360000px;}
.wsf5{word-spacing:-0.270000px;}
.ws1a{word-spacing:-0.216000px;}
.ws7e{word-spacing:-0.120000px;}
.ws73{word-spacing:-0.060000px;}
.wsf4{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.wsb4{word-spacing:0.060000px;}
.ws16{word-spacing:0.216000px;}
.ws45{word-spacing:0.240000px;}
.wse9{word-spacing:0.270000px;}
.ws56{word-spacing:0.300000px;}
.ws18{word-spacing:0.324000px;}
.ws8a{word-spacing:0.360000px;}
.ws6f{word-spacing:0.480000px;}
.wsd3{word-spacing:0.486000px;}
.wsc4{word-spacing:0.540000px;}
.wsb0{word-spacing:0.600000px;}
.wsd6{word-spacing:0.648000px;}
.ws4b{word-spacing:0.660000px;}
.ws19{word-spacing:0.702000px;}
.ws4d{word-spacing:0.720000px;}
.wsac{word-spacing:0.780000px;}
.ws34{word-spacing:0.840000px;}
.ws79{word-spacing:0.900000px;}
.wse5{word-spacing:0.972000px;}
.ws84{word-spacing:1.020000px;}
.ws49{word-spacing:1.080000px;}
.ws62{word-spacing:1.140000px;}
.ws82{word-spacing:1.200000px;}
.ws1d{word-spacing:1.296000px;}
.ws11{word-spacing:1.350000px;}
.ws6d{word-spacing:1.380000px;}
.ws35{word-spacing:1.440000px;}
.wsde{word-spacing:1.458000px;}
.wsbd{word-spacing:1.500000px;}
.wsa{word-spacing:1.512000px;}
.ws92{word-spacing:1.560000px;}
.ws1c{word-spacing:1.566000px;}
.wsb{word-spacing:1.620000px;}
.wsdd{word-spacing:1.674000px;}
.ws75{word-spacing:1.740000px;}
.ws61{word-spacing:1.800000px;}
.wsec{word-spacing:1.836000px;}
.ws86{word-spacing:1.860000px;}
.wsc5{word-spacing:1.980000px;}
.ws37{word-spacing:2.040000px;}
.wse3{word-spacing:2.052000px;}
.ws2e{word-spacing:2.100000px;}
.ws51{word-spacing:2.160000px;}
.ws91{word-spacing:2.220000px;}
.ws54{word-spacing:2.280000px;}
.wsd1{word-spacing:2.322000px;}
.ws2b{word-spacing:2.340000px;}
.ws71{word-spacing:2.460000px;}
.wse4{word-spacing:2.484000px;}
.ws33{word-spacing:2.520000px;}
.wsd9{word-spacing:2.538000px;}
.ws63{word-spacing:2.580000px;}
.ws14{word-spacing:2.592000px;}
.ws2a{word-spacing:2.640000px;}
.ws46{word-spacing:2.700000px;}
.ws5a{word-spacing:2.760000px;}
.ws57{word-spacing:2.820000px;}
.ws5d{word-spacing:2.880000px;}
.ws6a{word-spacing:2.940000px;}
.wse6{word-spacing:2.970000px;}
.ws2d{word-spacing:3.060000px;}
.wsdb{word-spacing:3.132000px;}
.ws25{word-spacing:3.180000px;}
.wsb1{word-spacing:3.240000px;}
.wsd4{word-spacing:3.294000px;}
.wsa3{word-spacing:3.300000px;}
.wse{word-spacing:3.348000px;}
.ws26{word-spacing:3.360000px;}
.ws5{word-spacing:3.420000px;}
.ws6{word-spacing:3.480000px;}
.ws7b{word-spacing:3.540000px;}
.ws40{word-spacing:3.660000px;}
.ws21{word-spacing:3.672000px;}
.ws6b{word-spacing:3.780000px;}
.wsa5{word-spacing:3.840000px;}
.wsd0{word-spacing:3.888000px;}
.ws31{word-spacing:3.900000px;}
.ws3d{word-spacing:4.020000px;}
.wsf1{word-spacing:4.050000px;}
.ws43{word-spacing:4.140000px;}
.ws41{word-spacing:4.260000px;}
.ws8d{word-spacing:4.320000px;}
.wsb3{word-spacing:4.380000px;}
.ws7c{word-spacing:4.440000px;}
.wscd{word-spacing:4.500000px;}
.ws22{word-spacing:4.536000px;}
.ws66{word-spacing:4.560000px;}
.ws53{word-spacing:4.620000px;}
.ws99{word-spacing:4.680000px;}
.wsc{word-spacing:4.698000px;}
.ws81{word-spacing:4.740000px;}
.wsd{word-spacing:4.752000px;}
.ws98{word-spacing:4.860000px;}
.wsaa{word-spacing:4.920000px;}
.ws69{word-spacing:4.980000px;}
.wsf3{word-spacing:5.022000px;}
.ws5b{word-spacing:5.040000px;}
.ws3c{word-spacing:5.100000px;}
.ws90{word-spacing:5.160000px;}
.ws23{word-spacing:5.184000px;}
.ws6c{word-spacing:5.220000px;}
.wsa0{word-spacing:5.280000px;}
.ws27{word-spacing:5.340000px;}
.ws52{word-spacing:5.400000px;}
.ws30{word-spacing:5.460000px;}
.ws87{word-spacing:5.580000px;}
.ws80{word-spacing:5.700000px;}
.wsd2{word-spacing:5.778000px;}
.wscb{word-spacing:5.820000px;}
.wsda{word-spacing:5.832000px;}
.ws4a{word-spacing:5.880000px;}
.ws32{word-spacing:5.940000px;}
.ws4c{word-spacing:6.060000px;}
.ws48{word-spacing:6.180000px;}
.wsc2{word-spacing:6.300000px;}
.ws1e{word-spacing:6.480000px;}
.ws3a{word-spacing:6.540000px;}
.wsad{word-spacing:6.600000px;}
.ws97{word-spacing:6.780000px;}
.ws70{word-spacing:6.840000px;}
.ws1f{word-spacing:6.858000px;}
.wsc3{word-spacing:6.900000px;}
.wsed{word-spacing:6.912000px;}
.wsdf{word-spacing:7.074000px;}
.ws60{word-spacing:7.080000px;}
.wsc6{word-spacing:7.380000px;}
.ws72{word-spacing:7.440000px;}
.wsd5{word-spacing:7.506000px;}
.ws88{word-spacing:7.620000px;}
.ws5f{word-spacing:8.040000px;}
.ws2f{word-spacing:8.220000px;}
.ws5c{word-spacing:8.340000px;}
.wsb2{word-spacing:8.400000px;}
.wscf{word-spacing:8.460000px;}
.wsc9{word-spacing:8.580000px;}
.ws20{word-spacing:8.640000px;}
.ws94{word-spacing:8.760000px;}
.ws8b{word-spacing:8.940000px;}
.wsc1{word-spacing:9.000000px;}
.ws5e{word-spacing:9.540000px;}
.ws7{word-spacing:9.600000px;}
.ws44{word-spacing:16.560000px;}
.wsb9{word-spacing:32.688000px;}
.ws9e{word-spacing:42.336000px;}
.wsbc{word-spacing:44.688000px;}
.ws24{word-spacing:54.240000px;}
.ws8c{word-spacing:69.840000px;}
.ws9f{word-spacing:87.264000px;}
.wsb6{word-spacing:123.498000px;}
.ws9c{word-spacing:124.686000px;}
.ws9b{word-spacing:183.222000px;}
.wsb5{word-spacing:206.928000px;}
.ws9a{word-spacing:276.372000px;}
.wsba{word-spacing:328.608000px;}
.wsbb{word-spacing:383.472000px;}
.wsb8{word-spacing:513.120000px;}
.ws50{word-spacing:615.714000px;}
._7{margin-left:-986.310000px;}
._8{margin-left:-959.310000px;}
._19{margin-left:-908.550000px;}
._11{margin-left:-819.990000px;}
._9{margin-left:-704.430000px;}
._17{margin-left:-693.630000px;}
._15{margin-left:-682.830000px;}
._a{margin-left:-650.430000px;}
._13{margin-left:-576.990000px;}
._18{margin-left:-562.950000px;}
._16{margin-left:-561.870000px;}
._b{margin-left:-444.150000px;}
._c{margin-left:-440.910000px;}
._f{margin-left:-376.110000px;}
._14{margin-left:-349.110000px;}
._e{margin-left:-327.510000px;}
._10{margin-left:-305.910000px;}
._12{margin-left:-300.510000px;}
._d{margin-left:-251.910000px;}
._4b{margin-left:-98.748000px;}
._59{margin-left:-26.160000px;}
._5b{margin-left:-24.084000px;}
._3a{margin-left:-10.560000px;}
._5{margin-left:-5.400000px;}
._39{margin-left:-3.780000px;}
._6{margin-left:-2.700000px;}
._1b{margin-left:-1.200000px;}
._3{width:1.026000px;}
._38{width:2.202000px;}
._0{width:3.480000px;}
._1c{width:5.340000px;}
._5a{width:7.452000px;}
._1a{width:8.460000px;}
._55{width:48.048000px;}
._1e{width:54.240000px;}
._58{width:55.344000px;}
._4c{width:60.048000px;}
._33{width:61.536000px;}
._37{width:62.640000px;}
._52{width:66.288000px;}
._1d{width:69.840000px;}
._54{width:78.288000px;}
._34{width:80.256000px;}
._56{width:82.608000px;}
._35{width:106.464000px;}
._41{width:118.098000px;}
._36{width:125.184000px;}
._47{width:131.598000px;}
._57{width:139.632000px;}
._3e{width:140.778000px;}
._31{width:146.286000px;}
._3c{width:157.518000px;}
._32{width:178.956000px;}
._4d{width:180.576000px;}
._50{width:186.816000px;}
._53{width:192.576000px;}
._23{width:200.502000px;}
._26{width:209.682000px;}
._4e{width:218.352000px;}
._21{width:223.182000px;}
._46{width:309.150000px;}
._4f{width:319.392000px;}
._2{width:328.717200px;}
._4{width:338.308800px;}
._30{width:339.498000px;}
._1{width:367.200000px;}
._40{width:396.090000px;}
._51{width:401.376000px;}
._3f{width:409.590000px;}
._1f{width:411.912000px;}
._25{width:437.886000px;}
._24{width:451.386000px;}
._2b{width:467.046000px;}
._3b{width:472.770000px;}
._20{width:497.826000px;}
._4a{width:512.190000px;}
._2e{width:540.486000px;}
._3d{width:572.670000px;}
._22{width:600.966000px;}
._44{width:635.310000px;}
._49{width:640.710000px;}
._48{width:662.310000px;}
._29{width:663.606000px;}
._2d{width:669.006000px;}
._2c{width:690.606000px;}
._45{width:713.070000px;}
._42{width:726.030000px;}
._2f{width:733.266000px;}
._2a{width:741.366000px;}
._27{width:767.826000px;}
._43{width:879.390000px;}
._28{width:907.686000px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:31.320000px;}
.fs7{font-size:34.800000px;}
.fs6{font-size:37.800000px;}
.fs2{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y19{bottom:95.236800px;}
.y6f{bottom:95.238300px;}
.y6c{bottom:136.058550px;}
.y41{bottom:136.081650px;}
.y211{bottom:138.893400px;}
.y18{bottom:141.894300px;}
.y21c{bottom:142.391550px;}
.y1f4{bottom:147.554100px;}
.ycb{bottom:148.660050px;}
.ya0{bottom:149.089050px;}
.y40{bottom:153.571650px;}
.y6b{bottom:153.608550px;}
.y1cf{bottom:155.904300px;}
.y210{bottom:156.143400px;}
.y17{bottom:157.648800px;}
.y21b{bottom:158.146050px;}
.y24a{bottom:159.706800px;}
.ye3{bottom:160.885500px;}
.y1f3{bottom:165.218100px;}
.yca{bottom:165.910050px;}
.y9f{bottom:166.339050px;}
.y3f{bottom:171.061650px;}
.y6a{bottom:171.158550px;}
.y1ce{bottom:173.154300px;}
.y20f{bottom:173.393400px;}
.y16{bottom:173.403300px;}
.y21a{bottom:173.869050px;}
.y249{bottom:175.461300px;}
.ye2{bottom:178.135500px;}
.y1f2{bottom:178.718100px;}
.yc9{bottom:183.160050px;}
.y9e{bottom:183.589050px;}
.y1a7{bottom:184.888350px;}
.y3e{bottom:188.551650px;}
.y69{bottom:188.708550px;}
.y15{bottom:189.157800px;}
.y219{bottom:189.623550px;}
.y18c{bottom:190.261950px;}
.y187{bottom:190.275450px;}
.y182{bottom:190.288950px;}
.y17d{bottom:190.302450px;}
.y178{bottom:190.315950px;}
.y173{bottom:190.329450px;}
.y1cd{bottom:190.404300px;}
.y20e{bottom:190.643400px;}
.y248{bottom:191.215800px;}
.ye1{bottom:195.385500px;}
.y1f1{bottom:196.394100px;}
.y123{bottom:197.234100px;}
.y1a6{bottom:199.888350px;}
.yc8{bottom:200.410050px;}
.y9d{bottom:200.839050px;}
.y14{bottom:204.912300px;}
.y218{bottom:205.378050px;}
.y154{bottom:205.941450px;}
.y18b{bottom:206.016450px;}
.y186{bottom:206.029950px;}
.y181{bottom:206.043450px;}
.y17c{bottom:206.056950px;}
.y177{bottom:206.070450px;}
.y172{bottom:206.083950px;}
.y68{bottom:206.258550px;}
.y247{bottom:206.970300px;}
.y1cc{bottom:207.654300px;}
.y20d{bottom:207.893400px;}
.ye0{bottom:212.635500px;}
.y1f0{bottom:214.058100px;}
.y103{bottom:214.135050px;}
.y122{bottom:214.484100px;}
.y1a5{bottom:214.888350px;}
.yc7{bottom:217.660050px;}
.y9c{bottom:218.089050px;}
.y3d{bottom:218.803950px;}
.y153{bottom:219.441450px;}
.y13{bottom:220.666800px;}
.y217{bottom:221.132550px;}
.y18a{bottom:221.770950px;}
.y185{bottom:221.784450px;}
.y180{bottom:221.797950px;}
.y17b{bottom:221.811450px;}
.y176{bottom:221.824950px;}
.y171{bottom:221.838450px;}
.y246{bottom:222.724800px;}
.y67{bottom:223.808550px;}
.y20c{bottom:225.143400px;}
.y1ef{bottom:227.558100px;}
.y1a4{bottom:229.888350px;}
.y102{bottom:231.385050px;}
.y121{bottom:231.734100px;}
.y152{bottom:232.941450px;}
.yc6{bottom:234.910050px;}
.y9b{bottom:235.339050px;}
.y216{bottom:236.887050px;}
.y189{bottom:237.525450px;}
.y184{bottom:237.538950px;}
.y17f{bottom:237.552450px;}
.y17a{bottom:237.565950px;}
.y175{bottom:237.579450px;}
.y170{bottom:237.592950px;}
.y1cb{bottom:237.654300px;}
.y245{bottom:238.479300px;}
.y66{bottom:241.358550px;}
.y20b{bottom:242.393400px;}
.ydf{bottom:242.635500px;}
.y1a3{bottom:244.888350px;}
.y1ee{bottom:245.234100px;}
.y151{bottom:246.441450px;}
.y101{bottom:248.635050px;}
.yc5{bottom:252.160050px;}
.y9a{bottom:252.589050px;}
.y215{bottom:252.641550px;}
.y188{bottom:253.279950px;}
.y183{bottom:253.293450px;}
.y17e{bottom:253.306950px;}
.y179{bottom:253.320450px;}
.y174{bottom:253.333950px;}
.y16f{bottom:253.347450px;}
.y244{bottom:254.233800px;}
.y65{bottom:258.908550px;}
.y20a{bottom:259.643400px;}
.y150{bottom:259.941450px;}
.y120{bottom:261.740100px;}
.y1ed{bottom:262.910100px;}
.y100{bottom:265.885050px;}
.y12{bottom:266.418300px;}
.y214{bottom:268.396050px;}
.yc4{bottom:269.410050px;}
.y99{bottom:269.839050px;}
.y243{bottom:269.988300px;}
.y1ca{bottom:272.154300px;}
.yde{bottom:272.635800px;}
.y64{bottom:276.458550px;}
.y3c{bottom:276.750300px;}
.y209{bottom:276.893400px;}
.y14f{bottom:277.449450px;}
.y1a2{bottom:279.400350px;}
.y16e{bottom:280.482450px;}
.y1ec{bottom:280.586100px;}
.yff{bottom:283.135050px;}
.y11{bottom:283.668300px;}
.y213{bottom:284.150550px;}
.y242{bottom:285.742800px;}
.yc3{bottom:286.660050px;}
.y98{bottom:287.089050px;}
.y1c9{bottom:289.404300px;}
.y14e{bottom:290.949450px;}
.y63{bottom:294.008550px;}
.y1eb{bottom:294.086100px;}
.y208{bottom:294.143400px;}
.yfe{bottom:300.385050px;}
.y10{bottom:300.918300px;}
.y241{bottom:301.497300px;}
.yc2{bottom:303.910050px;}
.y97{bottom:304.339050px;}
.y14d{bottom:304.449450px;}
.y1c8{bottom:306.654300px;}
.y16d{bottom:307.617450px;}
.y3b{bottom:308.745300px;}
.y207{bottom:311.393400px;}
.y62{bottom:311.558550px;}
.y1ea{bottom:311.762100px;}
.y212{bottom:312.655050px;}
.y19f{bottom:313.912350px;}
.y240{bottom:317.251800px;}
.y14c{bottom:317.949450px;}
.yf{bottom:318.168300px;}
.yc1{bottom:321.160050px;}
.y1a1{bottom:321.412350px;}
.y16c{bottom:323.371950px;}
.y1c7{bottom:323.904300px;}
.y3a{bottom:324.742800px;}
.y11f{bottom:324.785850px;}
.y143{bottom:325.977450px;}
.yfd{bottom:326.140050px;}
.y141{bottom:327.897450px;}
.y206{bottom:328.643400px;}
.y19e{bottom:328.912350px;}
.y61{bottom:329.108550px;}
.y1e9{bottom:329.270100px;}
.y14b{bottom:331.449450px;}
.ydd{bottom:332.650800px;}
.y23f{bottom:333.006300px;}
.y1a0{bottom:336.412350px;}
.yc0{bottom:338.410050px;}
.y11e{bottom:340.540350px;}
.y39{bottom:340.740300px;}
.y1c6{bottom:341.154300px;}
.y140{bottom:341.397450px;}
.y1e8{bottom:342.770100px;}
.yfc{bottom:343.390050px;}
.y19d{bottom:343.912350px;}
.y14a{bottom:344.949450px;}
.y205{bottom:345.893400px;}
.y60{bottom:346.658550px;}
.y23e{bottom:348.760800px;}
.ydc{bottom:349.900800px;}
.y96{bottom:351.617550px;}
.ybf{bottom:355.660050px;}
.y1e7{bottom:356.270100px;}
.y11d{bottom:356.294850px;}
.y38{bottom:356.737800px;}
.y16b{bottom:357.065550px;}
.y1c5{bottom:358.404300px;}
.y149{bottom:358.449450px;}
.yfb{bottom:360.640050px;}
.y5f{bottom:364.208550px;}
.y23d{bottom:364.515300px;}
.y95{bottom:367.372050px;}
.y8a{bottom:367.412550px;}
.ye{bottom:369.438300px;}
.y11c{bottom:372.049350px;}
.y37{bottom:372.735300px;}
.ybe{bottom:372.910050px;}
.y16a{bottom:374.318550px;}
.y1c4{bottom:375.654300px;}
.ydb{bottom:375.655800px;}
.y204{bottom:375.895800px;}
.y148{bottom:375.957450px;}
.yfa{bottom:377.890050px;}
.y23c{bottom:380.269800px;}
.y19c{bottom:380.711850px;}
.y5e{bottom:381.758550px;}
.y94{bottom:383.126550px;}
.y89{bottom:383.167050px;}
.y1e6{bottom:384.562800px;}
.yd{bottom:387.438300px;}
.y11b{bottom:387.803850px;}
.y36{bottom:388.732800px;}
.ybd{bottom:390.160050px;}
.y1c3{bottom:392.904300px;}
.yda{bottom:392.905800px;}
.y147{bottom:393.465450px;}
.yf9{bottom:395.140050px;}
.y23b{bottom:396.024300px;}
.y19b{bottom:397.964850px;}
.y93{bottom:398.881050px;}
.y88{bottom:398.921550px;}
.y5d{bottom:399.308550px;}
.y1e5{bottom:401.815800px;}
.y11a{bottom:403.558350px;}
.y35{bottom:404.730300px;}
.yc{bottom:405.438300px;}
.ybc{bottom:407.410050px;}
.y1c2{bottom:410.154300px;}
.y203{bottom:410.155800px;}
.y146{bottom:410.973450px;}
.y23a{bottom:411.778800px;}
.yf8{bottom:412.390050px;}
.y92{bottom:414.635550px;}
.y87{bottom:414.676050px;}
.y5c{bottom:416.858550px;}
.yd9{bottom:418.660800px;}
.y1e4{bottom:419.047650px;}
.y119{bottom:419.312850px;}
.y34{bottom:420.727800px;}
.yb{bottom:423.438300px;}
.ybb{bottom:424.660050px;}
.y169{bottom:426.068550px;}
.y1c1{bottom:427.404300px;}
.y202{bottom:427.405800px;}
.y239{bottom:427.533300px;}
.y145{bottom:428.481450px;}
.y91{bottom:430.390050px;}
.y86{bottom:430.430550px;}
.y5b{bottom:434.408550px;}
.yd8{bottom:435.910800px;}
.y33{bottom:436.725300px;}
.yf7{bottom:438.145050px;}
.y118{bottom:439.319850px;}
.ya{bottom:441.438300px;}
.yba{bottom:441.910050px;}
.y238{bottom:443.287800px;}
.y168{bottom:443.318550px;}
.y1c0{bottom:444.654300px;}
.y201{bottom:444.655800px;}
.y144{bottom:445.989450px;}
.y90{bottom:446.144550px;}
.y85{bottom:446.185050px;}
.y5a{bottom:451.958550px;}
.y19a{bottom:452.601450px;}
.y32{bottom:452.722800px;}
.yd7{bottom:453.160800px;}
.y237{bottom:459.042300px;}
.yb9{bottom:459.160050px;}
.y117{bottom:459.326850px;}
.y9{bottom:459.438300px;}
.y167{bottom:460.568550px;}
.y8f{bottom:461.899050px;}
.y1bf{bottom:461.904300px;}
.y200{bottom:461.905800px;}
.y84{bottom:461.939550px;}
.y142{bottom:463.497450px;}
.yf6{bottom:463.900050px;}
.y199{bottom:466.101450px;}
.y1e3{bottom:469.429650px;}
.y59{bottom:469.508550px;}
.yd6{bottom:470.410800px;}
.y236{bottom:474.796800px;}
.yb8{bottom:476.410050px;}
.y8{bottom:477.438300px;}
.y1be{bottom:479.154300px;}
.y1ff{bottom:479.155800px;}
.y116{bottom:479.333850px;}
.y198{bottom:479.601450px;}
.y13f{bottom:480.993450px;}
.yf5{bottom:481.150050px;}
.y58{bottom:487.058550px;}
.yd5{bottom:487.660800px;}
.y1e2{bottom:488.059650px;}
.y235{bottom:490.551300px;}
.y197{bottom:493.101450px;}
.y8e{bottom:493.394550px;}
.y83{bottom:493.435050px;}
.yb7{bottom:493.660050px;}
.y115{bottom:495.088350px;}
.y1bd{bottom:496.404300px;}
.y1fe{bottom:496.405800px;}
.yf4{bottom:498.400050px;}
.y13e{bottom:498.501450px;}
.y31{bottom:500.715300px;}
.y57{bottom:504.608550px;}
.yd4{bottom:504.910800px;}
.y234{bottom:506.305800px;}
.y196{bottom:506.601450px;}
.y1e1{bottom:506.689650px;}
.y8d{bottom:509.149050px;}
.y13a{bottom:509.181450px;}
.y82{bottom:509.189550px;}
.yb6{bottom:510.910050px;}
.y166{bottom:510.927750px;}
.y1bc{bottom:513.654300px;}
.y1fd{bottom:513.655800px;}
.yf3{bottom:515.650050px;}
.y13d{bottom:516.009450px;}
.y233{bottom:522.060300px;}
.y56{bottom:522.158550px;}
.yd3{bottom:522.160800px;}
.y114{bottom:522.412350px;}
.y139{bottom:522.681450px;}
.y7{bottom:523.114800px;}
.y8c{bottom:524.903550px;}
.y81{bottom:524.944050px;}
.y1e0{bottom:525.319650px;}
.yb5{bottom:528.160050px;}
.y165{bottom:529.557750px;}
.y1bb{bottom:530.904300px;}
.y1fc{bottom:530.905800px;}
.y195{bottom:532.605450px;}
.y30{bottom:532.710300px;}
.yf2{bottom:532.900050px;}
.y13c{bottom:533.517450px;}
.y232{bottom:537.814800px;}
.yd2{bottom:539.410800px;}
.y55{bottom:539.708550px;}
.y8b{bottom:540.658050px;}
.y80{bottom:540.698550px;}
.y113{bottom:542.419350px;}
.y1df{bottom:543.949650px;}
.yb4{bottom:545.410050px;}
.y1ba{bottom:548.154300px;}
.y1fb{bottom:548.155800px;}
.y164{bottom:548.187750px;}
.y6{bottom:548.608800px;}
.y2f{bottom:548.707800px;}
.yf1{bottom:550.150050px;}
.y13b{bottom:551.025450px;}
.y231{bottom:553.569300px;}
.yd1{bottom:556.660800px;}
.y54{bottom:557.258550px;}
.y112{bottom:558.173850px;}
.y191{bottom:558.609450px;}
.y1de{bottom:562.579650px;}
.yb3{bottom:562.660050px;}
.y2e{bottom:564.705300px;}
.y194{bottom:565.365450px;}
.y1b9{bottom:565.404300px;}
.y1fa{bottom:565.405800px;}
.y163{bottom:566.817750px;}
.y138{bottom:568.521450px;}
.y230{bottom:569.323800px;}
.y7f{bottom:571.461900px;}
.y190{bottom:572.109450px;}
.yd0{bottom:573.910800px;}
.y111{bottom:573.928350px;}
.y53{bottom:574.808550px;}
.yf0{bottom:575.905050px;}
.y193{bottom:578.865450px;}
.yb2{bottom:579.910050px;}
.y2d{bottom:580.702800px;}
.y1dd{bottom:581.209650px;}
.y137{bottom:582.021450px;}
.y1b8{bottom:582.654300px;}
.y1f9{bottom:582.655800px;}
.y22f{bottom:585.078300px;}
.y162{bottom:585.447750px;}
.y18f{bottom:585.609450px;}
.y110{bottom:589.682850px;}
.y25d{bottom:590.702550px;}
.ycf{bottom:591.160800px;}
.y52{bottom:592.358550px;}
.y192{bottom:592.365450px;}
.y133{bottom:595.437450px;}
.y136{bottom:595.521450px;}
.y2c{bottom:596.700300px;}
.yb1{bottom:597.160050px;}
.y18e{bottom:599.109450px;}
.y1dc{bottom:599.839650px;}
.y1b7{bottom:599.904300px;}
.y1f8{bottom:599.905800px;}
.y22e{bottom:600.832800px;}
.yef{bottom:601.660050px;}
.y5{bottom:601.738800px;}
.y161{bottom:604.077750px;}
.y25c{bottom:606.457050px;}
.y7e{bottom:608.404800px;}
.yce{bottom:608.410800px;}
.y135{bottom:609.021450px;}
.y10f{bottom:609.689850px;}
.y51{bottom:609.908550px;}
.y2b{bottom:612.697800px;}
.yb0{bottom:614.410050px;}
.y22d{bottom:616.587300px;}
.y1b6{bottom:617.154300px;}
.y1f7{bottom:617.155800px;}
.y1db{bottom:618.469650px;}
.yee{bottom:618.910050px;}
.y25b{bottom:622.211550px;}
.y134{bottom:622.521450px;}
.y160{bottom:622.707750px;}
.y7d{bottom:625.657800px;}
.ycd{bottom:625.660800px;}
.y4{bottom:627.232800px;}
.y50{bottom:627.458550px;}
.y2a{bottom:628.695300px;}
.y10e{bottom:629.696850px;}
.y18d{bottom:631.657050px;}
.yaf{bottom:631.660050px;}
.y22c{bottom:632.341800px;}
.y1b5{bottom:634.404300px;}
.y1f6{bottom:634.405800px;}
.yed{bottom:636.160050px;}
.y1da{bottom:637.234650px;}
.y25a{bottom:637.966050px;}
.y132{bottom:640.029450px;}
.y15f{bottom:641.337750px;}
.y7c{bottom:642.910800px;}
.y29{bottom:644.692800px;}
.y4f{bottom:645.008550px;}
.y22b{bottom:648.096300px;}
.yae{bottom:648.910050px;}
.y10d{bottom:649.703850px;}
.y1b4{bottom:651.654300px;}
.y1f5{bottom:651.655800px;}
.yec{bottom:653.410050px;}
.y131{bottom:653.529450px;}
.y259{bottom:653.720550px;}
.y1d9{bottom:655.864650px;}
.ycc{bottom:660.160800px;}
.y12d{bottom:660.273450px;}
.y28{bottom:660.690300px;}
.y4e{bottom:662.558550px;}
.y22a{bottom:663.850800px;}
.y15e{bottom:664.220250px;}
.y10c{bottom:665.458350px;}
.yad{bottom:666.160050px;}
.y130{bottom:667.029450px;}
.y1b3{bottom:668.904300px;}
.y12a{bottom:668.937450px;}
.y258{bottom:669.475050px;}
.yeb{bottom:670.660050px;}
.y12c{bottom:673.773450px;}
.y1d8{bottom:674.494650px;}
.y27{bottom:676.687800px;}
.y7b{bottom:677.410800px;}
.y229{bottom:679.605300px;}
.y4d{bottom:680.108550px;}
.y3{bottom:680.362800px;}
.y12f{bottom:680.529450px;}
.y129{bottom:682.437450px;}
.yac{bottom:683.410050px;}
.y257{bottom:685.229550px;}
.y1b2{bottom:686.154300px;}
.y15d{bottom:687.237750px;}
.yea{bottom:687.910050px;}
.y26{bottom:692.685300px;}
.y1d7{bottom:693.124650px;}
.y12e{bottom:694.029450px;}
.y7a{bottom:694.660800px;}
.y228{bottom:695.359800px;}
.y4c{bottom:697.658550px;}
.y10b{bottom:699.151800px;}
.yab{bottom:700.660050px;}
.y256{bottom:700.984050px;}
.y1b1{bottom:703.404300px;}
.ye9{bottom:705.160050px;}
.y2{bottom:705.856800px;}
.y15c{bottom:705.867750px;}
.y25{bottom:708.682800px;}
.y227{bottom:711.114300px;}
.y12b{bottom:711.525450px;}
.y1d6{bottom:711.754650px;}
.y79{bottom:711.910800px;}
.y4b{bottom:715.208550px;}
.y10a{bottom:716.404800px;}
.y255{bottom:716.738550px;}
.yaa{bottom:717.910050px;}
.y1b0{bottom:720.654300px;}
.ye8{bottom:722.410050px;}
.y15b{bottom:724.497750px;}
.y226{bottom:726.868800px;}
.y78{bottom:729.160800px;}
.y1d5{bottom:730.384650px;}
.y1{bottom:731.350800px;}
.y254{bottom:732.493050px;}
.y4a{bottom:732.758550px;}
.ya9{bottom:735.160050px;}
.y1af{bottom:737.904300px;}
.y128{bottom:739.651050px;}
.ye7{bottom:739.660050px;}
.y225{bottom:742.623300px;}
.y15a{bottom:743.127750px;}
.y77{bottom:746.410800px;}
.y253{bottom:748.247550px;}
.y1d4{bottom:749.014650px;}
.y49{bottom:750.308550px;}
.y109{bottom:750.910800px;}
.ya8{bottom:752.410050px;}
.y1ae{bottom:755.154300px;}
.y24{bottom:756.675300px;}
.y127{bottom:756.904050px;}
.ye6{bottom:756.910050px;}
.y224{bottom:758.377800px;}
.y159{bottom:761.757750px;}
.y76{bottom:763.660800px;}
.y252{bottom:764.002050px;}
.y48{bottom:767.858550px;}
.y108{bottom:768.160800px;}
.ya7{bottom:769.660050px;}
.y1ad{bottom:772.404300px;}
.y223{bottom:774.132300px;}
.ye5{bottom:774.160050px;}
.y1d3{bottom:778.399050px;}
.y251{bottom:779.756550px;}
.y158{bottom:780.387750px;}
.y75{bottom:780.910800px;}
.y47{bottom:785.408550px;}
.y107{bottom:785.410800px;}
.ya6{bottom:786.910050px;}
.y23{bottom:788.670300px;}
.y1ac{bottom:789.654300px;}
.y222{bottom:789.886800px;}
.ye4{bottom:791.410050px;}
.y250{bottom:795.511050px;}
.y1d2{bottom:795.652050px;}
.y74{bottom:798.160800px;}
.y106{bottom:802.660800px;}
.y46{bottom:802.958550px;}
.y157{bottom:803.270250px;}
.ya5{bottom:804.160050px;}
.y22{bottom:804.667800px;}
.y221{bottom:805.641300px;}
.y1ab{bottom:806.904300px;}
.y126{bottom:808.660050px;}
.y24f{bottom:811.265550px;}
.y1d1{bottom:812.905050px;}
.y73{bottom:815.410800px;}
.y105{bottom:819.910800px;}
.y45{bottom:820.508550px;}
.y21{bottom:820.665300px;}
.y220{bottom:821.395800px;}
.ya4{bottom:821.410050px;}
.y125{bottom:825.910050px;}
.y24e{bottom:827.020050px;}
.y156{bottom:832.654800px;}
.y1aa{bottom:832.659300px;}
.y72{bottom:832.660800px;}
.y20{bottom:836.662800px;}
.y21f{bottom:837.150300px;}
.y104{bottom:837.160800px;}
.y44{bottom:838.058550px;}
.ya3{bottom:838.660050px;}
.y24d{bottom:842.774550px;}
.y124{bottom:843.160050px;}
.y155{bottom:849.907800px;}
.y1a9{bottom:849.909300px;}
.y71{bottom:849.910800px;}
.y1f{bottom:852.660300px;}
.y21e{bottom:852.904800px;}
.y43{bottom:855.608550px;}
.y1d0{bottom:855.908550px;}
.ya2{bottom:855.910050px;}
.y24c{bottom:858.529050px;}
.y1a8{bottom:867.159300px;}
.y70{bottom:867.160800px;}
.y1a{bottom:868.209300px;}
.y1e{bottom:868.657800px;}
.y21d{bottom:868.659300px;}
.y42{bottom:873.158550px;}
.ya1{bottom:873.160050px;}
.y24b{bottom:874.283550px;}
.y1d{bottom:908.386800px;}
.y1c{bottom:908.386950px;}
.y6e{bottom:908.388300px;}
.y1b{bottom:920.986950px;}
.y6d{bottom:920.988300px;}
.h9{height:34.608000px;}
.hc{height:36.018000px;}
.hd{height:37.638000px;}
.h7{height:39.552000px;}
.he{height:40.080000px;}
.h5{height:41.820000px;}
.h6{height:44.496000px;}
.h12{height:44.580600px;}
.h15{height:44.622000px;}
.hf{height:44.766000px;}
.hb{height:44.940000px;}
.h11{height:45.036000px;}
.ha{height:45.090000px;}
.h4{height:49.440000px;}
.h3{height:58.548000px;}
.h8{height:59.328000px;}
.h13{height:66.864000px;}
.h14{height:66.912000px;}
.h2{height:69.216000px;}
.h10{height:76.572000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:74.409000px;}
.x30{left:77.582100px;}
.x3c{left:79.060200px;}
.x4f{left:83.324100px;}
.x1e{left:93.678150px;}
.x18{left:95.430150px;}
.x1d{left:97.698150px;}
.x19{left:101.550150px;}
.x9{left:104.169000px;}
.x1c{left:106.458150px;}
.x3{left:116.925000px;}
.x23{left:121.992000px;}
.x3b{left:124.012200px;}
.xe{left:125.808450px;}
.x3d{left:127.360200px;}
.x13{left:133.929000px;}
.x61{left:134.957100px;}
.x32{left:140.392200px;}
.x5f{left:144.149550px;}
.x2{left:146.692500px;}
.x33{left:150.856200px;}
.x31{left:153.232200px;}
.x50{left:154.544100px;}
.xf{left:155.575950px;}
.x6{left:159.449250px;}
.x14{left:163.689000px;}
.x3e{left:165.304200px;}
.x1a{left:167.178150px;}
.x3f{left:169.864200px;}
.x22{left:173.695650px;}
.x12{left:176.449500px;}
.x4c{left:181.256100px;}
.x4b{left:183.944100px;}
.x7{left:189.216750px;}
.xd{left:192.331950px;}
.xb{left:193.677000px;}
.x5e{left:199.945050px;}
.x51{left:203.720100px;}
.x1f{left:205.557000px;}
.x60{left:208.571550px;}
.x8{left:211.323300px;}
.x63{left:219.676650px;}
.x6b{left:221.032650px;}
.x62{left:222.736650px;}
.x17{left:223.922100px;}
.x21{left:225.238650px;}
.x64{left:240.424650px;}
.x5d{left:244.712100px;}
.x40{left:247.192200px;}
.x5{left:253.843200px;}
.x52{left:255.896100px;}
.xc{left:258.882000px;}
.x35{left:270.184200px;}
.x34{left:276.076200px;}
.x20{left:287.232000px;}
.x53{left:308.072100px;}
.x54{left:312.632100px;}
.x15{left:318.415800px;}
.x1b{left:320.970150px;}
.x16{left:326.799300px;}
.x41{left:329.080200px;}
.x4d{left:331.160100px;}
.x42{left:333.640200px;}
.x65{left:334.804650px;}
.x66{left:336.844650px;}
.x26{left:345.315000px;}
.x28{left:349.095000px;}
.x27{left:354.225000px;}
.x24{left:360.610500px;}
.xa{left:361.887150px;}
.x55{left:364.808100px;}
.x43{left:370.024200px;}
.x44{left:373.024200px;}
.x25{left:378.201000px;}
.x37{left:383.908200px;}
.x10{left:391.555950px;}
.x36{left:398.908200px;}
.x2a{left:411.046500px;}
.x56{left:412.424100px;}
.x45{left:413.968200px;}
.x29{left:416.176500px;}
.x11{left:421.323450px;}
.x68{left:431.296650px;}
.x67{left:434.212650px;}
.x46{left:451.912200px;}
.x58{left:464.600100px;}
.x59{left:467.600100px;}
.x57{left:469.160100px;}
.x2c{left:476.373000px;}
.x2b{left:481.503000px;}
.x4e{left:485.456100px;}
.x47{left:492.856200px;}
.x48{left:495.856200px;}
.x39{left:500.944200px;}
.x3a{left:502.168200px;}
.x69{left:514.408650px;}
.x5a{left:516.776100px;}
.x38{left:521.752200px;}
.x6a{left:529.936650px;}
.x49{left:533.800200px;}
.x2d{left:540.822000px;}
.x4{left:542.485350px;}
.x2e{left:544.197000px;}
.x5c{left:568.952100px;}
.x5b{left:573.512100px;}
.x4a{left:574.744200px;}
.x2f{left:604.407000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.952000pt;}
.v1{vertical-align:17.578667pt;}
.v3{vertical-align:24.277333pt;}
.v2{vertical-align:27.984000pt;}
.ls11{letter-spacing:-1.066667pt;}
.ls4{letter-spacing:-0.960000pt;}
.ls2{letter-spacing:-0.746667pt;}
.lsa{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.373333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.004267pt;}
.ls12{letter-spacing:0.004800pt;}
.lsf{letter-spacing:0.014400pt;}
.ls9{letter-spacing:0.053333pt;}
.ls18{letter-spacing:0.144000pt;}
.lsd{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.213333pt;}
.ls1b{letter-spacing:0.240000pt;}
.ls19{letter-spacing:0.336000pt;}
.ls10{letter-spacing:0.373333pt;}
.ls3{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.533333pt;}
.lse{letter-spacing:0.800000pt;}
.ls8{letter-spacing:1.973333pt;}
.ls1a{letter-spacing:2.448000pt;}
.ls7{letter-spacing:3.253333pt;}
.ls1c{letter-spacing:3.792000pt;}
.ls13{letter-spacing:8.586667pt;}
.ls17{letter-spacing:8.746667pt;}
.ls15{letter-spacing:87.082667pt;}
.ls5{letter-spacing:356.193067pt;}
.wsb7{word-spacing:-100.736000pt;}
.wsbe{word-spacing:-53.546667pt;}
.wsa7{word-spacing:-53.386667pt;}
.ws95{word-spacing:-53.333333pt;}
.wsa6{word-spacing:-52.800000pt;}
.wsa4{word-spacing:-45.120000pt;}
.ws0{word-spacing:-17.066667pt;}
.ws4e{word-spacing:-15.360000pt;}
.ws1{word-spacing:-11.946667pt;}
.ws4f{word-spacing:-10.752000pt;}
.ws96{word-spacing:-9.898667pt;}
.wsc7{word-spacing:-8.908800pt;}
.ws8f{word-spacing:-4.266667pt;}
.wsa2{word-spacing:-3.946667pt;}
.ws68{word-spacing:-3.840000pt;}
.wsae{word-spacing:-3.786667pt;}
.wsa9{word-spacing:-3.626667pt;}
.ws1b{word-spacing:-3.408000pt;}
.ws13{word-spacing:-3.360000pt;}
.ws65{word-spacing:-3.306667pt;}
.wsf0{word-spacing:-3.264000pt;}
.ws7a{word-spacing:-3.146667pt;}
.ws17{word-spacing:-3.120000pt;}
.ws85{word-spacing:-3.040000pt;}
.ws89{word-spacing:-2.986667pt;}
.ws55{word-spacing:-2.933333pt;}
.ws3b{word-spacing:-2.880000pt;}
.ws67{word-spacing:-2.826667pt;}
.wsa8{word-spacing:-2.773333pt;}
.wsa1{word-spacing:-2.720000pt;}
.ws3{word-spacing:-2.666667pt;}
.wsef{word-spacing:-2.640000pt;}
.ws7f{word-spacing:-2.613333pt;}
.ws6e{word-spacing:-2.560000pt;}
.ws28{word-spacing:-2.453333pt;}
.ws9d{word-spacing:-2.400000pt;}
.wsd7{word-spacing:-2.352000pt;}
.ws58{word-spacing:-2.346667pt;}
.ws76{word-spacing:-2.293333pt;}
.wse7{word-spacing:-2.256000pt;}
.ws29{word-spacing:-2.240000pt;}
.ws59{word-spacing:-2.186667pt;}
.wse0{word-spacing:-2.112000pt;}
.wsca{word-spacing:-2.080000pt;}
.wsd8{word-spacing:-1.968000pt;}
.ws93{word-spacing:-1.920000pt;}
.wsf2{word-spacing:-1.872000pt;}
.ws38{word-spacing:-1.866667pt;}
.wse8{word-spacing:-1.824000pt;}
.wse2{word-spacing:-1.776000pt;}
.ws64{word-spacing:-1.706667pt;}
.ws4{word-spacing:-1.653333pt;}
.ws39{word-spacing:-1.600000pt;}
.wsaf{word-spacing:-1.546667pt;}
.wsc0{word-spacing:-1.493333pt;}
.ws2c{word-spacing:-1.440000pt;}
.ws12{word-spacing:-1.344000pt;}
.ws3f{word-spacing:-1.333333pt;}
.ws10{word-spacing:-1.296000pt;}
.ws8e{word-spacing:-1.280000pt;}
.ws7d{word-spacing:-1.226667pt;}
.ws9{word-spacing:-1.152000pt;}
.ws3e{word-spacing:-1.120000pt;}
.ws8{word-spacing:-1.104000pt;}
.wsab{word-spacing:-1.066667pt;}
.ws15{word-spacing:-1.056000pt;}
.ws74{word-spacing:-1.013333pt;}
.ws47{word-spacing:-0.960000pt;}
.wse1{word-spacing:-0.864000pt;}
.ws77{word-spacing:-0.853333pt;}
.ws42{word-spacing:-0.800000pt;}
.wsf{word-spacing:-0.768000pt;}
.wsbf{word-spacing:-0.746667pt;}
.wsea{word-spacing:-0.720000pt;}
.wscc{word-spacing:-0.640000pt;}
.wseb{word-spacing:-0.624000pt;}
.wsee{word-spacing:-0.576000pt;}
.ws36{word-spacing:-0.533333pt;}
.ws78{word-spacing:-0.480000pt;}
.ws83{word-spacing:-0.426667pt;}
.wsc8{word-spacing:-0.373333pt;}
.wsdc{word-spacing:-0.336000pt;}
.wsce{word-spacing:-0.320000pt;}
.wsf5{word-spacing:-0.240000pt;}
.ws1a{word-spacing:-0.192000pt;}
.ws7e{word-spacing:-0.106667pt;}
.ws73{word-spacing:-0.053333pt;}
.wsf4{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.wsb4{word-spacing:0.053333pt;}
.ws16{word-spacing:0.192000pt;}
.ws45{word-spacing:0.213333pt;}
.wse9{word-spacing:0.240000pt;}
.ws56{word-spacing:0.266667pt;}
.ws18{word-spacing:0.288000pt;}
.ws8a{word-spacing:0.320000pt;}
.ws6f{word-spacing:0.426667pt;}
.wsd3{word-spacing:0.432000pt;}
.wsc4{word-spacing:0.480000pt;}
.wsb0{word-spacing:0.533333pt;}
.wsd6{word-spacing:0.576000pt;}
.ws4b{word-spacing:0.586667pt;}
.ws19{word-spacing:0.624000pt;}
.ws4d{word-spacing:0.640000pt;}
.wsac{word-spacing:0.693333pt;}
.ws34{word-spacing:0.746667pt;}
.ws79{word-spacing:0.800000pt;}
.wse5{word-spacing:0.864000pt;}
.ws84{word-spacing:0.906667pt;}
.ws49{word-spacing:0.960000pt;}
.ws62{word-spacing:1.013333pt;}
.ws82{word-spacing:1.066667pt;}
.ws1d{word-spacing:1.152000pt;}
.ws11{word-spacing:1.200000pt;}
.ws6d{word-spacing:1.226667pt;}
.ws35{word-spacing:1.280000pt;}
.wsde{word-spacing:1.296000pt;}
.wsbd{word-spacing:1.333333pt;}
.wsa{word-spacing:1.344000pt;}
.ws92{word-spacing:1.386667pt;}
.ws1c{word-spacing:1.392000pt;}
.wsb{word-spacing:1.440000pt;}
.wsdd{word-spacing:1.488000pt;}
.ws75{word-spacing:1.546667pt;}
.ws61{word-spacing:1.600000pt;}
.wsec{word-spacing:1.632000pt;}
.ws86{word-spacing:1.653333pt;}
.wsc5{word-spacing:1.760000pt;}
.ws37{word-spacing:1.813333pt;}
.wse3{word-spacing:1.824000pt;}
.ws2e{word-spacing:1.866667pt;}
.ws51{word-spacing:1.920000pt;}
.ws91{word-spacing:1.973333pt;}
.ws54{word-spacing:2.026667pt;}
.wsd1{word-spacing:2.064000pt;}
.ws2b{word-spacing:2.080000pt;}
.ws71{word-spacing:2.186667pt;}
.wse4{word-spacing:2.208000pt;}
.ws33{word-spacing:2.240000pt;}
.wsd9{word-spacing:2.256000pt;}
.ws63{word-spacing:2.293333pt;}
.ws14{word-spacing:2.304000pt;}
.ws2a{word-spacing:2.346667pt;}
.ws46{word-spacing:2.400000pt;}
.ws5a{word-spacing:2.453333pt;}
.ws57{word-spacing:2.506667pt;}
.ws5d{word-spacing:2.560000pt;}
.ws6a{word-spacing:2.613333pt;}
.wse6{word-spacing:2.640000pt;}
.ws2d{word-spacing:2.720000pt;}
.wsdb{word-spacing:2.784000pt;}
.ws25{word-spacing:2.826667pt;}
.wsb1{word-spacing:2.880000pt;}
.wsd4{word-spacing:2.928000pt;}
.wsa3{word-spacing:2.933333pt;}
.wse{word-spacing:2.976000pt;}
.ws26{word-spacing:2.986667pt;}
.ws5{word-spacing:3.040000pt;}
.ws6{word-spacing:3.093333pt;}
.ws7b{word-spacing:3.146667pt;}
.ws40{word-spacing:3.253333pt;}
.ws21{word-spacing:3.264000pt;}
.ws6b{word-spacing:3.360000pt;}
.wsa5{word-spacing:3.413333pt;}
.wsd0{word-spacing:3.456000pt;}
.ws31{word-spacing:3.466667pt;}
.ws3d{word-spacing:3.573333pt;}
.wsf1{word-spacing:3.600000pt;}
.ws43{word-spacing:3.680000pt;}
.ws41{word-spacing:3.786667pt;}
.ws8d{word-spacing:3.840000pt;}
.wsb3{word-spacing:3.893333pt;}
.ws7c{word-spacing:3.946667pt;}
.wscd{word-spacing:4.000000pt;}
.ws22{word-spacing:4.032000pt;}
.ws66{word-spacing:4.053333pt;}
.ws53{word-spacing:4.106667pt;}
.ws99{word-spacing:4.160000pt;}
.wsc{word-spacing:4.176000pt;}
.ws81{word-spacing:4.213333pt;}
.wsd{word-spacing:4.224000pt;}
.ws98{word-spacing:4.320000pt;}
.wsaa{word-spacing:4.373333pt;}
.ws69{word-spacing:4.426667pt;}
.wsf3{word-spacing:4.464000pt;}
.ws5b{word-spacing:4.480000pt;}
.ws3c{word-spacing:4.533333pt;}
.ws90{word-spacing:4.586667pt;}
.ws23{word-spacing:4.608000pt;}
.ws6c{word-spacing:4.640000pt;}
.wsa0{word-spacing:4.693333pt;}
.ws27{word-spacing:4.746667pt;}
.ws52{word-spacing:4.800000pt;}
.ws30{word-spacing:4.853333pt;}
.ws87{word-spacing:4.960000pt;}
.ws80{word-spacing:5.066667pt;}
.wsd2{word-spacing:5.136000pt;}
.wscb{word-spacing:5.173333pt;}
.wsda{word-spacing:5.184000pt;}
.ws4a{word-spacing:5.226667pt;}
.ws32{word-spacing:5.280000pt;}
.ws4c{word-spacing:5.386667pt;}
.ws48{word-spacing:5.493333pt;}
.wsc2{word-spacing:5.600000pt;}
.ws1e{word-spacing:5.760000pt;}
.ws3a{word-spacing:5.813333pt;}
.wsad{word-spacing:5.866667pt;}
.ws97{word-spacing:6.026667pt;}
.ws70{word-spacing:6.080000pt;}
.ws1f{word-spacing:6.096000pt;}
.wsc3{word-spacing:6.133333pt;}
.wsed{word-spacing:6.144000pt;}
.wsdf{word-spacing:6.288000pt;}
.ws60{word-spacing:6.293333pt;}
.wsc6{word-spacing:6.560000pt;}
.ws72{word-spacing:6.613333pt;}
.wsd5{word-spacing:6.672000pt;}
.ws88{word-spacing:6.773333pt;}
.ws5f{word-spacing:7.146667pt;}
.ws2f{word-spacing:7.306667pt;}
.ws5c{word-spacing:7.413333pt;}
.wsb2{word-spacing:7.466667pt;}
.wscf{word-spacing:7.520000pt;}
.wsc9{word-spacing:7.626667pt;}
.ws20{word-spacing:7.680000pt;}
.ws94{word-spacing:7.786667pt;}
.ws8b{word-spacing:7.946667pt;}
.wsc1{word-spacing:8.000000pt;}
.ws5e{word-spacing:8.480000pt;}
.ws7{word-spacing:8.533333pt;}
.ws44{word-spacing:14.720000pt;}
.wsb9{word-spacing:29.056000pt;}
.ws9e{word-spacing:37.632000pt;}
.wsbc{word-spacing:39.722667pt;}
.ws24{word-spacing:48.213333pt;}
.ws8c{word-spacing:62.080000pt;}
.ws9f{word-spacing:77.568000pt;}
.wsb6{word-spacing:109.776000pt;}
.ws9c{word-spacing:110.832000pt;}
.ws9b{word-spacing:162.864000pt;}
.wsb5{word-spacing:183.936000pt;}
.ws9a{word-spacing:245.664000pt;}
.wsba{word-spacing:292.096000pt;}
.wsbb{word-spacing:340.864000pt;}
.wsb8{word-spacing:456.106667pt;}
.ws50{word-spacing:547.301333pt;}
._7{margin-left:-876.720000pt;}
._8{margin-left:-852.720000pt;}
._19{margin-left:-807.600000pt;}
._11{margin-left:-728.880000pt;}
._9{margin-left:-626.160000pt;}
._17{margin-left:-616.560000pt;}
._15{margin-left:-606.960000pt;}
._a{margin-left:-578.160000pt;}
._13{margin-left:-512.880000pt;}
._18{margin-left:-500.400000pt;}
._16{margin-left:-499.440000pt;}
._b{margin-left:-394.800000pt;}
._c{margin-left:-391.920000pt;}
._f{margin-left:-334.320000pt;}
._14{margin-left:-310.320000pt;}
._e{margin-left:-291.120000pt;}
._10{margin-left:-271.920000pt;}
._12{margin-left:-267.120000pt;}
._d{margin-left:-223.920000pt;}
._4b{margin-left:-87.776000pt;}
._59{margin-left:-23.253333pt;}
._5b{margin-left:-21.408000pt;}
._3a{margin-left:-9.386667pt;}
._5{margin-left:-4.800000pt;}
._39{margin-left:-3.360000pt;}
._6{margin-left:-2.400000pt;}
._1b{margin-left:-1.066667pt;}
._3{width:0.912000pt;}
._38{width:1.957333pt;}
._0{width:3.093333pt;}
._1c{width:4.746667pt;}
._5a{width:6.624000pt;}
._1a{width:7.520000pt;}
._55{width:42.709333pt;}
._1e{width:48.213333pt;}
._58{width:49.194667pt;}
._4c{width:53.376000pt;}
._33{width:54.698667pt;}
._37{width:55.680000pt;}
._52{width:58.922667pt;}
._1d{width:62.080000pt;}
._54{width:69.589333pt;}
._34{width:71.338667pt;}
._56{width:73.429333pt;}
._35{width:94.634667pt;}
._41{width:104.976000pt;}
._36{width:111.274667pt;}
._47{width:116.976000pt;}
._57{width:124.117333pt;}
._3e{width:125.136000pt;}
._31{width:130.032000pt;}
._3c{width:140.016000pt;}
._32{width:159.072000pt;}
._4d{width:160.512000pt;}
._50{width:166.058667pt;}
._53{width:171.178667pt;}
._23{width:178.224000pt;}
._26{width:186.384000pt;}
._4e{width:194.090667pt;}
._21{width:198.384000pt;}
._46{width:274.800000pt;}
._4f{width:283.904000pt;}
._2{width:292.193067pt;}
._4{width:300.718933pt;}
._30{width:301.776000pt;}
._1{width:326.400000pt;}
._40{width:352.080000pt;}
._51{width:356.778667pt;}
._3f{width:364.080000pt;}
._1f{width:366.144000pt;}
._25{width:389.232000pt;}
._24{width:401.232000pt;}
._2b{width:415.152000pt;}
._3b{width:420.240000pt;}
._20{width:442.512000pt;}
._4a{width:455.280000pt;}
._2e{width:480.432000pt;}
._3d{width:509.040000pt;}
._22{width:534.192000pt;}
._44{width:564.720000pt;}
._49{width:569.520000pt;}
._48{width:588.720000pt;}
._29{width:589.872000pt;}
._2d{width:594.672000pt;}
._2c{width:613.872000pt;}
._45{width:633.840000pt;}
._42{width:645.360000pt;}
._2f{width:651.792000pt;}
._2a{width:658.992000pt;}
._27{width:682.512000pt;}
._43{width:781.680000pt;}
._28{width:806.832000pt;}
.fs8{font-size:27.840000pt;}
.fs7{font-size:30.933333pt;}
.fs6{font-size:33.600000pt;}
.fs2{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:84.654933pt;}
.y6f{bottom:84.656267pt;}
.y6c{bottom:120.940933pt;}
.y41{bottom:120.961467pt;}
.y211{bottom:123.460800pt;}
.y18{bottom:126.128267pt;}
.y21c{bottom:126.570267pt;}
.y1f4{bottom:131.159200pt;}
.ycb{bottom:132.142267pt;}
.ya0{bottom:132.523600pt;}
.y40{bottom:136.508133pt;}
.y6b{bottom:136.540933pt;}
.y1cf{bottom:138.581600pt;}
.y210{bottom:138.794133pt;}
.y17{bottom:140.132267pt;}
.y21b{bottom:140.574267pt;}
.y24a{bottom:141.961600pt;}
.ye3{bottom:143.009333pt;}
.y1f3{bottom:146.860533pt;}
.yca{bottom:147.475600pt;}
.y9f{bottom:147.856933pt;}
.y3f{bottom:152.054800pt;}
.y6a{bottom:152.140933pt;}
.y1ce{bottom:153.914933pt;}
.y20f{bottom:154.127467pt;}
.y16{bottom:154.136267pt;}
.y21a{bottom:154.550267pt;}
.y249{bottom:155.965600pt;}
.ye2{bottom:158.342667pt;}
.y1f2{bottom:158.860533pt;}
.yc9{bottom:162.808933pt;}
.y9e{bottom:163.190267pt;}
.y1a7{bottom:164.345200pt;}
.y3e{bottom:167.601467pt;}
.y69{bottom:167.740933pt;}
.y15{bottom:168.140267pt;}
.y219{bottom:168.554267pt;}
.y18c{bottom:169.121733pt;}
.y187{bottom:169.133733pt;}
.y182{bottom:169.145733pt;}
.y17d{bottom:169.157733pt;}
.y178{bottom:169.169733pt;}
.y173{bottom:169.181733pt;}
.y1cd{bottom:169.248267pt;}
.y20e{bottom:169.460800pt;}
.y248{bottom:169.969600pt;}
.ye1{bottom:173.676000pt;}
.y1f1{bottom:174.572533pt;}
.y123{bottom:175.319200pt;}
.y1a6{bottom:177.678533pt;}
.yc8{bottom:178.142267pt;}
.y9d{bottom:178.523600pt;}
.y14{bottom:182.144267pt;}
.y218{bottom:182.558267pt;}
.y154{bottom:183.059067pt;}
.y18b{bottom:183.125733pt;}
.y186{bottom:183.137733pt;}
.y181{bottom:183.149733pt;}
.y17c{bottom:183.161733pt;}
.y177{bottom:183.173733pt;}
.y172{bottom:183.185733pt;}
.y68{bottom:183.340933pt;}
.y247{bottom:183.973600pt;}
.y1cc{bottom:184.581600pt;}
.y20d{bottom:184.794133pt;}
.ye0{bottom:189.009333pt;}
.y1f0{bottom:190.273867pt;}
.y103{bottom:190.342267pt;}
.y122{bottom:190.652533pt;}
.y1a5{bottom:191.011867pt;}
.yc7{bottom:193.475600pt;}
.y9c{bottom:193.856933pt;}
.y3d{bottom:194.492400pt;}
.y153{bottom:195.059067pt;}
.y13{bottom:196.148267pt;}
.y217{bottom:196.562267pt;}
.y18a{bottom:197.129733pt;}
.y185{bottom:197.141733pt;}
.y180{bottom:197.153733pt;}
.y17b{bottom:197.165733pt;}
.y176{bottom:197.177733pt;}
.y171{bottom:197.189733pt;}
.y246{bottom:197.977600pt;}
.y67{bottom:198.940933pt;}
.y20c{bottom:200.127467pt;}
.y1ef{bottom:202.273867pt;}
.y1a4{bottom:204.345200pt;}
.y102{bottom:205.675600pt;}
.y121{bottom:205.985867pt;}
.y152{bottom:207.059067pt;}
.yc6{bottom:208.808933pt;}
.y9b{bottom:209.190267pt;}
.y216{bottom:210.566267pt;}
.y189{bottom:211.133733pt;}
.y184{bottom:211.145733pt;}
.y17f{bottom:211.157733pt;}
.y17a{bottom:211.169733pt;}
.y175{bottom:211.181733pt;}
.y170{bottom:211.193733pt;}
.y1cb{bottom:211.248267pt;}
.y245{bottom:211.981600pt;}
.y66{bottom:214.540933pt;}
.y20b{bottom:215.460800pt;}
.ydf{bottom:215.676000pt;}
.y1a3{bottom:217.678533pt;}
.y1ee{bottom:217.985867pt;}
.y151{bottom:219.059067pt;}
.y101{bottom:221.008933pt;}
.yc5{bottom:224.142267pt;}
.y9a{bottom:224.523600pt;}
.y215{bottom:224.570267pt;}
.y188{bottom:225.137733pt;}
.y183{bottom:225.149733pt;}
.y17e{bottom:225.161733pt;}
.y179{bottom:225.173733pt;}
.y174{bottom:225.185733pt;}
.y16f{bottom:225.197733pt;}
.y244{bottom:225.985600pt;}
.y65{bottom:230.140933pt;}
.y20a{bottom:230.794133pt;}
.y150{bottom:231.059067pt;}
.y120{bottom:232.657867pt;}
.y1ed{bottom:233.697867pt;}
.y100{bottom:236.342267pt;}
.y12{bottom:236.816267pt;}
.y214{bottom:238.574267pt;}
.yc4{bottom:239.475600pt;}
.y99{bottom:239.856933pt;}
.y243{bottom:239.989600pt;}
.y1ca{bottom:241.914933pt;}
.yde{bottom:242.342933pt;}
.y64{bottom:245.740933pt;}
.y3c{bottom:246.000267pt;}
.y209{bottom:246.127467pt;}
.y14f{bottom:246.621733pt;}
.y1a2{bottom:248.355867pt;}
.y16e{bottom:249.317733pt;}
.y1ec{bottom:249.409867pt;}
.yff{bottom:251.675600pt;}
.y11{bottom:252.149600pt;}
.y213{bottom:252.578267pt;}
.y242{bottom:253.993600pt;}
.yc3{bottom:254.808933pt;}
.y98{bottom:255.190267pt;}
.y1c9{bottom:257.248267pt;}
.y14e{bottom:258.621733pt;}
.y63{bottom:261.340933pt;}
.y1eb{bottom:261.409867pt;}
.y208{bottom:261.460800pt;}
.yfe{bottom:267.008933pt;}
.y10{bottom:267.482933pt;}
.y241{bottom:267.997600pt;}
.yc2{bottom:270.142267pt;}
.y97{bottom:270.523600pt;}
.y14d{bottom:270.621733pt;}
.y1c8{bottom:272.581600pt;}
.y16d{bottom:273.437733pt;}
.y3b{bottom:274.440267pt;}
.y207{bottom:276.794133pt;}
.y62{bottom:276.940933pt;}
.y1ea{bottom:277.121867pt;}
.y212{bottom:277.915600pt;}
.y19f{bottom:279.033200pt;}
.y240{bottom:282.001600pt;}
.y14c{bottom:282.621733pt;}
.yf{bottom:282.816267pt;}
.yc1{bottom:285.475600pt;}
.y1a1{bottom:285.699867pt;}
.y16c{bottom:287.441733pt;}
.y1c7{bottom:287.914933pt;}
.y3a{bottom:288.660267pt;}
.y11f{bottom:288.698533pt;}
.y143{bottom:289.757733pt;}
.yfd{bottom:289.902267pt;}
.y141{bottom:291.464400pt;}
.y206{bottom:292.127467pt;}
.y19e{bottom:292.366533pt;}
.y61{bottom:292.540933pt;}
.y1e9{bottom:292.684533pt;}
.y14b{bottom:294.621733pt;}
.ydd{bottom:295.689600pt;}
.y23f{bottom:296.005600pt;}
.y1a0{bottom:299.033200pt;}
.yc0{bottom:300.808933pt;}
.y11e{bottom:302.702533pt;}
.y39{bottom:302.880267pt;}
.y1c6{bottom:303.248267pt;}
.y140{bottom:303.464400pt;}
.y1e8{bottom:304.684533pt;}
.yfc{bottom:305.235600pt;}
.y19d{bottom:305.699867pt;}
.y14a{bottom:306.621733pt;}
.y205{bottom:307.460800pt;}
.y60{bottom:308.140933pt;}
.y23e{bottom:310.009600pt;}
.ydc{bottom:311.022933pt;}
.y96{bottom:312.548933pt;}
.ybf{bottom:316.142267pt;}
.y1e7{bottom:316.684533pt;}
.y11d{bottom:316.706533pt;}
.y38{bottom:317.100267pt;}
.y16b{bottom:317.391600pt;}
.y1c5{bottom:318.581600pt;}
.y149{bottom:318.621733pt;}
.yfb{bottom:320.568933pt;}
.y5f{bottom:323.740933pt;}
.y23d{bottom:324.013600pt;}
.y95{bottom:326.552933pt;}
.y8a{bottom:326.588933pt;}
.ye{bottom:328.389600pt;}
.y11c{bottom:330.710533pt;}
.y37{bottom:331.320267pt;}
.ybe{bottom:331.475600pt;}
.y16a{bottom:332.727600pt;}
.y1c4{bottom:333.914933pt;}
.ydb{bottom:333.916267pt;}
.y204{bottom:334.129600pt;}
.y148{bottom:334.184400pt;}
.yfa{bottom:335.902267pt;}
.y23c{bottom:338.017600pt;}
.y19c{bottom:338.410533pt;}
.y5e{bottom:339.340933pt;}
.y94{bottom:340.556933pt;}
.y89{bottom:340.592933pt;}
.y1e6{bottom:341.833600pt;}
.yd{bottom:344.389600pt;}
.y11b{bottom:344.714533pt;}
.y36{bottom:345.540267pt;}
.ybd{bottom:346.808933pt;}
.y1c3{bottom:349.248267pt;}
.yda{bottom:349.249600pt;}
.y147{bottom:349.747067pt;}
.yf9{bottom:351.235600pt;}
.y23b{bottom:352.021600pt;}
.y19b{bottom:353.746533pt;}
.y93{bottom:354.560933pt;}
.y88{bottom:354.596933pt;}
.y5d{bottom:354.940933pt;}
.y1e5{bottom:357.169600pt;}
.y11a{bottom:358.718533pt;}
.y35{bottom:359.760267pt;}
.yc{bottom:360.389600pt;}
.ybc{bottom:362.142267pt;}
.y1c2{bottom:364.581600pt;}
.y203{bottom:364.582933pt;}
.y146{bottom:365.309733pt;}
.y23a{bottom:366.025600pt;}
.yf8{bottom:366.568933pt;}
.y92{bottom:368.564933pt;}
.y87{bottom:368.600933pt;}
.y5c{bottom:370.540933pt;}
.yd9{bottom:372.142933pt;}
.y1e4{bottom:372.486800pt;}
.y119{bottom:372.722533pt;}
.y34{bottom:373.980267pt;}
.yb{bottom:376.389600pt;}
.ybb{bottom:377.475600pt;}
.y169{bottom:378.727600pt;}
.y1c1{bottom:379.914933pt;}
.y202{bottom:379.916267pt;}
.y239{bottom:380.029600pt;}
.y145{bottom:380.872400pt;}
.y91{bottom:382.568933pt;}
.y86{bottom:382.604933pt;}
.y5b{bottom:386.140933pt;}
.yd8{bottom:387.476267pt;}
.y33{bottom:388.200267pt;}
.yf7{bottom:389.462267pt;}
.y118{bottom:390.506533pt;}
.ya{bottom:392.389600pt;}
.yba{bottom:392.808933pt;}
.y238{bottom:394.033600pt;}
.y168{bottom:394.060933pt;}
.y1c0{bottom:395.248267pt;}
.y201{bottom:395.249600pt;}
.y144{bottom:396.435067pt;}
.y90{bottom:396.572933pt;}
.y85{bottom:396.608933pt;}
.y5a{bottom:401.740933pt;}
.y19a{bottom:402.312400pt;}
.y32{bottom:402.420267pt;}
.yd7{bottom:402.809600pt;}
.y237{bottom:408.037600pt;}
.yb9{bottom:408.142267pt;}
.y117{bottom:408.290533pt;}
.y9{bottom:408.389600pt;}
.y167{bottom:409.394267pt;}
.y8f{bottom:410.576933pt;}
.y1bf{bottom:410.581600pt;}
.y200{bottom:410.582933pt;}
.y84{bottom:410.612933pt;}
.y142{bottom:411.997733pt;}
.yf6{bottom:412.355600pt;}
.y199{bottom:414.312400pt;}
.y1e3{bottom:417.270800pt;}
.y59{bottom:417.340933pt;}
.yd6{bottom:418.142933pt;}
.y236{bottom:422.041600pt;}
.yb8{bottom:423.475600pt;}
.y8{bottom:424.389600pt;}
.y1be{bottom:425.914933pt;}
.y1ff{bottom:425.916267pt;}
.y116{bottom:426.074533pt;}
.y198{bottom:426.312400pt;}
.y13f{bottom:427.549733pt;}
.yf5{bottom:427.688933pt;}
.y58{bottom:432.940933pt;}
.yd5{bottom:433.476267pt;}
.y1e2{bottom:433.830800pt;}
.y235{bottom:436.045600pt;}
.y197{bottom:438.312400pt;}
.y8e{bottom:438.572933pt;}
.y83{bottom:438.608933pt;}
.yb7{bottom:438.808933pt;}
.y115{bottom:440.078533pt;}
.y1bd{bottom:441.248267pt;}
.y1fe{bottom:441.249600pt;}
.yf4{bottom:443.022267pt;}
.y13e{bottom:443.112400pt;}
.y31{bottom:445.080267pt;}
.y57{bottom:448.540933pt;}
.yd4{bottom:448.809600pt;}
.y234{bottom:450.049600pt;}
.y196{bottom:450.312400pt;}
.y1e1{bottom:450.390800pt;}
.y8d{bottom:452.576933pt;}
.y13a{bottom:452.605733pt;}
.y82{bottom:452.612933pt;}
.yb6{bottom:454.142267pt;}
.y166{bottom:454.158000pt;}
.y1bc{bottom:456.581600pt;}
.y1fd{bottom:456.582933pt;}
.yf3{bottom:458.355600pt;}
.y13d{bottom:458.675067pt;}
.y233{bottom:464.053600pt;}
.y56{bottom:464.140933pt;}
.yd3{bottom:464.142933pt;}
.y114{bottom:464.366533pt;}
.y139{bottom:464.605733pt;}
.y7{bottom:464.990933pt;}
.y8c{bottom:466.580933pt;}
.y81{bottom:466.616933pt;}
.y1e0{bottom:466.950800pt;}
.yb5{bottom:469.475600pt;}
.y165{bottom:470.718000pt;}
.y1bb{bottom:471.914933pt;}
.y1fc{bottom:471.916267pt;}
.y195{bottom:473.427067pt;}
.y30{bottom:473.520267pt;}
.yf2{bottom:473.688933pt;}
.y13c{bottom:474.237733pt;}
.y232{bottom:478.057600pt;}
.yd2{bottom:479.476267pt;}
.y55{bottom:479.740933pt;}
.y8b{bottom:480.584933pt;}
.y80{bottom:480.620933pt;}
.y113{bottom:482.150533pt;}
.y1df{bottom:483.510800pt;}
.yb4{bottom:484.808933pt;}
.y1ba{bottom:487.248267pt;}
.y1fb{bottom:487.249600pt;}
.y164{bottom:487.278000pt;}
.y6{bottom:487.652267pt;}
.y2f{bottom:487.740267pt;}
.yf1{bottom:489.022267pt;}
.y13b{bottom:489.800400pt;}
.y231{bottom:492.061600pt;}
.yd1{bottom:494.809600pt;}
.y54{bottom:495.340933pt;}
.y112{bottom:496.154533pt;}
.y191{bottom:496.541733pt;}
.y1de{bottom:500.070800pt;}
.yb3{bottom:500.142267pt;}
.y2e{bottom:501.960267pt;}
.y194{bottom:502.547067pt;}
.y1b9{bottom:502.581600pt;}
.y1fa{bottom:502.582933pt;}
.y163{bottom:503.838000pt;}
.y138{bottom:505.352400pt;}
.y230{bottom:506.065600pt;}
.y7f{bottom:507.966133pt;}
.y190{bottom:508.541733pt;}
.yd0{bottom:510.142933pt;}
.y111{bottom:510.158533pt;}
.y53{bottom:510.940933pt;}
.yf0{bottom:511.915600pt;}
.y193{bottom:514.547067pt;}
.yb2{bottom:515.475600pt;}
.y2d{bottom:516.180267pt;}
.y1dd{bottom:516.630800pt;}
.y137{bottom:517.352400pt;}
.y1b8{bottom:517.914933pt;}
.y1f9{bottom:517.916267pt;}
.y22f{bottom:520.069600pt;}
.y162{bottom:520.398000pt;}
.y18f{bottom:520.541733pt;}
.y110{bottom:524.162533pt;}
.y25d{bottom:525.068933pt;}
.ycf{bottom:525.476267pt;}
.y52{bottom:526.540933pt;}
.y192{bottom:526.547067pt;}
.y133{bottom:529.277733pt;}
.y136{bottom:529.352400pt;}
.y2c{bottom:530.400267pt;}
.yb1{bottom:530.808933pt;}
.y18e{bottom:532.541733pt;}
.y1dc{bottom:533.190800pt;}
.y1b7{bottom:533.248267pt;}
.y1f8{bottom:533.249600pt;}
.y22e{bottom:534.073600pt;}
.yef{bottom:534.808933pt;}
.y5{bottom:534.878933pt;}
.y161{bottom:536.958000pt;}
.y25c{bottom:539.072933pt;}
.y7e{bottom:540.804267pt;}
.yce{bottom:540.809600pt;}
.y135{bottom:541.352400pt;}
.y10f{bottom:541.946533pt;}
.y51{bottom:542.140933pt;}
.y2b{bottom:544.620267pt;}
.yb0{bottom:546.142267pt;}
.y22d{bottom:548.077600pt;}
.y1b6{bottom:548.581600pt;}
.y1f7{bottom:548.582933pt;}
.y1db{bottom:549.750800pt;}
.yee{bottom:550.142267pt;}
.y25b{bottom:553.076933pt;}
.y134{bottom:553.352400pt;}
.y160{bottom:553.518000pt;}
.y7d{bottom:556.140267pt;}
.ycd{bottom:556.142933pt;}
.y4{bottom:557.540267pt;}
.y50{bottom:557.740933pt;}
.y2a{bottom:558.840267pt;}
.y10e{bottom:559.730533pt;}
.y18d{bottom:561.472933pt;}
.yaf{bottom:561.475600pt;}
.y22c{bottom:562.081600pt;}
.y1b5{bottom:563.914933pt;}
.y1f6{bottom:563.916267pt;}
.yed{bottom:565.475600pt;}
.y1da{bottom:566.430800pt;}
.y25a{bottom:567.080933pt;}
.y132{bottom:568.915067pt;}
.y15f{bottom:570.078000pt;}
.y7c{bottom:571.476267pt;}
.y29{bottom:573.060267pt;}
.y4f{bottom:573.340933pt;}
.y22b{bottom:576.085600pt;}
.yae{bottom:576.808933pt;}
.y10d{bottom:577.514533pt;}
.y1b4{bottom:579.248267pt;}
.y1f5{bottom:579.249600pt;}
.yec{bottom:580.808933pt;}
.y131{bottom:580.915067pt;}
.y259{bottom:581.084933pt;}
.y1d9{bottom:582.990800pt;}
.ycc{bottom:586.809600pt;}
.y12d{bottom:586.909733pt;}
.y28{bottom:587.280267pt;}
.y4e{bottom:588.940933pt;}
.y22a{bottom:590.089600pt;}
.y15e{bottom:590.418000pt;}
.y10c{bottom:591.518533pt;}
.yad{bottom:592.142267pt;}
.y130{bottom:592.915067pt;}
.y1b3{bottom:594.581600pt;}
.y12a{bottom:594.611067pt;}
.y258{bottom:595.088933pt;}
.yeb{bottom:596.142267pt;}
.y12c{bottom:598.909733pt;}
.y1d8{bottom:599.550800pt;}
.y27{bottom:601.500267pt;}
.y7b{bottom:602.142933pt;}
.y229{bottom:604.093600pt;}
.y4d{bottom:604.540933pt;}
.y3{bottom:604.766933pt;}
.y12f{bottom:604.915067pt;}
.y129{bottom:606.611067pt;}
.yac{bottom:607.475600pt;}
.y257{bottom:609.092933pt;}
.y1b2{bottom:609.914933pt;}
.y15d{bottom:610.878000pt;}
.yea{bottom:611.475600pt;}
.y26{bottom:615.720267pt;}
.y1d7{bottom:616.110800pt;}
.y12e{bottom:616.915067pt;}
.y7a{bottom:617.476267pt;}
.y228{bottom:618.097600pt;}
.y4c{bottom:620.140933pt;}
.y10b{bottom:621.468267pt;}
.yab{bottom:622.808933pt;}
.y256{bottom:623.096933pt;}
.y1b1{bottom:625.248267pt;}
.ye9{bottom:626.808933pt;}
.y2{bottom:627.428267pt;}
.y15c{bottom:627.438000pt;}
.y25{bottom:629.940267pt;}
.y227{bottom:632.101600pt;}
.y12b{bottom:632.467067pt;}
.y1d6{bottom:632.670800pt;}
.y79{bottom:632.809600pt;}
.y4b{bottom:635.740933pt;}
.y10a{bottom:636.804267pt;}
.y255{bottom:637.100933pt;}
.yaa{bottom:638.142267pt;}
.y1b0{bottom:640.581600pt;}
.ye8{bottom:642.142267pt;}
.y15b{bottom:643.998000pt;}
.y226{bottom:646.105600pt;}
.y78{bottom:648.142933pt;}
.y1d5{bottom:649.230800pt;}
.y1{bottom:650.089600pt;}
.y254{bottom:651.104933pt;}
.y4a{bottom:651.340933pt;}
.ya9{bottom:653.475600pt;}
.y1af{bottom:655.914933pt;}
.y128{bottom:657.467600pt;}
.ye7{bottom:657.475600pt;}
.y225{bottom:660.109600pt;}
.y15a{bottom:660.558000pt;}
.y77{bottom:663.476267pt;}
.y253{bottom:665.108933pt;}
.y1d4{bottom:665.790800pt;}
.y49{bottom:666.940933pt;}
.y109{bottom:667.476267pt;}
.ya8{bottom:668.808933pt;}
.y1ae{bottom:671.248267pt;}
.y24{bottom:672.600267pt;}
.y127{bottom:672.803600pt;}
.ye6{bottom:672.808933pt;}
.y224{bottom:674.113600pt;}
.y159{bottom:677.118000pt;}
.y76{bottom:678.809600pt;}
.y252{bottom:679.112933pt;}
.y48{bottom:682.540933pt;}
.y108{bottom:682.809600pt;}
.ya7{bottom:684.142267pt;}
.y1ad{bottom:686.581600pt;}
.y223{bottom:688.117600pt;}
.ye5{bottom:688.142267pt;}
.y1d3{bottom:691.910267pt;}
.y251{bottom:693.116933pt;}
.y158{bottom:693.678000pt;}
.y75{bottom:694.142933pt;}
.y47{bottom:698.140933pt;}
.y107{bottom:698.142933pt;}
.ya6{bottom:699.475600pt;}
.y23{bottom:701.040267pt;}
.y1ac{bottom:701.914933pt;}
.y222{bottom:702.121600pt;}
.ye4{bottom:703.475600pt;}
.y250{bottom:707.120933pt;}
.y1d2{bottom:707.246267pt;}
.y74{bottom:709.476267pt;}
.y106{bottom:713.476267pt;}
.y46{bottom:713.740933pt;}
.y157{bottom:714.018000pt;}
.ya5{bottom:714.808933pt;}
.y22{bottom:715.260267pt;}
.y221{bottom:716.125600pt;}
.y1ab{bottom:717.248267pt;}
.y126{bottom:718.808933pt;}
.y24f{bottom:721.124933pt;}
.y1d1{bottom:722.582267pt;}
.y73{bottom:724.809600pt;}
.y105{bottom:728.809600pt;}
.y45{bottom:729.340933pt;}
.y21{bottom:729.480267pt;}
.y220{bottom:730.129600pt;}
.ya4{bottom:730.142267pt;}
.y125{bottom:734.142267pt;}
.y24e{bottom:735.128933pt;}
.y156{bottom:740.137600pt;}
.y1aa{bottom:740.141600pt;}
.y72{bottom:740.142933pt;}
.y20{bottom:743.700267pt;}
.y21f{bottom:744.133600pt;}
.y104{bottom:744.142933pt;}
.y44{bottom:744.940933pt;}
.ya3{bottom:745.475600pt;}
.y24d{bottom:749.132933pt;}
.y124{bottom:749.475600pt;}
.y155{bottom:755.473600pt;}
.y1a9{bottom:755.474933pt;}
.y71{bottom:755.476267pt;}
.y1f{bottom:757.920267pt;}
.y21e{bottom:758.137600pt;}
.y43{bottom:760.540933pt;}
.y1d0{bottom:760.807600pt;}
.ya2{bottom:760.808933pt;}
.y24c{bottom:763.136933pt;}
.y1a8{bottom:770.808267pt;}
.y70{bottom:770.809600pt;}
.y1a{bottom:771.741600pt;}
.y1e{bottom:772.140267pt;}
.y21d{bottom:772.141600pt;}
.y42{bottom:776.140933pt;}
.ya1{bottom:776.142267pt;}
.y24b{bottom:777.140933pt;}
.y1d{bottom:807.454933pt;}
.y1c{bottom:807.455067pt;}
.y6e{bottom:807.456267pt;}
.y1b{bottom:818.655067pt;}
.y6d{bottom:818.656267pt;}
.h9{height:30.762667pt;}
.hc{height:32.016000pt;}
.hd{height:33.456000pt;}
.h7{height:35.157333pt;}
.he{height:35.626667pt;}
.h5{height:37.173333pt;}
.h6{height:39.552000pt;}
.h12{height:39.627200pt;}
.h15{height:39.664000pt;}
.hf{height:39.792000pt;}
.hb{height:39.946667pt;}
.h11{height:40.032000pt;}
.ha{height:40.080000pt;}
.h4{height:43.946667pt;}
.h3{height:52.042667pt;}
.h8{height:52.736000pt;}
.h13{height:59.434667pt;}
.h14{height:59.477333pt;}
.h2{height:61.525333pt;}
.h10{height:68.064000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:66.141333pt;}
.x30{left:68.961867pt;}
.x3c{left:70.275733pt;}
.x4f{left:74.065867pt;}
.x1e{left:83.269467pt;}
.x18{left:84.826800pt;}
.x1d{left:86.842800pt;}
.x19{left:90.266800pt;}
.x9{left:92.594667pt;}
.x1c{left:94.629467pt;}
.x3{left:103.933333pt;}
.x23{left:108.437333pt;}
.x3b{left:110.233067pt;}
.xe{left:111.829733pt;}
.x3d{left:113.209067pt;}
.x13{left:119.048000pt;}
.x61{left:119.961867pt;}
.x32{left:124.793067pt;}
.x5f{left:128.132933pt;}
.x2{left:130.393333pt;}
.x33{left:134.094400pt;}
.x31{left:136.206400pt;}
.x50{left:137.372533pt;}
.xf{left:138.289733pt;}
.x6{left:141.732667pt;}
.x14{left:145.501333pt;}
.x3e{left:146.937067pt;}
.x1a{left:148.602800pt;}
.x3f{left:150.990400pt;}
.x22{left:154.396133pt;}
.x12{left:156.844000pt;}
.x4c{left:161.116533pt;}
.x4b{left:163.505867pt;}
.x7{left:168.192667pt;}
.xd{left:170.961733pt;}
.xb{left:172.157333pt;}
.x5e{left:177.728933pt;}
.x51{left:181.084533pt;}
.x1f{left:182.717333pt;}
.x60{left:185.396933pt;}
.x8{left:187.842933pt;}
.x63{left:195.268133pt;}
.x6b{left:196.473467pt;}
.x62{left:197.988133pt;}
.x17{left:199.041867pt;}
.x21{left:200.212133pt;}
.x64{left:213.710800pt;}
.x5d{left:217.521867pt;}
.x40{left:219.726400pt;}
.x5{left:225.638400pt;}
.x52{left:227.463200pt;}
.xc{left:230.117333pt;}
.x35{left:240.163733pt;}
.x34{left:245.401067pt;}
.x20{left:255.317333pt;}
.x53{left:273.841867pt;}
.x54{left:277.895200pt;}
.x15{left:283.036267pt;}
.x1b{left:285.306800pt;}
.x16{left:290.488267pt;}
.x41{left:292.515733pt;}
.x4d{left:294.364533pt;}
.x42{left:296.569067pt;}
.x65{left:297.604133pt;}
.x66{left:299.417467pt;}
.x26{left:306.946667pt;}
.x28{left:310.306667pt;}
.x27{left:314.866667pt;}
.x24{left:320.542667pt;}
.xa{left:321.677467pt;}
.x55{left:324.273867pt;}
.x43{left:328.910400pt;}
.x44{left:331.577067pt;}
.x25{left:336.178667pt;}
.x37{left:341.251733pt;}
.x10{left:348.049733pt;}
.x36{left:354.585067pt;}
.x2a{left:365.374667pt;}
.x56{left:366.599200pt;}
.x45{left:367.971733pt;}
.x29{left:369.934667pt;}
.x11{left:374.509733pt;}
.x68{left:383.374800pt;}
.x67{left:385.966800pt;}
.x46{left:401.699733pt;}
.x58{left:412.977867pt;}
.x59{left:415.644533pt;}
.x57{left:417.031200pt;}
.x2c{left:423.442667pt;}
.x2b{left:428.002667pt;}
.x4e{left:431.516533pt;}
.x47{left:438.094400pt;}
.x48{left:440.761067pt;}
.x39{left:445.283733pt;}
.x3a{left:446.371733pt;}
.x69{left:457.252133pt;}
.x5a{left:459.356533pt;}
.x38{left:463.779733pt;}
.x6a{left:471.054800pt;}
.x49{left:474.489067pt;}
.x2d{left:480.730667pt;}
.x4{left:482.209200pt;}
.x2e{left:483.730667pt;}
.x5c{left:505.735200pt;}
.x5b{left:509.788533pt;}
.x4a{left:510.883733pt;}
.x2f{left:537.250667pt;}
}




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