
    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_25c6657a0ed48694f8d55417.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_464dd82a99d4fbf2d2b2fd96.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_dd251d2373fd490880300d7e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_35e5897d3fae3693f783632b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_c69014a4b534cfd17f4e1f31.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_bcef196f6b73269449ddab4a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_c42bd5048eb6568108f636f6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.967285;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_67404e1f65723a3318db4c13.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750977;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_7ce6ded91d09249194f24ac0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.721000;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_c25775c8e72737faffd39df4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.967285;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_10150616a7be4ffdbc528dd1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.967285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4705d9116dcfd7af94d14bfe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d0088139b1f276559e03b08b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e49c98799f0b325a1c333a18.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls13{letter-spacing:-4.800000px;}
.ls14{letter-spacing:-3.840000px;}
.lsa{letter-spacing:-1.776000px;}
.lse{letter-spacing:-1.344000px;}
.lsd{letter-spacing:-1.294260px;}
.ls2{letter-spacing:-1.152000px;}
.ls8{letter-spacing:-0.960000px;}
.ls12{letter-spacing:-0.912000px;}
.ls3{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.660000px;}
.ls1{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.420000px;}
.ls7{letter-spacing:-0.120000px;}
.ls4{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.349800px;}
.lsb{letter-spacing:0.600000px;}
.lsf{letter-spacing:0.840000px;}
.ls11{letter-spacing:32.175600px;}
.ls10{letter-spacing:40.219800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-23.040000px;}
.wsa3{word-spacing:-15.600000px;}
.ws1c{word-spacing:-14.085000px;}
.ws0{word-spacing:-13.500000px;}
.ws65{word-spacing:-12.000000px;}
.wsf6{word-spacing:-11.040000px;}
.ws2{word-spacing:-8.745000px;}
.wse7{word-spacing:-8.160000px;}
.wsd3{word-spacing:-7.450740px;}
.wse6{word-spacing:-7.200000px;}
.ws28{word-spacing:-4.260000px;}
.ws96{word-spacing:-3.360000px;}
.ws98{word-spacing:-3.300000px;}
.wsed{word-spacing:-2.970000px;}
.ws8a{word-spacing:-2.940000px;}
.ws52{word-spacing:-2.880000px;}
.ws47{word-spacing:-2.760000px;}
.ws2e{word-spacing:-2.700000px;}
.ws7a{word-spacing:-2.640000px;}
.ws75{word-spacing:-2.520000px;}
.ws76{word-spacing:-2.460000px;}
.ws2d{word-spacing:-2.340000px;}
.wsdc{word-spacing:-2.304000px;}
.ws9f{word-spacing:-2.220000px;}
.wsd1{word-spacing:-2.160000px;}
.ws77{word-spacing:-2.100000px;}
.ws5b{word-spacing:-1.980000px;}
.ws80{word-spacing:-1.860000px;}
.wsd{word-spacing:-1.740000px;}
.wsbe{word-spacing:-1.680000px;}
.ws62{word-spacing:-1.674000px;}
.wsdf{word-spacing:-1.566000px;}
.wsa2{word-spacing:-1.512000px;}
.wsc9{word-spacing:-1.440000px;}
.wscd{word-spacing:-1.320000px;}
.wse4{word-spacing:-1.260000px;}
.wsbc{word-spacing:-1.200000px;}
.ws9e{word-spacing:-1.140000px;}
.ws4f{word-spacing:-1.080000px;}
.ws59{word-spacing:-1.020000px;}
.ws72{word-spacing:-0.960000px;}
.wseb{word-spacing:-0.864000px;}
.wse2{word-spacing:-0.840000px;}
.wsc8{word-spacing:-0.780000px;}
.ws92{word-spacing:-0.720000px;}
.ws30{word-spacing:-0.660000px;}
.wsa8{word-spacing:-0.600000px;}
.ws56{word-spacing:-0.540000px;}
.ws2b{word-spacing:-0.480000px;}
.ws7d{word-spacing:-0.420000px;}
.wsb1{word-spacing:-0.349800px;}
.ws16{word-spacing:-0.300000px;}
.wscb{word-spacing:-0.240000px;}
.wsdb{word-spacing:-0.180000px;}
.ws26{word-spacing:-0.120000px;}
.ws95{word-spacing:-0.060000px;}
.ws40{word-spacing:-0.045000px;}
.ws3{word-spacing:0.000000px;}
.ws25{word-spacing:0.060000px;}
.ws51{word-spacing:0.120000px;}
.ws21{word-spacing:0.300000px;}
.wsa{word-spacing:0.360000px;}
.ws31{word-spacing:0.420000px;}
.ws58{word-spacing:0.480000px;}
.ws1b{word-spacing:0.540000px;}
.wsb7{word-spacing:0.600000px;}
.ws55{word-spacing:0.660000px;}
.ws1e{word-spacing:0.720000px;}
.ws4b{word-spacing:0.780000px;}
.ws48{word-spacing:0.900000px;}
.wse8{word-spacing:0.912000px;}
.ws1a{word-spacing:0.945000px;}
.ws63{word-spacing:0.960000px;}
.wsb9{word-spacing:1.020000px;}
.ws3b{word-spacing:1.080000px;}
.ws5{word-spacing:1.134000px;}
.wsba{word-spacing:1.140000px;}
.ws18{word-spacing:1.171800px;}
.wsca{word-spacing:1.200000px;}
.ws49{word-spacing:1.260000px;}
.ws7f{word-spacing:1.320000px;}
.ws27{word-spacing:1.380000px;}
.ws19{word-spacing:1.436400px;}
.ws20{word-spacing:1.440000px;}
.ws45{word-spacing:1.500000px;}
.ws7{word-spacing:1.560000px;}
.wse3{word-spacing:1.620000px;}
.ws44{word-spacing:1.680000px;}
.ws78{word-spacing:1.800000px;}
.wsaf{word-spacing:1.860000px;}
.wsc7{word-spacing:1.920000px;}
.wsc0{word-spacing:1.980000px;}
.ws70{word-spacing:2.100000px;}
.ws82{word-spacing:2.160000px;}
.ws3c{word-spacing:2.220000px;}
.wsd2{word-spacing:2.268000px;}
.wsd5{word-spacing:2.280000px;}
.ws3e{word-spacing:2.340000px;}
.ws93{word-spacing:2.400000px;}
.wsb5{word-spacing:2.460000px;}
.ws4{word-spacing:2.484000px;}
.wsea{word-spacing:2.496000px;}
.ws10{word-spacing:2.580000px;}
.ws13{word-spacing:2.700000px;}
.wsde{word-spacing:2.880000px;}
.ws97{word-spacing:2.940000px;}
.ws2f{word-spacing:3.000000px;}
.ws6{word-spacing:3.060000px;}
.ws38{word-spacing:3.120000px;}
.wsa9{word-spacing:3.180000px;}
.ws8f{word-spacing:3.240000px;}
.wsf{word-spacing:3.300000px;}
.wsaa{word-spacing:3.360000px;}
.wse{word-spacing:3.420000px;}
.wsce{word-spacing:3.480000px;}
.wsbb{word-spacing:3.600000px;}
.wsa0{word-spacing:3.660000px;}
.wsd0{word-spacing:3.720000px;}
.ws50{word-spacing:3.840000px;}
.ws12{word-spacing:3.900000px;}
.ws9b{word-spacing:4.020000px;}
.ws74{word-spacing:4.080000px;}
.ws7e{word-spacing:4.200000px;}
.wsda{word-spacing:4.260000px;}
.ws3a{word-spacing:4.320000px;}
.wsc3{word-spacing:4.380000px;}
.ws34{word-spacing:4.440000px;}
.wsec{word-spacing:4.464000px;}
.ws53{word-spacing:4.560000px;}
.wsc{word-spacing:4.620000px;}
.ws32{word-spacing:4.680000px;}
.ws11{word-spacing:4.740000px;}
.ws83{word-spacing:4.752000px;}
.wsdd{word-spacing:4.860000px;}
.wsae{word-spacing:4.920000px;}
.wsc4{word-spacing:4.980000px;}
.ws6e{word-spacing:5.100000px;}
.ws5f{word-spacing:5.280000px;}
.ws3f{word-spacing:5.340000px;}
.wse9{word-spacing:5.376000px;}
.ws2a{word-spacing:5.400000px;}
.wsb8{word-spacing:5.460000px;}
.ws35{word-spacing:5.580000px;}
.ws8c{word-spacing:5.640000px;}
.wsbd{word-spacing:5.700000px;}
.ws9{word-spacing:5.760000px;}
.wscf{word-spacing:5.820000px;}
.ws46{word-spacing:5.880000px;}
.ws8d{word-spacing:5.940000px;}
.ws8e{word-spacing:6.000000px;}
.wsc2{word-spacing:6.060000px;}
.wsb2{word-spacing:6.120000px;}
.ws91{word-spacing:6.180000px;}
.wsb4{word-spacing:6.240000px;}
.wse0{word-spacing:6.300000px;}
.wsd8{word-spacing:6.360000px;}
.ws54{word-spacing:6.420000px;}
.wsb{word-spacing:6.480000px;}
.ws8{word-spacing:6.540000px;}
.ws99{word-spacing:6.600000px;}
.wsb3{word-spacing:6.720000px;}
.ws7c{word-spacing:6.780000px;}
.ws33{word-spacing:6.840000px;}
.ws9c{word-spacing:6.900000px;}
.ws36{word-spacing:6.960000px;}
.wsb6{word-spacing:7.020000px;}
.ws5c{word-spacing:7.080000px;}
.ws90{word-spacing:7.140000px;}
.ws6d{word-spacing:7.320000px;}
.wsab{word-spacing:7.440000px;}
.ws79{word-spacing:7.560000px;}
.wsb0{word-spacing:7.620000px;}
.ws9d{word-spacing:7.680000px;}
.ws6f{word-spacing:7.800000px;}
.ws4e{word-spacing:7.860000px;}
.ws1d{word-spacing:7.920000px;}
.ws5a{word-spacing:7.980000px;}
.ws17{word-spacing:8.040000px;}
.wsbf{word-spacing:8.100000px;}
.ws14{word-spacing:8.280000px;}
.ws29{word-spacing:8.520000px;}
.ws39{word-spacing:8.700000px;}
.wsc5{word-spacing:9.000000px;}
.ws7b{word-spacing:9.060000px;}
.wse1{word-spacing:9.120000px;}
.ws61{word-spacing:9.180000px;}
.ws24{word-spacing:9.480000px;}
.ws15{word-spacing:9.660000px;}
.wsa1{word-spacing:9.840000px;}
.ws60{word-spacing:10.200000px;}
.wscc{word-spacing:10.380000px;}
.ws5e{word-spacing:10.440000px;}
.wsd4{word-spacing:10.500000px;}
.ws5d{word-spacing:10.680000px;}
.ws4c{word-spacing:10.860000px;}
.ws71{word-spacing:11.220000px;}
.wsd7{word-spacing:11.640000px;}
.ws1f{word-spacing:12.060000px;}
.ws94{word-spacing:12.240000px;}
.wsd9{word-spacing:12.300000px;}
.wse5{word-spacing:12.360000px;}
.ws73{word-spacing:12.480000px;}
.ws57{word-spacing:12.720000px;}
.ws3d{word-spacing:12.780000px;}
.ws81{word-spacing:13.560000px;}
.wsa7{word-spacing:13.620000px;}
.ws8b{word-spacing:13.800000px;}
.ws4a{word-spacing:13.860000px;}
.wsd6{word-spacing:14.220000px;}
.wsc6{word-spacing:14.640000px;}
.ws22{word-spacing:14.880000px;}
.ws23{word-spacing:15.660000px;}
.ws2c{word-spacing:15.840000px;}
.wsac{word-spacing:17.100000px;}
.wsad{word-spacing:18.360000px;}
.ws4d{word-spacing:19.560000px;}
.ws9a{word-spacing:21.060000px;}
.ws37{word-spacing:21.240000px;}
.wsc1{word-spacing:24.180000px;}
.ws84{word-spacing:25.770600px;}
.ws41{word-spacing:56.094000px;}
.ws89{word-spacing:74.079000px;}
.ws85{word-spacing:74.551200px;}
.ws87{word-spacing:75.859800px;}
.ws64{word-spacing:80.158200px;}
.ws6b{word-spacing:80.158800px;}
.ws6a{word-spacing:88.614000px;}
.ws69{word-spacing:92.161200px;}
.ws88{word-spacing:98.602200px;}
.wsf3{word-spacing:112.322400px;}
.ws67{word-spacing:112.614000px;}
.ws68{word-spacing:113.331000px;}
.wsf5{word-spacing:114.126000px;}
.ws43{word-spacing:114.614400px;}
.ws66{word-spacing:116.877600px;}
.wsef{word-spacing:128.766600px;}
.wsf1{word-spacing:138.126000px;}
.wsf7{word-spacing:139.907400px;}
.wsf9{word-spacing:141.672600px;}
.wsf2{word-spacing:141.673200px;}
.wsa4{word-spacing:148.411800px;}
.wsf0{word-spacing:162.126000px;}
.wsf8{word-spacing:165.672600px;}
.wsf4{word-spacing:165.673200px;}
.ws42{word-spacing:174.613800px;}
.ws6c{word-spacing:176.598600px;}
.wsa5{word-spacing:197.093400px;}
.wsa6{word-spacing:217.445400px;}
.ws86{word-spacing:438.060000px;}
.wsee{word-spacing:534.744600px;}
._c{margin-left:-2824.309200px;}
._32{margin-left:-59.795400px;}
._34{margin-left:-47.836200px;}
._b{margin-left:-13.555800px;}
._22{margin-left:-6.083400px;}
._8{margin-left:-4.812000px;}
._2{margin-left:-3.192600px;}
._0{margin-left:-1.356600px;}
._1{width:1.244400px;}
._4{width:2.886600px;}
._3{width:3.988200px;}
._5{width:5.186400px;}
._7{width:6.498000px;}
._6{width:7.608000px;}
._9{width:8.724000px;}
._a{width:9.816000px;}
._10{width:11.064000px;}
._d{width:12.366000px;}
._f{width:13.950000px;}
._2d{width:23.411400px;}
._2c{width:24.972600px;}
._33{width:37.039800px;}
._23{width:39.467400px;}
._24{width:43.462800px;}
._25{width:58.463400px;}
._26{width:61.115400px;}
._e{width:66.047400px;}
._11{width:71.151000px;}
._27{width:80.988000px;}
._16{width:95.215200px;}
._29{width:100.629000px;}
._14{width:106.488600px;}
._28{width:110.079000px;}
._19{width:118.026600px;}
._70{width:122.541000px;}
._1c{width:125.331000px;}
._76{width:126.745800px;}
._2b{width:134.644800px;}
._30{width:137.346000px;}
._21{width:138.735600px;}
._73{width:146.541000px;}
._1d{width:147.898200px;}
._1a{width:149.679000px;}
._12{width:151.068000px;}
._77{width:152.084400px;}
._75{width:157.197000px;}
._18{width:172.429800px;}
._74{width:173.462400px;}
._15{width:174.613800px;}
._20{width:176.598000px;}
._6e{width:178.134600px;}
._6d{width:181.374000px;}
._6f{width:189.165000px;}
._13{width:198.615000px;}
._71{width:201.717600px;}
._2f{width:204.237000px;}
._72{width:213.165000px;}
._31{width:221.243400px;}
._2e{width:245.649000px;}
._1b{width:250.314600px;}
._2a{width:296.508000px;}
._1e{width:329.562600px;}
._17{width:331.344000px;}
._1f{width:350.271600px;}
._35{width:457.273800px;}
._6c{width:584.040600px;}
._54{width:619.891800px;}
._38{width:630.886200px;}
._58{width:708.607200px;}
._55{width:713.407200px;}
._51{width:773.491200px;}
._3e{width:776.930400px;}
._67{width:777.970200px;}
._5e{width:780.583800px;}
._6b{width:793.951800px;}
._5f{width:795.523200px;}
._53{width:804.863400px;}
._3f{width:806.226000px;}
._49{width:810.159600px;}
._52{width:828.655800px;}
._3b{width:832.690200px;}
._61{width:841.089000px;}
._44{width:853.042200px;}
._42{width:877.627200px;}
._4e{width:884.036400px;}
._57{width:887.779200px;}
._4f{width:895.010400px;}
._5b{width:896.994600px;}
._47{width:905.134800px;}
._6a{width:923.566200px;}
._4a{width:924.742200px;}
._68{width:934.255800px;}
._69{width:935.343600px;}
._39{width:936.598200px;}
._3a{width:941.814000px;}
._43{width:943.542000px;}
._5a{width:948.966600px;}
._36{width:964.998000px;}
._66{width:966.548400px;}
._48{width:968.454000px;}
._41{width:971.094000px;}
._40{width:973.778400px;}
._5d{width:984.438600px;}
._59{width:988.351800px;}
._50{width:989.718600px;}
._64{width:991.807800px;}
._56{width:994.182600px;}
._60{width:995.455800px;}
._65{width:999.411000px;}
._63{width:1002.994200px;}
._45{width:1004.786400px;}
._4b{width:1006.593600px;}
._4d{width:1008.273600px;}
._3d{width:1011.846000px;}
._3c{width:1016.118000px;}
._5c{width:1020.771000px;}
._37{width:1031.335800px;}
._46{width:1036.077000px;}
._4c{width:1041.580200px;}
._62{width:1047.747000px;}
.fc1{color:rgb(237,105,24);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:34.980000px;}
.fs6{font-size:37.800000px;}
.fs7{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:63.058200px;}
.y23{bottom:75.658200px;}
.y28{bottom:77.089500px;}
.y22{bottom:88.258200px;}
.y21b{bottom:105.064800px;}
.y1d0{bottom:108.712950px;}
.y1f9{bottom:108.891000px;}
.y27a{bottom:110.979300px;}
.y252{bottom:111.046950px;}
.y21a{bottom:123.064800px;}
.y1cf{bottom:126.712950px;}
.y1f8{bottom:126.891000px;}
.y279{bottom:126.953100px;}
.y251{bottom:127.531050px;}
.y21{bottom:129.833550px;}
.y113{bottom:132.699300px;}
.y141{bottom:132.823800px;}
.y103{bottom:132.891000px;}
.yd8{bottom:133.716300px;}
.y8b{bottom:133.883100px;}
.y5d{bottom:133.906350px;}
.y1bb{bottom:135.064050px;}
.y17a{bottom:135.281400px;}
.y1ab{bottom:135.330750px;}
.y2d2{bottom:139.711050px;}
.y219{bottom:141.064800px;}
.y278{bottom:142.927050px;}
.y250{bottom:144.015150px;}
.y1ce{bottom:144.712950px;}
.y1f7{bottom:144.891000px;}
.y140{bottom:147.823800px;}
.y20{bottom:147.833550px;}
.y102{bottom:150.891000px;}
.yd7{bottom:151.716300px;}
.y8a{bottom:151.883100px;}
.y5c{bottom:151.906350px;}
.y1ba{bottom:153.064050px;}
.y179{bottom:153.281400px;}
.y1aa{bottom:153.330750px;}
.y112{bottom:153.554700px;}
.y2d1{bottom:154.711050px;}
.y277{bottom:158.900850px;}
.y218{bottom:159.064800px;}
.y24f{bottom:160.499250px;}
.y1cd{bottom:162.712950px;}
.y13f{bottom:162.823800px;}
.y1f6{bottom:162.891000px;}
.y1f{bottom:165.833550px;}
.y101{bottom:168.891000px;}
.y2d0{bottom:169.711050px;}
.yd6{bottom:169.716300px;}
.y89{bottom:169.883100px;}
.y5b{bottom:169.906350px;}
.y111{bottom:170.591550px;}
.y1b9{bottom:171.064050px;}
.y178{bottom:171.281400px;}
.y1a9{bottom:171.330750px;}
.y276{bottom:174.681450px;}
.y24e{bottom:175.499250px;}
.y217{bottom:177.064800px;}
.y13e{bottom:177.823800px;}
.y1cc{bottom:180.712950px;}
.y1f5{bottom:180.891000px;}
.y1e{bottom:183.833550px;}
.y100{bottom:186.891000px;}
.y110{bottom:187.628400px;}
.yd5{bottom:187.716300px;}
.y88{bottom:187.883100px;}
.y5a{bottom:187.906350px;}
.y1b8{bottom:189.064050px;}
.y177{bottom:189.281400px;}
.y1a8{bottom:189.330750px;}
.y2cf{bottom:190.566450px;}
.y275{bottom:190.655250px;}
.y24d{bottom:191.790000px;}
.y13d{bottom:192.823800px;}
.y216{bottom:195.064800px;}
.y1cb{bottom:198.712950px;}
.y1f4{bottom:198.891000px;}
.y1d{bottom:201.833550px;}
.y10f{bottom:204.665250px;}
.yff{bottom:204.891000px;}
.yd4{bottom:205.716300px;}
.y87{bottom:205.883100px;}
.y59{bottom:205.906350px;}
.y274{bottom:206.629050px;}
.y1b7{bottom:207.064050px;}
.y176{bottom:207.281400px;}
.y1a7{bottom:207.330750px;}
.y2ce{bottom:207.390600px;}
.y13c{bottom:207.823800px;}
.y24c{bottom:208.274100px;}
.y2cb{bottom:208.399500px;}
.y215{bottom:213.064800px;}
.y1ca{bottom:216.712950px;}
.y1f3{bottom:216.891000px;}
.y1c{bottom:219.833550px;}
.y10e{bottom:221.508750px;}
.y273{bottom:222.602850px;}
.yfe{bottom:222.891000px;}
.y2ca{bottom:223.399500px;}
.yd3{bottom:223.716300px;}
.y86{bottom:223.883100px;}
.y58{bottom:223.906350px;}
.y2cd{bottom:224.214900px;}
.y24b{bottom:224.758050px;}
.y1b6{bottom:225.064050px;}
.y175{bottom:225.281400px;}
.y1a6{bottom:225.330750px;}
.y13b{bottom:228.679200px;}
.y214{bottom:231.064800px;}
.y1c9{bottom:234.712950px;}
.y1f2{bottom:234.891000px;}
.y1b{bottom:237.833550px;}
.y10d{bottom:238.545600px;}
.y272{bottom:238.576800px;}
.yfd{bottom:240.891000px;}
.y2cc{bottom:241.039050px;}
.y24a{bottom:241.242300px;}
.yd2{bottom:241.716300px;}
.y85{bottom:241.883100px;}
.y57{bottom:241.906350px;}
.y1b5{bottom:243.064050px;}
.y174{bottom:243.281400px;}
.y1a5{bottom:243.330750px;}
.y13a{bottom:245.716050px;}
.y213{bottom:249.064800px;}
.y1c8{bottom:252.712950px;}
.y1f1{bottom:252.891000px;}
.y271{bottom:254.357250px;}
.y10c{bottom:255.582450px;}
.y1a{bottom:255.833550px;}
.y249{bottom:257.532900px;}
.y2c9{bottom:257.863350px;}
.yfc{bottom:258.891000px;}
.yd1{bottom:259.716300px;}
.y84{bottom:259.883100px;}
.yaf{bottom:259.906350px;}
.y1b4{bottom:261.064050px;}
.y173{bottom:261.281400px;}
.y1a4{bottom:261.330750px;}
.y139{bottom:262.752900px;}
.y212{bottom:267.064800px;}
.y2c5{bottom:268.196400px;}
.y270{bottom:270.331200px;}
.y1c7{bottom:270.712950px;}
.y1f0{bottom:270.891000px;}
.y10b{bottom:272.619300px;}
.y19{bottom:273.833550px;}
.y248{bottom:274.017000px;}
.y2c8{bottom:274.687650px;}
.y56{bottom:276.489000px;}
.yfb{bottom:276.891000px;}
.yd0{bottom:277.716300px;}
.y83{bottom:277.883100px;}
.yae{bottom:277.906350px;}
.y1b3{bottom:279.064050px;}
.y172{bottom:279.281400px;}
.y1a3{bottom:279.330750px;}
.y138{bottom:279.789750px;}
.y2c4{bottom:283.196400px;}
.y211{bottom:285.064800px;}
.y26f{bottom:286.305000px;}
.y1c6{bottom:288.712950px;}
.y1ef{bottom:288.891000px;}
.y10a{bottom:289.462800px;}
.y247{bottom:290.501100px;}
.y2c7{bottom:291.511800px;}
.y18{bottom:291.833400px;}
.y55{bottom:294.489000px;}
.yfa{bottom:294.891000px;}
.ycf{bottom:295.716300px;}
.y82{bottom:295.883100px;}
.yad{bottom:295.906350px;}
.y137{bottom:296.633250px;}
.y171{bottom:297.281400px;}
.y1a2{bottom:297.330750px;}
.y2c3{bottom:298.196400px;}
.y26e{bottom:302.278800px;}
.y210{bottom:303.064800px;}
.y109{bottom:306.499650px;}
.y1c5{bottom:306.712950px;}
.y1ee{bottom:306.891000px;}
.y246{bottom:306.985200px;}
.y2c6{bottom:308.336100px;}
.y17{bottom:309.833400px;}
.y54{bottom:312.489000px;}
.yf9{bottom:312.891000px;}
.y136{bottom:313.670100px;}
.yce{bottom:313.716300px;}
.y81{bottom:313.883100px;}
.yac{bottom:313.906350px;}
.y170{bottom:315.281400px;}
.y1a1{bottom:315.330750px;}
.y26d{bottom:318.252750px;}
.y20f{bottom:321.064800px;}
.y245{bottom:323.469300px;}
.y108{bottom:323.536350px;}
.y1ed{bottom:324.891000px;}
.y2c2{bottom:325.160400px;}
.y16{bottom:327.833400px;}
.y53{bottom:330.489000px;}
.y135{bottom:330.706950px;}
.yf8{bottom:330.891000px;}
.ycd{bottom:331.716300px;}
.y80{bottom:331.883100px;}
.yab{bottom:331.906350px;}
.y16f{bottom:333.281400px;}
.y1a0{bottom:333.330750px;}
.y26c{bottom:334.226550px;}
.y20e{bottom:339.064800px;}
.y244{bottom:339.953400px;}
.y107{bottom:340.573200px;}
.y2c1{bottom:341.984700px;}
.y1ec{bottom:342.891000px;}
.y2be{bottom:342.993450px;}
.y1c4{bottom:344.391000px;}
.y15{bottom:345.833400px;}
.y134{bottom:347.743800px;}
.y52{bottom:348.489000px;}
.yf7{bottom:348.891000px;}
.ycc{bottom:349.716300px;}
.y7f{bottom:349.883100px;}
.yaa{bottom:349.906350px;}
.y26b{bottom:350.200350px;}
.y16e{bottom:351.281400px;}
.y19f{bottom:351.330750px;}
.y243{bottom:356.244150px;}
.y20d{bottom:357.064800px;}
.y106{bottom:357.513450px;}
.y2bd{bottom:357.993450px;}
.y2c0{bottom:358.808850px;}
.y1eb{bottom:360.891000px;}
.y14{bottom:363.833400px;}
.y133{bottom:364.587300px;}
.y26a{bottom:366.174300px;}
.y51{bottom:366.489000px;}
.yf6{bottom:366.891000px;}
.ycb{bottom:367.716300px;}
.y7e{bottom:367.883100px;}
.ya9{bottom:367.906350px;}
.y16d{bottom:369.281400px;}
.y19e{bottom:369.330750px;}
.y242{bottom:372.728250px;}
.y20c{bottom:375.064800px;}
.y2bf{bottom:375.633150px;}
.y1ea{bottom:378.891000px;}
.y132{bottom:381.624000px;}
.y13{bottom:381.833400px;}
.y269{bottom:381.954750px;}
.y105{bottom:384.230250px;}
.y50{bottom:384.489000px;}
.yf5{bottom:384.891000px;}
.yca{bottom:385.716300px;}
.y7d{bottom:385.883100px;}
.ya8{bottom:385.906350px;}
.y16c{bottom:387.281400px;}
.y19d{bottom:387.330750px;}
.y241{bottom:389.212350px;}
.y2bc{bottom:392.457450px;}
.y20b{bottom:393.064800px;}
.y1e9{bottom:396.891000px;}
.y268{bottom:397.928700px;}
.y131{bottom:398.661000px;}
.y12{bottom:399.833400px;}
.y104{bottom:402.230250px;}
.y4f{bottom:402.489000px;}
.y2b8{bottom:402.790500px;}
.y12c{bottom:402.891000px;}
.y7c{bottom:403.883100px;}
.ya7{bottom:403.906200px;}
.y16b{bottom:405.281400px;}
.y19c{bottom:405.330750px;}
.y240{bottom:405.696450px;}
.y2bb{bottom:409.281600px;}
.y20a{bottom:411.064650px;}
.y267{bottom:413.902500px;}
.y1e8{bottom:414.891000px;}
.y130{bottom:415.697850px;}
.y2b7{bottom:417.790500px;}
.y11{bottom:417.833400px;}
.y4e{bottom:420.489000px;}
.y12b{bottom:420.891000px;}
.y7b{bottom:421.883100px;}
.ya6{bottom:421.906200px;}
.y23f{bottom:422.180550px;}
.y16a{bottom:423.281400px;}
.y19b{bottom:423.330750px;}
.y2ba{bottom:426.105900px;}
.y209{bottom:429.064650px;}
.ydd{bottom:429.248100px;}
.y266{bottom:429.876300px;}
.y11e{bottom:430.586550px;}
.y12f{bottom:432.637950px;}
.y2b6{bottom:432.790500px;}
.y1e7{bottom:432.891000px;}
.y10{bottom:435.833400px;}
.yf2{bottom:437.391000px;}
.y4d{bottom:438.489000px;}
.y23e{bottom:438.664650px;}
.y12a{bottom:438.891000px;}
.y7a{bottom:439.883100px;}
.ya5{bottom:439.906200px;}
.y169{bottom:441.281400px;}
.y19a{bottom:441.330750px;}
.y2b9{bottom:442.930200px;}
.y265{bottom:445.850250px;}
.ydc{bottom:446.922750px;}
.y208{bottom:447.064650px;}
.y11d{bottom:448.261200px;}
.y1e6{bottom:450.891000px;}
.y23d{bottom:454.955400px;}
.yf1{bottom:455.391000px;}
.y4c{bottom:456.489000px;}
.y129{bottom:456.891000px;}
.y79{bottom:457.883100px;}
.ya4{bottom:457.906200px;}
.y168{bottom:459.281400px;}
.y199{bottom:459.330750px;}
.y12e{bottom:459.354750px;}
.y2b5{bottom:459.754350px;}
.y264{bottom:461.824050px;}
.ydb{bottom:464.972400px;}
.y207{bottom:465.064650px;}
.y11c{bottom:465.935850px;}
.yf{bottom:467.865000px;}
.y1e5{bottom:468.891000px;}
.y2b1{bottom:470.087400px;}
.y23c{bottom:471.439500px;}
.yf0{bottom:473.391000px;}
.y4b{bottom:474.489000px;}
.y128{bottom:474.891000px;}
.y78{bottom:475.883100px;}
.ya3{bottom:475.906200px;}
.y2b4{bottom:476.578650px;}
.y167{bottom:477.281400px;}
.y198{bottom:477.330750px;}
.y12d{bottom:477.354750px;}
.y1c3{bottom:477.366450px;}
.y263{bottom:477.797850px;}
.y206{bottom:483.064650px;}
.y11b{bottom:483.417150px;}
.y2b0{bottom:485.087400px;}
.y1e4{bottom:486.891000px;}
.y23b{bottom:487.923450px;}
.yef{bottom:491.391000px;}
.yda{bottom:492.230250px;}
.y4a{bottom:492.489000px;}
.y127{bottom:492.891000px;}
.y2b3{bottom:493.402950px;}
.y262{bottom:493.771800px;}
.y77{bottom:493.883100px;}
.ya2{bottom:493.906200px;}
.y166{bottom:495.281400px;}
.y197{bottom:495.330750px;}
.y2af{bottom:500.087400px;}
.y205{bottom:501.064650px;}
.y11a{bottom:501.091800px;}
.y23a{bottom:504.407550px;}
.y1e3{bottom:504.891000px;}
.yee{bottom:509.391000px;}
.y261{bottom:509.552250px;}
.y2b2{bottom:510.227100px;}
.yd9{bottom:510.230250px;}
.y49{bottom:510.489000px;}
.y126{bottom:510.891000px;}
.y1c0{bottom:510.991950px;}
.y76{bottom:511.883100px;}
.ya1{bottom:511.906200px;}
.y165{bottom:513.281400px;}
.y196{bottom:513.330750px;}
.y119{bottom:518.766300px;}
.y204{bottom:519.064650px;}
.y239{bottom:520.891650px;}
.y1e2{bottom:522.891000px;}
.y260{bottom:525.526050px;}
.y2ae{bottom:527.051400px;}
.yed{bottom:527.391000px;}
.y125{bottom:528.891000px;}
.y1bf{bottom:528.991950px;}
.y75{bottom:529.883100px;}
.ya0{bottom:529.906200px;}
.y164{bottom:531.281400px;}
.y195{bottom:531.330750px;}
.y118{bottom:536.247600px;}
.y203{bottom:537.064650px;}
.y238{bottom:537.375750px;}
.y1e1{bottom:540.891000px;}
.y25f{bottom:541.500000px;}
.y2ad{bottom:543.875700px;}
.y2aa{bottom:544.884450px;}
.y48{bottom:545.071650px;}
.yec{bottom:545.391000px;}
.y124{bottom:546.891000px;}
.y1be{bottom:546.991950px;}
.yc9{bottom:547.716300px;}
.y74{bottom:547.883100px;}
.y9f{bottom:547.906200px;}
.y163{bottom:549.281400px;}
.y194{bottom:549.330750px;}
.ye{bottom:550.376700px;}
.y237{bottom:553.859850px;}
.y117{bottom:553.922250px;}
.y25e{bottom:557.473800px;}
.y1e0{bottom:558.891000px;}
.y2a9{bottom:559.884450px;}
.y2ac{bottom:560.699850px;}
.y47{bottom:563.071650px;}
.yeb{bottom:563.391000px;}
.y123{bottom:564.891000px;}
.y1bd{bottom:564.991950px;}
.yc8{bottom:565.716300px;}
.y73{bottom:565.883100px;}
.y9e{bottom:565.906200px;}
.y162{bottom:567.281400px;}
.y193{bottom:567.330750px;}
.y236{bottom:570.343950px;}
.y116{bottom:571.596900px;}
.y202{bottom:572.072550px;}
.y25d{bottom:573.447750px;}
.yd{bottom:576.880650px;}
.y1df{bottom:576.891000px;}
.y2ab{bottom:577.524150px;}
.y46{bottom:581.071650px;}
.yea{bottom:581.391000px;}
.y122{bottom:582.891000px;}
.yc7{bottom:583.716300px;}
.y72{bottom:583.883100px;}
.y9d{bottom:583.906200px;}
.y161{bottom:585.281400px;}
.y192{bottom:585.330750px;}
.y235{bottom:585.343950px;}
.y115{bottom:589.174950px;}
.y25c{bottom:589.421550px;}
.y2a8{bottom:594.348450px;}
.y1de{bottom:594.891000px;}
.y45{bottom:599.071650px;}
.ye9{bottom:599.391000px;}
.y121{bottom:600.891000px;}
.y234{bottom:601.634700px;}
.yc6{bottom:601.716300px;}
.y71{bottom:601.883100px;}
.y9c{bottom:601.906200px;}
.y160{bottom:603.281400px;}
.y191{bottom:603.330750px;}
.y2a4{bottom:604.681500px;}
.y25b{bottom:605.395350px;}
.y2a7{bottom:611.172600px;}
.y1dd{bottom:612.891000px;}
.y114{bottom:616.529400px;}
.y44{bottom:617.071650px;}
.ye8{bottom:617.391000px;}
.y233{bottom:618.118800px;}
.y120{bottom:618.891000px;}
.y2a3{bottom:619.681500px;}
.yc5{bottom:619.716300px;}
.y70{bottom:619.883100px;}
.y15f{bottom:621.281400px;}
.y190{bottom:621.330750px;}
.y25a{bottom:621.369300px;}
.y201{bottom:626.072100px;}
.y2a6{bottom:627.996900px;}
.y1dc{bottom:630.891000px;}
.y9b{bottom:633.891000px;}
.y232{bottom:634.602900px;}
.y2a2{bottom:634.681500px;}
.y43{bottom:635.071650px;}
.ye7{bottom:635.391000px;}
.y11f{bottom:636.891000px;}
.y259{bottom:637.343100px;}
.yc4{bottom:637.716300px;}
.y6f{bottom:637.883100px;}
.y15e{bottom:639.281400px;}
.y18f{bottom:639.330750px;}
.y2a5{bottom:644.821200px;}
.y1db{bottom:648.891000px;}
.y231{bottom:651.087000px;}
.y42{bottom:653.071650px;}
.y258{bottom:653.123550px;}
.ye6{bottom:653.391000px;}
.yf4{bottom:654.891000px;}
.yc3{bottom:655.716300px;}
.y6e{bottom:655.883100px;}
.y15d{bottom:657.281400px;}
.y18e{bottom:657.330750px;}
.y200{bottom:661.080000px;}
.y2a1{bottom:661.645350px;}
.yc{bottom:664.660200px;}
.y1da{bottom:666.891000px;}
.y230{bottom:667.571100px;}
.y257{bottom:669.097500px;}
.y41{bottom:671.071650px;}
.ye5{bottom:671.391000px;}
.yf3{bottom:672.891000px;}
.yc2{bottom:673.716300px;}
.y6d{bottom:673.883100px;}
.y1bc{bottom:675.233550px;}
.y15c{bottom:675.281400px;}
.y18d{bottom:675.330750px;}
.y2a0{bottom:678.469650px;}
.y29d{bottom:679.478400px;}
.yb{bottom:682.660200px;}
.y22f{bottom:683.861850px;}
.y1d9{bottom:684.891000px;}
.y256{bottom:685.071300px;}
.ye4{bottom:689.391000px;}
.y9a{bottom:690.891000px;}
.yc1{bottom:691.716300px;}
.y6c{bottom:691.883100px;}
.y15b{bottom:693.281400px;}
.y18c{bottom:693.330750px;}
.y29c{bottom:694.478400px;}
.y29f{bottom:695.293950px;}
.y22e{bottom:700.345950px;}
.y255{bottom:701.045100px;}
.y1d8{bottom:702.891000px;}
.y40{bottom:705.654300px;}
.ye3{bottom:707.391000px;}
.y99{bottom:708.891000px;}
.ya{bottom:709.164150px;}
.yc0{bottom:709.716300px;}
.y6b{bottom:709.883100px;}
.y15a{bottom:711.281400px;}
.y18b{bottom:711.330750px;}
.y29e{bottom:712.118100px;}
.y22d{bottom:716.830050px;}
.y254{bottom:717.019050px;}
.y1d7{bottom:720.891000px;}
.y3f{bottom:723.654300px;}
.ye2{bottom:725.391000px;}
.y98{bottom:726.891000px;}
.ybf{bottom:727.716300px;}
.y6a{bottom:727.883100px;}
.y29b{bottom:728.942400px;}
.y159{bottom:729.281400px;}
.y18a{bottom:729.330750px;}
.y22c{bottom:733.078200px;}
.y253{bottom:733.199550px;}
.y1d6{bottom:738.891000px;}
.y1ff{bottom:740.355600px;}
.y3e{bottom:741.654300px;}
.ye1{bottom:743.391000px;}
.y97{bottom:744.891000px;}
.ybe{bottom:745.716300px;}
.y29a{bottom:745.766550px;}
.y69{bottom:745.883100px;}
.y297{bottom:746.775450px;}
.y158{bottom:747.281400px;}
.y189{bottom:747.330750px;}
.y1d5{bottom:756.891000px;}
.y22b{bottom:759.060450px;}
.y3d{bottom:759.654300px;}
.ye0{bottom:761.391000px;}
.y296{bottom:761.775450px;}
.y299{bottom:762.590850px;}
.y96{bottom:762.891000px;}
.ybd{bottom:763.716300px;}
.y68{bottom:763.883100px;}
.y157{bottom:765.281400px;}
.y188{bottom:765.330750px;}
.y1d4{bottom:774.891000px;}
.y1fe{bottom:775.363350px;}
.y3c{bottom:777.654300px;}
.ydf{bottom:779.391000px;}
.y298{bottom:779.415150px;}
.y9{bottom:779.935950px;}
.y95{bottom:780.891000px;}
.ybc{bottom:781.716300px;}
.y67{bottom:781.883100px;}
.y156{bottom:783.281400px;}
.y187{bottom:783.330750px;}
.y1d3{bottom:792.891000px;}
.y3b{bottom:795.654300px;}
.y295{bottom:796.239300px;}
.y8{bottom:796.885950px;}
.y94{bottom:798.891000px;}
.ybb{bottom:799.716300px;}
.y66{bottom:799.883100px;}
.y155{bottom:801.281400px;}
.y186{bottom:801.330750px;}
.y22a{bottom:802.435650px;}
.y1fd{bottom:810.371400px;}
.y1d2{bottom:810.891000px;}
.yde{bottom:812.391000px;}
.y294{bottom:813.063600px;}
.y3a{bottom:813.654300px;}
.y7{bottom:813.835950px;}
.y291{bottom:814.072500px;}
.y93{bottom:816.891000px;}
.yba{bottom:817.716300px;}
.y65{bottom:817.883100px;}
.y154{bottom:819.281400px;}
.y185{bottom:819.330750px;}
.y290{bottom:829.072500px;}
.y293{bottom:829.887900px;}
.y6{bottom:830.785800px;}
.y39{bottom:831.654300px;}
.y92{bottom:834.891000px;}
.yb9{bottom:835.716300px;}
.y64{bottom:835.883100px;}
.y153{bottom:837.281400px;}
.y184{bottom:837.330750px;}
.y1fc{bottom:845.379150px;}
.y292{bottom:846.712050px;}
.y5{bottom:847.735800px;}
.y38{bottom:849.654300px;}
.y1d1{bottom:849.891000px;}
.y91{bottom:852.891000px;}
.yb8{bottom:853.716300px;}
.y63{bottom:853.883100px;}
.y152{bottom:855.281400px;}
.y183{bottom:855.330750px;}
.y229{bottom:861.703350px;}
.y28f{bottom:863.536500px;}
.y37{bottom:867.654300px;}
.y90{bottom:870.891000px;}
.yb7{bottom:871.716300px;}
.y62{bottom:871.883100px;}
.y4{bottom:873.189750px;}
.y151{bottom:873.281400px;}
.y182{bottom:873.330750px;}
.y228{bottom:879.703350px;}
.y28e{bottom:880.360800px;}
.y28b{bottom:881.369550px;}
.y36{bottom:885.654300px;}
.y8f{bottom:888.891000px;}
.yb6{bottom:889.716300px;}
.y61{bottom:889.883100px;}
.y150{bottom:891.281400px;}
.y181{bottom:891.330750px;}
.y28a{bottom:896.369550px;}
.y28d{bottom:897.184950px;}
.y227{bottom:897.703350px;}
.y8e{bottom:906.891000px;}
.yb5{bottom:907.716300px;}
.y60{bottom:907.883100px;}
.y14f{bottom:909.281400px;}
.y180{bottom:909.330750px;}
.y28c{bottom:914.009250px;}
.y1fb{bottom:914.450700px;}
.y226{bottom:915.703350px;}
.y35{bottom:921.891000px;}
.y8d{bottom:924.891000px;}
.yb4{bottom:925.716300px;}
.y14e{bottom:927.281400px;}
.y17f{bottom:927.330750px;}
.y289{bottom:930.833550px;}
.y1fa{bottom:932.450700px;}
.y225{bottom:933.703350px;}
.y3{bottom:939.709500px;}
.y5f{bottom:942.891000px;}
.yb3{bottom:943.716300px;}
.y14d{bottom:945.281400px;}
.y17e{bottom:945.330750px;}
.y288{bottom:947.657850px;}
.y224{bottom:951.703350px;}
.y285{bottom:956.166750px;}
.y5e{bottom:960.891000px;}
.yb2{bottom:961.716300px;}
.y14c{bottom:963.281400px;}
.y17d{bottom:963.330750px;}
.y287{bottom:964.482000px;}
.y223{bottom:969.703350px;}
.y34{bottom:978.891000px;}
.y14b{bottom:981.281400px;}
.y286{bottom:981.306300px;}
.y17c{bottom:981.330750px;}
.y222{bottom:987.703350px;}
.yb1{bottom:993.016500px;}
.y2{bottom:995.977200px;}
.y33{bottom:996.891000px;}
.y284{bottom:998.130450px;}
.y14a{bottom:999.281400px;}
.y221{bottom:1005.703350px;}
.y17b{bottom:1014.330750px;}
.y32{bottom:1014.891000px;}
.y283{bottom:1014.954750px;}
.y280{bottom:1015.963650px;}
.y149{bottom:1017.281400px;}
.y220{bottom:1023.703350px;}
.yb0{bottom:1029.891000px;}
.y27f{bottom:1030.963650px;}
.y282{bottom:1031.779050px;}
.y31{bottom:1032.891000px;}
.y148{bottom:1035.281400px;}
.y1{bottom:1035.575850px;}
.y21f{bottom:1041.703350px;}
.y1b2{bottom:1047.167850px;}
.y281{bottom:1048.603200px;}
.y30{bottom:1050.891000px;}
.y147{bottom:1053.281400px;}
.y21e{bottom:1059.703350px;}
.y1b1{bottom:1064.842500px;}
.y27e{bottom:1065.427500px;}
.y2f{bottom:1068.891000px;}
.y146{bottom:1071.281400px;}
.y27d{bottom:1082.058450px;}
.y1b0{bottom:1082.517300px;}
.y2e{bottom:1086.891000px;}
.y145{bottom:1089.281400px;}
.y21d{bottom:1098.703350px;}
.y1af{bottom:1100.191800px;}
.y2d{bottom:1104.891000px;}
.y144{bottom:1107.281400px;}
.y27{bottom:1108.311000px;}
.y27c{bottom:1108.465950px;}
.y1ae{bottom:1117.673100px;}
.y2c{bottom:1122.891000px;}
.y143{bottom:1125.281400px;}
.y1ad{bottom:1132.673100px;}
.y2b{bottom:1140.891000px;}
.y1c2{bottom:1142.133150px;}
.y27b{bottom:1151.843700px;}
.y26{bottom:1158.110100px;}
.y2a{bottom:1158.891000px;}
.y142{bottom:1159.132650px;}
.y1ac{bottom:1159.931100px;}
.y1c1{bottom:1160.133150px;}
.y21c{bottom:1160.971050px;}
.y25{bottom:1171.610100px;}
.y8c{bottom:1194.094800px;}
.y29{bottom:1194.094950px;}
.ha{height:28.516113px;}
.he{height:32.531250px;}
.h12{height:32.554725px;}
.hf{height:33.328125px;}
.h10{height:33.351562px;}
.hb{height:33.947754px;}
.h14{height:34.687500px;}
.h4{height:37.494141px;}
.h6{height:37.520508px;}
.hd{height:40.664062px;}
.h7{height:41.660156px;}
.h8{height:41.689453px;}
.h13{height:43.359375px;}
.h11{height:44.267271px;}
.h9{height:44.267871px;}
.hc{height:51.120000px;}
.h3{height:51.480000px;}
.h15{height:67.488000px;}
.h5{height:68.640000px;}
.h2{height:72.930000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x19{left:80.787300px;}
.x22{left:85.494450px;}
.x11{left:93.543300px;}
.x8{left:110.551200px;}
.x15{left:114.803100px;}
.x20{left:121.749900px;}
.xa{left:127.558950px;}
.x21{left:131.811000px;}
.xb{left:136.062900px;}
.x2{left:149.973150px;}
.x18{left:211.265250px;}
.x27{left:233.858250px;}
.x14{left:246.654000px;}
.x26{left:303.180750px;}
.x25{left:345.915450px;}
.x7{left:367.204050px;}
.x5{left:387.579750px;}
.x4{left:440.078700px;}
.x13{left:444.330750px;}
.x23{left:449.037750px;}
.x24{left:450.708600px;}
.x3{left:457.086600px;}
.x9{left:471.835650px;}
.xd{left:474.094350px;}
.x17{left:478.346400px;}
.xe{left:491.102250px;}
.xc{left:499.606200px;}
.x12{left:545.354850px;}
.x1b{left:548.086950px;}
.x1a{left:561.379500px;}
.x16{left:610.197300px;}
.x1c{left:619.647300px;}
.x6{left:623.398350px;}
.x1d{left:625.477500px;}
.xf{left:666.983700px;}
.x1e{left:721.735350px;}
.x1f{left:733.662750px;}
.x10{left:761.268450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls13{letter-spacing:-4.266667pt;}
.ls14{letter-spacing:-3.413333pt;}
.lsa{letter-spacing:-1.578667pt;}
.lse{letter-spacing:-1.194667pt;}
.lsd{letter-spacing:-1.150453pt;}
.ls2{letter-spacing:-1.024000pt;}
.ls8{letter-spacing:-0.853333pt;}
.ls12{letter-spacing:-0.810667pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.586667pt;}
.ls1{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.373333pt;}
.ls7{letter-spacing:-0.106667pt;}
.ls4{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.310933pt;}
.lsb{letter-spacing:0.533333pt;}
.lsf{letter-spacing:0.746667pt;}
.ls11{letter-spacing:28.600533pt;}
.ls10{letter-spacing:35.750933pt;}
.ws1{word-spacing:-20.480000pt;}
.wsa3{word-spacing:-13.866667pt;}
.ws1c{word-spacing:-12.520000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws65{word-spacing:-10.666667pt;}
.wsf6{word-spacing:-9.813333pt;}
.ws2{word-spacing:-7.773333pt;}
.wse7{word-spacing:-7.253333pt;}
.wsd3{word-spacing:-6.622880pt;}
.wse6{word-spacing:-6.400000pt;}
.ws28{word-spacing:-3.786667pt;}
.ws96{word-spacing:-2.986667pt;}
.ws98{word-spacing:-2.933333pt;}
.wsed{word-spacing:-2.640000pt;}
.ws8a{word-spacing:-2.613333pt;}
.ws52{word-spacing:-2.560000pt;}
.ws47{word-spacing:-2.453333pt;}
.ws2e{word-spacing:-2.400000pt;}
.ws7a{word-spacing:-2.346667pt;}
.ws75{word-spacing:-2.240000pt;}
.ws76{word-spacing:-2.186667pt;}
.ws2d{word-spacing:-2.080000pt;}
.wsdc{word-spacing:-2.048000pt;}
.ws9f{word-spacing:-1.973333pt;}
.wsd1{word-spacing:-1.920000pt;}
.ws77{word-spacing:-1.866667pt;}
.ws5b{word-spacing:-1.760000pt;}
.ws80{word-spacing:-1.653333pt;}
.wsd{word-spacing:-1.546667pt;}
.wsbe{word-spacing:-1.493333pt;}
.ws62{word-spacing:-1.488000pt;}
.wsdf{word-spacing:-1.392000pt;}
.wsa2{word-spacing:-1.344000pt;}
.wsc9{word-spacing:-1.280000pt;}
.wscd{word-spacing:-1.173333pt;}
.wse4{word-spacing:-1.120000pt;}
.wsbc{word-spacing:-1.066667pt;}
.ws9e{word-spacing:-1.013333pt;}
.ws4f{word-spacing:-0.960000pt;}
.ws59{word-spacing:-0.906667pt;}
.ws72{word-spacing:-0.853333pt;}
.wseb{word-spacing:-0.768000pt;}
.wse2{word-spacing:-0.746667pt;}
.wsc8{word-spacing:-0.693333pt;}
.ws92{word-spacing:-0.640000pt;}
.ws30{word-spacing:-0.586667pt;}
.wsa8{word-spacing:-0.533333pt;}
.ws56{word-spacing:-0.480000pt;}
.ws2b{word-spacing:-0.426667pt;}
.ws7d{word-spacing:-0.373333pt;}
.wsb1{word-spacing:-0.310933pt;}
.ws16{word-spacing:-0.266667pt;}
.wscb{word-spacing:-0.213333pt;}
.wsdb{word-spacing:-0.160000pt;}
.ws26{word-spacing:-0.106667pt;}
.ws95{word-spacing:-0.053333pt;}
.ws40{word-spacing:-0.040000pt;}
.ws3{word-spacing:0.000000pt;}
.ws25{word-spacing:0.053333pt;}
.ws51{word-spacing:0.106667pt;}
.ws21{word-spacing:0.266667pt;}
.wsa{word-spacing:0.320000pt;}
.ws31{word-spacing:0.373333pt;}
.ws58{word-spacing:0.426667pt;}
.ws1b{word-spacing:0.480000pt;}
.wsb7{word-spacing:0.533333pt;}
.ws55{word-spacing:0.586667pt;}
.ws1e{word-spacing:0.640000pt;}
.ws4b{word-spacing:0.693333pt;}
.ws48{word-spacing:0.800000pt;}
.wse8{word-spacing:0.810667pt;}
.ws1a{word-spacing:0.840000pt;}
.ws63{word-spacing:0.853333pt;}
.wsb9{word-spacing:0.906667pt;}
.ws3b{word-spacing:0.960000pt;}
.ws5{word-spacing:1.008000pt;}
.wsba{word-spacing:1.013333pt;}
.ws18{word-spacing:1.041600pt;}
.wsca{word-spacing:1.066667pt;}
.ws49{word-spacing:1.120000pt;}
.ws7f{word-spacing:1.173333pt;}
.ws27{word-spacing:1.226667pt;}
.ws19{word-spacing:1.276800pt;}
.ws20{word-spacing:1.280000pt;}
.ws45{word-spacing:1.333333pt;}
.ws7{word-spacing:1.386667pt;}
.wse3{word-spacing:1.440000pt;}
.ws44{word-spacing:1.493333pt;}
.ws78{word-spacing:1.600000pt;}
.wsaf{word-spacing:1.653333pt;}
.wsc7{word-spacing:1.706667pt;}
.wsc0{word-spacing:1.760000pt;}
.ws70{word-spacing:1.866667pt;}
.ws82{word-spacing:1.920000pt;}
.ws3c{word-spacing:1.973333pt;}
.wsd2{word-spacing:2.016000pt;}
.wsd5{word-spacing:2.026667pt;}
.ws3e{word-spacing:2.080000pt;}
.ws93{word-spacing:2.133333pt;}
.wsb5{word-spacing:2.186667pt;}
.ws4{word-spacing:2.208000pt;}
.wsea{word-spacing:2.218667pt;}
.ws10{word-spacing:2.293333pt;}
.ws13{word-spacing:2.400000pt;}
.wsde{word-spacing:2.560000pt;}
.ws97{word-spacing:2.613333pt;}
.ws2f{word-spacing:2.666667pt;}
.ws6{word-spacing:2.720000pt;}
.ws38{word-spacing:2.773333pt;}
.wsa9{word-spacing:2.826667pt;}
.ws8f{word-spacing:2.880000pt;}
.wsf{word-spacing:2.933333pt;}
.wsaa{word-spacing:2.986667pt;}
.wse{word-spacing:3.040000pt;}
.wsce{word-spacing:3.093333pt;}
.wsbb{word-spacing:3.200000pt;}
.wsa0{word-spacing:3.253333pt;}
.wsd0{word-spacing:3.306667pt;}
.ws50{word-spacing:3.413333pt;}
.ws12{word-spacing:3.466667pt;}
.ws9b{word-spacing:3.573333pt;}
.ws74{word-spacing:3.626667pt;}
.ws7e{word-spacing:3.733333pt;}
.wsda{word-spacing:3.786667pt;}
.ws3a{word-spacing:3.840000pt;}
.wsc3{word-spacing:3.893333pt;}
.ws34{word-spacing:3.946667pt;}
.wsec{word-spacing:3.968000pt;}
.ws53{word-spacing:4.053333pt;}
.wsc{word-spacing:4.106667pt;}
.ws32{word-spacing:4.160000pt;}
.ws11{word-spacing:4.213333pt;}
.ws83{word-spacing:4.224000pt;}
.wsdd{word-spacing:4.320000pt;}
.wsae{word-spacing:4.373333pt;}
.wsc4{word-spacing:4.426667pt;}
.ws6e{word-spacing:4.533333pt;}
.ws5f{word-spacing:4.693333pt;}
.ws3f{word-spacing:4.746667pt;}
.wse9{word-spacing:4.778667pt;}
.ws2a{word-spacing:4.800000pt;}
.wsb8{word-spacing:4.853333pt;}
.ws35{word-spacing:4.960000pt;}
.ws8c{word-spacing:5.013333pt;}
.wsbd{word-spacing:5.066667pt;}
.ws9{word-spacing:5.120000pt;}
.wscf{word-spacing:5.173333pt;}
.ws46{word-spacing:5.226667pt;}
.ws8d{word-spacing:5.280000pt;}
.ws8e{word-spacing:5.333333pt;}
.wsc2{word-spacing:5.386667pt;}
.wsb2{word-spacing:5.440000pt;}
.ws91{word-spacing:5.493333pt;}
.wsb4{word-spacing:5.546667pt;}
.wse0{word-spacing:5.600000pt;}
.wsd8{word-spacing:5.653333pt;}
.ws54{word-spacing:5.706667pt;}
.wsb{word-spacing:5.760000pt;}
.ws8{word-spacing:5.813333pt;}
.ws99{word-spacing:5.866667pt;}
.wsb3{word-spacing:5.973333pt;}
.ws7c{word-spacing:6.026667pt;}
.ws33{word-spacing:6.080000pt;}
.ws9c{word-spacing:6.133333pt;}
.ws36{word-spacing:6.186667pt;}
.wsb6{word-spacing:6.240000pt;}
.ws5c{word-spacing:6.293333pt;}
.ws90{word-spacing:6.346667pt;}
.ws6d{word-spacing:6.506667pt;}
.wsab{word-spacing:6.613333pt;}
.ws79{word-spacing:6.720000pt;}
.wsb0{word-spacing:6.773333pt;}
.ws9d{word-spacing:6.826667pt;}
.ws6f{word-spacing:6.933333pt;}
.ws4e{word-spacing:6.986667pt;}
.ws1d{word-spacing:7.040000pt;}
.ws5a{word-spacing:7.093333pt;}
.ws17{word-spacing:7.146667pt;}
.wsbf{word-spacing:7.200000pt;}
.ws14{word-spacing:7.360000pt;}
.ws29{word-spacing:7.573333pt;}
.ws39{word-spacing:7.733333pt;}
.wsc5{word-spacing:8.000000pt;}
.ws7b{word-spacing:8.053333pt;}
.wse1{word-spacing:8.106667pt;}
.ws61{word-spacing:8.160000pt;}
.ws24{word-spacing:8.426667pt;}
.ws15{word-spacing:8.586667pt;}
.wsa1{word-spacing:8.746667pt;}
.ws60{word-spacing:9.066667pt;}
.wscc{word-spacing:9.226667pt;}
.ws5e{word-spacing:9.280000pt;}
.wsd4{word-spacing:9.333333pt;}
.ws5d{word-spacing:9.493333pt;}
.ws4c{word-spacing:9.653333pt;}
.ws71{word-spacing:9.973333pt;}
.wsd7{word-spacing:10.346667pt;}
.ws1f{word-spacing:10.720000pt;}
.ws94{word-spacing:10.880000pt;}
.wsd9{word-spacing:10.933333pt;}
.wse5{word-spacing:10.986667pt;}
.ws73{word-spacing:11.093333pt;}
.ws57{word-spacing:11.306667pt;}
.ws3d{word-spacing:11.360000pt;}
.ws81{word-spacing:12.053333pt;}
.wsa7{word-spacing:12.106667pt;}
.ws8b{word-spacing:12.266667pt;}
.ws4a{word-spacing:12.320000pt;}
.wsd6{word-spacing:12.640000pt;}
.wsc6{word-spacing:13.013333pt;}
.ws22{word-spacing:13.226667pt;}
.ws23{word-spacing:13.920000pt;}
.ws2c{word-spacing:14.080000pt;}
.wsac{word-spacing:15.200000pt;}
.wsad{word-spacing:16.320000pt;}
.ws4d{word-spacing:17.386667pt;}
.ws9a{word-spacing:18.720000pt;}
.ws37{word-spacing:18.880000pt;}
.wsc1{word-spacing:21.493333pt;}
.ws84{word-spacing:22.907200pt;}
.ws41{word-spacing:49.861333pt;}
.ws89{word-spacing:65.848000pt;}
.ws85{word-spacing:66.267733pt;}
.ws87{word-spacing:67.430933pt;}
.ws64{word-spacing:71.251733pt;}
.ws6b{word-spacing:71.252267pt;}
.ws6a{word-spacing:78.768000pt;}
.ws69{word-spacing:81.921067pt;}
.ws88{word-spacing:87.646400pt;}
.wsf3{word-spacing:99.842133pt;}
.ws67{word-spacing:100.101333pt;}
.ws68{word-spacing:100.738667pt;}
.wsf5{word-spacing:101.445333pt;}
.ws43{word-spacing:101.879467pt;}
.ws66{word-spacing:103.891200pt;}
.wsef{word-spacing:114.459200pt;}
.wsf1{word-spacing:122.778667pt;}
.wsf7{word-spacing:124.362133pt;}
.wsf9{word-spacing:125.931200pt;}
.wsf2{word-spacing:125.931733pt;}
.wsa4{word-spacing:131.921600pt;}
.wsf0{word-spacing:144.112000pt;}
.wsf8{word-spacing:147.264533pt;}
.wsf4{word-spacing:147.265067pt;}
.ws42{word-spacing:155.212267pt;}
.ws6c{word-spacing:156.976533pt;}
.wsa5{word-spacing:175.194133pt;}
.wsa6{word-spacing:193.284800pt;}
.ws86{word-spacing:389.386667pt;}
.wsee{word-spacing:475.328533pt;}
._c{margin-left:-2510.497067pt;}
._32{margin-left:-53.151467pt;}
._34{margin-left:-42.521067pt;}
._b{margin-left:-12.049600pt;}
._22{margin-left:-5.407467pt;}
._8{margin-left:-4.277333pt;}
._2{margin-left:-2.837867pt;}
._0{margin-left:-1.205867pt;}
._1{width:1.106133pt;}
._4{width:2.565867pt;}
._3{width:3.545067pt;}
._5{width:4.610133pt;}
._7{width:5.776000pt;}
._6{width:6.762667pt;}
._9{width:7.754667pt;}
._a{width:8.725333pt;}
._10{width:9.834667pt;}
._d{width:10.992000pt;}
._f{width:12.400000pt;}
._2d{width:20.810133pt;}
._2c{width:22.197867pt;}
._33{width:32.924267pt;}
._23{width:35.082133pt;}
._24{width:38.633600pt;}
._25{width:51.967467pt;}
._26{width:54.324800pt;}
._e{width:58.708800pt;}
._11{width:63.245333pt;}
._27{width:71.989333pt;}
._16{width:84.635733pt;}
._29{width:89.448000pt;}
._14{width:94.656533pt;}
._28{width:97.848000pt;}
._19{width:104.912533pt;}
._70{width:108.925333pt;}
._1c{width:111.405333pt;}
._76{width:112.662933pt;}
._2b{width:119.684267pt;}
._30{width:122.085333pt;}
._21{width:123.320533pt;}
._73{width:130.258667pt;}
._1d{width:131.465067pt;}
._1a{width:133.048000pt;}
._12{width:134.282667pt;}
._77{width:135.186133pt;}
._75{width:139.730667pt;}
._18{width:153.270933pt;}
._74{width:154.188800pt;}
._15{width:155.212267pt;}
._20{width:156.976000pt;}
._6e{width:158.341867pt;}
._6d{width:161.221333pt;}
._6f{width:168.146667pt;}
._13{width:176.546667pt;}
._71{width:179.304533pt;}
._2f{width:181.544000pt;}
._72{width:189.480000pt;}
._31{width:196.660800pt;}
._2e{width:218.354667pt;}
._1b{width:222.501867pt;}
._2a{width:263.562667pt;}
._1e{width:292.944533pt;}
._17{width:294.528000pt;}
._1f{width:311.352533pt;}
._35{width:406.465600pt;}
._6c{width:519.147200pt;}
._54{width:551.014933pt;}
._38{width:560.787733pt;}
._58{width:629.873067pt;}
._55{width:634.139733pt;}
._51{width:687.547733pt;}
._3e{width:690.604800pt;}
._67{width:691.529067pt;}
._5e{width:693.852267pt;}
._6b{width:705.734933pt;}
._5f{width:707.131733pt;}
._53{width:715.434133pt;}
._3f{width:716.645333pt;}
._49{width:720.141867pt;}
._52{width:736.582933pt;}
._3b{width:740.169067pt;}
._61{width:747.634667pt;}
._44{width:758.259733pt;}
._42{width:780.113067pt;}
._4e{width:785.810133pt;}
._57{width:789.137067pt;}
._4f{width:795.564800pt;}
._5b{width:797.328533pt;}
._47{width:804.564267pt;}
._6a{width:820.947733pt;}
._4a{width:821.993067pt;}
._68{width:830.449600pt;}
._69{width:831.416533pt;}
._39{width:832.531733pt;}
._3a{width:837.168000pt;}
._43{width:838.704000pt;}
._5a{width:843.525867pt;}
._36{width:857.776000pt;}
._66{width:859.154133pt;}
._48{width:860.848000pt;}
._41{width:863.194667pt;}
._40{width:865.580800pt;}
._5d{width:875.056533pt;}
._59{width:878.534933pt;}
._50{width:879.749867pt;}
._64{width:881.606933pt;}
._56{width:883.717867pt;}
._60{width:884.849600pt;}
._65{width:888.365333pt;}
._63{width:891.550400pt;}
._45{width:893.143467pt;}
._4b{width:894.749867pt;}
._4d{width:896.243200pt;}
._3d{width:899.418667pt;}
._3c{width:903.216000pt;}
._5c{width:907.352000pt;}
._37{width:916.742933pt;}
._46{width:920.957333pt;}
._4c{width:925.849067pt;}
._62{width:931.330667pt;}
.fs5{font-size:31.093333pt;}
.fs6{font-size:33.600000pt;}
.fs7{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:56.051733pt;}
.y23{bottom:67.251733pt;}
.y28{bottom:68.524000pt;}
.y22{bottom:78.451733pt;}
.y21b{bottom:93.390933pt;}
.y1d0{bottom:96.633733pt;}
.y1f9{bottom:96.792000pt;}
.y27a{bottom:98.648267pt;}
.y252{bottom:98.708400pt;}
.y21a{bottom:109.390933pt;}
.y1cf{bottom:112.633733pt;}
.y1f8{bottom:112.792000pt;}
.y279{bottom:112.847200pt;}
.y251{bottom:113.360933pt;}
.y21{bottom:115.407600pt;}
.y113{bottom:117.954933pt;}
.y141{bottom:118.065600pt;}
.y103{bottom:118.125333pt;}
.yd8{bottom:118.858933pt;}
.y8b{bottom:119.007200pt;}
.y5d{bottom:119.027867pt;}
.y1bb{bottom:120.056933pt;}
.y17a{bottom:120.250133pt;}
.y1ab{bottom:120.294000pt;}
.y2d2{bottom:124.187600pt;}
.y219{bottom:125.390933pt;}
.y278{bottom:127.046267pt;}
.y250{bottom:128.013467pt;}
.y1ce{bottom:128.633733pt;}
.y1f7{bottom:128.792000pt;}
.y140{bottom:131.398933pt;}
.y20{bottom:131.407600pt;}
.y102{bottom:134.125333pt;}
.yd7{bottom:134.858933pt;}
.y8a{bottom:135.007200pt;}
.y5c{bottom:135.027867pt;}
.y1ba{bottom:136.056933pt;}
.y179{bottom:136.250133pt;}
.y1aa{bottom:136.294000pt;}
.y112{bottom:136.493067pt;}
.y2d1{bottom:137.520933pt;}
.y277{bottom:141.245200pt;}
.y218{bottom:141.390933pt;}
.y24f{bottom:142.666000pt;}
.y1cd{bottom:144.633733pt;}
.y13f{bottom:144.732267pt;}
.y1f6{bottom:144.792000pt;}
.y1f{bottom:147.407600pt;}
.y101{bottom:150.125333pt;}
.y2d0{bottom:150.854267pt;}
.yd6{bottom:150.858933pt;}
.y89{bottom:151.007200pt;}
.y5b{bottom:151.027867pt;}
.y111{bottom:151.636933pt;}
.y1b9{bottom:152.056933pt;}
.y178{bottom:152.250133pt;}
.y1a9{bottom:152.294000pt;}
.y276{bottom:155.272400pt;}
.y24e{bottom:155.999333pt;}
.y217{bottom:157.390933pt;}
.y13e{bottom:158.065600pt;}
.y1cc{bottom:160.633733pt;}
.y1f5{bottom:160.792000pt;}
.y1e{bottom:163.407600pt;}
.y100{bottom:166.125333pt;}
.y110{bottom:166.780800pt;}
.yd5{bottom:166.858933pt;}
.y88{bottom:167.007200pt;}
.y5a{bottom:167.027867pt;}
.y1b8{bottom:168.056933pt;}
.y177{bottom:168.250133pt;}
.y1a8{bottom:168.294000pt;}
.y2cf{bottom:169.392400pt;}
.y275{bottom:169.471333pt;}
.y24d{bottom:170.480000pt;}
.y13d{bottom:171.398933pt;}
.y216{bottom:173.390933pt;}
.y1cb{bottom:176.633733pt;}
.y1f4{bottom:176.792000pt;}
.y1d{bottom:179.407600pt;}
.y10f{bottom:181.924667pt;}
.yff{bottom:182.125333pt;}
.yd4{bottom:182.858933pt;}
.y87{bottom:183.007200pt;}
.y59{bottom:183.027867pt;}
.y274{bottom:183.670267pt;}
.y1b7{bottom:184.056933pt;}
.y176{bottom:184.250133pt;}
.y1a7{bottom:184.294000pt;}
.y2ce{bottom:184.347200pt;}
.y13c{bottom:184.732267pt;}
.y24c{bottom:185.132533pt;}
.y2cb{bottom:185.244000pt;}
.y215{bottom:189.390933pt;}
.y1ca{bottom:192.633733pt;}
.y1f3{bottom:192.792000pt;}
.y1c{bottom:195.407600pt;}
.y10e{bottom:196.896667pt;}
.y273{bottom:197.869200pt;}
.yfe{bottom:198.125333pt;}
.y2ca{bottom:198.577333pt;}
.yd3{bottom:198.858933pt;}
.y86{bottom:199.007200pt;}
.y58{bottom:199.027867pt;}
.y2cd{bottom:199.302133pt;}
.y24b{bottom:199.784933pt;}
.y1b6{bottom:200.056933pt;}
.y175{bottom:200.250133pt;}
.y1a6{bottom:200.294000pt;}
.y13b{bottom:203.270400pt;}
.y214{bottom:205.390933pt;}
.y1c9{bottom:208.633733pt;}
.y1f2{bottom:208.792000pt;}
.y1b{bottom:211.407600pt;}
.y10d{bottom:212.040533pt;}
.y272{bottom:212.068267pt;}
.yfd{bottom:214.125333pt;}
.y2cc{bottom:214.256933pt;}
.y24a{bottom:214.437600pt;}
.yd2{bottom:214.858933pt;}
.y85{bottom:215.007200pt;}
.y57{bottom:215.027867pt;}
.y1b5{bottom:216.056933pt;}
.y174{bottom:216.250133pt;}
.y1a5{bottom:216.294000pt;}
.y13a{bottom:218.414267pt;}
.y213{bottom:221.390933pt;}
.y1c8{bottom:224.633733pt;}
.y1f1{bottom:224.792000pt;}
.y271{bottom:226.095333pt;}
.y10c{bottom:227.184400pt;}
.y1a{bottom:227.407600pt;}
.y249{bottom:228.918133pt;}
.y2c9{bottom:229.211867pt;}
.yfc{bottom:230.125333pt;}
.yd1{bottom:230.858933pt;}
.y84{bottom:231.007200pt;}
.yaf{bottom:231.027867pt;}
.y1b4{bottom:232.056933pt;}
.y173{bottom:232.250133pt;}
.y1a4{bottom:232.294000pt;}
.y139{bottom:233.558133pt;}
.y212{bottom:237.390933pt;}
.y2c5{bottom:238.396800pt;}
.y270{bottom:240.294400pt;}
.y1c7{bottom:240.633733pt;}
.y1f0{bottom:240.792000pt;}
.y10b{bottom:242.328267pt;}
.y19{bottom:243.407600pt;}
.y248{bottom:243.570667pt;}
.y2c8{bottom:244.166800pt;}
.y56{bottom:245.768000pt;}
.yfb{bottom:246.125333pt;}
.yd0{bottom:246.858933pt;}
.y83{bottom:247.007200pt;}
.yae{bottom:247.027867pt;}
.y1b3{bottom:248.056933pt;}
.y172{bottom:248.250133pt;}
.y1a3{bottom:248.294000pt;}
.y138{bottom:248.702000pt;}
.y2c4{bottom:251.730133pt;}
.y211{bottom:253.390933pt;}
.y26f{bottom:254.493333pt;}
.y1c6{bottom:256.633733pt;}
.y1ef{bottom:256.792000pt;}
.y10a{bottom:257.300267pt;}
.y247{bottom:258.223200pt;}
.y2c7{bottom:259.121600pt;}
.y18{bottom:259.407467pt;}
.y55{bottom:261.768000pt;}
.yfa{bottom:262.125333pt;}
.ycf{bottom:262.858933pt;}
.y82{bottom:263.007200pt;}
.yad{bottom:263.027867pt;}
.y137{bottom:263.674000pt;}
.y171{bottom:264.250133pt;}
.y1a2{bottom:264.294000pt;}
.y2c3{bottom:265.063467pt;}
.y26e{bottom:268.692267pt;}
.y210{bottom:269.390933pt;}
.y109{bottom:272.444133pt;}
.y1c5{bottom:272.633733pt;}
.y1ee{bottom:272.792000pt;}
.y246{bottom:272.875733pt;}
.y2c6{bottom:274.076533pt;}
.y17{bottom:275.407467pt;}
.y54{bottom:277.768000pt;}
.yf9{bottom:278.125333pt;}
.y136{bottom:278.817867pt;}
.yce{bottom:278.858933pt;}
.y81{bottom:279.007200pt;}
.yac{bottom:279.027867pt;}
.y170{bottom:280.250133pt;}
.y1a1{bottom:280.294000pt;}
.y26d{bottom:282.891333pt;}
.y20f{bottom:285.390933pt;}
.y245{bottom:287.528267pt;}
.y108{bottom:287.587867pt;}
.y1ed{bottom:288.792000pt;}
.y2c2{bottom:289.031467pt;}
.y16{bottom:291.407467pt;}
.y53{bottom:293.768000pt;}
.y135{bottom:293.961733pt;}
.yf8{bottom:294.125333pt;}
.ycd{bottom:294.858933pt;}
.y80{bottom:295.007200pt;}
.yab{bottom:295.027867pt;}
.y16f{bottom:296.250133pt;}
.y1a0{bottom:296.294000pt;}
.y26c{bottom:297.090267pt;}
.y20e{bottom:301.390933pt;}
.y244{bottom:302.180800pt;}
.y107{bottom:302.731733pt;}
.y2c1{bottom:303.986400pt;}
.y1ec{bottom:304.792000pt;}
.y2be{bottom:304.883067pt;}
.y1c4{bottom:306.125333pt;}
.y15{bottom:307.407467pt;}
.y134{bottom:309.105600pt;}
.y52{bottom:309.768000pt;}
.yf7{bottom:310.125333pt;}
.ycc{bottom:310.858933pt;}
.y7f{bottom:311.007200pt;}
.yaa{bottom:311.027867pt;}
.y26b{bottom:311.289200pt;}
.y16e{bottom:312.250133pt;}
.y19f{bottom:312.294000pt;}
.y243{bottom:316.661467pt;}
.y20d{bottom:317.390933pt;}
.y106{bottom:317.789733pt;}
.y2bd{bottom:318.216400pt;}
.y2c0{bottom:318.941200pt;}
.y1eb{bottom:320.792000pt;}
.y14{bottom:323.407467pt;}
.y133{bottom:324.077600pt;}
.y26a{bottom:325.488267pt;}
.y51{bottom:325.768000pt;}
.yf6{bottom:326.125333pt;}
.ycb{bottom:326.858933pt;}
.y7e{bottom:327.007200pt;}
.ya9{bottom:327.027867pt;}
.y16d{bottom:328.250133pt;}
.y19e{bottom:328.294000pt;}
.y242{bottom:331.314000pt;}
.y20c{bottom:333.390933pt;}
.y2bf{bottom:333.896133pt;}
.y1ea{bottom:336.792000pt;}
.y132{bottom:339.221333pt;}
.y13{bottom:339.407467pt;}
.y269{bottom:339.515333pt;}
.y105{bottom:341.538000pt;}
.y50{bottom:341.768000pt;}
.yf5{bottom:342.125333pt;}
.yca{bottom:342.858933pt;}
.y7d{bottom:343.007200pt;}
.ya8{bottom:343.027867pt;}
.y16c{bottom:344.250133pt;}
.y19d{bottom:344.294000pt;}
.y241{bottom:345.966533pt;}
.y2bc{bottom:348.851067pt;}
.y20b{bottom:349.390933pt;}
.y1e9{bottom:352.792000pt;}
.y268{bottom:353.714400pt;}
.y131{bottom:354.365333pt;}
.y12{bottom:355.407467pt;}
.y104{bottom:357.538000pt;}
.y4f{bottom:357.768000pt;}
.y2b8{bottom:358.036000pt;}
.y12c{bottom:358.125333pt;}
.y7c{bottom:359.007200pt;}
.ya7{bottom:359.027733pt;}
.y16b{bottom:360.250133pt;}
.y19c{bottom:360.294000pt;}
.y240{bottom:360.619067pt;}
.y2bb{bottom:363.805867pt;}
.y20a{bottom:365.390800pt;}
.y267{bottom:367.913333pt;}
.y1e8{bottom:368.792000pt;}
.y130{bottom:369.509200pt;}
.y2b7{bottom:371.369333pt;}
.y11{bottom:371.407467pt;}
.y4e{bottom:373.768000pt;}
.y12b{bottom:374.125333pt;}
.y7b{bottom:375.007200pt;}
.ya6{bottom:375.027733pt;}
.y23f{bottom:375.271600pt;}
.y16a{bottom:376.250133pt;}
.y19b{bottom:376.294000pt;}
.y2ba{bottom:378.760800pt;}
.y209{bottom:381.390800pt;}
.ydd{bottom:381.553867pt;}
.y266{bottom:382.112267pt;}
.y11e{bottom:382.743600pt;}
.y12f{bottom:384.567067pt;}
.y2b6{bottom:384.702667pt;}
.y1e7{bottom:384.792000pt;}
.y10{bottom:387.407467pt;}
.yf2{bottom:388.792000pt;}
.y4d{bottom:389.768000pt;}
.y23e{bottom:389.924133pt;}
.y12a{bottom:390.125333pt;}
.y7a{bottom:391.007200pt;}
.ya5{bottom:391.027733pt;}
.y169{bottom:392.250133pt;}
.y19a{bottom:392.294000pt;}
.y2b9{bottom:393.715733pt;}
.y265{bottom:396.311333pt;}
.ydc{bottom:397.264667pt;}
.y208{bottom:397.390800pt;}
.y11d{bottom:398.454400pt;}
.y1e6{bottom:400.792000pt;}
.y23d{bottom:404.404800pt;}
.yf1{bottom:404.792000pt;}
.y4c{bottom:405.768000pt;}
.y129{bottom:406.125333pt;}
.y79{bottom:407.007200pt;}
.ya4{bottom:407.027733pt;}
.y168{bottom:408.250133pt;}
.y199{bottom:408.294000pt;}
.y12e{bottom:408.315333pt;}
.y2b5{bottom:408.670533pt;}
.y264{bottom:410.510267pt;}
.ydb{bottom:413.308800pt;}
.y207{bottom:413.390800pt;}
.y11c{bottom:414.165200pt;}
.yf{bottom:415.880000pt;}
.y1e5{bottom:416.792000pt;}
.y2b1{bottom:417.855467pt;}
.y23c{bottom:419.057333pt;}
.yf0{bottom:420.792000pt;}
.y4b{bottom:421.768000pt;}
.y128{bottom:422.125333pt;}
.y78{bottom:423.007200pt;}
.ya3{bottom:423.027733pt;}
.y2b4{bottom:423.625467pt;}
.y167{bottom:424.250133pt;}
.y198{bottom:424.294000pt;}
.y12d{bottom:424.315333pt;}
.y1c3{bottom:424.325733pt;}
.y263{bottom:424.709200pt;}
.y206{bottom:429.390800pt;}
.y11b{bottom:429.704133pt;}
.y2b0{bottom:431.188800pt;}
.y1e4{bottom:432.792000pt;}
.y23b{bottom:433.709733pt;}
.yef{bottom:436.792000pt;}
.yda{bottom:437.538000pt;}
.y4a{bottom:437.768000pt;}
.y127{bottom:438.125333pt;}
.y2b3{bottom:438.580400pt;}
.y262{bottom:438.908267pt;}
.y77{bottom:439.007200pt;}
.ya2{bottom:439.027733pt;}
.y166{bottom:440.250133pt;}
.y197{bottom:440.294000pt;}
.y2af{bottom:444.522133pt;}
.y205{bottom:445.390800pt;}
.y11a{bottom:445.414933pt;}
.y23a{bottom:448.362267pt;}
.y1e3{bottom:448.792000pt;}
.yee{bottom:452.792000pt;}
.y261{bottom:452.935333pt;}
.y2b2{bottom:453.535200pt;}
.yd9{bottom:453.538000pt;}
.y49{bottom:453.768000pt;}
.y126{bottom:454.125333pt;}
.y1c0{bottom:454.215067pt;}
.y76{bottom:455.007200pt;}
.ya1{bottom:455.027733pt;}
.y165{bottom:456.250133pt;}
.y196{bottom:456.294000pt;}
.y119{bottom:461.125600pt;}
.y204{bottom:461.390800pt;}
.y239{bottom:463.014800pt;}
.y1e2{bottom:464.792000pt;}
.y260{bottom:467.134267pt;}
.y2ae{bottom:468.490133pt;}
.yed{bottom:468.792000pt;}
.y125{bottom:470.125333pt;}
.y1bf{bottom:470.215067pt;}
.y75{bottom:471.007200pt;}
.ya0{bottom:471.027733pt;}
.y164{bottom:472.250133pt;}
.y195{bottom:472.294000pt;}
.y118{bottom:476.664533pt;}
.y203{bottom:477.390800pt;}
.y238{bottom:477.667333pt;}
.y1e1{bottom:480.792000pt;}
.y25f{bottom:481.333333pt;}
.y2ad{bottom:483.445067pt;}
.y2aa{bottom:484.341733pt;}
.y48{bottom:484.508133pt;}
.yec{bottom:484.792000pt;}
.y124{bottom:486.125333pt;}
.y1be{bottom:486.215067pt;}
.yc9{bottom:486.858933pt;}
.y74{bottom:487.007200pt;}
.y9f{bottom:487.027733pt;}
.y163{bottom:488.250133pt;}
.y194{bottom:488.294000pt;}
.ye{bottom:489.223733pt;}
.y237{bottom:492.319867pt;}
.y117{bottom:492.375333pt;}
.y25e{bottom:495.532267pt;}
.y1e0{bottom:496.792000pt;}
.y2a9{bottom:497.675067pt;}
.y2ac{bottom:498.399867pt;}
.y47{bottom:500.508133pt;}
.yeb{bottom:500.792000pt;}
.y123{bottom:502.125333pt;}
.y1bd{bottom:502.215067pt;}
.yc8{bottom:502.858933pt;}
.y73{bottom:503.007200pt;}
.y9e{bottom:503.027733pt;}
.y162{bottom:504.250133pt;}
.y193{bottom:504.294000pt;}
.y236{bottom:506.972400pt;}
.y116{bottom:508.086133pt;}
.y202{bottom:508.508933pt;}
.y25d{bottom:509.731333pt;}
.yd{bottom:512.782800pt;}
.y1df{bottom:512.792000pt;}
.y2ab{bottom:513.354800pt;}
.y46{bottom:516.508133pt;}
.yea{bottom:516.792000pt;}
.y122{bottom:518.125333pt;}
.yc7{bottom:518.858933pt;}
.y72{bottom:519.007200pt;}
.y9d{bottom:519.027733pt;}
.y161{bottom:520.250133pt;}
.y192{bottom:520.294000pt;}
.y235{bottom:520.305733pt;}
.y115{bottom:523.711067pt;}
.y25c{bottom:523.930267pt;}
.y2a8{bottom:528.309733pt;}
.y1de{bottom:528.792000pt;}
.y45{bottom:532.508133pt;}
.ye9{bottom:532.792000pt;}
.y121{bottom:534.125333pt;}
.y234{bottom:534.786400pt;}
.yc6{bottom:534.858933pt;}
.y71{bottom:535.007200pt;}
.y9c{bottom:535.027733pt;}
.y160{bottom:536.250133pt;}
.y191{bottom:536.294000pt;}
.y2a4{bottom:537.494667pt;}
.y25b{bottom:538.129200pt;}
.y2a7{bottom:543.264533pt;}
.y1dd{bottom:544.792000pt;}
.y114{bottom:548.026133pt;}
.y44{bottom:548.508133pt;}
.ye8{bottom:548.792000pt;}
.y233{bottom:549.438933pt;}
.y120{bottom:550.125333pt;}
.y2a3{bottom:550.828000pt;}
.yc5{bottom:550.858933pt;}
.y70{bottom:551.007200pt;}
.y15f{bottom:552.250133pt;}
.y190{bottom:552.294000pt;}
.y25a{bottom:552.328267pt;}
.y201{bottom:556.508533pt;}
.y2a6{bottom:558.219467pt;}
.y1dc{bottom:560.792000pt;}
.y9b{bottom:563.458667pt;}
.y232{bottom:564.091467pt;}
.y2a2{bottom:564.161333pt;}
.y43{bottom:564.508133pt;}
.ye7{bottom:564.792000pt;}
.y11f{bottom:566.125333pt;}
.y259{bottom:566.527200pt;}
.yc4{bottom:566.858933pt;}
.y6f{bottom:567.007200pt;}
.y15e{bottom:568.250133pt;}
.y18f{bottom:568.294000pt;}
.y2a5{bottom:573.174400pt;}
.y1db{bottom:576.792000pt;}
.y231{bottom:578.744000pt;}
.y42{bottom:580.508133pt;}
.y258{bottom:580.554267pt;}
.ye6{bottom:580.792000pt;}
.yf4{bottom:582.125333pt;}
.yc3{bottom:582.858933pt;}
.y6e{bottom:583.007200pt;}
.y15d{bottom:584.250133pt;}
.y18e{bottom:584.294000pt;}
.y200{bottom:587.626667pt;}
.y2a1{bottom:588.129200pt;}
.yc{bottom:590.809067pt;}
.y1da{bottom:592.792000pt;}
.y230{bottom:593.396533pt;}
.y257{bottom:594.753333pt;}
.y41{bottom:596.508133pt;}
.ye5{bottom:596.792000pt;}
.yf3{bottom:598.125333pt;}
.yc2{bottom:598.858933pt;}
.y6d{bottom:599.007200pt;}
.y1bc{bottom:600.207600pt;}
.y15c{bottom:600.250133pt;}
.y18d{bottom:600.294000pt;}
.y2a0{bottom:603.084133pt;}
.y29d{bottom:603.980800pt;}
.yb{bottom:606.809067pt;}
.y22f{bottom:607.877200pt;}
.y1d9{bottom:608.792000pt;}
.y256{bottom:608.952267pt;}
.ye4{bottom:612.792000pt;}
.y9a{bottom:614.125333pt;}
.yc1{bottom:614.858933pt;}
.y6c{bottom:615.007200pt;}
.y15b{bottom:616.250133pt;}
.y18c{bottom:616.294000pt;}
.y29c{bottom:617.314133pt;}
.y29f{bottom:618.039067pt;}
.y22e{bottom:622.529733pt;}
.y255{bottom:623.151200pt;}
.y1d8{bottom:624.792000pt;}
.y40{bottom:627.248267pt;}
.ye3{bottom:628.792000pt;}
.y99{bottom:630.125333pt;}
.ya{bottom:630.368133pt;}
.yc0{bottom:630.858933pt;}
.y6b{bottom:631.007200pt;}
.y15a{bottom:632.250133pt;}
.y18b{bottom:632.294000pt;}
.y29e{bottom:632.993867pt;}
.y22d{bottom:637.182267pt;}
.y254{bottom:637.350267pt;}
.y1d7{bottom:640.792000pt;}
.y3f{bottom:643.248267pt;}
.ye2{bottom:644.792000pt;}
.y98{bottom:646.125333pt;}
.ybf{bottom:646.858933pt;}
.y6a{bottom:647.007200pt;}
.y29b{bottom:647.948800pt;}
.y159{bottom:648.250133pt;}
.y18a{bottom:648.294000pt;}
.y22c{bottom:651.625067pt;}
.y253{bottom:651.732933pt;}
.y1d6{bottom:656.792000pt;}
.y1ff{bottom:658.093867pt;}
.y3e{bottom:659.248267pt;}
.ye1{bottom:660.792000pt;}
.y97{bottom:662.125333pt;}
.ybe{bottom:662.858933pt;}
.y29a{bottom:662.903600pt;}
.y69{bottom:663.007200pt;}
.y297{bottom:663.800400pt;}
.y158{bottom:664.250133pt;}
.y189{bottom:664.294000pt;}
.y1d5{bottom:672.792000pt;}
.y22b{bottom:674.720400pt;}
.y3d{bottom:675.248267pt;}
.ye0{bottom:676.792000pt;}
.y296{bottom:677.133733pt;}
.y299{bottom:677.858533pt;}
.y96{bottom:678.125333pt;}
.ybd{bottom:678.858933pt;}
.y68{bottom:679.007200pt;}
.y157{bottom:680.250133pt;}
.y188{bottom:680.294000pt;}
.y1d4{bottom:688.792000pt;}
.y1fe{bottom:689.211867pt;}
.y3c{bottom:691.248267pt;}
.ydf{bottom:692.792000pt;}
.y298{bottom:692.813467pt;}
.y9{bottom:693.276400pt;}
.y95{bottom:694.125333pt;}
.ybc{bottom:694.858933pt;}
.y67{bottom:695.007200pt;}
.y156{bottom:696.250133pt;}
.y187{bottom:696.294000pt;}
.y1d3{bottom:704.792000pt;}
.y3b{bottom:707.248267pt;}
.y295{bottom:707.768267pt;}
.y8{bottom:708.343067pt;}
.y94{bottom:710.125333pt;}
.ybb{bottom:710.858933pt;}
.y66{bottom:711.007200pt;}
.y155{bottom:712.250133pt;}
.y186{bottom:712.294000pt;}
.y22a{bottom:713.276133pt;}
.y1fd{bottom:720.330133pt;}
.y1d2{bottom:720.792000pt;}
.yde{bottom:722.125333pt;}
.y294{bottom:722.723200pt;}
.y3a{bottom:723.248267pt;}
.y7{bottom:723.409733pt;}
.y291{bottom:723.620000pt;}
.y93{bottom:726.125333pt;}
.yba{bottom:726.858933pt;}
.y65{bottom:727.007200pt;}
.y154{bottom:728.250133pt;}
.y185{bottom:728.294000pt;}
.y290{bottom:736.953333pt;}
.y293{bottom:737.678133pt;}
.y6{bottom:738.476267pt;}
.y39{bottom:739.248267pt;}
.y92{bottom:742.125333pt;}
.yb9{bottom:742.858933pt;}
.y64{bottom:743.007200pt;}
.y153{bottom:744.250133pt;}
.y184{bottom:744.294000pt;}
.y1fc{bottom:751.448133pt;}
.y292{bottom:752.632933pt;}
.y5{bottom:753.542933pt;}
.y38{bottom:755.248267pt;}
.y1d1{bottom:755.458667pt;}
.y91{bottom:758.125333pt;}
.yb8{bottom:758.858933pt;}
.y63{bottom:759.007200pt;}
.y152{bottom:760.250133pt;}
.y183{bottom:760.294000pt;}
.y229{bottom:765.958533pt;}
.y28f{bottom:767.588000pt;}
.y37{bottom:771.248267pt;}
.y90{bottom:774.125333pt;}
.yb7{bottom:774.858933pt;}
.y62{bottom:775.007200pt;}
.y4{bottom:776.168667pt;}
.y151{bottom:776.250133pt;}
.y182{bottom:776.294000pt;}
.y228{bottom:781.958533pt;}
.y28e{bottom:782.542933pt;}
.y28b{bottom:783.439600pt;}
.y36{bottom:787.248267pt;}
.y8f{bottom:790.125333pt;}
.yb6{bottom:790.858933pt;}
.y61{bottom:791.007200pt;}
.y150{bottom:792.250133pt;}
.y181{bottom:792.294000pt;}
.y28a{bottom:796.772933pt;}
.y28d{bottom:797.497733pt;}
.y227{bottom:797.958533pt;}
.y8e{bottom:806.125333pt;}
.yb5{bottom:806.858933pt;}
.y60{bottom:807.007200pt;}
.y14f{bottom:808.250133pt;}
.y180{bottom:808.294000pt;}
.y28c{bottom:812.452667pt;}
.y1fb{bottom:812.845067pt;}
.y226{bottom:813.958533pt;}
.y35{bottom:819.458667pt;}
.y8d{bottom:822.125333pt;}
.yb4{bottom:822.858933pt;}
.y14e{bottom:824.250133pt;}
.y17f{bottom:824.294000pt;}
.y289{bottom:827.407600pt;}
.y1fa{bottom:828.845067pt;}
.y225{bottom:829.958533pt;}
.y3{bottom:835.297333pt;}
.y5f{bottom:838.125333pt;}
.yb3{bottom:838.858933pt;}
.y14d{bottom:840.250133pt;}
.y17e{bottom:840.294000pt;}
.y288{bottom:842.362533pt;}
.y224{bottom:845.958533pt;}
.y285{bottom:849.926000pt;}
.y5e{bottom:854.125333pt;}
.yb2{bottom:854.858933pt;}
.y14c{bottom:856.250133pt;}
.y17d{bottom:856.294000pt;}
.y287{bottom:857.317333pt;}
.y223{bottom:861.958533pt;}
.y34{bottom:870.125333pt;}
.y14b{bottom:872.250133pt;}
.y286{bottom:872.272267pt;}
.y17c{bottom:872.294000pt;}
.y222{bottom:877.958533pt;}
.yb1{bottom:882.681333pt;}
.y2{bottom:885.313067pt;}
.y33{bottom:886.125333pt;}
.y284{bottom:887.227067pt;}
.y14a{bottom:888.250133pt;}
.y221{bottom:893.958533pt;}
.y17b{bottom:901.627333pt;}
.y32{bottom:902.125333pt;}
.y283{bottom:902.182000pt;}
.y280{bottom:903.078800pt;}
.y149{bottom:904.250133pt;}
.y220{bottom:909.958533pt;}
.yb0{bottom:915.458667pt;}
.y27f{bottom:916.412133pt;}
.y282{bottom:917.136933pt;}
.y31{bottom:918.125333pt;}
.y148{bottom:920.250133pt;}
.y1{bottom:920.511867pt;}
.y21f{bottom:925.958533pt;}
.y1b2{bottom:930.815867pt;}
.y281{bottom:932.091733pt;}
.y30{bottom:934.125333pt;}
.y147{bottom:936.250133pt;}
.y21e{bottom:941.958533pt;}
.y1b1{bottom:946.526667pt;}
.y27e{bottom:947.046667pt;}
.y2f{bottom:950.125333pt;}
.y146{bottom:952.250133pt;}
.y27d{bottom:961.829733pt;}
.y1b0{bottom:962.237600pt;}
.y2e{bottom:966.125333pt;}
.y145{bottom:968.250133pt;}
.y21d{bottom:976.625200pt;}
.y1af{bottom:977.948267pt;}
.y2d{bottom:982.125333pt;}
.y144{bottom:984.250133pt;}
.y27{bottom:985.165333pt;}
.y27c{bottom:985.303067pt;}
.y1ae{bottom:993.487200pt;}
.y2c{bottom:998.125333pt;}
.y143{bottom:1000.250133pt;}
.y1ad{bottom:1006.820533pt;}
.y2b{bottom:1014.125333pt;}
.y1c2{bottom:1015.229467pt;}
.y27b{bottom:1023.861067pt;}
.y26{bottom:1029.431200pt;}
.y2a{bottom:1030.125333pt;}
.y142{bottom:1030.340133pt;}
.y1ac{bottom:1031.049867pt;}
.y1c1{bottom:1031.229467pt;}
.y21c{bottom:1031.974267pt;}
.y25{bottom:1041.431200pt;}
.y8c{bottom:1061.417600pt;}
.y29{bottom:1061.417733pt;}
.ha{height:25.347656pt;}
.he{height:28.916667pt;}
.h12{height:28.937533pt;}
.hf{height:29.625000pt;}
.h10{height:29.645833pt;}
.hb{height:30.175781pt;}
.h14{height:30.833333pt;}
.h4{height:33.328125pt;}
.h6{height:33.351562pt;}
.hd{height:36.145833pt;}
.h7{height:37.031250pt;}
.h8{height:37.057292pt;}
.h13{height:38.541667pt;}
.h11{height:39.348685pt;}
.h9{height:39.349219pt;}
.hc{height:45.440000pt;}
.h3{height:45.760000pt;}
.h15{height:59.989333pt;}
.h5{height:61.013333pt;}
.h2{height:64.826667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x19{left:71.810933pt;}
.x22{left:75.995067pt;}
.x11{left:83.149600pt;}
.x8{left:98.267733pt;}
.x15{left:102.047200pt;}
.x20{left:108.222133pt;}
.xa{left:113.385733pt;}
.x21{left:117.165333pt;}
.xb{left:120.944800pt;}
.x2{left:133.309467pt;}
.x18{left:187.791333pt;}
.x27{left:207.874000pt;}
.x14{left:219.248000pt;}
.x26{left:269.494000pt;}
.x25{left:307.480400pt;}
.x7{left:326.403600pt;}
.x5{left:344.515333pt;}
.x4{left:391.181067pt;}
.x13{left:394.960667pt;}
.x23{left:399.144667pt;}
.x24{left:400.629867pt;}
.x3{left:406.299200pt;}
.x9{left:419.409467pt;}
.xd{left:421.417200pt;}
.x17{left:425.196800pt;}
.xe{left:436.535333pt;}
.xc{left:444.094400pt;}
.x12{left:484.759867pt;}
.x1b{left:487.188400pt;}
.x1a{left:499.004000pt;}
.x16{left:542.397600pt;}
.x1c{left:550.797600pt;}
.x6{left:554.131867pt;}
.x1d{left:555.980000pt;}
.xf{left:592.874400pt;}
.x1e{left:641.542533pt;}
.x1f{left:652.144667pt;}
.x10{left:676.683067pt;}
}




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