
    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_f2596ad2dcb7de9c77bb8a55.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_099080d20349fd26fbbc08ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.070000;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_9cd382ef418be9bd63905894.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.082000;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_e74a83f2adae1e5c7eed9e15.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dd1c3c3b04defc5966300621.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.952000;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_aee733966097665564fcacce.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940000;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_a1ecc3403b0ebf99026e7a47.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919922;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_e51babf6f35511d705daaa7f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.074707;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_6e709884a004d55031438834.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.070000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bab4698d0d6aae688dacded9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919922;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2d1cce9d16c9bb52903e82af.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c2f40fca101c42c53af59aa4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.919922;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:fff;src:url('chunks/assets/font_f6d5bca24c87333ff11a3129.woff2')format("woff");}.fff{font-family:fff;line-height:0.919922;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:ff10;src:url('chunks/assets/font_ab9d8b71ab9fd7477bd2528c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.919922;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:ff11;src:url('chunks/assets/font_40219c71ec2d0acef002cf11.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.950000;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.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,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:-47.050598px;}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.000000px;}
.v4{vertical-align:34.501764px;}
.ls14{letter-spacing:-5.643000px;}
.ls12{letter-spacing:-4.845000px;}
.ls5{letter-spacing:-4.680000px;}
.lsf{letter-spacing:-4.446000px;}
.ls4{letter-spacing:-1.200000px;}
.ls6{letter-spacing:-1.020000px;}
.ls7{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.504000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.600000px;}
.ls13{letter-spacing:1.083000px;}
.ls1{letter-spacing:2.400000px;}
.ls10{letter-spacing:8.892000px;}
.lsb{letter-spacing:10.140000px;}
.lsc{letter-spacing:11.100000px;}
.lsa{letter-spacing:15.300000px;}
.lsd{letter-spacing:16.860000px;}
.ls3{letter-spacing:18.319800px;}
.ls11{letter-spacing:34.291200px;}
.lse{letter-spacing:909.363155px;}
.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;}
}
.ws105{word-spacing:-18.216000px;}
.ws4{word-spacing:-16.020000px;}
.ws106{word-spacing:-15.219000px;}
.ws1{word-spacing:-15.180000px;}
.wsdc{word-spacing:-13.500000px;}
.ws4f{word-spacing:-11.214000px;}
.ws50{word-spacing:-10.710000px;}
.ws129{word-spacing:-9.576000px;}
.ws9b{word-spacing:-4.140000px;}
.ws107{word-spacing:-4.047000px;}
.ws125{word-spacing:-3.990000px;}
.ws84{word-spacing:-3.900000px;}
.ws7b{word-spacing:-3.720000px;}
.ws44{word-spacing:-3.660000px;}
.ws7e{word-spacing:-3.600000px;}
.wse5{word-spacing:-3.480000px;}
.ws45{word-spacing:-3.420000px;}
.ws14{word-spacing:-3.180000px;}
.ws52{word-spacing:-3.060000px;}
.ws71{word-spacing:-3.000000px;}
.wsef{word-spacing:-2.970000px;}
.ws116{word-spacing:-2.964000px;}
.ws10a{word-spacing:-2.907000px;}
.wsa8{word-spacing:-2.640000px;}
.ws11b{word-spacing:-2.622000px;}
.wsdb{word-spacing:-2.520000px;}
.ws49{word-spacing:-2.460000px;}
.ws65{word-spacing:-2.400000px;}
.wsb7{word-spacing:-2.340000px;}
.ws11a{word-spacing:-2.223000px;}
.ws6d{word-spacing:-2.220000px;}
.wsb8{word-spacing:-2.100000px;}
.wsbe{word-spacing:-1.920000px;}
.ws29{word-spacing:-1.860000px;}
.ws12{word-spacing:-1.836000px;}
.ws122{word-spacing:-1.824000px;}
.ws94{word-spacing:-1.800000px;}
.ws13{word-spacing:-1.740000px;}
.ws88{word-spacing:-1.680000px;}
.ws11e{word-spacing:-1.653000px;}
.wsa4{word-spacing:-1.620000px;}
.wsa{word-spacing:-1.560000px;}
.ws1f{word-spacing:-1.500000px;}
.ws119{word-spacing:-1.482000px;}
.ws108{word-spacing:-1.425000px;}
.ws70{word-spacing:-1.380000px;}
.ws79{word-spacing:-1.320000px;}
.ws54{word-spacing:-1.260000px;}
.ws10c{word-spacing:-1.254000px;}
.wsde{word-spacing:-1.200000px;}
.wsf5{word-spacing:-1.140000px;}
.ws17{word-spacing:-1.080000px;}
.wsab{word-spacing:-1.020000px;}
.wsd7{word-spacing:-0.960000px;}
.ws89{word-spacing:-0.936000px;}
.ws10b{word-spacing:-0.912000px;}
.ws16{word-spacing:-0.900000px;}
.ws104{word-spacing:-0.840000px;}
.ws2a{word-spacing:-0.819000px;}
.ws5{word-spacing:-0.780000px;}
.wsb5{word-spacing:-0.720000px;}
.ws3c{word-spacing:-0.660000px;}
.wsbf{word-spacing:-0.600000px;}
.wsd6{word-spacing:-0.540000px;}
.wsbc{word-spacing:-0.480000px;}
.ws68{word-spacing:-0.420000px;}
.ws9{word-spacing:-0.360000px;}
.wsf4{word-spacing:-0.300000px;}
.wsb{word-spacing:-0.120000px;}
.ws117{word-spacing:-0.114000px;}
.ws0{word-spacing:0.000000px;}
.ws73{word-spacing:0.060000px;}
.ws115{word-spacing:0.114000px;}
.ws30{word-spacing:0.120000px;}
.wsbb{word-spacing:0.240000px;}
.ws10e{word-spacing:0.285000px;}
.ws5d{word-spacing:0.300000px;}
.wsc{word-spacing:0.360000px;}
.wsf7{word-spacing:0.540000px;}
.ws114{word-spacing:0.570000px;}
.ws8{word-spacing:0.600000px;}
.wsdf{word-spacing:0.660000px;}
.wsf{word-spacing:0.720000px;}
.wsd5{word-spacing:0.780000px;}
.ws127{word-spacing:0.798000px;}
.wsb0{word-spacing:0.840000px;}
.wsf1{word-spacing:0.900000px;}
.ws128{word-spacing:0.912000px;}
.ws80{word-spacing:0.960000px;}
.ws7{word-spacing:1.020000px;}
.wsc5{word-spacing:1.140000px;}
.ws87{word-spacing:1.200000px;}
.ws97{word-spacing:1.260000px;}
.ws9e{word-spacing:1.320000px;}
.ws1b{word-spacing:1.380000px;}
.wsc8{word-spacing:1.440000px;}
.ws6c{word-spacing:1.500000px;}
.ws3e{word-spacing:1.560000px;}
.ws109{word-spacing:1.596000px;}
.ws21{word-spacing:1.620000px;}
.ws1e{word-spacing:1.740000px;}
.ws4e{word-spacing:1.800000px;}
.ws113{word-spacing:1.881000px;}
.ws110{word-spacing:1.938000px;}
.ws100{word-spacing:1.980000px;}
.ws9c{word-spacing:2.040000px;}
.ws74{word-spacing:2.100000px;}
.wsc6{word-spacing:2.160000px;}
.wsa1{word-spacing:2.220000px;}
.ws75{word-spacing:2.280000px;}
.ws11d{word-spacing:2.337000px;}
.ws51{word-spacing:2.400000px;}
.ws7f{word-spacing:2.520000px;}
.ws57{word-spacing:2.580000px;}
.ws8c{word-spacing:2.640000px;}
.ws41{word-spacing:2.700000px;}
.wse{word-spacing:2.760000px;}
.ws83{word-spacing:2.820000px;}
.ws6b{word-spacing:2.940000px;}
.ws39{word-spacing:3.000000px;}
.wsba{word-spacing:3.060000px;}
.ws69{word-spacing:3.120000px;}
.ws63{word-spacing:3.180000px;}
.ws121{word-spacing:3.192000px;}
.wsa9{word-spacing:3.240000px;}
.ws72{word-spacing:3.300000px;}
.ws55{word-spacing:3.420000px;}
.ws2f{word-spacing:3.480000px;}
.ws9f{word-spacing:3.540000px;}
.ws20{word-spacing:3.660000px;}
.wse8{word-spacing:3.720000px;}
.wsc4{word-spacing:3.780000px;}
.ws58{word-spacing:3.840000px;}
.wsd8{word-spacing:3.900000px;}
.ws48{word-spacing:3.960000px;}
.ws11c{word-spacing:3.990000px;}
.ws22{word-spacing:4.020000px;}
.ws9d{word-spacing:4.080000px;}
.wse3{word-spacing:4.140000px;}
.ws27{word-spacing:4.200000px;}
.ws78{word-spacing:4.260000px;}
.ws10{word-spacing:4.320000px;}
.ws43{word-spacing:4.380000px;}
.ws47{word-spacing:4.440000px;}
.ws112{word-spacing:4.446000px;}
.ws62{word-spacing:4.500000px;}
.ws8d{word-spacing:4.560000px;}
.ws66{word-spacing:4.620000px;}
.ws6{word-spacing:4.680000px;}
.ws32{word-spacing:4.740000px;}
.ws3d{word-spacing:4.800000px;}
.ws11f{word-spacing:4.845000px;}
.ws59{word-spacing:4.860000px;}
.ws34{word-spacing:4.920000px;}
.wsfe{word-spacing:4.980000px;}
.wseb{word-spacing:5.100000px;}
.wsf6{word-spacing:5.160000px;}
.ws10d{word-spacing:5.187000px;}
.ws4b{word-spacing:5.220000px;}
.wsa2{word-spacing:5.280000px;}
.wsea{word-spacing:5.340000px;}
.wsf3{word-spacing:5.400000px;}
.ws38{word-spacing:5.460000px;}
.ws61{word-spacing:5.520000px;}
.ws6e{word-spacing:5.580000px;}
.ws67{word-spacing:5.640000px;}
.ws3a{word-spacing:5.700000px;}
.wsb4{word-spacing:5.760000px;}
.ws5f{word-spacing:5.820000px;}
.ws23{word-spacing:5.940000px;}
.ws7c{word-spacing:6.000000px;}
.wscf{word-spacing:6.120000px;}
.ws98{word-spacing:6.180000px;}
.ws4d{word-spacing:6.240000px;}
.ws126{word-spacing:6.270000px;}
.ws46{word-spacing:6.300000px;}
.ws53{word-spacing:6.480000px;}
.ws19{word-spacing:6.540000px;}
.ws11{word-spacing:6.720000px;}
.wsff{word-spacing:6.780000px;}
.ws103{word-spacing:6.900000px;}
.ws18{word-spacing:7.020000px;}
.ws56{word-spacing:7.080000px;}
.ws95{word-spacing:7.140000px;}
.ws82{word-spacing:7.200000px;}
.ws10f{word-spacing:7.239000px;}
.ws85{word-spacing:7.260000px;}
.wsda{word-spacing:7.320000px;}
.ws8b{word-spacing:7.500000px;}
.ws33{word-spacing:7.560000px;}
.wsa7{word-spacing:7.680000px;}
.wsd{word-spacing:7.740000px;}
.ws92{word-spacing:7.860000px;}
.wsc3{word-spacing:7.920000px;}
.wsb3{word-spacing:7.980000px;}
.ws1a{word-spacing:8.040000px;}
.ws118{word-spacing:8.094000px;}
.wsc9{word-spacing:8.100000px;}
.ws6f{word-spacing:8.160000px;}
.ws96{word-spacing:8.220000px;}
.ws4a{word-spacing:8.400000px;}
.wsb1{word-spacing:8.460000px;}
.wsc7{word-spacing:8.580000px;}
.ws99{word-spacing:8.640000px;}
.wsf2{word-spacing:8.760000px;}
.ws120{word-spacing:8.778000px;}
.ws35{word-spacing:8.820000px;}
.ws123{word-spacing:8.835000px;}
.ws7a{word-spacing:8.880000px;}
.ws3b{word-spacing:8.940000px;}
.wsd9{word-spacing:9.060000px;}
.wsf9{word-spacing:9.300000px;}
.wsae{word-spacing:9.420000px;}
.ws7d{word-spacing:9.600000px;}
.ws5b{word-spacing:9.660000px;}
.ws8a{word-spacing:9.780000px;}
.wse7{word-spacing:9.840000px;}
.ws40{word-spacing:9.900000px;}
.wsb9{word-spacing:9.960000px;}
.ws4c{word-spacing:10.080000px;}
.wscd{word-spacing:10.140000px;}
.wsfa{word-spacing:10.380000px;}
.wsad{word-spacing:10.500000px;}
.wse0{word-spacing:10.680000px;}
.ws28{word-spacing:10.740000px;}
.ws1c{word-spacing:10.800000px;}
.wse4{word-spacing:10.980000px;}
.wsd0{word-spacing:11.100000px;}
.ws101{word-spacing:11.280000px;}
.ws6a{word-spacing:11.340000px;}
.ws64{word-spacing:11.400000px;}
.wsfd{word-spacing:11.460000px;}
.wsa5{word-spacing:11.700000px;}
.wse1{word-spacing:11.760000px;}
.ws2e{word-spacing:11.820000px;}
.ws15{word-spacing:11.880000px;}
.wse9{word-spacing:11.940000px;}
.ws5c{word-spacing:12.000000px;}
.ws102{word-spacing:12.060000px;}
.wsaf{word-spacing:12.240000px;}
.wsf0{word-spacing:12.480000px;}
.wse2{word-spacing:12.540000px;}
.ws36{word-spacing:12.720000px;}
.ws9a{word-spacing:12.780000px;}
.ws86{word-spacing:12.840000px;}
.ws90{word-spacing:12.900000px;}
.wsd4{word-spacing:12.960000px;}
.wsbd{word-spacing:13.140000px;}
.ws77{word-spacing:13.200000px;}
.wsd3{word-spacing:13.260000px;}
.wsec{word-spacing:13.440000px;}
.wsee{word-spacing:13.500000px;}
.wsac{word-spacing:13.620000px;}
.ws2d{word-spacing:13.980000px;}
.wsa3{word-spacing:14.040000px;}
.wsc1{word-spacing:14.100000px;}
.wsed{word-spacing:14.160000px;}
.ws93{word-spacing:14.340000px;}
.ws8e{word-spacing:14.580000px;}
.ws37{word-spacing:14.640000px;}
.ws81{word-spacing:14.700000px;}
.wsaa{word-spacing:15.120000px;}
.ws8f{word-spacing:15.180000px;}
.wscc{word-spacing:15.300000px;}
.ws24{word-spacing:15.360000px;}
.ws3f{word-spacing:15.420000px;}
.wsb2{word-spacing:15.780000px;}
.ws26{word-spacing:15.900000px;}
.ws31{word-spacing:16.020000px;}
.ws42{word-spacing:16.800000px;}
.wsd1{word-spacing:16.860000px;}
.ws2c{word-spacing:17.220000px;}
.wsc0{word-spacing:17.340000px;}
.wsfb{word-spacing:17.520000px;}
.wsce{word-spacing:17.640000px;}
.wse6{word-spacing:18.360000px;}
.ws5a{word-spacing:18.480000px;}
.ws111{word-spacing:18.582000px;}
.wsc2{word-spacing:18.900000px;}
.ws5e{word-spacing:19.020000px;}
.wsfc{word-spacing:19.320000px;}
.ws60{word-spacing:19.440000px;}
.ws1d{word-spacing:19.560000px;}
.wsb6{word-spacing:19.860000px;}
.wscb{word-spacing:21.120000px;}
.wsa6{word-spacing:21.180000px;}
.ws76{word-spacing:21.360000px;}
.wsf8{word-spacing:22.800000px;}
.ws25{word-spacing:23.160000px;}
.ws91{word-spacing:23.460000px;}
.ws2b{word-spacing:28.260000px;}
.wsa0{word-spacing:31.260000px;}
.wsd2{word-spacing:33.480000px;}
.ws124{word-spacing:34.314000px;}
.wsca{word-spacing:50.040000px;}
.ws3{word-spacing:52.704000px;}
.ws2{word-spacing:57.634800px;}
.wsdd{word-spacing:128.727271px;}
._1d{margin-left:-20.022075px;}
._1c{margin-left:-9.535200px;}
._6{margin-left:-7.503600px;}
._1b{margin-left:-6.450000px;}
._2{margin-left:-5.406000px;}
._5{margin-left:-3.983100px;}
._0{margin-left:-2.340000px;}
._3{margin-left:-1.020000px;}
._8{width:1.713000px;}
._4{width:3.111000px;}
._1{width:4.680000px;}
._c{width:5.881800px;}
._12{width:7.274400px;}
._14{width:9.054000px;}
._17{width:10.217100px;}
._7{width:11.368500px;}
._a{width:12.531300px;}
._b{width:14.175900px;}
._15{width:16.404000px;}
._13{width:18.057000px;}
._9{width:19.351500px;}
._d{width:20.920500px;}
._11{width:27.411900px;}
._e{width:29.007000px;}
._f{width:30.255300px;}
._10{width:31.448400px;}
._1e{width:33.380400px;}
._19{width:35.400000px;}
._18{width:44.460000px;}
._1a{width:50.040000px;}
._16{width:1388.724000px;}
.fc2{color:rgb(79,76,77);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:31.482000px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fsc{font-size:53.392200px;}
.fsb{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fsd{font-size:59.485800px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:108.000000px;}
.fs7{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y130{bottom:4.048050px;}
.y14e{bottom:4.508700px;}
.y22{bottom:42.844500px;}
.y5{bottom:66.525004px;}
.y138{bottom:89.286000px;}
.y148{bottom:89.292000px;}
.y135{bottom:89.298900px;}
.ye2{bottom:91.375050px;}
.y88{bottom:91.376100px;}
.y5a{bottom:93.786900px;}
.y146{bottom:96.154800px;}
.y4{bottom:97.125005px;}
.y25{bottom:98.545350px;}
.y196{bottom:107.884500px;}
.y14d{bottom:109.492800px;}
.ye1{bottom:110.875050px;}
.y87{bottom:110.876100px;}
.y142{bottom:114.986850px;}
.y195{bottom:123.630750px;}
.y1cf{bottom:123.948000px;}
.y12f{bottom:128.329500px;}
.ye0{bottom:130.375050px;}
.y86{bottom:130.376100px;}
.y154{bottom:130.884450px;}
.y59{bottom:133.955700px;}
.y21{bottom:139.264499px;}
.y1ce{bottom:139.694250px;}
.y13f{bottom:142.464548px;}
.y194{bottom:143.637750px;}
.y33{bottom:148.354950px;}
.y12e{bottom:149.365387px;}
.ye9{bottom:149.875050px;}
.y85{bottom:149.876100px;}
.y58{bottom:153.455700px;}
.y13e{bottom:158.153928px;}
.y193{bottom:159.384000px;}
.y1cd{bottom:159.701250px;}
.y157{bottom:162.063433px;}
.y129{bottom:162.072730px;}
.y141{bottom:165.381453px;}
.y12d{bottom:166.344106px;}
.ydf{bottom:169.375050px;}
.y84{bottom:169.376100px;}
.y14b{bottom:170.464050px;}
.y57{bottom:172.955700px;}
.y13d{bottom:173.843308px;}
.y1cc{bottom:175.447500px;}
.y128{bottom:179.051450px;}
.y192{bottom:179.391000px;}
.y140{bottom:181.070832px;}
.yde{bottom:188.875050px;}
.y83{bottom:188.876100px;}
.y13c{bottom:189.532687px;}
.y56{bottom:192.455700px;}
.y1cb{bottom:195.454500px;}
.y24{bottom:195.562500px;}
.y127{bottom:196.030170px;}
.y18{bottom:196.933500px;}
.y191{bottom:199.398000px;}
.y12c{bottom:202.664150px;}
.ydd{bottom:208.375050px;}
.y82{bottom:208.376100px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1ca{bottom:211.200750px;}
.y55{bottom:211.955700px;}
.y23{bottom:212.062500px;}
.y126{bottom:213.008889px;}
.y143{bottom:213.852250px;}
.y190{bottom:215.144250px;}
.y12b{bottom:219.642870px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y149{bottom:225.076200px;}
.ydc{bottom:227.875050px;}
.y81{bottom:227.876100px;}
.y1c9{bottom:231.207750px;}
.y54{bottom:231.455700px;}
.y156{bottom:233.624850px;}
.y125{bottom:233.738411px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y18f{bottom:235.151250px;}
.y1f2{bottom:235.324650px;}
.y12a{bottom:236.621590px;}
.y13b{bottom:239.753574px;}
.y1c8{bottom:246.954000px;}
.ydb{bottom:247.375050px;}
.y80{bottom:247.376100px;}
.y124{bottom:250.717130px;}
.y18e{bottom:250.897500px;}
.y53{bottom:250.955700px;}
.y1f1{bottom:254.818650px;}
.y13a{bottom:255.442954px;}
.y150{bottom:255.757520px;}
.y14c{bottom:256.225500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yda{bottom:266.875050px;}
.y7f{bottom:266.876100px;}
.y1c7{bottom:266.961000px;}
.y123{bottom:267.695850px;}
.y52{bottom:270.455700px;}
.y18d{bottom:270.904500px;}
.y14f{bottom:271.446900px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y14a{bottom:273.879600px;}
.y145{bottom:277.026837px;}
.y153{bottom:278.094438px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yd9{bottom:286.375050px;}
.yb0{bottom:286.376100px;}
.y18c{bottom:286.617450px;}
.y1c6{bottom:286.968000px;}
.y51{bottom:289.955700px;}
.y152{bottom:292.222316px;}
.y144{bottom:292.716216px;}
.y1f0{bottom:293.820900px;}
.y15b{bottom:297.577650px;}
.y11e{bottom:301.182461px;}
.y1c5{bottom:302.714250px;}
.y155{bottom:304.245600px;}
.yd8{bottom:305.875050px;}
.y7e{bottom:305.876100px;}
.y18b{bottom:306.624450px;}
.y50{bottom:309.455700px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y15e{bottom:312.718350px;}
.y1ef{bottom:313.314900px;}
.y11d{bottom:318.161180px;}
.y18a{bottom:322.370700px;}
.y1c4{bottom:322.721250px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yd7{bottom:325.375050px;}
.yaf{bottom:325.376100px;}
.y147{bottom:328.491463px;}
.y158{bottom:330.452861px;}
.y151{bottom:332.241388px;}
.y1ee{bottom:332.808900px;}
.y11c{bottom:335.139900px;}
.y1c3{bottom:338.467500px;}
.y139{bottom:342.069150px;}
.y189{bottom:342.377700px;}
.yd6{bottom:344.875050px;}
.yae{bottom:344.876100px;}
.yf{bottom:348.133500px;}
.y4f{bottom:348.455700px;}
.y1ed{bottom:352.302900px;}
.y188{bottom:358.123950px;}
.y1c2{bottom:358.474500px;}
.yd5{bottom:364.375050px;}
.y7d{bottom:364.376100px;}
.y15a{bottom:365.208773px;}
.y15d{bottom:367.242313px;}
.y122{bottom:370.520041px;}
.y1ec{bottom:371.796900px;}
.y15c{bottom:372.744750px;}
.y1c1{bottom:374.220750px;}
.y187{bottom:378.130950px;}
.y159{bottom:379.336650px;}
.y133{bottom:381.497411px;}
.yd4{bottom:383.875050px;}
.yad{bottom:383.876100px;}
.ye{bottom:386.785499px;}
.y121{bottom:387.498761px;}
.y1eb{bottom:391.290900px;}
.y186{bottom:393.877200px;}
.y1c0{bottom:394.227750px;}
.y132{bottom:398.476130px;}
.yd3{bottom:403.375050px;}
.ye7{bottom:403.376100px;}
.y120{bottom:404.477480px;}
.yd{bottom:408.044999px;}
.y1bf{bottom:409.974000px;}
.y1ea{bottom:410.784900px;}
.y185{bottom:413.884200px;}
.y131{bottom:415.454850px;}
.y137{bottom:415.689000px;}
.y11f{bottom:421.456200px;}
.yd2{bottom:422.875050px;}
.yac{bottom:422.876100px;}
.y4e{bottom:426.542550px;}
.y184{bottom:429.630450px;}
.y1be{bottom:429.981000px;}
.y1e9{bottom:430.278900px;}
.yd1{bottom:442.375050px;}
.y7c{bottom:442.375200px;}
.yab{bottom:442.376100px;}
.y1bd{bottom:445.727250px;}
.y4d{bottom:446.036550px;}
.y183{bottom:449.637450px;}
.y1bc{bottom:461.473500px;}
.yd0{bottom:461.875050px;}
.y7b{bottom:461.875200px;}
.yaa{bottom:461.876100px;}
.y182{bottom:465.383700px;}
.y1e8{bottom:469.281150px;}
.ycf{bottom:481.375050px;}
.y7a{bottom:481.375200px;}
.ya9{bottom:481.376100px;}
.y1bb{bottom:481.480500px;}
.y4c{bottom:485.038800px;}
.y181{bottom:485.390700px;}
.y1e7{bottom:488.775150px;}
.y11b{bottom:493.887691px;}
.y1ba{bottom:497.226750px;}
.yce{bottom:500.875050px;}
.y79{bottom:500.875200px;}
.ya8{bottom:500.876100px;}
.y180{bottom:501.136950px;}
.yc{bottom:502.864502px;}
.y4b{bottom:504.532800px;}
.y113{bottom:508.248080px;}
.y1e6{bottom:508.269150px;}
.y11a{bottom:510.866411px;}
.y1b9{bottom:517.233750px;}
.ycd{bottom:520.375050px;}
.y78{bottom:520.375200px;}
.ya7{bottom:520.376100px;}
.yb{bottom:520.864502px;}
.y17f{bottom:521.143950px;}
.y4a{bottom:524.026800px;}
.y112{bottom:525.226800px;}
.y1e5{bottom:527.763150px;}
.y119{bottom:527.845130px;}
.y1b8{bottom:532.980000px;}
.y17e{bottom:536.890200px;}
.ya{bottom:538.864499px;}
.ycc{bottom:539.875050px;}
.y77{bottom:539.875200px;}
.ya6{bottom:539.876100px;}
.y49{bottom:543.520800px;}
.y118{bottom:544.823850px;}
.y1b7{bottom:552.987000px;}
.y9{bottom:556.864499px;}
.y17d{bottom:556.897200px;}
.ycb{bottom:559.375050px;}
.y76{bottom:559.375200px;}
.ya5{bottom:559.376100px;}
.y48{bottom:563.014800px;}
.y1e4{bottom:566.763150px;}
.y1b6{bottom:568.733250px;}
.y17c{bottom:572.643450px;}
.yca{bottom:578.875050px;}
.y75{bottom:578.875200px;}
.ya4{bottom:578.876100px;}
.y47{bottom:582.508800px;}
.y1b5{bottom:588.740250px;}
.y17b{bottom:592.650450px;}
.y111{bottom:596.052241px;}
.yc9{bottom:598.375050px;}
.y74{bottom:598.375200px;}
.ya3{bottom:598.376100px;}
.y46{bottom:602.002800px;}
.y1b4{bottom:604.486500px;}
.y17a{bottom:608.396700px;}
.y110{bottom:613.030961px;}
.ye6{bottom:617.875050px;}
.y73{bottom:617.875200px;}
.ya2{bottom:617.876100px;}
.y45{bottom:621.496800px;}
.y1b3{bottom:624.493500px;}
.y1e3{bottom:625.265250px;}
.y179{bottom:628.403700px;}
.y117{bottom:629.216341px;}
.y10f{bottom:630.009680px;}
.yc8{bottom:637.375050px;}
.y72{bottom:637.375200px;}
.ya1{bottom:637.376100px;}
.y1b2{bottom:640.239750px;}
.y44{bottom:640.990800px;}
.y178{bottom:644.149950px;}
.y8{bottom:645.510000px;}
.y116{bottom:646.195061px;}
.y10e{bottom:646.988400px;}
.y1e2{bottom:655.262250px;}
.ye5{bottom:656.875050px;}
.ya0{bottom:656.876100px;}
.y1b1{bottom:660.246750px;}
.y43{bottom:660.484800px;}
.y115{bottom:663.173780px;}
.y177{bottom:664.156950px;}
.y7{bottom:666.771000px;}
.y1b0{bottom:675.993000px;}
.ye4{bottom:676.375050px;}
.y71{bottom:676.375200px;}
.y9f{bottom:676.376100px;}
.y176{bottom:679.903200px;}
.y42{bottom:679.978800px;}
.y114{bottom:680.152500px;}
.y1af{bottom:691.739250px;}
.yc7{bottom:695.875050px;}
.y70{bottom:695.875200px;}
.y9e{bottom:695.876100px;}
.y41{bottom:699.472800px;}
.y175{bottom:699.910200px;}
.y1e1{bottom:704.802000px;}
.y1ae{bottom:711.746250px;}
.yc6{bottom:715.375050px;}
.y6f{bottom:715.375200px;}
.y9d{bottom:715.376100px;}
.y40{bottom:718.966800px;}
.y174{bottom:719.917200px;}
.y1e0{bottom:724.296000px;}
.y6{bottom:726.298500px;}
.y1ad{bottom:727.492500px;}
.y2c{bottom:733.326300px;}
.yc5{bottom:734.875050px;}
.y6e{bottom:734.875200px;}
.y9c{bottom:734.876100px;}
.y173{bottom:735.663450px;}
.y3f{bottom:738.460800px;}
.y1df{bottom:743.790000px;}
.y1ac{bottom:747.499500px;}
.y2b{bottom:749.824800px;}
.y3{bottom:752.599495px;}
.y134{bottom:754.295400px;}
.yc4{bottom:754.375050px;}
.y6d{bottom:754.375200px;}
.y9b{bottom:754.376100px;}
.y172{bottom:755.670450px;}
.y3e{bottom:757.954800px;}
.y1ab{bottom:763.232850px;}
.y1de{bottom:763.284000px;}
.y2a{bottom:766.323300px;}
.y171{bottom:771.416700px;}
.yc3{bottom:773.875050px;}
.y6c{bottom:773.875200px;}
.y9a{bottom:773.876100px;}
.y1dd{bottom:782.778000px;}
.y29{bottom:782.821800px;}
.y1aa{bottom:783.239850px;}
.y170{bottom:791.423700px;}
.yc2{bottom:793.375050px;}
.y6b{bottom:793.375200px;}
.y99{bottom:793.376100px;}
.y10d{bottom:793.376850px;}
.yfb{bottom:793.616850px;}
.y3d{bottom:796.954800px;}
.y1a9{bottom:798.986100px;}
.y28{bottom:799.320300px;}
.y16f{bottom:807.169950px;}
.yc1{bottom:812.875050px;}
.y6a{bottom:812.875200px;}
.y98{bottom:812.876100px;}
.y10c{bottom:812.876850px;}
.yfa{bottom:813.116850px;}
.y27{bottom:815.818800px;}
.y1a8{bottom:818.993100px;}
.y1dc{bottom:821.780250px;}
.y16e{bottom:827.176950px;}
.yc0{bottom:832.375050px;}
.y69{bottom:832.375200px;}
.y97{bottom:832.376100px;}
.y10b{bottom:832.376850px;}
.yf9{bottom:832.616850px;}
.y1a7{bottom:839.000100px;}
.y1db{bottom:841.274250px;}
.y16d{bottom:842.923200px;}
.ybf{bottom:851.875050px;}
.y68{bottom:851.875200px;}
.y96{bottom:851.876100px;}
.y10a{bottom:851.876850px;}
.yea{bottom:851.882100px;}
.yf8{bottom:852.116850px;}
.y1a6{bottom:854.746350px;}
.y3c{bottom:855.458700px;}
.y1da{bottom:860.768250px;}
.y16c{bottom:862.930200px;}
.y2f{bottom:868.565700px;}
.y1a5{bottom:870.492600px;}
.ybe{bottom:871.375050px;}
.y95{bottom:871.376100px;}
.y109{bottom:871.376850px;}
.yf7{bottom:871.616850px;}
.y3b{bottom:874.958700px;}
.y2{bottom:879.369000px;}
.y1d9{bottom:880.262250px;}
.y16b{bottom:882.937200px;}
.y1a4{bottom:890.499600px;}
.ye3{bottom:890.875050px;}
.y67{bottom:890.875200px;}
.y94{bottom:890.876100px;}
.y108{bottom:890.876850px;}
.y3a{bottom:894.458700px;}
.y2e{bottom:901.591200px;}
.y16a{bottom:902.944200px;}
.y1a3{bottom:906.245850px;}
.ybd{bottom:910.375050px;}
.y66{bottom:910.375200px;}
.y93{bottom:910.376100px;}
.y107{bottom:910.376850px;}
.yf6{bottom:910.616850px;}
.y169{bottom:918.690450px;}
.y1d8{bottom:919.262250px;}
.y1a2{bottom:926.252850px;}
.ybc{bottom:929.875050px;}
.y65{bottom:929.875200px;}
.y92{bottom:929.876100px;}
.y106{bottom:929.876850px;}
.yf5{bottom:930.116850px;}
.y168{bottom:934.436700px;}
.y2d{bottom:934.621200px;}
.y39{bottom:935.213700px;}
.y1a1{bottom:941.999100px;}
.ybb{bottom:949.375050px;}
.y64{bottom:949.375200px;}
.y91{bottom:949.376100px;}
.y105{bottom:949.376850px;}
.yf4{bottom:949.616850px;}
.y167{bottom:954.443700px;}
.y38{bottom:954.713700px;}
.y1a0{bottom:962.006100px;}
.y1{bottom:966.726000px;}
.yba{bottom:968.875050px;}
.y63{bottom:968.875200px;}
.y90{bottom:968.876100px;}
.y104{bottom:968.876850px;}
.yf3{bottom:969.116850px;}
.y166{bottom:970.189950px;}
.y37{bottom:974.213700px;}
.y19f{bottom:977.752350px;}
.y1d7{bottom:977.756100px;}
.yb9{bottom:988.375050px;}
.y62{bottom:988.375200px;}
.ye8{bottom:988.376100px;}
.y103{bottom:988.376850px;}
.yf2{bottom:988.616850px;}
.y32{bottom:989.654100px;}
.y165{bottom:990.196950px;}
.y1d6{bottom:993.502350px;}
.y19e{bottom:997.759350px;}
.y164{bottom:1005.943200px;}
.yb8{bottom:1007.875050px;}
.y61{bottom:1007.875200px;}
.y8f{bottom:1007.876100px;}
.y102{bottom:1007.876850px;}
.yf1{bottom:1008.116850px;}
.y19d{bottom:1013.505600px;}
.y1d5{bottom:1013.509350px;}
.y31{bottom:1022.684100px;}
.y163{bottom:1025.950200px;}
.yb7{bottom:1027.375050px;}
.y60{bottom:1027.375200px;}
.y8e{bottom:1027.376100px;}
.y101{bottom:1027.376850px;}
.yf0{bottom:1027.616850px;}
.y1d4{bottom:1029.255600px;}
.y19c{bottom:1033.512600px;}
.y162{bottom:1041.696450px;}
.y36{bottom:1044.737250px;}
.yb6{bottom:1046.875050px;}
.y5f{bottom:1046.875200px;}
.y8d{bottom:1046.876100px;}
.y100{bottom:1046.876850px;}
.yef{bottom:1047.116850px;}
.y19b{bottom:1049.258850px;}
.y1d3{bottom:1049.262600px;}
.y30{bottom:1055.714100px;}
.y161{bottom:1061.703450px;}
.yb5{bottom:1066.375050px;}
.y5e{bottom:1066.375200px;}
.y8c{bottom:1066.376100px;}
.yff{bottom:1066.376850px;}
.yee{bottom:1066.616850px;}
.y19a{bottom:1069.265850px;}
.y1d2{bottom:1069.269600px;}
.y160{bottom:1077.449700px;}
.y35{bottom:1079.237250px;}
.y199{bottom:1085.012100px;}
.y1d1{bottom:1085.015850px;}
.yb4{bottom:1085.875050px;}
.y5d{bottom:1085.875200px;}
.y8b{bottom:1085.876100px;}
.yfe{bottom:1085.876850px;}
.yed{bottom:1086.116850px;}
.y198{bottom:1105.019100px;}
.y1d0{bottom:1105.022850px;}
.yb3{bottom:1105.375050px;}
.y5c{bottom:1105.375200px;}
.y8a{bottom:1105.376100px;}
.yfd{bottom:1105.376850px;}
.yec{bottom:1105.616850px;}
.y26{bottom:1110.751800px;}
.y34{bottom:1113.737250px;}
.y15f{bottom:1116.951750px;}
.y197{bottom:1120.769100px;}
.yb2{bottom:1124.875050px;}
.y5b{bottom:1124.875200px;}
.y89{bottom:1124.876100px;}
.yfc{bottom:1124.876850px;}
.yeb{bottom:1125.116850px;}
.y136{bottom:1182.677400px;}
.yb1{bottom:1182.685050px;}
.h14{height:22.166525px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h18{height:37.593531px;}
.h1b{height:38.021484px;}
.h1c{height:41.884045px;}
.h13{height:42.246094px;}
.h10{height:43.920000px;}
.hd{height:44.370000px;}
.h7{height:45.960000px;}
.h1a{height:46.379883px;}
.h17{height:46.980000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h12{height:49.590000px;}
.h15{height:51.533203px;}
.hb{height:52.200000px;}
.h1f{height:52.704000px;}
.hf{height:53.760000px;}
.h16{height:54.810000px;}
.h2{height:55.152000px;}
.h11{height:62.640000px;}
.h1e{height:76.385809px;}
.h5{height:78.132000px;}
.hc{height:93.960000px;}
.he{height:104.400000px;}
.h4{height:119.055004px;}
.h1d{height:309.883500px;}
.h19{height:608.001000px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w4{width:664.356000px;}
.w5{width:744.094500px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:51.023550px;}
.x5{left:55.111050px;}
.x9{left:56.178300px;}
.x57{left:72.287970px;}
.x4d{left:76.223675px;}
.x4e{left:81.800469px;}
.x6{left:83.343750px;}
.xd{left:97.795350px;}
.x1{left:102.045000px;}
.x7{left:104.358900px;}
.x2{left:106.297500px;}
.x16{left:119.065350px;}
.x10{left:128.734800px;}
.x2a{left:132.858750px;}
.x55{left:146.753550px;}
.x2b{left:159.408021px;}
.x13{left:175.453800px;}
.x4{left:203.484001px;}
.xe{left:210.166350px;}
.x4c{left:217.234764px;}
.x4b{left:227.139150px;}
.x42{left:229.956313px;}
.x19{left:249.102767px;}
.x1a{left:255.515250px;}
.x3f{left:257.909607px;}
.x18{left:261.382973px;}
.x40{left:265.211489px;}
.x17{left:272.835600px;}
.x41{left:295.048650px;}
.x52{left:305.426250px;}
.xa{left:307.559100px;}
.x26{left:309.884250px;}
.x27{left:322.311285px;}
.x28{left:324.166664px;}
.x4f{left:327.640950px;}
.x4a{left:329.351250px;}
.x1b{left:332.720371px;}
.x2d{left:339.726829px;}
.x2c{left:346.227329px;}
.x3a{left:347.643936px;}
.x29{left:353.826031px;}
.x39{left:369.921368px;}
.x54{left:377.011650px;}
.x2e{left:379.957852px;}
.x56{left:381.346950px;}
.x49{left:388.866900px;}
.x2f{left:407.014349px;}
.x51{left:413.768786px;}
.x53{left:428.290961px;}
.x11{left:435.833550px;}
.x14{left:445.221300px;}
.x34{left:448.975200px;}
.x23{left:452.028450px;}
.x3{left:454.959000px;}
.x12{left:457.088550px;}
.x24{left:467.966022px;}
.xf{left:482.605350px;}
.x25{left:491.872379px;}
.xb{left:503.846250px;}
.x38{left:515.884650px;}
.x45{left:526.145100px;}
.x36{left:533.941357px;}
.x35{left:541.176000px;}
.x15{left:544.491300px;}
.x1d{left:545.628629px;}
.x33{left:546.781780px;}
.x20{left:548.123526px;}
.x3c{left:550.267442px;}
.x3b{left:551.680230px;}
.x3d{left:553.717619px;}
.x21{left:554.797551px;}
.x1c{left:557.121300px;}
.x3e{left:561.807688px;}
.x1e{left:569.708511px;}
.x43{left:581.667039px;}
.x44{left:585.340287px;}
.x37{left:596.396883px;}
.x1f{left:597.712720px;}
.x22{left:610.018434px;}
.x30{left:614.589874px;}
.x50{left:636.468750px;}
.x31{left:641.633024px;}
.x32{left:651.270316px;}
.x47{left:677.985000px;}
.x48{left:736.049100px;}
.x46{left:740.576538px;}
.xc{left:821.857200px;}
@media print{
.v3{vertical-align:-41.822754pt;}
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.666667pt;}
.v4{vertical-align:30.668235pt;}
.ls14{letter-spacing:-5.016000pt;}
.ls12{letter-spacing:-4.306667pt;}
.ls5{letter-spacing:-4.160000pt;}
.lsf{letter-spacing:-3.952000pt;}
.ls4{letter-spacing:-1.066667pt;}
.ls6{letter-spacing:-0.906667pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.448000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.533333pt;}
.ls13{letter-spacing:0.962667pt;}
.ls1{letter-spacing:2.133333pt;}
.ls10{letter-spacing:7.904000pt;}
.lsb{letter-spacing:9.013333pt;}
.lsc{letter-spacing:9.866667pt;}
.lsa{letter-spacing:13.600000pt;}
.lsd{letter-spacing:14.986667pt;}
.ls3{letter-spacing:16.284267pt;}
.ls11{letter-spacing:30.481067pt;}
.lse{letter-spacing:808.322805pt;}
.ws105{word-spacing:-16.192000pt;}
.ws4{word-spacing:-14.240000pt;}
.ws106{word-spacing:-13.528000pt;}
.ws1{word-spacing:-13.493333pt;}
.wsdc{word-spacing:-12.000000pt;}
.ws4f{word-spacing:-9.968000pt;}
.ws50{word-spacing:-9.520000pt;}
.ws129{word-spacing:-8.512000pt;}
.ws9b{word-spacing:-3.680000pt;}
.ws107{word-spacing:-3.597333pt;}
.ws125{word-spacing:-3.546667pt;}
.ws84{word-spacing:-3.466667pt;}
.ws7b{word-spacing:-3.306667pt;}
.ws44{word-spacing:-3.253333pt;}
.ws7e{word-spacing:-3.200000pt;}
.wse5{word-spacing:-3.093333pt;}
.ws45{word-spacing:-3.040000pt;}
.ws14{word-spacing:-2.826667pt;}
.ws52{word-spacing:-2.720000pt;}
.ws71{word-spacing:-2.666667pt;}
.wsef{word-spacing:-2.640000pt;}
.ws116{word-spacing:-2.634667pt;}
.ws10a{word-spacing:-2.584000pt;}
.wsa8{word-spacing:-2.346667pt;}
.ws11b{word-spacing:-2.330667pt;}
.wsdb{word-spacing:-2.240000pt;}
.ws49{word-spacing:-2.186667pt;}
.ws65{word-spacing:-2.133333pt;}
.wsb7{word-spacing:-2.080000pt;}
.ws11a{word-spacing:-1.976000pt;}
.ws6d{word-spacing:-1.973333pt;}
.wsb8{word-spacing:-1.866667pt;}
.wsbe{word-spacing:-1.706667pt;}
.ws29{word-spacing:-1.653333pt;}
.ws12{word-spacing:-1.632000pt;}
.ws122{word-spacing:-1.621333pt;}
.ws94{word-spacing:-1.600000pt;}
.ws13{word-spacing:-1.546667pt;}
.ws88{word-spacing:-1.493333pt;}
.ws11e{word-spacing:-1.469333pt;}
.wsa4{word-spacing:-1.440000pt;}
.wsa{word-spacing:-1.386667pt;}
.ws1f{word-spacing:-1.333333pt;}
.ws119{word-spacing:-1.317333pt;}
.ws108{word-spacing:-1.266667pt;}
.ws70{word-spacing:-1.226667pt;}
.ws79{word-spacing:-1.173333pt;}
.ws54{word-spacing:-1.120000pt;}
.ws10c{word-spacing:-1.114667pt;}
.wsde{word-spacing:-1.066667pt;}
.wsf5{word-spacing:-1.013333pt;}
.ws17{word-spacing:-0.960000pt;}
.wsab{word-spacing:-0.906667pt;}
.wsd7{word-spacing:-0.853333pt;}
.ws89{word-spacing:-0.832000pt;}
.ws10b{word-spacing:-0.810667pt;}
.ws16{word-spacing:-0.800000pt;}
.ws104{word-spacing:-0.746667pt;}
.ws2a{word-spacing:-0.728000pt;}
.ws5{word-spacing:-0.693333pt;}
.wsb5{word-spacing:-0.640000pt;}
.ws3c{word-spacing:-0.586667pt;}
.wsbf{word-spacing:-0.533333pt;}
.wsd6{word-spacing:-0.480000pt;}
.wsbc{word-spacing:-0.426667pt;}
.ws68{word-spacing:-0.373333pt;}
.ws9{word-spacing:-0.320000pt;}
.wsf4{word-spacing:-0.266667pt;}
.wsb{word-spacing:-0.106667pt;}
.ws117{word-spacing:-0.101333pt;}
.ws0{word-spacing:0.000000pt;}
.ws73{word-spacing:0.053333pt;}
.ws115{word-spacing:0.101333pt;}
.ws30{word-spacing:0.106667pt;}
.wsbb{word-spacing:0.213333pt;}
.ws10e{word-spacing:0.253333pt;}
.ws5d{word-spacing:0.266667pt;}
.wsc{word-spacing:0.320000pt;}
.wsf7{word-spacing:0.480000pt;}
.ws114{word-spacing:0.506667pt;}
.ws8{word-spacing:0.533333pt;}
.wsdf{word-spacing:0.586667pt;}
.wsf{word-spacing:0.640000pt;}
.wsd5{word-spacing:0.693333pt;}
.ws127{word-spacing:0.709333pt;}
.wsb0{word-spacing:0.746667pt;}
.wsf1{word-spacing:0.800000pt;}
.ws128{word-spacing:0.810667pt;}
.ws80{word-spacing:0.853333pt;}
.ws7{word-spacing:0.906667pt;}
.wsc5{word-spacing:1.013333pt;}
.ws87{word-spacing:1.066667pt;}
.ws97{word-spacing:1.120000pt;}
.ws9e{word-spacing:1.173333pt;}
.ws1b{word-spacing:1.226667pt;}
.wsc8{word-spacing:1.280000pt;}
.ws6c{word-spacing:1.333333pt;}
.ws3e{word-spacing:1.386667pt;}
.ws109{word-spacing:1.418667pt;}
.ws21{word-spacing:1.440000pt;}
.ws1e{word-spacing:1.546667pt;}
.ws4e{word-spacing:1.600000pt;}
.ws113{word-spacing:1.672000pt;}
.ws110{word-spacing:1.722667pt;}
.ws100{word-spacing:1.760000pt;}
.ws9c{word-spacing:1.813333pt;}
.ws74{word-spacing:1.866667pt;}
.wsc6{word-spacing:1.920000pt;}
.wsa1{word-spacing:1.973333pt;}
.ws75{word-spacing:2.026667pt;}
.ws11d{word-spacing:2.077333pt;}
.ws51{word-spacing:2.133333pt;}
.ws7f{word-spacing:2.240000pt;}
.ws57{word-spacing:2.293333pt;}
.ws8c{word-spacing:2.346667pt;}
.ws41{word-spacing:2.400000pt;}
.wse{word-spacing:2.453333pt;}
.ws83{word-spacing:2.506667pt;}
.ws6b{word-spacing:2.613333pt;}
.ws39{word-spacing:2.666667pt;}
.wsba{word-spacing:2.720000pt;}
.ws69{word-spacing:2.773333pt;}
.ws63{word-spacing:2.826667pt;}
.ws121{word-spacing:2.837333pt;}
.wsa9{word-spacing:2.880000pt;}
.ws72{word-spacing:2.933333pt;}
.ws55{word-spacing:3.040000pt;}
.ws2f{word-spacing:3.093333pt;}
.ws9f{word-spacing:3.146667pt;}
.ws20{word-spacing:3.253333pt;}
.wse8{word-spacing:3.306667pt;}
.wsc4{word-spacing:3.360000pt;}
.ws58{word-spacing:3.413333pt;}
.wsd8{word-spacing:3.466667pt;}
.ws48{word-spacing:3.520000pt;}
.ws11c{word-spacing:3.546667pt;}
.ws22{word-spacing:3.573333pt;}
.ws9d{word-spacing:3.626667pt;}
.wse3{word-spacing:3.680000pt;}
.ws27{word-spacing:3.733333pt;}
.ws78{word-spacing:3.786667pt;}
.ws10{word-spacing:3.840000pt;}
.ws43{word-spacing:3.893333pt;}
.ws47{word-spacing:3.946667pt;}
.ws112{word-spacing:3.952000pt;}
.ws62{word-spacing:4.000000pt;}
.ws8d{word-spacing:4.053333pt;}
.ws66{word-spacing:4.106667pt;}
.ws6{word-spacing:4.160000pt;}
.ws32{word-spacing:4.213333pt;}
.ws3d{word-spacing:4.266667pt;}
.ws11f{word-spacing:4.306667pt;}
.ws59{word-spacing:4.320000pt;}
.ws34{word-spacing:4.373333pt;}
.wsfe{word-spacing:4.426667pt;}
.wseb{word-spacing:4.533333pt;}
.wsf6{word-spacing:4.586667pt;}
.ws10d{word-spacing:4.610667pt;}
.ws4b{word-spacing:4.640000pt;}
.wsa2{word-spacing:4.693333pt;}
.wsea{word-spacing:4.746667pt;}
.wsf3{word-spacing:4.800000pt;}
.ws38{word-spacing:4.853333pt;}
.ws61{word-spacing:4.906667pt;}
.ws6e{word-spacing:4.960000pt;}
.ws67{word-spacing:5.013333pt;}
.ws3a{word-spacing:5.066667pt;}
.wsb4{word-spacing:5.120000pt;}
.ws5f{word-spacing:5.173333pt;}
.ws23{word-spacing:5.280000pt;}
.ws7c{word-spacing:5.333333pt;}
.wscf{word-spacing:5.440000pt;}
.ws98{word-spacing:5.493333pt;}
.ws4d{word-spacing:5.546667pt;}
.ws126{word-spacing:5.573333pt;}
.ws46{word-spacing:5.600000pt;}
.ws53{word-spacing:5.760000pt;}
.ws19{word-spacing:5.813333pt;}
.ws11{word-spacing:5.973333pt;}
.wsff{word-spacing:6.026667pt;}
.ws103{word-spacing:6.133333pt;}
.ws18{word-spacing:6.240000pt;}
.ws56{word-spacing:6.293333pt;}
.ws95{word-spacing:6.346667pt;}
.ws82{word-spacing:6.400000pt;}
.ws10f{word-spacing:6.434667pt;}
.ws85{word-spacing:6.453333pt;}
.wsda{word-spacing:6.506667pt;}
.ws8b{word-spacing:6.666667pt;}
.ws33{word-spacing:6.720000pt;}
.wsa7{word-spacing:6.826667pt;}
.wsd{word-spacing:6.880000pt;}
.ws92{word-spacing:6.986667pt;}
.wsc3{word-spacing:7.040000pt;}
.wsb3{word-spacing:7.093333pt;}
.ws1a{word-spacing:7.146667pt;}
.ws118{word-spacing:7.194667pt;}
.wsc9{word-spacing:7.200000pt;}
.ws6f{word-spacing:7.253333pt;}
.ws96{word-spacing:7.306667pt;}
.ws4a{word-spacing:7.466667pt;}
.wsb1{word-spacing:7.520000pt;}
.wsc7{word-spacing:7.626667pt;}
.ws99{word-spacing:7.680000pt;}
.wsf2{word-spacing:7.786667pt;}
.ws120{word-spacing:7.802667pt;}
.ws35{word-spacing:7.840000pt;}
.ws123{word-spacing:7.853333pt;}
.ws7a{word-spacing:7.893333pt;}
.ws3b{word-spacing:7.946667pt;}
.wsd9{word-spacing:8.053333pt;}
.wsf9{word-spacing:8.266667pt;}
.wsae{word-spacing:8.373333pt;}
.ws7d{word-spacing:8.533333pt;}
.ws5b{word-spacing:8.586667pt;}
.ws8a{word-spacing:8.693333pt;}
.wse7{word-spacing:8.746667pt;}
.ws40{word-spacing:8.800000pt;}
.wsb9{word-spacing:8.853333pt;}
.ws4c{word-spacing:8.960000pt;}
.wscd{word-spacing:9.013333pt;}
.wsfa{word-spacing:9.226667pt;}
.wsad{word-spacing:9.333333pt;}
.wse0{word-spacing:9.493333pt;}
.ws28{word-spacing:9.546667pt;}
.ws1c{word-spacing:9.600000pt;}
.wse4{word-spacing:9.760000pt;}
.wsd0{word-spacing:9.866667pt;}
.ws101{word-spacing:10.026667pt;}
.ws6a{word-spacing:10.080000pt;}
.ws64{word-spacing:10.133333pt;}
.wsfd{word-spacing:10.186667pt;}
.wsa5{word-spacing:10.400000pt;}
.wse1{word-spacing:10.453333pt;}
.ws2e{word-spacing:10.506667pt;}
.ws15{word-spacing:10.560000pt;}
.wse9{word-spacing:10.613333pt;}
.ws5c{word-spacing:10.666667pt;}
.ws102{word-spacing:10.720000pt;}
.wsaf{word-spacing:10.880000pt;}
.wsf0{word-spacing:11.093333pt;}
.wse2{word-spacing:11.146667pt;}
.ws36{word-spacing:11.306667pt;}
.ws9a{word-spacing:11.360000pt;}
.ws86{word-spacing:11.413333pt;}
.ws90{word-spacing:11.466667pt;}
.wsd4{word-spacing:11.520000pt;}
.wsbd{word-spacing:11.680000pt;}
.ws77{word-spacing:11.733333pt;}
.wsd3{word-spacing:11.786667pt;}
.wsec{word-spacing:11.946667pt;}
.wsee{word-spacing:12.000000pt;}
.wsac{word-spacing:12.106667pt;}
.ws2d{word-spacing:12.426667pt;}
.wsa3{word-spacing:12.480000pt;}
.wsc1{word-spacing:12.533333pt;}
.wsed{word-spacing:12.586667pt;}
.ws93{word-spacing:12.746667pt;}
.ws8e{word-spacing:12.960000pt;}
.ws37{word-spacing:13.013333pt;}
.ws81{word-spacing:13.066667pt;}
.wsaa{word-spacing:13.440000pt;}
.ws8f{word-spacing:13.493333pt;}
.wscc{word-spacing:13.600000pt;}
.ws24{word-spacing:13.653333pt;}
.ws3f{word-spacing:13.706667pt;}
.wsb2{word-spacing:14.026667pt;}
.ws26{word-spacing:14.133333pt;}
.ws31{word-spacing:14.240000pt;}
.ws42{word-spacing:14.933333pt;}
.wsd1{word-spacing:14.986667pt;}
.ws2c{word-spacing:15.306667pt;}
.wsc0{word-spacing:15.413333pt;}
.wsfb{word-spacing:15.573333pt;}
.wsce{word-spacing:15.680000pt;}
.wse6{word-spacing:16.320000pt;}
.ws5a{word-spacing:16.426667pt;}
.ws111{word-spacing:16.517333pt;}
.wsc2{word-spacing:16.800000pt;}
.ws5e{word-spacing:16.906667pt;}
.wsfc{word-spacing:17.173333pt;}
.ws60{word-spacing:17.280000pt;}
.ws1d{word-spacing:17.386667pt;}
.wsb6{word-spacing:17.653333pt;}
.wscb{word-spacing:18.773333pt;}
.wsa6{word-spacing:18.826667pt;}
.ws76{word-spacing:18.986667pt;}
.wsf8{word-spacing:20.266667pt;}
.ws25{word-spacing:20.586667pt;}
.ws91{word-spacing:20.853333pt;}
.ws2b{word-spacing:25.120000pt;}
.wsa0{word-spacing:27.786667pt;}
.wsd2{word-spacing:29.760000pt;}
.ws124{word-spacing:30.501333pt;}
.wsca{word-spacing:44.480000pt;}
.ws3{word-spacing:46.848000pt;}
.ws2{word-spacing:51.230933pt;}
.wsdd{word-spacing:114.424241pt;}
._1d{margin-left:-17.797400pt;}
._1c{margin-left:-8.475733pt;}
._6{margin-left:-6.669867pt;}
._1b{margin-left:-5.733333pt;}
._2{margin-left:-4.805333pt;}
._5{margin-left:-3.540533pt;}
._0{margin-left:-2.080000pt;}
._3{margin-left:-0.906667pt;}
._8{width:1.522667pt;}
._4{width:2.765333pt;}
._1{width:4.160000pt;}
._c{width:5.228267pt;}
._12{width:6.466133pt;}
._14{width:8.048000pt;}
._17{width:9.081867pt;}
._7{width:10.105333pt;}
._a{width:11.138933pt;}
._b{width:12.600800pt;}
._15{width:14.581333pt;}
._13{width:16.050667pt;}
._9{width:17.201333pt;}
._d{width:18.596000pt;}
._11{width:24.366133pt;}
._e{width:25.784000pt;}
._f{width:26.893600pt;}
._10{width:27.954133pt;}
._1e{width:29.671467pt;}
._19{width:31.466667pt;}
._18{width:39.520000pt;}
._1a{width:44.480000pt;}
._16{width:1234.421333pt;}
.fsa{font-size:27.984000pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fsc{font-size:47.459733pt;}
.fsb{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fsd{font-size:52.876267pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:96.000000pt;}
.fs7{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y130{bottom:3.598267pt;}
.y14e{bottom:4.007733pt;}
.y22{bottom:38.084000pt;}
.y5{bottom:59.133337pt;}
.y138{bottom:79.365333pt;}
.y148{bottom:79.370667pt;}
.y135{bottom:79.376800pt;}
.ye2{bottom:81.222267pt;}
.y88{bottom:81.223200pt;}
.y5a{bottom:83.366133pt;}
.y146{bottom:85.470933pt;}
.y4{bottom:86.333337pt;}
.y25{bottom:87.595867pt;}
.y196{bottom:95.897333pt;}
.y14d{bottom:97.326933pt;}
.ye1{bottom:98.555600pt;}
.y87{bottom:98.556533pt;}
.y142{bottom:102.210533pt;}
.y195{bottom:109.894000pt;}
.y1cf{bottom:110.176000pt;}
.y12f{bottom:114.070667pt;}
.ye0{bottom:115.888933pt;}
.y86{bottom:115.889867pt;}
.y154{bottom:116.341733pt;}
.y59{bottom:119.071733pt;}
.y21{bottom:123.790666pt;}
.y1ce{bottom:124.172667pt;}
.y13f{bottom:126.635154pt;}
.y194{bottom:127.678000pt;}
.y33{bottom:131.871067pt;}
.y12e{bottom:132.769233pt;}
.ye9{bottom:133.222267pt;}
.y85{bottom:133.223200pt;}
.y58{bottom:136.405067pt;}
.y13e{bottom:140.581269pt;}
.y193{bottom:141.674667pt;}
.y1cd{bottom:141.956667pt;}
.y157{bottom:144.056385pt;}
.y129{bottom:144.064649pt;}
.y141{bottom:147.005736pt;}
.y12d{bottom:147.861428pt;}
.ydf{bottom:150.555600pt;}
.y84{bottom:150.556533pt;}
.y14b{bottom:151.523600pt;}
.y57{bottom:153.738400pt;}
.y13d{bottom:154.527385pt;}
.y1cc{bottom:155.953333pt;}
.y128{bottom:159.156844pt;}
.y192{bottom:159.458667pt;}
.y140{bottom:160.951851pt;}
.yde{bottom:167.888933pt;}
.y83{bottom:167.889867pt;}
.y13c{bottom:168.473500pt;}
.y56{bottom:171.071733pt;}
.y1cb{bottom:173.737333pt;}
.y24{bottom:173.833333pt;}
.y127{bottom:174.249040pt;}
.y18{bottom:175.052000pt;}
.y191{bottom:177.242667pt;}
.y12c{bottom:180.145911pt;}
.ydd{bottom:185.222267pt;}
.y82{bottom:185.223200pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1ca{bottom:187.734000pt;}
.y55{bottom:188.405067pt;}
.y23{bottom:188.500000pt;}
.y126{bottom:189.341235pt;}
.y143{bottom:190.090889pt;}
.y190{bottom:191.239333pt;}
.y12b{bottom:195.238107pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y149{bottom:200.067733pt;}
.ydc{bottom:202.555600pt;}
.y81{bottom:202.556533pt;}
.y1c9{bottom:205.518000pt;}
.y54{bottom:205.738400pt;}
.y156{bottom:207.666533pt;}
.y125{bottom:207.767476pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y18f{bottom:209.023333pt;}
.y1f2{bottom:209.177467pt;}
.y12a{bottom:210.330302pt;}
.y13b{bottom:213.114288pt;}
.y1c8{bottom:219.514667pt;}
.ydb{bottom:219.888933pt;}
.y80{bottom:219.889867pt;}
.y124{bottom:222.859671pt;}
.y18e{bottom:223.020000pt;}
.y53{bottom:223.071733pt;}
.y1f1{bottom:226.505467pt;}
.y13a{bottom:227.060403pt;}
.y150{bottom:227.340018pt;}
.y14c{bottom:227.756000pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yda{bottom:237.222267pt;}
.y7f{bottom:237.223200pt;}
.y1c7{bottom:237.298667pt;}
.y123{bottom:237.951867pt;}
.y52{bottom:240.405067pt;}
.y18d{bottom:240.804000pt;}
.y14f{bottom:241.286133pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y14a{bottom:243.448533pt;}
.y145{bottom:246.246077pt;}
.y153{bottom:247.195056pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yd9{bottom:254.555600pt;}
.yb0{bottom:254.556533pt;}
.y18c{bottom:254.771067pt;}
.y1c6{bottom:255.082667pt;}
.y51{bottom:257.738400pt;}
.y152{bottom:259.753169pt;}
.y144{bottom:260.192192pt;}
.y1f0{bottom:261.174133pt;}
.y15b{bottom:264.513467pt;}
.y11e{bottom:267.717743pt;}
.y1c5{bottom:269.079333pt;}
.y155{bottom:270.440533pt;}
.yd8{bottom:271.888933pt;}
.y7e{bottom:271.889867pt;}
.y18b{bottom:272.555067pt;}
.y50{bottom:275.071733pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y15e{bottom:277.971867pt;}
.y1ef{bottom:278.502133pt;}
.y11d{bottom:282.809938pt;}
.y18a{bottom:286.551733pt;}
.y1c4{bottom:286.863333pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yd7{bottom:289.222267pt;}
.yaf{bottom:289.223200pt;}
.y147{bottom:291.992412pt;}
.y158{bottom:293.735876pt;}
.y151{bottom:295.325678pt;}
.y1ee{bottom:295.830133pt;}
.y11c{bottom:297.902133pt;}
.y1c3{bottom:300.860000pt;}
.y139{bottom:304.061467pt;}
.y189{bottom:304.335733pt;}
.yd6{bottom:306.555600pt;}
.yae{bottom:306.556533pt;}
.yf{bottom:309.452000pt;}
.y4f{bottom:309.738400pt;}
.y1ed{bottom:313.158133pt;}
.y188{bottom:318.332400pt;}
.y1c2{bottom:318.644000pt;}
.yd5{bottom:323.888933pt;}
.y7d{bottom:323.889867pt;}
.y15a{bottom:324.630020pt;}
.y15d{bottom:326.437612pt;}
.y122{bottom:329.351148pt;}
.y1ec{bottom:330.486133pt;}
.y15c{bottom:331.328667pt;}
.y1c1{bottom:332.640667pt;}
.y187{bottom:336.116400pt;}
.y159{bottom:337.188133pt;}
.y133{bottom:339.108810pt;}
.yd4{bottom:341.222267pt;}
.yad{bottom:341.223200pt;}
.ye{bottom:343.809333pt;}
.y121{bottom:344.443343pt;}
.y1eb{bottom:347.814133pt;}
.y186{bottom:350.113067pt;}
.y1c0{bottom:350.424667pt;}
.y132{bottom:354.201005pt;}
.yd3{bottom:358.555600pt;}
.ye7{bottom:358.556533pt;}
.y120{bottom:359.535538pt;}
.yd{bottom:362.706666pt;}
.y1bf{bottom:364.421333pt;}
.y1ea{bottom:365.142133pt;}
.y185{bottom:367.897067pt;}
.y131{bottom:369.293200pt;}
.y137{bottom:369.501333pt;}
.y11f{bottom:374.627733pt;}
.yd2{bottom:375.888933pt;}
.yac{bottom:375.889867pt;}
.y4e{bottom:379.148933pt;}
.y184{bottom:381.893733pt;}
.y1be{bottom:382.205333pt;}
.y1e9{bottom:382.470133pt;}
.yd1{bottom:393.222267pt;}
.y7c{bottom:393.222400pt;}
.yab{bottom:393.223200pt;}
.y1bd{bottom:396.202000pt;}
.y4d{bottom:396.476933pt;}
.y183{bottom:399.677733pt;}
.y1bc{bottom:410.198667pt;}
.yd0{bottom:410.555600pt;}
.y7b{bottom:410.555733pt;}
.yaa{bottom:410.556533pt;}
.y182{bottom:413.674400pt;}
.y1e8{bottom:417.138800pt;}
.ycf{bottom:427.888933pt;}
.y7a{bottom:427.889067pt;}
.ya9{bottom:427.889867pt;}
.y1bb{bottom:427.982667pt;}
.y4c{bottom:431.145600pt;}
.y181{bottom:431.458400pt;}
.y1e7{bottom:434.466800pt;}
.y11b{bottom:439.011281pt;}
.y1ba{bottom:441.979333pt;}
.yce{bottom:445.222267pt;}
.y79{bottom:445.222400pt;}
.ya8{bottom:445.223200pt;}
.y180{bottom:445.455067pt;}
.yc{bottom:446.990669pt;}
.y4b{bottom:448.473600pt;}
.y113{bottom:451.776071pt;}
.y1e6{bottom:451.794800pt;}
.y11a{bottom:454.103476pt;}
.y1b9{bottom:459.763333pt;}
.ycd{bottom:462.555600pt;}
.y78{bottom:462.555733pt;}
.ya7{bottom:462.556533pt;}
.yb{bottom:462.990669pt;}
.y17f{bottom:463.239067pt;}
.y4a{bottom:465.801600pt;}
.y112{bottom:466.868267pt;}
.y1e5{bottom:469.122800pt;}
.y119{bottom:469.195671pt;}
.y1b8{bottom:473.760000pt;}
.y17e{bottom:477.235733pt;}
.ya{bottom:478.990666pt;}
.ycc{bottom:479.888933pt;}
.y77{bottom:479.889067pt;}
.ya6{bottom:479.889867pt;}
.y49{bottom:483.129600pt;}
.y118{bottom:484.287867pt;}
.y1b7{bottom:491.544000pt;}
.y9{bottom:494.990666pt;}
.y17d{bottom:495.019733pt;}
.ycb{bottom:497.222267pt;}
.y76{bottom:497.222400pt;}
.ya5{bottom:497.223200pt;}
.y48{bottom:500.457600pt;}
.y1e4{bottom:503.789467pt;}
.y1b6{bottom:505.540667pt;}
.y17c{bottom:509.016400pt;}
.yca{bottom:514.555600pt;}
.y75{bottom:514.555733pt;}
.ya4{bottom:514.556533pt;}
.y47{bottom:517.785600pt;}
.y1b5{bottom:523.324667pt;}
.y17b{bottom:526.800400pt;}
.y111{bottom:529.824214pt;}
.yc9{bottom:531.888933pt;}
.y74{bottom:531.889067pt;}
.ya3{bottom:531.889867pt;}
.y46{bottom:535.113600pt;}
.y1b4{bottom:537.321333pt;}
.y17a{bottom:540.797067pt;}
.y110{bottom:544.916410pt;}
.ye6{bottom:549.222267pt;}
.y73{bottom:549.222400pt;}
.ya2{bottom:549.223200pt;}
.y45{bottom:552.441600pt;}
.y1b3{bottom:555.105333pt;}
.y1e3{bottom:555.791333pt;}
.y179{bottom:558.581067pt;}
.y117{bottom:559.303414pt;}
.y10f{bottom:560.008605pt;}
.yc8{bottom:566.555600pt;}
.y72{bottom:566.555733pt;}
.ya1{bottom:566.556533pt;}
.y1b2{bottom:569.102000pt;}
.y44{bottom:569.769600pt;}
.y178{bottom:572.577733pt;}
.y8{bottom:573.786667pt;}
.y116{bottom:574.395610pt;}
.y10e{bottom:575.100800pt;}
.y1e2{bottom:582.455333pt;}
.ye5{bottom:583.888933pt;}
.ya0{bottom:583.889867pt;}
.y1b1{bottom:586.886000pt;}
.y43{bottom:587.097600pt;}
.y115{bottom:589.487805pt;}
.y177{bottom:590.361733pt;}
.y7{bottom:592.685334pt;}
.y1b0{bottom:600.882667pt;}
.ye4{bottom:601.222267pt;}
.y71{bottom:601.222400pt;}
.y9f{bottom:601.223200pt;}
.y176{bottom:604.358400pt;}
.y42{bottom:604.425600pt;}
.y114{bottom:604.580000pt;}
.y1af{bottom:614.879333pt;}
.yc7{bottom:618.555600pt;}
.y70{bottom:618.555733pt;}
.y9e{bottom:618.556533pt;}
.y41{bottom:621.753600pt;}
.y175{bottom:622.142400pt;}
.y1e1{bottom:626.490667pt;}
.y1ae{bottom:632.663333pt;}
.yc6{bottom:635.888933pt;}
.y6f{bottom:635.889067pt;}
.y9d{bottom:635.889867pt;}
.y40{bottom:639.081600pt;}
.y174{bottom:639.926400pt;}
.y1e0{bottom:643.818667pt;}
.y6{bottom:645.598667pt;}
.y1ad{bottom:646.660000pt;}
.y2c{bottom:651.845600pt;}
.yc5{bottom:653.222267pt;}
.y6e{bottom:653.222400pt;}
.y9c{bottom:653.223200pt;}
.y173{bottom:653.923067pt;}
.y3f{bottom:656.409600pt;}
.y1df{bottom:661.146667pt;}
.y1ac{bottom:664.444000pt;}
.y2b{bottom:666.510933pt;}
.y3{bottom:668.977329pt;}
.y134{bottom:670.484800pt;}
.yc4{bottom:670.555600pt;}
.y6d{bottom:670.555733pt;}
.y9b{bottom:670.556533pt;}
.y172{bottom:671.707067pt;}
.y3e{bottom:673.737600pt;}
.y1ab{bottom:678.429200pt;}
.y1de{bottom:678.474667pt;}
.y2a{bottom:681.176267pt;}
.y171{bottom:685.703733pt;}
.yc3{bottom:687.888933pt;}
.y6c{bottom:687.889067pt;}
.y9a{bottom:687.889867pt;}
.y1dd{bottom:695.802667pt;}
.y29{bottom:695.841600pt;}
.y1aa{bottom:696.213200pt;}
.y170{bottom:703.487733pt;}
.yc2{bottom:705.222267pt;}
.y6b{bottom:705.222400pt;}
.y99{bottom:705.223200pt;}
.y10d{bottom:705.223867pt;}
.yfb{bottom:705.437200pt;}
.y3d{bottom:708.404267pt;}
.y1a9{bottom:710.209867pt;}
.y28{bottom:710.506933pt;}
.y16f{bottom:717.484400pt;}
.yc1{bottom:722.555600pt;}
.y6a{bottom:722.555733pt;}
.y98{bottom:722.556533pt;}
.y10c{bottom:722.557200pt;}
.yfa{bottom:722.770533pt;}
.y27{bottom:725.172267pt;}
.y1a8{bottom:727.993867pt;}
.y1dc{bottom:730.471333pt;}
.y16e{bottom:735.268400pt;}
.yc0{bottom:739.888933pt;}
.y69{bottom:739.889067pt;}
.y97{bottom:739.889867pt;}
.y10b{bottom:739.890533pt;}
.yf9{bottom:740.103867pt;}
.y1a7{bottom:745.777867pt;}
.y1db{bottom:747.799333pt;}
.y16d{bottom:749.265067pt;}
.ybf{bottom:757.222267pt;}
.y68{bottom:757.222400pt;}
.y96{bottom:757.223200pt;}
.y10a{bottom:757.223867pt;}
.yea{bottom:757.228533pt;}
.yf8{bottom:757.437200pt;}
.y1a6{bottom:759.774533pt;}
.y3c{bottom:760.407733pt;}
.y1da{bottom:765.127333pt;}
.y16c{bottom:767.049067pt;}
.y2f{bottom:772.058400pt;}
.y1a5{bottom:773.771200pt;}
.ybe{bottom:774.555600pt;}
.y95{bottom:774.556533pt;}
.y109{bottom:774.557200pt;}
.yf7{bottom:774.770533pt;}
.y3b{bottom:777.741067pt;}
.y2{bottom:781.661334pt;}
.y1d9{bottom:782.455333pt;}
.y16b{bottom:784.833067pt;}
.y1a4{bottom:791.555200pt;}
.ye3{bottom:791.888933pt;}
.y67{bottom:791.889067pt;}
.y94{bottom:791.889867pt;}
.y108{bottom:791.890533pt;}
.y3a{bottom:795.074400pt;}
.y2e{bottom:801.414400pt;}
.y16a{bottom:802.617067pt;}
.y1a3{bottom:805.551867pt;}
.ybd{bottom:809.222267pt;}
.y66{bottom:809.222400pt;}
.y93{bottom:809.223200pt;}
.y107{bottom:809.223867pt;}
.yf6{bottom:809.437200pt;}
.y169{bottom:816.613733pt;}
.y1d8{bottom:817.122000pt;}
.y1a2{bottom:823.335867pt;}
.ybc{bottom:826.555600pt;}
.y65{bottom:826.555733pt;}
.y92{bottom:826.556533pt;}
.y106{bottom:826.557200pt;}
.yf5{bottom:826.770533pt;}
.y168{bottom:830.610400pt;}
.y2d{bottom:830.774400pt;}
.y39{bottom:831.301067pt;}
.y1a1{bottom:837.332533pt;}
.ybb{bottom:843.888933pt;}
.y64{bottom:843.889067pt;}
.y91{bottom:843.889867pt;}
.y105{bottom:843.890533pt;}
.yf4{bottom:844.103867pt;}
.y167{bottom:848.394400pt;}
.y38{bottom:848.634400pt;}
.y1a0{bottom:855.116533pt;}
.y1{bottom:859.312000pt;}
.yba{bottom:861.222267pt;}
.y63{bottom:861.222400pt;}
.y90{bottom:861.223200pt;}
.y104{bottom:861.223867pt;}
.yf3{bottom:861.437200pt;}
.y166{bottom:862.391067pt;}
.y37{bottom:865.967733pt;}
.y19f{bottom:869.113200pt;}
.y1d7{bottom:869.116533pt;}
.yb9{bottom:878.555600pt;}
.y62{bottom:878.555733pt;}
.ye8{bottom:878.556533pt;}
.y103{bottom:878.557200pt;}
.yf2{bottom:878.770533pt;}
.y32{bottom:879.692533pt;}
.y165{bottom:880.175067pt;}
.y1d6{bottom:883.113200pt;}
.y19e{bottom:886.897200pt;}
.y164{bottom:894.171733pt;}
.yb8{bottom:895.888933pt;}
.y61{bottom:895.889067pt;}
.y8f{bottom:895.889867pt;}
.y102{bottom:895.890533pt;}
.yf1{bottom:896.103867pt;}
.y19d{bottom:900.893867pt;}
.y1d5{bottom:900.897200pt;}
.y31{bottom:909.052533pt;}
.y163{bottom:911.955733pt;}
.yb7{bottom:913.222267pt;}
.y60{bottom:913.222400pt;}
.y8e{bottom:913.223200pt;}
.y101{bottom:913.223867pt;}
.yf0{bottom:913.437200pt;}
.y1d4{bottom:914.893867pt;}
.y19c{bottom:918.677867pt;}
.y162{bottom:925.952400pt;}
.y36{bottom:928.655333pt;}
.yb6{bottom:930.555600pt;}
.y5f{bottom:930.555733pt;}
.y8d{bottom:930.556533pt;}
.y100{bottom:930.557200pt;}
.yef{bottom:930.770533pt;}
.y19b{bottom:932.674533pt;}
.y1d3{bottom:932.677867pt;}
.y30{bottom:938.412533pt;}
.y161{bottom:943.736400pt;}
.yb5{bottom:947.888933pt;}
.y5e{bottom:947.889067pt;}
.y8c{bottom:947.889867pt;}
.yff{bottom:947.890533pt;}
.yee{bottom:948.103867pt;}
.y19a{bottom:950.458533pt;}
.y1d2{bottom:950.461867pt;}
.y160{bottom:957.733067pt;}
.y35{bottom:959.322000pt;}
.y199{bottom:964.455200pt;}
.y1d1{bottom:964.458533pt;}
.yb4{bottom:965.222267pt;}
.y5d{bottom:965.222400pt;}
.y8b{bottom:965.223200pt;}
.yfe{bottom:965.223867pt;}
.yed{bottom:965.437200pt;}
.y198{bottom:982.239200pt;}
.y1d0{bottom:982.242533pt;}
.yb3{bottom:982.555600pt;}
.y5c{bottom:982.555733pt;}
.y8a{bottom:982.556533pt;}
.yfd{bottom:982.557200pt;}
.yec{bottom:982.770533pt;}
.y26{bottom:987.334933pt;}
.y34{bottom:989.988667pt;}
.y15f{bottom:992.846000pt;}
.y197{bottom:996.239200pt;}
.yb2{bottom:999.888933pt;}
.y5b{bottom:999.889067pt;}
.y89{bottom:999.889867pt;}
.yfc{bottom:999.890533pt;}
.yeb{bottom:1000.103867pt;}
.y136{bottom:1051.268800pt;}
.yb1{bottom:1051.275600pt;}
.h14{height:19.703578pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h18{height:33.416472pt;}
.h1b{height:33.796875pt;}
.h1c{height:37.230262pt;}
.h13{height:37.552083pt;}
.h10{height:39.040000pt;}
.hd{height:39.440000pt;}
.h7{height:40.853333pt;}
.h1a{height:41.226562pt;}
.h17{height:41.760000pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h12{height:44.080000pt;}
.h15{height:45.807292pt;}
.hb{height:46.400000pt;}
.h1f{height:46.848000pt;}
.hf{height:47.786667pt;}
.h16{height:48.720000pt;}
.h2{height:49.024000pt;}
.h11{height:55.680000pt;}
.h1e{height:67.898497pt;}
.h5{height:69.450667pt;}
.hc{height:83.520000pt;}
.he{height:92.800000pt;}
.h4{height:105.826671pt;}
.h1d{height:275.452000pt;}
.h19{height:540.445333pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w4{width:590.538667pt;}
.w5{width:661.417333pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:45.354267pt;}
.x5{left:48.987600pt;}
.x9{left:49.936267pt;}
.x57{left:64.255973pt;}
.x4d{left:67.754378pt;}
.x4e{left:72.711528pt;}
.x6{left:74.083333pt;}
.xd{left:86.929200pt;}
.x1{left:90.706667pt;}
.x7{left:92.763467pt;}
.x2{left:94.486667pt;}
.x16{left:105.835867pt;}
.x10{left:114.430933pt;}
.x2a{left:118.096667pt;}
.x55{left:130.447600pt;}
.x2b{left:141.696019pt;}
.x13{left:155.958933pt;}
.x4{left:180.874667pt;}
.xe{left:186.814533pt;}
.x4c{left:193.097568pt;}
.x4b{left:201.901467pt;}
.x42{left:204.405612pt;}
.x19{left:221.424682pt;}
.x1a{left:227.124667pt;}
.x3f{left:229.252984pt;}
.x18{left:232.340421pt;}
.x40{left:235.743546pt;}
.x17{left:242.520533pt;}
.x41{left:262.265467pt;}
.x52{left:271.490000pt;}
.xa{left:273.385867pt;}
.x26{left:275.452667pt;}
.x27{left:286.498920pt;}
.x28{left:288.148145pt;}
.x4f{left:291.236400pt;}
.x4a{left:292.756667pt;}
.x1b{left:295.751441pt;}
.x2d{left:301.979403pt;}
.x2c{left:307.757626pt;}
.x3a{left:309.016832pt;}
.x29{left:314.512027pt;}
.x39{left:328.818994pt;}
.x54{left:335.121467pt;}
.x2e{left:337.740313pt;}
.x56{left:338.975067pt;}
.x49{left:345.659467pt;}
.x2f{left:361.790532pt;}
.x51{left:367.794477pt;}
.x53{left:380.703076pt;}
.x11{left:387.407600pt;}
.x14{left:395.752267pt;}
.x34{left:399.089067pt;}
.x23{left:401.803067pt;}
.x3{left:404.408000pt;}
.x12{left:406.300933pt;}
.x24{left:415.969797pt;}
.xf{left:428.982533pt;}
.x25{left:437.219893pt;}
.xb{left:447.863333pt;}
.x38{left:458.564133pt;}
.x45{left:467.684533pt;}
.x36{left:474.614539pt;}
.x35{left:481.045333pt;}
.x15{left:483.992267pt;}
.x1d{left:485.003226pt;}
.x33{left:486.028249pt;}
.x20{left:487.220912pt;}
.x3c{left:489.126615pt;}
.x3b{left:490.382427pt;}
.x3d{left:492.193439pt;}
.x21{left:493.153379pt;}
.x1c{left:495.218933pt;}
.x3e{left:499.384611pt;}
.x1e{left:506.407565pt;}
.x43{left:517.037368pt;}
.x44{left:520.302477pt;}
.x37{left:530.130563pt;}
.x1f{left:531.300196pt;}
.x22{left:542.238608pt;}
.x30{left:546.302111pt;}
.x50{left:565.750000pt;}
.x31{left:570.340466pt;}
.x32{left:578.906947pt;}
.x47{left:602.653333pt;}
.x48{left:654.265867pt;}
.x46{left:658.290256pt;}
.xc{left:730.539733pt;}
}




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