
    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_0ffc36b7bab1a6de3008c6ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e0074b762f5af049bcb53fc9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0cec53987c3dbfeb4bf68bb7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_11ce383023e640b78b8268e0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1fa4381f27c4a21b263091f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_79369a2eeb63546a1eda909b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0e8a63b47122f4b00e8c45b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924000;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_69d10ca2076a12be01c9a49c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e0074b762f5af049bcb53fc9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4fe5f6b446547abf4db1ab60.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2cfe8f5322036f6558fb9f3b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400011px;}
.v3{vertical-align:-3.600037px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls3e{letter-spacing:-2.091000px;}
.ls35{letter-spacing:-1.530000px;}
.ls33{letter-spacing:-1.140000px;}
.ls30{letter-spacing:-0.900000px;}
.ls31{letter-spacing:-0.840000px;}
.ls2f{letter-spacing:-0.720000px;}
.ls34{letter-spacing:-0.600000px;}
.ls2e{letter-spacing:-0.540000px;}
.ls32{letter-spacing:-0.480000px;}
.ls1e{letter-spacing:-0.420000px;}
.lsc{letter-spacing:-0.360000px;}
.ls58{letter-spacing:-0.357000px;}
.ls1d{letter-spacing:-0.300000px;}
.ls21{letter-spacing:-0.240000px;}
.ls59{letter-spacing:-0.204000px;}
.lsb{letter-spacing:-0.180000px;}
.ls2a{letter-spacing:-0.120000px;}
.ls5a{letter-spacing:-0.102000px;}
.ls20{letter-spacing:-0.060000px;}
.ls5b{letter-spacing:-0.051000px;}
.lsa{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.000037px;}
.ls4e{letter-spacing:0.051000px;}
.ls4{letter-spacing:0.060000px;}
.ls25{letter-spacing:0.061157px;}
.ls4c{letter-spacing:0.102000px;}
.ls1f{letter-spacing:0.120000px;}
.ls24{letter-spacing:0.135709px;}
.ls5d{letter-spacing:0.153000px;}
.ls8{letter-spacing:0.178791px;}
.ls1{letter-spacing:0.180000px;}
.ls4b{letter-spacing:0.204000px;}
.ls5{letter-spacing:0.210000px;}
.ls0{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.255000px;}
.ls4d{letter-spacing:0.264000px;}
.ls2b{letter-spacing:0.282000px;}
.ls51{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls2c{letter-spacing:0.330000px;}
.ls4f{letter-spacing:0.357000px;}
.ls11{letter-spacing:0.360000px;}
.ls5c{letter-spacing:0.408000px;}
.ls3{letter-spacing:0.420000px;}
.ls7{letter-spacing:0.450000px;}
.ls50{letter-spacing:0.459000px;}
.ls6{letter-spacing:0.480000px;}
.ls45{letter-spacing:0.510000px;}
.lse{letter-spacing:0.540000px;}
.ls55{letter-spacing:0.561000px;}
.lsf{letter-spacing:0.600000px;}
.ls48{letter-spacing:0.612000px;}
.ls13{letter-spacing:0.630000px;}
.ls16{letter-spacing:0.660000px;}
.ls5e{letter-spacing:0.663000px;}
.ls42{letter-spacing:0.690000px;}
.ls1c{letter-spacing:0.714000px;}
.ls1a{letter-spacing:0.720000px;}
.ls46{letter-spacing:0.750000px;}
.ls10{letter-spacing:0.780000px;}
.ls49{letter-spacing:0.816000px;}
.ls14{letter-spacing:0.840000px;}
.ls5f{letter-spacing:0.841500px;}
.ls52{letter-spacing:0.867000px;}
.ls18{letter-spacing:0.900000px;}
.ls37{letter-spacing:0.930000px;}
.ls19{letter-spacing:0.960000px;}
.ls4a{letter-spacing:0.969000px;}
.lsd{letter-spacing:1.020000px;}
.ls1b{letter-spacing:1.050000px;}
.ls60{letter-spacing:1.071000px;}
.ls27{letter-spacing:1.080000px;}
.ls12{letter-spacing:1.140000px;}
.ls54{letter-spacing:1.173000px;}
.ls22{letter-spacing:1.200000px;}
.ls15{letter-spacing:1.260000px;}
.ls57{letter-spacing:1.275000px;}
.ls26{letter-spacing:1.320000px;}
.ls41{letter-spacing:1.350000px;}
.ls47{letter-spacing:1.410000px;}
.ls44{letter-spacing:1.440000px;}
.ls53{letter-spacing:1.479000px;}
.ls23{letter-spacing:1.500000px;}
.ls28{letter-spacing:1.560000px;}
.ls38{letter-spacing:1.680000px;}
.ls2d{letter-spacing:1.740000px;}
.ls39{letter-spacing:1.800000px;}
.ls3a{letter-spacing:1.860000px;}
.ls3c{letter-spacing:1.980000px;}
.ls17{letter-spacing:2.040000px;}
.ls40{letter-spacing:2.100000px;}
.ls43{letter-spacing:2.160000px;}
.ls3b{letter-spacing:2.238000px;}
.ls3f{letter-spacing:2.280000px;}
.ls3d{letter-spacing:2.700000px;}
.ls36{letter-spacing:2.940000px;}
.ls56{letter-spacing:12.750000px;}
.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;}
}
.ws6a{word-spacing:-16.740000px;}
.ws33{word-spacing:-16.500000px;}
.ws89{word-spacing:-15.480000px;}
.ws34{word-spacing:-15.300000px;}
.ws56{word-spacing:-15.000000px;}
.ws94{word-spacing:-14.832000px;}
.ws55{word-spacing:-14.820000px;}
.ws19{word-spacing:-14.640000px;}
.ws4e{word-spacing:-14.544000px;}
.ws57{word-spacing:-14.460000px;}
.ws9f{word-spacing:-13.005000px;}
.ws1b{word-spacing:-12.750000px;}
.ws35{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws6{word-spacing:-12.120000px;}
.ws5{word-spacing:-11.520000px;}
.ws59{word-spacing:-11.220000px;}
.ws93{word-spacing:-10.761000px;}
.ws1a{word-spacing:-10.500000px;}
.ws92{word-spacing:-10.404000px;}
.ws1{word-spacing:-9.996000px;}
.ws0{word-spacing:-9.408000px;}
.ws1c{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws91{word-spacing:-6.375000px;}
.ws7{word-spacing:-1.890000px;}
.ws9{word-spacing:-1.500000px;}
.ws61{word-spacing:-1.440000px;}
.ws62{word-spacing:-1.380000px;}
.ws14{word-spacing:-1.320000px;}
.wsa0{word-spacing:-1.275000px;}
.ws51{word-spacing:-1.260000px;}
.ws43{word-spacing:-1.200000px;}
.wsb0{word-spacing:-1.122000px;}
.wsf{word-spacing:-1.080000px;}
.wsa3{word-spacing:-1.071000px;}
.ws81{word-spacing:-1.020000px;}
.wsa1{word-spacing:-0.969000px;}
.ws5f{word-spacing:-0.960000px;}
.ws47{word-spacing:-0.900000px;}
.ws71{word-spacing:-0.840000px;}
.wsb1{word-spacing:-0.816000px;}
.ws3d{word-spacing:-0.780000px;}
.wsa4{word-spacing:-0.765000px;}
.ws11{word-spacing:-0.720000px;}
.wsa5{word-spacing:-0.714000px;}
.wsa{word-spacing:-0.660000px;}
.ws18{word-spacing:-0.612000px;}
.ws26{word-spacing:-0.600000px;}
.wsa9{word-spacing:-0.561000px;}
.ws45{word-spacing:-0.540000px;}
.wsac{word-spacing:-0.510000px;}
.wsaa{word-spacing:-0.459000px;}
.ws10{word-spacing:-0.420000px;}
.ws64{word-spacing:-0.360000px;}
.wsab{word-spacing:-0.357000px;}
.wsc{word-spacing:-0.300000px;}
.ws52{word-spacing:-0.282000px;}
.wsa8{word-spacing:-0.255000px;}
.ws38{word-spacing:-0.240000px;}
.ws25{word-spacing:-0.180000px;}
.ws15{word-spacing:-0.120000px;}
.ws65{word-spacing:-0.060000px;}
.ws8{word-spacing:0.000000px;}
.ws8f{word-spacing:0.060000px;}
.ws12{word-spacing:0.120000px;}
.ws3f{word-spacing:0.180000px;}
.ws3a{word-spacing:0.240000px;}
.ws3b{word-spacing:0.300000px;}
.ws1f{word-spacing:0.360000px;}
.ws72{word-spacing:0.480000px;}
.ws5c{word-spacing:0.540000px;}
.ws85{word-spacing:0.600000px;}
.ws2b{word-spacing:0.660000px;}
.ws7c{word-spacing:0.720000px;}
.ws5e{word-spacing:0.780000px;}
.wsd{word-spacing:0.840000px;}
.ws40{word-spacing:0.900000px;}
.ws2c{word-spacing:0.960000px;}
.ws9d{word-spacing:0.969000px;}
.wse{word-spacing:1.020000px;}
.ws2e{word-spacing:1.080000px;}
.ws1d{word-spacing:1.140000px;}
.wsa2{word-spacing:1.173000px;}
.ws13{word-spacing:1.200000px;}
.wsb2{word-spacing:1.224000px;}
.ws30{word-spacing:1.260000px;}
.ws9e{word-spacing:1.275000px;}
.ws4b{word-spacing:1.320000px;}
.ws3e{word-spacing:1.380000px;}
.wsae{word-spacing:1.428000px;}
.ws44{word-spacing:1.440000px;}
.wsb{word-spacing:1.500000px;}
.ws3c{word-spacing:1.560000px;}
.ws32{word-spacing:1.632000px;}
.ws2f{word-spacing:1.680000px;}
.ws20{word-spacing:1.740000px;}
.ws36{word-spacing:1.800000px;}
.ws7a{word-spacing:1.860000px;}
.ws67{word-spacing:1.920000px;}
.ws41{word-spacing:1.980000px;}
.ws23{word-spacing:2.040000px;}
.ws4c{word-spacing:2.100000px;}
.ws9b{word-spacing:2.142000px;}
.ws37{word-spacing:2.160000px;}
.ws46{word-spacing:2.220000px;}
.ws2a{word-spacing:2.280000px;}
.wsb3{word-spacing:2.295000px;}
.ws4d{word-spacing:2.340000px;}
.wsa6{word-spacing:2.397000px;}
.ws28{word-spacing:2.400000px;}
.ws4a{word-spacing:2.460000px;}
.ws29{word-spacing:2.520000px;}
.ws90{word-spacing:2.550000px;}
.ws7d{word-spacing:2.580000px;}
.ws75{word-spacing:2.640000px;}
.ws4f{word-spacing:2.700000px;}
.ws22{word-spacing:2.820000px;}
.ws73{word-spacing:2.880000px;}
.ws39{word-spacing:2.940000px;}
.ws1e{word-spacing:3.000000px;}
.ws96{word-spacing:3.060000px;}
.ws83{word-spacing:3.120000px;}
.wsad{word-spacing:3.162000px;}
.ws53{word-spacing:3.180000px;}
.ws7f{word-spacing:3.300000px;}
.ws2d{word-spacing:3.360000px;}
.ws21{word-spacing:3.420000px;}
.wsb4{word-spacing:3.468000px;}
.ws74{word-spacing:3.480000px;}
.ws77{word-spacing:3.540000px;}
.ws5d{word-spacing:3.600000px;}
.ws80{word-spacing:3.720000px;}
.ws98{word-spacing:3.780000px;}
.ws42{word-spacing:3.840000px;}
.ws7e{word-spacing:3.900000px;}
.ws49{word-spacing:3.960000px;}
.ws79{word-spacing:4.020000px;}
.ws84{word-spacing:4.080000px;}
.ws24{word-spacing:4.200000px;}
.ws9c{word-spacing:4.284000px;}
.ws63{word-spacing:4.320000px;}
.wsaf{word-spacing:4.488000px;}
.ws7b{word-spacing:4.500000px;}
.ws99{word-spacing:4.740000px;}
.ws87{word-spacing:4.896000px;}
.ws88{word-spacing:4.920000px;}
.ws78{word-spacing:4.980000px;}
.ws9a{word-spacing:5.040000px;}
.ws48{word-spacing:5.100000px;}
.ws50{word-spacing:5.340000px;}
.wsa7{word-spacing:5.457000px;}
.ws54{word-spacing:5.520000px;}
.ws97{word-spacing:6.060000px;}
.ws82{word-spacing:6.120000px;}
.ws95{word-spacing:6.360000px;}
.ws60{word-spacing:6.540000px;}
.ws76{word-spacing:7.020000px;}
.ws69{word-spacing:7.191000px;}
.ws86{word-spacing:7.446000px;}
.ws68{word-spacing:7.854000px;}
.ws27{word-spacing:8.040000px;}
.ws66{word-spacing:12.360000px;}
.ws31{word-spacing:12.750000px;}
.ws16{word-spacing:21.456000px;}
.ws17{word-spacing:72.267000px;}
.ws8a{word-spacing:75.683991px;}
.ws8b{word-spacing:75.684000px;}
.ws8c{word-spacing:91.392000px;}
.ws8d{word-spacing:110.772000px;}
.ws70{word-spacing:161.159992px;}
.ws8e{word-spacing:177.990000px;}
.ws6c{word-spacing:186.659992px;}
.ws5b{word-spacing:195.023994px;}
.ws6b{word-spacing:221.238000px;}
.ws6e{word-spacing:224.043000px;}
.ws6f{word-spacing:243.270000px;}
.ws58{word-spacing:388.931630px;}
.ws5a{word-spacing:527.493530px;}
.ws6d{word-spacing:719.610000px;}
._f{margin-left:-2959.376983px;}
._7{margin-left:-48.450000px;}
._4{margin-left:-16.575000px;}
._11{margin-left:-14.544000px;}
._e{margin-left:-12.648000px;}
._17{margin-left:-8.600454px;}
._18{margin-left:-5.031600px;}
._3{margin-left:-3.836400px;}
._2{margin-left:-2.708400px;}
._0{margin-left:-1.632000px;}
._1{width:1.910400px;}
._19{width:4.028400px;}
._d{width:6.023100px;}
._51{width:8.721000px;}
._50{width:9.944993px;}
._b{width:11.118000px;}
._27{width:12.467400px;}
._14{width:14.284801px;}
._9{width:16.682400px;}
._5{width:18.360000px;}
._10{width:21.456000px;}
._12{width:31.020000px;}
._13{width:33.000000px;}
._a{width:35.781599px;}
._16{width:45.714001px;}
._6{width:54.621000px;}
._c{width:61.353000px;}
._15{width:64.505999px;}
._3b{width:88.434000px;}
._3e{width:99.177000px;}
._41{width:101.337000px;}
._40{width:104.085600px;}
._3d{width:123.522000px;}
._4b{width:135.762000px;}
._4a{width:138.968379px;}
._48{width:140.078987px;}
._47{width:142.137000px;}
._44{width:143.819989px;}
._28{width:164.015992px;}
._1f{width:191.295594px;}
._1e{width:193.142400px;}
._2b{width:199.409992px;}
._21{width:204.969000px;}
._4c{width:206.085591px;}
._4d{width:208.947000px;}
._3f{width:210.680989px;}
._2a{width:237.126600px;}
._30{width:239.037000px;}
._34{width:244.698000px;}
._49{width:247.661389px;}
._46{width:257.085591px;}
._45{width:259.947000px;}
._42{width:282.698391px;}
._43{width:285.447000px;}
._1c{width:293.809713px;}
._2d{width:328.287000px;}
._4e{width:344.379589px;}
._31{width:350.579400px;}
._2f{width:353.770192px;}
._2c{width:370.837790px;}
._33{width:392.687392px;}
._4f{width:395.516389px;}
._1b{width:405.909713px;}
._20{width:420.597000px;}
._24{width:426.258000px;}
._23{width:428.966400px;}
._22{width:430.695000px;}
._25{width:431.919000px;}
._26{width:454.512000px;}
._3c{width:465.272989px;}
._1a{width:487.913378px;}
._36{width:543.410400px;}
._1d{width:565.743713px;}
._32{width:579.972000px;}
._38{width:653.667000px;}
._39{width:684.777000px;}
._2e{width:688.986600px;}
._3a{width:718.743000px;}
._35{width:724.455000px;}
._29{width:744.243000px;}
._37{width:747.099000px;}
._8{width:1520.207985px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:35.699999px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs9{font-size:56.399998px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y12c{bottom:112.672794px;}
.y2f{bottom:112.944300px;}
.y66{bottom:112.986289px;}
.y208{bottom:113.683823px;}
.y144{bottom:114.115795px;}
.y18c{bottom:114.253944px;}
.y1df{bottom:114.735294px;}
.y1b5{bottom:114.874947px;}
.ye3{bottom:115.470589px;}
.yc3{bottom:118.032303px;}
.y183{bottom:126.028955px;}
.y2e{bottom:127.938300px;}
.y65{bottom:127.980289px;}
.y143{bottom:129.109795px;}
.y2a{bottom:131.223598px;}
.y97{bottom:131.283302px;}
.y238{bottom:131.283325px;}
.y12b{bottom:131.422794px;}
.y207{bottom:132.433823px;}
.y18b{bottom:133.003944px;}
.y1de{bottom:133.485294px;}
.y21d{bottom:133.624786px;}
.y1b4{bottom:133.624947px;}
.ye2{bottom:134.220589px;}
.y64{bottom:142.974289px;}
.y182{bottom:144.745955px;}
.y2d{bottom:148.032303px;}
.y29{bottom:149.973598px;}
.y96{bottom:150.033302px;}
.y237{bottom:150.033325px;}
.y12a{bottom:150.172794px;}
.y206{bottom:151.183823px;}
.y18a{bottom:151.753944px;}
.y21c{bottom:152.374786px;}
.y1b3{bottom:152.374947px;}
.ye1{bottom:152.970589px;}
.y63{bottom:157.968289px;}
.y181{bottom:163.539455px;}
.y28{bottom:168.723598px;}
.y95{bottom:168.783302px;}
.y236{bottom:168.783325px;}
.y129{bottom:168.922794px;}
.y56{bottom:169.804779px;}
.y205{bottom:169.933823px;}
.y189{bottom:170.503944px;}
.y1dd{bottom:170.985294px;}
.y21b{bottom:171.124786px;}
.y1b2{bottom:171.124947px;}
.ye0{bottom:171.720589px;}
.y62{bottom:172.962289px;}
.y2c{bottom:173.032794px;}
.y266{bottom:178.722003px;}
.y180{bottom:182.179955px;}
.y94{bottom:187.533302px;}
.y235{bottom:187.533325px;}
.y61{bottom:187.956289px;}
.y2b{bottom:188.026794px;}
.y55{bottom:188.554779px;}
.y204{bottom:188.683823px;}
.y188{bottom:189.253944px;}
.yc2{bottom:189.735146px;}
.y21a{bottom:189.874786px;}
.y1b1{bottom:189.874947px;}
.ydf{bottom:190.470589px;}
.y265{bottom:193.716003px;}
.y17f{bottom:200.973455px;}
.y60{bottom:202.950289px;}
.y27{bottom:206.223610px;}
.y93{bottom:206.283302px;}
.y234{bottom:206.283325px;}
.y128{bottom:206.422806px;}
.y54{bottom:207.304779px;}
.y203{bottom:207.433823px;}
.y187{bottom:208.003944px;}
.yc1{bottom:208.485146px;}
.y1dc{bottom:208.485306px;}
.y102{bottom:208.620575px;}
.y219{bottom:208.624786px;}
.y1b0{bottom:208.624947px;}
.y264{bottom:208.710003px;}
.yde{bottom:209.220589px;}
.y5f{bottom:217.944289px;}
.y17e{bottom:219.690455px;}
.y263{bottom:223.704003px;}
.y92{bottom:225.033302px;}
.y233{bottom:225.033325px;}
.y53{bottom:226.054779px;}
.y202{bottom:226.183823px;}
.y186{bottom:226.753944px;}
.yc0{bottom:227.235146px;}
.y1db{bottom:227.235306px;}
.y101{bottom:227.370575px;}
.y218{bottom:227.374786px;}
.y1af{bottom:227.374947px;}
.ydd{bottom:227.970589px;}
.y5e{bottom:232.938289px;}
.y17d{bottom:238.407455px;}
.y262{bottom:238.698003px;}
.y232{bottom:243.783325px;}
.y127{bottom:243.922806px;}
.y52{bottom:244.804779px;}
.y201{bottom:244.933823px;}
.y185{bottom:245.503944px;}
.ybf{bottom:245.985146px;}
.y100{bottom:246.120575px;}
.y217{bottom:246.124786px;}
.y1ae{bottom:246.124947px;}
.ydc{bottom:246.720589px;}
.y1da{bottom:246.885292px;}
.y5d{bottom:253.032303px;}
.y261{bottom:253.692003px;}
.y17c{bottom:257.124455px;}
.y26{bottom:262.473450px;}
.y91{bottom:262.533302px;}
.y231{bottom:262.533325px;}
.y126{bottom:262.672806px;}
.y51{bottom:263.554779px;}
.y200{bottom:263.683823px;}
.y184{bottom:264.253944px;}
.y1d9{bottom:264.735306px;}
.yff{bottom:264.870575px;}
.y216{bottom:264.874786px;}
.y1ad{bottom:264.874947px;}
.ybe{bottom:265.635155px;}
.y260{bottom:268.686003px;}
.y17b{bottom:275.841455px;}
.y230{bottom:281.283325px;}
.y50{bottom:282.304779px;}
.y125{bottom:282.322792px;}
.y1ff{bottom:282.433823px;}
.y1e3{bottom:283.003944px;}
.ybd{bottom:283.485146px;}
.y1d8{bottom:283.485306px;}
.yfe{bottom:283.620575px;}
.y215{bottom:283.624786px;}
.y1ac{bottom:283.624947px;}
.y25f{bottom:283.680003px;}
.ydb{bottom:284.220589px;}
.y17a{bottom:294.558455px;}
.y25e{bottom:298.674003px;}
.y25{bottom:299.973450px;}
.y90{bottom:300.033325px;}
.y124{bottom:300.172806px;}
.y4f{bottom:301.054779px;}
.y1fe{bottom:301.183823px;}
.ybc{bottom:302.235146px;}
.y1d7{bottom:302.235306px;}
.yfd{bottom:302.370575px;}
.y214{bottom:302.374786px;}
.y1ab{bottom:302.374947px;}
.y179{bottom:313.275455px;}
.y25d{bottom:313.668003px;}
.y24{bottom:318.723450px;}
.y8f{bottom:318.783325px;}
.y123{bottom:318.922806px;}
.y4e{bottom:319.804779px;}
.y1fd{bottom:319.933823px;}
.ybb{bottom:320.985146px;}
.y1d6{bottom:320.985306px;}
.yfc{bottom:321.120575px;}
.y213{bottom:321.124786px;}
.y25c{bottom:328.662003px;}
.y178{bottom:331.992455px;}
.y23{bottom:337.473450px;}
.y8e{bottom:337.533325px;}
.y4d{bottom:338.554779px;}
.y122{bottom:338.572792px;}
.y1fc{bottom:338.683823px;}
.yba{bottom:339.735146px;}
.yfb{bottom:339.870575px;}
.y212{bottom:339.874786px;}
.y1aa{bottom:339.874809px;}
.yda{bottom:340.470612px;}
.y1d5{bottom:340.635292px;}
.y177{bottom:350.709455px;}
.y22{bottom:356.223450px;}
.y8d{bottom:356.283325px;}
.y4c{bottom:357.304779px;}
.y1fb{bottom:357.433823px;}
.yfa{bottom:358.620575px;}
.y211{bottom:358.624786px;}
.yd9{bottom:359.220612px;}
.yb9{bottom:359.385155px;}
.y25b{bottom:362.412003px;}
.y176{bottom:369.426455px;}
.y21{bottom:374.973450px;}
.y8c{bottom:375.033325px;}
.y121{bottom:375.172806px;}
.y4b{bottom:376.054779px;}
.y1d4{bottom:377.235306px;}
.yf9{bottom:377.370575px;}
.y1a9{bottom:377.374786px;}
.yd8{bottom:377.970612px;}
.y19c{bottom:380.767796px;}
.y175{bottom:388.143455px;}
.y20{bottom:393.723450px;}
.y8b{bottom:393.783325px;}
.y120{bottom:393.922806px;}
.y4a{bottom:394.804779px;}
.y19b{bottom:395.761796px;}
.yb8{bottom:395.985168px;}
.y1d3{bottom:395.985306px;}
.yf8{bottom:396.120575px;}
.y1a8{bottom:396.124786px;}
.y174{bottom:406.860455px;}
.y19a{bottom:410.755796px;}
.y1f{bottom:412.473450px;}
.y8a{bottom:412.533325px;}
.y11f{bottom:412.672806px;}
.y49{bottom:413.554779px;}
.y1fa{bottom:413.683823px;}
.yb7{bottom:414.735168px;}
.y1d2{bottom:414.735306px;}
.yf7{bottom:414.870575px;}
.y1a7{bottom:414.874786px;}
.y140{bottom:414.877785px;}
.yd7{bottom:415.470612px;}
.y25a{bottom:418.725758px;}
.y173{bottom:425.577455px;}
.y199{bottom:425.749796px;}
.y1e{bottom:431.223450px;}
.y89{bottom:431.283325px;}
.y11e{bottom:431.422806px;}
.y48{bottom:432.304779px;}
.y1f9{bottom:432.433823px;}
.yb6{bottom:433.485168px;}
.y1d1{bottom:433.485306px;}
.yf6{bottom:433.620575px;}
.y1a6{bottom:433.624786px;}
.y13f{bottom:433.627785px;}
.y259{bottom:433.719758px;}
.yd6{bottom:434.220612px;}
.y198{bottom:440.743796px;}
.y172{bottom:444.294455px;}
.y258{bottom:448.713758px;}
.y1d{bottom:449.973450px;}
.y88{bottom:450.033325px;}
.y11d{bottom:450.172806px;}
.y47{bottom:451.054779px;}
.y1f8{bottom:451.183823px;}
.yb5{bottom:452.235168px;}
.y1d0{bottom:452.235306px;}
.yf5{bottom:452.370575px;}
.y1a5{bottom:452.374786px;}
.y13e{bottom:452.377785px;}
.yd5{bottom:453.870621px;}
.y197{bottom:455.737796px;}
.y171{bottom:463.011455px;}
.y257{bottom:463.707758px;}
.y1c{bottom:468.723450px;}
.y87{bottom:468.783325px;}
.y46{bottom:469.804779px;}
.y196{bottom:470.731796px;}
.y1f7{bottom:470.833786px;}
.yb4{bottom:470.985168px;}
.yf4{bottom:471.120575px;}
.y1a4{bottom:471.124786px;}
.y13d{bottom:471.127785px;}
.yd4{bottom:471.720612px;}
.y256{bottom:478.701758px;}
.y170{bottom:481.728455px;}
.y1ed{bottom:485.755796px;}
.y1b{bottom:487.473450px;}
.y86{bottom:487.533325px;}
.y11c{bottom:487.672806px;}
.y45{bottom:488.554779px;}
.y1f6{bottom:488.683823px;}
.yb3{bottom:489.735168px;}
.y1cf{bottom:489.735306px;}
.yf3{bottom:489.870575px;}
.y1a3{bottom:489.874786px;}
.y13c{bottom:489.877785px;}
.yd3{bottom:491.370621px;}
.y255{bottom:493.695758px;}
.y16f{bottom:500.445455px;}
.y1ec{bottom:500.749796px;}
.y1a{bottom:506.223450px;}
.y85{bottom:506.283325px;}
.y44{bottom:507.304779px;}
.y1f5{bottom:507.433823px;}
.yb2{bottom:508.485168px;}
.yf2{bottom:508.620575px;}
.y1a2{bottom:508.624786px;}
.y13b{bottom:508.627785px;}
.y254{bottom:508.689758px;}
.yd2{bottom:509.220612px;}
.y1eb{bottom:515.743796px;}
.y16e{bottom:519.162455px;}
.y253{bottom:523.683758px;}
.y19{bottom:524.973450px;}
.y84{bottom:525.033325px;}
.y11b{bottom:525.172806px;}
.y43{bottom:526.054779px;}
.y1f4{bottom:527.083786px;}
.yb1{bottom:527.235168px;}
.yf1{bottom:527.370575px;}
.y1a1{bottom:527.374786px;}
.y13a{bottom:527.377785px;}
.yd1{bottom:527.970612px;}
.y1ea{bottom:530.737796px;}
.y252{bottom:538.677758px;}
.y18{bottom:543.723450px;}
.y83{bottom:543.783325px;}
.y11a{bottom:543.922806px;}
.y42{bottom:544.804779px;}
.y1e9{bottom:545.731796px;}
.yb0{bottom:545.985168px;}
.y1ce{bottom:545.985306px;}
.y210{bottom:546.118801px;}
.yf0{bottom:546.120575px;}
.y1a0{bottom:546.124786px;}
.y139{bottom:546.127785px;}
.yd0{bottom:546.720612px;}
.y16d{bottom:547.250705px;}
.y251{bottom:553.671758px;}
.y16c{bottom:562.244705px;}
.y17{bottom:562.473450px;}
.y82{bottom:562.533325px;}
.y119{bottom:562.672806px;}
.y41{bottom:563.554779px;}
.y1f3{bottom:563.683823px;}
.yaf{bottom:564.735168px;}
.y1cd{bottom:564.735306px;}
.y20f{bottom:564.868801px;}
.yef{bottom:564.870575px;}
.y19f{bottom:564.874786px;}
.y138{bottom:564.877785px;}
.ycf{bottom:566.370621px;}
.y250{bottom:568.665758px;}
.y81{bottom:581.283325px;}
.y118{bottom:581.422806px;}
.y40{bottom:582.304779px;}
.y1f2{bottom:582.433823px;}
.yae{bottom:583.485168px;}
.y1cc{bottom:583.485306px;}
.y20e{bottom:583.618801px;}
.yee{bottom:583.620575px;}
.y19e{bottom:583.624786px;}
.y137{bottom:583.627785px;}
.y24f{bottom:583.659758px;}
.yce{bottom:584.220612px;}
.y16b{bottom:587.738749px;}
.y16{bottom:599.973450px;}
.y80{bottom:600.033325px;}
.y117{bottom:600.172806px;}
.y3f{bottom:601.054779px;}
.y1f1{bottom:601.183823px;}
.y1cb{bottom:602.235306px;}
.y20d{bottom:602.368801px;}
.yed{bottom:602.370575px;}
.y19d{bottom:602.374786px;}
.y136{bottom:602.377785px;}
.ycd{bottom:602.970612px;}
.y24e{bottom:617.370758px;}
.y7f{bottom:618.783325px;}
.y116{bottom:618.922806px;}
.y3e{bottom:619.804779px;}
.y1f0{bottom:619.933823px;}
.yad{bottom:620.985168px;}
.y1ca{bottom:620.985306px;}
.y169{bottom:620.989775px;}
.y20c{bottom:621.118801px;}
.yec{bottom:621.120575px;}
.y14f{bottom:621.124786px;}
.y135{bottom:621.127785px;}
.ycc{bottom:621.720612px;}
.y195{bottom:624.828435px;}
.y15{bottom:637.473450px;}
.y7e{bottom:637.533325px;}
.y115{bottom:637.672806px;}
.y3d{bottom:638.554779px;}
.y1ef{bottom:638.683823px;}
.y1c9{bottom:639.735306px;}
.y168{bottom:639.739775px;}
.y194{bottom:639.822435px;}
.y20b{bottom:639.868801px;}
.yeb{bottom:639.870575px;}
.y14e{bottom:639.874786px;}
.y134{bottom:639.877785px;}
.ycb{bottom:641.370621px;}
.y24d{bottom:651.120758px;}
.y193{bottom:654.816435px;}
.y14{bottom:656.223450px;}
.y7d{bottom:656.283325px;}
.y114{bottom:656.422806px;}
.y3c{bottom:657.304779px;}
.yac{bottom:658.485168px;}
.y1c8{bottom:658.485306px;}
.y167{bottom:658.489775px;}
.y20a{bottom:658.618801px;}
.yea{bottom:658.620575px;}
.y14d{bottom:658.624786px;}
.y133{bottom:658.627785px;}
.yca{bottom:659.220612px;}
.y192{bottom:669.810435px;}
.y13{bottom:674.973450px;}
.y7c{bottom:675.033325px;}
.y113{bottom:675.172806px;}
.y3b{bottom:676.054779px;}
.y1ee{bottom:676.183823px;}
.yab{bottom:677.235168px;}
.y1c7{bottom:677.235306px;}
.y166{bottom:677.239775px;}
.y209{bottom:677.368801px;}
.ye9{bottom:677.370575px;}
.y14c{bottom:677.374786px;}
.y132{bottom:677.377785px;}
.yc9{bottom:677.970612px;}
.y191{bottom:684.804435px;}
.y24c{bottom:688.667733px;}
.y12{bottom:693.723450px;}
.y7b{bottom:693.783325px;}
.y3a{bottom:694.804779px;}
.yaa{bottom:695.985168px;}
.y1c6{bottom:695.985306px;}
.y165{bottom:695.989775px;}
.ye8{bottom:696.120575px;}
.y14b{bottom:696.124786px;}
.y131{bottom:696.127785px;}
.yc8{bottom:696.720612px;}
.y190{bottom:699.798435px;}
.y24b{bottom:703.661733px;}
.y11{bottom:712.473450px;}
.y7a{bottom:712.533325px;}
.y112{bottom:712.672806px;}
.y39{bottom:713.554779px;}
.ya9{bottom:714.735168px;}
.y1c5{bottom:714.735306px;}
.y164{bottom:714.739775px;}
.y18f{bottom:714.792435px;}
.ye7{bottom:714.870575px;}
.y14a{bottom:714.874786px;}
.y130{bottom:714.877785px;}
.yc7{bottom:716.370621px;}
.y10{bottom:731.223450px;}
.y79{bottom:731.283325px;}
.y38{bottom:732.304779px;}
.ya8{bottom:733.485168px;}
.y163{bottom:733.489775px;}
.ye6{bottom:733.620575px;}
.y149{bottom:733.624786px;}
.y12f{bottom:733.627785px;}
.yc6{bottom:734.220612px;}
.y24a{bottom:737.372733px;}
.y22e{bottom:740.692524px;}
.yf{bottom:749.973450px;}
.y78{bottom:750.033325px;}
.y111{bottom:750.166760px;}
.y37{bottom:751.054779px;}
.y1c4{bottom:752.235306px;}
.y162{bottom:752.239775px;}
.y249{bottom:752.366733px;}
.ye5{bottom:752.370575px;}
.y12e{bottom:752.377785px;}
.yc5{bottom:752.970612px;}
.y22d{bottom:759.409524px;}
.y1e2{bottom:766.222968px;}
.y1e8{bottom:767.316480px;}
.ye{bottom:768.723450px;}
.y77{bottom:768.783325px;}
.y110{bottom:768.922760px;}
.y36{bottom:769.804779px;}
.ya7{bottom:770.985168px;}
.y161{bottom:770.989775px;}
.ye4{bottom:771.120575px;}
.y148{bottom:771.124969px;}
.y12d{bottom:771.127785px;}
.yc4{bottom:772.620575px;}
.y22c{bottom:778.203024px;}
.y1e1{bottom:781.216968px;}
.y1e7{bottom:782.310480px;}
.y248{bottom:786.077733px;}
.yd{bottom:787.473450px;}
.y76{bottom:787.533325px;}
.y35{bottom:788.554779px;}
.y1c3{bottom:789.729260px;}
.y160{bottom:789.739775px;}
.y27b{bottom:791.344823px;}
.y1e0{bottom:796.210968px;}
.y22b{bottom:796.920024px;}
.y1e6{bottom:797.304480px;}
.y247{bottom:801.071733px;}
.yc{bottom:806.223450px;}
.y75{bottom:806.283325px;}
.y27a{bottom:806.338823px;}
.y34{bottom:807.304779px;}
.y1c2{bottom:808.485260px;}
.y15f{bottom:808.489775px;}
.y147{bottom:808.624969px;}
.y1e5{bottom:812.298480px;}
.y22a{bottom:815.637024px;}
.y279{bottom:821.332823px;}
.y142{bottom:822.796833px;}
.yb{bottom:824.973450px;}
.y74{bottom:825.033325px;}
.y33{bottom:826.054779px;}
.ya6{bottom:827.235168px;}
.y15e{bottom:827.239775px;}
.y1e4{bottom:827.292480px;}
.y146{bottom:827.374969px;}
.y229{bottom:834.354024px;}
.y246{bottom:834.782733px;}
.y278{bottom:836.326823px;}
.y141{bottom:837.790833px;}
.y10f{bottom:839.283405px;}
.ya{bottom:843.723450px;}
.y73{bottom:843.783325px;}
.y32{bottom:844.804779px;}
.ya5{bottom:845.985168px;}
.y15d{bottom:845.989775px;}
.y145{bottom:846.124969px;}
.y245{bottom:849.776733px;}
.y277{bottom:851.320823px;}
.y228{bottom:853.071024px;}
.y10e{bottom:858.076905px;}
.y9{bottom:862.473450px;}
.y72{bottom:862.533325px;}
.y31{bottom:863.554779px;}
.ya4{bottom:864.735168px;}
.y15c{bottom:864.739775px;}
.y276{bottom:866.314823px;}
.y28b{bottom:866.429564px;}
.y227{bottom:871.788024px;}
.y10d{bottom:876.793905px;}
.y71{bottom:881.283325px;}
.y275{bottom:881.308823px;}
.y28a{bottom:881.423564px;}
.ya3{bottom:883.485168px;}
.y244{bottom:883.485260px;}
.y15b{bottom:883.489775px;}
.y1c1{bottom:883.489906px;}
.y226{bottom:890.505024px;}
.y10c{bottom:895.510905px;}
.y274{bottom:896.302823px;}
.y289{bottom:896.417564px;}
.y70{bottom:900.033325px;}
.ya2{bottom:902.235168px;}
.y243{bottom:902.235260px;}
.y15a{bottom:902.239775px;}
.y1c0{bottom:902.239906px;}
.y16a{bottom:903.670990px;}
.y8{bottom:906.656208px;}
.y225{bottom:909.222024px;}
.y273{bottom:911.296823px;}
.y288{bottom:911.411564px;}
.y10b{bottom:914.227905px;}
.y6f{bottom:918.783325px;}
.ya1{bottom:920.985168px;}
.y242{bottom:920.985260px;}
.y159{bottom:920.989775px;}
.y1bf{bottom:920.989906px;}
.y7{bottom:921.650208px;}
.y272{bottom:926.290823px;}
.y287{bottom:926.405564px;}
.y224{bottom:927.939024px;}
.y10a{bottom:932.944905px;}
.y6e{bottom:937.533325px;}
.y241{bottom:939.735260px;}
.ya0{bottom:939.738293px;}
.y158{bottom:939.739775px;}
.y1be{bottom:939.739906px;}
.y271{bottom:941.284823px;}
.y286{bottom:941.399564px;}
.y223{bottom:946.656024px;}
.y109{bottom:951.661905px;}
.y270{bottom:956.278823px;}
.y6d{bottom:956.283325px;}
.y285{bottom:956.393564px;}
.y240{bottom:958.485260px;}
.y9f{bottom:958.488293px;}
.y157{bottom:958.489775px;}
.y1bd{bottom:958.489906px;}
.y6{bottom:964.250244px;}
.y222{bottom:965.373024px;}
.y108{bottom:970.378905px;}
.y26f{bottom:971.272823px;}
.y284{bottom:971.387564px;}
.y6c{bottom:975.033325px;}
.y23f{bottom:977.235260px;}
.y9e{bottom:977.238293px;}
.y156{bottom:977.239775px;}
.y1bc{bottom:977.239906px;}
.y221{bottom:984.090024px;}
.y18e{bottom:985.144844px;}
.y26e{bottom:986.266823px;}
.y283{bottom:986.381564px;}
.y107{bottom:989.095905px;}
.y6b{bottom:993.783325px;}
.y23e{bottom:995.985260px;}
.y9d{bottom:995.988293px;}
.y155{bottom:995.989775px;}
.y1bb{bottom:995.989906px;}
.y18d{bottom:1000.138844px;}
.y26d{bottom:1001.260823px;}
.y282{bottom:1001.375564px;}
.y220{bottom:1002.807024px;}
.y106{bottom:1007.812905px;}
.y5{bottom:1008.936768px;}
.y6a{bottom:1012.533325px;}
.y23d{bottom:1014.735260px;}
.y9c{bottom:1014.738293px;}
.y154{bottom:1014.739775px;}
.y1ba{bottom:1014.739906px;}
.y5c{bottom:1015.132844px;}
.y26c{bottom:1016.254823px;}
.y281{bottom:1016.369564px;}
.y21f{bottom:1021.524024px;}
.y5b{bottom:1030.126844px;}
.y26b{bottom:1031.248823px;}
.y22f{bottom:1031.283325px;}
.y280{bottom:1031.363564px;}
.y23c{bottom:1033.485260px;}
.y9b{bottom:1033.488293px;}
.y153{bottom:1033.489775px;}
.y1b9{bottom:1033.489906px;}
.y105{bottom:1035.148905px;}
.y5a{bottom:1045.120844px;}
.y26a{bottom:1046.242823px;}
.y27f{bottom:1046.357564px;}
.y21e{bottom:1049.612274px;}
.y69{bottom:1050.033325px;}
.y9a{bottom:1052.238293px;}
.y23b{bottom:1052.238316px;}
.y152{bottom:1052.239775px;}
.y1b8{bottom:1052.239906px;}
.y104{bottom:1059.568027px;}
.y59{bottom:1060.114844px;}
.y269{bottom:1061.236823px;}
.y27e{bottom:1061.351564px;}
.y99{bottom:1070.988293px;}
.y23a{bottom:1070.988316px;}
.y151{bottom:1070.989775px;}
.y1b7{bottom:1070.989906px;}
.y58{bottom:1075.108844px;}
.y268{bottom:1076.230823px;}
.y27d{bottom:1076.345564px;}
.y103{bottom:1084.277527px;}
.y68{bottom:1087.533325px;}
.y98{bottom:1089.738293px;}
.y239{bottom:1089.738316px;}
.y150{bottom:1089.739775px;}
.y1b6{bottom:1089.739906px;}
.y57{bottom:1090.102844px;}
.y267{bottom:1091.224823px;}
.y27c{bottom:1091.339564px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y30{bottom:1127.482361px;}
.y67{bottom:1127.482544px;}
.hd{height:25.204199px;}
.hc{height:36.006000px;}
.h13{height:36.312000px;}
.hb{height:36.855469px;}
.h12{height:39.818398px;}
.h2{height:42.048000px;}
.h8{height:42.360000px;}
.h4{height:44.676000px;}
.hf{height:45.186000px;}
.h14{height:52.173000px;}
.h9{height:53.160000px;}
.h15{height:53.639778px;}
.he{height:53.652000px;}
.h3{height:54.862258px;}
.h10{height:59.004000px;}
.h7{height:59.340000px;}
.h11{height:61.380000px;}
.h6{height:64.866000px;}
.ha{height:71.208000px;}
.h5{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x6{left:78.746400px;}
.x7{left:93.545408px;}
.xb{left:96.307045px;}
.x5{left:97.796100px;}
.x14{left:102.048152px;}
.xe{left:171.701402px;}
.xc{left:267.873894px;}
.xd{left:272.374056px;}
.x12{left:347.944651px;}
.x11{left:449.026654px;}
.x4{left:459.212723px;}
.x8{left:476.225854px;}
.xa{left:478.984039px;}
.x13{left:484.725290px;}
.xf{left:648.717148px;}
.x1{left:728.220612px;}
.x10{left:753.063148px;}
.x2{left:755.489868px;}
.x9{left:804.265686px;}
@media print{
.v2{vertical-align:-18.133343pt;}
.v3{vertical-align:-3.200033pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls3e{letter-spacing:-1.858667pt;}
.ls35{letter-spacing:-1.360000pt;}
.ls33{letter-spacing:-1.013333pt;}
.ls30{letter-spacing:-0.800000pt;}
.ls31{letter-spacing:-0.746667pt;}
.ls2f{letter-spacing:-0.640000pt;}
.ls34{letter-spacing:-0.533333pt;}
.ls2e{letter-spacing:-0.480000pt;}
.ls32{letter-spacing:-0.426667pt;}
.ls1e{letter-spacing:-0.373333pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls58{letter-spacing:-0.317333pt;}
.ls1d{letter-spacing:-0.266667pt;}
.ls21{letter-spacing:-0.213333pt;}
.ls59{letter-spacing:-0.181333pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls2a{letter-spacing:-0.106667pt;}
.ls5a{letter-spacing:-0.090667pt;}
.ls20{letter-spacing:-0.053333pt;}
.ls5b{letter-spacing:-0.045333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.000033pt;}
.ls4e{letter-spacing:0.045333pt;}
.ls4{letter-spacing:0.053333pt;}
.ls25{letter-spacing:0.054362pt;}
.ls4c{letter-spacing:0.090667pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls24{letter-spacing:0.120630pt;}
.ls5d{letter-spacing:0.136000pt;}
.ls8{letter-spacing:0.158926pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4b{letter-spacing:0.181333pt;}
.ls5{letter-spacing:0.186667pt;}
.ls0{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.226667pt;}
.ls4d{letter-spacing:0.234667pt;}
.ls2b{letter-spacing:0.250667pt;}
.ls51{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls2c{letter-spacing:0.293333pt;}
.ls4f{letter-spacing:0.317333pt;}
.ls11{letter-spacing:0.320000pt;}
.ls5c{letter-spacing:0.362667pt;}
.ls3{letter-spacing:0.373333pt;}
.ls7{letter-spacing:0.400000pt;}
.ls50{letter-spacing:0.408000pt;}
.ls6{letter-spacing:0.426667pt;}
.ls45{letter-spacing:0.453333pt;}
.lse{letter-spacing:0.480000pt;}
.ls55{letter-spacing:0.498667pt;}
.lsf{letter-spacing:0.533333pt;}
.ls48{letter-spacing:0.544000pt;}
.ls13{letter-spacing:0.560000pt;}
.ls16{letter-spacing:0.586667pt;}
.ls5e{letter-spacing:0.589333pt;}
.ls42{letter-spacing:0.613333pt;}
.ls1c{letter-spacing:0.634667pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls46{letter-spacing:0.666667pt;}
.ls10{letter-spacing:0.693333pt;}
.ls49{letter-spacing:0.725333pt;}
.ls14{letter-spacing:0.746667pt;}
.ls5f{letter-spacing:0.748000pt;}
.ls52{letter-spacing:0.770667pt;}
.ls18{letter-spacing:0.800000pt;}
.ls37{letter-spacing:0.826667pt;}
.ls19{letter-spacing:0.853333pt;}
.ls4a{letter-spacing:0.861333pt;}
.lsd{letter-spacing:0.906667pt;}
.ls1b{letter-spacing:0.933333pt;}
.ls60{letter-spacing:0.952000pt;}
.ls27{letter-spacing:0.960000pt;}
.ls12{letter-spacing:1.013333pt;}
.ls54{letter-spacing:1.042667pt;}
.ls22{letter-spacing:1.066667pt;}
.ls15{letter-spacing:1.120000pt;}
.ls57{letter-spacing:1.133333pt;}
.ls26{letter-spacing:1.173333pt;}
.ls41{letter-spacing:1.200000pt;}
.ls47{letter-spacing:1.253333pt;}
.ls44{letter-spacing:1.280000pt;}
.ls53{letter-spacing:1.314667pt;}
.ls23{letter-spacing:1.333333pt;}
.ls28{letter-spacing:1.386667pt;}
.ls38{letter-spacing:1.493333pt;}
.ls2d{letter-spacing:1.546667pt;}
.ls39{letter-spacing:1.600000pt;}
.ls3a{letter-spacing:1.653333pt;}
.ls3c{letter-spacing:1.760000pt;}
.ls17{letter-spacing:1.813333pt;}
.ls40{letter-spacing:1.866667pt;}
.ls43{letter-spacing:1.920000pt;}
.ls3b{letter-spacing:1.989333pt;}
.ls3f{letter-spacing:2.026667pt;}
.ls3d{letter-spacing:2.400000pt;}
.ls36{letter-spacing:2.613333pt;}
.ls56{letter-spacing:11.333333pt;}
.ws6a{word-spacing:-14.880000pt;}
.ws33{word-spacing:-14.666667pt;}
.ws89{word-spacing:-13.760000pt;}
.ws34{word-spacing:-13.600000pt;}
.ws56{word-spacing:-13.333333pt;}
.ws94{word-spacing:-13.184000pt;}
.ws55{word-spacing:-13.173333pt;}
.ws19{word-spacing:-13.013333pt;}
.ws4e{word-spacing:-12.928000pt;}
.ws57{word-spacing:-12.853333pt;}
.ws9f{word-spacing:-11.560000pt;}
.ws1b{word-spacing:-11.333333pt;}
.ws35{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws6{word-spacing:-10.773333pt;}
.ws5{word-spacing:-10.240000pt;}
.ws59{word-spacing:-9.973333pt;}
.ws93{word-spacing:-9.565333pt;}
.ws1a{word-spacing:-9.333333pt;}
.ws92{word-spacing:-9.248000pt;}
.ws1{word-spacing:-8.885333pt;}
.ws0{word-spacing:-8.362667pt;}
.ws1c{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws91{word-spacing:-5.666667pt;}
.ws7{word-spacing:-1.680000pt;}
.ws9{word-spacing:-1.333333pt;}
.ws61{word-spacing:-1.280000pt;}
.ws62{word-spacing:-1.226667pt;}
.ws14{word-spacing:-1.173333pt;}
.wsa0{word-spacing:-1.133333pt;}
.ws51{word-spacing:-1.120000pt;}
.ws43{word-spacing:-1.066667pt;}
.wsb0{word-spacing:-0.997333pt;}
.wsf{word-spacing:-0.960000pt;}
.wsa3{word-spacing:-0.952000pt;}
.ws81{word-spacing:-0.906667pt;}
.wsa1{word-spacing:-0.861333pt;}
.ws5f{word-spacing:-0.853333pt;}
.ws47{word-spacing:-0.800000pt;}
.ws71{word-spacing:-0.746667pt;}
.wsb1{word-spacing:-0.725333pt;}
.ws3d{word-spacing:-0.693333pt;}
.wsa4{word-spacing:-0.680000pt;}
.ws11{word-spacing:-0.640000pt;}
.wsa5{word-spacing:-0.634667pt;}
.wsa{word-spacing:-0.586667pt;}
.ws18{word-spacing:-0.544000pt;}
.ws26{word-spacing:-0.533333pt;}
.wsa9{word-spacing:-0.498667pt;}
.ws45{word-spacing:-0.480000pt;}
.wsac{word-spacing:-0.453333pt;}
.wsaa{word-spacing:-0.408000pt;}
.ws10{word-spacing:-0.373333pt;}
.ws64{word-spacing:-0.320000pt;}
.wsab{word-spacing:-0.317333pt;}
.wsc{word-spacing:-0.266667pt;}
.ws52{word-spacing:-0.250667pt;}
.wsa8{word-spacing:-0.226667pt;}
.ws38{word-spacing:-0.213333pt;}
.ws25{word-spacing:-0.160000pt;}
.ws15{word-spacing:-0.106667pt;}
.ws65{word-spacing:-0.053333pt;}
.ws8{word-spacing:0.000000pt;}
.ws8f{word-spacing:0.053333pt;}
.ws12{word-spacing:0.106667pt;}
.ws3f{word-spacing:0.160000pt;}
.ws3a{word-spacing:0.213333pt;}
.ws3b{word-spacing:0.266667pt;}
.ws1f{word-spacing:0.320000pt;}
.ws72{word-spacing:0.426667pt;}
.ws5c{word-spacing:0.480000pt;}
.ws85{word-spacing:0.533333pt;}
.ws2b{word-spacing:0.586667pt;}
.ws7c{word-spacing:0.640000pt;}
.ws5e{word-spacing:0.693333pt;}
.wsd{word-spacing:0.746667pt;}
.ws40{word-spacing:0.800000pt;}
.ws2c{word-spacing:0.853333pt;}
.ws9d{word-spacing:0.861333pt;}
.wse{word-spacing:0.906667pt;}
.ws2e{word-spacing:0.960000pt;}
.ws1d{word-spacing:1.013333pt;}
.wsa2{word-spacing:1.042667pt;}
.ws13{word-spacing:1.066667pt;}
.wsb2{word-spacing:1.088000pt;}
.ws30{word-spacing:1.120000pt;}
.ws9e{word-spacing:1.133333pt;}
.ws4b{word-spacing:1.173333pt;}
.ws3e{word-spacing:1.226667pt;}
.wsae{word-spacing:1.269333pt;}
.ws44{word-spacing:1.280000pt;}
.wsb{word-spacing:1.333333pt;}
.ws3c{word-spacing:1.386667pt;}
.ws32{word-spacing:1.450667pt;}
.ws2f{word-spacing:1.493333pt;}
.ws20{word-spacing:1.546667pt;}
.ws36{word-spacing:1.600000pt;}
.ws7a{word-spacing:1.653333pt;}
.ws67{word-spacing:1.706667pt;}
.ws41{word-spacing:1.760000pt;}
.ws23{word-spacing:1.813333pt;}
.ws4c{word-spacing:1.866667pt;}
.ws9b{word-spacing:1.904000pt;}
.ws37{word-spacing:1.920000pt;}
.ws46{word-spacing:1.973333pt;}
.ws2a{word-spacing:2.026667pt;}
.wsb3{word-spacing:2.040000pt;}
.ws4d{word-spacing:2.080000pt;}
.wsa6{word-spacing:2.130667pt;}
.ws28{word-spacing:2.133333pt;}
.ws4a{word-spacing:2.186667pt;}
.ws29{word-spacing:2.240000pt;}
.ws90{word-spacing:2.266667pt;}
.ws7d{word-spacing:2.293333pt;}
.ws75{word-spacing:2.346667pt;}
.ws4f{word-spacing:2.400000pt;}
.ws22{word-spacing:2.506667pt;}
.ws73{word-spacing:2.560000pt;}
.ws39{word-spacing:2.613333pt;}
.ws1e{word-spacing:2.666667pt;}
.ws96{word-spacing:2.720000pt;}
.ws83{word-spacing:2.773333pt;}
.wsad{word-spacing:2.810667pt;}
.ws53{word-spacing:2.826667pt;}
.ws7f{word-spacing:2.933333pt;}
.ws2d{word-spacing:2.986667pt;}
.ws21{word-spacing:3.040000pt;}
.wsb4{word-spacing:3.082667pt;}
.ws74{word-spacing:3.093333pt;}
.ws77{word-spacing:3.146667pt;}
.ws5d{word-spacing:3.200000pt;}
.ws80{word-spacing:3.306667pt;}
.ws98{word-spacing:3.360000pt;}
.ws42{word-spacing:3.413333pt;}
.ws7e{word-spacing:3.466667pt;}
.ws49{word-spacing:3.520000pt;}
.ws79{word-spacing:3.573333pt;}
.ws84{word-spacing:3.626667pt;}
.ws24{word-spacing:3.733333pt;}
.ws9c{word-spacing:3.808000pt;}
.ws63{word-spacing:3.840000pt;}
.wsaf{word-spacing:3.989333pt;}
.ws7b{word-spacing:4.000000pt;}
.ws99{word-spacing:4.213333pt;}
.ws87{word-spacing:4.352000pt;}
.ws88{word-spacing:4.373333pt;}
.ws78{word-spacing:4.426667pt;}
.ws9a{word-spacing:4.480000pt;}
.ws48{word-spacing:4.533333pt;}
.ws50{word-spacing:4.746667pt;}
.wsa7{word-spacing:4.850667pt;}
.ws54{word-spacing:4.906667pt;}
.ws97{word-spacing:5.386667pt;}
.ws82{word-spacing:5.440000pt;}
.ws95{word-spacing:5.653333pt;}
.ws60{word-spacing:5.813333pt;}
.ws76{word-spacing:6.240000pt;}
.ws69{word-spacing:6.392000pt;}
.ws86{word-spacing:6.618667pt;}
.ws68{word-spacing:6.981333pt;}
.ws27{word-spacing:7.146667pt;}
.ws66{word-spacing:10.986667pt;}
.ws31{word-spacing:11.333333pt;}
.ws16{word-spacing:19.072000pt;}
.ws17{word-spacing:64.237333pt;}
.ws8a{word-spacing:67.274658pt;}
.ws8b{word-spacing:67.274667pt;}
.ws8c{word-spacing:81.237333pt;}
.ws8d{word-spacing:98.464000pt;}
.ws70{word-spacing:143.253326pt;}
.ws8e{word-spacing:158.213333pt;}
.ws6c{word-spacing:165.919993pt;}
.ws5b{word-spacing:173.354661pt;}
.ws6b{word-spacing:196.656000pt;}
.ws6e{word-spacing:199.149333pt;}
.ws6f{word-spacing:216.240000pt;}
.ws58{word-spacing:345.717005pt;}
.ws5a{word-spacing:468.883138pt;}
.ws6d{word-spacing:639.653333pt;}
._f{margin-left:-2630.557318pt;}
._7{margin-left:-43.066667pt;}
._4{margin-left:-14.733333pt;}
._11{margin-left:-12.928000pt;}
._e{margin-left:-11.242667pt;}
._17{margin-left:-7.644848pt;}
._18{margin-left:-4.472533pt;}
._3{margin-left:-3.410133pt;}
._2{margin-left:-2.407467pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.698133pt;}
._19{width:3.580800pt;}
._d{width:5.353867pt;}
._51{width:7.752000pt;}
._50{width:8.839994pt;}
._b{width:9.882667pt;}
._27{width:11.082133pt;}
._14{width:12.697601pt;}
._9{width:14.828800pt;}
._5{width:16.320000pt;}
._10{width:19.072000pt;}
._12{width:27.573333pt;}
._13{width:29.333333pt;}
._a{width:31.805866pt;}
._16{width:40.634668pt;}
._6{width:48.552000pt;}
._c{width:54.536000pt;}
._15{width:57.338665pt;}
._3b{width:78.608000pt;}
._3e{width:88.157333pt;}
._41{width:90.077333pt;}
._40{width:92.520533pt;}
._3d{width:109.797333pt;}
._4b{width:120.677333pt;}
._4a{width:123.527448pt;}
._48{width:124.514655pt;}
._47{width:126.344000pt;}
._44{width:127.839990pt;}
._28{width:145.791993pt;}
._1f{width:170.040528pt;}
._1e{width:171.682133pt;}
._2b{width:177.253326pt;}
._21{width:182.194667pt;}
._4c{width:183.187192pt;}
._4d{width:185.730667pt;}
._3f{width:187.271990pt;}
._2a{width:210.779200pt;}
._30{width:212.477333pt;}
._34{width:217.509333pt;}
._49{width:220.143457pt;}
._46{width:228.520525pt;}
._45{width:231.064000pt;}
._42{width:251.287458pt;}
._43{width:253.730667pt;}
._1c{width:261.164189pt;}
._2d{width:291.810667pt;}
._4e{width:306.115190pt;}
._31{width:311.626133pt;}
._2f{width:314.462393pt;}
._2c{width:329.633591pt;}
._33{width:349.055460pt;}
._4f{width:351.570123pt;}
._1b{width:360.808634pt;}
._20{width:373.864000pt;}
._24{width:378.896000pt;}
._23{width:381.303467pt;}
._22{width:382.840000pt;}
._25{width:383.928000pt;}
._26{width:404.010667pt;}
._3c{width:413.575990pt;}
._1a{width:433.700781pt;}
._36{width:483.031467pt;}
._1d{width:502.883301pt;}
._32{width:515.530667pt;}
._38{width:581.037333pt;}
._39{width:608.690667pt;}
._2e{width:612.432533pt;}
._3a{width:638.882667pt;}
._35{width:643.960000pt;}
._29{width:661.549333pt;}
._37{width:664.088000pt;}
._8{width:1351.295987pt;}
.fs7{font-size:31.733332pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs9{font-size:50.133331pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y12c{bottom:100.153595pt;}
.y2f{bottom:100.394933pt;}
.y66{bottom:100.432257pt;}
.y208{bottom:101.052287pt;}
.y144{bottom:101.436262pt;}
.y18c{bottom:101.559062pt;}
.y1df{bottom:101.986928pt;}
.y1b5{bottom:102.111064pt;}
.ye3{bottom:102.640523pt;}
.yc3{bottom:104.917603pt;}
.y183{bottom:112.025738pt;}
.y2e{bottom:113.722933pt;}
.y65{bottom:113.760257pt;}
.y143{bottom:114.764262pt;}
.y2a{bottom:116.643199pt;}
.y97{bottom:116.696269pt;}
.y238{bottom:116.696289pt;}
.y12b{bottom:116.820262pt;}
.y207{bottom:117.718953pt;}
.y18b{bottom:118.225728pt;}
.y1de{bottom:118.653595pt;}
.y21d{bottom:118.777588pt;}
.y1b4{bottom:118.777730pt;}
.ye2{bottom:119.307190pt;}
.y64{bottom:127.088257pt;}
.y182{bottom:128.663071pt;}
.y2d{bottom:131.584269pt;}
.y29{bottom:133.309865pt;}
.y96{bottom:133.362935pt;}
.y237{bottom:133.362956pt;}
.y12a{bottom:133.486928pt;}
.y206{bottom:134.385620pt;}
.y18a{bottom:134.892395pt;}
.y21c{bottom:135.444255pt;}
.y1b3{bottom:135.444397pt;}
.ye1{bottom:135.973857pt;}
.y63{bottom:140.416257pt;}
.y181{bottom:145.368405pt;}
.y28{bottom:149.976532pt;}
.y95{bottom:150.029602pt;}
.y236{bottom:150.029622pt;}
.y129{bottom:150.153595pt;}
.y56{bottom:150.937581pt;}
.y205{bottom:151.052287pt;}
.y189{bottom:151.559062pt;}
.y1dd{bottom:151.986928pt;}
.y21b{bottom:152.110921pt;}
.y1b2{bottom:152.111064pt;}
.ye0{bottom:152.640523pt;}
.y62{bottom:153.744257pt;}
.y2c{bottom:153.806928pt;}
.y266{bottom:158.864002pt;}
.y180{bottom:161.937738pt;}
.y94{bottom:166.696269pt;}
.y235{bottom:166.696289pt;}
.y61{bottom:167.072257pt;}
.y2b{bottom:167.134928pt;}
.y55{bottom:167.604248pt;}
.y204{bottom:167.718953pt;}
.y188{bottom:168.225728pt;}
.yc2{bottom:168.653463pt;}
.y21a{bottom:168.777588pt;}
.y1b1{bottom:168.777730pt;}
.ydf{bottom:169.307190pt;}
.y265{bottom:172.192002pt;}
.y17f{bottom:178.643071pt;}
.y60{bottom:180.400257pt;}
.y27{bottom:183.309875pt;}
.y93{bottom:183.362935pt;}
.y234{bottom:183.362956pt;}
.y128{bottom:183.486938pt;}
.y54{bottom:184.270915pt;}
.y203{bottom:184.385620pt;}
.y187{bottom:184.892395pt;}
.yc1{bottom:185.320129pt;}
.y1dc{bottom:185.320272pt;}
.y102{bottom:185.440511pt;}
.y219{bottom:185.444255pt;}
.y1b0{bottom:185.444397pt;}
.y264{bottom:185.520002pt;}
.yde{bottom:185.973857pt;}
.y5f{bottom:193.728257pt;}
.y17e{bottom:195.280405pt;}
.y263{bottom:198.848002pt;}
.y92{bottom:200.029602pt;}
.y233{bottom:200.029622pt;}
.y53{bottom:200.937581pt;}
.y202{bottom:201.052287pt;}
.y186{bottom:201.559062pt;}
.yc0{bottom:201.986796pt;}
.y1db{bottom:201.986938pt;}
.y101{bottom:202.107178pt;}
.y218{bottom:202.110921pt;}
.y1af{bottom:202.111064pt;}
.ydd{bottom:202.640523pt;}
.y5e{bottom:207.056257pt;}
.y17d{bottom:211.917738pt;}
.y262{bottom:212.176002pt;}
.y232{bottom:216.696289pt;}
.y127{bottom:216.820272pt;}
.y52{bottom:217.604248pt;}
.y201{bottom:217.718953pt;}
.y185{bottom:218.225728pt;}
.ybf{bottom:218.653463pt;}
.y100{bottom:218.773844pt;}
.y217{bottom:218.777588pt;}
.y1ae{bottom:218.777730pt;}
.ydc{bottom:219.307190pt;}
.y1da{bottom:219.453593pt;}
.y5d{bottom:224.917603pt;}
.y261{bottom:225.504002pt;}
.y17c{bottom:228.555071pt;}
.y26{bottom:233.309733pt;}
.y91{bottom:233.362935pt;}
.y231{bottom:233.362956pt;}
.y126{bottom:233.486938pt;}
.y51{bottom:234.270915pt;}
.y200{bottom:234.385620pt;}
.y184{bottom:234.892395pt;}
.y1d9{bottom:235.320272pt;}
.yff{bottom:235.440511pt;}
.y216{bottom:235.444255pt;}
.y1ad{bottom:235.444397pt;}
.ybe{bottom:236.120138pt;}
.y260{bottom:238.832002pt;}
.y17b{bottom:245.192405pt;}
.y230{bottom:250.029622pt;}
.y50{bottom:250.937581pt;}
.y125{bottom:250.953593pt;}
.y1ff{bottom:251.052287pt;}
.y1e3{bottom:251.559062pt;}
.ybd{bottom:251.986796pt;}
.y1d8{bottom:251.986938pt;}
.yfe{bottom:252.107178pt;}
.y215{bottom:252.110921pt;}
.y1ac{bottom:252.111064pt;}
.y25f{bottom:252.160002pt;}
.ydb{bottom:252.640523pt;}
.y17a{bottom:261.829738pt;}
.y25e{bottom:265.488002pt;}
.y25{bottom:266.643066pt;}
.y90{bottom:266.696289pt;}
.y124{bottom:266.820272pt;}
.y4f{bottom:267.604248pt;}
.y1fe{bottom:267.718953pt;}
.ybc{bottom:268.653463pt;}
.y1d7{bottom:268.653605pt;}
.yfd{bottom:268.773844pt;}
.y214{bottom:268.777588pt;}
.y1ab{bottom:268.777730pt;}
.y179{bottom:278.467071pt;}
.y25d{bottom:278.816002pt;}
.y24{bottom:283.309733pt;}
.y8f{bottom:283.362956pt;}
.y123{bottom:283.486938pt;}
.y4e{bottom:284.270915pt;}
.y1fd{bottom:284.385620pt;}
.ybb{bottom:285.320129pt;}
.y1d6{bottom:285.320272pt;}
.yfc{bottom:285.440511pt;}
.y213{bottom:285.444255pt;}
.y25c{bottom:292.144002pt;}
.y178{bottom:295.104405pt;}
.y23{bottom:299.976400pt;}
.y8e{bottom:300.029622pt;}
.y4d{bottom:300.937581pt;}
.y122{bottom:300.953593pt;}
.y1fc{bottom:301.052287pt;}
.yba{bottom:301.986796pt;}
.yfb{bottom:302.107178pt;}
.y212{bottom:302.110921pt;}
.y1aa{bottom:302.110942pt;}
.yda{bottom:302.640544pt;}
.y1d5{bottom:302.786926pt;}
.y177{bottom:311.741738pt;}
.y22{bottom:316.643066pt;}
.y8d{bottom:316.696289pt;}
.y4c{bottom:317.604248pt;}
.y1fb{bottom:317.718953pt;}
.yfa{bottom:318.773844pt;}
.y211{bottom:318.777588pt;}
.yd9{bottom:319.307210pt;}
.yb9{bottom:319.453471pt;}
.y25b{bottom:322.144002pt;}
.y176{bottom:328.379071pt;}
.y21{bottom:333.309733pt;}
.y8c{bottom:333.362956pt;}
.y121{bottom:333.486938pt;}
.y4b{bottom:334.270915pt;}
.y1d4{bottom:335.320272pt;}
.yf9{bottom:335.440511pt;}
.y1a9{bottom:335.444255pt;}
.yd8{bottom:335.973877pt;}
.y19c{bottom:338.460263pt;}
.y175{bottom:345.016405pt;}
.y20{bottom:349.976400pt;}
.y8b{bottom:350.029622pt;}
.y120{bottom:350.153605pt;}
.y4a{bottom:350.937581pt;}
.y19b{bottom:351.788263pt;}
.yb8{bottom:351.986816pt;}
.y1d3{bottom:351.986938pt;}
.yf8{bottom:352.107178pt;}
.y1a8{bottom:352.110921pt;}
.y174{bottom:361.653738pt;}
.y19a{bottom:365.116263pt;}
.y1f{bottom:366.643066pt;}
.y8a{bottom:366.696289pt;}
.y11f{bottom:366.820272pt;}
.y49{bottom:367.604248pt;}
.y1fa{bottom:367.718953pt;}
.yb7{bottom:368.653483pt;}
.y1d2{bottom:368.653605pt;}
.yf7{bottom:368.773844pt;}
.y1a7{bottom:368.777588pt;}
.y140{bottom:368.780253pt;}
.yd7{bottom:369.307210pt;}
.y25a{bottom:372.200674pt;}
.y173{bottom:378.291071pt;}
.y199{bottom:378.444263pt;}
.y1e{bottom:383.309733pt;}
.y89{bottom:383.362956pt;}
.y11e{bottom:383.486938pt;}
.y48{bottom:384.270915pt;}
.y1f9{bottom:384.385620pt;}
.yb6{bottom:385.320150pt;}
.y1d1{bottom:385.320272pt;}
.yf6{bottom:385.440511pt;}
.y1a6{bottom:385.444255pt;}
.y13f{bottom:385.446920pt;}
.y259{bottom:385.528674pt;}
.yd6{bottom:385.973877pt;}
.y198{bottom:391.772263pt;}
.y172{bottom:394.928405pt;}
.y258{bottom:398.856674pt;}
.y1d{bottom:399.976400pt;}
.y88{bottom:400.029622pt;}
.y11d{bottom:400.153605pt;}
.y47{bottom:400.937581pt;}
.y1f8{bottom:401.052287pt;}
.yb5{bottom:401.986816pt;}
.y1d0{bottom:401.986938pt;}
.yf5{bottom:402.107178pt;}
.y1a5{bottom:402.110921pt;}
.y13e{bottom:402.113586pt;}
.yd5{bottom:403.440552pt;}
.y197{bottom:405.100263pt;}
.y171{bottom:411.565738pt;}
.y257{bottom:412.184674pt;}
.y1c{bottom:416.643066pt;}
.y87{bottom:416.696289pt;}
.y46{bottom:417.604248pt;}
.y196{bottom:418.428263pt;}
.y1f7{bottom:418.518921pt;}
.yb4{bottom:418.653483pt;}
.yf4{bottom:418.773844pt;}
.y1a4{bottom:418.777588pt;}
.y13d{bottom:418.780253pt;}
.yd4{bottom:419.307210pt;}
.y256{bottom:425.512674pt;}
.y170{bottom:428.203071pt;}
.y1ed{bottom:431.782930pt;}
.y1b{bottom:433.309733pt;}
.y86{bottom:433.362956pt;}
.y11c{bottom:433.486938pt;}
.y45{bottom:434.270915pt;}
.y1f6{bottom:434.385620pt;}
.yb3{bottom:435.320150pt;}
.y1cf{bottom:435.320272pt;}
.yf3{bottom:435.440511pt;}
.y1a3{bottom:435.444255pt;}
.y13c{bottom:435.446920pt;}
.yd3{bottom:436.773885pt;}
.y255{bottom:438.840674pt;}
.y16f{bottom:444.840405pt;}
.y1ec{bottom:445.110930pt;}
.y1a{bottom:449.976400pt;}
.y85{bottom:450.029622pt;}
.y44{bottom:450.937581pt;}
.y1f5{bottom:451.052287pt;}
.yb2{bottom:451.986816pt;}
.yf2{bottom:452.107178pt;}
.y1a2{bottom:452.110921pt;}
.y13b{bottom:452.113586pt;}
.y254{bottom:452.168674pt;}
.yd2{bottom:452.640544pt;}
.y1eb{bottom:458.438930pt;}
.y16e{bottom:461.477738pt;}
.y253{bottom:465.496674pt;}
.y19{bottom:466.643066pt;}
.y84{bottom:466.696289pt;}
.y11b{bottom:466.820272pt;}
.y43{bottom:467.604248pt;}
.y1f4{bottom:468.518921pt;}
.yb1{bottom:468.653483pt;}
.yf1{bottom:468.773844pt;}
.y1a1{bottom:468.777588pt;}
.y13a{bottom:468.780253pt;}
.yd1{bottom:469.307210pt;}
.y1ea{bottom:471.766930pt;}
.y252{bottom:478.824674pt;}
.y18{bottom:483.309733pt;}
.y83{bottom:483.362956pt;}
.y11a{bottom:483.486938pt;}
.y42{bottom:484.270915pt;}
.y1e9{bottom:485.094930pt;}
.yb0{bottom:485.320150pt;}
.y1ce{bottom:485.320272pt;}
.y210{bottom:485.438934pt;}
.yf0{bottom:485.440511pt;}
.y1a0{bottom:485.444255pt;}
.y139{bottom:485.446920pt;}
.yd0{bottom:485.973877pt;}
.y16d{bottom:486.445071pt;}
.y251{bottom:492.152674pt;}
.y16c{bottom:499.773071pt;}
.y17{bottom:499.976400pt;}
.y82{bottom:500.029622pt;}
.y119{bottom:500.153605pt;}
.y41{bottom:500.937581pt;}
.y1f3{bottom:501.052287pt;}
.yaf{bottom:501.986816pt;}
.y1cd{bottom:501.986938pt;}
.y20f{bottom:502.105601pt;}
.yef{bottom:502.107178pt;}
.y19f{bottom:502.110921pt;}
.y138{bottom:502.113586pt;}
.ycf{bottom:503.440552pt;}
.y250{bottom:505.480674pt;}
.y81{bottom:516.696289pt;}
.y118{bottom:516.820272pt;}
.y40{bottom:517.604248pt;}
.y1f2{bottom:517.718953pt;}
.yae{bottom:518.653483pt;}
.y1cc{bottom:518.653605pt;}
.y20e{bottom:518.772268pt;}
.yee{bottom:518.773844pt;}
.y19e{bottom:518.777588pt;}
.y137{bottom:518.780253pt;}
.y24f{bottom:518.808674pt;}
.yce{bottom:519.307210pt;}
.y16b{bottom:522.434443pt;}
.y16{bottom:533.309733pt;}
.y80{bottom:533.362956pt;}
.y117{bottom:533.486938pt;}
.y3f{bottom:534.270915pt;}
.y1f1{bottom:534.385620pt;}
.y1cb{bottom:535.320272pt;}
.y20d{bottom:535.438934pt;}
.yed{bottom:535.440511pt;}
.y19d{bottom:535.444255pt;}
.y136{bottom:535.446920pt;}
.ycd{bottom:535.973877pt;}
.y24e{bottom:548.774007pt;}
.y7f{bottom:550.029622pt;}
.y116{bottom:550.153605pt;}
.y3e{bottom:550.937581pt;}
.y1f0{bottom:551.052287pt;}
.yad{bottom:551.986816pt;}
.y1ca{bottom:551.986938pt;}
.y169{bottom:551.990911pt;}
.y20c{bottom:552.105601pt;}
.yec{bottom:552.107178pt;}
.y14f{bottom:552.110921pt;}
.y135{bottom:552.113586pt;}
.ycc{bottom:552.640544pt;}
.y195{bottom:555.403053pt;}
.y15{bottom:566.643066pt;}
.y7e{bottom:566.696289pt;}
.y115{bottom:566.820272pt;}
.y3d{bottom:567.604248pt;}
.y1ef{bottom:567.718953pt;}
.y1c9{bottom:568.653605pt;}
.y168{bottom:568.657578pt;}
.y194{bottom:568.731053pt;}
.y20b{bottom:568.772268pt;}
.yeb{bottom:568.773844pt;}
.y14e{bottom:568.777588pt;}
.y134{bottom:568.780253pt;}
.ycb{bottom:570.107218pt;}
.y24d{bottom:578.774007pt;}
.y193{bottom:582.059053pt;}
.y14{bottom:583.309733pt;}
.y7d{bottom:583.362956pt;}
.y114{bottom:583.486938pt;}
.y3c{bottom:584.270915pt;}
.yac{bottom:585.320150pt;}
.y1c8{bottom:585.320272pt;}
.y167{bottom:585.324244pt;}
.y20a{bottom:585.438934pt;}
.yea{bottom:585.440511pt;}
.y14d{bottom:585.444255pt;}
.y133{bottom:585.446920pt;}
.yca{bottom:585.973877pt;}
.y192{bottom:595.387053pt;}
.y13{bottom:599.976400pt;}
.y7c{bottom:600.029622pt;}
.y113{bottom:600.153605pt;}
.y3b{bottom:600.937581pt;}
.y1ee{bottom:601.052287pt;}
.yab{bottom:601.986816pt;}
.y1c7{bottom:601.986938pt;}
.y166{bottom:601.990911pt;}
.y209{bottom:602.105601pt;}
.ye9{bottom:602.107178pt;}
.y14c{bottom:602.110921pt;}
.y132{bottom:602.113586pt;}
.yc9{bottom:602.640544pt;}
.y191{bottom:608.715053pt;}
.y24c{bottom:612.149096pt;}
.y12{bottom:616.643066pt;}
.y7b{bottom:616.696289pt;}
.y3a{bottom:617.604248pt;}
.yaa{bottom:618.653483pt;}
.y1c6{bottom:618.653605pt;}
.y165{bottom:618.657578pt;}
.ye8{bottom:618.773844pt;}
.y14b{bottom:618.777588pt;}
.y131{bottom:618.780253pt;}
.yc8{bottom:619.307210pt;}
.y190{bottom:622.043053pt;}
.y24b{bottom:625.477096pt;}
.y11{bottom:633.309733pt;}
.y7a{bottom:633.362956pt;}
.y112{bottom:633.486938pt;}
.y39{bottom:634.270915pt;}
.ya9{bottom:635.320150pt;}
.y1c5{bottom:635.320272pt;}
.y164{bottom:635.324244pt;}
.y18f{bottom:635.371053pt;}
.ye7{bottom:635.440511pt;}
.y14a{bottom:635.444255pt;}
.y130{bottom:635.446920pt;}
.yc7{bottom:636.773885pt;}
.y10{bottom:649.976400pt;}
.y79{bottom:650.029622pt;}
.y38{bottom:650.937581pt;}
.ya8{bottom:651.986816pt;}
.y163{bottom:651.990911pt;}
.ye6{bottom:652.107178pt;}
.y149{bottom:652.110921pt;}
.y12f{bottom:652.113586pt;}
.yc6{bottom:652.640544pt;}
.y24a{bottom:655.442430pt;}
.y22e{bottom:658.393355pt;}
.yf{bottom:666.643066pt;}
.y78{bottom:666.696289pt;}
.y111{bottom:666.814898pt;}
.y37{bottom:667.604248pt;}
.y1c4{bottom:668.653605pt;}
.y162{bottom:668.657578pt;}
.y249{bottom:668.770430pt;}
.ye5{bottom:668.773844pt;}
.y12e{bottom:668.780253pt;}
.yc5{bottom:669.307210pt;}
.y22d{bottom:675.030688pt;}
.y1e2{bottom:681.087083pt;}
.y1e8{bottom:682.059094pt;}
.ye{bottom:683.309733pt;}
.y77{bottom:683.362956pt;}
.y110{bottom:683.486898pt;}
.y36{bottom:684.270915pt;}
.ya7{bottom:685.320150pt;}
.y161{bottom:685.324244pt;}
.ye4{bottom:685.440511pt;}
.y148{bottom:685.444417pt;}
.y12d{bottom:685.446920pt;}
.yc4{bottom:686.773844pt;}
.y22c{bottom:691.736021pt;}
.y1e1{bottom:694.415083pt;}
.y1e7{bottom:695.387094pt;}
.y248{bottom:698.735763pt;}
.yd{bottom:699.976400pt;}
.y76{bottom:700.029622pt;}
.y35{bottom:700.937581pt;}
.y1c3{bottom:701.981564pt;}
.y160{bottom:701.990911pt;}
.y27b{bottom:703.417620pt;}
.y1e0{bottom:707.743083pt;}
.y22b{bottom:708.373355pt;}
.y1e6{bottom:708.715094pt;}
.y247{bottom:712.063763pt;}
.yc{bottom:716.643066pt;}
.y75{bottom:716.696289pt;}
.y27a{bottom:716.745620pt;}
.y34{bottom:717.604248pt;}
.y1c2{bottom:718.653564pt;}
.y15f{bottom:718.657578pt;}
.y147{bottom:718.777751pt;}
.y1e5{bottom:722.043094pt;}
.y22a{bottom:725.010688pt;}
.y279{bottom:730.073620pt;}
.y142{bottom:731.374962pt;}
.yb{bottom:733.309733pt;}
.y74{bottom:733.362956pt;}
.y33{bottom:734.270915pt;}
.ya6{bottom:735.320150pt;}
.y15e{bottom:735.324244pt;}
.y1e4{bottom:735.371094pt;}
.y146{bottom:735.444417pt;}
.y229{bottom:741.648021pt;}
.y246{bottom:742.029096pt;}
.y278{bottom:743.401620pt;}
.y141{bottom:744.702962pt;}
.y10f{bottom:746.029693pt;}
.ya{bottom:749.976400pt;}
.y73{bottom:750.029622pt;}
.y32{bottom:750.937581pt;}
.ya5{bottom:751.986816pt;}
.y15d{bottom:751.990911pt;}
.y145{bottom:752.111084pt;}
.y245{bottom:755.357096pt;}
.y277{bottom:756.729620pt;}
.y228{bottom:758.285355pt;}
.y10e{bottom:762.735027pt;}
.y9{bottom:766.643066pt;}
.y72{bottom:766.696289pt;}
.y31{bottom:767.604248pt;}
.ya4{bottom:768.653483pt;}
.y15c{bottom:768.657578pt;}
.y276{bottom:770.057620pt;}
.y28b{bottom:770.159613pt;}
.y227{bottom:774.922688pt;}
.y10d{bottom:779.372360pt;}
.y71{bottom:783.362956pt;}
.y275{bottom:783.385620pt;}
.y28a{bottom:783.487613pt;}
.ya3{bottom:785.320150pt;}
.y244{bottom:785.320231pt;}
.y15b{bottom:785.324244pt;}
.y1c1{bottom:785.324361pt;}
.y226{bottom:791.560021pt;}
.y10c{bottom:796.009693pt;}
.y274{bottom:796.713620pt;}
.y289{bottom:796.815613pt;}
.y70{bottom:800.029622pt;}
.ya2{bottom:801.986816pt;}
.y243{bottom:801.986898pt;}
.y15a{bottom:801.990911pt;}
.y1c0{bottom:801.991028pt;}
.y16a{bottom:803.263102pt;}
.y8{bottom:805.916629pt;}
.y225{bottom:808.197355pt;}
.y273{bottom:810.041620pt;}
.y288{bottom:810.143613pt;}
.y10b{bottom:812.647027pt;}
.y6f{bottom:816.696289pt;}
.ya1{bottom:818.653483pt;}
.y242{bottom:818.653564pt;}
.y159{bottom:818.657578pt;}
.y1bf{bottom:818.657694pt;}
.y7{bottom:819.244629pt;}
.y272{bottom:823.369620pt;}
.y287{bottom:823.471613pt;}
.y224{bottom:824.834688pt;}
.y10a{bottom:829.284360pt;}
.y6e{bottom:833.362956pt;}
.y241{bottom:835.320231pt;}
.ya0{bottom:835.322927pt;}
.y158{bottom:835.324244pt;}
.y1be{bottom:835.324361pt;}
.y271{bottom:836.697620pt;}
.y286{bottom:836.799613pt;}
.y223{bottom:841.472021pt;}
.y109{bottom:845.921693pt;}
.y270{bottom:850.025620pt;}
.y6d{bottom:850.029622pt;}
.y285{bottom:850.127613pt;}
.y240{bottom:851.986898pt;}
.y9f{bottom:851.989594pt;}
.y157{bottom:851.990911pt;}
.y1bd{bottom:851.991028pt;}
.y6{bottom:857.111328pt;}
.y222{bottom:858.109355pt;}
.y108{bottom:862.559027pt;}
.y26f{bottom:863.353620pt;}
.y284{bottom:863.455613pt;}
.y6c{bottom:866.696289pt;}
.y23f{bottom:868.653564pt;}
.y9e{bottom:868.656260pt;}
.y156{bottom:868.657578pt;}
.y1bc{bottom:868.657694pt;}
.y221{bottom:874.746688pt;}
.y18e{bottom:875.684306pt;}
.y26e{bottom:876.681620pt;}
.y283{bottom:876.783613pt;}
.y107{bottom:879.196360pt;}
.y6b{bottom:883.362956pt;}
.y23e{bottom:885.320231pt;}
.y9d{bottom:885.322927pt;}
.y155{bottom:885.324244pt;}
.y1bb{bottom:885.324361pt;}
.y18d{bottom:889.012306pt;}
.y26d{bottom:890.009620pt;}
.y282{bottom:890.111613pt;}
.y220{bottom:891.384021pt;}
.y106{bottom:895.833693pt;}
.y5{bottom:896.832682pt;}
.y6a{bottom:900.029622pt;}
.y23d{bottom:901.986898pt;}
.y9c{bottom:901.989594pt;}
.y154{bottom:901.990911pt;}
.y1ba{bottom:901.991028pt;}
.y5c{bottom:902.340306pt;}
.y26c{bottom:903.337620pt;}
.y281{bottom:903.439613pt;}
.y21f{bottom:908.021355pt;}
.y5b{bottom:915.668306pt;}
.y26b{bottom:916.665620pt;}
.y22f{bottom:916.696289pt;}
.y280{bottom:916.767613pt;}
.y23c{bottom:918.653564pt;}
.y9b{bottom:918.656260pt;}
.y153{bottom:918.657578pt;}
.y1b9{bottom:918.657694pt;}
.y105{bottom:920.132360pt;}
.y5a{bottom:928.996306pt;}
.y26a{bottom:929.993620pt;}
.y27f{bottom:930.095613pt;}
.y21e{bottom:932.988688pt;}
.y69{bottom:933.362956pt;}
.y9a{bottom:935.322927pt;}
.y23b{bottom:935.322947pt;}
.y152{bottom:935.324244pt;}
.y1b8{bottom:935.324361pt;}
.y104{bottom:941.838246pt;}
.y59{bottom:942.324306pt;}
.y269{bottom:943.321620pt;}
.y27e{bottom:943.423613pt;}
.y99{bottom:951.989594pt;}
.y23a{bottom:951.989614pt;}
.y151{bottom:951.990911pt;}
.y1b7{bottom:951.991028pt;}
.y58{bottom:955.652306pt;}
.y268{bottom:956.649620pt;}
.y27d{bottom:956.751613pt;}
.y103{bottom:963.802246pt;}
.y68{bottom:966.696289pt;}
.y98{bottom:968.656260pt;}
.y239{bottom:968.656281pt;}
.y150{bottom:968.657578pt;}
.y1b6{bottom:968.657694pt;}
.y57{bottom:968.980306pt;}
.y267{bottom:969.977620pt;}
.y27c{bottom:970.079613pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y30{bottom:1002.206543pt;}
.y67{bottom:1002.206706pt;}
.hd{height:22.403733pt;}
.hc{height:32.005333pt;}
.h13{height:32.277333pt;}
.hb{height:32.760417pt;}
.h12{height:35.394132pt;}
.h2{height:37.376000pt;}
.h8{height:37.653333pt;}
.h4{height:39.712000pt;}
.hf{height:40.165333pt;}
.h14{height:46.376000pt;}
.h9{height:47.253333pt;}
.h15{height:47.679802pt;}
.he{height:47.690667pt;}
.h3{height:48.766452pt;}
.h10{height:52.448000pt;}
.h7{height:52.746667pt;}
.h11{height:54.560000pt;}
.h6{height:57.658667pt;}
.ha{height:63.296000pt;}
.h5{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x6{left:69.996800pt;}
.x7{left:83.151474pt;}
.xb{left:85.606262pt;}
.x5{left:86.929867pt;}
.x14{left:90.709469pt;}
.xe{left:152.623469pt;}
.xc{left:238.110128pt;}
.xd{left:242.110272pt;}
.x12{left:309.284134pt;}
.x11{left:399.134804pt;}
.x4{left:408.189087pt;}
.x8{left:423.311870pt;}
.xa{left:425.763590pt;}
.x13{left:430.866924pt;}
.xf{left:576.637465pt;}
.x1{left:647.307210pt;}
.x10{left:669.389465pt;}
.x2{left:671.546549pt;}
.x9{left:714.902832pt;}
}




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