
    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_38b8a5a69fa675fae2918fa7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.166000;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_c6f1bd7c1f067d453c73ee8c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.944000;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_2b2ac9d647bdd2870cd1e342.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.179000;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_9e1924983e215eead50db420.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.168000;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_812fecde6df1960305e54804.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.203900;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_66f80b50c0ff91adf3e8b72e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.135000;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_f15e57eaf459de6a139b3d3b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.194000;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_30ffea00f16879bbe32d8210.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.160000;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_7c7ef3cb23e94c9abdd497cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.163000;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_dd9253e86ae4d71e18a21aad.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.207000;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_4efc4fd81e67313dc4a82784.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v2{vertical-align:-37.933200px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:33.000000px;}
.v1{vertical-align:37.933200px;}
.v4{vertical-align:66.000000px;}
.ls1c{letter-spacing:-2.538000px;}
.ls13{letter-spacing:-2.214000px;}
.ls28{letter-spacing:-2.176200px;}
.ls27{letter-spacing:-1.674000px;}
.ls21{letter-spacing:-1.450800px;}
.ls1d{letter-spacing:-0.837000px;}
.ls25{letter-spacing:-0.510000px;}
.ls1e{letter-spacing:-0.480000px;}
.ls22{letter-spacing:-0.420000px;}
.ls15{letter-spacing:-0.300000px;}
.ls6{letter-spacing:-0.255000px;}
.ls1a{letter-spacing:-0.240000px;}
.ls3{letter-spacing:-0.204000px;}
.ls1b{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.153000px;}
.ls19{letter-spacing:-0.120000px;}
.ls8{letter-spacing:-0.060000px;}
.ls4{letter-spacing:-0.051000px;}
.ls1{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.060000px;}
.ls17{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.150000px;}
.lsa{letter-spacing:0.180000px;}
.lse{letter-spacing:0.240000px;}
.ls1f{letter-spacing:0.270000px;}
.ls0{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.306000px;}
.lsb{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.420000px;}
.ls11{letter-spacing:0.480000px;}
.ls20{letter-spacing:0.510000px;}
.lsd{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.600000px;}
.ls9{letter-spacing:0.660000px;}
.ls10{letter-spacing:0.780000px;}
.ls14{letter-spacing:0.918000px;}
.ls18{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.200000px;}
.ls26{letter-spacing:1.740000px;}
.ls23{letter-spacing:2.340000px;}
.ls24{letter-spacing:2.754000px;}
.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;}
}
.wsb4{word-spacing:-14.025000px;}
.wsb8{word-spacing:-13.716000px;}
.ws9c{word-spacing:-12.600000px;}
.wse5{word-spacing:-11.997000px;}
.ws24{word-spacing:-11.880000px;}
.ws54{word-spacing:-11.760000px;}
.ws55{word-spacing:-11.700000px;}
.ws80{word-spacing:-11.640000px;}
.ws57{word-spacing:-11.580000px;}
.ws1{word-spacing:-11.577000px;}
.ws42{word-spacing:-11.520000px;}
.ws72{word-spacing:-11.460000px;}
.ws41{word-spacing:-11.400000px;}
.ws73{word-spacing:-11.340000px;}
.ws6{word-spacing:-11.280000px;}
.wsa5{word-spacing:-11.220000px;}
.ws56{word-spacing:-11.160000px;}
.ws87{word-spacing:-11.100000px;}
.ws58{word-spacing:-11.040000px;}
.ws40{word-spacing:-10.980000px;}
.ws99{word-spacing:-10.965000px;}
.ws63{word-spacing:-10.800000px;}
.ws5a{word-spacing:-10.713600px;}
.ws5{word-spacing:-10.710000px;}
.wsae{word-spacing:-10.659000px;}
.ws23{word-spacing:-10.584000px;}
.ws53{word-spacing:-10.260000px;}
.ws74{word-spacing:-10.200000px;}
.ws4{word-spacing:-9.588000px;}
.ws2{word-spacing:-9.384000px;}
.ws3{word-spacing:-9.333000px;}
.wsa0{word-spacing:-3.300000px;}
.wsb0{word-spacing:-2.340000px;}
.ws35{word-spacing:-2.220000px;}
.ws12{word-spacing:-2.142000px;}
.wsa4{word-spacing:-2.100000px;}
.ws45{word-spacing:-2.040000px;}
.ws70{word-spacing:-1.980000px;}
.ws28{word-spacing:-1.920000px;}
.ws13{word-spacing:-1.887000px;}
.ws1f{word-spacing:-1.860000px;}
.ws34{word-spacing:-1.740000px;}
.wsa{word-spacing:-1.683000px;}
.ws8{word-spacing:-1.632000px;}
.ws82{word-spacing:-1.620000px;}
.ws9{word-spacing:-1.581000px;}
.ws2c{word-spacing:-1.560000px;}
.ws4c{word-spacing:-1.500000px;}
.ws1a{word-spacing:-1.440000px;}
.ws7c{word-spacing:-1.380000px;}
.ws71{word-spacing:-1.320000px;}
.ws30{word-spacing:-1.260000px;}
.ws15{word-spacing:-1.200000px;}
.wsa2{word-spacing:-1.140000px;}
.wsd{word-spacing:-1.122000px;}
.wse1{word-spacing:-1.116000px;}
.ws21{word-spacing:-1.080000px;}
.ws1d{word-spacing:-1.020000px;}
.ws20{word-spacing:-0.900000px;}
.ws66{word-spacing:-0.840000px;}
.wsd2{word-spacing:-0.781200px;}
.ws67{word-spacing:-0.780000px;}
.ws32{word-spacing:-0.720000px;}
.wsb6{word-spacing:-0.714000px;}
.ws36{word-spacing:-0.660000px;}
.wsf{word-spacing:-0.612000px;}
.ws38{word-spacing:-0.600000px;}
.wse8{word-spacing:-0.558000px;}
.wsb1{word-spacing:-0.540000px;}
.ws7f{word-spacing:-0.480000px;}
.ws44{word-spacing:-0.420000px;}
.ws4b{word-spacing:-0.360000px;}
.wsb7{word-spacing:-0.306000px;}
.ws37{word-spacing:-0.300000px;}
.wse2{word-spacing:-0.279000px;}
.ws22{word-spacing:-0.240000px;}
.wsc0{word-spacing:-0.223200px;}
.ws14{word-spacing:-0.204000px;}
.ws47{word-spacing:-0.180000px;}
.ws4e{word-spacing:-0.120000px;}
.ws0{word-spacing:-0.096000px;}
.wsb3{word-spacing:-0.051000px;}
.ws7{word-spacing:0.000000px;}
.ws48{word-spacing:0.060000px;}
.ws65{word-spacing:0.180000px;}
.ws10{word-spacing:0.204000px;}
.wsa1{word-spacing:0.240000px;}
.ws11{word-spacing:0.255000px;}
.ws29{word-spacing:0.300000px;}
.ws68{word-spacing:0.360000px;}
.ws8d{word-spacing:0.420000px;}
.ws7b{word-spacing:0.480000px;}
.ws1c{word-spacing:0.540000px;}
.ws86{word-spacing:0.600000px;}
.ws8c{word-spacing:0.660000px;}
.ws18{word-spacing:0.720000px;}
.ws9b{word-spacing:0.780000px;}
.ws8e{word-spacing:0.840000px;}
.ws51{word-spacing:0.900000px;}
.ws2a{word-spacing:0.960000px;}
.wse{word-spacing:0.969000px;}
.ws46{word-spacing:1.020000px;}
.ws8a{word-spacing:1.080000px;}
.ws7d{word-spacing:1.140000px;}
.ws2b{word-spacing:1.200000px;}
.ws3a{word-spacing:1.260000px;}
.wsb{word-spacing:1.275000px;}
.ws52{word-spacing:1.320000px;}
.wsc{word-spacing:1.377000px;}
.ws17{word-spacing:1.380000px;}
.ws50{word-spacing:1.440000px;}
.wsac{word-spacing:1.500000px;}
.ws84{word-spacing:1.620000px;}
.ws3f{word-spacing:1.680000px;}
.ws1e{word-spacing:1.740000px;}
.ws4a{word-spacing:1.800000px;}
.ws33{word-spacing:1.860000px;}
.ws19{word-spacing:1.920000px;}
.ws31{word-spacing:1.980000px;}
.ws85{word-spacing:2.040000px;}
.ws4d{word-spacing:2.100000px;}
.ws3c{word-spacing:2.160000px;}
.wse9{word-spacing:2.176200px;}
.ws9e{word-spacing:2.220000px;}
.ws4f{word-spacing:2.280000px;}
.ws1b{word-spacing:2.340000px;}
.ws16{word-spacing:2.400000px;}
.ws49{word-spacing:2.460000px;}
.ws3d{word-spacing:2.520000px;}
.ws89{word-spacing:2.580000px;}
.ws8f{word-spacing:2.700000px;}
.ws6e{word-spacing:2.820000px;}
.wsb2{word-spacing:2.940000px;}
.ws27{word-spacing:3.000000px;}
.wsa7{word-spacing:3.060000px;}
.ws8b{word-spacing:3.120000px;}
.ws2d{word-spacing:3.180000px;}
.ws6d{word-spacing:3.240000px;}
.ws2e{word-spacing:3.300000px;}
.ws9f{word-spacing:3.360000px;}
.wsa8{word-spacing:3.420000px;}
.ws7a{word-spacing:3.540000px;}
.ws6c{word-spacing:3.660000px;}
.ws6a{word-spacing:3.720000px;}
.ws3b{word-spacing:3.960000px;}
.ws7e{word-spacing:4.020000px;}
.ws83{word-spacing:4.080000px;}
.ws69{word-spacing:4.140000px;}
.ws2f{word-spacing:4.200000px;}
.ws6b{word-spacing:4.680000px;}
.ws3e{word-spacing:4.800000px;}
.wsad{word-spacing:5.040000px;}
.ws26{word-spacing:5.280000px;}
.ws6f{word-spacing:5.460000px;}
.ws39{word-spacing:6.180000px;}
.wsab{word-spacing:12.060000px;}
.wscd{word-spacing:25.345200px;}
.wsba{word-spacing:26.293200px;}
.wsbb{word-spacing:26.572200px;}
.wsc8{word-spacing:26.572800px;}
.wsd4{word-spacing:26.795400px;}
.wsd3{word-spacing:27.130200px;}
.wse3{word-spacing:29.697000px;}
.wsca{word-spacing:29.976600px;}
.wsc7{word-spacing:30.199800px;}
.wsc1{word-spacing:30.534000px;}
.wsd8{word-spacing:30.645600px;}
.wsc3{word-spacing:30.813000px;}
.wsc5{word-spacing:31.148400px;}
.wsd0{word-spacing:31.427400px;}
.wsd9{word-spacing:31.650000px;}
.wsdd{word-spacing:31.761600px;}
.wsd7{word-spacing:32.040600px;}
.wscf{word-spacing:32.041200px;}
.wsbe{word-spacing:32.319600px;}
.wsc2{word-spacing:32.877600px;}
.wse4{word-spacing:34.607400px;}
.wsd5{word-spacing:34.663200px;}
.wsdf{word-spacing:36.058200px;}
.wsde{word-spacing:36.393000px;}
.wsda{word-spacing:36.616200px;}
.wscc{word-spacing:37.621200px;}
.wsbd{word-spacing:38.067000px;}
.wsd6{word-spacing:39.015600px;}
.wsc4{word-spacing:39.016200px;}
.wscb{word-spacing:43.926600px;}
.wsbc{word-spacing:47.385600px;}
.wsa3{word-spacing:106.440000px;}
.wsb9{word-spacing:172.976400px;}
.ws77{word-spacing:196.656000px;}
.wsa9{word-spacing:196.678800px;}
.wsc6{word-spacing:235.867200px;}
.wsc9{word-spacing:260.586600px;}
.wsdb{word-spacing:308.184600px;}
.wsce{word-spacing:309.076800px;}
.wsdc{word-spacing:328.495800px;}
.wse6{word-spacing:334.152600px;}
.ws5c{word-spacing:335.337000px;}
.ws60{word-spacing:343.393800px;}
.ws5d{word-spacing:343.394400px;}
.ws93{word-spacing:344.805000px;}
.ws5b{word-spacing:345.288000px;}
.ws59{word-spacing:360.948000px;}
.ws61{word-spacing:368.371200px;}
.ws5f{word-spacing:371.357400px;}
.ws91{word-spacing:387.324600px;}
.ws94{word-spacing:395.359800px;}
.ws90{word-spacing:421.600800px;}
.ws98{word-spacing:443.458800px;}
.ws96{word-spacing:464.328600px;}
.ws95{word-spacing:474.148200px;}
.ws92{word-spacing:476.603400px;}
.ws5e{word-spacing:502.782600px;}
.ws97{word-spacing:506.065200px;}
.ws75{word-spacing:926.736000px;}
.ws78{word-spacing:1185.072000px;}
.wsbf{word-spacing:1223.316000px;}
.wse0{word-spacing:1224.504000px;}
.ws25{word-spacing:1226.880000px;}
.ws64{word-spacing:1227.096000px;}
.ws81{word-spacing:1227.690000px;}
.wsaf{word-spacing:1228.284000px;}
.wsa6{word-spacing:1228.554000px;}
.ws9a{word-spacing:1230.174000px;}
.ws76{word-spacing:1284.528000px;}
.wse7{word-spacing:1598.022000px;}
.wsd1{word-spacing:1603.692000px;}
.wsb5{word-spacing:1604.556000px;}
.ws43{word-spacing:1604.934000px;}
.ws9d{word-spacing:1605.960000px;}
.wsaa{word-spacing:1606.122000px;}
.ws88{word-spacing:1606.932000px;}
.ws79{word-spacing:1607.634000px;}
.ws62{word-spacing:1630.008600px;}
._19{margin-left:-1229.415900px;}
._8{margin-left:-1227.380400px;}
._3b{margin-left:-1224.831000px;}
._20{margin-left:-1222.482000px;}
._17{margin-left:-629.424000px;}
._16{margin-left:-621.168000px;}
._10{margin-left:-503.712000px;}
._f{margin-left:-465.648000px;}
._15{margin-left:-426.720000px;}
._14{margin-left:-418.512000px;}
._11{margin-left:-415.248000px;}
._13{margin-left:-383.040000px;}
._12{margin-left:-370.272000px;}
._1d{margin-left:-106.611000px;}
._1e{margin-left:-10.057800px;}
._1f{margin-left:-8.355900px;}
._6{margin-left:-6.476700px;}
._4{margin-left:-5.406000px;}
._9{margin-left:-4.223700px;}
._0{margin-left:-2.400000px;}
._2{margin-left:-1.087200px;}
._1{width:1.426800px;}
._5{width:2.501700px;}
._3{width:3.596700px;}
._7{width:4.986000px;}
._18{width:6.193200px;}
._b{width:8.880000px;}
._1c{width:20.040000px;}
._4d{width:33.146400px;}
._37{width:43.804200px;}
._30{width:51.393600px;}
._28{width:54.127200px;}
._25{width:55.186800px;}
._4f{width:60.459600px;}
._51{width:68.077800px;}
._2b{width:86.127600px;}
._2a{width:87.313800px;}
._4b{width:128.787600px;}
._39{width:138.691800px;}
._46{width:140.115600px;}
._34{width:141.271800px;}
._3a{width:142.443600px;}
._3d{width:151.999200px;}
._40{width:159.310200px;}
._c{width:163.318800px;}
._57{width:167.301000px;}
._5a{width:170.983800px;}
._6e{width:173.885400px;}
._36{width:176.649000px;}
._44{width:177.751800px;}
._76{width:182.757600px;}
._6d{width:184.564800px;}
._6f{width:185.792400px;}
._26{width:188.179800px;}
._23{width:190.864200px;}
._3e{width:195.774600px;}
._32{width:198.196200px;}
._2e{width:199.709400px;}
._47{width:206.168700px;}
._52{width:214.001400px;}
._e{width:217.392000px;}
._5c{width:220.053600px;}
._27{width:221.344800px;}
._d{width:225.408000px;}
._24{width:227.190600px;}
._35{width:228.557400px;}
._42{width:237.289800px;}
._41{width:239.669400px;}
._72{width:266.702400px;}
._73{width:272.170800px;}
._77{width:274.570200px;}
._69{width:278.142000px;}
._63{width:279.257400px;}
._59{width:281.433600px;}
._56{width:293.598000px;}
._66{width:296.276400px;}
._5f{width:300.573600px;}
._71{width:302.749200px;}
._6a{width:308.390400px;}
._61{width:309.556800px;}
._67{width:310.874400px;}
._75{width:312.402600px;}
._6c{width:313.913400px;}
._60{width:315.729000px;}
._70{width:319.182000px;}
._64{width:320.974200px;}
._5d{width:322.759800px;}
._74{width:325.627200px;}
._79{width:326.743200px;}
._78{width:328.116600px;}
._45{width:339.216600px;}
._55{width:356.234400px;}
._50{width:366.837600px;}
._a{width:384.474900px;}
._5e{width:402.800400px;}
._31{width:421.945800px;}
._62{width:433.489800px;}
._2d{width:457.825800px;}
._54{width:462.699000px;}
._22{width:465.796500px;}
._1a{width:490.434900px;}
._58{width:509.712000px;}
._29{width:528.858000px;}
._33{width:530.197800px;}
._1b{width:535.305600px;}
._4e{width:542.551800px;}
._3f{width:563.532600px;}
._21{width:603.852300px;}
._3c{width:607.253700px;}
._53{width:620.187300px;}
._68{width:655.238400px;}
._65{width:670.806600px;}
._6b{width:690.672000px;}
._4a{width:717.094200px;}
._5b{width:721.361400px;}
._2f{width:747.818400px;}
._49{width:768.597600px;}
._2c{width:778.229400px;}
._4c{width:786.509400px;}
._48{width:904.089600px;}
._43{width:952.179600px;}
._38{width:1092.495000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:55.800000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y72{bottom:-1275.330150px;}
.y73{bottom:-1248.090150px;}
.y71{bottom:-1194.198150px;}
.y6b{bottom:-1193.994150px;}
.y6c{bottom:-1178.586150px;}
.y6e{bottom:-1135.842150px;}
.y6a{bottom:-1127.262150px;}
.y70{bottom:-1060.086150px;}
.y6d{bottom:-1058.370150px;}
.y6f{bottom:-1044.330150px;}
.y96{bottom:-961.463550px;}
.y97{bottom:-934.223550px;}
.y95{bottom:-880.331550px;}
.y8f{bottom:-880.127550px;}
.y69{bottom:-869.550150px;}
.y90{bottom:-864.719550px;}
.y68{bottom:-830.814150px;}
.y92{bottom:-821.975550px;}
.y8e{bottom:-813.395550px;}
.y65{bottom:-806.214150px;}
.y63{bottom:-802.914150px;}
.y64{bottom:-788.166150px;}
.y66{bottom:-777.078150px;}
.y94{bottom:-746.219550px;}
.y91{bottom:-744.503550px;}
.y93{bottom:-730.463550px;}
.yc1{bottom:-681.095100px;}
.y67{bottom:-668.862150px;}
.yc2{bottom:-653.855100px;}
.yc0{bottom:-599.963100px;}
.yba{bottom:-599.759100px;}
.y62{bottom:-585.450150px;}
.ybb{bottom:-584.351100px;}
.y8d{bottom:-555.683550px;}
.y61{bottom:-553.746150px;}
.ybd{bottom:-541.607100px;}
.yb9{bottom:-533.027100px;}
.y8c{bottom:-516.947550px;}
.y89{bottom:-492.347550px;}
.y87{bottom:-489.047550px;}
.y88{bottom:-474.299550px;}
.ybf{bottom:-465.851100px;}
.ybc{bottom:-464.135100px;}
.y8a{bottom:-463.211550px;}
.ybe{bottom:-450.095100px;}
.y60{bottom:-420.354150px;}
.y5e{bottom:-418.962150px;}
.ye5{bottom:-397.882500px;}
.y5f{bottom:-387.294150px;}
.ye6{bottom:-370.642500px;}
.y8b{bottom:-354.995550px;}
.ye4{bottom:-316.750500px;}
.yde{bottom:-316.546500px;}
.ydf{bottom:-301.138500px;}
.y5b{bottom:-283.218150px;}
.yb8{bottom:-275.315100px;}
.y86{bottom:-271.583550px;}
.ye1{bottom:-258.394500px;}
.ydd{bottom:-249.814500px;}
.y85{bottom:-239.879550px;}
.yb7{bottom:-236.579100px;}
.yb4{bottom:-211.979100px;}
.yb2{bottom:-208.679100px;}
.yb3{bottom:-193.931100px;}
.yb5{bottom:-182.843100px;}
.ye3{bottom:-182.638500px;}
.ye0{bottom:-180.922500px;}
.y55{bottom:-173.430150px;}
.ye2{bottom:-166.882500px;}
.y57{bottom:-153.378150px;}
.y58{bottom:-141.366150px;}
.y5a{bottom:-122.502150px;}
.y56{bottom:-122.274150px;}
.y5d{bottom:-113.538150px;}
.y84{bottom:-106.487550px;}
.y82{bottom:-105.095550px;}
.y5c{bottom:-90.810150px;}
.y59{bottom:-89.022150px;}
.yb6{bottom:-74.627100px;}
.y83{bottom:-73.427550px;}
.y0{bottom:0.000000px;}
.y43{bottom:91.318050px;}
.y13d{bottom:94.328550px;}
.y42{bottom:109.768050px;}
.y13c{bottom:111.578550px;}
.y4f{bottom:128.218050px;}
.y24{bottom:128.218200px;}
.y13b{bottom:128.828550px;}
.y162{bottom:130.784700px;}
.y1d4{bottom:135.780600px;}
.y13a{bottom:146.078550px;}
.y23{bottom:146.668050px;}
.y161{bottom:147.284700px;}
.y1b3{bottom:150.971100px;}
.y9f{bottom:157.814100px;}
.y1b2{bottom:159.221100px;}
.y1d3{bottom:161.059200px;}
.y139{bottom:163.328550px;}
.y15e{bottom:163.784700px;}
.y22{bottom:165.118050px;}
.ya0{bottom:173.481000px;}
.y1d2{bottom:180.025650px;}
.y160{bottom:180.284700px;}
.y138{bottom:180.578550px;}
.yb1{bottom:182.271450px;}
.y4e{bottom:183.568050px;}
.y21{bottom:183.568200px;}
.y1b1{bottom:186.437550px;}
.y10e{bottom:188.368050px;}
.y15f{bottom:196.784550px;}
.y137{bottom:197.828550px;}
.y1d1{bottom:198.992100px;}
.y20{bottom:202.018050px;}
.y1b0{bottom:202.937550px;}
.y10d{bottom:205.618050px;}
.y1ad{bottom:211.187550px;}
.yb0{bottom:213.975450px;}
.y136{bottom:215.078550px;}
.y15d{bottom:215.751000px;}
.y1d0{bottom:217.958550px;}
.y1af{bottom:219.437550px;}
.y1f{bottom:220.468050px;}
.y10c{bottom:222.868050px;}
.y15c{bottom:232.251000px;}
.y135{bottom:232.328550px;}
.y1ae{bottom:235.937550px;}
.y1cf{bottom:236.925000px;}
.y1e{bottom:238.918050px;}
.y159{bottom:240.501000px;}
.y18c{bottom:241.192650px;}
.y15b{bottom:248.751000px;}
.y134{bottom:249.578550px;}
.y1ac{bottom:254.904000px;}
.y1ce{bottom:255.891300px;}
.y1d{bottom:257.368050px;}
.y15a{bottom:265.251000px;}
.y18b{bottom:266.471100px;}
.y133{bottom:266.828550px;}
.y1ab{bottom:273.870450px;}
.y1cd{bottom:274.857750px;}
.y4d{bottom:275.818050px;}
.y1c{bottom:275.818200px;}
.y1aa{bottom:282.120450px;}
.y132{bottom:284.078550px;}
.y158{bottom:284.217450px;}
.y18a{bottom:285.437550px;}
.yd5{bottom:292.003050px;}
.y189{bottom:293.687550px;}
.y1cc{bottom:293.824200px;}
.y1b{bottom:294.268050px;}
.y157{bottom:300.717450px;}
.y131{bottom:301.328550px;}
.y1a9{bottom:309.336900px;}
.y75{bottom:310.972500px;}
.yaa{bottom:311.020500px;}
.y1a{bottom:312.718050px;}
.y1cb{bottom:312.790650px;}
.y74{bottom:313.918050px;}
.y1a8{bottom:317.586900px;}
.y130{bottom:318.578550px;}
.y188{bottom:320.904000px;}
.y78{bottom:322.894350px;}
.yd4{bottom:323.707050px;}
.y19{bottom:331.168050px;}
.y1ca{bottom:331.757100px;}
.y12f{bottom:335.828550px;}
.y156{bottom:336.183900px;}
.y187{bottom:339.870450px;}
.y7f{bottom:341.616750px;}
.y1a7{bottom:344.803350px;}
.yaf{bottom:347.367450px;}
.y186{bottom:348.120450px;}
.yad{bottom:348.759450px;}
.y18{bottom:349.618050px;}
.y1c9{bottom:350.723550px;}
.y155{bottom:352.683900px;}
.y12e{bottom:353.078550px;}
.y1a6{bottom:363.769800px;}
.y4c{bottom:368.068050px;}
.y41{bottom:368.068200px;}
.y1c8{bottom:369.690000px;}
.y12d{bottom:370.328550px;}
.y185{bottom:375.336900px;}
.y1a5{bottom:380.269800px;}
.yae{bottom:380.427450px;}
.y17{bottom:386.518050px;}
.y12c{bottom:387.578550px;}
.y154{bottom:388.150350px;}
.y1c7{bottom:388.656450px;}
.y184{bottom:394.303350px;}
.y77{bottom:404.362350px;}
.y153{bottom:404.650350px;}
.y12b{bottom:404.828550px;}
.y40{bottom:404.968050px;}
.y1c6{bottom:407.622900px;}
.y183{bottom:413.269800px;}
.y1a4{bottom:415.736250px;}
.y100{bottom:415.792650px;}
.ya4{bottom:420.808500px;}
.y12a{bottom:422.078550px;}
.y3f{bottom:423.418050px;}
.y1c5{bottom:426.589350px;}
.y182{bottom:429.769800px;}
.y1a3{bottom:432.236250px;}
.y129{bottom:439.328550px;}
.y152{bottom:440.116800px;}
.y16{bottom:440.303700px;}
.ya6{bottom:440.860500px;}
.y3e{bottom:441.868050px;}
.y4a{bottom:442.028400px;}
.y1c4{bottom:445.555800px;}
.y181{bottom:446.269800px;}
.y151{bottom:448.366800px;}
.y79{bottom:451.404750px;}
.ya7{bottom:452.872500px;}
.y17d{bottom:454.519800px;}
.yff{bottom:454.528650px;}
.y128{bottom:456.578550px;}
.yd3{bottom:457.099050px;}
.y15{bottom:457.553700px;}
.yd1{bottom:458.491050px;}
.yc3{bottom:460.318050px;}
.y3d{bottom:460.318200px;}
.y180{bottom:462.769800px;}
.y1c3{bottom:464.522250px;}
.y49{bottom:467.307000px;}
.y1a2{bottom:467.702700px;}
.y76{bottom:470.710350px;}
.y7b{bottom:471.456750px;}
.ya9{bottom:471.736500px;}
.ya5{bottom:471.964500px;}
.y127{bottom:473.828550px;}
.y3c{bottom:478.768050px;}
.yfc{bottom:479.128650px;}
.y17f{bottom:479.269800px;}
.yac{bottom:480.700500px;}
.yfa{bottom:482.428650px;}
.y7c{bottom:483.468750px;}
.y1c2{bottom:483.488550px;}
.y48{bottom:486.273450px;}
.y1a1{bottom:486.669000px;}
.yd2{bottom:490.159050px;}
.y126{bottom:491.078550px;}
.y14{bottom:492.053700px;}
.y9e{bottom:492.610050px;}
.y1a0{bottom:494.919000px;}
.y47{bottom:495.756600px;}
.y17e{bottom:495.769800px;}
.yfb{bottom:497.176650px;}
.y3b{bottom:497.218050px;}
.y7e{bottom:502.332750px;}
.y1c1{bottom:502.455000px;}
.y7a{bottom:502.560750px;}
.yab{bottom:503.428500px;}
.ya8{bottom:505.216500px;}
.yfd{bottom:508.264650px;}
.y125{bottom:508.328550px;}
.y13{bottom:509.303700px;}
.y81{bottom:511.300650px;}
.y17c{bottom:514.736250px;}
.y3a{bottom:515.668050px;}
.y9d{bottom:517.888650px;}
.y1c0{bottom:521.421450px;}
.y19f{bottom:522.135600px;}
.y46{bottom:524.206350px;}
.y124{bottom:525.578550px;}
.y17b{bottom:533.702700px;}
.y80{bottom:534.027600px;}
.y39{bottom:534.118050px;}
.y7d{bottom:535.812750px;}
.y9c{bottom:536.855100px;}
.y1bf{bottom:540.387900px;}
.y19e{bottom:541.101900px;}
.y17a{bottom:541.952700px;}
.y123{bottom:542.828550px;}
.y45{bottom:543.172650px;}
.y12{bottom:543.803700px;}
.y38{bottom:552.568050px;}
.y9b{bottom:555.821400px;}
.y19d{bottom:557.601900px;}
.y1be{bottom:559.354350px;}
.y122{bottom:560.078550px;}
.y150{bottom:560.461050px;}
.y11{bottom:561.053700px;}
.y179{bottom:569.169150px;}
.y37{bottom:571.018050px;}
.y19a{bottom:574.101900px;}
.y9a{bottom:574.787850px;}
.y121{bottom:577.328550px;}
.y14f{bottom:577.711050px;}
.y10{bottom:578.303700px;}
.y1bd{bottom:578.320800px;}
.y178{bottom:588.135600px;}
.y4b{bottom:589.468050px;}
.y36{bottom:589.468200px;}
.y19c{bottom:590.601900px;}
.y99{bottom:593.754300px;}
.yce{bottom:594.235050px;}
.y120{bottom:594.578550px;}
.y14e{bottom:594.961050px;}
.yf{bottom:595.553700px;}
.y1bc{bottom:597.287250px;}
.ya3{bottom:603.268500px;}
.y176{bottom:604.635600px;}
.y19b{bottom:607.101900px;}
.y35{bottom:607.918050px;}
.y11f{bottom:611.828550px;}
.y14d{bottom:612.211050px;}
.y98{bottom:612.720750px;}
.ye{bottom:612.803700px;}
.y1bb{bottom:616.253700px;}
.yfe{bottom:616.480650px;}
.y177{bottom:621.135600px;}
.y199{bottom:626.068350px;}
.y34{bottom:626.368050px;}
.y11e{bottom:629.078550px;}
.y14c{bottom:629.461050px;}
.yd{bottom:630.053700px;}
.y10b{bottom:630.654000px;}
.y1ba{bottom:635.220150px;}
.y175{bottom:640.101900px;}
.y198{bottom:642.568350px;}
.ye8{bottom:644.115000px;}
.y33{bottom:644.818050px;}
.y11d{bottom:646.328550px;}
.y14b{bottom:646.711050px;}
.yc{bottom:647.303700px;}
.y109{bottom:654.125250px;}
.y1b9{bottom:654.186600px;}
.y174{bottom:656.601900px;}
.y197{bottom:659.068350px;}
.ye7{bottom:660.654000px;}
.y32{bottom:663.268050px;}
.y11c{bottom:663.578550px;}
.y14a{bottom:663.961050px;}
.yb{bottom:664.553700px;}
.y171{bottom:664.851900px;}
.y194{bottom:667.318350px;}
.y173{bottom:673.101900px;}
.y196{bottom:675.568350px;}
.yc4{bottom:676.062000px;}
.y11b{bottom:680.828550px;}
.y10a{bottom:681.365250px;}
.y31{bottom:681.718200px;}
.ya{bottom:681.803700px;}
.ydc{bottom:683.961600px;}
.ya2{bottom:684.736500px;}
.y172{bottom:689.601900px;}
.y195{bottom:692.068350px;}
.y11a{bottom:698.078550px;}
.y9{bottom:699.053700px;}
.yf9{bottom:699.892650px;}
.y30{bottom:700.168050px;}
.yc8{bottom:704.023050px;}
.y50{bottom:704.154000px;}
.y170{bottom:708.568350px;}
.y119{bottom:715.328550px;}
.y149{bottom:715.711050px;}
.y1b8{bottom:716.289900px;}
.y8{bottom:716.303700px;}
.y2f{bottom:718.618050px;}
.y54{bottom:718.972500px;}
.ydb{bottom:722.697600px;}
.yca{bottom:724.075050px;}
.y16f{bottom:725.068350px;}
.y193{bottom:727.534800px;}
.y53{bottom:728.005950px;}
.yf8{bottom:731.596650px;}
.y118{bottom:732.578550px;}
.y148{bottom:732.961050px;}
.y16c{bottom:733.318350px;}
.y7{bottom:733.553700px;}
.y108{bottom:735.254250px;}
.y102{bottom:735.458250px;}
.y192{bottom:735.784800px;}
.ycb{bottom:736.087050px;}
.y2e{bottom:737.068050px;}
.y16e{bottom:741.568350px;}
.yd8{bottom:747.297600px;}
.y117{bottom:749.828550px;}
.y147{bottom:750.211050px;}
.yd6{bottom:750.597600px;}
.y6{bottom:750.803700px;}
.y103{bottom:750.866250px;}
.ya1{bottom:751.084500px;}
.ycd{bottom:754.951050px;}
.yc9{bottom:755.179050px;}
.y2d{bottom:755.518050px;}
.y16d{bottom:758.068350px;}
.y1b7{bottom:760.534800px;}
.y191{bottom:763.001250px;}
.yd0{bottom:763.915050px;}
.yd7{bottom:765.345600px;}
.y116{bottom:767.078550px;}
.y146{bottom:767.461050px;}
.y5{bottom:768.053700px;}
.y1b6{bottom:768.784950px;}
.y2c{bottom:773.968200px;}
.yd9{bottom:776.433600px;}
.y16b{bottom:777.034950px;}
.y190{bottom:779.501250px;}
.y115{bottom:784.328550px;}
.y145{bottom:784.711050px;}
.y4{bottom:785.303700px;}
.ycf{bottom:786.643050px;}
.y18f{bottom:787.751250px;}
.ycc{bottom:788.431050px;}
.y2b{bottom:792.418050px;}
.y105{bottom:793.610250px;}
.y16a{bottom:796.001250px;}
.y114{bottom:801.578550px;}
.y144{bottom:801.961050px;}
.y101{bottom:802.190250px;}
.y52{bottom:809.472600px;}
.y2a{bottom:810.868050px;}
.y169{bottom:812.501250px;}
.y1b5{bottom:814.967700px;}
.y113{bottom:818.828550px;}
.y143{bottom:819.211050px;}
.y3{bottom:819.803700px;}
.y166{bottom:820.751250px;}
.y168{bottom:829.001250px;}
.y29{bottom:829.318050px;}
.y18e{bottom:831.467700px;}
.y112{bottom:836.078550px;}
.y142{bottom:836.461050px;}
.y1b4{bottom:839.717700px;}
.y167{bottom:845.501250px;}
.y28{bottom:847.768050px;}
.y18d{bottom:847.967700px;}
.y111{bottom:853.328550px;}
.y141{bottom:853.711050px;}
.y165{bottom:864.467700px;}
.yf7{bottom:864.988650px;}
.y27{bottom:866.218200px;}
.yf5{bottom:866.380650px;}
.y107{bottom:869.366250px;}
.y110{bottom:870.578550px;}
.y2{bottom:870.803700px;}
.y140{bottom:870.961050px;}
.y104{bottom:871.082250px;}
.y51{bottom:875.820600px;}
.y164{bottom:883.434150px;}
.yda{bottom:884.649600px;}
.y44{bottom:884.668050px;}
.y106{bottom:885.122250px;}
.yc7{bottom:886.483050px;}
.y13f{bottom:888.211050px;}
.y163{bottom:891.684150px;}
.y1{bottom:896.303700px;}
.yf6{bottom:898.048650px;}
.y26{bottom:903.118050px;}
.y10f{bottom:905.078550px;}
.y13e{bottom:905.461050px;}
.y25{bottom:955.942350px;}
.yc6{bottom:967.951050px;}
.yf2{bottom:1002.124650px;}
.yc5{bottom:1034.299050px;}
.yec{bottom:1111.912650px;}
.yee{bottom:1131.964650px;}
.yef{bottom:1143.976650px;}
.yf1{bottom:1162.840650px;}
.yed{bottom:1163.068650px;}
.yf4{bottom:1171.804650px;}
.yf3{bottom:1194.532650px;}
.yf0{bottom:1196.320650px;}
.yeb{bottom:1294.372650px;}
.yea{bottom:1375.840650px;}
.ye9{bottom:1442.188650px;}
.hd{height:43.056000px;}
.h16{height:45.441000px;}
.hc{height:45.696000px;}
.h5{height:46.002000px;}
.h15{height:47.073000px;}
.h4{height:47.226000px;}
.h9{height:48.378600px;}
.h19{height:49.717800px;}
.ha{height:49.996800px;}
.h8{height:51.138000px;}
.h7{height:54.120000px;}
.h13{height:55.380000px;}
.h6{height:55.560000px;}
.hf{height:56.820000px;}
.h3{height:68.184000px;}
.h17{height:81.378600px;}
.h1c{height:82.717800px;}
.h1b{height:82.996800px;}
.h1d{height:82.997400px;}
.hb{height:87.930000px;}
.h2{height:88.896000px;}
.h18{height:115.717800px;}
.h1a{height:115.996800px;}
.he{height:208.521000px;}
.h11{height:237.100500px;}
.h10{height:261.000000px;}
.h12{height:266.205000px;}
.h14{height:275.845500px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:358.404000px;}
.w4{width:405.000000px;}
.w3{width:411.460500px;}
.w6{width:492.165000px;}
.w5{width:513.070500px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x1d{left:-22.639200px;}
.x16{left:-12.415200px;}
.x56{left:-10.655850px;}
.x3c{left:-5.869800px;}
.x0{left:0.000000px;}
.x1e{left:4.372800px;}
.x26{left:6.244800px;}
.x57{left:16.356150px;}
.x5f{left:18.228150px;}
.x3d{left:21.142200px;}
.x43{left:23.014200px;}
.x84{left:28.244850px;}
.x12{left:31.420800px;}
.x21{left:33.700800px;}
.x48{left:38.060250px;}
.x15{left:39.820800px;}
.x2a{left:42.844500px;}
.xc{left:44.236800px;}
.x5a{left:45.684150px;}
.x11{left:47.236800px;}
.x17{left:49.600800px;}
.x36{left:56.590200px;}
.x4d{left:59.216250px;}
.x51{left:61.584150px;}
.x32{left:63.994200px;}
.x37{left:66.370200px;}
.x2{left:72.283500px;}
.x49{left:75.428250px;}
.x70{left:77.125500px;}
.x75{left:78.997500px;}
.x1{left:80.787450px;}
.x7c{left:82.304850px;}
.x8f{left:85.039350px;}
.x60{left:87.874500px;}
.x7f{left:90.704850px;}
.x4a{left:92.036250px;}
.x3{left:93.543300px;}
.x78{left:95.120850px;}
.x62{left:98.827650px;}
.x80{left:100.484850px;}
.x4{left:102.047250px;}
.x69{left:104.167650px;}
.x73{left:106.453500px;}
.x95{left:110.551200px;}
.x18{left:111.844800px;}
.x1f{left:113.344800px;}
.x27{left:114.803100px;}
.x64{left:116.983650px;}
.x68{left:119.983650px;}
.x7{left:123.307050px;}
.x58{left:125.328150px;}
.x38{left:128.614200px;}
.x3e{left:130.114200px;}
.x76{left:131.811000px;}
.x13{left:134.440800px;}
.x63{left:136.195650px;}
.x28{left:138.678000px;}
.x46{left:141.909000px;}
.x22{left:144.928800px;}
.x6a{left:148.210050px;}
.x33{left:151.210200px;}
.x66{left:152.803650px;}
.x25{left:154.060800px;}
.x5b{left:156.912150px;}
.xd{left:162.400800px;}
.x8c{left:163.967550px;}
.x5e{left:166.044150px;}
.x42{left:170.830200px;}
.xb{left:173.712000px;}
.x19{left:176.848800px;}
.x7d{left:185.324850px;}
.x31{left:186.864300px;}
.x52{left:188.832150px;}
.x87{left:191.422200px;}
.x39{left:193.618200px;}
.xf{left:195.892800px;}
.x9{left:199.794750px;}
.x4e{left:201.118950px;}
.x30{left:202.676550px;}
.x4b{left:207.872250px;}
.x45{left:209.541750px;}
.x79{left:213.284850px;}
.x44{left:217.326300px;}
.x14{left:226.060800px;}
.x81{left:227.732850px;}
.x1a{left:234.388800px;}
.x2d{left:235.496550px;}
.xa{left:237.157350px;}
.x59{left:238.836150px;}
.x34{left:242.830200px;}
.x53{left:246.372150px;}
.x3a{left:251.158200px;}
.x5{left:253.870050px;}
.x23{left:258.172800px;}
.x6{left:259.868400px;}
.x67{left:268.639650px;}
.x5c{left:270.156150px;}
.x6b{left:272.470050px;}
.x40{left:274.942200px;}
.x7e{left:276.944850px;}
.xe{left:281.800800px;}
.x82{left:285.272850px;}
.x47{left:289.040250px;}
.x29{left:293.824500px;}
.x1b{left:298.276800px;}
.x71{left:299.605500px;}
.x88{left:302.650200px;}
.x54{left:310.260150px;}
.x8b{left:311.777850px;}
.x10{left:314.068800px;}
.x2b{left:317.840550px;}
.x4c{left:326.048250px;}
.x77{left:327.944850px;}
.x35{left:330.250200px;}
.x7a{left:332.684850px;}
.x6c{left:337.474050px;}
.x20{left:339.508800px;}
.x61{left:349.807650px;}
.x2e{left:351.332550px;}
.x90{left:353.408700px;}
.x65{left:354.547650px;}
.x3f{left:356.278200px;}
.x1c{left:359.296800px;}
.x8e{left:361.912650px;}
.x7b{left:364.952850px;}
.x91{left:366.164700px;}
.x24{left:370.192800px;}
.x55{left:371.280150px;}
.x8d{left:374.668650px;}
.x3b{left:376.066200px;}
.x4f{left:379.954950px;}
.x5d{left:382.176150px;}
.x85{left:384.574200px;}
.x41{left:386.962200px;}
.x6d{left:395.014050px;}
.x83{left:410.180850px;}
.x72{left:412.261500px;}
.x89{left:415.894200px;}
.x2c{left:437.240550px;}
.x74{left:442.945500px;}
.x8{left:450.774750px;}
.x6e{left:458.902050px;}
.x50{left:467.374950px;}
.x2f{left:469.508550px;}
.x86{left:497.230200px;}
.x6f{left:519.922050px;}
.x8a{left:527.914200px;}
.x92{left:554.937300px;}
.x93{left:563.378850px;}
.x96{left:564.411300px;}
.x94{left:571.882800px;}
@media print{
.v2{vertical-align:-33.718400pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:29.333333pt;}
.v1{vertical-align:33.718400pt;}
.v4{vertical-align:58.666667pt;}
.ls1c{letter-spacing:-2.256000pt;}
.ls13{letter-spacing:-1.968000pt;}
.ls28{letter-spacing:-1.934400pt;}
.ls27{letter-spacing:-1.488000pt;}
.ls21{letter-spacing:-1.289600pt;}
.ls1d{letter-spacing:-0.744000pt;}
.ls25{letter-spacing:-0.453333pt;}
.ls1e{letter-spacing:-0.426667pt;}
.ls22{letter-spacing:-0.373333pt;}
.ls15{letter-spacing:-0.266667pt;}
.ls6{letter-spacing:-0.226667pt;}
.ls1a{letter-spacing:-0.213333pt;}
.ls3{letter-spacing:-0.181333pt;}
.ls1b{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.136000pt;}
.ls19{letter-spacing:-0.106667pt;}
.ls8{letter-spacing:-0.053333pt;}
.ls4{letter-spacing:-0.045333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.053333pt;}
.ls17{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.133333pt;}
.lsa{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.213333pt;}
.ls1f{letter-spacing:0.240000pt;}
.ls0{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.272000pt;}
.lsb{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.373333pt;}
.ls11{letter-spacing:0.426667pt;}
.ls20{letter-spacing:0.453333pt;}
.lsd{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.533333pt;}
.ls9{letter-spacing:0.586667pt;}
.ls10{letter-spacing:0.693333pt;}
.ls14{letter-spacing:0.816000pt;}
.ls18{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.066667pt;}
.ls26{letter-spacing:1.546667pt;}
.ls23{letter-spacing:2.080000pt;}
.ls24{letter-spacing:2.448000pt;}
.wsb4{word-spacing:-12.466667pt;}
.wsb8{word-spacing:-12.192000pt;}
.ws9c{word-spacing:-11.200000pt;}
.wse5{word-spacing:-10.664000pt;}
.ws24{word-spacing:-10.560000pt;}
.ws54{word-spacing:-10.453333pt;}
.ws55{word-spacing:-10.400000pt;}
.ws80{word-spacing:-10.346667pt;}
.ws57{word-spacing:-10.293333pt;}
.ws1{word-spacing:-10.290667pt;}
.ws42{word-spacing:-10.240000pt;}
.ws72{word-spacing:-10.186667pt;}
.ws41{word-spacing:-10.133333pt;}
.ws73{word-spacing:-10.080000pt;}
.ws6{word-spacing:-10.026667pt;}
.wsa5{word-spacing:-9.973333pt;}
.ws56{word-spacing:-9.920000pt;}
.ws87{word-spacing:-9.866667pt;}
.ws58{word-spacing:-9.813333pt;}
.ws40{word-spacing:-9.760000pt;}
.ws99{word-spacing:-9.746667pt;}
.ws63{word-spacing:-9.600000pt;}
.ws5a{word-spacing:-9.523200pt;}
.ws5{word-spacing:-9.520000pt;}
.wsae{word-spacing:-9.474667pt;}
.ws23{word-spacing:-9.408000pt;}
.ws53{word-spacing:-9.120000pt;}
.ws74{word-spacing:-9.066667pt;}
.ws4{word-spacing:-8.522667pt;}
.ws2{word-spacing:-8.341333pt;}
.ws3{word-spacing:-8.296000pt;}
.wsa0{word-spacing:-2.933333pt;}
.wsb0{word-spacing:-2.080000pt;}
.ws35{word-spacing:-1.973333pt;}
.ws12{word-spacing:-1.904000pt;}
.wsa4{word-spacing:-1.866667pt;}
.ws45{word-spacing:-1.813333pt;}
.ws70{word-spacing:-1.760000pt;}
.ws28{word-spacing:-1.706667pt;}
.ws13{word-spacing:-1.677333pt;}
.ws1f{word-spacing:-1.653333pt;}
.ws34{word-spacing:-1.546667pt;}
.wsa{word-spacing:-1.496000pt;}
.ws8{word-spacing:-1.450667pt;}
.ws82{word-spacing:-1.440000pt;}
.ws9{word-spacing:-1.405333pt;}
.ws2c{word-spacing:-1.386667pt;}
.ws4c{word-spacing:-1.333333pt;}
.ws1a{word-spacing:-1.280000pt;}
.ws7c{word-spacing:-1.226667pt;}
.ws71{word-spacing:-1.173333pt;}
.ws30{word-spacing:-1.120000pt;}
.ws15{word-spacing:-1.066667pt;}
.wsa2{word-spacing:-1.013333pt;}
.wsd{word-spacing:-0.997333pt;}
.wse1{word-spacing:-0.992000pt;}
.ws21{word-spacing:-0.960000pt;}
.ws1d{word-spacing:-0.906667pt;}
.ws20{word-spacing:-0.800000pt;}
.ws66{word-spacing:-0.746667pt;}
.wsd2{word-spacing:-0.694400pt;}
.ws67{word-spacing:-0.693333pt;}
.ws32{word-spacing:-0.640000pt;}
.wsb6{word-spacing:-0.634667pt;}
.ws36{word-spacing:-0.586667pt;}
.wsf{word-spacing:-0.544000pt;}
.ws38{word-spacing:-0.533333pt;}
.wse8{word-spacing:-0.496000pt;}
.wsb1{word-spacing:-0.480000pt;}
.ws7f{word-spacing:-0.426667pt;}
.ws44{word-spacing:-0.373333pt;}
.ws4b{word-spacing:-0.320000pt;}
.wsb7{word-spacing:-0.272000pt;}
.ws37{word-spacing:-0.266667pt;}
.wse2{word-spacing:-0.248000pt;}
.ws22{word-spacing:-0.213333pt;}
.wsc0{word-spacing:-0.198400pt;}
.ws14{word-spacing:-0.181333pt;}
.ws47{word-spacing:-0.160000pt;}
.ws4e{word-spacing:-0.106667pt;}
.ws0{word-spacing:-0.085333pt;}
.wsb3{word-spacing:-0.045333pt;}
.ws7{word-spacing:0.000000pt;}
.ws48{word-spacing:0.053333pt;}
.ws65{word-spacing:0.160000pt;}
.ws10{word-spacing:0.181333pt;}
.wsa1{word-spacing:0.213333pt;}
.ws11{word-spacing:0.226667pt;}
.ws29{word-spacing:0.266667pt;}
.ws68{word-spacing:0.320000pt;}
.ws8d{word-spacing:0.373333pt;}
.ws7b{word-spacing:0.426667pt;}
.ws1c{word-spacing:0.480000pt;}
.ws86{word-spacing:0.533333pt;}
.ws8c{word-spacing:0.586667pt;}
.ws18{word-spacing:0.640000pt;}
.ws9b{word-spacing:0.693333pt;}
.ws8e{word-spacing:0.746667pt;}
.ws51{word-spacing:0.800000pt;}
.ws2a{word-spacing:0.853333pt;}
.wse{word-spacing:0.861333pt;}
.ws46{word-spacing:0.906667pt;}
.ws8a{word-spacing:0.960000pt;}
.ws7d{word-spacing:1.013333pt;}
.ws2b{word-spacing:1.066667pt;}
.ws3a{word-spacing:1.120000pt;}
.wsb{word-spacing:1.133333pt;}
.ws52{word-spacing:1.173333pt;}
.wsc{word-spacing:1.224000pt;}
.ws17{word-spacing:1.226667pt;}
.ws50{word-spacing:1.280000pt;}
.wsac{word-spacing:1.333333pt;}
.ws84{word-spacing:1.440000pt;}
.ws3f{word-spacing:1.493333pt;}
.ws1e{word-spacing:1.546667pt;}
.ws4a{word-spacing:1.600000pt;}
.ws33{word-spacing:1.653333pt;}
.ws19{word-spacing:1.706667pt;}
.ws31{word-spacing:1.760000pt;}
.ws85{word-spacing:1.813333pt;}
.ws4d{word-spacing:1.866667pt;}
.ws3c{word-spacing:1.920000pt;}
.wse9{word-spacing:1.934400pt;}
.ws9e{word-spacing:1.973333pt;}
.ws4f{word-spacing:2.026667pt;}
.ws1b{word-spacing:2.080000pt;}
.ws16{word-spacing:2.133333pt;}
.ws49{word-spacing:2.186667pt;}
.ws3d{word-spacing:2.240000pt;}
.ws89{word-spacing:2.293333pt;}
.ws8f{word-spacing:2.400000pt;}
.ws6e{word-spacing:2.506667pt;}
.wsb2{word-spacing:2.613333pt;}
.ws27{word-spacing:2.666667pt;}
.wsa7{word-spacing:2.720000pt;}
.ws8b{word-spacing:2.773333pt;}
.ws2d{word-spacing:2.826667pt;}
.ws6d{word-spacing:2.880000pt;}
.ws2e{word-spacing:2.933333pt;}
.ws9f{word-spacing:2.986667pt;}
.wsa8{word-spacing:3.040000pt;}
.ws7a{word-spacing:3.146667pt;}
.ws6c{word-spacing:3.253333pt;}
.ws6a{word-spacing:3.306667pt;}
.ws3b{word-spacing:3.520000pt;}
.ws7e{word-spacing:3.573333pt;}
.ws83{word-spacing:3.626667pt;}
.ws69{word-spacing:3.680000pt;}
.ws2f{word-spacing:3.733333pt;}
.ws6b{word-spacing:4.160000pt;}
.ws3e{word-spacing:4.266667pt;}
.wsad{word-spacing:4.480000pt;}
.ws26{word-spacing:4.693333pt;}
.ws6f{word-spacing:4.853333pt;}
.ws39{word-spacing:5.493333pt;}
.wsab{word-spacing:10.720000pt;}
.wscd{word-spacing:22.529067pt;}
.wsba{word-spacing:23.371733pt;}
.wsbb{word-spacing:23.619733pt;}
.wsc8{word-spacing:23.620267pt;}
.wsd4{word-spacing:23.818133pt;}
.wsd3{word-spacing:24.115733pt;}
.wse3{word-spacing:26.397333pt;}
.wsca{word-spacing:26.645867pt;}
.wsc7{word-spacing:26.844267pt;}
.wsc1{word-spacing:27.141333pt;}
.wsd8{word-spacing:27.240533pt;}
.wsc3{word-spacing:27.389333pt;}
.wsc5{word-spacing:27.687467pt;}
.wsd0{word-spacing:27.935467pt;}
.wsd9{word-spacing:28.133333pt;}
.wsdd{word-spacing:28.232533pt;}
.wsd7{word-spacing:28.480533pt;}
.wscf{word-spacing:28.481067pt;}
.wsbe{word-spacing:28.728533pt;}
.wsc2{word-spacing:29.224533pt;}
.wse4{word-spacing:30.762133pt;}
.wsd5{word-spacing:30.811733pt;}
.wsdf{word-spacing:32.051733pt;}
.wsde{word-spacing:32.349333pt;}
.wsda{word-spacing:32.547733pt;}
.wscc{word-spacing:33.441067pt;}
.wsbd{word-spacing:33.837333pt;}
.wsd6{word-spacing:34.680533pt;}
.wsc4{word-spacing:34.681067pt;}
.wscb{word-spacing:39.045867pt;}
.wsbc{word-spacing:42.120533pt;}
.wsa3{word-spacing:94.613333pt;}
.wsb9{word-spacing:153.756800pt;}
.ws77{word-spacing:174.805333pt;}
.wsa9{word-spacing:174.825600pt;}
.wsc6{word-spacing:209.659733pt;}
.wsc9{word-spacing:231.632533pt;}
.wsdb{word-spacing:273.941867pt;}
.wsce{word-spacing:274.734933pt;}
.wsdc{word-spacing:291.996267pt;}
.wse6{word-spacing:297.024533pt;}
.ws5c{word-spacing:298.077333pt;}
.ws60{word-spacing:305.238933pt;}
.ws5d{word-spacing:305.239467pt;}
.ws93{word-spacing:306.493333pt;}
.ws5b{word-spacing:306.922667pt;}
.ws59{word-spacing:320.842667pt;}
.ws61{word-spacing:327.441067pt;}
.ws5f{word-spacing:330.095467pt;}
.ws91{word-spacing:344.288533pt;}
.ws94{word-spacing:351.430933pt;}
.ws90{word-spacing:374.756267pt;}
.ws98{word-spacing:394.185600pt;}
.ws96{word-spacing:412.736533pt;}
.ws95{word-spacing:421.465067pt;}
.ws92{word-spacing:423.647467pt;}
.ws5e{word-spacing:446.917867pt;}
.ws97{word-spacing:449.835733pt;}
.ws75{word-spacing:823.765333pt;}
.ws78{word-spacing:1053.397333pt;}
.wsbf{word-spacing:1087.392000pt;}
.wse0{word-spacing:1088.448000pt;}
.ws25{word-spacing:1090.560000pt;}
.ws64{word-spacing:1090.752000pt;}
.ws81{word-spacing:1091.280000pt;}
.wsaf{word-spacing:1091.808000pt;}
.wsa6{word-spacing:1092.048000pt;}
.ws9a{word-spacing:1093.488000pt;}
.ws76{word-spacing:1141.802667pt;}
.wse7{word-spacing:1420.464000pt;}
.wsd1{word-spacing:1425.504000pt;}
.wsb5{word-spacing:1426.272000pt;}
.ws43{word-spacing:1426.608000pt;}
.ws9d{word-spacing:1427.520000pt;}
.wsaa{word-spacing:1427.664000pt;}
.ws88{word-spacing:1428.384000pt;}
.ws79{word-spacing:1429.008000pt;}
.ws62{word-spacing:1448.896533pt;}
._19{margin-left:-1092.814133pt;}
._8{margin-left:-1091.004800pt;}
._3b{margin-left:-1088.738667pt;}
._20{margin-left:-1086.650667pt;}
._17{margin-left:-559.488000pt;}
._16{margin-left:-552.149333pt;}
._10{margin-left:-447.744000pt;}
._f{margin-left:-413.909333pt;}
._15{margin-left:-379.306667pt;}
._14{margin-left:-372.010667pt;}
._11{margin-left:-369.109333pt;}
._13{margin-left:-340.480000pt;}
._12{margin-left:-329.130667pt;}
._1d{margin-left:-94.765333pt;}
._1e{margin-left:-8.940267pt;}
._1f{margin-left:-7.427467pt;}
._6{margin-left:-5.757067pt;}
._4{margin-left:-4.805333pt;}
._9{margin-left:-3.754400pt;}
._0{margin-left:-2.133333pt;}
._2{margin-left:-0.966400pt;}
._1{width:1.268267pt;}
._5{width:2.223733pt;}
._3{width:3.197067pt;}
._7{width:4.432000pt;}
._18{width:5.505067pt;}
._b{width:7.893333pt;}
._1c{width:17.813333pt;}
._4d{width:29.463467pt;}
._37{width:38.937067pt;}
._30{width:45.683200pt;}
._28{width:48.113067pt;}
._25{width:49.054933pt;}
._4f{width:53.741867pt;}
._51{width:60.513600pt;}
._2b{width:76.557867pt;}
._2a{width:77.612267pt;}
._4b{width:114.477867pt;}
._39{width:123.281600pt;}
._46{width:124.547200pt;}
._34{width:125.574933pt;}
._3a{width:126.616533pt;}
._3d{width:135.110400pt;}
._40{width:141.609067pt;}
._c{width:145.172267pt;}
._57{width:148.712000pt;}
._5a{width:151.985600pt;}
._6e{width:154.564800pt;}
._36{width:157.021333pt;}
._44{width:158.001600pt;}
._76{width:162.451200pt;}
._6d{width:164.057600pt;}
._6f{width:165.148800pt;}
._26{width:167.270933pt;}
._23{width:169.657067pt;}
._3e{width:174.021867pt;}
._32{width:176.174400pt;}
._2e{width:177.519467pt;}
._47{width:183.261067pt;}
._52{width:190.223467pt;}
._e{width:193.237333pt;}
._5c{width:195.603200pt;}
._27{width:196.750933pt;}
._d{width:200.362667pt;}
._24{width:201.947200pt;}
._35{width:203.162133pt;}
._42{width:210.924267pt;}
._41{width:213.039467pt;}
._72{width:237.068800pt;}
._73{width:241.929600pt;}
._77{width:244.062400pt;}
._69{width:247.237333pt;}
._63{width:248.228800pt;}
._59{width:250.163200pt;}
._56{width:260.976000pt;}
._66{width:263.356800pt;}
._5f{width:267.176533pt;}
._71{width:269.110400pt;}
._6a{width:274.124800pt;}
._61{width:275.161600pt;}
._67{width:276.332800pt;}
._75{width:277.691200pt;}
._6c{width:279.034133pt;}
._60{width:280.648000pt;}
._70{width:283.717333pt;}
._64{width:285.310400pt;}
._5d{width:286.897600pt;}
._74{width:289.446400pt;}
._79{width:290.438400pt;}
._78{width:291.659200pt;}
._45{width:301.525867pt;}
._55{width:316.652800pt;}
._50{width:326.077867pt;}
._a{width:341.755467pt;}
._5e{width:358.044800pt;}
._31{width:375.062933pt;}
._62{width:385.324267pt;}
._2d{width:406.956267pt;}
._54{width:411.288000pt;}
._22{width:414.041333pt;}
._1a{width:435.942133pt;}
._58{width:453.077333pt;}
._29{width:470.096000pt;}
._33{width:471.286933pt;}
._1b{width:475.827200pt;}
._4e{width:482.268267pt;}
._3f{width:500.917867pt;}
._21{width:536.757600pt;}
._3c{width:539.781067pt;}
._53{width:551.277600pt;}
._68{width:582.434133pt;}
._65{width:596.272533pt;}
._6b{width:613.930667pt;}
._4a{width:637.417067pt;}
._5b{width:641.210133pt;}
._2f{width:664.727467pt;}
._49{width:683.197867pt;}
._2c{width:691.759467pt;}
._4c{width:699.119467pt;}
._48{width:803.635200pt;}
._43{width:846.381867pt;}
._38{width:971.106667pt;}
.fs6{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:49.600000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y72{bottom:-1133.626800pt;}
.y73{bottom:-1109.413467pt;}
.y71{bottom:-1061.509467pt;}
.y6b{bottom:-1061.328133pt;}
.y6c{bottom:-1047.632133pt;}
.y6e{bottom:-1009.637467pt;}
.y6a{bottom:-1002.010800pt;}
.y70{bottom:-942.298800pt;}
.y6d{bottom:-940.773467pt;}
.y6f{bottom:-928.293467pt;}
.y96{bottom:-854.634267pt;}
.y97{bottom:-830.420933pt;}
.y95{bottom:-782.516933pt;}
.y8f{bottom:-782.335600pt;}
.y69{bottom:-772.933467pt;}
.y90{bottom:-768.639600pt;}
.y68{bottom:-738.501467pt;}
.y92{bottom:-730.644933pt;}
.y8e{bottom:-723.018267pt;}
.y65{bottom:-716.634800pt;}
.y63{bottom:-713.701467pt;}
.y64{bottom:-700.592133pt;}
.y66{bottom:-690.736133pt;}
.y94{bottom:-663.306267pt;}
.y91{bottom:-661.780933pt;}
.y93{bottom:-649.300933pt;}
.yc1{bottom:-605.417867pt;}
.y67{bottom:-594.544133pt;}
.yc2{bottom:-581.204533pt;}
.yc0{bottom:-533.300533pt;}
.yba{bottom:-533.119200pt;}
.y62{bottom:-520.400133pt;}
.ybb{bottom:-519.423200pt;}
.y8d{bottom:-493.940933pt;}
.y61{bottom:-492.218800pt;}
.ybd{bottom:-481.428533pt;}
.yb9{bottom:-473.801867pt;}
.y8c{bottom:-459.508933pt;}
.y89{bottom:-437.642267pt;}
.y87{bottom:-434.708933pt;}
.y88{bottom:-421.599600pt;}
.ybf{bottom:-414.089867pt;}
.ybc{bottom:-412.564533pt;}
.y8a{bottom:-411.743600pt;}
.ybe{bottom:-400.084533pt;}
.y60{bottom:-373.648133pt;}
.y5e{bottom:-372.410800pt;}
.ye5{bottom:-353.673333pt;}
.y5f{bottom:-344.261467pt;}
.ye6{bottom:-329.460000pt;}
.y8b{bottom:-315.551600pt;}
.ye4{bottom:-281.556000pt;}
.yde{bottom:-281.374667pt;}
.ydf{bottom:-267.678667pt;}
.y5b{bottom:-251.749467pt;}
.yb8{bottom:-244.724533pt;}
.y86{bottom:-241.407600pt;}
.ye1{bottom:-229.684000pt;}
.ydd{bottom:-222.057333pt;}
.y85{bottom:-213.226267pt;}
.yb7{bottom:-210.292533pt;}
.yb4{bottom:-188.425867pt;}
.yb2{bottom:-185.492533pt;}
.yb3{bottom:-172.383200pt;}
.yb5{bottom:-162.527200pt;}
.ye3{bottom:-162.345333pt;}
.ye0{bottom:-160.820000pt;}
.y55{bottom:-154.160133pt;}
.ye2{bottom:-148.340000pt;}
.y57{bottom:-136.336133pt;}
.y58{bottom:-125.658800pt;}
.y5a{bottom:-108.890800pt;}
.y56{bottom:-108.688133pt;}
.y5d{bottom:-100.922800pt;}
.y84{bottom:-94.655600pt;}
.y82{bottom:-93.418267pt;}
.y5c{bottom:-80.720133pt;}
.y59{bottom:-79.130800pt;}
.yb6{bottom:-66.335200pt;}
.y83{bottom:-65.268933pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:81.171600pt;}
.y13d{bottom:83.847600pt;}
.y42{bottom:97.571600pt;}
.y13c{bottom:99.180933pt;}
.y4f{bottom:113.971600pt;}
.y24{bottom:113.971733pt;}
.y13b{bottom:114.514267pt;}
.y162{bottom:116.253067pt;}
.y1d4{bottom:120.693867pt;}
.y13a{bottom:129.847600pt;}
.y23{bottom:130.371600pt;}
.y161{bottom:130.919733pt;}
.y1b3{bottom:134.196533pt;}
.y9f{bottom:140.279200pt;}
.y1b2{bottom:141.529867pt;}
.y1d3{bottom:143.163733pt;}
.y139{bottom:145.180933pt;}
.y15e{bottom:145.586400pt;}
.y22{bottom:146.771600pt;}
.ya0{bottom:154.205333pt;}
.y1d2{bottom:160.022800pt;}
.y160{bottom:160.253067pt;}
.y138{bottom:160.514267pt;}
.yb1{bottom:162.019067pt;}
.y4e{bottom:163.171600pt;}
.y21{bottom:163.171733pt;}
.y1b1{bottom:165.722267pt;}
.y10e{bottom:167.438267pt;}
.y15f{bottom:174.919600pt;}
.y137{bottom:175.847600pt;}
.y1d1{bottom:176.881867pt;}
.y20{bottom:179.571600pt;}
.y1b0{bottom:180.388933pt;}
.y10d{bottom:182.771600pt;}
.y1ad{bottom:187.722267pt;}
.yb0{bottom:190.200400pt;}
.y136{bottom:191.180933pt;}
.y15d{bottom:191.778667pt;}
.y1d0{bottom:193.740933pt;}
.y1af{bottom:195.055600pt;}
.y1f{bottom:195.971600pt;}
.y10c{bottom:198.104933pt;}
.y15c{bottom:206.445333pt;}
.y135{bottom:206.514267pt;}
.y1ae{bottom:209.722267pt;}
.y1cf{bottom:210.600000pt;}
.y1e{bottom:212.371600pt;}
.y159{bottom:213.778667pt;}
.y18c{bottom:214.393467pt;}
.y15b{bottom:221.112000pt;}
.y134{bottom:221.847600pt;}
.y1ac{bottom:226.581333pt;}
.y1ce{bottom:227.458933pt;}
.y1d{bottom:228.771600pt;}
.y15a{bottom:235.778667pt;}
.y18b{bottom:236.863200pt;}
.y133{bottom:237.180933pt;}
.y1ab{bottom:243.440400pt;}
.y1cd{bottom:244.318000pt;}
.y4d{bottom:245.171600pt;}
.y1c{bottom:245.171733pt;}
.y1aa{bottom:250.773733pt;}
.y132{bottom:252.514267pt;}
.y158{bottom:252.637733pt;}
.y18a{bottom:253.722267pt;}
.yd5{bottom:259.558267pt;}
.y189{bottom:261.055600pt;}
.y1cc{bottom:261.177067pt;}
.y1b{bottom:261.571600pt;}
.y157{bottom:267.304400pt;}
.y131{bottom:267.847600pt;}
.y1a9{bottom:274.966133pt;}
.y75{bottom:276.420000pt;}
.yaa{bottom:276.462667pt;}
.y1a{bottom:277.971600pt;}
.y1cb{bottom:278.036133pt;}
.y74{bottom:279.038267pt;}
.y1a8{bottom:282.299467pt;}
.y130{bottom:283.180933pt;}
.y188{bottom:285.248000pt;}
.y78{bottom:287.017200pt;}
.yd4{bottom:287.739600pt;}
.y19{bottom:294.371600pt;}
.y1ca{bottom:294.895200pt;}
.y12f{bottom:298.514267pt;}
.y156{bottom:298.830133pt;}
.y187{bottom:302.107067pt;}
.y7f{bottom:303.659333pt;}
.y1a7{bottom:306.491867pt;}
.yaf{bottom:308.771067pt;}
.y186{bottom:309.440400pt;}
.yad{bottom:310.008400pt;}
.y18{bottom:310.771600pt;}
.y1c9{bottom:311.754267pt;}
.y155{bottom:313.496800pt;}
.y12e{bottom:313.847600pt;}
.y1a6{bottom:323.350933pt;}
.y4c{bottom:327.171600pt;}
.y41{bottom:327.171733pt;}
.y1c8{bottom:328.613333pt;}
.y12d{bottom:329.180933pt;}
.y185{bottom:333.632800pt;}
.y1a5{bottom:338.017600pt;}
.yae{bottom:338.157733pt;}
.y17{bottom:343.571600pt;}
.y12c{bottom:344.514267pt;}
.y154{bottom:345.022533pt;}
.y1c7{bottom:345.472400pt;}
.y184{bottom:350.491867pt;}
.y77{bottom:359.433200pt;}
.y153{bottom:359.689200pt;}
.y12b{bottom:359.847600pt;}
.y40{bottom:359.971600pt;}
.y1c6{bottom:362.331467pt;}
.y183{bottom:367.350933pt;}
.y1a4{bottom:369.543333pt;}
.y100{bottom:369.593467pt;}
.ya4{bottom:374.052000pt;}
.y12a{bottom:375.180933pt;}
.y3f{bottom:376.371600pt;}
.y1c5{bottom:379.190533pt;}
.y182{bottom:382.017600pt;}
.y1a3{bottom:384.210000pt;}
.y129{bottom:390.514267pt;}
.y152{bottom:391.214933pt;}
.y16{bottom:391.381067pt;}
.ya6{bottom:391.876000pt;}
.y3e{bottom:392.771600pt;}
.y4a{bottom:392.914133pt;}
.y1c4{bottom:396.049600pt;}
.y181{bottom:396.684267pt;}
.y151{bottom:398.548267pt;}
.y79{bottom:401.248667pt;}
.ya7{bottom:402.553333pt;}
.y17d{bottom:404.017600pt;}
.yff{bottom:404.025467pt;}
.y128{bottom:405.847600pt;}
.yd3{bottom:406.310267pt;}
.y15{bottom:406.714400pt;}
.yd1{bottom:407.547600pt;}
.yc3{bottom:409.171600pt;}
.y3d{bottom:409.171733pt;}
.y180{bottom:411.350933pt;}
.y1c3{bottom:412.908667pt;}
.y49{bottom:415.384000pt;}
.y1a2{bottom:415.735733pt;}
.y76{bottom:418.409200pt;}
.y7b{bottom:419.072667pt;}
.ya9{bottom:419.321333pt;}
.ya5{bottom:419.524000pt;}
.y127{bottom:421.180933pt;}
.y3c{bottom:425.571600pt;}
.yfc{bottom:425.892133pt;}
.y17f{bottom:426.017600pt;}
.yac{bottom:427.289333pt;}
.yfa{bottom:428.825467pt;}
.y7c{bottom:429.750000pt;}
.y1c2{bottom:429.767600pt;}
.y48{bottom:432.243067pt;}
.y1a1{bottom:432.594667pt;}
.yd2{bottom:435.696933pt;}
.y126{bottom:436.514267pt;}
.y14{bottom:437.381067pt;}
.y9e{bottom:437.875600pt;}
.y1a0{bottom:439.928000pt;}
.y47{bottom:440.672533pt;}
.y17e{bottom:440.684267pt;}
.yfb{bottom:441.934800pt;}
.y3b{bottom:441.971600pt;}
.y7e{bottom:446.518000pt;}
.y1c1{bottom:446.626667pt;}
.y7a{bottom:446.720667pt;}
.yab{bottom:447.492000pt;}
.ya8{bottom:449.081333pt;}
.yfd{bottom:451.790800pt;}
.y125{bottom:451.847600pt;}
.y13{bottom:452.714400pt;}
.y81{bottom:454.489467pt;}
.y17c{bottom:457.543333pt;}
.y3a{bottom:458.371600pt;}
.y9d{bottom:460.345467pt;}
.y1c0{bottom:463.485733pt;}
.y19f{bottom:464.120533pt;}
.y46{bottom:465.961200pt;}
.y124{bottom:467.180933pt;}
.y17b{bottom:474.402400pt;}
.y80{bottom:474.691200pt;}
.y39{bottom:474.771600pt;}
.y7d{bottom:476.278000pt;}
.y9c{bottom:477.204533pt;}
.y1bf{bottom:480.344800pt;}
.y19e{bottom:480.979467pt;}
.y17a{bottom:481.735733pt;}
.y123{bottom:482.514267pt;}
.y45{bottom:482.820133pt;}
.y12{bottom:483.381067pt;}
.y38{bottom:491.171600pt;}
.y9b{bottom:494.063467pt;}
.y19d{bottom:495.646133pt;}
.y1be{bottom:497.203867pt;}
.y122{bottom:497.847600pt;}
.y150{bottom:498.187600pt;}
.y11{bottom:498.714400pt;}
.y179{bottom:505.928133pt;}
.y37{bottom:507.571600pt;}
.y19a{bottom:510.312800pt;}
.y9a{bottom:510.922533pt;}
.y121{bottom:513.180933pt;}
.y14f{bottom:513.520933pt;}
.y10{bottom:514.047733pt;}
.y1bd{bottom:514.062933pt;}
.y178{bottom:522.787200pt;}
.y4b{bottom:523.971600pt;}
.y36{bottom:523.971733pt;}
.y19c{bottom:524.979467pt;}
.y99{bottom:527.781600pt;}
.yce{bottom:528.208933pt;}
.y120{bottom:528.514267pt;}
.y14e{bottom:528.854267pt;}
.yf{bottom:529.381067pt;}
.y1bc{bottom:530.922000pt;}
.ya3{bottom:536.238667pt;}
.y176{bottom:537.453867pt;}
.y19b{bottom:539.646133pt;}
.y35{bottom:540.371600pt;}
.y11f{bottom:543.847600pt;}
.y14d{bottom:544.187600pt;}
.y98{bottom:544.640667pt;}
.ye{bottom:544.714400pt;}
.y1bb{bottom:547.781067pt;}
.yfe{bottom:547.982800pt;}
.y177{bottom:552.120533pt;}
.y199{bottom:556.505200pt;}
.y34{bottom:556.771600pt;}
.y11e{bottom:559.180933pt;}
.y14c{bottom:559.520933pt;}
.yd{bottom:560.047733pt;}
.y10b{bottom:560.581333pt;}
.y1ba{bottom:564.640133pt;}
.y175{bottom:568.979467pt;}
.y198{bottom:571.171867pt;}
.ye8{bottom:572.546667pt;}
.y33{bottom:573.171600pt;}
.y11d{bottom:574.514267pt;}
.y14b{bottom:574.854267pt;}
.yc{bottom:575.381067pt;}
.y109{bottom:581.444667pt;}
.y1b9{bottom:581.499200pt;}
.y174{bottom:583.646133pt;}
.y197{bottom:585.838533pt;}
.ye7{bottom:587.248000pt;}
.y32{bottom:589.571600pt;}
.y11c{bottom:589.847600pt;}
.y14a{bottom:590.187600pt;}
.yb{bottom:590.714400pt;}
.y171{bottom:590.979467pt;}
.y194{bottom:593.171867pt;}
.y173{bottom:598.312800pt;}
.y196{bottom:600.505200pt;}
.yc4{bottom:600.944000pt;}
.y11b{bottom:605.180933pt;}
.y10a{bottom:605.658000pt;}
.y31{bottom:605.971733pt;}
.ya{bottom:606.047733pt;}
.ydc{bottom:607.965867pt;}
.ya2{bottom:608.654667pt;}
.y172{bottom:612.979467pt;}
.y195{bottom:615.171867pt;}
.y11a{bottom:620.514267pt;}
.y9{bottom:621.381067pt;}
.yf9{bottom:622.126800pt;}
.y30{bottom:622.371600pt;}
.yc8{bottom:625.798267pt;}
.y50{bottom:625.914667pt;}
.y170{bottom:629.838533pt;}
.y119{bottom:635.847600pt;}
.y149{bottom:636.187600pt;}
.y1b8{bottom:636.702133pt;}
.y8{bottom:636.714400pt;}
.y2f{bottom:638.771600pt;}
.y54{bottom:639.086667pt;}
.ydb{bottom:642.397867pt;}
.yca{bottom:643.622267pt;}
.y16f{bottom:644.505200pt;}
.y193{bottom:646.697600pt;}
.y53{bottom:647.116400pt;}
.yf8{bottom:650.308133pt;}
.y118{bottom:651.180933pt;}
.y148{bottom:651.520933pt;}
.y16c{bottom:651.838533pt;}
.y7{bottom:652.047733pt;}
.y108{bottom:653.559333pt;}
.y102{bottom:653.740667pt;}
.y192{bottom:654.030933pt;}
.ycb{bottom:654.299600pt;}
.y2e{bottom:655.171600pt;}
.y16e{bottom:659.171867pt;}
.yd8{bottom:664.264533pt;}
.y117{bottom:666.514267pt;}
.y147{bottom:666.854267pt;}
.yd6{bottom:667.197867pt;}
.y6{bottom:667.381067pt;}
.y103{bottom:667.436667pt;}
.ya1{bottom:667.630667pt;}
.ycd{bottom:671.067600pt;}
.yc9{bottom:671.270267pt;}
.y2d{bottom:671.571600pt;}
.y16d{bottom:673.838533pt;}
.y1b7{bottom:676.030933pt;}
.y191{bottom:678.223333pt;}
.yd0{bottom:679.035600pt;}
.yd7{bottom:680.307200pt;}
.y116{bottom:681.847600pt;}
.y146{bottom:682.187600pt;}
.y5{bottom:682.714400pt;}
.y1b6{bottom:683.364400pt;}
.y2c{bottom:687.971733pt;}
.yd9{bottom:690.163200pt;}
.y16b{bottom:690.697733pt;}
.y190{bottom:692.890000pt;}
.y115{bottom:697.180933pt;}
.y145{bottom:697.520933pt;}
.y4{bottom:698.047733pt;}
.ycf{bottom:699.238267pt;}
.y18f{bottom:700.223333pt;}
.ycc{bottom:700.827600pt;}
.y2b{bottom:704.371600pt;}
.y105{bottom:705.431333pt;}
.y16a{bottom:707.556667pt;}
.y114{bottom:712.514267pt;}
.y144{bottom:712.854267pt;}
.y101{bottom:713.058000pt;}
.y52{bottom:719.531200pt;}
.y2a{bottom:720.771600pt;}
.y169{bottom:722.223333pt;}
.y1b5{bottom:724.415733pt;}
.y113{bottom:727.847600pt;}
.y143{bottom:728.187600pt;}
.y3{bottom:728.714400pt;}
.y166{bottom:729.556667pt;}
.y168{bottom:736.890000pt;}
.y29{bottom:737.171600pt;}
.y18e{bottom:739.082400pt;}
.y112{bottom:743.180933pt;}
.y142{bottom:743.520933pt;}
.y1b4{bottom:746.415733pt;}
.y167{bottom:751.556667pt;}
.y28{bottom:753.571600pt;}
.y18d{bottom:753.749067pt;}
.y111{bottom:758.514267pt;}
.y141{bottom:758.854267pt;}
.y165{bottom:768.415733pt;}
.yf7{bottom:768.878800pt;}
.y27{bottom:769.971733pt;}
.yf5{bottom:770.116133pt;}
.y107{bottom:772.770000pt;}
.y110{bottom:773.847600pt;}
.y2{bottom:774.047733pt;}
.y140{bottom:774.187600pt;}
.y104{bottom:774.295333pt;}
.y51{bottom:778.507200pt;}
.y164{bottom:785.274800pt;}
.yda{bottom:786.355200pt;}
.y44{bottom:786.371600pt;}
.y106{bottom:786.775333pt;}
.yc7{bottom:787.984933pt;}
.y13f{bottom:789.520933pt;}
.y163{bottom:792.608133pt;}
.y1{bottom:796.714400pt;}
.yf6{bottom:798.265467pt;}
.y26{bottom:802.771600pt;}
.y10f{bottom:804.514267pt;}
.y13e{bottom:804.854267pt;}
.y25{bottom:849.726533pt;}
.yc6{bottom:860.400933pt;}
.yf2{bottom:890.777467pt;}
.yc5{bottom:919.376933pt;}
.yec{bottom:988.366800pt;}
.yee{bottom:1006.190800pt;}
.yef{bottom:1016.868133pt;}
.yf1{bottom:1033.636133pt;}
.yed{bottom:1033.838800pt;}
.yf4{bottom:1041.604133pt;}
.yf3{bottom:1061.806800pt;}
.yf0{bottom:1063.396133pt;}
.yeb{bottom:1150.553467pt;}
.yea{bottom:1222.969467pt;}
.ye9{bottom:1281.945467pt;}
.hd{height:38.272000pt;}
.h16{height:40.392000pt;}
.hc{height:40.618667pt;}
.h5{height:40.890667pt;}
.h15{height:41.842667pt;}
.h4{height:41.978667pt;}
.h9{height:43.003200pt;}
.h19{height:44.193600pt;}
.ha{height:44.441600pt;}
.h8{height:45.456000pt;}
.h7{height:48.106667pt;}
.h13{height:49.226667pt;}
.h6{height:49.386667pt;}
.hf{height:50.506667pt;}
.h3{height:60.608000pt;}
.h17{height:72.336533pt;}
.h1c{height:73.526933pt;}
.h1b{height:73.774933pt;}
.h1d{height:73.775467pt;}
.hb{height:78.160000pt;}
.h2{height:79.018667pt;}
.h18{height:102.860267pt;}
.h1a{height:103.108267pt;}
.he{height:185.352000pt;}
.h11{height:210.756000pt;}
.h10{height:232.000000pt;}
.h12{height:236.626667pt;}
.h14{height:245.196000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:318.581333pt;}
.w4{width:360.000000pt;}
.w3{width:365.742667pt;}
.w6{width:437.480000pt;}
.w5{width:456.062667pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x1d{left:-20.123733pt;}
.x16{left:-11.035733pt;}
.x56{left:-9.471867pt;}
.x3c{left:-5.217600pt;}
.x0{left:0.000000pt;}
.x1e{left:3.886933pt;}
.x26{left:5.550933pt;}
.x57{left:14.538800pt;}
.x5f{left:16.202800pt;}
.x3d{left:18.793067pt;}
.x43{left:20.457067pt;}
.x84{left:25.106533pt;}
.x12{left:27.929600pt;}
.x21{left:29.956267pt;}
.x48{left:33.831333pt;}
.x15{left:35.396267pt;}
.x2a{left:38.084000pt;}
.xc{left:39.321600pt;}
.x5a{left:40.608133pt;}
.x11{left:41.988267pt;}
.x17{left:44.089600pt;}
.x36{left:50.302400pt;}
.x4d{left:52.636667pt;}
.x51{left:54.741467pt;}
.x32{left:56.883733pt;}
.x37{left:58.995733pt;}
.x2{left:64.252000pt;}
.x49{left:67.047333pt;}
.x70{left:68.556000pt;}
.x75{left:70.220000pt;}
.x1{left:71.811067pt;}
.x7c{left:73.159867pt;}
.x8f{left:75.590533pt;}
.x60{left:78.110667pt;}
.x7f{left:80.626533pt;}
.x4a{left:81.810000pt;}
.x3{left:83.149600pt;}
.x78{left:84.551867pt;}
.x62{left:87.846800pt;}
.x80{left:89.319867pt;}
.x4{left:90.708667pt;}
.x69{left:92.593467pt;}
.x73{left:94.625333pt;}
.x95{left:98.267733pt;}
.x18{left:99.417600pt;}
.x1f{left:100.750933pt;}
.x27{left:102.047200pt;}
.x64{left:103.985467pt;}
.x68{left:106.652133pt;}
.x7{left:109.606267pt;}
.x58{left:111.402800pt;}
.x38{left:114.323733pt;}
.x3e{left:115.657067pt;}
.x76{left:117.165333pt;}
.x13{left:119.502933pt;}
.x63{left:121.062800pt;}
.x28{left:123.269333pt;}
.x46{left:126.141333pt;}
.x22{left:128.825600pt;}
.x6a{left:131.742267pt;}
.x33{left:134.409067pt;}
.x66{left:135.825467pt;}
.x25{left:136.942933pt;}
.x5b{left:139.477467pt;}
.xd{left:144.356267pt;}
.x8c{left:145.748933pt;}
.x5e{left:147.594800pt;}
.x42{left:151.849067pt;}
.xb{left:154.410667pt;}
.x19{left:157.198933pt;}
.x7d{left:164.733200pt;}
.x31{left:166.101600pt;}
.x52{left:167.850800pt;}
.x87{left:170.153067pt;}
.x39{left:172.105067pt;}
.xf{left:174.126933pt;}
.x9{left:177.595333pt;}
.x4e{left:178.772400pt;}
.x30{left:180.156933pt;}
.x4b{left:184.775333pt;}
.x45{left:186.259333pt;}
.x79{left:189.586533pt;}
.x44{left:193.178933pt;}
.x14{left:200.942933pt;}
.x81{left:202.429200pt;}
.x1a{left:208.345600pt;}
.x2d{left:209.330267pt;}
.xa{left:210.806533pt;}
.x59{left:212.298800pt;}
.x34{left:215.849067pt;}
.x53{left:218.997467pt;}
.x3a{left:223.251733pt;}
.x5{left:225.662267pt;}
.x23{left:229.486933pt;}
.x6{left:230.994133pt;}
.x67{left:238.790800pt;}
.x5c{left:240.138800pt;}
.x6b{left:242.195600pt;}
.x40{left:244.393067pt;}
.x7e{left:246.173200pt;}
.xe{left:250.489600pt;}
.x82{left:253.575867pt;}
.x47{left:256.924667pt;}
.x29{left:261.177333pt;}
.x1b{left:265.134933pt;}
.x71{left:266.316000pt;}
.x88{left:269.022400pt;}
.x54{left:275.786800pt;}
.x8b{left:277.135867pt;}
.x10{left:279.172267pt;}
.x2b{left:282.524933pt;}
.x4c{left:289.820667pt;}
.x77{left:291.506533pt;}
.x35{left:293.555733pt;}
.x7a{left:295.719867pt;}
.x6c{left:299.976933pt;}
.x20{left:301.785600pt;}
.x61{left:310.940133pt;}
.x2e{left:312.295600pt;}
.x90{left:314.141067pt;}
.x65{left:315.153467pt;}
.x3f{left:316.691733pt;}
.x1c{left:319.374933pt;}
.x8e{left:321.700133pt;}
.x7b{left:324.402533pt;}
.x91{left:325.479733pt;}
.x24{left:329.060267pt;}
.x55{left:330.026800pt;}
.x8d{left:333.038800pt;}
.x3b{left:334.281067pt;}
.x4f{left:337.737733pt;}
.x5d{left:339.712133pt;}
.x85{left:341.843733pt;}
.x41{left:343.966400pt;}
.x6d{left:351.123600pt;}
.x83{left:364.605200pt;}
.x72{left:366.454667pt;}
.x89{left:369.683733pt;}
.x2c{left:388.658267pt;}
.x74{left:393.729333pt;}
.x8{left:400.688667pt;}
.x6e{left:407.912933pt;}
.x50{left:415.444400pt;}
.x2f{left:417.340933pt;}
.x86{left:441.982400pt;}
.x6f{left:462.152933pt;}
.x8a{left:469.257067pt;}
.x92{left:493.277600pt;}
.x93{left:500.781200pt;}
.x96{left:501.698933pt;}
.x94{left:508.340267pt;}
}




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