
    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_180048697551e9ecfd4ab93d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.183105;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_37f52e27fd321335c2a228e9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_749d900d31cc261f3d3434f9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.122070;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_a159c54f04479aa2a2943cd9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.183105;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_c29eee72bd8d1f02a9b856aa.woff')format("woff");}.ff5{font-family:ff5;line-height:1.070312;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_7169cb4e6d0a7b368902367c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.183105;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_cf1834efd48d781e154b6886.woff')format("woff");}.ff7{font-family:ff7;line-height:1.075195;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_0b8f2e4ea87d08d3fdb49e62.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ab52d06e2338ecbe3f9db69d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.880371;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_eaa0946854d62b248e8f9cad.woff')format("woff");}.ffa{font-family:ffa;line-height:1.099609;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-11.982000px;}
.v5{vertical-align:-9.984000px;}
.v8{vertical-align:-7.945800px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:9.984000px;}
.v3{vertical-align:13.979400px;}
.v1{vertical-align:16.800000px;}
.v7{vertical-align:21.967440px;}
.v6{vertical-align:28.020000px;}
.v4{vertical-align:36.000000px;}
.lsc{letter-spacing:-7.371000px;}
.ls22{letter-spacing:-5.280000px;}
.ls36{letter-spacing:-4.260000px;}
.ls1f{letter-spacing:-3.660000px;}
.ls55{letter-spacing:-3.420000px;}
.ls1c{letter-spacing:-3.240000px;}
.ls64{letter-spacing:-3.180000px;}
.ls6e{letter-spacing:-2.961000px;}
.ls40{letter-spacing:-2.940000px;}
.ls12{letter-spacing:-2.898000px;}
.ls1e{letter-spacing:-2.880000px;}
.ls37{letter-spacing:-2.760000px;}
.ls45{letter-spacing:-2.700000px;}
.ls4b{letter-spacing:-2.580000px;}
.ls43{letter-spacing:-2.520000px;}
.ls6c{letter-spacing:-2.457000px;}
.ls11{letter-spacing:-2.277000px;}
.ls42{letter-spacing:-2.220000px;}
.ls47{letter-spacing:-2.100000px;}
.ls6d{letter-spacing:-2.079000px;}
.ls32{letter-spacing:-2.040000px;}
.ls4a{letter-spacing:-1.980000px;}
.ls33{letter-spacing:-1.920000px;}
.ls23{letter-spacing:-1.800000px;}
.ls44{letter-spacing:-1.680000px;}
.ls49{letter-spacing:-1.560000px;}
.ls68{letter-spacing:-1.518000px;}
.ls25{letter-spacing:-1.380000px;}
.ls6f{letter-spacing:-1.320000px;}
.ls29{letter-spacing:-1.140000px;}
.ls35{letter-spacing:-1.080000px;}
.ls2c{letter-spacing:-1.020000px;}
.ls2d{letter-spacing:-0.864000px;}
.ls2a{letter-spacing:-0.780000px;}
.ls26{letter-spacing:-0.720000px;}
.ls5b{letter-spacing:-0.600000px;}
.ls65{letter-spacing:-0.540000px;}
.ls27{letter-spacing:-0.480000px;}
.ls61{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.300000px;}
.ls6{letter-spacing:-0.240000px;}
.ls28{letter-spacing:-0.120000px;}
.ls69{letter-spacing:-0.081000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000300px;}
.ls10{letter-spacing:0.001110px;}
.ls17{letter-spacing:0.001200px;}
.ls52{letter-spacing:0.001800px;}
.ls1b{letter-spacing:0.047400px;}
.ls41{letter-spacing:0.060000px;}
.ls56{letter-spacing:0.130200px;}
.ls3a{letter-spacing:0.138000px;}
.ls4c{letter-spacing:0.144600px;}
.ls58{letter-spacing:0.147000px;}
.ls39{letter-spacing:0.156000px;}
.ls3e{letter-spacing:0.156600px;}
.ls1a{letter-spacing:0.168600px;}
.ls31{letter-spacing:0.182400px;}
.ls60{letter-spacing:0.186000px;}
.ls3c{letter-spacing:0.189600px;}
.ls5e{letter-spacing:0.192000px;}
.ls38{letter-spacing:0.199800px;}
.ls59{letter-spacing:0.201000px;}
.ls3b{letter-spacing:0.207000px;}
.ls16{letter-spacing:0.209880px;}
.ls2f{letter-spacing:0.210000px;}
.ls57{letter-spacing:0.213000px;}
.ls4d{letter-spacing:0.217200px;}
.ls3d{letter-spacing:0.221400px;}
.ls3f{letter-spacing:0.225000px;}
.ls54{letter-spacing:0.233400px;}
.ls20{letter-spacing:0.240000px;}
.ls19{letter-spacing:0.255000px;}
.ls4e{letter-spacing:0.275400px;}
.ls24{letter-spacing:0.300000px;}
.ls5f{letter-spacing:0.306000px;}
.ls53{letter-spacing:0.306600px;}
.ls30{letter-spacing:0.310800px;}
.ls5d{letter-spacing:0.322800px;}
.ls6a{letter-spacing:0.346500px;}
.ls62{letter-spacing:0.360000px;}
.ls46{letter-spacing:0.420000px;}
.ls5c{letter-spacing:0.480000px;}
.ls18{letter-spacing:0.540000px;}
.ls48{letter-spacing:0.720000px;}
.ls66{letter-spacing:0.840000px;}
.ls5a{letter-spacing:0.960000px;}
.ls50{letter-spacing:1.020000px;}
.ls63{letter-spacing:1.080000px;}
.ls5{letter-spacing:1.260000px;}
.ls67{letter-spacing:1.380000px;}
.ls51{letter-spacing:1.620000px;}
.ls1d{letter-spacing:1.740000px;}
.ls34{letter-spacing:1.800000px;}
.ls2{letter-spacing:2.079000px;}
.ls21{letter-spacing:2.280000px;}
.lsa{letter-spacing:3.225000px;}
.ls13{letter-spacing:4.125000px;}
.ls14{letter-spacing:4.186200px;}
.ls0{letter-spacing:4.200000px;}
.ls9{letter-spacing:4.512000px;}
.ls4f{letter-spacing:4.650000px;}
.ls7{letter-spacing:5.760000px;}
.ls8{letter-spacing:5.880000px;}
.ls3{letter-spacing:6.000000px;}
.lsb{letter-spacing:6.300000px;}
.lsf{letter-spacing:7.859100px;}
.lse{letter-spacing:7.935000px;}
.ls4{letter-spacing:8.400000px;}
.ls6b{letter-spacing:8.820000px;}
.ls2e{letter-spacing:169.020000px;}
.ls15{letter-spacing:181.140000px;}
.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;}
}
.ws26{word-spacing:-60.000000px;}
.ws78{word-spacing:-26.523000px;}
.ws4e{word-spacing:-25.725000px;}
.ws14{word-spacing:-25.200000px;}
.ws9{word-spacing:-24.300000px;}
.ws7e{word-spacing:-22.860000px;}
.ws1{word-spacing:-22.740000px;}
.ws77{word-spacing:-22.680000px;}
.ws0{word-spacing:-22.620000px;}
.ws11{word-spacing:-19.389000px;}
.wsa{word-spacing:-18.102000px;}
.ws7d{word-spacing:-17.703000px;}
.ws28{word-spacing:-17.400000px;}
.ws5d{word-spacing:-17.340000px;}
.ws2a{word-spacing:-17.160000px;}
.ws25{word-spacing:-17.100000px;}
.wsf{word-spacing:-17.043000px;}
.ws1f{word-spacing:-16.860000px;}
.ws2d{word-spacing:-16.740000px;}
.ws2e{word-spacing:-16.620000px;}
.ws31{word-spacing:-16.560000px;}
.ws46{word-spacing:-16.380000px;}
.ws2c{word-spacing:-16.140000px;}
.ws30{word-spacing:-16.080000px;}
.ws39{word-spacing:-15.840000px;}
.ws3b{word-spacing:-15.780000px;}
.ws2f{word-spacing:-15.720000px;}
.ws7b{word-spacing:-15.561000px;}
.ws76{word-spacing:-15.525000px;}
.ws2b{word-spacing:-15.480000px;}
.wsb{word-spacing:-15.390000px;}
.ws45{word-spacing:-15.300000px;}
.ws43{word-spacing:-15.180000px;}
.ws29{word-spacing:-15.060000px;}
.ws3a{word-spacing:-14.940000px;}
.ws47{word-spacing:-14.880000px;}
.ws23{word-spacing:-14.820000px;}
.wsd{word-spacing:-14.766000px;}
.ws41{word-spacing:-14.640000px;}
.ws42{word-spacing:-14.340000px;}
.ws48{word-spacing:-14.280000px;}
.ws44{word-spacing:-14.160000px;}
.wse{word-spacing:-14.145000px;}
.ws21{word-spacing:-13.980000px;}
.ws40{word-spacing:-13.920000px;}
.ws59{word-spacing:-13.620000px;}
.ws7a{word-spacing:-13.482000px;}
.ws55{word-spacing:-13.440000px;}
.ws32{word-spacing:-13.338000px;}
.ws22{word-spacing:-13.200000px;}
.ws79{word-spacing:-13.104000px;}
.ws3c{word-spacing:-12.600000px;}
.ws7f{word-spacing:-12.300000px;}
.ws10{word-spacing:-11.303787px;}
.ws80{word-spacing:-9.829380px;}
.ws27{word-spacing:-9.540000px;}
.ws5{word-spacing:-8.400000px;}
.ws1e{word-spacing:-8.261400px;}
.ws24{word-spacing:-6.912048px;}
.ws7c{word-spacing:-6.300000px;}
.ws4{word-spacing:-6.000000px;}
.wsc{word-spacing:-4.512000px;}
.ws8{word-spacing:-4.200000px;}
.ws3{word-spacing:-2.079000px;}
.ws3d{word-spacing:-1.800000px;}
.ws53{word-spacing:-1.620000px;}
.ws6{word-spacing:-1.260000px;}
.ws52{word-spacing:-1.020000px;}
.ws83{word-spacing:-0.900000px;}
.ws4c{word-spacing:-0.720000px;}
.ws56{word-spacing:-0.540000px;}
.ws4a{word-spacing:-0.420000px;}
.ws34{word-spacing:-0.240000px;}
.ws49{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws4d{word-spacing:0.120000px;}
.ws7{word-spacing:0.240000px;}
.ws35{word-spacing:0.480000px;}
.ws5a{word-spacing:0.600000px;}
.ws37{word-spacing:0.864000px;}
.ws36{word-spacing:1.020000px;}
.ws51{word-spacing:1.140000px;}
.ws82{word-spacing:1.320000px;}
.ws1d{word-spacing:1.380000px;}
.ws54{word-spacing:1.560000px;}
.ws4b{word-spacing:2.100000px;}
.ws3e{word-spacing:2.760000px;}
.ws33{word-spacing:3.240000px;}
.ws17{word-spacing:4.002000px;}
.ws13{word-spacing:4.554000px;}
.ws81{word-spacing:4.800000px;}
.ws15{word-spacing:7.314000px;}
.ws12{word-spacing:8.280000px;}
.ws19{word-spacing:10.764000px;}
.ws16{word-spacing:19.182000px;}
.ws1a{word-spacing:20.907000px;}
.ws1b{word-spacing:21.528000px;}
.ws1c{word-spacing:26.772000px;}
.ws18{word-spacing:31.395000px;}
.ws5b{word-spacing:76.134000px;}
.ws57{word-spacing:102.774000px;}
.ws6b{word-spacing:122.670000px;}
.ws4f{word-spacing:122.736000px;}
.ws38{word-spacing:132.576000px;}
.ws20{word-spacing:138.936000px;}
.ws50{word-spacing:139.320000px;}
.ws3f{word-spacing:139.716000px;}
.ws6a{word-spacing:146.514000px;}
.ws5c{word-spacing:147.780000px;}
.ws6e{word-spacing:155.298000px;}
.ws58{word-spacing:167.340000px;}
.ws75{word-spacing:194.640000px;}
.ws72{word-spacing:203.268000px;}
.ws69{word-spacing:206.466000px;}
.ws73{word-spacing:237.510000px;}
.ws74{word-spacing:253.836000px;}
.ws64{word-spacing:256.308000px;}
.ws71{word-spacing:262.506000px;}
.ws66{word-spacing:266.484000px;}
.ws70{word-spacing:290.082000px;}
.ws6c{word-spacing:296.688000px;}
.ws6d{word-spacing:298.680000px;}
.ws6f{word-spacing:316.602000px;}
.ws63{word-spacing:316.962000px;}
.ws65{word-spacing:327.408000px;}
.ws60{word-spacing:333.804000px;}
.ws68{word-spacing:366.540000px;}
.ws5f{word-spacing:400.518000px;}
.ws62{word-spacing:404.058000px;}
.ws61{word-spacing:404.118000px;}
.ws67{word-spacing:417.720000px;}
.ws5e{word-spacing:433.104000px;}
._56{margin-left:-12.414300px;}
._57{margin-left:-8.151600px;}
._10{margin-left:-6.872400px;}
._15{margin-left:-5.082600px;}
._5{margin-left:-4.044600px;}
._3{margin-left:-2.772000px;}
._4{margin-left:-1.134000px;}
._7{width:1.194000px;}
._1{width:2.400000px;}
._a{width:3.620400px;}
._8{width:4.692000px;}
._6{width:6.150000px;}
._9{width:7.236000px;}
._b{width:8.238000px;}
._f{width:9.574200px;}
._13{width:10.971000px;}
._14{width:12.004200px;}
._1d{width:13.307700px;}
._11{width:14.324100px;}
._28{width:16.221900px;}
._17{width:18.264000px;}
._1a{width:20.962200px;}
._1c{width:24.179700px;}
._1b{width:26.726700px;}
._59{width:28.009500px;}
._18{width:30.560100px;}
._19{width:31.650900px;}
._58{width:33.597900px;}
._1e{width:43.445160px;}
._53{width:63.315000px;}
._52{width:69.414600px;}
._54{width:81.829200px;}
._55{width:83.469000px;}
._c{width:85.554000px;}
._4d{width:91.995000px;}
._3b{width:99.595800px;}
._23{width:101.695800px;}
._20{width:104.515800px;}
._3e{width:105.949800px;}
._3d{width:113.473200px;}
._43{width:115.430400px;}
._41{width:117.358800px;}
._3f{width:119.088600px;}
._51{width:120.756600px;}
._4e{width:123.057000px;}
._38{width:125.155200px;}
._50{width:127.219200px;}
._3a{width:130.362600px;}
._45{width:132.451200px;}
._46{width:133.867200px;}
._4a{width:136.641000px;}
._3c{width:137.929200px;}
._49{width:141.468600px;}
._39{width:143.419200px;}
._42{width:145.302600px;}
._44{width:147.427200px;}
._40{width:150.576600px;}
._48{width:155.185200px;}
._47{width:160.431000px;}
._4c{width:162.432600px;}
._2f{width:173.127600px;}
._4f{width:182.244600px;}
._4b{width:186.442200px;}
._33{width:192.909000px;}
._2d{width:200.221200px;}
._31{width:217.657200px;}
._35{width:246.111000px;}
._e{width:260.610000px;}
._21{width:280.014000px;}
._32{width:291.259200px;}
._2e{width:301.177200px;}
._34{width:312.348600px;}
._24{width:319.656000px;}
._30{width:322.416600px;}
._37{width:330.484800px;}
._36{width:336.675000px;}
._2a{width:438.075000px;}
._25{width:456.019200px;}
._29{width:457.254600px;}
._27{width:458.452800px;}
._22{width:460.020000px;}
._16{width:461.248200px;}
._d{width:462.850200px;}
._2c{width:497.853600px;}
._2b{width:499.333200px;}
._0{width:578.400000px;}
._2{width:956.206200px;}
._12{width:958.831200px;}
._1f{width:962.881200px;}
._26{width:964.861200px;}
.fc0{color:rgb(35,31,32);}
.fse{font-size:27.984000px;}
.fsc{font-size:29.400000px;}
.fsa{font-size:31.482000px;}
.fsd{font-size:34.980000px;}
.fs9{font-size:40.227000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs7{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y1e4{bottom:106.165350px;}
.y208{bottom:106.168650px;}
.y44{bottom:106.210950px;}
.yd3{bottom:106.264650px;}
.y1f{bottom:106.277250px;}
.y107{bottom:106.284450px;}
.yb0{bottom:106.290450px;}
.y8d{bottom:106.296300px;}
.y1bd{bottom:106.296450px;}
.y246{bottom:106.318650px;}
.y68{bottom:106.318950px;}
.y228{bottom:106.509600px;}
.y12b{bottom:113.071650px;}
.y106{bottom:123.537450px;}
.yaf{bottom:123.543450px;}
.y26b{bottom:125.442750px;}
.y245{bottom:126.028650px;}
.y1e{bottom:126.137250px;}
.y207{bottom:126.540900px;}
.y8c{bottom:126.544800px;}
.y1bc{bottom:126.544950px;}
.y1e3{bottom:126.589350px;}
.y43{bottom:126.703950px;}
.y67{bottom:127.260450px;}
.y14f{bottom:127.588650px;}
.y19c{bottom:127.639350px;}
.yd2{bottom:128.154900px;}
.y178{bottom:129.473850px;}
.y12a{bottom:131.071650px;}
.y227{bottom:134.276850px;}
.y105{bottom:140.790450px;}
.yae{bottom:140.796450px;}
.y26a{bottom:145.692750px;}
.y244{bottom:145.738650px;}
.y1d{bottom:145.997250px;}
.y206{bottom:146.913150px;}
.y1e2{bottom:147.013350px;}
.y42{bottom:147.196950px;}
.y66{bottom:148.201950px;}
.y19b{bottom:148.925850px;}
.y14e{bottom:148.926900px;}
.yd1{bottom:150.045150px;}
.y177{bottom:152.761350px;}
.y129{bottom:153.796650px;}
.y226{bottom:154.814850px;}
.y104{bottom:158.043450px;}
.yad{bottom:158.046450px;}
.y243{bottom:165.448650px;}
.y1c{bottom:165.857250px;}
.y269{bottom:165.942750px;}
.y205{bottom:167.285400px;}
.y1e1{bottom:167.437350px;}
.y41{bottom:167.689950px;}
.y65{bottom:169.143450px;}
.y19a{bottom:170.212350px;}
.y14d{bottom:170.265150px;}
.y1bb{bottom:170.550750px;}
.y8b{bottom:170.557050px;}
.yd0{bottom:171.935400px;}
.y103{bottom:175.296450px;}
.y176{bottom:176.048850px;}
.y128{bottom:176.521650px;}
.yac{bottom:178.294950px;}
.y225{bottom:182.582100px;}
.y242{bottom:185.158650px;}
.y1b{bottom:185.717250px;}
.y268{bottom:186.192750px;}
.y204{bottom:187.657650px;}
.y1e0{bottom:187.861350px;}
.y40{bottom:188.182950px;}
.y64{bottom:190.089900px;}
.y1ba{bottom:191.216250px;}
.y8a{bottom:191.475300px;}
.y199{bottom:191.498850px;}
.y14c{bottom:191.603400px;}
.ycf{bottom:193.825650px;}
.y102{bottom:195.544950px;}
.y127{bottom:199.259700px;}
.y175{bottom:199.336350px;}
.y224{bottom:203.120100px;}
.y241{bottom:204.868650px;}
.y1a{bottom:205.577250px;}
.y203{bottom:208.029900px;}
.y1df{bottom:208.285350px;}
.y3f{bottom:208.675950px;}
.y63{bottom:211.041150px;}
.y1b9{bottom:211.881750px;}
.y89{bottom:212.393550px;}
.y198{bottom:212.785350px;}
.y14b{bottom:212.941650px;}
.yce{bottom:215.715900px;}
.y126{bottom:217.259700px;}
.y267{bottom:219.192750px;}
.y174{bottom:222.623850px;}
.y240{bottom:224.578650px;}
.y202{bottom:228.402150px;}
.y1de{bottom:228.709350px;}
.y3e{bottom:229.168950px;}
.y223{bottom:230.887350px;}
.y62{bottom:231.982650px;}
.y88{bottom:233.311800px;}
.y197{bottom:234.071850px;}
.y14a{bottom:234.279900px;}
.ycd{bottom:237.606150px;}
.y19{bottom:238.187250px;}
.y125{bottom:239.984700px;}
.y23f{bottom:244.288650px;}
.y173{bottom:245.911350px;}
.y201{bottom:248.774400px;}
.y1dd{bottom:249.133350px;}
.y3d{bottom:249.661950px;}
.y222{bottom:251.425350px;}
.y61{bottom:252.929100px;}
.y87{bottom:254.230050px;}
.y196{bottom:255.358350px;}
.y149{bottom:255.618150px;}
.ycc{bottom:259.496400px;}
.y266{bottom:260.697750px;}
.y1b8{bottom:260.728950px;}
.y124{bottom:262.722600px;}
.y23e{bottom:263.998650px;}
.y200{bottom:269.146650px;}
.y172{bottom:269.198850px;}
.y1dc{bottom:269.557350px;}
.y3c{bottom:270.154950px;}
.y60{bottom:273.875550px;}
.y86{bottom:275.148300px;}
.y195{bottom:276.644850px;}
.y148{bottom:276.956400px;}
.y221{bottom:279.192600px;}
.y265{bottom:280.197750px;}
.yff{bottom:280.522650px;}
.y123{bottom:280.722600px;}
.y101{bottom:280.957650px;}
.ycb{bottom:281.386650px;}
.y1b7{bottom:283.453950px;}
.y23d{bottom:283.708650px;}
.y18{bottom:287.807250px;}
.y1ff{bottom:289.518900px;}
.yab{bottom:289.911300px;}
.y1db{bottom:289.981350px;}
.y3b{bottom:290.647950px;}
.y171{bottom:292.486350px;}
.y5f{bottom:294.821850px;}
.y85{bottom:296.066400px;}
.y194{bottom:297.931350px;}
.y147{bottom:298.294650px;}
.yfe{bottom:298.522650px;}
.y100{bottom:298.957650px;}
.y264{bottom:299.697750px;}
.y220{bottom:299.730600px;}
.yca{bottom:303.276900px;}
.y122{bottom:303.447600px;}
.y1b6{bottom:306.178950px;}
.y17{bottom:309.167250px;}
.y1fe{bottom:309.891150px;}
.yaa{bottom:310.162800px;}
.y1da{bottom:310.405350px;}
.y3a{bottom:311.140950px;}
.y170{bottom:315.773850px;}
.y5e{bottom:315.807600px;}
.y23c{bottom:316.183650px;}
.y84{bottom:316.984650px;}
.y263{bottom:319.197750px;}
.y193{bottom:319.217850px;}
.y146{bottom:319.632900px;}
.yfd{bottom:321.697650px;}
.yc9{bottom:325.167150px;}
.y121{bottom:326.185650px;}
.y21f{bottom:327.497850px;}
.y1b5{bottom:328.903950px;}
.y1fd{bottom:330.263400px;}
.ya9{bottom:330.414300px;}
.y16{bottom:330.489450px;}
.y1d9{bottom:330.829350px;}
.y39{bottom:331.633950px;}
.y5d{bottom:336.749100px;}
.y83{bottom:337.902900px;}
.y262{bottom:338.697750px;}
.y16f{bottom:339.061350px;}
.y192{bottom:340.504350px;}
.y145{bottom:340.971150px;}
.y120{bottom:344.185650px;}
.yfa{bottom:344.425200px;}
.yfc{bottom:344.860200px;}
.yc8{bottom:347.057400px;}
.y21e{bottom:348.035850px;}
.y15{bottom:350.349450px;}
.y1fc{bottom:350.635650px;}
.ya8{bottom:350.665800px;}
.y1d8{bottom:351.253350px;}
.y1b4{bottom:351.628950px;}
.y38{bottom:352.126950px;}
.y5c{bottom:357.690600px;}
.y261{bottom:358.197750px;}
.y82{bottom:358.821150px;}
.y191{bottom:361.790850px;}
.y144{bottom:362.309400px;}
.y16e{bottom:362.348850px;}
.yf9{bottom:362.425200px;}
.yfb{bottom:362.860200px;}
.y11f{bottom:366.910650px;}
.yc7{bottom:368.947650px;}
.y14{bottom:370.209450px;}
.ya7{bottom:370.917300px;}
.y1fb{bottom:371.007900px;}
.y1d7{bottom:371.677350px;}
.y37{bottom:372.619950px;}
.y23b{bottom:374.161050px;}
.y1b3{bottom:374.353950px;}
.y21d{bottom:375.803100px;}
.y260{bottom:377.697750px;}
.y5b{bottom:378.632100px;}
.y81{bottom:379.739400px;}
.y190{bottom:383.077350px;}
.y143{bottom:383.647650px;}
.yf8{bottom:385.600200px;}
.y16d{bottom:385.636350px;}
.y11e{bottom:389.648550px;}
.y13{bottom:390.069450px;}
.yc6{bottom:390.837900px;}
.ya6{bottom:391.168800px;}
.y1fa{bottom:391.380150px;}
.y1d6{bottom:392.101350px;}
.y36{bottom:393.112950px;}
.y21c{bottom:396.341100px;}
.y1b2{bottom:397.078950px;}
.y25f{bottom:397.197750px;}
.y5a{bottom:399.573600px;}
.y80{bottom:400.657650px;}
.y23a{bottom:401.377050px;}
.y18f{bottom:404.363850px;}
.y142{bottom:404.985900px;}
.y11d{bottom:407.648550px;}
.yf5{bottom:408.327600px;}
.yf7{bottom:408.762600px;}
.y16c{bottom:408.923850px;}
.y12{bottom:409.929450px;}
.ya5{bottom:411.420300px;}
.y1f9{bottom:411.752400px;}
.y1d5{bottom:412.525350px;}
.yc5{bottom:412.728150px;}
.y35{bottom:413.605950px;}
.y25e{bottom:416.697750px;}
.y1b1{bottom:419.803950px;}
.y59{bottom:420.515100px;}
.y7f{bottom:421.443600px;}
.y21b{bottom:424.108350px;}
.y18e{bottom:425.650350px;}
.y141{bottom:426.324150px;}
.yf4{bottom:426.327600px;}
.yf6{bottom:426.762600px;}
.y11{bottom:429.789450px;}
.y11c{bottom:430.373550px;}
.ya4{bottom:431.671800px;}
.y1f8{bottom:432.124650px;}
.y16b{bottom:432.211350px;}
.y1d4{bottom:432.949350px;}
.y34{bottom:434.098950px;}
.yc4{bottom:434.618400px;}
.y25d{bottom:436.197750px;}
.y58{bottom:441.456600px;}
.y7e{bottom:442.367850px;}
.y1b0{bottom:442.528950px;}
.y18d{bottom:446.936850px;}
.y140{bottom:447.662400px;}
.yf3{bottom:449.502600px;}
.y10{bottom:449.649450px;}
.y21a{bottom:451.875600px;}
.ya3{bottom:451.923300px;}
.y1f7{bottom:452.496900px;}
.y11b{bottom:453.098550px;}
.y1d3{bottom:453.373350px;}
.y33{bottom:454.591950px;}
.y16a{bottom:455.498850px;}
.y25c{bottom:455.697750px;}
.yc3{bottom:456.508650px;}
.y57{bottom:462.398100px;}
.y7d{bottom:463.292100px;}
.y1af{bottom:465.253950px;}
.y18c{bottom:468.223350px;}
.y13f{bottom:469.000650px;}
.yf{bottom:469.509450px;}
.ya2{bottom:472.174800px;}
.yf0{bottom:472.236450px;}
.y219{bottom:472.413600px;}
.yf2{bottom:472.671450px;}
.y1d2{bottom:473.797350px;}
.y32{bottom:475.084950px;}
.y25b{bottom:475.197750px;}
.y11a{bottom:475.830150px;}
.yc2{bottom:478.398900px;}
.y169{bottom:478.786350px;}
.y56{bottom:483.339600px;}
.y7c{bottom:484.216350px;}
.y1ae{bottom:487.978950px;}
.ye{bottom:489.369450px;}
.y18b{bottom:489.509850px;}
.yef{bottom:490.236450px;}
.y13e{bottom:490.338900px;}
.yf1{bottom:490.671450px;}
.y239{bottom:490.828350px;}
.ya1{bottom:492.426300px;}
.y218{bottom:492.951600px;}
.y119{bottom:493.830150px;}
.y1f6{bottom:494.121300px;}
.y1d1{bottom:494.221350px;}
.y25a{bottom:494.697750px;}
.y31{bottom:495.577950px;}
.yc1{bottom:500.289150px;}
.y55{bottom:504.281100px;}
.y7b{bottom:505.140600px;}
.yd{bottom:509.229450px;}
.y1ad{bottom:510.703950px;}
.y238{bottom:511.287600px;}
.y13d{bottom:511.677150px;}
.yee{bottom:513.411450px;}
.y259{bottom:514.197750px;}
.y1d0{bottom:514.645350px;}
.y30{bottom:516.070950px;}
.y217{bottom:520.718850px;}
.yc0{bottom:522.179400px;}
.y118{bottom:524.168100px;}
.y7a{bottom:526.064850px;}
.y166{bottom:530.071500px;}
.y168{bottom:530.506500px;}
.y13c{bottom:533.015400px;}
.y1ac{bottom:533.428950px;}
.y258{bottom:533.697750px;}
.y1cf{bottom:535.069350px;}
.yed{bottom:536.136450px;}
.y2f{bottom:536.563950px;}
.y18a{bottom:538.825050px;}
.y237{bottom:538.976100px;}
.y216{bottom:541.256850px;}
.yc{bottom:541.839450px;}
.ybf{bottom:544.069650px;}
.y117{bottom:544.523100px;}
.y54{bottom:546.487500px;}
.y79{bottom:546.989100px;}
.y165{bottom:548.071500px;}
.y167{bottom:548.506500px;}
.y257{bottom:553.197750px;}
.y13b{bottom:554.353650px;}
.y1ce{bottom:555.493350px;}
.y1ab{bottom:556.153950px;}
.y1f5{bottom:556.373100px;}
.y189{bottom:556.825050px;}
.y2e{bottom:557.056950px;}
.yea{bottom:558.864000px;}
.yec{bottom:559.299000px;}
.y236{bottom:559.435350px;}
.y9e{bottom:561.914100px;}
.ya0{bottom:562.349100px;}
.ybe{bottom:565.959900px;}
.y78{bottom:567.913350px;}
.y215{bottom:569.024100px;}
.y164{bottom:571.246500px;}
.y256{bottom:572.697750px;}
.y13a{bottom:575.691900px;}
.y1cd{bottom:575.917350px;}
.y1f4{bottom:576.745350px;}
.ye9{bottom:576.864000px;}
.yeb{bottom:577.299000px;}
.y2d{bottom:577.549950px;}
.y1aa{bottom:578.878950px;}
.y188{bottom:579.550050px;}
.y9d{bottom:579.914100px;}
.y9f{bottom:580.349100px;}
.y116{bottom:586.250100px;}
.y235{bottom:587.123850px;}
.ybd{bottom:587.850150px;}
.y77{bottom:588.837600px;}
.y214{bottom:589.562100px;}
.y255{bottom:592.197750px;}
.y161{bottom:593.980350px;}
.y163{bottom:594.415350px;}
.y1cc{bottom:596.341350px;}
.y139{bottom:597.030150px;}
.y1f3{bottom:597.117600px;}
.y2c{bottom:598.042950px;}
.yb{bottom:599.956200px;}
.ye8{bottom:600.039000px;}
.y1a9{bottom:601.603950px;}
.y187{bottom:602.294550px;}
.y9c{bottom:603.089100px;}
.y115{bottom:607.346850px;}
.y234{bottom:607.583100px;}
.y53{bottom:609.520350px;}
.ybc{bottom:609.740400px;}
.y76{bottom:609.761850px;}
.y254{bottom:611.697750px;}
.y160{bottom:611.980350px;}
.y162{bottom:612.415350px;}
.y1cb{bottom:616.765350px;}
.y213{bottom:617.329350px;}
.y1f2{bottom:617.489850px;}
.y138{bottom:618.368400px;}
.y2b{bottom:618.535950px;}
.y186{bottom:620.294550px;}
.ye5{bottom:622.766400px;}
.ye7{bottom:623.201400px;}
.y1a8{bottom:624.328950px;}
.y99{bottom:626.795550px;}
.y9b{bottom:627.230550px;}
.ya{bottom:627.319200px;}
.y114{bottom:628.443600px;}
.y52{bottom:630.461850px;}
.y75{bottom:630.686100px;}
.y253{bottom:631.197750px;}
.ybb{bottom:631.630650px;}
.y15f{bottom:635.155350px;}
.y233{bottom:635.271600px;}
.y1ca{bottom:637.189350px;}
.y1f1{bottom:637.862100px;}
.y212{bottom:637.867350px;}
.y137{bottom:639.706650px;}
.ye4{bottom:640.766400px;}
.ye6{bottom:641.201400px;}
.y185{bottom:643.019550px;}
.y98{bottom:644.795550px;}
.y9a{bottom:645.230550px;}
.y1a7{bottom:647.053950px;}
.y113{bottom:649.540350px;}
.y252{bottom:650.697750px;}
.y51{bottom:651.403350px;}
.y74{bottom:651.610350px;}
.yba{bottom:653.520900px;}
.y232{bottom:655.730850px;}
.y1c9{bottom:657.613350px;}
.y15e{bottom:657.880350px;}
.y1f0{bottom:658.234350px;}
.y2a{bottom:660.285300px;}
.ye3{bottom:663.941400px;}
.y211{bottom:665.634600px;}
.y184{bottom:665.744550px;}
.y97{bottom:667.970550px;}
.y1a6{bottom:669.778950px;}
.y251{bottom:670.197750px;}
.y112{bottom:670.637100px;}
.y50{bottom:672.344850px;}
.y73{bottom:672.534600px;}
.y9{bottom:675.927150px;}
.y1c8{bottom:678.037350px;}
.y1ef{bottom:678.606600px;}
.y15b{bottom:680.607750px;}
.y15d{bottom:681.042750px;}
.y231{bottom:683.419350px;}
.y210{bottom:686.172600px;}
.ye0{bottom:686.668800px;}
.ye2{bottom:687.103800px;}
.y183{bottom:688.482450px;}
.y136{bottom:689.068800px;}
.y250{bottom:689.697750px;}
.y95{bottom:690.702150px;}
.y111{bottom:691.733850px;}
.y1a5{bottom:692.503950px;}
.y4f{bottom:693.286350px;}
.y72{bottom:693.458850px;}
.y1c7{bottom:698.461350px;}
.y15a{bottom:698.607750px;}
.y1ee{bottom:698.978850px;}
.y15c{bottom:699.042750px;}
.y94{bottom:699.702150px;}
.ydf{bottom:704.668800px;}
.ye1{bottom:705.103800px;}
.y182{bottom:706.482450px;}
.y135{bottom:707.068800px;}
.y8{bottom:707.787150px;}
.y96{bottom:708.702150px;}
.y24f{bottom:709.197750px;}
.y230{bottom:711.107850px;}
.y110{bottom:712.830600px;}
.y20f{bottom:713.939850px;}
.y4e{bottom:714.227850px;}
.y71{bottom:714.383100px;}
.y1a4{bottom:715.228950px;}
.y1c6{bottom:718.885350px;}
.y1ed{bottom:719.351100px;}
.y159{bottom:721.782750px;}
.yb9{bottom:726.736500px;}
.yde{bottom:727.843800px;}
.y24e{bottom:728.697750px;}
.y181{bottom:729.207450px;}
.y134{bottom:729.793800px;}
.y22f{bottom:731.567100px;}
.y10f{bottom:733.927350px;}
.y20e{bottom:734.477850px;}
.y4d{bottom:735.169350px;}
.y70{bottom:735.307350px;}
.y1a3{bottom:737.953950px;}
.y93{bottom:738.186600px;}
.y1c5{bottom:739.309350px;}
.y7{bottom:739.647150px;}
.y1ec{bottom:739.723350px;}
.y29{bottom:743.281350px;}
.y156{bottom:744.520800px;}
.yb8{bottom:744.736500px;}
.y158{bottom:744.955800px;}
.y24d{bottom:748.197750px;}
.ydb{bottom:750.581850px;}
.ydd{bottom:751.016850px;}
.y180{bottom:751.945500px;}
.y133{bottom:752.531850px;}
.y10e{bottom:755.024100px;}
.y4c{bottom:756.110850px;}
.y6f{bottom:756.231600px;}
.y92{bottom:757.686600px;}
.y22e{bottom:759.255600px;}
.y1c4{bottom:759.733350px;}
.y1eb{bottom:760.095600px;}
.y1a2{bottom:760.678950px;}
.y20d{bottom:762.245100px;}
.y155{bottom:762.520800px;}
.y157{bottom:762.955800px;}
.y28{bottom:764.521350px;}
.yb7{bottom:767.461500px;}
.y24c{bottom:767.697750px;}
.yda{bottom:768.581850px;}
.ydc{bottom:769.016850px;}
.y17f{bottom:769.945500px;}
.y132{bottom:770.531850px;}
.y10d{bottom:776.120850px;}
.y4b{bottom:777.052350px;}
.y6e{bottom:777.155850px;}
.y22d{bottom:779.714850px;}
.y1c3{bottom:780.157350px;}
.y1ea{bottom:780.467850px;}
.y20c{bottom:782.783100px;}
.y1a1{bottom:783.403950px;}
.y154{bottom:785.695800px;}
.y27{bottom:785.757750px;}
.y24b{bottom:787.197750px;}
.yb6{bottom:791.617950px;}
.yd9{bottom:791.756850px;}
.y17e{bottom:792.670500px;}
.y131{bottom:793.256850px;}
.y10c{bottom:797.217600px;}
.y4a{bottom:797.993850px;}
.y6d{bottom:798.080100px;}
.y1c2{bottom:800.581350px;}
.y1e9{bottom:800.840100px;}
.y6{bottom:801.252900px;}
.y26{bottom:805.497750px;}
.y1a0{bottom:806.128950px;}
.y24a{bottom:806.697750px;}
.y22c{bottom:807.403350px;}
.y153{bottom:808.420800px;}
.yb5{bottom:809.617950px;}
.y20b{bottom:810.550350px;}
.yd8{bottom:814.481850px;}
.y17d{bottom:815.395500px;}
.y130{bottom:815.988300px;}
.y10b{bottom:818.314350px;}
.y91{bottom:818.693400px;}
.y49{bottom:818.935350px;}
.y6c{bottom:819.004350px;}
.y1c1{bottom:821.005350px;}
.y1e8{bottom:821.212350px;}
.y25{bottom:825.237750px;}
.y249{bottom:826.197750px;}
.y22b{bottom:827.862600px;}
.y19f{bottom:828.853950px;}
.y5{bottom:831.117900px;}
.y152{bottom:831.152400px;}
.yb4{bottom:832.342950px;}
.y12f{bottom:833.988300px;}
.yd6{bottom:837.213300px;}
.y17c{bottom:838.126950px;}
.y90{bottom:838.944900px;}
.y10a{bottom:839.411100px;}
.y48{bottom:839.876850px;}
.y6b{bottom:839.928600px;}
.y1c0{bottom:841.429350px;}
.y1e7{bottom:841.584600px;}
.y24{bottom:844.977750px;}
.y248{bottom:845.697750px;}
.yd5{bottom:846.213300px;}
.y151{bottom:849.152400px;}
.y19e{bottom:851.578950px;}
.yb2{bottom:855.074400px;}
.yd7{bottom:855.213300px;}
.y22a{bottom:855.551100px;}
.y17b{bottom:856.126950px;}
.y12e{bottom:856.713300px;}
.y8f{bottom:859.196400px;}
.y109{bottom:860.507850px;}
.y47{bottom:860.818350px;}
.y6a{bottom:860.852850px;}
.y4{bottom:860.982900px;}
.y20a{bottom:861.611850px;}
.y1bf{bottom:861.853350px;}
.y1e6{bottom:861.956850px;}
.yb1{bottom:864.074400px;}
.y23{bottom:864.717750px;}
.y247{bottom:865.197750px;}
.yb3{bottom:873.074400px;}
.y19d{bottom:874.303950px;}
.y229{bottom:876.010350px;}
.y12d{bottom:879.444750px;}
.y108{bottom:881.604600px;}
.y150{bottom:881.667750px;}
.y46{bottom:881.759850px;}
.y69{bottom:881.777100px;}
.y209{bottom:882.156600px;}
.y1be{bottom:882.277350px;}
.y1e5{bottom:882.329100px;}
.y3{bottom:882.342900px;}
.y22{bottom:884.457750px;}
.yd4{bottom:884.697750px;}
.y17a{bottom:886.655400px;}
.y12c{bottom:897.444750px;}
.y8e{bottom:900.706200px;}
.y45{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:904.197750px;}
.y179{bottom:907.190400px;}
.y20{bottom:948.189000px;}
.he{height:38.036555px;}
.h7{height:44.460938px;}
.h11{height:50.009766px;}
.hf{height:50.018555px;}
.h15{height:50.030555px;}
.h13{height:50.068359px;}
.h16{height:51.826172px;}
.h12{height:51.884766px;}
.h4{height:55.576172px;}
.h17{height:55.583972px;}
.h1a{height:55.600772px;}
.h14{height:55.610372px;}
.h19{height:55.625972px;}
.h18{height:55.626572px;}
.h3{height:58.354980px;}
.ha{height:63.892798px;}
.h9{height:63.912598px;}
.hc{height:63.936598px;}
.hd{height:63.937198px;}
.hb{height:64.465798px;}
.h2{height:69.470215px;}
.h8{height:75.027832px;}
.h6{height:77.806641px;}
.h10{height:87.884766px;}
.h5{height:100.037109px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x60{left:80.930100px;}
.x7{left:82.214250px;}
.x6{left:83.774250px;}
.x1{left:85.039350px;}
.x10{left:89.510250px;}
.x20{left:93.757950px;}
.x4a{left:96.242100px;}
.x61{left:103.717050px;}
.x5{left:105.044250px;}
.x4{left:106.050600px;}
.x27{left:108.003000px;}
.x5f{left:158.732250px;}
.x18{left:172.251750px;}
.x11{left:173.810250px;}
.x21{left:174.847950px;}
.x2f{left:176.489100px;}
.x39{left:178.291050px;}
.x55{left:180.197250px;}
.x5c{left:183.347250px;}
.x8{left:190.444650px;}
.x35{left:201.120300px;}
.x2e{left:209.414100px;}
.x40{left:211.574100px;}
.x46{left:213.106500px;}
.x3a{left:214.198800px;}
.x12{left:217.235250px;}
.x22{left:218.272950px;}
.x30{left:220.079100px;}
.x36{left:221.640300px;}
.x1a{left:226.408500px;}
.x5a{left:227.723550px;}
.x28{left:229.563000px;}
.x48{left:230.674500px;}
.x3{left:232.218000px;}
.x2{left:233.415450px;}
.x4b{left:237.317100px;}
.x2d{left:244.964100px;}
.x59{left:247.333050px;}
.xf{left:256.655250px;}
.x54{left:257.717250px;}
.x53{left:263.552250px;}
.x41{left:264.734100px;}
.x1f{left:265.897950px;}
.x17{left:271.116750px;}
.x57{left:272.171550px;}
.x23{left:273.217950px;}
.x24{left:274.762950px;}
.x13{left:278.225250px;}
.x19{left:279.771750px;}
.x3b{left:283.012050px;}
.x29{left:284.838000px;}
.x1c{left:286.198500px;}
.x58{left:287.366550px;}
.x4d{left:289.577100px;}
.x5d{left:291.482250px;}
.x5b{left:292.577400px;}
.xa{left:294.364950px;}
.x1b{left:296.353500px;}
.x4c{left:299.762100px;}
.x9{left:304.519950px;}
.x43{left:317.894100px;}
.x42{left:319.439100px;}
.x31{left:330.629100px;}
.x32{left:332.174100px;}
.x3d{left:334.507050px;}
.x25{left:337.282950px;}
.x2b{left:339.303000px;}
.x3c{left:340.912050px;}
.x14{left:342.620250px;}
.x5e{left:344.432250px;}
.x2a{left:345.708000px;}
.x4f{left:347.627100px;}
.x1e{left:352.138500px;}
.x4e{left:354.032100px;}
.xc{left:355.549950px;}
.x1d{left:358.543500px;}
.xb{left:361.954950px;}
.x33{left:378.464100px;}
.x37{left:380.025300px;}
.x44{left:381.644100px;}
.x49{left:383.151150px;}
.x15{left:395.975250px;}
.x2c{left:397.788000px;}
.x3e{left:398.827050px;}
.x26{left:400.327950px;}
.x50{left:406.022100px;}
.x51{left:407.447100px;}
.xd{left:411.034950px;}
.xe{left:412.489950px;}
.x45{left:497.534100px;}
.x38{left:498.600300px;}
.x47{left:500.011500px;}
.x34{left:501.104100px;}
.x56{left:503.762250px;}
.x16{left:507.230250px;}
.x3f{left:547.867050px;}
.x52{left:549.722100px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v5{vertical-align:-8.874667pt;}
.v8{vertical-align:-7.062933pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:8.874667pt;}
.v3{vertical-align:12.426133pt;}
.v1{vertical-align:14.933333pt;}
.v7{vertical-align:19.526613pt;}
.v6{vertical-align:24.906667pt;}
.v4{vertical-align:32.000000pt;}
.lsc{letter-spacing:-6.552000pt;}
.ls22{letter-spacing:-4.693333pt;}
.ls36{letter-spacing:-3.786667pt;}
.ls1f{letter-spacing:-3.253333pt;}
.ls55{letter-spacing:-3.040000pt;}
.ls1c{letter-spacing:-2.880000pt;}
.ls64{letter-spacing:-2.826667pt;}
.ls6e{letter-spacing:-2.632000pt;}
.ls40{letter-spacing:-2.613333pt;}
.ls12{letter-spacing:-2.576000pt;}
.ls1e{letter-spacing:-2.560000pt;}
.ls37{letter-spacing:-2.453333pt;}
.ls45{letter-spacing:-2.400000pt;}
.ls4b{letter-spacing:-2.293333pt;}
.ls43{letter-spacing:-2.240000pt;}
.ls6c{letter-spacing:-2.184000pt;}
.ls11{letter-spacing:-2.024000pt;}
.ls42{letter-spacing:-1.973333pt;}
.ls47{letter-spacing:-1.866667pt;}
.ls6d{letter-spacing:-1.848000pt;}
.ls32{letter-spacing:-1.813333pt;}
.ls4a{letter-spacing:-1.760000pt;}
.ls33{letter-spacing:-1.706667pt;}
.ls23{letter-spacing:-1.600000pt;}
.ls44{letter-spacing:-1.493333pt;}
.ls49{letter-spacing:-1.386667pt;}
.ls68{letter-spacing:-1.349333pt;}
.ls25{letter-spacing:-1.226667pt;}
.ls6f{letter-spacing:-1.173333pt;}
.ls29{letter-spacing:-1.013333pt;}
.ls35{letter-spacing:-0.960000pt;}
.ls2c{letter-spacing:-0.906667pt;}
.ls2d{letter-spacing:-0.768000pt;}
.ls2a{letter-spacing:-0.693333pt;}
.ls26{letter-spacing:-0.640000pt;}
.ls5b{letter-spacing:-0.533333pt;}
.ls65{letter-spacing:-0.480000pt;}
.ls27{letter-spacing:-0.426667pt;}
.ls61{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.266667pt;}
.ls6{letter-spacing:-0.213333pt;}
.ls28{letter-spacing:-0.106667pt;}
.ls69{letter-spacing:-0.072000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000267pt;}
.ls10{letter-spacing:0.000987pt;}
.ls17{letter-spacing:0.001067pt;}
.ls52{letter-spacing:0.001600pt;}
.ls1b{letter-spacing:0.042133pt;}
.ls41{letter-spacing:0.053333pt;}
.ls56{letter-spacing:0.115733pt;}
.ls3a{letter-spacing:0.122667pt;}
.ls4c{letter-spacing:0.128533pt;}
.ls58{letter-spacing:0.130667pt;}
.ls39{letter-spacing:0.138667pt;}
.ls3e{letter-spacing:0.139200pt;}
.ls1a{letter-spacing:0.149867pt;}
.ls31{letter-spacing:0.162133pt;}
.ls60{letter-spacing:0.165333pt;}
.ls3c{letter-spacing:0.168533pt;}
.ls5e{letter-spacing:0.170667pt;}
.ls38{letter-spacing:0.177600pt;}
.ls59{letter-spacing:0.178667pt;}
.ls3b{letter-spacing:0.184000pt;}
.ls16{letter-spacing:0.186560pt;}
.ls2f{letter-spacing:0.186667pt;}
.ls57{letter-spacing:0.189333pt;}
.ls4d{letter-spacing:0.193067pt;}
.ls3d{letter-spacing:0.196800pt;}
.ls3f{letter-spacing:0.200000pt;}
.ls54{letter-spacing:0.207467pt;}
.ls20{letter-spacing:0.213333pt;}
.ls19{letter-spacing:0.226667pt;}
.ls4e{letter-spacing:0.244800pt;}
.ls24{letter-spacing:0.266667pt;}
.ls5f{letter-spacing:0.272000pt;}
.ls53{letter-spacing:0.272533pt;}
.ls30{letter-spacing:0.276267pt;}
.ls5d{letter-spacing:0.286933pt;}
.ls6a{letter-spacing:0.308000pt;}
.ls62{letter-spacing:0.320000pt;}
.ls46{letter-spacing:0.373333pt;}
.ls5c{letter-spacing:0.426667pt;}
.ls18{letter-spacing:0.480000pt;}
.ls48{letter-spacing:0.640000pt;}
.ls66{letter-spacing:0.746667pt;}
.ls5a{letter-spacing:0.853333pt;}
.ls50{letter-spacing:0.906667pt;}
.ls63{letter-spacing:0.960000pt;}
.ls5{letter-spacing:1.120000pt;}
.ls67{letter-spacing:1.226667pt;}
.ls51{letter-spacing:1.440000pt;}
.ls1d{letter-spacing:1.546667pt;}
.ls34{letter-spacing:1.600000pt;}
.ls2{letter-spacing:1.848000pt;}
.ls21{letter-spacing:2.026667pt;}
.lsa{letter-spacing:2.866667pt;}
.ls13{letter-spacing:3.666667pt;}
.ls14{letter-spacing:3.721067pt;}
.ls0{letter-spacing:3.733333pt;}
.ls9{letter-spacing:4.010667pt;}
.ls4f{letter-spacing:4.133333pt;}
.ls7{letter-spacing:5.120000pt;}
.ls8{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.333333pt;}
.lsb{letter-spacing:5.600000pt;}
.lsf{letter-spacing:6.985867pt;}
.lse{letter-spacing:7.053333pt;}
.ls4{letter-spacing:7.466667pt;}
.ls6b{letter-spacing:7.840000pt;}
.ls2e{letter-spacing:150.240000pt;}
.ls15{letter-spacing:161.013333pt;}
.ws26{word-spacing:-53.333333pt;}
.ws78{word-spacing:-23.576000pt;}
.ws4e{word-spacing:-22.866667pt;}
.ws14{word-spacing:-22.400000pt;}
.ws9{word-spacing:-21.600000pt;}
.ws7e{word-spacing:-20.320000pt;}
.ws1{word-spacing:-20.213333pt;}
.ws77{word-spacing:-20.160000pt;}
.ws0{word-spacing:-20.106667pt;}
.ws11{word-spacing:-17.234667pt;}
.wsa{word-spacing:-16.090667pt;}
.ws7d{word-spacing:-15.736000pt;}
.ws28{word-spacing:-15.466667pt;}
.ws5d{word-spacing:-15.413333pt;}
.ws2a{word-spacing:-15.253333pt;}
.ws25{word-spacing:-15.200000pt;}
.wsf{word-spacing:-15.149333pt;}
.ws1f{word-spacing:-14.986667pt;}
.ws2d{word-spacing:-14.880000pt;}
.ws2e{word-spacing:-14.773333pt;}
.ws31{word-spacing:-14.720000pt;}
.ws46{word-spacing:-14.560000pt;}
.ws2c{word-spacing:-14.346667pt;}
.ws30{word-spacing:-14.293333pt;}
.ws39{word-spacing:-14.080000pt;}
.ws3b{word-spacing:-14.026667pt;}
.ws2f{word-spacing:-13.973333pt;}
.ws7b{word-spacing:-13.832000pt;}
.ws76{word-spacing:-13.800000pt;}
.ws2b{word-spacing:-13.760000pt;}
.wsb{word-spacing:-13.680000pt;}
.ws45{word-spacing:-13.600000pt;}
.ws43{word-spacing:-13.493333pt;}
.ws29{word-spacing:-13.386667pt;}
.ws3a{word-spacing:-13.280000pt;}
.ws47{word-spacing:-13.226667pt;}
.ws23{word-spacing:-13.173333pt;}
.wsd{word-spacing:-13.125333pt;}
.ws41{word-spacing:-13.013333pt;}
.ws42{word-spacing:-12.746667pt;}
.ws48{word-spacing:-12.693333pt;}
.ws44{word-spacing:-12.586667pt;}
.wse{word-spacing:-12.573333pt;}
.ws21{word-spacing:-12.426667pt;}
.ws40{word-spacing:-12.373333pt;}
.ws59{word-spacing:-12.106667pt;}
.ws7a{word-spacing:-11.984000pt;}
.ws55{word-spacing:-11.946667pt;}
.ws32{word-spacing:-11.856000pt;}
.ws22{word-spacing:-11.733333pt;}
.ws79{word-spacing:-11.648000pt;}
.ws3c{word-spacing:-11.200000pt;}
.ws7f{word-spacing:-10.933333pt;}
.ws10{word-spacing:-10.047811pt;}
.ws80{word-spacing:-8.737227pt;}
.ws27{word-spacing:-8.480000pt;}
.ws5{word-spacing:-7.466667pt;}
.ws1e{word-spacing:-7.343467pt;}
.ws24{word-spacing:-6.144043pt;}
.ws7c{word-spacing:-5.600000pt;}
.ws4{word-spacing:-5.333333pt;}
.wsc{word-spacing:-4.010667pt;}
.ws8{word-spacing:-3.733333pt;}
.ws3{word-spacing:-1.848000pt;}
.ws3d{word-spacing:-1.600000pt;}
.ws53{word-spacing:-1.440000pt;}
.ws6{word-spacing:-1.120000pt;}
.ws52{word-spacing:-0.906667pt;}
.ws83{word-spacing:-0.800000pt;}
.ws4c{word-spacing:-0.640000pt;}
.ws56{word-spacing:-0.480000pt;}
.ws4a{word-spacing:-0.373333pt;}
.ws34{word-spacing:-0.213333pt;}
.ws49{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.106667pt;}
.ws7{word-spacing:0.213333pt;}
.ws35{word-spacing:0.426667pt;}
.ws5a{word-spacing:0.533333pt;}
.ws37{word-spacing:0.768000pt;}
.ws36{word-spacing:0.906667pt;}
.ws51{word-spacing:1.013333pt;}
.ws82{word-spacing:1.173333pt;}
.ws1d{word-spacing:1.226667pt;}
.ws54{word-spacing:1.386667pt;}
.ws4b{word-spacing:1.866667pt;}
.ws3e{word-spacing:2.453333pt;}
.ws33{word-spacing:2.880000pt;}
.ws17{word-spacing:3.557333pt;}
.ws13{word-spacing:4.048000pt;}
.ws81{word-spacing:4.266667pt;}
.ws15{word-spacing:6.501333pt;}
.ws12{word-spacing:7.360000pt;}
.ws19{word-spacing:9.568000pt;}
.ws16{word-spacing:17.050667pt;}
.ws1a{word-spacing:18.584000pt;}
.ws1b{word-spacing:19.136000pt;}
.ws1c{word-spacing:23.797333pt;}
.ws18{word-spacing:27.906667pt;}
.ws5b{word-spacing:67.674667pt;}
.ws57{word-spacing:91.354667pt;}
.ws6b{word-spacing:109.040000pt;}
.ws4f{word-spacing:109.098667pt;}
.ws38{word-spacing:117.845333pt;}
.ws20{word-spacing:123.498667pt;}
.ws50{word-spacing:123.840000pt;}
.ws3f{word-spacing:124.192000pt;}
.ws6a{word-spacing:130.234667pt;}
.ws5c{word-spacing:131.360000pt;}
.ws6e{word-spacing:138.042667pt;}
.ws58{word-spacing:148.746667pt;}
.ws75{word-spacing:173.013333pt;}
.ws72{word-spacing:180.682667pt;}
.ws69{word-spacing:183.525333pt;}
.ws73{word-spacing:211.120000pt;}
.ws74{word-spacing:225.632000pt;}
.ws64{word-spacing:227.829333pt;}
.ws71{word-spacing:233.338667pt;}
.ws66{word-spacing:236.874667pt;}
.ws70{word-spacing:257.850667pt;}
.ws6c{word-spacing:263.722667pt;}
.ws6d{word-spacing:265.493333pt;}
.ws6f{word-spacing:281.424000pt;}
.ws63{word-spacing:281.744000pt;}
.ws65{word-spacing:291.029333pt;}
.ws60{word-spacing:296.714667pt;}
.ws68{word-spacing:325.813333pt;}
.ws5f{word-spacing:356.016000pt;}
.ws62{word-spacing:359.162667pt;}
.ws61{word-spacing:359.216000pt;}
.ws67{word-spacing:371.306667pt;}
.ws5e{word-spacing:384.981333pt;}
._56{margin-left:-11.034933pt;}
._57{margin-left:-7.245867pt;}
._10{margin-left:-6.108800pt;}
._15{margin-left:-4.517867pt;}
._5{margin-left:-3.595200pt;}
._3{margin-left:-2.464000pt;}
._4{margin-left:-1.008000pt;}
._7{width:1.061333pt;}
._1{width:2.133333pt;}
._a{width:3.218133pt;}
._8{width:4.170667pt;}
._6{width:5.466667pt;}
._9{width:6.432000pt;}
._b{width:7.322667pt;}
._f{width:8.510400pt;}
._13{width:9.752000pt;}
._14{width:10.670400pt;}
._1d{width:11.829067pt;}
._11{width:12.732533pt;}
._28{width:14.419467pt;}
._17{width:16.234667pt;}
._1a{width:18.633067pt;}
._1c{width:21.493067pt;}
._1b{width:23.757067pt;}
._59{width:24.897333pt;}
._18{width:27.164533pt;}
._19{width:28.134133pt;}
._58{width:29.864800pt;}
._1e{width:38.617920pt;}
._53{width:56.280000pt;}
._52{width:61.701867pt;}
._54{width:72.737067pt;}
._55{width:74.194667pt;}
._c{width:76.048000pt;}
._4d{width:81.773333pt;}
._3b{width:88.529600pt;}
._23{width:90.396267pt;}
._20{width:92.902933pt;}
._3e{width:94.177600pt;}
._3d{width:100.865067pt;}
._43{width:102.604800pt;}
._41{width:104.318933pt;}
._3f{width:105.856533pt;}
._51{width:107.339200pt;}
._4e{width:109.384000pt;}
._38{width:111.249067pt;}
._50{width:113.083733pt;}
._3a{width:115.877867pt;}
._45{width:117.734400pt;}
._46{width:118.993067pt;}
._4a{width:121.458667pt;}
._3c{width:122.603733pt;}
._49{width:125.749867pt;}
._39{width:127.483733pt;}
._42{width:129.157867pt;}
._44{width:131.046400pt;}
._40{width:133.845867pt;}
._48{width:137.942400pt;}
._47{width:142.605333pt;}
._4c{width:144.384533pt;}
._2f{width:153.891200pt;}
._4f{width:161.995200pt;}
._4b{width:165.726400pt;}
._33{width:171.474667pt;}
._2d{width:177.974400pt;}
._31{width:193.473067pt;}
._35{width:218.765333pt;}
._e{width:231.653333pt;}
._21{width:248.901333pt;}
._32{width:258.897067pt;}
._2e{width:267.713067pt;}
._34{width:277.643200pt;}
._24{width:284.138667pt;}
._30{width:286.592533pt;}
._37{width:293.764267pt;}
._36{width:299.266667pt;}
._2a{width:389.400000pt;}
._25{width:405.350400pt;}
._29{width:406.448533pt;}
._27{width:407.513600pt;}
._22{width:408.906667pt;}
._16{width:409.998400pt;}
._d{width:411.422400pt;}
._2c{width:442.536533pt;}
._2b{width:443.851733pt;}
._0{width:514.133333pt;}
._2{width:849.961067pt;}
._12{width:852.294400pt;}
._1f{width:855.894400pt;}
._26{width:857.654400pt;}
.fse{font-size:24.874667pt;}
.fsc{font-size:26.133333pt;}
.fsa{font-size:27.984000pt;}
.fsd{font-size:31.093333pt;}
.fs9{font-size:35.757333pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs7{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y1e4{bottom:94.369200pt;}
.y208{bottom:94.372133pt;}
.y44{bottom:94.409733pt;}
.yd3{bottom:94.457467pt;}
.y1f{bottom:94.468667pt;}
.y107{bottom:94.475067pt;}
.yb0{bottom:94.480400pt;}
.y8d{bottom:94.485600pt;}
.y1bd{bottom:94.485733pt;}
.y246{bottom:94.505467pt;}
.y68{bottom:94.505733pt;}
.y228{bottom:94.675200pt;}
.y12b{bottom:100.508133pt;}
.y106{bottom:109.811067pt;}
.yaf{bottom:109.816400pt;}
.y26b{bottom:111.504667pt;}
.y245{bottom:112.025467pt;}
.y1e{bottom:112.122000pt;}
.y207{bottom:112.480800pt;}
.y8c{bottom:112.484267pt;}
.y1bc{bottom:112.484400pt;}
.y1e3{bottom:112.523867pt;}
.y43{bottom:112.625733pt;}
.y67{bottom:113.120400pt;}
.y14f{bottom:113.412133pt;}
.y19c{bottom:113.457200pt;}
.yd2{bottom:113.915467pt;}
.y178{bottom:115.087867pt;}
.y12a{bottom:116.508133pt;}
.y227{bottom:119.357200pt;}
.y105{bottom:125.147067pt;}
.yae{bottom:125.152400pt;}
.y26a{bottom:129.504667pt;}
.y244{bottom:129.545467pt;}
.y1d{bottom:129.775333pt;}
.y206{bottom:130.589467pt;}
.y1e2{bottom:130.678533pt;}
.y42{bottom:130.841733pt;}
.y66{bottom:131.735067pt;}
.y19b{bottom:132.378533pt;}
.y14e{bottom:132.379467pt;}
.yd1{bottom:133.373467pt;}
.y177{bottom:135.787867pt;}
.y129{bottom:136.708133pt;}
.y226{bottom:137.613200pt;}
.y104{bottom:140.483067pt;}
.yad{bottom:140.485733pt;}
.y243{bottom:147.065467pt;}
.y1c{bottom:147.428667pt;}
.y269{bottom:147.504667pt;}
.y205{bottom:148.698133pt;}
.y1e1{bottom:148.833200pt;}
.y41{bottom:149.057733pt;}
.y65{bottom:150.349733pt;}
.y19a{bottom:151.299867pt;}
.y14d{bottom:151.346800pt;}
.y1bb{bottom:151.600667pt;}
.y8b{bottom:151.606267pt;}
.yd0{bottom:152.831467pt;}
.y103{bottom:155.819067pt;}
.y176{bottom:156.487867pt;}
.y128{bottom:156.908133pt;}
.yac{bottom:158.484400pt;}
.y225{bottom:162.295200pt;}
.y242{bottom:164.585467pt;}
.y1b{bottom:165.082000pt;}
.y268{bottom:165.504667pt;}
.y204{bottom:166.806800pt;}
.y1e0{bottom:166.987867pt;}
.y40{bottom:167.273733pt;}
.y64{bottom:168.968800pt;}
.y1ba{bottom:169.970000pt;}
.y8a{bottom:170.200267pt;}
.y199{bottom:170.221200pt;}
.y14c{bottom:170.314133pt;}
.ycf{bottom:172.289467pt;}
.y102{bottom:173.817733pt;}
.y127{bottom:177.119733pt;}
.y175{bottom:177.187867pt;}
.y224{bottom:180.551200pt;}
.y241{bottom:182.105467pt;}
.y1a{bottom:182.735333pt;}
.y203{bottom:184.915467pt;}
.y1df{bottom:185.142533pt;}
.y3f{bottom:185.489733pt;}
.y63{bottom:187.592133pt;}
.y1b9{bottom:188.339333pt;}
.y89{bottom:188.794267pt;}
.y198{bottom:189.142533pt;}
.y14b{bottom:189.281467pt;}
.yce{bottom:191.747467pt;}
.y126{bottom:193.119733pt;}
.y267{bottom:194.838000pt;}
.y174{bottom:197.887867pt;}
.y240{bottom:199.625467pt;}
.y202{bottom:203.024133pt;}
.y1de{bottom:203.297200pt;}
.y3e{bottom:203.705733pt;}
.y223{bottom:205.233200pt;}
.y62{bottom:206.206800pt;}
.y88{bottom:207.388267pt;}
.y197{bottom:208.063867pt;}
.y14a{bottom:208.248800pt;}
.ycd{bottom:211.205467pt;}
.y19{bottom:211.722000pt;}
.y125{bottom:213.319733pt;}
.y23f{bottom:217.145467pt;}
.y173{bottom:218.587867pt;}
.y201{bottom:221.132800pt;}
.y1dd{bottom:221.451867pt;}
.y3d{bottom:221.921733pt;}
.y222{bottom:223.489200pt;}
.y61{bottom:224.825867pt;}
.y87{bottom:225.982267pt;}
.y196{bottom:226.985200pt;}
.y149{bottom:227.216133pt;}
.ycc{bottom:230.663467pt;}
.y266{bottom:231.731333pt;}
.y1b8{bottom:231.759067pt;}
.y124{bottom:233.531200pt;}
.y23e{bottom:234.665467pt;}
.y200{bottom:239.241467pt;}
.y172{bottom:239.287867pt;}
.y1dc{bottom:239.606533pt;}
.y3c{bottom:240.137733pt;}
.y60{bottom:243.444933pt;}
.y86{bottom:244.576267pt;}
.y195{bottom:245.906533pt;}
.y148{bottom:246.183467pt;}
.y221{bottom:248.171200pt;}
.y265{bottom:249.064667pt;}
.yff{bottom:249.353467pt;}
.y123{bottom:249.531200pt;}
.y101{bottom:249.740133pt;}
.ycb{bottom:250.121467pt;}
.y1b7{bottom:251.959067pt;}
.y23d{bottom:252.185467pt;}
.y18{bottom:255.828667pt;}
.y1ff{bottom:257.350133pt;}
.yab{bottom:257.698933pt;}
.y1db{bottom:257.761200pt;}
.y3b{bottom:258.353733pt;}
.y171{bottom:259.987867pt;}
.y5f{bottom:262.063867pt;}
.y85{bottom:263.170133pt;}
.y194{bottom:264.827867pt;}
.y147{bottom:265.150800pt;}
.yfe{bottom:265.353467pt;}
.y100{bottom:265.740133pt;}
.y264{bottom:266.398000pt;}
.y220{bottom:266.427200pt;}
.yca{bottom:269.579467pt;}
.y122{bottom:269.731200pt;}
.y1b6{bottom:272.159067pt;}
.y17{bottom:274.815333pt;}
.y1fe{bottom:275.458800pt;}
.yaa{bottom:275.700267pt;}
.y1da{bottom:275.915867pt;}
.y3a{bottom:276.569733pt;}
.y170{bottom:280.687867pt;}
.y5e{bottom:280.717867pt;}
.y23c{bottom:281.052133pt;}
.y84{bottom:281.764133pt;}
.y263{bottom:283.731333pt;}
.y193{bottom:283.749200pt;}
.y146{bottom:284.118133pt;}
.yfd{bottom:285.953467pt;}
.yc9{bottom:289.037467pt;}
.y121{bottom:289.942800pt;}
.y21f{bottom:291.109200pt;}
.y1b5{bottom:292.359067pt;}
.y1fd{bottom:293.567467pt;}
.ya9{bottom:293.701600pt;}
.y16{bottom:293.768400pt;}
.y1d9{bottom:294.070533pt;}
.y39{bottom:294.785733pt;}
.y5d{bottom:299.332533pt;}
.y83{bottom:300.358133pt;}
.y262{bottom:301.064667pt;}
.y16f{bottom:301.387867pt;}
.y192{bottom:302.670533pt;}
.y145{bottom:303.085467pt;}
.y120{bottom:305.942800pt;}
.yfa{bottom:306.155733pt;}
.yfc{bottom:306.542400pt;}
.yc8{bottom:308.495467pt;}
.y21e{bottom:309.365200pt;}
.y15{bottom:311.421733pt;}
.y1fc{bottom:311.676133pt;}
.ya8{bottom:311.702933pt;}
.y1d8{bottom:312.225200pt;}
.y1b4{bottom:312.559067pt;}
.y38{bottom:313.001733pt;}
.y5c{bottom:317.947200pt;}
.y261{bottom:318.398000pt;}
.y82{bottom:318.952133pt;}
.y191{bottom:321.591867pt;}
.y144{bottom:322.052800pt;}
.y16e{bottom:322.087867pt;}
.yf9{bottom:322.155733pt;}
.yfb{bottom:322.542400pt;}
.y11f{bottom:326.142800pt;}
.yc7{bottom:327.953467pt;}
.y14{bottom:329.075067pt;}
.ya7{bottom:329.704267pt;}
.y1fb{bottom:329.784800pt;}
.y1d7{bottom:330.379867pt;}
.y37{bottom:331.217733pt;}
.y23b{bottom:332.587600pt;}
.y1b3{bottom:332.759067pt;}
.y21d{bottom:334.047200pt;}
.y260{bottom:335.731333pt;}
.y5b{bottom:336.561867pt;}
.y81{bottom:337.546133pt;}
.y190{bottom:340.513200pt;}
.y143{bottom:341.020133pt;}
.yf8{bottom:342.755733pt;}
.y16d{bottom:342.787867pt;}
.y11e{bottom:346.354267pt;}
.y13{bottom:346.728400pt;}
.yc6{bottom:347.411467pt;}
.ya6{bottom:347.705600pt;}
.y1fa{bottom:347.893467pt;}
.y1d6{bottom:348.534533pt;}
.y36{bottom:349.433733pt;}
.y21c{bottom:352.303200pt;}
.y1b2{bottom:352.959067pt;}
.y25f{bottom:353.064667pt;}
.y5a{bottom:355.176533pt;}
.y80{bottom:356.140133pt;}
.y23a{bottom:356.779600pt;}
.y18f{bottom:359.434533pt;}
.y142{bottom:359.987467pt;}
.y11d{bottom:362.354267pt;}
.yf5{bottom:362.957867pt;}
.yf7{bottom:363.344533pt;}
.y16c{bottom:363.487867pt;}
.y12{bottom:364.381733pt;}
.ya5{bottom:365.706933pt;}
.y1f9{bottom:366.002133pt;}
.y1d5{bottom:366.689200pt;}
.yc5{bottom:366.869467pt;}
.y35{bottom:367.649733pt;}
.y25e{bottom:370.398000pt;}
.y1b1{bottom:373.159067pt;}
.y59{bottom:373.791200pt;}
.y7f{bottom:374.616533pt;}
.y21b{bottom:376.985200pt;}
.y18e{bottom:378.355867pt;}
.y141{bottom:378.954800pt;}
.yf4{bottom:378.957867pt;}
.yf6{bottom:379.344533pt;}
.y11{bottom:382.035067pt;}
.y11c{bottom:382.554267pt;}
.ya4{bottom:383.708267pt;}
.y1f8{bottom:384.110800pt;}
.y16b{bottom:384.187867pt;}
.y1d4{bottom:384.843867pt;}
.y34{bottom:385.865733pt;}
.yc4{bottom:386.327467pt;}
.y25d{bottom:387.731333pt;}
.y58{bottom:392.405867pt;}
.y7e{bottom:393.215867pt;}
.y1b0{bottom:393.359067pt;}
.y18d{bottom:397.277200pt;}
.y140{bottom:397.922133pt;}
.yf3{bottom:399.557867pt;}
.y10{bottom:399.688400pt;}
.y21a{bottom:401.667200pt;}
.ya3{bottom:401.709600pt;}
.y1f7{bottom:402.219467pt;}
.y11b{bottom:402.754267pt;}
.y1d3{bottom:402.998533pt;}
.y33{bottom:404.081733pt;}
.y16a{bottom:404.887867pt;}
.y25c{bottom:405.064667pt;}
.yc3{bottom:405.785467pt;}
.y57{bottom:411.020533pt;}
.y7d{bottom:411.815200pt;}
.y1af{bottom:413.559067pt;}
.y18c{bottom:416.198533pt;}
.y13f{bottom:416.889467pt;}
.yf{bottom:417.341733pt;}
.ya2{bottom:419.710933pt;}
.yf0{bottom:419.765733pt;}
.y219{bottom:419.923200pt;}
.yf2{bottom:420.152400pt;}
.y1d2{bottom:421.153200pt;}
.y32{bottom:422.297733pt;}
.y25b{bottom:422.398000pt;}
.y11a{bottom:422.960133pt;}
.yc2{bottom:425.243467pt;}
.y169{bottom:425.587867pt;}
.y56{bottom:429.635200pt;}
.y7c{bottom:430.414533pt;}
.y1ae{bottom:433.759067pt;}
.ye{bottom:434.995067pt;}
.y18b{bottom:435.119867pt;}
.yef{bottom:435.765733pt;}
.y13e{bottom:435.856800pt;}
.yf1{bottom:436.152400pt;}
.y239{bottom:436.291867pt;}
.ya1{bottom:437.712267pt;}
.y218{bottom:438.179200pt;}
.y119{bottom:438.960133pt;}
.y1f6{bottom:439.218933pt;}
.y1d1{bottom:439.307867pt;}
.y25a{bottom:439.731333pt;}
.y31{bottom:440.513733pt;}
.yc1{bottom:444.701467pt;}
.y55{bottom:448.249867pt;}
.y7b{bottom:449.013867pt;}
.yd{bottom:452.648400pt;}
.y1ad{bottom:453.959067pt;}
.y238{bottom:454.477867pt;}
.y13d{bottom:454.824133pt;}
.yee{bottom:456.365733pt;}
.y259{bottom:457.064667pt;}
.y1d0{bottom:457.462533pt;}
.y30{bottom:458.729733pt;}
.y217{bottom:462.861200pt;}
.yc0{bottom:464.159467pt;}
.y118{bottom:465.927200pt;}
.y7a{bottom:467.613200pt;}
.y166{bottom:471.174667pt;}
.y168{bottom:471.561333pt;}
.y13c{bottom:473.791467pt;}
.y1ac{bottom:474.159067pt;}
.y258{bottom:474.398000pt;}
.y1cf{bottom:475.617200pt;}
.yed{bottom:476.565733pt;}
.y2f{bottom:476.945733pt;}
.y18a{bottom:478.955600pt;}
.y237{bottom:479.089867pt;}
.y216{bottom:481.117200pt;}
.yc{bottom:481.635067pt;}
.ybf{bottom:483.617467pt;}
.y117{bottom:484.020533pt;}
.y54{bottom:485.766667pt;}
.y79{bottom:486.212533pt;}
.y165{bottom:487.174667pt;}
.y167{bottom:487.561333pt;}
.y257{bottom:491.731333pt;}
.y13b{bottom:492.758800pt;}
.y1ce{bottom:493.771867pt;}
.y1ab{bottom:494.359067pt;}
.y1f5{bottom:494.553867pt;}
.y189{bottom:494.955600pt;}
.y2e{bottom:495.161733pt;}
.yea{bottom:496.768000pt;}
.yec{bottom:497.154667pt;}
.y236{bottom:497.275867pt;}
.y9e{bottom:499.479200pt;}
.ya0{bottom:499.865867pt;}
.ybe{bottom:503.075467pt;}
.y78{bottom:504.811867pt;}
.y215{bottom:505.799200pt;}
.y164{bottom:507.774667pt;}
.y256{bottom:509.064667pt;}
.y13a{bottom:511.726133pt;}
.y1cd{bottom:511.926533pt;}
.y1f4{bottom:512.662533pt;}
.ye9{bottom:512.768000pt;}
.yeb{bottom:513.154667pt;}
.y2d{bottom:513.377733pt;}
.y1aa{bottom:514.559067pt;}
.y188{bottom:515.155600pt;}
.y9d{bottom:515.479200pt;}
.y9f{bottom:515.865867pt;}
.y116{bottom:521.111200pt;}
.y235{bottom:521.887867pt;}
.ybd{bottom:522.533467pt;}
.y77{bottom:523.411200pt;}
.y214{bottom:524.055200pt;}
.y255{bottom:526.398000pt;}
.y161{bottom:527.982533pt;}
.y163{bottom:528.369200pt;}
.y1cc{bottom:530.081200pt;}
.y139{bottom:530.693467pt;}
.y1f3{bottom:530.771200pt;}
.y2c{bottom:531.593733pt;}
.yb{bottom:533.294400pt;}
.ye8{bottom:533.368000pt;}
.y1a9{bottom:534.759067pt;}
.y187{bottom:535.372933pt;}
.y9c{bottom:536.079200pt;}
.y115{bottom:539.863867pt;}
.y234{bottom:540.073867pt;}
.y53{bottom:541.795867pt;}
.ybc{bottom:541.991467pt;}
.y76{bottom:542.010533pt;}
.y254{bottom:543.731333pt;}
.y160{bottom:543.982533pt;}
.y162{bottom:544.369200pt;}
.y1cb{bottom:548.235867pt;}
.y213{bottom:548.737200pt;}
.y1f2{bottom:548.879867pt;}
.y138{bottom:549.660800pt;}
.y2b{bottom:549.809733pt;}
.y186{bottom:551.372933pt;}
.ye5{bottom:553.570133pt;}
.ye7{bottom:553.956800pt;}
.y1a8{bottom:554.959067pt;}
.y99{bottom:557.151600pt;}
.y9b{bottom:557.538267pt;}
.ya{bottom:557.617067pt;}
.y114{bottom:558.616533pt;}
.y52{bottom:560.410533pt;}
.y75{bottom:560.609867pt;}
.y253{bottom:561.064667pt;}
.ybb{bottom:561.449467pt;}
.y15f{bottom:564.582533pt;}
.y233{bottom:564.685867pt;}
.y1ca{bottom:566.390533pt;}
.y1f1{bottom:566.988533pt;}
.y212{bottom:566.993200pt;}
.y137{bottom:568.628133pt;}
.ye4{bottom:569.570133pt;}
.ye6{bottom:569.956800pt;}
.y185{bottom:571.572933pt;}
.y98{bottom:573.151600pt;}
.y9a{bottom:573.538267pt;}
.y1a7{bottom:575.159067pt;}
.y113{bottom:577.369200pt;}
.y252{bottom:578.398000pt;}
.y51{bottom:579.025200pt;}
.y74{bottom:579.209200pt;}
.yba{bottom:580.907467pt;}
.y232{bottom:582.871867pt;}
.y1c9{bottom:584.545200pt;}
.y15e{bottom:584.782533pt;}
.y1f0{bottom:585.097200pt;}
.y2a{bottom:586.920267pt;}
.ye3{bottom:590.170133pt;}
.y211{bottom:591.675200pt;}
.y184{bottom:591.772933pt;}
.y97{bottom:593.751600pt;}
.y1a6{bottom:595.359067pt;}
.y251{bottom:595.731333pt;}
.y112{bottom:596.121867pt;}
.y50{bottom:597.639867pt;}
.y73{bottom:597.808533pt;}
.y9{bottom:600.824133pt;}
.y1c8{bottom:602.699867pt;}
.y1ef{bottom:603.205867pt;}
.y15b{bottom:604.984667pt;}
.y15d{bottom:605.371333pt;}
.y231{bottom:607.483867pt;}
.y210{bottom:609.931200pt;}
.ye0{bottom:610.372267pt;}
.ye2{bottom:610.758933pt;}
.y183{bottom:611.984400pt;}
.y136{bottom:612.505600pt;}
.y250{bottom:613.064667pt;}
.y95{bottom:613.957467pt;}
.y111{bottom:614.874533pt;}
.y1a5{bottom:615.559067pt;}
.y4f{bottom:616.254533pt;}
.y72{bottom:616.407867pt;}
.y1c7{bottom:620.854533pt;}
.y15a{bottom:620.984667pt;}
.y1ee{bottom:621.314533pt;}
.y15c{bottom:621.371333pt;}
.y94{bottom:621.957467pt;}
.ydf{bottom:626.372267pt;}
.ye1{bottom:626.758933pt;}
.y182{bottom:627.984400pt;}
.y135{bottom:628.505600pt;}
.y8{bottom:629.144133pt;}
.y96{bottom:629.957467pt;}
.y24f{bottom:630.398000pt;}
.y230{bottom:632.095867pt;}
.y110{bottom:633.627200pt;}
.y20f{bottom:634.613200pt;}
.y4e{bottom:634.869200pt;}
.y71{bottom:635.007200pt;}
.y1a4{bottom:635.759067pt;}
.y1c6{bottom:639.009200pt;}
.y1ed{bottom:639.423200pt;}
.y159{bottom:641.584667pt;}
.yb9{bottom:645.988000pt;}
.yde{bottom:646.972267pt;}
.y24e{bottom:647.731333pt;}
.y181{bottom:648.184400pt;}
.y134{bottom:648.705600pt;}
.y22f{bottom:650.281867pt;}
.y10f{bottom:652.379867pt;}
.y20e{bottom:652.869200pt;}
.y4d{bottom:653.483867pt;}
.y70{bottom:653.606533pt;}
.y1a3{bottom:655.959067pt;}
.y93{bottom:656.165867pt;}
.y1c5{bottom:657.163867pt;}
.y7{bottom:657.464133pt;}
.y1ec{bottom:657.531867pt;}
.y29{bottom:660.694533pt;}
.y156{bottom:661.796267pt;}
.yb8{bottom:661.988000pt;}
.y158{bottom:662.182933pt;}
.y24d{bottom:665.064667pt;}
.ydb{bottom:667.183867pt;}
.ydd{bottom:667.570533pt;}
.y180{bottom:668.396000pt;}
.y133{bottom:668.917200pt;}
.y10e{bottom:671.132533pt;}
.y4c{bottom:672.098533pt;}
.y6f{bottom:672.205867pt;}
.y92{bottom:673.499200pt;}
.y22e{bottom:674.893867pt;}
.y1c4{bottom:675.318533pt;}
.y1eb{bottom:675.640533pt;}
.y1a2{bottom:676.159067pt;}
.y20d{bottom:677.551200pt;}
.y155{bottom:677.796267pt;}
.y157{bottom:678.182933pt;}
.y28{bottom:679.574533pt;}
.yb7{bottom:682.188000pt;}
.y24c{bottom:682.398000pt;}
.yda{bottom:683.183867pt;}
.ydc{bottom:683.570533pt;}
.y17f{bottom:684.396000pt;}
.y132{bottom:684.917200pt;}
.y10d{bottom:689.885200pt;}
.y4b{bottom:690.713200pt;}
.y6e{bottom:690.805200pt;}
.y22d{bottom:693.079867pt;}
.y1c3{bottom:693.473200pt;}
.y1ea{bottom:693.749200pt;}
.y20c{bottom:695.807200pt;}
.y1a1{bottom:696.359067pt;}
.y154{bottom:698.396267pt;}
.y27{bottom:698.451333pt;}
.y24b{bottom:699.731333pt;}
.yb6{bottom:703.660400pt;}
.yd9{bottom:703.783867pt;}
.y17e{bottom:704.596000pt;}
.y131{bottom:705.117200pt;}
.y10c{bottom:708.637867pt;}
.y4a{bottom:709.327867pt;}
.y6d{bottom:709.404533pt;}
.y1c2{bottom:711.627867pt;}
.y1e9{bottom:711.857867pt;}
.y6{bottom:712.224800pt;}
.y26{bottom:715.998000pt;}
.y1a0{bottom:716.559067pt;}
.y24a{bottom:717.064667pt;}
.y22c{bottom:717.691867pt;}
.y153{bottom:718.596267pt;}
.yb5{bottom:719.660400pt;}
.y20b{bottom:720.489200pt;}
.yd8{bottom:723.983867pt;}
.y17d{bottom:724.796000pt;}
.y130{bottom:725.322933pt;}
.y10b{bottom:727.390533pt;}
.y91{bottom:727.727467pt;}
.y49{bottom:727.942533pt;}
.y6c{bottom:728.003867pt;}
.y1c1{bottom:729.782533pt;}
.y1e8{bottom:729.966533pt;}
.y25{bottom:733.544667pt;}
.y249{bottom:734.398000pt;}
.y22b{bottom:735.877867pt;}
.y19f{bottom:736.759067pt;}
.y5{bottom:738.771467pt;}
.y152{bottom:738.802133pt;}
.yb4{bottom:739.860400pt;}
.y12f{bottom:741.322933pt;}
.yd6{bottom:744.189600pt;}
.y17c{bottom:745.001733pt;}
.y90{bottom:745.728800pt;}
.y10a{bottom:746.143200pt;}
.y48{bottom:746.557200pt;}
.y6b{bottom:746.603200pt;}
.y1c0{bottom:747.937200pt;}
.y1e7{bottom:748.075200pt;}
.y24{bottom:751.091333pt;}
.y248{bottom:751.731333pt;}
.yd5{bottom:752.189600pt;}
.y151{bottom:754.802133pt;}
.y19e{bottom:756.959067pt;}
.yb2{bottom:760.066133pt;}
.yd7{bottom:760.189600pt;}
.y22a{bottom:760.489867pt;}
.y17b{bottom:761.001733pt;}
.y12e{bottom:761.522933pt;}
.y8f{bottom:763.730133pt;}
.y109{bottom:764.895867pt;}
.y47{bottom:765.171867pt;}
.y6a{bottom:765.202533pt;}
.y4{bottom:765.318133pt;}
.y20a{bottom:765.877200pt;}
.y1bf{bottom:766.091867pt;}
.y1e6{bottom:766.183867pt;}
.yb1{bottom:768.066133pt;}
.y23{bottom:768.638000pt;}
.y247{bottom:769.064667pt;}
.yb3{bottom:776.066133pt;}
.y19d{bottom:777.159067pt;}
.y229{bottom:778.675867pt;}
.y12d{bottom:781.728667pt;}
.y108{bottom:783.648533pt;}
.y150{bottom:783.704667pt;}
.y46{bottom:783.786533pt;}
.y69{bottom:783.801867pt;}
.y209{bottom:784.139200pt;}
.y1be{bottom:784.246533pt;}
.y1e5{bottom:784.292533pt;}
.y3{bottom:784.304800pt;}
.y22{bottom:786.184667pt;}
.yd4{bottom:786.398000pt;}
.y17a{bottom:788.138133pt;}
.y12c{bottom:797.728667pt;}
.y8e{bottom:800.627733pt;}
.y45{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:803.731333pt;}
.y179{bottom:806.391467pt;}
.y20{bottom:842.834667pt;}
.he{height:33.810271pt;}
.h7{height:39.520833pt;}
.h11{height:44.453125pt;}
.hf{height:44.460938pt;}
.h15{height:44.471604pt;}
.h13{height:44.505208pt;}
.h16{height:46.067708pt;}
.h12{height:46.119792pt;}
.h4{height:49.401042pt;}
.h17{height:49.407975pt;}
.h1a{height:49.422908pt;}
.h14{height:49.431442pt;}
.h19{height:49.445308pt;}
.h18{height:49.445842pt;}
.h3{height:51.871094pt;}
.ha{height:56.793598pt;}
.h9{height:56.811198pt;}
.hc{height:56.832531pt;}
.hd{height:56.833065pt;}
.hb{height:57.302931pt;}
.h2{height:61.751302pt;}
.h8{height:66.691406pt;}
.h6{height:69.161458pt;}
.h10{height:78.119792pt;}
.h5{height:88.921875pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x60{left:71.937867pt;}
.x7{left:73.079333pt;}
.x6{left:74.466000pt;}
.x1{left:75.590533pt;}
.x10{left:79.564667pt;}
.x20{left:83.340400pt;}
.x4a{left:85.548533pt;}
.x61{left:92.192933pt;}
.x5{left:93.372667pt;}
.x4{left:94.267200pt;}
.x27{left:96.002667pt;}
.x5f{left:141.095333pt;}
.x18{left:153.112667pt;}
.x11{left:154.498000pt;}
.x21{left:155.420400pt;}
.x2f{left:156.879200pt;}
.x39{left:158.480933pt;}
.x55{left:160.175333pt;}
.x5c{left:162.975333pt;}
.x8{left:169.284133pt;}
.x35{left:178.773600pt;}
.x2e{left:186.145867pt;}
.x40{left:188.065867pt;}
.x46{left:189.428000pt;}
.x3a{left:190.398933pt;}
.x12{left:193.098000pt;}
.x22{left:194.020400pt;}
.x30{left:195.625867pt;}
.x36{left:197.013600pt;}
.x1a{left:201.252000pt;}
.x5a{left:202.420933pt;}
.x28{left:204.056000pt;}
.x48{left:205.044000pt;}
.x3{left:206.416000pt;}
.x2{left:207.480400pt;}
.x4b{left:210.948533pt;}
.x2d{left:217.745867pt;}
.x59{left:219.851600pt;}
.xf{left:228.138000pt;}
.x54{left:229.082000pt;}
.x53{left:234.268667pt;}
.x41{left:235.319200pt;}
.x1f{left:236.353733pt;}
.x17{left:240.992667pt;}
.x57{left:241.930267pt;}
.x23{left:242.860400pt;}
.x24{left:244.233733pt;}
.x13{left:247.311333pt;}
.x19{left:248.686000pt;}
.x3b{left:251.566267pt;}
.x29{left:253.189333pt;}
.x1c{left:254.398667pt;}
.x58{left:255.436933pt;}
.x4d{left:257.401867pt;}
.x5d{left:259.095333pt;}
.x5b{left:260.068800pt;}
.xa{left:261.657733pt;}
.x1b{left:263.425333pt;}
.x4c{left:266.455200pt;}
.x9{left:270.684400pt;}
.x43{left:282.572533pt;}
.x42{left:283.945867pt;}
.x31{left:293.892533pt;}
.x32{left:295.265867pt;}
.x3d{left:297.339600pt;}
.x25{left:299.807067pt;}
.x2b{left:301.602667pt;}
.x3c{left:303.032933pt;}
.x14{left:304.551333pt;}
.x5e{left:306.162000pt;}
.x2a{left:307.296000pt;}
.x4f{left:309.001867pt;}
.x1e{left:313.012000pt;}
.x4e{left:314.695200pt;}
.xc{left:316.044400pt;}
.x1d{left:318.705333pt;}
.xb{left:321.737733pt;}
.x33{left:336.412533pt;}
.x37{left:337.800267pt;}
.x44{left:339.239200pt;}
.x49{left:340.578800pt;}
.x15{left:351.978000pt;}
.x2c{left:353.589333pt;}
.x3e{left:354.512933pt;}
.x26{left:355.847067pt;}
.x50{left:360.908533pt;}
.x51{left:362.175200pt;}
.xd{left:365.364400pt;}
.xe{left:366.657733pt;}
.x45{left:442.252533pt;}
.x38{left:443.200267pt;}
.x47{left:444.454667pt;}
.x34{left:445.425867pt;}
.x56{left:447.788667pt;}
.x16{left:450.871333pt;}
.x3f{left:486.992933pt;}
.x52{left:488.641867pt;}
}




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