
    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_d2fe497df8f84e52682285a4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.942871;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_b8d64c65e4cc3964eaebe008.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a654215aeb19a21f20fa1a19.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_00de99365293cd5b33081f56.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_893c6a9daff0dc19e0bbf28d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_8958ec02609c7bab2702657b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.781000;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_6272ded2e0a2d6873690f052.woff')format("woff");}.ff7{font-family:ff7;line-height:0.906308;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_8aa24bc024e510d2643c020a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.715820;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_64029d45180ee7980c3f0067.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_9cd41230bb9afd6f45814413.woff')format("woff");}.ffa{font-family:ffa;line-height:0.906308;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_a06cbc24dbcd7629b255b7fc.woff')format("woff");}.ffb{font-family:ffb;line-height:0.865723;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_3fa399851b8723babc43eccb.woff')format("woff");}.ffc{font-family:ffc;line-height:0.849609;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_8958ec02609c7bab2702657b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.781000;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_6272ded2e0a2d6873690f052.woff')format("woff");}.ffe{font-family:ffe;line-height:0.906308;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_8aa24bc024e510d2643c020a.woff')format("woff");}.fff{font-family:fff;line-height:0.715820;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_64029d45180ee7980c3f0067.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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_8958ec02609c7bab2702657b.woff')format("woff");}.ff11{font-family:ff11;line-height:0.781000;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:ff12;src:url('chunks/assets/font_6272ded2e0a2d6873690f052.woff')format("woff");}.ff12{font-family:ff12;line-height:0.906308;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:ff13;src:url('chunks/assets/font_8aa24bc024e510d2643c020a.woff')format("woff");}.ff13{font-family:ff13;line-height:0.715820;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:ff14;src:url('chunks/assets/font_64029d45180ee7980c3f0067.woff')format("woff");}.ff14{font-family:ff14;line-height:0.666504;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:ff15;src:url('chunks/assets/font_8958ec02609c7bab2702657b.woff')format("woff");}.ff15{font-family:ff15;line-height:0.781000;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:ff16;src:url('chunks/assets/font_6272ded2e0a2d6873690f052.woff')format("woff");}.ff16{font-family:ff16;line-height:0.906308;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:ff17;src:url('chunks/assets/font_8aa24bc024e510d2643c020a.woff')format("woff");}.ff17{font-family:ff17;line-height:0.715820;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:ff18;src:url('chunks/assets/font_64029d45180ee7980c3f0067.woff')format("woff");}.ff18{font-family:ff18;line-height:0.666504;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:ff19;src:url('chunks/assets/font_881155f3e2ea590a279aefcf.woff')format("woff");}.ff19{font-family:ff19;line-height:0.682129;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:ff1a;src:url('chunks/assets/font_980ca2944cf876d044af1b2f.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.690918;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v1{vertical-align:-19.980600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.ls9{letter-spacing:-4.440000px;}
.ls11{letter-spacing:-3.660000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.001200px;}
.ls4{letter-spacing:0.001800px;}
.ls3{letter-spacing:0.003000px;}
.ls7{letter-spacing:0.003600px;}
.lsf{letter-spacing:0.004920px;}
.lse{letter-spacing:0.005520px;}
.lsb{letter-spacing:0.009600px;}
.ls10{letter-spacing:0.010200px;}
.lsa{letter-spacing:0.780000px;}
.ls6{letter-spacing:2.100000px;}
.ls2{letter-spacing:8.640000px;}
.ls1{letter-spacing:10.800000px;}
.lsc{letter-spacing:14.400000px;}
.lsd{letter-spacing:14.407200px;}
.ls5{letter-spacing:27.000000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(38,122,200),0 0.015em rgb(38,122,200),0.015em 0 rgb(38,122,200),0 -0.015em  rgb(38,122,200);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(38,122,200);text-shadow:none;}
}
.ws0{word-spacing:-124.099200px;}
.ws2{word-spacing:-74.687035px;}
.ws1{word-spacing:-36.568231px;}
.ws7{word-spacing:-27.000000px;}
.ws4{word-spacing:-25.812000px;}
.ws38{word-spacing:-20.016000px;}
.ws6{word-spacing:-18.780000px;}
.wsa{word-spacing:-17.460000px;}
.ws5{word-spacing:-16.680000px;}
.wsc{word-spacing:-15.012000px;}
.ws10{word-spacing:-14.400000px;}
.ws8{word-spacing:-12.240000px;}
.ws9{word-spacing:-7.136400px;}
.ws27{word-spacing:-5.400000px;}
.ws18{word-spacing:-4.320000px;}
.ws39{word-spacing:-3.960000px;}
.ws24{word-spacing:-3.660000px;}
.ws25{word-spacing:-3.480000px;}
.ws2b{word-spacing:-3.360000px;}
.ws2a{word-spacing:-3.300000px;}
.ws2e{word-spacing:-2.640000px;}
.ws29{word-spacing:-2.460000px;}
.ws1e{word-spacing:-1.800000px;}
.wsb{word-spacing:-1.776000px;}
.ws26{word-spacing:-0.660000px;}
.ws3{word-spacing:0.000000px;}
.ws16{word-spacing:0.240000px;}
.ws37{word-spacing:0.378000px;}
.ws1a{word-spacing:0.600000px;}
.ws11{word-spacing:0.960000px;}
.ws32{word-spacing:1.140000px;}
.ws2f{word-spacing:1.500000px;}
.ws33{word-spacing:1.560000px;}
.ws30{word-spacing:1.800000px;}
.ws21{word-spacing:2.580000px;}
.ws1f{word-spacing:2.760000px;}
.ws28{word-spacing:2.880000px;}
.ws22{word-spacing:3.120000px;}
.ws23{word-spacing:3.660000px;}
.ws17{word-spacing:4.800000px;}
.ws2c{word-spacing:5.160000px;}
.ws31{word-spacing:5.640000px;}
.ws34{word-spacing:6.000000px;}
.ws2d{word-spacing:6.480000px;}
.ws19{word-spacing:7.560000px;}
.ws1d{word-spacing:8.700000px;}
.ws36{word-spacing:9.960000px;}
.ws1c{word-spacing:10.560000px;}
.ws12{word-spacing:10.680000px;}
.ws1b{word-spacing:11.220000px;}
.wse{word-spacing:11.340000px;}
.ws15{word-spacing:11.520000px;}
.wsf{word-spacing:13.824000px;}
.ws20{word-spacing:14.160000px;}
.ws35{word-spacing:17.460000px;}
.wsd{word-spacing:18.252000px;}
.ws14{word-spacing:20.460000px;}
.ws13{word-spacing:21.240000px;}
._14{margin-left:-2916.981000px;}
._2b{margin-left:-880.344000px;}
._0{margin-left:-745.934400px;}
._28{margin-left:-648.144000px;}
._2{margin-left:-597.496282px;}
._2c{margin-left:-544.207200px;}
._1{margin-left:-504.457434px;}
._2a{margin-left:-467.511600px;}
._29{margin-left:-360.000000px;}
._1a{margin-left:-17.421600px;}
._17{margin-left:-16.080000px;}
._11{margin-left:-14.626200px;}
._7{margin-left:-13.296000px;}
._19{margin-left:-12.119400px;}
._8{margin-left:-10.800000px;}
._13{margin-left:-9.320400px;}
._d{margin-left:-7.839000px;}
._5{margin-left:-6.052200px;}
._6{margin-left:-5.042400px;}
._3{margin-left:-3.264000px;}
._4{margin-left:-2.025000px;}
._18{margin-left:-1.000800px;}
._16{width:1.024800px;}
._e{width:2.142000px;}
._1c{width:3.292200px;}
._15{width:5.017800px;}
._1b{width:6.274800px;}
._1e{width:7.311600px;}
._10{width:8.632200px;}
._f{width:10.012200px;}
._12{width:11.619000px;}
._1d{width:13.060800px;}
._23{width:14.424000px;}
._25{width:15.678000px;}
._21{width:18.208800px;}
._1f{width:20.034000px;}
._20{width:21.292200px;}
._24{width:23.169000px;}
._9{width:25.002000px;}
._c{width:27.000000px;}
._26{width:28.614000px;}
._22{width:30.738000px;}
._27{width:59.007600px;}
._b{width:105.361200px;}
._a{width:1014.542400px;}
.fca{color:rgb(5,99,193);}
.fc9{color:rgb(245,126,19);}
.fc8{color:rgb(47,92,179);}
.fc7{color:rgb(152,169,221);}
.fc5{color:rgb(66,178,60);}
.fc6{color:rgb(38,122,200);}
.fc3{color:rgb(210,32,39);}
.fc2{color:rgb(42,62,146);}
.fcc{color:rgb(0,0,0);}
.fc4{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fcb{color:rgb(0,173,239);}
.fc0{color:transparent;}
.fsa{font-size:34.980000px;}
.fs5{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fsb{font-size:126.000000px;}
.fs1{font-size:131.540400px;}
.fs8{font-size:144.000000px;}
.fs7{font-size:180.000000px;}
.fs2{font-size:268.658400px;}
.fs0{font-size:446.400000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:78.581550px;}
.y197{bottom:110.119050px;}
.y196{bottom:128.119050px;}
.y88{bottom:128.926800px;}
.y149{bottom:131.866800px;}
.y5b{bottom:132.431250px;}
.y17f{bottom:134.614950px;}
.ye1{bottom:140.789850px;}
.y58{bottom:141.403650px;}
.y111{bottom:142.558200px;}
.y195{bottom:146.119050px;}
.y87{bottom:146.476800px;}
.y148{bottom:149.866800px;}
.y17e{bottom:152.614950px;}
.yb8{bottom:157.889850px;}
.ye0{bottom:158.339850px;}
.y110{bottom:158.758200px;}
.y57{bottom:159.403650px;}
.y86{bottom:164.026800px;}
.y194{bottom:164.119050px;}
.y1c7{bottom:168.111150px;}
.y17d{bottom:170.614950px;}
.y10f{bottom:174.958200px;}
.yb7{bottom:175.439850px;}
.ydf{bottom:175.889850px;}
.y147{bottom:176.370750px;}
.y56{bottom:177.403650px;}
.y193{bottom:182.119050px;}
.y1c6{bottom:184.311150px;}
.y17c{bottom:188.614950px;}
.y85{bottom:190.080750px;}
.y10e{bottom:191.158200px;}
.y55{bottom:195.403650px;}
.y192{bottom:200.119050px;}
.y1c5{bottom:200.511150px;}
.yb6{bottom:201.493800px;}
.yde{bottom:201.943800px;}
.y17b{bottom:206.614950px;}
.y10d{bottom:207.358200px;}
.y84{bottom:207.630750px;}
.y54{bottom:213.403650px;}
.y2d{bottom:213.683400px;}
.y146{bottom:215.370750px;}
.y1c4{bottom:216.711150px;}
.y191{bottom:218.119050px;}
.yb5{bottom:219.043800px;}
.ydd{bottom:219.493800px;}
.y10c{bottom:223.558200px;}
.y17a{bottom:224.614950px;}
.y83{bottom:225.180750px;}
.y53{bottom:231.403650px;}
.y2c{bottom:231.683400px;}
.y1c3{bottom:232.911000px;}
.y145{bottom:233.370750px;}
.y190{bottom:236.119050px;}
.yb4{bottom:236.593800px;}
.ydc{bottom:237.043800px;}
.y10b{bottom:239.758200px;}
.y179{bottom:242.614950px;}
.y1c2{bottom:249.111150px;}
.y52{bottom:249.403650px;}
.y2b{bottom:249.683400px;}
.y82{bottom:251.234700px;}
.y144{bottom:251.370750px;}
.y18f{bottom:254.119050px;}
.y10a{bottom:255.958200px;}
.y178{bottom:260.614950px;}
.yb3{bottom:262.647600px;}
.ydb{bottom:263.097600px;}
.y1c1{bottom:265.311150px;}
.y51{bottom:267.403650px;}
.y2a{bottom:267.683400px;}
.y81{bottom:268.784700px;}
.y143{bottom:269.370750px;}
.y18e{bottom:272.119050px;}
.y109{bottom:277.786500px;}
.y177{bottom:278.614950px;}
.yb2{bottom:280.197750px;}
.yda{bottom:280.647600px;}
.y1c0{bottom:281.511150px;}
.y50{bottom:285.403650px;}
.y29{bottom:285.683400px;}
.y142{bottom:287.370750px;}
.y18d{bottom:290.119050px;}
.y108{bottom:293.986500px;}
.y80{bottom:294.838650px;}
.y176{bottom:296.614950px;}
.y1bf{bottom:297.711150px;}
.y1cd{bottom:302.845350px;}
.y4f{bottom:303.403650px;}
.y28{bottom:303.683400px;}
.y141{bottom:305.370750px;}
.yb1{bottom:306.251550px;}
.yd9{bottom:306.701700px;}
.y18c{bottom:308.119050px;}
.y107{bottom:310.186500px;}
.y7f{bottom:312.388650px;}
.y1be{bottom:313.911000px;}
.y175{bottom:314.614950px;}
.y1cc{bottom:320.845350px;}
.y4e{bottom:321.403650px;}
.y27{bottom:321.683400px;}
.y140{bottom:323.370750px;}
.yb0{bottom:323.801550px;}
.yd8{bottom:324.251550px;}
.y18b{bottom:326.119050px;}
.y7e{bottom:329.938650px;}
.y1bd{bottom:330.111150px;}
.y174{bottom:332.614950px;}
.y106{bottom:334.890450px;}
.y26{bottom:339.683400px;}
.y13f{bottom:341.370750px;}
.yd7{bottom:341.801550px;}
.y18a{bottom:344.119050px;}
.y1bc{bottom:346.311150px;}
.yaf{bottom:349.855650px;}
.y173{bottom:350.614950px;}
.y105{bottom:351.090450px;}
.y1d6{bottom:355.244250px;}
.y7d{bottom:355.992600px;}
.y25{bottom:357.683400px;}
.y13e{bottom:359.370750px;}
.y189{bottom:362.119050px;}
.y1bb{bottom:362.511150px;}
.y104{bottom:367.290450px;}
.yae{bottom:367.405500px;}
.yd6{bottom:367.855650px;}
.y172{bottom:368.614950px;}
.y7c{bottom:373.542600px;}
.y1d5{bottom:375.044250px;}
.y24{bottom:375.683400px;}
.y13d{bottom:377.370750px;}
.y1ba{bottom:378.711150px;}
.y188{bottom:380.119050px;}
.y103{bottom:383.490450px;}
.yad{bottom:384.955500px;}
.yd5{bottom:385.405500px;}
.y171{bottom:386.614950px;}
.y23{bottom:393.683400px;}
.y1d4{bottom:394.844250px;}
.y1b9{bottom:394.911000px;}
.y13c{bottom:395.370750px;}
.y187{bottom:398.119050px;}
.y7b{bottom:399.596550px;}
.y102{bottom:399.690450px;}
.y4d{bottom:402.176550px;}
.y170{bottom:404.615100px;}
.yac{bottom:411.009450px;}
.yd4{bottom:411.459450px;}
.y22{bottom:411.683400px;}
.y13b{bottom:413.370750px;}
.y1d3{bottom:414.644250px;}
.y101{bottom:415.890450px;}
.y186{bottom:416.119050px;}
.y7a{bottom:417.146550px;}
.y4c{bottom:420.176550px;}
.y16f{bottom:422.615100px;}
.yab{bottom:428.559450px;}
.yd3{bottom:429.009450px;}
.y1b8{bottom:429.111150px;}
.y21{bottom:429.683400px;}
.y13a{bottom:431.370750px;}
.y100{bottom:432.090450px;}
.y185{bottom:434.119050px;}
.y1d2{bottom:434.444250px;}
.y79{bottom:434.696550px;}
.y4b{bottom:438.176550px;}
.y16e{bottom:440.615100px;}
.y1b7{bottom:447.111150px;}
.y20{bottom:447.683400px;}
.yff{bottom:448.290450px;}
.y139{bottom:449.370750px;}
.y184{bottom:452.119050px;}
.yaa{bottom:454.613400px;}
.yd2{bottom:455.063400px;}
.y4a{bottom:456.176550px;}
.y16d{bottom:458.615100px;}
.y78{bottom:460.750500px;}
.yfe{bottom:464.490450px;}
.y1b6{bottom:465.111150px;}
.y1f{bottom:465.683400px;}
.y138{bottom:467.370750px;}
.y183{bottom:470.119050px;}
.ya9{bottom:472.163400px;}
.yd1{bottom:472.613400px;}
.y49{bottom:474.176550px;}
.y16c{bottom:476.615100px;}
.y77{bottom:478.300500px;}
.yfd{bottom:480.690450px;}
.y1b5{bottom:483.111150px;}
.y1e{bottom:483.683400px;}
.y137{bottom:485.370750px;}
.y182{bottom:488.119050px;}
.yd0{bottom:490.163400px;}
.y48{bottom:492.176550px;}
.y76{bottom:495.850500px;}
.yfc{bottom:496.890450px;}
.ya8{bottom:498.217350px;}
.y1b4{bottom:501.111150px;}
.y1d{bottom:501.683400px;}
.y16b{bottom:503.119050px;}
.y136{bottom:503.370750px;}
.y181{bottom:506.119050px;}
.yfb{bottom:513.090450px;}
.ya7{bottom:515.767350px;}
.ycf{bottom:516.217350px;}
.y1b3{bottom:519.111150px;}
.y1c{bottom:519.683400px;}
.y135{bottom:521.370750px;}
.y75{bottom:521.904300px;}
.y180{bottom:524.119050px;}
.yfa{bottom:529.290600px;}
.yce{bottom:533.767350px;}
.y1b2{bottom:537.111150px;}
.y1b{bottom:537.683400px;}
.y134{bottom:539.370750px;}
.y74{bottom:539.454450px;}
.ya6{bottom:541.821300px;}
.y16a{bottom:542.119050px;}
.yf9{bottom:545.490450px;}
.y1b1{bottom:555.111150px;}
.y1a{bottom:555.683400px;}
.y133{bottom:557.370750px;}
.ya5{bottom:559.371300px;}
.ycd{bottom:559.821300px;}
.y169{bottom:560.119050px;}
.yf8{bottom:561.690600px;}
.y47{bottom:562.444800px;}
.y73{bottom:565.508400px;}
.y1b0{bottom:573.111150px;}
.y19{bottom:573.683400px;}
.y46{bottom:576.844800px;}
.ycc{bottom:577.371300px;}
.yf7{bottom:577.890450px;}
.y168{bottom:578.119050px;}
.y72{bottom:583.058250px;}
.y132{bottom:583.874700px;}
.ya4{bottom:585.425250px;}
.y1af{bottom:591.111150px;}
.y45{bottom:591.244800px;}
.y18{bottom:591.683400px;}
.ycb{bottom:594.921300px;}
.y167{bottom:596.119050px;}
.ya3{bottom:602.975250px;}
.y44{bottom:605.644800px;}
.y1ae{bottom:609.111150px;}
.y71{bottom:609.112200px;}
.y17{bottom:609.683400px;}
.y166{bottom:614.119050px;}
.y43{bottom:620.044800px;}
.yca{bottom:620.975250px;}
.y131{bottom:622.874700px;}
.y70{bottom:626.662200px;}
.y1d1{bottom:626.867850px;}
.y1ad{bottom:627.111150px;}
.y16{bottom:627.683400px;}
.ya2{bottom:629.029200px;}
.y165{bottom:632.119050px;}
.y42{bottom:634.444800px;}
.yf6{bottom:635.718900px;}
.yc9{bottom:638.525250px;}
.y130{bottom:639.074700px;}
.y1ac{bottom:645.111150px;}
.y15{bottom:645.683400px;}
.ya1{bottom:646.579200px;}
.y1d0{bottom:646.667850px;}
.y41{bottom:648.844800px;}
.y164{bottom:650.119050px;}
.y6f{bottom:652.716150px;}
.y12f{bottom:655.274700px;}
.yf5{bottom:655.518900px;}
.y1ab{bottom:663.111150px;}
.y40{bottom:663.244800px;}
.y14{bottom:663.683400px;}
.yc8{bottom:664.579200px;}
.y1cf{bottom:666.467850px;}
.y163{bottom:668.119050px;}
.y6e{bottom:670.266150px;}
.ya0{bottom:672.633150px;}
.yf4{bottom:675.318900px;}
.y3f{bottom:677.644800px;}
.y12e{bottom:679.978650px;}
.y13{bottom:681.683400px;}
.yc7{bottom:682.129200px;}
.y162{bottom:686.119050px;}
.y1ce{bottom:686.267850px;}
.y1aa{bottom:689.615100px;}
.y9f{bottom:690.183150px;}
.y3e{bottom:692.044800px;}
.yf3{bottom:695.118900px;}
.y12d{bottom:696.178650px;}
.y6d{bottom:696.320100px;}
.y12{bottom:699.683400px;}
.y161{bottom:704.119050px;}
.y3d{bottom:706.444800px;}
.yc6{bottom:708.183150px;}
.y12c{bottom:712.378650px;}
.y6c{bottom:713.870100px;}
.yf2{bottom:714.918900px;}
.y9e{bottom:716.237100px;}
.y11{bottom:717.683400px;}
.y3c{bottom:720.844800px;}
.y160{bottom:722.119050px;}
.yc5{bottom:725.733150px;}
.y12b{bottom:728.578650px;}
.y1a9{bottom:728.615100px;}
.y9d{bottom:733.787100px;}
.y3b{bottom:735.244800px;}
.y10{bottom:735.683400px;}
.y6b{bottom:739.924050px;}
.y15f{bottom:740.119050px;}
.y12a{bottom:744.778650px;}
.y1a8{bottom:746.615100px;}
.y3a{bottom:749.644800px;}
.y1c8{bottom:750.626550px;}
.yc4{bottom:751.787100px;}
.yf{bottom:753.683400px;}
.yf1{bottom:754.518900px;}
.y6a{bottom:757.474050px;}
.y15e{bottom:758.119050px;}
.y9c{bottom:759.841050px;}
.y129{bottom:760.978650px;}
.y39{bottom:764.044800px;}
.y1a7{bottom:764.615100px;}
.yc3{bottom:769.337100px;}
.y2{bottom:769.573800px;}
.ye{bottom:771.683400px;}
.yf0{bottom:774.318900px;}
.y69{bottom:775.024050px;}
.y15d{bottom:776.119050px;}
.y128{bottom:777.178650px;}
.y9b{bottom:777.390900px;}
.y38{bottom:778.444800px;}
.y1a6{bottom:782.614950px;}
.yd{bottom:789.683400px;}
.y37{bottom:792.844800px;}
.y127{bottom:793.378650px;}
.yef{bottom:794.118900px;}
.y15c{bottom:794.119050px;}
.y9a{bottom:794.941050px;}
.yc2{bottom:795.391050px;}
.y1a5{bottom:800.614950px;}
.y68{bottom:801.078000px;}
.y36{bottom:807.244800px;}
.y3{bottom:807.481350px;}
.yc{bottom:807.683400px;}
.y126{bottom:809.578650px;}
.y15b{bottom:812.119050px;}
.yc1{bottom:812.941050px;}
.yee{bottom:813.918900px;}
.y1a4{bottom:818.614950px;}
.y67{bottom:818.628000px;}
.y99{bottom:820.995000px;}
.y35{bottom:821.644800px;}
.y1cb{bottom:824.305800px;}
.yb{bottom:825.683400px;}
.y125{bottom:825.778650px;}
.y15a{bottom:830.119050px;}
.yed{bottom:833.718900px;}
.y34{bottom:836.044800px;}
.y1a3{bottom:836.614950px;}
.y98{bottom:838.545000px;}
.yc0{bottom:838.995000px;}
.y124{bottom:841.978650px;}
.ya{bottom:843.683400px;}
.y66{bottom:844.681950px;}
.y159{bottom:848.119050px;}
.y33{bottom:850.444800px;}
.yec{bottom:853.518900px;}
.y1ca{bottom:854.409750px;}
.y1a2{bottom:854.614950px;}
.ybf{bottom:856.545000px;}
.y123{bottom:858.178650px;}
.y65{bottom:862.231950px;}
.y97{bottom:864.598800px;}
.y32{bottom:864.844800px;}
.y158{bottom:866.119050px;}
.y9{bottom:870.187350px;}
.y1a1{bottom:872.614950px;}
.y122{bottom:874.378650px;}
.y31{bottom:879.244800px;}
.y64{bottom:879.781950px;}
.y96{bottom:882.148800px;}
.ybe{bottom:882.598800px;}
.y157{bottom:884.119050px;}
.y1c9{bottom:884.513700px;}
.y8{bottom:888.187350px;}
.y121{bottom:890.578650px;}
.y1a0{bottom:890.614950px;}
.y30{bottom:893.644800px;}
.y95{bottom:900.148800px;}
.y156{bottom:902.119050px;}
.y63{bottom:905.835900px;}
.y120{bottom:906.778650px;}
.y2f{bottom:908.044800px;}
.y19f{bottom:908.614950px;}
.y7{bottom:914.691300px;}
.ybd{bottom:917.698950px;}
.y155{bottom:920.119050px;}
.y2e{bottom:922.444800px;}
.y11f{bottom:922.978650px;}
.y62{bottom:923.385900px;}
.y94{bottom:926.202750px;}
.y19e{bottom:926.614950px;}
.y6{bottom:932.691300px;}
.y1{bottom:937.166400px;}
.y154{bottom:938.119050px;}
.y11e{bottom:939.178650px;}
.y93{bottom:943.752750px;}
.y19d{bottom:944.614950px;}
.y61{bottom:949.439850px;}
.y11d{bottom:955.378650px;}
.y153{bottom:956.119050px;}
.ybc{bottom:961.302750px;}
.y19c{bottom:962.614950px;}
.y60{bottom:966.989850px;}
.y92{bottom:969.806700px;}
.y11c{bottom:971.578650px;}
.y152{bottom:974.119050px;}
.y19b{bottom:980.614950px;}
.yeb{bottom:981.318900px;}
.y91{bottom:987.356850px;}
.y151{bottom:992.119050px;}
.y5f{bottom:993.043800px;}
.y11b{bottom:993.407100px;}
.y19a{bottom:998.614950px;}
.ybb{bottom:1004.906700px;}
.y11a{bottom:1009.607100px;}
.y150{bottom:1010.119050px;}
.y5e{bottom:1010.593800px;}
.y90{bottom:1013.410650px;}
.y199{bottom:1016.614950px;}
.yea{bottom:1024.518900px;}
.y119{bottom:1025.806950px;}
.y14f{bottom:1028.119050px;}
.y8f{bottom:1030.960650px;}
.y5d{bottom:1036.647600px;}
.y198{bottom:1043.119050px;}
.y14e{bottom:1046.119050px;}
.yba{bottom:1048.510650px;}
.ye7{bottom:1049.361000px;}
.y118{bottom:1050.510900px;}
.y5c{bottom:1054.197750px;}
.y8e{bottom:1057.014600px;}
.y14d{bottom:1064.119050px;}
.y117{bottom:1066.710900px;}
.ye6{bottom:1066.911000px;}
.ye9{bottom:1067.718900px;}
.y8d{bottom:1074.564600px;}
.y14c{bottom:1082.119050px;}
.y116{bottom:1082.910900px;}
.y8c{bottom:1092.114600px;}
.ye5{bottom:1092.964950px;}
.y115{bottom:1099.110900px;}
.y14b{bottom:1100.119050px;}
.yb9{bottom:1109.664600px;}
.ye4{bottom:1110.514950px;}
.ye8{bottom:1110.918900px;}
.y114{bottom:1115.310900px;}
.y14a{bottom:1118.119050px;}
.y8b{bottom:1118.168550px;}
.y113{bottom:1131.510900px;}
.y8a{bottom:1135.718550px;}
.y5{bottom:1136.119050px;}
.ye3{bottom:1136.568900px;}
.y112{bottom:1147.710900px;}
.y89{bottom:1153.268550px;}
.ye2{bottom:1154.118900px;}
.y4{bottom:1154.119050px;}
.y59{bottom:1188.116700px;}
.h12{height:34.945312px;}
.hb{height:34.968750px;}
.h11{height:35.156250px;}
.ha{height:35.179688px;}
.h13{height:38.988000px;}
.h7{height:39.313477px;}
.h6{height:39.339844px;}
.h8{height:39.550781px;}
.h9{height:39.577148px;}
.hf{height:43.320000px;}
.h5{height:43.681641px;}
.hd{height:43.710938px;}
.h1a{height:43.945312px;}
.hc{height:43.974609px;}
.h1c{height:48.082031px;}
.h15{height:48.339844px;}
.h1b{height:48.372070px;}
.h16{height:48.550781px;}
.h19{height:52.453125px;}
.he{height:52.560000px;}
.h18{height:52.769531px;}
.h17{height:85.148438px;}
.h3{height:95.829237px;}
.h14{height:97.101562px;}
.h10{height:121.376953px;}
.h4{height:195.590661px;}
.h2{height:326.953125px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:31.351200px;}
.x2{left:42.994200px;}
.x12{left:64.449150px;}
.x7{left:68.031450px;}
.x1e{left:74.031450px;}
.x10{left:81.637800px;}
.x23{left:83.427150px;}
.x24{left:93.357000px;}
.x6{left:97.795350px;}
.x18{left:101.877300px;}
.x1c{left:103.795200px;}
.x11{left:109.077150px;}
.x17{left:110.551200px;}
.x8{left:127.559100px;}
.x13{left:140.314950px;}
.x20{left:178.582650px;}
.x29{left:186.552150px;}
.x27{left:198.173850px;}
.x28{left:212.393850px;}
.x26{left:240.346350px;}
.x21{left:289.342200px;}
.x2a{left:315.990150px;}
.x25{left:339.878100px;}
.x1b{left:341.858250px;}
.x22{left:349.459350px;}
.x1f{left:364.560450px;}
.x1a{left:371.622000px;}
.xc{left:429.572400px;}
.xe{left:431.700150px;}
.xd{left:440.870100px;}
.x9{left:444.330750px;}
.x14{left:472.580700px;}
.xf{left:485.046000px;}
.xa{left:503.858250px;}
.xb{left:535.030200px;}
.x5{left:625.589850px;}
.x19{left:676.126800px;}
.x1{left:686.149500px;}
.x4{left:724.825650px;}
.x1d{left:769.436400px;}
.x15{left:776.636400px;}
.x16{left:855.632400px;}
@media print{
.v1{vertical-align:-17.760533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.ls9{letter-spacing:-3.946667pt;}
.ls11{letter-spacing:-3.253333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.001067pt;}
.ls4{letter-spacing:0.001600pt;}
.ls3{letter-spacing:0.002667pt;}
.ls7{letter-spacing:0.003200pt;}
.lsf{letter-spacing:0.004373pt;}
.lse{letter-spacing:0.004907pt;}
.lsb{letter-spacing:0.008533pt;}
.ls10{letter-spacing:0.009067pt;}
.lsa{letter-spacing:0.693333pt;}
.ls6{letter-spacing:1.866667pt;}
.ls2{letter-spacing:7.680000pt;}
.ls1{letter-spacing:9.600000pt;}
.lsc{letter-spacing:12.800000pt;}
.lsd{letter-spacing:12.806400pt;}
.ls5{letter-spacing:24.000000pt;}
.ws0{word-spacing:-110.310400pt;}
.ws2{word-spacing:-66.388476pt;}
.ws1{word-spacing:-32.505094pt;}
.ws7{word-spacing:-24.000000pt;}
.ws4{word-spacing:-22.944000pt;}
.ws38{word-spacing:-17.792000pt;}
.ws6{word-spacing:-16.693333pt;}
.wsa{word-spacing:-15.520000pt;}
.ws5{word-spacing:-14.826667pt;}
.wsc{word-spacing:-13.344000pt;}
.ws10{word-spacing:-12.800000pt;}
.ws8{word-spacing:-10.880000pt;}
.ws9{word-spacing:-6.343467pt;}
.ws27{word-spacing:-4.800000pt;}
.ws18{word-spacing:-3.840000pt;}
.ws39{word-spacing:-3.520000pt;}
.ws24{word-spacing:-3.253333pt;}
.ws25{word-spacing:-3.093333pt;}
.ws2b{word-spacing:-2.986667pt;}
.ws2a{word-spacing:-2.933333pt;}
.ws2e{word-spacing:-2.346667pt;}
.ws29{word-spacing:-2.186667pt;}
.ws1e{word-spacing:-1.600000pt;}
.wsb{word-spacing:-1.578667pt;}
.ws26{word-spacing:-0.586667pt;}
.ws3{word-spacing:0.000000pt;}
.ws16{word-spacing:0.213333pt;}
.ws37{word-spacing:0.336000pt;}
.ws1a{word-spacing:0.533333pt;}
.ws11{word-spacing:0.853333pt;}
.ws32{word-spacing:1.013333pt;}
.ws2f{word-spacing:1.333333pt;}
.ws33{word-spacing:1.386667pt;}
.ws30{word-spacing:1.600000pt;}
.ws21{word-spacing:2.293333pt;}
.ws1f{word-spacing:2.453333pt;}
.ws28{word-spacing:2.560000pt;}
.ws22{word-spacing:2.773333pt;}
.ws23{word-spacing:3.253333pt;}
.ws17{word-spacing:4.266667pt;}
.ws2c{word-spacing:4.586667pt;}
.ws31{word-spacing:5.013333pt;}
.ws34{word-spacing:5.333333pt;}
.ws2d{word-spacing:5.760000pt;}
.ws19{word-spacing:6.720000pt;}
.ws1d{word-spacing:7.733333pt;}
.ws36{word-spacing:8.853333pt;}
.ws1c{word-spacing:9.386667pt;}
.ws12{word-spacing:9.493333pt;}
.ws1b{word-spacing:9.973333pt;}
.wse{word-spacing:10.080000pt;}
.ws15{word-spacing:10.240000pt;}
.wsf{word-spacing:12.288000pt;}
.ws20{word-spacing:12.586667pt;}
.ws35{word-spacing:15.520000pt;}
.wsd{word-spacing:16.224000pt;}
.ws14{word-spacing:18.186667pt;}
.ws13{word-spacing:18.880000pt;}
._14{margin-left:-2592.872000pt;}
._2b{margin-left:-782.528000pt;}
._0{margin-left:-663.052800pt;}
._28{margin-left:-576.128000pt;}
._2{margin-left:-531.107806pt;}
._2c{margin-left:-483.739733pt;}
._1{margin-left:-448.406608pt;}
._2a{margin-left:-415.565867pt;}
._29{margin-left:-320.000000pt;}
._1a{margin-left:-15.485867pt;}
._17{margin-left:-14.293333pt;}
._11{margin-left:-13.001067pt;}
._7{margin-left:-11.818667pt;}
._19{margin-left:-10.772800pt;}
._8{margin-left:-9.600000pt;}
._13{margin-left:-8.284800pt;}
._d{margin-left:-6.968000pt;}
._5{margin-left:-5.379733pt;}
._6{margin-left:-4.482133pt;}
._3{margin-left:-2.901333pt;}
._4{margin-left:-1.800000pt;}
._18{margin-left:-0.889600pt;}
._16{width:0.910933pt;}
._e{width:1.904000pt;}
._1c{width:2.926400pt;}
._15{width:4.460267pt;}
._1b{width:5.577600pt;}
._1e{width:6.499200pt;}
._10{width:7.673067pt;}
._f{width:8.899733pt;}
._12{width:10.328000pt;}
._1d{width:11.609600pt;}
._23{width:12.821333pt;}
._25{width:13.936000pt;}
._21{width:16.185600pt;}
._1f{width:17.808000pt;}
._20{width:18.926400pt;}
._24{width:20.594667pt;}
._9{width:22.224000pt;}
._c{width:24.000000pt;}
._26{width:25.434667pt;}
._22{width:27.322667pt;}
._27{width:52.451200pt;}
._b{width:93.654400pt;}
._a{width:901.815467pt;}
.fsa{font-size:31.093333pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fsb{font-size:112.000000pt;}
.fs1{font-size:116.924800pt;}
.fs8{font-size:128.000000pt;}
.fs7{font-size:160.000000pt;}
.fs2{font-size:238.807467pt;}
.fs0{font-size:396.800000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:69.850267pt;}
.y197{bottom:97.883600pt;}
.y196{bottom:113.883600pt;}
.y88{bottom:114.601600pt;}
.y149{bottom:117.214933pt;}
.y5b{bottom:117.716667pt;}
.y17f{bottom:119.657733pt;}
.ye1{bottom:125.146533pt;}
.y58{bottom:125.692133pt;}
.y111{bottom:126.718400pt;}
.y195{bottom:129.883600pt;}
.y87{bottom:130.201600pt;}
.y148{bottom:133.214933pt;}
.y17e{bottom:135.657733pt;}
.yb8{bottom:140.346533pt;}
.ye0{bottom:140.746533pt;}
.y110{bottom:141.118400pt;}
.y57{bottom:141.692133pt;}
.y86{bottom:145.801600pt;}
.y194{bottom:145.883600pt;}
.y1c7{bottom:149.432133pt;}
.y17d{bottom:151.657733pt;}
.y10f{bottom:155.518400pt;}
.yb7{bottom:155.946533pt;}
.ydf{bottom:156.346533pt;}
.y147{bottom:156.774000pt;}
.y56{bottom:157.692133pt;}
.y193{bottom:161.883600pt;}
.y1c6{bottom:163.832133pt;}
.y17c{bottom:167.657733pt;}
.y85{bottom:168.960667pt;}
.y10e{bottom:169.918400pt;}
.y55{bottom:173.692133pt;}
.y192{bottom:177.883600pt;}
.y1c5{bottom:178.232133pt;}
.yb6{bottom:179.105600pt;}
.yde{bottom:179.505600pt;}
.y17b{bottom:183.657733pt;}
.y10d{bottom:184.318400pt;}
.y84{bottom:184.560667pt;}
.y54{bottom:189.692133pt;}
.y2d{bottom:189.940800pt;}
.y146{bottom:191.440667pt;}
.y1c4{bottom:192.632133pt;}
.y191{bottom:193.883600pt;}
.yb5{bottom:194.705600pt;}
.ydd{bottom:195.105600pt;}
.y10c{bottom:198.718400pt;}
.y17a{bottom:199.657733pt;}
.y83{bottom:200.160667pt;}
.y53{bottom:205.692133pt;}
.y2c{bottom:205.940800pt;}
.y1c3{bottom:207.032000pt;}
.y145{bottom:207.440667pt;}
.y190{bottom:209.883600pt;}
.yb4{bottom:210.305600pt;}
.ydc{bottom:210.705600pt;}
.y10b{bottom:213.118400pt;}
.y179{bottom:215.657733pt;}
.y1c2{bottom:221.432133pt;}
.y52{bottom:221.692133pt;}
.y2b{bottom:221.940800pt;}
.y82{bottom:223.319733pt;}
.y144{bottom:223.440667pt;}
.y18f{bottom:225.883600pt;}
.y10a{bottom:227.518400pt;}
.y178{bottom:231.657733pt;}
.yb3{bottom:233.464533pt;}
.ydb{bottom:233.864533pt;}
.y1c1{bottom:235.832133pt;}
.y51{bottom:237.692133pt;}
.y2a{bottom:237.940800pt;}
.y81{bottom:238.919733pt;}
.y143{bottom:239.440667pt;}
.y18e{bottom:241.883600pt;}
.y109{bottom:246.921333pt;}
.y177{bottom:247.657733pt;}
.yb2{bottom:249.064667pt;}
.yda{bottom:249.464533pt;}
.y1c0{bottom:250.232133pt;}
.y50{bottom:253.692133pt;}
.y29{bottom:253.940800pt;}
.y142{bottom:255.440667pt;}
.y18d{bottom:257.883600pt;}
.y108{bottom:261.321333pt;}
.y80{bottom:262.078800pt;}
.y176{bottom:263.657733pt;}
.y1bf{bottom:264.632133pt;}
.y1cd{bottom:269.195867pt;}
.y4f{bottom:269.692133pt;}
.y28{bottom:269.940800pt;}
.y141{bottom:271.440667pt;}
.yb1{bottom:272.223600pt;}
.yd9{bottom:272.623733pt;}
.y18c{bottom:273.883600pt;}
.y107{bottom:275.721333pt;}
.y7f{bottom:277.678800pt;}
.y1be{bottom:279.032000pt;}
.y175{bottom:279.657733pt;}
.y1cc{bottom:285.195867pt;}
.y4e{bottom:285.692133pt;}
.y27{bottom:285.940800pt;}
.y140{bottom:287.440667pt;}
.yb0{bottom:287.823600pt;}
.yd8{bottom:288.223600pt;}
.y18b{bottom:289.883600pt;}
.y7e{bottom:293.278800pt;}
.y1bd{bottom:293.432133pt;}
.y174{bottom:295.657733pt;}
.y106{bottom:297.680400pt;}
.y26{bottom:301.940800pt;}
.y13f{bottom:303.440667pt;}
.yd7{bottom:303.823600pt;}
.y18a{bottom:305.883600pt;}
.y1bc{bottom:307.832133pt;}
.yaf{bottom:310.982800pt;}
.y173{bottom:311.657733pt;}
.y105{bottom:312.080400pt;}
.y1d6{bottom:315.772667pt;}
.y7d{bottom:316.437867pt;}
.y25{bottom:317.940800pt;}
.y13e{bottom:319.440667pt;}
.y189{bottom:321.883600pt;}
.y1bb{bottom:322.232133pt;}
.y104{bottom:326.480400pt;}
.yae{bottom:326.582667pt;}
.yd6{bottom:326.982800pt;}
.y172{bottom:327.657733pt;}
.y7c{bottom:332.037867pt;}
.y1d5{bottom:333.372667pt;}
.y24{bottom:333.940800pt;}
.y13d{bottom:335.440667pt;}
.y1ba{bottom:336.632133pt;}
.y188{bottom:337.883600pt;}
.y103{bottom:340.880400pt;}
.yad{bottom:342.182667pt;}
.yd5{bottom:342.582667pt;}
.y171{bottom:343.657733pt;}
.y23{bottom:349.940800pt;}
.y1d4{bottom:350.972667pt;}
.y1b9{bottom:351.032000pt;}
.y13c{bottom:351.440667pt;}
.y187{bottom:353.883600pt;}
.y7b{bottom:355.196933pt;}
.y102{bottom:355.280400pt;}
.y4d{bottom:357.490267pt;}
.y170{bottom:359.657867pt;}
.yac{bottom:365.341733pt;}
.yd4{bottom:365.741733pt;}
.y22{bottom:365.940800pt;}
.y13b{bottom:367.440667pt;}
.y1d3{bottom:368.572667pt;}
.y101{bottom:369.680400pt;}
.y186{bottom:369.883600pt;}
.y7a{bottom:370.796933pt;}
.y4c{bottom:373.490267pt;}
.y16f{bottom:375.657867pt;}
.yab{bottom:380.941733pt;}
.yd3{bottom:381.341733pt;}
.y1b8{bottom:381.432133pt;}
.y21{bottom:381.940800pt;}
.y13a{bottom:383.440667pt;}
.y100{bottom:384.080400pt;}
.y185{bottom:385.883600pt;}
.y1d2{bottom:386.172667pt;}
.y79{bottom:386.396933pt;}
.y4b{bottom:389.490267pt;}
.y16e{bottom:391.657867pt;}
.y1b7{bottom:397.432133pt;}
.y20{bottom:397.940800pt;}
.yff{bottom:398.480400pt;}
.y139{bottom:399.440667pt;}
.y184{bottom:401.883600pt;}
.yaa{bottom:404.100800pt;}
.yd2{bottom:404.500800pt;}
.y4a{bottom:405.490267pt;}
.y16d{bottom:407.657867pt;}
.y78{bottom:409.556000pt;}
.yfe{bottom:412.880400pt;}
.y1b6{bottom:413.432133pt;}
.y1f{bottom:413.940800pt;}
.y138{bottom:415.440667pt;}
.y183{bottom:417.883600pt;}
.ya9{bottom:419.700800pt;}
.yd1{bottom:420.100800pt;}
.y49{bottom:421.490267pt;}
.y16c{bottom:423.657867pt;}
.y77{bottom:425.156000pt;}
.yfd{bottom:427.280400pt;}
.y1b5{bottom:429.432133pt;}
.y1e{bottom:429.940800pt;}
.y137{bottom:431.440667pt;}
.y182{bottom:433.883600pt;}
.yd0{bottom:435.700800pt;}
.y48{bottom:437.490267pt;}
.y76{bottom:440.756000pt;}
.yfc{bottom:441.680400pt;}
.ya8{bottom:442.859867pt;}
.y1b4{bottom:445.432133pt;}
.y1d{bottom:445.940800pt;}
.y16b{bottom:447.216933pt;}
.y136{bottom:447.440667pt;}
.y181{bottom:449.883600pt;}
.yfb{bottom:456.080400pt;}
.ya7{bottom:458.459867pt;}
.ycf{bottom:458.859867pt;}
.y1b3{bottom:461.432133pt;}
.y1c{bottom:461.940800pt;}
.y135{bottom:463.440667pt;}
.y75{bottom:463.914933pt;}
.y180{bottom:465.883600pt;}
.yfa{bottom:470.480533pt;}
.yce{bottom:474.459867pt;}
.y1b2{bottom:477.432133pt;}
.y1b{bottom:477.940800pt;}
.y134{bottom:479.440667pt;}
.y74{bottom:479.515067pt;}
.ya6{bottom:481.618933pt;}
.y16a{bottom:481.883600pt;}
.yf9{bottom:484.880400pt;}
.y1b1{bottom:493.432133pt;}
.y1a{bottom:493.940800pt;}
.y133{bottom:495.440667pt;}
.ya5{bottom:497.218933pt;}
.ycd{bottom:497.618933pt;}
.y169{bottom:497.883600pt;}
.yf8{bottom:499.280533pt;}
.y47{bottom:499.950933pt;}
.y73{bottom:502.674133pt;}
.y1b0{bottom:509.432133pt;}
.y19{bottom:509.940800pt;}
.y46{bottom:512.750933pt;}
.ycc{bottom:513.218933pt;}
.yf7{bottom:513.680400pt;}
.y168{bottom:513.883600pt;}
.y72{bottom:518.274000pt;}
.y132{bottom:518.999733pt;}
.ya4{bottom:520.378000pt;}
.y1af{bottom:525.432133pt;}
.y45{bottom:525.550933pt;}
.y18{bottom:525.940800pt;}
.ycb{bottom:528.818933pt;}
.y167{bottom:529.883600pt;}
.ya3{bottom:535.978000pt;}
.y44{bottom:538.350933pt;}
.y1ae{bottom:541.432133pt;}
.y71{bottom:541.433067pt;}
.y17{bottom:541.940800pt;}
.y166{bottom:545.883600pt;}
.y43{bottom:551.150933pt;}
.yca{bottom:551.978000pt;}
.y131{bottom:553.666400pt;}
.y70{bottom:557.033067pt;}
.y1d1{bottom:557.215867pt;}
.y1ad{bottom:557.432133pt;}
.y16{bottom:557.940800pt;}
.ya2{bottom:559.137067pt;}
.y165{bottom:561.883600pt;}
.y42{bottom:563.950933pt;}
.yf6{bottom:565.083467pt;}
.yc9{bottom:567.578000pt;}
.y130{bottom:568.066400pt;}
.y1ac{bottom:573.432133pt;}
.y15{bottom:573.940800pt;}
.ya1{bottom:574.737067pt;}
.y1d0{bottom:574.815867pt;}
.y41{bottom:576.750933pt;}
.y164{bottom:577.883600pt;}
.y6f{bottom:580.192133pt;}
.y12f{bottom:582.466400pt;}
.yf5{bottom:582.683467pt;}
.y1ab{bottom:589.432133pt;}
.y40{bottom:589.550933pt;}
.y14{bottom:589.940800pt;}
.yc8{bottom:590.737067pt;}
.y1cf{bottom:592.415867pt;}
.y163{bottom:593.883600pt;}
.y6e{bottom:595.792133pt;}
.ya0{bottom:597.896133pt;}
.yf4{bottom:600.283467pt;}
.y3f{bottom:602.350933pt;}
.y12e{bottom:604.425467pt;}
.y13{bottom:605.940800pt;}
.yc7{bottom:606.337067pt;}
.y162{bottom:609.883600pt;}
.y1ce{bottom:610.015867pt;}
.y1aa{bottom:612.991200pt;}
.y9f{bottom:613.496133pt;}
.y3e{bottom:615.150933pt;}
.yf3{bottom:617.883467pt;}
.y12d{bottom:618.825467pt;}
.y6d{bottom:618.951200pt;}
.y12{bottom:621.940800pt;}
.y161{bottom:625.883600pt;}
.y3d{bottom:627.950933pt;}
.yc6{bottom:629.496133pt;}
.y12c{bottom:633.225467pt;}
.y6c{bottom:634.551200pt;}
.yf2{bottom:635.483467pt;}
.y9e{bottom:636.655200pt;}
.y11{bottom:637.940800pt;}
.y3c{bottom:640.750933pt;}
.y160{bottom:641.883600pt;}
.yc5{bottom:645.096133pt;}
.y12b{bottom:647.625467pt;}
.y1a9{bottom:647.657867pt;}
.y9d{bottom:652.255200pt;}
.y3b{bottom:653.550933pt;}
.y10{bottom:653.940800pt;}
.y6b{bottom:657.710267pt;}
.y15f{bottom:657.883600pt;}
.y12a{bottom:662.025467pt;}
.y1a8{bottom:663.657867pt;}
.y3a{bottom:666.350933pt;}
.y1c8{bottom:667.223600pt;}
.yc4{bottom:668.255200pt;}
.yf{bottom:669.940800pt;}
.yf1{bottom:670.683467pt;}
.y6a{bottom:673.310267pt;}
.y15e{bottom:673.883600pt;}
.y9c{bottom:675.414267pt;}
.y129{bottom:676.425467pt;}
.y39{bottom:679.150933pt;}
.y1a7{bottom:679.657867pt;}
.yc3{bottom:683.855200pt;}
.y2{bottom:684.065600pt;}
.ye{bottom:685.940800pt;}
.yf0{bottom:688.283467pt;}
.y69{bottom:688.910267pt;}
.y15d{bottom:689.883600pt;}
.y128{bottom:690.825467pt;}
.y9b{bottom:691.014133pt;}
.y38{bottom:691.950933pt;}
.y1a6{bottom:695.657733pt;}
.yd{bottom:701.940800pt;}
.y37{bottom:704.750933pt;}
.y127{bottom:705.225467pt;}
.yef{bottom:705.883467pt;}
.y15c{bottom:705.883600pt;}
.y9a{bottom:706.614267pt;}
.yc2{bottom:707.014267pt;}
.y1a5{bottom:711.657733pt;}
.y68{bottom:712.069333pt;}
.y36{bottom:717.550933pt;}
.y3{bottom:717.761200pt;}
.yc{bottom:717.940800pt;}
.y126{bottom:719.625467pt;}
.y15b{bottom:721.883600pt;}
.yc1{bottom:722.614267pt;}
.yee{bottom:723.483467pt;}
.y1a4{bottom:727.657733pt;}
.y67{bottom:727.669333pt;}
.y99{bottom:729.773333pt;}
.y35{bottom:730.350933pt;}
.y1cb{bottom:732.716267pt;}
.yb{bottom:733.940800pt;}
.y125{bottom:734.025467pt;}
.y15a{bottom:737.883600pt;}
.yed{bottom:741.083467pt;}
.y34{bottom:743.150933pt;}
.y1a3{bottom:743.657733pt;}
.y98{bottom:745.373333pt;}
.yc0{bottom:745.773333pt;}
.y124{bottom:748.425467pt;}
.ya{bottom:749.940800pt;}
.y66{bottom:750.828400pt;}
.y159{bottom:753.883600pt;}
.y33{bottom:755.950933pt;}
.yec{bottom:758.683467pt;}
.y1ca{bottom:759.475333pt;}
.y1a2{bottom:759.657733pt;}
.ybf{bottom:761.373333pt;}
.y123{bottom:762.825467pt;}
.y65{bottom:766.428400pt;}
.y97{bottom:768.532267pt;}
.y32{bottom:768.750933pt;}
.y158{bottom:769.883600pt;}
.y9{bottom:773.499867pt;}
.y1a1{bottom:775.657733pt;}
.y122{bottom:777.225467pt;}
.y31{bottom:781.550933pt;}
.y64{bottom:782.028400pt;}
.y96{bottom:784.132267pt;}
.ybe{bottom:784.532267pt;}
.y157{bottom:785.883600pt;}
.y1c9{bottom:786.234400pt;}
.y8{bottom:789.499867pt;}
.y121{bottom:791.625467pt;}
.y1a0{bottom:791.657733pt;}
.y30{bottom:794.350933pt;}
.y95{bottom:800.132267pt;}
.y156{bottom:801.883600pt;}
.y63{bottom:805.187467pt;}
.y120{bottom:806.025467pt;}
.y2f{bottom:807.150933pt;}
.y19f{bottom:807.657733pt;}
.y7{bottom:813.058933pt;}
.ybd{bottom:815.732400pt;}
.y155{bottom:817.883600pt;}
.y2e{bottom:819.950933pt;}
.y11f{bottom:820.425467pt;}
.y62{bottom:820.787467pt;}
.y94{bottom:823.291333pt;}
.y19e{bottom:823.657733pt;}
.y6{bottom:829.058933pt;}
.y1{bottom:833.036800pt;}
.y154{bottom:833.883600pt;}
.y11e{bottom:834.825467pt;}
.y93{bottom:838.891333pt;}
.y19d{bottom:839.657733pt;}
.y61{bottom:843.946533pt;}
.y11d{bottom:849.225467pt;}
.y153{bottom:849.883600pt;}
.ybc{bottom:854.491333pt;}
.y19c{bottom:855.657733pt;}
.y60{bottom:859.546533pt;}
.y92{bottom:862.050400pt;}
.y11c{bottom:863.625467pt;}
.y152{bottom:865.883600pt;}
.y19b{bottom:871.657733pt;}
.yeb{bottom:872.283467pt;}
.y91{bottom:877.650533pt;}
.y151{bottom:881.883600pt;}
.y5f{bottom:882.705600pt;}
.y11b{bottom:883.028533pt;}
.y19a{bottom:887.657733pt;}
.ybb{bottom:893.250400pt;}
.y11a{bottom:897.428533pt;}
.y150{bottom:897.883600pt;}
.y5e{bottom:898.305600pt;}
.y90{bottom:900.809467pt;}
.y199{bottom:903.657733pt;}
.yea{bottom:910.683467pt;}
.y119{bottom:911.828400pt;}
.y14f{bottom:913.883600pt;}
.y8f{bottom:916.409467pt;}
.y5d{bottom:921.464533pt;}
.y198{bottom:927.216933pt;}
.y14e{bottom:929.883600pt;}
.yba{bottom:932.009467pt;}
.ye7{bottom:932.765333pt;}
.y118{bottom:933.787467pt;}
.y5c{bottom:937.064667pt;}
.y8e{bottom:939.568533pt;}
.y14d{bottom:945.883600pt;}
.y117{bottom:948.187467pt;}
.ye6{bottom:948.365333pt;}
.ye9{bottom:949.083467pt;}
.y8d{bottom:955.168533pt;}
.y14c{bottom:961.883600pt;}
.y116{bottom:962.587467pt;}
.y8c{bottom:970.768533pt;}
.ye5{bottom:971.524400pt;}
.y115{bottom:976.987467pt;}
.y14b{bottom:977.883600pt;}
.yb9{bottom:986.368533pt;}
.ye4{bottom:987.124400pt;}
.ye8{bottom:987.483467pt;}
.y114{bottom:991.387467pt;}
.y14a{bottom:993.883600pt;}
.y8b{bottom:993.927600pt;}
.y113{bottom:1005.787467pt;}
.y8a{bottom:1009.527600pt;}
.y5{bottom:1009.883600pt;}
.ye3{bottom:1010.283467pt;}
.y112{bottom:1020.187467pt;}
.y89{bottom:1025.127600pt;}
.ye2{bottom:1025.883467pt;}
.y4{bottom:1025.883600pt;}
.y59{bottom:1056.103733pt;}
.h12{height:31.062500pt;}
.hb{height:31.083333pt;}
.h11{height:31.250000pt;}
.ha{height:31.270833pt;}
.h13{height:34.656000pt;}
.h7{height:34.945312pt;}
.h6{height:34.968750pt;}
.h8{height:35.156250pt;}
.h9{height:35.179688pt;}
.hf{height:38.506667pt;}
.h5{height:38.828125pt;}
.hd{height:38.854167pt;}
.h1a{height:39.062500pt;}
.hc{height:39.088542pt;}
.h1c{height:42.739583pt;}
.h15{height:42.968750pt;}
.h1b{height:42.997396pt;}
.h16{height:43.156250pt;}
.h19{height:46.625000pt;}
.he{height:46.720000pt;}
.h18{height:46.906250pt;}
.h17{height:75.687500pt;}
.h3{height:85.181544pt;}
.h14{height:86.312500pt;}
.h10{height:107.890625pt;}
.h4{height:173.858366pt;}
.h2{height:290.625000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:27.867733pt;}
.x2{left:38.217067pt;}
.x12{left:57.288133pt;}
.x7{left:60.472400pt;}
.x1e{left:65.805733pt;}
.x10{left:72.566933pt;}
.x23{left:74.157467pt;}
.x24{left:82.984000pt;}
.x6{left:86.929200pt;}
.x18{left:90.557600pt;}
.x1c{left:92.262400pt;}
.x11{left:96.957467pt;}
.x17{left:98.267733pt;}
.x8{left:113.385867pt;}
.x13{left:124.724400pt;}
.x20{left:158.740133pt;}
.x29{left:165.824133pt;}
.x27{left:176.154533pt;}
.x28{left:188.794533pt;}
.x26{left:213.641200pt;}
.x21{left:257.193067pt;}
.x2a{left:280.880133pt;}
.x25{left:302.113867pt;}
.x1b{left:303.874000pt;}
.x22{left:310.630533pt;}
.x1f{left:324.053733pt;}
.x1a{left:330.330667pt;}
.xc{left:381.842133pt;}
.xe{left:383.733467pt;}
.xd{left:391.884533pt;}
.x9{left:394.960667pt;}
.x14{left:420.071733pt;}
.xf{left:431.152000pt;}
.xa{left:447.874000pt;}
.xb{left:475.582400pt;}
.x5{left:556.079867pt;}
.x19{left:601.001600pt;}
.x1{left:609.910667pt;}
.x4{left:644.289467pt;}
.x1d{left:683.943467pt;}
.x15{left:690.343467pt;}
.x16{left:760.562133pt;}
}




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