
    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_49a0ae91f03c8e1436ef9e95.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_80bf2f6d53f89ee7315898ae.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e0074b762f5af049bcb53fc9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065581;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_d8123aa299d66f0c7d2df468.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_56c344d6e365346b5cd15cf2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dd885441f11b4984f6d62e79.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_b1a5171bcb98bbb30276948e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.090000;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_53a11ef74679fe33175810a4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d6ebb71e3737d5d55a8f713d.woff2')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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c23b73d6e00cade9927e3978.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_77528b1f2dd9a0dc7ac33043.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v3{vertical-align:-19.200073px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.144282px;}
.v1{vertical-align:24.000000px;}
.v2{vertical-align:33.675829px;}
.ls11{letter-spacing:-1.440000px;}
.ls14{letter-spacing:-0.840000px;}
.ls10{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.672000px;}
.lsf{letter-spacing:-0.624000px;}
.ls7{letter-spacing:-0.420000px;}
.ls13{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000085px;}
.ls4{letter-spacing:0.300000px;}
.ls6{letter-spacing:0.330000px;}
.ls16{letter-spacing:0.672000px;}
.ls3{letter-spacing:0.840000px;}
.ls5{letter-spacing:0.900000px;}
.ls15{letter-spacing:1.200000px;}
.ls0{letter-spacing:3.360000px;}
.ls9{letter-spacing:14.976000px;}
.ls8{letter-spacing:15.000000px;}
.lsc{letter-spacing:40.246143px;}
.lsb{letter-spacing:46.531787px;}
.lse{letter-spacing:85.126208px;}
.lsa{letter-spacing:87.312000px;}
.lsd{letter-spacing:91.411761px;}
.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;}
}
.ws108{word-spacing:-16.200000px;}
.ws3a{word-spacing:-15.840000px;}
.ws39{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.000000px;}
.wse4{word-spacing:-14.820000px;}
.wsb0{word-spacing:-13.332000px;}
.ws156{word-spacing:-12.672000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.120000px;}
.wsaf{word-spacing:-12.000000px;}
.ws6{word-spacing:-11.520000px;}
.ws86{word-spacing:-11.340000px;}
.ws1{word-spacing:-9.408000px;}
.ws115{word-spacing:-9.216000px;}
.ws3{word-spacing:-8.694000px;}
.wscb{word-spacing:-8.400000px;}
.wsea{word-spacing:-7.500000px;}
.wsd8{word-spacing:-6.000000px;}
.ws18{word-spacing:-1.890000px;}
.ws52{word-spacing:-1.500000px;}
.ws109{word-spacing:-1.380000px;}
.ws10f{word-spacing:-1.320000px;}
.ws36{word-spacing:-1.260000px;}
.ws102{word-spacing:-1.200000px;}
.wsff{word-spacing:-1.140000px;}
.ws112{word-spacing:-1.080000px;}
.ws3d{word-spacing:-0.900000px;}
.ws21{word-spacing:-0.840000px;}
.ws104{word-spacing:-0.780000px;}
.ws116{word-spacing:-0.720000px;}
.ws157{word-spacing:-0.672000px;}
.ws65{word-spacing:-0.660000px;}
.wsa4{word-spacing:-0.600000px;}
.ws1b{word-spacing:-0.540000px;}
.ws159{word-spacing:-0.528000px;}
.ws8{word-spacing:-0.480000px;}
.ws69{word-spacing:-0.420000px;}
.ws154{word-spacing:-0.384000px;}
.wsb{word-spacing:-0.360000px;}
.ws162{word-spacing:-0.336000px;}
.ws50{word-spacing:-0.300000px;}
.ws129{word-spacing:-0.288000px;}
.wsf2{word-spacing:-0.240000px;}
.ws14b{word-spacing:-0.192000px;}
.wsc{word-spacing:-0.180000px;}
.ws127{word-spacing:-0.144000px;}
.ws97{word-spacing:-0.120000px;}
.ws135{word-spacing:-0.096000px;}
.ws9a{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws76{word-spacing:0.060000px;}
.ws64{word-spacing:0.120000px;}
.wse3{word-spacing:0.180000px;}
.ws15b{word-spacing:0.192000px;}
.ws10d{word-spacing:0.240000px;}
.ws13f{word-spacing:0.288000px;}
.ws37{word-spacing:0.300000px;}
.wsa7{word-spacing:0.360000px;}
.ws12d{word-spacing:0.384000px;}
.ws11{word-spacing:0.420000px;}
.ws138{word-spacing:0.432000px;}
.ws5a{word-spacing:0.480000px;}
.ws24{word-spacing:0.540000px;}
.ws11e{word-spacing:0.576000px;}
.ws71{word-spacing:0.600000px;}
.ws133{word-spacing:0.624000px;}
.ws8a{word-spacing:0.660000px;}
.ws75{word-spacing:0.720000px;}
.ws9f{word-spacing:0.780000px;}
.ws12e{word-spacing:0.816000px;}
.wsc1{word-spacing:0.840000px;}
.ws120{word-spacing:0.864000px;}
.ws10{word-spacing:0.900000px;}
.ws15f{word-spacing:0.912000px;}
.ws8f{word-spacing:0.960000px;}
.ws4d{word-spacing:1.020000px;}
.wsf4{word-spacing:1.080000px;}
.ws126{word-spacing:1.104000px;}
.ws35{word-spacing:1.140000px;}
.ws45{word-spacing:1.200000px;}
.ws11c{word-spacing:1.248000px;}
.ws58{word-spacing:1.260000px;}
.ws14f{word-spacing:1.296000px;}
.ws66{word-spacing:1.320000px;}
.ws141{word-spacing:1.344000px;}
.ws41{word-spacing:1.380000px;}
.ws57{word-spacing:1.440000px;}
.ws124{word-spacing:1.488000px;}
.ws4f{word-spacing:1.500000px;}
.ws99{word-spacing:1.560000px;}
.ws11b{word-spacing:1.584000px;}
.ws96{word-spacing:1.620000px;}
.ws23{word-spacing:1.680000px;}
.ws20{word-spacing:1.740000px;}
.ws118{word-spacing:1.776000px;}
.wse{word-spacing:1.800000px;}
.ws12a{word-spacing:1.824000px;}
.wsed{word-spacing:1.860000px;}
.ws147{word-spacing:1.872000px;}
.ws90{word-spacing:1.920000px;}
.ws38{word-spacing:1.980000px;}
.ws166{word-spacing:2.016000px;}
.ws2f{word-spacing:2.040000px;}
.ws119{word-spacing:2.064000px;}
.ws6b{word-spacing:2.100000px;}
.ws3f{word-spacing:2.160000px;}
.ws152{word-spacing:2.208000px;}
.ws51{word-spacing:2.220000px;}
.wsf9{word-spacing:2.280000px;}
.ws79{word-spacing:2.340000px;}
.ws122{word-spacing:2.352000px;}
.ws11d{word-spacing:2.400000px;}
.ws123{word-spacing:2.448000px;}
.ws2e{word-spacing:2.460000px;}
.ws146{word-spacing:2.496000px;}
.ws47{word-spacing:2.520000px;}
.ws144{word-spacing:2.544000px;}
.wsf3{word-spacing:2.580000px;}
.ws145{word-spacing:2.592000px;}
.wsef{word-spacing:2.640000px;}
.ws61{word-spacing:2.700000px;}
.ws139{word-spacing:2.736000px;}
.ws30{word-spacing:2.760000px;}
.ws136{word-spacing:2.784000px;}
.ws29{word-spacing:2.820000px;}
.ws167{word-spacing:2.832000px;}
.ws6a{word-spacing:2.880000px;}
.ws150{word-spacing:2.928000px;}
.ws34{word-spacing:2.940000px;}
.ws13e{word-spacing:2.976000px;}
.ws9{word-spacing:3.000000px;}
.ws6f{word-spacing:3.060000px;}
.ws68{word-spacing:3.120000px;}
.ws32{word-spacing:3.180000px;}
.wsf0{word-spacing:3.240000px;}
.ws11a{word-spacing:3.264000px;}
.wsd{word-spacing:3.300000px;}
.wse2{word-spacing:3.360000px;}
.ws1c{word-spacing:3.420000px;}
.ws63{word-spacing:3.480000px;}
.ws158{word-spacing:3.504000px;}
.wsbb{word-spacing:3.540000px;}
.ws155{word-spacing:3.600000px;}
.ws164{word-spacing:3.648000px;}
.wsf1{word-spacing:3.660000px;}
.wsc4{word-spacing:3.720000px;}
.wsfb{word-spacing:3.780000px;}
.ws14a{word-spacing:3.792000px;}
.wsad{word-spacing:3.840000px;}
.ws43{word-spacing:3.900000px;}
.ws3b{word-spacing:3.960000px;}
.ws151{word-spacing:3.984000px;}
.wsf5{word-spacing:4.020000px;}
.ws117{word-spacing:4.032000px;}
.wsa{word-spacing:4.080000px;}
.ws74{word-spacing:4.140000px;}
.ws7f{word-spacing:4.200000px;}
.ws40{word-spacing:4.260000px;}
.ws77{word-spacing:4.320000px;}
.ws5d{word-spacing:4.380000px;}
.ws142{word-spacing:4.416000px;}
.ws1d{word-spacing:4.440000px;}
.ws13d{word-spacing:4.464000px;}
.ws9e{word-spacing:4.500000px;}
.ws12b{word-spacing:4.512000px;}
.ws95{word-spacing:4.560000px;}
.ws14d{word-spacing:4.608000px;}
.wsa1{word-spacing:4.620000px;}
.ws149{word-spacing:4.656000px;}
.ws8b{word-spacing:4.680000px;}
.ws3e{word-spacing:4.740000px;}
.ws27{word-spacing:4.800000px;}
.ws14e{word-spacing:4.848000px;}
.ws4c{word-spacing:4.860000px;}
.ws140{word-spacing:4.896000px;}
.ws42{word-spacing:4.920000px;}
.wsf{word-spacing:4.980000px;}
.ws131{word-spacing:4.992000px;}
.wsb6{word-spacing:5.040000px;}
.wseb{word-spacing:5.100000px;}
.wsba{word-spacing:5.160000px;}
.ws4e{word-spacing:5.220000px;}
.ws153{word-spacing:5.232000px;}
.wsbe{word-spacing:5.280000px;}
.ws62{word-spacing:5.340000px;}
.ws15a{word-spacing:5.376000px;}
.ws22{word-spacing:5.400000px;}
.ws8d{word-spacing:5.460000px;}
.ws148{word-spacing:5.472000px;}
.ws56{word-spacing:5.520000px;}
.ws12f{word-spacing:5.568000px;}
.ws7b{word-spacing:5.580000px;}
.wsb4{word-spacing:5.640000px;}
.ws13c{word-spacing:5.664000px;}
.ws9b{word-spacing:5.700000px;}
.ws80{word-spacing:5.760000px;}
.ws25{word-spacing:5.820000px;}
.ws13{word-spacing:5.880000px;}
.ws100{word-spacing:5.940000px;}
.ws101{word-spacing:6.000000px;}
.wsa0{word-spacing:6.060000px;}
.ws28{word-spacing:6.120000px;}
.ws121{word-spacing:6.144000px;}
.ws6d{word-spacing:6.180000px;}
.ws85{word-spacing:6.240000px;}
.ws2d{word-spacing:6.300000px;}
.ws33{word-spacing:6.360000px;}
.ws7a{word-spacing:6.420000px;}
.wsa6{word-spacing:6.480000px;}
.ws3c{word-spacing:6.540000px;}
.wsfc{word-spacing:6.600000px;}
.ws143{word-spacing:6.624000px;}
.wsf8{word-spacing:6.660000px;}
.ws128{word-spacing:6.672000px;}
.ws12{word-spacing:6.720000px;}
.ws2a{word-spacing:6.780000px;}
.ws165{word-spacing:6.816000px;}
.ws7e{word-spacing:6.840000px;}
.ws11f{word-spacing:6.864000px;}
.ws81{word-spacing:6.900000px;}
.ws1e{word-spacing:6.960000px;}
.wse9{word-spacing:7.020000px;}
.wsf6{word-spacing:7.080000px;}
.wsec{word-spacing:7.140000px;}
.ws15d{word-spacing:7.152000px;}
.ws2c{word-spacing:7.200000px;}
.ws134{word-spacing:7.248000px;}
.wsfe{word-spacing:7.260000px;}
.ws26{word-spacing:7.320000px;}
.ws13a{word-spacing:7.344000px;}
.wsbc{word-spacing:7.380000px;}
.ws14c{word-spacing:7.392000px;}
.wsb7{word-spacing:7.440000px;}
.ws12c{word-spacing:7.488000px;}
.ws10e{word-spacing:7.500000px;}
.ws15c{word-spacing:7.536000px;}
.ws8c{word-spacing:7.560000px;}
.ws5c{word-spacing:7.620000px;}
.wsae{word-spacing:7.680000px;}
.ws88{word-spacing:7.740000px;}
.wsee{word-spacing:7.800000px;}
.ws46{word-spacing:7.860000px;}
.wsbf{word-spacing:7.920000px;}
.ws9c{word-spacing:7.980000px;}
.ws48{word-spacing:8.100000px;}
.ws6e{word-spacing:8.160000px;}
.wsb8{word-spacing:8.220000px;}
.wsb9{word-spacing:8.280000px;}
.ws1f{word-spacing:8.340000px;}
.ws14{word-spacing:8.400000px;}
.ws15{word-spacing:8.460000px;}
.ws163{word-spacing:8.496000px;}
.ws5f{word-spacing:8.520000px;}
.ws6c{word-spacing:8.580000px;}
.ws59{word-spacing:8.640000px;}
.wsa5{word-spacing:8.700000px;}
.ws78{word-spacing:8.760000px;}
.ws161{word-spacing:8.784000px;}
.wsaa{word-spacing:8.820000px;}
.ws7d{word-spacing:8.880000px;}
.ws60{word-spacing:8.940000px;}
.ws105{word-spacing:9.000000px;}
.ws111{word-spacing:9.120000px;}
.ws160{word-spacing:9.168000px;}
.ws16{word-spacing:9.300000px;}
.ws98{word-spacing:9.360000px;}
.ws125{word-spacing:9.408000px;}
.wsa8{word-spacing:9.420000px;}
.ws73{word-spacing:9.480000px;}
.ws93{word-spacing:9.540000px;}
.ws54{word-spacing:9.660000px;}
.ws91{word-spacing:9.780000px;}
.ws8e{word-spacing:9.840000px;}
.wsc2{word-spacing:9.900000px;}
.wsb3{word-spacing:10.020000px;}
.ws70{word-spacing:10.140000px;}
.ws44{word-spacing:10.200000px;}
.ws5b{word-spacing:10.260000px;}
.wsc0{word-spacing:10.380000px;}
.ws13b{word-spacing:10.416000px;}
.ws89{word-spacing:10.440000px;}
.ws113{word-spacing:10.500000px;}
.wsfa{word-spacing:10.560000px;}
.ws107{word-spacing:10.620000px;}
.ws67{word-spacing:10.860000px;}
.ws110{word-spacing:10.920000px;}
.ws130{word-spacing:10.944000px;}
.ws49{word-spacing:10.980000px;}
.ws94{word-spacing:11.040000px;}
.ws84{word-spacing:11.160000px;}
.wsb5{word-spacing:11.220000px;}
.wsa2{word-spacing:11.280000px;}
.ws7c{word-spacing:11.340000px;}
.ws15e{word-spacing:11.424000px;}
.ws103{word-spacing:11.520000px;}
.wsfd{word-spacing:11.820000px;}
.ws4b{word-spacing:12.000000px;}
.ws87{word-spacing:12.060000px;}
.wsf7{word-spacing:12.420000px;}
.wsa9{word-spacing:12.480000px;}
.wsac{word-spacing:12.540000px;}
.wsab{word-spacing:12.840000px;}
.wsb1{word-spacing:13.200000px;}
.ws4a{word-spacing:13.380000px;}
.ws114{word-spacing:13.740000px;}
.wsa3{word-spacing:13.800000px;}
.ws137{word-spacing:13.968000px;}
.ws10a{word-spacing:13.980000px;}
.ws132{word-spacing:14.016000px;}
.ws82{word-spacing:14.100000px;}
.wsc3{word-spacing:14.160000px;}
.ws9d{word-spacing:14.280000px;}
.ws72{word-spacing:16.260000px;}
.ws92{word-spacing:16.320000px;}
.ws31{word-spacing:16.380000px;}
.ws106{word-spacing:17.400000px;}
.ws83{word-spacing:17.520000px;}
.ws10b{word-spacing:17.580000px;}
.ws55{word-spacing:18.060000px;}
.ws53{word-spacing:18.360000px;}
.ws5e{word-spacing:18.900000px;}
.ws2b{word-spacing:19.500000px;}
.ws19{word-spacing:19.668000px;}
.ws1a{word-spacing:19.740000px;}
.wsb2{word-spacing:20.520000px;}
.wsd0{word-spacing:31.846252px;}
.wse0{word-spacing:45.792000px;}
.ws17{word-spacing:73.056000px;}
.wscf{word-spacing:73.104000px;}
.wsce{word-spacing:86.928000px;}
.wsc6{word-spacing:95.328000px;}
.wscd{word-spacing:96.192000px;}
.wsda{word-spacing:96.912000px;}
.wsc5{word-spacing:110.544000px;}
.wsd9{word-spacing:112.128000px;}
.wsc8{word-spacing:119.328000px;}
.wsdf{word-spacing:120.816000px;}
.wsdc{word-spacing:120.912000px;}
.wscc{word-spacing:123.215990px;}
.wsd4{word-spacing:123.956360px;}
.wsd7{word-spacing:134.736000px;}
.wsd1{word-spacing:140.496000px;}
.wsd2{word-spacing:161.202576px;}
.wse5{word-spacing:170.015991px;}
.wse1{word-spacing:215.760000px;}
.wsd5{word-spacing:217.248000px;}
.wse6{word-spacing:218.015991px;}
.wsd3{word-spacing:218.159990px;}
.wse7{word-spacing:242.015991px;}
.wsca{word-spacing:263.376000px;}
.wsde{word-spacing:264.960000px;}
.wsc7{word-spacing:265.056000px;}
.wsdb{word-spacing:266.640000px;}
.wsc9{word-spacing:285.264000px;}
.wsdd{word-spacing:286.848000px;}
.wsbd{word-spacing:362.687988px;}
.wsd6{word-spacing:773.663988px;}
.wse8{word-spacing:776.543963px;}
.ws10c{word-spacing:1427.039972px;}
._6{margin-left:-15.600000px;}
._10{margin-left:-13.332000px;}
._11{margin-left:-11.574000px;}
._4f{margin-left:-9.984009px;}
._36{margin-left:-6.142200px;}
._b{margin-left:-4.963746px;}
._1{margin-left:-3.892800px;}
._2{margin-left:-2.743800px;}
._0{margin-left:-1.632000px;}
._4{width:1.129746px;}
._3{width:2.176200px;}
._12{width:3.523800px;}
._9{width:4.876254px;}
._a{width:6.553854px;}
._14{width:7.956000px;}
._1d{width:9.378000px;}
._c{width:10.723800px;}
._16{width:13.320000px;}
._17{width:14.784000px;}
._f{width:17.094000px;}
._13{width:18.660000px;}
._1c{width:19.788001px;}
._7{width:22.320000px;}
._15{width:30.000000px;}
._1b{width:33.000000px;}
._e{width:34.140000px;}
._3f{width:37.727992px;}
._d{width:38.820000px;}
._5{width:40.552816px;}
._81{width:41.904024px;}
._9b{width:43.008000px;}
._5a{width:48.959995px;}
._7e{width:52.320000px;}
._55{width:54.336013px;}
._35{width:55.391992px;}
._7c{width:59.995208px;}
._33{width:61.679992px;}
._59{width:63.312000px;}
._9d{width:73.056000px;}
._83{width:75.456000px;}
._5b{width:77.855990px;}
._50{width:81.614368px;}
._7f{width:82.704000px;}
._5c{width:84.852579px;}
._19{width:87.312000px;}
._80{width:89.088000px;}
._58{width:91.487990px;}
._52{width:93.840000px;}
._3b{width:96.431992px;}
._39{width:98.278246px;}
._56{width:99.648000px;}
._57{width:101.904000px;}
._51{width:105.120000px;}
._82{width:106.224008px;}
._46{width:107.472000px;}
._70{width:108.912000px;}
._41{width:111.312000px;}
._6f{width:112.896000px;}
._42{width:115.344000px;}
._48{width:119.328000px;}
._74{width:124.896000px;}
._7b{width:126.672016px;}
._43{width:130.032000px;}
._71{width:131.616000px;}
._3e{width:133.727992px;}
._7a{width:136.975800px;}
._45{width:143.328000px;}
._4e{width:144.960000px;}
._79{width:146.544000px;}
._78{width:149.232000px;}
._84{width:150.432017px;}
._29{width:152.134228px;}
._4c{width:155.328000px;}
._5d{width:157.248000px;}
._4d{width:158.592000px;}
._63{width:160.512008px;}
._2d{width:163.055992px;}
._68{width:165.599986px;}
._4a{width:167.328000px;}
._73{width:168.912000px;}
._30{width:171.071992px;}
._77{width:172.896000px;}
._5e{width:175.920000px;}
._86{width:177.455982px;}
._4b{width:179.328000px;}
._25{width:181.684792px;}
._53{width:183.167990px;}
._64{width:184.368000px;}
._67{width:193.248000px;}
._60{width:199.200000px;}
._85{width:201.275968px;}
._61{width:205.248000px;}
._8c{width:208.582245px;}
._89{width:209.689737px;}
._7d{width:220.800000px;}
._54{width:223.199990px;}
._37{width:242.444393px;}
._47{width:250.272000px;}
._75{width:251.856000px;}
._8a{width:254.015991px;}
._2b{width:258.572482px;}
._44{width:271.632000px;}
._72{width:273.216000px;}
._28{width:279.071992px;}
._49{width:290.304000px;}
._76{width:291.888000px;}
._1e{width:302.687988px;}
._21{width:315.238243px;}
._23{width:329.863789px;}
._1f{width:335.807989px;}
._62{width:348.287986px;}
._87{width:355.584000px;}
._32{width:358.032000px;}
._3a{width:360.192000px;}
._88{width:365.232000px;}
._24{width:374.687988px;}
._5f{width:383.520000px;}
._38{width:402.982254px;}
._3c{width:420.358228px;}
._93{width:427.823986px;}
._65{width:431.472000px;}
._96{width:436.319988px;}
._8b{width:443.568000px;}
._2c{width:457.200000px;}
._20{width:458.687988px;}
._92{width:464.207989px;}
._3d{width:466.560000px;}
._66{width:471.504000px;}
._95{width:472.703991px;}
._2f{width:474.631800px;}
._6b{width:483.984000px;}
._22{width:549.119989px;}
._8f{width:568.031982px;}
._2a{width:593.952000px;}
._99{width:656.159989px;}
._98{width:664.655991px;}
._94{width:680.159989px;}
._97{width:688.655991px;}
._27{width:755.959800px;}
._18{width:786.335969px;}
._40{width:813.294006px;}
._6e{width:814.896545px;}
._34{width:843.455974px;}
._31{width:856.799974px;}
._1a{width:910.703969px;}
._69{width:933.312000px;}
._8d{width:936.960000px;}
._6a{width:970.608000px;}
._8e{width:974.256000px;}
._2e{width:1047.119974px;}
._6c{width:1186.847990px;}
._90{width:1191.264000px;}
._9a{width:1222.943972px;}
._9c{width:1224.454226px;}
._26{width:1316.063974px;}
._6d{width:1561.391946px;}
._91{width:1566.576000px;}
._8{width:1744.128072px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:49.625399px;}
.y4{bottom:49.625999px;}
.y1{bottom:50.758198px;}
.y11d{bottom:89.879919px;}
.y11a{bottom:89.891928px;}
.y119{bottom:89.903936px;}
.y116{bottom:89.915945px;}
.y115{bottom:89.927949px;}
.y1c2{bottom:89.927969px;}
.y114{bottom:89.939957px;}
.y1c0{bottom:89.939974px;}
.y113{bottom:89.951966px;}
.y1be{bottom:89.951979px;}
.y112{bottom:89.963974px;}
.y1bc{bottom:89.963984px;}
.y111{bottom:89.975983px;}
.y1ba{bottom:89.975990px;}
.y110{bottom:89.987991px;}
.y1b8{bottom:89.987995px;}
.y10f{bottom:90.000000px;}
.y1f4{bottom:90.001946px;}
.y23{bottom:90.012000px;}
.y1aa{bottom:90.012005px;}
.y1ac{bottom:90.024010px;}
.y1ae{bottom:90.036015px;}
.y1b0{bottom:90.048019px;}
.y1b2{bottom:90.060024px;}
.y1b4{bottom:90.072029px;}
.y1b6{bottom:90.084034px;}
.y87{bottom:90.797539px;}
.y1f8{bottom:90.840002px;}
.y275{bottom:91.139516px;}
.yb6{bottom:91.202516px;}
.y13d{bottom:95.012552px;}
.y1f1{bottom:97.687042px;}
.y20b{bottom:98.297516px;}
.y1a9{bottom:99.047516px;}
.y10e{bottom:99.198450px;}
.yf4{bottom:99.216917px;}
.y155{bottom:99.626541px;}
.y9b{bottom:104.297516px;}
.y274{bottom:105.383516px;}
.y7b{bottom:107.297516px;}
.y50{bottom:107.672516px;}
.y101{bottom:107.672539px;}
.y86{bottom:108.797539px;}
.y19d{bottom:108.797562px;}
.yb5{bottom:109.202516px;}
.y22{bottom:111.756000px;}
.yf3{bottom:113.460917px;}
.y149{bottom:114.855291px;}
.y1f0{bottom:115.687042px;}
.y20a{bottom:116.297516px;}
.y1a8{bottom:117.047516px;}
.y10d{bottom:117.426450px;}
.y154{bottom:117.626541px;}
.y273{bottom:119.627516px;}
.y9a{bottom:122.297516px;}
.y7a{bottom:125.297516px;}
.y4f{bottom:125.672516px;}
.y100{bottom:125.672539px;}
.y21{bottom:126.000000px;}
.y244{bottom:126.731543px;}
.y85{bottom:126.797539px;}
.y19c{bottom:126.797562px;}
.yb4{bottom:127.202516px;}
.y1f3{bottom:127.417946px;}
.yf2{bottom:127.704917px;}
.y214{bottom:129.803550px;}
.y148{bottom:133.083291px;}
.y1ef{bottom:133.687042px;}
.y272{bottom:133.871516px;}
.y209{bottom:134.297516px;}
.y1a7{bottom:135.047516px;}
.y10c{bottom:135.570450px;}
.y153{bottom:135.626541px;}
.y1f5{bottom:136.417946px;}
.y99{bottom:140.297516px;}
.y243{bottom:140.975543px;}
.yf1{bottom:141.948917px;}
.y79{bottom:143.297516px;}
.y4e{bottom:143.672516px;}
.yff{bottom:143.672539px;}
.y213{bottom:144.047550px;}
.y84{bottom:144.797539px;}
.y19b{bottom:144.797562px;}
.yb3{bottom:145.202516px;}
.y271{bottom:148.115516px;}
.y147{bottom:151.227291px;}
.y1ee{bottom:151.687042px;}
.y1d6{bottom:151.742516px;}
.y208{bottom:152.297516px;}
.y152{bottom:153.626541px;}
.y10b{bottom:153.714450px;}
.y242{bottom:155.219543px;}
.y98{bottom:158.297516px;}
.y109{bottom:159.059550px;}
.yf0{bottom:160.104917px;}
.y78{bottom:161.297516px;}
.y4d{bottom:161.672516px;}
.yfe{bottom:161.672539px;}
.y270{bottom:162.359516px;}
.y83{bottom:162.797539px;}
.y19a{bottom:162.797562px;}
.yb2{bottom:163.202516px;}
.y146{bottom:169.371291px;}
.y241{bottom:169.463543px;}
.y1ed{bottom:169.687042px;}
.y1d5{bottom:169.742516px;}
.y1a6{bottom:171.047516px;}
.y151{bottom:171.626541px;}
.y108{bottom:173.303550px;}
.y11f{bottom:175.643917px;}
.y97{bottom:176.297516px;}
.y26f{bottom:176.603516px;}
.yef{bottom:178.332917px;}
.y77{bottom:179.297516px;}
.y4c{bottom:179.672516px;}
.yfd{bottom:179.672539px;}
.y82{bottom:180.797539px;}
.y199{bottom:180.797562px;}
.yb1{bottom:181.202516px;}
.y10a{bottom:181.722450px;}
.y240{bottom:183.707543px;}
.y11e{bottom:184.643917px;}
.y11b{bottom:184.655926px;}
.y117{bottom:184.679943px;}
.y177{bottom:186.757180px;}
.y145{bottom:187.515291px;}
.y107{bottom:187.547550px;}
.y1ec{bottom:187.687042px;}
.y1d4{bottom:187.742516px;}
.y207{bottom:188.297516px;}
.y150{bottom:189.626541px;}
.y26e{bottom:190.847516px;}
.yee{bottom:192.576917px;}
.y96{bottom:194.297516px;}
.y76{bottom:197.297516px;}
.y4b{bottom:197.672516px;}
.yfc{bottom:197.672539px;}
.y23f{bottom:197.951543px;}
.y81{bottom:198.797539px;}
.y198{bottom:198.797562px;}
.yb0{bottom:199.202516px;}
.y176{bottom:204.757180px;}
.y26d{bottom:205.091516px;}
.y144{bottom:205.659291px;}
.y1eb{bottom:205.687042px;}
.y1d3{bottom:205.742516px;}
.yed{bottom:206.820917px;}
.y14f{bottom:207.626541px;}
.y23e{bottom:212.195543px;}
.y95{bottom:212.297516px;}
.y75{bottom:215.297516px;}
.y4a{bottom:215.672516px;}
.yfb{bottom:215.672539px;}
.y80{bottom:216.797539px;}
.y197{bottom:216.797562px;}
.yaf{bottom:217.202516px;}
.y26c{bottom:219.335516px;}
.yec{bottom:221.064917px;}
.y175{bottom:222.757180px;}
.y1ea{bottom:223.687042px;}
.y1d2{bottom:223.742516px;}
.y143{bottom:223.803291px;}
.y14e{bottom:225.626541px;}
.y23d{bottom:226.439543px;}
.y94{bottom:230.297516px;}
.yd2{bottom:233.297516px;}
.y26b{bottom:233.579516px;}
.y49{bottom:233.672516px;}
.yfa{bottom:233.672539px;}
.y7f{bottom:234.797539px;}
.y196{bottom:234.797562px;}
.yae{bottom:235.202516px;}
.yeb{bottom:235.308917px;}
.y23c{bottom:240.683543px;}
.y174{bottom:240.757180px;}
.y1e9{bottom:241.687042px;}
.y1d1{bottom:241.742516px;}
.y142{bottom:241.947291px;}
.y206{bottom:247.547516px;}
.y26a{bottom:247.823516px;}
.y93{bottom:248.297516px;}
.ye6{bottom:249.528917px;}
.yea{bottom:249.552917px;}
.yd1{bottom:251.297516px;}
.y48{bottom:251.672516px;}
.yf9{bottom:251.672539px;}
.y74{bottom:252.047516px;}
.y106{bottom:252.797516px;}
.y7e{bottom:252.797539px;}
.y195{bottom:252.797562px;}
.yad{bottom:253.202516px;}
.y23b{bottom:254.927543px;}
.y173{bottom:258.757180px;}
.y1e8{bottom:259.687042px;}
.y1d0{bottom:259.742516px;}
.y141{bottom:260.091291px;}
.y20{bottom:260.567093px;}
.y14d{bottom:261.626541px;}
.y269{bottom:262.067516px;}
.ye5{bottom:263.772917px;}
.ye9{bottom:263.796917px;}
.y205{bottom:265.547516px;}
.y92{bottom:266.297516px;}
.y23a{bottom:269.171543px;}
.yd0{bottom:269.297516px;}
.y47{bottom:269.672516px;}
.yf8{bottom:269.672539px;}
.y73{bottom:270.047516px;}
.y105{bottom:270.797516px;}
.y194{bottom:270.797562px;}
.yac{bottom:271.202516px;}
.y268{bottom:276.311516px;}
.y172{bottom:276.757180px;}
.y1cf{bottom:277.742516px;}
.ye4{bottom:278.016917px;}
.ye8{bottom:278.040917px;}
.y140{bottom:278.235291px;}
.y239{bottom:283.415543px;}
.y204{bottom:283.547516px;}
.y91{bottom:284.297516px;}
.ycf{bottom:287.297516px;}
.y46{bottom:287.672516px;}
.yf7{bottom:287.672539px;}
.y72{bottom:288.047516px;}
.y104{bottom:288.797516px;}
.y7d{bottom:288.797539px;}
.y193{bottom:288.797562px;}
.yab{bottom:289.202516px;}
.y267{bottom:290.555516px;}
.ye3{bottom:292.260917px;}
.ye7{bottom:292.284917px;}
.y171{bottom:294.757180px;}
.y1e7{bottom:295.687042px;}
.y1ce{bottom:295.742516px;}
.y13f{bottom:296.379291px;}
.y1f{bottom:297.317093px;}
.y238{bottom:297.659543px;}
.y203{bottom:301.547516px;}
.y90{bottom:302.297516px;}
.y266{bottom:304.799516px;}
.yce{bottom:305.297516px;}
.y45{bottom:305.672516px;}
.yf6{bottom:305.672539px;}
.y71{bottom:306.047516px;}
.y103{bottom:306.797516px;}
.y192{bottom:306.797562px;}
.yaa{bottom:307.202516px;}
.ye2{bottom:310.404917px;}
.y237{bottom:311.903543px;}
.y170{bottom:312.757180px;}
.y1cd{bottom:313.742516px;}
.y1e{bottom:315.317093px;}
.y265{bottom:319.043516px;}
.y202{bottom:319.547516px;}
.y8f{bottom:320.297516px;}
.y14c{bottom:320.876541px;}
.ycd{bottom:323.297516px;}
.y44{bottom:323.672516px;}
.y13e{bottom:324.387291px;}
.y102{bottom:324.797516px;}
.y7c{bottom:324.797539px;}
.y191{bottom:324.797562px;}
.ya9{bottom:325.202516px;}
.y236{bottom:326.147543px;}
.ye1{bottom:328.548917px;}
.y16f{bottom:330.757180px;}
.y1cc{bottom:331.742516px;}
.y264{bottom:333.287516px;}
.y201{bottom:337.547516px;}
.y8e{bottom:338.297516px;}
.y14b{bottom:338.876541px;}
.y235{bottom:340.391543px;}
.ycc{bottom:341.297516px;}
.y43{bottom:341.672516px;}
.yf5{bottom:341.672539px;}
.ye0{bottom:342.792917px;}
.y70{bottom:342.797516px;}
.y190{bottom:342.797562px;}
.ya8{bottom:343.202516px;}
.y13c{bottom:345.766525px;}
.y263{bottom:347.531516px;}
.y16e{bottom:348.757180px;}
.y1e6{bottom:349.687180px;}
.y1cb{bottom:349.742516px;}
.y1d{bottom:352.067093px;}
.y234{bottom:354.635543px;}
.y200{bottom:355.547516px;}
.y8d{bottom:356.297516px;}
.y14a{bottom:356.876541px;}
.ydc{bottom:357.024917px;}
.ydf{bottom:357.036917px;}
.ycb{bottom:359.297516px;}
.y42{bottom:359.672516px;}
.y6f{bottom:360.797516px;}
.y18f{bottom:360.797562px;}
.ya7{bottom:361.202516px;}
.y262{bottom:361.775516px;}
.y16d{bottom:366.757180px;}
.y1e5{bottom:367.687180px;}
.y1ca{bottom:367.742516px;}
.y233{bottom:368.879543px;}
.y1c{bottom:370.067093px;}
.ydb{bottom:371.268917px;}
.yde{bottom:371.280917px;}
.y1ff{bottom:373.547516px;}
.y8c{bottom:374.297516px;}
.y261{bottom:376.019516px;}
.yca{bottom:377.297516px;}
.y41{bottom:377.672516px;}
.y6e{bottom:378.797516px;}
.y18e{bottom:378.797562px;}
.ya6{bottom:379.202516px;}
.y232{bottom:383.123543px;}
.y16c{bottom:384.757180px;}
.yda{bottom:385.512917px;}
.ydd{bottom:385.524917px;}
.y1e4{bottom:385.687180px;}
.y1c9{bottom:385.742516px;}
.y1b{bottom:388.067093px;}
.y260{bottom:390.263516px;}
.y1fe{bottom:391.547516px;}
.y8b{bottom:392.297516px;}
.yc9{bottom:395.297516px;}
.y40{bottom:395.672516px;}
.y6d{bottom:396.797516px;}
.y18d{bottom:396.797562px;}
.ya5{bottom:397.202516px;}
.y231{bottom:397.367543px;}
.y16b{bottom:402.757180px;}
.yd9{bottom:403.656917px;}
.y1e3{bottom:403.687180px;}
.y1c8{bottom:403.742516px;}
.y25f{bottom:404.507516px;}
.y1a{bottom:406.067093px;}
.y158{bottom:406.977585px;}
.y131{bottom:407.260666px;}
.y1fd{bottom:409.547516px;}
.y8a{bottom:410.297516px;}
.y230{bottom:411.611543px;}
.yc8{bottom:413.297516px;}
.y3f{bottom:413.672516px;}
.y1ab{bottom:414.335999px;}
.y1ad{bottom:414.348003px;}
.y1af{bottom:414.360008px;}
.y1b1{bottom:414.372013px;}
.y1b3{bottom:414.384018px;}
.y1b5{bottom:414.396023px;}
.y1b7{bottom:414.408028px;}
.y6c{bottom:414.797516px;}
.y18c{bottom:414.797562px;}
.ya4{bottom:415.202516px;}
.y1c3{bottom:418.499963px;}
.y1c1{bottom:418.511969px;}
.y1bf{bottom:418.523974px;}
.y1bd{bottom:418.535979px;}
.y1bb{bottom:418.547984px;}
.y1b9{bottom:418.559990px;}
.y25e{bottom:418.751516px;}
.y16a{bottom:420.757180px;}
.y1e2{bottom:421.687180px;}
.y1c7{bottom:421.742516px;}
.y19{bottom:424.067093px;}
.y157{bottom:425.479523px;}
.y130{bottom:425.762558px;}
.y22f{bottom:425.855543px;}
.y1fc{bottom:427.547516px;}
.y89{bottom:428.297516px;}
.yc7{bottom:431.297516px;}
.yd8{bottom:431.664917px;}
.y3e{bottom:431.672516px;}
.y6b{bottom:432.797516px;}
.y18b{bottom:432.797562px;}
.y25d{bottom:432.995516px;}
.ya3{bottom:433.202516px;}
.y1e1{bottom:439.687180px;}
.y1c6{bottom:439.742516px;}
.y22e{bottom:440.099543px;}
.y18{bottom:442.067093px;}
.y1fb{bottom:445.547516px;}
.y162{bottom:445.610233px;}
.y13b{bottom:445.855511px;}
.y1a5{bottom:446.297516px;}
.y25c{bottom:447.239516px;}
.yc6{bottom:449.297516px;}
.y3d{bottom:449.672516px;}
.y6a{bottom:450.797516px;}
.y18a{bottom:450.797562px;}
.ya2{bottom:451.202516px;}
.yd7{bottom:453.046051px;}
.y22d{bottom:454.343543px;}
.y169{bottom:456.757180px;}
.y1e0{bottom:457.687180px;}
.y1c5{bottom:457.742516px;}
.y17{bottom:460.067093px;}
.y25b{bottom:461.483516px;}
.y1fa{bottom:463.547516px;}
.y161{bottom:463.838233px;}
.y13a{bottom:464.089521px;}
.y88{bottom:464.297516px;}
.yc5{bottom:467.297516px;}
.y3c{bottom:467.672516px;}
.y22c{bottom:468.587543px;}
.y69{bottom:468.797516px;}
.y189{bottom:468.797562px;}
.ya1{bottom:469.202516px;}
.y1df{bottom:475.687180px;}
.y25a{bottom:475.727516px;}
.y16{bottom:478.067093px;}
.y160{bottom:481.982233px;}
.y139{bottom:482.251502px;}
.y1a4{bottom:482.297516px;}
.y22b{bottom:482.831543px;}
.yc4{bottom:485.297516px;}
.y3b{bottom:485.672516px;}
.y68{bottom:486.797516px;}
.y188{bottom:486.797562px;}
.ya0{bottom:487.202516px;}
.y259{bottom:489.971516px;}
.y1de{bottom:493.687180px;}
.y1c4{bottom:493.742516px;}
.y15{bottom:496.067093px;}
.y22a{bottom:497.075543px;}
.y1f9{bottom:499.547516px;}
.y15f{bottom:500.126233px;}
.y1a3{bottom:500.297516px;}
.y138{bottom:500.395502px;}
.yc3{bottom:503.297516px;}
.y3a{bottom:503.672516px;}
.y258{bottom:504.215516px;}
.y67{bottom:504.797516px;}
.y187{bottom:504.797562px;}
.y9f{bottom:505.202516px;}
.y168{bottom:506.437180px;}
.y229{bottom:511.319543px;}
.y1dd{bottom:511.687180px;}
.y14{bottom:514.067093px;}
.y15e{bottom:518.270233px;}
.y1a2{bottom:518.297516px;}
.y257{bottom:518.459516px;}
.y137{bottom:518.539502px;}
.y285{bottom:519.241928px;}
.y1f6{bottom:520.513939px;}
.yc2{bottom:521.297516px;}
.y39{bottom:521.672516px;}
.y66{bottom:522.797516px;}
.y186{bottom:522.797562px;}
.y9e{bottom:523.202516px;}
.y167{bottom:524.437180px;}
.y228{bottom:525.563543px;}
.y1f7{bottom:529.513939px;}
.y1dc{bottom:529.687180px;}
.y13{bottom:532.067093px;}
.y256{bottom:532.703516px;}
.y1a1{bottom:536.297516px;}
.y15d{bottom:536.414233px;}
.y136{bottom:536.697450px;}
.yc1{bottom:539.297516px;}
.y38{bottom:539.672516px;}
.y227{bottom:539.807543px;}
.y65{bottom:540.797516px;}
.y284{bottom:541.039032px;}
.y9d{bottom:541.202516px;}
.y166{bottom:542.437180px;}
.y255{bottom:546.947516px;}
.y1db{bottom:547.687180px;}
.y12{bottom:550.067093px;}
.y226{bottom:554.051543px;}
.y1a0{bottom:554.297516px;}
.y15c{bottom:554.558233px;}
.y135{bottom:554.841450px;}
.yc0{bottom:557.297516px;}
.y37{bottom:557.672516px;}
.y283{bottom:558.042300px;}
.y64{bottom:558.797516px;}
.y185{bottom:558.797562px;}
.y165{bottom:560.437180px;}
.y254{bottom:561.191516px;}
.y120{bottom:562.655910px;}
.y11c{bottom:562.667919px;}
.y118{bottom:562.691936px;}
.yd6{bottom:564.970047px;}
.y1da{bottom:565.687180px;}
.y11{bottom:568.067093px;}
.y225{bottom:568.295543px;}
.y121{bottom:571.655910px;}
.y19f{bottom:572.297516px;}
.y15b{bottom:572.702233px;}
.y134{bottom:572.985450px;}
.ybf{bottom:575.297516px;}
.y253{bottom:575.435516px;}
.y36{bottom:575.672516px;}
.y63{bottom:576.797516px;}
.y282{bottom:577.086319px;}
.y9c{bottom:577.202516px;}
.y164{bottom:578.437180px;}
.y224{bottom:582.539543px;}
.y1d9{bottom:583.687180px;}
.y10{bottom:586.067093px;}
.y252{bottom:589.679516px;}
.y212{bottom:590.297516px;}
.y15a{bottom:590.846233px;}
.y133{bottom:591.129450px;}
.ybe{bottom:593.297516px;}
.y35{bottom:593.672516px;}
.y62{bottom:594.797516px;}
.y163{bottom:596.437180px;}
.y223{bottom:596.783543px;}
.y281{bottom:598.883560px;}
.y1d8{bottom:601.687180px;}
.y251{bottom:603.923516px;}
.yf{bottom:604.067093px;}
.y19e{bottom:608.297516px;}
.y222{bottom:611.027543px;}
.ybd{bottom:611.297516px;}
.y34{bottom:611.672516px;}
.y61{bottom:612.797516px;}
.y250{bottom:618.167516px;}
.y159{bottom:618.854233px;}
.y132{bottom:619.137450px;}
.y1d7{bottom:619.687180px;}
.ye{bottom:622.067093px;}
.y280{bottom:622.773320px;}
.y221{bottom:625.271543px;}
.y211{bottom:626.297516px;}
.ybc{bottom:629.297516px;}
.y33{bottom:629.672516px;}
.yd5{bottom:630.047516px;}
.y60{bottom:630.797516px;}
.y24f{bottom:632.411516px;}
.y27f{bottom:637.017320px;}
.y220{bottom:639.515543px;}
.yd{bottom:640.067093px;}
.y156{bottom:640.278475px;}
.y12f{bottom:640.566473px;}
.y210{bottom:644.297516px;}
.y24e{bottom:646.655516px;}
.ybb{bottom:647.297516px;}
.y32{bottom:647.672516px;}
.yd4{bottom:648.047516px;}
.y5f{bottom:648.797516px;}
.y178{bottom:652.289978px;}
.y21f{bottom:653.759543px;}
.y27e{bottom:658.809320px;}
.y1f2{bottom:660.319061px;}
.y24d{bottom:660.899516px;}
.y20f{bottom:662.297516px;}
.yba{bottom:665.297516px;}
.y31{bottom:665.672516px;}
.yd3{bottom:666.047516px;}
.y5e{bottom:666.797516px;}
.y21e{bottom:668.003543px;}
.y184{bottom:672.132734px;}
.y27d{bottom:673.053320px;}
.y24c{bottom:675.143516px;}
.y20e{bottom:680.297516px;}
.y21d{bottom:682.247543px;}
.yb9{bottom:683.297516px;}
.y30{bottom:683.672516px;}
.y5d{bottom:684.797516px;}
.yc{bottom:688.559696px;}
.y24b{bottom:689.387516px;}
.y183{bottom:690.360734px;}
.y27c{bottom:694.845320px;}
.y20d{bottom:698.297516px;}
.y2f{bottom:701.672516px;}
.y5c{bottom:702.797516px;}
.yb{bottom:702.803696px;}
.y24a{bottom:703.631516px;}
.y12e{bottom:705.834473px;}
.y182{bottom:708.504734px;}
.y27b{bottom:709.089320px;}
.y21c{bottom:714.797562px;}
.y249{bottom:717.875516px;}
.y2e{bottom:719.672516px;}
.yb8{bottom:720.047516px;}
.y5b{bottom:720.797516px;}
.y12d{bottom:724.062473px;}
.y181{bottom:726.648734px;}
.y27a{bottom:730.881320px;}
.y248{bottom:732.119516px;}
.y20c{bottom:734.297516px;}
.y2d{bottom:737.672516px;}
.yb7{bottom:738.047516px;}
.y5a{bottom:738.797516px;}
.ya{bottom:740.652145px;}
.y12c{bottom:742.206473px;}
.y180{bottom:744.792734px;}
.y279{bottom:745.125320px;}
.y247{bottom:746.363516px;}
.y2c{bottom:755.672516px;}
.y59{bottom:756.797516px;}
.y9{bottom:758.652145px;}
.y12b{bottom:760.350473px;}
.y246{bottom:760.607516px;}
.y17f{bottom:762.936734px;}
.y278{bottom:770.672516px;}
.y2b{bottom:773.672516px;}
.y58{bottom:774.797516px;}
.y245{bottom:774.851516px;}
.y12a{bottom:778.494473px;}
.y17e{bottom:781.080734px;}
.y277{bottom:788.672516px;}
.y21b{bottom:789.095516px;}
.y2a{bottom:791.672516px;}
.y57{bottom:792.797516px;}
.y129{bottom:796.638473px;}
.y17d{bottom:799.224734px;}
.y8{bottom:801.392529px;}
.y21a{bottom:803.339516px;}
.y122{bottom:804.263910px;}
.y29{bottom:809.672516px;}
.y56{bottom:810.797516px;}
.y128{bottom:814.782473px;}
.y17c{bottom:817.368734px;}
.y219{bottom:817.583516px;}
.y7{bottom:823.895529px;}
.y276{bottom:824.672516px;}
.y28{bottom:827.672516px;}
.y55{bottom:828.797516px;}
.y218{bottom:831.827516px;}
.y127{bottom:832.926473px;}
.y17b{bottom:835.512734px;}
.y27{bottom:845.672516px;}
.y217{bottom:846.071516px;}
.y6{bottom:846.398529px;}
.y54{bottom:846.797516px;}
.y126{bottom:851.070473px;}
.y17a{bottom:853.656734px;}
.y216{bottom:860.315516px;}
.y26{bottom:863.672516px;}
.y53{bottom:864.797516px;}
.y125{bottom:869.214473px;}
.y215{bottom:874.559516px;}
.y179{bottom:881.664734px;}
.y52{bottom:882.797516px;}
.y124{bottom:888.803516px;}
.y25{bottom:899.672516px;}
.y5{bottom:899.785217px;}
.y51{bottom:900.797516px;}
.y123{bottom:903.047516px;}
.y3{bottom:925.867084px;}
.y2{bottom:940.111084px;}
.h19{height:29.299200px;}
.h13{height:29.903927px;}
.h18{height:29.903991px;}
.h1a{height:29.904110px;}
.h2{height:33.840000px;}
.hb{height:41.856000px;}
.h3{height:42.048000px;}
.h11{height:42.144000px;}
.hf{height:42.528000px;}
.h5{height:46.704000px;}
.h15{height:48.427163px;}
.h14{height:48.443482px;}
.h16{height:48.475786px;}
.h17{height:48.511127px;}
.h10{height:49.104000px;}
.h9{height:52.320000px;}
.ha{height:53.160000px;}
.he{height:53.640000px;}
.h4{height:54.862258px;}
.h8{height:59.340000px;}
.hd{height:61.380000px;}
.h7{height:64.866000px;}
.hc{height:65.274000px;}
.h6{height:69.108000px;}
.h12{height:75.531829px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535402px;}
.x5{left:78.746400px;}
.x4{left:80.907303px;}
.x6{left:93.545402px;}
.x7a{left:97.799400px;}
.x41{left:102.100204px;}
.x8{left:104.359348px;}
.x7{left:106.865402px;}
.xb{left:113.359342px;}
.xe{left:123.100204px;}
.x2a{left:135.850204px;}
.xf{left:144.482998px;}
.x27{left:148.336052px;}
.x42{left:151.490998px;}
.x2b{left:157.233147px;}
.x43{left:165.734998px;}
.x5c{left:170.350204px;}
.x10{left:172.490998px;}
.x44{left:179.978998px;}
.x2c{left:185.241147px;}
.x11{left:190.634998px;}
.x5d{left:191.732998px;}
.x45{left:194.222998px;}
.x28{left:198.562958px;}
.x29{left:203.422646px;}
.x12{left:208.778998px;}
.x6f{left:210.783009px;}
.x2d{left:213.729147px;}
.x5e{left:219.740998px;}
.x13{left:226.922998px;}
.x2e{left:231.873147px;}
.x5f{left:233.984998px;}
.x70{left:238.791009px;}
.x46{left:240.854998px;}
.x14{left:245.066998px;}
.x2f{left:246.117147px;}
.x60{left:248.228998px;}
.xd{left:250.873810px;}
.x71{left:253.035009px;}
.x47{left:255.098998px;}
.x30{left:260.361147px;}
.x15{left:263.210998px;}
.x72{left:267.279009px;}
.x48{left:269.342998px;}
.x61{left:276.716998px;}
.x31{left:278.505147px;}
.x16{left:281.354998px;}
.x49{left:283.586998px;}
.x62{left:290.960998px;}
.x32{left:292.749147px;}
.x17{left:295.598998px;}
.x4a{left:297.830998px;}
.x63{left:305.204998px;}
.x33{left:306.993147px;}
.x73{left:310.011009px;}
.x4b{left:312.074998px;}
.x18{left:313.754998px;}
.x64{left:319.448998px;}
.x34{left:321.237147px;}
.x74{left:324.255009px;}
.x4c{left:330.218998px;}
.x19{left:331.910998px;}
.x65{left:333.692998px;}
.x35{left:339.393147px;}
.x4d{left:344.462998px;}
.x1a{left:346.154998px;}
.x66{left:351.836998px;}
.x36{left:353.637147px;}
.x4e{left:358.706998px;}
.x1b{left:364.382998px;}
.x67{left:366.080998px;}
.x37{left:367.881147px;}
.x9{left:374.623338px;}
.x4f{left:376.850998px;}
.x1c{left:378.626998px;}
.xa{left:383.623338px;}
.x38{left:386.025147px;}
.x50{left:391.106998px;}
.x1d{left:392.870998px;}
.x68{left:398.468998px;}
.x39{left:400.269147px;}
.x75{left:401.365189px;}
.x51{left:405.350998px;}
.x1e{left:407.114998px;}
.x69{left:412.712998px;}
.x3a{left:414.513147px;}
.xc{left:416.137802px;}
.x52{left:419.594998px;}
.x1f{left:421.358998px;}
.x6a{left:426.956998px;}
.x76{left:429.853189px;}
.x3b{left:432.657147px;}
.x53{left:433.838998px;}
.x20{left:435.602998px;}
.x77{left:444.097189px;}
.x6b{left:445.184998px;}
.x3c{left:446.901147px;}
.x54{left:448.082998px;}
.x21{left:449.846998px;}
.x78{left:458.341189px;}
.x6c{left:459.428998px;}
.x3d{left:461.145147px;}
.x55{left:462.326998px;}
.x22{left:464.090998px;}
.x79{left:472.585189px;}
.x6d{left:473.672998px;}
.x3e{left:475.389147px;}
.x23{left:478.334998px;}
.x56{left:480.470998px;}
.x1{left:485.858414px;}
.x6e{left:487.916998px;}
.x24{left:492.578998px;}
.x3f{left:493.617147px;}
.x57{left:494.714998px;}
.x25{left:506.822998px;}
.x40{left:507.861147px;}
.x58{left:508.958998px;}
.x3{left:521.631592px;}
.x59{left:527.186998px;}
.x26{left:535.310998px;}
.x5a{left:541.430998px;}
.x5b{left:555.674998px;}
@media print{
.v3{vertical-align:-17.066732pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.017140pt;}
.v1{vertical-align:21.333333pt;}
.v2{vertical-align:29.934070pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls14{letter-spacing:-0.746667pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.597333pt;}
.lsf{letter-spacing:-0.554667pt;}
.ls7{letter-spacing:-0.373333pt;}
.ls13{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000076pt;}
.ls4{letter-spacing:0.266667pt;}
.ls6{letter-spacing:0.293333pt;}
.ls16{letter-spacing:0.597333pt;}
.ls3{letter-spacing:0.746667pt;}
.ls5{letter-spacing:0.800000pt;}
.ls15{letter-spacing:1.066667pt;}
.ls0{letter-spacing:2.986667pt;}
.ls9{letter-spacing:13.312000pt;}
.ls8{letter-spacing:13.333333pt;}
.lsc{letter-spacing:35.774349pt;}
.lsb{letter-spacing:41.361589pt;}
.lse{letter-spacing:75.667741pt;}
.lsa{letter-spacing:77.610667pt;}
.lsd{letter-spacing:81.254899pt;}
.ws108{word-spacing:-14.400000pt;}
.ws3a{word-spacing:-14.080000pt;}
.ws39{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.333333pt;}
.wse4{word-spacing:-13.173333pt;}
.wsb0{word-spacing:-11.850667pt;}
.ws156{word-spacing:-11.264000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.773333pt;}
.wsaf{word-spacing:-10.666667pt;}
.ws6{word-spacing:-10.240000pt;}
.ws86{word-spacing:-10.080000pt;}
.ws1{word-spacing:-8.362667pt;}
.ws115{word-spacing:-8.192000pt;}
.ws3{word-spacing:-7.728000pt;}
.wscb{word-spacing:-7.466667pt;}
.wsea{word-spacing:-6.666667pt;}
.wsd8{word-spacing:-5.333333pt;}
.ws18{word-spacing:-1.680000pt;}
.ws52{word-spacing:-1.333333pt;}
.ws109{word-spacing:-1.226667pt;}
.ws10f{word-spacing:-1.173333pt;}
.ws36{word-spacing:-1.120000pt;}
.ws102{word-spacing:-1.066667pt;}
.wsff{word-spacing:-1.013333pt;}
.ws112{word-spacing:-0.960000pt;}
.ws3d{word-spacing:-0.800000pt;}
.ws21{word-spacing:-0.746667pt;}
.ws104{word-spacing:-0.693333pt;}
.ws116{word-spacing:-0.640000pt;}
.ws157{word-spacing:-0.597333pt;}
.ws65{word-spacing:-0.586667pt;}
.wsa4{word-spacing:-0.533333pt;}
.ws1b{word-spacing:-0.480000pt;}
.ws159{word-spacing:-0.469333pt;}
.ws8{word-spacing:-0.426667pt;}
.ws69{word-spacing:-0.373333pt;}
.ws154{word-spacing:-0.341333pt;}
.wsb{word-spacing:-0.320000pt;}
.ws162{word-spacing:-0.298667pt;}
.ws50{word-spacing:-0.266667pt;}
.ws129{word-spacing:-0.256000pt;}
.wsf2{word-spacing:-0.213333pt;}
.ws14b{word-spacing:-0.170667pt;}
.wsc{word-spacing:-0.160000pt;}
.ws127{word-spacing:-0.128000pt;}
.ws97{word-spacing:-0.106667pt;}
.ws135{word-spacing:-0.085333pt;}
.ws9a{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws76{word-spacing:0.053333pt;}
.ws64{word-spacing:0.106667pt;}
.wse3{word-spacing:0.160000pt;}
.ws15b{word-spacing:0.170667pt;}
.ws10d{word-spacing:0.213333pt;}
.ws13f{word-spacing:0.256000pt;}
.ws37{word-spacing:0.266667pt;}
.wsa7{word-spacing:0.320000pt;}
.ws12d{word-spacing:0.341333pt;}
.ws11{word-spacing:0.373333pt;}
.ws138{word-spacing:0.384000pt;}
.ws5a{word-spacing:0.426667pt;}
.ws24{word-spacing:0.480000pt;}
.ws11e{word-spacing:0.512000pt;}
.ws71{word-spacing:0.533333pt;}
.ws133{word-spacing:0.554667pt;}
.ws8a{word-spacing:0.586667pt;}
.ws75{word-spacing:0.640000pt;}
.ws9f{word-spacing:0.693333pt;}
.ws12e{word-spacing:0.725333pt;}
.wsc1{word-spacing:0.746667pt;}
.ws120{word-spacing:0.768000pt;}
.ws10{word-spacing:0.800000pt;}
.ws15f{word-spacing:0.810667pt;}
.ws8f{word-spacing:0.853333pt;}
.ws4d{word-spacing:0.906667pt;}
.wsf4{word-spacing:0.960000pt;}
.ws126{word-spacing:0.981333pt;}
.ws35{word-spacing:1.013333pt;}
.ws45{word-spacing:1.066667pt;}
.ws11c{word-spacing:1.109333pt;}
.ws58{word-spacing:1.120000pt;}
.ws14f{word-spacing:1.152000pt;}
.ws66{word-spacing:1.173333pt;}
.ws141{word-spacing:1.194667pt;}
.ws41{word-spacing:1.226667pt;}
.ws57{word-spacing:1.280000pt;}
.ws124{word-spacing:1.322667pt;}
.ws4f{word-spacing:1.333333pt;}
.ws99{word-spacing:1.386667pt;}
.ws11b{word-spacing:1.408000pt;}
.ws96{word-spacing:1.440000pt;}
.ws23{word-spacing:1.493333pt;}
.ws20{word-spacing:1.546667pt;}
.ws118{word-spacing:1.578667pt;}
.wse{word-spacing:1.600000pt;}
.ws12a{word-spacing:1.621333pt;}
.wsed{word-spacing:1.653333pt;}
.ws147{word-spacing:1.664000pt;}
.ws90{word-spacing:1.706667pt;}
.ws38{word-spacing:1.760000pt;}
.ws166{word-spacing:1.792000pt;}
.ws2f{word-spacing:1.813333pt;}
.ws119{word-spacing:1.834667pt;}
.ws6b{word-spacing:1.866667pt;}
.ws3f{word-spacing:1.920000pt;}
.ws152{word-spacing:1.962667pt;}
.ws51{word-spacing:1.973333pt;}
.wsf9{word-spacing:2.026667pt;}
.ws79{word-spacing:2.080000pt;}
.ws122{word-spacing:2.090667pt;}
.ws11d{word-spacing:2.133333pt;}
.ws123{word-spacing:2.176000pt;}
.ws2e{word-spacing:2.186667pt;}
.ws146{word-spacing:2.218667pt;}
.ws47{word-spacing:2.240000pt;}
.ws144{word-spacing:2.261333pt;}
.wsf3{word-spacing:2.293333pt;}
.ws145{word-spacing:2.304000pt;}
.wsef{word-spacing:2.346667pt;}
.ws61{word-spacing:2.400000pt;}
.ws139{word-spacing:2.432000pt;}
.ws30{word-spacing:2.453333pt;}
.ws136{word-spacing:2.474667pt;}
.ws29{word-spacing:2.506667pt;}
.ws167{word-spacing:2.517333pt;}
.ws6a{word-spacing:2.560000pt;}
.ws150{word-spacing:2.602667pt;}
.ws34{word-spacing:2.613333pt;}
.ws13e{word-spacing:2.645333pt;}
.ws9{word-spacing:2.666667pt;}
.ws6f{word-spacing:2.720000pt;}
.ws68{word-spacing:2.773333pt;}
.ws32{word-spacing:2.826667pt;}
.wsf0{word-spacing:2.880000pt;}
.ws11a{word-spacing:2.901333pt;}
.wsd{word-spacing:2.933333pt;}
.wse2{word-spacing:2.986667pt;}
.ws1c{word-spacing:3.040000pt;}
.ws63{word-spacing:3.093333pt;}
.ws158{word-spacing:3.114667pt;}
.wsbb{word-spacing:3.146667pt;}
.ws155{word-spacing:3.200000pt;}
.ws164{word-spacing:3.242667pt;}
.wsf1{word-spacing:3.253333pt;}
.wsc4{word-spacing:3.306667pt;}
.wsfb{word-spacing:3.360000pt;}
.ws14a{word-spacing:3.370667pt;}
.wsad{word-spacing:3.413333pt;}
.ws43{word-spacing:3.466667pt;}
.ws3b{word-spacing:3.520000pt;}
.ws151{word-spacing:3.541333pt;}
.wsf5{word-spacing:3.573333pt;}
.ws117{word-spacing:3.584000pt;}
.wsa{word-spacing:3.626667pt;}
.ws74{word-spacing:3.680000pt;}
.ws7f{word-spacing:3.733333pt;}
.ws40{word-spacing:3.786667pt;}
.ws77{word-spacing:3.840000pt;}
.ws5d{word-spacing:3.893333pt;}
.ws142{word-spacing:3.925333pt;}
.ws1d{word-spacing:3.946667pt;}
.ws13d{word-spacing:3.968000pt;}
.ws9e{word-spacing:4.000000pt;}
.ws12b{word-spacing:4.010667pt;}
.ws95{word-spacing:4.053333pt;}
.ws14d{word-spacing:4.096000pt;}
.wsa1{word-spacing:4.106667pt;}
.ws149{word-spacing:4.138667pt;}
.ws8b{word-spacing:4.160000pt;}
.ws3e{word-spacing:4.213333pt;}
.ws27{word-spacing:4.266667pt;}
.ws14e{word-spacing:4.309333pt;}
.ws4c{word-spacing:4.320000pt;}
.ws140{word-spacing:4.352000pt;}
.ws42{word-spacing:4.373333pt;}
.wsf{word-spacing:4.426667pt;}
.ws131{word-spacing:4.437333pt;}
.wsb6{word-spacing:4.480000pt;}
.wseb{word-spacing:4.533333pt;}
.wsba{word-spacing:4.586667pt;}
.ws4e{word-spacing:4.640000pt;}
.ws153{word-spacing:4.650667pt;}
.wsbe{word-spacing:4.693333pt;}
.ws62{word-spacing:4.746667pt;}
.ws15a{word-spacing:4.778667pt;}
.ws22{word-spacing:4.800000pt;}
.ws8d{word-spacing:4.853333pt;}
.ws148{word-spacing:4.864000pt;}
.ws56{word-spacing:4.906667pt;}
.ws12f{word-spacing:4.949333pt;}
.ws7b{word-spacing:4.960000pt;}
.wsb4{word-spacing:5.013333pt;}
.ws13c{word-spacing:5.034667pt;}
.ws9b{word-spacing:5.066667pt;}
.ws80{word-spacing:5.120000pt;}
.ws25{word-spacing:5.173333pt;}
.ws13{word-spacing:5.226667pt;}
.ws100{word-spacing:5.280000pt;}
.ws101{word-spacing:5.333333pt;}
.wsa0{word-spacing:5.386667pt;}
.ws28{word-spacing:5.440000pt;}
.ws121{word-spacing:5.461333pt;}
.ws6d{word-spacing:5.493333pt;}
.ws85{word-spacing:5.546667pt;}
.ws2d{word-spacing:5.600000pt;}
.ws33{word-spacing:5.653333pt;}
.ws7a{word-spacing:5.706667pt;}
.wsa6{word-spacing:5.760000pt;}
.ws3c{word-spacing:5.813333pt;}
.wsfc{word-spacing:5.866667pt;}
.ws143{word-spacing:5.888000pt;}
.wsf8{word-spacing:5.920000pt;}
.ws128{word-spacing:5.930667pt;}
.ws12{word-spacing:5.973333pt;}
.ws2a{word-spacing:6.026667pt;}
.ws165{word-spacing:6.058667pt;}
.ws7e{word-spacing:6.080000pt;}
.ws11f{word-spacing:6.101333pt;}
.ws81{word-spacing:6.133333pt;}
.ws1e{word-spacing:6.186667pt;}
.wse9{word-spacing:6.240000pt;}
.wsf6{word-spacing:6.293333pt;}
.wsec{word-spacing:6.346667pt;}
.ws15d{word-spacing:6.357333pt;}
.ws2c{word-spacing:6.400000pt;}
.ws134{word-spacing:6.442667pt;}
.wsfe{word-spacing:6.453333pt;}
.ws26{word-spacing:6.506667pt;}
.ws13a{word-spacing:6.528000pt;}
.wsbc{word-spacing:6.560000pt;}
.ws14c{word-spacing:6.570667pt;}
.wsb7{word-spacing:6.613333pt;}
.ws12c{word-spacing:6.656000pt;}
.ws10e{word-spacing:6.666667pt;}
.ws15c{word-spacing:6.698667pt;}
.ws8c{word-spacing:6.720000pt;}
.ws5c{word-spacing:6.773333pt;}
.wsae{word-spacing:6.826667pt;}
.ws88{word-spacing:6.880000pt;}
.wsee{word-spacing:6.933333pt;}
.ws46{word-spacing:6.986667pt;}
.wsbf{word-spacing:7.040000pt;}
.ws9c{word-spacing:7.093333pt;}
.ws48{word-spacing:7.200000pt;}
.ws6e{word-spacing:7.253333pt;}
.wsb8{word-spacing:7.306667pt;}
.wsb9{word-spacing:7.360000pt;}
.ws1f{word-spacing:7.413333pt;}
.ws14{word-spacing:7.466667pt;}
.ws15{word-spacing:7.520000pt;}
.ws163{word-spacing:7.552000pt;}
.ws5f{word-spacing:7.573333pt;}
.ws6c{word-spacing:7.626667pt;}
.ws59{word-spacing:7.680000pt;}
.wsa5{word-spacing:7.733333pt;}
.ws78{word-spacing:7.786667pt;}
.ws161{word-spacing:7.808000pt;}
.wsaa{word-spacing:7.840000pt;}
.ws7d{word-spacing:7.893333pt;}
.ws60{word-spacing:7.946667pt;}
.ws105{word-spacing:8.000000pt;}
.ws111{word-spacing:8.106667pt;}
.ws160{word-spacing:8.149333pt;}
.ws16{word-spacing:8.266667pt;}
.ws98{word-spacing:8.320000pt;}
.ws125{word-spacing:8.362667pt;}
.wsa8{word-spacing:8.373333pt;}
.ws73{word-spacing:8.426667pt;}
.ws93{word-spacing:8.480000pt;}
.ws54{word-spacing:8.586667pt;}
.ws91{word-spacing:8.693333pt;}
.ws8e{word-spacing:8.746667pt;}
.wsc2{word-spacing:8.800000pt;}
.wsb3{word-spacing:8.906667pt;}
.ws70{word-spacing:9.013333pt;}
.ws44{word-spacing:9.066667pt;}
.ws5b{word-spacing:9.120000pt;}
.wsc0{word-spacing:9.226667pt;}
.ws13b{word-spacing:9.258667pt;}
.ws89{word-spacing:9.280000pt;}
.ws113{word-spacing:9.333333pt;}
.wsfa{word-spacing:9.386667pt;}
.ws107{word-spacing:9.440000pt;}
.ws67{word-spacing:9.653333pt;}
.ws110{word-spacing:9.706667pt;}
.ws130{word-spacing:9.728000pt;}
.ws49{word-spacing:9.760000pt;}
.ws94{word-spacing:9.813333pt;}
.ws84{word-spacing:9.920000pt;}
.wsb5{word-spacing:9.973333pt;}
.wsa2{word-spacing:10.026667pt;}
.ws7c{word-spacing:10.080000pt;}
.ws15e{word-spacing:10.154667pt;}
.ws103{word-spacing:10.240000pt;}
.wsfd{word-spacing:10.506667pt;}
.ws4b{word-spacing:10.666667pt;}
.ws87{word-spacing:10.720000pt;}
.wsf7{word-spacing:11.040000pt;}
.wsa9{word-spacing:11.093333pt;}
.wsac{word-spacing:11.146667pt;}
.wsab{word-spacing:11.413333pt;}
.wsb1{word-spacing:11.733333pt;}
.ws4a{word-spacing:11.893333pt;}
.ws114{word-spacing:12.213333pt;}
.wsa3{word-spacing:12.266667pt;}
.ws137{word-spacing:12.416000pt;}
.ws10a{word-spacing:12.426667pt;}
.ws132{word-spacing:12.458667pt;}
.ws82{word-spacing:12.533333pt;}
.wsc3{word-spacing:12.586667pt;}
.ws9d{word-spacing:12.693333pt;}
.ws72{word-spacing:14.453333pt;}
.ws92{word-spacing:14.506667pt;}
.ws31{word-spacing:14.560000pt;}
.ws106{word-spacing:15.466667pt;}
.ws83{word-spacing:15.573333pt;}
.ws10b{word-spacing:15.626667pt;}
.ws55{word-spacing:16.053333pt;}
.ws53{word-spacing:16.320000pt;}
.ws5e{word-spacing:16.800000pt;}
.ws2b{word-spacing:17.333333pt;}
.ws19{word-spacing:17.482667pt;}
.ws1a{word-spacing:17.546667pt;}
.wsb2{word-spacing:18.240000pt;}
.wsd0{word-spacing:28.307780pt;}
.wse0{word-spacing:40.704000pt;}
.ws17{word-spacing:64.938667pt;}
.wscf{word-spacing:64.981333pt;}
.wsce{word-spacing:77.269333pt;}
.wsc6{word-spacing:84.736000pt;}
.wscd{word-spacing:85.504000pt;}
.wsda{word-spacing:86.144000pt;}
.wsc5{word-spacing:98.261333pt;}
.wsd9{word-spacing:99.669333pt;}
.wsc8{word-spacing:106.069333pt;}
.wsdf{word-spacing:107.392000pt;}
.wsdc{word-spacing:107.477333pt;}
.wscc{word-spacing:109.525325pt;}
.wsd4{word-spacing:110.183431pt;}
.wsd7{word-spacing:119.765333pt;}
.wsd1{word-spacing:124.885333pt;}
.wsd2{word-spacing:143.291178pt;}
.wse5{word-spacing:151.125325pt;}
.wse1{word-spacing:191.786667pt;}
.wsd5{word-spacing:193.109333pt;}
.wse6{word-spacing:193.791992pt;}
.wsd3{word-spacing:193.919992pt;}
.wse7{word-spacing:215.125325pt;}
.wsca{word-spacing:234.112000pt;}
.wsde{word-spacing:235.520000pt;}
.wsc7{word-spacing:235.605333pt;}
.wsdb{word-spacing:237.013333pt;}
.wsc9{word-spacing:253.568000pt;}
.wsdd{word-spacing:254.976000pt;}
.wsbd{word-spacing:322.389323pt;}
.wsd6{word-spacing:687.701323pt;}
.wse8{word-spacing:690.261300pt;}
.ws10c{word-spacing:1268.479975pt;}
._6{margin-left:-13.866667pt;}
._10{margin-left:-11.850667pt;}
._11{margin-left:-10.288000pt;}
._4f{margin-left:-8.874675pt;}
._36{margin-left:-5.459733pt;}
._b{margin-left:-4.412219pt;}
._1{margin-left:-3.460267pt;}
._2{margin-left:-2.438933pt;}
._0{margin-left:-1.450667pt;}
._4{width:1.004219pt;}
._3{width:1.934400pt;}
._12{width:3.132267pt;}
._9{width:4.334448pt;}
._a{width:5.825648pt;}
._14{width:7.072000pt;}
._1d{width:8.336000pt;}
._c{width:9.532267pt;}
._16{width:11.840000pt;}
._17{width:13.141333pt;}
._f{width:15.194667pt;}
._13{width:16.586667pt;}
._1c{width:17.589334pt;}
._7{width:19.840000pt;}
._15{width:26.666667pt;}
._1b{width:29.333333pt;}
._e{width:30.346667pt;}
._3f{width:33.535993pt;}
._d{width:34.506667pt;}
._5{width:36.046948pt;}
._81{width:37.248021pt;}
._9b{width:38.229333pt;}
._5a{width:43.519996pt;}
._7e{width:46.506667pt;}
._55{width:48.298678pt;}
._35{width:49.237326pt;}
._7c{width:53.329074pt;}
._33{width:54.826660pt;}
._59{width:56.277333pt;}
._9d{width:64.938667pt;}
._83{width:67.072000pt;}
._5b{width:69.205325pt;}
._50{width:72.546105pt;}
._7f{width:73.514667pt;}
._5c{width:75.424515pt;}
._19{width:77.610667pt;}
._80{width:79.189333pt;}
._58{width:81.322658pt;}
._52{width:83.413333pt;}
._3b{width:85.717326pt;}
._39{width:87.358441pt;}
._56{width:88.576000pt;}
._57{width:90.581333pt;}
._51{width:93.440000pt;}
._82{width:94.421340pt;}
._46{width:95.530667pt;}
._70{width:96.810667pt;}
._41{width:98.944000pt;}
._6f{width:100.352000pt;}
._42{width:102.528000pt;}
._48{width:106.069333pt;}
._74{width:111.018667pt;}
._7b{width:112.597347pt;}
._43{width:115.584000pt;}
._71{width:116.992000pt;}
._3e{width:118.869326pt;}
._7a{width:121.756267pt;}
._45{width:127.402667pt;}
._4e{width:128.853333pt;}
._79{width:130.261333pt;}
._78{width:132.650667pt;}
._84{width:133.717348pt;}
._29{width:135.230425pt;}
._4c{width:138.069333pt;}
._5d{width:139.776000pt;}
._4d{width:140.970667pt;}
._63{width:142.677340pt;}
._2d{width:144.938660pt;}
._68{width:147.199988pt;}
._4a{width:148.736000pt;}
._73{width:150.144000pt;}
._30{width:152.063993pt;}
._77{width:153.685333pt;}
._5e{width:156.373333pt;}
._86{width:157.738651pt;}
._4b{width:159.402667pt;}
._25{width:161.497593pt;}
._53{width:162.815992pt;}
._64{width:163.882667pt;}
._67{width:171.776000pt;}
._60{width:177.066667pt;}
._85{width:178.911972pt;}
._61{width:182.442667pt;}
._8c{width:185.406440pt;}
._89{width:186.390877pt;}
._7d{width:196.266667pt;}
._54{width:198.399992pt;}
._37{width:215.506127pt;}
._47{width:222.464000pt;}
._75{width:223.872000pt;}
._8a{width:225.791992pt;}
._2b{width:229.842206pt;}
._44{width:241.450667pt;}
._72{width:242.858667pt;}
._28{width:248.063993pt;}
._49{width:258.048000pt;}
._76{width:259.456000pt;}
._1e{width:269.055990pt;}
._21{width:280.211771pt;}
._23{width:293.212257pt;}
._1f{width:298.495990pt;}
._62{width:309.589321pt;}
._87{width:316.074667pt;}
._32{width:318.250667pt;}
._3a{width:320.170667pt;}
._88{width:324.650667pt;}
._24{width:333.055990pt;}
._5f{width:340.906667pt;}
._38{width:358.206448pt;}
._3c{width:373.651758pt;}
._93{width:380.287987pt;}
._65{width:383.530667pt;}
._96{width:387.839989pt;}
._8b{width:394.282667pt;}
._2c{width:406.400000pt;}
._20{width:407.722656pt;}
._92{width:412.629324pt;}
._3d{width:414.720000pt;}
._66{width:419.114667pt;}
._95{width:420.181325pt;}
._2f{width:421.894933pt;}
._6b{width:430.208000pt;}
._22{width:488.106657pt;}
._8f{width:504.917318pt;}
._2a{width:527.957333pt;}
._99{width:583.253324pt;}
._98{width:590.805325pt;}
._94{width:604.586657pt;}
._97{width:612.138659pt;}
._27{width:671.964267pt;}
._18{width:698.965306pt;}
._40{width:722.928005pt;}
._6e{width:724.352485pt;}
._34{width:749.738643pt;}
._31{width:761.599977pt;}
._1a{width:809.514639pt;}
._69{width:829.610667pt;}
._8d{width:832.853333pt;}
._6a{width:862.762667pt;}
._8e{width:866.005333pt;}
._2e{width:930.773310pt;}
._6c{width:1054.975991pt;}
._90{width:1058.901333pt;}
._9a{width:1087.061309pt;}
._9c{width:1088.403757pt;}
._26{width:1169.834643pt;}
._6d{width:1387.903952pt;}
._91{width:1392.512000pt;}
._8{width:1550.336064pt;}
.fs6{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:44.111465pt;}
.y4{bottom:44.112000pt;}
.y1{bottom:45.118398pt;}
.y11d{bottom:79.893261pt;}
.y11a{bottom:79.903936pt;}
.y119{bottom:79.914610pt;}
.y116{bottom:79.925284pt;}
.y115{bottom:79.935954pt;}
.y1c2{bottom:79.935972pt;}
.y114{bottom:79.946629pt;}
.y1c0{bottom:79.946643pt;}
.y113{bottom:79.957303pt;}
.y1be{bottom:79.957315pt;}
.y112{bottom:79.967977pt;}
.y1bc{bottom:79.967986pt;}
.y111{bottom:79.978651pt;}
.y1ba{bottom:79.978657pt;}
.y110{bottom:79.989326pt;}
.y1b8{bottom:79.989329pt;}
.y10f{bottom:80.000000pt;}
.y1f4{bottom:80.001729pt;}
.y23{bottom:80.010667pt;}
.y1aa{bottom:80.010671pt;}
.y1ac{bottom:80.021342pt;}
.y1ae{bottom:80.032013pt;}
.y1b0{bottom:80.042684pt;}
.y1b2{bottom:80.053355pt;}
.y1b4{bottom:80.064026pt;}
.y1b6{bottom:80.074697pt;}
.y87{bottom:80.708923pt;}
.y1f8{bottom:80.746668pt;}
.y275{bottom:81.012903pt;}
.yb6{bottom:81.068903pt;}
.y13d{bottom:84.455602pt;}
.y1f1{bottom:86.832926pt;}
.y20b{bottom:87.375570pt;}
.y1a9{bottom:88.042236pt;}
.y10e{bottom:88.176400pt;}
.yf4{bottom:88.192815pt;}
.y155{bottom:88.556925pt;}
.y9b{bottom:92.708903pt;}
.y274{bottom:93.674236pt;}
.y7b{bottom:95.375570pt;}
.y50{bottom:95.708903pt;}
.y101{bottom:95.708923pt;}
.y86{bottom:96.708923pt;}
.y19d{bottom:96.708944pt;}
.yb5{bottom:97.068903pt;}
.y22{bottom:99.338667pt;}
.yf3{bottom:100.854148pt;}
.y149{bottom:102.093592pt;}
.y1f0{bottom:102.832926pt;}
.y20a{bottom:103.375570pt;}
.y1a8{bottom:104.042236pt;}
.y10d{bottom:104.379067pt;}
.y154{bottom:104.556925pt;}
.y273{bottom:106.335570pt;}
.y9a{bottom:108.708903pt;}
.y7a{bottom:111.375570pt;}
.y4f{bottom:111.708903pt;}
.y100{bottom:111.708923pt;}
.y21{bottom:112.000000pt;}
.y244{bottom:112.650261pt;}
.y85{bottom:112.708923pt;}
.y19c{bottom:112.708944pt;}
.yb4{bottom:113.068903pt;}
.y1f3{bottom:113.260396pt;}
.yf2{bottom:113.515482pt;}
.y214{bottom:115.380933pt;}
.y148{bottom:118.296259pt;}
.y1ef{bottom:118.832926pt;}
.y272{bottom:118.996903pt;}
.y209{bottom:119.375570pt;}
.y1a7{bottom:120.042236pt;}
.y10c{bottom:120.507067pt;}
.y153{bottom:120.556925pt;}
.y1f5{bottom:121.260396pt;}
.y99{bottom:124.708903pt;}
.y243{bottom:125.311594pt;}
.yf1{bottom:126.176815pt;}
.y79{bottom:127.375570pt;}
.y4e{bottom:127.708903pt;}
.yff{bottom:127.708923pt;}
.y213{bottom:128.042267pt;}
.y84{bottom:128.708923pt;}
.y19b{bottom:128.708944pt;}
.yb3{bottom:129.068903pt;}
.y271{bottom:131.658236pt;}
.y147{bottom:134.424259pt;}
.y1ee{bottom:134.832926pt;}
.y1d6{bottom:134.882236pt;}
.y208{bottom:135.375570pt;}
.y152{bottom:136.556925pt;}
.y10b{bottom:136.635067pt;}
.y242{bottom:137.972927pt;}
.y98{bottom:140.708903pt;}
.y109{bottom:141.386267pt;}
.yf0{bottom:142.315482pt;}
.y78{bottom:143.375570pt;}
.y4d{bottom:143.708903pt;}
.yfe{bottom:143.708923pt;}
.y270{bottom:144.319570pt;}
.y83{bottom:144.708923pt;}
.y19a{bottom:144.708944pt;}
.yb2{bottom:145.068903pt;}
.y146{bottom:150.552259pt;}
.y241{bottom:150.634261pt;}
.y1ed{bottom:150.832926pt;}
.y1d5{bottom:150.882236pt;}
.y1a6{bottom:152.042236pt;}
.y151{bottom:152.556925pt;}
.y108{bottom:154.047600pt;}
.y11f{bottom:156.127926pt;}
.y97{bottom:156.708903pt;}
.y26f{bottom:156.980903pt;}
.yef{bottom:158.518148pt;}
.y77{bottom:159.375570pt;}
.y4c{bottom:159.708903pt;}
.yfd{bottom:159.708923pt;}
.y82{bottom:160.708923pt;}
.y199{bottom:160.708944pt;}
.yb1{bottom:161.068903pt;}
.y10a{bottom:161.531067pt;}
.y240{bottom:163.295594pt;}
.y11e{bottom:164.127926pt;}
.y11b{bottom:164.138601pt;}
.y117{bottom:164.159949pt;}
.y177{bottom:166.006382pt;}
.y145{bottom:166.680259pt;}
.y107{bottom:166.708933pt;}
.y1ec{bottom:166.832926pt;}
.y1d4{bottom:166.882236pt;}
.y207{bottom:167.375570pt;}
.y150{bottom:168.556925pt;}
.y26e{bottom:169.642236pt;}
.yee{bottom:171.179482pt;}
.y96{bottom:172.708903pt;}
.y76{bottom:175.375570pt;}
.y4b{bottom:175.708903pt;}
.yfc{bottom:175.708923pt;}
.y23f{bottom:175.956927pt;}
.y81{bottom:176.708923pt;}
.y198{bottom:176.708944pt;}
.yb0{bottom:177.068903pt;}
.y176{bottom:182.006382pt;}
.y26d{bottom:182.303570pt;}
.y144{bottom:182.808259pt;}
.y1eb{bottom:182.832926pt;}
.y1d3{bottom:182.882236pt;}
.yed{bottom:183.840815pt;}
.y14f{bottom:184.556925pt;}
.y23e{bottom:188.618261pt;}
.y95{bottom:188.708903pt;}
.y75{bottom:191.375570pt;}
.y4a{bottom:191.708903pt;}
.yfb{bottom:191.708923pt;}
.y80{bottom:192.708923pt;}
.y197{bottom:192.708944pt;}
.yaf{bottom:193.068903pt;}
.y26c{bottom:194.964903pt;}
.yec{bottom:196.502148pt;}
.y175{bottom:198.006382pt;}
.y1ea{bottom:198.832926pt;}
.y1d2{bottom:198.882236pt;}
.y143{bottom:198.936259pt;}
.y14e{bottom:200.556925pt;}
.y23d{bottom:201.279594pt;}
.y94{bottom:204.708903pt;}
.yd2{bottom:207.375570pt;}
.y26b{bottom:207.626236pt;}
.y49{bottom:207.708903pt;}
.yfa{bottom:207.708923pt;}
.y7f{bottom:208.708923pt;}
.y196{bottom:208.708944pt;}
.yae{bottom:209.068903pt;}
.yeb{bottom:209.163482pt;}
.y23c{bottom:213.940927pt;}
.y174{bottom:214.006382pt;}
.y1e9{bottom:214.832926pt;}
.y1d1{bottom:214.882236pt;}
.y142{bottom:215.064259pt;}
.y206{bottom:220.042236pt;}
.y26a{bottom:220.287570pt;}
.y93{bottom:220.708903pt;}
.ye6{bottom:221.803482pt;}
.yea{bottom:221.824815pt;}
.yd1{bottom:223.375570pt;}
.y48{bottom:223.708903pt;}
.yf9{bottom:223.708923pt;}
.y74{bottom:224.042236pt;}
.y106{bottom:224.708903pt;}
.y7e{bottom:224.708923pt;}
.y195{bottom:224.708944pt;}
.yad{bottom:225.068903pt;}
.y23b{bottom:226.602261pt;}
.y173{bottom:230.006382pt;}
.y1e8{bottom:230.832926pt;}
.y1d0{bottom:230.882236pt;}
.y141{bottom:231.192259pt;}
.y20{bottom:231.615194pt;}
.y14d{bottom:232.556925pt;}
.y269{bottom:232.948903pt;}
.ye5{bottom:234.464815pt;}
.ye9{bottom:234.486148pt;}
.y205{bottom:236.042236pt;}
.y92{bottom:236.708903pt;}
.y23a{bottom:239.263594pt;}
.yd0{bottom:239.375570pt;}
.y47{bottom:239.708903pt;}
.yf8{bottom:239.708923pt;}
.y73{bottom:240.042236pt;}
.y105{bottom:240.708903pt;}
.y194{bottom:240.708944pt;}
.yac{bottom:241.068903pt;}
.y268{bottom:245.610236pt;}
.y172{bottom:246.006382pt;}
.y1cf{bottom:246.882236pt;}
.ye4{bottom:247.126148pt;}
.ye8{bottom:247.147482pt;}
.y140{bottom:247.320259pt;}
.y239{bottom:251.924927pt;}
.y204{bottom:252.042236pt;}
.y91{bottom:252.708903pt;}
.ycf{bottom:255.375570pt;}
.y46{bottom:255.708903pt;}
.yf7{bottom:255.708923pt;}
.y72{bottom:256.042236pt;}
.y104{bottom:256.708903pt;}
.y7d{bottom:256.708923pt;}
.y193{bottom:256.708944pt;}
.yab{bottom:257.068903pt;}
.y267{bottom:258.271570pt;}
.ye3{bottom:259.787482pt;}
.ye7{bottom:259.808815pt;}
.y171{bottom:262.006382pt;}
.y1e7{bottom:262.832926pt;}
.y1ce{bottom:262.882236pt;}
.y13f{bottom:263.448259pt;}
.y1f{bottom:264.281860pt;}
.y238{bottom:264.586261pt;}
.y203{bottom:268.042236pt;}
.y90{bottom:268.708903pt;}
.y266{bottom:270.932903pt;}
.yce{bottom:271.375570pt;}
.y45{bottom:271.708903pt;}
.yf6{bottom:271.708923pt;}
.y71{bottom:272.042236pt;}
.y103{bottom:272.708903pt;}
.y192{bottom:272.708944pt;}
.yaa{bottom:273.068903pt;}
.ye2{bottom:275.915482pt;}
.y237{bottom:277.247594pt;}
.y170{bottom:278.006382pt;}
.y1cd{bottom:278.882236pt;}
.y1e{bottom:280.281860pt;}
.y265{bottom:283.594236pt;}
.y202{bottom:284.042236pt;}
.y8f{bottom:284.708903pt;}
.y14c{bottom:285.223592pt;}
.ycd{bottom:287.375570pt;}
.y44{bottom:287.708903pt;}
.y13e{bottom:288.344259pt;}
.y102{bottom:288.708903pt;}
.y7c{bottom:288.708923pt;}
.y191{bottom:288.708944pt;}
.ya9{bottom:289.068903pt;}
.y236{bottom:289.908927pt;}
.ye1{bottom:292.043482pt;}
.y16f{bottom:294.006382pt;}
.y1cc{bottom:294.882236pt;}
.y264{bottom:296.255570pt;}
.y201{bottom:300.042236pt;}
.y8e{bottom:300.708903pt;}
.y14b{bottom:301.223592pt;}
.y235{bottom:302.570261pt;}
.ycc{bottom:303.375570pt;}
.y43{bottom:303.708903pt;}
.yf5{bottom:303.708923pt;}
.ye0{bottom:304.704815pt;}
.y70{bottom:304.708903pt;}
.y190{bottom:304.708944pt;}
.ya8{bottom:305.068903pt;}
.y13c{bottom:307.348022pt;}
.y263{bottom:308.916903pt;}
.y16e{bottom:310.006382pt;}
.y1e6{bottom:310.833049pt;}
.y1cb{bottom:310.882236pt;}
.y1d{bottom:312.948527pt;}
.y234{bottom:315.231594pt;}
.y200{bottom:316.042236pt;}
.y8d{bottom:316.708903pt;}
.y14a{bottom:317.223592pt;}
.ydc{bottom:317.355482pt;}
.ydf{bottom:317.366148pt;}
.ycb{bottom:319.375570pt;}
.y42{bottom:319.708903pt;}
.y6f{bottom:320.708903pt;}
.y18f{bottom:320.708944pt;}
.ya7{bottom:321.068903pt;}
.y262{bottom:321.578236pt;}
.y16d{bottom:326.006382pt;}
.y1e5{bottom:326.833049pt;}
.y1ca{bottom:326.882236pt;}
.y233{bottom:327.892927pt;}
.y1c{bottom:328.948527pt;}
.ydb{bottom:330.016815pt;}
.yde{bottom:330.027482pt;}
.y1ff{bottom:332.042236pt;}
.y8c{bottom:332.708903pt;}
.y261{bottom:334.239570pt;}
.yca{bottom:335.375570pt;}
.y41{bottom:335.708903pt;}
.y6e{bottom:336.708903pt;}
.y18e{bottom:336.708944pt;}
.ya6{bottom:337.068903pt;}
.y232{bottom:340.554261pt;}
.y16c{bottom:342.006382pt;}
.yda{bottom:342.678148pt;}
.ydd{bottom:342.688815pt;}
.y1e4{bottom:342.833049pt;}
.y1c9{bottom:342.882236pt;}
.y1b{bottom:344.948527pt;}
.y260{bottom:346.900903pt;}
.y1fe{bottom:348.042236pt;}
.y8b{bottom:348.708903pt;}
.yc9{bottom:351.375570pt;}
.y40{bottom:351.708903pt;}
.y6d{bottom:352.708903pt;}
.y18d{bottom:352.708944pt;}
.ya5{bottom:353.068903pt;}
.y231{bottom:353.215594pt;}
.y16b{bottom:358.006382pt;}
.yd9{bottom:358.806148pt;}
.y1e3{bottom:358.833049pt;}
.y1c8{bottom:358.882236pt;}
.y25f{bottom:359.562236pt;}
.y1a{bottom:360.948527pt;}
.y158{bottom:361.757853pt;}
.y131{bottom:362.009481pt;}
.y1fd{bottom:364.042236pt;}
.y8a{bottom:364.708903pt;}
.y230{bottom:365.876927pt;}
.yc8{bottom:367.375570pt;}
.y3f{bottom:367.708903pt;}
.y1ab{bottom:368.298665pt;}
.y1ad{bottom:368.309336pt;}
.y1af{bottom:368.320007pt;}
.y1b1{bottom:368.330678pt;}
.y1b3{bottom:368.341349pt;}
.y1b5{bottom:368.352020pt;}
.y1b7{bottom:368.362691pt;}
.y6c{bottom:368.708903pt;}
.y18c{bottom:368.708944pt;}
.ya4{bottom:369.068903pt;}
.y1c3{bottom:371.999967pt;}
.y1c1{bottom:372.010639pt;}
.y1bf{bottom:372.021310pt;}
.y1bd{bottom:372.031981pt;}
.y1bb{bottom:372.042653pt;}
.y1b9{bottom:372.053324pt;}
.y25e{bottom:372.223570pt;}
.y16a{bottom:374.006382pt;}
.y1e2{bottom:374.833049pt;}
.y1c7{bottom:374.882236pt;}
.y19{bottom:376.948527pt;}
.y157{bottom:378.204020pt;}
.y130{bottom:378.455607pt;}
.y22f{bottom:378.538261pt;}
.y1fc{bottom:380.042236pt;}
.y89{bottom:380.708903pt;}
.yc7{bottom:383.375570pt;}
.yd8{bottom:383.702148pt;}
.y3e{bottom:383.708903pt;}
.y6b{bottom:384.708903pt;}
.y18b{bottom:384.708944pt;}
.y25d{bottom:384.884903pt;}
.ya3{bottom:385.068903pt;}
.y1e1{bottom:390.833049pt;}
.y1c6{bottom:390.882236pt;}
.y22e{bottom:391.199594pt;}
.y18{bottom:392.948527pt;}
.y1fb{bottom:396.042236pt;}
.y162{bottom:396.097985pt;}
.y13b{bottom:396.316010pt;}
.y1a5{bottom:396.708903pt;}
.y25c{bottom:397.546236pt;}
.yc6{bottom:399.375570pt;}
.y3d{bottom:399.708903pt;}
.y6a{bottom:400.708903pt;}
.y18a{bottom:400.708944pt;}
.ya2{bottom:401.068903pt;}
.yd7{bottom:402.707601pt;}
.y22d{bottom:403.860927pt;}
.y169{bottom:406.006382pt;}
.y1e0{bottom:406.833049pt;}
.y1c5{bottom:406.882236pt;}
.y17{bottom:408.948527pt;}
.y25b{bottom:410.207570pt;}
.y1fa{bottom:412.042236pt;}
.y161{bottom:412.300651pt;}
.y13a{bottom:412.524018pt;}
.y88{bottom:412.708903pt;}
.yc5{bottom:415.375570pt;}
.y3c{bottom:415.708903pt;}
.y22c{bottom:416.522261pt;}
.y69{bottom:416.708903pt;}
.y189{bottom:416.708944pt;}
.ya1{bottom:417.068903pt;}
.y1df{bottom:422.833049pt;}
.y25a{bottom:422.868903pt;}
.y16{bottom:424.948527pt;}
.y160{bottom:428.428651pt;}
.y139{bottom:428.668002pt;}
.y1a4{bottom:428.708903pt;}
.y22b{bottom:429.183594pt;}
.yc4{bottom:431.375570pt;}
.y3b{bottom:431.708903pt;}
.y68{bottom:432.708903pt;}
.y188{bottom:432.708944pt;}
.ya0{bottom:433.068903pt;}
.y259{bottom:435.530236pt;}
.y1de{bottom:438.833049pt;}
.y1c4{bottom:438.882236pt;}
.y15{bottom:440.948527pt;}
.y22a{bottom:441.844927pt;}
.y1f9{bottom:444.042236pt;}
.y15f{bottom:444.556651pt;}
.y1a3{bottom:444.708903pt;}
.y138{bottom:444.796002pt;}
.yc3{bottom:447.375570pt;}
.y3a{bottom:447.708903pt;}
.y258{bottom:448.191570pt;}
.y67{bottom:448.708903pt;}
.y187{bottom:448.708944pt;}
.y9f{bottom:449.068903pt;}
.y168{bottom:450.166382pt;}
.y229{bottom:454.506261pt;}
.y1dd{bottom:454.833049pt;}
.y14{bottom:456.948527pt;}
.y15e{bottom:460.684651pt;}
.y1a2{bottom:460.708903pt;}
.y257{bottom:460.852903pt;}
.y137{bottom:460.924002pt;}
.y285{bottom:461.548381pt;}
.y1f6{bottom:462.679056pt;}
.yc2{bottom:463.375570pt;}
.y39{bottom:463.708903pt;}
.y66{bottom:464.708903pt;}
.y186{bottom:464.708944pt;}
.y9e{bottom:465.068903pt;}
.y167{bottom:466.166382pt;}
.y228{bottom:467.167594pt;}
.y1f7{bottom:470.679056pt;}
.y1dc{bottom:470.833049pt;}
.y13{bottom:472.948527pt;}
.y256{bottom:473.514236pt;}
.y1a1{bottom:476.708903pt;}
.y15d{bottom:476.812651pt;}
.y136{bottom:477.064400pt;}
.yc1{bottom:479.375570pt;}
.y38{bottom:479.708903pt;}
.y227{bottom:479.828927pt;}
.y65{bottom:480.708903pt;}
.y284{bottom:480.923584pt;}
.y9d{bottom:481.068903pt;}
.y166{bottom:482.166382pt;}
.y255{bottom:486.175570pt;}
.y1db{bottom:486.833049pt;}
.y12{bottom:488.948527pt;}
.y226{bottom:492.490261pt;}
.y1a0{bottom:492.708903pt;}
.y15c{bottom:492.940651pt;}
.y135{bottom:493.192400pt;}
.yc0{bottom:495.375570pt;}
.y37{bottom:495.708903pt;}
.y283{bottom:496.037600pt;}
.y64{bottom:496.708903pt;}
.y185{bottom:496.708944pt;}
.y165{bottom:498.166382pt;}
.y254{bottom:498.836903pt;}
.y120{bottom:500.138587pt;}
.y11c{bottom:500.149261pt;}
.y118{bottom:500.170610pt;}
.yd6{bottom:502.195597pt;}
.y1da{bottom:502.833049pt;}
.y11{bottom:504.948527pt;}
.y225{bottom:505.151594pt;}
.y121{bottom:508.138587pt;}
.y19f{bottom:508.708903pt;}
.y15b{bottom:509.068651pt;}
.y134{bottom:509.320400pt;}
.ybf{bottom:511.375570pt;}
.y253{bottom:511.498236pt;}
.y36{bottom:511.708903pt;}
.y63{bottom:512.708903pt;}
.y282{bottom:512.965617pt;}
.y9c{bottom:513.068903pt;}
.y164{bottom:514.166382pt;}
.y224{bottom:517.812927pt;}
.y1d9{bottom:518.833049pt;}
.y10{bottom:520.948527pt;}
.y252{bottom:524.159570pt;}
.y212{bottom:524.708903pt;}
.y15a{bottom:525.196651pt;}
.y133{bottom:525.448400pt;}
.ybe{bottom:527.375570pt;}
.y35{bottom:527.708903pt;}
.y62{bottom:528.708903pt;}
.y163{bottom:530.166382pt;}
.y223{bottom:530.474261pt;}
.y281{bottom:532.340942pt;}
.y1d8{bottom:534.833049pt;}
.y251{bottom:536.820903pt;}
.yf{bottom:536.948527pt;}
.y19e{bottom:540.708903pt;}
.y222{bottom:543.135594pt;}
.ybd{bottom:543.375570pt;}
.y34{bottom:543.708903pt;}
.y61{bottom:544.708903pt;}
.y250{bottom:549.482236pt;}
.y159{bottom:550.092651pt;}
.y132{bottom:550.344400pt;}
.y1d7{bottom:550.833049pt;}
.ye{bottom:552.948527pt;}
.y280{bottom:553.576285pt;}
.y221{bottom:555.796927pt;}
.y211{bottom:556.708903pt;}
.ybc{bottom:559.375570pt;}
.y33{bottom:559.708903pt;}
.yd5{bottom:560.042236pt;}
.y60{bottom:560.708903pt;}
.y24f{bottom:562.143570pt;}
.y27f{bottom:566.237618pt;}
.y220{bottom:568.458261pt;}
.yd{bottom:568.948527pt;}
.y156{bottom:569.136422pt;}
.y12f{bottom:569.392421pt;}
.y210{bottom:572.708903pt;}
.y24e{bottom:574.804903pt;}
.ybb{bottom:575.375570pt;}
.y32{bottom:575.708903pt;}
.yd4{bottom:576.042236pt;}
.y5f{bottom:576.708903pt;}
.y178{bottom:579.813314pt;}
.y21f{bottom:581.119594pt;}
.y27e{bottom:585.608285pt;}
.y1f2{bottom:586.950277pt;}
.y24d{bottom:587.466236pt;}
.y20f{bottom:588.708903pt;}
.yba{bottom:591.375570pt;}
.y31{bottom:591.708903pt;}
.yd3{bottom:592.042236pt;}
.y5e{bottom:592.708903pt;}
.y21e{bottom:593.780927pt;}
.y184{bottom:597.451319pt;}
.y27d{bottom:598.269618pt;}
.y24c{bottom:600.127570pt;}
.y20e{bottom:604.708903pt;}
.y21d{bottom:606.442261pt;}
.yb9{bottom:607.375570pt;}
.y30{bottom:607.708903pt;}
.y5d{bottom:608.708903pt;}
.yc{bottom:612.053063pt;}
.y24b{bottom:612.788903pt;}
.y183{bottom:613.653986pt;}
.y27c{bottom:617.640285pt;}
.y20d{bottom:620.708903pt;}
.y2f{bottom:623.708903pt;}
.y5c{bottom:624.708903pt;}
.yb{bottom:624.714396pt;}
.y24a{bottom:625.450236pt;}
.y12e{bottom:627.408421pt;}
.y182{bottom:629.781986pt;}
.y27b{bottom:630.301618pt;}
.y21c{bottom:635.375610pt;}
.y249{bottom:638.111570pt;}
.y2e{bottom:639.708903pt;}
.yb8{bottom:640.042236pt;}
.y5b{bottom:640.708903pt;}
.y12d{bottom:643.611087pt;}
.y181{bottom:645.909986pt;}
.y27a{bottom:649.672285pt;}
.y248{bottom:650.772903pt;}
.y20c{bottom:652.708903pt;}
.y2d{bottom:655.708903pt;}
.yb7{bottom:656.042236pt;}
.y5a{bottom:656.708903pt;}
.ya{bottom:658.357463pt;}
.y12c{bottom:659.739087pt;}
.y180{bottom:662.037986pt;}
.y279{bottom:662.333618pt;}
.y247{bottom:663.434236pt;}
.y2c{bottom:671.708903pt;}
.y59{bottom:672.708903pt;}
.y9{bottom:674.357463pt;}
.y12b{bottom:675.867087pt;}
.y246{bottom:676.095570pt;}
.y17f{bottom:678.165986pt;}
.y278{bottom:685.042236pt;}
.y2b{bottom:687.708903pt;}
.y58{bottom:688.708903pt;}
.y245{bottom:688.756903pt;}
.y12a{bottom:691.995087pt;}
.y17e{bottom:694.293986pt;}
.y277{bottom:701.042236pt;}
.y21b{bottom:701.418236pt;}
.y2a{bottom:703.708903pt;}
.y57{bottom:704.708903pt;}
.y129{bottom:708.123087pt;}
.y17d{bottom:710.421986pt;}
.y8{bottom:712.348915pt;}
.y21a{bottom:714.079570pt;}
.y122{bottom:714.901254pt;}
.y29{bottom:719.708903pt;}
.y56{bottom:720.708903pt;}
.y128{bottom:724.251087pt;}
.y17c{bottom:726.549986pt;}
.y219{bottom:726.740903pt;}
.y7{bottom:732.351581pt;}
.y276{bottom:733.042236pt;}
.y28{bottom:735.708903pt;}
.y55{bottom:736.708903pt;}
.y218{bottom:739.402236pt;}
.y127{bottom:740.379087pt;}
.y17b{bottom:742.677986pt;}
.y27{bottom:751.708903pt;}
.y217{bottom:752.063570pt;}
.y6{bottom:752.354248pt;}
.y54{bottom:752.708903pt;}
.y126{bottom:756.507087pt;}
.y17a{bottom:758.805986pt;}
.y216{bottom:764.724903pt;}
.y26{bottom:767.708903pt;}
.y53{bottom:768.708903pt;}
.y125{bottom:772.635087pt;}
.y215{bottom:777.386236pt;}
.y179{bottom:783.701986pt;}
.y52{bottom:784.708903pt;}
.y124{bottom:790.047570pt;}
.y25{bottom:799.708903pt;}
.y5{bottom:799.809082pt;}
.y51{bottom:800.708903pt;}
.y123{bottom:802.708903pt;}
.y3{bottom:822.992964pt;}
.y2{bottom:835.654297pt;}
.h19{height:26.043733pt;}
.h13{height:26.581268pt;}
.h18{height:26.581325pt;}
.h1a{height:26.581431pt;}
.h2{height:30.080000pt;}
.hb{height:37.205333pt;}
.h3{height:37.376000pt;}
.h11{height:37.461333pt;}
.hf{height:37.802667pt;}
.h5{height:41.514667pt;}
.h15{height:43.046367pt;}
.h14{height:43.060873pt;}
.h16{height:43.089588pt;}
.h17{height:43.121002pt;}
.h10{height:43.648000pt;}
.h9{height:46.506667pt;}
.ha{height:47.253333pt;}
.he{height:47.680000pt;}
.h4{height:48.766452pt;}
.h8{height:52.746667pt;}
.hd{height:54.560000pt;}
.h7{height:57.658667pt;}
.hc{height:58.021333pt;}
.h6{height:61.429333pt;}
.h12{height:67.139404pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031469pt;}
.x5{left:69.996800pt;}
.x4{left:71.917603pt;}
.x6{left:83.151469pt;}
.x7a{left:86.932800pt;}
.x41{left:90.755737pt;}
.x8{left:92.763865pt;}
.x7{left:94.991469pt;}
.xb{left:100.763860pt;}
.xe{left:109.422404pt;}
.x2a{left:120.755737pt;}
.xf{left:128.429331pt;}
.x27{left:131.854268pt;}
.x42{left:134.658665pt;}
.x2b{left:139.762797pt;}
.x43{left:147.319998pt;}
.x5c{left:151.422404pt;}
.x10{left:153.325331pt;}
.x44{left:159.981331pt;}
.x2c{left:164.658797pt;}
.x11{left:169.453331pt;}
.x5d{left:170.429331pt;}
.x45{left:172.642665pt;}
.x28{left:176.500407pt;}
.x29{left:180.820129pt;}
.x12{left:185.581331pt;}
.x6f{left:187.362675pt;}
.x2d{left:189.981464pt;}
.x5e{left:195.325331pt;}
.x13{left:201.709331pt;}
.x2e{left:206.109464pt;}
.x5f{left:207.986665pt;}
.x70{left:212.258675pt;}
.x46{left:214.093331pt;}
.x14{left:217.837331pt;}
.x2f{left:218.770797pt;}
.x60{left:220.647998pt;}
.xd{left:222.998942pt;}
.x71{left:224.920008pt;}
.x47{left:226.754665pt;}
.x30{left:231.432130pt;}
.x15{left:233.965331pt;}
.x72{left:237.581342pt;}
.x48{left:239.415998pt;}
.x61{left:245.970665pt;}
.x31{left:247.560130pt;}
.x16{left:250.093331pt;}
.x49{left:252.077331pt;}
.x62{left:258.631998pt;}
.x32{left:260.221464pt;}
.x17{left:262.754665pt;}
.x4a{left:264.738665pt;}
.x63{left:271.293331pt;}
.x33{left:272.882797pt;}
.x73{left:275.565342pt;}
.x4b{left:277.399998pt;}
.x18{left:278.893331pt;}
.x64{left:283.954665pt;}
.x34{left:285.544130pt;}
.x74{left:288.226675pt;}
.x4c{left:293.527998pt;}
.x19{left:295.031998pt;}
.x65{left:296.615998pt;}
.x35{left:301.682797pt;}
.x4d{left:306.189331pt;}
.x1a{left:307.693331pt;}
.x66{left:312.743998pt;}
.x36{left:314.344130pt;}
.x4e{left:318.850665pt;}
.x1b{left:323.895998pt;}
.x67{left:325.405331pt;}
.x37{left:327.005464pt;}
.x9{left:332.998522pt;}
.x4f{left:334.978665pt;}
.x1c{left:336.557331pt;}
.xa{left:340.998522pt;}
.x38{left:343.133464pt;}
.x50{left:347.650665pt;}
.x1d{left:349.218665pt;}
.x68{left:354.194665pt;}
.x39{left:355.794797pt;}
.x75{left:356.769057pt;}
.x51{left:360.311998pt;}
.x1e{left:361.879998pt;}
.x69{left:366.855998pt;}
.x3a{left:368.456130pt;}
.xc{left:369.900269pt;}
.x52{left:372.973331pt;}
.x1f{left:374.541331pt;}
.x6a{left:379.517331pt;}
.x76{left:382.091723pt;}
.x3b{left:384.584130pt;}
.x53{left:385.634665pt;}
.x20{left:387.202665pt;}
.x77{left:394.753057pt;}
.x6b{left:395.719998pt;}
.x3c{left:397.245464pt;}
.x54{left:398.295998pt;}
.x21{left:399.863998pt;}
.x78{left:407.414390pt;}
.x6c{left:408.381331pt;}
.x3d{left:409.906797pt;}
.x55{left:410.957331pt;}
.x22{left:412.525331pt;}
.x79{left:420.075723pt;}
.x6d{left:421.042665pt;}
.x3e{left:422.568130pt;}
.x23{left:425.186665pt;}
.x56{left:427.085331pt;}
.x1{left:431.874146pt;}
.x6e{left:433.703998pt;}
.x24{left:437.847998pt;}
.x3f{left:438.770797pt;}
.x57{left:439.746665pt;}
.x25{left:450.509331pt;}
.x40{left:451.432130pt;}
.x58{left:452.407998pt;}
.x3{left:463.672526pt;}
.x59{left:468.610665pt;}
.x26{left:475.831998pt;}
.x5a{left:481.271998pt;}
.x5b{left:493.933331pt;}
}




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