
    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_b8b27e33c3c3afceb49087a0.woff')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_12cb1f590c67388bd161d222.woff')format("woff");}.ff2{font-family:ff2;line-height:0.721000;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_855c801aa1d35466ad6c67d1.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e1fc35f5626da67e014747dc.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5bac2b3b85da5a0038537870.woff')format("woff");}.ff5{font-family:ff5;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f26c542d33c077b8da11b055.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_593a3b379db6a78af16edece.woff')format("woff");}.ff7{font-family:ff7;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f411e551a0b3152b1e291061.woff')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls3f{letter-spacing:-0.420000px;}
.ls19{letter-spacing:-0.360000px;}
.ls64{letter-spacing:-0.357000px;}
.ls48{letter-spacing:-0.306000px;}
.ls17{letter-spacing:-0.300000px;}
.ls68{letter-spacing:-0.255000px;}
.ls2c{letter-spacing:-0.240000px;}
.ls65{letter-spacing:-0.204000px;}
.ls2d{letter-spacing:-0.180000px;}
.ls66{letter-spacing:-0.153000px;}
.ls18{letter-spacing:-0.120000px;}
.ls63{letter-spacing:-0.102000px;}
.ls35{letter-spacing:-0.060000px;}
.ls67{letter-spacing:-0.051000px;}
.ls15{letter-spacing:0.000000px;}
.ls6b{letter-spacing:0.025500px;}
.ls3d{letter-spacing:0.030000px;}
.ls4e{letter-spacing:0.051000px;}
.ls1d{letter-spacing:0.060000px;}
.ls2f{letter-spacing:0.090000px;}
.ls49{letter-spacing:0.102000px;}
.ls26{letter-spacing:0.120000px;}
.ls6d{letter-spacing:0.127500px;}
.ls30{letter-spacing:0.150000px;}
.ls42{letter-spacing:0.153000px;}
.ls13{letter-spacing:0.178791px;}
.ls1{letter-spacing:0.180000px;}
.ls43{letter-spacing:0.204000px;}
.ls3c{letter-spacing:0.210000px;}
.ls0{letter-spacing:0.240000px;}
.ls14{letter-spacing:0.255000px;}
.ls4f{letter-spacing:0.264000px;}
.ls1e{letter-spacing:0.270000px;}
.ls51{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.300000px;}
.ls4c{letter-spacing:0.306000px;}
.ls3e{letter-spacing:0.330000px;}
.ls4d{letter-spacing:0.357000px;}
.ls1b{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.390000px;}
.ls44{letter-spacing:0.408000px;}
.lsb{letter-spacing:0.420000px;}
.ls41{letter-spacing:0.450000px;}
.ls50{letter-spacing:0.459000px;}
.ls4{letter-spacing:0.480000px;}
.ls55{letter-spacing:0.510000px;}
.ls2{letter-spacing:0.540000px;}
.ls47{letter-spacing:0.561000px;}
.ls32{letter-spacing:0.570000px;}
.ls5b{letter-spacing:0.586500px;}
.ls7{letter-spacing:0.600000px;}
.ls62{letter-spacing:0.612000px;}
.ls25{letter-spacing:0.630000px;}
.ls6{letter-spacing:0.660000px;}
.ls54{letter-spacing:0.663000px;}
.ls3b{letter-spacing:0.690000px;}
.ls5e{letter-spacing:0.714000px;}
.lsc{letter-spacing:0.720000px;}
.ls6c{letter-spacing:0.739500px;}
.ls11{letter-spacing:0.750000px;}
.ls46{letter-spacing:0.765000px;}
.ls10{letter-spacing:0.780000px;}
.ls45{letter-spacing:0.816000px;}
.ls8{letter-spacing:0.840000px;}
.ls4a{letter-spacing:0.867000px;}
.ls12{letter-spacing:0.900000px;}
.ls6a{letter-spacing:0.918000px;}
.ls9{letter-spacing:0.960000px;}
.ls58{letter-spacing:0.969000px;}
.ls31{letter-spacing:0.990000px;}
.lsf{letter-spacing:1.020000px;}
.ls6e{letter-spacing:1.071000px;}
.lse{letter-spacing:1.080000px;}
.ls4b{letter-spacing:1.122000px;}
.ls27{letter-spacing:1.140000px;}
.ls5a{letter-spacing:1.173000px;}
.ls56{letter-spacing:1.198500px;}
.ls1a{letter-spacing:1.200000px;}
.ls38{letter-spacing:1.230000px;}
.ls21{letter-spacing:1.260000px;}
.ls5f{letter-spacing:1.275000px;}
.ls40{letter-spacing:1.290000px;}
.ls1c{letter-spacing:1.320000px;}
.ls53{letter-spacing:1.326000px;}
.lsa{letter-spacing:1.380000px;}
.ls23{letter-spacing:1.410000px;}
.ls24{letter-spacing:1.440000px;}
.ls33{letter-spacing:1.470000px;}
.lsd{letter-spacing:1.500000px;}
.ls2a{letter-spacing:1.560000px;}
.ls2e{letter-spacing:1.620000px;}
.ls60{letter-spacing:1.632000px;}
.ls22{letter-spacing:1.680000px;}
.ls20{letter-spacing:1.710000px;}
.ls52{letter-spacing:1.734000px;}
.ls29{letter-spacing:1.740000px;}
.ls2b{letter-spacing:1.800000px;}
.ls5{letter-spacing:1.860000px;}
.ls59{letter-spacing:1.938000px;}
.ls37{letter-spacing:1.950000px;}
.ls39{letter-spacing:1.980000px;}
.ls3a{letter-spacing:2.040000px;}
.ls28{letter-spacing:2.160000px;}
.ls69{letter-spacing:2.193000px;}
.ls36{letter-spacing:2.220000px;}
.ls57{letter-spacing:2.295000px;}
.ls34{letter-spacing:2.520000px;}
.ls5c{letter-spacing:3.162000px;}
.ls61{letter-spacing:3.366000px;}
.ls5d{letter-spacing:3.825000px;}
.ls16{letter-spacing:3.990000px;}
.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;}
}
.ws89{word-spacing:-16.575000px;}
.ws57{word-spacing:-15.900000px;}
.ws24{word-spacing:-15.300000px;}
.ws45{word-spacing:-15.090000px;}
.ws23{word-spacing:-15.060000px;}
.ws5{word-spacing:-15.000000px;}
.ws88{word-spacing:-14.832000px;}
.ws7b{word-spacing:-14.544000px;}
.ws9e{word-spacing:-13.719000px;}
.ws92{word-spacing:-13.005000px;}
.ws87{word-spacing:-12.852000px;}
.ws44{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.360000px;}
.ws4{word-spacing:-11.520000px;}
.ws86{word-spacing:-10.098000px;}
.ws1{word-spacing:-9.996000px;}
.ws7a{word-spacing:-9.945000px;}
.ws0{word-spacing:-9.408000px;}
.ws7{word-spacing:-3.990000px;}
.wsa1{word-spacing:-3.162000px;}
.ws43{word-spacing:-1.800000px;}
.ws59{word-spacing:-1.740000px;}
.ws47{word-spacing:-1.680000px;}
.ws42{word-spacing:-1.560000px;}
.ws8{word-spacing:-1.500000px;}
.ws62{word-spacing:-1.440000px;}
.ws1b{word-spacing:-1.320000px;}
.ws7e{word-spacing:-1.275000px;}
.ws48{word-spacing:-1.260000px;}
.wsab{word-spacing:-1.224000px;}
.wse{word-spacing:-1.200000px;}
.ws3f{word-spacing:-1.140000px;}
.wsc{word-spacing:-1.080000px;}
.ws8f{word-spacing:-1.071000px;}
.ws16{word-spacing:-1.020000px;}
.ws8e{word-spacing:-0.969000px;}
.ws26{word-spacing:-0.960000px;}
.wsb{word-spacing:-0.900000px;}
.ws81{word-spacing:-0.867000px;}
.ws39{word-spacing:-0.840000px;}
.ws33{word-spacing:-0.780000px;}
.ws90{word-spacing:-0.765000px;}
.wsa{word-spacing:-0.720000px;}
.ws91{word-spacing:-0.714000px;}
.ws1c{word-spacing:-0.660000px;}
.ws22{word-spacing:-0.612000px;}
.ws32{word-spacing:-0.600000px;}
.ws2c{word-spacing:-0.540000px;}
.ws9a{word-spacing:-0.510000px;}
.ws4e{word-spacing:-0.480000px;}
.ws6a{word-spacing:-0.420000px;}
.ws2d{word-spacing:-0.360000px;}
.ws17{word-spacing:-0.300000px;}
.ws8d{word-spacing:-0.264000px;}
.ws93{word-spacing:-0.255000px;}
.ws74{word-spacing:-0.240000px;}
.ws49{word-spacing:-0.180000px;}
.wsa7{word-spacing:-0.153000px;}
.ws2f{word-spacing:-0.120000px;}
.ws9b{word-spacing:-0.051000px;}
.ws6{word-spacing:0.000000px;}
.ws41{word-spacing:0.060000px;}
.wsae{word-spacing:0.102000px;}
.ws4d{word-spacing:0.120000px;}
.ws5e{word-spacing:0.180000px;}
.wsb3{word-spacing:0.204000px;}
.wsf{word-spacing:0.240000px;}
.ws50{word-spacing:0.300000px;}
.ws85{word-spacing:0.357000px;}
.ws54{word-spacing:0.360000px;}
.ws60{word-spacing:0.420000px;}
.wsaf{word-spacing:0.459000px;}
.ws56{word-spacing:0.480000px;}
.ws46{word-spacing:0.540000px;}
.ws64{word-spacing:0.600000px;}
.wsa3{word-spacing:0.612000px;}
.ws52{word-spacing:0.660000px;}
.wsb1{word-spacing:0.663000px;}
.ws67{word-spacing:0.720000px;}
.ws4f{word-spacing:0.780000px;}
.ws2a{word-spacing:0.840000px;}
.ws3e{word-spacing:0.900000px;}
.wsb0{word-spacing:0.918000px;}
.ws61{word-spacing:1.020000px;}
.ws7f{word-spacing:1.122000px;}
.ws5c{word-spacing:1.140000px;}
.ws83{word-spacing:1.173000px;}
.ws7c{word-spacing:1.200000px;}
.ws98{word-spacing:1.224000px;}
.ws3d{word-spacing:1.260000px;}
.ws80{word-spacing:1.275000px;}
.wsd{word-spacing:1.320000px;}
.ws5b{word-spacing:1.380000px;}
.ws97{word-spacing:1.428000px;}
.ws68{word-spacing:1.440000px;}
.wsaa{word-spacing:1.479000px;}
.ws9{word-spacing:1.500000px;}
.ws29{word-spacing:1.560000px;}
.ws34{word-spacing:1.620000px;}
.ws27{word-spacing:1.680000px;}
.wsa8{word-spacing:1.734000px;}
.ws1e{word-spacing:1.740000px;}
.wsa9{word-spacing:1.785000px;}
.ws6d{word-spacing:1.800000px;}
.ws12{word-spacing:1.860000px;}
.ws2b{word-spacing:1.920000px;}
.ws30{word-spacing:1.980000px;}
.ws84{word-spacing:1.989000px;}
.ws40{word-spacing:2.040000px;}
.ws4a{word-spacing:2.100000px;}
.ws82{word-spacing:2.142000px;}
.ws20{word-spacing:2.160000px;}
.ws8c{word-spacing:2.193000px;}
.ws3c{word-spacing:2.220000px;}
.wsac{word-spacing:2.244000px;}
.ws70{word-spacing:2.280000px;}
.wsb5{word-spacing:2.295000px;}
.ws5f{word-spacing:2.340000px;}
.ws55{word-spacing:2.400000px;}
.wsb2{word-spacing:2.448000px;}
.ws13{word-spacing:2.460000px;}
.ws15{word-spacing:2.520000px;}
.ws18{word-spacing:2.580000px;}
.ws77{word-spacing:2.640000px;}
.ws31{word-spacing:2.700000px;}
.wsa4{word-spacing:2.754000px;}
.ws58{word-spacing:2.760000px;}
.wsad{word-spacing:2.805000px;}
.ws4b{word-spacing:2.820000px;}
.ws8a{word-spacing:2.856000px;}
.ws4c{word-spacing:2.880000px;}
.ws6f{word-spacing:2.940000px;}
.ws1d{word-spacing:3.000000px;}
.ws99{word-spacing:3.009000px;}
.ws2e{word-spacing:3.060000px;}
.ws3b{word-spacing:3.120000px;}
.ws96{word-spacing:3.162000px;}
.ws66{word-spacing:3.180000px;}
.ws78{word-spacing:3.240000px;}
.ws1a{word-spacing:3.300000px;}
.ws63{word-spacing:3.360000px;}
.ws6e{word-spacing:3.420000px;}
.ws71{word-spacing:3.480000px;}
.ws5a{word-spacing:3.540000px;}
.wsb4{word-spacing:3.570000px;}
.ws1f{word-spacing:3.600000px;}
.ws9c{word-spacing:3.672000px;}
.ws5d{word-spacing:3.720000px;}
.ws8b{word-spacing:3.723000px;}
.ws75{word-spacing:3.840000px;}
.ws79{word-spacing:3.900000px;}
.ws6c{word-spacing:4.080000px;}
.ws72{word-spacing:4.140000px;}
.ws36{word-spacing:4.200000px;}
.ws9f{word-spacing:4.335000px;}
.ws76{word-spacing:4.380000px;}
.ws28{word-spacing:4.440000px;}
.ws51{word-spacing:4.500000px;}
.ws14{word-spacing:4.560000px;}
.ws25{word-spacing:4.620000px;}
.ws65{word-spacing:4.740000px;}
.ws95{word-spacing:4.743000px;}
.ws38{word-spacing:4.800000px;}
.ws3a{word-spacing:4.980000px;}
.ws69{word-spacing:5.040000px;}
.wsa5{word-spacing:5.304000px;}
.ws19{word-spacing:5.400000px;}
.ws7d{word-spacing:5.760000px;}
.ws6b{word-spacing:5.820000px;}
.ws9d{word-spacing:5.967000px;}
.ws53{word-spacing:6.180000px;}
.ws37{word-spacing:6.240000px;}
.ws35{word-spacing:6.300000px;}
.ws94{word-spacing:6.630000px;}
.ws73{word-spacing:6.660000px;}
.ws11{word-spacing:7.140000px;}
.wsa0{word-spacing:10.455000px;}
.wsa6{word-spacing:11.424000px;}
.wsb6{word-spacing:13.515000px;}
.wsa2{word-spacing:13.719000px;}
.wsb7{word-spacing:17.595000px;}
.ws10{word-spacing:21.456000px;}
.ws21{word-spacing:72.267000px;}
._4{margin-left:-16.575000px;}
._b{margin-left:-14.544000px;}
._d{margin-left:-13.404000px;}
._3{margin-left:-4.860000px;}
._10{margin-left:-3.828000px;}
._2{margin-left:-2.796000px;}
._0{margin-left:-1.632000px;}
._1{width:1.830900px;}
._c{width:2.879992px;}
._8{width:4.104000px;}
._9{width:5.105988px;}
._14{width:9.435000px;}
._f{width:12.797400px;}
._13{width:14.800800px;}
._5{width:18.360000px;}
._a{width:21.456000px;}
._11{width:31.086000px;}
._e{width:33.000000px;}
._12{width:36.000000px;}
._6{width:54.621000px;}
._7{width:2694.381000px;}
.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;}
.fs1{font-size:51.000000px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.829002px;}
.y31{bottom:112.938300px;}
.y67{bottom:113.415344px;}
.y94{bottom:114.432312px;}
.yc6{bottom:114.735260px;}
.y187{bottom:114.735306px;}
.y161{bottom:114.738316px;}
.y21e{bottom:116.761794px;}
.y1a6{bottom:122.295306px;}
.y1dc{bottom:129.282294px;}
.y2d{bottom:130.711349px;}
.y12c{bottom:131.283325px;}
.y21d{bottom:131.755794px;}
.y66{bottom:132.165344px;}
.yf9{bottom:132.294159px;}
.y30{bottom:133.032303px;}
.y93{bottom:133.182312px;}
.yc5{bottom:133.485260px;}
.y186{bottom:133.485306px;}
.y160{bottom:133.488316px;}
.y1a5{bottom:137.289306px;}
.y1db{bottom:144.276294px;}
.y21c{bottom:146.749794px;}
.y2c{bottom:149.461349px;}
.y12b{bottom:150.033325px;}
.y65{bottom:150.915344px;}
.yf8{bottom:151.044159px;}
.y92{bottom:151.932312px;}
.yc4{bottom:152.235260px;}
.y185{bottom:152.235306px;}
.y15f{bottom:152.238316px;}
.y1a4{bottom:152.283306px;}
.y2f{bottom:158.032794px;}
.y1da{bottom:159.270294px;}
.y21b{bottom:161.743794px;}
.y1a3{bottom:167.277306px;}
.y2b{bottom:168.211349px;}
.y12a{bottom:168.783325px;}
.y64{bottom:169.665344px;}
.yf7{bottom:169.794159px;}
.y91{bottom:170.682312px;}
.yc3{bottom:170.985260px;}
.y184{bottom:170.985306px;}
.y15e{bottom:170.988316px;}
.y2e{bottom:173.026794px;}
.y1d9{bottom:174.264294px;}
.y21a{bottom:176.737794px;}
.y1a2{bottom:182.271306px;}
.y2a{bottom:186.961349px;}
.y129{bottom:187.533325px;}
.y63{bottom:188.415344px;}
.yf6{bottom:188.544159px;}
.y1d8{bottom:189.258294px;}
.y90{bottom:189.432312px;}
.yc2{bottom:189.735260px;}
.y183{bottom:189.735306px;}
.y15d{bottom:189.738316px;}
.y219{bottom:191.731794px;}
.y1a1{bottom:197.265306px;}
.y1d7{bottom:204.252294px;}
.y29{bottom:205.711349px;}
.y128{bottom:206.283325px;}
.y218{bottom:206.725794px;}
.y62{bottom:207.165344px;}
.yf5{bottom:207.294159px;}
.y8f{bottom:208.182312px;}
.yc1{bottom:208.485260px;}
.y182{bottom:208.485306px;}
.y15c{bottom:208.488316px;}
.y1a0{bottom:212.259306px;}
.y1d6{bottom:219.246294px;}
.y217{bottom:221.719794px;}
.y28{bottom:224.461349px;}
.y127{bottom:225.033325px;}
.y61{bottom:225.915344px;}
.yf4{bottom:226.044159px;}
.y8e{bottom:226.932312px;}
.yc0{bottom:227.235260px;}
.y181{bottom:227.235306px;}
.y15b{bottom:227.238316px;}
.y19f{bottom:227.253306px;}
.y1d5{bottom:234.240294px;}
.y216{bottom:236.713794px;}
.y19e{bottom:242.247306px;}
.y26{bottom:243.211349px;}
.y126{bottom:243.783325px;}
.y60{bottom:244.665344px;}
.yf3{bottom:244.794159px;}
.y8d{bottom:245.682312px;}
.ybf{bottom:245.985260px;}
.y180{bottom:245.985306px;}
.y15a{bottom:245.988316px;}
.y1d4{bottom:249.234294px;}
.y215{bottom:251.707794px;}
.y19d{bottom:257.241306px;}
.y25{bottom:261.961349px;}
.y125{bottom:262.533325px;}
.y5f{bottom:263.415344px;}
.yf2{bottom:263.544159px;}
.y1d3{bottom:264.228294px;}
.y8c{bottom:264.432312px;}
.ybe{bottom:264.735260px;}
.y17f{bottom:264.735306px;}
.y159{bottom:264.738316px;}
.y214{bottom:266.701794px;}
.y19c{bottom:272.235306px;}
.y1d2{bottom:279.222294px;}
.y24{bottom:280.711349px;}
.y124{bottom:281.283325px;}
.y213{bottom:281.695794px;}
.y5e{bottom:282.165344px;}
.yf1{bottom:282.294159px;}
.y8b{bottom:283.182312px;}
.ybd{bottom:283.485260px;}
.y17e{bottom:283.485306px;}
.y158{bottom:283.488316px;}
.y1d1{bottom:294.216294px;}
.y212{bottom:296.689794px;}
.y23{bottom:299.461349px;}
.y123{bottom:300.033325px;}
.y5d{bottom:300.915344px;}
.yf0{bottom:301.044159px;}
.y8a{bottom:301.932312px;}
.ybc{bottom:302.235260px;}
.y17d{bottom:302.235306px;}
.y157{bottom:302.238316px;}
.y1d0{bottom:309.210294px;}
.y211{bottom:311.683794px;}
.y22{bottom:318.211349px;}
.y122{bottom:318.783325px;}
.y5c{bottom:319.665344px;}
.yef{bottom:319.794159px;}
.y89{bottom:320.682312px;}
.ybb{bottom:320.985260px;}
.y17c{bottom:320.985306px;}
.y156{bottom:320.988316px;}
.y1cf{bottom:324.204294px;}
.y210{bottom:326.677794px;}
.y21{bottom:336.961349px;}
.y121{bottom:337.533325px;}
.y5b{bottom:338.415344px;}
.yee{bottom:338.544159px;}
.y1ce{bottom:339.198294px;}
.y88{bottom:339.432312px;}
.yba{bottom:339.735260px;}
.y19b{bottom:339.735306px;}
.y155{bottom:339.738316px;}
.y20f{bottom:341.671794px;}
.y1cd{bottom:354.192294px;}
.y20{bottom:355.711349px;}
.y120{bottom:356.283325px;}
.y20e{bottom:356.665794px;}
.y5a{bottom:357.165344px;}
.yed{bottom:357.294159px;}
.y87{bottom:358.182312px;}
.yb9{bottom:358.485260px;}
.y17b{bottom:358.485306px;}
.y154{bottom:358.488316px;}
.y1cc{bottom:369.186294px;}
.y20d{bottom:371.659794px;}
.y1f{bottom:374.461349px;}
.y11f{bottom:375.033325px;}
.y59{bottom:375.915344px;}
.yec{bottom:376.044159px;}
.y86{bottom:376.932312px;}
.yb8{bottom:377.235260px;}
.y19a{bottom:377.235306px;}
.y153{bottom:377.238316px;}
.y1cb{bottom:384.180294px;}
.y20c{bottom:386.653794px;}
.y1e{bottom:393.211349px;}
.y11e{bottom:393.783325px;}
.y58{bottom:394.665344px;}
.yeb{bottom:394.794159px;}
.y85{bottom:395.682312px;}
.yb7{bottom:395.985260px;}
.y17a{bottom:395.985306px;}
.y152{bottom:395.988316px;}
.y1ca{bottom:399.174294px;}
.y20b{bottom:401.647794px;}
.y1d{bottom:411.961349px;}
.y11d{bottom:412.533325px;}
.y57{bottom:413.415344px;}
.yea{bottom:413.544159px;}
.y1c9{bottom:414.168294px;}
.y84{bottom:414.432312px;}
.yb6{bottom:414.735260px;}
.y179{bottom:414.735306px;}
.y151{bottom:414.738316px;}
.y20a{bottom:416.641794px;}
.y1c8{bottom:429.162294px;}
.y1c{bottom:430.711349px;}
.y11c{bottom:431.283325px;}
.y209{bottom:431.635794px;}
.y56{bottom:432.165344px;}
.ye9{bottom:432.294159px;}
.y83{bottom:433.182312px;}
.yb5{bottom:433.485260px;}
.y178{bottom:433.485306px;}
.y150{bottom:433.488316px;}
.y1c7{bottom:444.156294px;}
.y208{bottom:446.629794px;}
.y1b{bottom:449.461349px;}
.y11b{bottom:450.033325px;}
.y55{bottom:450.915344px;}
.ye8{bottom:451.044159px;}
.y82{bottom:451.932312px;}
.yb4{bottom:452.235260px;}
.y177{bottom:452.235306px;}
.y14f{bottom:452.238316px;}
.y1c6{bottom:459.150294px;}
.y207{bottom:461.623794px;}
.y1a{bottom:468.211349px;}
.y11a{bottom:468.783325px;}
.y54{bottom:469.665344px;}
.ye7{bottom:469.794159px;}
.y81{bottom:470.682312px;}
.yb3{bottom:470.985260px;}
.y176{bottom:470.985306px;}
.y14e{bottom:470.988316px;}
.y1c5{bottom:474.144294px;}
.y206{bottom:476.617794px;}
.y19{bottom:486.961349px;}
.y119{bottom:487.533325px;}
.y53{bottom:488.415344px;}
.ye6{bottom:488.544159px;}
.y1c4{bottom:489.138294px;}
.y80{bottom:489.432312px;}
.yb2{bottom:489.735260px;}
.y175{bottom:489.735306px;}
.y14d{bottom:489.738316px;}
.y205{bottom:491.611794px;}
.y1c3{bottom:504.132294px;}
.y27{bottom:505.711349px;}
.y118{bottom:506.283325px;}
.y204{bottom:506.605794px;}
.y52{bottom:507.165344px;}
.ye5{bottom:507.294159px;}
.y7f{bottom:508.182312px;}
.yb1{bottom:508.485260px;}
.y174{bottom:508.485306px;}
.y14c{bottom:508.488316px;}
.y203{bottom:521.599794px;}
.y18{bottom:524.461349px;}
.y117{bottom:525.033325px;}
.y51{bottom:525.915344px;}
.ye4{bottom:526.044159px;}
.y7e{bottom:526.932312px;}
.yb0{bottom:527.235260px;}
.y173{bottom:527.235306px;}
.y14b{bottom:527.238316px;}
.y202{bottom:536.593794px;}
.y1c2{bottom:537.882294px;}
.y116{bottom:543.783325px;}
.y50{bottom:544.665344px;}
.ye3{bottom:544.794159px;}
.y7d{bottom:545.682312px;}
.yaf{bottom:545.985260px;}
.y172{bottom:545.985306px;}
.y14a{bottom:545.988316px;}
.y201{bottom:551.587794px;}
.y115{bottom:562.533325px;}
.y4f{bottom:563.415344px;}
.ye2{bottom:563.544159px;}
.y7c{bottom:564.432312px;}
.yae{bottom:564.735260px;}
.y171{bottom:564.735306px;}
.y149{bottom:564.738316px;}
.y200{bottom:566.581794px;}
.y17{bottom:580.711395px;}
.y114{bottom:581.283325px;}
.y1ff{bottom:581.575794px;}
.y4e{bottom:582.165344px;}
.ye1{bottom:582.294159px;}
.y7b{bottom:583.182312px;}
.yad{bottom:583.485260px;}
.y170{bottom:583.485306px;}
.y148{bottom:583.488316px;}
.y1fe{bottom:596.569794px;}
.y16{bottom:599.461395px;}
.y113{bottom:600.033325px;}
.y4d{bottom:600.915344px;}
.ye0{bottom:601.044159px;}
.y7a{bottom:601.932312px;}
.yac{bottom:602.235260px;}
.y16f{bottom:602.235306px;}
.y147{bottom:602.238316px;}
.y1c1{bottom:607.540073px;}
.y1fd{bottom:611.563794px;}
.y112{bottom:618.783325px;}
.y4c{bottom:619.665344px;}
.ydf{bottom:619.794159px;}
.y79{bottom:620.682312px;}
.yab{bottom:620.985260px;}
.y16e{bottom:620.985306px;}
.y146{bottom:620.988316px;}
.y1c0{bottom:622.534073px;}
.y1fc{bottom:626.557794px;}
.y15{bottom:636.961395px;}
.y1bf{bottom:637.528073px;}
.y111{bottom:637.533325px;}
.y4b{bottom:638.415344px;}
.yde{bottom:638.544159px;}
.y78{bottom:639.432312px;}
.yaa{bottom:639.735260px;}
.y16d{bottom:639.735306px;}
.y145{bottom:639.738316px;}
.y1fb{bottom:641.551794px;}
.y1be{bottom:652.522073px;}
.y14{bottom:655.711395px;}
.y110{bottom:656.283325px;}
.y1fa{bottom:656.545794px;}
.y4a{bottom:657.165344px;}
.ydd{bottom:657.294159px;}
.y77{bottom:658.182312px;}
.ya9{bottom:658.485260px;}
.y16c{bottom:658.485306px;}
.y144{bottom:658.488316px;}
.y1bd{bottom:667.516073px;}
.y1f9{bottom:671.539794px;}
.y13{bottom:674.461395px;}
.y10f{bottom:675.033325px;}
.y49{bottom:675.915344px;}
.ydc{bottom:676.044159px;}
.y76{bottom:676.932312px;}
.ya8{bottom:677.235260px;}
.y16b{bottom:677.235306px;}
.y143{bottom:677.238316px;}
.y1bc{bottom:682.510073px;}
.y1f8{bottom:686.533794px;}
.y12{bottom:693.211395px;}
.y10e{bottom:693.783325px;}
.y48{bottom:694.665344px;}
.ydb{bottom:694.794159px;}
.y75{bottom:695.682312px;}
.ya7{bottom:695.985260px;}
.y16a{bottom:695.985306px;}
.y142{bottom:695.988316px;}
.y1bb{bottom:697.504073px;}
.y1f7{bottom:701.527794px;}
.y11{bottom:711.961395px;}
.y1ba{bottom:712.498073px;}
.y10d{bottom:712.533325px;}
.y47{bottom:713.415344px;}
.yda{bottom:713.544159px;}
.y74{bottom:714.432312px;}
.ya6{bottom:714.735260px;}
.y169{bottom:714.735306px;}
.y141{bottom:714.738316px;}
.y1f6{bottom:716.521794px;}
.y1b9{bottom:727.492073px;}
.y10{bottom:730.711395px;}
.y10c{bottom:731.283325px;}
.y1f5{bottom:731.515794px;}
.y46{bottom:732.165344px;}
.yd9{bottom:732.294159px;}
.y73{bottom:733.182312px;}
.ya5{bottom:733.485260px;}
.y168{bottom:733.485306px;}
.y140{bottom:733.488316px;}
.y1b8{bottom:742.486073px;}
.y1f4{bottom:746.509794px;}
.yf{bottom:749.461395px;}
.y10b{bottom:750.033325px;}
.y45{bottom:750.915344px;}
.yd8{bottom:751.044159px;}
.y72{bottom:751.932312px;}
.ya4{bottom:752.235260px;}
.y167{bottom:752.235306px;}
.y13f{bottom:752.238316px;}
.y1b7{bottom:757.480073px;}
.y1f3{bottom:761.503794px;}
.ye{bottom:768.211395px;}
.y10a{bottom:768.783325px;}
.y44{bottom:769.665344px;}
.yd7{bottom:769.794159px;}
.y71{bottom:770.682312px;}
.ya3{bottom:770.985260px;}
.y199{bottom:770.985306px;}
.y13e{bottom:770.988316px;}
.y1b6{bottom:772.474073px;}
.y1f2{bottom:776.497794px;}
.yd{bottom:786.961395px;}
.y109{bottom:787.533325px;}
.y43{bottom:788.415344px;}
.yd6{bottom:788.544159px;}
.y70{bottom:789.432312px;}
.y166{bottom:789.729260px;}
.y165{bottom:789.735260px;}
.y198{bottom:789.735306px;}
.y13d{bottom:789.738316px;}
.y1f1{bottom:791.491794px;}
.y1b5{bottom:802.474823px;}
.yc{bottom:805.711395px;}
.y108{bottom:806.283325px;}
.y1f0{bottom:806.485794px;}
.y42{bottom:807.165344px;}
.yd5{bottom:807.294159px;}
.y6f{bottom:808.182312px;}
.y164{bottom:808.485260px;}
.y197{bottom:808.485306px;}
.y13c{bottom:808.488316px;}
.ya2{bottom:808.491260px;}
.y22e{bottom:821.332823px;}
.y1ef{bottom:821.479794px;}
.yb{bottom:824.461395px;}
.y107{bottom:825.033325px;}
.y41{bottom:825.915344px;}
.yd4{bottom:826.044159px;}
.y6e{bottom:826.932312px;}
.ya1{bottom:827.235260px;}
.y196{bottom:827.235306px;}
.y13b{bottom:827.238316px;}
.y1b4{bottom:832.474823px;}
.y22d{bottom:836.326823px;}
.y1ee{bottom:836.473794px;}
.ya{bottom:843.211395px;}
.y106{bottom:843.783325px;}
.y40{bottom:844.665344px;}
.yd3{bottom:844.794159px;}
.y6d{bottom:845.682312px;}
.y163{bottom:845.985260px;}
.y195{bottom:845.985306px;}
.y13a{bottom:845.988316px;}
.y22c{bottom:851.320823px;}
.y1ed{bottom:851.467794px;}
.y9{bottom:861.961395px;}
.y105{bottom:862.533325px;}
.y3f{bottom:863.415344px;}
.yd2{bottom:863.544159px;}
.y6c{bottom:864.432312px;}
.y162{bottom:864.735260px;}
.y194{bottom:864.735306px;}
.y139{bottom:864.738316px;}
.y1b3{bottom:866.276573px;}
.y22b{bottom:866.314823px;}
.y1ec{bottom:866.461794px;}
.y1b2{bottom:881.270573px;}
.y104{bottom:881.283325px;}
.y22a{bottom:881.308823px;}
.y1eb{bottom:881.455794px;}
.y3e{bottom:882.165344px;}
.yd1{bottom:882.294159px;}
.y6b{bottom:883.182312px;}
.ya0{bottom:883.485260px;}
.y193{bottom:883.485306px;}
.y138{bottom:883.488316px;}
.y229{bottom:896.302823px;}
.y23b{bottom:896.302824px;}
.y1ea{bottom:896.449794px;}
.y103{bottom:900.033325px;}
.y3d{bottom:900.915344px;}
.yd0{bottom:901.044159px;}
.y6a{bottom:901.932312px;}
.y9f{bottom:902.235260px;}
.y192{bottom:902.235306px;}
.y137{bottom:902.238316px;}
.y8{bottom:906.144153px;}
.y1b1{bottom:911.271323px;}
.y228{bottom:911.296823px;}
.y23a{bottom:911.296824px;}
.y1e9{bottom:911.443794px;}
.y102{bottom:918.783325px;}
.y3c{bottom:919.665344px;}
.ycf{bottom:919.794159px;}
.y9e{bottom:920.985260px;}
.y191{bottom:920.985306px;}
.y136{bottom:920.988316px;}
.y7{bottom:921.138153px;}
.y1b0{bottom:926.265323px;}
.y227{bottom:926.290823px;}
.y1e8{bottom:926.437794px;}
.y101{bottom:937.533325px;}
.y3b{bottom:938.415344px;}
.yce{bottom:938.544159px;}
.y69{bottom:939.426312px;}
.y9d{bottom:939.735260px;}
.y190{bottom:939.735306px;}
.y135{bottom:939.738316px;}
.y1af{bottom:941.259323px;}
.y226{bottom:941.284823px;}
.y239{bottom:941.386823px;}
.y1e7{bottom:941.431794px;}
.y1ae{bottom:956.253323px;}
.y225{bottom:956.278823px;}
.y100{bottom:956.283325px;}
.y238{bottom:956.380823px;}
.y1e6{bottom:956.425794px;}
.y3a{bottom:957.165344px;}
.ycd{bottom:957.294159px;}
.y68{bottom:958.182312px;}
.y9c{bottom:958.485260px;}
.y18f{bottom:958.485306px;}
.y134{bottom:958.488316px;}
.y6{bottom:963.738190px;}
.y1ad{bottom:971.247323px;}
.y224{bottom:971.272823px;}
.y237{bottom:971.374823px;}
.y1e5{bottom:971.419794px;}
.yff{bottom:975.033325px;}
.y39{bottom:975.915344px;}
.ycc{bottom:976.044159px;}
.y9b{bottom:977.235260px;}
.y18e{bottom:977.235306px;}
.y133{bottom:977.238316px;}
.y1ac{bottom:986.241323px;}
.y223{bottom:986.266823px;}
.y236{bottom:986.368823px;}
.y1e4{bottom:986.413794px;}
.yfe{bottom:993.783325px;}
.y38{bottom:994.665344px;}
.ycb{bottom:994.794159px;}
.y9a{bottom:995.985260px;}
.y18d{bottom:995.985306px;}
.y132{bottom:995.988316px;}
.y222{bottom:1001.260823px;}
.y235{bottom:1001.362823px;}
.y1e3{bottom:1001.407794px;}
.y5{bottom:1008.424622px;}
.yfd{bottom:1012.533325px;}
.y37{bottom:1013.415344px;}
.yca{bottom:1013.544159px;}
.y99{bottom:1014.735260px;}
.y18c{bottom:1014.735306px;}
.y131{bottom:1014.738316px;}
.y1ab{bottom:1016.242073px;}
.y221{bottom:1016.254823px;}
.y234{bottom:1016.356823px;}
.y1e2{bottom:1016.401794px;}
.y1aa{bottom:1031.236073px;}
.y220{bottom:1031.248823px;}
.yfc{bottom:1031.283325px;}
.y233{bottom:1031.350823px;}
.y1e1{bottom:1031.395794px;}
.y36{bottom:1032.165344px;}
.yc9{bottom:1032.294159px;}
.y98{bottom:1033.485260px;}
.y18b{bottom:1033.485306px;}
.y130{bottom:1033.488316px;}
.y21f{bottom:1046.242823px;}
.y232{bottom:1046.344823px;}
.y1e0{bottom:1046.389794px;}
.yfb{bottom:1050.033325px;}
.y35{bottom:1050.915344px;}
.yc8{bottom:1051.044159px;}
.y97{bottom:1052.235260px;}
.y18a{bottom:1052.235306px;}
.y12f{bottom:1052.238316px;}
.y1a9{bottom:1061.236823px;}
.y231{bottom:1061.338823px;}
.y1df{bottom:1061.383794px;}
.y34{bottom:1069.665344px;}
.y96{bottom:1070.985260px;}
.y189{bottom:1070.985306px;}
.y12e{bottom:1070.988316px;}
.y4{bottom:1076.132080px;}
.y1a8{bottom:1076.230823px;}
.y230{bottom:1076.332823px;}
.y1de{bottom:1076.377794px;}
.yfa{bottom:1087.533325px;}
.y33{bottom:1088.415344px;}
.yc7{bottom:1088.544159px;}
.y95{bottom:1089.735260px;}
.y188{bottom:1089.735306px;}
.y12d{bottom:1089.738316px;}
.y1a7{bottom:1091.224823px;}
.y22f{bottom:1091.326823px;}
.y1dd{bottom:1091.371794px;}
.y3{bottom:1109.586556px;}
.y2{bottom:1126.582306px;}
.y32{bottom:1127.482361px;}
.hd{height:24.561599px;}
.hc{height:35.088000px;}
.hb{height:36.855469px;}
.h4{height:40.470000px;}
.h8{height:41.280000px;}
.h2{height:42.048000px;}
.h3{height:44.676000px;}
.h10{height:45.186000px;}
.h11{height:52.173000px;}
.h9{height:53.160000px;}
.h6{height:53.820000px;}
.hf{height:59.004000px;}
.h7{height:59.340000px;}
.he{height:61.380000px;}
.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;}
.x2{left:76.535402px;}
.x3{left:85.181849px;}
.x7{left:93.530404px;}
.x6{left:97.796100px;}
.xa{left:102.048152px;}
.x9{left:105.971550px;}
.x4{left:459.215389px;}
.x5{left:476.225394px;}
.x8{left:478.202540px;}
.xb{left:484.739410px;}
.x1{left:728.220612px;}
@media print{
.v2{vertical-align:-18.133343pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls3f{letter-spacing:-0.373333pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls64{letter-spacing:-0.317333pt;}
.ls48{letter-spacing:-0.272000pt;}
.ls17{letter-spacing:-0.266667pt;}
.ls68{letter-spacing:-0.226667pt;}
.ls2c{letter-spacing:-0.213333pt;}
.ls65{letter-spacing:-0.181333pt;}
.ls2d{letter-spacing:-0.160000pt;}
.ls66{letter-spacing:-0.136000pt;}
.ls18{letter-spacing:-0.106667pt;}
.ls63{letter-spacing:-0.090667pt;}
.ls35{letter-spacing:-0.053333pt;}
.ls67{letter-spacing:-0.045333pt;}
.ls15{letter-spacing:0.000000pt;}
.ls6b{letter-spacing:0.022667pt;}
.ls3d{letter-spacing:0.026667pt;}
.ls4e{letter-spacing:0.045333pt;}
.ls1d{letter-spacing:0.053333pt;}
.ls2f{letter-spacing:0.080000pt;}
.ls49{letter-spacing:0.090667pt;}
.ls26{letter-spacing:0.106667pt;}
.ls6d{letter-spacing:0.113333pt;}
.ls30{letter-spacing:0.133333pt;}
.ls42{letter-spacing:0.136000pt;}
.ls13{letter-spacing:0.158926pt;}
.ls1{letter-spacing:0.160000pt;}
.ls43{letter-spacing:0.181333pt;}
.ls3c{letter-spacing:0.186667pt;}
.ls0{letter-spacing:0.213333pt;}
.ls14{letter-spacing:0.226667pt;}
.ls4f{letter-spacing:0.234667pt;}
.ls1e{letter-spacing:0.240000pt;}
.ls51{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls4c{letter-spacing:0.272000pt;}
.ls3e{letter-spacing:0.293333pt;}
.ls4d{letter-spacing:0.317333pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.346667pt;}
.ls44{letter-spacing:0.362667pt;}
.lsb{letter-spacing:0.373333pt;}
.ls41{letter-spacing:0.400000pt;}
.ls50{letter-spacing:0.408000pt;}
.ls4{letter-spacing:0.426667pt;}
.ls55{letter-spacing:0.453333pt;}
.ls2{letter-spacing:0.480000pt;}
.ls47{letter-spacing:0.498667pt;}
.ls32{letter-spacing:0.506667pt;}
.ls5b{letter-spacing:0.521333pt;}
.ls7{letter-spacing:0.533333pt;}
.ls62{letter-spacing:0.544000pt;}
.ls25{letter-spacing:0.560000pt;}
.ls6{letter-spacing:0.586667pt;}
.ls54{letter-spacing:0.589333pt;}
.ls3b{letter-spacing:0.613333pt;}
.ls5e{letter-spacing:0.634667pt;}
.lsc{letter-spacing:0.640000pt;}
.ls6c{letter-spacing:0.657333pt;}
.ls11{letter-spacing:0.666667pt;}
.ls46{letter-spacing:0.680000pt;}
.ls10{letter-spacing:0.693333pt;}
.ls45{letter-spacing:0.725333pt;}
.ls8{letter-spacing:0.746667pt;}
.ls4a{letter-spacing:0.770667pt;}
.ls12{letter-spacing:0.800000pt;}
.ls6a{letter-spacing:0.816000pt;}
.ls9{letter-spacing:0.853333pt;}
.ls58{letter-spacing:0.861333pt;}
.ls31{letter-spacing:0.880000pt;}
.lsf{letter-spacing:0.906667pt;}
.ls6e{letter-spacing:0.952000pt;}
.lse{letter-spacing:0.960000pt;}
.ls4b{letter-spacing:0.997333pt;}
.ls27{letter-spacing:1.013333pt;}
.ls5a{letter-spacing:1.042667pt;}
.ls56{letter-spacing:1.065333pt;}
.ls1a{letter-spacing:1.066667pt;}
.ls38{letter-spacing:1.093333pt;}
.ls21{letter-spacing:1.120000pt;}
.ls5f{letter-spacing:1.133333pt;}
.ls40{letter-spacing:1.146667pt;}
.ls1c{letter-spacing:1.173333pt;}
.ls53{letter-spacing:1.178667pt;}
.lsa{letter-spacing:1.226667pt;}
.ls23{letter-spacing:1.253333pt;}
.ls24{letter-spacing:1.280000pt;}
.ls33{letter-spacing:1.306667pt;}
.lsd{letter-spacing:1.333333pt;}
.ls2a{letter-spacing:1.386667pt;}
.ls2e{letter-spacing:1.440000pt;}
.ls60{letter-spacing:1.450667pt;}
.ls22{letter-spacing:1.493333pt;}
.ls20{letter-spacing:1.520000pt;}
.ls52{letter-spacing:1.541333pt;}
.ls29{letter-spacing:1.546667pt;}
.ls2b{letter-spacing:1.600000pt;}
.ls5{letter-spacing:1.653333pt;}
.ls59{letter-spacing:1.722667pt;}
.ls37{letter-spacing:1.733333pt;}
.ls39{letter-spacing:1.760000pt;}
.ls3a{letter-spacing:1.813333pt;}
.ls28{letter-spacing:1.920000pt;}
.ls69{letter-spacing:1.949333pt;}
.ls36{letter-spacing:1.973333pt;}
.ls57{letter-spacing:2.040000pt;}
.ls34{letter-spacing:2.240000pt;}
.ls5c{letter-spacing:2.810667pt;}
.ls61{letter-spacing:2.992000pt;}
.ls5d{letter-spacing:3.400000pt;}
.ls16{letter-spacing:3.546667pt;}
.ws89{word-spacing:-14.733333pt;}
.ws57{word-spacing:-14.133333pt;}
.ws24{word-spacing:-13.600000pt;}
.ws45{word-spacing:-13.413333pt;}
.ws23{word-spacing:-13.386667pt;}
.ws5{word-spacing:-13.333333pt;}
.ws88{word-spacing:-13.184000pt;}
.ws7b{word-spacing:-12.928000pt;}
.ws9e{word-spacing:-12.194667pt;}
.ws92{word-spacing:-11.560000pt;}
.ws87{word-spacing:-11.424000pt;}
.ws44{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws4{word-spacing:-10.240000pt;}
.ws86{word-spacing:-8.976000pt;}
.ws1{word-spacing:-8.885333pt;}
.ws7a{word-spacing:-8.840000pt;}
.ws0{word-spacing:-8.362667pt;}
.ws7{word-spacing:-3.546667pt;}
.wsa1{word-spacing:-2.810667pt;}
.ws43{word-spacing:-1.600000pt;}
.ws59{word-spacing:-1.546667pt;}
.ws47{word-spacing:-1.493333pt;}
.ws42{word-spacing:-1.386667pt;}
.ws8{word-spacing:-1.333333pt;}
.ws62{word-spacing:-1.280000pt;}
.ws1b{word-spacing:-1.173333pt;}
.ws7e{word-spacing:-1.133333pt;}
.ws48{word-spacing:-1.120000pt;}
.wsab{word-spacing:-1.088000pt;}
.wse{word-spacing:-1.066667pt;}
.ws3f{word-spacing:-1.013333pt;}
.wsc{word-spacing:-0.960000pt;}
.ws8f{word-spacing:-0.952000pt;}
.ws16{word-spacing:-0.906667pt;}
.ws8e{word-spacing:-0.861333pt;}
.ws26{word-spacing:-0.853333pt;}
.wsb{word-spacing:-0.800000pt;}
.ws81{word-spacing:-0.770667pt;}
.ws39{word-spacing:-0.746667pt;}
.ws33{word-spacing:-0.693333pt;}
.ws90{word-spacing:-0.680000pt;}
.wsa{word-spacing:-0.640000pt;}
.ws91{word-spacing:-0.634667pt;}
.ws1c{word-spacing:-0.586667pt;}
.ws22{word-spacing:-0.544000pt;}
.ws32{word-spacing:-0.533333pt;}
.ws2c{word-spacing:-0.480000pt;}
.ws9a{word-spacing:-0.453333pt;}
.ws4e{word-spacing:-0.426667pt;}
.ws6a{word-spacing:-0.373333pt;}
.ws2d{word-spacing:-0.320000pt;}
.ws17{word-spacing:-0.266667pt;}
.ws8d{word-spacing:-0.234667pt;}
.ws93{word-spacing:-0.226667pt;}
.ws74{word-spacing:-0.213333pt;}
.ws49{word-spacing:-0.160000pt;}
.wsa7{word-spacing:-0.136000pt;}
.ws2f{word-spacing:-0.106667pt;}
.ws9b{word-spacing:-0.045333pt;}
.ws6{word-spacing:0.000000pt;}
.ws41{word-spacing:0.053333pt;}
.wsae{word-spacing:0.090667pt;}
.ws4d{word-spacing:0.106667pt;}
.ws5e{word-spacing:0.160000pt;}
.wsb3{word-spacing:0.181333pt;}
.wsf{word-spacing:0.213333pt;}
.ws50{word-spacing:0.266667pt;}
.ws85{word-spacing:0.317333pt;}
.ws54{word-spacing:0.320000pt;}
.ws60{word-spacing:0.373333pt;}
.wsaf{word-spacing:0.408000pt;}
.ws56{word-spacing:0.426667pt;}
.ws46{word-spacing:0.480000pt;}
.ws64{word-spacing:0.533333pt;}
.wsa3{word-spacing:0.544000pt;}
.ws52{word-spacing:0.586667pt;}
.wsb1{word-spacing:0.589333pt;}
.ws67{word-spacing:0.640000pt;}
.ws4f{word-spacing:0.693333pt;}
.ws2a{word-spacing:0.746667pt;}
.ws3e{word-spacing:0.800000pt;}
.wsb0{word-spacing:0.816000pt;}
.ws61{word-spacing:0.906667pt;}
.ws7f{word-spacing:0.997333pt;}
.ws5c{word-spacing:1.013333pt;}
.ws83{word-spacing:1.042667pt;}
.ws7c{word-spacing:1.066667pt;}
.ws98{word-spacing:1.088000pt;}
.ws3d{word-spacing:1.120000pt;}
.ws80{word-spacing:1.133333pt;}
.wsd{word-spacing:1.173333pt;}
.ws5b{word-spacing:1.226667pt;}
.ws97{word-spacing:1.269333pt;}
.ws68{word-spacing:1.280000pt;}
.wsaa{word-spacing:1.314667pt;}
.ws9{word-spacing:1.333333pt;}
.ws29{word-spacing:1.386667pt;}
.ws34{word-spacing:1.440000pt;}
.ws27{word-spacing:1.493333pt;}
.wsa8{word-spacing:1.541333pt;}
.ws1e{word-spacing:1.546667pt;}
.wsa9{word-spacing:1.586667pt;}
.ws6d{word-spacing:1.600000pt;}
.ws12{word-spacing:1.653333pt;}
.ws2b{word-spacing:1.706667pt;}
.ws30{word-spacing:1.760000pt;}
.ws84{word-spacing:1.768000pt;}
.ws40{word-spacing:1.813333pt;}
.ws4a{word-spacing:1.866667pt;}
.ws82{word-spacing:1.904000pt;}
.ws20{word-spacing:1.920000pt;}
.ws8c{word-spacing:1.949333pt;}
.ws3c{word-spacing:1.973333pt;}
.wsac{word-spacing:1.994667pt;}
.ws70{word-spacing:2.026667pt;}
.wsb5{word-spacing:2.040000pt;}
.ws5f{word-spacing:2.080000pt;}
.ws55{word-spacing:2.133333pt;}
.wsb2{word-spacing:2.176000pt;}
.ws13{word-spacing:2.186667pt;}
.ws15{word-spacing:2.240000pt;}
.ws18{word-spacing:2.293333pt;}
.ws77{word-spacing:2.346667pt;}
.ws31{word-spacing:2.400000pt;}
.wsa4{word-spacing:2.448000pt;}
.ws58{word-spacing:2.453333pt;}
.wsad{word-spacing:2.493333pt;}
.ws4b{word-spacing:2.506667pt;}
.ws8a{word-spacing:2.538667pt;}
.ws4c{word-spacing:2.560000pt;}
.ws6f{word-spacing:2.613333pt;}
.ws1d{word-spacing:2.666667pt;}
.ws99{word-spacing:2.674667pt;}
.ws2e{word-spacing:2.720000pt;}
.ws3b{word-spacing:2.773333pt;}
.ws96{word-spacing:2.810667pt;}
.ws66{word-spacing:2.826667pt;}
.ws78{word-spacing:2.880000pt;}
.ws1a{word-spacing:2.933333pt;}
.ws63{word-spacing:2.986667pt;}
.ws6e{word-spacing:3.040000pt;}
.ws71{word-spacing:3.093333pt;}
.ws5a{word-spacing:3.146667pt;}
.wsb4{word-spacing:3.173333pt;}
.ws1f{word-spacing:3.200000pt;}
.ws9c{word-spacing:3.264000pt;}
.ws5d{word-spacing:3.306667pt;}
.ws8b{word-spacing:3.309333pt;}
.ws75{word-spacing:3.413333pt;}
.ws79{word-spacing:3.466667pt;}
.ws6c{word-spacing:3.626667pt;}
.ws72{word-spacing:3.680000pt;}
.ws36{word-spacing:3.733333pt;}
.ws9f{word-spacing:3.853333pt;}
.ws76{word-spacing:3.893333pt;}
.ws28{word-spacing:3.946667pt;}
.ws51{word-spacing:4.000000pt;}
.ws14{word-spacing:4.053333pt;}
.ws25{word-spacing:4.106667pt;}
.ws65{word-spacing:4.213333pt;}
.ws95{word-spacing:4.216000pt;}
.ws38{word-spacing:4.266667pt;}
.ws3a{word-spacing:4.426667pt;}
.ws69{word-spacing:4.480000pt;}
.wsa5{word-spacing:4.714667pt;}
.ws19{word-spacing:4.800000pt;}
.ws7d{word-spacing:5.120000pt;}
.ws6b{word-spacing:5.173333pt;}
.ws9d{word-spacing:5.304000pt;}
.ws53{word-spacing:5.493333pt;}
.ws37{word-spacing:5.546667pt;}
.ws35{word-spacing:5.600000pt;}
.ws94{word-spacing:5.893333pt;}
.ws73{word-spacing:5.920000pt;}
.ws11{word-spacing:6.346667pt;}
.wsa0{word-spacing:9.293333pt;}
.wsa6{word-spacing:10.154667pt;}
.wsb6{word-spacing:12.013333pt;}
.wsa2{word-spacing:12.194667pt;}
.wsb7{word-spacing:15.640000pt;}
.ws10{word-spacing:19.072000pt;}
.ws21{word-spacing:64.237333pt;}
._4{margin-left:-14.733333pt;}
._b{margin-left:-12.928000pt;}
._d{margin-left:-11.914667pt;}
._3{margin-left:-4.320000pt;}
._10{margin-left:-3.402667pt;}
._2{margin-left:-2.485333pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.627467pt;}
._c{width:2.559993pt;}
._8{width:3.648000pt;}
._9{width:4.538656pt;}
._14{width:8.386667pt;}
._f{width:11.375466pt;}
._13{width:13.156266pt;}
._5{width:16.320000pt;}
._a{width:19.072000pt;}
._11{width:27.632000pt;}
._e{width:29.333333pt;}
._12{width:32.000000pt;}
._6{width:48.552000pt;}
._7{width:2395.005333pt;}
.fs7{font-size:31.733332pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:61.181335pt;}
.y31{bottom:100.389600pt;}
.y67{bottom:100.813639pt;}
.y94{bottom:101.717611pt;}
.yc6{bottom:101.986898pt;}
.y187{bottom:101.986938pt;}
.y161{bottom:101.989614pt;}
.y21e{bottom:103.788261pt;}
.y1a6{bottom:108.706938pt;}
.y1dc{bottom:114.917594pt;}
.y2d{bottom:116.187866pt;}
.y12c{bottom:116.696289pt;}
.y21d{bottom:117.116261pt;}
.y66{bottom:117.480306pt;}
.yf9{bottom:117.594808pt;}
.y30{bottom:118.250936pt;}
.y93{bottom:118.384277pt;}
.yc5{bottom:118.653564pt;}
.y186{bottom:118.653605pt;}
.y160{bottom:118.656281pt;}
.y1a5{bottom:122.034938pt;}
.y1db{bottom:128.245594pt;}
.y21c{bottom:130.444261pt;}
.y2c{bottom:132.854533pt;}
.y12b{bottom:133.362956pt;}
.y65{bottom:134.146973pt;}
.yf8{bottom:134.261475pt;}
.y92{bottom:135.050944pt;}
.yc4{bottom:135.320231pt;}
.y185{bottom:135.320272pt;}
.y15f{bottom:135.322947pt;}
.y1a4{bottom:135.362938pt;}
.y2f{bottom:140.473595pt;}
.y1da{bottom:141.573594pt;}
.y21b{bottom:143.772261pt;}
.y1a3{bottom:148.690938pt;}
.y2b{bottom:149.521200pt;}
.y12a{bottom:150.029622pt;}
.y64{bottom:150.813639pt;}
.yf7{bottom:150.928141pt;}
.y91{bottom:151.717611pt;}
.yc3{bottom:151.986898pt;}
.y184{bottom:151.986938pt;}
.y15e{bottom:151.989614pt;}
.y2e{bottom:153.801595pt;}
.y1d9{bottom:154.901594pt;}
.y21a{bottom:157.100261pt;}
.y1a2{bottom:162.018938pt;}
.y2a{bottom:166.187866pt;}
.y129{bottom:166.696289pt;}
.y63{bottom:167.480306pt;}
.yf6{bottom:167.594808pt;}
.y1d8{bottom:168.229594pt;}
.y90{bottom:168.384277pt;}
.yc2{bottom:168.653564pt;}
.y183{bottom:168.653605pt;}
.y15d{bottom:168.656281pt;}
.y219{bottom:170.428261pt;}
.y1a1{bottom:175.346938pt;}
.y1d7{bottom:181.557594pt;}
.y29{bottom:182.854533pt;}
.y128{bottom:183.362956pt;}
.y218{bottom:183.756261pt;}
.y62{bottom:184.146973pt;}
.yf5{bottom:184.261475pt;}
.y8f{bottom:185.050944pt;}
.yc1{bottom:185.320231pt;}
.y182{bottom:185.320272pt;}
.y15c{bottom:185.322947pt;}
.y1a0{bottom:188.674938pt;}
.y1d6{bottom:194.885594pt;}
.y217{bottom:197.084261pt;}
.y28{bottom:199.521200pt;}
.y127{bottom:200.029622pt;}
.y61{bottom:200.813639pt;}
.yf4{bottom:200.928141pt;}
.y8e{bottom:201.717611pt;}
.yc0{bottom:201.986898pt;}
.y181{bottom:201.986938pt;}
.y15b{bottom:201.989614pt;}
.y19f{bottom:202.002938pt;}
.y1d5{bottom:208.213594pt;}
.y216{bottom:210.412261pt;}
.y19e{bottom:215.330938pt;}
.y26{bottom:216.187866pt;}
.y126{bottom:216.696289pt;}
.y60{bottom:217.480306pt;}
.yf3{bottom:217.594808pt;}
.y8d{bottom:218.384277pt;}
.ybf{bottom:218.653564pt;}
.y180{bottom:218.653605pt;}
.y15a{bottom:218.656281pt;}
.y1d4{bottom:221.541594pt;}
.y215{bottom:223.740261pt;}
.y19d{bottom:228.658938pt;}
.y25{bottom:232.854533pt;}
.y125{bottom:233.362956pt;}
.y5f{bottom:234.146973pt;}
.yf2{bottom:234.261475pt;}
.y1d3{bottom:234.869594pt;}
.y8c{bottom:235.050944pt;}
.ybe{bottom:235.320231pt;}
.y17f{bottom:235.320272pt;}
.y159{bottom:235.322947pt;}
.y214{bottom:237.068261pt;}
.y19c{bottom:241.986938pt;}
.y1d2{bottom:248.197594pt;}
.y24{bottom:249.521200pt;}
.y124{bottom:250.029622pt;}
.y213{bottom:250.396261pt;}
.y5e{bottom:250.813639pt;}
.yf1{bottom:250.928141pt;}
.y8b{bottom:251.717611pt;}
.ybd{bottom:251.986898pt;}
.y17e{bottom:251.986938pt;}
.y158{bottom:251.989614pt;}
.y1d1{bottom:261.525594pt;}
.y212{bottom:263.724261pt;}
.y23{bottom:266.187866pt;}
.y123{bottom:266.696289pt;}
.y5d{bottom:267.480306pt;}
.yf0{bottom:267.594808pt;}
.y8a{bottom:268.384277pt;}
.ybc{bottom:268.653564pt;}
.y17d{bottom:268.653605pt;}
.y157{bottom:268.656281pt;}
.y1d0{bottom:274.853594pt;}
.y211{bottom:277.052261pt;}
.y22{bottom:282.854533pt;}
.y122{bottom:283.362956pt;}
.y5c{bottom:284.146973pt;}
.yef{bottom:284.261475pt;}
.y89{bottom:285.050944pt;}
.ybb{bottom:285.320231pt;}
.y17c{bottom:285.320272pt;}
.y156{bottom:285.322947pt;}
.y1cf{bottom:288.181594pt;}
.y210{bottom:290.380261pt;}
.y21{bottom:299.521200pt;}
.y121{bottom:300.029622pt;}
.y5b{bottom:300.813639pt;}
.yee{bottom:300.928141pt;}
.y1ce{bottom:301.509594pt;}
.y88{bottom:301.717611pt;}
.yba{bottom:301.986898pt;}
.y19b{bottom:301.986938pt;}
.y155{bottom:301.989614pt;}
.y20f{bottom:303.708261pt;}
.y1cd{bottom:314.837594pt;}
.y20{bottom:316.187866pt;}
.y120{bottom:316.696289pt;}
.y20e{bottom:317.036261pt;}
.y5a{bottom:317.480306pt;}
.yed{bottom:317.594808pt;}
.y87{bottom:318.384277pt;}
.yb9{bottom:318.653564pt;}
.y17b{bottom:318.653605pt;}
.y154{bottom:318.656281pt;}
.y1cc{bottom:328.165594pt;}
.y20d{bottom:330.364261pt;}
.y1f{bottom:332.854533pt;}
.y11f{bottom:333.362956pt;}
.y59{bottom:334.146973pt;}
.yec{bottom:334.261475pt;}
.y86{bottom:335.050944pt;}
.yb8{bottom:335.320231pt;}
.y19a{bottom:335.320272pt;}
.y153{bottom:335.322947pt;}
.y1cb{bottom:341.493594pt;}
.y20c{bottom:343.692261pt;}
.y1e{bottom:349.521200pt;}
.y11e{bottom:350.029622pt;}
.y58{bottom:350.813639pt;}
.yeb{bottom:350.928141pt;}
.y85{bottom:351.717611pt;}
.yb7{bottom:351.986898pt;}
.y17a{bottom:351.986938pt;}
.y152{bottom:351.989614pt;}
.y1ca{bottom:354.821594pt;}
.y20b{bottom:357.020261pt;}
.y1d{bottom:366.187866pt;}
.y11d{bottom:366.696289pt;}
.y57{bottom:367.480306pt;}
.yea{bottom:367.594808pt;}
.y1c9{bottom:368.149594pt;}
.y84{bottom:368.384277pt;}
.yb6{bottom:368.653564pt;}
.y179{bottom:368.653605pt;}
.y151{bottom:368.656281pt;}
.y20a{bottom:370.348261pt;}
.y1c8{bottom:381.477594pt;}
.y1c{bottom:382.854533pt;}
.y11c{bottom:383.362956pt;}
.y209{bottom:383.676261pt;}
.y56{bottom:384.146973pt;}
.ye9{bottom:384.261475pt;}
.y83{bottom:385.050944pt;}
.yb5{bottom:385.320231pt;}
.y178{bottom:385.320272pt;}
.y150{bottom:385.322947pt;}
.y1c7{bottom:394.805594pt;}
.y208{bottom:397.004261pt;}
.y1b{bottom:399.521200pt;}
.y11b{bottom:400.029622pt;}
.y55{bottom:400.813639pt;}
.ye8{bottom:400.928141pt;}
.y82{bottom:401.717611pt;}
.yb4{bottom:401.986898pt;}
.y177{bottom:401.986938pt;}
.y14f{bottom:401.989614pt;}
.y1c6{bottom:408.133594pt;}
.y207{bottom:410.332261pt;}
.y1a{bottom:416.187866pt;}
.y11a{bottom:416.696289pt;}
.y54{bottom:417.480306pt;}
.ye7{bottom:417.594808pt;}
.y81{bottom:418.384277pt;}
.yb3{bottom:418.653564pt;}
.y176{bottom:418.653605pt;}
.y14e{bottom:418.656281pt;}
.y1c5{bottom:421.461594pt;}
.y206{bottom:423.660261pt;}
.y19{bottom:432.854533pt;}
.y119{bottom:433.362956pt;}
.y53{bottom:434.146973pt;}
.ye6{bottom:434.261475pt;}
.y1c4{bottom:434.789594pt;}
.y80{bottom:435.050944pt;}
.yb2{bottom:435.320231pt;}
.y175{bottom:435.320272pt;}
.y14d{bottom:435.322947pt;}
.y205{bottom:436.988261pt;}
.y1c3{bottom:448.117594pt;}
.y27{bottom:449.521200pt;}
.y118{bottom:450.029622pt;}
.y204{bottom:450.316261pt;}
.y52{bottom:450.813639pt;}
.ye5{bottom:450.928141pt;}
.y7f{bottom:451.717611pt;}
.yb1{bottom:451.986898pt;}
.y174{bottom:451.986938pt;}
.y14c{bottom:451.989614pt;}
.y203{bottom:463.644261pt;}
.y18{bottom:466.187866pt;}
.y117{bottom:466.696289pt;}
.y51{bottom:467.480306pt;}
.ye4{bottom:467.594808pt;}
.y7e{bottom:468.384277pt;}
.yb0{bottom:468.653564pt;}
.y173{bottom:468.653605pt;}
.y14b{bottom:468.656281pt;}
.y202{bottom:476.972261pt;}
.y1c2{bottom:478.117594pt;}
.y116{bottom:483.362956pt;}
.y50{bottom:484.146973pt;}
.ye3{bottom:484.261475pt;}
.y7d{bottom:485.050944pt;}
.yaf{bottom:485.320231pt;}
.y172{bottom:485.320272pt;}
.y14a{bottom:485.322947pt;}
.y201{bottom:490.300261pt;}
.y115{bottom:500.029622pt;}
.y4f{bottom:500.813639pt;}
.ye2{bottom:500.928141pt;}
.y7c{bottom:501.717611pt;}
.yae{bottom:501.986898pt;}
.y171{bottom:501.986938pt;}
.y149{bottom:501.989614pt;}
.y200{bottom:503.628261pt;}
.y17{bottom:516.187907pt;}
.y114{bottom:516.696289pt;}
.y1ff{bottom:516.956261pt;}
.y4e{bottom:517.480306pt;}
.ye1{bottom:517.594808pt;}
.y7b{bottom:518.384277pt;}
.yad{bottom:518.653564pt;}
.y170{bottom:518.653605pt;}
.y148{bottom:518.656281pt;}
.y1fe{bottom:530.284261pt;}
.y16{bottom:532.854574pt;}
.y113{bottom:533.362956pt;}
.y4d{bottom:534.146973pt;}
.ye0{bottom:534.261475pt;}
.y7a{bottom:535.050944pt;}
.yac{bottom:535.320231pt;}
.y16f{bottom:535.320272pt;}
.y147{bottom:535.322947pt;}
.y1c1{bottom:540.035620pt;}
.y1fd{bottom:543.612261pt;}
.y112{bottom:550.029622pt;}
.y4c{bottom:550.813639pt;}
.ydf{bottom:550.928141pt;}
.y79{bottom:551.717611pt;}
.yab{bottom:551.986898pt;}
.y16e{bottom:551.986938pt;}
.y146{bottom:551.989614pt;}
.y1c0{bottom:553.363620pt;}
.y1fc{bottom:556.940261pt;}
.y15{bottom:566.187907pt;}
.y1bf{bottom:566.691620pt;}
.y111{bottom:566.696289pt;}
.y4b{bottom:567.480306pt;}
.yde{bottom:567.594808pt;}
.y78{bottom:568.384277pt;}
.yaa{bottom:568.653564pt;}
.y16d{bottom:568.653605pt;}
.y145{bottom:568.656281pt;}
.y1fb{bottom:570.268261pt;}
.y1be{bottom:580.019620pt;}
.y14{bottom:582.854574pt;}
.y110{bottom:583.362956pt;}
.y1fa{bottom:583.596261pt;}
.y4a{bottom:584.146973pt;}
.ydd{bottom:584.261475pt;}
.y77{bottom:585.050944pt;}
.ya9{bottom:585.320231pt;}
.y16c{bottom:585.320272pt;}
.y144{bottom:585.322947pt;}
.y1bd{bottom:593.347620pt;}
.y1f9{bottom:596.924261pt;}
.y13{bottom:599.521240pt;}
.y10f{bottom:600.029622pt;}
.y49{bottom:600.813639pt;}
.ydc{bottom:600.928141pt;}
.y76{bottom:601.717611pt;}
.ya8{bottom:601.986898pt;}
.y16b{bottom:601.986938pt;}
.y143{bottom:601.989614pt;}
.y1bc{bottom:606.675620pt;}
.y1f8{bottom:610.252261pt;}
.y12{bottom:616.187907pt;}
.y10e{bottom:616.696289pt;}
.y48{bottom:617.480306pt;}
.ydb{bottom:617.594808pt;}
.y75{bottom:618.384277pt;}
.ya7{bottom:618.653564pt;}
.y16a{bottom:618.653605pt;}
.y142{bottom:618.656281pt;}
.y1bb{bottom:620.003620pt;}
.y1f7{bottom:623.580261pt;}
.y11{bottom:632.854574pt;}
.y1ba{bottom:633.331620pt;}
.y10d{bottom:633.362956pt;}
.y47{bottom:634.146973pt;}
.yda{bottom:634.261475pt;}
.y74{bottom:635.050944pt;}
.ya6{bottom:635.320231pt;}
.y169{bottom:635.320272pt;}
.y141{bottom:635.322947pt;}
.y1f6{bottom:636.908261pt;}
.y1b9{bottom:646.659620pt;}
.y10{bottom:649.521240pt;}
.y10c{bottom:650.029622pt;}
.y1f5{bottom:650.236261pt;}
.y46{bottom:650.813639pt;}
.yd9{bottom:650.928141pt;}
.y73{bottom:651.717611pt;}
.ya5{bottom:651.986898pt;}
.y168{bottom:651.986938pt;}
.y140{bottom:651.989614pt;}
.y1b8{bottom:659.987620pt;}
.y1f4{bottom:663.564261pt;}
.yf{bottom:666.187907pt;}
.y10b{bottom:666.696289pt;}
.y45{bottom:667.480306pt;}
.yd8{bottom:667.594808pt;}
.y72{bottom:668.384277pt;}
.ya4{bottom:668.653564pt;}
.y167{bottom:668.653605pt;}
.y13f{bottom:668.656281pt;}
.y1b7{bottom:673.315620pt;}
.y1f3{bottom:676.892261pt;}
.ye{bottom:682.854574pt;}
.y10a{bottom:683.362956pt;}
.y44{bottom:684.146973pt;}
.yd7{bottom:684.261475pt;}
.y71{bottom:685.050944pt;}
.ya3{bottom:685.320231pt;}
.y199{bottom:685.320272pt;}
.y13e{bottom:685.322947pt;}
.y1b6{bottom:686.643620pt;}
.y1f2{bottom:690.220261pt;}
.yd{bottom:699.521240pt;}
.y109{bottom:700.029622pt;}
.y43{bottom:700.813639pt;}
.yd6{bottom:700.928141pt;}
.y70{bottom:701.717611pt;}
.y166{bottom:701.981564pt;}
.y165{bottom:701.986898pt;}
.y198{bottom:701.986938pt;}
.y13d{bottom:701.989614pt;}
.y1f1{bottom:703.548261pt;}
.y1b5{bottom:713.310954pt;}
.yc{bottom:716.187907pt;}
.y108{bottom:716.696289pt;}
.y1f0{bottom:716.876261pt;}
.y42{bottom:717.480306pt;}
.yd5{bottom:717.594808pt;}
.y6f{bottom:718.384277pt;}
.y164{bottom:718.653564pt;}
.y197{bottom:718.653605pt;}
.y13c{bottom:718.656281pt;}
.ya2{bottom:718.658898pt;}
.y22e{bottom:730.073620pt;}
.y1ef{bottom:730.204261pt;}
.yb{bottom:732.854574pt;}
.y107{bottom:733.362956pt;}
.y41{bottom:734.146973pt;}
.yd4{bottom:734.261475pt;}
.y6e{bottom:735.050944pt;}
.ya1{bottom:735.320231pt;}
.y196{bottom:735.320272pt;}
.y13b{bottom:735.322947pt;}
.y1b4{bottom:739.977620pt;}
.y22d{bottom:743.401620pt;}
.y1ee{bottom:743.532261pt;}
.ya{bottom:749.521240pt;}
.y106{bottom:750.029622pt;}
.y40{bottom:750.813639pt;}
.yd3{bottom:750.928141pt;}
.y6d{bottom:751.717611pt;}
.y163{bottom:751.986898pt;}
.y195{bottom:751.986938pt;}
.y13a{bottom:751.989614pt;}
.y22c{bottom:756.729620pt;}
.y1ed{bottom:756.860261pt;}
.y9{bottom:766.187907pt;}
.y105{bottom:766.696289pt;}
.y3f{bottom:767.480306pt;}
.yd2{bottom:767.594808pt;}
.y6c{bottom:768.384277pt;}
.y162{bottom:768.653564pt;}
.y194{bottom:768.653605pt;}
.y139{bottom:768.656281pt;}
.y1b3{bottom:770.023620pt;}
.y22b{bottom:770.057620pt;}
.y1ec{bottom:770.188261pt;}
.y1b2{bottom:783.351620pt;}
.y104{bottom:783.362956pt;}
.y22a{bottom:783.385620pt;}
.y1eb{bottom:783.516261pt;}
.y3e{bottom:784.146973pt;}
.yd1{bottom:784.261475pt;}
.y6b{bottom:785.050944pt;}
.ya0{bottom:785.320231pt;}
.y193{bottom:785.320272pt;}
.y138{bottom:785.322947pt;}
.y229{bottom:796.713620pt;}
.y23b{bottom:796.713622pt;}
.y1ea{bottom:796.844261pt;}
.y103{bottom:800.029622pt;}
.y3d{bottom:800.813639pt;}
.yd0{bottom:800.928141pt;}
.y6a{bottom:801.717611pt;}
.y9f{bottom:801.986898pt;}
.y192{bottom:801.986938pt;}
.y137{bottom:801.989614pt;}
.y8{bottom:805.461469pt;}
.y1b1{bottom:810.018954pt;}
.y228{bottom:810.041620pt;}
.y23a{bottom:810.041622pt;}
.y1e9{bottom:810.172261pt;}
.y102{bottom:816.696289pt;}
.y3c{bottom:817.480306pt;}
.ycf{bottom:817.594808pt;}
.y9e{bottom:818.653564pt;}
.y191{bottom:818.653605pt;}
.y136{bottom:818.656281pt;}
.y7{bottom:818.789469pt;}
.y1b0{bottom:823.346954pt;}
.y227{bottom:823.369620pt;}
.y1e8{bottom:823.500261pt;}
.y101{bottom:833.362956pt;}
.y3b{bottom:834.146973pt;}
.yce{bottom:834.261475pt;}
.y69{bottom:835.045611pt;}
.y9d{bottom:835.320231pt;}
.y190{bottom:835.320272pt;}
.y135{bottom:835.322947pt;}
.y1af{bottom:836.674954pt;}
.y226{bottom:836.697620pt;}
.y239{bottom:836.788287pt;}
.y1e7{bottom:836.828261pt;}
.y1ae{bottom:850.002954pt;}
.y225{bottom:850.025620pt;}
.y100{bottom:850.029622pt;}
.y238{bottom:850.116287pt;}
.y1e6{bottom:850.156261pt;}
.y3a{bottom:850.813639pt;}
.ycd{bottom:850.928141pt;}
.y68{bottom:851.717611pt;}
.y9c{bottom:851.986898pt;}
.y18f{bottom:851.986938pt;}
.y134{bottom:851.989614pt;}
.y6{bottom:856.656169pt;}
.y1ad{bottom:863.330954pt;}
.y224{bottom:863.353620pt;}
.y237{bottom:863.444287pt;}
.y1e5{bottom:863.484261pt;}
.yff{bottom:866.696289pt;}
.y39{bottom:867.480306pt;}
.ycc{bottom:867.594808pt;}
.y9b{bottom:868.653564pt;}
.y18e{bottom:868.653605pt;}
.y133{bottom:868.656281pt;}
.y1ac{bottom:876.658954pt;}
.y223{bottom:876.681620pt;}
.y236{bottom:876.772287pt;}
.y1e4{bottom:876.812261pt;}
.yfe{bottom:883.362956pt;}
.y38{bottom:884.146973pt;}
.ycb{bottom:884.261475pt;}
.y9a{bottom:885.320231pt;}
.y18d{bottom:885.320272pt;}
.y132{bottom:885.322947pt;}
.y222{bottom:890.009620pt;}
.y235{bottom:890.100287pt;}
.y1e3{bottom:890.140261pt;}
.y5{bottom:896.377441pt;}
.yfd{bottom:900.029622pt;}
.y37{bottom:900.813639pt;}
.yca{bottom:900.928141pt;}
.y99{bottom:901.986898pt;}
.y18c{bottom:901.986938pt;}
.y131{bottom:901.989614pt;}
.y1ab{bottom:903.326287pt;}
.y221{bottom:903.337620pt;}
.y234{bottom:903.428287pt;}
.y1e2{bottom:903.468261pt;}
.y1aa{bottom:916.654287pt;}
.y220{bottom:916.665620pt;}
.yfc{bottom:916.696289pt;}
.y233{bottom:916.756287pt;}
.y1e1{bottom:916.796261pt;}
.y36{bottom:917.480306pt;}
.yc9{bottom:917.594808pt;}
.y98{bottom:918.653564pt;}
.y18b{bottom:918.653605pt;}
.y130{bottom:918.656281pt;}
.y21f{bottom:929.993620pt;}
.y232{bottom:930.084287pt;}
.y1e0{bottom:930.124261pt;}
.yfb{bottom:933.362956pt;}
.y35{bottom:934.146973pt;}
.yc8{bottom:934.261475pt;}
.y97{bottom:935.320231pt;}
.y18a{bottom:935.320272pt;}
.y12f{bottom:935.322947pt;}
.y1a9{bottom:943.321620pt;}
.y231{bottom:943.412287pt;}
.y1df{bottom:943.452261pt;}
.y34{bottom:950.813639pt;}
.y96{bottom:951.986898pt;}
.y189{bottom:951.986938pt;}
.y12e{bottom:951.989614pt;}
.y4{bottom:956.561849pt;}
.y1a8{bottom:956.649620pt;}
.y230{bottom:956.740287pt;}
.y1de{bottom:956.780261pt;}
.yfa{bottom:966.696289pt;}
.y33{bottom:967.480306pt;}
.yc7{bottom:967.594808pt;}
.y95{bottom:968.653564pt;}
.y188{bottom:968.653605pt;}
.y12d{bottom:968.656281pt;}
.y1a7{bottom:969.977620pt;}
.y22f{bottom:970.068287pt;}
.y1dd{bottom:970.108261pt;}
.y3{bottom:986.299161pt;}
.y2{bottom:1001.406494pt;}
.y32{bottom:1002.206543pt;}
.hd{height:21.832533pt;}
.hc{height:31.189333pt;}
.hb{height:32.760417pt;}
.h4{height:35.973333pt;}
.h8{height:36.693333pt;}
.h2{height:37.376000pt;}
.h3{height:39.712000pt;}
.h10{height:40.165333pt;}
.h11{height:46.376000pt;}
.h9{height:47.253333pt;}
.h6{height:47.840000pt;}
.hf{height:52.448000pt;}
.h7{height:52.746667pt;}
.he{height:54.560000pt;}
.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;}
.x2{left:68.031469pt;}
.x3{left:75.717199pt;}
.x7{left:83.138137pt;}
.x6{left:86.929867pt;}
.xa{left:90.709469pt;}
.x9{left:94.196933pt;}
.x4{left:408.191457pt;}
.x5{left:423.311461pt;}
.x8{left:425.068924pt;}
.xb{left:430.879475pt;}
.x1{left:647.307210pt;}
}




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