
    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_c961a3d7138665f23a43fd7b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.918000;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_0e70708a42c32c1ac1611172.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_286433fc00044430b81d3b95.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_92b2c4435919908c4da846d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909000;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_7d2830a6bf83ac2c5821b190.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.907000;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:-16.983032px;}
.v1{vertical-align:-14.399963px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:16.983032px;}
.v2{vertical-align:19.979370px;}
.lsb{letter-spacing:-5.100000px;}
.ls4{letter-spacing:-3.009000px;}
.ls12{letter-spacing:-2.346000px;}
.ls17{letter-spacing:-2.244000px;}
.ls13{letter-spacing:-2.040000px;}
.ls10{letter-spacing:-1.938000px;}
.ls14{letter-spacing:-1.479000px;}
.lsa{letter-spacing:-1.071000px;}
.ls6{letter-spacing:-1.020000px;}
.lsf{letter-spacing:-0.867000px;}
.ls11{letter-spacing:-0.765000px;}
.ls8{letter-spacing:-0.459000px;}
.lse{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.255000px;}
.lsd{letter-spacing:-0.120000px;}
.ls9{letter-spacing:-0.102000px;}
.ls7{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000011px;}
.ls1{letter-spacing:0.014405px;}
.lsc{letter-spacing:0.102000px;}
.ls16{letter-spacing:0.357000px;}
.ls3{letter-spacing:0.459000px;}
.ls0{letter-spacing:53.011780px;}
.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;}
}
.ws18{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.000000px;}
.ws17{word-spacing:-13.209000px;}
.ws10f{word-spacing:-13.107000px;}
.wsa1{word-spacing:-12.852000px;}
.ws1{word-spacing:-12.750000px;}
.ws90{word-spacing:-12.648000px;}
.wsf3{word-spacing:-12.495000px;}
.ws6f{word-spacing:-12.291000px;}
.wsd2{word-spacing:-11.985000px;}
.wsc0{word-spacing:-11.883000px;}
.ws58{word-spacing:-11.730000px;}
.ws9e{word-spacing:-11.679000px;}
.wsec{word-spacing:-11.271000px;}
.wsc7{word-spacing:-10.812000px;}
.wse1{word-spacing:-10.710000px;}
.ws125{word-spacing:-10.506000px;}
.wsda{word-spacing:-10.404000px;}
.ws3e{word-spacing:-9.741000px;}
.ws70{word-spacing:-9.000000px;}
.ws71{word-spacing:-7.650000px;}
.wsbd{word-spacing:-5.100000px;}
.wse5{word-spacing:-4.560000px;}
.ws12c{word-spacing:-4.437000px;}
.ws8b{word-spacing:-3.960000px;}
.ws6c{word-spacing:-3.540000px;}
.ws52{word-spacing:-3.300000px;}
.wsa4{word-spacing:-3.240000px;}
.wsbe{word-spacing:-3.120000px;}
.ws1f{word-spacing:-3.000000px;}
.wscc{word-spacing:-2.940000px;}
.ws61{word-spacing:-2.880000px;}
.ws2b{word-spacing:-2.820000px;}
.ws16{word-spacing:-2.805000px;}
.wsf{word-spacing:-2.760000px;}
.ws36{word-spacing:-2.700000px;}
.wsca{word-spacing:-2.640000px;}
.ws84{word-spacing:-2.580000px;}
.wsd9{word-spacing:-2.550000px;}
.ws8e{word-spacing:-2.520000px;}
.ws40{word-spacing:-2.460000px;}
.ws119{word-spacing:-2.448000px;}
.wsce{word-spacing:-2.400000px;}
.wse9{word-spacing:-2.340000px;}
.ws15{word-spacing:-2.280000px;}
.ws4d{word-spacing:-2.220000px;}
.ws67{word-spacing:-2.160000px;}
.ws78{word-spacing:-2.142000px;}
.ws80{word-spacing:-2.100000px;}
.ws83{word-spacing:-2.040000px;}
.ws41{word-spacing:-1.980000px;}
.wsfd{word-spacing:-1.920000px;}
.ws5f{word-spacing:-1.860000px;}
.ws7{word-spacing:-1.800000px;}
.ws21{word-spacing:-1.740000px;}
.ws44{word-spacing:-1.680000px;}
.wsc2{word-spacing:-1.632000px;}
.ws108{word-spacing:-1.620000px;}
.ws2a{word-spacing:-1.500000px;}
.ws1b{word-spacing:-1.440000px;}
.ws77{word-spacing:-1.428000px;}
.ws47{word-spacing:-1.320000px;}
.ws2f{word-spacing:-1.260000px;}
.ws127{word-spacing:-1.224000px;}
.ws3a{word-spacing:-1.200000px;}
.ws13{word-spacing:-1.140000px;}
.ws39{word-spacing:-1.080000px;}
.ws110{word-spacing:-1.020000px;}
.wsea{word-spacing:-0.960000px;}
.ws134{word-spacing:-0.918000px;}
.wsb8{word-spacing:-0.900000px;}
.wsd1{word-spacing:-0.867000px;}
.ws20{word-spacing:-0.840000px;}
.ws86{word-spacing:-0.780000px;}
.ws5d{word-spacing:-0.720000px;}
.ws11a{word-spacing:-0.714000px;}
.ws121{word-spacing:-0.663000px;}
.ws48{word-spacing:-0.660000px;}
.ws7c{word-spacing:-0.612000px;}
.ws8c{word-spacing:-0.600000px;}
.ws1e{word-spacing:-0.540000px;}
.ws28{word-spacing:-0.480000px;}
.ws66{word-spacing:-0.420000px;}
.wsfa{word-spacing:-0.408000px;}
.ws2e{word-spacing:-0.360000px;}
.wsb0{word-spacing:-0.300000px;}
.ws19{word-spacing:-0.240000px;}
.wsb3{word-spacing:-0.180000px;}
.wsb9{word-spacing:-0.120000px;}
.wsab{word-spacing:-0.060000px;}
.ws111{word-spacing:-0.051000px;}
.ws2{word-spacing:0.000000px;}
.wse2{word-spacing:0.060000px;}
.wse8{word-spacing:0.120000px;}
.ws7d{word-spacing:0.153000px;}
.wsac{word-spacing:0.180000px;}
.ws42{word-spacing:0.240000px;}
.ws65{word-spacing:0.300000px;}
.ws129{word-spacing:0.357000px;}
.ws6b{word-spacing:0.360000px;}
.ws126{word-spacing:0.408000px;}
.ws3{word-spacing:0.420000px;}
.wsc1{word-spacing:0.459000px;}
.ws8{word-spacing:0.480000px;}
.ws26{word-spacing:0.540000px;}
.ws9{word-spacing:0.600000px;}
.wsb2{word-spacing:0.660000px;}
.ws11c{word-spacing:0.663000px;}
.ws24{word-spacing:0.720000px;}
.ws7b{word-spacing:0.765000px;}
.ws1d{word-spacing:0.780000px;}
.ws5{word-spacing:0.840000px;}
.ws12e{word-spacing:0.867000px;}
.ws37{word-spacing:0.900000px;}
.ws79{word-spacing:0.918000px;}
.wse{word-spacing:0.960000px;}
.ws60{word-spacing:1.020000px;}
.ws7e{word-spacing:1.080000px;}
.ws7a{word-spacing:1.122000px;}
.ws3b{word-spacing:1.140000px;}
.ws30{word-spacing:1.200000px;}
.ws12a{word-spacing:1.224000px;}
.ws4c{word-spacing:1.260000px;}
.ws9c{word-spacing:1.275000px;}
.wsa5{word-spacing:1.320000px;}
.ws33{word-spacing:1.380000px;}
.ws35{word-spacing:1.440000px;}
.ws38{word-spacing:1.500000px;}
.ws12{word-spacing:1.560000px;}
.ws55{word-spacing:1.620000px;}
.ws59{word-spacing:1.680000px;}
.wsd6{word-spacing:1.683000px;}
.wsa3{word-spacing:1.740000px;}
.wsf0{word-spacing:1.785000px;}
.wscf{word-spacing:1.800000px;}
.ws32{word-spacing:1.860000px;}
.wsfe{word-spacing:1.920000px;}
.ws6a{word-spacing:1.980000px;}
.ws49{word-spacing:2.040000px;}
.wsd0{word-spacing:2.100000px;}
.ws45{word-spacing:2.160000px;}
.wsa9{word-spacing:2.280000px;}
.ws97{word-spacing:2.295000px;}
.wsff{word-spacing:2.340000px;}
.ws50{word-spacing:2.400000px;}
.ws117{word-spacing:2.448000px;}
.ws85{word-spacing:2.460000px;}
.ws7f{word-spacing:2.520000px;}
.ws130{word-spacing:2.550000px;}
.ws10d{word-spacing:2.580000px;}
.wsbc{word-spacing:2.640000px;}
.ws4a{word-spacing:2.700000px;}
.wsa8{word-spacing:2.760000px;}
.ws11b{word-spacing:2.805000px;}
.wsdc{word-spacing:2.820000px;}
.ws43{word-spacing:2.880000px;}
.ws4{word-spacing:2.940000px;}
.wsd{word-spacing:3.000000px;}
.wsa{word-spacing:3.059994px;}
.wsaa{word-spacing:3.120000px;}
.wscd{word-spacing:3.180000px;}
.wsdf{word-spacing:3.300000px;}
.wsb1{word-spacing:3.360000px;}
.ws3d{word-spacing:3.420000px;}
.ws81{word-spacing:3.480000px;}
.wscb{word-spacing:3.660000px;}
.ws132{word-spacing:3.672000px;}
.wsaf{word-spacing:3.720000px;}
.ws116{word-spacing:3.825000px;}
.wsa7{word-spacing:3.840000px;}
.ws112{word-spacing:3.876000px;}
.ws10b{word-spacing:3.900000px;}
.ws74{word-spacing:4.020000px;}
.ws1a{word-spacing:4.080000px;}
.ws29{word-spacing:4.200000px;}
.ws89{word-spacing:4.259994px;}
.ws11f{word-spacing:4.284000px;}
.ws4f{word-spacing:4.320000px;}
.wsb7{word-spacing:4.380000px;}
.ws12f{word-spacing:4.385995px;}
.wsa6{word-spacing:4.440000px;}
.ws54{word-spacing:4.500000px;}
.ws105{word-spacing:4.560000px;}
.ws100{word-spacing:4.620000px;}
.ws53{word-spacing:4.680000px;}
.ws109{word-spacing:4.740000px;}
.wsc5{word-spacing:4.800000px;}
.ws31{word-spacing:4.860000px;}
.ws114{word-spacing:4.896000px;}
.ws72{word-spacing:4.920000px;}
.ws10{word-spacing:4.980000px;}
.ws5e{word-spacing:5.040000px;}
.wsb5{word-spacing:5.100000px;}
.ws56{word-spacing:5.159994px;}
.wsf2{word-spacing:5.220000px;}
.ws115{word-spacing:5.253000px;}
.ws8a{word-spacing:5.280000px;}
.wsbb{word-spacing:5.340000px;}
.ws128{word-spacing:5.355000px;}
.ws76{word-spacing:5.400000px;}
.ws12d{word-spacing:5.457000px;}
.wsb4{word-spacing:5.520000px;}
.wsad{word-spacing:5.580000px;}
.ws118{word-spacing:5.610000px;}
.wsfc{word-spacing:5.640000px;}
.ws133{word-spacing:5.661000px;}
.ws10c{word-spacing:5.700000px;}
.ws8f{word-spacing:5.760000px;}
.wsb{word-spacing:5.880000px;}
.ws34{word-spacing:6.000000px;}
.wsc3{word-spacing:6.060000px;}
.ws68{word-spacing:6.180000px;}
.ws82{word-spacing:6.300000px;}
.ws5b{word-spacing:6.360000px;}
.ws88{word-spacing:6.480000px;}
.ws75{word-spacing:6.540000px;}
.ws23{word-spacing:6.660000px;}
.ws5a{word-spacing:6.720000px;}
.ws106{word-spacing:6.780000px;}
.ws6{word-spacing:6.840000px;}
.ws2d{word-spacing:6.900000px;}
.ws120{word-spacing:6.936000px;}
.ws64{word-spacing:7.020000px;}
.ws87{word-spacing:7.140000px;}
.wsde{word-spacing:7.200000px;}
.wsfb{word-spacing:7.242000px;}
.ws102{word-spacing:7.260000px;}
.ws27{word-spacing:7.320000px;}
.ws57{word-spacing:7.440000px;}
.ws123{word-spacing:7.497000px;}
.ws51{word-spacing:7.500000px;}
.ws69{word-spacing:7.560000px;}
.ws8d{word-spacing:7.680000px;}
.wsc{word-spacing:7.800000px;}
.ws11{word-spacing:7.860000px;}
.ws25{word-spacing:7.920000px;}
.wseb{word-spacing:7.980000px;}
.ws62{word-spacing:8.040000px;}
.wsa2{word-spacing:8.160000px;}
.ws5c{word-spacing:8.220000px;}
.ws46{word-spacing:8.280000px;}
.wse4{word-spacing:8.340000px;}
.ws10a{word-spacing:8.460000px;}
.ws103{word-spacing:8.580000px;}
.ws1c{word-spacing:8.700000px;}
.ws6d{word-spacing:8.820000px;}
.ws107{word-spacing:8.940000px;}
.ws63{word-spacing:9.120000px;}
.ws4e{word-spacing:9.180000px;}
.ws104{word-spacing:9.300000px;}
.wsc4{word-spacing:9.540000px;}
.ws2c{word-spacing:9.660000px;}
.ws3c{word-spacing:9.960000px;}
.ws131{word-spacing:9.996000px;}
.wse3{word-spacing:10.140000px;}
.wsba{word-spacing:10.200000px;}
.ws113{word-spacing:10.251000px;}
.ws6e{word-spacing:10.560000px;}
.wse7{word-spacing:10.920000px;}
.ws101{word-spacing:11.040000px;}
.ws22{word-spacing:11.100000px;}
.wsc9{word-spacing:11.280000px;}
.ws122{word-spacing:11.373000px;}
.wsdd{word-spacing:11.460000px;}
.wsc8{word-spacing:13.080000px;}
.ws73{word-spacing:14.640000px;}
.ws10e{word-spacing:14.700000px;}
.ws4b{word-spacing:14.760000px;}
.ws124{word-spacing:15.096000px;}
.wsf1{word-spacing:16.218000px;}
.wsae{word-spacing:16.980000px;}
.wsdb{word-spacing:17.544000px;}
.wse6{word-spacing:17.940000px;}
.wsc6{word-spacing:18.960000px;}
.wsb6{word-spacing:19.260000px;}
.ws93{word-spacing:21.266824px;}
.wsa0{word-spacing:21.266968px;}
.wsd8{word-spacing:21.267151px;}
.ws3f{word-spacing:21.300000px;}
.ws9d{word-spacing:21.675000px;}
.ws12b{word-spacing:22.440000px;}
.ws14{word-spacing:24.120000px;}
.wsbf{word-spacing:24.180000px;}
.wse0{word-spacing:25.020000px;}
.ws11d{word-spacing:27.030000px;}
.ws11e{word-spacing:28.560000px;}
.ws94{word-spacing:46.766968px;}
.ws96{word-spacing:46.767151px;}
.wsd4{word-spacing:60.384037px;}
.wsd5{word-spacing:65.177921px;}
.ws99{word-spacing:72.266968px;}
.ws95{word-spacing:72.267148px;}
.ws9a{word-spacing:72.267151px;}
.wsd7{word-spacing:111.128906px;}
.ws9b{word-spacing:111.638946px;}
.wsef{word-spacing:114.443974px;}
.ws92{word-spacing:118.013927px;}
.wsee{word-spacing:119.085056px;}
.wsf4{word-spacing:196.298950px;}
.wsf6{word-spacing:209.048950px;}
.wsf8{word-spacing:209.049133px;}
.ws9f{word-spacing:307.479009px;}
.wsf9{word-spacing:392.189824px;}
.wsf7{word-spacing:392.189916px;}
.wsf5{word-spacing:392.190007px;}
.wsed{word-spacing:409.581024px;}
.wsd3{word-spacing:1042.593018px;}
.ws91{word-spacing:1164.992982px;}
.ws98{word-spacing:1301.412832px;}
._78{margin-left:-22.745996px;}
._b{margin-left:-18.000000px;}
._8{margin-left:-6.767932px;}
._1{margin-left:-4.800000px;}
._3{margin-left:-3.523200px;}
._0{margin-left:-1.929600px;}
._5{width:1.887000px;}
._9{width:3.000007px;}
._7{width:4.848000px;}
._72{width:6.018111px;}
._77{width:7.854825px;}
._5f{width:11.466000px;}
._5e{width:16.798492px;}
._4{width:17.826599px;}
._d{width:19.471790px;}
._2{width:20.575783px;}
._c{width:22.297819px;}
._2f{width:39.975627px;}
._2d{width:43.290590px;}
._52{width:48.709122px;}
._a{width:54.000000px;}
._1a{width:59.516876px;}
._38{width:60.944824px;}
._6{width:72.000000px;}
._34{width:73.388947px;}
._57{width:76.398013px;}
._2e{width:85.119115px;}
._18{width:86.445190px;}
._5b{width:93.380885px;}
._e{width:97.818015px;}
._12{width:98.888947px;}
._5d{width:100.022827px;}
._56{width:107.754582px;}
._3d{width:109.649963px;}
._26{width:111.945007px;}
._3e{width:119.850037px;}
._37{width:121.890015px;}
._27{width:123.420026px;}
._1b{width:125.306856px;}
._6e{width:127.499973px;}
._1f{width:132.039009px;}
._45{width:135.149963px;}
._23{width:138.368917px;}
._46{width:145.350037px;}
._17{width:147.390015px;}
._58{width:149.548318px;}
._48{width:150.602801px;}
._22{width:156.714609px;}
._28{width:159.221738px;}
._20{width:168.963009px;}
._1e{width:172.890015px;}
._14{width:174.674928px;}
._5a{width:178.550977px;}
._5c{width:180.548302px;}
._6f{width:186.966064px;}
._f{width:192.524981px;}
._2a{width:194.462917px;}
._2b{width:200.072958px;}
._24{width:201.092929px;}
._3c{width:204.765015px;}
._40{width:206.142151px;}
._35{width:209.405914px;}
._33{width:212.414978px;}
._55{width:214.658922px;}
._3b{width:217.311035px;}
._36{width:220.269104px;}
._2c{width:224.697609px;}
._39{width:228.531023px;}
._44{width:230.265015px;}
._47{width:231.641968px;}
._15{width:234.039001px;}
._29{width:235.968609px;}
._11{width:237.915070px;}
._43{width:242.811035px;}
._16{width:245.768921px;}
._49{width:247.656013px;}
._3f{width:250.103943px;}
._4d{width:253.680067px;}
._30{width:255.858609px;}
._25{width:259.539093px;}
._13{width:262.497069px;}
._21{width:263.873917px;}
._67{width:264.945064px;}
._1d{width:271.269105px;}
._4c{width:272.331613px;}
._4e{width:275.604037px;}
._10{width:279.429009px;}
._32{width:281.373009px;}
._69{width:282.423614px;}
._4a{width:284.580013px;}
._62{width:286.314056px;}
._1c{width:287.997070px;}
._6b{width:290.445064px;}
._6a{width:296.105973px;}
._66{width:307.173157px;}
._51{width:310.079922px;}
._65{width:311.813965px;}
._4f{width:315.741013px;}
._6d{width:320.679573px;}
._31{width:321.912009px;}
._63{width:330.072064px;}
._60{width:332.570956px;}
._68{width:334.356064px;}
._73{width:336.446964px;}
._54{width:340.314520px;}
._41{width:349.706922px;}
._50{width:351.585613px;}
._4b{width:353.991013px;}
._6c{width:358.376973px;}
._70{width:360.569964px;}
._61{width:375.411064px;}
._53{width:378.012013px;}
._3a{width:395.045922px;}
._59{width:396.989922px;}
._74{width:401.676009px;}
._71{width:406.623007px;}
._19{width:438.540636px;}
._42{width:590.163637px;}
._76{width:597.108032px;}
._75{width:650.088609px;}
._64{width:674.568506px;}
.fc1{color:rgb(0,0,250);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:30.600000px;}
.fs5{font-size:36.000000px;}
.fs3{font-size:45.000000px;}
.fs0{font-size:51.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:70.092754px;}
.y149{bottom:82.739702px;}
.y25{bottom:85.086752px;}
.y1{bottom:100.063801px;}
.y24{bottom:100.080749px;}
.y148{bottom:100.739697px;}
.yca{bottom:103.645083px;}
.y8e{bottom:103.728000px;}
.yfc{bottom:103.734146px;}
.y7c{bottom:103.739685px;}
.ydb{bottom:103.739719px;}
.y89{bottom:103.758144px;}
.y12c{bottom:103.843074px;}
.y1cd{bottom:106.949684px;}
.yc6{bottom:107.929064px;}
.y99{bottom:107.933294px;}
.y98{bottom:107.946054px;}
.yb6{bottom:107.959749px;}
.y96{bottom:107.971540px;}
.y111{bottom:107.979598px;}
.ya2{bottom:107.980016px;}
.ybe{bottom:107.980036px;}
.y122{bottom:107.986934px;}
.y106{bottom:107.990297px;}
.y124{bottom:107.999682px;}
.y108{bottom:108.015772px;}
.y109{bottom:108.028509px;}
.y128{bottom:108.050620px;}
.y144{bottom:110.062031px;}
.y52{bottom:113.690735px;}
.y1a0{bottom:116.274602px;}
.y176{bottom:116.337457px;}
.y147{bottom:118.739697px;}
.y88{bottom:118.752148px;}
.yf9{bottom:118.801220px;}
.y7b{bottom:121.739685px;}
.yda{bottom:121.739719px;}
.y1cc{bottom:121.943687px;}
.yfb{bottom:122.973896px;}
.y143{bottom:128.062031px;}
.y51{bottom:131.690735px;}
.y87{bottom:133.746150px;}
.y19f{bottom:134.274602px;}
.y175{bottom:134.337457px;}
.yf8{bottom:136.801220px;}
.y1cb{bottom:136.937679px;}
.y7a{bottom:139.739685px;}
.yd9{bottom:139.739719px;}
.y23{bottom:143.749504px;}
.y142{bottom:146.062031px;}
.y1ed{bottom:148.542000px;}
.y86{bottom:148.740154px;}
.y50{bottom:149.690735px;}
.y1ca{bottom:151.931683px;}
.y19e{bottom:152.274602px;}
.y174{bottom:152.337457px;}
.yf7{bottom:154.801220px;}
.y79{bottom:157.739685px;}
.yd8{bottom:157.739719px;}
.y22{bottom:158.743507px;}
.y146{bottom:160.739697px;}
.y1ec{bottom:163.536003px;}
.y85{bottom:163.734146px;}
.y141{bottom:164.062031px;}
.y1c9{bottom:166.925686px;}
.y4f{bottom:167.690735px;}
.y19d{bottom:170.274602px;}
.y173{bottom:170.337457px;}
.yf6{bottom:172.801220px;}
.y21{bottom:173.737499px;}
.y78{bottom:175.739685px;}
.yd7{bottom:175.739719px;}
.y1eb{bottom:178.529995px;}
.y84{bottom:178.728149px;}
.y145{bottom:181.739697px;}
.y1c8{bottom:181.919689px;}
.y140{bottom:182.062031px;}
.y4e{bottom:185.690735px;}
.y19c{bottom:188.274602px;}
.y172{bottom:188.337457px;}
.y20{bottom:188.731502px;}
.yf5{bottom:190.801220px;}
.yb3{bottom:193.494401px;}
.yb2{bottom:193.507150px;}
.yb1{bottom:193.519876px;}
.y1ea{bottom:193.524010px;}
.yaf{bottom:193.532625px;}
.y9f{bottom:193.536840px;}
.yad{bottom:193.545351px;}
.y9e{bottom:193.549589px;}
.yc9{bottom:193.558096px;}
.yac{bottom:193.558099px;}
.y9d{bottom:193.562315px;}
.yc8{bottom:193.570822px;}
.yab{bottom:193.570825px;}
.y9c{bottom:193.575063px;}
.yc7{bottom:193.583571px;}
.ya9{bottom:193.583574px;}
.y9a{bottom:193.587789px;}
.ya7{bottom:193.596300px;}
.yc5{bottom:193.596319px;}
.ya6{bottom:193.609048px;}
.yc3{bottom:193.609068px;}
.y97{bottom:193.613309px;}
.ya4{bottom:193.621774px;}
.yc1{bottom:193.621794px;}
.yb4{bottom:193.627016px;}
.ya3{bottom:193.634523px;}
.ybf{bottom:193.634543px;}
.y77{bottom:193.739685px;}
.yd6{bottom:193.739708px;}
.y1c7{bottom:196.913681px;}
.y83{bottom:197.973907px;}
.y13f{bottom:200.062042px;}
.y121{bottom:202.630191px;}
.y112{bottom:202.648341px;}
.y107{bottom:202.659029px;}
.y114{bottom:202.661067px;}
.y125{bottom:202.668391px;}
.y115{bottom:202.673793px;}
.y126{bottom:202.681140px;}
.y10a{bottom:202.684503px;}
.y117{bottom:202.686541px;}
.y127{bottom:202.693888px;}
.y10c{bottom:202.697229px;}
.y119{bottom:202.699267px;}
.y129{bottom:202.706614px;}
.y10d{bottom:202.709978px;}
.y11a{bottom:202.712016px;}
.y12a{bottom:202.719363px;}
.y10e{bottom:202.722704px;}
.y11b{bottom:202.724742px;}
.y12b{bottom:202.732089px;}
.y10f{bottom:202.735453px;}
.y11d{bottom:202.737490px;}
.y11e{bottom:202.750216px;}
.y11f{bottom:202.762965px;}
.y120{bottom:202.775691px;}
.y4d{bottom:203.690735px;}
.y19b{bottom:206.274602px;}
.y171{bottom:206.337469px;}
.y1e9{bottom:208.517990px;}
.yf4{bottom:208.801208px;}
.y76{bottom:211.739685px;}
.yd5{bottom:211.739708px;}
.y1c6{bottom:211.907684px;}
.y13e{bottom:218.062042px;}
.y4c{bottom:221.690735px;}
.y1e8{bottom:223.511993px;}
.y19a{bottom:224.274602px;}
.yf3{bottom:226.801208px;}
.y1c5{bottom:226.901688px;}
.y75{bottom:229.739685px;}
.yd4{bottom:229.739708px;}
.y8c{bottom:233.201706px;}
.y13d{bottom:236.062042px;}
.y1e7{bottom:238.505997px;}
.y4b{bottom:239.690735px;}
.y1c4{bottom:241.895691px;}
.y199{bottom:242.274602px;}
.y170{bottom:243.584714px;}
.yf2{bottom:244.801208px;}
.y1f{bottom:247.712543px;}
.y74{bottom:247.739685px;}
.yd3{bottom:247.739708px;}
.y8b{bottom:248.195709px;}
.y1e6{bottom:253.500000px;}
.y13c{bottom:254.062042px;}
.y1c3{bottom:256.889694px;}
.y4a{bottom:257.690735px;}
.y198{bottom:260.274602px;}
.yf1{bottom:262.801208px;}
.y8a{bottom:263.195709px;}
.y16f{bottom:263.589467px;}
.y73{bottom:265.739685px;}
.yd2{bottom:265.739708px;}
.y1e5{bottom:268.494003px;}
.y1c2{bottom:271.883675px;}
.y13b{bottom:272.062042px;}
.y49{bottom:275.690735px;}
.y197{bottom:278.274602px;}
.yf0{bottom:280.801208px;}
.y16e{bottom:281.337469px;}
.y1e4{bottom:283.488007px;}
.y1e{bottom:283.712543px;}
.y72{bottom:283.739685px;}
.yd1{bottom:283.739708px;}
.y1c1{bottom:286.877678px;}
.yb0{bottom:289.591127px;}
.yae{bottom:289.603853px;}
.yaa{bottom:289.642076px;}
.y9b{bottom:289.646291px;}
.ya8{bottom:289.654802px;}
.yc4{bottom:289.667570px;}
.ya5{bottom:289.680276px;}
.yc2{bottom:289.680296px;}
.yb5{bottom:289.685518px;}
.yc0{bottom:289.693022px;}
.yb7{bottom:289.697218px;}
.y8f{bottom:289.697309px;}
.y13a{bottom:290.062042px;}
.y48{bottom:293.690735px;}
.y196{bottom:296.274602px;}
.y1e3{bottom:298.488007px;}
.yef{bottom:298.801208px;}
.y16d{bottom:299.145482px;}
.y1d{bottom:301.712543px;}
.y71{bottom:301.739685px;}
.yd0{bottom:301.739708px;}
.y1c0{bottom:301.871681px;}
.yfa{bottom:307.739708px;}
.y139{bottom:308.062042px;}
.y47{bottom:311.690735px;}
.y1e2{bottom:313.598740px;}
.y195{bottom:314.274602px;}
.yee{bottom:316.801208px;}
.y1bf{bottom:316.865685px;}
.y16c{bottom:316.906232px;}
.y1c{bottom:319.712543px;}
.y70{bottom:319.739685px;}
.ycf{bottom:319.739708px;}
.y138{bottom:326.062042px;}
.yfe{bottom:327.596308px;}
.y123{bottom:327.605670px;}
.y113{bottom:327.611071px;}
.y116{bottom:327.636546px;}
.y10b{bottom:327.647257px;}
.y118{bottom:327.649295px;}
.y11c{bottom:327.687495px;}
.y46{bottom:329.690735px;}
.y1be{bottom:331.859688px;}
.y16b{bottom:331.900236px;}
.y194{bottom:332.274602px;}
.yed{bottom:334.801208px;}
.y1b{bottom:337.712543px;}
.y6f{bottom:337.739685px;}
.yce{bottom:337.739708px;}
.y137{bottom:344.062042px;}
.y1bd{bottom:346.853691px;}
.y45{bottom:347.690735px;}
.y16a{bottom:349.648237px;}
.y193{bottom:350.274602px;}
.yec{bottom:352.801208px;}
.y1a{bottom:355.712543px;}
.y6e{bottom:355.739685px;}
.y1bc{bottom:361.847694px;}
.y136{bottom:362.062042px;}
.y44{bottom:365.690735px;}
.y169{bottom:367.396238px;}
.y192{bottom:368.274602px;}
.yeb{bottom:370.801208px;}
.yb8{bottom:371.488462px;}
.y90{bottom:371.488554px;}
.y19{bottom:373.712543px;}
.y6d{bottom:373.739685px;}
.y1bb{bottom:376.841675px;}
.ycd{bottom:379.739708px;}
.y135{bottom:380.062042px;}
.y43{bottom:383.690735px;}
.y168{bottom:385.144239px;}
.y191{bottom:386.274602px;}
.yea{bottom:388.801208px;}
.y18{bottom:391.712543px;}
.y6c{bottom:391.739685px;}
.y1ba{bottom:391.835678px;}
.y134{bottom:398.062042px;}
.y42{bottom:401.690735px;}
.y167{bottom:402.892240px;}
.yff{bottom:404.236566px;}
.y190{bottom:404.274602px;}
.ye9{bottom:406.801208px;}
.y1b9{bottom:406.829681px;}
.y17{bottom:409.712543px;}
.y6b{bottom:409.739685px;}
.y133{bottom:416.062042px;}
.yb9{bottom:418.523222px;}
.y91{bottom:418.523313px;}
.y41{bottom:419.690735px;}
.y166{bottom:420.653013px;}
.y1b8{bottom:421.823685px;}
.y18f{bottom:422.274602px;}
.ye8{bottom:424.801208px;}
.y16{bottom:427.712543px;}
.y6a{bottom:427.739685px;}
.y82{bottom:433.739685px;}
.y132{bottom:434.062042px;}
.y165{bottom:435.646970px;}
.y1b7{bottom:436.817688px;}
.y40{bottom:437.690735px;}
.y18e{bottom:440.274602px;}
.ye7{bottom:442.801208px;}
.y15{bottom:445.712543px;}
.y69{bottom:445.739685px;}
.ycc{bottom:451.739685px;}
.y1b6{bottom:451.811691px;}
.y131{bottom:452.062042px;}
.y164{bottom:453.407743px;}
.y3f{bottom:455.690735px;}
.ye6{bottom:460.801208px;}
.y14{bottom:463.712543px;}
.y68{bottom:463.739685px;}
.y1b5{bottom:466.805695px;}
.y163{bottom:468.401746px;}
.y130{bottom:470.062042px;}
.y3e{bottom:473.690735px;}
.y100{bottom:477.740320px;}
.ye5{bottom:478.801208px;}
.y13{bottom:481.712543px;}
.y67{bottom:481.739685px;}
.y1b4{bottom:481.799698px;}
.y162{bottom:486.149747px;}
.y1a2{bottom:487.739685px;}
.y18d{bottom:490.114217px;}
.y3d{bottom:491.690735px;}
.y1b3{bottom:496.793700px;}
.ye4{bottom:496.801208px;}
.y12{bottom:499.712543px;}
.y66{bottom:499.739685px;}
.y161{bottom:503.897748px;}
.yba{bottom:506.459990px;}
.y92{bottom:506.460081px;}
.y18c{bottom:509.353978px;}
.y3c{bottom:509.690735px;}
.y1b2{bottom:511.787704px;}
.ye3{bottom:514.801208px;}
.y11{bottom:517.712543px;}
.y65{bottom:517.739685px;}
.y18b{bottom:520.185490px;}
.y160{bottom:521.658475px;}
.y12f{bottom:522.471313px;}
.y1b1{bottom:526.781708px;}
.y101{bottom:527.465311px;}
.y3b{bottom:527.690735px;}
.ye2{bottom:532.801208px;}
.y10{bottom:535.712543px;}
.y64{bottom:535.739685px;}
.y15f{bottom:536.652479px;}
.y12e{bottom:537.471313px;}
.y18a{bottom:540.190266px;}
.y1b0{bottom:541.775665px;}
.y3a{bottom:545.690735px;}
.ye1{bottom:550.801208px;}
.yf{bottom:553.712543px;}
.y63{bottom:553.739685px;}
.y15e{bottom:554.413251px;}
.y1af{bottom:556.769669px;}
.y189{bottom:557.938267px;}
.y39{bottom:563.690735px;}
.ye0{bottom:568.801208px;}
.y15d{bottom:569.407255px;}
.ye{bottom:571.712543px;}
.y62{bottom:571.739685px;}
.y1ae{bottom:571.763672px;}
.y188{bottom:575.686269px;}
.y38{bottom:581.690735px;}
.y1ad{bottom:586.757675px;}
.ydf{bottom:586.801208px;}
.y15c{bottom:587.155256px;}
.yd{bottom:589.712543px;}
.y61{bottom:589.739685px;}
.y187{bottom:593.434270px;}
.y37{bottom:599.690735px;}
.y1ac{bottom:601.751678px;}
.y15b{bottom:604.915983px;}
.yc{bottom:607.712543px;}
.y81{bottom:607.739685px;}
.ybb{bottom:609.632963px;}
.y93{bottom:609.633054px;}
.y186{bottom:611.182271px;}
.y1ab{bottom:616.745682px;}
.y102{bottom:616.932062px;}
.y36{bottom:617.690735px;}
.y15a{bottom:619.909986px;}
.yde{bottom:624.052185px;}
.yb{bottom:625.712543px;}
.y80{bottom:625.739685px;}
.y1e1{bottom:627.388962px;}
.y185{bottom:628.930272px;}
.y60{bottom:631.739685px;}
.y35{bottom:635.690735px;}
.y159{bottom:637.657987px;}
.ydd{bottom:639.046188px;}
.y1e0{bottom:642.382965px;}
.ya{bottom:643.712543px;}
.y7f{bottom:643.739685px;}
.y184{bottom:646.678227px;}
.y1aa{bottom:646.763672px;}
.y34{bottom:653.690735px;}
.ydc{bottom:654.046188px;}
.y158{bottom:655.405988px;}
.y1df{bottom:657.376968px;}
.y9{bottom:661.712543px;}
.y7e{bottom:661.739685px;}
.y1a9{bottom:661.757675px;}
.y183{bottom:664.426228px;}
.y33{bottom:671.690735px;}
.y1de{bottom:672.370972px;}
.y157{bottom:673.153989px;}
.y1a8{bottom:676.751678px;}
.y8{bottom:679.712543px;}
.y7d{bottom:679.739685px;}
.y182{bottom:682.174229px;}
.y1dd{bottom:687.364975px;}
.y32{bottom:689.690735px;}
.ybc{bottom:690.455214px;}
.y94{bottom:690.455305px;}
.y156{bottom:690.901990px;}
.y1a7{bottom:691.745682px;}
.y7{bottom:697.712543px;}
.y5f{bottom:697.739685px;}
.y181{bottom:699.922230px;}
.y103{bottom:701.770548px;}
.y1dc{bottom:702.358978px;}
.y1a6{bottom:706.739685px;}
.y31{bottom:707.690735px;}
.y155{bottom:708.649991px;}
.y5e{bottom:715.739685px;}
.y1db{bottom:717.352982px;}
.y180{bottom:717.670232px;}
.y1a5{bottom:721.745682px;}
.y30{bottom:725.690735px;}
.y154{bottom:726.410764px;}
.y1da{bottom:732.346985px;}
.y5d{bottom:733.739685px;}
.y17f{bottom:735.418233px;}
.y1a4{bottom:736.739685px;}
.y153{bottom:741.404722px;}
.y2f{bottom:743.690735px;}
.y1d9{bottom:747.340988px;}
.y5c{bottom:751.739685px;}
.y17e{bottom:753.166234px;}
.y6{bottom:753.992573px;}
.y152{bottom:759.152723px;}
.y2e{bottom:761.690735px;}
.y1d8{bottom:762.334991px;}
.y5b{bottom:769.739685px;}
.y17d{bottom:770.914235px;}
.ybd{bottom:774.209990px;}
.y95{bottom:774.210081px;}
.y104{bottom:775.618585px;}
.y1a3{bottom:775.739685px;}
.y151{bottom:776.900770px;}
.y1d7{bottom:777.328949px;}
.y2d{bottom:779.690735px;}
.y5a{bottom:787.739685px;}
.y17c{bottom:788.662282px;}
.y1d6{bottom:792.322998px;}
.y150{bottom:794.648725px;}
.y2c{bottom:797.690735px;}
.y59{bottom:805.739685px;}
.y17b{bottom:806.410237px;}
.y1d5{bottom:807.316956px;}
.y5{bottom:807.992527px;}
.y14f{bottom:813.620740px;}
.y2b{bottom:815.690735px;}
.y1d4{bottom:822.311005px;}
.y105{bottom:822.525812px;}
.y58{bottom:823.739685px;}
.y17a{bottom:824.158284px;}
.y14e{bottom:828.614698px;}
.y2a{bottom:833.690735px;}
.y4{bottom:834.992527px;}
.y1d3{bottom:837.304962px;}
.y57{bottom:841.739685px;}
.y179{bottom:841.906239px;}
.y14d{bottom:845.878248px;}
.ya0{bottom:847.207822px;}
.y29{bottom:851.690735px;}
.y1d2{bottom:852.299011px;}
.y56{bottom:859.739685px;}
.y178{bottom:860.878255px;}
.y3{bottom:861.992527px;}
.y14c{bottom:867.267517px;}
.y1d1{bottom:867.292969px;}
.y55{bottom:877.739685px;}
.y14b{bottom:882.261475px;}
.y1d0{bottom:882.287018px;}
.y2{bottom:888.992527px;}
.y28{bottom:893.690735px;}
.y54{bottom:895.739685px;}
.y14a{bottom:897.255524px;}
.y1cf{bottom:897.280975px;}
.y12d{bottom:935.479525px;}
.y110{bottom:935.479547px;}
.y53{bottom:935.479797px;}
.y177{bottom:935.479810px;}
.ycb{bottom:935.479964px;}
.y27{bottom:935.479980px;}
.y1a1{bottom:935.480000px;}
.ya1{bottom:935.480039px;}
.yfd{bottom:935.480438px;}
.y8d{bottom:935.484467px;}
.y1ce{bottom:935.686890px;}
.h7{height:21.420000px;}
.h2{height:35.700000px;}
.h8{height:35.723804px;}
.h9{height:38.403032px;}
.h4{height:42.000000px;}
.h6{height:45.179370px;}
.h5{height:50.400000px;}
.h3{height:67.200000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x2{left:80.787462px;}
.x60{left:85.029252px;}
.x14{left:89.495699px;}
.x30{left:94.287432px;}
.x3{left:98.787462px;}
.x2c{left:106.150936px;}
.x48{left:107.787441px;}
.x31{left:109.281436px;}
.x2d{left:123.414429px;}
.x49{left:125.535443px;}
.x32{left:127.042185px;}
.x2e{left:138.408431px;}
.x4a{left:140.529446px;}
.x33{left:142.036189px;}
.x2f{left:153.402435px;}
.x4b{left:158.290196px;}
.x34{left:159.796938px;}
.x15{left:172.680141px;}
.x35{left:174.790930px;}
.x4c{left:176.038197px;}
.x16{left:187.674133px;}
.x17{left:190.428142px;}
.x36{left:192.551680px;}
.x18{left:205.422146px;}
.x4d{left:208.792938px;}
.x37{left:210.299681px;}
.x19{left:220.416149px;}
.x4e{left:223.786942px;}
.x38{left:225.293683px;}
.x39{left:228.047682px;}
.x1a{left:238.164127px;}
.x4f{left:241.547692px;}
.x3a{left:245.795683px;}
.x1b{left:255.912128px;}
.x50{left:259.295693px;}
.x3b{left:265.800437px;}
.x1c{left:270.906132px;}
.x51{left:277.043693px;}
.x1d{left:288.666881px;}
.x52{left:292.037697px;}
.x1e{left:303.660885px;}
.x5{left:309.833405px;}
.x61{left:314.004589px;}
.x3c{left:320.113495px;}
.x1f{left:321.421635px;}
.x6{left:324.833405px;}
.x53{left:327.546448px;}
.x3d{left:335.113495px;}
.x20{left:339.169636px;}
.x7{left:346.216638px;}
.x21{left:356.917637px;}
.x8{left:363.480142px;}
.x22{left:371.911640px;}
.x3e{left:373.760222px;}
.x9{left:378.474145px;}
.x54{left:380.812950px;}
.x23{left:386.905643px;}
.x3f{left:388.754225px;}
.xa{left:393.468148px;}
.x55{left:398.560951px;}
.x24{left:404.653644px;}
.xb{left:412.032159px;}
.x56{left:413.554955px;}
.x25{left:419.647648px;}
.x40{left:422.337737px;}
.x4{left:428.966400px;}
.x57{left:431.315682px;}
.x26{left:437.408375px;}
.x41{left:440.085738px;}
.xc{left:447.528161px;}
.x58{left:449.063683px;}
.x27{left:455.156376px;}
.x42{left:457.833739px;}
.xd{left:465.276162px;}
.x59{left:466.811684px;}
.x28{left:472.904377px;}
.x43{left:475.581740px;}
.xe{left:480.270166px;}
.x5a{left:484.559685px;}
.x29{left:490.705662px;}
.xf{left:498.030893px;}
.x5b{left:502.307686px;}
.x2a{left:505.699665px;}
.x44{left:508.336470px;}
.x10{left:515.778894px;}
.x5c{left:517.301689px;}
.x5d{left:520.055687px;}
.x2b{left:523.460392px;}
.x45{left:526.084471px;}
.x11{left:533.526894px;}
.x5e{left:537.803688px;}
.x46{left:543.832472px;}
.x12{left:551.274896px;}
.x5f{left:557.808464px;}
.x1{left:559.142729px;}
.x47{left:561.580473px;}
.x13{left:578.267709px;}
@media print{
.v3{vertical-align:-15.096029pt;}
.v1{vertical-align:-12.799967pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.096029pt;}
.v2{vertical-align:17.759440pt;}
.lsb{letter-spacing:-4.533333pt;}
.ls4{letter-spacing:-2.674667pt;}
.ls12{letter-spacing:-2.085333pt;}
.ls17{letter-spacing:-1.994667pt;}
.ls13{letter-spacing:-1.813333pt;}
.ls10{letter-spacing:-1.722667pt;}
.ls14{letter-spacing:-1.314667pt;}
.lsa{letter-spacing:-0.952000pt;}
.ls6{letter-spacing:-0.906667pt;}
.lsf{letter-spacing:-0.770667pt;}
.ls11{letter-spacing:-0.680000pt;}
.ls8{letter-spacing:-0.408000pt;}
.lse{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.226667pt;}
.lsd{letter-spacing:-0.106667pt;}
.ls9{letter-spacing:-0.090667pt;}
.ls7{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000010pt;}
.ls1{letter-spacing:0.012804pt;}
.lsc{letter-spacing:0.090667pt;}
.ls16{letter-spacing:0.317333pt;}
.ls3{letter-spacing:0.408000pt;}
.ls0{letter-spacing:47.121582pt;}
.ws18{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws17{word-spacing:-11.741333pt;}
.ws10f{word-spacing:-11.650667pt;}
.wsa1{word-spacing:-11.424000pt;}
.ws1{word-spacing:-11.333333pt;}
.ws90{word-spacing:-11.242667pt;}
.wsf3{word-spacing:-11.106667pt;}
.ws6f{word-spacing:-10.925333pt;}
.wsd2{word-spacing:-10.653333pt;}
.wsc0{word-spacing:-10.562667pt;}
.ws58{word-spacing:-10.426667pt;}
.ws9e{word-spacing:-10.381333pt;}
.wsec{word-spacing:-10.018667pt;}
.wsc7{word-spacing:-9.610667pt;}
.wse1{word-spacing:-9.520000pt;}
.ws125{word-spacing:-9.338667pt;}
.wsda{word-spacing:-9.248000pt;}
.ws3e{word-spacing:-8.658667pt;}
.ws70{word-spacing:-8.000000pt;}
.ws71{word-spacing:-6.800000pt;}
.wsbd{word-spacing:-4.533333pt;}
.wse5{word-spacing:-4.053333pt;}
.ws12c{word-spacing:-3.944000pt;}
.ws8b{word-spacing:-3.520000pt;}
.ws6c{word-spacing:-3.146667pt;}
.ws52{word-spacing:-2.933333pt;}
.wsa4{word-spacing:-2.880000pt;}
.wsbe{word-spacing:-2.773333pt;}
.ws1f{word-spacing:-2.666667pt;}
.wscc{word-spacing:-2.613333pt;}
.ws61{word-spacing:-2.560000pt;}
.ws2b{word-spacing:-2.506667pt;}
.ws16{word-spacing:-2.493333pt;}
.wsf{word-spacing:-2.453333pt;}
.ws36{word-spacing:-2.400000pt;}
.wsca{word-spacing:-2.346667pt;}
.ws84{word-spacing:-2.293333pt;}
.wsd9{word-spacing:-2.266667pt;}
.ws8e{word-spacing:-2.240000pt;}
.ws40{word-spacing:-2.186667pt;}
.ws119{word-spacing:-2.176000pt;}
.wsce{word-spacing:-2.133333pt;}
.wse9{word-spacing:-2.080000pt;}
.ws15{word-spacing:-2.026667pt;}
.ws4d{word-spacing:-1.973333pt;}
.ws67{word-spacing:-1.920000pt;}
.ws78{word-spacing:-1.904000pt;}
.ws80{word-spacing:-1.866667pt;}
.ws83{word-spacing:-1.813333pt;}
.ws41{word-spacing:-1.760000pt;}
.wsfd{word-spacing:-1.706667pt;}
.ws5f{word-spacing:-1.653333pt;}
.ws7{word-spacing:-1.600000pt;}
.ws21{word-spacing:-1.546667pt;}
.ws44{word-spacing:-1.493333pt;}
.wsc2{word-spacing:-1.450667pt;}
.ws108{word-spacing:-1.440000pt;}
.ws2a{word-spacing:-1.333333pt;}
.ws1b{word-spacing:-1.280000pt;}
.ws77{word-spacing:-1.269333pt;}
.ws47{word-spacing:-1.173333pt;}
.ws2f{word-spacing:-1.120000pt;}
.ws127{word-spacing:-1.088000pt;}
.ws3a{word-spacing:-1.066667pt;}
.ws13{word-spacing:-1.013333pt;}
.ws39{word-spacing:-0.960000pt;}
.ws110{word-spacing:-0.906667pt;}
.wsea{word-spacing:-0.853333pt;}
.ws134{word-spacing:-0.816000pt;}
.wsb8{word-spacing:-0.800000pt;}
.wsd1{word-spacing:-0.770667pt;}
.ws20{word-spacing:-0.746667pt;}
.ws86{word-spacing:-0.693333pt;}
.ws5d{word-spacing:-0.640000pt;}
.ws11a{word-spacing:-0.634667pt;}
.ws121{word-spacing:-0.589333pt;}
.ws48{word-spacing:-0.586667pt;}
.ws7c{word-spacing:-0.544000pt;}
.ws8c{word-spacing:-0.533333pt;}
.ws1e{word-spacing:-0.480000pt;}
.ws28{word-spacing:-0.426667pt;}
.ws66{word-spacing:-0.373333pt;}
.wsfa{word-spacing:-0.362667pt;}
.ws2e{word-spacing:-0.320000pt;}
.wsb0{word-spacing:-0.266667pt;}
.ws19{word-spacing:-0.213333pt;}
.wsb3{word-spacing:-0.160000pt;}
.wsb9{word-spacing:-0.106667pt;}
.wsab{word-spacing:-0.053333pt;}
.ws111{word-spacing:-0.045333pt;}
.ws2{word-spacing:0.000000pt;}
.wse2{word-spacing:0.053333pt;}
.wse8{word-spacing:0.106667pt;}
.ws7d{word-spacing:0.136000pt;}
.wsac{word-spacing:0.160000pt;}
.ws42{word-spacing:0.213333pt;}
.ws65{word-spacing:0.266667pt;}
.ws129{word-spacing:0.317333pt;}
.ws6b{word-spacing:0.320000pt;}
.ws126{word-spacing:0.362667pt;}
.ws3{word-spacing:0.373333pt;}
.wsc1{word-spacing:0.408000pt;}
.ws8{word-spacing:0.426667pt;}
.ws26{word-spacing:0.480000pt;}
.ws9{word-spacing:0.533333pt;}
.wsb2{word-spacing:0.586667pt;}
.ws11c{word-spacing:0.589333pt;}
.ws24{word-spacing:0.640000pt;}
.ws7b{word-spacing:0.680000pt;}
.ws1d{word-spacing:0.693333pt;}
.ws5{word-spacing:0.746667pt;}
.ws12e{word-spacing:0.770667pt;}
.ws37{word-spacing:0.800000pt;}
.ws79{word-spacing:0.816000pt;}
.wse{word-spacing:0.853333pt;}
.ws60{word-spacing:0.906667pt;}
.ws7e{word-spacing:0.960000pt;}
.ws7a{word-spacing:0.997333pt;}
.ws3b{word-spacing:1.013333pt;}
.ws30{word-spacing:1.066667pt;}
.ws12a{word-spacing:1.088000pt;}
.ws4c{word-spacing:1.120000pt;}
.ws9c{word-spacing:1.133333pt;}
.wsa5{word-spacing:1.173333pt;}
.ws33{word-spacing:1.226667pt;}
.ws35{word-spacing:1.280000pt;}
.ws38{word-spacing:1.333333pt;}
.ws12{word-spacing:1.386667pt;}
.ws55{word-spacing:1.440000pt;}
.ws59{word-spacing:1.493333pt;}
.wsd6{word-spacing:1.496000pt;}
.wsa3{word-spacing:1.546667pt;}
.wsf0{word-spacing:1.586667pt;}
.wscf{word-spacing:1.600000pt;}
.ws32{word-spacing:1.653333pt;}
.wsfe{word-spacing:1.706667pt;}
.ws6a{word-spacing:1.760000pt;}
.ws49{word-spacing:1.813333pt;}
.wsd0{word-spacing:1.866667pt;}
.ws45{word-spacing:1.920000pt;}
.wsa9{word-spacing:2.026667pt;}
.ws97{word-spacing:2.040000pt;}
.wsff{word-spacing:2.080000pt;}
.ws50{word-spacing:2.133333pt;}
.ws117{word-spacing:2.176000pt;}
.ws85{word-spacing:2.186667pt;}
.ws7f{word-spacing:2.240000pt;}
.ws130{word-spacing:2.266667pt;}
.ws10d{word-spacing:2.293333pt;}
.wsbc{word-spacing:2.346667pt;}
.ws4a{word-spacing:2.400000pt;}
.wsa8{word-spacing:2.453333pt;}
.ws11b{word-spacing:2.493333pt;}
.wsdc{word-spacing:2.506667pt;}
.ws43{word-spacing:2.560000pt;}
.ws4{word-spacing:2.613333pt;}
.wsd{word-spacing:2.666667pt;}
.wsa{word-spacing:2.719995pt;}
.wsaa{word-spacing:2.773333pt;}
.wscd{word-spacing:2.826667pt;}
.wsdf{word-spacing:2.933333pt;}
.wsb1{word-spacing:2.986667pt;}
.ws3d{word-spacing:3.040000pt;}
.ws81{word-spacing:3.093333pt;}
.wscb{word-spacing:3.253333pt;}
.ws132{word-spacing:3.264000pt;}
.wsaf{word-spacing:3.306667pt;}
.ws116{word-spacing:3.400000pt;}
.wsa7{word-spacing:3.413333pt;}
.ws112{word-spacing:3.445333pt;}
.ws10b{word-spacing:3.466667pt;}
.ws74{word-spacing:3.573333pt;}
.ws1a{word-spacing:3.626667pt;}
.ws29{word-spacing:3.733333pt;}
.ws89{word-spacing:3.786661pt;}
.ws11f{word-spacing:3.808000pt;}
.ws4f{word-spacing:3.840000pt;}
.wsb7{word-spacing:3.893333pt;}
.ws12f{word-spacing:3.898662pt;}
.wsa6{word-spacing:3.946667pt;}
.ws54{word-spacing:4.000000pt;}
.ws105{word-spacing:4.053333pt;}
.ws100{word-spacing:4.106667pt;}
.ws53{word-spacing:4.160000pt;}
.ws109{word-spacing:4.213333pt;}
.wsc5{word-spacing:4.266667pt;}
.ws31{word-spacing:4.320000pt;}
.ws114{word-spacing:4.352000pt;}
.ws72{word-spacing:4.373333pt;}
.ws10{word-spacing:4.426667pt;}
.ws5e{word-spacing:4.480000pt;}
.wsb5{word-spacing:4.533333pt;}
.ws56{word-spacing:4.586661pt;}
.wsf2{word-spacing:4.640000pt;}
.ws115{word-spacing:4.669333pt;}
.ws8a{word-spacing:4.693333pt;}
.wsbb{word-spacing:4.746667pt;}
.ws128{word-spacing:4.760000pt;}
.ws76{word-spacing:4.800000pt;}
.ws12d{word-spacing:4.850667pt;}
.wsb4{word-spacing:4.906667pt;}
.wsad{word-spacing:4.960000pt;}
.ws118{word-spacing:4.986667pt;}
.wsfc{word-spacing:5.013333pt;}
.ws133{word-spacing:5.032000pt;}
.ws10c{word-spacing:5.066667pt;}
.ws8f{word-spacing:5.120000pt;}
.wsb{word-spacing:5.226667pt;}
.ws34{word-spacing:5.333333pt;}
.wsc3{word-spacing:5.386667pt;}
.ws68{word-spacing:5.493333pt;}
.ws82{word-spacing:5.600000pt;}
.ws5b{word-spacing:5.653333pt;}
.ws88{word-spacing:5.760000pt;}
.ws75{word-spacing:5.813333pt;}
.ws23{word-spacing:5.920000pt;}
.ws5a{word-spacing:5.973333pt;}
.ws106{word-spacing:6.026667pt;}
.ws6{word-spacing:6.080000pt;}
.ws2d{word-spacing:6.133333pt;}
.ws120{word-spacing:6.165333pt;}
.ws64{word-spacing:6.240000pt;}
.ws87{word-spacing:6.346667pt;}
.wsde{word-spacing:6.400000pt;}
.wsfb{word-spacing:6.437333pt;}
.ws102{word-spacing:6.453333pt;}
.ws27{word-spacing:6.506667pt;}
.ws57{word-spacing:6.613333pt;}
.ws123{word-spacing:6.664000pt;}
.ws51{word-spacing:6.666667pt;}
.ws69{word-spacing:6.720000pt;}
.ws8d{word-spacing:6.826667pt;}
.wsc{word-spacing:6.933333pt;}
.ws11{word-spacing:6.986667pt;}
.ws25{word-spacing:7.040000pt;}
.wseb{word-spacing:7.093333pt;}
.ws62{word-spacing:7.146667pt;}
.wsa2{word-spacing:7.253333pt;}
.ws5c{word-spacing:7.306667pt;}
.ws46{word-spacing:7.360000pt;}
.wse4{word-spacing:7.413333pt;}
.ws10a{word-spacing:7.520000pt;}
.ws103{word-spacing:7.626667pt;}
.ws1c{word-spacing:7.733333pt;}
.ws6d{word-spacing:7.840000pt;}
.ws107{word-spacing:7.946667pt;}
.ws63{word-spacing:8.106667pt;}
.ws4e{word-spacing:8.160000pt;}
.ws104{word-spacing:8.266667pt;}
.wsc4{word-spacing:8.480000pt;}
.ws2c{word-spacing:8.586667pt;}
.ws3c{word-spacing:8.853333pt;}
.ws131{word-spacing:8.885333pt;}
.wse3{word-spacing:9.013333pt;}
.wsba{word-spacing:9.066667pt;}
.ws113{word-spacing:9.112000pt;}
.ws6e{word-spacing:9.386667pt;}
.wse7{word-spacing:9.706667pt;}
.ws101{word-spacing:9.813333pt;}
.ws22{word-spacing:9.866667pt;}
.wsc9{word-spacing:10.026667pt;}
.ws122{word-spacing:10.109333pt;}
.wsdd{word-spacing:10.186667pt;}
.wsc8{word-spacing:11.626667pt;}
.ws73{word-spacing:13.013333pt;}
.ws10e{word-spacing:13.066667pt;}
.ws4b{word-spacing:13.120000pt;}
.ws124{word-spacing:13.418667pt;}
.wsf1{word-spacing:14.416000pt;}
.wsae{word-spacing:15.093333pt;}
.wsdb{word-spacing:15.594667pt;}
.wse6{word-spacing:15.946667pt;}
.wsc6{word-spacing:16.853333pt;}
.wsb6{word-spacing:17.120000pt;}
.ws93{word-spacing:18.903844pt;}
.wsa0{word-spacing:18.903971pt;}
.wsd8{word-spacing:18.904134pt;}
.ws3f{word-spacing:18.933333pt;}
.ws9d{word-spacing:19.266667pt;}
.ws12b{word-spacing:19.946667pt;}
.ws14{word-spacing:21.440000pt;}
.wsbf{word-spacing:21.493333pt;}
.wse0{word-spacing:22.240000pt;}
.ws11d{word-spacing:24.026667pt;}
.ws11e{word-spacing:25.386667pt;}
.ws94{word-spacing:41.570638pt;}
.ws96{word-spacing:41.570801pt;}
.wsd4{word-spacing:53.674699pt;}
.wsd5{word-spacing:57.935930pt;}
.ws99{word-spacing:64.237305pt;}
.ws95{word-spacing:64.237465pt;}
.ws9a{word-spacing:64.237467pt;}
.wsd7{word-spacing:98.781250pt;}
.ws9b{word-spacing:99.234619pt;}
.wsef{word-spacing:101.727977pt;}
.ws92{word-spacing:104.901268pt;}
.wsee{word-spacing:105.853383pt;}
.wsf4{word-spacing:174.487956pt;}
.wsf6{word-spacing:185.821289pt;}
.wsf8{word-spacing:185.821452pt;}
.ws9f{word-spacing:273.314674pt;}
.wsf9{word-spacing:348.613177pt;}
.wsf7{word-spacing:348.613258pt;}
.wsf5{word-spacing:348.613340pt;}
.wsed{word-spacing:364.072021pt;}
.wsd3{word-spacing:926.749349pt;}
.ws91{word-spacing:1035.549318pt;}
.ws98{word-spacing:1156.811406pt;}
._78{margin-left:-20.218663pt;}
._b{margin-left:-16.000000pt;}
._8{margin-left:-6.015940pt;}
._1{margin-left:-4.266667pt;}
._3{margin-left:-3.131733pt;}
._0{margin-left:-1.715200pt;}
._5{width:1.677333pt;}
._9{width:2.666673pt;}
._7{width:4.309333pt;}
._72{width:5.349432pt;}
._77{width:6.982067pt;}
._5f{width:10.192000pt;}
._5e{width:14.931993pt;}
._4{width:15.845866pt;}
._d{width:17.308257pt;}
._2{width:18.289585pt;}
._c{width:19.820283pt;}
._2f{width:35.533890pt;}
._2d{width:38.480524pt;}
._52{width:43.296997pt;}
._a{width:48.000000pt;}
._1a{width:52.903890pt;}
._38{width:54.173177pt;}
._6{width:64.000000pt;}
._34{width:65.234619pt;}
._57{width:67.909345pt;}
._2e{width:75.661436pt;}
._18{width:76.840169pt;}
._5b{width:83.005231pt;}
._e{width:86.949346pt;}
._12{width:87.901286pt;}
._5d{width:88.909180pt;}
._56{width:95.781850pt;}
._3d{width:97.466634pt;}
._26{width:99.506673pt;}
._3e{width:106.533366pt;}
._37{width:108.346680pt;}
._27{width:109.706690pt;}
._1b{width:111.383872pt;}
._6e{width:113.333309pt;}
._1f{width:117.368008pt;}
._45{width:120.133301pt;}
._23{width:122.994593pt;}
._46{width:129.200033pt;}
._17{width:131.013346pt;}
._58{width:132.931838pt;}
._48{width:133.869156pt;}
._22{width:139.301874pt;}
._28{width:141.530434pt;}
._20{width:150.189341pt;}
._1e{width:153.680013pt;}
._14{width:155.266603pt;}
._5a{width:158.711980pt;}
._5c{width:160.487379pt;}
._6f{width:166.192057pt;}
._f{width:171.133316pt;}
._2a{width:172.855926pt;}
._2b{width:177.842630pt;}
._24{width:178.749270pt;}
._3c{width:182.013346pt;}
._40{width:183.237467pt;}
._35{width:186.138590pt;}
._33{width:188.813314pt;}
._55{width:190.807930pt;}
._3b{width:193.165365pt;}
._36{width:195.794759pt;}
._2c{width:199.731208pt;}
._39{width:203.138687pt;}
._44{width:204.680013pt;}
._47{width:205.903971pt;}
._15{width:208.034668pt;}
._29{width:209.749874pt;}
._11{width:211.480062pt;}
._43{width:215.832031pt;}
._16{width:218.461263pt;}
._49{width:220.138678pt;}
._3f{width:222.314616pt;}
._4d{width:225.493393pt;}
._30{width:227.429874pt;}
._25{width:230.701416pt;}
._13{width:233.330728pt;}
._21{width:234.554593pt;}
._67{width:235.506724pt;}
._1d{width:241.128094pt;}
._4c{width:242.072545pt;}
._4e{width:244.981366pt;}
._10{width:248.381341pt;}
._32{width:250.109341pt;}
._69{width:251.043212pt;}
._4a{width:252.960012pt;}
._62{width:254.501383pt;}
._1c{width:255.997396pt;}
._6b{width:258.173391pt;}
._6a{width:263.205309pt;}
._66{width:273.042806pt;}
._51{width:275.626597pt;}
._65{width:277.167969pt;}
._4f{width:280.658678pt;}
._6d{width:285.048509pt;}
._31{width:286.144008pt;}
._63{width:293.397391pt;}
._60{width:295.618627pt;}
._68{width:297.205391pt;}
._73{width:299.063968pt;}
._54{width:302.501795pt;}
._41{width:310.850597pt;}
._50{width:312.520545pt;}
._4b{width:314.658678pt;}
._6c{width:318.557309pt;}
._70{width:320.506634pt;}
._61{width:333.698724pt;}
._53{width:336.010678pt;}
._3a{width:351.151930pt;}
._59{width:352.879930pt;}
._74{width:357.045342pt;}
._71{width:361.442673pt;}
._19{width:389.813898pt;}
._42{width:524.589899pt;}
._76{width:530.762695pt;}
._75{width:577.856542pt;}
._64{width:599.616450pt;}
.fs6{font-size:27.200000pt;}
.fs5{font-size:32.000000pt;}
.fs3{font-size:40.000000pt;}
.fs0{font-size:45.333333pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:62.304670pt;}
.y149{bottom:73.546402pt;}
.y25{bottom:75.632668pt;}
.y1{bottom:88.945601pt;}
.y24{bottom:88.960666pt;}
.y148{bottom:89.546397pt;}
.yca{bottom:92.128962pt;}
.y8e{bottom:92.202667pt;}
.yfc{bottom:92.208130pt;}
.y7c{bottom:92.213053pt;}
.ydb{bottom:92.213084pt;}
.y89{bottom:92.229462pt;}
.y12c{bottom:92.304954pt;}
.y1cd{bottom:95.066386pt;}
.yc6{bottom:95.936946pt;}
.y99{bottom:95.940706pt;}
.y98{bottom:95.952048pt;}
.yb6{bottom:95.964221pt;}
.y96{bottom:95.974702pt;}
.y111{bottom:95.981865pt;}
.ya2{bottom:95.982237pt;}
.ybe{bottom:95.982254pt;}
.y122{bottom:95.988385pt;}
.y106{bottom:95.991375pt;}
.y124{bottom:95.999718pt;}
.y108{bottom:96.014019pt;}
.y109{bottom:96.025341pt;}
.y128{bottom:96.044995pt;}
.y144{bottom:97.832916pt;}
.y52{bottom:101.058431pt;}
.y1a0{bottom:103.355201pt;}
.y176{bottom:103.411073pt;}
.y147{bottom:105.546397pt;}
.y88{bottom:105.557465pt;}
.yf9{bottom:105.601084pt;}
.y7b{bottom:108.213053pt;}
.yda{bottom:108.213084pt;}
.y1cc{bottom:108.394389pt;}
.yfb{bottom:109.310130pt;}
.y143{bottom:113.832916pt;}
.y51{bottom:117.058431pt;}
.y87{bottom:118.885467pt;}
.y19f{bottom:119.355201pt;}
.y175{bottom:119.411073pt;}
.yf8{bottom:121.601084pt;}
.y1cb{bottom:121.722382pt;}
.y7a{bottom:124.213053pt;}
.yd9{bottom:124.213084pt;}
.y23{bottom:127.777337pt;}
.y142{bottom:129.832916pt;}
.y1ed{bottom:132.037333pt;}
.y86{bottom:132.213470pt;}
.y50{bottom:133.058431pt;}
.y1ca{bottom:135.050385pt;}
.y19e{bottom:135.355201pt;}
.y174{bottom:135.411073pt;}
.yf7{bottom:137.601084pt;}
.y79{bottom:140.213053pt;}
.yd8{bottom:140.213084pt;}
.y22{bottom:141.105340pt;}
.y146{bottom:142.879730pt;}
.y1ec{bottom:145.365336pt;}
.y85{bottom:145.541463pt;}
.y141{bottom:145.832916pt;}
.y1c9{bottom:148.378387pt;}
.y4f{bottom:149.058431pt;}
.y19d{bottom:151.355201pt;}
.y173{bottom:151.411073pt;}
.yf6{bottom:153.601084pt;}
.y21{bottom:154.433332pt;}
.y78{bottom:156.213053pt;}
.yd7{bottom:156.213084pt;}
.y1eb{bottom:158.693329pt;}
.y84{bottom:158.869466pt;}
.y145{bottom:161.546397pt;}
.y1c8{bottom:161.706390pt;}
.y140{bottom:161.832916pt;}
.y4e{bottom:165.058431pt;}
.y19c{bottom:167.355201pt;}
.y172{bottom:167.411073pt;}
.y20{bottom:167.761335pt;}
.yf5{bottom:169.601084pt;}
.yb3{bottom:171.995024pt;}
.yb2{bottom:172.006356pt;}
.yb1{bottom:172.017668pt;}
.y1ea{bottom:172.021342pt;}
.yaf{bottom:172.029000pt;}
.y9f{bottom:172.032747pt;}
.yad{bottom:172.040312pt;}
.y9e{bottom:172.044079pt;}
.yc9{bottom:172.051641pt;}
.yac{bottom:172.051644pt;}
.y9d{bottom:172.055391pt;}
.yc8{bottom:172.062953pt;}
.yab{bottom:172.062956pt;}
.y9c{bottom:172.066723pt;}
.yc7{bottom:172.074285pt;}
.ya9{bottom:172.074288pt;}
.y9a{bottom:172.078035pt;}
.ya7{bottom:172.085600pt;}
.yc5{bottom:172.085617pt;}
.ya6{bottom:172.096932pt;}
.yc3{bottom:172.096950pt;}
.y97{bottom:172.100719pt;}
.ya4{bottom:172.108244pt;}
.yc1{bottom:172.108261pt;}
.yb4{bottom:172.112903pt;}
.ya3{bottom:172.119576pt;}
.ybf{bottom:172.119594pt;}
.y77{bottom:172.213053pt;}
.yd6{bottom:172.213074pt;}
.y1c7{bottom:175.034383pt;}
.y83{bottom:175.976807pt;}
.y13f{bottom:177.832926pt;}
.y121{bottom:180.115725pt;}
.y112{bottom:180.131859pt;}
.y107{bottom:180.141359pt;}
.y114{bottom:180.143171pt;}
.y125{bottom:180.149681pt;}
.y115{bottom:180.154482pt;}
.y126{bottom:180.161013pt;}
.y10a{bottom:180.164003pt;}
.y117{bottom:180.165815pt;}
.y127{bottom:180.172345pt;}
.y10c{bottom:180.175315pt;}
.y119{bottom:180.177126pt;}
.y129{bottom:180.183657pt;}
.y10d{bottom:180.186647pt;}
.y11a{bottom:180.188459pt;}
.y12a{bottom:180.194989pt;}
.y10e{bottom:180.197959pt;}
.y11b{bottom:180.199770pt;}
.y12b{bottom:180.206301pt;}
.y10f{bottom:180.209291pt;}
.y11d{bottom:180.211103pt;}
.y11e{bottom:180.222414pt;}
.y11f{bottom:180.233747pt;}
.y120{bottom:180.245059pt;}
.y4d{bottom:181.058431pt;}
.y19b{bottom:183.355201pt;}
.y171{bottom:183.411083pt;}
.y1e9{bottom:185.349325pt;}
.yf4{bottom:185.601074pt;}
.y76{bottom:188.213053pt;}
.yd5{bottom:188.213074pt;}
.y1c6{bottom:188.362386pt;}
.y13e{bottom:193.832926pt;}
.y4c{bottom:197.058431pt;}
.y1e8{bottom:198.677327pt;}
.y19a{bottom:199.355201pt;}
.yf3{bottom:201.601074pt;}
.y1c5{bottom:201.690389pt;}
.y75{bottom:204.213053pt;}
.yd4{bottom:204.213074pt;}
.y8c{bottom:207.290405pt;}
.y13d{bottom:209.832926pt;}
.y1e7{bottom:212.005330pt;}
.y4b{bottom:213.058431pt;}
.y1c4{bottom:215.018392pt;}
.y199{bottom:215.355201pt;}
.y170{bottom:216.519746pt;}
.yf2{bottom:217.601074pt;}
.y1f{bottom:220.188927pt;}
.y74{bottom:220.213053pt;}
.yd3{bottom:220.213074pt;}
.y8b{bottom:220.618408pt;}
.y1e6{bottom:225.333333pt;}
.y13c{bottom:225.832926pt;}
.y1c3{bottom:228.346395pt;}
.y4a{bottom:229.058431pt;}
.y198{bottom:231.355201pt;}
.yf1{bottom:233.601074pt;}
.y8a{bottom:233.951742pt;}
.y16f{bottom:234.301749pt;}
.y73{bottom:236.213053pt;}
.yd2{bottom:236.213074pt;}
.y1e5{bottom:238.661336pt;}
.y1c2{bottom:241.674377pt;}
.y13b{bottom:241.832926pt;}
.y49{bottom:245.058431pt;}
.y197{bottom:247.355201pt;}
.yf0{bottom:249.601074pt;}
.y16e{bottom:250.077750pt;}
.y1e4{bottom:251.989339pt;}
.y1e{bottom:252.188927pt;}
.y72{bottom:252.213053pt;}
.yd1{bottom:252.213074pt;}
.y1c1{bottom:255.002380pt;}
.yb0{bottom:257.414335pt;}
.yae{bottom:257.425647pt;}
.yaa{bottom:257.459623pt;}
.y9b{bottom:257.463370pt;}
.ya8{bottom:257.470935pt;}
.yc4{bottom:257.482285pt;}
.ya5{bottom:257.493579pt;}
.yc2{bottom:257.493597pt;}
.yb5{bottom:257.498238pt;}
.yc0{bottom:257.504909pt;}
.yb7{bottom:257.508638pt;}
.y8f{bottom:257.508719pt;}
.y13a{bottom:257.832926pt;}
.y48{bottom:261.058431pt;}
.y196{bottom:263.355201pt;}
.y1e3{bottom:265.322673pt;}
.yef{bottom:265.601074pt;}
.y16d{bottom:265.907095pt;}
.y1d{bottom:268.188927pt;}
.y71{bottom:268.213053pt;}
.yd0{bottom:268.213074pt;}
.y1c0{bottom:268.330383pt;}
.yfa{bottom:273.546407pt;}
.y139{bottom:273.832926pt;}
.y47{bottom:277.058431pt;}
.y1e2{bottom:278.754435pt;}
.y195{bottom:279.355201pt;}
.yee{bottom:281.601074pt;}
.y1bf{bottom:281.658386pt;}
.y16c{bottom:281.694429pt;}
.y1c{bottom:284.188927pt;}
.y70{bottom:284.213053pt;}
.ycf{bottom:284.213074pt;}
.y138{bottom:289.832926pt;}
.yfe{bottom:291.196718pt;}
.y123{bottom:291.205040pt;}
.y113{bottom:291.209841pt;}
.y116{bottom:291.232485pt;}
.y10b{bottom:291.242006pt;}
.y118{bottom:291.243817pt;}
.y11c{bottom:291.277773pt;}
.y46{bottom:293.058431pt;}
.y1be{bottom:294.986389pt;}
.y16b{bottom:295.022432pt;}
.y194{bottom:295.355201pt;}
.yed{bottom:297.601074pt;}
.y1b{bottom:300.188927pt;}
.y6f{bottom:300.213053pt;}
.yce{bottom:300.213074pt;}
.y137{bottom:305.832926pt;}
.y1bd{bottom:308.314392pt;}
.y45{bottom:309.058431pt;}
.y16a{bottom:310.798433pt;}
.y193{bottom:311.355201pt;}
.yec{bottom:313.601074pt;}
.y1a{bottom:316.188927pt;}
.y6e{bottom:316.213053pt;}
.y1bc{bottom:321.642395pt;}
.y136{bottom:321.832926pt;}
.y44{bottom:325.058431pt;}
.y169{bottom:326.574434pt;}
.y192{bottom:327.355201pt;}
.yeb{bottom:329.601074pt;}
.yb8{bottom:330.211967pt;}
.y90{bottom:330.212048pt;}
.y19{bottom:332.188927pt;}
.y6d{bottom:332.213053pt;}
.y1bb{bottom:334.970378pt;}
.ycd{bottom:337.546407pt;}
.y135{bottom:337.832926pt;}
.y43{bottom:341.058431pt;}
.y168{bottom:342.350435pt;}
.y191{bottom:343.355201pt;}
.yea{bottom:345.601074pt;}
.y18{bottom:348.188927pt;}
.y6c{bottom:348.213053pt;}
.y1ba{bottom:348.298381pt;}
.y134{bottom:353.832926pt;}
.y42{bottom:357.058431pt;}
.y167{bottom:358.126435pt;}
.yff{bottom:359.321392pt;}
.y190{bottom:359.355201pt;}
.ye9{bottom:361.601074pt;}
.y1b9{bottom:361.626383pt;}
.y17{bottom:364.188927pt;}
.y6b{bottom:364.213053pt;}
.y133{bottom:369.832926pt;}
.yb9{bottom:372.020642pt;}
.y91{bottom:372.020723pt;}
.y41{bottom:373.058431pt;}
.y166{bottom:373.913789pt;}
.y1b8{bottom:374.954386pt;}
.y18f{bottom:375.355201pt;}
.ye8{bottom:377.601074pt;}
.y16{bottom:380.188927pt;}
.y6a{bottom:380.213053pt;}
.y82{bottom:385.546387pt;}
.y132{bottom:385.832926pt;}
.y165{bottom:387.241751pt;}
.y1b7{bottom:388.282389pt;}
.y40{bottom:389.058431pt;}
.y18e{bottom:391.355201pt;}
.ye7{bottom:393.601074pt;}
.y15{bottom:396.188927pt;}
.y69{bottom:396.213053pt;}
.ycc{bottom:401.546387pt;}
.y1b6{bottom:401.610392pt;}
.y131{bottom:401.832926pt;}
.y164{bottom:403.029105pt;}
.y3f{bottom:405.058431pt;}
.ye6{bottom:409.601074pt;}
.y14{bottom:412.188927pt;}
.y68{bottom:412.213053pt;}
.y1b5{bottom:414.938395pt;}
.y163{bottom:416.357108pt;}
.y130{bottom:417.832926pt;}
.y3e{bottom:421.058431pt;}
.y100{bottom:424.658062pt;}
.ye5{bottom:425.601074pt;}
.y13{bottom:428.188927pt;}
.y67{bottom:428.213053pt;}
.y1b4{bottom:428.266398pt;}
.y162{bottom:432.133109pt;}
.y1a2{bottom:433.546387pt;}
.y18d{bottom:435.657081pt;}
.y3d{bottom:437.058431pt;}
.y1b3{bottom:441.594400pt;}
.ye4{bottom:441.601074pt;}
.y12{bottom:444.188927pt;}
.y66{bottom:444.213053pt;}
.y161{bottom:447.909110pt;}
.yba{bottom:450.186657pt;}
.y92{bottom:450.186738pt;}
.y18c{bottom:452.759091pt;}
.y3c{bottom:453.058431pt;}
.y1b2{bottom:454.922404pt;}
.ye3{bottom:457.601074pt;}
.y11{bottom:460.188927pt;}
.y65{bottom:460.213053pt;}
.y18b{bottom:462.387103pt;}
.y160{bottom:463.696422pt;}
.y12f{bottom:464.418945pt;}
.y1b1{bottom:468.250407pt;}
.y101{bottom:468.858054pt;}
.y3b{bottom:469.058431pt;}
.ye2{bottom:473.601074pt;}
.y10{bottom:476.188927pt;}
.y64{bottom:476.213053pt;}
.y15f{bottom:477.024425pt;}
.y12e{bottom:477.752279pt;}
.y18a{bottom:480.169126pt;}
.y1b0{bottom:481.578369pt;}
.y3a{bottom:485.058431pt;}
.ye1{bottom:489.601074pt;}
.yf{bottom:492.188927pt;}
.y63{bottom:492.213053pt;}
.y15e{bottom:492.811779pt;}
.y1af{bottom:494.906372pt;}
.y189{bottom:495.945127pt;}
.y39{bottom:501.058431pt;}
.ye0{bottom:505.601074pt;}
.y15d{bottom:506.139782pt;}
.ye{bottom:508.188927pt;}
.y62{bottom:508.213053pt;}
.y1ae{bottom:508.234375pt;}
.y188{bottom:511.721128pt;}
.y38{bottom:517.058431pt;}
.y1ad{bottom:521.562378pt;}
.ydf{bottom:521.601074pt;}
.y15c{bottom:521.915783pt;}
.yd{bottom:524.188927pt;}
.y61{bottom:524.213053pt;}
.y187{bottom:527.497129pt;}
.y37{bottom:533.058431pt;}
.y1ac{bottom:534.890381pt;}
.y15b{bottom:537.703096pt;}
.yc{bottom:540.188927pt;}
.y81{bottom:540.213053pt;}
.ybb{bottom:541.895967pt;}
.y93{bottom:541.896048pt;}
.y186{bottom:543.273130pt;}
.y1ab{bottom:548.218384pt;}
.y102{bottom:548.384055pt;}
.y36{bottom:549.058431pt;}
.y15a{bottom:551.031099pt;}
.yde{bottom:554.713053pt;}
.yb{bottom:556.188927pt;}
.y80{bottom:556.213053pt;}
.y1e1{bottom:557.679077pt;}
.y185{bottom:559.049131pt;}
.y60{bottom:561.546387pt;}
.y35{bottom:565.058431pt;}
.y159{bottom:566.807100pt;}
.ydd{bottom:568.041056pt;}
.y1e0{bottom:571.007080pt;}
.ya{bottom:572.188927pt;}
.y7f{bottom:572.213053pt;}
.y184{bottom:574.825091pt;}
.y1aa{bottom:574.901042pt;}
.y34{bottom:581.058431pt;}
.ydc{bottom:581.374390pt;}
.y158{bottom:582.583101pt;}
.y1df{bottom:584.335083pt;}
.y9{bottom:588.188927pt;}
.y7e{bottom:588.213053pt;}
.y1a9{bottom:588.229045pt;}
.y183{bottom:590.601092pt;}
.y33{bottom:597.058431pt;}
.y1de{bottom:597.663086pt;}
.y157{bottom:598.359102pt;}
.y1a8{bottom:601.557048pt;}
.y8{bottom:604.188927pt;}
.y7d{bottom:604.213053pt;}
.y182{bottom:606.377093pt;}
.y1dd{bottom:610.991089pt;}
.y32{bottom:613.058431pt;}
.ybc{bottom:613.737968pt;}
.y94{bottom:613.738049pt;}
.y156{bottom:614.135102pt;}
.y1a7{bottom:614.885050pt;}
.y7{bottom:620.188927pt;}
.y5f{bottom:620.213053pt;}
.y181{bottom:622.153094pt;}
.y103{bottom:623.796042pt;}
.y1dc{bottom:624.319092pt;}
.y1a6{bottom:628.213053pt;}
.y31{bottom:629.058431pt;}
.y155{bottom:629.911103pt;}
.y5e{bottom:636.213053pt;}
.y1db{bottom:637.647095pt;}
.y180{bottom:637.929095pt;}
.y1a5{bottom:641.551717pt;}
.y30{bottom:645.058431pt;}
.y154{bottom:645.698457pt;}
.y1da{bottom:650.975098pt;}
.y5d{bottom:652.213053pt;}
.y17f{bottom:653.705096pt;}
.y1a4{bottom:654.879720pt;}
.y153{bottom:659.026419pt;}
.y2f{bottom:661.058431pt;}
.y1d9{bottom:664.303101pt;}
.y5c{bottom:668.213053pt;}
.y17e{bottom:669.481097pt;}
.y6{bottom:670.215620pt;}
.y152{bottom:674.802420pt;}
.y2e{bottom:677.058431pt;}
.y1d8{bottom:677.631104pt;}
.y5b{bottom:684.213053pt;}
.y17d{bottom:685.257098pt;}
.ybd{bottom:688.186657pt;}
.y95{bottom:688.186738pt;}
.y104{bottom:689.438743pt;}
.y1a3{bottom:689.546387pt;}
.y151{bottom:690.578462pt;}
.y1d7{bottom:690.959066pt;}
.y2d{bottom:693.058431pt;}
.y5a{bottom:700.213053pt;}
.y17c{bottom:701.033139pt;}
.y1d6{bottom:704.287109pt;}
.y150{bottom:706.354422pt;}
.y2c{bottom:709.058431pt;}
.y59{bottom:716.213053pt;}
.y17b{bottom:716.809100pt;}
.y1d5{bottom:717.615072pt;}
.y5{bottom:718.215579pt;}
.y14f{bottom:723.218436pt;}
.y2b{bottom:725.058431pt;}
.y1d4{bottom:730.943115pt;}
.y105{bottom:731.134055pt;}
.y58{bottom:732.213053pt;}
.y17a{bottom:732.585141pt;}
.y14e{bottom:736.546398pt;}
.y2a{bottom:741.058431pt;}
.y4{bottom:742.215579pt;}
.y1d3{bottom:744.271077pt;}
.y57{bottom:748.213053pt;}
.y179{bottom:748.361102pt;}
.y14d{bottom:751.891776pt;}
.ya0{bottom:753.073620pt;}
.y29{bottom:757.058431pt;}
.y1d2{bottom:757.599121pt;}
.y56{bottom:764.213053pt;}
.y178{bottom:765.225115pt;}
.y3{bottom:766.215579pt;}
.y14c{bottom:770.904460pt;}
.y1d1{bottom:770.927083pt;}
.y55{bottom:780.213053pt;}
.y14b{bottom:784.232422pt;}
.y1d0{bottom:784.255127pt;}
.y2{bottom:790.215579pt;}
.y28{bottom:794.391764pt;}
.y54{bottom:796.213053pt;}
.y14a{bottom:797.560465pt;}
.y1cf{bottom:797.583089pt;}
.y12d{bottom:831.537356pt;}
.y110{bottom:831.537375pt;}
.y53{bottom:831.537598pt;}
.y177{bottom:831.537609pt;}
.ycb{bottom:831.537745pt;}
.y27{bottom:831.537760pt;}
.y1a1{bottom:831.537778pt;}
.ya1{bottom:831.537813pt;}
.yfd{bottom:831.538167pt;}
.y8d{bottom:831.541748pt;}
.y1ce{bottom:831.721680pt;}
.h7{height:19.040000pt;}
.h2{height:31.733333pt;}
.h8{height:31.754492pt;}
.h9{height:34.136029pt;}
.h4{height:37.333333pt;}
.h6{height:40.159440pt;}
.h5{height:44.800000pt;}
.h3{height:59.733333pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x2{left:71.811078pt;}
.x60{left:75.581557pt;}
.x14{left:79.551732pt;}
.x30{left:83.811051pt;}
.x3{left:87.811078pt;}
.x2c{left:94.356388pt;}
.x48{left:95.811059pt;}
.x31{left:97.139054pt;}
.x2d{left:109.701715pt;}
.x49{left:111.587060pt;}
.x32{left:112.926387pt;}
.x2e{left:123.029717pt;}
.x4a{left:124.915063pt;}
.x33{left:126.254390pt;}
.x2f{left:136.357720pt;}
.x4b{left:140.702396pt;}
.x34{left:142.041723pt;}
.x15{left:153.493459pt;}
.x35{left:155.369716pt;}
.x4c{left:156.478397pt;}
.x16{left:166.821452pt;}
.x17{left:169.269460pt;}
.x36{left:171.157049pt;}
.x18{left:182.597463pt;}
.x4d{left:185.593723pt;}
.x37{left:186.933050pt;}
.x19{left:195.925466pt;}
.x4e{left:198.921726pt;}
.x38{left:200.261052pt;}
.x39{left:202.709051pt;}
.x1a{left:211.701446pt;}
.x4f{left:214.709059pt;}
.x3a{left:218.485052pt;}
.x1b{left:227.477447pt;}
.x50{left:230.485060pt;}
.x3b{left:236.267055pt;}
.x1c{left:240.805450pt;}
.x51{left:246.261060pt;}
.x1d{left:256.592784pt;}
.x52{left:259.589064pt;}
.x1e{left:269.920786pt;}
.x5{left:275.407471pt;}
.x61{left:279.115190pt;}
.x3c{left:284.545329pt;}
.x1f{left:285.708120pt;}
.x6{left:288.740804pt;}
.x53{left:291.152398pt;}
.x3d{left:297.878662pt;}
.x20{left:301.484121pt;}
.x7{left:307.748123pt;}
.x21{left:317.260122pt;}
.x8{left:323.093459pt;}
.x22{left:330.588125pt;}
.x3e{left:332.231308pt;}
.x9{left:336.421462pt;}
.x54{left:338.500400pt;}
.x23{left:343.916127pt;}
.x3f{left:345.559311pt;}
.xa{left:349.749465pt;}
.x55{left:354.276401pt;}
.x24{left:359.692128pt;}
.xb{left:366.250808pt;}
.x56{left:367.604404pt;}
.x25{left:373.020131pt;}
.x40{left:375.411321pt;}
.x4{left:381.303467pt;}
.x57{left:383.391717pt;}
.x26{left:388.807444pt;}
.x41{left:391.187322pt;}
.xc{left:397.802810pt;}
.x58{left:399.167718pt;}
.x27{left:404.583445pt;}
.x42{left:406.963323pt;}
.xd{left:413.578811pt;}
.x59{left:414.943719pt;}
.x28{left:420.359446pt;}
.x43{left:422.739324pt;}
.xe{left:426.906814pt;}
.x5a{left:430.719720pt;}
.x29{left:436.182810pt;}
.xf{left:442.694127pt;}
.x5b{left:446.495721pt;}
.x2a{left:449.510813pt;}
.x44{left:451.854640pt;}
.x10{left:458.470128pt;}
.x5c{left:459.823724pt;}
.x5d{left:462.271722pt;}
.x2b{left:465.298126pt;}
.x45{left:467.630641pt;}
.x11{left:474.246128pt;}
.x5e{left:478.047723pt;}
.x46{left:483.406642pt;}
.x12{left:490.022130pt;}
.x5f{left:495.829746pt;}
.x1{left:497.015759pt;}
.x47{left:499.182643pt;}
.x13{left:514.015741pt;}
}




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