
    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_5c63ce747f43378041a624e3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_e74cd3e9894b1f17fc5032a6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.136000;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_2b81e2639496b6a4ed1bfd41.woff')format("woff");}.ff3{font-family:ff3;line-height:1.223000;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_a4c35f78ed09b8b633eae207.woff')format("woff");}.ff4{font-family:ff4;line-height:0.930000;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_1cc007230f257de2da2ad89a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.146000;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_cea585cc1303ee09cd3b57ad.woff')format("woff");}.ff6{font-family:ff6;line-height:1.607000;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_d9fe2072acc46fe23d2ac7e7.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_574a85766ae999caa86ae25a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.144000;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_97daadfe2a885ff884c80fba.woff')format("woff");}.ff9{font-family:ff9;line-height:1.328000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.200027px;}
.v3{vertical-align:-3.599945px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls33{letter-spacing:-1.968000px;}
.ls4{letter-spacing:-1.560000px;}
.ls19{letter-spacing:-0.840000px;}
.lsf{letter-spacing:-0.240000px;}
.ls18{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.120000px;}
.ls5{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.120000px;}
.ls27{letter-spacing:0.148758px;}
.ls14{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.240000px;}
.ls22{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls25{letter-spacing:0.302400px;}
.lsb{letter-spacing:0.420000px;}
.ls20{letter-spacing:0.436800px;}
.lsa{letter-spacing:0.480000px;}
.ls12{letter-spacing:0.510000px;}
.ls2d{letter-spacing:0.532800px;}
.ls8{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.570000px;}
.ls13{letter-spacing:0.600000px;}
.ls26{letter-spacing:0.672000px;}
.ls2b{letter-spacing:0.676800px;}
.ls10{letter-spacing:0.780000px;}
.ls1{letter-spacing:0.840000px;}
.lse{letter-spacing:0.846000px;}
.ls15{letter-spacing:0.900000px;}
.ls16{letter-spacing:0.930000px;}
.ls7{letter-spacing:0.960000px;}
.ls17{letter-spacing:1.020000px;}
.lsd{letter-spacing:1.200000px;}
.ls2c{letter-spacing:1.440000px;}
.ls1d{letter-spacing:1.444800px;}
.ls1f{letter-spacing:1.819136px;}
.ls28{letter-spacing:1.824000px;}
.ls1a{letter-spacing:1.920000px;}
.ls1c{letter-spacing:2.073653px;}
.ls23{letter-spacing:2.836800px;}
.ls2a{letter-spacing:3.081600px;}
.ls32{letter-spacing:3.412800px;}
.ls34{letter-spacing:4.939200px;}
.ls29{letter-spacing:6.623978px;}
.ls31{letter-spacing:6.772870px;}
.ls24{letter-spacing:6.825600px;}
.ls2f{letter-spacing:7.003160px;}
.ls30{letter-spacing:7.300759px;}
.ls1e{letter-spacing:7.636860px;}
.ls21{letter-spacing:7.929568px;}
.ls1b{letter-spacing:8.832000px;}
.ls2e{letter-spacing:9.839966px;}
.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;}
}
.ws36{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.000000px;}
.ws87{word-spacing:-13.440000px;}
.ws10d{word-spacing:-12.672000px;}
.ws1{word-spacing:-12.420000px;}
.wsb5{word-spacing:-12.000000px;}
.ws4{word-spacing:-11.520000px;}
.ws96{word-spacing:-11.340000px;}
.ws126{word-spacing:-10.032000px;}
.ws0{word-spacing:-9.408000px;}
.wsda{word-spacing:-9.216000px;}
.ws2{word-spacing:-8.694000px;}
.ws6{word-spacing:-8.400000px;}
.wsbe{word-spacing:-6.000000px;}
.ws16{word-spacing:-3.480000px;}
.ws30{word-spacing:-3.420000px;}
.ws12{word-spacing:-2.280000px;}
.ws2f{word-spacing:-2.160000px;}
.ws28{word-spacing:-2.040000px;}
.ws4e{word-spacing:-1.620000px;}
.ws94{word-spacing:-1.500000px;}
.ws7d{word-spacing:-1.320000px;}
.wsa0{word-spacing:-1.200000px;}
.ws95{word-spacing:-1.140000px;}
.wsc1{word-spacing:-1.080000px;}
.ws1d{word-spacing:-0.840000px;}
.ws106{word-spacing:-0.816000px;}
.ws1a{word-spacing:-0.780000px;}
.ws138{word-spacing:-0.768000px;}
.ws2c{word-spacing:-0.720000px;}
.ws115{word-spacing:-0.672000px;}
.wsa1{word-spacing:-0.660000px;}
.wsf7{word-spacing:-0.624000px;}
.ws53{word-spacing:-0.600000px;}
.ws22{word-spacing:-0.540000px;}
.ws12e{word-spacing:-0.528000px;}
.wsb1{word-spacing:-0.480000px;}
.wse9{word-spacing:-0.432000px;}
.wsed{word-spacing:-0.384000px;}
.ws55{word-spacing:-0.360000px;}
.ws11c{word-spacing:-0.336000px;}
.ws2d{word-spacing:-0.300000px;}
.ws108{word-spacing:-0.288000px;}
.ws83{word-spacing:-0.240000px;}
.wsc9{word-spacing:-0.180000px;}
.wsd1{word-spacing:-0.120000px;}
.wse2{word-spacing:-0.096000px;}
.ws18{word-spacing:-0.066000px;}
.ws3{word-spacing:-0.060000px;}
.ws7{word-spacing:0.000000px;}
.ws137{word-spacing:0.048000px;}
.ws56{word-spacing:0.060000px;}
.ws127{word-spacing:0.096000px;}
.ws6c{word-spacing:0.120000px;}
.ws93{word-spacing:0.240000px;}
.ws110{word-spacing:0.288000px;}
.ws92{word-spacing:0.300000px;}
.wsef{word-spacing:0.336000px;}
.ws46{word-spacing:0.360000px;}
.ws125{word-spacing:0.384000px;}
.ws97{word-spacing:0.420000px;}
.wsfa{word-spacing:0.432000px;}
.wsab{word-spacing:0.480000px;}
.ws58{word-spacing:0.540000px;}
.ws128{word-spacing:0.576000px;}
.ws13{word-spacing:0.600000px;}
.wsf4{word-spacing:0.624000px;}
.ws3d{word-spacing:0.660000px;}
.ws13a{word-spacing:0.672000px;}
.ws2e{word-spacing:0.720000px;}
.wsf8{word-spacing:0.768000px;}
.ws73{word-spacing:0.780000px;}
.ws13e{word-spacing:0.816000px;}
.ws35{word-spacing:0.840000px;}
.ws5b{word-spacing:0.900000px;}
.wsd0{word-spacing:0.960000px;}
.ws12a{word-spacing:1.008000px;}
.ws49{word-spacing:1.020000px;}
.ws4f{word-spacing:1.080000px;}
.ws118{word-spacing:1.104000px;}
.ws47{word-spacing:1.140000px;}
.wsee{word-spacing:1.152000px;}
.wsc0{word-spacing:1.200000px;}
.ws12c{word-spacing:1.248000px;}
.wsa7{word-spacing:1.260000px;}
.ws82{word-spacing:1.320000px;}
.wsac{word-spacing:1.380000px;}
.ws124{word-spacing:1.392000px;}
.ws11d{word-spacing:1.440000px;}
.wsf6{word-spacing:1.488000px;}
.ws3a{word-spacing:1.500000px;}
.wsf9{word-spacing:1.536000px;}
.ws72{word-spacing:1.560000px;}
.wse7{word-spacing:1.584000px;}
.wsbf{word-spacing:1.620000px;}
.ws11f{word-spacing:1.632000px;}
.ws84{word-spacing:1.680000px;}
.ws13c{word-spacing:1.728000px;}
.ws23{word-spacing:1.740000px;}
.wse4{word-spacing:1.776000px;}
.wsb9{word-spacing:1.800000px;}
.ws105{word-spacing:1.824000px;}
.ws65{word-spacing:1.860000px;}
.wsf3{word-spacing:1.872000px;}
.wsa6{word-spacing:1.980000px;}
.ws104{word-spacing:2.016000px;}
.ws51{word-spacing:2.040000px;}
.wse5{word-spacing:2.064000px;}
.ws32{word-spacing:2.100000px;}
.ws8f{word-spacing:2.160000px;}
.wsf5{word-spacing:2.208000px;}
.ws14{word-spacing:2.220000px;}
.wsea{word-spacing:2.256000px;}
.wsc{word-spacing:2.280000px;}
.ws123{word-spacing:2.304000px;}
.ws5c{word-spacing:2.340000px;}
.ws142{word-spacing:2.352000px;}
.ws4a{word-spacing:2.400000px;}
.ws12d{word-spacing:2.448000px;}
.ws41{word-spacing:2.460000px;}
.wsd{word-spacing:2.520000px;}
.ws119{word-spacing:2.544000px;}
.ws54{word-spacing:2.580000px;}
.wsad{word-spacing:2.640000px;}
.ws10b{word-spacing:2.688000px;}
.wsa{word-spacing:2.700000px;}
.ws9e{word-spacing:2.760000px;}
.ws10c{word-spacing:2.784000px;}
.ws5f{word-spacing:2.820000px;}
.wse0{word-spacing:2.880000px;}
.ws116{word-spacing:2.928000px;}
.ws40{word-spacing:2.940000px;}
.ws129{word-spacing:2.976000px;}
.ws4d{word-spacing:3.000000px;}
.wsf2{word-spacing:3.024000px;}
.ws8a{word-spacing:3.060000px;}
.ws114{word-spacing:3.072000px;}
.wsd7{word-spacing:3.120000px;}
.wsb3{word-spacing:3.180000px;}
.wsae{word-spacing:3.240000px;}
.wse6{word-spacing:3.264000px;}
.ws81{word-spacing:3.300000px;}
.ws107{word-spacing:3.312000px;}
.wsb6{word-spacing:3.360000px;}
.wsa8{word-spacing:3.420000px;}
.ws50{word-spacing:3.480000px;}
.ws136{word-spacing:3.504000px;}
.ws71{word-spacing:3.540000px;}
.ws7e{word-spacing:3.600000px;}
.ws3f{word-spacing:3.660000px;}
.wsa9{word-spacing:3.780000px;}
.wsb{word-spacing:3.840000px;}
.ws62{word-spacing:3.900000px;}
.wsec{word-spacing:3.936000px;}
.ws60{word-spacing:3.960000px;}
.ws109{word-spacing:3.984000px;}
.ws31{word-spacing:4.020000px;}
.wse3{word-spacing:4.032000px;}
.ws9b{word-spacing:4.080000px;}
.ws10f{word-spacing:4.128000px;}
.wse{word-spacing:4.140000px;}
.ws101{word-spacing:4.176000px;}
.ws68{word-spacing:4.200000px;}
.ws112{word-spacing:4.224000px;}
.wsca{word-spacing:4.260000px;}
.ws8e{word-spacing:4.320000px;}
.wsff{word-spacing:4.368000px;}
.ws7b{word-spacing:4.440000px;}
.ws76{word-spacing:4.500000px;}
.ws122{word-spacing:4.512000px;}
.ws8d{word-spacing:4.560000px;}
.ws6f{word-spacing:4.620000px;}
.ws34{word-spacing:4.680000px;}
.ws141{word-spacing:4.704000px;}
.wsd5{word-spacing:4.740000px;}
.ws10a{word-spacing:4.752000px;}
.ws19{word-spacing:4.800000px;}
.ws117{word-spacing:4.848000px;}
.wsc6{word-spacing:4.860000px;}
.ws140{word-spacing:4.896000px;}
.ws42{word-spacing:4.920000px;}
.ws26{word-spacing:4.980000px;}
.ws67{word-spacing:5.040000px;}
.wsa2{word-spacing:5.100000px;}
.ws63{word-spacing:5.160000px;}
.wsfc{word-spacing:5.184000px;}
.ws52{word-spacing:5.220000px;}
.ws5d{word-spacing:5.280000px;}
.wse8{word-spacing:5.328000px;}
.ws43{word-spacing:5.340000px;}
.ws27{word-spacing:5.400000px;}
.ws33{word-spacing:5.520000px;}
.ws9a{word-spacing:5.580000px;}
.ws121{word-spacing:5.616000px;}
.ws4c{word-spacing:5.640000px;}
.ws15{word-spacing:5.700000px;}
.ws11a{word-spacing:5.712000px;}
.ws98{word-spacing:5.760000px;}
.ws134{word-spacing:5.808000px;}
.ws90{word-spacing:5.820000px;}
.ws59{word-spacing:5.880000px;}
.ws130{word-spacing:5.904000px;}
.ws6b{word-spacing:6.000000px;}
.ws69{word-spacing:6.060000px;}
.ws44{word-spacing:6.120000px;}
.wsb8{word-spacing:6.180000px;}
.ws11e{word-spacing:6.192000px;}
.wsc4{word-spacing:6.240000px;}
.ws37{word-spacing:6.300000px;}
.wsaf{word-spacing:6.360000px;}
.ws57{word-spacing:6.420000px;}
.ws103{word-spacing:6.432000px;}
.ws89{word-spacing:6.480000px;}
.ws133{word-spacing:6.528000px;}
.ws64{word-spacing:6.540000px;}
.ws29{word-spacing:6.600000px;}
.ws6e{word-spacing:6.660000px;}
.ws102{word-spacing:6.672000px;}
.ws1b{word-spacing:6.720000px;}
.ws120{word-spacing:6.768000px;}
.wsa5{word-spacing:6.780000px;}
.wscb{word-spacing:6.840000px;}
.ws135{word-spacing:6.864000px;}
.wsd8{word-spacing:6.900000px;}
.ws13b{word-spacing:6.912000px;}
.ws70{word-spacing:6.960000px;}
.ws74{word-spacing:7.020000px;}
.ws12f{word-spacing:7.056000px;}
.ws99{word-spacing:7.140000px;}
.ws100{word-spacing:7.152000px;}
.wsdd{word-spacing:7.200000px;}
.ws2b{word-spacing:7.260000px;}
.ws9f{word-spacing:7.320000px;}
.ws132{word-spacing:7.344000px;}
.ws8{word-spacing:7.380000px;}
.ws10e{word-spacing:7.392000px;}
.wsd3{word-spacing:7.440000px;}
.ws5a{word-spacing:7.500000px;}
.wsfe{word-spacing:7.536000px;}
.ws88{word-spacing:7.560000px;}
.ws24{word-spacing:7.680000px;}
.wsfb{word-spacing:7.728000px;}
.wsaa{word-spacing:7.740000px;}
.ws80{word-spacing:7.860000px;}
.ws8c{word-spacing:7.920000px;}
.ws38{word-spacing:7.980000px;}
.ws91{word-spacing:8.040000px;}
.wsf{word-spacing:8.100000px;}
.wsdf{word-spacing:8.160000px;}
.wscc{word-spacing:8.220000px;}
.ws3b{word-spacing:8.280000px;}
.ws25{word-spacing:8.340000px;}
.ws21{word-spacing:8.400000px;}
.wscf{word-spacing:8.460000px;}
.wsa4{word-spacing:8.520000px;}
.ws1c{word-spacing:8.640000px;}
.wsc3{word-spacing:8.700000px;}
.wseb{word-spacing:8.736000px;}
.ws7a{word-spacing:8.760000px;}
.ws113{word-spacing:8.784000px;}
.ws75{word-spacing:8.820000px;}
.ws78{word-spacing:8.880000px;}
.ws79{word-spacing:8.940000px;}
.wsc8{word-spacing:9.000000px;}
.ws11{word-spacing:9.060000px;}
.wsc7{word-spacing:9.120000px;}
.ws45{word-spacing:9.180000px;}
.wsce{word-spacing:9.360000px;}
.wsb7{word-spacing:9.480000px;}
.ws6d{word-spacing:9.540000px;}
.ws5e{word-spacing:9.600000px;}
.ws4b{word-spacing:9.720000px;}
.ws86{word-spacing:9.840000px;}
.wsb0{word-spacing:9.960000px;}
.wsbb{word-spacing:10.200000px;}
.ws2a{word-spacing:10.260000px;}
.wsd2{word-spacing:10.320000px;}
.ws48{word-spacing:10.500000px;}
.wsde{word-spacing:10.560000px;}
.wsdb{word-spacing:10.620000px;}
.wsf1{word-spacing:10.704000px;}
.wsbd{word-spacing:10.740000px;}
.wsc5{word-spacing:10.860000px;}
.ws11b{word-spacing:10.992000px;}
.ws3c{word-spacing:11.100000px;}
.wsbc{word-spacing:11.220000px;}
.wsa3{word-spacing:11.280000px;}
.ws13d{word-spacing:11.472000px;}
.ws66{word-spacing:11.640000px;}
.ws111{word-spacing:11.712000px;}
.wsfd{word-spacing:11.760000px;}
.ws8b{word-spacing:11.820000px;}
.wsd6{word-spacing:11.880000px;}
.wscd{word-spacing:11.940000px;}
.ws131{word-spacing:12.288000px;}
.ws9c{word-spacing:12.360000px;}
.ws10{word-spacing:12.600000px;}
.wsb2{word-spacing:12.660000px;}
.wsf0{word-spacing:12.864000px;}
.wse1{word-spacing:12.960000px;}
.ws85{word-spacing:13.080000px;}
.ws9d{word-spacing:13.200000px;}
.wsd9{word-spacing:13.320000px;}
.ws13f{word-spacing:13.344000px;}
.ws61{word-spacing:13.740000px;}
.ws6a{word-spacing:14.100000px;}
.ws12b{word-spacing:14.304000px;}
.wsdc{word-spacing:14.340000px;}
.ws7f{word-spacing:14.400000px;}
.ws39{word-spacing:14.940000px;}
.ws7c{word-spacing:15.660000px;}
.wsd4{word-spacing:16.440000px;}
.ws3e{word-spacing:16.740000px;}
.ws9{word-spacing:17.760000px;}
.ws77{word-spacing:18.060000px;}
.ws1f{word-spacing:19.860000px;}
.ws20{word-spacing:20.640000px;}
.ws139{word-spacing:25.920000px;}
.ws1e{word-spacing:37.020000px;}
.ws17{word-spacing:73.056000px;}
.wsba{word-spacing:366.624000px;}
.wsb4{word-spacing:567.481819px;}
.wsc2{word-spacing:725.616000px;}
._5{margin-left:-15.600000px;}
._9{margin-left:-12.672029px;}
._8{margin-left:-4.803600px;}
._3{margin-left:-2.892000px;}
._0{margin-left:-1.632000px;}
._4{width:1.014000px;}
._2{width:2.028000px;}
._c{width:3.726000px;}
._b{width:5.952000px;}
._d{width:7.914000px;}
._f{width:9.174000px;}
._e{width:13.811986px;}
._13{width:14.839200px;}
._27{width:18.060000px;}
._6{width:22.320000px;}
._2c{width:30.912000px;}
._12{width:32.790000px;}
._10{width:34.860000px;}
._2d{width:36.300000px;}
._11{width:37.680000px;}
._1{width:39.541763px;}
._1a{width:41.472000px;}
._1f{width:43.314001px;}
._7{width:56.255991px;}
._1d{width:58.085999px;}
._1e{width:62.405999px;}
._19{width:68.112000px;}
._25{width:71.087993px;}
._24{width:97.727993px;}
._1b{width:98.784000px;}
._28{width:102.960000px;}
._26{width:128.399993px;}
._15{width:196.703975px;}
._1c{width:199.776000px;}
._14{width:223.343975px;}
._16{width:254.015975px;}
._2b{width:336.671975px;}
._17{width:355.007975px;}
._21{width:371.328000px;}
._22{width:406.511988px;}
._23{width:423.695987px;}
._18{width:425.184000px;}
._2a{width:436.703975px;}
._20{width:454.799993px;}
._a{width:527.279988px;}
._29{width:820.415975px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:33.600000px;}
.fs3{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:56.399998px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:50.758198px;}
.y11b{bottom:89.952006px;}
.y18b{bottom:89.963941px;}
.y117{bottom:89.964004px;}
.y187{bottom:89.975960px;}
.y113{bottom:89.976003px;}
.y183{bottom:89.987980px;}
.y10e{bottom:89.988001px;}
.y153{bottom:89.999935px;}
.y14b{bottom:89.999957px;}
.y143{bottom:89.999978px;}
.yd0{bottom:90.000000px;}
.yd4{bottom:90.006472px;}
.yd9{bottom:90.018483px;}
.ydd{bottom:90.030494px;}
.ye1{bottom:90.042505px;}
.y83{bottom:90.047516px;}
.y76{bottom:90.797516px;}
.y1a8{bottom:90.797550px;}
.yaf{bottom:91.193840px;}
.y1a4{bottom:91.199982px;}
.y142{bottom:91.200005px;}
.y10d{bottom:93.047516px;}
.y25{bottom:94.800000px;}
.y1ac{bottom:95.333550px;}
.y18c{bottom:98.963941px;}
.y15b{bottom:98.999978px;}
.ycf{bottom:100.464757px;}
.y182{bottom:103.547539px;}
.y24a{bottom:105.383516px;}
.y4f{bottom:107.297550px;}
.y82{bottom:108.047516px;}
.y75{bottom:108.797516px;}
.y1a7{bottom:108.797550px;}
.yae{bottom:109.193840px;}
.y1a3{bottom:109.199982px;}
.y141{bottom:109.200005px;}
.y1ab{bottom:109.577550px;}
.y10c{bottom:111.047516px;}
.y24{bottom:111.803253px;}
.yce{bottom:114.708757px;}
.y1e0{bottom:117.005543px;}
.y249{bottom:119.623084px;}
.y218{bottom:119.627516px;}
.y181{bottom:121.547539px;}
.y8e{bottom:125.297516px;}
.y4e{bottom:125.297550px;}
.y81{bottom:126.047516px;}
.y74{bottom:126.797516px;}
.y1a6{bottom:126.797550px;}
.yad{bottom:127.193840px;}
.y1a2{bottom:127.199982px;}
.y140{bottom:127.200005px;}
.ycd{bottom:128.952757px;}
.y10b{bottom:129.047516px;}
.y23{bottom:130.847248px;}
.y1df{bottom:131.249543px;}
.y248{bottom:133.867084px;}
.y217{bottom:133.871516px;}
.y1aa{bottom:138.053550px;}
.yb6{bottom:139.547516px;}
.y180{bottom:139.547539px;}
.ycc{bottom:143.196757px;}
.y8d{bottom:143.297516px;}
.y4d{bottom:143.297550px;}
.y80{bottom:144.047516px;}
.y73{bottom:144.797516px;}
.yac{bottom:145.193840px;}
.y1a1{bottom:145.199982px;}
.y13f{bottom:145.200005px;}
.y1de{bottom:145.493543px;}
.y10a{bottom:147.047516px;}
.y22{bottom:147.850505px;}
.y247{bottom:148.111084px;}
.y216{bottom:148.115516px;}
.y1a9{bottom:152.297550px;}
.ycb{bottom:157.440757px;}
.yb5{bottom:157.547516px;}
.y17f{bottom:157.547539px;}
.y1dd{bottom:159.737543px;}
.y7f{bottom:162.047516px;}
.y246{bottom:162.355084px;}
.y215{bottom:162.359516px;}
.y72{bottom:162.797516px;}
.y1a5{bottom:162.797550px;}
.yab{bottom:163.193840px;}
.y1a0{bottom:163.199982px;}
.y13e{bottom:163.200005px;}
.y109{bottom:165.047516px;}
.y21{bottom:166.894500px;}
.yca{bottom:171.684757px;}
.y1dc{bottom:173.981543px;}
.yb4{bottom:175.547516px;}
.y17e{bottom:175.547539px;}
.y245{bottom:176.599084px;}
.y214{bottom:176.603516px;}
.y4c{bottom:179.297550px;}
.y8c{bottom:180.047516px;}
.y71{bottom:180.797516px;}
.yaa{bottom:181.193840px;}
.y19f{bottom:181.199982px;}
.y13d{bottom:181.200005px;}
.y108{bottom:183.047516px;}
.yc9{bottom:185.928757px;}
.y1db{bottom:188.225543px;}
.y20{bottom:188.691753px;}
.y7e{bottom:189.422516px;}
.y244{bottom:190.843084px;}
.y213{bottom:190.847516px;}
.yb3{bottom:193.547516px;}
.y8b{bottom:198.047516px;}
.y70{bottom:198.797516px;}
.ya9{bottom:199.193840px;}
.y19e{bottom:199.199982px;}
.y13c{bottom:199.200005px;}
.yc8{bottom:200.172757px;}
.y107{bottom:201.047516px;}
.y1da{bottom:202.469543px;}
.y243{bottom:205.087084px;}
.y212{bottom:205.091516px;}
.y7d{bottom:207.422516px;}
.yb2{bottom:211.547516px;}
.y17d{bottom:211.547539px;}
.y1f{bottom:212.547756px;}
.yc7{bottom:214.416757px;}
.y8a{bottom:216.047516px;}
.y1d9{bottom:216.713543px;}
.y6f{bottom:216.797516px;}
.y19d{bottom:217.199982px;}
.y13b{bottom:217.200005px;}
.y106{bottom:219.047516px;}
.y242{bottom:219.331084px;}
.y211{bottom:219.335516px;}
.y7c{bottom:225.422516px;}
.y1e{bottom:226.791756px;}
.yc6{bottom:228.660757px;}
.yb1{bottom:229.547516px;}
.y1d8{bottom:230.957543px;}
.y4b{bottom:233.297516px;}
.y241{bottom:233.575084px;}
.y210{bottom:233.579516px;}
.y89{bottom:234.047516px;}
.y6e{bottom:234.797516px;}
.ya8{bottom:235.193840px;}
.y19c{bottom:235.199982px;}
.y13a{bottom:236.099991px;}
.y105{bottom:237.047516px;}
.yc5{bottom:242.904757px;}
.y7b{bottom:243.422516px;}
.y1d7{bottom:245.201543px;}
.y11c{bottom:247.572006px;}
.y118{bottom:247.584004px;}
.y114{bottom:247.596003px;}
.y110{bottom:247.608001px;}
.y240{bottom:247.819084px;}
.y20f{bottom:247.823516px;}
.y4a{bottom:251.297516px;}
.y88{bottom:252.047516px;}
.y6d{bottom:252.797516px;}
.y19b{bottom:253.199982px;}
.y139{bottom:254.099991px;}
.y154{bottom:255.023933px;}
.y14c{bottom:255.023955px;}
.y144{bottom:255.023977px;}
.y104{bottom:255.047516px;}
.y10f{bottom:256.608001px;}
.yc4{bottom:257.148757px;}
.y1d6{bottom:259.445543px;}
.y7a{bottom:261.422516px;}
.y23f{bottom:262.063084px;}
.y20e{bottom:262.067516px;}
.yb0{bottom:265.547516px;}
.y49{bottom:269.297516px;}
.y87{bottom:270.047516px;}
.y6c{bottom:270.797516px;}
.y19a{bottom:271.199982px;}
.yc3{bottom:271.392757px;}
.y17c{bottom:271.697548px;}
.y138{bottom:272.099991px;}
.y1d5{bottom:273.689543px;}
.y23e{bottom:276.307084px;}
.y20d{bottom:276.311516px;}
.y79{bottom:279.422516px;}
.ya7{bottom:281.873840px;}
.y103{bottom:282.422516px;}
.y1d{bottom:283.067093px;}
.yc2{bottom:285.636757px;}
.yd1{bottom:286.422455px;}
.yd6{bottom:286.434466px;}
.yda{bottom:286.446477px;}
.yde{bottom:286.458488px;}
.ye2{bottom:286.470499px;}
.y48{bottom:287.297516px;}
.y1d4{bottom:287.933543px;}
.y86{bottom:288.047516px;}
.y6b{bottom:288.797516px;}
.y199{bottom:289.199982px;}
.y17b{bottom:289.697548px;}
.y23d{bottom:290.551084px;}
.y20c{bottom:290.555516px;}
.yd5{bottom:295.434466px;}
.y137{bottom:298.202516px;}
.ya6{bottom:299.873840px;}
.y102{bottom:300.422516px;}
.y1c{bottom:301.067093px;}
.y1d3{bottom:302.177543px;}
.y23c{bottom:304.795084px;}
.y20b{bottom:304.799516px;}
.y47{bottom:305.297516px;}
.y85{bottom:306.047516px;}
.y6a{bottom:306.797516px;}
.y17a{bottom:306.797539px;}
.y198{bottom:307.199982px;}
.yc1{bottom:313.164757px;}
.y136{bottom:316.202516px;}
.y1d2{bottom:316.421543px;}
.ya5{bottom:317.873840px;}
.y101{bottom:318.422516px;}
.y23b{bottom:319.039084px;}
.y20a{bottom:319.043516px;}
.y1b{bottom:319.067093px;}
.y46{bottom:323.297516px;}
.y84{bottom:324.047516px;}
.y69{bottom:324.797516px;}
.y197{bottom:325.199982px;}
.y179{bottom:325.697548px;}
.y1d1{bottom:330.665543px;}
.y23a{bottom:333.283084px;}
.y209{bottom:333.287516px;}
.y135{bottom:334.202516px;}
.yc0{bottom:334.547539px;}
.ya4{bottom:335.873840px;}
.y100{bottom:336.422516px;}
.y1a{bottom:337.067093px;}
.y45{bottom:341.297516px;}
.y68{bottom:342.797516px;}
.y196{bottom:343.199982px;}
.y178{bottom:343.697548px;}
.y1d0{bottom:344.909543px;}
.y18d{bottom:346.391934px;}
.y188{bottom:346.403954px;}
.y184{bottom:346.415974px;}
.y239{bottom:347.527084px;}
.y208{bottom:347.531516px;}
.y134{bottom:352.202516px;}
.ya3{bottom:353.873840px;}
.yff{bottom:354.422516px;}
.y19{bottom:355.067093px;}
.y1cf{bottom:359.153543px;}
.y44{bottom:359.297516px;}
.y67{bottom:360.797516px;}
.y177{bottom:360.797562px;}
.y195{bottom:361.199982px;}
.y238{bottom:361.771084px;}
.y207{bottom:361.775516px;}
.ya2{bottom:371.873840px;}
.yfe{bottom:372.422516px;}
.y18{bottom:373.067093px;}
.y1ce{bottom:373.397543px;}
.y237{bottom:376.015084px;}
.y206{bottom:376.019516px;}
.y43{bottom:377.297516px;}
.y66{bottom:378.797516px;}
.y176{bottom:378.797562px;}
.y194{bottom:379.199982px;}
.y1cd{bottom:387.641543px;}
.y133{bottom:388.952516px;}
.ya1{bottom:389.873840px;}
.y236{bottom:390.259084px;}
.y205{bottom:390.263516px;}
.yfd{bottom:390.422516px;}
.y42{bottom:395.297516px;}
.y65{bottom:396.797516px;}
.y193{bottom:397.199982px;}
.y175{bottom:397.697571px;}
.y1cc{bottom:401.885543px;}
.y24c{bottom:404.491084px;}
.y235{bottom:404.503084px;}
.y204{bottom:404.507516px;}
.y132{bottom:406.952516px;}
.ya0{bottom:407.873840px;}
.yfc{bottom:408.422516px;}
.y11d{bottom:409.776006px;}
.y119{bottom:409.788004px;}
.y115{bottom:409.800003px;}
.y111{bottom:409.812001px;}
.y17{bottom:409.817093px;}
.y41{bottom:413.297516px;}
.y64{bottom:414.797516px;}
.y192{bottom:415.199982px;}
.y174{bottom:415.697571px;}
.y1cb{bottom:416.129543px;}
.y24b{bottom:418.735084px;}
.y234{bottom:418.747084px;}
.y203{bottom:418.751516px;}
.y11e{bottom:418.776006px;}
.y11a{bottom:418.788004px;}
.y116{bottom:418.800003px;}
.y112{bottom:418.812001px;}
.y155{bottom:419.171933px;}
.y14d{bottom:419.171955px;}
.y145{bottom:419.171977px;}
.y131{bottom:424.952516px;}
.y9f{bottom:425.873840px;}
.yfb{bottom:426.422516px;}
.y16{bottom:427.817093px;}
.y156{bottom:428.171933px;}
.y14e{bottom:428.171955px;}
.y146{bottom:428.171977px;}
.y1ca{bottom:430.373543px;}
.y40{bottom:431.297516px;}
.y63{bottom:432.797516px;}
.y233{bottom:432.991084px;}
.y202{bottom:432.995516px;}
.y173{bottom:433.697571px;}
.y130{bottom:442.952516px;}
.y9e{bottom:443.873840px;}
.yfa{bottom:444.422516px;}
.y1c9{bottom:444.617543px;}
.ybf{bottom:445.547516px;}
.y232{bottom:447.235084px;}
.y201{bottom:447.239516px;}
.y3f{bottom:449.297516px;}
.y62{bottom:450.797516px;}
.y191{bottom:451.199982px;}
.y172{bottom:451.697571px;}
.y1c8{bottom:458.861543px;}
.y12f{bottom:460.952516px;}
.y231{bottom:461.479084px;}
.y200{bottom:461.483516px;}
.y9d{bottom:461.873840px;}
.yf9{bottom:462.422516px;}
.ybe{bottom:463.547516px;}
.y15{bottom:464.567093px;}
.y61{bottom:468.797516px;}
.y171{bottom:469.697571px;}
.y1c7{bottom:473.105543px;}
.y230{bottom:475.723084px;}
.y1ff{bottom:475.727516px;}
.yd2{bottom:476.346451px;}
.yd7{bottom:476.358462px;}
.ydb{bottom:476.370473px;}
.ydf{bottom:476.382484px;}
.ye3{bottom:476.394495px;}
.y12e{bottom:478.952516px;}
.y9c{bottom:479.873840px;}
.yf8{bottom:480.422516px;}
.ybd{bottom:481.547516px;}
.y14{bottom:482.567093px;}
.y3e{bottom:486.047516px;}
.y60{bottom:486.797516px;}
.y1c6{bottom:487.349543px;}
.y170{bottom:487.697571px;}
.y22f{bottom:489.967084px;}
.y1fe{bottom:489.971516px;}
.y12d{bottom:496.952516px;}
.y9b{bottom:497.873840px;}
.yf7{bottom:498.422516px;}
.ybc{bottom:499.547516px;}
.y13{bottom:500.567093px;}
.y1c5{bottom:501.593543px;}
.y3d{bottom:504.047516px;}
.y22e{bottom:504.211084px;}
.y1fd{bottom:504.215516px;}
.y5f{bottom:504.797516px;}
.y16f{bottom:505.697571px;}
.y12c{bottom:514.952516px;}
.y1c4{bottom:515.837543px;}
.y9a{bottom:515.873840px;}
.yf6{bottom:516.422516px;}
.ybb{bottom:517.547516px;}
.y22d{bottom:518.455084px;}
.y1fc{bottom:518.459516px;}
.y12{bottom:518.567093px;}
.y190{bottom:521.297516px;}
.y3c{bottom:522.047516px;}
.y5e{bottom:522.797516px;}
.y1c3{bottom:530.081543px;}
.y16e{bottom:531.797516px;}
.y22c{bottom:532.699084px;}
.y1fb{bottom:532.703516px;}
.y12b{bottom:532.952516px;}
.y99{bottom:533.873840px;}
.yf5{bottom:534.422516px;}
.yba{bottom:535.547516px;}
.y11{bottom:536.567093px;}
.y18f{bottom:539.297516px;}
.y3b{bottom:540.047516px;}
.y5d{bottom:540.797516px;}
.y1c2{bottom:544.325543px;}
.y22b{bottom:546.943084px;}
.y1fa{bottom:546.947516px;}
.y16d{bottom:549.797516px;}
.y12a{bottom:550.952516px;}
.y98{bottom:551.873840px;}
.yf4{bottom:552.422516px;}
.yb9{bottom:553.547516px;}
.y10{bottom:554.567093px;}
.y3a{bottom:558.047516px;}
.y1c1{bottom:558.569543px;}
.y5c{bottom:558.797516px;}
.y22a{bottom:561.187084px;}
.y1f9{bottom:561.191516px;}
.y16c{bottom:567.797516px;}
.y129{bottom:568.952516px;}
.y97{bottom:569.873840px;}
.yf3{bottom:570.422516px;}
.yb8{bottom:571.547516px;}
.yf{bottom:572.567093px;}
.y1c0{bottom:572.813543px;}
.y229{bottom:575.431084px;}
.y1f8{bottom:575.435516px;}
.y39{bottom:576.047516px;}
.y5b{bottom:576.797516px;}
.y157{bottom:584.135930px;}
.y14f{bottom:584.135952px;}
.y147{bottom:584.135973px;}
.y16b{bottom:585.797516px;}
.y128{bottom:586.952516px;}
.y1bf{bottom:587.057543px;}
.y96{bottom:587.873840px;}
.yf2{bottom:588.422516px;}
.y228{bottom:589.675084px;}
.y1f7{bottom:589.679516px;}
.ye{bottom:590.567093px;}
.y158{bottom:593.135930px;}
.y150{bottom:593.135952px;}
.y148{bottom:593.135973px;}
.y38{bottom:594.047516px;}
.y5a{bottom:594.797516px;}
.y18e{bottom:598.343934px;}
.y189{bottom:598.355954px;}
.y185{bottom:598.367974px;}
.y1be{bottom:601.301543px;}
.y16a{bottom:603.797516px;}
.y227{bottom:603.919084px;}
.y1f6{bottom:603.923516px;}
.y127{bottom:604.952516px;}
.yf1{bottom:606.422516px;}
.y18a{bottom:607.355954px;}
.y186{bottom:607.367974px;}
.yb7{bottom:607.547516px;}
.yd{bottom:608.567093px;}
.y37{bottom:612.047516px;}
.y59{bottom:612.797516px;}
.y1bd{bottom:615.545543px;}
.y226{bottom:618.163084px;}
.y1f5{bottom:618.167516px;}
.y169{bottom:621.797516px;}
.y126{bottom:622.952516px;}
.y95{bottom:623.873840px;}
.yf0{bottom:624.422516px;}
.yc{bottom:626.567093px;}
.y1bc{bottom:629.789543px;}
.y36{bottom:630.047516px;}
.y58{bottom:630.797516px;}
.y225{bottom:632.407084px;}
.y1f4{bottom:632.411516px;}
.y168{bottom:639.797516px;}
.y125{bottom:640.952516px;}
.yef{bottom:642.422516px;}
.y1bb{bottom:644.033543px;}
.yb{bottom:644.567093px;}
.y224{bottom:646.651084px;}
.y1f3{bottom:646.655516px;}
.y35{bottom:648.047516px;}
.y57{bottom:648.797516px;}
.y167{bottom:657.797516px;}
.y1ba{bottom:658.277543px;}
.y124{bottom:658.952516px;}
.yee{bottom:660.422516px;}
.y223{bottom:660.895084px;}
.y1f2{bottom:660.899516px;}
.ya{bottom:662.567093px;}
.y34{bottom:666.047516px;}
.y56{bottom:666.797516px;}
.y1b9{bottom:672.521543px;}
.y222{bottom:675.139084px;}
.y1f1{bottom:675.143516px;}
.y166{bottom:675.797516px;}
.y123{bottom:676.952516px;}
.yed{bottom:678.422516px;}
.yd3{bottom:682.878451px;}
.yd8{bottom:682.890462px;}
.ydc{bottom:682.902473px;}
.ye0{bottom:682.914484px;}
.ye4{bottom:682.926495px;}
.y33{bottom:684.047516px;}
.y55{bottom:684.797516px;}
.y1b8{bottom:686.765543px;}
.y221{bottom:689.383084px;}
.y1f0{bottom:689.387516px;}
.y165{bottom:693.797516px;}
.y122{bottom:694.952516px;}
.yec{bottom:696.422516px;}
.y1b7{bottom:701.009543px;}
.y32{bottom:702.047516px;}
.y54{bottom:702.797516px;}
.y220{bottom:703.627084px;}
.y1ef{bottom:703.631516px;}
.y9{bottom:711.059696px;}
.y164{bottom:711.797516px;}
.y121{bottom:712.952516px;}
.yeb{bottom:714.422516px;}
.y1b6{bottom:715.253543px;}
.y21f{bottom:717.871084px;}
.y1ee{bottom:717.875516px;}
.y31{bottom:720.047516px;}
.y53{bottom:720.797516px;}
.y8{bottom:725.303696px;}
.y1b5{bottom:729.497543px;}
.y163{bottom:729.797516px;}
.y120{bottom:730.952516px;}
.y21e{bottom:732.115084px;}
.y1ed{bottom:732.119516px;}
.yea{bottom:732.422516px;}
.y30{bottom:738.047516px;}
.y52{bottom:738.797516px;}
.y21d{bottom:746.359084px;}
.y1ec{bottom:746.363516px;}
.y162{bottom:747.797516px;}
.y159{bottom:748.391927px;}
.y151{bottom:748.391948px;}
.y149{bottom:748.391970px;}
.y94{bottom:756.047516px;}
.y51{bottom:756.797516px;}
.y15a{bottom:757.391927px;}
.y152{bottom:757.391948px;}
.y14a{bottom:757.391970px;}
.y21c{bottom:760.603084px;}
.y1eb{bottom:760.607516px;}
.y1b4{bottom:762.047562px;}
.y7{bottom:763.152191px;}
.y161{bottom:765.797516px;}
.y11f{bottom:766.952516px;}
.ye9{bottom:768.422516px;}
.y93{bottom:774.047516px;}
.y2f{bottom:774.797516px;}
.y21b{bottom:774.847084px;}
.y1ea{bottom:774.851516px;}
.y6{bottom:781.152191px;}
.y160{bottom:783.797516px;}
.y21a{bottom:789.091084px;}
.y1e9{bottom:789.095516px;}
.y92{bottom:792.047516px;}
.y2e{bottom:792.797516px;}
.y15f{bottom:801.797516px;}
.y219{bottom:803.335084px;}
.y1e8{bottom:803.339516px;}
.y91{bottom:810.047516px;}
.y2d{bottom:810.797516px;}
.y1b3{bottom:817.579084px;}
.y1e7{bottom:817.583516px;}
.y15e{bottom:819.797516px;}
.y5{bottom:823.895529px;}
.ye8{bottom:827.672516px;}
.y90{bottom:828.047516px;}
.y2c{bottom:828.797516px;}
.y1b2{bottom:831.823084px;}
.y1e6{bottom:831.827516px;}
.y15d{bottom:837.797516px;}
.ye7{bottom:845.672516px;}
.y8f{bottom:846.047516px;}
.y1b1{bottom:846.067084px;}
.y1e5{bottom:846.071516px;}
.y4{bottom:846.398529px;}
.y2b{bottom:846.797516px;}
.y15c{bottom:855.797516px;}
.y1b0{bottom:860.311084px;}
.y1e4{bottom:860.315516px;}
.ye6{bottom:863.672516px;}
.y2a{bottom:864.797516px;}
.y1af{bottom:874.555084px;}
.y1e3{bottom:874.559516px;}
.y29{bottom:882.797516px;}
.y1ae{bottom:888.799084px;}
.y1e2{bottom:888.803516px;}
.ye5{bottom:899.672516px;}
.y28{bottom:900.797516px;}
.y1ad{bottom:903.043084px;}
.y1e1{bottom:903.047516px;}
.y3{bottom:925.867084px;}
.y50{bottom:939.670349px;}
.y78{bottom:940.110892px;}
.y27{bottom:940.111075px;}
.y2{bottom:940.111084px;}
.y77{bottom:940.626892px;}
.y26{bottom:940.627075px;}
.h9{height:31.180800px;}
.h2{height:42.048000px;}
.h5{height:43.260000px;}
.h8{height:44.544000px;}
.ha{height:47.586000px;}
.he{height:49.104000px;}
.hd{height:52.339198px;}
.hb{height:53.640000px;}
.h6{height:55.680000px;}
.hc{height:61.380000px;}
.h7{height:63.300000px;}
.h4{height:64.866000px;}
.h3{height:69.108000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535402px;}
.x4{left:77.598450px;}
.x8{left:85.535402px;}
.x6{left:93.545402px;}
.x42{left:96.306747px;}
.x3{left:97.799400px;}
.x22{left:99.100204px;}
.x7{left:100.535402px;}
.x68{left:102.047387px;}
.x41{left:106.863303px;}
.x43{left:116.078396px;}
.x23{left:120.482998px;}
.x4a{left:128.950650px;}
.x44{left:134.926200px;}
.x9{left:137.350204px;}
.x4b{left:143.194650px;}
.x24{left:148.490998px;}
.x4c{left:157.438650px;}
.xa{left:158.732998px;}
.x25{left:162.734998px;}
.x4d{left:171.682650px;}
.x26{left:176.978998px;}
.xb{left:182.576998px;}
.x4e{left:185.926650px;}
.x27{left:191.222998px;}
.x55{left:193.983009px;}
.xc{left:196.820998px;}
.x4f{left:200.170650px;}
.x28{left:205.466998px;}
.xd{left:211.064998px;}
.x50{left:214.366652px;}
.x29{left:219.710998px;}
.x56{left:221.991009px;}
.x51{left:228.610652px;}
.x45{left:234.610202px;}
.x57{left:236.235009px;}
.x2a{left:237.843000px;}
.xe{left:239.048998px;}
.x52{left:242.854652px;}
.x46{left:248.854202px;}
.x58{left:250.479009px;}
.x2b{left:252.087000px;}
.xf{left:253.292998px;}
.x53{left:257.098652px;}
.x59{left:264.723009px;}
.x2c{left:266.331000px;}
.x10{left:267.536998px;}
.x54{left:271.342652px;}
.x5a{left:278.967009px;}
.x2d{left:280.575000px;}
.x11{left:281.768998px;}
.x2e{left:294.819000px;}
.x5b{left:297.111009px;}
.x12{left:299.912998px;}
.x2f{left:309.063000px;}
.x5c{left:311.355009px;}
.x13{left:314.156998px;}
.x47{left:323.902205px;}
.x5d{left:325.599009px;}
.x30{left:327.207000px;}
.x14{left:328.400998px;}
.x48{left:338.146205px;}
.x5e{left:339.843009px;}
.x31{left:341.451000px;}
.x15{left:342.632998px;}
.x49{left:352.390205px;}
.x5f{left:354.087009px;}
.x32{left:355.695000px;}
.x16{left:356.876998px;}
.x60{left:368.331009px;}
.x33{left:369.939000px;}
.x17{left:371.120998px;}
.x61{left:382.575009px;}
.x34{left:384.183000px;}
.x18{left:389.264998px;}
.x62{left:396.819009px;}
.x35{left:398.427000px;}
.x19{left:403.508998px;}
.x36{left:412.671000px;}
.x63{left:414.999013px;}
.x1a{left:417.752998px;}
.x37{left:426.879000px;}
.x64{left:429.243013px;}
.x1b{left:431.996998px;}
.x38{left:441.123000px;}
.x65{left:443.487013px;}
.x1c{left:446.240998px;}
.x39{left:455.367000px;}
.x66{left:457.731013px;}
.x1d{left:460.484998px;}
.x67{left:471.975013px;}
.x3a{left:473.595000px;}
.x1e{left:478.665000px;}
.x1{left:485.858414px;}
.x3b{left:487.839000px;}
.x1f{left:492.909000px;}
.x3c{left:502.083000px;}
.x20{left:507.153000px;}
.x3d{left:516.327000px;}
.x21{left:521.397000px;}
.x3e{left:530.571000px;}
.x3f{left:544.791000px;}
.x40{left:559.035000px;}
.x5{left:565.420029px;}
@media print{
.v2{vertical-align:-17.066691pt;}
.v3{vertical-align:-3.199951pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls33{letter-spacing:-1.749333pt;}
.ls4{letter-spacing:-1.386667pt;}
.ls19{letter-spacing:-0.746667pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls18{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.106667pt;}
.ls5{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.106667pt;}
.ls27{letter-spacing:0.132230pt;}
.ls14{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.213333pt;}
.ls22{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls25{letter-spacing:0.268800pt;}
.lsb{letter-spacing:0.373333pt;}
.ls20{letter-spacing:0.388267pt;}
.lsa{letter-spacing:0.426667pt;}
.ls12{letter-spacing:0.453333pt;}
.ls2d{letter-spacing:0.473600pt;}
.ls8{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.506667pt;}
.ls13{letter-spacing:0.533333pt;}
.ls26{letter-spacing:0.597333pt;}
.ls2b{letter-spacing:0.601600pt;}
.ls10{letter-spacing:0.693333pt;}
.ls1{letter-spacing:0.746667pt;}
.lse{letter-spacing:0.752000pt;}
.ls15{letter-spacing:0.800000pt;}
.ls16{letter-spacing:0.826667pt;}
.ls7{letter-spacing:0.853333pt;}
.ls17{letter-spacing:0.906667pt;}
.lsd{letter-spacing:1.066667pt;}
.ls2c{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:1.284267pt;}
.ls1f{letter-spacing:1.617009pt;}
.ls28{letter-spacing:1.621333pt;}
.ls1a{letter-spacing:1.706667pt;}
.ls1c{letter-spacing:1.843247pt;}
.ls23{letter-spacing:2.521600pt;}
.ls2a{letter-spacing:2.739200pt;}
.ls32{letter-spacing:3.033600pt;}
.ls34{letter-spacing:4.390400pt;}
.ls29{letter-spacing:5.887980pt;}
.ls31{letter-spacing:6.020329pt;}
.ls24{letter-spacing:6.067200pt;}
.ls2f{letter-spacing:6.225031pt;}
.ls30{letter-spacing:6.489564pt;}
.ls1e{letter-spacing:6.788320pt;}
.ls21{letter-spacing:7.048505pt;}
.ls1b{letter-spacing:7.850667pt;}
.ls2e{letter-spacing:8.746636pt;}
.ws36{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.333333pt;}
.ws87{word-spacing:-11.946667pt;}
.ws10d{word-spacing:-11.264000pt;}
.ws1{word-spacing:-11.040000pt;}
.wsb5{word-spacing:-10.666667pt;}
.ws4{word-spacing:-10.240000pt;}
.ws96{word-spacing:-10.080000pt;}
.ws126{word-spacing:-8.917333pt;}
.ws0{word-spacing:-8.362667pt;}
.wsda{word-spacing:-8.192000pt;}
.ws2{word-spacing:-7.728000pt;}
.ws6{word-spacing:-7.466667pt;}
.wsbe{word-spacing:-5.333333pt;}
.ws16{word-spacing:-3.093333pt;}
.ws30{word-spacing:-3.040000pt;}
.ws12{word-spacing:-2.026667pt;}
.ws2f{word-spacing:-1.920000pt;}
.ws28{word-spacing:-1.813333pt;}
.ws4e{word-spacing:-1.440000pt;}
.ws94{word-spacing:-1.333333pt;}
.ws7d{word-spacing:-1.173333pt;}
.wsa0{word-spacing:-1.066667pt;}
.ws95{word-spacing:-1.013333pt;}
.wsc1{word-spacing:-0.960000pt;}
.ws1d{word-spacing:-0.746667pt;}
.ws106{word-spacing:-0.725333pt;}
.ws1a{word-spacing:-0.693333pt;}
.ws138{word-spacing:-0.682667pt;}
.ws2c{word-spacing:-0.640000pt;}
.ws115{word-spacing:-0.597333pt;}
.wsa1{word-spacing:-0.586667pt;}
.wsf7{word-spacing:-0.554667pt;}
.ws53{word-spacing:-0.533333pt;}
.ws22{word-spacing:-0.480000pt;}
.ws12e{word-spacing:-0.469333pt;}
.wsb1{word-spacing:-0.426667pt;}
.wse9{word-spacing:-0.384000pt;}
.wsed{word-spacing:-0.341333pt;}
.ws55{word-spacing:-0.320000pt;}
.ws11c{word-spacing:-0.298667pt;}
.ws2d{word-spacing:-0.266667pt;}
.ws108{word-spacing:-0.256000pt;}
.ws83{word-spacing:-0.213333pt;}
.wsc9{word-spacing:-0.160000pt;}
.wsd1{word-spacing:-0.106667pt;}
.wse2{word-spacing:-0.085333pt;}
.ws18{word-spacing:-0.058667pt;}
.ws3{word-spacing:-0.053333pt;}
.ws7{word-spacing:0.000000pt;}
.ws137{word-spacing:0.042667pt;}
.ws56{word-spacing:0.053333pt;}
.ws127{word-spacing:0.085333pt;}
.ws6c{word-spacing:0.106667pt;}
.ws93{word-spacing:0.213333pt;}
.ws110{word-spacing:0.256000pt;}
.ws92{word-spacing:0.266667pt;}
.wsef{word-spacing:0.298667pt;}
.ws46{word-spacing:0.320000pt;}
.ws125{word-spacing:0.341333pt;}
.ws97{word-spacing:0.373333pt;}
.wsfa{word-spacing:0.384000pt;}
.wsab{word-spacing:0.426667pt;}
.ws58{word-spacing:0.480000pt;}
.ws128{word-spacing:0.512000pt;}
.ws13{word-spacing:0.533333pt;}
.wsf4{word-spacing:0.554667pt;}
.ws3d{word-spacing:0.586667pt;}
.ws13a{word-spacing:0.597333pt;}
.ws2e{word-spacing:0.640000pt;}
.wsf8{word-spacing:0.682667pt;}
.ws73{word-spacing:0.693333pt;}
.ws13e{word-spacing:0.725333pt;}
.ws35{word-spacing:0.746667pt;}
.ws5b{word-spacing:0.800000pt;}
.wsd0{word-spacing:0.853333pt;}
.ws12a{word-spacing:0.896000pt;}
.ws49{word-spacing:0.906667pt;}
.ws4f{word-spacing:0.960000pt;}
.ws118{word-spacing:0.981333pt;}
.ws47{word-spacing:1.013333pt;}
.wsee{word-spacing:1.024000pt;}
.wsc0{word-spacing:1.066667pt;}
.ws12c{word-spacing:1.109333pt;}
.wsa7{word-spacing:1.120000pt;}
.ws82{word-spacing:1.173333pt;}
.wsac{word-spacing:1.226667pt;}
.ws124{word-spacing:1.237333pt;}
.ws11d{word-spacing:1.280000pt;}
.wsf6{word-spacing:1.322667pt;}
.ws3a{word-spacing:1.333333pt;}
.wsf9{word-spacing:1.365333pt;}
.ws72{word-spacing:1.386667pt;}
.wse7{word-spacing:1.408000pt;}
.wsbf{word-spacing:1.440000pt;}
.ws11f{word-spacing:1.450667pt;}
.ws84{word-spacing:1.493333pt;}
.ws13c{word-spacing:1.536000pt;}
.ws23{word-spacing:1.546667pt;}
.wse4{word-spacing:1.578667pt;}
.wsb9{word-spacing:1.600000pt;}
.ws105{word-spacing:1.621333pt;}
.ws65{word-spacing:1.653333pt;}
.wsf3{word-spacing:1.664000pt;}
.wsa6{word-spacing:1.760000pt;}
.ws104{word-spacing:1.792000pt;}
.ws51{word-spacing:1.813333pt;}
.wse5{word-spacing:1.834667pt;}
.ws32{word-spacing:1.866667pt;}
.ws8f{word-spacing:1.920000pt;}
.wsf5{word-spacing:1.962667pt;}
.ws14{word-spacing:1.973333pt;}
.wsea{word-spacing:2.005333pt;}
.wsc{word-spacing:2.026667pt;}
.ws123{word-spacing:2.048000pt;}
.ws5c{word-spacing:2.080000pt;}
.ws142{word-spacing:2.090667pt;}
.ws4a{word-spacing:2.133333pt;}
.ws12d{word-spacing:2.176000pt;}
.ws41{word-spacing:2.186667pt;}
.wsd{word-spacing:2.240000pt;}
.ws119{word-spacing:2.261333pt;}
.ws54{word-spacing:2.293333pt;}
.wsad{word-spacing:2.346667pt;}
.ws10b{word-spacing:2.389333pt;}
.wsa{word-spacing:2.400000pt;}
.ws9e{word-spacing:2.453333pt;}
.ws10c{word-spacing:2.474667pt;}
.ws5f{word-spacing:2.506667pt;}
.wse0{word-spacing:2.560000pt;}
.ws116{word-spacing:2.602667pt;}
.ws40{word-spacing:2.613333pt;}
.ws129{word-spacing:2.645333pt;}
.ws4d{word-spacing:2.666667pt;}
.wsf2{word-spacing:2.688000pt;}
.ws8a{word-spacing:2.720000pt;}
.ws114{word-spacing:2.730667pt;}
.wsd7{word-spacing:2.773333pt;}
.wsb3{word-spacing:2.826667pt;}
.wsae{word-spacing:2.880000pt;}
.wse6{word-spacing:2.901333pt;}
.ws81{word-spacing:2.933333pt;}
.ws107{word-spacing:2.944000pt;}
.wsb6{word-spacing:2.986667pt;}
.wsa8{word-spacing:3.040000pt;}
.ws50{word-spacing:3.093333pt;}
.ws136{word-spacing:3.114667pt;}
.ws71{word-spacing:3.146667pt;}
.ws7e{word-spacing:3.200000pt;}
.ws3f{word-spacing:3.253333pt;}
.wsa9{word-spacing:3.360000pt;}
.wsb{word-spacing:3.413333pt;}
.ws62{word-spacing:3.466667pt;}
.wsec{word-spacing:3.498667pt;}
.ws60{word-spacing:3.520000pt;}
.ws109{word-spacing:3.541333pt;}
.ws31{word-spacing:3.573333pt;}
.wse3{word-spacing:3.584000pt;}
.ws9b{word-spacing:3.626667pt;}
.ws10f{word-spacing:3.669333pt;}
.wse{word-spacing:3.680000pt;}
.ws101{word-spacing:3.712000pt;}
.ws68{word-spacing:3.733333pt;}
.ws112{word-spacing:3.754667pt;}
.wsca{word-spacing:3.786667pt;}
.ws8e{word-spacing:3.840000pt;}
.wsff{word-spacing:3.882667pt;}
.ws7b{word-spacing:3.946667pt;}
.ws76{word-spacing:4.000000pt;}
.ws122{word-spacing:4.010667pt;}
.ws8d{word-spacing:4.053333pt;}
.ws6f{word-spacing:4.106667pt;}
.ws34{word-spacing:4.160000pt;}
.ws141{word-spacing:4.181333pt;}
.wsd5{word-spacing:4.213333pt;}
.ws10a{word-spacing:4.224000pt;}
.ws19{word-spacing:4.266667pt;}
.ws117{word-spacing:4.309333pt;}
.wsc6{word-spacing:4.320000pt;}
.ws140{word-spacing:4.352000pt;}
.ws42{word-spacing:4.373333pt;}
.ws26{word-spacing:4.426667pt;}
.ws67{word-spacing:4.480000pt;}
.wsa2{word-spacing:4.533333pt;}
.ws63{word-spacing:4.586667pt;}
.wsfc{word-spacing:4.608000pt;}
.ws52{word-spacing:4.640000pt;}
.ws5d{word-spacing:4.693333pt;}
.wse8{word-spacing:4.736000pt;}
.ws43{word-spacing:4.746667pt;}
.ws27{word-spacing:4.800000pt;}
.ws33{word-spacing:4.906667pt;}
.ws9a{word-spacing:4.960000pt;}
.ws121{word-spacing:4.992000pt;}
.ws4c{word-spacing:5.013333pt;}
.ws15{word-spacing:5.066667pt;}
.ws11a{word-spacing:5.077333pt;}
.ws98{word-spacing:5.120000pt;}
.ws134{word-spacing:5.162667pt;}
.ws90{word-spacing:5.173333pt;}
.ws59{word-spacing:5.226667pt;}
.ws130{word-spacing:5.248000pt;}
.ws6b{word-spacing:5.333333pt;}
.ws69{word-spacing:5.386667pt;}
.ws44{word-spacing:5.440000pt;}
.wsb8{word-spacing:5.493333pt;}
.ws11e{word-spacing:5.504000pt;}
.wsc4{word-spacing:5.546667pt;}
.ws37{word-spacing:5.600000pt;}
.wsaf{word-spacing:5.653333pt;}
.ws57{word-spacing:5.706667pt;}
.ws103{word-spacing:5.717333pt;}
.ws89{word-spacing:5.760000pt;}
.ws133{word-spacing:5.802667pt;}
.ws64{word-spacing:5.813333pt;}
.ws29{word-spacing:5.866667pt;}
.ws6e{word-spacing:5.920000pt;}
.ws102{word-spacing:5.930667pt;}
.ws1b{word-spacing:5.973333pt;}
.ws120{word-spacing:6.016000pt;}
.wsa5{word-spacing:6.026667pt;}
.wscb{word-spacing:6.080000pt;}
.ws135{word-spacing:6.101333pt;}
.wsd8{word-spacing:6.133333pt;}
.ws13b{word-spacing:6.144000pt;}
.ws70{word-spacing:6.186667pt;}
.ws74{word-spacing:6.240000pt;}
.ws12f{word-spacing:6.272000pt;}
.ws99{word-spacing:6.346667pt;}
.ws100{word-spacing:6.357333pt;}
.wsdd{word-spacing:6.400000pt;}
.ws2b{word-spacing:6.453333pt;}
.ws9f{word-spacing:6.506667pt;}
.ws132{word-spacing:6.528000pt;}
.ws8{word-spacing:6.560000pt;}
.ws10e{word-spacing:6.570667pt;}
.wsd3{word-spacing:6.613333pt;}
.ws5a{word-spacing:6.666667pt;}
.wsfe{word-spacing:6.698667pt;}
.ws88{word-spacing:6.720000pt;}
.ws24{word-spacing:6.826667pt;}
.wsfb{word-spacing:6.869333pt;}
.wsaa{word-spacing:6.880000pt;}
.ws80{word-spacing:6.986667pt;}
.ws8c{word-spacing:7.040000pt;}
.ws38{word-spacing:7.093333pt;}
.ws91{word-spacing:7.146667pt;}
.wsf{word-spacing:7.200000pt;}
.wsdf{word-spacing:7.253333pt;}
.wscc{word-spacing:7.306667pt;}
.ws3b{word-spacing:7.360000pt;}
.ws25{word-spacing:7.413333pt;}
.ws21{word-spacing:7.466667pt;}
.wscf{word-spacing:7.520000pt;}
.wsa4{word-spacing:7.573333pt;}
.ws1c{word-spacing:7.680000pt;}
.wsc3{word-spacing:7.733333pt;}
.wseb{word-spacing:7.765333pt;}
.ws7a{word-spacing:7.786667pt;}
.ws113{word-spacing:7.808000pt;}
.ws75{word-spacing:7.840000pt;}
.ws78{word-spacing:7.893333pt;}
.ws79{word-spacing:7.946667pt;}
.wsc8{word-spacing:8.000000pt;}
.ws11{word-spacing:8.053333pt;}
.wsc7{word-spacing:8.106667pt;}
.ws45{word-spacing:8.160000pt;}
.wsce{word-spacing:8.320000pt;}
.wsb7{word-spacing:8.426667pt;}
.ws6d{word-spacing:8.480000pt;}
.ws5e{word-spacing:8.533333pt;}
.ws4b{word-spacing:8.640000pt;}
.ws86{word-spacing:8.746667pt;}
.wsb0{word-spacing:8.853333pt;}
.wsbb{word-spacing:9.066667pt;}
.ws2a{word-spacing:9.120000pt;}
.wsd2{word-spacing:9.173333pt;}
.ws48{word-spacing:9.333333pt;}
.wsde{word-spacing:9.386667pt;}
.wsdb{word-spacing:9.440000pt;}
.wsf1{word-spacing:9.514667pt;}
.wsbd{word-spacing:9.546667pt;}
.wsc5{word-spacing:9.653333pt;}
.ws11b{word-spacing:9.770667pt;}
.ws3c{word-spacing:9.866667pt;}
.wsbc{word-spacing:9.973333pt;}
.wsa3{word-spacing:10.026667pt;}
.ws13d{word-spacing:10.197333pt;}
.ws66{word-spacing:10.346667pt;}
.ws111{word-spacing:10.410667pt;}
.wsfd{word-spacing:10.453333pt;}
.ws8b{word-spacing:10.506667pt;}
.wsd6{word-spacing:10.560000pt;}
.wscd{word-spacing:10.613333pt;}
.ws131{word-spacing:10.922667pt;}
.ws9c{word-spacing:10.986667pt;}
.ws10{word-spacing:11.200000pt;}
.wsb2{word-spacing:11.253333pt;}
.wsf0{word-spacing:11.434667pt;}
.wse1{word-spacing:11.520000pt;}
.ws85{word-spacing:11.626667pt;}
.ws9d{word-spacing:11.733333pt;}
.wsd9{word-spacing:11.840000pt;}
.ws13f{word-spacing:11.861333pt;}
.ws61{word-spacing:12.213333pt;}
.ws6a{word-spacing:12.533333pt;}
.ws12b{word-spacing:12.714667pt;}
.wsdc{word-spacing:12.746667pt;}
.ws7f{word-spacing:12.800000pt;}
.ws39{word-spacing:13.280000pt;}
.ws7c{word-spacing:13.920000pt;}
.wsd4{word-spacing:14.613333pt;}
.ws3e{word-spacing:14.880000pt;}
.ws9{word-spacing:15.786667pt;}
.ws77{word-spacing:16.053333pt;}
.ws1f{word-spacing:17.653333pt;}
.ws20{word-spacing:18.346667pt;}
.ws139{word-spacing:23.040000pt;}
.ws1e{word-spacing:32.906667pt;}
.ws17{word-spacing:64.938667pt;}
.wsba{word-spacing:325.888000pt;}
.wsb4{word-spacing:504.428284pt;}
.wsc2{word-spacing:644.992000pt;}
._5{margin-left:-13.866667pt;}
._9{margin-left:-11.264026pt;}
._8{margin-left:-4.269867pt;}
._3{margin-left:-2.570667pt;}
._0{margin-left:-1.450667pt;}
._4{width:0.901333pt;}
._2{width:1.802667pt;}
._c{width:3.312000pt;}
._b{width:5.290667pt;}
._d{width:7.034667pt;}
._f{width:8.154667pt;}
._e{width:12.277321pt;}
._13{width:13.190400pt;}
._27{width:16.053333pt;}
._6{width:19.840000pt;}
._2c{width:27.477333pt;}
._12{width:29.146667pt;}
._10{width:30.986667pt;}
._2d{width:32.266667pt;}
._11{width:33.493333pt;}
._1{width:35.148234pt;}
._1a{width:36.864000pt;}
._1f{width:38.501335pt;}
._7{width:50.005325pt;}
._1d{width:51.631999pt;}
._1e{width:55.471999pt;}
._19{width:60.544000pt;}
._25{width:63.189327pt;}
._24{width:86.869327pt;}
._1b{width:87.808000pt;}
._28{width:91.520000pt;}
._26{width:114.133327pt;}
._15{width:174.847978pt;}
._1c{width:177.578667pt;}
._14{width:198.527978pt;}
._16{width:225.791978pt;}
._2b{width:299.263978pt;}
._17{width:315.562645pt;}
._21{width:330.069333pt;}
._22{width:361.343989pt;}
._23{width:376.618655pt;}
._18{width:377.941333pt;}
._2a{width:388.181311pt;}
._20{width:404.266660pt;}
._a{width:468.693323pt;}
._29{width:729.258645pt;}
.fs4{font-size:29.866667pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:50.133331pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.118398pt;}
.y11b{bottom:79.957339pt;}
.y18b{bottom:79.967947pt;}
.y117{bottom:79.968004pt;}
.y187{bottom:79.978632pt;}
.y113{bottom:79.978669pt;}
.y183{bottom:79.989316pt;}
.y10e{bottom:79.989335pt;}
.y153{bottom:79.999942pt;}
.y14b{bottom:79.999961pt;}
.y143{bottom:79.999981pt;}
.yd0{bottom:80.000000pt;}
.yd4{bottom:80.005753pt;}
.yd9{bottom:80.016429pt;}
.ydd{bottom:80.027106pt;}
.ye1{bottom:80.037782pt;}
.y83{bottom:80.042236pt;}
.y76{bottom:80.708903pt;}
.y1a8{bottom:80.708933pt;}
.yaf{bottom:81.061191pt;}
.y1a4{bottom:81.066650pt;}
.y142{bottom:81.066671pt;}
.y10d{bottom:82.708903pt;}
.y25{bottom:84.266667pt;}
.y1ac{bottom:84.740933pt;}
.y18c{bottom:87.967947pt;}
.y15b{bottom:87.999981pt;}
.ycf{bottom:89.302006pt;}
.y182{bottom:92.042257pt;}
.y24a{bottom:93.674236pt;}
.y4f{bottom:95.375600pt;}
.y82{bottom:96.042236pt;}
.y75{bottom:96.708903pt;}
.y1a7{bottom:96.708933pt;}
.yae{bottom:97.061191pt;}
.y1a3{bottom:97.066650pt;}
.y141{bottom:97.066671pt;}
.y1ab{bottom:97.402267pt;}
.y10c{bottom:98.708903pt;}
.y24{bottom:99.380669pt;}
.yce{bottom:101.963339pt;}
.y1e0{bottom:104.004927pt;}
.y249{bottom:106.331630pt;}
.y218{bottom:106.335570pt;}
.y181{bottom:108.042257pt;}
.y8e{bottom:111.375570pt;}
.y4e{bottom:111.375600pt;}
.y81{bottom:112.042236pt;}
.y74{bottom:112.708903pt;}
.y1a6{bottom:112.708933pt;}
.yad{bottom:113.061191pt;}
.y1a2{bottom:113.066650pt;}
.y140{bottom:113.066671pt;}
.ycd{bottom:114.624673pt;}
.y10b{bottom:114.708903pt;}
.y23{bottom:116.308665pt;}
.y1df{bottom:116.666261pt;}
.y248{bottom:118.992964pt;}
.y217{bottom:118.996903pt;}
.y1aa{bottom:122.714267pt;}
.yb6{bottom:124.042236pt;}
.y180{bottom:124.042257pt;}
.ycc{bottom:127.286006pt;}
.y8d{bottom:127.375570pt;}
.y4d{bottom:127.375600pt;}
.y80{bottom:128.042236pt;}
.y73{bottom:128.708903pt;}
.yac{bottom:129.061191pt;}
.y1a1{bottom:129.066650pt;}
.y13f{bottom:129.066671pt;}
.y1de{bottom:129.327594pt;}
.y10a{bottom:130.708903pt;}
.y22{bottom:131.422671pt;}
.y247{bottom:131.654297pt;}
.y216{bottom:131.658236pt;}
.y1a9{bottom:135.375600pt;}
.ycb{bottom:139.947339pt;}
.yb5{bottom:140.042236pt;}
.y17f{bottom:140.042257pt;}
.y1dd{bottom:141.988927pt;}
.y7f{bottom:144.042236pt;}
.y246{bottom:144.315630pt;}
.y215{bottom:144.319570pt;}
.y72{bottom:144.708903pt;}
.y1a5{bottom:144.708933pt;}
.yab{bottom:145.061191pt;}
.y1a0{bottom:145.066650pt;}
.y13e{bottom:145.066671pt;}
.y109{bottom:146.708903pt;}
.y21{bottom:148.350667pt;}
.yca{bottom:152.608673pt;}
.y1dc{bottom:154.650261pt;}
.yb4{bottom:156.042236pt;}
.y17e{bottom:156.042257pt;}
.y245{bottom:156.976964pt;}
.y214{bottom:156.980903pt;}
.y4c{bottom:159.375600pt;}
.y8c{bottom:160.042236pt;}
.y71{bottom:160.708903pt;}
.yaa{bottom:161.061191pt;}
.y19f{bottom:161.066650pt;}
.y13d{bottom:161.066671pt;}
.y108{bottom:162.708903pt;}
.yc9{bottom:165.270006pt;}
.y1db{bottom:167.311594pt;}
.y20{bottom:167.726003pt;}
.y7e{bottom:168.375570pt;}
.y244{bottom:169.638297pt;}
.y213{bottom:169.642236pt;}
.yb3{bottom:172.042236pt;}
.y8b{bottom:176.042236pt;}
.y70{bottom:176.708903pt;}
.ya9{bottom:177.061191pt;}
.y19e{bottom:177.066650pt;}
.y13c{bottom:177.066671pt;}
.yc8{bottom:177.931339pt;}
.y107{bottom:178.708903pt;}
.y1da{bottom:179.972927pt;}
.y243{bottom:182.299630pt;}
.y212{bottom:182.303570pt;}
.y7d{bottom:184.375570pt;}
.yb2{bottom:188.042236pt;}
.y17d{bottom:188.042257pt;}
.y1f{bottom:188.931338pt;}
.yc7{bottom:190.592673pt;}
.y8a{bottom:192.042236pt;}
.y1d9{bottom:192.634261pt;}
.y6f{bottom:192.708903pt;}
.y19d{bottom:193.066650pt;}
.y13b{bottom:193.066671pt;}
.y106{bottom:194.708903pt;}
.y242{bottom:194.960964pt;}
.y211{bottom:194.964903pt;}
.y7c{bottom:200.375570pt;}
.y1e{bottom:201.592672pt;}
.yc6{bottom:203.254006pt;}
.yb1{bottom:204.042236pt;}
.y1d8{bottom:205.295594pt;}
.y4b{bottom:207.375570pt;}
.y241{bottom:207.622297pt;}
.y210{bottom:207.626236pt;}
.y89{bottom:208.042236pt;}
.y6e{bottom:208.708903pt;}
.ya8{bottom:209.061191pt;}
.y19c{bottom:209.066650pt;}
.y13a{bottom:209.866659pt;}
.y105{bottom:210.708903pt;}
.yc5{bottom:215.915339pt;}
.y7b{bottom:216.375570pt;}
.y1d7{bottom:217.956927pt;}
.y11c{bottom:220.064005pt;}
.y118{bottom:220.074671pt;}
.y114{bottom:220.085336pt;}
.y110{bottom:220.096001pt;}
.y240{bottom:220.283630pt;}
.y20f{bottom:220.287570pt;}
.y4a{bottom:223.375570pt;}
.y88{bottom:224.042236pt;}
.y6d{bottom:224.708903pt;}
.y19b{bottom:225.066650pt;}
.y139{bottom:225.866659pt;}
.y154{bottom:226.687941pt;}
.y14c{bottom:226.687960pt;}
.y144{bottom:226.687979pt;}
.y104{bottom:226.708903pt;}
.y10f{bottom:228.096001pt;}
.yc4{bottom:228.576673pt;}
.y1d6{bottom:230.618261pt;}
.y7a{bottom:232.375570pt;}
.y23f{bottom:232.944964pt;}
.y20e{bottom:232.948903pt;}
.yb0{bottom:236.042236pt;}
.y49{bottom:239.375570pt;}
.y87{bottom:240.042236pt;}
.y6c{bottom:240.708903pt;}
.y19a{bottom:241.066650pt;}
.yc3{bottom:241.238006pt;}
.y17c{bottom:241.508931pt;}
.y138{bottom:241.866659pt;}
.y1d5{bottom:243.279594pt;}
.y23e{bottom:245.606297pt;}
.y20d{bottom:245.610236pt;}
.y79{bottom:248.375570pt;}
.ya7{bottom:250.554525pt;}
.y103{bottom:251.042236pt;}
.y1d{bottom:251.615194pt;}
.yc2{bottom:253.899339pt;}
.yd1{bottom:254.597738pt;}
.yd6{bottom:254.608414pt;}
.yda{bottom:254.619090pt;}
.yde{bottom:254.629767pt;}
.ye2{bottom:254.640443pt;}
.y48{bottom:255.375570pt;}
.y1d4{bottom:255.940927pt;}
.y86{bottom:256.042236pt;}
.y6b{bottom:256.708903pt;}
.y199{bottom:257.066650pt;}
.y17b{bottom:257.508931pt;}
.y23d{bottom:258.267630pt;}
.y20c{bottom:258.271570pt;}
.yd5{bottom:262.608414pt;}
.y137{bottom:265.068903pt;}
.ya6{bottom:266.554525pt;}
.y102{bottom:267.042236pt;}
.y1c{bottom:267.615194pt;}
.y1d3{bottom:268.602261pt;}
.y23c{bottom:270.928964pt;}
.y20b{bottom:270.932903pt;}
.y47{bottom:271.375570pt;}
.y85{bottom:272.042236pt;}
.y6a{bottom:272.708903pt;}
.y17a{bottom:272.708923pt;}
.y198{bottom:273.066650pt;}
.yc1{bottom:278.368673pt;}
.y136{bottom:281.068903pt;}
.y1d2{bottom:281.263594pt;}
.ya5{bottom:282.554525pt;}
.y101{bottom:283.042236pt;}
.y23b{bottom:283.590297pt;}
.y20a{bottom:283.594236pt;}
.y1b{bottom:283.615194pt;}
.y46{bottom:287.375570pt;}
.y84{bottom:288.042236pt;}
.y69{bottom:288.708903pt;}
.y197{bottom:289.066650pt;}
.y179{bottom:289.508931pt;}
.y1d1{bottom:293.924927pt;}
.y23a{bottom:296.251630pt;}
.y209{bottom:296.255570pt;}
.y135{bottom:297.068903pt;}
.yc0{bottom:297.375590pt;}
.ya4{bottom:298.554525pt;}
.y100{bottom:299.042236pt;}
.y1a{bottom:299.615194pt;}
.y45{bottom:303.375570pt;}
.y68{bottom:304.708903pt;}
.y196{bottom:305.066650pt;}
.y178{bottom:305.508931pt;}
.y1d0{bottom:306.586261pt;}
.y18d{bottom:307.903942pt;}
.y188{bottom:307.914626pt;}
.y184{bottom:307.925310pt;}
.y239{bottom:308.912964pt;}
.y208{bottom:308.916903pt;}
.y134{bottom:313.068903pt;}
.ya3{bottom:314.554525pt;}
.yff{bottom:315.042236pt;}
.y19{bottom:315.615194pt;}
.y1cf{bottom:319.247594pt;}
.y44{bottom:319.375570pt;}
.y67{bottom:320.708903pt;}
.y177{bottom:320.708944pt;}
.y195{bottom:321.066650pt;}
.y238{bottom:321.574297pt;}
.y207{bottom:321.578236pt;}
.ya2{bottom:330.554525pt;}
.yfe{bottom:331.042236pt;}
.y18{bottom:331.615194pt;}
.y1ce{bottom:331.908927pt;}
.y237{bottom:334.235630pt;}
.y206{bottom:334.239570pt;}
.y43{bottom:335.375570pt;}
.y66{bottom:336.708903pt;}
.y176{bottom:336.708944pt;}
.y194{bottom:337.066650pt;}
.y1cd{bottom:344.570261pt;}
.y133{bottom:345.735570pt;}
.ya1{bottom:346.554525pt;}
.y236{bottom:346.896964pt;}
.y205{bottom:346.900903pt;}
.yfd{bottom:347.042236pt;}
.y42{bottom:351.375570pt;}
.y65{bottom:352.708903pt;}
.y193{bottom:353.066650pt;}
.y175{bottom:353.508952pt;}
.y1cc{bottom:357.231594pt;}
.y24c{bottom:359.547630pt;}
.y235{bottom:359.558297pt;}
.y204{bottom:359.562236pt;}
.y132{bottom:361.735570pt;}
.ya0{bottom:362.554525pt;}
.yfc{bottom:363.042236pt;}
.y11d{bottom:364.245339pt;}
.y119{bottom:364.256004pt;}
.y115{bottom:364.266669pt;}
.y111{bottom:364.277335pt;}
.y17{bottom:364.281860pt;}
.y41{bottom:367.375570pt;}
.y64{bottom:368.708903pt;}
.y192{bottom:369.066650pt;}
.y174{bottom:369.508952pt;}
.y1cb{bottom:369.892927pt;}
.y24b{bottom:372.208964pt;}
.y234{bottom:372.219630pt;}
.y203{bottom:372.223570pt;}
.y11e{bottom:372.245339pt;}
.y11a{bottom:372.256004pt;}
.y116{bottom:372.266669pt;}
.y112{bottom:372.277335pt;}
.y155{bottom:372.597274pt;}
.y14d{bottom:372.597293pt;}
.y145{bottom:372.597312pt;}
.y131{bottom:377.735570pt;}
.y9f{bottom:378.554525pt;}
.yfb{bottom:379.042236pt;}
.y16{bottom:380.281860pt;}
.y156{bottom:380.597274pt;}
.y14e{bottom:380.597293pt;}
.y146{bottom:380.597312pt;}
.y1ca{bottom:382.554261pt;}
.y40{bottom:383.375570pt;}
.y63{bottom:384.708903pt;}
.y233{bottom:384.880964pt;}
.y202{bottom:384.884903pt;}
.y173{bottom:385.508952pt;}
.y130{bottom:393.735570pt;}
.y9e{bottom:394.554525pt;}
.yfa{bottom:395.042236pt;}
.y1c9{bottom:395.215594pt;}
.ybf{bottom:396.042236pt;}
.y232{bottom:397.542297pt;}
.y201{bottom:397.546236pt;}
.y3f{bottom:399.375570pt;}
.y62{bottom:400.708903pt;}
.y191{bottom:401.066650pt;}
.y172{bottom:401.508952pt;}
.y1c8{bottom:407.876927pt;}
.y12f{bottom:409.735570pt;}
.y231{bottom:410.203630pt;}
.y200{bottom:410.207570pt;}
.y9d{bottom:410.554525pt;}
.yf9{bottom:411.042236pt;}
.ybe{bottom:412.042236pt;}
.y15{bottom:412.948527pt;}
.y61{bottom:416.708903pt;}
.y171{bottom:417.508952pt;}
.y1c7{bottom:420.538261pt;}
.y230{bottom:422.864964pt;}
.y1ff{bottom:422.868903pt;}
.yd2{bottom:423.419067pt;}
.yd7{bottom:423.429744pt;}
.ydb{bottom:423.440420pt;}
.ydf{bottom:423.451097pt;}
.ye3{bottom:423.461773pt;}
.y12e{bottom:425.735570pt;}
.y9c{bottom:426.554525pt;}
.yf8{bottom:427.042236pt;}
.ybd{bottom:428.042236pt;}
.y14{bottom:428.948527pt;}
.y3e{bottom:432.042236pt;}
.y60{bottom:432.708903pt;}
.y1c6{bottom:433.199594pt;}
.y170{bottom:433.508952pt;}
.y22f{bottom:435.526297pt;}
.y1fe{bottom:435.530236pt;}
.y12d{bottom:441.735570pt;}
.y9b{bottom:442.554525pt;}
.yf7{bottom:443.042236pt;}
.ybc{bottom:444.042236pt;}
.y13{bottom:444.948527pt;}
.y1c5{bottom:445.860927pt;}
.y3d{bottom:448.042236pt;}
.y22e{bottom:448.187630pt;}
.y1fd{bottom:448.191570pt;}
.y5f{bottom:448.708903pt;}
.y16f{bottom:449.508952pt;}
.y12c{bottom:457.735570pt;}
.y1c4{bottom:458.522261pt;}
.y9a{bottom:458.554525pt;}
.yf6{bottom:459.042236pt;}
.ybb{bottom:460.042236pt;}
.y22d{bottom:460.848964pt;}
.y1fc{bottom:460.852903pt;}
.y12{bottom:460.948527pt;}
.y190{bottom:463.375570pt;}
.y3c{bottom:464.042236pt;}
.y5e{bottom:464.708903pt;}
.y1c3{bottom:471.183594pt;}
.y16e{bottom:472.708903pt;}
.y22c{bottom:473.510297pt;}
.y1fb{bottom:473.514236pt;}
.y12b{bottom:473.735570pt;}
.y99{bottom:474.554525pt;}
.yf5{bottom:475.042236pt;}
.yba{bottom:476.042236pt;}
.y11{bottom:476.948527pt;}
.y18f{bottom:479.375570pt;}
.y3b{bottom:480.042236pt;}
.y5d{bottom:480.708903pt;}
.y1c2{bottom:483.844927pt;}
.y22b{bottom:486.171630pt;}
.y1fa{bottom:486.175570pt;}
.y16d{bottom:488.708903pt;}
.y12a{bottom:489.735570pt;}
.y98{bottom:490.554525pt;}
.yf4{bottom:491.042236pt;}
.yb9{bottom:492.042236pt;}
.y10{bottom:492.948527pt;}
.y3a{bottom:496.042236pt;}
.y1c1{bottom:496.506261pt;}
.y5c{bottom:496.708903pt;}
.y22a{bottom:498.832964pt;}
.y1f9{bottom:498.836903pt;}
.y16c{bottom:504.708903pt;}
.y129{bottom:505.735570pt;}
.y97{bottom:506.554525pt;}
.yf3{bottom:507.042236pt;}
.yb8{bottom:508.042236pt;}
.yf{bottom:508.948527pt;}
.y1c0{bottom:509.167594pt;}
.y229{bottom:511.494297pt;}
.y1f8{bottom:511.498236pt;}
.y39{bottom:512.042236pt;}
.y5b{bottom:512.708903pt;}
.y157{bottom:519.231938pt;}
.y14f{bottom:519.231957pt;}
.y147{bottom:519.231976pt;}
.y16b{bottom:520.708903pt;}
.y128{bottom:521.735570pt;}
.y1bf{bottom:521.828927pt;}
.y96{bottom:522.554525pt;}
.yf2{bottom:523.042236pt;}
.y228{bottom:524.155630pt;}
.y1f7{bottom:524.159570pt;}
.ye{bottom:524.948527pt;}
.y158{bottom:527.231938pt;}
.y150{bottom:527.231957pt;}
.y148{bottom:527.231976pt;}
.y38{bottom:528.042236pt;}
.y5a{bottom:528.708903pt;}
.y18e{bottom:531.861275pt;}
.y189{bottom:531.871959pt;}
.y185{bottom:531.882644pt;}
.y1be{bottom:534.490261pt;}
.y16a{bottom:536.708903pt;}
.y227{bottom:536.816964pt;}
.y1f6{bottom:536.820903pt;}
.y127{bottom:537.735570pt;}
.yf1{bottom:539.042236pt;}
.y18a{bottom:539.871959pt;}
.y186{bottom:539.882644pt;}
.yb7{bottom:540.042236pt;}
.yd{bottom:540.948527pt;}
.y37{bottom:544.042236pt;}
.y59{bottom:544.708903pt;}
.y1bd{bottom:547.151594pt;}
.y226{bottom:549.478297pt;}
.y1f5{bottom:549.482236pt;}
.y169{bottom:552.708903pt;}
.y126{bottom:553.735570pt;}
.y95{bottom:554.554525pt;}
.yf0{bottom:555.042236pt;}
.yc{bottom:556.948527pt;}
.y1bc{bottom:559.812927pt;}
.y36{bottom:560.042236pt;}
.y58{bottom:560.708903pt;}
.y225{bottom:562.139630pt;}
.y1f4{bottom:562.143570pt;}
.y168{bottom:568.708903pt;}
.y125{bottom:569.735570pt;}
.yef{bottom:571.042236pt;}
.y1bb{bottom:572.474261pt;}
.yb{bottom:572.948527pt;}
.y224{bottom:574.800964pt;}
.y1f3{bottom:574.804903pt;}
.y35{bottom:576.042236pt;}
.y57{bottom:576.708903pt;}
.y167{bottom:584.708903pt;}
.y1ba{bottom:585.135594pt;}
.y124{bottom:585.735570pt;}
.yee{bottom:587.042236pt;}
.y223{bottom:587.462297pt;}
.y1f2{bottom:587.466236pt;}
.ya{bottom:588.948527pt;}
.y34{bottom:592.042236pt;}
.y56{bottom:592.708903pt;}
.y1b9{bottom:597.796927pt;}
.y222{bottom:600.123630pt;}
.y1f1{bottom:600.127570pt;}
.y166{bottom:600.708903pt;}
.y123{bottom:601.735570pt;}
.yed{bottom:603.042236pt;}
.yd3{bottom:607.003067pt;}
.yd8{bottom:607.013744pt;}
.ydc{bottom:607.024420pt;}
.ye0{bottom:607.035097pt;}
.ye4{bottom:607.045773pt;}
.y33{bottom:608.042236pt;}
.y55{bottom:608.708903pt;}
.y1b8{bottom:610.458261pt;}
.y221{bottom:612.784964pt;}
.y1f0{bottom:612.788903pt;}
.y165{bottom:616.708903pt;}
.y122{bottom:617.735570pt;}
.yec{bottom:619.042236pt;}
.y1b7{bottom:623.119594pt;}
.y32{bottom:624.042236pt;}
.y54{bottom:624.708903pt;}
.y220{bottom:625.446297pt;}
.y1ef{bottom:625.450236pt;}
.y9{bottom:632.053063pt;}
.y164{bottom:632.708903pt;}
.y121{bottom:633.735570pt;}
.yeb{bottom:635.042236pt;}
.y1b6{bottom:635.780927pt;}
.y21f{bottom:638.107630pt;}
.y1ee{bottom:638.111570pt;}
.y31{bottom:640.042236pt;}
.y53{bottom:640.708903pt;}
.y8{bottom:644.714396pt;}
.y1b5{bottom:648.442261pt;}
.y163{bottom:648.708903pt;}
.y120{bottom:649.735570pt;}
.y21e{bottom:650.768964pt;}
.y1ed{bottom:650.772903pt;}
.yea{bottom:651.042236pt;}
.y30{bottom:656.042236pt;}
.y52{bottom:656.708903pt;}
.y21d{bottom:663.430297pt;}
.y1ec{bottom:663.434236pt;}
.y162{bottom:664.708903pt;}
.y159{bottom:665.237268pt;}
.y151{bottom:665.237287pt;}
.y149{bottom:665.237307pt;}
.y94{bottom:672.042236pt;}
.y51{bottom:672.708903pt;}
.y15a{bottom:673.237268pt;}
.y152{bottom:673.237287pt;}
.y14a{bottom:673.237307pt;}
.y21c{bottom:676.091630pt;}
.y1eb{bottom:676.095570pt;}
.y1b4{bottom:677.375610pt;}
.y7{bottom:678.357503pt;}
.y161{bottom:680.708903pt;}
.y11f{bottom:681.735570pt;}
.ye9{bottom:683.042236pt;}
.y93{bottom:688.042236pt;}
.y2f{bottom:688.708903pt;}
.y21b{bottom:688.752964pt;}
.y1ea{bottom:688.756903pt;}
.y6{bottom:694.357503pt;}
.y160{bottom:696.708903pt;}
.y21a{bottom:701.414297pt;}
.y1e9{bottom:701.418236pt;}
.y92{bottom:704.042236pt;}
.y2e{bottom:704.708903pt;}
.y15f{bottom:712.708903pt;}
.y219{bottom:714.075630pt;}
.y1e8{bottom:714.079570pt;}
.y91{bottom:720.042236pt;}
.y2d{bottom:720.708903pt;}
.y1b3{bottom:726.736964pt;}
.y1e7{bottom:726.740903pt;}
.y15e{bottom:728.708903pt;}
.y5{bottom:732.351581pt;}
.ye8{bottom:735.708903pt;}
.y90{bottom:736.042236pt;}
.y2c{bottom:736.708903pt;}
.y1b2{bottom:739.398297pt;}
.y1e6{bottom:739.402236pt;}
.y15d{bottom:744.708903pt;}
.ye7{bottom:751.708903pt;}
.y8f{bottom:752.042236pt;}
.y1b1{bottom:752.059630pt;}
.y1e5{bottom:752.063570pt;}
.y4{bottom:752.354248pt;}
.y2b{bottom:752.708903pt;}
.y15c{bottom:760.708903pt;}
.y1b0{bottom:764.720964pt;}
.y1e4{bottom:764.724903pt;}
.ye6{bottom:767.708903pt;}
.y2a{bottom:768.708903pt;}
.y1af{bottom:777.382297pt;}
.y1e3{bottom:777.386236pt;}
.y29{bottom:784.708903pt;}
.y1ae{bottom:790.043630pt;}
.y1e2{bottom:790.047570pt;}
.ye5{bottom:799.708903pt;}
.y28{bottom:800.708903pt;}
.y1ad{bottom:802.704964pt;}
.y1e1{bottom:802.708903pt;}
.y3{bottom:822.992964pt;}
.y50{bottom:835.262533pt;}
.y78{bottom:835.654126pt;}
.y27{bottom:835.654289pt;}
.y2{bottom:835.654297pt;}
.y77{bottom:836.112793pt;}
.y26{bottom:836.112956pt;}
.h9{height:27.716267pt;}
.h2{height:37.376000pt;}
.h5{height:38.453333pt;}
.h8{height:39.594667pt;}
.ha{height:42.298667pt;}
.he{height:43.648000pt;}
.hd{height:46.523731pt;}
.hb{height:47.680000pt;}
.h6{height:49.493333pt;}
.hc{height:54.560000pt;}
.h7{height:56.266667pt;}
.h4{height:57.658667pt;}
.h3{height:61.429333pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031469pt;}
.x4{left:68.976400pt;}
.x8{left:76.031469pt;}
.x6{left:83.151469pt;}
.x42{left:85.605998pt;}
.x3{left:86.932800pt;}
.x22{left:88.089071pt;}
.x7{left:89.364802pt;}
.x68{left:90.708788pt;}
.x41{left:94.989602pt;}
.x43{left:103.180796pt;}
.x23{left:107.095998pt;}
.x4a{left:114.622800pt;}
.x44{left:119.934400pt;}
.x9{left:122.089071pt;}
.x4b{left:127.284133pt;}
.x24{left:131.991998pt;}
.x4c{left:139.945467pt;}
.xa{left:141.095998pt;}
.x25{left:144.653331pt;}
.x4d{left:152.606800pt;}
.x26{left:157.314665pt;}
.xb{left:162.290665pt;}
.x4e{left:165.268133pt;}
.x27{left:169.975998pt;}
.x55{left:172.429342pt;}
.xc{left:174.951998pt;}
.x4f{left:177.929467pt;}
.x28{left:182.637331pt;}
.xd{left:187.613331pt;}
.x50{left:190.548135pt;}
.x29{left:195.298665pt;}
.x56{left:197.325342pt;}
.x51{left:203.209469pt;}
.x45{left:208.542402pt;}
.x57{left:209.986675pt;}
.x2a{left:211.416000pt;}
.xe{left:212.487998pt;}
.x52{left:215.870802pt;}
.x46{left:221.203735pt;}
.x58{left:222.648008pt;}
.x2b{left:224.077334pt;}
.xf{left:225.149331pt;}
.x53{left:228.532135pt;}
.x59{left:235.309342pt;}
.x2c{left:236.738667pt;}
.x10{left:237.810665pt;}
.x54{left:241.193469pt;}
.x5a{left:247.970675pt;}
.x2d{left:249.400000pt;}
.x11{left:250.461331pt;}
.x2e{left:262.061334pt;}
.x5b{left:264.098675pt;}
.x12{left:266.589331pt;}
.x2f{left:274.722667pt;}
.x5c{left:276.760008pt;}
.x13{left:279.250665pt;}
.x47{left:287.913071pt;}
.x5d{left:289.421342pt;}
.x30{left:290.850667pt;}
.x14{left:291.911998pt;}
.x48{left:300.574404pt;}
.x5e{left:302.082675pt;}
.x31{left:303.512000pt;}
.x15{left:304.562665pt;}
.x49{left:313.235738pt;}
.x5f{left:314.744008pt;}
.x32{left:316.173334pt;}
.x16{left:317.223998pt;}
.x60{left:327.405342pt;}
.x33{left:328.834667pt;}
.x17{left:329.885331pt;}
.x61{left:340.066675pt;}
.x34{left:341.496000pt;}
.x18{left:346.013331pt;}
.x62{left:352.728008pt;}
.x35{left:354.157334pt;}
.x19{left:358.674665pt;}
.x36{left:366.818667pt;}
.x63{left:368.888011pt;}
.x1a{left:371.335998pt;}
.x37{left:379.448000pt;}
.x64{left:381.549345pt;}
.x1b{left:383.997331pt;}
.x38{left:392.109334pt;}
.x65{left:394.210678pt;}
.x1c{left:396.658665pt;}
.x39{left:404.770667pt;}
.x66{left:406.872011pt;}
.x1d{left:409.319998pt;}
.x67{left:419.533345pt;}
.x3a{left:420.973334pt;}
.x1e{left:425.480000pt;}
.x1{left:431.874146pt;}
.x3b{left:433.634667pt;}
.x1f{left:438.141334pt;}
.x3c{left:446.296000pt;}
.x20{left:450.802667pt;}
.x3d{left:458.957334pt;}
.x21{left:463.464000pt;}
.x3e{left:471.618667pt;}
.x3f{left:484.258667pt;}
.x40{left:496.920000pt;}
.x5{left:502.595581pt;}
}




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