
    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_37cc91a4591d5976885cbe22.woff')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_d3cca9c0f88db391149351c5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_5e0cbea11ec6bba6123de0f3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_c5809622a3b0242275feb466.woff')format("woff");}.ff4{font-family:ff4;line-height:1.087891;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_6d34d10c775e39d144eba3e8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;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_be04ab066197c6f4d5d4b563.woff')format("woff");}.ff6{font-family:ff6;line-height:1.087891;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_e25e2425c01f2571f34f019a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.941406;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_6e03b1a1dfc181cb9a480e42.woff')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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_fcfb2a569f4b287e03b0a324.woff')format("woff");}.ff9{font-family:ff9;line-height:4.296875;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_171f6ee56441f73e64c64ce4.woff')format("woff");}.ffa{font-family:ffa;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_61afafd161960c2b8ae2315a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.030273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0c2ba024dd0dda3e52892473.woff')format("woff");}.ffc{font-family:ffc;line-height:1.091797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_93ae73088a2697cbec8f0e54.woff')format("woff");}.ffd{font-family:ffd;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7bc500a8920e867e7060d87d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.962402;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);}
.v9{vertical-align:-171.360000px;}
.vd{vertical-align:-136.080000px;}
.vb{vertical-align:-113.880000px;}
.v12{vertical-align:-32.400000px;}
.v2{vertical-align:-25.200000px;}
.v10{vertical-align:-5.880000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:23.760000px;}
.v5{vertical-align:25.200000px;}
.v3{vertical-align:28.800000px;}
.v4{vertical-align:32.400000px;}
.v1{vertical-align:43.200000px;}
.v7{vertical-align:60.480000px;}
.ve{vertical-align:66.120000px;}
.v6{vertical-align:70.560000px;}
.vf{vertical-align:72.000000px;}
.v11{vertical-align:78.060000px;}
.va{vertical-align:80.640000px;}
.v8{vertical-align:163.440000px;}
.vc{vertical-align:249.960000px;}
.ls56{letter-spacing:-4.746000px;}
.ls39{letter-spacing:-0.436800px;}
.ls52{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.360000px;}
.ls54{letter-spacing:-0.344400px;}
.ls53{letter-spacing:-0.336000px;}
.ls1a{letter-spacing:-0.309000px;}
.ls4{letter-spacing:-0.302400px;}
.ls24{letter-spacing:-0.283200px;}
.ls17{letter-spacing:-0.231600px;}
.ls21{letter-spacing:-0.229800px;}
.ls11{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.205200px;}
.ls55{letter-spacing:-0.200400px;}
.ls42{letter-spacing:-0.197400px;}
.ls43{letter-spacing:-0.194400px;}
.ls31{letter-spacing:-0.188400px;}
.ls25{letter-spacing:-0.159600px;}
.ls3b{letter-spacing:-0.151200px;}
.ls41{letter-spacing:-0.144000px;}
.ls26{letter-spacing:-0.141000px;}
.lsd{letter-spacing:-0.128400px;}
.ls2e{letter-spacing:-0.123600px;}
.ls30{letter-spacing:-0.108600px;}
.ls20{letter-spacing:-0.076800px;}
.ls2d{letter-spacing:-0.073200px;}
.ls10{letter-spacing:-0.072000px;}
.ls49{letter-spacing:-0.060600px;}
.ls27{letter-spacing:-0.052560px;}
.ls8{letter-spacing:-0.015840px;}
.ls14{letter-spacing:-0.012240px;}
.ls36{letter-spacing:-0.004896px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.005040px;}
.ls23{letter-spacing:0.030240px;}
.ls44{letter-spacing:0.040920px;}
.ls29{letter-spacing:0.042048px;}
.ls1c{letter-spacing:0.049680px;}
.ls28{letter-spacing:0.063360px;}
.ls4d{letter-spacing:0.064512px;}
.ls1d{letter-spacing:0.071280px;}
.ls2f{letter-spacing:0.072000px;}
.ls4e{letter-spacing:0.083400px;}
.ls0{letter-spacing:0.104160px;}
.ls15{letter-spacing:0.112800px;}
.ls18{letter-spacing:0.117600px;}
.ls38{letter-spacing:0.120000px;}
.ls45{letter-spacing:0.121200px;}
.ls1e{letter-spacing:0.129600px;}
.ls19{letter-spacing:0.132600px;}
.ls34{letter-spacing:0.144000px;}
.ls47{letter-spacing:0.154200px;}
.ls3a{letter-spacing:0.171600px;}
.ls3c{letter-spacing:0.179280px;}
.ls7{letter-spacing:0.180600px;}
.ls9{letter-spacing:0.182400px;}
.ls46{letter-spacing:0.184800px;}
.ls37{letter-spacing:0.186600px;}
.ls32{letter-spacing:0.188400px;}
.ls35{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.220200px;}
.ls51{letter-spacing:0.242640px;}
.ls1{letter-spacing:0.250560px;}
.ls48{letter-spacing:0.258000px;}
.ls5{letter-spacing:0.261600px;}
.ls4b{letter-spacing:0.269400px;}
.ls40{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.291600px;}
.ls3{letter-spacing:0.299400px;}
.ls2a{letter-spacing:0.330600px;}
.ls33{letter-spacing:0.344400px;}
.ls3f{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.396000px;}
.ls4a{letter-spacing:0.762000px;}
.ls1f{letter-spacing:0.791280px;}
.ls50{letter-spacing:0.849600px;}
.ls2c{letter-spacing:2.406240px;}
.ls1b{letter-spacing:3.708000px;}
.ls4f{letter-spacing:4.499280px;}
.ls16{letter-spacing:7.308720px;}
.ls2b{letter-spacing:21.971520px;}
.ls22{letter-spacing:38.977920px;}
.ls3e{letter-spacing:41.097600px;}
.ls3d{letter-spacing:41.148000px;}
.ls13{letter-spacing:65.865600px;}
.ls12{letter-spacing:65.916000px;}
.ls4c{letter-spacing:78.516000px;}
.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;}
}
.ws29{word-spacing:-144.000000px;}
.ws31{word-spacing:-120.240000px;}
.ws1c{word-spacing:-108.000000px;}
.ws1d{word-spacing:-46.273680px;}
.ws1{word-spacing:-29.232000px;}
.ws34{word-spacing:-26.484480px;}
.ws24{word-spacing:-26.452800px;}
.ws2e{word-spacing:-26.400240px;}
.ws2d{word-spacing:-26.311800px;}
.ws2c{word-spacing:-26.293200px;}
.ws2b{word-spacing:-26.169600px;}
.ws5c{word-spacing:-25.221552px;}
.ws33{word-spacing:-24.739320px;}
.ws5d{word-spacing:-24.688920px;}
.ws56{word-spacing:-24.644352px;}
.ws41{word-spacing:-24.595320px;}
.ws52{word-spacing:-24.540720px;}
.ws50{word-spacing:-24.500472px;}
.ws17{word-spacing:-24.437952px;}
.ws4b{word-spacing:-24.419520px;}
.ws15{word-spacing:-24.408720px;}
.ws5a{word-spacing:-24.358920px;}
.ws25{word-spacing:-24.331920px;}
.ws3c{word-spacing:-24.300120px;}
.ws43{word-spacing:-24.286752px;}
.ws3d{word-spacing:-24.249552px;}
.ws42{word-spacing:-24.001152px;}
.ws4c{word-spacing:-22.217760px;}
.ws40{word-spacing:-21.953232px;}
.ws3f{word-spacing:-21.924000px;}
.ws1a{word-spacing:-21.852000px;}
.ws0{word-spacing:-19.439280px;}
.wsf{word-spacing:-19.423440px;}
.ws37{word-spacing:-19.356480px;}
.ws2a{word-spacing:-19.355040px;}
.ws30{word-spacing:-19.324800px;}
.ws32{word-spacing:-19.251600px;}
.ws48{word-spacing:-17.831520px;}
.ws62{word-spacing:-17.400120px;}
.ws64{word-spacing:-17.362320px;}
.ws60{word-spacing:-17.184120px;}
.ws5e{word-spacing:-17.129952px;}
.ws28{word-spacing:-17.100720px;}
.ws66{word-spacing:-16.900320px;}
.ws61{word-spacing:-16.798320px;}
.ws63{word-spacing:-16.764720px;}
.ws65{word-spacing:-16.756320px;}
.ws5f{word-spacing:-16.697952px;}
.ws4a{word-spacing:-16.252992px;}
.ws47{word-spacing:-16.223760px;}
.ws12{word-spacing:-15.785280px;}
.ws38{word-spacing:-15.652512px;}
.ws3e{word-spacing:-15.612480px;}
.ws4e{word-spacing:-15.069840px;}
.ws44{word-spacing:-14.976000px;}
.ws4d{word-spacing:-14.966040px;}
.ws46{word-spacing:-14.472000px;}
.ws1b{word-spacing:-14.400000px;}
.ws45{word-spacing:-13.008240px;}
.ws67{word-spacing:-12.354720px;}
.ws22{word-spacing:-12.263880px;}
.ws21{word-spacing:-12.248880px;}
.ws20{word-spacing:-12.244080px;}
.ws26{word-spacing:-12.160512px;}
.ws1f{word-spacing:-12.131280px;}
.ws27{word-spacing:-11.901480px;}
.ws23{word-spacing:-11.851512px;}
.ws49{word-spacing:-10.621440px;}
.ws4{word-spacing:-1.105200px;}
.ws8{word-spacing:-1.010592px;}
.ws2{word-spacing:-0.989280px;}
.wsd{word-spacing:-0.818640px;}
.ws7{word-spacing:-0.781200px;}
.ws6{word-spacing:-0.638640px;}
.wse{word-spacing:-0.601200px;}
.wsa{word-spacing:-0.584064px;}
.ws3{word-spacing:-0.575640px;}
.ws9{word-spacing:-0.490104px;}
.wsb{word-spacing:-0.218952px;}
.wsc{word-spacing:-0.151488px;}
.ws54{word-spacing:-0.061440px;}
.ws53{word-spacing:-0.022560px;}
.ws13{word-spacing:0.000000px;}
.ws58{word-spacing:0.302760px;}
.ws59{word-spacing:0.401760px;}
.ws55{word-spacing:0.581760px;}
.ws57{word-spacing:0.961920px;}
.ws5{word-spacing:1.201680px;}
.ws11{word-spacing:4.746240px;}
.ws10{word-spacing:6.038640px;}
.ws5b{word-spacing:15.079008px;}
.ws19{word-spacing:29.419920px;}
.ws18{word-spacing:29.502912px;}
.ws35{word-spacing:37.538640px;}
.ws1e{word-spacing:47.560320px;}
.ws36{word-spacing:58.659264px;}
.ws2f{word-spacing:59.116320px;}
.ws51{word-spacing:63.958320px;}
.ws4f{word-spacing:64.039032px;}
.ws14{word-spacing:93.499680px;}
.ws16{word-spacing:93.582768px;}
.ws3a{word-spacing:1241.323776px;}
.ws3b{word-spacing:1299.845520px;}
.ws39{word-spacing:1498.466160px;}
._1d{margin-left:-70.212960px;}
._1e{margin-left:-44.589888px;}
._0{margin-left:-29.875392px;}
._1a{margin-left:-19.076640px;}
._22{margin-left:-12.326640px;}
._e{margin-left:-9.572832px;}
._8{margin-left:-8.396352px;}
._6{margin-left:-6.414912px;}
._3{margin-left:-5.323392px;}
._7{margin-left:-4.050720px;}
._4{margin-left:-2.992896px;}
._1{margin-left:-1.057536px;}
._2{width:1.162560px;}
._f{width:2.238480px;}
._2b{width:3.512160px;}
._25{width:4.601760px;}
._2c{width:5.705232px;}
._12{width:6.762960px;}
._11{width:8.308320px;}
._2d{width:9.444720px;}
._14{width:13.200480px;}
._2e{width:15.459888px;}
._15{width:17.046240px;}
._5{width:18.287616px;}
._10{width:20.554800px;}
._9{width:22.131360px;}
._1c{width:24.507456px;}
._19{width:25.969200px;}
._16{width:27.521760px;}
._20{width:30.146976px;}
._13{width:32.070720px;}
._18{width:33.300720px;}
._31{width:34.688496px;}
._28{width:38.360016px;}
._2a{width:41.202240px;}
._29{width:42.330720px;}
._17{width:49.743360px;}
._1f{width:53.511264px;}
._1b{width:57.421440px;}
._33{width:58.557792px;}
._2f{width:62.628096px;}
._30{width:64.077408px;}
._21{width:72.927696px;}
._32{width:144.750000px;}
._24{width:801.357696px;}
._26{width:871.656000px;}
._a{width:875.976000px;}
._c{width:886.776000px;}
._27{width:1592.082048px;}
._23{width:1606.984512px;}
._b{width:1653.726048px;}
._d{width:1664.584512px;}
.fc8{color:rgb(16,72,98);}
.fc7{color:transparent;}
.fc4{color:rgb(97,192,228);}
.fc3{color:rgb(70,120,134);}
.fc5{color:rgb(0,2,108);}
.fc1{color:rgb(0,15,121);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs18{font-size:53.280000px;}
.fs4{font-size:56.160000px;}
.fs14{font-size:56.304000px;}
.fs10{font-size:59.760000px;}
.fs11{font-size:59.904000px;}
.fs7{font-size:64.080000px;}
.fsf{font-size:72.000000px;}
.fs19{font-size:72.144000px;}
.fs9{font-size:77.760000px;}
.fs16{font-size:79.920000px;}
.fs17{font-size:80.064000px;}
.fs5{font-size:84.240000px;}
.fs6{font-size:84.384000px;}
.fs12{font-size:87.840000px;}
.fs13{font-size:87.984000px;}
.fs3{font-size:95.760000px;}
.fs8{font-size:95.904000px;}
.fse{font-size:108.000000px;}
.fsa{font-size:108.144000px;}
.fsc{font-size:120.240000px;}
.fsd{font-size:120.384000px;}
.fs2{font-size:144.000000px;}
.fs15{font-size:144.144000px;}
.fsb{font-size:239.760000px;}
.fs1{font-size:264.240000px;}
.fs0{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:14.148000px;}
.yb4{bottom:28.332000px;}
.yef{bottom:48.456000px;}
.y76{bottom:49.644000px;}
.y4b{bottom:51.300000px;}
.yb3{bottom:52.272000px;}
.y8e{bottom:54.540000px;}
.y37{bottom:59.148000px;}
.y3c{bottom:60.696000px;}
.y99{bottom:62.820000px;}
.y75{bottom:67.644000px;}
.y4a{bottom:69.300000px;}
.yd2{bottom:69.948000px;}
.y63{bottom:71.640000px;}
.y8d{bottom:72.540000px;}
.y71{bottom:72.900000px;}
.yee{bottom:74.952000px;}
.yb2{bottom:76.212000px;}
.y3b{bottom:78.732000px;}
.y74{bottom:85.644000px;}
.y49{bottom:87.336000px;}
.y8c{bottom:90.540000px;}
.y4d{bottom:91.836000px;}
.y3a{bottom:96.732000px;}
.yed{bottom:101.412000px;}
.yd1{bottom:102.348000px;}
.y73{bottom:103.644000px;}
.y9a{bottom:104.610000px;}
.y91{bottom:104.655000px;}
.y97{bottom:104.685000px;}
.y88{bottom:104.730000px;}
.y85{bottom:104.760000px;}
.y81{bottom:104.835000px;}
.y48{bottom:105.336000px;}
.yb1{bottom:106.308000px;}
.y96{bottom:106.560000px;}
.y54{bottom:113.076000px;}
.y39{bottom:114.732000px;}
.y72{bottom:121.644000px;}
.y1c{bottom:122.256000px;}
.yec{bottom:127.692000px;}
.yb0{bottom:130.248000px;}
.y38{bottom:132.732000px;}
.y68{bottom:132.948000px;}
.yd0{bottom:134.748000px;}
.y60{bottom:135.576000px;}
.y106{bottom:142.668000px;}
.y94{bottom:150.300000px;}
.yeb{bottom:154.155000px;}
.yaf{bottom:154.365000px;}
.y6f{bottom:158.070000px;}
.y105{bottom:165.345000px;}
.ycf{bottom:167.145000px;}
.y9b{bottom:167.430000px;}
.y1b{bottom:169.635000px;}
.y5f{bottom:171.930000px;}
.yea{bottom:180.615000px;}
.y27{bottom:182.235000px;}
.y7c{bottom:182.910000px;}
.yae{bottom:184.245000px;}
.y104{bottom:188.025000px;}
.y90{bottom:194.220000px;}
.y9e{bottom:194.580000px;}
.y35{bottom:197.895000px;}
.yce{bottom:199.590000px;}
.y8{bottom:200.085000px;}
.ye9{bottom:206.895000px;}
.y53{bottom:207.795000px;}
.yad{bottom:208.185000px;}
.y5e{bottom:208.335000px;}
.yf{bottom:209.445000px;}
.y103{bottom:210.750000px;}
.y98{bottom:211.245000px;}
.yf3{bottom:213.510000px;}
.y7b{bottom:215.355000px;}
.y1a{bottom:216.975000px;}
.y26{bottom:222.195000px;}
.y9d{bottom:226.980000px;}
.y47{bottom:227.955000px;}
.y34{bottom:230.295000px;}
.ycd{bottom:231.990000px;}
.ye8{bottom:233.385000px;}
.y102{bottom:233.430000px;}
.y6e{bottom:237.855000px;}
.y7{bottom:237.930000px;}
.y5d{bottom:252.075000px;}
.yac{bottom:254.670000px;}
.y95{bottom:255.060000px;}
.y52{bottom:255.315000px;}
.ye7{bottom:259.845000px;}
.yf2{bottom:261.615000px;}
.y33{bottom:262.695000px;}
.y19{bottom:264.495000px;}
.y46{bottom:267.915000px;}
.y25{bottom:269.535000px;}
.y101{bottom:271.050000px;}
.y6{bottom:275.550000px;}
.y6d{bottom:277.815000px;}
.y5c{bottom:280.875000px;}
.yf1{bottom:285.555000px;}
.ye6{bottom:286.305000px;}
.y100{bottom:293.730000px;}
.yc9{bottom:294.015000px;}
.y2b{bottom:294.375000px;}
.y51{bottom:295.095000px;}
.y93{bottom:298.875000px;}
.y7a{bottom:302.655000px;}
.y92{bottom:306.975000px;}
.y45{bottom:307.695000px;}
.y24{bottom:309.495000px;}
.yf0{bottom:310.035000px;}
.y32{bottom:310.215000px;}
.y5{bottom:311.010000px;}
.y18{bottom:311.835000px;}
.ye5{bottom:312.585000px;}
.yff{bottom:316.410000px;}
.y6c{bottom:317.595000px;}
.y77{bottom:317.955000px;}
.yc8{bottom:322.125000px;}
.y5b{bottom:324.615000px;}
.yab{bottom:326.235000px;}
.y50{bottom:335.085000px;}
.y67{bottom:336.525000px;}
.y8a{bottom:338.940000px;}
.ye4{bottom:339.045000px;}
.yfe{bottom:339.090000px;}
.y70{bottom:339.735000px;}
.y2a{bottom:341.925000px;}
.y8f{bottom:342.690000px;}
.y23{bottom:349.305000px;}
.y4{bottom:349.890000px;}
.y31{bottom:349.995000px;}
.y66{bottom:354.525000px;}
.yaa{bottom:354.675000px;}
.y44{bottom:355.245000px;}
.y6b{bottom:357.585000px;}
.y17{bottom:359.205000px;}
.yc0{bottom:359.535000px;}
.yfd{bottom:361.800000px;}
.ye3{bottom:365.505000px;}
.y4f{bottom:365.685000px;}
.y5a{bottom:368.565000px;}
.y36{bottom:373.890000px;}
.y4e{bottom:380.805000px;}
.y29{bottom:381.705000px;}
.y4c{bottom:382.320000px;}
.y87{bottom:382.860000px;}
.ybf{bottom:383.475000px;}
.yfc{bottom:384.480000px;}
.ya9{bottom:385.095000px;}
.yc7{bottom:385.665000px;}
.y43{bottom:387.645000px;}
.y22{bottom:389.265000px;}
.y30{bottom:389.985000px;}
.ye2{bottom:391.830000px;}
.y79{bottom:397.545000px;}
.y59{bottom:398.445000px;}
.y16{bottom:406.725000px;}
.yfb{bottom:407.160000px;}
.ybe{bottom:407.415000px;}
.ye0{bottom:408.600000px;}
.ya8{bottom:413.535000px;}
.y3{bottom:415.695000px;}
.ye1{bottom:418.290000px;}
.y21{bottom:421.665000px;}
.y84{bottom:426.600000px;}
.y42{bottom:427.425000px;}
.y28{bottom:429.225000px;}
.ybd{bottom:431.535000px;}
.ydf{bottom:436.680000px;}
.y2f{bottom:437.325000px;}
.y7d{bottom:437.760000px;}
.y58{bottom:443.445000px;}
.y8b{bottom:443.775000px;}
.yfa{bottom:444.780000px;}
.y78{bottom:444.885000px;}
.ya7{bottom:451.365000px;}
.yc6{bottom:451.725000px;}
.ye{bottom:453.600000px;}
.y15{bottom:454.065000px;}
.ybc{bottom:455.475000px;}
.y41{bottom:459.825000px;}
.yf9{bottom:467.460000px;}
.y20{bottom:469.005000px;}
.y80{bottom:470.340000px;}
.yd{bottom:473.040000px;}
.yde{bottom:476.640000px;}
.y2e{bottom:477.285000px;}
.ya6{bottom:479.085000px;}
.ybb{bottom:479.415000px;}
.y57{bottom:479.625000px;}
.yd7{bottom:481.755000px;}
.y6a{bottom:484.845000px;}
.y2{bottom:486.975000px;}
.yc5{bottom:487.230000px;}
.y89{bottom:487.590000px;}
.yf8{bottom:490.140000px;}
.yc{bottom:492.480000px;}
.y40{bottom:499.830000px;}
.y108{bottom:499.965000px;}
.y14{bottom:501.450000px;}
.yba{bottom:503.565000px;}
.ydd{bottom:504.720000px;}
.ya5{bottom:506.625000px;}
.y9c{bottom:509.010000px;}
.yd6{bottom:509.295000px;}
.yb{bottom:512.100000px;}
.yf7{bottom:512.850000px;}
.yc4{bottom:515.310000px;}
.y1f{bottom:516.570000px;}
.y69{bottom:517.290000px;}
.y56{bottom:523.590000px;}
.y2d{bottom:524.670000px;}
.yb9{bottom:527.505000px;}
.y86{bottom:531.360000px;}
.y62{bottom:532.110000px;}
.y3f{bottom:532.230000px;}
.ya4{bottom:534.165000px;}
.yf6{bottom:535.530000px;}
.y107{bottom:535.965000px;}
.yd5{bottom:536.865000px;}
.ydb{bottom:544.170000px;}
.ycc{bottom:546.630000px;}
.y13{bottom:548.970000px;}
.y61{bottom:550.290000px;}
.yb8{bottom:551.445000px;}
.yc3{bottom:555.270000px;}
.y1e{bottom:556.350000px;}
.y1{bottom:558.285000px;}
.y65{bottom:559.620000px;}
.ya3{bottom:562.605000px;}
.ya{bottom:563.250000px;}
.ydc{bottom:564.225000px;}
.y2c{bottom:564.630000px;}
.yd4{bottom:565.305000px;}
.y55{bottom:567.330000px;}
.yda{bottom:568.110000px;}
.y3e{bottom:572.190000px;}
.yf5{bottom:573.405000px;}
.y83{bottom:575.175000px;}
.yb7{bottom:575.385000px;}
.ycb{bottom:579.030000px;}
.y82{bottom:583.275000px;}
.yc2{bottom:583.350000px;}
.yd9{bottom:592.050000px;}
.y64{bottom:595.620000px;}
.y12{bottom:596.310000px;}
.yb6{bottom:599.505000px;}
.y7e{bottom:601.200000px;}
.yca{bottom:611.430000px;}
.y9{bottom:616.245000px;}
.yd8{bottom:616.530000px;}
.y7f{bottom:618.990000px;}
.ya2{bottom:619.305000px;}
.y3d{bottom:619.530000px;}
.yd3{bottom:621.795000px;}
.yb5{bottom:623.985000px;}
.yc1{bottom:643.035000px;}
.yf4{bottom:670.965000px;}
.y11{bottom:672.375000px;}
.ya1{bottom:697.935000px;}
.ya0{bottom:730.335000px;}
.y10{bottom:761.190000px;}
.y9f{bottom:762.765000px;}
.h4{height:48.673828px;}
.h12{height:51.793945px;}
.h13{height:51.918750px;}
.h31{height:52.628906px;}
.h32{height:58.418086px;}
.h28{height:62.402344px;}
.h20{height:62.507812px;}
.h2e{height:62.527148px;}
.h30{height:63.344531px;}
.h33{height:63.824063px;}
.h35{height:64.207266px;}
.h34{height:64.312523px;}
.h2f{height:66.051562px;}
.h9{height:67.394531px;}
.h2a{height:69.266602px;}
.h2b{height:69.383672px;}
.h2c{height:69.391406px;}
.h2d{height:70.015781px;}
.h29{height:73.010742px;}
.h27{height:73.134141px;}
.h18{height:73.135547px;}
.h11{height:73.873828px;}
.h26{height:76.259531px;}
.h8{height:83.135391px;}
.h6{height:83.260406px;}
.h5{height:84.338086px;}
.h7{height:84.431953px;}
.h1b{height:87.995531px;}
.h21{height:93.339844px;}
.ha{height:93.464297px;}
.h22{height:93.603516px;}
.h23{height:93.728320px;}
.h1e{height:93.761719px;}
.h24{height:93.886734px;}
.he{height:94.802344px;}
.h25{height:94.907813px;}
.hc{height:104.211914px;}
.hd{height:104.336719px;}
.hf{height:104.388047px;}
.h10{height:104.513063px;}
.h1c{height:124.804688px;}
.h1d{height:124.929492px;}
.h37{height:125.015625px;}
.h3{height:126.195117px;}
.h19{height:176.211914px;}
.h1a{height:176.516719px;}
.h2{height:193.148086px;}
.h1{height:193.253344px;}
.h38{height:205.397578px;}
.hb{height:207.214453px;}
.h1f{height:226.980000px;}
.h36{height:228.371484px;}
.h14{height:292.674023px;}
.h16{height:293.024531px;}
.h15{height:353.154023px;}
.h17{height:456.114023px;}
.h0{height:810.000000px;}
.w6{width:101.880000px;}
.w2{width:111.960000px;}
.w7{width:112.140000px;}
.w4{width:127.800000px;}
.w5{width:144.720000px;}
.w3{width:185.400000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1e{left:10.905000px;}
.x2f{left:16.199979px;}
.x43{left:29.699979px;}
.x2c{left:44.963979px;}
.x30{left:46.439979px;}
.x44{left:70.199979px;}
.x2{left:81.467979px;}
.x2b{left:99.503979px;}
.x8{left:102.923979px;}
.x18{left:107.603979px;}
.x3{left:109.799979px;}
.x2e{left:114.191979px;}
.x9{left:129.923979px;}
.x19{left:134.603979px;}
.x5{left:136.799979px;}
.x11{left:147.491979px;}
.x4{left:163.829979px;}
.xa{left:190.829979px;}
.x2d{left:195.089979px;}
.xe{left:213.689979px;}
.xb{left:217.829979px;}
.x49{left:224.204979px;}
.x4a{left:242.384979px;}
.x12{left:248.294979px;}
.x13{left:262.154979px;}
.x3b{left:342.569979px;}
.x3d{left:356.789979px;}
.x3c{left:363.809979px;}
.x3a{left:367.049979px;}
.x1{left:381.494979px;}
.x3e{left:410.609979px;}
.x2a{left:433.514979px;}
.x1a{left:541.184979px;}
.x4b{left:543.809979px;}
.x33{left:564.119979px;}
.x34{left:581.399979px;}
.x4c{left:594.974979px;}
.x15{left:602.309979px;}
.x32{left:614.444979px;}
.x3f{left:666.509979px;}
.x31{left:689.789979px;}
.x1d{left:729.000000px;}
.xf{left:816.329979px;}
.x1f{left:840.780000px;}
.x45{left:846.689979px;}
.x47{left:849.959979px;}
.x46{left:858.629979px;}
.x26{left:866.189979px;}
.x48{left:876.959979px;}
.x1c{left:926.099979px;}
.xd{left:929.774979px;}
.x10{left:941.969979px;}
.xc{left:943.274979px;}
.x28{left:962.069979px;}
.x7{left:980.309979px;}
.x6{left:988.529979px;}
.x20{left:992.774979px;}
.x38{left:1003.529979px;}
.x17{left:1021.529979px;}
.x16{left:1026.179979px;}
.x1b{left:1042.169979px;}
.x25{left:1051.484979px;}
.x36{left:1057.214979px;}
.x41{left:1060.709979px;}
.x21{left:1097.789979px;}
.x37{left:1102.574979px;}
.x42{left:1106.069979px;}
.x14{left:1129.709979px;}
.x22{left:1153.620000px;}
.x39{left:1158.914979px;}
.x27{left:1179.104979px;}
.x35{left:1210.829979px;}
.x40{left:1214.309979px;}
.x23{left:1225.364979px;}
.x24{left:1298.160000px;}
.x29{left:1323.824979px;}
@media print{
.v9{vertical-align:-152.320000pt;}
.vd{vertical-align:-120.960000pt;}
.vb{vertical-align:-101.226667pt;}
.v12{vertical-align:-28.800000pt;}
.v2{vertical-align:-22.400000pt;}
.v10{vertical-align:-5.226667pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:21.120000pt;}
.v5{vertical-align:22.400000pt;}
.v3{vertical-align:25.600000pt;}
.v4{vertical-align:28.800000pt;}
.v1{vertical-align:38.400000pt;}
.v7{vertical-align:53.760000pt;}
.ve{vertical-align:58.773333pt;}
.v6{vertical-align:62.720000pt;}
.vf{vertical-align:64.000000pt;}
.v11{vertical-align:69.386667pt;}
.va{vertical-align:71.680000pt;}
.v8{vertical-align:145.280000pt;}
.vc{vertical-align:222.186667pt;}
.ls56{letter-spacing:-4.218667pt;}
.ls39{letter-spacing:-0.388267pt;}
.ls52{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls54{letter-spacing:-0.306133pt;}
.ls53{letter-spacing:-0.298667pt;}
.ls1a{letter-spacing:-0.274667pt;}
.ls4{letter-spacing:-0.268800pt;}
.ls24{letter-spacing:-0.251733pt;}
.ls17{letter-spacing:-0.205867pt;}
.ls21{letter-spacing:-0.204267pt;}
.ls11{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.182400pt;}
.ls55{letter-spacing:-0.178133pt;}
.ls42{letter-spacing:-0.175467pt;}
.ls43{letter-spacing:-0.172800pt;}
.ls31{letter-spacing:-0.167467pt;}
.ls25{letter-spacing:-0.141867pt;}
.ls3b{letter-spacing:-0.134400pt;}
.ls41{letter-spacing:-0.128000pt;}
.ls26{letter-spacing:-0.125333pt;}
.lsd{letter-spacing:-0.114133pt;}
.ls2e{letter-spacing:-0.109867pt;}
.ls30{letter-spacing:-0.096533pt;}
.ls20{letter-spacing:-0.068267pt;}
.ls2d{letter-spacing:-0.065067pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls49{letter-spacing:-0.053867pt;}
.ls27{letter-spacing:-0.046720pt;}
.ls8{letter-spacing:-0.014080pt;}
.ls14{letter-spacing:-0.010880pt;}
.ls36{letter-spacing:-0.004352pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.004480pt;}
.ls23{letter-spacing:0.026880pt;}
.ls44{letter-spacing:0.036373pt;}
.ls29{letter-spacing:0.037376pt;}
.ls1c{letter-spacing:0.044160pt;}
.ls28{letter-spacing:0.056320pt;}
.ls4d{letter-spacing:0.057344pt;}
.ls1d{letter-spacing:0.063360pt;}
.ls2f{letter-spacing:0.064000pt;}
.ls4e{letter-spacing:0.074133pt;}
.ls0{letter-spacing:0.092587pt;}
.ls15{letter-spacing:0.100267pt;}
.ls18{letter-spacing:0.104533pt;}
.ls38{letter-spacing:0.106667pt;}
.ls45{letter-spacing:0.107733pt;}
.ls1e{letter-spacing:0.115200pt;}
.ls19{letter-spacing:0.117867pt;}
.ls34{letter-spacing:0.128000pt;}
.ls47{letter-spacing:0.137067pt;}
.ls3a{letter-spacing:0.152533pt;}
.ls3c{letter-spacing:0.159360pt;}
.ls7{letter-spacing:0.160533pt;}
.ls9{letter-spacing:0.162133pt;}
.ls46{letter-spacing:0.164267pt;}
.ls37{letter-spacing:0.165867pt;}
.ls32{letter-spacing:0.167467pt;}
.ls35{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.195733pt;}
.ls51{letter-spacing:0.215680pt;}
.ls1{letter-spacing:0.222720pt;}
.ls48{letter-spacing:0.229333pt;}
.ls5{letter-spacing:0.232533pt;}
.ls4b{letter-spacing:0.239467pt;}
.ls40{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.259200pt;}
.ls3{letter-spacing:0.266133pt;}
.ls2a{letter-spacing:0.293867pt;}
.ls33{letter-spacing:0.306133pt;}
.ls3f{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.352000pt;}
.ls4a{letter-spacing:0.677333pt;}
.ls1f{letter-spacing:0.703360pt;}
.ls50{letter-spacing:0.755200pt;}
.ls2c{letter-spacing:2.138880pt;}
.ls1b{letter-spacing:3.296000pt;}
.ls4f{letter-spacing:3.999360pt;}
.ls16{letter-spacing:6.496640pt;}
.ls2b{letter-spacing:19.530240pt;}
.ls22{letter-spacing:34.647040pt;}
.ls3e{letter-spacing:36.531200pt;}
.ls3d{letter-spacing:36.576000pt;}
.ls13{letter-spacing:58.547200pt;}
.ls12{letter-spacing:58.592000pt;}
.ls4c{letter-spacing:69.792000pt;}
.ws29{word-spacing:-128.000000pt;}
.ws31{word-spacing:-106.880000pt;}
.ws1c{word-spacing:-96.000000pt;}
.ws1d{word-spacing:-41.132160pt;}
.ws1{word-spacing:-25.984000pt;}
.ws34{word-spacing:-23.541760pt;}
.ws24{word-spacing:-23.513600pt;}
.ws2e{word-spacing:-23.466880pt;}
.ws2d{word-spacing:-23.388267pt;}
.ws2c{word-spacing:-23.371733pt;}
.ws2b{word-spacing:-23.261867pt;}
.ws5c{word-spacing:-22.419157pt;}
.ws33{word-spacing:-21.990507pt;}
.ws5d{word-spacing:-21.945707pt;}
.ws56{word-spacing:-21.906091pt;}
.ws41{word-spacing:-21.862507pt;}
.ws52{word-spacing:-21.813973pt;}
.ws50{word-spacing:-21.778197pt;}
.ws17{word-spacing:-21.722624pt;}
.ws4b{word-spacing:-21.706240pt;}
.ws15{word-spacing:-21.696640pt;}
.ws5a{word-spacing:-21.652373pt;}
.ws25{word-spacing:-21.628373pt;}
.ws3c{word-spacing:-21.600107pt;}
.ws43{word-spacing:-21.588224pt;}
.ws3d{word-spacing:-21.555157pt;}
.ws42{word-spacing:-21.334357pt;}
.ws4c{word-spacing:-19.749120pt;}
.ws40{word-spacing:-19.513984pt;}
.ws3f{word-spacing:-19.488000pt;}
.ws1a{word-spacing:-19.424000pt;}
.ws0{word-spacing:-17.279360pt;}
.wsf{word-spacing:-17.265280pt;}
.ws37{word-spacing:-17.205760pt;}
.ws2a{word-spacing:-17.204480pt;}
.ws30{word-spacing:-17.177600pt;}
.ws32{word-spacing:-17.112533pt;}
.ws48{word-spacing:-15.850240pt;}
.ws62{word-spacing:-15.466773pt;}
.ws64{word-spacing:-15.433173pt;}
.ws60{word-spacing:-15.274773pt;}
.ws5e{word-spacing:-15.226624pt;}
.ws28{word-spacing:-15.200640pt;}
.ws66{word-spacing:-15.022507pt;}
.ws61{word-spacing:-14.931840pt;}
.ws63{word-spacing:-14.901973pt;}
.ws65{word-spacing:-14.894507pt;}
.ws5f{word-spacing:-14.842624pt;}
.ws4a{word-spacing:-14.447104pt;}
.ws47{word-spacing:-14.421120pt;}
.ws12{word-spacing:-14.031360pt;}
.ws38{word-spacing:-13.913344pt;}
.ws3e{word-spacing:-13.877760pt;}
.ws4e{word-spacing:-13.395413pt;}
.ws44{word-spacing:-13.312000pt;}
.ws4d{word-spacing:-13.303147pt;}
.ws46{word-spacing:-12.864000pt;}
.ws1b{word-spacing:-12.800000pt;}
.ws45{word-spacing:-11.562880pt;}
.ws67{word-spacing:-10.981973pt;}
.ws22{word-spacing:-10.901227pt;}
.ws21{word-spacing:-10.887893pt;}
.ws20{word-spacing:-10.883627pt;}
.ws26{word-spacing:-10.809344pt;}
.ws1f{word-spacing:-10.783360pt;}
.ws27{word-spacing:-10.579093pt;}
.ws23{word-spacing:-10.534677pt;}
.ws49{word-spacing:-9.441280pt;}
.ws4{word-spacing:-0.982400pt;}
.ws8{word-spacing:-0.898304pt;}
.ws2{word-spacing:-0.879360pt;}
.wsd{word-spacing:-0.727680pt;}
.ws7{word-spacing:-0.694400pt;}
.ws6{word-spacing:-0.567680pt;}
.wse{word-spacing:-0.534400pt;}
.wsa{word-spacing:-0.519168pt;}
.ws3{word-spacing:-0.511680pt;}
.ws9{word-spacing:-0.435648pt;}
.wsb{word-spacing:-0.194624pt;}
.wsc{word-spacing:-0.134656pt;}
.ws54{word-spacing:-0.054613pt;}
.ws53{word-spacing:-0.020053pt;}
.ws13{word-spacing:0.000000pt;}
.ws58{word-spacing:0.269120pt;}
.ws59{word-spacing:0.357120pt;}
.ws55{word-spacing:0.517120pt;}
.ws57{word-spacing:0.855040pt;}
.ws5{word-spacing:1.068160pt;}
.ws11{word-spacing:4.218880pt;}
.ws10{word-spacing:5.367680pt;}
.ws5b{word-spacing:13.403563pt;}
.ws19{word-spacing:26.151040pt;}
.ws18{word-spacing:26.224811pt;}
.ws35{word-spacing:33.367680pt;}
.ws1e{word-spacing:42.275840pt;}
.ws36{word-spacing:52.141568pt;}
.ws2f{word-spacing:52.547840pt;}
.ws51{word-spacing:56.851840pt;}
.ws4f{word-spacing:56.923584pt;}
.ws14{word-spacing:83.110827pt;}
.ws16{word-spacing:83.184683pt;}
.ws3a{word-spacing:1103.398912pt;}
.ws3b{word-spacing:1155.418240pt;}
.ws39{word-spacing:1331.969920pt;}
._1d{margin-left:-62.411520pt;}
._1e{margin-left:-39.635456pt;}
._0{margin-left:-26.555904pt;}
._1a{margin-left:-16.957013pt;}
._22{margin-left:-10.957013pt;}
._e{margin-left:-8.509184pt;}
._8{margin-left:-7.463424pt;}
._6{margin-left:-5.702144pt;}
._3{margin-left:-4.731904pt;}
._7{margin-left:-3.600640pt;}
._4{margin-left:-2.660352pt;}
._1{margin-left:-0.940032pt;}
._2{width:1.033387pt;}
._f{width:1.989760pt;}
._2b{width:3.121920pt;}
._25{width:4.090453pt;}
._2c{width:5.071317pt;}
._12{width:6.011520pt;}
._11{width:7.385173pt;}
._2d{width:8.395307pt;}
._14{width:11.733760pt;}
._2e{width:13.742123pt;}
._15{width:15.152213pt;}
._5{width:16.255659pt;}
._10{width:18.270933pt;}
._9{width:19.672320pt;}
._1c{width:21.784405pt;}
._19{width:23.083733pt;}
._16{width:24.463787pt;}
._20{width:26.797312pt;}
._13{width:28.507307pt;}
._18{width:29.600640pt;}
._31{width:30.834219pt;}
._28{width:34.097792pt;}
._2a{width:36.624213pt;}
._29{width:37.627307pt;}
._17{width:44.216320pt;}
._1f{width:47.565568pt;}
._1b{width:51.041280pt;}
._33{width:52.051371pt;}
._2f{width:55.669419pt;}
._30{width:56.957696pt;}
._21{width:64.824619pt;}
._32{width:128.666667pt;}
._24{width:712.317952pt;}
._26{width:774.805333pt;}
._a{width:778.645333pt;}
._c{width:788.245333pt;}
._27{width:1415.184043pt;}
._23{width:1428.430677pt;}
._b{width:1469.978709pt;}
._d{width:1479.630677pt;}
.fs18{font-size:47.360000pt;}
.fs4{font-size:49.920000pt;}
.fs14{font-size:50.048000pt;}
.fs10{font-size:53.120000pt;}
.fs11{font-size:53.248000pt;}
.fs7{font-size:56.960000pt;}
.fsf{font-size:64.000000pt;}
.fs19{font-size:64.128000pt;}
.fs9{font-size:69.120000pt;}
.fs16{font-size:71.040000pt;}
.fs17{font-size:71.168000pt;}
.fs5{font-size:74.880000pt;}
.fs6{font-size:75.008000pt;}
.fs12{font-size:78.080000pt;}
.fs13{font-size:78.208000pt;}
.fs3{font-size:85.120000pt;}
.fs8{font-size:85.248000pt;}
.fse{font-size:96.000000pt;}
.fsa{font-size:96.128000pt;}
.fsc{font-size:106.880000pt;}
.fsd{font-size:107.008000pt;}
.fs2{font-size:128.000000pt;}
.fs15{font-size:128.128000pt;}
.fsb{font-size:213.120000pt;}
.fs1{font-size:234.880000pt;}
.fs0{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:12.576000pt;}
.yb4{bottom:25.184000pt;}
.yef{bottom:43.072000pt;}
.y76{bottom:44.128000pt;}
.y4b{bottom:45.600000pt;}
.yb3{bottom:46.464000pt;}
.y8e{bottom:48.480000pt;}
.y37{bottom:52.576000pt;}
.y3c{bottom:53.952000pt;}
.y99{bottom:55.840000pt;}
.y75{bottom:60.128000pt;}
.y4a{bottom:61.600000pt;}
.yd2{bottom:62.176000pt;}
.y63{bottom:63.680000pt;}
.y8d{bottom:64.480000pt;}
.y71{bottom:64.800000pt;}
.yee{bottom:66.624000pt;}
.yb2{bottom:67.744000pt;}
.y3b{bottom:69.984000pt;}
.y74{bottom:76.128000pt;}
.y49{bottom:77.632000pt;}
.y8c{bottom:80.480000pt;}
.y4d{bottom:81.632000pt;}
.y3a{bottom:85.984000pt;}
.yed{bottom:90.144000pt;}
.yd1{bottom:90.976000pt;}
.y73{bottom:92.128000pt;}
.y9a{bottom:92.986667pt;}
.y91{bottom:93.026667pt;}
.y97{bottom:93.053333pt;}
.y88{bottom:93.093333pt;}
.y85{bottom:93.120000pt;}
.y81{bottom:93.186667pt;}
.y48{bottom:93.632000pt;}
.yb1{bottom:94.496000pt;}
.y96{bottom:94.720000pt;}
.y54{bottom:100.512000pt;}
.y39{bottom:101.984000pt;}
.y72{bottom:108.128000pt;}
.y1c{bottom:108.672000pt;}
.yec{bottom:113.504000pt;}
.yb0{bottom:115.776000pt;}
.y38{bottom:117.984000pt;}
.y68{bottom:118.176000pt;}
.yd0{bottom:119.776000pt;}
.y60{bottom:120.512000pt;}
.y106{bottom:126.816000pt;}
.y94{bottom:133.600000pt;}
.yeb{bottom:137.026667pt;}
.yaf{bottom:137.213333pt;}
.y6f{bottom:140.506667pt;}
.y105{bottom:146.973333pt;}
.ycf{bottom:148.573333pt;}
.y9b{bottom:148.826667pt;}
.y1b{bottom:150.786667pt;}
.y5f{bottom:152.826667pt;}
.yea{bottom:160.546667pt;}
.y27{bottom:161.986667pt;}
.y7c{bottom:162.586667pt;}
.yae{bottom:163.773333pt;}
.y104{bottom:167.133333pt;}
.y90{bottom:172.640000pt;}
.y9e{bottom:172.960000pt;}
.y35{bottom:175.906667pt;}
.yce{bottom:177.413333pt;}
.y8{bottom:177.853333pt;}
.ye9{bottom:183.906667pt;}
.y53{bottom:184.706667pt;}
.yad{bottom:185.053333pt;}
.y5e{bottom:185.186667pt;}
.yf{bottom:186.173333pt;}
.y103{bottom:187.333333pt;}
.y98{bottom:187.773333pt;}
.yf3{bottom:189.786667pt;}
.y7b{bottom:191.426667pt;}
.y1a{bottom:192.866667pt;}
.y26{bottom:197.506667pt;}
.y9d{bottom:201.760000pt;}
.y47{bottom:202.626667pt;}
.y34{bottom:204.706667pt;}
.ycd{bottom:206.213333pt;}
.ye8{bottom:207.453333pt;}
.y102{bottom:207.493333pt;}
.y6e{bottom:211.426667pt;}
.y7{bottom:211.493333pt;}
.y5d{bottom:224.066667pt;}
.yac{bottom:226.373333pt;}
.y95{bottom:226.720000pt;}
.y52{bottom:226.946667pt;}
.ye7{bottom:230.973333pt;}
.yf2{bottom:232.546667pt;}
.y33{bottom:233.506667pt;}
.y19{bottom:235.106667pt;}
.y46{bottom:238.146667pt;}
.y25{bottom:239.586667pt;}
.y101{bottom:240.933333pt;}
.y6{bottom:244.933333pt;}
.y6d{bottom:246.946667pt;}
.y5c{bottom:249.666667pt;}
.yf1{bottom:253.826667pt;}
.ye6{bottom:254.493333pt;}
.y100{bottom:261.093333pt;}
.yc9{bottom:261.346667pt;}
.y2b{bottom:261.666667pt;}
.y51{bottom:262.306667pt;}
.y93{bottom:265.666667pt;}
.y7a{bottom:269.026667pt;}
.y92{bottom:272.866667pt;}
.y45{bottom:273.506667pt;}
.y24{bottom:275.106667pt;}
.yf0{bottom:275.586667pt;}
.y32{bottom:275.746667pt;}
.y5{bottom:276.453333pt;}
.y18{bottom:277.186667pt;}
.ye5{bottom:277.853333pt;}
.yff{bottom:281.253333pt;}
.y6c{bottom:282.306667pt;}
.y77{bottom:282.626667pt;}
.yc8{bottom:286.333333pt;}
.y5b{bottom:288.546667pt;}
.yab{bottom:289.986667pt;}
.y50{bottom:297.853333pt;}
.y67{bottom:299.133333pt;}
.y8a{bottom:301.280000pt;}
.ye4{bottom:301.373333pt;}
.yfe{bottom:301.413333pt;}
.y70{bottom:301.986667pt;}
.y2a{bottom:303.933333pt;}
.y8f{bottom:304.613333pt;}
.y23{bottom:310.493333pt;}
.y4{bottom:311.013333pt;}
.y31{bottom:311.106667pt;}
.y66{bottom:315.133333pt;}
.yaa{bottom:315.266667pt;}
.y44{bottom:315.773333pt;}
.y6b{bottom:317.853333pt;}
.y17{bottom:319.293333pt;}
.yc0{bottom:319.586667pt;}
.yfd{bottom:321.600000pt;}
.ye3{bottom:324.893333pt;}
.y4f{bottom:325.053333pt;}
.y5a{bottom:327.613333pt;}
.y36{bottom:332.346667pt;}
.y4e{bottom:338.493333pt;}
.y29{bottom:339.293333pt;}
.y4c{bottom:339.840000pt;}
.y87{bottom:340.320000pt;}
.ybf{bottom:340.866667pt;}
.yfc{bottom:341.760000pt;}
.ya9{bottom:342.306667pt;}
.yc7{bottom:342.813333pt;}
.y43{bottom:344.573333pt;}
.y22{bottom:346.013333pt;}
.y30{bottom:346.653333pt;}
.ye2{bottom:348.293333pt;}
.y79{bottom:353.373333pt;}
.y59{bottom:354.173333pt;}
.y16{bottom:361.533333pt;}
.yfb{bottom:361.920000pt;}
.ybe{bottom:362.146667pt;}
.ye0{bottom:363.200000pt;}
.ya8{bottom:367.586667pt;}
.y3{bottom:369.506667pt;}
.ye1{bottom:371.813333pt;}
.y21{bottom:374.813333pt;}
.y84{bottom:379.200000pt;}
.y42{bottom:379.933333pt;}
.y28{bottom:381.533333pt;}
.ybd{bottom:383.586667pt;}
.ydf{bottom:388.160000pt;}
.y2f{bottom:388.733333pt;}
.y7d{bottom:389.120000pt;}
.y58{bottom:394.173333pt;}
.y8b{bottom:394.466667pt;}
.yfa{bottom:395.360000pt;}
.y78{bottom:395.453333pt;}
.ya7{bottom:401.213333pt;}
.yc6{bottom:401.533333pt;}
.ye{bottom:403.200000pt;}
.y15{bottom:403.613333pt;}
.ybc{bottom:404.866667pt;}
.y41{bottom:408.733333pt;}
.yf9{bottom:415.520000pt;}
.y20{bottom:416.893333pt;}
.y80{bottom:418.080000pt;}
.yd{bottom:420.480000pt;}
.yde{bottom:423.680000pt;}
.y2e{bottom:424.253333pt;}
.ya6{bottom:425.853333pt;}
.ybb{bottom:426.146667pt;}
.y57{bottom:426.333333pt;}
.yd7{bottom:428.226667pt;}
.y6a{bottom:430.973333pt;}
.y2{bottom:432.866667pt;}
.yc5{bottom:433.093333pt;}
.y89{bottom:433.413333pt;}
.yf8{bottom:435.680000pt;}
.yc{bottom:437.760000pt;}
.y40{bottom:444.293333pt;}
.y108{bottom:444.413333pt;}
.y14{bottom:445.733333pt;}
.yba{bottom:447.613333pt;}
.ydd{bottom:448.640000pt;}
.ya5{bottom:450.333333pt;}
.y9c{bottom:452.453333pt;}
.yd6{bottom:452.706667pt;}
.yb{bottom:455.200000pt;}
.yf7{bottom:455.866667pt;}
.yc4{bottom:458.053333pt;}
.y1f{bottom:459.173333pt;}
.y69{bottom:459.813333pt;}
.y56{bottom:465.413333pt;}
.y2d{bottom:466.373333pt;}
.yb9{bottom:468.893333pt;}
.y86{bottom:472.320000pt;}
.y62{bottom:472.986667pt;}
.y3f{bottom:473.093333pt;}
.ya4{bottom:474.813333pt;}
.yf6{bottom:476.026667pt;}
.y107{bottom:476.413333pt;}
.yd5{bottom:477.213333pt;}
.ydb{bottom:483.706667pt;}
.ycc{bottom:485.893333pt;}
.y13{bottom:487.973333pt;}
.y61{bottom:489.146667pt;}
.yb8{bottom:490.173333pt;}
.yc3{bottom:493.573333pt;}
.y1e{bottom:494.533333pt;}
.y1{bottom:496.253333pt;}
.y65{bottom:497.440000pt;}
.ya3{bottom:500.093333pt;}
.ya{bottom:500.666667pt;}
.ydc{bottom:501.533333pt;}
.y2c{bottom:501.893333pt;}
.yd4{bottom:502.493333pt;}
.y55{bottom:504.293333pt;}
.yda{bottom:504.986667pt;}
.y3e{bottom:508.613333pt;}
.yf5{bottom:509.693333pt;}
.y83{bottom:511.266667pt;}
.yb7{bottom:511.453333pt;}
.ycb{bottom:514.693333pt;}
.y82{bottom:518.466667pt;}
.yc2{bottom:518.533333pt;}
.yd9{bottom:526.266667pt;}
.y64{bottom:529.440000pt;}
.y12{bottom:530.053333pt;}
.yb6{bottom:532.893333pt;}
.y7e{bottom:534.400000pt;}
.yca{bottom:543.493333pt;}
.y9{bottom:547.773333pt;}
.yd8{bottom:548.026667pt;}
.y7f{bottom:550.213333pt;}
.ya2{bottom:550.493333pt;}
.y3d{bottom:550.693333pt;}
.yd3{bottom:552.706667pt;}
.yb5{bottom:554.653333pt;}
.yc1{bottom:571.586667pt;}
.yf4{bottom:596.413333pt;}
.y11{bottom:597.666667pt;}
.ya1{bottom:620.386667pt;}
.ya0{bottom:649.186667pt;}
.y10{bottom:676.613333pt;}
.y9f{bottom:678.013333pt;}
.h4{height:43.265625pt;}
.h12{height:46.039063pt;}
.h13{height:46.150000pt;}
.h31{height:46.781250pt;}
.h32{height:51.927188pt;}
.h28{height:55.468750pt;}
.h20{height:55.562500pt;}
.h2e{height:55.579687pt;}
.h30{height:56.306250pt;}
.h33{height:56.732500pt;}
.h35{height:57.073125pt;}
.h34{height:57.166687pt;}
.h2f{height:58.712500pt;}
.h9{height:59.906250pt;}
.h2a{height:61.570312pt;}
.h2b{height:61.674375pt;}
.h2c{height:61.681250pt;}
.h2d{height:62.236250pt;}
.h29{height:64.898438pt;}
.h27{height:65.008125pt;}
.h18{height:65.009375pt;}
.h11{height:65.665625pt;}
.h26{height:67.786250pt;}
.h8{height:73.898125pt;}
.h6{height:74.009250pt;}
.h5{height:74.967187pt;}
.h7{height:75.050625pt;}
.h1b{height:78.218250pt;}
.h21{height:82.968750pt;}
.ha{height:83.079375pt;}
.h22{height:83.203125pt;}
.h23{height:83.314062pt;}
.h1e{height:83.343750pt;}
.h24{height:83.454875pt;}
.he{height:84.268750pt;}
.h25{height:84.362500pt;}
.hc{height:92.632812pt;}
.hd{height:92.743750pt;}
.hf{height:92.789375pt;}
.h10{height:92.900500pt;}
.h1c{height:110.937500pt;}
.h1d{height:111.048437pt;}
.h37{height:111.125000pt;}
.h3{height:112.173438pt;}
.h19{height:156.632812pt;}
.h1a{height:156.903750pt;}
.h2{height:171.687187pt;}
.h1{height:171.780750pt;}
.h38{height:182.575625pt;}
.hb{height:184.190625pt;}
.h1f{height:201.760000pt;}
.h36{height:202.996875pt;}
.h14{height:260.154688pt;}
.h16{height:260.466250pt;}
.h15{height:313.914688pt;}
.h17{height:405.434687pt;}
.h0{height:720.000000pt;}
.w6{width:90.560000pt;}
.w2{width:99.520000pt;}
.w7{width:99.680000pt;}
.w4{width:113.600000pt;}
.w5{width:128.640000pt;}
.w3{width:164.800000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:9.693333pt;}
.x2f{left:14.399981pt;}
.x43{left:26.399981pt;}
.x2c{left:39.967981pt;}
.x30{left:41.279981pt;}
.x44{left:62.399981pt;}
.x2{left:72.415981pt;}
.x2b{left:88.447981pt;}
.x8{left:91.487981pt;}
.x18{left:95.647981pt;}
.x3{left:97.599981pt;}
.x2e{left:101.503981pt;}
.x9{left:115.487981pt;}
.x19{left:119.647981pt;}
.x5{left:121.599981pt;}
.x11{left:131.103981pt;}
.x4{left:145.626648pt;}
.xa{left:169.626648pt;}
.x2d{left:173.413314pt;}
.xe{left:189.946648pt;}
.xb{left:193.626648pt;}
.x49{left:199.293314pt;}
.x4a{left:215.453314pt;}
.x12{left:220.706648pt;}
.x13{left:233.026648pt;}
.x3b{left:304.506648pt;}
.x3d{left:317.146648pt;}
.x3c{left:323.386648pt;}
.x3a{left:326.266648pt;}
.x1{left:339.106648pt;}
.x3e{left:364.986648pt;}
.x2a{left:385.346648pt;}
.x1a{left:481.053314pt;}
.x4b{left:483.386648pt;}
.x33{left:501.439981pt;}
.x34{left:516.799981pt;}
.x4c{left:528.866648pt;}
.x15{left:535.386648pt;}
.x32{left:546.173314pt;}
.x3f{left:592.453314pt;}
.x31{left:613.146648pt;}
.x1d{left:648.000000pt;}
.xf{left:725.626648pt;}
.x1f{left:747.360000pt;}
.x45{left:752.613314pt;}
.x47{left:755.519981pt;}
.x46{left:763.226648pt;}
.x26{left:769.946648pt;}
.x48{left:779.519981pt;}
.x1c{left:823.199981pt;}
.xd{left:826.466648pt;}
.x10{left:837.306648pt;}
.xc{left:838.466648pt;}
.x28{left:855.173314pt;}
.x7{left:871.386648pt;}
.x6{left:878.693314pt;}
.x20{left:882.466648pt;}
.x38{left:892.026648pt;}
.x17{left:908.026648pt;}
.x16{left:912.159981pt;}
.x1b{left:926.373314pt;}
.x25{left:934.653314pt;}
.x36{left:939.746648pt;}
.x41{left:942.853314pt;}
.x21{left:975.813314pt;}
.x37{left:980.066648pt;}
.x42{left:983.173314pt;}
.x14{left:1004.186648pt;}
.x22{left:1025.440000pt;}
.x39{left:1030.146648pt;}
.x27{left:1048.093314pt;}
.x35{left:1076.293314pt;}
.x40{left:1079.386648pt;}
.x23{left:1089.213314pt;}
.x24{left:1153.920000pt;}
.x29{left:1176.733314pt;}
}




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