
    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_a7d71af46145c36df668c4ae.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_c60f55dfb7e6fcb7e4ba2882.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_f6aa0bd9f58d87b9d09b3184.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.222000;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_8188f666f3120c13b98abe50.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.213000;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_ef2d33ce342d015c7fe50342.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c40dc3b513a49b0e23756324.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a9785fbf0253a6e3bb2acdf3.woff2')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_da43e07acb24e01618bf464c.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_30ee8cc3f15ddbbe8de89cb4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.230000;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_fd3f3f1acffdcdf9868889c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690000;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.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls10{letter-spacing:-1.428000px;}
.ls45{letter-spacing:-0.612000px;}
.ls3a{letter-spacing:-0.420000px;}
.ls42{letter-spacing:-0.360000px;}
.ls75{letter-spacing:-0.357000px;}
.ls43{letter-spacing:-0.300000px;}
.ls3b{letter-spacing:-0.240000px;}
.ls44{letter-spacing:-0.180000px;}
.ls39{letter-spacing:-0.120000px;}
.ls4c{letter-spacing:-0.060000px;}
.ls7a{letter-spacing:-0.051000px;}
.lsf{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.030000px;}
.ls35{letter-spacing:0.060000px;}
.ls53{letter-spacing:0.102000px;}
.ls36{letter-spacing:0.120000px;}
.ls46{letter-spacing:0.126000px;}
.ls79{letter-spacing:0.153000px;}
.lsd{letter-spacing:0.178800px;}
.ls40{letter-spacing:0.180000px;}
.ls4b{letter-spacing:0.210000px;}
.ls1{letter-spacing:0.240000px;}
.lse{letter-spacing:0.255000px;}
.ls50{letter-spacing:0.264000px;}
.ls55{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.300000px;}
.ls4f{letter-spacing:0.357000px;}
.ls1d{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.390000px;}
.ls5c{letter-spacing:0.408000px;}
.lsa{letter-spacing:0.420000px;}
.ls9{letter-spacing:0.420600px;}
.ls51{letter-spacing:0.459000px;}
.ls3{letter-spacing:0.480000px;}
.ls6e{letter-spacing:0.510000px;}
.ls34{letter-spacing:0.539992px;}
.ls6{letter-spacing:0.540000px;}
.ls52{letter-spacing:0.561000px;}
.lsb{letter-spacing:0.575400px;}
.ls41{letter-spacing:0.600000px;}
.ls61{letter-spacing:0.612000px;}
.ls14{letter-spacing:0.619812px;}
.ls32{letter-spacing:0.660000px;}
.ls5d{letter-spacing:0.663000px;}
.ls3d{letter-spacing:0.690000px;}
.ls1b{letter-spacing:0.720000px;}
.ls54{letter-spacing:0.739500px;}
.ls64{letter-spacing:0.765000px;}
.ls2{letter-spacing:0.780000px;}
.ls5b{letter-spacing:0.816000px;}
.ls38{letter-spacing:0.840000px;}
.ls5a{letter-spacing:0.892500px;}
.ls13{letter-spacing:0.900000px;}
.ls5{letter-spacing:0.930000px;}
.ls47{letter-spacing:0.942000px;}
.ls66{letter-spacing:0.943500px;}
.ls37{letter-spacing:0.960000px;}
.ls56{letter-spacing:0.969000px;}
.ls23{letter-spacing:0.972000px;}
.ls3e{letter-spacing:0.990000px;}
.ls11{letter-spacing:1.020000px;}
.ls6d{letter-spacing:1.071000px;}
.ls19{letter-spacing:1.080000px;}
.ls27{letter-spacing:1.109983px;}
.ls73{letter-spacing:1.122000px;}
.ls1a{letter-spacing:1.140000px;}
.ls4d{letter-spacing:1.173000px;}
.ls26{letter-spacing:1.182000px;}
.ls57{letter-spacing:1.198500px;}
.ls3f{letter-spacing:1.200000px;}
.ls5e{letter-spacing:1.224000px;}
.ls2f{letter-spacing:1.260000px;}
.ls78{letter-spacing:1.275000px;}
.ls2d{letter-spacing:1.320000px;}
.ls59{letter-spacing:1.377000px;}
.ls22{letter-spacing:1.380000px;}
.ls17{letter-spacing:1.410000px;}
.ls58{letter-spacing:1.428000px;}
.ls18{letter-spacing:1.440000px;}
.ls62{letter-spacing:1.453500px;}
.ls4e{letter-spacing:1.479000px;}
.ls1f{letter-spacing:1.500000px;}
.ls2a{letter-spacing:1.518000px;}
.ls60{letter-spacing:1.530000px;}
.ls65{letter-spacing:1.555500px;}
.ls2c{letter-spacing:1.560000px;}
.ls70{letter-spacing:1.581000px;}
.ls21{letter-spacing:1.590000px;}
.ls15{letter-spacing:1.620000px;}
.ls6c{letter-spacing:1.632000px;}
.ls49{letter-spacing:1.637993px;}
.ls31{letter-spacing:1.650000px;}
.ls48{letter-spacing:1.680000px;}
.ls3c{letter-spacing:1.710000px;}
.ls72{letter-spacing:1.734000px;}
.ls16{letter-spacing:1.740000px;}
.ls1e{letter-spacing:1.775945px;}
.ls5f{letter-spacing:1.785000px;}
.ls28{letter-spacing:1.800000px;}
.ls1c{letter-spacing:1.835976px;}
.ls63{letter-spacing:1.836000px;}
.ls24{letter-spacing:1.860000px;}
.ls71{letter-spacing:1.887000px;}
.ls7{letter-spacing:1.908000px;}
.ls30{letter-spacing:1.980000px;}
.ls25{letter-spacing:2.040000px;}
.ls33{letter-spacing:2.070000px;}
.ls68{letter-spacing:2.091000px;}
.ls2e{letter-spacing:2.100000px;}
.ls76{letter-spacing:2.142000px;}
.ls67{letter-spacing:2.193000px;}
.ls29{letter-spacing:2.280000px;}
.ls2b{letter-spacing:2.340000px;}
.ls6a{letter-spacing:2.397000px;}
.ls20{letter-spacing:2.460000px;}
.ls6b{letter-spacing:2.550000px;}
.ls77{letter-spacing:2.601000px;}
.ls12{letter-spacing:2.640000px;}
.ls74{letter-spacing:2.652000px;}
.ls6f{letter-spacing:2.805000px;}
.ls69{letter-spacing:2.856000px;}
.ls0{letter-spacing:3.990000px;}
.lsc{letter-spacing:31.110000px;}
.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;}
}
.ws16{word-spacing:-15.900000px;}
.ws3a{word-spacing:-15.300000px;}
.ws60{word-spacing:-14.832000px;}
.ws15{word-spacing:-14.544000px;}
.ws61{word-spacing:-13.719000px;}
.ws6c{word-spacing:-13.005000px;}
.ws6{word-spacing:-12.750000px;}
.ws3b{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws3d{word-spacing:-12.138000px;}
.ws5{word-spacing:-11.520000px;}
.ws8{word-spacing:-11.322000px;}
.ws5f{word-spacing:-10.965000px;}
.ws1{word-spacing:-9.996000px;}
.ws0{word-spacing:-9.408000px;}
.ws7{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws11{word-spacing:-7.500000px;}
.ws4c{word-spacing:-6.375000px;}
.ws27{word-spacing:-2.280000px;}
.ws30{word-spacing:-1.980000px;}
.ws9{word-spacing:-1.890000px;}
.ws1d{word-spacing:-1.560000px;}
.ws12{word-spacing:-1.500000px;}
.ws1e{word-spacing:-1.440000px;}
.ws10{word-spacing:-1.320000px;}
.ws66{word-spacing:-1.275000px;}
.ws23{word-spacing:-1.140000px;}
.ws91{word-spacing:-1.122000px;}
.ws1b{word-spacing:-1.080000px;}
.ws1a{word-spacing:-1.020000px;}
.ws73{word-spacing:-0.969000px;}
.ws3e{word-spacing:-0.900000px;}
.ws33{word-spacing:-0.840000px;}
.ws21{word-spacing:-0.780000px;}
.ws93{word-spacing:-0.765000px;}
.ws22{word-spacing:-0.720000px;}
.ws68{word-spacing:-0.660000px;}
.ws14{word-spacing:-0.612000px;}
.ws2a{word-spacing:-0.600000px;}
.wsb{word-spacing:-0.570000px;}
.ws7a{word-spacing:-0.561000px;}
.ws13{word-spacing:-0.480000px;}
.ws3f{word-spacing:-0.420000px;}
.ws6f{word-spacing:-0.408000px;}
.wse{word-spacing:-0.360000px;}
.ws88{word-spacing:-0.357000px;}
.ws34{word-spacing:-0.300000px;}
.ws81{word-spacing:-0.255000px;}
.ws80{word-spacing:-0.204000px;}
.ws38{word-spacing:-0.120000px;}
.ws8c{word-spacing:-0.051000px;}
.wsa{word-spacing:0.000000px;}
.ws78{word-spacing:0.051000px;}
.ws49{word-spacing:0.120000px;}
.ws39{word-spacing:0.180000px;}
.ws55{word-spacing:0.240000px;}
.ws70{word-spacing:0.408000px;}
.ws6d{word-spacing:0.459000px;}
.ws40{word-spacing:0.480000px;}
.ws53{word-spacing:0.540000px;}
.ws4d{word-spacing:0.720000px;}
.ws92{word-spacing:0.765000px;}
.ws94{word-spacing:0.816000px;}
.ws6b{word-spacing:0.969000px;}
.ws8b{word-spacing:1.020000px;}
.ws54{word-spacing:1.080000px;}
.ws2c{word-spacing:1.140000px;}
.ws26{word-spacing:1.200000px;}
.ws36{word-spacing:1.260000px;}
.ws67{word-spacing:1.275000px;}
.ws95{word-spacing:1.326000px;}
.ws72{word-spacing:1.377000px;}
.wsd{word-spacing:1.500000px;}
.wsc{word-spacing:1.560000px;}
.ws5a{word-spacing:1.620000px;}
.ws18{word-spacing:1.680000px;}
.ws5e{word-spacing:1.683000px;}
.ws6e{word-spacing:1.734000px;}
.ws42{word-spacing:1.740000px;}
.ws71{word-spacing:1.785000px;}
.ws31{word-spacing:1.800000px;}
.ws62{word-spacing:1.860000px;}
.ws46{word-spacing:1.920000px;}
.ws8e{word-spacing:1.938000px;}
.ws64{word-spacing:1.980000px;}
.ws8f{word-spacing:1.989000px;}
.ws28{word-spacing:2.100000px;}
.ws4a{word-spacing:2.142000px;}
.ws37{word-spacing:2.160000px;}
.ws44{word-spacing:2.280000px;}
.ws77{word-spacing:2.295000px;}
.ws19{word-spacing:2.340000px;}
.ws85{word-spacing:2.346000px;}
.wsf{word-spacing:2.400000px;}
.ws41{word-spacing:2.580000px;}
.ws45{word-spacing:2.640000px;}
.ws82{word-spacing:2.652000px;}
.ws1f{word-spacing:2.700000px;}
.ws83{word-spacing:2.703000px;}
.ws25{word-spacing:2.880000px;}
.ws63{word-spacing:3.060000px;}
.ws8d{word-spacing:3.111000px;}
.ws86{word-spacing:3.162000px;}
.ws2f{word-spacing:3.300000px;}
.ws75{word-spacing:3.315000px;}
.ws2e{word-spacing:3.360000px;}
.ws74{word-spacing:3.417000px;}
.ws4e{word-spacing:3.420000px;}
.ws69{word-spacing:3.468000px;}
.ws8a{word-spacing:3.519000px;}
.ws32{word-spacing:3.540000px;}
.ws76{word-spacing:3.570000px;}
.ws2d{word-spacing:3.600000px;}
.ws47{word-spacing:3.660000px;}
.ws20{word-spacing:3.720000px;}
.ws57{word-spacing:3.876000px;}
.ws2b{word-spacing:3.960000px;}
.ws50{word-spacing:4.080000px;}
.ws5b{word-spacing:4.320000px;}
.ws52{word-spacing:4.440000px;}
.ws6a{word-spacing:4.539000px;}
.ws51{word-spacing:4.620000px;}
.ws7c{word-spacing:4.743000px;}
.ws58{word-spacing:4.800000px;}
.ws79{word-spacing:4.845000px;}
.ws29{word-spacing:4.920000px;}
.ws24{word-spacing:5.040000px;}
.ws97{word-spacing:5.151000px;}
.ws7d{word-spacing:5.355000px;}
.ws5c{word-spacing:5.457000px;}
.ws65{word-spacing:5.610000px;}
.ws56{word-spacing:5.640000px;}
.ws1c{word-spacing:5.700000px;}
.ws59{word-spacing:6.060000px;}
.ws4f{word-spacing:6.240000px;}
.ws43{word-spacing:6.300000px;}
.ws7e{word-spacing:6.426000px;}
.ws17{word-spacing:6.660000px;}
.ws48{word-spacing:7.020000px;}
.ws96{word-spacing:7.191000px;}
.ws7f{word-spacing:7.344000px;}
.ws90{word-spacing:7.446000px;}
.ws89{word-spacing:7.752000px;}
.ws35{word-spacing:8.100000px;}
.ws87{word-spacing:8.517000px;}
.ws84{word-spacing:8.670000px;}
.ws7b{word-spacing:8.874000px;}
.ws5d{word-spacing:15.708000px;}
.ws4b{word-spacing:16.218000px;}
.ws3c{word-spacing:276.623989px;}
._46{margin-left:-24.225000px;}
._49{margin-left:-23.154000px;}
._4c{margin-left:-20.247000px;}
._48{margin-left:-17.646000px;}
._9{margin-left:-16.575000px;}
._e{margin-left:-15.120017px;}
._4a{margin-left:-13.668000px;}
._44{margin-left:-11.985000px;}
._6{margin-left:-9.379200px;}
._33{margin-left:-7.320000px;}
._f{margin-left:-6.240000px;}
._1{margin-left:-4.622700px;}
._5{margin-left:-2.820000px;}
._0{margin-left:-1.632000px;}
._2{width:1.603200px;}
._3{width:3.043200px;}
._34{width:4.055778px;}
._8{width:6.090000px;}
._3e{width:7.395000px;}
._7{width:9.555600px;}
._47{width:11.301000px;}
._32{width:12.436800px;}
._10{width:15.513900px;}
._4d{width:18.462000px;}
._43{width:19.506017px;}
._42{width:20.526017px;}
._4b{width:21.726000px;}
._45{width:23.182800px;}
._40{width:24.561000px;}
._4e{width:25.987800px;}
._3f{width:27.846000px;}
._41{width:28.847400px;}
._b{width:36.567000px;}
._4{width:39.483600px;}
._d{width:41.003995px;}
._3c{width:42.840001px;}
._35{width:43.962000px;}
._3d{width:49.776000px;}
._36{width:50.898000px;}
._38{width:53.345993px;}
._a{width:54.621000px;}
._3a{width:71.414988px;}
._11{width:74.255989px;}
._39{width:78.692993px;}
._37{width:84.099020px;}
._3b{width:95.012967px;}
._30{width:103.580980px;}
._2f{width:188.343000px;}
._14{width:191.352000px;}
._2e{width:199.919980px;}
._23{width:201.093000px;}
._31{width:213.843000px;}
._1c{width:216.852000px;}
._15{width:226.593000px;}
._18{width:242.352000px;}
._1e{width:252.093000px;}
._19{width:277.593000px;}
._17{width:291.974980px;}
._21{width:300.353980px;}
._2a{width:303.296980px;}
._22{width:304.979980px;}
._1b{width:306.152980px;}
._1a{width:310.589980px;}
._28{width:311.828980px;}
._2b{width:314.618980px;}
._12{width:324.309000px;}
._1f{width:328.796980px;}
._24{width:330.479980px;}
._27{width:331.652980px;}
._16{width:337.313980px;}
._2d{width:354.245980px;}
._2c{width:357.050980px;}
._1d{width:362.762980px;}
._13{width:382.652980px;}
._20{width:388.211980px;}
._29{width:396.830980px;}
._25{width:461.957980px;}
._26{width:487.457980px;}
._c{width:2345.439070px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:35.700000px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829000px;}
.y29{bottom:112.938300px;}
.y96{bottom:113.415298px;}
.yca{bottom:114.735146px;}
.y124{bottom:114.874786px;}
.y9f{bottom:114.874947px;}
.y67{bottom:129.915344px;}
.y1cc{bottom:131.787446px;}
.y95{bottom:132.165298px;}
.y28{bottom:133.032300px;}
.yc9{bottom:133.485146px;}
.y123{bottom:133.624786px;}
.y9e{bottom:133.624947px;}
.y18b{bottom:140.597721px;}
.y1cb{bottom:146.781446px;}
.y66{bottom:148.665344px;}
.y27{bottom:150.485550px;}
.y94{bottom:150.915298px;}
.yc8{bottom:152.235146px;}
.y122{bottom:152.374786px;}
.y9d{bottom:152.374947px;}
.y18a{bottom:155.591721px;}
.y1ca{bottom:161.775446px;}
.y65{bottom:167.415344px;}
.y93{bottom:169.665298px;}
.y26{bottom:170.579550px;}
.y189{bottom:170.585721px;}
.yc7{bottom:170.985146px;}
.y121{bottom:171.124786px;}
.y9c{bottom:171.124947px;}
.y33{bottom:172.968600px;}
.y1c9{bottom:176.769446px;}
.y188{bottom:185.579721px;}
.y64{bottom:186.165344px;}
.y25{bottom:188.032800px;}
.yc6{bottom:189.735146px;}
.y120{bottom:189.874786px;}
.y9b{bottom:189.874947px;}
.y1c8{bottom:191.763446px;}
.y32{bottom:193.062750px;}
.y187{bottom:200.573721px;}
.y63{bottom:204.915344px;}
.y1c7{bottom:206.757446px;}
.y92{bottom:207.165298px;}
.y24{bottom:208.126800px;}
.y11f{bottom:208.624786px;}
.y9a{bottom:208.624947px;}
.y31{bottom:210.516000px;}
.y186{bottom:215.567721px;}
.y1c6{bottom:221.751446px;}
.y62{bottom:223.665344px;}
.y23{bottom:225.586050px;}
.yc5{bottom:227.235146px;}
.y11e{bottom:227.374786px;}
.y99{bottom:227.374947px;}
.y185{bottom:230.561721px;}
.y30{bottom:230.609850px;}
.y1c5{bottom:236.745446px;}
.y22{bottom:240.580050px;}
.y61{bottom:242.415344px;}
.y91{bottom:244.665298px;}
.y184{bottom:245.555721px;}
.y108{bottom:246.124786px;}
.y98{bottom:246.124947px;}
.y2f{bottom:248.063100px;}
.y1c4{bottom:251.739446px;}
.y183{bottom:260.549721px;}
.y21{bottom:260.674050px;}
.y60{bottom:261.165344px;}
.y90{bottom:263.415298px;}
.yc4{bottom:264.735146px;}
.y107{bottom:264.874786px;}
.y11b{bottom:264.874947px;}
.y1c3{bottom:266.733446px;}
.y2e{bottom:268.157100px;}
.y182{bottom:275.543721px;}
.y20{bottom:278.127300px;}
.y5f{bottom:279.915344px;}
.y1c2{bottom:281.727446px;}
.y8f{bottom:282.165298px;}
.yc3{bottom:283.485146px;}
.y106{bottom:283.624786px;}
.y11a{bottom:283.624947px;}
.y2d{bottom:285.610500px;}
.y181{bottom:290.537721px;}
.y1c1{bottom:296.721446px;}
.y1f{bottom:298.221300px;}
.y5e{bottom:298.665344px;}
.y8e{bottom:300.915298px;}
.yc2{bottom:302.235146px;}
.y105{bottom:302.374786px;}
.y119{bottom:302.374947px;}
.yce{bottom:304.384109px;}
.y180{bottom:305.531721px;}
.y2c{bottom:305.704500px;}
.y1c0{bottom:311.715446px;}
.y5d{bottom:317.415344px;}
.ycd{bottom:319.378109px;}
.y8d{bottom:319.665298px;}
.y17f{bottom:320.525721px;}
.yc1{bottom:320.985146px;}
.y104{bottom:321.124786px;}
.y118{bottom:321.124947px;}
.y2b{bottom:323.157750px;}
.y1e{bottom:323.221800px;}
.y1bf{bottom:326.709446px;}
.ycc{bottom:334.372109px;}
.y17e{bottom:335.519721px;}
.y5c{bottom:336.165344px;}
.y1d{bottom:338.215800px;}
.y8c{bottom:338.415298px;}
.yc0{bottom:339.735146px;}
.y103{bottom:339.874786px;}
.y117{bottom:339.874947px;}
.y1be{bottom:341.703446px;}
.y2a{bottom:343.251750px;}
.y17d{bottom:350.513721px;}
.y5b{bottom:354.915344px;}
.y1bd{bottom:356.697446px;}
.y8b{bottom:357.165298px;}
.ybf{bottom:358.485146px;}
.y102{bottom:358.624786px;}
.y116{bottom:358.624947px;}
.yf4{bottom:363.234774px;}
.y17c{bottom:365.507721px;}
.y1bc{bottom:371.691446px;}
.y5a{bottom:373.665344px;}
.y8a{bottom:375.915298px;}
.ybe{bottom:377.235146px;}
.y101{bottom:377.374786px;}
.y115{bottom:377.374947px;}
.y17b{bottom:380.501721px;}
.yf3{bottom:382.028274px;}
.y1bb{bottom:386.685446px;}
.y59{bottom:392.415344px;}
.y89{bottom:394.665298px;}
.y17a{bottom:395.495721px;}
.y100{bottom:396.124786px;}
.y114{bottom:396.124947px;}
.yf2{bottom:400.745274px;}
.y1ba{bottom:401.679446px;}
.y179{bottom:410.489721px;}
.y58{bottom:411.165344px;}
.y88{bottom:413.415298px;}
.ybd{bottom:414.735168px;}
.yff{bottom:414.874786px;}
.y113{bottom:414.874947px;}
.y1b9{bottom:416.673446px;}
.yf1{bottom:419.462274px;}
.y178{bottom:425.483721px;}
.y57{bottom:429.915344px;}
.y1b8{bottom:431.667446px;}
.y87{bottom:432.165298px;}
.yfe{bottom:433.624786px;}
.y112{bottom:433.624947px;}
.yf0{bottom:438.179274px;}
.y177{bottom:440.477721px;}
.y1b7{bottom:446.661446px;}
.y56{bottom:448.665344px;}
.y86{bottom:450.915298px;}
.ybc{bottom:452.235168px;}
.yfd{bottom:452.374786px;}
.y111{bottom:452.374947px;}
.y176{bottom:455.471721px;}
.yef{bottom:456.896274px;}
.y1b6{bottom:461.655446px;}
.y14c{bottom:465.591787px;}
.y55{bottom:467.415344px;}
.y85{bottom:469.665298px;}
.y175{bottom:470.465721px;}
.ybb{bottom:470.985168px;}
.yfc{bottom:471.124786px;}
.y110{bottom:471.124947px;}
.yee{bottom:475.613274px;}
.y1b5{bottom:476.649446px;}
.y12b{bottom:480.627351px;}
.y14b{bottom:484.844287px;}
.y174{bottom:485.459721px;}
.y54{bottom:486.165344px;}
.y84{bottom:488.415298px;}
.y1c{bottom:489.211350px;}
.yba{bottom:489.735168px;}
.yfb{bottom:489.874786px;}
.y10f{bottom:489.874947px;}
.y1b4{bottom:491.643446px;}
.yed{bottom:494.330274px;}
.y12a{bottom:499.879851px;}
.y173{bottom:500.453721px;}
.y14a{bottom:504.096787px;}
.y53{bottom:504.915344px;}
.y1b3{bottom:506.637446px;}
.y83{bottom:507.165298px;}
.yb9{bottom:508.485168px;}
.yfa{bottom:508.624786px;}
.y10e{bottom:508.624947px;}
.yec{bottom:513.047274px;}
.y172{bottom:515.447721px;}
.y149{bottom:519.090787px;}
.y129{bottom:519.132351px;}
.y1b2{bottom:521.631446px;}
.y52{bottom:523.665344px;}
.y82{bottom:525.915298px;}
.y1b{bottom:526.711350px;}
.yb8{bottom:527.235168px;}
.yf9{bottom:527.374786px;}
.y10d{bottom:527.374947px;}
.y171{bottom:530.441721px;}
.yeb{bottom:531.764274px;}
.y148{bottom:534.084787px;}
.y128{bottom:534.126351px;}
.y1b1{bottom:536.625446px;}
.y51{bottom:542.415344px;}
.y81{bottom:544.665298px;}
.y170{bottom:545.435721px;}
.y1a{bottom:545.461350px;}
.yb7{bottom:545.985168px;}
.yf8{bottom:546.124786px;}
.y10c{bottom:546.124947px;}
.y127{bottom:549.120351px;}
.yea{bottom:550.481274px;}
.y1b0{bottom:551.619446px;}
.y147{bottom:553.337287px;}
.y16f{bottom:560.429721px;}
.y50{bottom:561.165344px;}
.y80{bottom:563.415298px;}
.y19{bottom:564.211350px;}
.yb6{bottom:564.735168px;}
.yf7{bottom:564.874786px;}
.y10b{bottom:564.874947px;}
.y1af{bottom:566.613446px;}
.y146{bottom:568.331287px;}
.y126{bottom:568.372851px;}
.ye9{bottom:569.198274px;}
.y16e{bottom:575.423721px;}
.y4f{bottom:579.915344px;}
.y1ae{bottom:581.607446px;}
.y7f{bottom:582.165298px;}
.y18{bottom:582.961350px;}
.y125{bottom:583.366851px;}
.yb5{bottom:583.485168px;}
.yf6{bottom:583.624786px;}
.y10a{bottom:583.624947px;}
.ye8{bottom:587.915274px;}
.y1ad{bottom:596.601446px;}
.y156{bottom:597.069774px;}
.y4e{bottom:598.665344px;}
.y7e{bottom:600.915298px;}
.y17{bottom:601.711350px;}
.yb4{bottom:602.235168px;}
.yf5{bottom:602.374786px;}
.y109{bottom:602.374947px;}
.ye7{bottom:606.632274px;}
.y16d{bottom:609.173721px;}
.y1ac{bottom:611.595446px;}
.y144{bottom:612.063774px;}
.y4d{bottom:617.415344px;}
.y7d{bottom:619.665298px;}
.y16{bottom:620.461350px;}
.yb3{bottom:620.985168px;}
.ye6{bottom:625.349274px;}
.y1ab{bottom:626.589446px;}
.y143{bottom:627.057774px;}
.y155{bottom:630.857274px;}
.y4c{bottom:636.165344px;}
.y15{bottom:639.211350px;}
.yb2{bottom:639.735168px;}
.y1aa{bottom:641.583446px;}
.ye5{bottom:644.066274px;}
.y142{bottom:645.851274px;}
.y11d{bottom:647.116931px;}
.y4b{bottom:654.915344px;}
.y1a9{bottom:656.577446px;}
.y7c{bottom:657.165298px;}
.y14{bottom:657.961350px;}
.yb1{bottom:658.485168px;}
.y141{bottom:660.845274px;}
.y11c{bottom:662.110931px;}
.ye4{bottom:662.783274px;}
.y154{bottom:664.568274px;}
.y16c{bottom:669.821704px;}
.y1a8{bottom:671.571446px;}
.y4a{bottom:673.665344px;}
.y13{bottom:676.711350px;}
.yb0{bottom:677.235168px;}
.y140{bottom:679.562274px;}
.ye3{bottom:681.500274px;}
.y153{bottom:683.285274px;}
.y16b{bottom:684.815704px;}
.y1a7{bottom:686.565446px;}
.y49{bottom:692.415344px;}
.y7b{bottom:694.665298px;}
.y12{bottom:695.461350px;}
.y13f{bottom:698.279274px;}
.y16a{bottom:699.809704px;}
.ye2{bottom:700.217274px;}
.y1a6{bottom:701.559446px;}
.y48{bottom:711.165344px;}
.y13e{bottom:713.273274px;}
.y11{bottom:714.211350px;}
.yaf{bottom:714.735168px;}
.y169{bottom:714.803704px;}
.y1a5{bottom:716.553446px;}
.y152{bottom:716.996274px;}
.ye1{bottom:718.934274px;}
.y168{bottom:729.797704px;}
.y47{bottom:729.915344px;}
.y1a4{bottom:731.547446px;}
.y13d{bottom:731.990274px;}
.y10{bottom:732.961350px;}
.y151{bottom:735.713274px;}
.ye0{bottom:737.651274px;}
.y167{bottom:744.791704px;}
.y1a3{bottom:746.541446px;}
.y46{bottom:748.665344px;}
.y13c{bottom:750.707274px;}
.y7a{bottom:750.915367px;}
.yf{bottom:751.711350px;}
.yae{bottom:752.235168px;}
.y150{bottom:754.430274px;}
.ydf{bottom:756.368274px;}
.y1a2{bottom:761.535446px;}
.y45{bottom:767.415344px;}
.y13b{bottom:769.424274px;}
.y79{bottom:769.665367px;}
.ye{bottom:770.461350px;}
.y14f{bottom:773.147274px;}
.yde{bottom:775.085274px;}
.y1a1{bottom:776.529446px;}
.y166{bottom:778.502704px;}
.y44{bottom:786.165344px;}
.y13a{bottom:788.141274px;}
.y78{bottom:788.415367px;}
.y1a0{bottom:791.523446px;}
.y165{bottom:793.496704px;}
.ydd{bottom:793.802274px;}
.y139{bottom:803.135274px;}
.y43{bottom:804.915344px;}
.y19f{bottom:806.517446px;}
.y14e{bottom:806.858274px;}
.y77{bottom:807.165367px;}
.yad{bottom:808.485168px;}
.ydc{bottom:812.519274px;}
.yd{bottom:814.644150px;}
.y19e{bottom:821.511446px;}
.y138{bottom:821.852274px;}
.y42{bottom:823.665344px;}
.y14d{bottom:825.575274px;}
.y76{bottom:825.915367px;}
.yac{bottom:827.235168px;}
.y164{bottom:827.246704px;}
.yc{bottom:829.638150px;}
.ydb{bottom:831.236274px;}
.y19d{bottom:836.505446px;}
.y137{bottom:840.569274px;}
.y41{bottom:842.415344px;}
.y75{bottom:844.665367px;}
.yab{bottom:845.985168px;}
.yda{bottom:849.953274px;}
.y19c{bottom:851.499446px;}
.y136{bottom:859.286274px;}
.y40{bottom:861.165344px;}
.y74{bottom:863.415367px;}
.y163{bottom:864.800733px;}
.y19b{bottom:866.493446px;}
.yd9{bottom:868.670274px;}
.yb{bottom:872.238150px;}
.y135{bottom:878.003274px;}
.y162{bottom:879.794733px;}
.y3f{bottom:879.915344px;}
.y19a{bottom:881.487446px;}
.y73{bottom:882.165367px;}
.yaa{bottom:883.485168px;}
.yd8{bottom:887.387274px;}
.ya{bottom:890.988150px;}
.y134{bottom:892.997274px;}
.y161{bottom:894.788733px;}
.y199{bottom:896.481446px;}
.y3e{bottom:898.665344px;}
.y72{bottom:900.915367px;}
.yd7{bottom:906.104274px;}
.y9{bottom:909.738150px;}
.y160{bottom:909.782733px;}
.y198{bottom:911.475446px;}
.y133{bottom:911.714274px;}
.y3d{bottom:917.415344px;}
.y71{bottom:919.665367px;}
.ya9{bottom:920.989906px;}
.y15f{bottom:924.776733px;}
.yd6{bottom:924.821274px;}
.y197{bottom:926.469446px;}
.y132{bottom:930.431274px;}
.y3c{bottom:936.165344px;}
.y70{bottom:938.415367px;}
.ya8{bottom:939.739906px;}
.y196{bottom:941.463446px;}
.yd5{bottom:943.538274px;}
.y131{bottom:945.425274px;}
.y8{bottom:954.424650px;}
.y3b{bottom:954.915344px;}
.y1d6{bottom:956.275544px;}
.y1e0{bottom:956.326544px;}
.y195{bottom:956.457446px;}
.y6f{bottom:957.165367px;}
.y15e{bottom:958.485260px;}
.ya7{bottom:958.489906px;}
.yd4{bottom:962.255274px;}
.y130{bottom:964.142274px;}
.y1d5{bottom:971.269544px;}
.y1df{bottom:971.320544px;}
.y194{bottom:971.451446px;}
.y3a{bottom:973.665344px;}
.y6e{bottom:975.915367px;}
.y15d{bottom:977.235260px;}
.ya6{bottom:977.239906px;}
.y12f{bottom:979.136274px;}
.yd3{bottom:980.972274px;}
.y7{bottom:981.424650px;}
.y1d4{bottom:986.263544px;}
.y1de{bottom:986.314544px;}
.y193{bottom:986.445446px;}
.y39{bottom:992.415344px;}
.y6d{bottom:994.665367px;}
.y15c{bottom:995.985260px;}
.ya5{bottom:995.989906px;}
.y12e{bottom:997.853274px;}
.yd2{bottom:999.689274px;}
.y1d3{bottom:1001.257544px;}
.y1dd{bottom:1001.308544px;}
.y192{bottom:1001.439446px;}
.y6{bottom:1008.424650px;}
.y38{bottom:1011.165344px;}
.y6c{bottom:1013.415367px;}
.y15b{bottom:1014.735260px;}
.ya4{bottom:1014.739906px;}
.y1d2{bottom:1016.251544px;}
.y1dc{bottom:1016.302544px;}
.y191{bottom:1016.433446px;}
.yd1{bottom:1018.406274px;}
.y12d{bottom:1025.202024px;}
.y37{bottom:1029.915344px;}
.y1d1{bottom:1031.245544px;}
.y1db{bottom:1031.296544px;}
.y190{bottom:1031.427446px;}
.y6b{bottom:1032.165367px;}
.y15a{bottom:1033.485260px;}
.ya3{bottom:1033.489906px;}
.yd0{bottom:1045.755024px;}
.y1d0{bottom:1046.239544px;}
.y1da{bottom:1046.290544px;}
.y18f{bottom:1046.421446px;}
.y36{bottom:1048.665344px;}
.y12c{bottom:1049.618274px;}
.y6a{bottom:1050.915367px;}
.y159{bottom:1052.235260px;}
.ya2{bottom:1052.239906px;}
.y1cf{bottom:1061.233544px;}
.y1d9{bottom:1061.284544px;}
.y18e{bottom:1061.415446px;}
.ycf{bottom:1064.612274px;}
.y69{bottom:1069.665367px;}
.y158{bottom:1070.985260px;}
.ya1{bottom:1070.989906px;}
.y5{bottom:1076.132100px;}
.y1ce{bottom:1076.227544px;}
.y1d8{bottom:1076.278544px;}
.y18d{bottom:1076.409446px;}
.y35{bottom:1086.165344px;}
.y68{bottom:1088.415367px;}
.y157{bottom:1089.735260px;}
.ya0{bottom:1089.739906px;}
.y145{bottom:1090.061264px;}
.ycb{bottom:1090.102844px;}
.y1cd{bottom:1091.221544px;}
.y1d7{bottom:1091.272544px;}
.y18c{bottom:1091.403446px;}
.y4{bottom:1109.586600px;}
.y3{bottom:1126.582350px;}
.y34{bottom:1127.482361px;}
.y97{bottom:1127.482544px;}
.he{height:25.204200px;}
.hd{height:36.006000px;}
.hc{height:36.855469px;}
.h2{height:42.048000px;}
.h9{height:42.360000px;}
.h4{height:44.676000px;}
.h13{height:49.113000px;}
.hf{height:50.439000px;}
.h14{height:52.173000px;}
.h11{height:53.652000px;}
.h3{height:54.862258px;}
.h5{height:55.404000px;}
.hb{height:57.780000px;}
.h8{height:59.340000px;}
.ha{height:61.380000px;}
.h12{height:64.680000px;}
.h7{height:64.824000px;}
.h10{height:71.208000px;}
.h6{height:92.448000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x8{left:78.746400px;}
.x4{left:85.181850px;}
.x9{left:93.578092px;}
.x5{left:97.789650px;}
.x12{left:102.048152px;}
.xd{left:184.015045px;}
.xc{left:191.089199px;}
.xe{left:310.566444px;}
.x6{left:459.212550px;}
.x11{left:468.232934px;}
.xa{left:476.273073px;}
.x7{left:480.466800px;}
.x13{left:484.726656px;}
.xf{left:560.486847px;}
.x10{left:693.448929px;}
.x1{left:728.220600px;}
.xb{left:736.002914px;}
.x2{left:755.489850px;}
@media print{
.v2{vertical-align:-18.133333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls10{letter-spacing:-1.269333pt;}
.ls45{letter-spacing:-0.544000pt;}
.ls3a{letter-spacing:-0.373333pt;}
.ls42{letter-spacing:-0.320000pt;}
.ls75{letter-spacing:-0.317333pt;}
.ls43{letter-spacing:-0.266667pt;}
.ls3b{letter-spacing:-0.213333pt;}
.ls44{letter-spacing:-0.160000pt;}
.ls39{letter-spacing:-0.106667pt;}
.ls4c{letter-spacing:-0.053333pt;}
.ls7a{letter-spacing:-0.045333pt;}
.lsf{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.026667pt;}
.ls35{letter-spacing:0.053333pt;}
.ls53{letter-spacing:0.090667pt;}
.ls36{letter-spacing:0.106667pt;}
.ls46{letter-spacing:0.112000pt;}
.ls79{letter-spacing:0.136000pt;}
.lsd{letter-spacing:0.158933pt;}
.ls40{letter-spacing:0.160000pt;}
.ls4b{letter-spacing:0.186667pt;}
.ls1{letter-spacing:0.213333pt;}
.lse{letter-spacing:0.226667pt;}
.ls50{letter-spacing:0.234667pt;}
.ls55{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls4f{letter-spacing:0.317333pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.346667pt;}
.ls5c{letter-spacing:0.362667pt;}
.lsa{letter-spacing:0.373333pt;}
.ls9{letter-spacing:0.373867pt;}
.ls51{letter-spacing:0.408000pt;}
.ls3{letter-spacing:0.426667pt;}
.ls6e{letter-spacing:0.453333pt;}
.ls34{letter-spacing:0.479993pt;}
.ls6{letter-spacing:0.480000pt;}
.ls52{letter-spacing:0.498667pt;}
.lsb{letter-spacing:0.511467pt;}
.ls41{letter-spacing:0.533333pt;}
.ls61{letter-spacing:0.544000pt;}
.ls14{letter-spacing:0.550944pt;}
.ls32{letter-spacing:0.586667pt;}
.ls5d{letter-spacing:0.589333pt;}
.ls3d{letter-spacing:0.613333pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls54{letter-spacing:0.657333pt;}
.ls64{letter-spacing:0.680000pt;}
.ls2{letter-spacing:0.693333pt;}
.ls5b{letter-spacing:0.725333pt;}
.ls38{letter-spacing:0.746667pt;}
.ls5a{letter-spacing:0.793333pt;}
.ls13{letter-spacing:0.800000pt;}
.ls5{letter-spacing:0.826667pt;}
.ls47{letter-spacing:0.837333pt;}
.ls66{letter-spacing:0.838667pt;}
.ls37{letter-spacing:0.853333pt;}
.ls56{letter-spacing:0.861333pt;}
.ls23{letter-spacing:0.864000pt;}
.ls3e{letter-spacing:0.880000pt;}
.ls11{letter-spacing:0.906667pt;}
.ls6d{letter-spacing:0.952000pt;}
.ls19{letter-spacing:0.960000pt;}
.ls27{letter-spacing:0.986651pt;}
.ls73{letter-spacing:0.997333pt;}
.ls1a{letter-spacing:1.013333pt;}
.ls4d{letter-spacing:1.042667pt;}
.ls26{letter-spacing:1.050667pt;}
.ls57{letter-spacing:1.065333pt;}
.ls3f{letter-spacing:1.066667pt;}
.ls5e{letter-spacing:1.088000pt;}
.ls2f{letter-spacing:1.120000pt;}
.ls78{letter-spacing:1.133333pt;}
.ls2d{letter-spacing:1.173333pt;}
.ls59{letter-spacing:1.224000pt;}
.ls22{letter-spacing:1.226667pt;}
.ls17{letter-spacing:1.253333pt;}
.ls58{letter-spacing:1.269333pt;}
.ls18{letter-spacing:1.280000pt;}
.ls62{letter-spacing:1.292000pt;}
.ls4e{letter-spacing:1.314667pt;}
.ls1f{letter-spacing:1.333333pt;}
.ls2a{letter-spacing:1.349333pt;}
.ls60{letter-spacing:1.360000pt;}
.ls65{letter-spacing:1.382667pt;}
.ls2c{letter-spacing:1.386667pt;}
.ls70{letter-spacing:1.405333pt;}
.ls21{letter-spacing:1.413333pt;}
.ls15{letter-spacing:1.440000pt;}
.ls6c{letter-spacing:1.450667pt;}
.ls49{letter-spacing:1.455993pt;}
.ls31{letter-spacing:1.466667pt;}
.ls48{letter-spacing:1.493333pt;}
.ls3c{letter-spacing:1.520000pt;}
.ls72{letter-spacing:1.541333pt;}
.ls16{letter-spacing:1.546667pt;}
.ls1e{letter-spacing:1.578618pt;}
.ls5f{letter-spacing:1.586667pt;}
.ls28{letter-spacing:1.600000pt;}
.ls1c{letter-spacing:1.631979pt;}
.ls63{letter-spacing:1.632000pt;}
.ls24{letter-spacing:1.653333pt;}
.ls71{letter-spacing:1.677333pt;}
.ls7{letter-spacing:1.696000pt;}
.ls30{letter-spacing:1.760000pt;}
.ls25{letter-spacing:1.813333pt;}
.ls33{letter-spacing:1.840000pt;}
.ls68{letter-spacing:1.858667pt;}
.ls2e{letter-spacing:1.866667pt;}
.ls76{letter-spacing:1.904000pt;}
.ls67{letter-spacing:1.949333pt;}
.ls29{letter-spacing:2.026667pt;}
.ls2b{letter-spacing:2.080000pt;}
.ls6a{letter-spacing:2.130667pt;}
.ls20{letter-spacing:2.186667pt;}
.ls6b{letter-spacing:2.266667pt;}
.ls77{letter-spacing:2.312000pt;}
.ls12{letter-spacing:2.346667pt;}
.ls74{letter-spacing:2.357333pt;}
.ls6f{letter-spacing:2.493333pt;}
.ls69{letter-spacing:2.538667pt;}
.ls0{letter-spacing:3.546667pt;}
.lsc{letter-spacing:27.653333pt;}
.ws16{word-spacing:-14.133333pt;}
.ws3a{word-spacing:-13.600000pt;}
.ws60{word-spacing:-13.184000pt;}
.ws15{word-spacing:-12.928000pt;}
.ws61{word-spacing:-12.194667pt;}
.ws6c{word-spacing:-11.560000pt;}
.ws6{word-spacing:-11.333333pt;}
.ws3b{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws3d{word-spacing:-10.789333pt;}
.ws5{word-spacing:-10.240000pt;}
.ws8{word-spacing:-10.064000pt;}
.ws5f{word-spacing:-9.746667pt;}
.ws1{word-spacing:-8.885333pt;}
.ws0{word-spacing:-8.362667pt;}
.ws7{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws11{word-spacing:-6.666667pt;}
.ws4c{word-spacing:-5.666667pt;}
.ws27{word-spacing:-2.026667pt;}
.ws30{word-spacing:-1.760000pt;}
.ws9{word-spacing:-1.680000pt;}
.ws1d{word-spacing:-1.386667pt;}
.ws12{word-spacing:-1.333333pt;}
.ws1e{word-spacing:-1.280000pt;}
.ws10{word-spacing:-1.173333pt;}
.ws66{word-spacing:-1.133333pt;}
.ws23{word-spacing:-1.013333pt;}
.ws91{word-spacing:-0.997333pt;}
.ws1b{word-spacing:-0.960000pt;}
.ws1a{word-spacing:-0.906667pt;}
.ws73{word-spacing:-0.861333pt;}
.ws3e{word-spacing:-0.800000pt;}
.ws33{word-spacing:-0.746667pt;}
.ws21{word-spacing:-0.693333pt;}
.ws93{word-spacing:-0.680000pt;}
.ws22{word-spacing:-0.640000pt;}
.ws68{word-spacing:-0.586667pt;}
.ws14{word-spacing:-0.544000pt;}
.ws2a{word-spacing:-0.533333pt;}
.wsb{word-spacing:-0.506667pt;}
.ws7a{word-spacing:-0.498667pt;}
.ws13{word-spacing:-0.426667pt;}
.ws3f{word-spacing:-0.373333pt;}
.ws6f{word-spacing:-0.362667pt;}
.wse{word-spacing:-0.320000pt;}
.ws88{word-spacing:-0.317333pt;}
.ws34{word-spacing:-0.266667pt;}
.ws81{word-spacing:-0.226667pt;}
.ws80{word-spacing:-0.181333pt;}
.ws38{word-spacing:-0.106667pt;}
.ws8c{word-spacing:-0.045333pt;}
.wsa{word-spacing:0.000000pt;}
.ws78{word-spacing:0.045333pt;}
.ws49{word-spacing:0.106667pt;}
.ws39{word-spacing:0.160000pt;}
.ws55{word-spacing:0.213333pt;}
.ws70{word-spacing:0.362667pt;}
.ws6d{word-spacing:0.408000pt;}
.ws40{word-spacing:0.426667pt;}
.ws53{word-spacing:0.480000pt;}
.ws4d{word-spacing:0.640000pt;}
.ws92{word-spacing:0.680000pt;}
.ws94{word-spacing:0.725333pt;}
.ws6b{word-spacing:0.861333pt;}
.ws8b{word-spacing:0.906667pt;}
.ws54{word-spacing:0.960000pt;}
.ws2c{word-spacing:1.013333pt;}
.ws26{word-spacing:1.066667pt;}
.ws36{word-spacing:1.120000pt;}
.ws67{word-spacing:1.133333pt;}
.ws95{word-spacing:1.178667pt;}
.ws72{word-spacing:1.224000pt;}
.wsd{word-spacing:1.333333pt;}
.wsc{word-spacing:1.386667pt;}
.ws5a{word-spacing:1.440000pt;}
.ws18{word-spacing:1.493333pt;}
.ws5e{word-spacing:1.496000pt;}
.ws6e{word-spacing:1.541333pt;}
.ws42{word-spacing:1.546667pt;}
.ws71{word-spacing:1.586667pt;}
.ws31{word-spacing:1.600000pt;}
.ws62{word-spacing:1.653333pt;}
.ws46{word-spacing:1.706667pt;}
.ws8e{word-spacing:1.722667pt;}
.ws64{word-spacing:1.760000pt;}
.ws8f{word-spacing:1.768000pt;}
.ws28{word-spacing:1.866667pt;}
.ws4a{word-spacing:1.904000pt;}
.ws37{word-spacing:1.920000pt;}
.ws44{word-spacing:2.026667pt;}
.ws77{word-spacing:2.040000pt;}
.ws19{word-spacing:2.080000pt;}
.ws85{word-spacing:2.085333pt;}
.wsf{word-spacing:2.133333pt;}
.ws41{word-spacing:2.293333pt;}
.ws45{word-spacing:2.346667pt;}
.ws82{word-spacing:2.357333pt;}
.ws1f{word-spacing:2.400000pt;}
.ws83{word-spacing:2.402667pt;}
.ws25{word-spacing:2.560000pt;}
.ws63{word-spacing:2.720000pt;}
.ws8d{word-spacing:2.765333pt;}
.ws86{word-spacing:2.810667pt;}
.ws2f{word-spacing:2.933333pt;}
.ws75{word-spacing:2.946667pt;}
.ws2e{word-spacing:2.986667pt;}
.ws74{word-spacing:3.037333pt;}
.ws4e{word-spacing:3.040000pt;}
.ws69{word-spacing:3.082667pt;}
.ws8a{word-spacing:3.128000pt;}
.ws32{word-spacing:3.146667pt;}
.ws76{word-spacing:3.173333pt;}
.ws2d{word-spacing:3.200000pt;}
.ws47{word-spacing:3.253333pt;}
.ws20{word-spacing:3.306667pt;}
.ws57{word-spacing:3.445333pt;}
.ws2b{word-spacing:3.520000pt;}
.ws50{word-spacing:3.626667pt;}
.ws5b{word-spacing:3.840000pt;}
.ws52{word-spacing:3.946667pt;}
.ws6a{word-spacing:4.034667pt;}
.ws51{word-spacing:4.106667pt;}
.ws7c{word-spacing:4.216000pt;}
.ws58{word-spacing:4.266667pt;}
.ws79{word-spacing:4.306667pt;}
.ws29{word-spacing:4.373333pt;}
.ws24{word-spacing:4.480000pt;}
.ws97{word-spacing:4.578667pt;}
.ws7d{word-spacing:4.760000pt;}
.ws5c{word-spacing:4.850667pt;}
.ws65{word-spacing:4.986667pt;}
.ws56{word-spacing:5.013333pt;}
.ws1c{word-spacing:5.066667pt;}
.ws59{word-spacing:5.386667pt;}
.ws4f{word-spacing:5.546667pt;}
.ws43{word-spacing:5.600000pt;}
.ws7e{word-spacing:5.712000pt;}
.ws17{word-spacing:5.920000pt;}
.ws48{word-spacing:6.240000pt;}
.ws96{word-spacing:6.392000pt;}
.ws7f{word-spacing:6.528000pt;}
.ws90{word-spacing:6.618667pt;}
.ws89{word-spacing:6.890667pt;}
.ws35{word-spacing:7.200000pt;}
.ws87{word-spacing:7.570667pt;}
.ws84{word-spacing:7.706667pt;}
.ws7b{word-spacing:7.888000pt;}
.ws5d{word-spacing:13.962667pt;}
.ws4b{word-spacing:14.416000pt;}
.ws3c{word-spacing:245.887990pt;}
._46{margin-left:-21.533333pt;}
._49{margin-left:-20.581333pt;}
._4c{margin-left:-17.997333pt;}
._48{margin-left:-15.685333pt;}
._9{margin-left:-14.733333pt;}
._e{margin-left:-13.440015pt;}
._4a{margin-left:-12.149333pt;}
._44{margin-left:-10.653333pt;}
._6{margin-left:-8.337067pt;}
._33{margin-left:-6.506667pt;}
._f{margin-left:-5.546667pt;}
._1{margin-left:-4.109067pt;}
._5{margin-left:-2.506667pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.425067pt;}
._3{width:2.705067pt;}
._34{width:3.605136pt;}
._8{width:5.413333pt;}
._3e{width:6.573333pt;}
._7{width:8.493867pt;}
._47{width:10.045333pt;}
._32{width:11.054933pt;}
._10{width:13.790133pt;}
._4d{width:16.410667pt;}
._43{width:17.338682pt;}
._42{width:18.245349pt;}
._4b{width:19.312000pt;}
._45{width:20.606933pt;}
._40{width:21.832000pt;}
._4e{width:23.100267pt;}
._3f{width:24.752000pt;}
._41{width:25.642133pt;}
._b{width:32.504000pt;}
._4{width:35.096533pt;}
._d{width:36.447995pt;}
._3c{width:38.080000pt;}
._35{width:39.077333pt;}
._3d{width:44.245333pt;}
._36{width:45.242667pt;}
._38{width:47.418661pt;}
._a{width:48.552000pt;}
._3a{width:63.479989pt;}
._11{width:66.005324pt;}
._39{width:69.949327pt;}
._37{width:74.754684pt;}
._3b{width:84.455970pt;}
._30{width:92.071982pt;}
._2f{width:167.416000pt;}
._14{width:170.090667pt;}
._2e{width:177.706649pt;}
._23{width:178.749333pt;}
._31{width:190.082667pt;}
._1c{width:192.757333pt;}
._15{width:201.416000pt;}
._18{width:215.424000pt;}
._1e{width:224.082667pt;}
._19{width:246.749333pt;}
._17{width:259.533316pt;}
._21{width:266.981316pt;}
._2a{width:269.597316pt;}
._22{width:271.093316pt;}
._1b{width:272.135982pt;}
._1a{width:276.079982pt;}
._28{width:277.181316pt;}
._2b{width:279.661316pt;}
._12{width:288.274667pt;}
._1f{width:292.263982pt;}
._24{width:293.759982pt;}
._27{width:294.802649pt;}
._16{width:299.834649pt;}
._2d{width:314.885316pt;}
._2c{width:317.378649pt;}
._1d{width:322.455982pt;}
._13{width:340.135982pt;}
._20{width:345.077316pt;}
._29{width:352.738649pt;}
._25{width:410.629316pt;}
._26{width:433.295982pt;}
._c{width:2084.834729pt;}
.fs7{font-size:31.733333pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181333pt;}
.y29{bottom:100.389600pt;}
.y96{bottom:100.813599pt;}
.yca{bottom:101.986796pt;}
.y124{bottom:102.110921pt;}
.y9f{bottom:102.111064pt;}
.y67{bottom:115.480306pt;}
.y1cc{bottom:117.144397pt;}
.y95{bottom:117.480265pt;}
.y28{bottom:118.250933pt;}
.yc9{bottom:118.653463pt;}
.y123{bottom:118.777588pt;}
.y9e{bottom:118.777730pt;}
.y18b{bottom:124.975752pt;}
.y1cb{bottom:130.472397pt;}
.y66{bottom:132.146973pt;}
.y27{bottom:133.764933pt;}
.y94{bottom:134.146932pt;}
.yc8{bottom:135.320129pt;}
.y122{bottom:135.444255pt;}
.y9d{bottom:135.444397pt;}
.y18a{bottom:138.303752pt;}
.y1ca{bottom:143.800397pt;}
.y65{bottom:148.813639pt;}
.y93{bottom:150.813599pt;}
.y26{bottom:151.626267pt;}
.y189{bottom:151.631752pt;}
.yc7{bottom:151.986796pt;}
.y121{bottom:152.110921pt;}
.y9c{bottom:152.111064pt;}
.y33{bottom:153.749867pt;}
.y1c9{bottom:157.128397pt;}
.y188{bottom:164.959752pt;}
.y64{bottom:165.480306pt;}
.y25{bottom:167.140267pt;}
.yc6{bottom:168.653463pt;}
.y120{bottom:168.777588pt;}
.y9b{bottom:168.777730pt;}
.y1c8{bottom:170.456397pt;}
.y32{bottom:171.611333pt;}
.y187{bottom:178.287752pt;}
.y63{bottom:182.146973pt;}
.y1c7{bottom:183.784397pt;}
.y92{bottom:184.146932pt;}
.y24{bottom:185.001600pt;}
.y11f{bottom:185.444255pt;}
.y9a{bottom:185.444397pt;}
.y31{bottom:187.125333pt;}
.y186{bottom:191.615752pt;}
.y1c6{bottom:197.112397pt;}
.y62{bottom:198.813639pt;}
.y23{bottom:200.520933pt;}
.yc5{bottom:201.986796pt;}
.y11e{bottom:202.110921pt;}
.y99{bottom:202.111064pt;}
.y185{bottom:204.943752pt;}
.y30{bottom:204.986533pt;}
.y1c5{bottom:210.440397pt;}
.y22{bottom:213.848933pt;}
.y61{bottom:215.480306pt;}
.y91{bottom:217.480265pt;}
.y184{bottom:218.271752pt;}
.y108{bottom:218.777588pt;}
.y98{bottom:218.777730pt;}
.y2f{bottom:220.500533pt;}
.y1c4{bottom:223.768397pt;}
.y183{bottom:231.599752pt;}
.y21{bottom:231.710267pt;}
.y60{bottom:232.146973pt;}
.y90{bottom:234.146932pt;}
.yc4{bottom:235.320129pt;}
.y107{bottom:235.444255pt;}
.y11b{bottom:235.444397pt;}
.y1c3{bottom:237.096397pt;}
.y2e{bottom:238.361867pt;}
.y182{bottom:244.927752pt;}
.y20{bottom:247.224267pt;}
.y5f{bottom:248.813639pt;}
.y1c2{bottom:250.424397pt;}
.y8f{bottom:250.813599pt;}
.yc3{bottom:251.986796pt;}
.y106{bottom:252.110921pt;}
.y11a{bottom:252.111064pt;}
.y2d{bottom:253.876000pt;}
.y181{bottom:258.255752pt;}
.y1c1{bottom:263.752397pt;}
.y1f{bottom:265.085600pt;}
.y5e{bottom:265.480306pt;}
.y8e{bottom:267.480265pt;}
.yc2{bottom:268.653463pt;}
.y105{bottom:268.777588pt;}
.y119{bottom:268.777730pt;}
.yce{bottom:270.563653pt;}
.y180{bottom:271.583752pt;}
.y2c{bottom:271.737333pt;}
.y1c0{bottom:277.080397pt;}
.y5d{bottom:282.146973pt;}
.ycd{bottom:283.891653pt;}
.y8d{bottom:284.146932pt;}
.y17f{bottom:284.911752pt;}
.yc1{bottom:285.320129pt;}
.y104{bottom:285.444255pt;}
.y118{bottom:285.444397pt;}
.y2b{bottom:287.251333pt;}
.y1e{bottom:287.308267pt;}
.y1bf{bottom:290.408397pt;}
.ycc{bottom:297.219653pt;}
.y17e{bottom:298.239752pt;}
.y5c{bottom:298.813639pt;}
.y1d{bottom:300.636267pt;}
.y8c{bottom:300.813599pt;}
.yc0{bottom:301.986796pt;}
.y103{bottom:302.110921pt;}
.y117{bottom:302.111064pt;}
.y1be{bottom:303.736397pt;}
.y2a{bottom:305.112667pt;}
.y17d{bottom:311.567752pt;}
.y5b{bottom:315.480306pt;}
.y1bd{bottom:317.064397pt;}
.y8b{bottom:317.480265pt;}
.ybf{bottom:318.653463pt;}
.y102{bottom:318.777588pt;}
.y116{bottom:318.777730pt;}
.yf4{bottom:322.875355pt;}
.y17c{bottom:324.895752pt;}
.y1bc{bottom:330.392397pt;}
.y5a{bottom:332.146973pt;}
.y8a{bottom:334.146932pt;}
.ybe{bottom:335.320129pt;}
.y101{bottom:335.444255pt;}
.y115{bottom:335.444397pt;}
.y17b{bottom:338.223752pt;}
.yf3{bottom:339.580688pt;}
.y1bb{bottom:343.720397pt;}
.y59{bottom:348.813639pt;}
.y89{bottom:350.813599pt;}
.y17a{bottom:351.551752pt;}
.y100{bottom:352.110921pt;}
.y114{bottom:352.111064pt;}
.yf2{bottom:356.218021pt;}
.y1ba{bottom:357.048397pt;}
.y179{bottom:364.879752pt;}
.y58{bottom:365.480306pt;}
.y88{bottom:367.480265pt;}
.ybd{bottom:368.653483pt;}
.yff{bottom:368.777588pt;}
.y113{bottom:368.777730pt;}
.y1b9{bottom:370.376397pt;}
.yf1{bottom:372.855355pt;}
.y178{bottom:378.207752pt;}
.y57{bottom:382.146973pt;}
.y1b8{bottom:383.704397pt;}
.y87{bottom:384.146932pt;}
.yfe{bottom:385.444255pt;}
.y112{bottom:385.444397pt;}
.yf0{bottom:389.492688pt;}
.y177{bottom:391.535752pt;}
.y1b7{bottom:397.032397pt;}
.y56{bottom:398.813639pt;}
.y86{bottom:400.813599pt;}
.ybc{bottom:401.986816pt;}
.yfd{bottom:402.110921pt;}
.y111{bottom:402.111064pt;}
.y176{bottom:404.863752pt;}
.yef{bottom:406.130021pt;}
.y1b6{bottom:410.360397pt;}
.y14c{bottom:413.859366pt;}
.y55{bottom:415.480306pt;}
.y85{bottom:417.480265pt;}
.y175{bottom:418.191752pt;}
.ybb{bottom:418.653483pt;}
.yfc{bottom:418.777588pt;}
.y110{bottom:418.777730pt;}
.yee{bottom:422.767355pt;}
.y1b5{bottom:423.688397pt;}
.y12b{bottom:427.224312pt;}
.y14b{bottom:430.972700pt;}
.y174{bottom:431.519752pt;}
.y54{bottom:432.146973pt;}
.y84{bottom:434.146932pt;}
.y1c{bottom:434.854533pt;}
.yba{bottom:435.320150pt;}
.yfb{bottom:435.444255pt;}
.y10f{bottom:435.444397pt;}
.y1b4{bottom:437.016397pt;}
.yed{bottom:439.404688pt;}
.y12a{bottom:444.337645pt;}
.y173{bottom:444.847752pt;}
.y14a{bottom:448.086033pt;}
.y53{bottom:448.813639pt;}
.y1b3{bottom:450.344397pt;}
.y83{bottom:450.813599pt;}
.yb9{bottom:451.986816pt;}
.yfa{bottom:452.110921pt;}
.y10e{bottom:452.111064pt;}
.yec{bottom:456.042021pt;}
.y172{bottom:458.175752pt;}
.y149{bottom:461.414033pt;}
.y129{bottom:461.450979pt;}
.y1b2{bottom:463.672397pt;}
.y52{bottom:465.480306pt;}
.y82{bottom:467.480265pt;}
.y1b{bottom:468.187867pt;}
.yb8{bottom:468.653483pt;}
.yf9{bottom:468.777588pt;}
.y10d{bottom:468.777730pt;}
.y171{bottom:471.503752pt;}
.yeb{bottom:472.679355pt;}
.y148{bottom:474.742033pt;}
.y128{bottom:474.778979pt;}
.y1b1{bottom:477.000397pt;}
.y51{bottom:482.146973pt;}
.y81{bottom:484.146932pt;}
.y170{bottom:484.831752pt;}
.y1a{bottom:484.854533pt;}
.yb7{bottom:485.320150pt;}
.yf8{bottom:485.444255pt;}
.y10c{bottom:485.444397pt;}
.y127{bottom:488.106979pt;}
.yea{bottom:489.316688pt;}
.y1b0{bottom:490.328397pt;}
.y147{bottom:491.855366pt;}
.y16f{bottom:498.159752pt;}
.y50{bottom:498.813639pt;}
.y80{bottom:500.813599pt;}
.y19{bottom:501.521200pt;}
.yb6{bottom:501.986816pt;}
.yf7{bottom:502.110921pt;}
.y10b{bottom:502.111064pt;}
.y1af{bottom:503.656397pt;}
.y146{bottom:505.183366pt;}
.y126{bottom:505.220312pt;}
.ye9{bottom:505.954021pt;}
.y16e{bottom:511.487752pt;}
.y4f{bottom:515.480306pt;}
.y1ae{bottom:516.984397pt;}
.y7f{bottom:517.480265pt;}
.y18{bottom:518.187867pt;}
.y125{bottom:518.548312pt;}
.yb5{bottom:518.653483pt;}
.yf6{bottom:518.777588pt;}
.y10a{bottom:518.777730pt;}
.ye8{bottom:522.591355pt;}
.y1ad{bottom:530.312397pt;}
.y156{bottom:530.728688pt;}
.y4e{bottom:532.146973pt;}
.y7e{bottom:534.146932pt;}
.y17{bottom:534.854533pt;}
.yb4{bottom:535.320150pt;}
.yf5{bottom:535.444255pt;}
.y109{bottom:535.444397pt;}
.ye7{bottom:539.228688pt;}
.y16d{bottom:541.487752pt;}
.y1ac{bottom:543.640397pt;}
.y144{bottom:544.056688pt;}
.y4d{bottom:548.813639pt;}
.y7d{bottom:550.813599pt;}
.y16{bottom:551.521200pt;}
.yb3{bottom:551.986816pt;}
.ye6{bottom:555.866021pt;}
.y1ab{bottom:556.968397pt;}
.y143{bottom:557.384688pt;}
.y155{bottom:560.762021pt;}
.y4c{bottom:565.480306pt;}
.y15{bottom:568.187867pt;}
.yb2{bottom:568.653483pt;}
.y1aa{bottom:570.296397pt;}
.ye5{bottom:572.503355pt;}
.y142{bottom:574.090021pt;}
.y11d{bottom:575.215050pt;}
.y4b{bottom:582.146973pt;}
.y1a9{bottom:583.624397pt;}
.y7c{bottom:584.146932pt;}
.y14{bottom:584.854533pt;}
.yb1{bottom:585.320150pt;}
.y141{bottom:587.418021pt;}
.y11c{bottom:588.543050pt;}
.ye4{bottom:589.140688pt;}
.y154{bottom:590.727355pt;}
.y16c{bottom:595.397070pt;}
.y1a8{bottom:596.952397pt;}
.y4a{bottom:598.813639pt;}
.y13{bottom:601.521200pt;}
.yb0{bottom:601.986816pt;}
.y140{bottom:604.055355pt;}
.ye3{bottom:605.778021pt;}
.y153{bottom:607.364688pt;}
.y16b{bottom:608.725070pt;}
.y1a7{bottom:610.280397pt;}
.y49{bottom:615.480306pt;}
.y7b{bottom:617.480265pt;}
.y12{bottom:618.187867pt;}
.y13f{bottom:620.692688pt;}
.y16a{bottom:622.053070pt;}
.ye2{bottom:622.415355pt;}
.y1a6{bottom:623.608397pt;}
.y48{bottom:632.146973pt;}
.y13e{bottom:634.020688pt;}
.y11{bottom:634.854533pt;}
.yaf{bottom:635.320150pt;}
.y169{bottom:635.381070pt;}
.y1a5{bottom:636.936397pt;}
.y152{bottom:637.330021pt;}
.ye1{bottom:639.052688pt;}
.y168{bottom:648.709070pt;}
.y47{bottom:648.813639pt;}
.y1a4{bottom:650.264397pt;}
.y13d{bottom:650.658021pt;}
.y10{bottom:651.521200pt;}
.y151{bottom:653.967355pt;}
.ye0{bottom:655.690021pt;}
.y167{bottom:662.037070pt;}
.y1a3{bottom:663.592397pt;}
.y46{bottom:665.480306pt;}
.y13c{bottom:667.295355pt;}
.y7a{bottom:667.480326pt;}
.yf{bottom:668.187867pt;}
.yae{bottom:668.653483pt;}
.y150{bottom:670.604688pt;}
.ydf{bottom:672.327355pt;}
.y1a2{bottom:676.920397pt;}
.y45{bottom:682.146973pt;}
.y13b{bottom:683.932688pt;}
.y79{bottom:684.146993pt;}
.ye{bottom:684.854533pt;}
.y14f{bottom:687.242021pt;}
.yde{bottom:688.964688pt;}
.y1a1{bottom:690.248397pt;}
.y166{bottom:692.002404pt;}
.y44{bottom:698.813639pt;}
.y13a{bottom:700.570021pt;}
.y78{bottom:700.813660pt;}
.y1a0{bottom:703.576397pt;}
.y165{bottom:705.330404pt;}
.ydd{bottom:705.602021pt;}
.y139{bottom:713.898021pt;}
.y43{bottom:715.480306pt;}
.y19f{bottom:716.904397pt;}
.y14e{bottom:717.207355pt;}
.y77{bottom:717.480326pt;}
.yad{bottom:718.653483pt;}
.ydc{bottom:722.239355pt;}
.yd{bottom:724.128133pt;}
.y19e{bottom:730.232397pt;}
.y138{bottom:730.535355pt;}
.y42{bottom:732.146973pt;}
.y14d{bottom:733.844688pt;}
.y76{bottom:734.146993pt;}
.yac{bottom:735.320150pt;}
.y164{bottom:735.330404pt;}
.yc{bottom:737.456133pt;}
.ydb{bottom:738.876688pt;}
.y19d{bottom:743.560397pt;}
.y137{bottom:747.172688pt;}
.y41{bottom:748.813639pt;}
.y75{bottom:750.813660pt;}
.yab{bottom:751.986816pt;}
.yda{bottom:755.514021pt;}
.y19c{bottom:756.888397pt;}
.y136{bottom:763.810021pt;}
.y40{bottom:765.480306pt;}
.y74{bottom:767.480326pt;}
.y163{bottom:768.711763pt;}
.y19b{bottom:770.216397pt;}
.yd9{bottom:772.151355pt;}
.yb{bottom:775.322800pt;}
.y135{bottom:780.447355pt;}
.y162{bottom:782.039763pt;}
.y3f{bottom:782.146973pt;}
.y19a{bottom:783.544397pt;}
.y73{bottom:784.146993pt;}
.yaa{bottom:785.320150pt;}
.yd8{bottom:788.788688pt;}
.ya{bottom:791.989467pt;}
.y134{bottom:793.775355pt;}
.y161{bottom:795.367763pt;}
.y199{bottom:796.872397pt;}
.y3e{bottom:798.813639pt;}
.y72{bottom:800.813660pt;}
.yd7{bottom:805.426021pt;}
.y9{bottom:808.656133pt;}
.y160{bottom:808.695763pt;}
.y198{bottom:810.200397pt;}
.y133{bottom:810.412688pt;}
.y3d{bottom:815.480306pt;}
.y71{bottom:817.480326pt;}
.ya9{bottom:818.657694pt;}
.y15f{bottom:822.023763pt;}
.yd6{bottom:822.063355pt;}
.y197{bottom:823.528397pt;}
.y132{bottom:827.050021pt;}
.y3c{bottom:832.146973pt;}
.y70{bottom:834.146993pt;}
.ya8{bottom:835.324361pt;}
.y196{bottom:836.856397pt;}
.yd5{bottom:838.700688pt;}
.y131{bottom:840.378021pt;}
.y8{bottom:848.377467pt;}
.y3b{bottom:848.813639pt;}
.y1d6{bottom:850.022706pt;}
.y1e0{bottom:850.068039pt;}
.y195{bottom:850.184397pt;}
.y6f{bottom:850.813660pt;}
.y15e{bottom:851.986898pt;}
.ya7{bottom:851.991028pt;}
.yd4{bottom:855.338021pt;}
.y130{bottom:857.015355pt;}
.y1d5{bottom:863.350706pt;}
.y1df{bottom:863.396039pt;}
.y194{bottom:863.512397pt;}
.y3a{bottom:865.480306pt;}
.y6e{bottom:867.480326pt;}
.y15d{bottom:868.653564pt;}
.ya6{bottom:868.657694pt;}
.y12f{bottom:870.343355pt;}
.yd3{bottom:871.975355pt;}
.y7{bottom:872.377467pt;}
.y1d4{bottom:876.678706pt;}
.y1de{bottom:876.724039pt;}
.y193{bottom:876.840397pt;}
.y39{bottom:882.146973pt;}
.y6d{bottom:884.146993pt;}
.y15c{bottom:885.320231pt;}
.ya5{bottom:885.324361pt;}
.y12e{bottom:886.980688pt;}
.yd2{bottom:888.612688pt;}
.y1d3{bottom:890.006706pt;}
.y1dd{bottom:890.052039pt;}
.y192{bottom:890.168397pt;}
.y6{bottom:896.377467pt;}
.y38{bottom:898.813639pt;}
.y6c{bottom:900.813660pt;}
.y15b{bottom:901.986898pt;}
.ya4{bottom:901.991028pt;}
.y1d2{bottom:903.334706pt;}
.y1dc{bottom:903.380039pt;}
.y191{bottom:903.496397pt;}
.yd1{bottom:905.250021pt;}
.y12d{bottom:911.290688pt;}
.y37{bottom:915.480306pt;}
.y1d1{bottom:916.662706pt;}
.y1db{bottom:916.708039pt;}
.y190{bottom:916.824397pt;}
.y6b{bottom:917.480326pt;}
.y15a{bottom:918.653564pt;}
.ya3{bottom:918.657694pt;}
.yd0{bottom:929.560021pt;}
.y1d0{bottom:929.990706pt;}
.y1da{bottom:930.036039pt;}
.y18f{bottom:930.152397pt;}
.y36{bottom:932.146973pt;}
.y12c{bottom:932.994021pt;}
.y6a{bottom:934.146993pt;}
.y159{bottom:935.320231pt;}
.ya2{bottom:935.324361pt;}
.y1cf{bottom:943.318706pt;}
.y1d9{bottom:943.364039pt;}
.y18e{bottom:943.480397pt;}
.ycf{bottom:946.322021pt;}
.y69{bottom:950.813660pt;}
.y158{bottom:951.986898pt;}
.ya1{bottom:951.991028pt;}
.y5{bottom:956.561867pt;}
.y1ce{bottom:956.646706pt;}
.y1d8{bottom:956.692039pt;}
.y18d{bottom:956.808397pt;}
.y35{bottom:965.480306pt;}
.y68{bottom:967.480326pt;}
.y157{bottom:968.653564pt;}
.ya0{bottom:968.657694pt;}
.y145{bottom:968.943345pt;}
.ycb{bottom:968.980306pt;}
.y1cd{bottom:969.974706pt;}
.y1d7{bottom:970.020039pt;}
.y18c{bottom:970.136397pt;}
.y4{bottom:986.299200pt;}
.y3{bottom:1001.406533pt;}
.y34{bottom:1002.206543pt;}
.y97{bottom:1002.206706pt;}
.he{height:22.403733pt;}
.hd{height:32.005333pt;}
.hc{height:32.760417pt;}
.h2{height:37.376000pt;}
.h9{height:37.653333pt;}
.h4{height:39.712000pt;}
.h13{height:43.656000pt;}
.hf{height:44.834667pt;}
.h14{height:46.376000pt;}
.h11{height:47.690667pt;}
.h3{height:48.766452pt;}
.h5{height:49.248000pt;}
.hb{height:51.360000pt;}
.h8{height:52.746667pt;}
.ha{height:54.560000pt;}
.h12{height:57.493333pt;}
.h7{height:57.621333pt;}
.h10{height:63.296000pt;}
.h6{height:82.176000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x8{left:69.996800pt;}
.x4{left:75.717200pt;}
.x9{left:83.180527pt;}
.x5{left:86.924133pt;}
.x12{left:90.709469pt;}
.xd{left:163.568929pt;}
.xc{left:169.857066pt;}
.xe{left:276.059062pt;}
.x6{left:408.188933pt;}
.x11{left:416.207053pt;}
.xa{left:423.353843pt;}
.x7{left:427.081600pt;}
.x13{left:430.868138pt;}
.xf{left:498.210531pt;}
.x10{left:616.399048pt;}
.x1{left:647.307200pt;}
.xb{left:654.224813pt;}
.x2{left:671.546533pt;}
}




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