
    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_5fbfdd2b73fc58ecb3360581.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.024902;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_3db9fa117ebdb2faf8ff6a68.woff2')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_c743a1f4367b2f1166af01c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_56239dc7545ca73a860b0272.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.874023;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_67e3002460fbd8eec6992ac0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d8a8cccfa8a9aee8b7049c23.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.925293;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_2c59e905c763bd341c0ea670.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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_5ea1b6a2ebf37752d15f2633.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.675781;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_215f9d97850d7bc338a6129d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.971000;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_179c85659d2c331aa08dabb4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:11.401200px;}
.v2{vertical-align:129.401400px;}
.ls24{letter-spacing:-3.075840px;}
.ls1d{letter-spacing:-2.684160px;}
.ls18{letter-spacing:-2.284560px;}
.ls32{letter-spacing:-1.563120px;}
.ls6{letter-spacing:-0.972000px;}
.ls1{letter-spacing:-0.648000px;}
.ls39{letter-spacing:-0.576720px;}
.ls19{letter-spacing:-0.480960px;}
.ls25{letter-spacing:-0.384480px;}
.ls27{letter-spacing:-0.383040px;}
.ls38{letter-spacing:-0.360720px;}
.ls1c{letter-spacing:-0.335520px;}
.ls2{letter-spacing:-0.324000px;}
.ls16{letter-spacing:-0.287280px;}
.ls1a{letter-spacing:-0.264240px;}
.ls9{letter-spacing:-0.252000px;}
.lse{letter-spacing:-0.240480px;}
.ls21{letter-spacing:-0.228240px;}
.ls7{letter-spacing:-0.216000px;}
.ls35{letter-spacing:-0.203760px;}
.ls3{letter-spacing:-0.192240px;}
.ls2b{letter-spacing:-0.191520px;}
.ls1b{letter-spacing:-0.167760px;}
.ls2c{letter-spacing:-0.151789px;}
.lsf{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.120240px;}
.ls20{letter-spacing:-0.108000px;}
.ls29{letter-spacing:-0.095760px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.084240px;}
.ls15{letter-spacing:0.095760px;}
.ls1e{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.120240px;}
.ls2f{letter-spacing:0.134208px;}
.ls1f{letter-spacing:0.138960px;}
.ls36{letter-spacing:0.156312px;}
.ls31{letter-spacing:0.167760px;}
.ls13{letter-spacing:0.168480px;}
.ls23{letter-spacing:0.192240px;}
.ls37{letter-spacing:0.203760px;}
.ls0{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.228240px;}
.lsa{letter-spacing:0.240480px;}
.lsd{letter-spacing:0.273600px;}
.ls14{letter-spacing:0.287280px;}
.ls10{letter-spacing:0.288000px;}
.ls2a{letter-spacing:0.303579px;}
.ls30{letter-spacing:0.318744px;}
.ls2d{letter-spacing:0.335520px;}
.ls34{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.383040px;}
.ls22{letter-spacing:0.384480px;}
.ls8{letter-spacing:0.432000px;}
.ls26{letter-spacing:0.478800px;}
.ls33{letter-spacing:0.541080px;}
.ls5{letter-spacing:0.756000px;}
.lsc{letter-spacing:29.916000px;}
.ls2e{letter-spacing:47.828376px;}
.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;}
}
.ws7d{word-spacing:-89.496000px;}
.ws92{word-spacing:-66.646080px;}
.ws9b{word-spacing:-59.701680px;}
.ws0{word-spacing:-50.058000px;}
.ws82{word-spacing:-46.972800px;}
.ws83{word-spacing:-46.805040px;}
.wsa4{word-spacing:-45.360000px;}
.wsa5{word-spacing:-45.072000px;}
.ws5e{word-spacing:-43.830720px;}
.ws62{word-spacing:-43.254000px;}
.ws5f{word-spacing:-40.370400px;}
.ws1c{word-spacing:-39.888000px;}
.ws8d{word-spacing:-37.755360px;}
.ws36{word-spacing:-37.746000px;}
.ws99{word-spacing:-37.635120px;}
.ws34{word-spacing:-37.578240px;}
.ws98{word-spacing:-37.514880px;}
.wsac{word-spacing:-37.274400px;}
.wsa2{word-spacing:-37.154160px;}
.ws6b{word-spacing:-35.230320px;}
.ws35{word-spacing:-35.229600px;}
.ws10{word-spacing:-34.776000px;}
.ws12{word-spacing:-33.546960px;}
.ws80{word-spacing:-33.426720px;}
.ws81{word-spacing:-33.306480px;}
.ws7f{word-spacing:-33.186240px;}
.ws51{word-spacing:-31.543920px;}
.wse{word-spacing:-30.456000px;}
.ws70{word-spacing:-30.355920px;}
.wsf{word-spacing:-30.240000px;}
.ws6e{word-spacing:-30.068640px;}
.wsd{word-spacing:-30.024000px;}
.ws6d{word-spacing:-29.972880px;}
.ws71{word-spacing:-29.877120px;}
.wsc{word-spacing:-29.808000px;}
.wsa{word-spacing:-29.700000px;}
.ws6c{word-spacing:-29.685600px;}
.ws6f{word-spacing:-29.589840px;}
.wsb{word-spacing:-29.052000px;}
.ws28{word-spacing:-27.414720px;}
.ws27{word-spacing:-27.174240px;}
.ws2a{word-spacing:-27.054000px;}
.ws29{word-spacing:-26.933760px;}
.ws2c{word-spacing:-26.693280px;}
.ws93{word-spacing:-25.611120px;}
.ws9c{word-spacing:-25.380000px;}
.ws2b{word-spacing:-24.889680px;}
.ws52{word-spacing:-24.624000px;}
.ws4f{word-spacing:-24.516000px;}
.ws4e{word-spacing:-24.408000px;}
.ws53{word-spacing:-24.192000px;}
.ws8c{word-spacing:-24.168240px;}
.ws4d{word-spacing:-24.084000px;}
.ws8b{word-spacing:-24.048000px;}
.ws88{word-spacing:-23.807520px;}
.wsb1{word-spacing:-10.684800px;}
.ws8a{word-spacing:-2.753496px;}
.ws1d{word-spacing:-2.525040px;}
.ws90{word-spacing:-2.404800px;}
.ws6{word-spacing:-2.376000px;}
.ws5a{word-spacing:-2.160000px;}
.ws67{word-spacing:-2.114640px;}
.ws75{word-spacing:-2.044080px;}
.ws20{word-spacing:-1.803600px;}
.ws8f{word-spacing:-1.683360px;}
.ws68{word-spacing:-1.537920px;}
.ws39{word-spacing:-1.369440px;}
.ws76{word-spacing:-1.366104px;}
.ws66{word-spacing:-1.345680px;}
.ws61{word-spacing:-1.326456px;}
.ws73{word-spacing:-1.322640px;}
.ws9a{word-spacing:-1.296000px;}
.ws5d{word-spacing:-1.249560px;}
.ws8e{word-spacing:-1.141200px;}
.ws1e{word-spacing:-1.082160px;}
.wsb0{word-spacing:-1.080000px;}
.ws84{word-spacing:-1.006560px;}
.ws91{word-spacing:-0.961920px;}
.ws3a{word-spacing:-0.912960px;}
.wsa1{word-spacing:-0.900000px;}
.ws87{word-spacing:-0.838800px;}
.wsad{word-spacing:-0.792000px;}
.ws6a{word-spacing:-0.768960px;}
.ws42{word-spacing:-0.721440px;}
.ws89{word-spacing:-0.709416px;}
.wsa6{word-spacing:-0.684720px;}
.ws54{word-spacing:-0.648000px;}
.ws3c{word-spacing:-0.505440px;}
.wsa7{word-spacing:-0.503280px;}
.ws63{word-spacing:-0.456480px;}
.ws3b{word-spacing:-0.421200px;}
.ws8{word-spacing:-0.396000px;}
.ws4{word-spacing:-0.384480px;}
.ws74{word-spacing:-0.360720px;}
.wsa0{word-spacing:-0.360000px;}
.ws86{word-spacing:-0.335520px;}
.ws25{word-spacing:-0.288000px;}
.ws43{word-spacing:-0.240480px;}
.ws94{word-spacing:-0.228240px;}
.ws24{word-spacing:-0.216000px;}
.ws65{word-spacing:-0.192240px;}
.ws85{word-spacing:-0.167760px;}
.ws78{word-spacing:-0.151789px;}
.ws13{word-spacing:-0.108000px;}
.ws3f{word-spacing:-0.095760px;}
.ws7{word-spacing:0.000000px;}
.ws59{word-spacing:0.108000px;}
.ws96{word-spacing:0.120240px;}
.ws26{word-spacing:0.144000px;}
.ws7c{word-spacing:0.151789px;}
.ws4b{word-spacing:0.167760px;}
.ws79{word-spacing:0.191520px;}
.ws64{word-spacing:0.192240px;}
.ws9f{word-spacing:0.203760px;}
.ws5c{word-spacing:0.216000px;}
.ws95{word-spacing:0.228240px;}
.ws1f{word-spacing:0.240480px;}
.ws44{word-spacing:0.264240px;}
.ws40{word-spacing:0.287280px;}
.ws23{word-spacing:0.324000px;}
.ws45{word-spacing:0.335520px;}
.ws2d{word-spacing:0.343512px;}
.ws3d{word-spacing:0.383040px;}
.wsaf{word-spacing:0.384480px;}
.ws7e{word-spacing:0.396000px;}
.ws1b{word-spacing:0.432000px;}
.ws41{word-spacing:0.480960px;}
.ws4c{word-spacing:0.503280px;}
.ws72{word-spacing:0.526680px;}
.ws21{word-spacing:0.540000px;}
.ws3e{word-spacing:0.574560px;}
.ws3{word-spacing:0.576720px;}
.ws18{word-spacing:0.583200px;}
.wsa3{word-spacing:0.611280px;}
.ws17{word-spacing:0.615600px;}
.ws2f{word-spacing:0.637488px;}
.ws55{word-spacing:0.648000px;}
.ws97{word-spacing:0.734400px;}
.ws16{word-spacing:0.756000px;}
.ws11{word-spacing:0.773280px;}
.ws5{word-spacing:0.792000px;}
.wsa9{word-spacing:0.838800px;}
.ws7b{word-spacing:0.861840px;}
.ws47{word-spacing:1.006560px;}
.ws5b{word-spacing:1.080000px;}
.ws49{word-spacing:1.174320px;}
.ws9{word-spacing:1.188000px;}
.ws2e{word-spacing:1.224648px;}
.ws38{word-spacing:1.258200px;}
.ws1{word-spacing:1.296000px;}
.ws46{word-spacing:1.342080px;}
.ws69{word-spacing:1.345680px;}
.wsaa{word-spacing:1.509840px;}
.ws56{word-spacing:1.512000px;}
.ws9d{word-spacing:1.630080px;}
.wsa8{word-spacing:1.677600px;}
.ws19{word-spacing:1.695600px;}
.ws77{word-spacing:1.819440px;}
.ws58{word-spacing:1.836000px;}
.ws2{word-spacing:2.052000px;}
.ws57{word-spacing:2.160000px;}
.ws7a{word-spacing:2.298240px;}
.ws48{word-spacing:2.348640px;}
.ws1a{word-spacing:2.408400px;}
.ws9e{word-spacing:2.445120px;}
.ws15{word-spacing:2.516400px;}
.ws4a{word-spacing:2.684160px;}
.ws33{word-spacing:3.103560px;}
.ws14{word-spacing:3.240000px;}
.ws31{word-spacing:3.371976px;}
.ws22{word-spacing:3.456000px;}
.ws60{word-spacing:78.340320px;}
.ws30{word-spacing:320.086080px;}
.ws37{word-spacing:340.569576px;}
.ws32{word-spacing:739.502856px;}
.ws50{word-spacing:1535.443944px;}
.wsab{word-spacing:2286.445704px;}
.wsae{word-spacing:4135.015800px;}
._11{margin-left:-11.555136px;}
._7{margin-left:-8.028072px;}
._9{margin-left:-6.992424px;}
._8{margin-left:-5.509296px;}
._d{margin-left:-3.742128px;}
._2{margin-left:-2.548800px;}
._1{margin-left:-1.209600px;}
._0{width:1.652400px;}
._b{width:2.985840px;}
._a{width:4.589280px;}
._12{width:23.209200px;}
._10{width:24.320880px;}
._5{width:31.611600px;}
._4{width:32.799600px;}
._6{width:41.425200px;}
._f{width:45.315648px;}
._e{width:121.594320px;}
._c{width:581.512968px;}
._3{width:2456.150400px;}
.fc10{color:rgb(0,112,192);}
.fcf{color:rgb(34,34,34);}
.fce{color:rgb(0,30,56);}
.fcd{color:rgb(51,51,51);}
.fc0{color:rgb(0,80,123);}
.fc1{color:rgb(137,137,137);}
.fc4{color:rgb(0,0,0);}
.fc7{color:rgb(255,255,255);}
.fc9{color:rgb(0,176,80);}
.fc5{color:rgb(148,84,195);}
.fc8{color:rgb(192,0,0);}
.fcb{color:rgb(36,40,82);}
.fc2{color:rgb(0,32,96);}
.fc3{color:transparent;}
.fca{color:rgb(0,0,255);}
.fc6{color:rgb(102,102,102);}
.fcc{color:rgb(172,203,249);}
.fsa{font-size:84.240000px;}
.fs12{font-size:90.000000px;}
.fsb{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.fs7{font-size:120.240000px;}
.fs6{font-size:126.000000px;}
.fse{font-size:138.960000px;}
.fs8{font-size:144.000000px;}
.fsf{font-size:151.789328px;}
.fs0{font-size:162.000000px;}
.fsd{font-size:167.760000px;}
.fs2{font-size:192.240000px;}
.fs11{font-size:203.760000px;}
.fs4{font-size:216.000000px;}
.fs9{font-size:228.240000px;}
.fs5{font-size:257.760000px;}
.fsc{font-size:264.240000px;}
.fs3{font-size:396.000000px;}
.fs10{font-size:432.000000px;}
.fs13{font-size:534.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:69.157200px;}
.yc{bottom:72.007500px;}
.y2{bottom:101.557200px;}
.y3f{bottom:168.295050px;}
.y83{bottom:176.597700px;}
.y70{bottom:176.988450px;}
.y5e{bottom:177.123450px;}
.y7a{bottom:177.473550px;}
.y66{bottom:177.982350px;}
.yc7{bottom:178.819950px;}
.yd7{bottom:180.300000px;}
.yb9{bottom:180.539430px;}
.yed{bottom:183.316920px;}
.yd0{bottom:185.070750px;}
.y92{bottom:191.033700px;}
.ydc{bottom:192.662250px;}
.y17{bottom:201.965100px;}
.y3e{bottom:204.295050px;}
.yef{bottom:207.000000px;}
.yeb{bottom:210.780000px;}
.yf1{bottom:216.192750px;}
.ycf{bottom:217.470750px;}
.y5{bottom:217.824120px;}
.yec{bottom:219.328800px;}
.yab{bottom:225.909000px;}
.y16{bottom:239.765100px;}
.yea{bottom:249.529740px;}
.yce{bottom:249.870600px;}
.y91{bottom:253.133700px;}
.y4e{bottom:254.347500px;}
.y1d{bottom:257.315670px;}
.yf7{bottom:257.565300px;}
.ybd{bottom:263.942700px;}
.yf5{bottom:265.866600px;}
.yd9{bottom:270.507750px;}
.y4{bottom:275.400000px;}
.yd4{bottom:276.520500px;}
.y27{bottom:278.207550px;}
.yb8{bottom:281.321250px;}
.y1c{bottom:293.327550px;}
.ybc{bottom:296.342700px;}
.yd8{bottom:297.507750px;}
.ye9{bottom:299.941620px;}
.y4d{bottom:304.759380px;}
.y26{bottom:310.607550px;}
.y90{bottom:315.233700px;}
.yfd{bottom:315.728400px;}
.ya9{bottom:317.993880px;}
.yaa{bottom:325.800000px;}
.ybb{bottom:328.742700px;}
.y1b{bottom:329.291910px;}
.y79{bottom:330.510300px;}
.yb7{bottom:331.733130px;}
.y82{bottom:341.054850px;}
.y25{bottom:343.007550px;}
.y15{bottom:345.750000px;}
.y6f{bottom:347.387100px;}
.ya8{bottom:349.666500px;}
.ye8{bottom:350.353500px;}
.y5d{bottom:352.470450px;}
.y4c{bottom:355.171260px;}
.yba{bottom:361.142700px;}
.y78{bottom:362.910300px;}
.y1a{bottom:365.303790px;}
.y81{bottom:371.105850px;}
.y24{bottom:375.407550px;}
.y8f{bottom:377.357820px;}
.y14{bottom:378.150000px;}
.y6e{bottom:379.787250px;}
.ya7{bottom:380.986500px;}
.yb6{bottom:382.145010px;}
.yfc{bottom:382.328400px;}
.y7{bottom:384.840000px;}
.y57{bottom:385.513350px;}
.y5c{bottom:386.490450px;}
.y77{bottom:395.310300px;}
.ye7{bottom:400.765380px;}
.y80{bottom:401.003850px;}
.y19{bottom:401.315670px;}
.y4b{bottom:405.583140px;}
.y23{bottom:407.807550px;}
.y13{bottom:410.550000px;}
.y10{bottom:411.656250px;}
.y6d{bottom:412.187100px;}
.y56{bottom:419.533350px;}
.y5b{bottom:420.510450px;}
.ya6{bottom:421.667220px;}
.y76{bottom:427.710300px;}
.y7f{bottom:431.054850px;}
.yb5{bottom:432.556890px;}
.y8e{bottom:434.933700px;}
.y18{bottom:437.327550px;}
.y22{bottom:440.207550px;}
.yf{bottom:444.056250px;}
.y6c{bottom:444.587100px;}
.yb{bottom:444.600000px;}
.yfb{bottom:448.928400px;}
.ya5{bottom:450.467040px;}
.ye6{bottom:451.177260px;}
.yf2{bottom:452.748750px;}
.y55{bottom:453.553350px;}
.y5a{bottom:454.530450px;}
.y4a{bottom:455.995020px;}
.y75{bottom:460.110300px;}
.y7e{bottom:461.105850px;}
.yd1{bottom:466.097400px;}
.ye{bottom:476.456250px;}
.y6b{bottom:476.987100px;}
.ycd{bottom:477.334500px;}
.ya4{bottom:479.266860px;}
.yb4{bottom:482.968770px;}
.y54{bottom:487.573350px;}
.y59{bottom:488.550450px;}
.y65{bottom:491.223000px;}
.y74{bottom:492.510300px;}
.y7d{bottom:495.116700px;}
.y8d{bottom:497.033700px;}
.ye5{bottom:501.589140px;}
.y6{bottom:503.640000px;}
.y49{bottom:506.406900px;}
.ya3{bottom:508.066680px;}
.y6a{bottom:509.387100px;}
.y53{bottom:521.593350px;}
.y58{bottom:522.570450px;}
.y64{bottom:523.623000px;}
.y73{bottom:524.910300px;}
.y7c{bottom:525.005700px;}
.yb3{bottom:533.380650px;}
.ya2{bottom:536.866500px;}
.y69{bottom:541.787100px;}
.ycc{bottom:545.749440px;}
.ye4{bottom:552.001020px;}
.y7b{bottom:555.065850px;}
.y52{bottom:555.613350px;}
.y63{bottom:556.023000px;}
.y48{bottom:556.818780px;}
.y72{bottom:557.310450px;}
.y8c{bottom:559.133700px;}
.ya{bottom:563.400000px;}
.ya1{bottom:568.186500px;}
.y68{bottom:574.187100px;}
.yf9{bottom:578.072850px;}
.y62{bottom:588.423000px;}
.y51{bottom:589.633350px;}
.y71{bottom:589.710450px;}
.ye3{bottom:602.412900px;}
.y3d{bottom:606.428160px;}
.y67{bottom:606.587100px;}
.ya0{bottom:608.867400px;}
.ycb{bottom:614.164380px;}
.y47{bottom:616.625220px;}
.y61{bottom:620.823000px;}
.y8b{bottom:621.257820px;}
.yf4{bottom:621.395100px;}
.y50{bottom:623.653350px;}
.yb2{bottom:634.162470px;}
.y9f{bottom:637.667220px;}
.y9{bottom:641.332650px;}
.y3c{bottom:642.960600px;}
.y12{bottom:644.616750px;}
.ye2{bottom:652.824780px;}
.y60{bottom:653.223000px;}
.yf8{bottom:655.292850px;}
.y9e{bottom:666.467040px;}
.y46{bottom:667.037100px;}
.y38{bottom:667.973700px;}
.y3b{bottom:669.246720px;}
.y11{bottom:677.016750px;}
.y8a{bottom:678.833700px;}
.yca{bottom:682.579320px;}
.yb1{bottom:684.574350px;}
.y5f{bottom:685.623000px;}
.yc6{bottom:689.375070px;}
.y37{bottom:691.013340px;}
.y9d{bottom:695.266860px;}
.ye1{bottom:703.236660px;}
.y3a{bottom:705.970680px;}
.y8{bottom:706.132650px;}
.yf6{bottom:708.933300px;}
.y45{bottom:717.448980px;}
.y36{bottom:723.045600px;}
.y9c{bottom:724.066680px;}
.yc5{bottom:725.386950px;}
.y30{bottom:731.494200px;}
.y39{bottom:732.256800px;}
.yb0{bottom:734.986230px;}
.y89{bottom:740.933700px;}
.y35{bottom:746.085240px;}
.yc9{bottom:750.994260px;}
.y9b{bottom:752.866500px;}
.ye0{bottom:753.648540px;}
.yc4{bottom:761.398830px;}
.y2f{bottom:763.894200px;}
.y44{bottom:767.860860px;}
.y34{bottom:778.117500px;}
.y9a{bottom:784.186500px;}
.yaf{bottom:785.398110px;}
.y2e{bottom:796.294200px;}
.yc3{bottom:797.410710px;}
.y88{bottom:803.057970px;}
.ydf{bottom:804.060420px;}
.y43{bottom:818.272740px;}
.yc8{bottom:819.409200px;}
.yf3{bottom:828.431100px;}
.y2d{bottom:828.694200px;}
.yae{bottom:835.809990px;}
.yde{bottom:854.472300px;}
.y87{bottom:860.633850px;}
.y2c{bottom:861.094200px;}
.y99{bottom:868.066650px;}
.y42{bottom:868.684620px;}
.yc2{bottom:878.422410px;}
.yad{bottom:886.221870px;}
.yfa{bottom:889.928100px;}
.y2b{bottom:893.494200px;}
.y98{bottom:896.866500px;}
.yc1{bottom:914.434290px;}
.y41{bottom:919.096500px;}
.y86{bottom:922.757820px;}
.y21{bottom:923.005650px;}
.y97{bottom:925.666500px;}
.y2a{bottom:925.894200px;}
.yac{bottom:936.633750px;}
.yc0{bottom:950.446170px;}
.y20{bottom:955.405650px;}
.y29{bottom:958.294200px;}
.y40{bottom:975.796350px;}
.y85{bottom:980.333700px;}
.y33{bottom:980.821410px;}
.ybf{bottom:986.458050px;}
.y1f{bottom:987.805650px;}
.y28{bottom:990.694200px;}
.y96{bottom:998.890860px;}
.yd3{bottom:1007.879100px;}
.y1e{bottom:1020.205650px;}
.yd6{bottom:1029.630660px;}
.y95{bottom:1034.902740px;}
.yee{bottom:1038.775950px;}
.ydb{bottom:1044.509310px;}
.ydd{bottom:1047.508050px;}
.y32{bottom:1049.236350px;}
.yd{bottom:1053.567150px;}
.yf0{bottom:1057.869450px;}
.y94{bottom:1070.914620px;}
.yd2{bottom:1072.679100px;}
.y84{bottom:1083.583800px;}
.y4f{bottom:1086.696750px;}
.yd5{bottom:1090.809600px;}
.ybe{bottom:1100.878650px;}
.yda{bottom:1105.688250px;}
.y93{bottom:1106.926500px;}
.y31{bottom:1113.131400px;}
.y1{bottom:1116.999450px;}
.hf{height:58.614258px;}
.h23{height:65.566406px;}
.h10{height:66.629883px;}
.h1d{height:73.222734px;}
.h15{height:77.519531px;}
.h1b{height:78.366094px;}
.hc{height:78.626953px;}
.h2{height:78.679688px;}
.h11{height:86.305078px;}
.ha{height:87.538008px;}
.hb{height:87.596719px;}
.h9{height:90.080887px;}
.h1f{height:91.743120px;}
.h8{height:91.792969px;}
.h1a{height:91.941328px;}
.h20{height:98.399531px;}
.h26{height:98.447051px;}
.h17{height:99.741797px;}
.h16{height:99.742997px;}
.hd{height:104.835938px;}
.h28{height:104.906250px;}
.h14{height:116.727539px;}
.h25{height:117.843750px;}
.h13{height:120.413672px;}
.h1e{height:122.215781px;}
.h1c{height:124.218219px;}
.h1{height:132.574219px;}
.h19{height:133.760742px;}
.h24{height:137.287969px;}
.h18{height:137.984766px;}
.h22{height:155.804766px;}
.h3{height:157.321406px;}
.h29{height:157.359375px;}
.h2b{height:161.866080px;}
.h5{height:165.164062px;}
.he{height:174.523359px;}
.h12{height:183.858398px;}
.h7{height:197.095781px;}
.h27{height:247.245150px;}
.h6{height:275.537109px;}
.h4{height:302.800781px;}
.h21{height:330.328125px;}
.h2a{height:388.941328px;}
.h0{height:1215.000000px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x28{left:71.889450px;}
.x61{left:88.859100px;}
.x11{left:97.366650px;}
.x17{left:98.603250px;}
.x4d{left:100.285800px;}
.xd{left:108.000000px;}
.x6d{left:109.800000px;}
.x5f{left:118.800150px;}
.x13{left:122.593800px;}
.x18{left:133.951350px;}
.x66{left:141.428400px;}
.x6f{left:164.167350px;}
.x1a{left:169.005360px;}
.x5a{left:176.603100px;}
.x1b{left:178.545540px;}
.x1c{left:184.842480px;}
.x19{left:198.889500px;}
.x1d{left:251.623740px;}
.x58{left:257.807700px;}
.x33{left:269.419650px;}
.x5c{left:284.544900px;}
.x30{left:298.030650px;}
.x63{left:300.678750px;}
.x2f{left:304.699650px;}
.x32{left:313.879650px;}
.x4e{left:318.985800px;}
.x31{left:328.810650px;}
.x64{left:332.228550px;}
.x7{left:337.689150px;}
.x34{left:348.259650px;}
.x73{left:362.844000px;}
.x6{left:369.369150px;}
.x72{left:377.784000px;}
.x8{left:379.055400px;}
.xa{left:400.455000px;}
.x69{left:418.410000px;}
.x1f{left:448.391640px;}
.x67{left:449.595000px;}
.x20{left:459.380100px;}
.x1e{left:467.280300px;}
.x60{left:479.852400px;}
.x21{left:495.912540px;}
.x38{left:510.867000px;}
.x56{left:513.810150px;}
.x35{left:520.776000px;}
.x39{left:522.405000px;}
.x36{left:523.836000px;}
.x23{left:527.713500px;}
.x24{left:529.153500px;}
.x40{left:535.959900px;}
.x22{left:537.137220px;}
.x5d{left:539.299050px;}
.x70{left:550.233000px;}
.x37{left:553.176000px;}
.x71{left:561.744000px;}
.x16{left:564.354900px;}
.x55{left:566.775150px;}
.xb{left:588.060000px;}
.x68{left:597.897000px;}
.x53{left:612.514050px;}
.x50{left:620.623950px;}
.xf{left:621.885600px;}
.x4f{left:630.694050px;}
.x10{left:642.054600px;}
.x2{left:661.001100px;}
.x54{left:666.514050px;}
.x51{left:676.054590px;}
.x5{left:694.856790px;}
.x52{left:706.655670px;}
.x9{left:714.017400px;}
.x6c{left:777.148200px;}
.x29{left:796.324800px;}
.x2b{left:812.533950px;}
.x6a{left:816.192000px;}
.x2c{left:820.975950px;}
.x6b{left:840.724200px;}
.x2a{left:844.564950px;}
.x2d{left:847.246950px;}
.x4{left:866.238750px;}
.x2e{left:876.055950px;}
.x57{left:889.614150px;}
.x5e{left:921.446850px;}
.x26{left:944.560950px;}
.x62{left:956.257800px;}
.x25{left:982.590300px;}
.x5b{left:991.688100px;}
.x3{left:1026.392100px;}
.x15{left:1032.803400px;}
.x48{left:1095.571500px;}
.x45{left:1103.122500px;}
.x46{left:1116.433500px;}
.x41{left:1121.311500px;}
.x42{left:1132.831500px;}
.x44{left:1136.971650px;}
.x4a{left:1150.503900px;}
.x43{left:1153.711650px;}
.x49{left:1160.020500px;}
.x47{left:1180.504500px;}
.x12{left:1183.975050px;}
.x59{left:1221.313200px;}
.x65{left:1378.800000px;}
.x3d{left:1439.024700px;}
.x3e{left:1444.433550px;}
.x3b{left:1446.953550px;}
.x14{left:1473.016350px;}
.x3a{left:1478.633700px;}
.x3f{left:1487.093700px;}
.x3c{left:1489.073550px;}
.x27{left:1515.490170px;}
.x6e{left:1526.889000px;}
.xe{left:1602.093900px;}
.x4b{left:1747.607100px;}
.x1{left:1751.940000px;}
.x4c{left:1782.030000px;}
.xc{left:1919.175000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.134400pt;}
.v2{vertical-align:115.023467pt;}
.ls24{letter-spacing:-2.734080pt;}
.ls1d{letter-spacing:-2.385920pt;}
.ls18{letter-spacing:-2.030720pt;}
.ls32{letter-spacing:-1.389440pt;}
.ls6{letter-spacing:-0.864000pt;}
.ls1{letter-spacing:-0.576000pt;}
.ls39{letter-spacing:-0.512640pt;}
.ls19{letter-spacing:-0.427520pt;}
.ls25{letter-spacing:-0.341760pt;}
.ls27{letter-spacing:-0.340480pt;}
.ls38{letter-spacing:-0.320640pt;}
.ls1c{letter-spacing:-0.298240pt;}
.ls2{letter-spacing:-0.288000pt;}
.ls16{letter-spacing:-0.255360pt;}
.ls1a{letter-spacing:-0.234880pt;}
.ls9{letter-spacing:-0.224000pt;}
.lse{letter-spacing:-0.213760pt;}
.ls21{letter-spacing:-0.202880pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls35{letter-spacing:-0.181120pt;}
.ls3{letter-spacing:-0.170880pt;}
.ls2b{letter-spacing:-0.170240pt;}
.ls1b{letter-spacing:-0.149120pt;}
.ls2c{letter-spacing:-0.134924pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.106880pt;}
.ls20{letter-spacing:-0.096000pt;}
.ls29{letter-spacing:-0.085120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.074880pt;}
.ls15{letter-spacing:0.085120pt;}
.ls1e{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.106880pt;}
.ls2f{letter-spacing:0.119296pt;}
.ls1f{letter-spacing:0.123520pt;}
.ls36{letter-spacing:0.138944pt;}
.ls31{letter-spacing:0.149120pt;}
.ls13{letter-spacing:0.149760pt;}
.ls23{letter-spacing:0.170880pt;}
.ls37{letter-spacing:0.181120pt;}
.ls0{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.202880pt;}
.lsa{letter-spacing:0.213760pt;}
.lsd{letter-spacing:0.243200pt;}
.ls14{letter-spacing:0.255360pt;}
.ls10{letter-spacing:0.256000pt;}
.ls2a{letter-spacing:0.269848pt;}
.ls30{letter-spacing:0.283328pt;}
.ls2d{letter-spacing:0.298240pt;}
.ls34{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.340480pt;}
.ls22{letter-spacing:0.341760pt;}
.ls8{letter-spacing:0.384000pt;}
.ls26{letter-spacing:0.425600pt;}
.ls33{letter-spacing:0.480960pt;}
.ls5{letter-spacing:0.672000pt;}
.lsc{letter-spacing:26.592000pt;}
.ls2e{letter-spacing:42.514112pt;}
.ws7d{word-spacing:-79.552000pt;}
.ws92{word-spacing:-59.240960pt;}
.ws9b{word-spacing:-53.068160pt;}
.ws0{word-spacing:-44.496000pt;}
.ws82{word-spacing:-41.753600pt;}
.ws83{word-spacing:-41.604480pt;}
.wsa4{word-spacing:-40.320000pt;}
.wsa5{word-spacing:-40.064000pt;}
.ws5e{word-spacing:-38.960640pt;}
.ws62{word-spacing:-38.448000pt;}
.ws5f{word-spacing:-35.884800pt;}
.ws1c{word-spacing:-35.456000pt;}
.ws8d{word-spacing:-33.560320pt;}
.ws36{word-spacing:-33.552000pt;}
.ws99{word-spacing:-33.453440pt;}
.ws34{word-spacing:-33.402880pt;}
.ws98{word-spacing:-33.346560pt;}
.wsac{word-spacing:-33.132800pt;}
.wsa2{word-spacing:-33.025920pt;}
.ws6b{word-spacing:-31.315840pt;}
.ws35{word-spacing:-31.315200pt;}
.ws10{word-spacing:-30.912000pt;}
.ws12{word-spacing:-29.819520pt;}
.ws80{word-spacing:-29.712640pt;}
.ws81{word-spacing:-29.605760pt;}
.ws7f{word-spacing:-29.498880pt;}
.ws51{word-spacing:-28.039040pt;}
.wse{word-spacing:-27.072000pt;}
.ws70{word-spacing:-26.983040pt;}
.wsf{word-spacing:-26.880000pt;}
.ws6e{word-spacing:-26.727680pt;}
.wsd{word-spacing:-26.688000pt;}
.ws6d{word-spacing:-26.642560pt;}
.ws71{word-spacing:-26.557440pt;}
.wsc{word-spacing:-26.496000pt;}
.wsa{word-spacing:-26.400000pt;}
.ws6c{word-spacing:-26.387200pt;}
.ws6f{word-spacing:-26.302080pt;}
.wsb{word-spacing:-25.824000pt;}
.ws28{word-spacing:-24.368640pt;}
.ws27{word-spacing:-24.154880pt;}
.ws2a{word-spacing:-24.048000pt;}
.ws29{word-spacing:-23.941120pt;}
.ws2c{word-spacing:-23.727360pt;}
.ws93{word-spacing:-22.765440pt;}
.ws9c{word-spacing:-22.560000pt;}
.ws2b{word-spacing:-22.124160pt;}
.ws52{word-spacing:-21.888000pt;}
.ws4f{word-spacing:-21.792000pt;}
.ws4e{word-spacing:-21.696000pt;}
.ws53{word-spacing:-21.504000pt;}
.ws8c{word-spacing:-21.482880pt;}
.ws4d{word-spacing:-21.408000pt;}
.ws8b{word-spacing:-21.376000pt;}
.ws88{word-spacing:-21.162240pt;}
.wsb1{word-spacing:-9.497600pt;}
.ws8a{word-spacing:-2.447552pt;}
.ws1d{word-spacing:-2.244480pt;}
.ws90{word-spacing:-2.137600pt;}
.ws6{word-spacing:-2.112000pt;}
.ws5a{word-spacing:-1.920000pt;}
.ws67{word-spacing:-1.879680pt;}
.ws75{word-spacing:-1.816960pt;}
.ws20{word-spacing:-1.603200pt;}
.ws8f{word-spacing:-1.496320pt;}
.ws68{word-spacing:-1.367040pt;}
.ws39{word-spacing:-1.217280pt;}
.ws76{word-spacing:-1.214315pt;}
.ws66{word-spacing:-1.196160pt;}
.ws61{word-spacing:-1.179072pt;}
.ws73{word-spacing:-1.175680pt;}
.ws9a{word-spacing:-1.152000pt;}
.ws5d{word-spacing:-1.110720pt;}
.ws8e{word-spacing:-1.014400pt;}
.ws1e{word-spacing:-0.961920pt;}
.wsb0{word-spacing:-0.960000pt;}
.ws84{word-spacing:-0.894720pt;}
.ws91{word-spacing:-0.855040pt;}
.ws3a{word-spacing:-0.811520pt;}
.wsa1{word-spacing:-0.800000pt;}
.ws87{word-spacing:-0.745600pt;}
.wsad{word-spacing:-0.704000pt;}
.ws6a{word-spacing:-0.683520pt;}
.ws42{word-spacing:-0.641280pt;}
.ws89{word-spacing:-0.630592pt;}
.wsa6{word-spacing:-0.608640pt;}
.ws54{word-spacing:-0.576000pt;}
.ws3c{word-spacing:-0.449280pt;}
.wsa7{word-spacing:-0.447360pt;}
.ws63{word-spacing:-0.405760pt;}
.ws3b{word-spacing:-0.374400pt;}
.ws8{word-spacing:-0.352000pt;}
.ws4{word-spacing:-0.341760pt;}
.ws74{word-spacing:-0.320640pt;}
.wsa0{word-spacing:-0.320000pt;}
.ws86{word-spacing:-0.298240pt;}
.ws25{word-spacing:-0.256000pt;}
.ws43{word-spacing:-0.213760pt;}
.ws94{word-spacing:-0.202880pt;}
.ws24{word-spacing:-0.192000pt;}
.ws65{word-spacing:-0.170880pt;}
.ws85{word-spacing:-0.149120pt;}
.ws78{word-spacing:-0.134924pt;}
.ws13{word-spacing:-0.096000pt;}
.ws3f{word-spacing:-0.085120pt;}
.ws7{word-spacing:0.000000pt;}
.ws59{word-spacing:0.096000pt;}
.ws96{word-spacing:0.106880pt;}
.ws26{word-spacing:0.128000pt;}
.ws7c{word-spacing:0.134924pt;}
.ws4b{word-spacing:0.149120pt;}
.ws79{word-spacing:0.170240pt;}
.ws64{word-spacing:0.170880pt;}
.ws9f{word-spacing:0.181120pt;}
.ws5c{word-spacing:0.192000pt;}
.ws95{word-spacing:0.202880pt;}
.ws1f{word-spacing:0.213760pt;}
.ws44{word-spacing:0.234880pt;}
.ws40{word-spacing:0.255360pt;}
.ws23{word-spacing:0.288000pt;}
.ws45{word-spacing:0.298240pt;}
.ws2d{word-spacing:0.305344pt;}
.ws3d{word-spacing:0.340480pt;}
.wsaf{word-spacing:0.341760pt;}
.ws7e{word-spacing:0.352000pt;}
.ws1b{word-spacing:0.384000pt;}
.ws41{word-spacing:0.427520pt;}
.ws4c{word-spacing:0.447360pt;}
.ws72{word-spacing:0.468160pt;}
.ws21{word-spacing:0.480000pt;}
.ws3e{word-spacing:0.510720pt;}
.ws3{word-spacing:0.512640pt;}
.ws18{word-spacing:0.518400pt;}
.wsa3{word-spacing:0.543360pt;}
.ws17{word-spacing:0.547200pt;}
.ws2f{word-spacing:0.566656pt;}
.ws55{word-spacing:0.576000pt;}
.ws97{word-spacing:0.652800pt;}
.ws16{word-spacing:0.672000pt;}
.ws11{word-spacing:0.687360pt;}
.ws5{word-spacing:0.704000pt;}
.wsa9{word-spacing:0.745600pt;}
.ws7b{word-spacing:0.766080pt;}
.ws47{word-spacing:0.894720pt;}
.ws5b{word-spacing:0.960000pt;}
.ws49{word-spacing:1.043840pt;}
.ws9{word-spacing:1.056000pt;}
.ws2e{word-spacing:1.088576pt;}
.ws38{word-spacing:1.118400pt;}
.ws1{word-spacing:1.152000pt;}
.ws46{word-spacing:1.192960pt;}
.ws69{word-spacing:1.196160pt;}
.wsaa{word-spacing:1.342080pt;}
.ws56{word-spacing:1.344000pt;}
.ws9d{word-spacing:1.448960pt;}
.wsa8{word-spacing:1.491200pt;}
.ws19{word-spacing:1.507200pt;}
.ws77{word-spacing:1.617280pt;}
.ws58{word-spacing:1.632000pt;}
.ws2{word-spacing:1.824000pt;}
.ws57{word-spacing:1.920000pt;}
.ws7a{word-spacing:2.042880pt;}
.ws48{word-spacing:2.087680pt;}
.ws1a{word-spacing:2.140800pt;}
.ws9e{word-spacing:2.173440pt;}
.ws15{word-spacing:2.236800pt;}
.ws4a{word-spacing:2.385920pt;}
.ws33{word-spacing:2.758720pt;}
.ws14{word-spacing:2.880000pt;}
.ws31{word-spacing:2.997312pt;}
.ws22{word-spacing:3.072000pt;}
.ws60{word-spacing:69.635840pt;}
.ws30{word-spacing:284.520960pt;}
.ws37{word-spacing:302.728512pt;}
.ws32{word-spacing:657.335872pt;}
.ws50{word-spacing:1364.839061pt;}
.wsab{word-spacing:2032.396181pt;}
.wsae{word-spacing:3675.569600pt;}
._11{margin-left:-10.271232pt;}
._7{margin-left:-7.136064pt;}
._9{margin-left:-6.215488pt;}
._8{margin-left:-4.897152pt;}
._d{margin-left:-3.326336pt;}
._2{margin-left:-2.265600pt;}
._1{margin-left:-1.075200pt;}
._0{width:1.468800pt;}
._b{width:2.654080pt;}
._a{width:4.079360pt;}
._12{width:20.630400pt;}
._10{width:21.618560pt;}
._5{width:28.099200pt;}
._4{width:29.155200pt;}
._6{width:36.822400pt;}
._f{width:40.280576pt;}
._e{width:108.083840pt;}
._c{width:516.900416pt;}
._3{width:2183.244800pt;}
.fsa{font-size:74.880000pt;}
.fs12{font-size:80.000000pt;}
.fsb{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.fs7{font-size:106.880000pt;}
.fs6{font-size:112.000000pt;}
.fse{font-size:123.520000pt;}
.fs8{font-size:128.000000pt;}
.fsf{font-size:134.923847pt;}
.fs0{font-size:144.000000pt;}
.fsd{font-size:149.120000pt;}
.fs2{font-size:170.880000pt;}
.fs11{font-size:181.120000pt;}
.fs4{font-size:192.000000pt;}
.fs9{font-size:202.880000pt;}
.fs5{font-size:229.120000pt;}
.fsc{font-size:234.880000pt;}
.fs3{font-size:352.000000pt;}
.fs10{font-size:384.000000pt;}
.fs13{font-size:474.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:61.473067pt;}
.yc{bottom:64.006667pt;}
.y2{bottom:90.273067pt;}
.y3f{bottom:149.595600pt;}
.y83{bottom:156.975733pt;}
.y70{bottom:157.323067pt;}
.y5e{bottom:157.443067pt;}
.y7a{bottom:157.754267pt;}
.y66{bottom:158.206533pt;}
.yc7{bottom:158.951067pt;}
.yd7{bottom:160.266667pt;}
.yb9{bottom:160.479493pt;}
.yed{bottom:162.948373pt;}
.yd0{bottom:164.507333pt;}
.y92{bottom:169.807733pt;}
.ydc{bottom:171.255333pt;}
.y17{bottom:179.524533pt;}
.y3e{bottom:181.595600pt;}
.yef{bottom:184.000000pt;}
.yeb{bottom:187.360000pt;}
.yf1{bottom:192.171333pt;}
.ycf{bottom:193.307333pt;}
.y5{bottom:193.621440pt;}
.yec{bottom:194.958933pt;}
.yab{bottom:200.808000pt;}
.y16{bottom:213.124533pt;}
.yea{bottom:221.804213pt;}
.yce{bottom:222.107200pt;}
.y91{bottom:225.007733pt;}
.y4e{bottom:226.086667pt;}
.y1d{bottom:228.725040pt;}
.yf7{bottom:228.946933pt;}
.ybd{bottom:234.615733pt;}
.yf5{bottom:236.325867pt;}
.yd9{bottom:240.451333pt;}
.y4{bottom:244.800000pt;}
.yd4{bottom:245.796000pt;}
.y27{bottom:247.295600pt;}
.yb8{bottom:250.063333pt;}
.y1c{bottom:260.735600pt;}
.ybc{bottom:263.415733pt;}
.yd8{bottom:264.451333pt;}
.ye9{bottom:266.614773pt;}
.y4d{bottom:270.897227pt;}
.y26{bottom:276.095600pt;}
.y90{bottom:280.207733pt;}
.yfd{bottom:280.647467pt;}
.ya9{bottom:282.661227pt;}
.yaa{bottom:289.600000pt;}
.ybb{bottom:292.215733pt;}
.y1b{bottom:292.703920pt;}
.y79{bottom:293.786933pt;}
.yb7{bottom:294.873893pt;}
.y82{bottom:303.159867pt;}
.y25{bottom:304.895600pt;}
.y15{bottom:307.333333pt;}
.y6f{bottom:308.788533pt;}
.ya8{bottom:310.814667pt;}
.ye8{bottom:311.425333pt;}
.y5d{bottom:313.307067pt;}
.y4c{bottom:315.707787pt;}
.yba{bottom:321.015733pt;}
.y78{bottom:322.586933pt;}
.y1a{bottom:324.714480pt;}
.y81{bottom:329.871867pt;}
.y24{bottom:333.695600pt;}
.y8f{bottom:335.429173pt;}
.y14{bottom:336.133333pt;}
.y6e{bottom:337.588667pt;}
.ya7{bottom:338.654667pt;}
.yb6{bottom:339.684453pt;}
.yfc{bottom:339.847467pt;}
.y7{bottom:342.080000pt;}
.y57{bottom:342.678533pt;}
.y5c{bottom:343.547067pt;}
.y77{bottom:351.386933pt;}
.ye7{bottom:356.235893pt;}
.y80{bottom:356.447867pt;}
.y19{bottom:356.725040pt;}
.y4b{bottom:360.518347pt;}
.y23{bottom:362.495600pt;}
.y13{bottom:364.933333pt;}
.y10{bottom:365.916667pt;}
.y6d{bottom:366.388533pt;}
.y56{bottom:372.918533pt;}
.y5b{bottom:373.787067pt;}
.ya6{bottom:374.815307pt;}
.y76{bottom:380.186933pt;}
.y7f{bottom:383.159867pt;}
.yb5{bottom:384.495013pt;}
.y8e{bottom:386.607733pt;}
.y18{bottom:388.735600pt;}
.y22{bottom:391.295600pt;}
.yf{bottom:394.716667pt;}
.y6c{bottom:395.188533pt;}
.yb{bottom:395.200000pt;}
.yfb{bottom:399.047467pt;}
.ya5{bottom:400.415147pt;}
.ye6{bottom:401.046453pt;}
.yf2{bottom:402.443333pt;}
.y55{bottom:403.158533pt;}
.y5a{bottom:404.027067pt;}
.y4a{bottom:405.328907pt;}
.y75{bottom:408.986933pt;}
.y7e{bottom:409.871867pt;}
.yd1{bottom:414.308800pt;}
.ye{bottom:423.516667pt;}
.y6b{bottom:423.988533pt;}
.ycd{bottom:424.297333pt;}
.ya4{bottom:426.014987pt;}
.yb4{bottom:429.305573pt;}
.y54{bottom:433.398533pt;}
.y59{bottom:434.267067pt;}
.y65{bottom:436.642667pt;}
.y74{bottom:437.786933pt;}
.y7d{bottom:440.103733pt;}
.y8d{bottom:441.807733pt;}
.ye5{bottom:445.857013pt;}
.y6{bottom:447.680000pt;}
.y49{bottom:450.139467pt;}
.ya3{bottom:451.614827pt;}
.y6a{bottom:452.788533pt;}
.y53{bottom:463.638533pt;}
.y58{bottom:464.507067pt;}
.y64{bottom:465.442667pt;}
.y73{bottom:466.586933pt;}
.y7c{bottom:466.671733pt;}
.yb3{bottom:474.116133pt;}
.ya2{bottom:477.214667pt;}
.y69{bottom:481.588533pt;}
.ycc{bottom:485.110613pt;}
.ye4{bottom:490.667573pt;}
.y7b{bottom:493.391867pt;}
.y52{bottom:493.878533pt;}
.y63{bottom:494.242667pt;}
.y48{bottom:494.950027pt;}
.y72{bottom:495.387067pt;}
.y8c{bottom:497.007733pt;}
.ya{bottom:500.800000pt;}
.ya1{bottom:505.054667pt;}
.y68{bottom:510.388533pt;}
.yf9{bottom:513.842533pt;}
.y62{bottom:523.042667pt;}
.y51{bottom:524.118533pt;}
.y71{bottom:524.187067pt;}
.ye3{bottom:535.478133pt;}
.y3d{bottom:539.047253pt;}
.y67{bottom:539.188533pt;}
.ya0{bottom:541.215467pt;}
.ycb{bottom:545.923893pt;}
.y47{bottom:548.111307pt;}
.y61{bottom:551.842667pt;}
.y8b{bottom:552.229173pt;}
.yf4{bottom:552.351200pt;}
.y50{bottom:554.358533pt;}
.yb2{bottom:563.699973pt;}
.y9f{bottom:566.815307pt;}
.y9{bottom:570.073467pt;}
.y3c{bottom:571.520533pt;}
.y12{bottom:572.992667pt;}
.ye2{bottom:580.288693pt;}
.y60{bottom:580.642667pt;}
.yf8{bottom:582.482533pt;}
.y9e{bottom:592.415147pt;}
.y46{bottom:592.921867pt;}
.y38{bottom:593.754400pt;}
.y3b{bottom:594.885973pt;}
.y11{bottom:601.792667pt;}
.y8a{bottom:603.407733pt;}
.yca{bottom:606.737173pt;}
.yb1{bottom:608.510533pt;}
.y5f{bottom:609.442667pt;}
.yc6{bottom:612.777840pt;}
.y37{bottom:614.234080pt;}
.y9d{bottom:618.014987pt;}
.ye1{bottom:625.099253pt;}
.y3a{bottom:627.529493pt;}
.y8{bottom:627.673467pt;}
.yf6{bottom:630.162933pt;}
.y45{bottom:637.732427pt;}
.y36{bottom:642.707200pt;}
.y9c{bottom:643.614827pt;}
.yc5{bottom:644.788400pt;}
.y30{bottom:650.217067pt;}
.y39{bottom:650.894933pt;}
.yb0{bottom:653.321093pt;}
.y89{bottom:658.607733pt;}
.y35{bottom:663.186880pt;}
.yc9{bottom:667.550453pt;}
.y9b{bottom:669.214667pt;}
.ye0{bottom:669.909813pt;}
.yc4{bottom:676.798960pt;}
.y2f{bottom:679.017067pt;}
.y44{bottom:682.542987pt;}
.y34{bottom:691.660000pt;}
.y9a{bottom:697.054667pt;}
.yaf{bottom:698.131653pt;}
.y2e{bottom:707.817067pt;}
.yc3{bottom:708.809520pt;}
.y88{bottom:713.829307pt;}
.ydf{bottom:714.720373pt;}
.y43{bottom:727.353547pt;}
.yc8{bottom:728.363733pt;}
.yf3{bottom:736.383200pt;}
.y2d{bottom:736.617067pt;}
.yae{bottom:742.942213pt;}
.yde{bottom:759.530933pt;}
.y87{bottom:765.007867pt;}
.y2c{bottom:765.417067pt;}
.y99{bottom:771.614800pt;}
.y42{bottom:772.164107pt;}
.yc2{bottom:780.819920pt;}
.yad{bottom:787.752773pt;}
.yfa{bottom:791.047200pt;}
.y2b{bottom:794.217067pt;}
.y98{bottom:797.214667pt;}
.yc1{bottom:812.830480pt;}
.y41{bottom:816.974667pt;}
.y86{bottom:820.229173pt;}
.y21{bottom:820.449467pt;}
.y97{bottom:822.814667pt;}
.y2a{bottom:823.017067pt;}
.yac{bottom:832.563333pt;}
.yc0{bottom:844.841040pt;}
.y20{bottom:849.249467pt;}
.y29{bottom:851.817067pt;}
.y40{bottom:867.374533pt;}
.y85{bottom:871.407733pt;}
.y33{bottom:871.841253pt;}
.ybf{bottom:876.851600pt;}
.y1f{bottom:878.049467pt;}
.y28{bottom:880.617067pt;}
.y96{bottom:887.902987pt;}
.yd3{bottom:895.892533pt;}
.y1e{bottom:906.849467pt;}
.yd6{bottom:915.227253pt;}
.y95{bottom:919.913547pt;}
.yee{bottom:923.356400pt;}
.ydb{bottom:928.452720pt;}
.ydd{bottom:931.118267pt;}
.y32{bottom:932.654533pt;}
.yd{bottom:936.504133pt;}
.yf0{bottom:940.328400pt;}
.y94{bottom:951.924107pt;}
.yd2{bottom:953.492533pt;}
.y84{bottom:963.185600pt;}
.y4f{bottom:965.952667pt;}
.yd5{bottom:969.608533pt;}
.ybe{bottom:978.558800pt;}
.yda{bottom:982.834000pt;}
.y93{bottom:983.934667pt;}
.y31{bottom:989.450133pt;}
.y1{bottom:992.888400pt;}
.hf{height:52.101562pt;}
.h23{height:58.281250pt;}
.h10{height:59.226562pt;}
.h1d{height:65.086875pt;}
.h15{height:68.906250pt;}
.h1b{height:69.658750pt;}
.hc{height:69.890625pt;}
.h2{height:69.937500pt;}
.h11{height:76.715625pt;}
.ha{height:77.811562pt;}
.hb{height:77.863750pt;}
.h9{height:80.071900pt;}
.h1f{height:81.549440pt;}
.h8{height:81.593750pt;}
.h1a{height:81.725625pt;}
.h20{height:87.466250pt;}
.h26{height:87.508490pt;}
.h17{height:88.659375pt;}
.h16{height:88.660442pt;}
.hd{height:93.187500pt;}
.h28{height:93.250000pt;}
.h14{height:103.757812pt;}
.h25{height:104.750000pt;}
.h13{height:107.034375pt;}
.h1e{height:108.636250pt;}
.h1c{height:110.416195pt;}
.h1{height:117.843750pt;}
.h19{height:118.898438pt;}
.h24{height:122.033750pt;}
.h18{height:122.653125pt;}
.h22{height:138.493125pt;}
.h3{height:139.841250pt;}
.h29{height:139.875000pt;}
.h2b{height:143.880960pt;}
.h5{height:146.812500pt;}
.he{height:155.131875pt;}
.h12{height:163.429688pt;}
.h7{height:175.196250pt;}
.h27{height:219.773467pt;}
.h6{height:244.921875pt;}
.h4{height:269.156250pt;}
.h21{height:293.625000pt;}
.h2a{height:345.725625pt;}
.h0{height:1080.000000pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x28{left:63.901733pt;}
.x61{left:78.985867pt;}
.x11{left:86.548133pt;}
.x17{left:87.647333pt;}
.x4d{left:89.142933pt;}
.xd{left:96.000000pt;}
.x6d{left:97.600000pt;}
.x5f{left:105.600133pt;}
.x13{left:108.972267pt;}
.x18{left:119.067867pt;}
.x66{left:125.714133pt;}
.x6f{left:145.926533pt;}
.x1a{left:150.226987pt;}
.x5a{left:156.980533pt;}
.x1b{left:158.707147pt;}
.x1c{left:164.304427pt;}
.x19{left:176.790667pt;}
.x1d{left:223.665547pt;}
.x58{left:229.162400pt;}
.x33{left:239.484133pt;}
.x5c{left:252.928800pt;}
.x30{left:264.916133pt;}
.x63{left:267.270000pt;}
.x2f{left:270.844133pt;}
.x32{left:279.004133pt;}
.x4e{left:283.542933pt;}
.x31{left:292.276133pt;}
.x64{left:295.314267pt;}
.x7{left:300.168133pt;}
.x34{left:309.564133pt;}
.x73{left:322.528000pt;}
.x6{left:328.328133pt;}
.x72{left:335.808000pt;}
.x8{left:336.938133pt;}
.xa{left:355.960000pt;}
.x69{left:371.920000pt;}
.x1f{left:398.570347pt;}
.x67{left:399.640000pt;}
.x20{left:408.337867pt;}
.x1e{left:415.360267pt;}
.x60{left:426.535467pt;}
.x21{left:440.811147pt;}
.x38{left:454.104000pt;}
.x56{left:456.720133pt;}
.x35{left:462.912000pt;}
.x39{left:464.360000pt;}
.x36{left:465.632000pt;}
.x23{left:469.078667pt;}
.x24{left:470.358667pt;}
.x40{left:476.408800pt;}
.x22{left:477.455307pt;}
.x5d{left:479.376933pt;}
.x70{left:489.096000pt;}
.x37{left:491.712000pt;}
.x71{left:499.328000pt;}
.x16{left:501.648800pt;}
.x55{left:503.800133pt;}
.xb{left:522.720000pt;}
.x68{left:531.464000pt;}
.x53{left:544.456933pt;}
.x50{left:551.665733pt;}
.xf{left:552.787200pt;}
.x4f{left:560.616933pt;}
.x10{left:570.715200pt;}
.x2{left:587.556533pt;}
.x54{left:592.456933pt;}
.x51{left:600.937413pt;}
.x5{left:617.650480pt;}
.x52{left:628.138373pt;}
.x9{left:634.682133pt;}
.x6c{left:690.798400pt;}
.x29{left:707.844267pt;}
.x2b{left:722.252400pt;}
.x6a{left:725.504000pt;}
.x2c{left:729.756400pt;}
.x6b{left:747.310400pt;}
.x2a{left:750.724400pt;}
.x2d{left:753.108400pt;}
.x4{left:769.990000pt;}
.x2e{left:778.716400pt;}
.x57{left:790.768133pt;}
.x5e{left:819.063867pt;}
.x26{left:839.609733pt;}
.x62{left:850.006933pt;}
.x25{left:873.413600pt;}
.x5b{left:881.500533pt;}
.x3{left:912.348533pt;}
.x15{left:918.047467pt;}
.x48{left:973.841333pt;}
.x45{left:980.553333pt;}
.x46{left:992.385333pt;}
.x41{left:996.721333pt;}
.x42{left:1006.961333pt;}
.x44{left:1010.641467pt;}
.x4a{left:1022.670133pt;}
.x43{left:1025.521467pt;}
.x49{left:1031.129333pt;}
.x47{left:1049.337333pt;}
.x12{left:1052.422267pt;}
.x59{left:1085.611733pt;}
.x65{left:1225.600000pt;}
.x3d{left:1279.133067pt;}
.x3e{left:1283.940933pt;}
.x3b{left:1286.180933pt;}
.x14{left:1309.347867pt;}
.x3a{left:1314.341067pt;}
.x3f{left:1321.861067pt;}
.x3c{left:1323.620933pt;}
.x27{left:1347.102373pt;}
.x6e{left:1357.234667pt;}
.xe{left:1424.083467pt;}
.x4b{left:1553.428533pt;}
.x1{left:1557.280000pt;}
.x4c{left:1584.026667pt;}
.xc{left:1705.933333pt;}
}




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