
    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_0104a01498b6060681f08f18.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_aa3ecedb7a7fbb52783f62fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_b0e0331812d5e0c2ed11401c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.203000;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_e6d20eddb014935d256e6550.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946289;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_7b24994a6383a43ca660d37d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_a7d91e3daa645109fbeec9fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.349000;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_dcaa350b287251c4c3d377d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958000;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_1a539a19b4b76fb54b5e7d4d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.200885;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_0c135c38b38a94621b434874.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.384000;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_11a49a0f1ae9c2f22256ae33.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.362000;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_29019720b2e29ffb2ff57265.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.268000;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_79c844be7a88af03b58e9178.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.336000;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_2e18055ecf3d5f678c530cea.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908000;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_19afc576377bc5f8a6c32882.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.510000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.400879px;}
.v4{vertical-align:-18.359985px;}
.v5{vertical-align:-17.339996px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:14.274028px;}
.v3{vertical-align:18.197982px;}
.v2{vertical-align:20.400879px;}
.v9{vertical-align:22.512000px;}
.v7{vertical-align:34.859999px;}
.v6{vertical-align:44.981999px;}
.ls1d{letter-spacing:-4.080000px;}
.ls61{letter-spacing:-0.990000px;}
.ls3d{letter-spacing:-0.918000px;}
.ls51{letter-spacing:-0.675000px;}
.ls20{letter-spacing:-0.648000px;}
.ls40{letter-spacing:-0.546000px;}
.ls3f{letter-spacing:-0.504000px;}
.ls53{letter-spacing:-0.495000px;}
.ls58{letter-spacing:-0.462000px;}
.ls55{letter-spacing:-0.450000px;}
.ls5c{letter-spacing:-0.405000px;}
.ls59{letter-spacing:-0.378000px;}
.ls5e{letter-spacing:-0.270000px;}
.ls2d{letter-spacing:-0.216000px;}
.ls57{letter-spacing:-0.210000px;}
.ls50{letter-spacing:-0.180000px;}
.ls2f{letter-spacing:-0.162000px;}
.ls1f{letter-spacing:-0.108000px;}
.ls33{letter-spacing:-0.105300px;}
.ls56{letter-spacing:-0.090000px;}
.ls1e{letter-spacing:-0.054000px;}
.ls60{letter-spacing:-0.045000px;}
.ls21{letter-spacing:-0.035100px;}
.ls1c{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.000037px;}
.lsb{letter-spacing:0.000084px;}
.ls3c{letter-spacing:0.000267px;}
.ls4c{letter-spacing:0.000549px;}
.ls4e{letter-spacing:0.000631px;}
.ls4{letter-spacing:0.013040px;}
.ls3{letter-spacing:0.013223px;}
.ls5{letter-spacing:0.013406px;}
.ls2{letter-spacing:0.013772px;}
.ls46{letter-spacing:0.014463px;}
.ls35{letter-spacing:0.028831px;}
.lsa{letter-spacing:0.031669px;}
.ls5d{letter-spacing:0.045000px;}
.ls36{letter-spacing:0.053999px;}
.ls24{letter-spacing:0.054000px;}
.ls3e{letter-spacing:0.070200px;}
.ls8{letter-spacing:0.085777px;}
.ls52{letter-spacing:0.090000px;}
.ls9{letter-spacing:0.108000px;}
.ls3b{letter-spacing:0.141675px;}
.ls2b{letter-spacing:0.149498px;}
.ls6{letter-spacing:0.162000px;}
.ls3a{letter-spacing:0.175499px;}
.ls2e{letter-spacing:0.175500px;}
.lse{letter-spacing:0.211204px;}
.ls7{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.245700px;}
.ls39{letter-spacing:0.264164px;}
.lsd{letter-spacing:0.270000px;}
.ls18{letter-spacing:0.300446px;}
.ls1b{letter-spacing:0.313080px;}
.ls54{letter-spacing:0.315000px;}
.ls37{letter-spacing:0.315899px;}
.lsf{letter-spacing:0.324000px;}
.ls12{letter-spacing:0.350999px;}
.ls11{letter-spacing:0.351000px;}
.ls14{letter-spacing:0.371422px;}
.ls17{letter-spacing:0.378000px;}
.ls41{letter-spacing:0.386100px;}
.ls13{letter-spacing:0.396572px;}
.ls5b{letter-spacing:0.405000px;}
.ls42{letter-spacing:0.421200px;}
.ls30{letter-spacing:0.432000px;}
.ls19{letter-spacing:0.459000px;}
.ls25{letter-spacing:0.486000px;}
.ls38{letter-spacing:0.491400px;}
.ls1a{letter-spacing:0.510000px;}
.ls10{letter-spacing:0.540000px;}
.ls43{letter-spacing:0.585000px;}
.ls15{letter-spacing:0.594000px;}
.lsc{letter-spacing:0.648000px;}
.ls44{letter-spacing:0.675000px;}
.ls2a{letter-spacing:0.702000px;}
.ls28{letter-spacing:0.756000px;}
.ls27{letter-spacing:0.772200px;}
.ls26{letter-spacing:0.789750px;}
.ls32{letter-spacing:0.807300px;}
.ls23{letter-spacing:0.810000px;}
.ls34{letter-spacing:0.918000px;}
.ls5a{letter-spacing:0.945000px;}
.ls29{letter-spacing:0.960000px;}
.ls2c{letter-spacing:0.972000px;}
.ls31{letter-spacing:1.242000px;}
.ls5f{letter-spacing:1.305000px;}
.ls45{letter-spacing:1.440000px;}
.ls0{letter-spacing:2.592000px;}
.ls22{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls4d{letter-spacing:253.259433px;}
.ls47{letter-spacing:259.517978px;}
.ls4f{letter-spacing:295.175388px;}
.ls4b{letter-spacing:315.419986px;}
.ls49{letter-spacing:326.886600px;}
.ls48{letter-spacing:370.651187px;}
.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;}
}
.ws1{word-spacing:-15.067500px;}
.ws22{word-spacing:-14.700000px;}
.ws3e{word-spacing:-13.596000px;}
.ws25{word-spacing:-13.500000px;}
.ws23{word-spacing:-12.528000px;}
.ws0{word-spacing:-12.480000px;}
.ws3{word-spacing:-12.360000px;}
.ws26{word-spacing:-12.258000px;}
.ws72{word-spacing:-11.718000px;}
.ws5{word-spacing:-11.610000px;}
.ws79{word-spacing:-10.080000px;}
.ws5c{word-spacing:-9.855000px;}
.ws7b{word-spacing:-9.765000px;}
.ws78{word-spacing:-9.675000px;}
.ws5e{word-spacing:-9.534000px;}
.ws71{word-spacing:-9.315000px;}
.ws27{word-spacing:-8.775000px;}
.ws41{word-spacing:-8.459100px;}
.ws5b{word-spacing:-8.353800px;}
.ws3f{word-spacing:-8.318700px;}
.ws7{word-spacing:-8.213400px;}
.ws24{word-spacing:-8.143200px;}
.ws40{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.ws4{word-spacing:-7.967700px;}
.ws6{word-spacing:-7.932600px;}
.ws28{word-spacing:-7.862400px;}
.ws4b{word-spacing:-5.508000px;}
.ws52{word-spacing:-4.284000px;}
.wsd{word-spacing:-3.600000px;}
.wsa{word-spacing:-3.276000px;}
.wsb{word-spacing:-2.400000px;}
.ws11{word-spacing:-1.836000px;}
.ws20{word-spacing:-1.782000px;}
.ws14{word-spacing:-1.728000px;}
.ws3a{word-spacing:-1.674000px;}
.ws66{word-spacing:-1.575000px;}
.ws63{word-spacing:-1.530000px;}
.ws60{word-spacing:-1.458000px;}
.ws80{word-spacing:-1.386000px;}
.ws61{word-spacing:-1.275000px;}
.wsc{word-spacing:-1.260000px;}
.ws15{word-spacing:-1.242000px;}
.ws73{word-spacing:-1.215000px;}
.ws49{word-spacing:-1.188000px;}
.wsf{word-spacing:-1.134000px;}
.ws7c{word-spacing:-1.125000px;}
.ws4a{word-spacing:-1.080000px;}
.ws62{word-spacing:-1.035000px;}
.ws2e{word-spacing:-0.972000px;}
.ws51{word-spacing:-0.966000px;}
.ws9{word-spacing:-0.960000px;}
.ws50{word-spacing:-0.924000px;}
.ws13{word-spacing:-0.918000px;}
.ws17{word-spacing:-0.810000px;}
.ws33{word-spacing:-0.807300px;}
.ws82{word-spacing:-0.756000px;}
.ws74{word-spacing:-0.720000px;}
.ws6e{word-spacing:-0.714000px;}
.ws29{word-spacing:-0.702000px;}
.ws12{word-spacing:-0.648000px;}
.ws10{word-spacing:-0.594000px;}
.ws7d{word-spacing:-0.585000px;}
.ws2d{word-spacing:-0.540000px;}
.ws6f{word-spacing:-0.504000px;}
.ws6c{word-spacing:-0.495000px;}
.ws4d{word-spacing:-0.491400px;}
.ws30{word-spacing:-0.486000px;}
.ws18{word-spacing:-0.432000px;}
.ws5f{word-spacing:-0.386100px;}
.ws77{word-spacing:-0.360000px;}
.ws1f{word-spacing:-0.324000px;}
.ws67{word-spacing:-0.315000px;}
.ws1d{word-spacing:-0.270000px;}
.ws1e{word-spacing:-0.245700px;}
.ws31{word-spacing:-0.162000px;}
.ws36{word-spacing:-0.108000px;}
.ws38{word-spacing:-0.054000px;}
.ws8{word-spacing:0.000000px;}
.ws1c{word-spacing:0.035100px;}
.ws2c{word-spacing:0.054000px;}
.ws6b{word-spacing:0.090000px;}
.ws39{word-spacing:0.105300px;}
.ws2f{word-spacing:0.108000px;}
.ws1b{word-spacing:0.162000px;}
.ws68{word-spacing:0.180000px;}
.ws21{word-spacing:0.204000px;}
.ws19{word-spacing:0.216000px;}
.ws35{word-spacing:0.270000px;}
.ws16{word-spacing:0.324000px;}
.ws70{word-spacing:0.378000px;}
.ws76{word-spacing:0.405000px;}
.ws1a{word-spacing:0.432000px;}
.ws64{word-spacing:0.450000px;}
.ws3d{word-spacing:0.486000px;}
.ws7a{word-spacing:0.495000px;}
.ws34{word-spacing:0.540000px;}
.ws4e{word-spacing:0.594000px;}
.ws69{word-spacing:0.630000px;}
.ws4c{word-spacing:0.648000px;}
.ws37{word-spacing:0.702000px;}
.ws2a{word-spacing:0.756000px;}
.ws65{word-spacing:0.945000px;}
.ws3c{word-spacing:1.134000px;}
.ws3b{word-spacing:1.140000px;}
.ws4f{word-spacing:1.188000px;}
.ws81{word-spacing:1.242000px;}
.ws2b{word-spacing:1.296000px;}
.ws75{word-spacing:1.305000px;}
.ws32{word-spacing:1.782000px;}
.ws6a{word-spacing:1.980000px;}
.ws7e{word-spacing:2.160000px;}
.ws6d{word-spacing:2.610000px;}
.ws7f{word-spacing:3.555000px;}
.wse{word-spacing:4.080000px;}
.ws54{word-spacing:44.435992px;}
.ws48{word-spacing:45.108005px;}
.ws43{word-spacing:47.292005px;}
.ws57{word-spacing:51.155992px;}
.ws45{word-spacing:52.121996px;}
.ws56{word-spacing:53.172000px;}
.ws47{word-spacing:54.473996px;}
.ws5a{word-spacing:82.781997px;}
.ws55{word-spacing:85.596001px;}
.ws44{word-spacing:88.577996px;}
.ws58{word-spacing:91.601997px;}
.ws5d{word-spacing:175.602001px;}
.ws59{word-spacing:233.603990px;}
.ws46{word-spacing:442.847975px;}
.ws53{word-spacing:498.166232px;}
.ws42{word-spacing:506.146175px;}
._2c{margin-left:-13.725000px;}
._36{margin-left:-11.925000px;}
._8{margin-left:-8.651966px;}
._3{margin-left:-7.029628px;}
._5{margin-left:-5.340000px;}
._1{margin-left:-3.539998px;}
._0{margin-left:-1.776017px;}
._6{width:1.106417px;}
._7{width:2.304052px;}
._4{width:4.080000px;}
._29{width:6.996018px;}
._38{width:8.009993px;}
._2a{width:9.900002px;}
._2b{width:11.925000px;}
._28{width:12.960000px;}
._17{width:16.247998px;}
._37{width:17.460001px;}
._22{width:36.455994px;}
._2{width:42.968388px;}
._9{width:46.172391px;}
._1c{width:54.523250px;}
._21{width:59.219990px;}
._a{width:60.741594px;}
._13{width:62.503192px;}
._35{width:71.701192px;}
._f{width:75.222005px;}
._1d{width:78.258050px;}
._12{width:79.674003px;}
._1b{width:80.849993px;}
._16{width:86.237992px;}
._2e{width:92.748013px;}
._15{width:99.833984px;}
._32{width:116.297996px;}
._24{width:122.051997px;}
._25{width:149.603986px;}
._33{width:156.618017px;}
._2d{width:161.165982px;}
._1a{width:171.762067px;}
._b{width:173.945986px;}
._c{width:179.742009px;}
._20{width:185.793568px;}
._1f{width:204.438062px;}
._18{width:235.899586px;}
._27{width:243.137990px;}
._e{width:265.986015px;}
._26{width:272.873990px;}
._30{width:290.009996px;}
._2f{width:298.923607px;}
._19{width:300.594003px;}
._11{width:304.374015px;}
._31{width:308.824832px;}
._34{width:330.204028px;}
._14{width:331.505975px;}
._d{width:337.049991px;}
._1e{width:356.202027px;}
._10{width:357.306029px;}
._23{width:381.611986px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(245,130,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(206,221,228);}
.fsd{font-size:27.300001px;}
.fs7{font-size:33.150001px;}
.fs6{font-size:35.099999px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y31{bottom:68.307899px;}
.y76{bottom:68.555999px;}
.y101{bottom:77.110795px;}
.y30{bottom:83.307899px;}
.y75{bottom:83.554498px;}
.yaa{bottom:87.546298px;}
.y100{bottom:89.857045px;}
.y74{bottom:98.552997px;}
.ycd{bottom:102.327303px;}
.ya9{bottom:102.544798px;}
.yff{bottom:102.603295px;}
.y2f{bottom:102.636898px;}
.y73{bottom:113.551496px;}
.yfe{bottom:115.349545px;}
.ycc{bottom:117.325802px;}
.ya8{bottom:117.547799px;}
.yfd{bottom:128.095795px;}
.y72{bottom:128.557499px;}
.ya7{bottom:132.546298px;}
.yfc{bottom:140.842045px;}
.y71{bottom:143.555999px;}
.ycb{bottom:147.507302px;}
.ya6{bottom:147.544798px;}
.yfb{bottom:153.588295px;}
.y2e{bottom:153.687301px;}
.y70{bottom:158.554498px;}
.ya5{bottom:162.547799px;}
.yca{bottom:164.947802px;}
.yfa{bottom:166.334546px;}
.y2d{bottom:168.685800px;}
.y6f{bottom:173.552997px;}
.ya4{bottom:177.546298px;}
.yf9{bottom:179.080796px;}
.yc9{bottom:182.388302px;}
.y2c{bottom:183.687313px;}
.y6e{bottom:188.551496px;}
.yf8{bottom:191.827046px;}
.ya3{bottom:192.544798px;}
.y2b{bottom:198.685812px;}
.y6d{bottom:203.549995px;}
.yf7{bottom:204.573296px;}
.ya2{bottom:207.559806px;}
.y2a{bottom:213.685812px;}
.yf6{bottom:217.319546px;}
.ya1{bottom:222.558305px;}
.y29{bottom:228.687313px;}
.yf5{bottom:230.065796px;}
.y6c{bottom:233.679150px;}
.ya0{bottom:237.556804px;}
.yf4{bottom:242.812046px;}
.y28{bottom:243.685812px;}
.y6b{bottom:248.677649px;}
.yc8{bottom:252.532807px;}
.y9f{bottom:252.555303px;}
.yf3{bottom:255.558296px;}
.y27{bottom:258.685812px;}
.y6a{bottom:263.676149px;}
.yc7{bottom:267.531307px;}
.y9e{bottom:267.553802px;}
.yf2{bottom:268.304546px;}
.y26{bottom:273.685812px;}
.y69{bottom:278.674648px;}
.yf1{bottom:281.050797px;}
.yc6{bottom:282.529806px;}
.y9d{bottom:282.552302px;}
.y25{bottom:288.690314px;}
.y68{bottom:293.673147px;}
.yf0{bottom:293.797047px;}
.yc5{bottom:297.528305px;}
.y9c{bottom:297.550801px;}
.y24{bottom:303.688813px;}
.yef{bottom:306.543297px;}
.y67{bottom:308.689656px;}
.y9b{bottom:312.549300px;}
.y23{bottom:318.687313px;}
.yee{bottom:319.293297px;}
.y66{bottom:323.688155px;}
.y9a{bottom:327.547799px;}
.yc4{bottom:327.711304px;}
.y22{bottom:333.685812px;}
.y65{bottom:338.686654px;}
.y99{bottom:342.546298px;}
.yc2{bottom:345.151804px;}
.y21{bottom:348.687313px;}
.yed{bottom:352.299297px;}
.y64{bottom:353.685153px;}
.y98{bottom:357.544798px;}
.yc3{bottom:362.592305px;}
.y20{bottom:363.685812px;}
.yec{bottom:367.293297px;}
.y63{bottom:368.683653px;}
.y97{bottom:372.546321px;}
.y1f{bottom:378.685812px;}
.yc1{bottom:380.022305px;}
.y62{bottom:383.682152px;}
.y96{bottom:387.544821px;}
.yc0{bottom:388.747806px;}
.y1e{bottom:393.685812px;}
.yeb{bottom:395.055326px;}
.y61{bottom:398.680651px;}
.y95{bottom:402.546321px;}
.y1d{bottom:408.690314px;}
.yea{bottom:410.053825px;}
.y60{bottom:413.679150px;}
.ybf{bottom:414.903305px;}
.y94{bottom:417.544821px;}
.y1c{bottom:423.688813px;}
.ye9{bottom:425.052325px;}
.y5f{bottom:428.677649px;}
.y93{bottom:432.544821px;}
.y1b{bottom:438.687313px;}
.ye8{bottom:440.050824px;}
.y139{bottom:441.556827px;}
.y5e{bottom:443.676149px;}
.y92{bottom:447.546321px;}
.y1a{bottom:453.685812px;}
.ye7{bottom:455.049323px;}
.y138{bottom:456.555326px;}
.y5d{bottom:458.674648px;}
.ybe{bottom:461.593957px;}
.y91{bottom:462.544821px;}
.y19{bottom:468.724812px;}
.ye6{bottom:470.047822px;}
.y137{bottom:471.553825px;}
.y5c{bottom:473.673147px;}
.ybd{bottom:476.592456px;}
.y90{bottom:477.547822px;}
.y18{bottom:483.723311px;}
.ye5{bottom:485.046321px;}
.y136{bottom:486.552325px;}
.y5b{bottom:488.683653px;}
.ybc{bottom:491.590955px;}
.y8f{bottom:492.546321px;}
.ye4{bottom:500.044821px;}
.y135{bottom:501.550824px;}
.y5a{bottom:503.682152px;}
.ybb{bottom:506.589455px;}
.y8e{bottom:507.544821px;}
.ye3{bottom:515.050824px;}
.y134{bottom:516.549323px;}
.y59{bottom:518.680651px;}
.yba{bottom:521.587954px;}
.y8d{bottom:522.543320px;}
.ye2{bottom:530.049323px;}
.y17{bottom:530.973311px;}
.y133{bottom:531.547822px;}
.y58{bottom:533.679150px;}
.yb9{bottom:536.586453px;}
.y8c{bottom:537.543320px;}
.ye1{bottom:545.047822px;}
.y132{bottom:546.546321px;}
.y16{bottom:547.470311px;}
.y57{bottom:548.677649px;}
.yb8{bottom:551.584952px;}
.ye0{bottom:560.046321px;}
.y131{bottom:561.544821px;}
.y56{bottom:563.676149px;}
.y15{bottom:563.967311px;}
.yb7{bottom:566.583451px;}
.y8b{bottom:570.546321px;}
.ydf{bottom:575.044821px;}
.y130{bottom:576.543320px;}
.y55{bottom:578.674648px;}
.y14{bottom:580.464311px;}
.yb6{bottom:581.581951px;}
.y8a{bottom:585.544821px;}
.yde{bottom:590.065786px;}
.y54{bottom:593.673147px;}
.yb5{bottom:596.580450px;}
.y13{bottom:596.961311px;}
.y12f{bottom:598.297822px;}
.y89{bottom:600.568788px;}
.ydd{bottom:605.064285px;}
.y53{bottom:608.694204px;}
.yb4{bottom:611.578949px;}
.y12e{bottom:613.296321px;}
.y12{bottom:613.458311px;}
.y88{bottom:615.567287px;}
.ydc{bottom:620.062784px;}
.y52{bottom:623.692703px;}
.y11{bottom:629.955311px;}
.y87{bottom:630.565786px;}
.y12d{bottom:635.044821px;}
.ydb{bottom:635.061284px;}
.y51{bottom:638.691202px;}
.y86{bottom:645.564285px;}
.y10{bottom:646.452311px;}
.yda{bottom:650.059783px;}
.y50{bottom:653.689702px;}
.y12c{bottom:656.793320px;}
.y85{bottom:660.562784px;}
.yf{bottom:662.949311px;}
.yd9{bottom:665.058282px;}
.y4f{bottom:668.688201px;}
.y12b{bottom:671.793320px;}
.y84{bottom:675.561284px;}
.ye{bottom:679.446311px;}
.yd8{bottom:680.056781px;}
.y4e{bottom:683.686700px;}
.y83{bottom:690.559783px;}
.yd7{bottom:695.055280px;}
.yd{bottom:695.943311px;}
.y4d{bottom:698.685199px;}
.y12a{bottom:705.543320px;}
.y82{bottom:705.558282px;}
.yd6{bottom:710.053780px;}
.yc{bottom:712.440311px;}
.y4c{bottom:713.683698px;}
.y129{bottom:720.543320px;}
.y81{bottom:720.556781px;}
.yd5{bottom:725.052279px;}
.y4b{bottom:728.682198px;}
.yb{bottom:728.937311px;}
.y80{bottom:735.555280px;}
.yd4{bottom:740.050778px;}
.y4a{bottom:743.680697px;}
.ya{bottom:745.434311px;}
.y128{bottom:747.544821px;}
.y7f{bottom:750.553780px;}
.yd3{bottom:755.049277px;}
.y49{bottom:758.679196px;}
.y127{bottom:762.543320px;}
.y7e{bottom:765.552279px;}
.yd2{bottom:770.047776px;}
.y48{bottom:773.677695px;}
.y9{bottom:775.434265px;}
.y126{bottom:777.543274px;}
.y7d{bottom:780.550778px;}
.yd1{bottom:785.046276px;}
.y47{bottom:788.676194px;}
.y7{bottom:793.434265px;}
.y7c{bottom:795.549277px;}
.y8{bottom:798.534485px;}
.yd0{bottom:800.044775px;}
.y46{bottom:803.674694px;}
.y125{bottom:804.544775px;}
.y7b{bottom:810.547776px;}
.ycf{bottom:815.044775px;}
.y45{bottom:818.673193px;}
.y124{bottom:819.543274px;}
.y7a{bottom:825.546276px;}
.y6{bottom:826.422262px;}
.yce{bottom:830.043274px;}
.y44{bottom:833.689702px;}
.y123{bottom:834.543274px;}
.y79{bottom:840.544775px;}
.y43{bottom:848.688201px;}
.y78{bottom:855.543274px;}
.y122{bottom:861.610772px;}
.y42{bottom:863.686700px;}
.y77{bottom:870.543274px;}
.y5{bottom:871.428264px;}
.y121{bottom:874.357022px;}
.y41{bottom:878.685199px;}
.y10f{bottom:879.919775px;}
.y120{bottom:887.103272px;}
.y40{bottom:893.683698px;}
.y10e{bottom:894.918274px;}
.y11f{bottom:899.849522px;}
.y3f{bottom:908.682198px;}
.y11e{bottom:912.595772px;}
.y4{bottom:916.434265px;}
.y3e{bottom:923.680697px;}
.y10d{bottom:925.102774px;}
.y11d{bottom:925.342022px;}
.y32{bottom:926.409576px;}
.yb3{bottom:933.546276px;}
.y11c{bottom:938.088273px;}
.y3d{bottom:938.679196px;}
.y10c{bottom:942.558273px;}
.yb2{bottom:948.544775px;}
.y11b{bottom:950.834523px;}
.y3c{bottom:953.677695px;}
.y10b{bottom:959.988274px;}
.yb1{bottom:963.543274px;}
.y11a{bottom:963.580773px;}
.y10a{bottom:965.617773px;}
.y3b{bottom:968.676194px;}
.y119{bottom:976.327023px;}
.y3a{bottom:983.674694px;}
.y109{bottom:988.675774px;}
.y118{bottom:989.073273px;}
.yb0{bottom:993.715773px;}
.y108{bottom:994.297773px;}
.y39{bottom:998.673193px;}
.y117{bottom:1001.819523px;}
.yaf{bottom:1011.156273px;}
.y38{bottom:1013.671692px;}
.y116{bottom:1014.565773px;}
.y107{bottom:1017.370773px;}
.y115{bottom:1027.312023px;}
.yae{bottom:1028.596774px;}
.y37{bottom:1028.671692px;}
.y106{bottom:1034.800774px;}
.y114{bottom:1040.058273px;}
.y105{bottom:1040.422773px;}
.yad{bottom:1046.037274px;}
.y113{bottom:1052.804524px;}
.y36{bottom:1058.796276px;}
.yac{bottom:1063.477774px;}
.y104{bottom:1063.482274px;}
.y112{bottom:1065.550774px;}
.y35{bottom:1073.794775px;}
.y111{bottom:1078.297024px;}
.yab{bottom:1080.918274px;}
.y103{bottom:1080.922774px;}
.y34{bottom:1088.793274px;}
.y110{bottom:1091.043274px;}
.y102{bottom:1092.168274px;}
.y33{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.hb{height:23.438086px;}
.h6{height:28.050293px;}
.h17{height:35.394000px;}
.hd{height:36.669000px;}
.h8{height:38.826000px;}
.h9{height:38.838867px;}
.hc{height:40.754083px;}
.h15{height:41.538000px;}
.h1b{height:42.084000px;}
.h14{height:43.008000px;}
.h2{height:43.140000px;}
.h4{height:44.218500px;}
.h1a{height:44.505000px;}
.h19{height:45.090000px;}
.h3{height:45.744000px;}
.h18{height:46.080000px;}
.h11{height:47.454000px;}
.hf{height:47.469727px;}
.h7{height:48.451174px;}
.ha{height:53.406000px;}
.h12{height:54.108000px;}
.h10{height:55.296000px;}
.h1e{height:64.002003px;}
.h1c{height:64.032005px;}
.h1d{height:64.050000px;}
.h16{height:76.397999px;}
.he{height:77.652000px;}
.h13{height:87.989999px;}
.h5{height:112.164000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x7{left:140.952747px;}
.x4{left:233.456406px;}
.x8{left:238.143906px;}
.x6{left:251.451027px;}
.x13{left:300.594452px;}
.x5{left:351.098557px;}
.xf{left:370.496401px;}
.xc{left:374.748923px;}
.x9{left:408.233399px;}
.x10{left:426.860401px;}
.xd{left:522.861897px;}
.xa{left:529.497898px;}
.x12{left:538.500000px;}
.x3{left:584.586594px;}
.xe{left:611.555395px;}
.x11{left:648.000896px;}
.xb{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v1{vertical-align:-18.134115pt;}
.v4{vertical-align:-16.319987pt;}
.v5{vertical-align:-15.413330pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:12.688025pt;}
.v3{vertical-align:16.175984pt;}
.v2{vertical-align:18.134115pt;}
.v9{vertical-align:20.010667pt;}
.v7{vertical-align:30.986666pt;}
.v6{vertical-align:39.983999pt;}
.ls1d{letter-spacing:-3.626667pt;}
.ls61{letter-spacing:-0.880000pt;}
.ls3d{letter-spacing:-0.816000pt;}
.ls51{letter-spacing:-0.600000pt;}
.ls20{letter-spacing:-0.576000pt;}
.ls40{letter-spacing:-0.485333pt;}
.ls3f{letter-spacing:-0.448000pt;}
.ls53{letter-spacing:-0.440000pt;}
.ls58{letter-spacing:-0.410667pt;}
.ls55{letter-spacing:-0.400000pt;}
.ls5c{letter-spacing:-0.360000pt;}
.ls59{letter-spacing:-0.336000pt;}
.ls5e{letter-spacing:-0.240000pt;}
.ls2d{letter-spacing:-0.192000pt;}
.ls57{letter-spacing:-0.186667pt;}
.ls50{letter-spacing:-0.160000pt;}
.ls2f{letter-spacing:-0.144000pt;}
.ls1f{letter-spacing:-0.096000pt;}
.ls33{letter-spacing:-0.093600pt;}
.ls56{letter-spacing:-0.080000pt;}
.ls1e{letter-spacing:-0.048000pt;}
.ls60{letter-spacing:-0.040000pt;}
.ls21{letter-spacing:-0.031200pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.000033pt;}
.lsb{letter-spacing:0.000074pt;}
.ls3c{letter-spacing:0.000237pt;}
.ls4c{letter-spacing:0.000488pt;}
.ls4e{letter-spacing:0.000561pt;}
.ls4{letter-spacing:0.011591pt;}
.ls3{letter-spacing:0.011754pt;}
.ls5{letter-spacing:0.011917pt;}
.ls2{letter-spacing:0.012242pt;}
.ls46{letter-spacing:0.012856pt;}
.ls35{letter-spacing:0.025628pt;}
.lsa{letter-spacing:0.028151pt;}
.ls5d{letter-spacing:0.040000pt;}
.ls36{letter-spacing:0.047999pt;}
.ls24{letter-spacing:0.048000pt;}
.ls3e{letter-spacing:0.062400pt;}
.ls8{letter-spacing:0.076246pt;}
.ls52{letter-spacing:0.080000pt;}
.ls9{letter-spacing:0.096000pt;}
.ls3b{letter-spacing:0.125934pt;}
.ls2b{letter-spacing:0.132887pt;}
.ls6{letter-spacing:0.144000pt;}
.ls3a{letter-spacing:0.155999pt;}
.ls2e{letter-spacing:0.156000pt;}
.lse{letter-spacing:0.187737pt;}
.ls7{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.218400pt;}
.ls39{letter-spacing:0.234812pt;}
.lsd{letter-spacing:0.240000pt;}
.ls18{letter-spacing:0.267063pt;}
.ls1b{letter-spacing:0.278294pt;}
.ls54{letter-spacing:0.280000pt;}
.ls37{letter-spacing:0.280799pt;}
.lsf{letter-spacing:0.288000pt;}
.ls12{letter-spacing:0.311999pt;}
.ls11{letter-spacing:0.312000pt;}
.ls14{letter-spacing:0.330153pt;}
.ls17{letter-spacing:0.336000pt;}
.ls41{letter-spacing:0.343200pt;}
.ls13{letter-spacing:0.352508pt;}
.ls5b{letter-spacing:0.360000pt;}
.ls42{letter-spacing:0.374400pt;}
.ls30{letter-spacing:0.384000pt;}
.ls19{letter-spacing:0.408000pt;}
.ls25{letter-spacing:0.432000pt;}
.ls38{letter-spacing:0.436800pt;}
.ls1a{letter-spacing:0.453333pt;}
.ls10{letter-spacing:0.480000pt;}
.ls43{letter-spacing:0.520000pt;}
.ls15{letter-spacing:0.528000pt;}
.lsc{letter-spacing:0.576000pt;}
.ls44{letter-spacing:0.600000pt;}
.ls2a{letter-spacing:0.624000pt;}
.ls28{letter-spacing:0.672000pt;}
.ls27{letter-spacing:0.686400pt;}
.ls26{letter-spacing:0.702000pt;}
.ls32{letter-spacing:0.717600pt;}
.ls23{letter-spacing:0.720000pt;}
.ls34{letter-spacing:0.816000pt;}
.ls5a{letter-spacing:0.840000pt;}
.ls29{letter-spacing:0.853333pt;}
.ls2c{letter-spacing:0.864000pt;}
.ls31{letter-spacing:1.104000pt;}
.ls5f{letter-spacing:1.160000pt;}
.ls45{letter-spacing:1.280000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls22{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls4d{letter-spacing:225.119496pt;}
.ls47{letter-spacing:230.682647pt;}
.ls4f{letter-spacing:262.378123pt;}
.ls4b{letter-spacing:280.373321pt;}
.ls49{letter-spacing:290.565867pt;}
.ls48{letter-spacing:329.467722pt;}
.ws1{word-spacing:-13.393333pt;}
.ws22{word-spacing:-13.066667pt;}
.ws3e{word-spacing:-12.085333pt;}
.ws25{word-spacing:-12.000000pt;}
.ws23{word-spacing:-11.136000pt;}
.ws0{word-spacing:-11.093333pt;}
.ws3{word-spacing:-10.986667pt;}
.ws26{word-spacing:-10.896000pt;}
.ws72{word-spacing:-10.416000pt;}
.ws5{word-spacing:-10.320000pt;}
.ws79{word-spacing:-8.960000pt;}
.ws5c{word-spacing:-8.760000pt;}
.ws7b{word-spacing:-8.680000pt;}
.ws78{word-spacing:-8.600000pt;}
.ws5e{word-spacing:-8.474667pt;}
.ws71{word-spacing:-8.280000pt;}
.ws27{word-spacing:-7.800000pt;}
.ws41{word-spacing:-7.519200pt;}
.ws5b{word-spacing:-7.425600pt;}
.ws3f{word-spacing:-7.394400pt;}
.ws7{word-spacing:-7.300800pt;}
.ws24{word-spacing:-7.238400pt;}
.ws40{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.ws4{word-spacing:-7.082400pt;}
.ws6{word-spacing:-7.051200pt;}
.ws28{word-spacing:-6.988800pt;}
.ws4b{word-spacing:-4.896000pt;}
.ws52{word-spacing:-3.808000pt;}
.wsd{word-spacing:-3.200000pt;}
.wsa{word-spacing:-2.912000pt;}
.wsb{word-spacing:-2.133333pt;}
.ws11{word-spacing:-1.632000pt;}
.ws20{word-spacing:-1.584000pt;}
.ws14{word-spacing:-1.536000pt;}
.ws3a{word-spacing:-1.488000pt;}
.ws66{word-spacing:-1.400000pt;}
.ws63{word-spacing:-1.360000pt;}
.ws60{word-spacing:-1.296000pt;}
.ws80{word-spacing:-1.232000pt;}
.ws61{word-spacing:-1.133333pt;}
.wsc{word-spacing:-1.120000pt;}
.ws15{word-spacing:-1.104000pt;}
.ws73{word-spacing:-1.080000pt;}
.ws49{word-spacing:-1.056000pt;}
.wsf{word-spacing:-1.008000pt;}
.ws7c{word-spacing:-1.000000pt;}
.ws4a{word-spacing:-0.960000pt;}
.ws62{word-spacing:-0.920000pt;}
.ws2e{word-spacing:-0.864000pt;}
.ws51{word-spacing:-0.858667pt;}
.ws9{word-spacing:-0.853333pt;}
.ws50{word-spacing:-0.821333pt;}
.ws13{word-spacing:-0.816000pt;}
.ws17{word-spacing:-0.720000pt;}
.ws33{word-spacing:-0.717600pt;}
.ws82{word-spacing:-0.672000pt;}
.ws74{word-spacing:-0.640000pt;}
.ws6e{word-spacing:-0.634667pt;}
.ws29{word-spacing:-0.624000pt;}
.ws12{word-spacing:-0.576000pt;}
.ws10{word-spacing:-0.528000pt;}
.ws7d{word-spacing:-0.520000pt;}
.ws2d{word-spacing:-0.480000pt;}
.ws6f{word-spacing:-0.448000pt;}
.ws6c{word-spacing:-0.440000pt;}
.ws4d{word-spacing:-0.436800pt;}
.ws30{word-spacing:-0.432000pt;}
.ws18{word-spacing:-0.384000pt;}
.ws5f{word-spacing:-0.343200pt;}
.ws77{word-spacing:-0.320000pt;}
.ws1f{word-spacing:-0.288000pt;}
.ws67{word-spacing:-0.280000pt;}
.ws1d{word-spacing:-0.240000pt;}
.ws1e{word-spacing:-0.218400pt;}
.ws31{word-spacing:-0.144000pt;}
.ws36{word-spacing:-0.096000pt;}
.ws38{word-spacing:-0.048000pt;}
.ws8{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.031200pt;}
.ws2c{word-spacing:0.048000pt;}
.ws6b{word-spacing:0.080000pt;}
.ws39{word-spacing:0.093600pt;}
.ws2f{word-spacing:0.096000pt;}
.ws1b{word-spacing:0.144000pt;}
.ws68{word-spacing:0.160000pt;}
.ws21{word-spacing:0.181333pt;}
.ws19{word-spacing:0.192000pt;}
.ws35{word-spacing:0.240000pt;}
.ws16{word-spacing:0.288000pt;}
.ws70{word-spacing:0.336000pt;}
.ws76{word-spacing:0.360000pt;}
.ws1a{word-spacing:0.384000pt;}
.ws64{word-spacing:0.400000pt;}
.ws3d{word-spacing:0.432000pt;}
.ws7a{word-spacing:0.440000pt;}
.ws34{word-spacing:0.480000pt;}
.ws4e{word-spacing:0.528000pt;}
.ws69{word-spacing:0.560000pt;}
.ws4c{word-spacing:0.576000pt;}
.ws37{word-spacing:0.624000pt;}
.ws2a{word-spacing:0.672000pt;}
.ws65{word-spacing:0.840000pt;}
.ws3c{word-spacing:1.008000pt;}
.ws3b{word-spacing:1.013333pt;}
.ws4f{word-spacing:1.056000pt;}
.ws81{word-spacing:1.104000pt;}
.ws2b{word-spacing:1.152000pt;}
.ws75{word-spacing:1.160000pt;}
.ws32{word-spacing:1.584000pt;}
.ws6a{word-spacing:1.760000pt;}
.ws7e{word-spacing:1.920000pt;}
.ws6d{word-spacing:2.320000pt;}
.ws7f{word-spacing:3.160000pt;}
.wse{word-spacing:3.626667pt;}
.ws54{word-spacing:39.498660pt;}
.ws48{word-spacing:40.096004pt;}
.ws43{word-spacing:42.037338pt;}
.ws57{word-spacing:45.471993pt;}
.ws45{word-spacing:46.330663pt;}
.ws56{word-spacing:47.264000pt;}
.ws47{word-spacing:48.421330pt;}
.ws5a{word-spacing:73.583997pt;}
.ws55{word-spacing:76.085334pt;}
.ws44{word-spacing:78.735996pt;}
.ws58{word-spacing:81.423997pt;}
.ws5d{word-spacing:156.090668pt;}
.ws59{word-spacing:207.647991pt;}
.ws46{word-spacing:393.642644pt;}
.ws53{word-spacing:442.814429pt;}
.ws42{word-spacing:449.907711pt;}
._2c{margin-left:-12.200000pt;}
._36{margin-left:-10.600000pt;}
._8{margin-left:-7.690636pt;}
._3{margin-left:-6.248559pt;}
._5{margin-left:-4.746667pt;}
._1{margin-left:-3.146665pt;}
._0{margin-left:-1.578682pt;}
._6{width:0.983482pt;}
._7{width:2.048046pt;}
._4{width:3.626667pt;}
._29{width:6.218682pt;}
._38{width:7.119994pt;}
._2a{width:8.800002pt;}
._2b{width:10.600000pt;}
._28{width:11.520000pt;}
._17{width:14.442665pt;}
._37{width:15.520001pt;}
._22{width:32.405328pt;}
._2{width:38.194123pt;}
._9{width:41.042126pt;}
._1c{width:48.465111pt;}
._21{width:52.639991pt;}
._a{width:53.992528pt;}
._13{width:55.558393pt;}
._35{width:63.734393pt;}
._f{width:66.864004pt;}
._1d{width:69.562711pt;}
._12{width:70.821336pt;}
._1b{width:71.866660pt;}
._16{width:76.655993pt;}
._2e{width:82.442678pt;}
._15{width:88.741319pt;}
._32{width:103.375996pt;}
._24{width:108.490664pt;}
._25{width:132.981321pt;}
._33{width:139.216015pt;}
._2d{width:143.258651pt;}
._1a{width:152.677393pt;}
._b{width:154.618654pt;}
._c{width:159.770675pt;}
._20{width:165.149839pt;}
._1f{width:181.722722pt;}
._18{width:209.688521pt;}
._27{width:216.122658pt;}
._e{width:236.432013pt;}
._26{width:242.554658pt;}
._30{width:257.786663pt;}
._2f{width:265.709873pt;}
._19{width:267.194670pt;}
._11{width:270.554680pt;}
._31{width:274.510962pt;}
._34{width:293.514691pt;}
._14{width:294.671978pt;}
._d{width:299.599992pt;}
._1e{width:316.624024pt;}
._10{width:317.605359pt;}
._23{width:339.210654pt;}
.fsd{font-size:24.266668pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.199999pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y31{bottom:60.718132pt;}
.y76{bottom:60.938665pt;}
.y101{bottom:68.542929pt;}
.y30{bottom:74.051466pt;}
.y75{bottom:74.270665pt;}
.yaa{bottom:77.818932pt;}
.y100{bottom:79.872929pt;}
.y74{bottom:87.602664pt;}
.ycd{bottom:90.957602pt;}
.ya9{bottom:91.150931pt;}
.yff{bottom:91.202929pt;}
.y2f{bottom:91.232798pt;}
.y73{bottom:100.934663pt;}
.yfe{bottom:102.532929pt;}
.ycc{bottom:104.289602pt;}
.ya8{bottom:104.486933pt;}
.yfd{bottom:113.862929pt;}
.y72{bottom:114.273333pt;}
.ya7{bottom:117.818932pt;}
.yfc{bottom:125.192929pt;}
.y71{bottom:127.605332pt;}
.ycb{bottom:131.117601pt;}
.ya6{bottom:131.150931pt;}
.yfb{bottom:136.522929pt;}
.y2e{bottom:136.610934pt;}
.y70{bottom:140.937331pt;}
.ya5{bottom:144.486933pt;}
.yca{bottom:146.620268pt;}
.yfa{bottom:147.852929pt;}
.y2d{bottom:149.942934pt;}
.y6f{bottom:154.269331pt;}
.ya4{bottom:157.818932pt;}
.yf9{bottom:159.182929pt;}
.yc9{bottom:162.122935pt;}
.y2c{bottom:163.277611pt;}
.y6e{bottom:167.601330pt;}
.yf8{bottom:170.512930pt;}
.ya3{bottom:171.150931pt;}
.y2b{bottom:176.609610pt;}
.y6d{bottom:180.933329pt;}
.yf7{bottom:181.842930pt;}
.ya2{bottom:184.497605pt;}
.y2a{bottom:189.942944pt;}
.yf6{bottom:193.172930pt;}
.ya1{bottom:197.829604pt;}
.y29{bottom:203.277611pt;}
.yf5{bottom:204.502930pt;}
.y6c{bottom:207.714800pt;}
.ya0{bottom:211.161604pt;}
.yf4{bottom:215.832930pt;}
.y28{bottom:216.609610pt;}
.y6b{bottom:221.046799pt;}
.yc8{bottom:224.473607pt;}
.y9f{bottom:224.493603pt;}
.yf3{bottom:227.162930pt;}
.y27{bottom:229.942944pt;}
.y6a{bottom:234.378799pt;}
.yc7{bottom:237.805606pt;}
.y9e{bottom:237.825602pt;}
.yf2{bottom:238.492930pt;}
.y26{bottom:243.276277pt;}
.y69{bottom:247.710798pt;}
.yf1{bottom:249.822930pt;}
.yc6{bottom:251.137605pt;}
.y9d{bottom:251.157601pt;}
.y25{bottom:256.613613pt;}
.y68{bottom:261.042797pt;}
.yf0{bottom:261.152930pt;}
.yc5{bottom:264.469604pt;}
.y9c{bottom:264.489601pt;}
.y24{bottom:269.945612pt;}
.yef{bottom:272.482930pt;}
.y67{bottom:274.390805pt;}
.y9b{bottom:277.821600pt;}
.y23{bottom:283.277611pt;}
.yee{bottom:283.816264pt;}
.y66{bottom:287.722804pt;}
.y9a{bottom:291.153599pt;}
.yc4{bottom:291.298937pt;}
.y22{bottom:296.609610pt;}
.y65{bottom:301.054804pt;}
.y99{bottom:304.485599pt;}
.yc2{bottom:306.801604pt;}
.y21{bottom:309.944278pt;}
.yed{bottom:313.154930pt;}
.y64{bottom:314.386803pt;}
.y98{bottom:317.817598pt;}
.yc3{bottom:322.304271pt;}
.y20{bottom:323.276277pt;}
.yec{bottom:326.482930pt;}
.y63{bottom:327.718802pt;}
.y97{bottom:331.152286pt;}
.y1f{bottom:336.609610pt;}
.yc1{bottom:337.797605pt;}
.y62{bottom:341.050802pt;}
.y96{bottom:344.484285pt;}
.yc0{bottom:345.553605pt;}
.y1e{bottom:349.942944pt;}
.yeb{bottom:351.160290pt;}
.y61{bottom:354.382801pt;}
.y95{bottom:357.818952pt;}
.y1d{bottom:363.280279pt;}
.yea{bottom:364.492289pt;}
.y60{bottom:367.714800pt;}
.ybf{bottom:368.802938pt;}
.y94{bottom:371.150952pt;}
.y1c{bottom:376.612279pt;}
.ye9{bottom:377.824288pt;}
.y5f{bottom:381.046799pt;}
.y93{bottom:384.484285pt;}
.y1b{bottom:389.944278pt;}
.ye8{bottom:391.156288pt;}
.y139{bottom:392.494957pt;}
.y5e{bottom:394.378799pt;}
.y92{bottom:397.818952pt;}
.y1a{bottom:403.276277pt;}
.ye7{bottom:404.488287pt;}
.y138{bottom:405.826957pt;}
.y5d{bottom:407.710798pt;}
.ybe{bottom:410.305740pt;}
.y91{bottom:411.150952pt;}
.y19{bottom:416.644277pt;}
.ye6{bottom:417.820286pt;}
.y137{bottom:419.158956pt;}
.y5c{bottom:421.042797pt;}
.ybd{bottom:423.637739pt;}
.y90{bottom:424.486953pt;}
.y18{bottom:429.976276pt;}
.ye5{bottom:431.152286pt;}
.y136{bottom:432.490955pt;}
.y5b{bottom:434.385469pt;}
.ybc{bottom:436.969738pt;}
.y8f{bottom:437.818952pt;}
.ye4{bottom:444.484285pt;}
.y135{bottom:445.822954pt;}
.y5a{bottom:447.717468pt;}
.ybb{bottom:450.301737pt;}
.y8e{bottom:451.150952pt;}
.ye3{bottom:457.822954pt;}
.y134{bottom:459.154954pt;}
.y59{bottom:461.049468pt;}
.yba{bottom:463.633737pt;}
.y8d{bottom:464.482951pt;}
.ye2{bottom:471.154954pt;}
.y17{bottom:471.976276pt;}
.y133{bottom:472.486953pt;}
.y58{bottom:474.381467pt;}
.yb9{bottom:476.965736pt;}
.y8c{bottom:477.816284pt;}
.ye1{bottom:484.486953pt;}
.y132{bottom:485.818952pt;}
.y16{bottom:486.640276pt;}
.y57{bottom:487.713466pt;}
.yb8{bottom:490.297735pt;}
.ye0{bottom:497.818952pt;}
.y131{bottom:499.150952pt;}
.y56{bottom:501.045465pt;}
.y15{bottom:501.304276pt;}
.yb7{bottom:503.629735pt;}
.y8b{bottom:507.152286pt;}
.ydf{bottom:511.150952pt;}
.y130{bottom:512.482951pt;}
.y55{bottom:514.377465pt;}
.y14{bottom:515.968276pt;}
.yb6{bottom:516.961734pt;}
.y8a{bottom:520.484285pt;}
.yde{bottom:524.502921pt;}
.y54{bottom:527.709464pt;}
.yb5{bottom:530.293733pt;}
.y13{bottom:530.632276pt;}
.y12f{bottom:531.820286pt;}
.y89{bottom:533.838922pt;}
.ydd{bottom:537.834920pt;}
.y53{bottom:541.061515pt;}
.yb4{bottom:543.625732pt;}
.y12e{bottom:545.152286pt;}
.y12{bottom:545.296276pt;}
.y88{bottom:547.170922pt;}
.ydc{bottom:551.166920pt;}
.y52{bottom:554.393514pt;}
.y11{bottom:559.960276pt;}
.y87{bottom:560.502921pt;}
.y12d{bottom:564.484285pt;}
.ydb{bottom:564.498919pt;}
.y51{bottom:567.725513pt;}
.y86{bottom:573.834920pt;}
.y10{bottom:574.624276pt;}
.yda{bottom:577.830918pt;}
.y50{bottom:581.057513pt;}
.y12c{bottom:583.816284pt;}
.y85{bottom:587.166920pt;}
.yf{bottom:589.288276pt;}
.yd9{bottom:591.162917pt;}
.y4f{bottom:594.389512pt;}
.y12b{bottom:597.149618pt;}
.y84{bottom:600.498919pt;}
.ye{bottom:603.952276pt;}
.yd8{bottom:604.494917pt;}
.y4e{bottom:607.721511pt;}
.y83{bottom:613.830918pt;}
.yd7{bottom:617.826916pt;}
.yd{bottom:618.616276pt;}
.y4d{bottom:621.053510pt;}
.y12a{bottom:627.149618pt;}
.y82{bottom:627.162917pt;}
.yd6{bottom:631.158915pt;}
.yc{bottom:633.280276pt;}
.y4c{bottom:634.385510pt;}
.y129{bottom:640.482951pt;}
.y81{bottom:640.494917pt;}
.yd5{bottom:644.490914pt;}
.y4b{bottom:647.717509pt;}
.yb{bottom:647.944276pt;}
.y80{bottom:653.826916pt;}
.yd4{bottom:657.822914pt;}
.y4a{bottom:661.049508pt;}
.ya{bottom:662.608276pt;}
.y128{bottom:664.484285pt;}
.y7f{bottom:667.158915pt;}
.yd3{bottom:671.154913pt;}
.y49{bottom:674.381507pt;}
.y127{bottom:677.816284pt;}
.y7e{bottom:680.490914pt;}
.yd2{bottom:684.486912pt;}
.y48{bottom:687.713507pt;}
.y9{bottom:689.274902pt;}
.y126{bottom:691.149577pt;}
.y7d{bottom:693.822914pt;}
.yd1{bottom:697.818912pt;}
.y47{bottom:701.045506pt;}
.y7{bottom:705.274902pt;}
.y7c{bottom:707.154913pt;}
.y8{bottom:709.808431pt;}
.yd0{bottom:711.150911pt;}
.y46{bottom:714.377505pt;}
.y125{bottom:715.150911pt;}
.y7b{bottom:720.486912pt;}
.ycf{bottom:724.484244pt;}
.y45{bottom:727.709505pt;}
.y124{bottom:728.482910pt;}
.y7a{bottom:733.818912pt;}
.y6{bottom:734.597566pt;}
.yce{bottom:737.816243pt;}
.y44{bottom:741.057513pt;}
.y123{bottom:741.816243pt;}
.y79{bottom:747.150911pt;}
.y43{bottom:754.389512pt;}
.y78{bottom:760.482910pt;}
.y122{bottom:765.876242pt;}
.y42{bottom:767.721511pt;}
.y77{bottom:773.816243pt;}
.y5{bottom:774.602901pt;}
.y121{bottom:777.206242pt;}
.y41{bottom:781.053510pt;}
.y10f{bottom:782.150911pt;}
.y120{bottom:788.536242pt;}
.y40{bottom:794.385510pt;}
.y10e{bottom:795.482910pt;}
.y11f{bottom:799.866242pt;}
.y3f{bottom:807.717509pt;}
.y11e{bottom:811.196242pt;}
.y4{bottom:814.608236pt;}
.y3e{bottom:821.049508pt;}
.y10d{bottom:822.313577pt;}
.y11d{bottom:822.526242pt;}
.y32{bottom:823.475179pt;}
.yb3{bottom:829.818912pt;}
.y11c{bottom:833.856242pt;}
.y3d{bottom:834.381507pt;}
.y10c{bottom:837.829576pt;}
.yb2{bottom:843.150911pt;}
.y11b{bottom:845.186242pt;}
.y3c{bottom:847.713507pt;}
.y10b{bottom:853.322911pt;}
.yb1{bottom:856.482910pt;}
.y11a{bottom:856.516242pt;}
.y10a{bottom:858.326910pt;}
.y3b{bottom:861.045506pt;}
.y119{bottom:867.846243pt;}
.y3a{bottom:874.377505pt;}
.y109{bottom:878.822911pt;}
.y118{bottom:879.176243pt;}
.yb0{bottom:883.302910pt;}
.y108{bottom:883.820243pt;}
.y39{bottom:887.709505pt;}
.y117{bottom:890.506243pt;}
.yaf{bottom:898.805576pt;}
.y38{bottom:901.041504pt;}
.y116{bottom:901.836243pt;}
.y107{bottom:904.329576pt;}
.y115{bottom:913.166243pt;}
.yae{bottom:914.308243pt;}
.y37{bottom:914.374837pt;}
.y106{bottom:919.822911pt;}
.y114{bottom:924.496243pt;}
.y105{bottom:924.820243pt;}
.yad{bottom:929.810910pt;}
.y113{bottom:935.826243pt;}
.y36{bottom:941.152245pt;}
.yac{bottom:945.313577pt;}
.y104{bottom:945.317577pt;}
.y112{bottom:947.156243pt;}
.y35{bottom:954.484244pt;}
.y111{bottom:958.486243pt;}
.yab{bottom:960.816243pt;}
.y103{bottom:960.820244pt;}
.y34{bottom:967.816243pt;}
.y110{bottom:969.816243pt;}
.y102{bottom:970.816243pt;}
.y33{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.hb{height:20.833855pt;}
.h6{height:24.933594pt;}
.h17{height:31.461333pt;}
.hd{height:32.594667pt;}
.h8{height:34.512000pt;}
.h9{height:34.523438pt;}
.hc{height:36.225851pt;}
.h15{height:36.922667pt;}
.h1b{height:37.408000pt;}
.h14{height:38.229333pt;}
.h2{height:38.346667pt;}
.h4{height:39.305333pt;}
.h1a{height:39.560000pt;}
.h19{height:40.080000pt;}
.h3{height:40.661333pt;}
.h18{height:40.960000pt;}
.h11{height:42.181333pt;}
.hf{height:42.195312pt;}
.h7{height:43.067710pt;}
.ha{height:47.472000pt;}
.h12{height:48.096000pt;}
.h10{height:49.152000pt;}
.h1e{height:56.890669pt;}
.h1c{height:56.917337pt;}
.h1d{height:56.933334pt;}
.h16{height:67.909333pt;}
.he{height:69.024000pt;}
.h13{height:78.213332pt;}
.h5{height:99.701333pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x7{left:125.291331pt;}
.x4{left:207.516805pt;}
.x8{left:211.683472pt;}
.x6{left:223.512024pt;}
.x13{left:267.195068pt;}
.x5{left:312.087606pt;}
.xf{left:329.330134pt;}
.xc{left:333.110154pt;}
.x9{left:362.874133pt;}
.x10{left:379.431468pt;}
.xd{left:464.766131pt;}
.xa{left:470.664798pt;}
.x12{left:478.666667pt;}
.x3{left:519.632528pt;}
.xe{left:543.604795pt;}
.x11{left:576.000796pt;}
.xb{left:732.628825pt;}
.x1{left:733.540283pt;}
}




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