
    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_c42b6bd9ae5c7a9546d91ff0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_e41f41b47edc54a848dc5d99.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_2c2ee9c34d473862896b8b58.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_0afd1cc0efaa773b47aad261.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948730;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_c2786c378e3231b692d85200.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_8a45dccaf44831c15a5bd670.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_3e000b7beebd27032a9ba75f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_8261b86d0e09f547e65ce650.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_faf9c27eb832ffad02afe09d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_9d7f6a0b4f24b5bd8aeefb99.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.372070;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_914bc2b3f615e2bfa53ad885.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_2140dd19bf29088dc5e6fbfd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_0b56f526068b46daf0c7f316.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_0645346f59d50f04954c45db.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_7d4659df8bb6965cd79fa4a7.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_353d4a61d470bed70d9d23fc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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:ff11;src:url('chunks/assets/font_b7d351ff0cbbc14bc54b17fd.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;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:-14.580000px;}
.v3{vertical-align:-11.400000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:16.200600px;}
.v1{vertical-align:19.440000px;}
.ls24{letter-spacing:-4.080000px;}
.ls37{letter-spacing:-3.996000px;}
.ls13{letter-spacing:-2.040000px;}
.ls2{letter-spacing:-1.200000px;}
.ls23{letter-spacing:-0.900000px;}
.ls6{letter-spacing:-0.600000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.300000px;}
.ls1{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.002400px;}
.ls0{letter-spacing:0.005400px;}
.ls22{letter-spacing:0.007800px;}
.lsd{letter-spacing:0.008400px;}
.ls12{letter-spacing:0.022200px;}
.ls21{letter-spacing:0.029400px;}
.ls1b{letter-spacing:0.039000px;}
.ls19{letter-spacing:0.570600px;}
.lse{letter-spacing:0.576000px;}
.lsb{letter-spacing:0.590400px;}
.lsc{letter-spacing:0.595200px;}
.lsf{letter-spacing:0.599400px;}
.ls9{letter-spacing:0.600000px;}
.ls18{letter-spacing:0.600600px;}
.ls1a{letter-spacing:0.634200px;}
.ls1c{letter-spacing:1.020000px;}
.ls2b{letter-spacing:1.296000px;}
.ls3{letter-spacing:1.440000px;}
.ls32{letter-spacing:1.890000px;}
.ls26{letter-spacing:2.520000px;}
.ls10{letter-spacing:2.700000px;}
.ls2a{letter-spacing:2.808000px;}
.ls3f{letter-spacing:3.510000px;}
.ls28{letter-spacing:4.050000px;}
.ls15{letter-spacing:4.140000px;}
.ls11{letter-spacing:4.386000px;}
.ls2d{letter-spacing:4.590000px;}
.ls8{letter-spacing:4.800000px;}
.ls20{letter-spacing:5.160000px;}
.ls3e{letter-spacing:5.238000px;}
.lsa{letter-spacing:5.820000px;}
.ls30{letter-spacing:5.994000px;}
.ls1e{letter-spacing:6.060000px;}
.ls3a{letter-spacing:6.480000px;}
.ls1f{letter-spacing:6.900000px;}
.ls16{letter-spacing:7.500000px;}
.ls34{letter-spacing:7.506000px;}
.ls2c{letter-spacing:8.370000px;}
.ls14{letter-spacing:8.820000px;}
.ls17{letter-spacing:9.060000px;}
.ls36{letter-spacing:9.990000px;}
.ls27{letter-spacing:10.500000px;}
.ls3d{letter-spacing:11.448000px;}
.ls35{letter-spacing:11.664000px;}
.ls2f{letter-spacing:12.366000px;}
.ls3c{letter-spacing:12.636000px;}
.ls4{letter-spacing:12.660000px;}
.ls33{letter-spacing:13.392000px;}
.ls5{letter-spacing:13.440000px;}
.ls39{letter-spacing:14.148000px;}
.ls38{letter-spacing:15.282000px;}
.ls40{letter-spacing:15.714000px;}
.ls2e{letter-spacing:16.956000px;}
.ls29{letter-spacing:17.928000px;}
.ls31{letter-spacing:20.682000px;}
.ls3b{letter-spacing:21.492000px;}
.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;}
}
.ws28{word-spacing:-39.678000px;}
.ws1{word-spacing:-20.016000px;}
.wsb{word-spacing:-16.680000px;}
.ws36{word-spacing:-15.600000px;}
.wsa{word-spacing:-15.000000px;}
.wsc{word-spacing:-14.400000px;}
.ws29{word-spacing:-14.178000px;}
.ws6c{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.440000px;}
.ws0{word-spacing:-13.010400px;}
.wse{word-spacing:-12.660000px;}
.ws1b{word-spacing:-11.700000px;}
.ws5f{word-spacing:-10.500000px;}
.ws5d{word-spacing:-9.750000px;}
.ws6d{word-spacing:-9.504000px;}
.ws3d{word-spacing:-8.460000px;}
.ws3a{word-spacing:-8.220000px;}
.ws3c{word-spacing:-6.900000px;}
.ws49{word-spacing:-6.300000px;}
.ws2b{word-spacing:-5.820000px;}
.ws48{word-spacing:-5.460000px;}
.ws27{word-spacing:-4.800000px;}
.ws77{word-spacing:-3.996000px;}
.ws19{word-spacing:-3.900000px;}
.ws26{word-spacing:-3.780000px;}
.ws3b{word-spacing:-3.540000px;}
.ws2c{word-spacing:-3.120000px;}
.ws92{word-spacing:-2.700000px;}
.ws15{word-spacing:-2.640000px;}
.ws5e{word-spacing:-2.520000px;}
.ws6f{word-spacing:-2.430000px;}
.ws7e{word-spacing:-2.376000px;}
.ws30{word-spacing:-2.280000px;}
.ws32{word-spacing:-2.193000px;}
.ws66{word-spacing:-2.100000px;}
.ws7d{word-spacing:-1.890000px;}
.ws70{word-spacing:-1.836000px;}
.ws42{word-spacing:-1.734000px;}
.ws91{word-spacing:-1.674000px;}
.ws34{word-spacing:-1.071000px;}
.ws52{word-spacing:-0.969000px;}
.ws43{word-spacing:-0.660000px;}
.ws2a{word-spacing:-0.600000px;}
.ws8b{word-spacing:-0.594000px;}
.ws31{word-spacing:-0.510000px;}
.ws78{word-spacing:-0.486000px;}
.ws12{word-spacing:-0.480000px;}
.ws46{word-spacing:-0.420000px;}
.ws55{word-spacing:-0.408000px;}
.ws22{word-spacing:-0.300000px;}
.ws5b{word-spacing:-0.204000px;}
.ws38{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws51{word-spacing:0.102000px;}
.ws24{word-spacing:0.300000px;}
.ws6{word-spacing:0.360000px;}
.ws6b{word-spacing:0.420000px;}
.ws57{word-spacing:0.459000px;}
.ws18{word-spacing:0.600000px;}
.ws59{word-spacing:0.714000px;}
.ws54{word-spacing:0.900000px;}
.ws47{word-spacing:1.140000px;}
.ws5{word-spacing:1.200000px;}
.ws33{word-spacing:1.275000px;}
.ws56{word-spacing:1.326000px;}
.ws82{word-spacing:1.350000px;}
.ws35{word-spacing:1.479000px;}
.ws74{word-spacing:1.512000px;}
.ws80{word-spacing:1.674000px;}
.ws16{word-spacing:1.680000px;}
.ws58{word-spacing:1.836000px;}
.ws7a{word-spacing:1.890000px;}
.ws65{word-spacing:1.920000px;}
.ws1a{word-spacing:2.040000px;}
.ws63{word-spacing:2.520000px;}
.ws39{word-spacing:2.640000px;}
.ws1d{word-spacing:2.700000px;}
.ws5c{word-spacing:2.703000px;}
.ws71{word-spacing:2.808000px;}
.ws20{word-spacing:2.820000px;}
.ws1f{word-spacing:2.880000px;}
.ws4e{word-spacing:3.009000px;}
.ws7b{word-spacing:3.024000px;}
.ws4d{word-spacing:3.240000px;}
.ws8a{word-spacing:3.402000px;}
.ws8e{word-spacing:3.456000px;}
.ws68{word-spacing:3.780000px;}
.ws1e{word-spacing:3.900000px;}
.ws3{word-spacing:4.050000px;}
.ws3e{word-spacing:4.080000px;}
.ws69{word-spacing:4.200000px;}
.ws41{word-spacing:4.386000px;}
.ws4c{word-spacing:4.500000px;}
.ws53{word-spacing:4.560000px;}
.ws73{word-spacing:4.590000px;}
.ws7{word-spacing:4.740000px;}
.ws4f{word-spacing:4.794000px;}
.ws2f{word-spacing:4.800000px;}
.ws2d{word-spacing:5.040000px;}
.ws5a{word-spacing:5.151000px;}
.ws8d{word-spacing:5.238000px;}
.ws40{word-spacing:5.304000px;}
.ws3f{word-spacing:5.508000px;}
.ws79{word-spacing:5.994000px;}
.ws87{word-spacing:6.426000px;}
.ws4{word-spacing:6.804000px;}
.ws2e{word-spacing:6.840000px;}
.ws60{word-spacing:7.200000px;}
.ws4b{word-spacing:7.260000px;}
.ws7f{word-spacing:7.452000px;}
.ws1c{word-spacing:7.500000px;}
.ws21{word-spacing:7.680000px;}
.ws6a{word-spacing:7.740000px;}
.ws50{word-spacing:7.905000px;}
.ws72{word-spacing:8.046000px;}
.ws37{word-spacing:8.220000px;}
.ws67{word-spacing:8.280000px;}
.ws11{word-spacing:8.340000px;}
.ws17{word-spacing:8.640000px;}
.ws44{word-spacing:8.760000px;}
.ws88{word-spacing:9.504000px;}
.ws4a{word-spacing:11.400000px;}
.ws8c{word-spacing:11.448000px;}
.ws81{word-spacing:11.664000px;}
.ws8{word-spacing:11.820000px;}
.ws45{word-spacing:12.240000px;}
.ws76{word-spacing:12.366000px;}
.wsd{word-spacing:12.660000px;}
.ws64{word-spacing:12.840000px;}
.ws7c{word-spacing:13.392000px;}
.wsf{word-spacing:13.440000px;}
.ws83{word-spacing:13.554000px;}
.ws86{word-spacing:14.094000px;}
.ws85{word-spacing:15.228000px;}
.ws13{word-spacing:15.240000px;}
.ws23{word-spacing:15.420000px;}
.ws90{word-spacing:15.714000px;}
.ws75{word-spacing:16.956000px;}
.ws6e{word-spacing:17.982000px;}
.ws62{word-spacing:18.000000px;}
.ws9{word-spacing:19.560000px;}
.ws84{word-spacing:20.358000px;}
.ws89{word-spacing:21.492000px;}
.ws8f{word-spacing:26.190000px;}
.ws14{word-spacing:38.160000px;}
.ws61{word-spacing:49.800000px;}
.ws25{word-spacing:61.500000px;}
._1d{margin-left:-16.680000px;}
._0{margin-left:-15.012000px;}
._11{margin-left:-13.200000px;}
._23{margin-left:-10.494000px;}
._1b{margin-left:-7.692000px;}
._e{margin-left:-6.454200px;}
._5{margin-left:-4.644000px;}
._2{margin-left:-3.564000px;}
._7{margin-left:-2.538000px;}
._4{margin-left:-1.350000px;}
._6{width:1.350000px;}
._d{width:2.760000px;}
._1{width:4.266000px;}
._f{width:5.520000px;}
._3{width:6.534000px;}
._b{width:7.776000px;}
._a{width:9.264000px;}
._14{width:10.464000px;}
._17{width:12.396600px;}
._15{width:13.800000px;}
._24{width:15.540000px;}
._9{width:16.584000px;}
._1e{width:17.664000px;}
._16{width:19.500000px;}
._1a{width:20.760000px;}
._21{width:21.900000px;}
._25{width:23.052000px;}
._c{width:24.060000px;}
._1f{width:25.140000px;}
._20{width:26.340000px;}
._1c{width:34.707600px;}
._19{width:38.478000px;}
._8{width:58.508400px;}
._18{width:61.508400px;}
._13{width:466.257900px;}
._10{width:1034.009400px;}
._22{width:1981.152000px;}
._12{width:2573.676000px;}
.fc1{color:rgb(58,83,161);}
.fc0{color:rgb(29,29,27);}
.fs3{font-size:35.100000px;}
.fsa{font-size:39.000000px;}
.fs8{font-size:44.100000px;}
.fs2{font-size:46.800000px;}
.fs7{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:67.500000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:30.056850px;}
.y39{bottom:43.286850px;}
.yd5{bottom:95.665500px;}
.y100{bottom:95.670000px;}
.yea{bottom:95.988000px;}
.y28{bottom:96.586500px;}
.y13f{bottom:97.154100px;}
.y36{bottom:97.845000px;}
.y12e{bottom:97.865550px;}
.y1b6{bottom:98.181000px;}
.y179{bottom:107.920200px;}
.yae{bottom:108.561600px;}
.yff{bottom:109.911000px;}
.yd4{bottom:109.920000px;}
.ye9{bottom:110.238000px;}
.yb7{bottom:110.759100px;}
.y8d{bottom:112.956600px;}
.y1b5{bottom:114.381000px;}
.y27{bottom:114.586500px;}
.y13e{bottom:115.154100px;}
.y35{bottom:115.845000px;}
.y12d{bottom:115.865550px;}
.yf3{bottom:115.866750px;}
.y6e{bottom:115.880100px;}
.y178{bottom:124.120200px;}
.yd3{bottom:124.165500px;}
.ye8{bottom:124.483500px;}
.yad{bottom:126.561600px;}
.yb6{bottom:128.759100px;}
.yf2{bottom:130.112250px;}
.y1b4{bottom:130.581000px;}
.y8c{bottom:130.956600px;}
.y26{bottom:132.586500px;}
.y13d{bottom:133.154100px;}
.y34{bottom:133.845000px;}
.y12c{bottom:133.865550px;}
.y6d{bottom:133.880100px;}
.yd2{bottom:138.415500px;}
.yfe{bottom:138.420000px;}
.ye7{bottom:138.738000px;}
.y177{bottom:140.320200px;}
.yf1{bottom:144.366750px;}
.yac{bottom:144.561600px;}
.yb5{bottom:146.759100px;}
.y1b3{bottom:146.781000px;}
.y8b{bottom:148.956600px;}
.y25{bottom:150.586500px;}
.y13c{bottom:151.154100px;}
.y33{bottom:151.845000px;}
.y12b{bottom:151.865550px;}
.y6c{bottom:151.880100px;}
.yd1{bottom:152.670000px;}
.ye6{bottom:152.979000px;}
.y176{bottom:156.520200px;}
.yf0{bottom:158.616750px;}
.yab{bottom:162.554100px;}
.y1b2{bottom:162.981000px;}
.yb4{bottom:164.759100px;}
.yd0{bottom:166.911000px;}
.yfd{bottom:166.915500px;}
.y8a{bottom:166.956600px;}
.ye5{bottom:167.233500px;}
.y24{bottom:168.586500px;}
.y13b{bottom:169.154100px;}
.y32{bottom:169.845000px;}
.y12a{bottom:169.865550px;}
.y6b{bottom:169.880100px;}
.y175{bottom:172.720200px;}
.yef{bottom:172.862250px;}
.y1b1{bottom:179.181000px;}
.yfc{bottom:181.156500px;}
.ycf{bottom:181.165500px;}
.ye4{bottom:181.483500px;}
.yb3{bottom:182.759100px;}
.y89{bottom:184.956600px;}
.y23{bottom:186.586500px;}
.yee{bottom:187.116750px;}
.y13a{bottom:187.154100px;}
.y31{bottom:187.845000px;}
.y129{bottom:187.865550px;}
.y6a{bottom:187.880100px;}
.y174{bottom:188.920200px;}
.y1b0{bottom:195.381000px;}
.yfb{bottom:195.411000px;}
.yce{bottom:195.415500px;}
.ye3{bottom:195.738000px;}
.yaa{bottom:200.759100px;}
.yed{bottom:201.362250px;}
.y88{bottom:202.956600px;}
.y22{bottom:204.586500px;}
.y173{bottom:205.120200px;}
.y139{bottom:205.154100px;}
.y30{bottom:205.845000px;}
.y128{bottom:205.865550px;}
.y69{bottom:205.880100px;}
.yfa{bottom:209.665500px;}
.ycd{bottom:209.670000px;}
.y1af{bottom:211.581000px;}
.yec{bottom:215.616750px;}
.ya9{bottom:218.759100px;}
.y87{bottom:220.956600px;}
.y172{bottom:221.320200px;}
.y21{bottom:222.586500px;}
.y138{bottom:223.154100px;}
.y2f{bottom:223.845000px;}
.y127{bottom:223.865550px;}
.y68{bottom:223.880100px;}
.yf9{bottom:223.920000px;}
.y1ae{bottom:227.781000px;}
.ya8{bottom:236.759100px;}
.y171{bottom:237.520200px;}
.y86{bottom:238.956600px;}
.y20{bottom:240.586500px;}
.y137{bottom:241.154100px;}
.y2e{bottom:241.845000px;}
.y126{bottom:241.865550px;}
.y67{bottom:241.880100px;}
.y1ad{bottom:243.981000px;}
.y170{bottom:253.720200px;}
.ya7{bottom:254.759100px;}
.y85{bottom:256.956600px;}
.y1f{bottom:258.586500px;}
.y136{bottom:259.154100px;}
.y2d{bottom:259.845000px;}
.y125{bottom:259.865550px;}
.y66{bottom:259.880100px;}
.y1ac{bottom:260.181000px;}
.y16f{bottom:269.920200px;}
.yb2{bottom:272.751600px;}
.ya6{bottom:272.759100px;}
.y84{bottom:274.956600px;}
.y1ab{bottom:276.381000px;}
.y1e{bottom:276.586500px;}
.y135{bottom:277.154100px;}
.y2c{bottom:277.845000px;}
.y124{bottom:277.865550px;}
.y65{bottom:277.880100px;}
.y16e{bottom:286.120200px;}
.ya5{bottom:290.759100px;}
.y1aa{bottom:292.581000px;}
.y83{bottom:292.956600px;}
.y1d{bottom:294.586500px;}
.y134{bottom:295.154100px;}
.y2b{bottom:295.845000px;}
.y123{bottom:295.865550px;}
.y64{bottom:295.880100px;}
.y16d{bottom:302.320200px;}
.ya4{bottom:308.751600px;}
.y1a9{bottom:308.781000px;}
.y82{bottom:310.956600px;}
.y133{bottom:313.154100px;}
.y2a{bottom:313.846500px;}
.y122{bottom:313.865550px;}
.y63{bottom:313.880100px;}
.y16c{bottom:318.520200px;}
.y1a8{bottom:324.981000px;}
.y81{bottom:328.956600px;}
.y1c{bottom:329.595000px;}
.y132{bottom:331.154100px;}
.y29{bottom:331.846500px;}
.y121{bottom:331.865550px;}
.y62{bottom:331.880100px;}
.y16b{bottom:334.720200px;}
.y1a7{bottom:341.181000px;}
.y80{bottom:346.956600px;}
.y131{bottom:349.154100px;}
.y120{bottom:349.865550px;}
.y61{bottom:349.880100px;}
.y16a{bottom:350.920200px;}
.y1a6{bottom:357.381000px;}
.yb1{bottom:364.949100px;}
.y7f{bottom:364.956600px;}
.y169{bottom:367.120200px;}
.y130{bottom:367.154100px;}
.y11f{bottom:367.865550px;}
.y1a5{bottom:373.581000px;}
.y7e{bottom:382.956600px;}
.y168{bottom:383.320200px;}
.y60{bottom:384.888600px;}
.y12f{bottom:385.154100px;}
.y11e{bottom:385.865550px;}
.y1a4{bottom:389.781000px;}
.y1b{bottom:398.142000px;}
.y167{bottom:399.520200px;}
.y7d{bottom:400.956600px;}
.yb0{bottom:403.154100px;}
.y11d{bottom:403.865550px;}
.y1a3{bottom:405.981000px;}
.y1a{bottom:413.437500px;}
.y166{bottom:415.720200px;}
.y7c{bottom:418.956600px;}
.yaf{bottom:421.154100px;}
.y11c{bottom:421.865550px;}
.y1a2{bottom:422.181000px;}
.y165{bottom:431.920200px;}
.y7b{bottom:436.956600px;}
.y1a1{bottom:438.381000px;}
.y5f{bottom:439.154100px;}
.y11b{bottom:439.865550px;}
.y19{bottom:444.933000px;}
.y164{bottom:448.120200px;}
.y1a0{bottom:454.581000px;}
.y7a{bottom:454.956600px;}
.y5e{bottom:457.154100px;}
.y11a{bottom:457.865550px;}
.y18{bottom:460.228500px;}
.y163{bottom:464.320200px;}
.y19f{bottom:470.781000px;}
.y79{bottom:472.956600px;}
.y5d{bottom:475.154100px;}
.y17{bottom:475.524000px;}
.y119{bottom:475.865550px;}
.y162{bottom:480.520200px;}
.y19e{bottom:486.981000px;}
.y16{bottom:490.819500px;}
.y78{bottom:490.956600px;}
.y5c{bottom:493.154100px;}
.y118{bottom:493.865550px;}
.y161{bottom:496.720200px;}
.y19d{bottom:503.181000px;}
.y15{bottom:506.115000px;}
.y77{bottom:508.956600px;}
.y5b{bottom:511.154100px;}
.y117{bottom:511.865550px;}
.y160{bottom:512.920200px;}
.y19c{bottom:519.381000px;}
.y14{bottom:521.410500px;}
.y76{bottom:526.956600px;}
.y15f{bottom:529.120200px;}
.y5a{bottom:529.154100px;}
.y116{bottom:529.865550px;}
.y19b{bottom:535.581000px;}
.y13{bottom:536.710500px;}
.y75{bottom:544.956600px;}
.y15e{bottom:545.320200px;}
.y59{bottom:547.154100px;}
.y115{bottom:547.865550px;}
.y19a{bottom:551.781000px;}
.y12{bottom:552.033000px;}
.y15d{bottom:561.520200px;}
.y74{bottom:562.956600px;}
.y58{bottom:565.154100px;}
.y114{bottom:565.865550px;}
.y11{bottom:567.328500px;}
.y199{bottom:567.981000px;}
.y15c{bottom:577.720200px;}
.y73{bottom:580.956600px;}
.y10{bottom:582.624000px;}
.y57{bottom:583.154100px;}
.y113{bottom:583.865550px;}
.y198{bottom:584.181000px;}
.y15b{bottom:593.920200px;}
.y72{bottom:598.956600px;}
.y197{bottom:600.381000px;}
.y1c9{bottom:600.394200px;}
.y1df{bottom:600.665850px;}
.y56{bottom:601.154100px;}
.y112{bottom:601.865550px;}
.y15a{bottom:610.120200px;}
.y196{bottom:616.581000px;}
.y1c8{bottom:616.594200px;}
.y71{bottom:616.956600px;}
.y1de{bottom:618.665850px;}
.y55{bottom:619.154100px;}
.y111{bottom:619.865550px;}
.y159{bottom:626.320200px;}
.yf{bottom:627.079500px;}
.y195{bottom:632.781000px;}
.y1c7{bottom:632.794200px;}
.y70{bottom:634.949100px;}
.ya3{bottom:634.956600px;}
.y1dd{bottom:636.665850px;}
.y54{bottom:637.154100px;}
.y110{bottom:637.865550px;}
.y158{bottom:642.520200px;}
.y194{bottom:648.981000px;}
.y1c6{bottom:648.994200px;}
.ya2{bottom:652.956600px;}
.y53{bottom:655.154100px;}
.y10f{bottom:655.865550px;}
.y157{bottom:658.720200px;}
.y193{bottom:665.181000px;}
.y1c5{bottom:665.194200px;}
.ya1{bottom:670.956600px;}
.y52{bottom:673.154100px;}
.y10e{bottom:673.865550px;}
.y156{bottom:674.920200px;}
.ye{bottom:677.475000px;}
.y192{bottom:681.381000px;}
.y1c4{bottom:681.394200px;}
.ya0{bottom:688.956600px;}
.y155{bottom:691.120200px;}
.y51{bottom:691.154100px;}
.y10d{bottom:691.865550px;}
.yd{bottom:695.470500px;}
.y191{bottom:697.581000px;}
.y1c3{bottom:697.594200px;}
.y9f{bottom:706.956600px;}
.y154{bottom:707.320200px;}
.y50{bottom:709.154100px;}
.y10c{bottom:709.865550px;}
.y190{bottom:713.781000px;}
.y1c2{bottom:713.794200px;}
.yc{bottom:717.115500px;}
.y153{bottom:723.520200px;}
.y9e{bottom:724.956600px;}
.y4f{bottom:727.154100px;}
.y10b{bottom:727.865550px;}
.y18f{bottom:729.981000px;}
.y1c1{bottom:729.994200px;}
.yb{bottom:731.470500px;}
.y152{bottom:739.720200px;}
.y9d{bottom:742.956600px;}
.y4e{bottom:745.154100px;}
.y10a{bottom:745.865550px;}
.y18e{bottom:746.181000px;}
.y1c0{bottom:746.194200px;}
.ya{bottom:753.115500px;}
.y151{bottom:755.920200px;}
.y9c{bottom:760.956600px;}
.y18d{bottom:762.381000px;}
.y1bf{bottom:762.394200px;}
.y4d{bottom:763.154100px;}
.y109{bottom:763.865550px;}
.y9{bottom:767.470500px;}
.y150{bottom:772.120200px;}
.y1dc{bottom:778.580700px;}
.y18c{bottom:778.581000px;}
.y1be{bottom:778.594200px;}
.y9b{bottom:778.956600px;}
.y4c{bottom:781.154100px;}
.y108{bottom:781.865550px;}
.y14f{bottom:788.320200px;}
.y8{bottom:789.115500px;}
.y1db{bottom:794.780700px;}
.y18b{bottom:794.781000px;}
.y1bd{bottom:794.794200px;}
.y9a{bottom:796.956600px;}
.y4b{bottom:799.154100px;}
.y107{bottom:799.865550px;}
.y7{bottom:803.470500px;}
.y14e{bottom:804.520200px;}
.y1da{bottom:810.980700px;}
.y18a{bottom:810.981000px;}
.y1bc{bottom:810.994200px;}
.y99{bottom:814.956600px;}
.yf7{bottom:816.634050px;}
.y4a{bottom:817.154100px;}
.y106{bottom:817.865550px;}
.y14d{bottom:820.720200px;}
.y6{bottom:825.115500px;}
.y1d9{bottom:827.180700px;}
.y189{bottom:827.181000px;}
.y1bb{bottom:827.194200px;}
.y98{bottom:832.956600px;}
.yf6{bottom:834.634050px;}
.y49{bottom:835.154100px;}
.y105{bottom:835.865550px;}
.y1d8{bottom:843.380700px;}
.y188{bottom:843.381000px;}
.y1ba{bottom:843.394200px;}
.y97{bottom:850.956600px;}
.yf5{bottom:852.634050px;}
.ycc{bottom:853.139400px;}
.y48{bottom:853.154100px;}
.y104{bottom:853.865550px;}
.ybf{bottom:853.880100px;}
.y14c{bottom:853.928700px;}
.y1d7{bottom:859.580700px;}
.y187{bottom:859.581000px;}
.y1b9{bottom:859.594200px;}
.y96{bottom:868.956600px;}
.y5{bottom:869.476500px;}
.yf4{bottom:870.634050px;}
.ycb{bottom:871.139400px;}
.y47{bottom:871.154100px;}
.y103{bottom:871.865550px;}
.ybe{bottom:871.880100px;}
.y1d6{bottom:875.780700px;}
.y186{bottom:875.781000px;}
.y1b8{bottom:875.794200px;}
.y95{bottom:886.956600px;}
.ye0{bottom:888.634050px;}
.yca{bottom:889.139400px;}
.y46{bottom:889.154100px;}
.y102{bottom:889.865550px;}
.ybd{bottom:889.880100px;}
.y1d5{bottom:891.980700px;}
.y185{bottom:891.981000px;}
.y1b7{bottom:891.994200px;}
.y4{bottom:893.470500px;}
.y94{bottom:904.956600px;}
.ydf{bottom:906.634050px;}
.yc9{bottom:907.139400px;}
.y45{bottom:907.154100px;}
.ybc{bottom:907.880100px;}
.y1d4{bottom:908.180700px;}
.y184{bottom:908.181000px;}
.y14b{bottom:908.194200px;}
.y93{bottom:922.956600px;}
.y1d3{bottom:924.380700px;}
.y183{bottom:924.381000px;}
.y14a{bottom:924.394200px;}
.yde{bottom:924.634050px;}
.y101{bottom:924.873900px;}
.yc8{bottom:925.139400px;}
.y44{bottom:925.154100px;}
.ybb{bottom:925.880100px;}
.y1d2{bottom:940.580700px;}
.y182{bottom:940.581000px;}
.y149{bottom:940.594200px;}
.y92{bottom:940.956600px;}
.ydd{bottom:942.634050px;}
.yc7{bottom:943.139400px;}
.y43{bottom:943.154100px;}
.yba{bottom:943.880100px;}
.y1d1{bottom:956.780700px;}
.y181{bottom:956.786700px;}
.y148{bottom:956.794200px;}
.y91{bottom:958.956600px;}
.ydc{bottom:960.634050px;}
.yc6{bottom:961.139400px;}
.y42{bottom:961.154100px;}
.y3{bottom:962.470500px;}
.y1d0{bottom:972.980700px;}
.y180{bottom:972.986700px;}
.y147{bottom:972.994200px;}
.y90{bottom:976.956600px;}
.ydb{bottom:978.634050px;}
.yb9{bottom:978.888600px;}
.yc5{bottom:979.139400px;}
.y41{bottom:979.154100px;}
.y1cf{bottom:989.180700px;}
.y17f{bottom:989.186700px;}
.y146{bottom:989.194200px;}
.y2{bottom:993.070500px;}
.y8f{bottom:994.956600px;}
.yda{bottom:996.634050px;}
.yc4{bottom:997.139400px;}
.y40{bottom:997.154100px;}
.y1ce{bottom:1005.380700px;}
.y17e{bottom:1005.386700px;}
.y145{bottom:1005.394200px;}
.yd9{bottom:1014.634050px;}
.yc3{bottom:1015.139400px;}
.y3f{bottom:1015.154100px;}
.y1cd{bottom:1021.580700px;}
.y17d{bottom:1021.586700px;}
.y144{bottom:1021.594200px;}
.y1{bottom:1023.670500px;}
.yd8{bottom:1032.634050px;}
.yc2{bottom:1033.139400px;}
.y3e{bottom:1033.154100px;}
.yf8{bottom:1033.159050px;}
.y1cc{bottom:1037.780700px;}
.y17c{bottom:1037.786700px;}
.y143{bottom:1037.794200px;}
.yd7{bottom:1050.634050px;}
.yc1{bottom:1051.139400px;}
.y3d{bottom:1051.154100px;}
.ye2{bottom:1051.159050px;}
.y1cb{bottom:1053.980700px;}
.y17b{bottom:1053.986700px;}
.y142{bottom:1053.994200px;}
.yd6{bottom:1068.634050px;}
.yeb{bottom:1069.139400px;}
.yc0{bottom:1069.145100px;}
.y3c{bottom:1069.154100px;}
.ye1{bottom:1069.159050px;}
.y6f{bottom:1069.160100px;}
.y1ca{bottom:1070.180700px;}
.y17a{bottom:1070.186700px;}
.y141{bottom:1070.194200px;}
.y3b{bottom:1101.757350px;}
.y38{bottom:1103.781600px;}
.y140{bottom:1112.204100px;}
.yb8{bottom:1112.209050px;}
.y1e0{bottom:1112.210850px;}
.y8e{bottom:1112.211600px;}
.y37{bottom:1119.081600px;}
.h17{height:37.154297px;}
.h9{height:37.520508px;}
.h6{height:39.313477px;}
.hd{height:41.689453px;}
.h4{height:41.740312px;}
.h10{height:45.994922px;}
.hf{height:50.062500px;}
.ha{height:52.971680px;}
.h8{height:52.998047px;}
.h14{height:53.191406px;}
.h15{height:53.209406px;}
.h16{height:53.227406px;}
.h18{height:53.245406px;}
.h7{height:54.421875px;}
.h19{height:54.476967px;}
.h5{height:56.320312px;}
.he{height:58.851422px;}
.h11{height:58.857422px;}
.hc{height:58.886719px;}
.h12{height:62.578125px;}
.h13{height:62.608125px;}
.hb{height:70.400391px;}
.h3{height:75.093750px;}
.h2{height:106.382812px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:72.283500px;}
.x9{left:76.536000px;}
.x2{left:80.914500px;}
.xf{left:90.292500px;}
.x4{left:92.802600px;}
.x11{left:94.531500px;}
.xa{left:97.058850px;}
.x7{left:112.320000px;}
.x3{left:114.813000px;}
.xe{left:116.929650px;}
.x5{left:454.962600px;}
.xc{left:459.213000px;}
.x10{left:472.936500px;}
.x6{left:475.478400px;}
.x12{left:477.229500px;}
.xb{left:479.736900px;}
.xd{left:499.599900px;}
.x8{left:760.356450px;}
@media print{
.v2{vertical-align:-12.960000pt;}
.v3{vertical-align:-10.133333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.400533pt;}
.v1{vertical-align:17.280000pt;}
.ls24{letter-spacing:-3.626667pt;}
.ls37{letter-spacing:-3.552000pt;}
.ls13{letter-spacing:-1.813333pt;}
.ls2{letter-spacing:-1.066667pt;}
.ls23{letter-spacing:-0.800000pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.266667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.002133pt;}
.ls0{letter-spacing:0.004800pt;}
.ls22{letter-spacing:0.006933pt;}
.lsd{letter-spacing:0.007467pt;}
.ls12{letter-spacing:0.019733pt;}
.ls21{letter-spacing:0.026133pt;}
.ls1b{letter-spacing:0.034667pt;}
.ls19{letter-spacing:0.507200pt;}
.lse{letter-spacing:0.512000pt;}
.lsb{letter-spacing:0.524800pt;}
.lsc{letter-spacing:0.529067pt;}
.lsf{letter-spacing:0.532800pt;}
.ls9{letter-spacing:0.533333pt;}
.ls18{letter-spacing:0.533867pt;}
.ls1a{letter-spacing:0.563733pt;}
.ls1c{letter-spacing:0.906667pt;}
.ls2b{letter-spacing:1.152000pt;}
.ls3{letter-spacing:1.280000pt;}
.ls32{letter-spacing:1.680000pt;}
.ls26{letter-spacing:2.240000pt;}
.ls10{letter-spacing:2.400000pt;}
.ls2a{letter-spacing:2.496000pt;}
.ls3f{letter-spacing:3.120000pt;}
.ls28{letter-spacing:3.600000pt;}
.ls15{letter-spacing:3.680000pt;}
.ls11{letter-spacing:3.898667pt;}
.ls2d{letter-spacing:4.080000pt;}
.ls8{letter-spacing:4.266667pt;}
.ls20{letter-spacing:4.586667pt;}
.ls3e{letter-spacing:4.656000pt;}
.lsa{letter-spacing:5.173333pt;}
.ls30{letter-spacing:5.328000pt;}
.ls1e{letter-spacing:5.386667pt;}
.ls3a{letter-spacing:5.760000pt;}
.ls1f{letter-spacing:6.133333pt;}
.ls16{letter-spacing:6.666667pt;}
.ls34{letter-spacing:6.672000pt;}
.ls2c{letter-spacing:7.440000pt;}
.ls14{letter-spacing:7.840000pt;}
.ls17{letter-spacing:8.053333pt;}
.ls36{letter-spacing:8.880000pt;}
.ls27{letter-spacing:9.333333pt;}
.ls3d{letter-spacing:10.176000pt;}
.ls35{letter-spacing:10.368000pt;}
.ls2f{letter-spacing:10.992000pt;}
.ls3c{letter-spacing:11.232000pt;}
.ls4{letter-spacing:11.253333pt;}
.ls33{letter-spacing:11.904000pt;}
.ls5{letter-spacing:11.946667pt;}
.ls39{letter-spacing:12.576000pt;}
.ls38{letter-spacing:13.584000pt;}
.ls40{letter-spacing:13.968000pt;}
.ls2e{letter-spacing:15.072000pt;}
.ls29{letter-spacing:15.936000pt;}
.ls31{letter-spacing:18.384000pt;}
.ls3b{letter-spacing:19.104000pt;}
.ws28{word-spacing:-35.269333pt;}
.ws1{word-spacing:-17.792000pt;}
.wsb{word-spacing:-14.826667pt;}
.ws36{word-spacing:-13.866667pt;}
.wsa{word-spacing:-13.333333pt;}
.wsc{word-spacing:-12.800000pt;}
.ws29{word-spacing:-12.602667pt;}
.ws6c{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.946667pt;}
.ws0{word-spacing:-11.564800pt;}
.wse{word-spacing:-11.253333pt;}
.ws1b{word-spacing:-10.400000pt;}
.ws5f{word-spacing:-9.333333pt;}
.ws5d{word-spacing:-8.666667pt;}
.ws6d{word-spacing:-8.448000pt;}
.ws3d{word-spacing:-7.520000pt;}
.ws3a{word-spacing:-7.306667pt;}
.ws3c{word-spacing:-6.133333pt;}
.ws49{word-spacing:-5.600000pt;}
.ws2b{word-spacing:-5.173333pt;}
.ws48{word-spacing:-4.853333pt;}
.ws27{word-spacing:-4.266667pt;}
.ws77{word-spacing:-3.552000pt;}
.ws19{word-spacing:-3.466667pt;}
.ws26{word-spacing:-3.360000pt;}
.ws3b{word-spacing:-3.146667pt;}
.ws2c{word-spacing:-2.773333pt;}
.ws92{word-spacing:-2.400000pt;}
.ws15{word-spacing:-2.346667pt;}
.ws5e{word-spacing:-2.240000pt;}
.ws6f{word-spacing:-2.160000pt;}
.ws7e{word-spacing:-2.112000pt;}
.ws30{word-spacing:-2.026667pt;}
.ws32{word-spacing:-1.949333pt;}
.ws66{word-spacing:-1.866667pt;}
.ws7d{word-spacing:-1.680000pt;}
.ws70{word-spacing:-1.632000pt;}
.ws42{word-spacing:-1.541333pt;}
.ws91{word-spacing:-1.488000pt;}
.ws34{word-spacing:-0.952000pt;}
.ws52{word-spacing:-0.861333pt;}
.ws43{word-spacing:-0.586667pt;}
.ws2a{word-spacing:-0.533333pt;}
.ws8b{word-spacing:-0.528000pt;}
.ws31{word-spacing:-0.453333pt;}
.ws78{word-spacing:-0.432000pt;}
.ws12{word-spacing:-0.426667pt;}
.ws46{word-spacing:-0.373333pt;}
.ws55{word-spacing:-0.362667pt;}
.ws22{word-spacing:-0.266667pt;}
.ws5b{word-spacing:-0.181333pt;}
.ws38{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws51{word-spacing:0.090667pt;}
.ws24{word-spacing:0.266667pt;}
.ws6{word-spacing:0.320000pt;}
.ws6b{word-spacing:0.373333pt;}
.ws57{word-spacing:0.408000pt;}
.ws18{word-spacing:0.533333pt;}
.ws59{word-spacing:0.634667pt;}
.ws54{word-spacing:0.800000pt;}
.ws47{word-spacing:1.013333pt;}
.ws5{word-spacing:1.066667pt;}
.ws33{word-spacing:1.133333pt;}
.ws56{word-spacing:1.178667pt;}
.ws82{word-spacing:1.200000pt;}
.ws35{word-spacing:1.314667pt;}
.ws74{word-spacing:1.344000pt;}
.ws80{word-spacing:1.488000pt;}
.ws16{word-spacing:1.493333pt;}
.ws58{word-spacing:1.632000pt;}
.ws7a{word-spacing:1.680000pt;}
.ws65{word-spacing:1.706667pt;}
.ws1a{word-spacing:1.813333pt;}
.ws63{word-spacing:2.240000pt;}
.ws39{word-spacing:2.346667pt;}
.ws1d{word-spacing:2.400000pt;}
.ws5c{word-spacing:2.402667pt;}
.ws71{word-spacing:2.496000pt;}
.ws20{word-spacing:2.506667pt;}
.ws1f{word-spacing:2.560000pt;}
.ws4e{word-spacing:2.674667pt;}
.ws7b{word-spacing:2.688000pt;}
.ws4d{word-spacing:2.880000pt;}
.ws8a{word-spacing:3.024000pt;}
.ws8e{word-spacing:3.072000pt;}
.ws68{word-spacing:3.360000pt;}
.ws1e{word-spacing:3.466667pt;}
.ws3{word-spacing:3.600000pt;}
.ws3e{word-spacing:3.626667pt;}
.ws69{word-spacing:3.733333pt;}
.ws41{word-spacing:3.898667pt;}
.ws4c{word-spacing:4.000000pt;}
.ws53{word-spacing:4.053333pt;}
.ws73{word-spacing:4.080000pt;}
.ws7{word-spacing:4.213333pt;}
.ws4f{word-spacing:4.261333pt;}
.ws2f{word-spacing:4.266667pt;}
.ws2d{word-spacing:4.480000pt;}
.ws5a{word-spacing:4.578667pt;}
.ws8d{word-spacing:4.656000pt;}
.ws40{word-spacing:4.714667pt;}
.ws3f{word-spacing:4.896000pt;}
.ws79{word-spacing:5.328000pt;}
.ws87{word-spacing:5.712000pt;}
.ws4{word-spacing:6.048000pt;}
.ws2e{word-spacing:6.080000pt;}
.ws60{word-spacing:6.400000pt;}
.ws4b{word-spacing:6.453333pt;}
.ws7f{word-spacing:6.624000pt;}
.ws1c{word-spacing:6.666667pt;}
.ws21{word-spacing:6.826667pt;}
.ws6a{word-spacing:6.880000pt;}
.ws50{word-spacing:7.026667pt;}
.ws72{word-spacing:7.152000pt;}
.ws37{word-spacing:7.306667pt;}
.ws67{word-spacing:7.360000pt;}
.ws11{word-spacing:7.413333pt;}
.ws17{word-spacing:7.680000pt;}
.ws44{word-spacing:7.786667pt;}
.ws88{word-spacing:8.448000pt;}
.ws4a{word-spacing:10.133333pt;}
.ws8c{word-spacing:10.176000pt;}
.ws81{word-spacing:10.368000pt;}
.ws8{word-spacing:10.506667pt;}
.ws45{word-spacing:10.880000pt;}
.ws76{word-spacing:10.992000pt;}
.wsd{word-spacing:11.253333pt;}
.ws64{word-spacing:11.413333pt;}
.ws7c{word-spacing:11.904000pt;}
.wsf{word-spacing:11.946667pt;}
.ws83{word-spacing:12.048000pt;}
.ws86{word-spacing:12.528000pt;}
.ws85{word-spacing:13.536000pt;}
.ws13{word-spacing:13.546667pt;}
.ws23{word-spacing:13.706667pt;}
.ws90{word-spacing:13.968000pt;}
.ws75{word-spacing:15.072000pt;}
.ws6e{word-spacing:15.984000pt;}
.ws62{word-spacing:16.000000pt;}
.ws9{word-spacing:17.386667pt;}
.ws84{word-spacing:18.096000pt;}
.ws89{word-spacing:19.104000pt;}
.ws8f{word-spacing:23.280000pt;}
.ws14{word-spacing:33.920000pt;}
.ws61{word-spacing:44.266667pt;}
.ws25{word-spacing:54.666667pt;}
._1d{margin-left:-14.826667pt;}
._0{margin-left:-13.344000pt;}
._11{margin-left:-11.733333pt;}
._23{margin-left:-9.328000pt;}
._1b{margin-left:-6.837333pt;}
._e{margin-left:-5.737067pt;}
._5{margin-left:-4.128000pt;}
._2{margin-left:-3.168000pt;}
._7{margin-left:-2.256000pt;}
._4{margin-left:-1.200000pt;}
._6{width:1.200000pt;}
._d{width:2.453333pt;}
._1{width:3.792000pt;}
._f{width:4.906667pt;}
._3{width:5.808000pt;}
._b{width:6.912000pt;}
._a{width:8.234667pt;}
._14{width:9.301333pt;}
._17{width:11.019200pt;}
._15{width:12.266667pt;}
._24{width:13.813333pt;}
._9{width:14.741333pt;}
._1e{width:15.701333pt;}
._16{width:17.333333pt;}
._1a{width:18.453333pt;}
._21{width:19.466667pt;}
._25{width:20.490667pt;}
._c{width:21.386667pt;}
._1f{width:22.346667pt;}
._20{width:23.413333pt;}
._1c{width:30.851200pt;}
._19{width:34.202667pt;}
._8{width:52.007467pt;}
._18{width:54.674133pt;}
._13{width:414.451467pt;}
._10{width:919.119467pt;}
._22{width:1761.024000pt;}
._12{width:2287.712000pt;}
.fs3{font-size:31.200000pt;}
.fsa{font-size:34.666667pt;}
.fs8{font-size:39.200000pt;}
.fs2{font-size:41.600000pt;}
.fs7{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:60.000000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:26.717200pt;}
.y39{bottom:38.477200pt;}
.yd5{bottom:85.036000pt;}
.y100{bottom:85.040000pt;}
.yea{bottom:85.322667pt;}
.y28{bottom:85.854667pt;}
.y13f{bottom:86.359200pt;}
.y36{bottom:86.973333pt;}
.y12e{bottom:86.991600pt;}
.y1b6{bottom:87.272000pt;}
.y179{bottom:95.929067pt;}
.yae{bottom:96.499200pt;}
.yff{bottom:97.698667pt;}
.yd4{bottom:97.706667pt;}
.ye9{bottom:97.989333pt;}
.yb7{bottom:98.452533pt;}
.y8d{bottom:100.405867pt;}
.y1b5{bottom:101.672000pt;}
.y27{bottom:101.854667pt;}
.y13e{bottom:102.359200pt;}
.y35{bottom:102.973333pt;}
.y12d{bottom:102.991600pt;}
.yf3{bottom:102.992667pt;}
.y6e{bottom:103.004533pt;}
.y178{bottom:110.329067pt;}
.yd3{bottom:110.369333pt;}
.ye8{bottom:110.652000pt;}
.yad{bottom:112.499200pt;}
.yb6{bottom:114.452533pt;}
.yf2{bottom:115.655333pt;}
.y1b4{bottom:116.072000pt;}
.y8c{bottom:116.405867pt;}
.y26{bottom:117.854667pt;}
.y13d{bottom:118.359200pt;}
.y34{bottom:118.973333pt;}
.y12c{bottom:118.991600pt;}
.y6d{bottom:119.004533pt;}
.yd2{bottom:123.036000pt;}
.yfe{bottom:123.040000pt;}
.ye7{bottom:123.322667pt;}
.y177{bottom:124.729067pt;}
.yf1{bottom:128.326000pt;}
.yac{bottom:128.499200pt;}
.yb5{bottom:130.452533pt;}
.y1b3{bottom:130.472000pt;}
.y8b{bottom:132.405867pt;}
.y25{bottom:133.854667pt;}
.y13c{bottom:134.359200pt;}
.y33{bottom:134.973333pt;}
.y12b{bottom:134.991600pt;}
.y6c{bottom:135.004533pt;}
.yd1{bottom:135.706667pt;}
.ye6{bottom:135.981333pt;}
.y176{bottom:139.129067pt;}
.yf0{bottom:140.992667pt;}
.yab{bottom:144.492533pt;}
.y1b2{bottom:144.872000pt;}
.yb4{bottom:146.452533pt;}
.yd0{bottom:148.365333pt;}
.yfd{bottom:148.369333pt;}
.y8a{bottom:148.405867pt;}
.ye5{bottom:148.652000pt;}
.y24{bottom:149.854667pt;}
.y13b{bottom:150.359200pt;}
.y32{bottom:150.973333pt;}
.y12a{bottom:150.991600pt;}
.y6b{bottom:151.004533pt;}
.y175{bottom:153.529067pt;}
.yef{bottom:153.655333pt;}
.y1b1{bottom:159.272000pt;}
.yfc{bottom:161.028000pt;}
.ycf{bottom:161.036000pt;}
.ye4{bottom:161.318667pt;}
.yb3{bottom:162.452533pt;}
.y89{bottom:164.405867pt;}
.y23{bottom:165.854667pt;}
.yee{bottom:166.326000pt;}
.y13a{bottom:166.359200pt;}
.y31{bottom:166.973333pt;}
.y129{bottom:166.991600pt;}
.y6a{bottom:167.004533pt;}
.y174{bottom:167.929067pt;}
.y1b0{bottom:173.672000pt;}
.yfb{bottom:173.698667pt;}
.yce{bottom:173.702667pt;}
.ye3{bottom:173.989333pt;}
.yaa{bottom:178.452533pt;}
.yed{bottom:178.988667pt;}
.y88{bottom:180.405867pt;}
.y22{bottom:181.854667pt;}
.y173{bottom:182.329067pt;}
.y139{bottom:182.359200pt;}
.y30{bottom:182.973333pt;}
.y128{bottom:182.991600pt;}
.y69{bottom:183.004533pt;}
.yfa{bottom:186.369333pt;}
.ycd{bottom:186.373333pt;}
.y1af{bottom:188.072000pt;}
.yec{bottom:191.659333pt;}
.ya9{bottom:194.452533pt;}
.y87{bottom:196.405867pt;}
.y172{bottom:196.729067pt;}
.y21{bottom:197.854667pt;}
.y138{bottom:198.359200pt;}
.y2f{bottom:198.973333pt;}
.y127{bottom:198.991600pt;}
.y68{bottom:199.004533pt;}
.yf9{bottom:199.040000pt;}
.y1ae{bottom:202.472000pt;}
.ya8{bottom:210.452533pt;}
.y171{bottom:211.129067pt;}
.y86{bottom:212.405867pt;}
.y20{bottom:213.854667pt;}
.y137{bottom:214.359200pt;}
.y2e{bottom:214.973333pt;}
.y126{bottom:214.991600pt;}
.y67{bottom:215.004533pt;}
.y1ad{bottom:216.872000pt;}
.y170{bottom:225.529067pt;}
.ya7{bottom:226.452533pt;}
.y85{bottom:228.405867pt;}
.y1f{bottom:229.854667pt;}
.y136{bottom:230.359200pt;}
.y2d{bottom:230.973333pt;}
.y125{bottom:230.991600pt;}
.y66{bottom:231.004533pt;}
.y1ac{bottom:231.272000pt;}
.y16f{bottom:239.929067pt;}
.yb2{bottom:242.445867pt;}
.ya6{bottom:242.452533pt;}
.y84{bottom:244.405867pt;}
.y1ab{bottom:245.672000pt;}
.y1e{bottom:245.854667pt;}
.y135{bottom:246.359200pt;}
.y2c{bottom:246.973333pt;}
.y124{bottom:246.991600pt;}
.y65{bottom:247.004533pt;}
.y16e{bottom:254.329067pt;}
.ya5{bottom:258.452533pt;}
.y1aa{bottom:260.072000pt;}
.y83{bottom:260.405867pt;}
.y1d{bottom:261.854667pt;}
.y134{bottom:262.359200pt;}
.y2b{bottom:262.973333pt;}
.y123{bottom:262.991600pt;}
.y64{bottom:263.004533pt;}
.y16d{bottom:268.729067pt;}
.ya4{bottom:274.445867pt;}
.y1a9{bottom:274.472000pt;}
.y82{bottom:276.405867pt;}
.y133{bottom:278.359200pt;}
.y2a{bottom:278.974667pt;}
.y122{bottom:278.991600pt;}
.y63{bottom:279.004533pt;}
.y16c{bottom:283.129067pt;}
.y1a8{bottom:288.872000pt;}
.y81{bottom:292.405867pt;}
.y1c{bottom:292.973333pt;}
.y132{bottom:294.359200pt;}
.y29{bottom:294.974667pt;}
.y121{bottom:294.991600pt;}
.y62{bottom:295.004533pt;}
.y16b{bottom:297.529067pt;}
.y1a7{bottom:303.272000pt;}
.y80{bottom:308.405867pt;}
.y131{bottom:310.359200pt;}
.y120{bottom:310.991600pt;}
.y61{bottom:311.004533pt;}
.y16a{bottom:311.929067pt;}
.y1a6{bottom:317.672000pt;}
.yb1{bottom:324.399200pt;}
.y7f{bottom:324.405867pt;}
.y169{bottom:326.329067pt;}
.y130{bottom:326.359200pt;}
.y11f{bottom:326.991600pt;}
.y1a5{bottom:332.072000pt;}
.y7e{bottom:340.405867pt;}
.y168{bottom:340.729067pt;}
.y60{bottom:342.123200pt;}
.y12f{bottom:342.359200pt;}
.y11e{bottom:342.991600pt;}
.y1a4{bottom:346.472000pt;}
.y1b{bottom:353.904000pt;}
.y167{bottom:355.129067pt;}
.y7d{bottom:356.405867pt;}
.yb0{bottom:358.359200pt;}
.y11d{bottom:358.991600pt;}
.y1a3{bottom:360.872000pt;}
.y1a{bottom:367.500000pt;}
.y166{bottom:369.529067pt;}
.y7c{bottom:372.405867pt;}
.yaf{bottom:374.359200pt;}
.y11c{bottom:374.991600pt;}
.y1a2{bottom:375.272000pt;}
.y165{bottom:383.929067pt;}
.y7b{bottom:388.405867pt;}
.y1a1{bottom:389.672000pt;}
.y5f{bottom:390.359200pt;}
.y11b{bottom:390.991600pt;}
.y19{bottom:395.496000pt;}
.y164{bottom:398.329067pt;}
.y1a0{bottom:404.072000pt;}
.y7a{bottom:404.405867pt;}
.y5e{bottom:406.359200pt;}
.y11a{bottom:406.991600pt;}
.y18{bottom:409.092000pt;}
.y163{bottom:412.729067pt;}
.y19f{bottom:418.472000pt;}
.y79{bottom:420.405867pt;}
.y5d{bottom:422.359200pt;}
.y17{bottom:422.688000pt;}
.y119{bottom:422.991600pt;}
.y162{bottom:427.129067pt;}
.y19e{bottom:432.872000pt;}
.y16{bottom:436.284000pt;}
.y78{bottom:436.405867pt;}
.y5c{bottom:438.359200pt;}
.y118{bottom:438.991600pt;}
.y161{bottom:441.529067pt;}
.y19d{bottom:447.272000pt;}
.y15{bottom:449.880000pt;}
.y77{bottom:452.405867pt;}
.y5b{bottom:454.359200pt;}
.y117{bottom:454.991600pt;}
.y160{bottom:455.929067pt;}
.y19c{bottom:461.672000pt;}
.y14{bottom:463.476000pt;}
.y76{bottom:468.405867pt;}
.y15f{bottom:470.329067pt;}
.y5a{bottom:470.359200pt;}
.y116{bottom:470.991600pt;}
.y19b{bottom:476.072000pt;}
.y13{bottom:477.076000pt;}
.y75{bottom:484.405867pt;}
.y15e{bottom:484.729067pt;}
.y59{bottom:486.359200pt;}
.y115{bottom:486.991600pt;}
.y19a{bottom:490.472000pt;}
.y12{bottom:490.696000pt;}
.y15d{bottom:499.129067pt;}
.y74{bottom:500.405867pt;}
.y58{bottom:502.359200pt;}
.y114{bottom:502.991600pt;}
.y11{bottom:504.292000pt;}
.y199{bottom:504.872000pt;}
.y15c{bottom:513.529067pt;}
.y73{bottom:516.405867pt;}
.y10{bottom:517.888000pt;}
.y57{bottom:518.359200pt;}
.y113{bottom:518.991600pt;}
.y198{bottom:519.272000pt;}
.y15b{bottom:527.929067pt;}
.y72{bottom:532.405867pt;}
.y197{bottom:533.672000pt;}
.y1c9{bottom:533.683733pt;}
.y1df{bottom:533.925200pt;}
.y56{bottom:534.359200pt;}
.y112{bottom:534.991600pt;}
.y15a{bottom:542.329067pt;}
.y196{bottom:548.072000pt;}
.y1c8{bottom:548.083733pt;}
.y71{bottom:548.405867pt;}
.y1de{bottom:549.925200pt;}
.y55{bottom:550.359200pt;}
.y111{bottom:550.991600pt;}
.y159{bottom:556.729067pt;}
.yf{bottom:557.404000pt;}
.y195{bottom:562.472000pt;}
.y1c7{bottom:562.483733pt;}
.y70{bottom:564.399200pt;}
.ya3{bottom:564.405867pt;}
.y1dd{bottom:565.925200pt;}
.y54{bottom:566.359200pt;}
.y110{bottom:566.991600pt;}
.y158{bottom:571.129067pt;}
.y194{bottom:576.872000pt;}
.y1c6{bottom:576.883733pt;}
.ya2{bottom:580.405867pt;}
.y53{bottom:582.359200pt;}
.y10f{bottom:582.991600pt;}
.y157{bottom:585.529067pt;}
.y193{bottom:591.272000pt;}
.y1c5{bottom:591.283733pt;}
.ya1{bottom:596.405867pt;}
.y52{bottom:598.359200pt;}
.y10e{bottom:598.991600pt;}
.y156{bottom:599.929067pt;}
.ye{bottom:602.200000pt;}
.y192{bottom:605.672000pt;}
.y1c4{bottom:605.683733pt;}
.ya0{bottom:612.405867pt;}
.y155{bottom:614.329067pt;}
.y51{bottom:614.359200pt;}
.y10d{bottom:614.991600pt;}
.yd{bottom:618.196000pt;}
.y191{bottom:620.072000pt;}
.y1c3{bottom:620.083733pt;}
.y9f{bottom:628.405867pt;}
.y154{bottom:628.729067pt;}
.y50{bottom:630.359200pt;}
.y10c{bottom:630.991600pt;}
.y190{bottom:634.472000pt;}
.y1c2{bottom:634.483733pt;}
.yc{bottom:637.436000pt;}
.y153{bottom:643.129067pt;}
.y9e{bottom:644.405867pt;}
.y4f{bottom:646.359200pt;}
.y10b{bottom:646.991600pt;}
.y18f{bottom:648.872000pt;}
.y1c1{bottom:648.883733pt;}
.yb{bottom:650.196000pt;}
.y152{bottom:657.529067pt;}
.y9d{bottom:660.405867pt;}
.y4e{bottom:662.359200pt;}
.y10a{bottom:662.991600pt;}
.y18e{bottom:663.272000pt;}
.y1c0{bottom:663.283733pt;}
.ya{bottom:669.436000pt;}
.y151{bottom:671.929067pt;}
.y9c{bottom:676.405867pt;}
.y18d{bottom:677.672000pt;}
.y1bf{bottom:677.683733pt;}
.y4d{bottom:678.359200pt;}
.y109{bottom:678.991600pt;}
.y9{bottom:682.196000pt;}
.y150{bottom:686.329067pt;}
.y1dc{bottom:692.071733pt;}
.y18c{bottom:692.072000pt;}
.y1be{bottom:692.083733pt;}
.y9b{bottom:692.405867pt;}
.y4c{bottom:694.359200pt;}
.y108{bottom:694.991600pt;}
.y14f{bottom:700.729067pt;}
.y8{bottom:701.436000pt;}
.y1db{bottom:706.471733pt;}
.y18b{bottom:706.472000pt;}
.y1bd{bottom:706.483733pt;}
.y9a{bottom:708.405867pt;}
.y4b{bottom:710.359200pt;}
.y107{bottom:710.991600pt;}
.y7{bottom:714.196000pt;}
.y14e{bottom:715.129067pt;}
.y1da{bottom:720.871733pt;}
.y18a{bottom:720.872000pt;}
.y1bc{bottom:720.883733pt;}
.y99{bottom:724.405867pt;}
.yf7{bottom:725.896933pt;}
.y4a{bottom:726.359200pt;}
.y106{bottom:726.991600pt;}
.y14d{bottom:729.529067pt;}
.y6{bottom:733.436000pt;}
.y1d9{bottom:735.271733pt;}
.y189{bottom:735.272000pt;}
.y1bb{bottom:735.283733pt;}
.y98{bottom:740.405867pt;}
.yf6{bottom:741.896933pt;}
.y49{bottom:742.359200pt;}
.y105{bottom:742.991600pt;}
.y1d8{bottom:749.671733pt;}
.y188{bottom:749.672000pt;}
.y1ba{bottom:749.683733pt;}
.y97{bottom:756.405867pt;}
.yf5{bottom:757.896933pt;}
.ycc{bottom:758.346133pt;}
.y48{bottom:758.359200pt;}
.y104{bottom:758.991600pt;}
.ybf{bottom:759.004533pt;}
.y14c{bottom:759.047733pt;}
.y1d7{bottom:764.071733pt;}
.y187{bottom:764.072000pt;}
.y1b9{bottom:764.083733pt;}
.y96{bottom:772.405867pt;}
.y5{bottom:772.868000pt;}
.yf4{bottom:773.896933pt;}
.ycb{bottom:774.346133pt;}
.y47{bottom:774.359200pt;}
.y103{bottom:774.991600pt;}
.ybe{bottom:775.004533pt;}
.y1d6{bottom:778.471733pt;}
.y186{bottom:778.472000pt;}
.y1b8{bottom:778.483733pt;}
.y95{bottom:788.405867pt;}
.ye0{bottom:789.896933pt;}
.yca{bottom:790.346133pt;}
.y46{bottom:790.359200pt;}
.y102{bottom:790.991600pt;}
.ybd{bottom:791.004533pt;}
.y1d5{bottom:792.871733pt;}
.y185{bottom:792.872000pt;}
.y1b7{bottom:792.883733pt;}
.y4{bottom:794.196000pt;}
.y94{bottom:804.405867pt;}
.ydf{bottom:805.896933pt;}
.yc9{bottom:806.346133pt;}
.y45{bottom:806.359200pt;}
.ybc{bottom:807.004533pt;}
.y1d4{bottom:807.271733pt;}
.y184{bottom:807.272000pt;}
.y14b{bottom:807.283733pt;}
.y93{bottom:820.405867pt;}
.y1d3{bottom:821.671733pt;}
.y183{bottom:821.672000pt;}
.y14a{bottom:821.683733pt;}
.yde{bottom:821.896933pt;}
.y101{bottom:822.110133pt;}
.yc8{bottom:822.346133pt;}
.y44{bottom:822.359200pt;}
.ybb{bottom:823.004533pt;}
.y1d2{bottom:836.071733pt;}
.y182{bottom:836.072000pt;}
.y149{bottom:836.083733pt;}
.y92{bottom:836.405867pt;}
.ydd{bottom:837.896933pt;}
.yc7{bottom:838.346133pt;}
.y43{bottom:838.359200pt;}
.yba{bottom:839.004533pt;}
.y1d1{bottom:850.471733pt;}
.y181{bottom:850.477067pt;}
.y148{bottom:850.483733pt;}
.y91{bottom:852.405867pt;}
.ydc{bottom:853.896933pt;}
.yc6{bottom:854.346133pt;}
.y42{bottom:854.359200pt;}
.y3{bottom:855.529333pt;}
.y1d0{bottom:864.871733pt;}
.y180{bottom:864.877067pt;}
.y147{bottom:864.883733pt;}
.y90{bottom:868.405867pt;}
.ydb{bottom:869.896933pt;}
.yb9{bottom:870.123200pt;}
.yc5{bottom:870.346133pt;}
.y41{bottom:870.359200pt;}
.y1cf{bottom:879.271733pt;}
.y17f{bottom:879.277067pt;}
.y146{bottom:879.283733pt;}
.y2{bottom:882.729333pt;}
.y8f{bottom:884.405867pt;}
.yda{bottom:885.896933pt;}
.yc4{bottom:886.346133pt;}
.y40{bottom:886.359200pt;}
.y1ce{bottom:893.671733pt;}
.y17e{bottom:893.677067pt;}
.y145{bottom:893.683733pt;}
.yd9{bottom:901.896933pt;}
.yc3{bottom:902.346133pt;}
.y3f{bottom:902.359200pt;}
.y1cd{bottom:908.071733pt;}
.y17d{bottom:908.077067pt;}
.y144{bottom:908.083733pt;}
.y1{bottom:909.929333pt;}
.yd8{bottom:917.896933pt;}
.yc2{bottom:918.346133pt;}
.y3e{bottom:918.359200pt;}
.yf8{bottom:918.363600pt;}
.y1cc{bottom:922.471733pt;}
.y17c{bottom:922.477067pt;}
.y143{bottom:922.483733pt;}
.yd7{bottom:933.896933pt;}
.yc1{bottom:934.346133pt;}
.y3d{bottom:934.359200pt;}
.ye2{bottom:934.363600pt;}
.y1cb{bottom:936.871733pt;}
.y17b{bottom:936.877067pt;}
.y142{bottom:936.883733pt;}
.yd6{bottom:949.896933pt;}
.yeb{bottom:950.346133pt;}
.yc0{bottom:950.351200pt;}
.y3c{bottom:950.359200pt;}
.ye1{bottom:950.363600pt;}
.y6f{bottom:950.364533pt;}
.y1ca{bottom:951.271733pt;}
.y17a{bottom:951.277067pt;}
.y141{bottom:951.283733pt;}
.y3b{bottom:979.339867pt;}
.y38{bottom:981.139200pt;}
.y140{bottom:988.625867pt;}
.yb8{bottom:988.630267pt;}
.y1e0{bottom:988.631867pt;}
.y8e{bottom:988.632533pt;}
.y37{bottom:994.739200pt;}
.h17{height:33.026042pt;}
.h9{height:33.351562pt;}
.h6{height:34.945312pt;}
.hd{height:37.057292pt;}
.h4{height:37.102500pt;}
.h10{height:40.884375pt;}
.hf{height:44.500000pt;}
.ha{height:47.085938pt;}
.h8{height:47.109375pt;}
.h14{height:47.281250pt;}
.h15{height:47.297250pt;}
.h16{height:47.313250pt;}
.h18{height:47.329250pt;}
.h7{height:48.375000pt;}
.h19{height:48.423971pt;}
.h5{height:50.062500pt;}
.he{height:52.312375pt;}
.h11{height:52.317708pt;}
.hc{height:52.343750pt;}
.h12{height:55.625000pt;}
.h13{height:55.651667pt;}
.hb{height:62.578125pt;}
.h3{height:66.750000pt;}
.h2{height:94.562500pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:64.252000pt;}
.x9{left:68.032000pt;}
.x2{left:71.924000pt;}
.xf{left:80.260000pt;}
.x4{left:82.491200pt;}
.x11{left:84.028000pt;}
.xa{left:86.274533pt;}
.x7{left:99.840000pt;}
.x3{left:102.056000pt;}
.xe{left:103.937467pt;}
.x5{left:404.411200pt;}
.xc{left:408.189333pt;}
.x10{left:420.388000pt;}
.x6{left:422.647467pt;}
.x12{left:424.204000pt;}
.xb{left:426.432800pt;}
.xd{left:444.088800pt;}
.x8{left:675.872400pt;}
}




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