
    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_6080dd1aa66621d66ed514fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_5c6dc56664803be2f5599015.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_f64c2271d066a549f8125787.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_06e9248aa30c51c2bd75da11.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_bb658952f69516310e809dcc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_87b558b82ee595f8c7087a29.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.109000;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_4e02ca8a0f26c43c356f4160.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.907000;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_50854a8f3b1cd3545a568675.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918000;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_6e94a8491e7f63aabbbe6901.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936000;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_2fc906f397d7754bf872637e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.109000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b574bc6e74b43287a4fc7a35.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2fc906f397d7754bf872637e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.109000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2fc906f397d7754bf872637e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.109000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2fc906f397d7754bf872637e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.109000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2fc906f397d7754bf872637e.woff2')format("woff");}.fff{font-family:fff;line-height:1.109000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2fc906f397d7754bf872637e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.109000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:11.723997px;}
.v4{vertical-align:15.840000px;}
.v2{vertical-align:19.800000px;}
.ls3{letter-spacing:-1.310400px;}
.ls4{letter-spacing:-0.561600px;}
.ls7{letter-spacing:-0.480000px;}
.ls5{letter-spacing:-0.300000px;}
.ls2{letter-spacing:-0.240000px;}
.ls1{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.240000px;}
.ls8{letter-spacing:0.300000px;}
.lsa{letter-spacing:0.960000px;}
.ls6{letter-spacing:191.872944px;}
.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;}
}
.ws9b{word-spacing:-201.107826px;}
.ws1{word-spacing:-27.972000px;}
.ws4{word-spacing:-16.680000px;}
.ws0{word-spacing:-13.986000px;}
.ws73{word-spacing:-10.008000px;}
.ws3{word-spacing:-9.828000px;}
.ws3a{word-spacing:-8.673600px;}
.ws3b{word-spacing:-7.363200px;}
.wsb{word-spacing:-4.380000px;}
.wsd2{word-spacing:-3.420000px;}
.wse{word-spacing:-3.000000px;}
.ws28{word-spacing:-2.880000px;}
.ws6a{word-spacing:-2.700000px;}
.ws62{word-spacing:-2.580000px;}
.ws6e{word-spacing:-2.448000px;}
.wse8{word-spacing:-2.400000px;}
.ws2e{word-spacing:-2.340000px;}
.ws39{word-spacing:-2.308800px;}
.wsb8{word-spacing:-2.280000px;}
.wsfd{word-spacing:-2.256000px;}
.ws56{word-spacing:-2.220000px;}
.ws120{word-spacing:-2.112000px;}
.wsf{word-spacing:-2.100000px;}
.wsf6{word-spacing:-2.064000px;}
.wsdd{word-spacing:-2.040000px;}
.wsfb{word-spacing:-2.016000px;}
.ws77{word-spacing:-1.920000px;}
.ws11c{word-spacing:-1.872000px;}
.ws2a{word-spacing:-1.860000px;}
.ws30{word-spacing:-1.800000px;}
.ws61{word-spacing:-1.740000px;}
.ws14{word-spacing:-1.680000px;}
.ws104{word-spacing:-1.632000px;}
.ws71{word-spacing:-1.584000px;}
.ws7f{word-spacing:-1.560000px;}
.wsfe{word-spacing:-1.536000px;}
.ws118{word-spacing:-1.488000px;}
.ws9e{word-spacing:-1.440000px;}
.wsa2{word-spacing:-1.344000px;}
.ws69{word-spacing:-1.320000px;}
.ws17{word-spacing:-1.260000px;}
.ws58{word-spacing:-1.140000px;}
.wsf0{word-spacing:-1.104000px;}
.ws1f{word-spacing:-1.080000px;}
.wsf2{word-spacing:-1.056000px;}
.wsc9{word-spacing:-1.020000px;}
.wsdb{word-spacing:-0.960000px;}
.wsf7{word-spacing:-0.912000px;}
.wse0{word-spacing:-0.900000px;}
.ws11d{word-spacing:-0.816000px;}
.ws63{word-spacing:-0.780000px;}
.ws96{word-spacing:-0.720000px;}
.wsf9{word-spacing:-0.672000px;}
.wscd{word-spacing:-0.660000px;}
.ws99{word-spacing:-0.540000px;}
.ws6c{word-spacing:-0.480000px;}
.ws10c{word-spacing:-0.432000px;}
.ws52{word-spacing:-0.360000px;}
.wsfa{word-spacing:-0.336000px;}
.wsd1{word-spacing:-0.300000px;}
.ws6d{word-spacing:-0.240000px;}
.wsbd{word-spacing:-0.180000px;}
.ws125{word-spacing:-0.144000px;}
.ws4d{word-spacing:-0.120000px;}
.ws8{word-spacing:-0.096000px;}
.ws23{word-spacing:-0.060000px;}
.ws7{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.wsed{word-spacing:0.048000px;}
.ws46{word-spacing:0.120000px;}
.ws5{word-spacing:0.180000px;}
.wsaa{word-spacing:0.192000px;}
.ws6{word-spacing:0.240000px;}
.ws9a{word-spacing:0.300000px;}
.ws29{word-spacing:0.420000px;}
.wsd{word-spacing:0.480000px;}
.ws50{word-spacing:0.540000px;}
.ws72{word-spacing:0.561600px;}
.ws2f{word-spacing:0.600000px;}
.wsa7{word-spacing:0.672000px;}
.wse6{word-spacing:0.720000px;}
.wsb5{word-spacing:0.780000px;}
.ws102{word-spacing:0.816000px;}
.wse2{word-spacing:0.840000px;}
.wsba{word-spacing:0.900000px;}
.ws16{word-spacing:0.960000px;}
.wsc7{word-spacing:1.020000px;}
.wsc6{word-spacing:1.080000px;}
.ws6b{word-spacing:1.380000px;}
.wsf4{word-spacing:1.488000px;}
.wsea{word-spacing:1.536000px;}
.ws3d{word-spacing:1.560000px;}
.ws107{word-spacing:1.584000px;}
.ws5a{word-spacing:1.680000px;}
.ws111{word-spacing:1.728000px;}
.wsbf{word-spacing:1.740000px;}
.ws126{word-spacing:1.776000px;}
.wsc8{word-spacing:1.800000px;}
.ws119{word-spacing:1.824000px;}
.ws24{word-spacing:1.860000px;}
.wsec{word-spacing:1.872000px;}
.ws105{word-spacing:1.920000px;}
.ws95{word-spacing:1.980000px;}
.wsbe{word-spacing:2.040000px;}
.ws49{word-spacing:2.160000px;}
.wsee{word-spacing:2.208000px;}
.wsd0{word-spacing:2.220000px;}
.ws94{word-spacing:2.280000px;}
.ws79{word-spacing:2.340000px;}
.wsca{word-spacing:2.400000px;}
.ws11{word-spacing:2.460000px;}
.ws55{word-spacing:2.520000px;}
.ws33{word-spacing:2.580000px;}
.ws124{word-spacing:2.640000px;}
.ws7e{word-spacing:2.700000px;}
.wse7{word-spacing:2.736000px;}
.wscb{word-spacing:2.760000px;}
.ws116{word-spacing:2.784000px;}
.wsb1{word-spacing:2.820000px;}
.ws8f{word-spacing:2.832000px;}
.wsb0{word-spacing:2.880000px;}
.wsa8{word-spacing:2.928000px;}
.ws10{word-spacing:2.940000px;}
.ws8b{word-spacing:2.976000px;}
.wsb4{word-spacing:3.000000px;}
.ws109{word-spacing:3.024000px;}
.ws57{word-spacing:3.240000px;}
.ws10b{word-spacing:3.264000px;}
.ws48{word-spacing:3.300000px;}
.wsd3{word-spacing:3.360000px;}
.wsd5{word-spacing:3.420000px;}
.ws4b{word-spacing:3.480000px;}
.wsd6{word-spacing:3.540000px;}
.wsc{word-spacing:3.600000px;}
.ws106{word-spacing:3.648000px;}
.ws7a{word-spacing:3.660000px;}
.ws31{word-spacing:3.720000px;}
.wsef{word-spacing:3.792000px;}
.wseb{word-spacing:3.888000px;}
.ws26{word-spacing:3.900000px;}
.ws65{word-spacing:3.960000px;}
.ws11b{word-spacing:3.984000px;}
.ws1a{word-spacing:4.020000px;}
.wscc{word-spacing:4.080000px;}
.wsf3{word-spacing:4.128000px;}
.wsaf{word-spacing:4.140000px;}
.ws20{word-spacing:4.200000px;}
.ws3c{word-spacing:4.260000px;}
.ws11e{word-spacing:4.272000px;}
.ws22{word-spacing:4.320000px;}
.wsd8{word-spacing:4.440000px;}
.wsb9{word-spacing:4.500000px;}
.wsc1{word-spacing:4.560000px;}
.ws10a{word-spacing:4.608000px;}
.wsdc{word-spacing:4.620000px;}
.ws85{word-spacing:4.740000px;}
.ws67{word-spacing:4.800000px;}
.wsa{word-spacing:4.848000px;}
.ws74{word-spacing:4.860000px;}
.ws101{word-spacing:4.944000px;}
.ws60{word-spacing:4.980000px;}
.ws9{word-spacing:4.992000px;}
.ws6f{word-spacing:5.040000px;}
.wse9{word-spacing:5.088000px;}
.ws91{word-spacing:5.136000px;}
.ws12{word-spacing:5.160000px;}
.ws21{word-spacing:5.220000px;}
.ws2b{word-spacing:5.280000px;}
.ws5c{word-spacing:5.340000px;}
.ws37{word-spacing:5.400000px;}
.ws13{word-spacing:5.520000px;}
.ws64{word-spacing:5.580000px;}
.ws115{word-spacing:5.616000px;}
.ws27{word-spacing:5.640000px;}
.ws113{word-spacing:5.712000px;}
.ws32{word-spacing:5.760000px;}
.ws9d{word-spacing:5.808000px;}
.wsa4{word-spacing:5.856000px;}
.ws18{word-spacing:5.880000px;}
.ws70{word-spacing:6.000000px;}
.wsb7{word-spacing:6.060000px;}
.wsf5{word-spacing:6.144000px;}
.ws45{word-spacing:6.180000px;}
.ws38{word-spacing:6.360000px;}
.ws35{word-spacing:6.600000px;}
.ws11f{word-spacing:6.624000px;}
.wsae{word-spacing:6.660000px;}
.ws98{word-spacing:6.720000px;}
.wse1{word-spacing:6.780000px;}
.ws108{word-spacing:6.816000px;}
.ws122{word-spacing:6.864000px;}
.ws41{word-spacing:6.900000px;}
.ws25{word-spacing:6.960000px;}
.ws81{word-spacing:7.020000px;}
.ws112{word-spacing:7.056000px;}
.ws75{word-spacing:7.140000px;}
.ws40{word-spacing:7.200000px;}
.wsf8{word-spacing:7.296000px;}
.wsd7{word-spacing:7.320000px;}
.ws90{word-spacing:7.344000px;}
.ws53{word-spacing:7.380000px;}
.ws86{word-spacing:7.440000px;}
.ws10e{word-spacing:7.488000px;}
.wse5{word-spacing:7.536000px;}
.wsd9{word-spacing:7.560000px;}
.ws34{word-spacing:7.620000px;}
.ws5e{word-spacing:7.740000px;}
.wsf1{word-spacing:7.824000px;}
.ws47{word-spacing:7.860000px;}
.ws3e{word-spacing:7.920000px;}
.ws4a{word-spacing:7.980000px;}
.wsb6{word-spacing:8.040000px;}
.wsfc{word-spacing:8.064000px;}
.wsff{word-spacing:8.256000px;}
.wsc0{word-spacing:8.280000px;}
.ws51{word-spacing:8.400000px;}
.ws7d{word-spacing:8.460000px;}
.ws7c{word-spacing:8.520000px;}
.ws117{word-spacing:8.592000px;}
.wsa0{word-spacing:8.640000px;}
.ws114{word-spacing:8.688000px;}
.wse3{word-spacing:8.760000px;}
.ws93{word-spacing:8.784000px;}
.ws5d{word-spacing:8.880000px;}
.ws1e{word-spacing:9.060000px;}
.ws1c{word-spacing:9.120000px;}
.ws15{word-spacing:9.180000px;}
.wsd4{word-spacing:9.240000px;}
.ws2d{word-spacing:9.360000px;}
.ws68{word-spacing:9.420000px;}
.wsde{word-spacing:9.480000px;}
.ws103{word-spacing:9.504000px;}
.wsc2{word-spacing:9.600000px;}
.ws19{word-spacing:9.660000px;}
.wse4{word-spacing:9.720000px;}
.ws66{word-spacing:9.960000px;}
.ws44{word-spacing:10.140000px;}
.ws5f{word-spacing:10.200000px;}
.ws83{word-spacing:10.440000px;}
.wsbc{word-spacing:10.500000px;}
.ws4c{word-spacing:10.560000px;}
.wsda{word-spacing:10.620000px;}
.ws11a{word-spacing:10.752000px;}
.ws2c{word-spacing:10.980000px;}
.ws88{word-spacing:11.100000px;}
.ws97{word-spacing:11.160000px;}
.ws4f{word-spacing:11.220000px;}
.ws1d{word-spacing:11.460000px;}
.wsdf{word-spacing:11.520000px;}
.ws110{word-spacing:11.568000px;}
.wsb2{word-spacing:11.880000px;}
.ws76{word-spacing:12.000000px;}
.wsa3{word-spacing:12.144000px;}
.wscf{word-spacing:12.180000px;}
.ws10d{word-spacing:12.336000px;}
.ws5b{word-spacing:12.600000px;}
.wsc3{word-spacing:12.720000px;}
.ws36{word-spacing:13.020000px;}
.ws10f{word-spacing:13.104000px;}
.ws87{word-spacing:13.320000px;}
.ws3f{word-spacing:13.920000px;}
.wsb3{word-spacing:14.040000px;}
.wsa1{word-spacing:14.400000px;}
.ws80{word-spacing:14.460000px;}
.ws59{word-spacing:14.880000px;}
.wsbb{word-spacing:14.940000px;}
.wsc5{word-spacing:15.180000px;}
.ws100{word-spacing:15.552000px;}
.ws78{word-spacing:15.900000px;}
.wsc4{word-spacing:16.260000px;}
.ws84{word-spacing:16.620000px;}
.ws123{word-spacing:16.656000px;}
.ws82{word-spacing:16.800000px;}
.wsa5{word-spacing:16.992000px;}
.ws4e{word-spacing:17.460000px;}
.ws1b{word-spacing:17.940000px;}
.ws121{word-spacing:18.096000px;}
.wsce{word-spacing:19.740000px;}
.ws7b{word-spacing:20.760000px;}
.ws43{word-spacing:24.780000px;}
.ws8a{word-spacing:25.320000px;}
.ws89{word-spacing:25.920000px;}
.ws54{word-spacing:26.340000px;}
.wsa9{word-spacing:27.024000px;}
.ws42{word-spacing:31.320000px;}
.wsa6{word-spacing:31.680000px;}
.ws92{word-spacing:41.664000px;}
.wsac{word-spacing:44.592000px;}
.ws8d{word-spacing:53.904000px;}
.ws8e{word-spacing:59.904000px;}
.ws8c{word-spacing:65.904000px;}
.wsad{word-spacing:71.280000px;}
.wsab{word-spacing:97.968000px;}
.ws9f{word-spacing:106.656000px;}
.ws9c{word-spacing:164.168298px;}
._69{margin-left:-97.968000px;}
._6a{margin-left:-81.758400px;}
._76{margin-left:-71.280000px;}
._77{margin-left:-56.318400px;}
._6d{margin-left:-46.752000px;}
._70{margin-left:-44.688000px;}
._6f{margin-left:-38.688000px;}
._6c{margin-left:-32.109000px;}
._6e{margin-left:-30.624000px;}
._72{margin-left:-19.659600px;}
._a{margin-left:-12.000000px;}
._46{margin-left:-9.234882px;}
._b{margin-left:-7.614000px;}
._7{margin-left:-5.763000px;}
._9{margin-left:-4.732133px;}
._0{margin-left:-3.726000px;}
._1{margin-left:-2.160000px;}
._2{margin-left:-1.080000px;}
._6{width:1.372800px;}
._7c{width:5.530800px;}
._6b{width:7.358400px;}
._73{width:9.408000px;}
._4d{width:11.952000px;}
._12{width:13.344000px;}
._4c{width:14.736000px;}
._4e{width:18.624000px;}
._21{width:19.872000px;}
._74{width:22.329000px;}
._1f{width:27.216000px;}
._28{width:28.305600px;}
._56{width:31.152000px;}
._20{width:33.216000px;}
._1e{width:39.216000px;}
._22{width:41.649600px;}
._f{width:43.920000px;}
._e{width:45.936000px;}
._50{width:48.000000px;}
._58{width:50.496000px;}
._14{width:54.576000px;}
._64{width:57.648000px;}
._11{width:58.800000px;}
._d{width:60.624000px;}
._10{width:65.232000px;}
._79{width:70.608000px;}
._52{width:72.000000px;}
._7a{width:77.808000px;}
._48{width:79.248000px;}
._67{width:84.768000px;}
._15{width:86.592000px;}
._78{width:91.488000px;}
._7b{width:94.128000px;}
._53{width:100.704000px;}
._5e{width:102.000000px;}
._49{width:105.696000px;}
._55{width:106.704000px;}
._57{width:111.936000px;}
._63{width:113.198400px;}
._75{width:115.550400px;}
._65{width:124.113600px;}
._5c{width:127.968000px;}
._27{width:131.904000px;}
._29{width:142.526400px;}
._2a{width:145.248000px;}
._61{width:150.494400px;}
._59{width:154.833600px;}
._5b{width:163.886400px;}
._25{width:165.936000px;}
._60{width:169.473600px;}
._26{width:171.936000px;}
._4a{width:175.296000px;}
._24{width:177.936000px;}
._1c{width:179.280000px;}
._68{width:182.414400px;}
._19{width:185.280000px;}
._1b{width:191.280000px;}
._8{width:192.427800px;}
._5d{width:201.230400px;}
._71{width:203.745600px;}
._17{width:205.968000px;}
._51{width:210.000000px;}
._18{width:211.968000px;}
._37{width:213.950400px;}
._16{width:217.636200px;}
._13{width:224.208000px;}
._4b{width:228.240000px;}
._66{width:234.542400px;}
._5a{width:235.886400px;}
._43{width:247.166400px;}
._30{width:251.198400px;}
._1d{width:256.176000px;}
._3d{width:257.774400px;}
._36{width:261.902400px;}
._2f{width:275.150400px;}
._23{width:286.574400px;}
._54{width:290.928000px;}
._35{width:299.198400px;}
._5f{width:302.558400px;}
._1a{width:304.176000px;}
._62{width:310.622400px;}
._31{width:317.870400px;}
._2b{width:323.918400px;}
._42{width:329.822400px;}
._c{width:345.600000px;}
._38{width:349.886400px;}
._3c{width:351.216000px;}
._2e{width:352.526400px;}
._3e{width:353.822400px;}
._33{width:359.198400px;}
._4f{width:368.304000px;}
._39{width:384.590400px;}
._3f{width:399.230400px;}
._34{width:400.574400px;}
._32{width:411.278400px;}
._44{width:415.214400px;}
._2d{width:425.246400px;}
._2c{width:435.229200px;}
._47{width:456.288000px;}
._40{width:463.214400px;}
._3{width:464.508000px;}
._45{width:471.278400px;}
._3a{width:485.918400px;}
._3b{width:491.246400px;}
._41{width:513.902400px;}
._4{width:801.360001px;}
._5{width:2061.102000px;}
.fc3{color:rgb(187,38,24);}
.fc2{color:rgb(17,62,116);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:31.200000px;}
.fsc{font-size:33.219000px;}
.fs8{font-size:36.000000px;}
.fsb{font-size:43.200000px;}
.fsd{font-size:44.292000px;}
.fs7{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs6{font-size:96.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:1.933650px;}
.yf0{bottom:1.976100px;}
.ydc{bottom:2.132850px;}
.y2a{bottom:37.503600px;}
.y74{bottom:40.527750px;}
.y29{bottom:55.275600px;}
.y2{bottom:67.597501px;}
.y28{bottom:68.775600px;}
.y73{bottom:70.947750px;}
.y27{bottom:82.275600px;}
.y1{bottom:84.097501px;}
.y72{bottom:101.367750px;}
.y4f{bottom:103.181100px;}
.y124{bottom:112.613250px;}
.y136{bottom:112.643100px;}
.y178{bottom:113.207100px;}
.y46{bottom:121.181100px;}
.y123{bottom:126.113250px;}
.y135{bottom:126.143100px;}
.y177{bottom:126.707100px;}
.y71{bottom:131.787750px;}
.y45{bottom:139.181100px;}
.y122{bottom:139.613250px;}
.y134{bottom:139.643100px;}
.y176{bottom:140.207100px;}
.y121{bottom:153.113250px;}
.y175{bottom:153.707100px;}
.y44{bottom:157.181100px;}
.y133{bottom:157.415100px;}
.y70{bottom:162.207750px;}
.y120{bottom:166.613250px;}
.y132{bottom:170.915100px;}
.y174{bottom:171.479100px;}
.y43{bottom:175.181100px;}
.y11f{bottom:180.113250px;}
.y131{bottom:184.415100px;}
.y173{bottom:184.979100px;}
.y6f{bottom:192.627750px;}
.y42{bottom:193.181100px;}
.y11e{bottom:193.613250px;}
.y130{bottom:197.915100px;}
.y172{bottom:198.479100px;}
.y11d{bottom:207.113250px;}
.y41{bottom:211.181100px;}
.y12f{bottom:211.415100px;}
.y171{bottom:211.979100px;}
.yd5{bottom:215.701050px;}
.y6e{bottom:223.047750px;}
.y118{bottom:227.640300px;}
.y40{bottom:229.181100px;}
.y12e{bottom:229.187100px;}
.y170{bottom:229.751100px;}
.yd1{bottom:232.657050px;}
.y7c{bottom:236.308200px;}
.y117{bottom:241.140300px;}
.y12d{bottom:242.687100px;}
.y16f{bottom:243.251100px;}
.y3f{bottom:247.181100px;}
.y11c{bottom:247.613250px;}
.yba{bottom:251.360550px;}
.y116{bottom:254.640300px;}
.y12c{bottom:256.187100px;}
.y16e{bottom:256.751100px;}
.y3e{bottom:265.181100px;}
.y115{bottom:268.140300px;}
.y16d{bottom:270.251100px;}
.yb8{bottom:274.400550px;}
.yb9{bottom:278.360550px;}
.y114{bottom:281.640300px;}
.y3d{bottom:283.181100px;}
.y16c{bottom:283.751100px;}
.y64{bottom:286.181100px;}
.yb7{bottom:287.900550px;}
.y113{bottom:295.140300px;}
.y3c{bottom:301.181100px;}
.yb6{bottom:301.400550px;}
.y16b{bottom:301.523100px;}
.y112{bottom:308.640300px;}
.y12b{bottom:312.431100px;}
.yb5{bottom:314.900550px;}
.y16a{bottom:315.023100px;}
.y3b{bottom:319.181100px;}
.y111{bottom:322.140300px;}
.y12a{bottom:325.931100px;}
.yb4{bottom:328.400550px;}
.y169{bottom:328.523100px;}
.y3a{bottom:337.181100px;}
.yd4{bottom:339.535500px;}
.ye7{bottom:341.377800px;}
.yb3{bottom:341.900550px;}
.y168{bottom:342.023100px;}
.y11b{bottom:351.785700px;}
.ye6{bottom:352.409757px;}
.yef{bottom:352.543407px;}
.ydb{bottom:352.702288px;}
.y39{bottom:355.181100px;}
.yb2{bottom:355.400550px;}
.y167{bottom:355.523100px;}
.y4e{bottom:358.181100px;}
.ye5{bottom:363.230846px;}
.yee{bottom:363.364496px;}
.yda{bottom:363.523377px;}
.y129{bottom:366.431100px;}
.yb1{bottom:368.900550px;}
.y166{bottom:369.023100px;}
.y38{bottom:373.181100px;}
.ydf{bottom:376.331519px;}
.yf3{bottom:377.260619px;}
.y128{bottom:379.931100px;}
.y4d{bottom:380.681100px;}
.yb0{bottom:382.400550px;}
.y165{bottom:386.795100px;}
.yde{bottom:388.099350px;}
.yf2{bottom:389.028450px;}
.y37{bottom:391.181100px;}
.y127{bottom:393.431100px;}
.yaf{bottom:395.900550px;}
.y164{bottom:400.295100px;}
.ye4{bottom:401.573877px;}
.yed{bottom:401.707527px;}
.yd9{bottom:401.866408px;}
.y16{bottom:406.702501px;}
.y126{bottom:406.931100px;}
.y36{bottom:409.181100px;}
.yae{bottom:409.400550px;}
.y163{bottom:413.795100px;}
.yad{bottom:422.900550px;}
.y35{bottom:427.181100px;}
.y162{bottom:427.295100px;}
.y63{bottom:430.181100px;}
.yac{bottom:436.400550px;}
.ye3{bottom:439.916908px;}
.yec{bottom:440.050558px;}
.yd8{bottom:440.209439px;}
.y161{bottom:445.067100px;}
.y34{bottom:445.181100px;}
.yab{bottom:449.900550px;}
.y160{bottom:458.567100px;}
.y33{bottom:463.181100px;}
.yaa{bottom:463.400550px;}
.ybc{bottom:467.360700px;}
.y15{bottom:471.052501px;}
.y15f{bottom:472.067100px;}
.ya9{bottom:476.900550px;}
.ye2{bottom:478.259939px;}
.yeb{bottom:478.393588px;}
.yd7{bottom:478.552469px;}
.y32{bottom:481.181100px;}
.y15e{bottom:489.839100px;}
.ya8{bottom:490.400550px;}
.y31{bottom:499.181100px;}
.y15d{bottom:503.339100px;}
.ya7{bottom:503.900550px;}
.y14{bottom:508.333501px;}
.ye1{bottom:516.602969px;}
.yea{bottom:516.736619px;}
.y15c{bottom:516.839100px;}
.yd6{bottom:516.895500px;}
.y30{bottom:517.181100px;}
.ya6{bottom:517.400550px;}
.y13{bottom:523.333501px;}
.y15b{bottom:530.339100px;}
.ya5{bottom:530.900550px;}
.y2f{bottom:535.181100px;}
.y12{bottom:538.333500px;}
.ya4{bottom:544.400550px;}
.y15a{bottom:548.111100px;}
.y2e{bottom:553.181100px;}
.ye0{bottom:554.946000px;}
.ye9{bottom:555.079650px;}
.ya3{bottom:557.900550px;}
.y159{bottom:561.611100px;}
.ye8{bottom:568.064256px;}
.yf1{bottom:568.197300px;}
.ydd{bottom:568.354500px;}
.y2d{bottom:571.181100px;}
.ya2{bottom:571.400550px;}
.y4c{bottom:574.181100px;}
.y158{bottom:575.111100px;}
.yd0{bottom:582.519000px;}
.ya1{bottom:584.900550px;}
.ycf{bottom:588.490650px;}
.y157{bottom:588.611100px;}
.y2c{bottom:589.181100px;}
.y62{bottom:592.181100px;}
.y11a{bottom:592.328700px;}
.ya0{bottom:598.400550px;}
.yce{bottom:599.522157px;}
.y156{bottom:606.383100px;}
.y2b{bottom:607.181100px;}
.y86{bottom:610.181100px;}
.ycd{bottom:610.343246px;}
.y9f{bottom:611.900550px;}
.y155{bottom:619.883100px;}
.y11{bottom:620.121022px;}
.yd3{bottom:623.152919px;}
.y4b{bottom:625.181100px;}
.y9e{bottom:625.400550px;}
.y154{bottom:633.383100px;}
.yd2{bottom:634.920750px;}
.y9d{bottom:638.900550px;}
.y110{bottom:640.176300px;}
.y4a{bottom:643.181100px;}
.y153{bottom:646.883100px;}
.ycc{bottom:648.686277px;}
.y10{bottom:650.510991px;}
.y9c{bottom:652.400550px;}
.y10f{bottom:653.676300px;}
.y49{bottom:661.181100px;}
.y152{bottom:664.655100px;}
.ybb{bottom:665.900550px;}
.y10e{bottom:667.176300px;}
.yf{bottom:668.571004px;}
.y151{bottom:678.155100px;}
.y48{bottom:679.181100px;}
.y10d{bottom:680.676300px;}
.y61{bottom:682.181100px;}
.ye{bottom:686.630994px;}
.ycb{bottom:687.029308px;}
.y150{bottom:691.655100px;}
.y9b{bottom:692.900550px;}
.y10c{bottom:694.176300px;}
.y85{bottom:697.181100px;}
.yd{bottom:704.691006px;}
.y9a{bottom:706.400550px;}
.y10b{bottom:707.676300px;}
.y14f{bottom:709.427100px;}
.y60{bottom:715.181100px;}
.y99{bottom:719.900550px;}
.y10a{bottom:721.176300px;}
.y14e{bottom:722.927100px;}
.yc{bottom:723.215993px;}
.y6b{bottom:725.167650px;}
.yca{bottom:725.372339px;}
.y5f{bottom:733.181100px;}
.y98{bottom:733.400550px;}
.y109{bottom:734.676300px;}
.y14d{bottom:736.427100px;}
.y6a{bottom:738.667650px;}
.y26{bottom:746.836650px;}
.y108{bottom:748.176300px;}
.y5e{bottom:751.181100px;}
.y69{bottom:752.167650px;}
.y14c{bottom:754.199100px;}
.y25{bottom:760.336650px;}
.y107{bottom:761.676300px;}
.yc9{bottom:763.715369px;}
.y68{bottom:765.667650px;}
.y14b{bottom:767.699100px;}
.y5d{bottom:769.181100px;}
.y24{bottom:773.836650px;}
.y106{bottom:775.176300px;}
.yb{bottom:776.115002px;}
.y67{bottom:779.167650px;}
.y14a{bottom:781.199100px;}
.y5c{bottom:787.181100px;}
.y23{bottom:787.336650px;}
.y105{bottom:788.676300px;}
.y97{bottom:792.282000px;}
.y66{bottom:792.667650px;}
.y149{bottom:794.699100px;}
.ya{bottom:797.115002px;}
.y22{bottom:800.836650px;}
.y96{bottom:801.822000px;}
.yc8{bottom:802.058400px;}
.y104{bottom:802.176300px;}
.y5b{bottom:805.181100px;}
.y65{bottom:806.167650px;}
.y84{bottom:808.181100px;}
.y18a{bottom:808.188150px;}
.y148{bottom:812.471100px;}
.y21{bottom:814.336650px;}
.y103{bottom:815.676300px;}
.y9{bottom:818.115002px;}
.y6c{bottom:821.680500px;}
.y189{bottom:821.688150px;}
.y5a{bottom:823.181100px;}
.y147{bottom:825.971100px;}
.y20{bottom:827.836650px;}
.y95{bottom:828.822000px;}
.y102{bottom:829.176300px;}
.y75{bottom:831.772350px;}
.yc4{bottom:833.914800px;}
.y188{bottom:835.188150px;}
.y119{bottom:836.813700px;}
.y146{bottom:839.471100px;}
.y83{bottom:841.181100px;}
.y1f{bottom:841.336650px;}
.y94{bottom:842.322000px;}
.y101{bottom:842.676300px;}
.y59{bottom:844.181100px;}
.yc3{bottom:844.946307px;}
.y187{bottom:848.688150px;}
.y145{bottom:852.971100px;}
.y199{bottom:854.388150px;}
.yc2{bottom:855.767396px;}
.y93{bottom:855.822000px;}
.y100{bottom:856.176300px;}
.y1e{bottom:858.796650px;}
.y82{bottom:859.181100px;}
.y186{bottom:866.460150px;}
.y58{bottom:866.681100px;}
.y198{bottom:867.888150px;}
.y92{bottom:869.322000px;}
.yff{bottom:869.676300px;}
.yc7{bottom:869.961869px;}
.y144{bottom:870.743100px;}
.y8{bottom:875.779504px;}
.y81{bottom:877.181100px;}
.y185{bottom:879.960150px;}
.yc6{bottom:881.729700px;}
.y91{bottom:882.822000px;}
.yfe{bottom:883.176300px;}
.y143{bottom:884.243100px;}
.y197{bottom:887.088150px;}
.y184{bottom:893.460150px;}
.yc1{bottom:894.110427px;}
.y80{bottom:895.181100px;}
.y90{bottom:896.322000px;}
.yfd{bottom:896.676300px;}
.y142{bottom:897.743100px;}
.y196{bottom:900.588150px;}
.y7{bottom:907.279504px;}
.y1d{bottom:907.596450px;}
.y8f{bottom:909.822000px;}
.yfc{bottom:910.176300px;}
.y183{bottom:911.232150px;}
.y141{bottom:911.243100px;}
.y7f{bottom:913.181100px;}
.y195{bottom:914.088150px;}
.y8e{bottom:923.322000px;}
.yfb{bottom:923.676300px;}
.y182{bottom:924.732150px;}
.y194{bottom:927.588150px;}
.y1c{bottom:928.596450px;}
.y140{bottom:929.015100px;}
.y57{bottom:931.181100px;}
.yc0{bottom:932.453458px;}
.y8d{bottom:936.822000px;}
.yfa{bottom:937.176300px;}
.y6{bottom:938.779498px;}
.y193{bottom:941.088150px;}
.y181{bottom:942.504150px;}
.y13f{bottom:942.515100px;}
.y56{bottom:949.181100px;}
.y1b{bottom:949.596450px;}
.y8c{bottom:950.322000px;}
.yf9{bottom:950.676300px;}
.y180{bottom:956.004150px;}
.y13e{bottom:956.015100px;}
.y125{bottom:956.681100px;}
.y192{bottom:960.288150px;}
.y8b{bottom:963.822000px;}
.y55{bottom:967.181100px;}
.y17f{bottom:969.504150px;}
.y5{bottom:970.279498px;}
.ybf{bottom:970.796488px;}
.y13d{bottom:973.787100px;}
.y191{bottom:973.788150px;}
.y7b{bottom:974.825100px;}
.y8a{bottom:977.322000px;}
.yf8{bottom:977.676300px;}
.y17e{bottom:983.004150px;}
.y54{bottom:985.181100px;}
.y7a{bottom:985.628100px;}
.y13c{bottom:987.287100px;}
.y190{bottom:987.288150px;}
.yf7{bottom:991.176300px;}
.y79{bottom:996.431100px;}
.y1a{bottom:1000.360350px;}
.y17d{bottom:1000.776150px;}
.y13b{bottom:1000.787100px;}
.y53{bottom:1003.181100px;}
.y89{bottom:1004.322000px;}
.y18f{bottom:1005.060150px;}
.y78{bottom:1007.234100px;}
.ybe{bottom:1009.139519px;}
.y17c{bottom:1014.276150px;}
.y13a{bottom:1014.287100px;}
.y77{bottom:1018.037100px;}
.y18e{bottom:1018.560150px;}
.y52{bottom:1021.181100px;}
.y19{bottom:1027.360350px;}
.y17b{bottom:1027.776150px;}
.y76{bottom:1028.840100px;}
.yf6{bottom:1031.676300px;}
.y139{bottom:1032.059100px;}
.y18d{bottom:1032.060150px;}
.y4{bottom:1035.546001px;}
.y51{bottom:1039.181100px;}
.y7e{bottom:1042.181100px;}
.y88{bottom:1044.822000px;}
.yf5{bottom:1045.176300px;}
.y17a{bottom:1045.548150px;}
.y138{bottom:1045.559100px;}
.y18c{bottom:1045.560150px;}
.ybd{bottom:1047.482550px;}
.y18{bottom:1054.360350px;}
.y50{bottom:1057.181100px;}
.y87{bottom:1058.322000px;}
.yf4{bottom:1058.676300px;}
.y179{bottom:1059.048150px;}
.y137{bottom:1059.059100px;}
.y18b{bottom:1059.060150px;}
.y7d{bottom:1060.181100px;}
.yc5{bottom:1060.601256px;}
.y17{bottom:1106.928450px;}
.y47{bottom:1107.217800px;}
.y3{bottom:1165.122003px;}
.h1b{height:25.200000px;}
.h18{height:28.204800px;}
.h1d{height:30.029976px;}
.hf{height:32.544000px;}
.h12{height:33.600000px;}
.hc{height:35.376000px;}
.h4{height:36.726562px;}
.h19{height:39.052800px;}
.h1e{height:40.039968px;}
.h1a{height:41.040000px;}
.h1c{height:41.040600px;}
.h2{height:41.317383px;}
.h13{height:42.000000px;}
.h11{height:43.392000px;}
.h15{height:43.860000px;}
.h8{height:45.000000px;}
.h7{height:45.908203px;}
.h10{height:48.384000px;}
.h22{height:48.816000px;}
.h9{height:53.041380px;}
.h14{height:54.240000px;}
.h6{height:55.089844px;}
.h16{height:59.664000px;}
.he{height:60.480000px;}
.h3{height:68.862305px;}
.h5{height:82.634766px;}
.hd{height:86.784000px;}
.h21{height:240.343500px;}
.h20{height:240.897000px;}
.h1f{height:243.213000px;}
.h17{height:245.563500px;}
.hb{height:1190.250000px;}
.ha{height:1190.551500px;}
.h1{height:1249.500000px;}
.h0{height:1249.560000px;}
.w4{width:227.848500px;}
.w6{width:242.082000px;}
.w5{width:247.570500px;}
.w7{width:248.910000px;}
.w2{width:914.173500px;}
.w3{width:914.250000px;}
.w0{width:951.480000px;}
.w1{width:951.750000px;}
.x0{left:0.000000px;}
.x1d{left:8.125050px;}
.xe{left:13.382100px;}
.x7{left:76.535400px;}
.x1e{left:78.057900px;}
.x9{left:80.787450px;}
.x1f{left:82.675341px;}
.xc{left:89.291400px;}
.xa{left:93.537450px;}
.x20{left:95.888198px;}
.x12{left:138.538950px;}
.x26{left:142.989750px;}
.x4{left:145.650000px;}
.x3{left:191.880000px;}
.x5{left:197.700000px;}
.x21{left:216.403500px;}
.x2{left:236.066995px;}
.x1{left:293.590494px;}
.x13{left:314.645700px;}
.x14{left:318.893700px;}
.x25{left:328.825500px;}
.x22{left:333.469350px;}
.x27{left:335.542500px;}
.x23{left:338.086791px;}
.x24{left:351.299648px;}
.x28{left:383.881050px;}
.x8{left:467.716500px;}
.xb{left:480.466500px;}
.x6{left:527.100000px;}
.xd{left:538.752000px;}
.xf{left:543.090000px;}
.x11{left:560.195400px;}
.x10{left:576.048750px;}
.x1c{left:584.932500px;}
.x15{left:590.043750px;}
.x1a{left:592.114239px;}
.x16{left:594.661191px;}
.x17{left:599.278632px;}
.x18{left:607.874048px;}
.x1b{left:646.464450px;}
.x19{left:728.389650px;}
@media print{
.v3{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.421331pt;}
.v4{vertical-align:14.080000pt;}
.v2{vertical-align:17.600000pt;}
.ls3{letter-spacing:-1.164800pt;}
.ls4{letter-spacing:-0.499200pt;}
.ls7{letter-spacing:-0.426667pt;}
.ls5{letter-spacing:-0.266667pt;}
.ls2{letter-spacing:-0.213333pt;}
.ls1{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.213333pt;}
.ls8{letter-spacing:0.266667pt;}
.lsa{letter-spacing:0.853333pt;}
.ls6{letter-spacing:170.553728pt;}
.ws9b{word-spacing:-178.762512pt;}
.ws1{word-spacing:-24.864000pt;}
.ws4{word-spacing:-14.826667pt;}
.ws0{word-spacing:-12.432000pt;}
.ws73{word-spacing:-8.896000pt;}
.ws3{word-spacing:-8.736000pt;}
.ws3a{word-spacing:-7.709867pt;}
.ws3b{word-spacing:-6.545067pt;}
.wsb{word-spacing:-3.893333pt;}
.wsd2{word-spacing:-3.040000pt;}
.wse{word-spacing:-2.666667pt;}
.ws28{word-spacing:-2.560000pt;}
.ws6a{word-spacing:-2.400000pt;}
.ws62{word-spacing:-2.293333pt;}
.ws6e{word-spacing:-2.176000pt;}
.wse8{word-spacing:-2.133333pt;}
.ws2e{word-spacing:-2.080000pt;}
.ws39{word-spacing:-2.052267pt;}
.wsb8{word-spacing:-2.026667pt;}
.wsfd{word-spacing:-2.005333pt;}
.ws56{word-spacing:-1.973333pt;}
.ws120{word-spacing:-1.877333pt;}
.wsf{word-spacing:-1.866667pt;}
.wsf6{word-spacing:-1.834667pt;}
.wsdd{word-spacing:-1.813333pt;}
.wsfb{word-spacing:-1.792000pt;}
.ws77{word-spacing:-1.706667pt;}
.ws11c{word-spacing:-1.664000pt;}
.ws2a{word-spacing:-1.653333pt;}
.ws30{word-spacing:-1.600000pt;}
.ws61{word-spacing:-1.546667pt;}
.ws14{word-spacing:-1.493333pt;}
.ws104{word-spacing:-1.450667pt;}
.ws71{word-spacing:-1.408000pt;}
.ws7f{word-spacing:-1.386667pt;}
.wsfe{word-spacing:-1.365333pt;}
.ws118{word-spacing:-1.322667pt;}
.ws9e{word-spacing:-1.280000pt;}
.wsa2{word-spacing:-1.194667pt;}
.ws69{word-spacing:-1.173333pt;}
.ws17{word-spacing:-1.120000pt;}
.ws58{word-spacing:-1.013333pt;}
.wsf0{word-spacing:-0.981333pt;}
.ws1f{word-spacing:-0.960000pt;}
.wsf2{word-spacing:-0.938667pt;}
.wsc9{word-spacing:-0.906667pt;}
.wsdb{word-spacing:-0.853333pt;}
.wsf7{word-spacing:-0.810667pt;}
.wse0{word-spacing:-0.800000pt;}
.ws11d{word-spacing:-0.725333pt;}
.ws63{word-spacing:-0.693333pt;}
.ws96{word-spacing:-0.640000pt;}
.wsf9{word-spacing:-0.597333pt;}
.wscd{word-spacing:-0.586667pt;}
.ws99{word-spacing:-0.480000pt;}
.ws6c{word-spacing:-0.426667pt;}
.ws10c{word-spacing:-0.384000pt;}
.ws52{word-spacing:-0.320000pt;}
.wsfa{word-spacing:-0.298667pt;}
.wsd1{word-spacing:-0.266667pt;}
.ws6d{word-spacing:-0.213333pt;}
.wsbd{word-spacing:-0.160000pt;}
.ws125{word-spacing:-0.128000pt;}
.ws4d{word-spacing:-0.106667pt;}
.ws8{word-spacing:-0.085333pt;}
.ws23{word-spacing:-0.053333pt;}
.ws7{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.wsed{word-spacing:0.042667pt;}
.ws46{word-spacing:0.106667pt;}
.ws5{word-spacing:0.160000pt;}
.wsaa{word-spacing:0.170667pt;}
.ws6{word-spacing:0.213333pt;}
.ws9a{word-spacing:0.266667pt;}
.ws29{word-spacing:0.373333pt;}
.wsd{word-spacing:0.426667pt;}
.ws50{word-spacing:0.480000pt;}
.ws72{word-spacing:0.499200pt;}
.ws2f{word-spacing:0.533333pt;}
.wsa7{word-spacing:0.597333pt;}
.wse6{word-spacing:0.640000pt;}
.wsb5{word-spacing:0.693333pt;}
.ws102{word-spacing:0.725333pt;}
.wse2{word-spacing:0.746667pt;}
.wsba{word-spacing:0.800000pt;}
.ws16{word-spacing:0.853333pt;}
.wsc7{word-spacing:0.906667pt;}
.wsc6{word-spacing:0.960000pt;}
.ws6b{word-spacing:1.226667pt;}
.wsf4{word-spacing:1.322667pt;}
.wsea{word-spacing:1.365333pt;}
.ws3d{word-spacing:1.386667pt;}
.ws107{word-spacing:1.408000pt;}
.ws5a{word-spacing:1.493333pt;}
.ws111{word-spacing:1.536000pt;}
.wsbf{word-spacing:1.546667pt;}
.ws126{word-spacing:1.578667pt;}
.wsc8{word-spacing:1.600000pt;}
.ws119{word-spacing:1.621333pt;}
.ws24{word-spacing:1.653333pt;}
.wsec{word-spacing:1.664000pt;}
.ws105{word-spacing:1.706667pt;}
.ws95{word-spacing:1.760000pt;}
.wsbe{word-spacing:1.813333pt;}
.ws49{word-spacing:1.920000pt;}
.wsee{word-spacing:1.962667pt;}
.wsd0{word-spacing:1.973333pt;}
.ws94{word-spacing:2.026667pt;}
.ws79{word-spacing:2.080000pt;}
.wsca{word-spacing:2.133333pt;}
.ws11{word-spacing:2.186667pt;}
.ws55{word-spacing:2.240000pt;}
.ws33{word-spacing:2.293333pt;}
.ws124{word-spacing:2.346667pt;}
.ws7e{word-spacing:2.400000pt;}
.wse7{word-spacing:2.432000pt;}
.wscb{word-spacing:2.453333pt;}
.ws116{word-spacing:2.474667pt;}
.wsb1{word-spacing:2.506667pt;}
.ws8f{word-spacing:2.517333pt;}
.wsb0{word-spacing:2.560000pt;}
.wsa8{word-spacing:2.602667pt;}
.ws10{word-spacing:2.613333pt;}
.ws8b{word-spacing:2.645333pt;}
.wsb4{word-spacing:2.666667pt;}
.ws109{word-spacing:2.688000pt;}
.ws57{word-spacing:2.880000pt;}
.ws10b{word-spacing:2.901333pt;}
.ws48{word-spacing:2.933333pt;}
.wsd3{word-spacing:2.986667pt;}
.wsd5{word-spacing:3.040000pt;}
.ws4b{word-spacing:3.093333pt;}
.wsd6{word-spacing:3.146667pt;}
.wsc{word-spacing:3.200000pt;}
.ws106{word-spacing:3.242667pt;}
.ws7a{word-spacing:3.253333pt;}
.ws31{word-spacing:3.306667pt;}
.wsef{word-spacing:3.370667pt;}
.wseb{word-spacing:3.456000pt;}
.ws26{word-spacing:3.466667pt;}
.ws65{word-spacing:3.520000pt;}
.ws11b{word-spacing:3.541333pt;}
.ws1a{word-spacing:3.573333pt;}
.wscc{word-spacing:3.626667pt;}
.wsf3{word-spacing:3.669333pt;}
.wsaf{word-spacing:3.680000pt;}
.ws20{word-spacing:3.733333pt;}
.ws3c{word-spacing:3.786667pt;}
.ws11e{word-spacing:3.797333pt;}
.ws22{word-spacing:3.840000pt;}
.wsd8{word-spacing:3.946667pt;}
.wsb9{word-spacing:4.000000pt;}
.wsc1{word-spacing:4.053333pt;}
.ws10a{word-spacing:4.096000pt;}
.wsdc{word-spacing:4.106667pt;}
.ws85{word-spacing:4.213333pt;}
.ws67{word-spacing:4.266667pt;}
.wsa{word-spacing:4.309333pt;}
.ws74{word-spacing:4.320000pt;}
.ws101{word-spacing:4.394667pt;}
.ws60{word-spacing:4.426667pt;}
.ws9{word-spacing:4.437333pt;}
.ws6f{word-spacing:4.480000pt;}
.wse9{word-spacing:4.522667pt;}
.ws91{word-spacing:4.565333pt;}
.ws12{word-spacing:4.586667pt;}
.ws21{word-spacing:4.640000pt;}
.ws2b{word-spacing:4.693333pt;}
.ws5c{word-spacing:4.746667pt;}
.ws37{word-spacing:4.800000pt;}
.ws13{word-spacing:4.906667pt;}
.ws64{word-spacing:4.960000pt;}
.ws115{word-spacing:4.992000pt;}
.ws27{word-spacing:5.013333pt;}
.ws113{word-spacing:5.077333pt;}
.ws32{word-spacing:5.120000pt;}
.ws9d{word-spacing:5.162667pt;}
.wsa4{word-spacing:5.205333pt;}
.ws18{word-spacing:5.226667pt;}
.ws70{word-spacing:5.333333pt;}
.wsb7{word-spacing:5.386667pt;}
.wsf5{word-spacing:5.461333pt;}
.ws45{word-spacing:5.493333pt;}
.ws38{word-spacing:5.653333pt;}
.ws35{word-spacing:5.866667pt;}
.ws11f{word-spacing:5.888000pt;}
.wsae{word-spacing:5.920000pt;}
.ws98{word-spacing:5.973333pt;}
.wse1{word-spacing:6.026667pt;}
.ws108{word-spacing:6.058667pt;}
.ws122{word-spacing:6.101333pt;}
.ws41{word-spacing:6.133333pt;}
.ws25{word-spacing:6.186667pt;}
.ws81{word-spacing:6.240000pt;}
.ws112{word-spacing:6.272000pt;}
.ws75{word-spacing:6.346667pt;}
.ws40{word-spacing:6.400000pt;}
.wsf8{word-spacing:6.485333pt;}
.wsd7{word-spacing:6.506667pt;}
.ws90{word-spacing:6.528000pt;}
.ws53{word-spacing:6.560000pt;}
.ws86{word-spacing:6.613333pt;}
.ws10e{word-spacing:6.656000pt;}
.wse5{word-spacing:6.698667pt;}
.wsd9{word-spacing:6.720000pt;}
.ws34{word-spacing:6.773333pt;}
.ws5e{word-spacing:6.880000pt;}
.wsf1{word-spacing:6.954667pt;}
.ws47{word-spacing:6.986667pt;}
.ws3e{word-spacing:7.040000pt;}
.ws4a{word-spacing:7.093333pt;}
.wsb6{word-spacing:7.146667pt;}
.wsfc{word-spacing:7.168000pt;}
.wsff{word-spacing:7.338667pt;}
.wsc0{word-spacing:7.360000pt;}
.ws51{word-spacing:7.466667pt;}
.ws7d{word-spacing:7.520000pt;}
.ws7c{word-spacing:7.573333pt;}
.ws117{word-spacing:7.637333pt;}
.wsa0{word-spacing:7.680000pt;}
.ws114{word-spacing:7.722667pt;}
.wse3{word-spacing:7.786667pt;}
.ws93{word-spacing:7.808000pt;}
.ws5d{word-spacing:7.893333pt;}
.ws1e{word-spacing:8.053333pt;}
.ws1c{word-spacing:8.106667pt;}
.ws15{word-spacing:8.160000pt;}
.wsd4{word-spacing:8.213333pt;}
.ws2d{word-spacing:8.320000pt;}
.ws68{word-spacing:8.373333pt;}
.wsde{word-spacing:8.426667pt;}
.ws103{word-spacing:8.448000pt;}
.wsc2{word-spacing:8.533333pt;}
.ws19{word-spacing:8.586667pt;}
.wse4{word-spacing:8.640000pt;}
.ws66{word-spacing:8.853333pt;}
.ws44{word-spacing:9.013333pt;}
.ws5f{word-spacing:9.066667pt;}
.ws83{word-spacing:9.280000pt;}
.wsbc{word-spacing:9.333333pt;}
.ws4c{word-spacing:9.386667pt;}
.wsda{word-spacing:9.440000pt;}
.ws11a{word-spacing:9.557333pt;}
.ws2c{word-spacing:9.760000pt;}
.ws88{word-spacing:9.866667pt;}
.ws97{word-spacing:9.920000pt;}
.ws4f{word-spacing:9.973333pt;}
.ws1d{word-spacing:10.186667pt;}
.wsdf{word-spacing:10.240000pt;}
.ws110{word-spacing:10.282667pt;}
.wsb2{word-spacing:10.560000pt;}
.ws76{word-spacing:10.666667pt;}
.wsa3{word-spacing:10.794667pt;}
.wscf{word-spacing:10.826667pt;}
.ws10d{word-spacing:10.965333pt;}
.ws5b{word-spacing:11.200000pt;}
.wsc3{word-spacing:11.306667pt;}
.ws36{word-spacing:11.573333pt;}
.ws10f{word-spacing:11.648000pt;}
.ws87{word-spacing:11.840000pt;}
.ws3f{word-spacing:12.373333pt;}
.wsb3{word-spacing:12.480000pt;}
.wsa1{word-spacing:12.800000pt;}
.ws80{word-spacing:12.853333pt;}
.ws59{word-spacing:13.226667pt;}
.wsbb{word-spacing:13.280000pt;}
.wsc5{word-spacing:13.493333pt;}
.ws100{word-spacing:13.824000pt;}
.ws78{word-spacing:14.133333pt;}
.wsc4{word-spacing:14.453333pt;}
.ws84{word-spacing:14.773333pt;}
.ws123{word-spacing:14.805333pt;}
.ws82{word-spacing:14.933333pt;}
.wsa5{word-spacing:15.104000pt;}
.ws4e{word-spacing:15.520000pt;}
.ws1b{word-spacing:15.946667pt;}
.ws121{word-spacing:16.085333pt;}
.wsce{word-spacing:17.546667pt;}
.ws7b{word-spacing:18.453333pt;}
.ws43{word-spacing:22.026667pt;}
.ws8a{word-spacing:22.506667pt;}
.ws89{word-spacing:23.040000pt;}
.ws54{word-spacing:23.413333pt;}
.wsa9{word-spacing:24.021333pt;}
.ws42{word-spacing:27.840000pt;}
.wsa6{word-spacing:28.160000pt;}
.ws92{word-spacing:37.034667pt;}
.wsac{word-spacing:39.637333pt;}
.ws8d{word-spacing:47.914667pt;}
.ws8e{word-spacing:53.248000pt;}
.ws8c{word-spacing:58.581333pt;}
.wsad{word-spacing:63.360000pt;}
.wsab{word-spacing:87.082667pt;}
.ws9f{word-spacing:94.805333pt;}
.ws9c{word-spacing:145.927376pt;}
._69{margin-left:-87.082667pt;}
._6a{margin-left:-72.674133pt;}
._76{margin-left:-63.360000pt;}
._77{margin-left:-50.060800pt;}
._6d{margin-left:-41.557333pt;}
._70{margin-left:-39.722667pt;}
._6f{margin-left:-34.389333pt;}
._6c{margin-left:-28.541333pt;}
._6e{margin-left:-27.221333pt;}
._72{margin-left:-17.475200pt;}
._a{margin-left:-10.666667pt;}
._46{margin-left:-8.208784pt;}
._b{margin-left:-6.768000pt;}
._7{margin-left:-5.122667pt;}
._9{margin-left:-4.206341pt;}
._0{margin-left:-3.312000pt;}
._1{margin-left:-1.920000pt;}
._2{margin-left:-0.960000pt;}
._6{width:1.220267pt;}
._7c{width:4.916267pt;}
._6b{width:6.540800pt;}
._73{width:8.362667pt;}
._4d{width:10.624000pt;}
._12{width:11.861333pt;}
._4c{width:13.098667pt;}
._4e{width:16.554667pt;}
._21{width:17.664000pt;}
._74{width:19.848000pt;}
._1f{width:24.192000pt;}
._28{width:25.160533pt;}
._56{width:27.690667pt;}
._20{width:29.525333pt;}
._1e{width:34.858667pt;}
._22{width:37.021867pt;}
._f{width:39.040000pt;}
._e{width:40.832000pt;}
._50{width:42.666667pt;}
._58{width:44.885333pt;}
._14{width:48.512000pt;}
._64{width:51.242667pt;}
._11{width:52.266667pt;}
._d{width:53.888000pt;}
._10{width:57.984000pt;}
._79{width:62.762667pt;}
._52{width:64.000000pt;}
._7a{width:69.162667pt;}
._48{width:70.442667pt;}
._67{width:75.349333pt;}
._15{width:76.970667pt;}
._78{width:81.322667pt;}
._7b{width:83.669333pt;}
._53{width:89.514667pt;}
._5e{width:90.666667pt;}
._49{width:93.952000pt;}
._55{width:94.848000pt;}
._57{width:99.498667pt;}
._63{width:100.620800pt;}
._75{width:102.711467pt;}
._65{width:110.323200pt;}
._5c{width:113.749333pt;}
._27{width:117.248000pt;}
._29{width:126.690133pt;}
._2a{width:129.109333pt;}
._61{width:133.772800pt;}
._59{width:137.629867pt;}
._5b{width:145.676800pt;}
._25{width:147.498667pt;}
._60{width:150.643200pt;}
._26{width:152.832000pt;}
._4a{width:155.818667pt;}
._24{width:158.165333pt;}
._1c{width:159.360000pt;}
._68{width:162.146133pt;}
._19{width:164.693333pt;}
._1b{width:170.026667pt;}
._8{width:171.046933pt;}
._5d{width:178.871467pt;}
._71{width:181.107200pt;}
._17{width:183.082667pt;}
._51{width:186.666667pt;}
._18{width:188.416000pt;}
._37{width:190.178133pt;}
._16{width:193.454400pt;}
._13{width:199.296000pt;}
._4b{width:202.880000pt;}
._66{width:208.482133pt;}
._5a{width:209.676800pt;}
._43{width:219.703467pt;}
._30{width:223.287467pt;}
._1d{width:227.712000pt;}
._3d{width:229.132800pt;}
._36{width:232.802133pt;}
._2f{width:244.578133pt;}
._23{width:254.732800pt;}
._54{width:258.602667pt;}
._35{width:265.954133pt;}
._5f{width:268.940800pt;}
._1a{width:270.378667pt;}
._62{width:276.108800pt;}
._31{width:282.551467pt;}
._2b{width:287.927467pt;}
._42{width:293.175467pt;}
._c{width:307.200000pt;}
._38{width:311.010133pt;}
._3c{width:312.192000pt;}
._2e{width:313.356800pt;}
._3e{width:314.508800pt;}
._33{width:319.287467pt;}
._4f{width:327.381333pt;}
._39{width:341.858133pt;}
._3f{width:354.871467pt;}
._34{width:356.066133pt;}
._32{width:365.580800pt;}
._44{width:369.079467pt;}
._2d{width:377.996800pt;}
._2c{width:386.870400pt;}
._47{width:405.589333pt;}
._40{width:411.746133pt;}
._3{width:412.896000pt;}
._45{width:418.914133pt;}
._3a{width:431.927467pt;}
._3b{width:436.663467pt;}
._41{width:456.802133pt;}
._4{width:712.320001pt;}
._5{width:1832.090667pt;}
.fsa{font-size:27.733333pt;}
.fsc{font-size:29.528000pt;}
.fs8{font-size:32.000000pt;}
.fsb{font-size:38.400000pt;}
.fsd{font-size:39.370667pt;}
.fs7{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs6{font-size:85.333333pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:1.718800pt;}
.yf0{bottom:1.756533pt;}
.ydc{bottom:1.895867pt;}
.y2a{bottom:33.336533pt;}
.y74{bottom:36.024667pt;}
.y29{bottom:49.133867pt;}
.y2{bottom:60.086668pt;}
.y28{bottom:61.133867pt;}
.y73{bottom:63.064667pt;}
.y27{bottom:73.133867pt;}
.y1{bottom:74.753335pt;}
.y72{bottom:90.104667pt;}
.y4f{bottom:91.716533pt;}
.y124{bottom:100.100667pt;}
.y136{bottom:100.127200pt;}
.y178{bottom:100.628533pt;}
.y46{bottom:107.716533pt;}
.y123{bottom:112.100667pt;}
.y135{bottom:112.127200pt;}
.y177{bottom:112.628533pt;}
.y71{bottom:117.144667pt;}
.y45{bottom:123.716533pt;}
.y122{bottom:124.100667pt;}
.y134{bottom:124.127200pt;}
.y176{bottom:124.628533pt;}
.y121{bottom:136.100667pt;}
.y175{bottom:136.628533pt;}
.y44{bottom:139.716533pt;}
.y133{bottom:139.924533pt;}
.y70{bottom:144.184667pt;}
.y120{bottom:148.100667pt;}
.y132{bottom:151.924533pt;}
.y174{bottom:152.425867pt;}
.y43{bottom:155.716533pt;}
.y11f{bottom:160.100667pt;}
.y131{bottom:163.924533pt;}
.y173{bottom:164.425867pt;}
.y6f{bottom:171.224667pt;}
.y42{bottom:171.716533pt;}
.y11e{bottom:172.100667pt;}
.y130{bottom:175.924533pt;}
.y172{bottom:176.425867pt;}
.y11d{bottom:184.100667pt;}
.y41{bottom:187.716533pt;}
.y12f{bottom:187.924533pt;}
.y171{bottom:188.425867pt;}
.yd5{bottom:191.734267pt;}
.y6e{bottom:198.264667pt;}
.y118{bottom:202.346933pt;}
.y40{bottom:203.716533pt;}
.y12e{bottom:203.721867pt;}
.y170{bottom:204.223200pt;}
.yd1{bottom:206.806267pt;}
.y7c{bottom:210.051733pt;}
.y117{bottom:214.346933pt;}
.y12d{bottom:215.721867pt;}
.y16f{bottom:216.223200pt;}
.y3f{bottom:219.716533pt;}
.y11c{bottom:220.100667pt;}
.yba{bottom:223.431600pt;}
.y116{bottom:226.346933pt;}
.y12c{bottom:227.721867pt;}
.y16e{bottom:228.223200pt;}
.y3e{bottom:235.716533pt;}
.y115{bottom:238.346933pt;}
.y16d{bottom:240.223200pt;}
.yb8{bottom:243.911600pt;}
.yb9{bottom:247.431600pt;}
.y114{bottom:250.346933pt;}
.y3d{bottom:251.716533pt;}
.y16c{bottom:252.223200pt;}
.y64{bottom:254.383200pt;}
.yb7{bottom:255.911600pt;}
.y113{bottom:262.346933pt;}
.y3c{bottom:267.716533pt;}
.yb6{bottom:267.911600pt;}
.y16b{bottom:268.020533pt;}
.y112{bottom:274.346933pt;}
.y12b{bottom:277.716533pt;}
.yb5{bottom:279.911600pt;}
.y16a{bottom:280.020533pt;}
.y3b{bottom:283.716533pt;}
.y111{bottom:286.346933pt;}
.y12a{bottom:289.716533pt;}
.yb4{bottom:291.911600pt;}
.y169{bottom:292.020533pt;}
.y3a{bottom:299.716533pt;}
.yd4{bottom:301.809333pt;}
.ye7{bottom:303.446933pt;}
.yb3{bottom:303.911600pt;}
.y168{bottom:304.020533pt;}
.y11b{bottom:312.698400pt;}
.ye6{bottom:313.253117pt;}
.yef{bottom:313.371917pt;}
.ydb{bottom:313.513145pt;}
.y39{bottom:315.716533pt;}
.yb2{bottom:315.911600pt;}
.y167{bottom:316.020533pt;}
.y4e{bottom:318.383200pt;}
.ye5{bottom:322.871863pt;}
.yee{bottom:322.990663pt;}
.yda{bottom:323.131891pt;}
.y129{bottom:325.716533pt;}
.yb1{bottom:327.911600pt;}
.y166{bottom:328.020533pt;}
.y38{bottom:331.716533pt;}
.ydf{bottom:334.516906pt;}
.yf3{bottom:335.342773pt;}
.y128{bottom:337.716533pt;}
.y4d{bottom:338.383200pt;}
.yb0{bottom:339.911600pt;}
.y165{bottom:343.817867pt;}
.yde{bottom:344.977200pt;}
.yf2{bottom:345.803067pt;}
.y37{bottom:347.716533pt;}
.y127{bottom:349.716533pt;}
.yaf{bottom:351.911600pt;}
.y164{bottom:355.817867pt;}
.ye4{bottom:356.954557pt;}
.yed{bottom:357.073357pt;}
.yd9{bottom:357.214585pt;}
.y16{bottom:361.513334pt;}
.y126{bottom:361.716533pt;}
.y36{bottom:363.716533pt;}
.yae{bottom:363.911600pt;}
.y163{bottom:367.817867pt;}
.yad{bottom:375.911600pt;}
.y35{bottom:379.716533pt;}
.y162{bottom:379.817867pt;}
.y63{bottom:382.383200pt;}
.yac{bottom:387.911600pt;}
.ye3{bottom:391.037251pt;}
.yec{bottom:391.156051pt;}
.yd8{bottom:391.297279pt;}
.y161{bottom:395.615200pt;}
.y34{bottom:395.716533pt;}
.yab{bottom:399.911600pt;}
.y160{bottom:407.615200pt;}
.y33{bottom:411.716533pt;}
.yaa{bottom:411.911600pt;}
.ybc{bottom:415.431733pt;}
.y15{bottom:418.713334pt;}
.y15f{bottom:419.615200pt;}
.ya9{bottom:423.911600pt;}
.ye2{bottom:425.119945pt;}
.yeb{bottom:425.238745pt;}
.yd7{bottom:425.379973pt;}
.y32{bottom:427.716533pt;}
.y15e{bottom:435.412533pt;}
.ya8{bottom:435.911600pt;}
.y31{bottom:443.716533pt;}
.y15d{bottom:447.412533pt;}
.ya7{bottom:447.911600pt;}
.y14{bottom:451.852001pt;}
.ye1{bottom:459.202639pt;}
.yea{bottom:459.321439pt;}
.y15c{bottom:459.412533pt;}
.yd6{bottom:459.462667pt;}
.y30{bottom:459.716533pt;}
.ya6{bottom:459.911600pt;}
.y13{bottom:465.185335pt;}
.y15b{bottom:471.412533pt;}
.ya5{bottom:471.911600pt;}
.y2f{bottom:475.716533pt;}
.y12{bottom:478.518667pt;}
.ya4{bottom:483.911600pt;}
.y15a{bottom:487.209867pt;}
.y2e{bottom:491.716533pt;}
.ye0{bottom:493.285333pt;}
.ye9{bottom:493.404133pt;}
.ya3{bottom:495.911600pt;}
.y159{bottom:499.209867pt;}
.ye8{bottom:504.946005pt;}
.yf1{bottom:505.064267pt;}
.ydd{bottom:505.204000pt;}
.y2d{bottom:507.716533pt;}
.ya2{bottom:507.911600pt;}
.y4c{bottom:510.383200pt;}
.y158{bottom:511.209867pt;}
.yd0{bottom:517.794667pt;}
.ya1{bottom:519.911600pt;}
.ycf{bottom:523.102800pt;}
.y157{bottom:523.209867pt;}
.y2c{bottom:523.716533pt;}
.y62{bottom:526.383200pt;}
.y11a{bottom:526.514400pt;}
.ya0{bottom:531.911600pt;}
.yce{bottom:532.908584pt;}
.y156{bottom:539.007200pt;}
.y2b{bottom:539.716533pt;}
.y86{bottom:542.383200pt;}
.ycd{bottom:542.527330pt;}
.y9f{bottom:543.911600pt;}
.y155{bottom:551.007200pt;}
.y11{bottom:551.218686pt;}
.yd3{bottom:553.913706pt;}
.y4b{bottom:555.716533pt;}
.y9e{bottom:555.911600pt;}
.y154{bottom:563.007200pt;}
.yd2{bottom:564.374000pt;}
.y9d{bottom:567.911600pt;}
.y110{bottom:569.045600pt;}
.y4a{bottom:571.716533pt;}
.y153{bottom:575.007200pt;}
.ycc{bottom:576.610024pt;}
.y10{bottom:578.231992pt;}
.y9c{bottom:579.911600pt;}
.y10f{bottom:581.045600pt;}
.y49{bottom:587.716533pt;}
.y152{bottom:590.804533pt;}
.ybb{bottom:591.911600pt;}
.y10e{bottom:593.045600pt;}
.yf{bottom:594.285337pt;}
.y151{bottom:602.804533pt;}
.y48{bottom:603.716533pt;}
.y10d{bottom:605.045600pt;}
.y61{bottom:606.383200pt;}
.ye{bottom:610.338661pt;}
.ycb{bottom:610.692718pt;}
.y150{bottom:614.804533pt;}
.y9b{bottom:615.911600pt;}
.y10c{bottom:617.045600pt;}
.y85{bottom:619.716533pt;}
.yd{bottom:626.392006pt;}
.y9a{bottom:627.911600pt;}
.y10b{bottom:629.045600pt;}
.y14f{bottom:630.601867pt;}
.y60{bottom:635.716533pt;}
.y99{bottom:639.911600pt;}
.y10a{bottom:641.045600pt;}
.y14e{bottom:642.601867pt;}
.yc{bottom:642.858660pt;}
.y6b{bottom:644.593467pt;}
.yca{bottom:644.775412pt;}
.y5f{bottom:651.716533pt;}
.y98{bottom:651.911600pt;}
.y109{bottom:653.045600pt;}
.y14d{bottom:654.601867pt;}
.y6a{bottom:656.593467pt;}
.y26{bottom:663.854800pt;}
.y108{bottom:665.045600pt;}
.y5e{bottom:667.716533pt;}
.y69{bottom:668.593467pt;}
.y14c{bottom:670.399200pt;}
.y25{bottom:675.854800pt;}
.y107{bottom:677.045600pt;}
.yc9{bottom:678.858106pt;}
.y68{bottom:680.593467pt;}
.y14b{bottom:682.399200pt;}
.y5d{bottom:683.716533pt;}
.y24{bottom:687.854800pt;}
.y106{bottom:689.045600pt;}
.yb{bottom:689.880002pt;}
.y67{bottom:692.593467pt;}
.y14a{bottom:694.399200pt;}
.y5c{bottom:699.716533pt;}
.y23{bottom:699.854800pt;}
.y105{bottom:701.045600pt;}
.y97{bottom:704.250667pt;}
.y66{bottom:704.593467pt;}
.y149{bottom:706.399200pt;}
.ya{bottom:708.546669pt;}
.y22{bottom:711.854800pt;}
.y96{bottom:712.730667pt;}
.yc8{bottom:712.940800pt;}
.y104{bottom:713.045600pt;}
.y5b{bottom:715.716533pt;}
.y65{bottom:716.593467pt;}
.y84{bottom:718.383200pt;}
.y18a{bottom:718.389467pt;}
.y148{bottom:722.196533pt;}
.y21{bottom:723.854800pt;}
.y103{bottom:725.045600pt;}
.y9{bottom:727.213335pt;}
.y6c{bottom:730.382667pt;}
.y189{bottom:730.389467pt;}
.y5a{bottom:731.716533pt;}
.y147{bottom:734.196533pt;}
.y20{bottom:735.854800pt;}
.y95{bottom:736.730667pt;}
.y102{bottom:737.045600pt;}
.y75{bottom:739.353200pt;}
.yc4{bottom:741.257600pt;}
.y188{bottom:742.389467pt;}
.y119{bottom:743.834400pt;}
.y146{bottom:746.196533pt;}
.y83{bottom:747.716533pt;}
.y1f{bottom:747.854800pt;}
.y94{bottom:748.730667pt;}
.y101{bottom:749.045600pt;}
.y59{bottom:750.383200pt;}
.yc3{bottom:751.063384pt;}
.y187{bottom:754.389467pt;}
.y145{bottom:758.196533pt;}
.y199{bottom:759.456133pt;}
.yc2{bottom:760.682130pt;}
.y93{bottom:760.730667pt;}
.y100{bottom:761.045600pt;}
.y1e{bottom:763.374800pt;}
.y82{bottom:763.716533pt;}
.y186{bottom:770.186800pt;}
.y58{bottom:770.383200pt;}
.y198{bottom:771.456133pt;}
.y92{bottom:772.730667pt;}
.yff{bottom:773.045600pt;}
.yc7{bottom:773.299439pt;}
.y144{bottom:773.993867pt;}
.y8{bottom:778.470670pt;}
.y81{bottom:779.716533pt;}
.y185{bottom:782.186800pt;}
.yc6{bottom:783.759733pt;}
.y91{bottom:784.730667pt;}
.yfe{bottom:785.045600pt;}
.y143{bottom:785.993867pt;}
.y197{bottom:788.522800pt;}
.y184{bottom:794.186800pt;}
.yc1{bottom:794.764824pt;}
.y80{bottom:795.716533pt;}
.y90{bottom:796.730667pt;}
.yfd{bottom:797.045600pt;}
.y142{bottom:797.993867pt;}
.y196{bottom:800.522800pt;}
.y7{bottom:806.470670pt;}
.y1d{bottom:806.752400pt;}
.y8f{bottom:808.730667pt;}
.yfc{bottom:809.045600pt;}
.y183{bottom:809.984133pt;}
.y141{bottom:809.993867pt;}
.y7f{bottom:811.716533pt;}
.y195{bottom:812.522800pt;}
.y8e{bottom:820.730667pt;}
.yfb{bottom:821.045600pt;}
.y182{bottom:821.984133pt;}
.y194{bottom:824.522800pt;}
.y1c{bottom:825.419067pt;}
.y140{bottom:825.791200pt;}
.y57{bottom:827.716533pt;}
.yc0{bottom:828.847518pt;}
.y8d{bottom:832.730667pt;}
.yfa{bottom:833.045600pt;}
.y6{bottom:834.470665pt;}
.y193{bottom:836.522800pt;}
.y181{bottom:837.781467pt;}
.y13f{bottom:837.791200pt;}
.y56{bottom:843.716533pt;}
.y1b{bottom:844.085733pt;}
.y8c{bottom:844.730667pt;}
.yf9{bottom:845.045600pt;}
.y180{bottom:849.781467pt;}
.y13e{bottom:849.791200pt;}
.y125{bottom:850.383200pt;}
.y192{bottom:853.589467pt;}
.y8b{bottom:856.730667pt;}
.y55{bottom:859.716533pt;}
.y17f{bottom:861.781467pt;}
.y5{bottom:862.470665pt;}
.ybf{bottom:862.930212pt;}
.y13d{bottom:865.588533pt;}
.y191{bottom:865.589467pt;}
.y7b{bottom:866.511200pt;}
.y8a{bottom:868.730667pt;}
.yf8{bottom:869.045600pt;}
.y17e{bottom:873.781467pt;}
.y54{bottom:875.716533pt;}
.y7a{bottom:876.113867pt;}
.y13c{bottom:877.588533pt;}
.y190{bottom:877.589467pt;}
.yf7{bottom:881.045600pt;}
.y79{bottom:885.716533pt;}
.y1a{bottom:889.209200pt;}
.y17d{bottom:889.578800pt;}
.y13b{bottom:889.588533pt;}
.y53{bottom:891.716533pt;}
.y89{bottom:892.730667pt;}
.y18f{bottom:893.386800pt;}
.y78{bottom:895.319200pt;}
.ybe{bottom:897.012906pt;}
.y17c{bottom:901.578800pt;}
.y13a{bottom:901.588533pt;}
.y77{bottom:904.921867pt;}
.y18e{bottom:905.386800pt;}
.y52{bottom:907.716533pt;}
.y19{bottom:913.209200pt;}
.y17b{bottom:913.578800pt;}
.y76{bottom:914.524533pt;}
.yf6{bottom:917.045600pt;}
.y139{bottom:917.385867pt;}
.y18d{bottom:917.386800pt;}
.y4{bottom:920.485335pt;}
.y51{bottom:923.716533pt;}
.y7e{bottom:926.383200pt;}
.y88{bottom:928.730667pt;}
.yf5{bottom:929.045600pt;}
.y17a{bottom:929.376133pt;}
.y138{bottom:929.385867pt;}
.y18c{bottom:929.386800pt;}
.ybd{bottom:931.095600pt;}
.y18{bottom:937.209200pt;}
.y50{bottom:939.716533pt;}
.y87{bottom:940.730667pt;}
.yf4{bottom:941.045600pt;}
.y179{bottom:941.376133pt;}
.y137{bottom:941.385867pt;}
.y18b{bottom:941.386800pt;}
.y7d{bottom:942.383200pt;}
.yc5{bottom:942.756672pt;}
.y17{bottom:983.936400pt;}
.y47{bottom:984.193600pt;}
.y3{bottom:1035.664002pt;}
.h1b{height:22.400000pt;}
.h18{height:25.070933pt;}
.h1d{height:26.693312pt;}
.hf{height:28.928000pt;}
.h12{height:29.866667pt;}
.hc{height:31.445333pt;}
.h4{height:32.645833pt;}
.h19{height:34.713600pt;}
.h1e{height:35.591083pt;}
.h1a{height:36.480000pt;}
.h1c{height:36.480533pt;}
.h2{height:36.726562pt;}
.h13{height:37.333333pt;}
.h11{height:38.570667pt;}
.h15{height:38.986667pt;}
.h8{height:40.000000pt;}
.h7{height:40.807292pt;}
.h10{height:43.008000pt;}
.h22{height:43.392000pt;}
.h9{height:47.147893pt;}
.h14{height:48.213333pt;}
.h6{height:48.968750pt;}
.h16{height:53.034667pt;}
.he{height:53.760000pt;}
.h3{height:61.210938pt;}
.h5{height:73.453125pt;}
.hd{height:77.141333pt;}
.h21{height:213.638667pt;}
.h20{height:214.130667pt;}
.h1f{height:216.189333pt;}
.h17{height:218.278667pt;}
.hb{height:1058.000000pt;}
.ha{height:1058.268000pt;}
.h1{height:1110.666667pt;}
.h0{height:1110.720000pt;}
.w4{width:202.532000pt;}
.w6{width:215.184000pt;}
.w5{width:220.062667pt;}
.w7{width:221.253333pt;}
.w2{width:812.598667pt;}
.w3{width:812.666667pt;}
.w0{width:845.760000pt;}
.w1{width:846.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:7.222267pt;}
.xe{left:11.895200pt;}
.x7{left:68.031467pt;}
.x1e{left:69.384800pt;}
.x9{left:71.811067pt;}
.x1f{left:73.489192pt;}
.xc{left:79.370133pt;}
.xa{left:83.144400pt;}
.x20{left:85.233954pt;}
.x12{left:123.145733pt;}
.x26{left:127.102000pt;}
.x4{left:129.466667pt;}
.x3{left:170.560000pt;}
.x5{left:175.733333pt;}
.x21{left:192.358667pt;}
.x2{left:209.837329pt;}
.x1{left:260.969328pt;}
.x13{left:279.685067pt;}
.x14{left:283.461067pt;}
.x25{left:292.289333pt;}
.x22{left:296.417200pt;}
.x27{left:298.260000pt;}
.x23{left:300.521592pt;}
.x24{left:312.266354pt;}
.x28{left:341.227600pt;}
.x8{left:415.748000pt;}
.xb{left:427.081333pt;}
.x6{left:468.533333pt;}
.xd{left:478.890667pt;}
.xf{left:482.746667pt;}
.x11{left:497.951467pt;}
.x10{left:512.043333pt;}
.x1c{left:519.940000pt;}
.x15{left:524.483333pt;}
.x1a{left:526.323768pt;}
.x16{left:528.587725pt;}
.x17{left:532.692117pt;}
.x18{left:540.332487pt;}
.x1b{left:574.635067pt;}
.x19{left:647.457467pt;}
}




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