
    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_01ea359bf224a7b273e4099b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_501ca0b7475b52289860bbe7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.693848;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_890014c5936962416ca0ebdc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_60209d89f4def1cc8ac6c5c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.727539;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_c71c23b880a9060085807810.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.863770;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_c29ae1a8c7ec9f15d3fa4e74.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.862793;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_307724c7356022e84cfcfa4b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_858bc630609dce0affb3e98d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_72e94b2a469680eb5e6c1c6a.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_011ae4d23a95040d49083c10.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v1{vertical-align:-87.240000px;}
.v0{vertical-align:0.000000px;}
.ls53{letter-spacing:-9.720000px;}
.ls3b{letter-spacing:-1.668000px;}
.ls35{letter-spacing:-1.620000px;}
.ls52{letter-spacing:-1.398000px;}
.ls19{letter-spacing:-1.392000px;}
.ls54{letter-spacing:-1.332000px;}
.ls60{letter-spacing:-0.720000px;}
.ls4f{letter-spacing:-0.618000px;}
.ls16{letter-spacing:-0.581400px;}
.ls1a{letter-spacing:-0.543600px;}
.ls38{letter-spacing:-0.540000px;}
.ls4e{letter-spacing:-0.524400px;}
.ls21{letter-spacing:-0.515400px;}
.ls10{letter-spacing:-0.510000px;}
.ls2c{letter-spacing:-0.504000px;}
.ls56{letter-spacing:-0.496200px;}
.ls2e{letter-spacing:-0.492600px;}
.ls1d{letter-spacing:-0.468000px;}
.ls55{letter-spacing:-0.423600px;}
.ls42{letter-spacing:-0.393000px;}
.ls2b{letter-spacing:-0.360000px;}
.ls4c{letter-spacing:-0.303000px;}
.lsd{letter-spacing:-0.289200px;}
.ls2a{letter-spacing:-0.109200px;}
.ls14{letter-spacing:-0.088800px;}
.ls22{letter-spacing:-0.040320px;}
.ls17{letter-spacing:-0.036000px;}
.ls29{letter-spacing:-0.029220px;}
.ls13{letter-spacing:-0.021480px;}
.lse{letter-spacing:-0.015840px;}
.ls4d{letter-spacing:-0.007080px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.004320px;}
.ls5c{letter-spacing:0.028920px;}
.ls41{letter-spacing:0.039000px;}
.ls45{letter-spacing:0.039456px;}
.ls11{letter-spacing:0.047520px;}
.ls3f{letter-spacing:0.072000px;}
.ls5f{letter-spacing:0.075000px;}
.ls3c{letter-spacing:0.108000px;}
.ls24{letter-spacing:0.119400px;}
.ls32{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.151200px;}
.ls4a{letter-spacing:0.192000px;}
.ls61{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.302400px;}
.ls28{letter-spacing:0.324000px;}
.ls27{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.361200px;}
.ls37{letter-spacing:0.396000px;}
.ls57{letter-spacing:0.421056px;}
.ls6{letter-spacing:0.440400px;}
.ls3{letter-spacing:0.483840px;}
.ls18{letter-spacing:0.489600px;}
.ls58{letter-spacing:0.525600px;}
.ls4{letter-spacing:0.553200px;}
.ls5a{letter-spacing:0.576000px;}
.ls23{letter-spacing:0.582000px;}
.ls1b{letter-spacing:0.600000px;}
.ls51{letter-spacing:0.606000px;}
.ls62{letter-spacing:0.642000px;}
.ls36{letter-spacing:0.684000px;}
.ls9{letter-spacing:0.690336px;}
.ls5e{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.722880px;}
.ls15{letter-spacing:0.858000px;}
.ls34{letter-spacing:0.900000px;}
.ls12{letter-spacing:0.930000px;}
.ls3a{letter-spacing:1.044000px;}
.ls39{letter-spacing:1.080000px;}
.ls2d{letter-spacing:1.482000px;}
.ls49{letter-spacing:1.512000px;}
.ls50{letter-spacing:1.548000px;}
.lsb{letter-spacing:2.162880px;}
.ls47{letter-spacing:5.832000px;}
.ls4b{letter-spacing:7.239456px;}
.ls48{letter-spacing:10.119456px;}
.ls33{letter-spacing:11.592000px;}
.ls44{letter-spacing:13.119456px;}
.lsc{letter-spacing:19.442880px;}
.ls5b{letter-spacing:25.056000px;}
.lsa{letter-spacing:28.082880px;}
.ls46{letter-spacing:34.632000px;}
.ls5d{letter-spacing:56.856000px;}
.ls43{letter-spacing:75.231936px;}
.ls31{letter-spacing:75.312000px;}
.ls3e{letter-spacing:75.375936px;}
.ls40{letter-spacing:75.456000px;}
.ls59{letter-spacing:85.104000px;}
.ls1e{letter-spacing:95.544000px;}
.ls1{letter-spacing:95.637600px;}
.ls5{letter-spacing:118.317600px;}
.ls2{letter-spacing:118.368000px;}
.ls26{letter-spacing:120.837600px;}
.ls25{letter-spacing:120.888000px;}
.ls1f{letter-spacing:121.032000px;}
.ls3d{letter-spacing:124.869600px;}
.ls30{letter-spacing:124.920000px;}
.ls7{letter-spacing:125.928000px;}
.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;}
}
.ws1b{word-spacing:-144.000000px;}
.ws36{word-spacing:-33.264000px;}
.ws3b{word-spacing:-33.218544px;}
.ws3a{word-spacing:-32.832000px;}
.ws35{word-spacing:-32.688000px;}
.ws38{word-spacing:-32.651544px;}
.ws37{word-spacing:-32.605464px;}
.ws39{word-spacing:-31.824000px;}
.ws1{word-spacing:-29.191920px;}
.ws2{word-spacing:-29.111664px;}
.ws1c{word-spacing:-27.372720px;}
.ws2d{word-spacing:-25.956000px;}
.ws22{word-spacing:-25.488000px;}
.ws24{word-spacing:-25.484544px;}
.ws1e{word-spacing:-25.092000px;}
.ws2e{word-spacing:-25.046544px;}
.ws20{word-spacing:-24.804000px;}
.ws8{word-spacing:-24.687120px;}
.wsb{word-spacing:-24.647664px;}
.ws1f{word-spacing:-24.552000px;}
.ws26{word-spacing:-24.516000px;}
.ws27{word-spacing:-24.479544px;}
.ws15{word-spacing:-24.440544px;}
.ws2a{word-spacing:-24.433464px;}
.ws19{word-spacing:-24.408000px;}
.ws12{word-spacing:-24.389664px;}
.wse{word-spacing:-24.372000px;}
.ws1a{word-spacing:-24.331344px;}
.wsf{word-spacing:-24.246720px;}
.ws29{word-spacing:-24.137544px;}
.ws13{word-spacing:-24.059520px;}
.ws23{word-spacing:-24.048000px;}
.ws28{word-spacing:-24.047544px;}
.ws31{word-spacing:-23.940000px;}
.ws2b{word-spacing:-23.916144px;}
.ws5{word-spacing:-23.908320px;}
.ws21{word-spacing:-23.868000px;}
.ws2c{word-spacing:-23.822544px;}
.ws7{word-spacing:-23.804640px;}
.ws9{word-spacing:-23.768184px;}
.wsd{word-spacing:-23.757120px;}
.ws4{word-spacing:-23.741280px;}
.wsa{word-spacing:-23.700864px;}
.ws3{word-spacing:-23.467920px;}
.ws14{word-spacing:-23.289120px;}
.ws6{word-spacing:-23.247120px;}
.ws11{word-spacing:-23.246064px;}
.wsc{word-spacing:-23.208264px;}
.ws18{word-spacing:-23.138784px;}
.ws16{word-spacing:-23.110560px;}
.ws17{word-spacing:-23.106240px;}
.ws32{word-spacing:-23.076000px;}
.ws2f{word-spacing:-23.042544px;}
.ws1d{word-spacing:-22.788000px;}
.ws25{word-spacing:-22.772544px;}
.ws10{word-spacing:-22.365120px;}
.ws30{word-spacing:-14.688000px;}
.ws33{word-spacing:-13.244880px;}
.ws34{word-spacing:-13.204824px;}
.ws0{word-spacing:0.000000px;}
._1a{margin-left:-10.670880px;}
._7{margin-left:-8.867808px;}
._a{margin-left:-7.663200px;}
._3{margin-left:-5.832000px;}
._4{margin-left:-4.786560px;}
._2{margin-left:-3.240000px;}
._0{margin-left:-1.512000px;}
._1{width:1.080000px;}
._13{width:2.116128px;}
._5{width:3.120720px;}
._12{width:4.567440px;}
._15{width:5.869200px;}
._22{width:7.053648px;}
._14{width:8.424960px;}
._c{width:9.914400px;}
._b{width:11.781600px;}
._11{width:13.428000px;}
._1e{width:16.716000px;}
._f{width:17.748000px;}
._1b{width:18.759312px;}
._10{width:19.788960px;}
._19{width:21.125280px;}
._1d{width:22.537440px;}
._24{width:25.176000px;}
._23{width:26.208000px;}
._d{width:27.350880px;}
._e{width:28.764000px;}
._1c{width:30.727824px;}
._1f{width:32.220576px;}
._20{width:33.852000px;}
._21{width:35.616000px;}
._9{width:45.968400px;}
._8{width:47.582880px;}
._16{width:51.323280px;}
._18{width:52.368720px;}
._17{width:53.616000px;}
._25{width:56.904000px;}
._26{width:58.992000px;}
._6{width:888.852000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(23,55,94);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs19{font-size:54.720000px;}
.fs17{font-size:60.480000px;}
.fs18{font-size:60.624000px;}
.fs16{font-size:102.240000px;}
.fs15{font-size:102.384000px;}
.fse{font-size:105.120000px;}
.fsf{font-size:105.264000px;}
.fs7{font-size:108.000000px;}
.fs6{font-size:108.144000px;}
.fs11{font-size:113.760000px;}
.fs10{font-size:113.904000px;}
.fs13{font-size:119.520000px;}
.fs14{font-size:119.664000px;}
.fs9{font-size:126.720000px;}
.fsa{font-size:126.864000px;}
.fs4{font-size:132.480000px;}
.fs5{font-size:132.624000px;}
.fs2{font-size:144.000000px;}
.fs3{font-size:144.144000px;}
.fs12{font-size:168.624000px;}
.fsb{font-size:191.520000px;}
.fs8{font-size:191.664000px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:216.144000px;}
.fsc{font-size:240.480000px;}
.fsd{font-size:240.624000px;}
.y0{bottom:0.000000px;}
.yae{bottom:10.440000px;}
.yb1{bottom:13.425000px;}
.yaa{bottom:13.470000px;}
.ya0{bottom:13.500000px;}
.y99{bottom:13.530000px;}
.y95{bottom:13.575000px;}
.y7d{bottom:15.630000px;}
.y75{bottom:15.765000px;}
.y79{bottom:15.870000px;}
.y71{bottom:16.020000px;}
.y86{bottom:20.190000px;}
.ybb{bottom:20.235000px;}
.y84{bottom:32.790000px;}
.yb9{bottom:33.915000px;}
.yff{bottom:38.556000px;}
.y111{bottom:40.140000px;}
.y73{bottom:41.325000px;}
.y77{bottom:42.870000px;}
.y23{bottom:45.396000px;}
.y138{bottom:48.450000px;}
.y25{bottom:48.708000px;}
.ya7{bottom:53.280000px;}
.y134{bottom:54.285000px;}
.y13b{bottom:54.360000px;}
.y7b{bottom:56.310000px;}
.yb5{bottom:56.880000px;}
.y9e{bottom:57.780000px;}
.yee{bottom:59.760000px;}
.y130{bottom:60.840000px;}
.y6f{bottom:61.740000px;}
.y5e{bottom:63.936000px;}
.ya5{bottom:69.300000px;}
.y82{bottom:69.765000px;}
.ydd{bottom:78.480000px;}
.yb2{bottom:80.640000px;}
.y102{bottom:86.400000px;}
.yd0{bottom:87.480000px;}
.yf0{bottom:90.000000px;}
.y11e{bottom:90.255000px;}
.y13c{bottom:91.584000px;}
.yed{bottom:92.160000px;}
.y5d{bottom:94.536000px;}
.y30{bottom:102.276000px;}
.yb{bottom:106.308000px;}
.yfe{bottom:108.825000px;}
.yfc{bottom:109.005000px;}
.yfa{bottom:109.050000px;}
.y22{bottom:110.232000px;}
.y13e{bottom:114.228000px;}
.y12f{bottom:117.030000px;}
.ydc{bottom:120.996000px;}
.y110{bottom:122.730000px;}
.y10d{bottom:122.940000px;}
.y10e{bottom:122.970000px;}
.yac{bottom:123.990000px;}
.y9b{bottom:124.050000px;}
.yec{bottom:124.596000px;}
.y12b{bottom:124.920000px;}
.y5c{bottom:125.172000px;}
.y40{bottom:127.152000px;}
.ycf{bottom:129.636000px;}
.yb8{bottom:131.040000px;}
.y83{bottom:133.560000px;}
.y2f{bottom:134.712000px;}
.yb6{bottom:140.505000px;}
.yba{bottom:144.720000px;}
.y124{bottom:145.080000px;}
.y13d{bottom:145.908000px;}
.y85{bottom:146.160000px;}
.y21{bottom:148.032000px;}
.ya{bottom:148.788000px;}
.yb3{bottom:149.145000px;}
.ya2{bottom:155.700000px;}
.y5b{bottom:155.775000px;}
.y3f{bottom:158.475000px;}
.y137{bottom:161.640000px;}
.yce{bottom:162.390000px;}
.yeb{bottom:163.470000px;}
.y6d{bottom:163.650000px;}
.ydb{bottom:164.190000px;}
.y2e{bottom:167.115000px;}
.yfd{bottom:170.280000px;}
.yab{bottom:170.640000px;}
.y10f{bottom:171.720000px;}
.y13a{bottom:178.380000px;}
.y125{bottom:182.160000px;}
.y12a{bottom:182.985000px;}
.yb7{bottom:183.960000px;}
.y5a{bottom:186.375000px;}
.y9{bottom:188.430000px;}
.y93{bottom:191.055000px;}
.y20{bottom:193.425000px;}
.ycd{bottom:194.790000px;}
.yea{bottom:195.870000px;}
.y3e{bottom:196.305000px;}
.yda{bottom:196.590000px;}
.y80{bottom:201.135000px;}
.y81{bottom:205.920000px;}
.y139{bottom:210.060000px;}
.y67{bottom:213.300000px;}
.yb4{bottom:216.360000px;}
.y96{bottom:216.720000px;}
.y59{bottom:217.005000px;}
.y91{bottom:218.340000px;}
.y129{bottom:219.600000px;}
.y133{bottom:219.960000px;}
.y12e{bottom:221.400000px;}
.y101{bottom:224.490000px;}
.y3d{bottom:227.985000px;}
.y8{bottom:228.750000px;}
.y1f{bottom:231.225000px;}
.ycc{bottom:233.715000px;}
.ye9{bottom:234.795000px;}
.yd9{bottom:235.515000px;}
.ya1{bottom:236.160000px;}
.yf1{bottom:237.240000px;}
.y7f{bottom:238.575000px;}
.y136{bottom:242.535000px;}
.y132{bottom:245.850000px;}
.y12d{bottom:245.910000px;}
.y58{bottom:247.605000px;}
.yb0{bottom:248.760000px;}
.y113{bottom:249.120000px;}
.y100{bottom:251.610000px;}
.yaf{bottom:251.745000px;}
.y128{bottom:253.005000px;}
.y122{bottom:253.980000px;}
.y66{bottom:256.530000px;}
.y7a{bottom:257.760000px;}
.y90{bottom:261.540000px;}
.y103{bottom:261.870000px;}
.y14a{bottom:263.955000px;}
.y3c{bottom:265.785000px;}
.ycb{bottom:266.115000px;}
.ye8{bottom:267.195000px;}
.y12{bottom:267.330000px;}
.yf2{bottom:267.690000px;}
.yd8{bottom:267.915000px;}
.y2d{bottom:269.745000px;}
.y7{bottom:271.980000px;}
.y97{bottom:272.370000px;}
.ya8{bottom:273.750000px;}
.y135{bottom:274.215000px;}
.y7e{bottom:275.685000px;}
.y112{bottom:276.270000px;}
.y1e{bottom:276.630000px;}
.y11f{bottom:276.840000px;}
.y131{bottom:277.530000px;}
.y12c{bottom:277.590000px;}
.y57{bottom:278.250000px;}
.yad{bottom:281.160000px;}
.y127{bottom:284.325000px;}
.y121{bottom:285.330000px;}
.ya4{bottom:290.160000px;}
.y104{bottom:291.630000px;}
.y114{bottom:295.890000px;}
.yf3{bottom:298.185000px;}
.y7c{bottom:298.440000px;}
.yca{bottom:298.545000px;}
.ye7{bottom:299.625000px;}
.y65{bottom:299.730000px;}
.y6c{bottom:301.680000px;}
.y3b{bottom:303.630000px;}
.y8f{bottom:304.770000px;}
.yd7{bottom:306.825000px;}
.y149{bottom:307.185000px;}
.y56{bottom:308.850000px;}
.y76{bottom:309.600000px;}
.ya9{bottom:313.560000px;}
.y1d{bottom:314.430000px;}
.y126{bottom:316.050000px;}
.y120{bottom:317.010000px;}
.y105{bottom:321.375000px;}
.y6{bottom:328.605000px;}
.yf4{bottom:328.680000px;}
.y115{bottom:329.865000px;}
.y92{bottom:330.480000px;}
.y11{bottom:332.175000px;}
.y9a{bottom:332.640000px;}
.y78{bottom:336.600000px;}
.yc9{bottom:337.425000px;}
.ye6{bottom:338.505000px;}
.yd6{bottom:339.225000px;}
.y55{bottom:339.450000px;}
.y3a{bottom:341.430000px;}
.y64{bottom:342.975000px;}
.ya6{bottom:345.960000px;}
.y8e{bottom:347.970000px;}
.y72{bottom:349.560000px;}
.y148{bottom:350.385000px;}
.y106{bottom:351.105000px;}
.y1c{bottom:352.230000px;}
.y123{bottom:353.160000px;}
.yfb{bottom:357.840000px;}
.yf5{bottom:359.175000px;}
.yc2{bottom:360.540000px;}
.y116{bottom:363.885000px;}
.y26{bottom:365.220000px;}
.y9d{bottom:366.480000px;}
.y6e{bottom:367.560000px;}
.y49{bottom:369.870000px;}
.y54{bottom:370.080000px;}
.ye5{bottom:370.950000px;}
.y14{bottom:374.220000px;}
.y74{bottom:375.120000px;}
.yd5{bottom:378.150000px;}
.ya3{bottom:378.360000px;}
.y39{bottom:379.260000px;}
.y107{bottom:380.880000px;}
.y63{bottom:386.175000px;}
.yf6{bottom:389.625000px;}
.y8d{bottom:391.215000px;}
.y5{bottom:393.450000px;}
.y1b{bottom:397.620000px;}
.y117{bottom:397.875000px;}
.y53{bottom:400.680000px;}
.yc8{bottom:402.270000px;}
.ye4{bottom:403.350000px;}
.yc1{bottom:403.740000px;}
.y6b{bottom:403.815000px;}
.y38{bottom:410.580000px;}
.y108{bottom:410.610000px;}
.y9f{bottom:410.760000px;}
.y48{bottom:410.910000px;}
.y70{bottom:413.280000px;}
.yd4{bottom:417.030000px;}
.yf7{bottom:420.120000px;}
.y2a{bottom:422.025000px;}
.y62{bottom:422.205000px;}
.y52{bottom:431.280000px;}
.y118{bottom:431.850000px;}
.y8c{bottom:432.255000px;}
.y1a{bottom:435.420000px;}
.y141{bottom:436.065000px;}
.y2c{bottom:438.225000px;}
.y109{bottom:440.355000px;}
.yc7{bottom:441.150000px;}
.ye3{bottom:442.260000px;}
.y37{bottom:442.290000px;}
.y9c{bottom:443.160000px;}
.y47{bottom:445.140000px;}
.yc0{bottom:446.970000px;}
.y6a{bottom:447.015000px;}
.yf9{bottom:450.360000px;}
.yf8{bottom:450.615000px;}
.y147{bottom:454.140000px;}
.y29{bottom:454.470000px;}
.yd3{bottom:455.940000px;}
.y4{bottom:458.280000px;}
.y51{bottom:461.910000px;}
.y61{bottom:465.405000px;}
.y119{bottom:465.870000px;}
.y8b{bottom:466.845000px;}
.y10a{bottom:470.130000px;}
.y2b{bottom:470.670000px;}
.ye2{bottom:474.660000px;}
.y98{bottom:475.560000px;}
.y46{bottom:479.340000px;}
.yc6{bottom:480.060000px;}
.y19{bottom:480.810000px;}
.y36{bottom:481.170000px;}
.ybf{bottom:482.970000px;}
.y10c{bottom:483.120000px;}
.y28{bottom:486.870000px;}
.y69{bottom:490.245000px;}
.y50{bottom:492.510000px;}
.yd2{bottom:494.820000px;}
.y146{bottom:497.340000px;}
.y87{bottom:498.885000px;}
.y10b{bottom:499.860000px;}
.y60{bottom:501.450000px;}
.y11d{bottom:503.640000px;}
.y140{bottom:505.230000px;}
.ye1{bottom:507.060000px;}
.y94{bottom:507.960000px;}
.y8a{bottom:510.045000px;}
.y35{bottom:512.490000px;}
.yc5{bottom:518.940000px;}
.y45{bottom:520.380000px;}
.y3{bottom:523.080000px;}
.y4f{bottom:523.155000px;}
.y18{bottom:526.215000px;}
.y145{bottom:540.570000px;}
.y34{bottom:544.215000px;}
.y44{bottom:544.650000px;}
.ye0{bottom:545.970000px;}
.y89{bottom:553.290000px;}
.y4e{bottom:553.755000px;}
.yc4{bottom:557.850000px;}
.y10{bottom:558.030000px;}
.ybc{bottom:561.930000px;}
.y17{bottom:564.015000px;}
.ybe{bottom:569.415000px;}
.y13f{bottom:574.380000px;}
.y33{bottom:575.535000px;}
.ydf{bottom:584.850000px;}
.y4d{bottom:585.435000px;}
.yef{bottom:587.415000px;}
.y2{bottom:587.910000px;}
.y68{bottom:591.375000px;}
.y144{bottom:592.410000px;}
.y11c{bottom:599.730000px;}
.y16{bottom:601.815000px;}
.y32{bottom:607.245000px;}
.yd1{bottom:607.425000px;}
.y43{bottom:609.480000px;}
.yf{bottom:609.870000px;}
.y4a{bottom:611.070000px;}
.y88{bottom:618.405000px;}
.y4c{bottom:621.465000px;}
.yc3{bottom:625.425000px;}
.ybd{bottom:634.425000px;}
.y11b{bottom:642.930000px;}
.yde{bottom:643.425000px;}
.y143{bottom:644.295000px;}
.y31{bottom:645.045000px;}
.y5f{bottom:647.925000px;}
.y15{bottom:651.525000px;}
.y1{bottom:652.755000px;}
.y4b{bottom:657.465000px;}
.ye{bottom:661.755000px;}
.y42{bottom:674.310000px;}
.y11a{bottom:686.160000px;}
.y142{bottom:696.165000px;}
.yd{bottom:713.595000px;}
.y24{bottom:729.795000px;}
.y13{bottom:731.415000px;}
.y27{bottom:737.205000px;}
.y41{bottom:739.155000px;}
.yc{bottom:765.465000px;}
.h3c{height:45.127969px;}
.h2a{height:46.080000px;}
.h39{height:49.878281px;}
.h3a{height:49.997039px;}
.h21{height:50.760000px;}
.h1f{height:51.120000px;}
.h3d{height:51.840000px;}
.h42{height:53.280000px;}
.h28{height:59.760000px;}
.h14{height:72.064688px;}
.h13{height:72.163406px;}
.h1a{height:84.318047px;}
.h1b{height:84.436805px;}
.h26{height:84.960000px;}
.h11{height:86.693203px;}
.h12{height:86.811961px;}
.h36{height:87.120000px;}
.ha{height:89.068359px;}
.h9{height:89.187117px;}
.h5{height:90.691875px;}
.h6{height:90.790453px;}
.h16{height:93.818672px;}
.h15{height:93.937430px;}
.h18{height:98.568984px;}
.h3{height:98.578125px;}
.h4{height:98.676703px;}
.h19{height:98.687742px;}
.h20{height:101.880000px;}
.hc{height:104.506875px;}
.hd{height:104.625633px;}
.h22{height:104.760000px;}
.h48{height:109.636875px;}
.h46{height:109.787063px;}
.h2d{height:111.006981px;}
.h27{height:111.154991px;}
.h2c{height:112.429688px;}
.h1d{height:112.579594px;}
.h50{height:115.200000px;}
.h7{height:118.757812px;}
.h8{height:118.876570px;}
.h3b{height:122.040000px;}
.h37{height:122.847726px;}
.h4e{height:126.720000px;}
.h23{height:132.120000px;}
.h2f{height:134.640000px;}
.h41{height:136.080000px;}
.h17{height:139.065398px;}
.h1e{height:142.560000px;}
.h31{height:157.680000px;}
.he{height:157.947891px;}
.hb{height:158.066648px;}
.h25{height:158.760000px;}
.h2{height:178.136719px;}
.h1{height:178.255477px;}
.hf{height:198.325547px;}
.h10{height:198.444305px;}
.h45{height:198.720000px;}
.h52{height:201.600000px;}
.h3f{height:239.040000px;}
.h4d{height:252.360000px;}
.h44{height:263.880000px;}
.h3e{height:266.400000px;}
.h2e{height:267.120000px;}
.h43{height:290.880000px;}
.h35{height:300.240000px;}
.h49{height:308.520000px;}
.h34{height:317.520000px;}
.h30{height:330.480000px;}
.h1c{height:346.680000px;}
.h4b{height:384.120000px;}
.h53{height:394.560000px;}
.h29{height:401.400000px;}
.h51{height:483.480000px;}
.h38{height:485.280000px;}
.h33{height:522.720000px;}
.h47{height:533.160000px;}
.h40{height:534.600000px;}
.h4c{height:544.320000px;}
.h4f{height:545.400000px;}
.h2b{height:563.760000px;}
.h32{height:566.640000px;}
.h4a{height:590.040000px;}
.h24{height:716.400000px;}
.h0{height:810.000000px;}
.wb{width:52.200000px;}
.wc{width:57.600000px;}
.w15{width:66.240000px;}
.w14{width:70.560000px;}
.wd{width:77.400000px;}
.w13{width:77.760000px;}
.w7{width:78.480000px;}
.w11{width:78.840000px;}
.wf{width:80.280000px;}
.we{width:84.600000px;}
.wa{width:106.200000px;}
.w16{width:106.560000px;}
.w3{width:141.840000px;}
.w12{width:142.200000px;}
.w9{width:143.640000px;}
.w8{width:145.080000px;}
.w18{width:156.960000px;}
.w17{width:158.400000px;}
.w5{width:238.680000px;}
.w19{width:391.320000px;}
.w1a{width:510.120000px;}
.w4{width:747.720000px;}
.w2{width:844.200000px;}
.w6{width:906.840000px;}
.w10{width:972.000000px;}
.w1{width:986.400000px;}
.w0{width:1080.000000px;}
.x42{left:-70.236000px;}
.x0{left:0.000000px;}
.x2a{left:5.760000px;}
.x60{left:6.990000px;}
.x34{left:8.028000px;}
.x4b{left:9.435000px;}
.x64{left:14.550000px;}
.x2d{left:15.585000px;}
.x69{left:16.710000px;}
.x63{left:21.456000px;}
.x6a{left:23.508000px;}
.x61{left:33.630000px;}
.x3a{left:40.536000px;}
.x3e{left:43.236000px;}
.x29{left:45.000000px;}
.x21{left:46.800000px;}
.x4c{left:54.000000px;}
.x1d{left:55.836000px;}
.x24{left:57.528000px;}
.x5f{left:59.652000px;}
.x10{left:64.836000px;}
.x33{left:66.060000px;}
.x38{left:70.236000px;}
.x5b{left:72.000000px;}
.x32{left:75.420000px;}
.x6b{left:77.508000px;}
.x3b{left:81.216000px;}
.x3f{left:83.916000px;}
.x66{left:87.375000px;}
.x2f{left:95.220000px;}
.x1e{left:96.516000px;}
.x25{left:98.244000px;}
.x13{left:100.836000px;}
.x11{left:105.516000px;}
.x3{left:109.548000px;}
.x37{left:110.916000px;}
.x36{left:112.965000px;}
.x5c{left:114.375000px;}
.x62{left:116.100000px;}
.x30{left:121.500000px;}
.x2c{left:122.910000px;}
.xf{left:127.836000px;}
.x40{left:131.112000px;}
.x22{left:134.676000px;}
.x41{left:143.676000px;}
.x67{left:150.375000px;}
.x58{left:152.280000px;}
.x65{left:153.900000px;}
.x68{left:156.135000px;}
.xa{left:161.070000px;}
.x5e{left:162.540000px;}
.x2{left:175.470000px;}
.x59{left:180.000000px;}
.x52{left:196.200000px;}
.x4{left:206.790000px;}
.x48{left:210.600000px;}
.x15{left:222.990000px;}
.x14{left:225.510000px;}
.x49{left:233.640000px;}
.x1c{left:241.710000px;}
.xe{left:252.150000px;}
.x16{left:253.590000px;}
.x1a{left:261.540000px;}
.x1b{left:263.700000px;}
.x26{left:282.780000px;}
.xb{left:291.420000px;}
.x47{left:336.240000px;}
.xd{left:355.500000px;}
.x7{left:359.610000px;}
.x27{left:361.980000px;}
.x54{left:366.150000px;}
.x2e{left:367.305000px;}
.x6{left:370.770000px;}
.x8{left:383.010000px;}
.x19{left:403.350000px;}
.x12{left:407.730000px;}
.x4d{left:410.040000px;}
.x3d{left:411.690000px;}
.x1f{left:414.570000px;}
.x39{left:420.690000px;}
.xc{left:422.130000px;}
.x31{left:425.805000px;}
.x43{left:437.040000px;}
.x4e{left:447.480000px;}
.x5d{left:463.320000px;}
.x28{left:472.530000px;}
.x1{left:522.975000px;}
.x9{left:536.325000px;}
.x5{left:540.000000px;}
.x57{left:542.160000px;}
.x20{left:549.255000px;}
.x23{left:558.615000px;}
.x46{left:564.480000px;}
.x51{left:586.080000px;}
.x17{left:621.645000px;}
.x55{left:628.200000px;}
.x44{left:641.520000px;}
.x18{left:644.685000px;}
.x4f{left:672.120000px;}
.x56{left:676.080000px;}
.x45{left:684.360000px;}
.x50{left:719.640000px;}
.x3c{left:722.130000px;}
.x35{left:794.520000px;}
.x5a{left:861.480000px;}
.x6c{left:876.570000px;}
.x2b{left:889.560000px;}
.x4a{left:899.280000px;}
.x53{left:949.320000px;}
@media print{
.v1{vertical-align:-77.546667pt;}
.v0{vertical-align:0.000000pt;}
.ls53{letter-spacing:-8.640000pt;}
.ls3b{letter-spacing:-1.482667pt;}
.ls35{letter-spacing:-1.440000pt;}
.ls52{letter-spacing:-1.242667pt;}
.ls19{letter-spacing:-1.237333pt;}
.ls54{letter-spacing:-1.184000pt;}
.ls60{letter-spacing:-0.640000pt;}
.ls4f{letter-spacing:-0.549333pt;}
.ls16{letter-spacing:-0.516800pt;}
.ls1a{letter-spacing:-0.483200pt;}
.ls38{letter-spacing:-0.480000pt;}
.ls4e{letter-spacing:-0.466133pt;}
.ls21{letter-spacing:-0.458133pt;}
.ls10{letter-spacing:-0.453333pt;}
.ls2c{letter-spacing:-0.448000pt;}
.ls56{letter-spacing:-0.441067pt;}
.ls2e{letter-spacing:-0.437867pt;}
.ls1d{letter-spacing:-0.416000pt;}
.ls55{letter-spacing:-0.376533pt;}
.ls42{letter-spacing:-0.349333pt;}
.ls2b{letter-spacing:-0.320000pt;}
.ls4c{letter-spacing:-0.269333pt;}
.lsd{letter-spacing:-0.257067pt;}
.ls2a{letter-spacing:-0.097067pt;}
.ls14{letter-spacing:-0.078933pt;}
.ls22{letter-spacing:-0.035840pt;}
.ls17{letter-spacing:-0.032000pt;}
.ls29{letter-spacing:-0.025973pt;}
.ls13{letter-spacing:-0.019093pt;}
.lse{letter-spacing:-0.014080pt;}
.ls4d{letter-spacing:-0.006293pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.003840pt;}
.ls5c{letter-spacing:0.025707pt;}
.ls41{letter-spacing:0.034667pt;}
.ls45{letter-spacing:0.035072pt;}
.ls11{letter-spacing:0.042240pt;}
.ls3f{letter-spacing:0.064000pt;}
.ls5f{letter-spacing:0.066667pt;}
.ls3c{letter-spacing:0.096000pt;}
.ls24{letter-spacing:0.106133pt;}
.ls32{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.134400pt;}
.ls4a{letter-spacing:0.170667pt;}
.ls61{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.268800pt;}
.ls28{letter-spacing:0.288000pt;}
.ls27{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.321067pt;}
.ls37{letter-spacing:0.352000pt;}
.ls57{letter-spacing:0.374272pt;}
.ls6{letter-spacing:0.391467pt;}
.ls3{letter-spacing:0.430080pt;}
.ls18{letter-spacing:0.435200pt;}
.ls58{letter-spacing:0.467200pt;}
.ls4{letter-spacing:0.491733pt;}
.ls5a{letter-spacing:0.512000pt;}
.ls23{letter-spacing:0.517333pt;}
.ls1b{letter-spacing:0.533333pt;}
.ls51{letter-spacing:0.538667pt;}
.ls62{letter-spacing:0.570667pt;}
.ls36{letter-spacing:0.608000pt;}
.ls9{letter-spacing:0.613632pt;}
.ls5e{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.642560pt;}
.ls15{letter-spacing:0.762667pt;}
.ls34{letter-spacing:0.800000pt;}
.ls12{letter-spacing:0.826667pt;}
.ls3a{letter-spacing:0.928000pt;}
.ls39{letter-spacing:0.960000pt;}
.ls2d{letter-spacing:1.317333pt;}
.ls49{letter-spacing:1.344000pt;}
.ls50{letter-spacing:1.376000pt;}
.lsb{letter-spacing:1.922560pt;}
.ls47{letter-spacing:5.184000pt;}
.ls4b{letter-spacing:6.435072pt;}
.ls48{letter-spacing:8.995072pt;}
.ls33{letter-spacing:10.304000pt;}
.ls44{letter-spacing:11.661739pt;}
.lsc{letter-spacing:17.282560pt;}
.ls5b{letter-spacing:22.272000pt;}
.lsa{letter-spacing:24.962560pt;}
.ls46{letter-spacing:30.784000pt;}
.ls5d{letter-spacing:50.538667pt;}
.ls43{letter-spacing:66.872832pt;}
.ls31{letter-spacing:66.944000pt;}
.ls3e{letter-spacing:67.000832pt;}
.ls40{letter-spacing:67.072000pt;}
.ls59{letter-spacing:75.648000pt;}
.ls1e{letter-spacing:84.928000pt;}
.ls1{letter-spacing:85.011200pt;}
.ls5{letter-spacing:105.171200pt;}
.ls2{letter-spacing:105.216000pt;}
.ls26{letter-spacing:107.411200pt;}
.ls25{letter-spacing:107.456000pt;}
.ls1f{letter-spacing:107.584000pt;}
.ls3d{letter-spacing:110.995200pt;}
.ls30{letter-spacing:111.040000pt;}
.ls7{letter-spacing:111.936000pt;}
.ws1b{word-spacing:-128.000000pt;}
.ws36{word-spacing:-29.568000pt;}
.ws3b{word-spacing:-29.527595pt;}
.ws3a{word-spacing:-29.184000pt;}
.ws35{word-spacing:-29.056000pt;}
.ws38{word-spacing:-29.023595pt;}
.ws37{word-spacing:-28.982635pt;}
.ws39{word-spacing:-28.288000pt;}
.ws1{word-spacing:-25.948373pt;}
.ws2{word-spacing:-25.877035pt;}
.ws1c{word-spacing:-24.331307pt;}
.ws2d{word-spacing:-23.072000pt;}
.ws22{word-spacing:-22.656000pt;}
.ws24{word-spacing:-22.652928pt;}
.ws1e{word-spacing:-22.304000pt;}
.ws2e{word-spacing:-22.263595pt;}
.ws20{word-spacing:-22.048000pt;}
.ws8{word-spacing:-21.944107pt;}
.wsb{word-spacing:-21.909035pt;}
.ws1f{word-spacing:-21.824000pt;}
.ws26{word-spacing:-21.792000pt;}
.ws27{word-spacing:-21.759595pt;}
.ws15{word-spacing:-21.724928pt;}
.ws2a{word-spacing:-21.718635pt;}
.ws19{word-spacing:-21.696000pt;}
.ws12{word-spacing:-21.679701pt;}
.wse{word-spacing:-21.664000pt;}
.ws1a{word-spacing:-21.627861pt;}
.wsf{word-spacing:-21.552640pt;}
.ws29{word-spacing:-21.455595pt;}
.ws13{word-spacing:-21.386240pt;}
.ws23{word-spacing:-21.376000pt;}
.ws28{word-spacing:-21.375595pt;}
.ws31{word-spacing:-21.280000pt;}
.ws2b{word-spacing:-21.258795pt;}
.ws5{word-spacing:-21.251840pt;}
.ws21{word-spacing:-21.216000pt;}
.ws2c{word-spacing:-21.175595pt;}
.ws7{word-spacing:-21.159680pt;}
.ws9{word-spacing:-21.127275pt;}
.wsd{word-spacing:-21.117440pt;}
.ws4{word-spacing:-21.103360pt;}
.wsa{word-spacing:-21.067435pt;}
.ws3{word-spacing:-20.860373pt;}
.ws14{word-spacing:-20.701440pt;}
.ws6{word-spacing:-20.664107pt;}
.ws11{word-spacing:-20.663168pt;}
.wsc{word-spacing:-20.629568pt;}
.ws18{word-spacing:-20.567808pt;}
.ws16{word-spacing:-20.542720pt;}
.ws17{word-spacing:-20.538880pt;}
.ws32{word-spacing:-20.512000pt;}
.ws2f{word-spacing:-20.482261pt;}
.ws1d{word-spacing:-20.256000pt;}
.ws25{word-spacing:-20.242261pt;}
.ws10{word-spacing:-19.880107pt;}
.ws30{word-spacing:-13.056000pt;}
.ws33{word-spacing:-11.773227pt;}
.ws34{word-spacing:-11.737621pt;}
.ws0{word-spacing:0.000000pt;}
._1a{margin-left:-9.485227pt;}
._7{margin-left:-7.882496pt;}
._a{margin-left:-6.811733pt;}
._3{margin-left:-5.184000pt;}
._4{margin-left:-4.254720pt;}
._2{margin-left:-2.880000pt;}
._0{margin-left:-1.344000pt;}
._1{width:0.960000pt;}
._13{width:1.881003pt;}
._5{width:2.773973pt;}
._12{width:4.059947pt;}
._15{width:5.217067pt;}
._22{width:6.269909pt;}
._14{width:7.488853pt;}
._c{width:8.812800pt;}
._b{width:10.472533pt;}
._11{width:11.936000pt;}
._1e{width:14.858667pt;}
._f{width:15.776000pt;}
._1b{width:16.674944pt;}
._10{width:17.590187pt;}
._19{width:18.778027pt;}
._1d{width:20.033280pt;}
._24{width:22.378667pt;}
._23{width:23.296000pt;}
._d{width:24.311893pt;}
._e{width:25.568000pt;}
._1c{width:27.313621pt;}
._1f{width:28.640512pt;}
._20{width:30.090667pt;}
._21{width:31.658667pt;}
._9{width:40.860800pt;}
._8{width:42.295893pt;}
._16{width:45.620693pt;}
._18{width:46.549973pt;}
._17{width:47.658667pt;}
._25{width:50.581333pt;}
._26{width:52.437333pt;}
._6{width:790.090667pt;}
.fs19{font-size:48.640000pt;}
.fs17{font-size:53.760000pt;}
.fs18{font-size:53.888000pt;}
.fs16{font-size:90.880000pt;}
.fs15{font-size:91.008000pt;}
.fse{font-size:93.440000pt;}
.fsf{font-size:93.568000pt;}
.fs7{font-size:96.000000pt;}
.fs6{font-size:96.128000pt;}
.fs11{font-size:101.120000pt;}
.fs10{font-size:101.248000pt;}
.fs13{font-size:106.240000pt;}
.fs14{font-size:106.368000pt;}
.fs9{font-size:112.640000pt;}
.fsa{font-size:112.768000pt;}
.fs4{font-size:117.760000pt;}
.fs5{font-size:117.888000pt;}
.fs2{font-size:128.000000pt;}
.fs3{font-size:128.128000pt;}
.fs12{font-size:149.888000pt;}
.fsb{font-size:170.240000pt;}
.fs8{font-size:170.368000pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:192.128000pt;}
.fsc{font-size:213.760000pt;}
.fsd{font-size:213.888000pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:9.280000pt;}
.yb1{bottom:11.933333pt;}
.yaa{bottom:11.973333pt;}
.ya0{bottom:12.000000pt;}
.y99{bottom:12.026667pt;}
.y95{bottom:12.066667pt;}
.y7d{bottom:13.893333pt;}
.y75{bottom:14.013333pt;}
.y79{bottom:14.106667pt;}
.y71{bottom:14.240000pt;}
.y86{bottom:17.946667pt;}
.ybb{bottom:17.986667pt;}
.y84{bottom:29.146667pt;}
.yb9{bottom:30.146667pt;}
.yff{bottom:34.272000pt;}
.y111{bottom:35.680000pt;}
.y73{bottom:36.733333pt;}
.y77{bottom:38.106667pt;}
.y23{bottom:40.352000pt;}
.y138{bottom:43.066667pt;}
.y25{bottom:43.296000pt;}
.ya7{bottom:47.360000pt;}
.y134{bottom:48.253333pt;}
.y13b{bottom:48.320000pt;}
.y7b{bottom:50.053333pt;}
.yb5{bottom:50.560000pt;}
.y9e{bottom:51.360000pt;}
.yee{bottom:53.120000pt;}
.y130{bottom:54.080000pt;}
.y6f{bottom:54.880000pt;}
.y5e{bottom:56.832000pt;}
.ya5{bottom:61.600000pt;}
.y82{bottom:62.013333pt;}
.ydd{bottom:69.760000pt;}
.yb2{bottom:71.680000pt;}
.y102{bottom:76.800000pt;}
.yd0{bottom:77.760000pt;}
.yf0{bottom:80.000000pt;}
.y11e{bottom:80.226667pt;}
.y13c{bottom:81.408000pt;}
.yed{bottom:81.920000pt;}
.y5d{bottom:84.032000pt;}
.y30{bottom:90.912000pt;}
.yb{bottom:94.496000pt;}
.yfe{bottom:96.733333pt;}
.yfc{bottom:96.893333pt;}
.yfa{bottom:96.933333pt;}
.y22{bottom:97.984000pt;}
.y13e{bottom:101.536000pt;}
.y12f{bottom:104.026667pt;}
.ydc{bottom:107.552000pt;}
.y110{bottom:109.093333pt;}
.y10d{bottom:109.280000pt;}
.y10e{bottom:109.306667pt;}
.yac{bottom:110.213333pt;}
.y9b{bottom:110.266667pt;}
.yec{bottom:110.752000pt;}
.y12b{bottom:111.040000pt;}
.y5c{bottom:111.264000pt;}
.y40{bottom:113.024000pt;}
.ycf{bottom:115.232000pt;}
.yb8{bottom:116.480000pt;}
.y83{bottom:118.720000pt;}
.y2f{bottom:119.744000pt;}
.yb6{bottom:124.893333pt;}
.yba{bottom:128.640000pt;}
.y124{bottom:128.960000pt;}
.y13d{bottom:129.696000pt;}
.y85{bottom:129.920000pt;}
.y21{bottom:131.584000pt;}
.ya{bottom:132.256000pt;}
.yb3{bottom:132.573333pt;}
.ya2{bottom:138.400000pt;}
.y5b{bottom:138.466667pt;}
.y3f{bottom:140.866667pt;}
.y137{bottom:143.680000pt;}
.yce{bottom:144.346667pt;}
.yeb{bottom:145.306667pt;}
.y6d{bottom:145.466667pt;}
.ydb{bottom:145.946667pt;}
.y2e{bottom:148.546667pt;}
.yfd{bottom:151.360000pt;}
.yab{bottom:151.680000pt;}
.y10f{bottom:152.640000pt;}
.y13a{bottom:158.560000pt;}
.y125{bottom:161.920000pt;}
.y12a{bottom:162.653333pt;}
.yb7{bottom:163.520000pt;}
.y5a{bottom:165.666667pt;}
.y9{bottom:167.493333pt;}
.y93{bottom:169.826667pt;}
.y20{bottom:171.933333pt;}
.ycd{bottom:173.146667pt;}
.yea{bottom:174.106667pt;}
.y3e{bottom:174.493333pt;}
.yda{bottom:174.746667pt;}
.y80{bottom:178.786667pt;}
.y81{bottom:183.040000pt;}
.y139{bottom:186.720000pt;}
.y67{bottom:189.600000pt;}
.yb4{bottom:192.320000pt;}
.y96{bottom:192.640000pt;}
.y59{bottom:192.893333pt;}
.y91{bottom:194.080000pt;}
.y129{bottom:195.200000pt;}
.y133{bottom:195.520000pt;}
.y12e{bottom:196.800000pt;}
.y101{bottom:199.546667pt;}
.y3d{bottom:202.653333pt;}
.y8{bottom:203.333333pt;}
.y1f{bottom:205.533333pt;}
.ycc{bottom:207.746667pt;}
.ye9{bottom:208.706667pt;}
.yd9{bottom:209.346667pt;}
.ya1{bottom:209.920000pt;}
.yf1{bottom:210.880000pt;}
.y7f{bottom:212.066667pt;}
.y136{bottom:215.586667pt;}
.y132{bottom:218.533333pt;}
.y12d{bottom:218.586667pt;}
.y58{bottom:220.093333pt;}
.yb0{bottom:221.120000pt;}
.y113{bottom:221.440000pt;}
.y100{bottom:223.653333pt;}
.yaf{bottom:223.773333pt;}
.y128{bottom:224.893333pt;}
.y122{bottom:225.760000pt;}
.y66{bottom:228.026667pt;}
.y7a{bottom:229.120000pt;}
.y90{bottom:232.480000pt;}
.y103{bottom:232.773333pt;}
.y14a{bottom:234.626667pt;}
.y3c{bottom:236.253333pt;}
.ycb{bottom:236.546667pt;}
.ye8{bottom:237.506667pt;}
.y12{bottom:237.626667pt;}
.yf2{bottom:237.946667pt;}
.yd8{bottom:238.146667pt;}
.y2d{bottom:239.773333pt;}
.y7{bottom:241.760000pt;}
.y97{bottom:242.106667pt;}
.ya8{bottom:243.333333pt;}
.y135{bottom:243.746667pt;}
.y7e{bottom:245.053333pt;}
.y112{bottom:245.573333pt;}
.y1e{bottom:245.893333pt;}
.y11f{bottom:246.080000pt;}
.y131{bottom:246.693333pt;}
.y12c{bottom:246.746667pt;}
.y57{bottom:247.333333pt;}
.yad{bottom:249.920000pt;}
.y127{bottom:252.733333pt;}
.y121{bottom:253.626667pt;}
.ya4{bottom:257.920000pt;}
.y104{bottom:259.226667pt;}
.y114{bottom:263.013333pt;}
.yf3{bottom:265.053333pt;}
.y7c{bottom:265.280000pt;}
.yca{bottom:265.373333pt;}
.ye7{bottom:266.333333pt;}
.y65{bottom:266.426667pt;}
.y6c{bottom:268.160000pt;}
.y3b{bottom:269.893333pt;}
.y8f{bottom:270.906667pt;}
.yd7{bottom:272.733333pt;}
.y149{bottom:273.053333pt;}
.y56{bottom:274.533333pt;}
.y76{bottom:275.200000pt;}
.ya9{bottom:278.720000pt;}
.y1d{bottom:279.493333pt;}
.y126{bottom:280.933333pt;}
.y120{bottom:281.786667pt;}
.y105{bottom:285.666667pt;}
.y6{bottom:292.093333pt;}
.yf4{bottom:292.160000pt;}
.y115{bottom:293.213333pt;}
.y92{bottom:293.760000pt;}
.y11{bottom:295.266667pt;}
.y9a{bottom:295.680000pt;}
.y78{bottom:299.200000pt;}
.yc9{bottom:299.933333pt;}
.ye6{bottom:300.893333pt;}
.yd6{bottom:301.533333pt;}
.y55{bottom:301.733333pt;}
.y3a{bottom:303.493333pt;}
.y64{bottom:304.866667pt;}
.ya6{bottom:307.520000pt;}
.y8e{bottom:309.306667pt;}
.y72{bottom:310.720000pt;}
.y148{bottom:311.453333pt;}
.y106{bottom:312.093333pt;}
.y1c{bottom:313.093333pt;}
.y123{bottom:313.920000pt;}
.yfb{bottom:318.080000pt;}
.yf5{bottom:319.266667pt;}
.yc2{bottom:320.480000pt;}
.y116{bottom:323.453333pt;}
.y26{bottom:324.640000pt;}
.y9d{bottom:325.760000pt;}
.y6e{bottom:326.720000pt;}
.y49{bottom:328.773333pt;}
.y54{bottom:328.960000pt;}
.ye5{bottom:329.733333pt;}
.y14{bottom:332.640000pt;}
.y74{bottom:333.440000pt;}
.yd5{bottom:336.133333pt;}
.ya3{bottom:336.320000pt;}
.y39{bottom:337.120000pt;}
.y107{bottom:338.560000pt;}
.y63{bottom:343.266667pt;}
.yf6{bottom:346.333333pt;}
.y8d{bottom:347.746667pt;}
.y5{bottom:349.733333pt;}
.y1b{bottom:353.440000pt;}
.y117{bottom:353.666667pt;}
.y53{bottom:356.160000pt;}
.yc8{bottom:357.573333pt;}
.ye4{bottom:358.533333pt;}
.yc1{bottom:358.880000pt;}
.y6b{bottom:358.946667pt;}
.y38{bottom:364.960000pt;}
.y108{bottom:364.986667pt;}
.y9f{bottom:365.120000pt;}
.y48{bottom:365.253333pt;}
.y70{bottom:367.360000pt;}
.yd4{bottom:370.693333pt;}
.yf7{bottom:373.440000pt;}
.y2a{bottom:375.133333pt;}
.y62{bottom:375.293333pt;}
.y52{bottom:383.360000pt;}
.y118{bottom:383.866667pt;}
.y8c{bottom:384.226667pt;}
.y1a{bottom:387.040000pt;}
.y141{bottom:387.613333pt;}
.y2c{bottom:389.533333pt;}
.y109{bottom:391.426667pt;}
.yc7{bottom:392.133333pt;}
.ye3{bottom:393.120000pt;}
.y37{bottom:393.146667pt;}
.y9c{bottom:393.920000pt;}
.y47{bottom:395.680000pt;}
.yc0{bottom:397.306667pt;}
.y6a{bottom:397.346667pt;}
.yf9{bottom:400.320000pt;}
.yf8{bottom:400.546667pt;}
.y147{bottom:403.680000pt;}
.y29{bottom:403.973333pt;}
.yd3{bottom:405.280000pt;}
.y4{bottom:407.360000pt;}
.y51{bottom:410.586667pt;}
.y61{bottom:413.693333pt;}
.y119{bottom:414.106667pt;}
.y8b{bottom:414.973333pt;}
.y10a{bottom:417.893333pt;}
.y2b{bottom:418.373333pt;}
.ye2{bottom:421.920000pt;}
.y98{bottom:422.720000pt;}
.y46{bottom:426.080000pt;}
.yc6{bottom:426.720000pt;}
.y19{bottom:427.386667pt;}
.y36{bottom:427.706667pt;}
.ybf{bottom:429.306667pt;}
.y10c{bottom:429.440000pt;}
.y28{bottom:432.773333pt;}
.y69{bottom:435.773333pt;}
.y50{bottom:437.786667pt;}
.yd2{bottom:439.840000pt;}
.y146{bottom:442.080000pt;}
.y87{bottom:443.453333pt;}
.y10b{bottom:444.320000pt;}
.y60{bottom:445.733333pt;}
.y11d{bottom:447.680000pt;}
.y140{bottom:449.093333pt;}
.ye1{bottom:450.720000pt;}
.y94{bottom:451.520000pt;}
.y8a{bottom:453.373333pt;}
.y35{bottom:455.546667pt;}
.yc5{bottom:461.280000pt;}
.y45{bottom:462.560000pt;}
.y3{bottom:464.960000pt;}
.y4f{bottom:465.026667pt;}
.y18{bottom:467.746667pt;}
.y145{bottom:480.506667pt;}
.y34{bottom:483.746667pt;}
.y44{bottom:484.133333pt;}
.ye0{bottom:485.306667pt;}
.y89{bottom:491.813333pt;}
.y4e{bottom:492.226667pt;}
.yc4{bottom:495.866667pt;}
.y10{bottom:496.026667pt;}
.ybc{bottom:499.493333pt;}
.y17{bottom:501.346667pt;}
.ybe{bottom:506.146667pt;}
.y13f{bottom:510.560000pt;}
.y33{bottom:511.586667pt;}
.ydf{bottom:519.866667pt;}
.y4d{bottom:520.386667pt;}
.yef{bottom:522.146667pt;}
.y2{bottom:522.586667pt;}
.y68{bottom:525.666667pt;}
.y144{bottom:526.586667pt;}
.y11c{bottom:533.093333pt;}
.y16{bottom:534.946667pt;}
.y32{bottom:539.773333pt;}
.yd1{bottom:539.933333pt;}
.y43{bottom:541.760000pt;}
.yf{bottom:542.106667pt;}
.y4a{bottom:543.173333pt;}
.y88{bottom:549.693333pt;}
.y4c{bottom:552.413333pt;}
.yc3{bottom:555.933333pt;}
.ybd{bottom:563.933333pt;}
.y11b{bottom:571.493333pt;}
.yde{bottom:571.933333pt;}
.y143{bottom:572.706667pt;}
.y31{bottom:573.373333pt;}
.y5f{bottom:575.933333pt;}
.y15{bottom:579.133333pt;}
.y1{bottom:580.226667pt;}
.y4b{bottom:584.413333pt;}
.ye{bottom:588.226667pt;}
.y42{bottom:599.386667pt;}
.y11a{bottom:609.920000pt;}
.y142{bottom:618.813333pt;}
.yd{bottom:634.306667pt;}
.y24{bottom:648.706667pt;}
.y13{bottom:650.146667pt;}
.y27{bottom:655.293333pt;}
.y41{bottom:657.026667pt;}
.yc{bottom:680.413333pt;}
.h3c{height:40.113750pt;}
.h2a{height:40.960000pt;}
.h39{height:44.336250pt;}
.h3a{height:44.441812pt;}
.h21{height:45.120000pt;}
.h1f{height:45.440000pt;}
.h3d{height:46.080000pt;}
.h42{height:47.360000pt;}
.h28{height:53.120000pt;}
.h14{height:64.057500pt;}
.h13{height:64.145250pt;}
.h1a{height:74.949375pt;}
.h1b{height:75.054937pt;}
.h26{height:75.520000pt;}
.h11{height:77.060625pt;}
.h12{height:77.166187pt;}
.h36{height:77.440000pt;}
.ha{height:79.171875pt;}
.h9{height:79.277438pt;}
.h5{height:80.615000pt;}
.h6{height:80.702625pt;}
.h16{height:83.394375pt;}
.h15{height:83.499938pt;}
.h18{height:87.616875pt;}
.h3{height:87.625000pt;}
.h4{height:87.712625pt;}
.h19{height:87.722437pt;}
.h20{height:90.560000pt;}
.hc{height:92.895000pt;}
.hd{height:93.000563pt;}
.h22{height:93.120000pt;}
.h48{height:97.455000pt;}
.h46{height:97.588500pt;}
.h2d{height:98.672872pt;}
.h27{height:98.804436pt;}
.h2c{height:99.937500pt;}
.h1d{height:100.070750pt;}
.h50{height:102.400000pt;}
.h7{height:105.562500pt;}
.h8{height:105.668063pt;}
.h3b{height:108.480000pt;}
.h37{height:109.197979pt;}
.h4e{height:112.640000pt;}
.h23{height:117.440000pt;}
.h2f{height:119.680000pt;}
.h41{height:120.960000pt;}
.h17{height:123.613688pt;}
.h1e{height:126.720000pt;}
.h31{height:140.160000pt;}
.he{height:140.398125pt;}
.hb{height:140.503687pt;}
.h25{height:141.120000pt;}
.h2{height:158.343750pt;}
.h1{height:158.449312pt;}
.hf{height:176.289375pt;}
.h10{height:176.394937pt;}
.h45{height:176.640000pt;}
.h52{height:179.200000pt;}
.h3f{height:212.480000pt;}
.h4d{height:224.320000pt;}
.h44{height:234.560000pt;}
.h3e{height:236.800000pt;}
.h2e{height:237.440000pt;}
.h43{height:258.560000pt;}
.h35{height:266.880000pt;}
.h49{height:274.240000pt;}
.h34{height:282.240000pt;}
.h30{height:293.760000pt;}
.h1c{height:308.160000pt;}
.h4b{height:341.440000pt;}
.h53{height:350.720000pt;}
.h29{height:356.800000pt;}
.h51{height:429.760000pt;}
.h38{height:431.360000pt;}
.h33{height:464.640000pt;}
.h47{height:473.920000pt;}
.h40{height:475.200000pt;}
.h4c{height:483.840000pt;}
.h4f{height:484.800000pt;}
.h2b{height:501.120000pt;}
.h32{height:503.680000pt;}
.h4a{height:524.480000pt;}
.h24{height:636.800000pt;}
.h0{height:720.000000pt;}
.wb{width:46.400000pt;}
.wc{width:51.200000pt;}
.w15{width:58.880000pt;}
.w14{width:62.720000pt;}
.wd{width:68.800000pt;}
.w13{width:69.120000pt;}
.w7{width:69.760000pt;}
.w11{width:70.080000pt;}
.wf{width:71.360000pt;}
.we{width:75.200000pt;}
.wa{width:94.400000pt;}
.w16{width:94.720000pt;}
.w3{width:126.080000pt;}
.w12{width:126.400000pt;}
.w9{width:127.680000pt;}
.w8{width:128.960000pt;}
.w18{width:139.520000pt;}
.w17{width:140.800000pt;}
.w5{width:212.160000pt;}
.w19{width:347.840000pt;}
.w1a{width:453.440000pt;}
.w4{width:664.640000pt;}
.w2{width:750.400000pt;}
.w6{width:806.080000pt;}
.w10{width:864.000000pt;}
.w1{width:876.800000pt;}
.w0{width:960.000000pt;}
.x42{left:-62.432000pt;}
.x0{left:0.000000pt;}
.x2a{left:5.120000pt;}
.x60{left:6.213333pt;}
.x34{left:7.136000pt;}
.x4b{left:8.386667pt;}
.x64{left:12.933333pt;}
.x2d{left:13.853333pt;}
.x69{left:14.853333pt;}
.x63{left:19.072000pt;}
.x6a{left:20.896000pt;}
.x61{left:29.893333pt;}
.x3a{left:36.032000pt;}
.x3e{left:38.432000pt;}
.x29{left:40.000000pt;}
.x21{left:41.600000pt;}
.x4c{left:48.000000pt;}
.x1d{left:49.632000pt;}
.x24{left:51.136000pt;}
.x5f{left:53.024000pt;}
.x10{left:57.632000pt;}
.x33{left:58.720000pt;}
.x38{left:62.432000pt;}
.x5b{left:64.000000pt;}
.x32{left:67.040000pt;}
.x6b{left:68.896000pt;}
.x3b{left:72.192000pt;}
.x3f{left:74.592000pt;}
.x66{left:77.666667pt;}
.x2f{left:84.640000pt;}
.x1e{left:85.792000pt;}
.x25{left:87.328000pt;}
.x13{left:89.632000pt;}
.x11{left:93.792000pt;}
.x3{left:97.376000pt;}
.x37{left:98.592000pt;}
.x36{left:100.413333pt;}
.x5c{left:101.666667pt;}
.x62{left:103.200000pt;}
.x30{left:108.000000pt;}
.x2c{left:109.253333pt;}
.xf{left:113.632000pt;}
.x40{left:116.544000pt;}
.x22{left:119.712000pt;}
.x41{left:127.712000pt;}
.x67{left:133.666667pt;}
.x58{left:135.360000pt;}
.x65{left:136.800000pt;}
.x68{left:138.786667pt;}
.xa{left:143.173333pt;}
.x5e{left:144.480000pt;}
.x2{left:155.973333pt;}
.x59{left:160.000000pt;}
.x52{left:174.400000pt;}
.x4{left:183.813333pt;}
.x48{left:187.200000pt;}
.x15{left:198.213333pt;}
.x14{left:200.453333pt;}
.x49{left:207.680000pt;}
.x1c{left:214.853333pt;}
.xe{left:224.133333pt;}
.x16{left:225.413333pt;}
.x1a{left:232.480000pt;}
.x1b{left:234.400000pt;}
.x26{left:251.360000pt;}
.xb{left:259.040000pt;}
.x47{left:298.880000pt;}
.xd{left:316.000000pt;}
.x7{left:319.653333pt;}
.x27{left:321.760000pt;}
.x54{left:325.466667pt;}
.x2e{left:326.493333pt;}
.x6{left:329.573333pt;}
.x8{left:340.453333pt;}
.x19{left:358.533333pt;}
.x12{left:362.426667pt;}
.x4d{left:364.480000pt;}
.x3d{left:365.946667pt;}
.x1f{left:368.506667pt;}
.x39{left:373.946667pt;}
.xc{left:375.226667pt;}
.x31{left:378.493333pt;}
.x43{left:388.480000pt;}
.x4e{left:397.760000pt;}
.x5d{left:411.840000pt;}
.x28{left:420.026667pt;}
.x1{left:464.866667pt;}
.x9{left:476.733333pt;}
.x5{left:480.000000pt;}
.x57{left:481.920000pt;}
.x20{left:488.226667pt;}
.x23{left:496.546667pt;}
.x46{left:501.760000pt;}
.x51{left:520.960000pt;}
.x17{left:552.573333pt;}
.x55{left:558.400000pt;}
.x44{left:570.240000pt;}
.x18{left:573.053333pt;}
.x4f{left:597.440000pt;}
.x56{left:600.960000pt;}
.x45{left:608.320000pt;}
.x50{left:639.680000pt;}
.x3c{left:641.893333pt;}
.x35{left:706.240000pt;}
.x5a{left:765.760000pt;}
.x6c{left:779.173333pt;}
.x2b{left:790.720000pt;}
.x4a{left:799.360000pt;}
.x53{left:843.840000pt;}
}




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