
    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_55d6528795f9c1eb811be153.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_0167cfc77dbc081defd6d654.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.713000;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_4b00a8b8b5105dca2000e10f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_eecadb41ab1f19c08d6df941.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5021b6ad14021a1ffd79c435.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_94e652758a422159010f1fd8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936523;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_088952958dd7fc3c3300012c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921875;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_36f7882423362e711e47a6c5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_09b8516e73ebe463769d6087.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893000;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_c0607033733c96ec1bcd8770.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bc53c8e564e419e22c77dfe6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.806000;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_11ca8813bf046206bc8c5595.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.106000;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_243670f8b6397786957af0a4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.966309;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_24d69b440561541a3c7584c8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2fe977d746e74bef790d3348.woff2')format("woff");}.fff{font-family:fff;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e9e8977a20235829e73de65e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.781738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.840017px;}
.ls3{letter-spacing:2.987675px;}
.ls2{letter-spacing:2.988017px;}
.ls4{letter-spacing:2.988600px;}
.ls5{letter-spacing:2.989200px;}
.ls0{letter-spacing:3.647143px;}
.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;}
}
.ws15{word-spacing:-11.955135px;}
.ws48{word-spacing:-1.195501px;}
.ws76{word-spacing:-1.076101px;}
.ws84{word-spacing:-0.657301px;}
.ws1e{word-spacing:-0.597901px;}
.wsb9{word-spacing:-0.573739px;}
.ws19{word-spacing:-0.299101px;}
.ws3{word-spacing:-0.053798px;}
.ws47{word-spacing:0.000000px;}
.ws59{word-spacing:0.059699px;}
.ws1d{word-spacing:0.358499px;}
.ws46{word-spacing:0.537899px;}
.ws17{word-spacing:0.717299px;}
.wsc3{word-spacing:0.764860px;}
.wsc2{word-spacing:0.812861px;}
.ws96{word-spacing:0.836699px;}
.wsbd{word-spacing:0.908260px;}
.wsbc{word-spacing:0.908860px;}
.wsbe{word-spacing:1.004261px;}
.ws87{word-spacing:1.016099px;}
.ws63{word-spacing:1.135499px;}
.wsa1{word-spacing:1.255499px;}
.ws9f{word-spacing:1.434899px;}
.ws28{word-spacing:1.733699px;}
.ws90{word-spacing:1.793099px;}
.wsb6{word-spacing:1.817260px;}
.ws42{word-spacing:2.091899px;}
.ws9a{word-spacing:2.211899px;}
.ws8e{word-spacing:2.390699px;}
.ws8c{word-spacing:2.450699px;}
.wsad{word-spacing:2.486260px;}
.ws69{word-spacing:2.488225px;}
.ws68{word-spacing:2.510699px;}
.wsae{word-spacing:2.534260px;}
.ws94{word-spacing:2.630099px;}
.ws88{word-spacing:2.809499px;}
.ws61{word-spacing:2.869499px;}
.ws79{word-spacing:2.928899px;}
.ws35{word-spacing:2.988899px;}
.wsc1{word-spacing:3.001816px;}
.wsb1{word-spacing:3.012460px;}
.wsb0{word-spacing:3.013060px;}
.ws1c{word-spacing:3.048299px;}
.ws24{word-spacing:3.108299px;}
.ws8d{word-spacing:3.168299px;}
.wsb4{word-spacing:3.239114px;}
.wsb5{word-spacing:3.251860px;}
.ws5b{word-spacing:3.287699px;}
.wsba{word-spacing:3.347260px;}
.wsbb{word-spacing:3.395260px;}
.ws5f{word-spacing:3.646499px;}
.wsc6{word-spacing:3.682060px;}
.wsc7{word-spacing:3.682660px;}
.wsc0{word-spacing:3.730060px;}
.ws43{word-spacing:3.825299px;}
.wsab{word-spacing:3.918976px;}
.wsac{word-spacing:3.921459px;}
.ws85{word-spacing:3.945298px;}
.ws1f{word-spacing:4.004699px;}
.ws2c{word-spacing:4.064698px;}
.ws6c{word-spacing:4.184099px;}
.ws4d{word-spacing:4.363499px;}
.ws5a{word-spacing:4.542898px;}
.ws66{word-spacing:4.662298px;}
.ws33{word-spacing:4.722299px;}
.wsb2{word-spacing:4.780933px;}
.ws39{word-spacing:4.781698px;}
.wsaf{word-spacing:4.781859px;}
.wsb3{word-spacing:4.782459px;}
.ws6a{word-spacing:4.901698px;}
.ws4a{word-spacing:5.021098px;}
.ws2f{word-spacing:5.140498px;}
.ws83{word-spacing:5.200499px;}
.ws40{word-spacing:5.499298px;}
.wsb8{word-spacing:5.546859px;}
.wsb7{word-spacing:5.547459px;}
.ws22{word-spacing:5.559299px;}
.ws71{word-spacing:5.858098px;}
.ws5{word-spacing:5.863800px;}
.ws98{word-spacing:5.918417px;}
.ws51{word-spacing:5.927575px;}
.ws50{word-spacing:5.937437px;}
.ws2{word-spacing:5.977498px;}
.wsa8{word-spacing:6.121059px;}
.wsa9{word-spacing:6.169059px;}
.ws73{word-spacing:6.336298px;}
.ws82{word-spacing:6.455698px;}
.ws41{word-spacing:6.515698px;}
.ws1{word-spacing:6.575259px;}
.ws11{word-spacing:6.724799px;}
.ws7a{word-spacing:6.754499px;}
.wsa3{word-spacing:6.814498px;}
.wsc8{word-spacing:6.838058px;}
.wsc9{word-spacing:6.838659px;}
.ws57{word-spacing:6.933898px;}
.ws13{word-spacing:7.101600px;}
.ws31{word-spacing:7.173299px;}
.ws4b{word-spacing:7.232698px;}
.ws9c{word-spacing:7.292699px;}
.ws78{word-spacing:7.651499px;}
.ws10{word-spacing:7.747200px;}
.ws44{word-spacing:7.770899px;}
.ws1a{word-spacing:7.890299px;}
.ws89{word-spacing:8.129699px;}
.ws8a{word-spacing:8.249099px;}
.wsa{word-spacing:8.284800px;}
.ws4e{word-spacing:8.487898px;}
.ws29{word-spacing:8.607899px;}
.ws5e{word-spacing:8.667298px;}
.ws95{word-spacing:8.727299px;}
.ws23{word-spacing:8.787298px;}
.ws6b{word-spacing:8.966099px;}
.ws86{word-spacing:9.205498px;}
.ws8f{word-spacing:9.264858px;}
.ws81{word-spacing:9.264898px;}
.ws80{word-spacing:9.279025px;}
.ws60{word-spacing:9.324899px;}
.ws32{word-spacing:9.444299px;}
.ws6d{word-spacing:9.504298px;}
.ws30{word-spacing:9.564298px;}
.wsca{word-spacing:9.611857px;}
.ws21{word-spacing:9.623698px;}
.wsaa{word-spacing:9.659858px;}
.ws93{word-spacing:9.803098px;}
.ws2e{word-spacing:9.863098px;}
.ws7d{word-spacing:9.922498px;}
.ws45{word-spacing:10.161898px;}
.wsbf{word-spacing:10.186057px;}
.ws7f{word-spacing:10.341298px;}
.ws70{word-spacing:10.400698px;}
.wsa0{word-spacing:10.460698px;}
.ws9e{word-spacing:10.759498px;}
.ws36{word-spacing:10.938898px;}
.ws8b{word-spacing:11.178298px;}
.wsf{word-spacing:11.351399px;}
.ws75{word-spacing:11.417098px;}
.wse{word-spacing:11.458799px;}
.ws6f{word-spacing:11.477098px;}
.ws3d{word-spacing:11.536498px;}
.ws6e{word-spacing:11.596498px;}
.wsc4{word-spacing:11.606741px;}
.wsc5{word-spacing:11.620657px;}
.ws53{word-spacing:11.715898px;}
.ws5c{word-spacing:11.895298px;}
.ws56{word-spacing:12.074698px;}
.ws67{word-spacing:12.194098px;}
.ws34{word-spacing:12.313498px;}
.wsd{word-spacing:12.481200px;}
.ws38{word-spacing:12.672298px;}
.ws3c{word-spacing:12.791698px;}
.ws58{word-spacing:12.792298px;}
.ws7{word-spacing:12.911400px;}
.ws7b{word-spacing:13.031098px;}
.ws65{word-spacing:13.210498px;}
.ws9{word-spacing:13.611000px;}
.ws4c{word-spacing:13.628698px;}
.ws6{word-spacing:13.718399px;}
.ws26{word-spacing:13.748698px;}
.ws3f{word-spacing:13.808098px;}
.ws20{word-spacing:13.868098px;}
.ws91{word-spacing:13.987498px;}
.ws2a{word-spacing:14.047498px;}
.ws5d{word-spacing:14.226298px;}
.ws0{word-spacing:14.346157px;}
.ws8{word-spacing:14.471399px;}
.ws1b{word-spacing:14.525098px;}
.wsa6{word-spacing:14.764498px;}
.ws18{word-spacing:14.943898px;}
.ws7c{word-spacing:15.063298px;}
.ws74{word-spacing:15.182698px;}
.wsa4{word-spacing:15.302698px;}
.ws7e{word-spacing:15.362098px;}
.ws54{word-spacing:15.422098px;}
.ws16{word-spacing:15.661498px;}
.ws2b{word-spacing:15.840298px;}
.ws25{word-spacing:16.557898px;}
.wsa7{word-spacing:16.677298px;}
.ws97{word-spacing:16.737298px;}
.ws52{word-spacing:17.036098px;}
.ws62{word-spacing:17.096098px;}
.ws55{word-spacing:17.274898px;}
.ws3e{word-spacing:17.573698px;}
.wsc{word-spacing:17.699399px;}
.ws37{word-spacing:17.753698px;}
.ws4f{word-spacing:17.932498px;}
.ws14{word-spacing:17.933098px;}
.ws49{word-spacing:17.992497px;}
.ws3a{word-spacing:18.470697px;}
.ws99{word-spacing:18.530698px;}
.wsb{word-spacing:18.721800px;}
.wsa5{word-spacing:18.888898px;}
.ws2d{word-spacing:19.068297px;}
.ws77{word-spacing:19.486498px;}
.ws27{word-spacing:19.964698px;}
.ws12{word-spacing:20.550801px;}
.ws92{word-spacing:20.921697px;}
.ws9d{word-spacing:21.160497px;}
.ws72{word-spacing:21.698698px;}
.ws3b{word-spacing:22.475697px;}
.ws64{word-spacing:25.404897px;}
.wsa2{word-spacing:32.099697px;}
.ws4{word-spacing:33.032399px;}
.ws9b{word-spacing:560.725176px;}
._e{margin-left:-1092.598174px;}
._15{margin-left:-23.553599px;}
._4{margin-left:-8.482198px;}
._d{margin-left:-6.694799px;}
._0{margin-left:-5.021399px;}
._1{margin-left:-3.586199px;}
._f{margin-left:-2.450999px;}
._2{margin-left:-1.434600px;}
._9{width:2.360315px;}
._7{width:3.647785px;}
._16{width:8.286932px;}
._b{width:14.286600px;}
._11{width:16.498198px;}
._c{width:19.067998px;}
._13{width:23.379582px;}
._10{width:25.465195px;}
._19{width:29.229599px;}
._a{width:31.149599px;}
._1b{width:35.165271px;}
._1a{width:47.641783px;}
._17{width:54.533425px;}
._8{width:67.939275px;}
._6{width:70.623352px;}
._5{width:73.958891px;}
._3{width:86.187149px;}
._18{width:130.494878px;}
._12{width:499.463940px;}
._14{width:728.712206px;}
.fc3{color:transparent;}
.fc1{color:rgb(51,0,102);}
.fc2{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:25.719346px;}
.fs11{font-size:26.990416px;}
.fs5{font-size:27.286576px;}
.fs7{font-size:27.286732px;}
.fs14{font-size:28.577051px;}
.fs10{font-size:29.066602px;}
.fsd{font-size:30.664566px;}
.fs6{font-size:32.743891px;}
.fs15{font-size:34.292461px;}
.fsc{font-size:34.497636px;}
.fs13{font-size:35.865600px;}
.fsf{font-size:38.330707px;}
.fs12{font-size:41.842800px;}
.fsa{font-size:42.000000px;}
.fse{font-size:45.996849px;}
.fs4{font-size:47.820540px;}
.fs8{font-size:48.000000px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs9{font-size:60.000000px;}
.fsb{font-size:61.329131px;}
.fs1{font-size:65.753340px;}
.fs0{font-size:143.461740px;}
.y0{bottom:0.000000px;}
.y3d{bottom:2.053833px;}
.y37{bottom:4.880171px;}
.y8d{bottom:5.559463px;}
.yfc{bottom:9.845550px;}
.y3c{bottom:14.332858px;}
.ycc{bottom:16.964722px;}
.y3b{bottom:26.611883px;}
.yd3{bottom:27.345629px;}
.yc4{bottom:29.178665px;}
.yc0{bottom:32.536086px;}
.y54{bottom:32.862000px;}
.ycb{bottom:37.726544px;}
.y3a{bottom:38.890908px;}
.y91{bottom:39.578069px;}
.yc5{bottom:46.412632px;}
.yd2{bottom:48.107451px;}
.y36{bottom:50.585186px;}
.y52{bottom:51.000000px;}
.y90{bottom:51.077281px;}
.yc1{bottom:53.297908px;}
.y35{bottom:58.771159px;}
.y34{bottom:66.957131px;}
.y8c{bottom:74.076279px;}
.yfa{bottom:74.143915px;}
.yff{bottom:74.858341px;}
.yca{bottom:79.250180px;}
.y38{bottom:82.647001px;}
.yd1{bottom:89.631094px;}
.y53{bottom:90.000000px;}
.ybf{bottom:94.821552px;}
.yc9{bottom:100.012001px;}
.yd0{bottom:110.392916px;}
.y32{bottom:113.332500px;}
.y8f{bottom:114.802232px;}
.ybe{bottom:115.583366px;}
.y131{bottom:117.547500px;}
.yf8{bottom:117.552000px;}
.yfe{bottom:119.152770px;}
.yfb{bottom:120.581622px;}
.y130{bottom:130.996500px;}
.y31{bottom:131.265000px;}
.y8e{bottom:136.363302px;}
.yf7{bottom:142.935000px;}
.yc3{bottom:143.563281px;}
.y12f{bottom:144.447000px;}
.yc8{bottom:146.726102px;}
.y86{bottom:149.197500px;}
.y30{bottom:149.199000px;}
.yc2{bottom:156.588103px;}
.ycf{bottom:157.107009px;}
.y12e{bottom:157.896000px;}
.yf6{bottom:160.869000px;}
.ybd{bottom:162.297467px;}
.y2f{bottom:167.131500px;}
.yc7{bottom:167.487917px;}
.y12d{bottom:171.345000px;}
.yfd{bottom:177.021298px;}
.y97{bottom:177.089774px;}
.yce{bottom:177.868831px;}
.yf5{bottom:178.801500px;}
.ybc{bottom:183.059281px;}
.y12c{bottom:184.795500px;}
.y2e{bottom:185.064000px;}
.ycd{bottom:193.440196px;}
.yf4{bottom:196.734000px;}
.y12b{bottom:198.244500px;}
.y9b{bottom:200.088286px;}
.y96{bottom:202.963145px;}
.y2d{bottom:202.996500px;}
.y85{bottom:203.217000px;}
.yc6{bottom:203.821103px;}
.ybb{bottom:209.011560px;}
.y9a{bottom:211.587498px;}
.y12a{bottom:211.695000px;}
.y99{bottom:214.462330px;}
.y95{bottom:214.462357px;}
.yf3{bottom:219.274500px;}
.y2c{bottom:220.929000px;}
.y84{bottom:221.149500px;}
.y129{bottom:225.144000px;}
.y98{bottom:225.961542px;}
.y94{bottom:225.961569px;}
.yba{bottom:233.925724px;}
.y93{bottom:237.460781px;}
.y128{bottom:238.593000px;}
.yb7{bottom:238.675500px;}
.y2b{bottom:238.861500px;}
.y83{bottom:239.082000px;}
.yb9{bottom:242.749514px;}
.yf2{bottom:246.696000px;}
.y127{bottom:252.043500px;}
.yb6{bottom:256.608000px;}
.y2a{bottom:256.795500px;}
.y82{bottom:257.014500px;}
.y92{bottom:258.542718px;}
.yf1{bottom:264.628500px;}
.y126{bottom:265.492500px;}
.yb5{bottom:274.540500px;}
.y29{bottom:274.728000px;}
.y81{bottom:274.947000px;}
.y125{bottom:278.941500px;}
.yf0{bottom:282.562500px;}
.y8a{bottom:283.936900px;}
.y8b{bottom:288.249105px;}
.y124{bottom:292.392000px;}
.yb4{bottom:292.474500px;}
.y28{bottom:292.660500px;}
.y80{bottom:292.881000px;}
.y89{bottom:295.915246px;}
.yef{bottom:300.495000px;}
.y123{bottom:305.841000px;}
.yb3{bottom:310.407000px;}
.y27{bottom:310.593000px;}
.y7f{bottom:310.813500px;}
.y51{bottom:313.435500px;}
.yee{bottom:318.427500px;}
.y122{bottom:319.290000px;}
.y88{bottom:320.830267px;}
.yb2{bottom:328.339500px;}
.y26{bottom:328.525500px;}
.y7e{bottom:328.746000px;}
.y50{bottom:331.368000px;}
.y121{bottom:332.740500px;}
.yed{bottom:336.360000px;}
.y120{bottom:346.189500px;}
.yb1{bottom:346.272000px;}
.y25{bottom:346.458000px;}
.y7d{bottom:346.678500px;}
.y4f{bottom:349.302000px;}
.yec{bottom:354.292500px;}
.y11f{bottom:359.640000px;}
.yb0{bottom:364.204500px;}
.y7c{bottom:364.611000px;}
.y24{bottom:364.873500px;}
.y4e{bottom:367.234500px;}
.yeb{bottom:372.225000px;}
.y11e{bottom:373.089000px;}
.yaf{bottom:382.137000px;}
.y7b{bottom:382.545000px;}
.y23{bottom:382.806000px;}
.y4d{bottom:385.167000px;}
.y11d{bottom:386.538000px;}
.yea{bottom:390.159000px;}
.y11c{bottom:399.988500px;}
.yae{bottom:400.071000px;}
.y7a{bottom:400.477500px;}
.y22{bottom:400.738500px;}
.y4c{bottom:403.099500px;}
.ye9{bottom:408.091500px;}
.y11b{bottom:413.437500px;}
.yad{bottom:418.003500px;}
.y79{bottom:418.410000px;}
.y21{bottom:418.671000px;}
.y4b{bottom:421.032000px;}
.ye8{bottom:426.024000px;}
.y11a{bottom:426.886500px;}
.yac{bottom:435.936000px;}
.y78{bottom:436.342500px;}
.y20{bottom:436.605000px;}
.y4a{bottom:438.964500px;}
.y119{bottom:440.337000px;}
.ye7{bottom:443.857500px;}
.y118{bottom:453.786000px;}
.yab{bottom:453.868500px;}
.y77{bottom:454.495500px;}
.y1f{bottom:454.537500px;}
.y49{bottom:456.898500px;}
.ye6{bottom:461.790000px;}
.y117{bottom:467.236500px;}
.yaa{bottom:471.801000px;}
.y76{bottom:472.428000px;}
.y1e{bottom:472.470000px;}
.y48{bottom:474.831000px;}
.ye5{bottom:479.722500px;}
.y116{bottom:480.685500px;}
.ya9{bottom:489.733500px;}
.y75{bottom:490.360500px;}
.y1d{bottom:490.402500px;}
.y115{bottom:494.134500px;}
.y47{bottom:495.606000px;}
.ye4{bottom:497.655000px;}
.ya8{bottom:507.667500px;}
.y74{bottom:508.294500px;}
.y1c{bottom:508.335000px;}
.y46{bottom:513.538500px;}
.ye3{bottom:515.587500px;}
.y114{bottom:516.327000px;}
.ya7{bottom:525.600000px;}
.y73{bottom:526.227000px;}
.y1b{bottom:526.267500px;}
.y45{bottom:531.471000px;}
.ye2{bottom:533.521500px;}
.ya6{bottom:543.532500px;}
.y72{bottom:544.159500px;}
.y1a{bottom:544.201500px;}
.y113{bottom:544.347000px;}
.y44{bottom:549.405000px;}
.ye1{bottom:551.454000px;}
.ya5{bottom:561.465000px;}
.y71{bottom:562.092000px;}
.y19{bottom:562.134000px;}
.y112{bottom:562.279500px;}
.y43{bottom:567.337500px;}
.ye0{bottom:573.994500px;}
.ya4{bottom:579.397500px;}
.y70{bottom:580.024500px;}
.y111{bottom:580.212000px;}
.y42{bottom:585.270000px;}
.y18{bottom:587.665500px;}
.y110{bottom:598.144500px;}
.ydf{bottom:601.416000px;}
.ya3{bottom:601.851000px;}
.y41{bottom:603.202500px;}
.y6f{bottom:603.436500px;}
.y10f{bottom:616.077000px;}
.yde{bottom:619.348500px;}
.y40{bottom:621.135000px;}
.ya2{bottom:628.750500px;}
.y6e{bottom:633.327000px;}
.y10e{bottom:634.011000px;}
.ydd{bottom:637.281000px;}
.y17{bottom:638.878500px;}
.y3f{bottom:639.069000px;}
.ya1{bottom:646.684500px;}
.y6d{bottom:651.261000px;}
.y10d{bottom:651.943500px;}
.y16{bottom:654.304500px;}
.ydc{bottom:655.215000px;}
.ya0{bottom:664.617000px;}
.y6c{bottom:669.193500px;}
.y15{bottom:669.249000px;}
.y10c{bottom:669.876000px;}
.ydb{bottom:673.147500px;}
.y3e{bottom:676.497000px;}
.y9f{bottom:682.549500px;}
.y14{bottom:684.192000px;}
.y6b{bottom:687.126000px;}
.y10b{bottom:687.808500px;}
.yda{bottom:691.080000px;}
.y13{bottom:699.136500px;}
.y33{bottom:699.814791px;}
.y9e{bottom:700.482000px;}
.y6a{bottom:705.058500px;}
.y10a{bottom:705.741000px;}
.yd9{bottom:709.012500px;}
.y12{bottom:714.081000px;}
.y9d{bottom:718.414500px;}
.y69{bottom:722.991000px;}
.yd8{bottom:726.945000px;}
.y109{bottom:728.382000px;}
.y11{bottom:729.024000px;}
.y68{bottom:740.923500px;}
.y10{bottom:743.968500px;}
.yd7{bottom:744.877500px;}
.y9c{bottom:746.272500px;}
.y108{bottom:756.402000px;}
.y67{bottom:758.857500px;}
.yf{bottom:758.911500px;}
.yd6{bottom:762.811500px;}
.y87{bottom:771.891450px;}
.ye{bottom:773.856000px;}
.y107{bottom:774.334500px;}
.y66{bottom:776.790000px;}
.yd5{bottom:780.744000px;}
.yd{bottom:788.800500px;}
.y106{bottom:792.267000px;}
.y65{bottom:794.722500px;}
.y39{bottom:796.779992px;}
.yd4{bottom:801.025500px;}
.yc{bottom:803.743500px;}
.y105{bottom:810.199500px;}
.y64{bottom:812.655000px;}
.yb{bottom:818.688000px;}
.yb8{bottom:825.071985px;}
.y104{bottom:828.132000px;}
.y63{bottom:830.587500px;}
.ya{bottom:833.632500px;}
.y103{bottom:846.064500px;}
.y62{bottom:848.521500px;}
.y9{bottom:848.575500px;}
.y102{bottom:863.998500px;}
.y61{bottom:866.454000px;}
.y101{bottom:881.931000px;}
.y60{bottom:884.386500px;}
.y8{bottom:898.707000px;}
.y5f{bottom:902.319000px;}
.y100{bottom:903.276000px;}
.yf9{bottom:914.226606px;}
.y7{bottom:917.200500px;}
.y5e{bottom:926.280000px;}
.y6{bottom:935.692500px;}
.y5{bottom:954.186000px;}
.y5d{bottom:956.172000px;}
.y4{bottom:973.003500px;}
.y5c{bottom:974.104500px;}
.y5b{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.y5a{bottom:1009.971000px;}
.y59{bottom:1027.903500px;}
.y2{bottom:1039.309500px;}
.y58{bottom:1045.836000px;}
.y57{bottom:1063.768500px;}
.y1{bottom:1081.152000px;}
.y56{bottom:1081.701000px;}
.y55{bottom:1099.635000px;}
.h1c{height:19.649761px;}
.h24{height:19.666258px;}
.h1d{height:20.506391px;}
.hb{height:20.731403px;}
.he{height:20.731521px;}
.ha{height:20.864638px;}
.h22{height:21.851397px;}
.h1b{height:22.083805px;}
.h16{height:23.447612px;}
.h20{height:24.675533px;}
.hc{height:25.037565px;}
.h23{height:26.221677px;}
.h15{height:26.378564px;}
.h18{height:29.309515px;}
.h25{height:32.900532px;}
.h17{height:35.171418px;}
.h10{height:35.695312px;}
.h8{height:37.336090px;}
.h7{height:37.605082px;}
.h12{height:41.006062px;}
.h5{height:41.125613px;}
.h6{height:41.425613px;}
.h1e{height:41.484266px;}
.h11{height:43.804688px;}
.h19{height:44.831700px;}
.h3{height:45.238298px;}
.h4{height:45.562298px;}
.h2{height:45.568298px;}
.hf{height:45.585938px;}
.h14{height:46.895224px;}
.hd{height:47.142000px;}
.h1f{height:50.477846px;}
.h1{height:98.701677px;}
.h9{height:159.104250px;}
.h21{height:195.653025px;}
.h1a{height:283.789440px;}
.h13{height:336.195900px;}
.h0{height:1188.000000px;}
.w2{width:96.405390px;}
.w3{width:294.171413px;}
.w1{width:310.105969px;}
.w5{width:328.142475px;}
.w4{width:349.748314px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x21{left:2.191882px;}
.x14{left:5.470132px;}
.x30{left:6.765711px;}
.x45{left:10.014685px;}
.x16{left:11.084524px;}
.x3a{left:13.014385px;}
.x2f{left:14.259661px;}
.x26{left:19.051013px;}
.x27{left:21.049911px;}
.x1b{left:25.500000px;}
.x3d{left:47.198383px;}
.x1a{left:61.500000px;}
.x43{left:64.612498px;}
.xd{left:73.446000px;}
.x2a{left:77.468082px;}
.x1e{left:80.799535px;}
.x28{left:85.650777px;}
.x34{left:86.741434px;}
.xc{left:88.390500px;}
.x23{left:89.468907px;}
.x22{left:90.906531px;}
.x31{left:94.387515px;}
.x29{left:96.678330px;}
.x35{left:103.149893px;}
.x12{left:107.081225px;}
.x10{left:110.321506px;}
.x1c{left:114.954000px;}
.x11{left:122.387289px;}
.x3f{left:129.741000px;}
.x1{left:133.039500px;}
.x47{left:134.749550px;}
.x5{left:137.035500px;}
.x46{left:142.998420px;}
.x44{left:147.664553px;}
.x3{left:148.918500px;}
.x39{left:151.356213px;}
.x37{left:155.670781px;}
.x4{left:158.058000px;}
.x2b{left:160.717758px;}
.x2c{left:162.394729px;}
.x38{left:168.233305px;}
.x2{left:176.382000px;}
.x20{left:180.961221px;}
.x1f{left:186.231693px;}
.x40{left:190.869000px;}
.x41{left:194.044500px;}
.xe{left:203.430000px;}
.x36{left:210.981566px;}
.x24{left:215.399032px;}
.x2e{left:218.805421px;}
.x25{left:220.392517px;}
.x2d{left:227.474725px;}
.x13{left:229.156673px;}
.x3e{left:260.015151px;}
.x3b{left:303.379782px;}
.x3c{left:312.519864px;}
.x7{left:334.086000px;}
.x8{left:345.136500px;}
.x6{left:353.217000px;}
.xa{left:372.951000px;}
.x9{left:382.144500px;}
.x33{left:444.689985px;}
.x19{left:467.967000px;}
.x4d{left:473.944500px;}
.x18{left:482.910000px;}
.x48{left:486.327000px;}
.x42{left:489.574012px;}
.x4e{left:495.355500px;}
.xf{left:501.365156px;}
.x1d{left:509.211956px;}
.x4b{left:518.371500px;}
.xb{left:549.064500px;}
.x15{left:552.072270px;}
.x32{left:562.338000px;}
.x17{left:572.388000px;}
.x49{left:591.090000px;}
.x4c{left:614.418000px;}
.x4a{left:824.634000px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.746682pt;}
.ls3{letter-spacing:2.655711pt;}
.ls2{letter-spacing:2.656015pt;}
.ls4{letter-spacing:2.656533pt;}
.ls5{letter-spacing:2.657067pt;}
.ls0{letter-spacing:3.241905pt;}
.ws15{word-spacing:-10.626787pt;}
.ws48{word-spacing:-1.062668pt;}
.ws76{word-spacing:-0.956534pt;}
.ws84{word-spacing:-0.584267pt;}
.ws1e{word-spacing:-0.531468pt;}
.wsb9{word-spacing:-0.509990pt;}
.ws19{word-spacing:-0.265868pt;}
.ws3{word-spacing:-0.047821pt;}
.ws47{word-spacing:0.000000pt;}
.ws59{word-spacing:0.053066pt;}
.ws1d{word-spacing:0.318666pt;}
.ws46{word-spacing:0.478133pt;}
.ws17{word-spacing:0.637599pt;}
.wsc3{word-spacing:0.679876pt;}
.wsc2{word-spacing:0.722543pt;}
.ws96{word-spacing:0.743732pt;}
.wsbd{word-spacing:0.807342pt;}
.wsbc{word-spacing:0.807876pt;}
.wsbe{word-spacing:0.892676pt;}
.ws87{word-spacing:0.903199pt;}
.ws63{word-spacing:1.009333pt;}
.wsa1{word-spacing:1.115999pt;}
.ws9f{word-spacing:1.275466pt;}
.ws28{word-spacing:1.541065pt;}
.ws90{word-spacing:1.593866pt;}
.wsb6{word-spacing:1.615343pt;}
.ws42{word-spacing:1.859465pt;}
.ws9a{word-spacing:1.966132pt;}
.ws8e{word-spacing:2.125066pt;}
.ws8c{word-spacing:2.178399pt;}
.wsad{word-spacing:2.210009pt;}
.ws69{word-spacing:2.211756pt;}
.ws68{word-spacing:2.231732pt;}
.wsae{word-spacing:2.252676pt;}
.ws94{word-spacing:2.337866pt;}
.ws88{word-spacing:2.497332pt;}
.ws61{word-spacing:2.550666pt;}
.ws79{word-spacing:2.603465pt;}
.ws35{word-spacing:2.656799pt;}
.wsc1{word-spacing:2.668281pt;}
.wsb1{word-spacing:2.677742pt;}
.wsb0{word-spacing:2.678275pt;}
.ws1c{word-spacing:2.709599pt;}
.ws24{word-spacing:2.762932pt;}
.ws8d{word-spacing:2.816265pt;}
.wsb4{word-spacing:2.879213pt;}
.wsb5{word-spacing:2.890542pt;}
.ws5b{word-spacing:2.922399pt;}
.wsba{word-spacing:2.975342pt;}
.wsbb{word-spacing:3.018009pt;}
.ws5f{word-spacing:3.241332pt;}
.wsc6{word-spacing:3.272942pt;}
.wsc7{word-spacing:3.273475pt;}
.wsc0{word-spacing:3.315608pt;}
.ws43{word-spacing:3.400266pt;}
.wsab{word-spacing:3.483535pt;}
.wsac{word-spacing:3.485742pt;}
.ws85{word-spacing:3.506932pt;}
.ws1f{word-spacing:3.559732pt;}
.ws2c{word-spacing:3.613065pt;}
.ws6c{word-spacing:3.719199pt;}
.ws4d{word-spacing:3.878665pt;}
.ws5a{word-spacing:4.038132pt;}
.ws66{word-spacing:4.144265pt;}
.ws33{word-spacing:4.197599pt;}
.wsb2{word-spacing:4.249718pt;}
.ws39{word-spacing:4.250399pt;}
.wsaf{word-spacing:4.250542pt;}
.wsb3{word-spacing:4.251075pt;}
.ws6a{word-spacing:4.357065pt;}
.ws4a{word-spacing:4.463199pt;}
.ws2f{word-spacing:4.569332pt;}
.ws83{word-spacing:4.622666pt;}
.ws40{word-spacing:4.888265pt;}
.wsb8{word-spacing:4.930541pt;}
.wsb7{word-spacing:4.931075pt;}
.ws22{word-spacing:4.941599pt;}
.ws71{word-spacing:5.207199pt;}
.ws5{word-spacing:5.212266pt;}
.ws98{word-spacing:5.260816pt;}
.ws51{word-spacing:5.268955pt;}
.ws50{word-spacing:5.277722pt;}
.ws2{word-spacing:5.313332pt;}
.wsa8{word-spacing:5.440941pt;}
.wsa9{word-spacing:5.483608pt;}
.ws73{word-spacing:5.632265pt;}
.ws82{word-spacing:5.738399pt;}
.ws41{word-spacing:5.791732pt;}
.ws1{word-spacing:5.844675pt;}
.ws11{word-spacing:5.977600pt;}
.ws7a{word-spacing:6.003999pt;}
.wsa3{word-spacing:6.057332pt;}
.wsc8{word-spacing:6.078274pt;}
.wsc9{word-spacing:6.078808pt;}
.ws57{word-spacing:6.163465pt;}
.ws13{word-spacing:6.312533pt;}
.ws31{word-spacing:6.376265pt;}
.ws4b{word-spacing:6.429065pt;}
.ws9c{word-spacing:6.482399pt;}
.ws78{word-spacing:6.801332pt;}
.ws10{word-spacing:6.886400pt;}
.ws44{word-spacing:6.907465pt;}
.ws1a{word-spacing:7.013599pt;}
.ws89{word-spacing:7.226399pt;}
.ws8a{word-spacing:7.332532pt;}
.wsa{word-spacing:7.364266pt;}
.ws4e{word-spacing:7.544799pt;}
.ws29{word-spacing:7.651465pt;}
.ws5e{word-spacing:7.704265pt;}
.ws95{word-spacing:7.757599pt;}
.ws23{word-spacing:7.810932pt;}
.ws6b{word-spacing:7.969865pt;}
.ws86{word-spacing:8.182665pt;}
.ws8f{word-spacing:8.235429pt;}
.ws81{word-spacing:8.235465pt;}
.ws80{word-spacing:8.248022pt;}
.ws60{word-spacing:8.288799pt;}
.ws32{word-spacing:8.394932pt;}
.ws6d{word-spacing:8.448265pt;}
.ws30{word-spacing:8.501598pt;}
.wsca{word-spacing:8.543873pt;}
.ws21{word-spacing:8.554398pt;}
.wsaa{word-spacing:8.586540pt;}
.ws93{word-spacing:8.713865pt;}
.ws2e{word-spacing:8.767199pt;}
.ws7d{word-spacing:8.819998pt;}
.ws45{word-spacing:9.032798pt;}
.wsbf{word-spacing:9.054273pt;}
.ws7f{word-spacing:9.192265pt;}
.ws70{word-spacing:9.245065pt;}
.wsa0{word-spacing:9.298399pt;}
.ws9e{word-spacing:9.563998pt;}
.ws36{word-spacing:9.723465pt;}
.ws8b{word-spacing:9.936265pt;}
.wsf{word-spacing:10.090133pt;}
.ws75{word-spacing:10.148532pt;}
.wse{word-spacing:10.185599pt;}
.ws6f{word-spacing:10.201865pt;}
.ws3d{word-spacing:10.254665pt;}
.ws6e{word-spacing:10.307998pt;}
.wsc4{word-spacing:10.317103pt;}
.wsc5{word-spacing:10.329473pt;}
.ws53{word-spacing:10.414132pt;}
.ws5c{word-spacing:10.573599pt;}
.ws56{word-spacing:10.733065pt;}
.ws67{word-spacing:10.839198pt;}
.ws34{word-spacing:10.945332pt;}
.wsd{word-spacing:11.094400pt;}
.ws38{word-spacing:11.264265pt;}
.ws3c{word-spacing:11.370398pt;}
.ws58{word-spacing:11.370932pt;}
.ws7{word-spacing:11.476800pt;}
.ws7b{word-spacing:11.583198pt;}
.ws65{word-spacing:11.742665pt;}
.ws9{word-spacing:12.098666pt;}
.ws4c{word-spacing:12.114398pt;}
.ws6{word-spacing:12.194133pt;}
.ws26{word-spacing:12.221065pt;}
.ws3f{word-spacing:12.273865pt;}
.ws20{word-spacing:12.327198pt;}
.ws91{word-spacing:12.433332pt;}
.ws2a{word-spacing:12.486665pt;}
.ws5d{word-spacing:12.645598pt;}
.ws0{word-spacing:12.752139pt;}
.ws8{word-spacing:12.863466pt;}
.ws1b{word-spacing:12.911198pt;}
.wsa6{word-spacing:13.123998pt;}
.ws18{word-spacing:13.283465pt;}
.ws7c{word-spacing:13.389598pt;}
.ws74{word-spacing:13.495732pt;}
.wsa4{word-spacing:13.602398pt;}
.ws7e{word-spacing:13.655198pt;}
.ws54{word-spacing:13.708531pt;}
.ws16{word-spacing:13.921331pt;}
.ws2b{word-spacing:14.080265pt;}
.ws25{word-spacing:14.718132pt;}
.wsa7{word-spacing:14.824265pt;}
.ws97{word-spacing:14.877598pt;}
.ws52{word-spacing:15.143198pt;}
.ws62{word-spacing:15.196531pt;}
.ws55{word-spacing:15.355465pt;}
.ws3e{word-spacing:15.621065pt;}
.wsc{word-spacing:15.732799pt;}
.ws37{word-spacing:15.781064pt;}
.ws4f{word-spacing:15.939998pt;}
.ws14{word-spacing:15.940531pt;}
.ws49{word-spacing:15.993331pt;}
.ws3a{word-spacing:16.418398pt;}
.ws99{word-spacing:16.471731pt;}
.wsb{word-spacing:16.641600pt;}
.wsa5{word-spacing:16.790131pt;}
.ws2d{word-spacing:16.949598pt;}
.ws77{word-spacing:17.321331pt;}
.ws27{word-spacing:17.746398pt;}
.ws12{word-spacing:18.267379pt;}
.ws92{word-spacing:18.597064pt;}
.ws9d{word-spacing:18.809331pt;}
.ws72{word-spacing:19.287731pt;}
.ws3b{word-spacing:19.978398pt;}
.ws64{word-spacing:22.582131pt;}
.wsa2{word-spacing:28.533064pt;}
.ws4{word-spacing:29.362133pt;}
.ws9b{word-spacing:498.422379pt;}
._e{margin-left:-971.198377pt;}
._15{margin-left:-20.936533pt;}
._4{margin-left:-7.539732pt;}
._d{margin-left:-5.950932pt;}
._0{margin-left:-4.463466pt;}
._1{margin-left:-3.187733pt;}
._f{margin-left:-2.178666pt;}
._2{margin-left:-1.275200pt;}
._9{width:2.098058pt;}
._7{width:3.242476pt;}
._16{width:7.366161pt;}
._b{width:12.699200pt;}
._11{width:14.665065pt;}
._c{width:16.949331pt;}
._13{width:20.781851pt;}
._10{width:22.635729pt;}
._19{width:25.981866pt;}
._a{width:27.688533pt;}
._1b{width:31.258018pt;}
._1a{width:42.348252pt;}
._17{width:48.474156pt;}
._8{width:60.390467pt;}
._6{width:62.776313pt;}
._5{width:65.741236pt;}
._3{width:76.610799pt;}
._18{width:115.995447pt;}
._12{width:443.967947pt;}
._14{width:647.744183pt;}
.fs16{font-size:22.861641pt;}
.fs11{font-size:23.991481pt;}
.fs5{font-size:24.254734pt;}
.fs7{font-size:24.254873pt;}
.fs14{font-size:25.401823pt;}
.fs10{font-size:25.836980pt;}
.fsd{font-size:27.257392pt;}
.fs6{font-size:29.105681pt;}
.fs15{font-size:30.482188pt;}
.fsc{font-size:30.664566pt;}
.fs13{font-size:31.880533pt;}
.fsf{font-size:34.071740pt;}
.fs12{font-size:37.193600pt;}
.fsa{font-size:37.333333pt;}
.fse{font-size:40.886088pt;}
.fs4{font-size:42.507147pt;}
.fs8{font-size:42.666667pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs9{font-size:53.333333pt;}
.fsb{font-size:54.514783pt;}
.fs1{font-size:58.447413pt;}
.fs0{font-size:127.521547pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:1.825629pt;}
.y37{bottom:4.337929pt;}
.y8d{bottom:4.941745pt;}
.yfc{bottom:8.751600pt;}
.y3c{bottom:12.740318pt;}
.ycc{bottom:15.079753pt;}
.y3b{bottom:23.655007pt;}
.yd3{bottom:24.307226pt;}
.yc4{bottom:25.936591pt;}
.yc0{bottom:28.920966pt;}
.y54{bottom:29.210667pt;}
.ycb{bottom:33.534705pt;}
.y3a{bottom:34.569696pt;}
.y91{bottom:35.180505pt;}
.yc5{bottom:41.255673pt;}
.yd2{bottom:42.762178pt;}
.y36{bottom:44.964609pt;}
.y52{bottom:45.333333pt;}
.y90{bottom:45.402027pt;}
.yc1{bottom:47.375918pt;}
.y35{bottom:52.241030pt;}
.y34{bottom:59.517450pt;}
.y8c{bottom:65.845581pt;}
.yfa{bottom:65.905702pt;}
.yff{bottom:66.540748pt;}
.yca{bottom:70.444604pt;}
.y38{bottom:73.464001pt;}
.yd1{bottom:79.672084pt;}
.y53{bottom:80.000000pt;}
.ybf{bottom:84.285824pt;}
.yc9{bottom:88.899557pt;}
.yd0{bottom:98.127036pt;}
.y32{bottom:100.740000pt;}
.y8f{bottom:102.046428pt;}
.ybe{bottom:102.740770pt;}
.y131{bottom:104.486667pt;}
.yf8{bottom:104.490667pt;}
.yfe{bottom:105.913573pt;}
.yfb{bottom:107.183664pt;}
.y130{bottom:116.441333pt;}
.y31{bottom:116.680000pt;}
.y8e{bottom:121.211824pt;}
.yf7{bottom:127.053333pt;}
.yc3{bottom:127.611805pt;}
.y12f{bottom:128.397333pt;}
.yc8{bottom:130.423202pt;}
.y86{bottom:132.620000pt;}
.y30{bottom:132.621333pt;}
.yc2{bottom:139.189425pt;}
.ycf{bottom:139.650675pt;}
.y12e{bottom:140.352000pt;}
.yf6{bottom:142.994667pt;}
.ybd{bottom:144.264415pt;}
.y2f{bottom:148.561333pt;}
.yc7{bottom:148.878148pt;}
.y12d{bottom:152.306667pt;}
.yfd{bottom:157.352265pt;}
.y97{bottom:157.413133pt;}
.yce{bottom:158.105628pt;}
.yf5{bottom:158.934667pt;}
.ybc{bottom:162.719361pt;}
.y12c{bottom:164.262667pt;}
.y2e{bottom:164.501333pt;}
.ycd{bottom:171.946841pt;}
.yf4{bottom:174.874667pt;}
.y12b{bottom:176.217333pt;}
.y9b{bottom:177.856254pt;}
.y96{bottom:180.411684pt;}
.y2d{bottom:180.441333pt;}
.y85{bottom:180.637333pt;}
.yc6{bottom:181.174314pt;}
.ybb{bottom:185.788054pt;}
.y9a{bottom:188.077776pt;}
.y12a{bottom:188.173333pt;}
.y99{bottom:190.633182pt;}
.y95{bottom:190.633206pt;}
.yf3{bottom:194.910667pt;}
.y2c{bottom:196.381333pt;}
.y84{bottom:196.577333pt;}
.y129{bottom:200.128000pt;}
.y98{bottom:200.854704pt;}
.y94{bottom:200.854728pt;}
.yba{bottom:207.933977pt;}
.y93{bottom:211.076250pt;}
.y128{bottom:212.082667pt;}
.yb7{bottom:212.156000pt;}
.y2b{bottom:212.321333pt;}
.y83{bottom:212.517333pt;}
.yb9{bottom:215.777346pt;}
.yf2{bottom:219.285333pt;}
.y127{bottom:224.038667pt;}
.yb6{bottom:228.096000pt;}
.y2a{bottom:228.262667pt;}
.y82{bottom:228.457333pt;}
.y92{bottom:229.815749pt;}
.yf1{bottom:235.225333pt;}
.y126{bottom:235.993333pt;}
.yb5{bottom:244.036000pt;}
.y29{bottom:244.202667pt;}
.y81{bottom:244.397333pt;}
.y125{bottom:247.948000pt;}
.yf0{bottom:251.166667pt;}
.y8a{bottom:252.388356pt;}
.y8b{bottom:256.221427pt;}
.y124{bottom:259.904000pt;}
.yb4{bottom:259.977333pt;}
.y28{bottom:260.142667pt;}
.y80{bottom:260.338667pt;}
.y89{bottom:263.035775pt;}
.yef{bottom:267.106667pt;}
.y123{bottom:271.858667pt;}
.yb3{bottom:275.917333pt;}
.y27{bottom:276.082667pt;}
.y7f{bottom:276.278667pt;}
.y51{bottom:278.609333pt;}
.yee{bottom:283.046667pt;}
.y122{bottom:283.813333pt;}
.y88{bottom:285.182460pt;}
.yb2{bottom:291.857333pt;}
.y26{bottom:292.022667pt;}
.y7e{bottom:292.218667pt;}
.y50{bottom:294.549333pt;}
.y121{bottom:295.769333pt;}
.yed{bottom:298.986667pt;}
.y120{bottom:307.724000pt;}
.yb1{bottom:307.797333pt;}
.y25{bottom:307.962667pt;}
.y7d{bottom:308.158667pt;}
.y4f{bottom:310.490667pt;}
.yec{bottom:314.926667pt;}
.y11f{bottom:319.680000pt;}
.yb0{bottom:323.737333pt;}
.y7c{bottom:324.098667pt;}
.y24{bottom:324.332000pt;}
.y4e{bottom:326.430667pt;}
.yeb{bottom:330.866667pt;}
.y11e{bottom:331.634667pt;}
.yaf{bottom:339.677333pt;}
.y7b{bottom:340.040000pt;}
.y23{bottom:340.272000pt;}
.y4d{bottom:342.370667pt;}
.y11d{bottom:343.589333pt;}
.yea{bottom:346.808000pt;}
.y11c{bottom:355.545333pt;}
.yae{bottom:355.618667pt;}
.y7a{bottom:355.980000pt;}
.y22{bottom:356.212000pt;}
.y4c{bottom:358.310667pt;}
.ye9{bottom:362.748000pt;}
.y11b{bottom:367.500000pt;}
.yad{bottom:371.558667pt;}
.y79{bottom:371.920000pt;}
.y21{bottom:372.152000pt;}
.y4b{bottom:374.250667pt;}
.ye8{bottom:378.688000pt;}
.y11a{bottom:379.454667pt;}
.yac{bottom:387.498667pt;}
.y78{bottom:387.860000pt;}
.y20{bottom:388.093333pt;}
.y4a{bottom:390.190667pt;}
.y119{bottom:391.410667pt;}
.ye7{bottom:394.540000pt;}
.y118{bottom:403.365333pt;}
.yab{bottom:403.438667pt;}
.y77{bottom:403.996000pt;}
.y1f{bottom:404.033333pt;}
.y49{bottom:406.132000pt;}
.ye6{bottom:410.480000pt;}
.y117{bottom:415.321333pt;}
.yaa{bottom:419.378667pt;}
.y76{bottom:419.936000pt;}
.y1e{bottom:419.973333pt;}
.y48{bottom:422.072000pt;}
.ye5{bottom:426.420000pt;}
.y116{bottom:427.276000pt;}
.ya9{bottom:435.318667pt;}
.y75{bottom:435.876000pt;}
.y1d{bottom:435.913333pt;}
.y115{bottom:439.230667pt;}
.y47{bottom:440.538667pt;}
.ye4{bottom:442.360000pt;}
.ya8{bottom:451.260000pt;}
.y74{bottom:451.817333pt;}
.y1c{bottom:451.853333pt;}
.y46{bottom:456.478667pt;}
.ye3{bottom:458.300000pt;}
.y114{bottom:458.957333pt;}
.ya7{bottom:467.200000pt;}
.y73{bottom:467.757333pt;}
.y1b{bottom:467.793333pt;}
.y45{bottom:472.418667pt;}
.ye2{bottom:474.241333pt;}
.ya6{bottom:483.140000pt;}
.y72{bottom:483.697333pt;}
.y1a{bottom:483.734667pt;}
.y113{bottom:483.864000pt;}
.y44{bottom:488.360000pt;}
.ye1{bottom:490.181333pt;}
.ya5{bottom:499.080000pt;}
.y71{bottom:499.637333pt;}
.y19{bottom:499.674667pt;}
.y112{bottom:499.804000pt;}
.y43{bottom:504.300000pt;}
.ye0{bottom:510.217333pt;}
.ya4{bottom:515.020000pt;}
.y70{bottom:515.577333pt;}
.y111{bottom:515.744000pt;}
.y42{bottom:520.240000pt;}
.y18{bottom:522.369333pt;}
.y110{bottom:531.684000pt;}
.ydf{bottom:534.592000pt;}
.ya3{bottom:534.978667pt;}
.y41{bottom:536.180000pt;}
.y6f{bottom:536.388000pt;}
.y10f{bottom:547.624000pt;}
.yde{bottom:550.532000pt;}
.y40{bottom:552.120000pt;}
.ya2{bottom:558.889333pt;}
.y6e{bottom:562.957333pt;}
.y10e{bottom:563.565333pt;}
.ydd{bottom:566.472000pt;}
.y17{bottom:567.892000pt;}
.y3f{bottom:568.061333pt;}
.ya1{bottom:574.830667pt;}
.y6d{bottom:578.898667pt;}
.y10d{bottom:579.505333pt;}
.y16{bottom:581.604000pt;}
.ydc{bottom:582.413333pt;}
.ya0{bottom:590.770667pt;}
.y6c{bottom:594.838667pt;}
.y15{bottom:594.888000pt;}
.y10c{bottom:595.445333pt;}
.ydb{bottom:598.353333pt;}
.y3e{bottom:601.330667pt;}
.y9f{bottom:606.710667pt;}
.y14{bottom:608.170667pt;}
.y6b{bottom:610.778667pt;}
.y10b{bottom:611.385333pt;}
.yda{bottom:614.293333pt;}
.y13{bottom:621.454667pt;}
.y33{bottom:622.057592pt;}
.y9e{bottom:622.650667pt;}
.y6a{bottom:626.718667pt;}
.y10a{bottom:627.325333pt;}
.yd9{bottom:630.233333pt;}
.y12{bottom:634.738667pt;}
.y9d{bottom:638.590667pt;}
.y69{bottom:642.658667pt;}
.yd8{bottom:646.173333pt;}
.y109{bottom:647.450667pt;}
.y11{bottom:648.021333pt;}
.y68{bottom:658.598667pt;}
.y10{bottom:661.305333pt;}
.yd7{bottom:662.113333pt;}
.y9c{bottom:663.353333pt;}
.y108{bottom:672.357333pt;}
.y67{bottom:674.540000pt;}
.yf{bottom:674.588000pt;}
.yd6{bottom:678.054667pt;}
.y87{bottom:686.125733pt;}
.ye{bottom:687.872000pt;}
.y107{bottom:688.297333pt;}
.y66{bottom:690.480000pt;}
.yd5{bottom:693.994667pt;}
.yd{bottom:701.156000pt;}
.y106{bottom:704.237333pt;}
.y65{bottom:706.420000pt;}
.y39{bottom:708.248882pt;}
.yd4{bottom:712.022667pt;}
.yc{bottom:714.438667pt;}
.y105{bottom:720.177333pt;}
.y64{bottom:722.360000pt;}
.yb{bottom:727.722667pt;}
.yb8{bottom:733.397320pt;}
.y104{bottom:736.117333pt;}
.y63{bottom:738.300000pt;}
.ya{bottom:741.006667pt;}
.y103{bottom:752.057333pt;}
.y62{bottom:754.241333pt;}
.y9{bottom:754.289333pt;}
.y102{bottom:767.998667pt;}
.y61{bottom:770.181333pt;}
.y101{bottom:783.938667pt;}
.y60{bottom:786.121333pt;}
.y8{bottom:798.850667pt;}
.y5f{bottom:802.061333pt;}
.y100{bottom:802.912000pt;}
.yf9{bottom:812.645872pt;}
.y7{bottom:815.289333pt;}
.y5e{bottom:823.360000pt;}
.y6{bottom:831.726667pt;}
.y5{bottom:848.165333pt;}
.y5d{bottom:849.930667pt;}
.y4{bottom:864.892000pt;}
.y5c{bottom:865.870667pt;}
.y5b{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.y5a{bottom:897.752000pt;}
.y59{bottom:913.692000pt;}
.y2{bottom:923.830667pt;}
.y58{bottom:929.632000pt;}
.y57{bottom:945.572000pt;}
.y1{bottom:961.024000pt;}
.y56{bottom:961.512000pt;}
.y55{bottom:977.453333pt;}
.h1c{height:17.466454pt;}
.h24{height:17.481118pt;}
.h1d{height:18.227903pt;}
.hb{height:18.427913pt;}
.he{height:18.428019pt;}
.ha{height:18.546345pt;}
.h22{height:19.423464pt;}
.h1b{height:19.630049pt;}
.h16{height:20.842322pt;}
.h20{height:21.933807pt;}
.hc{height:22.255614pt;}
.h23{height:23.308157pt;}
.h15{height:23.447612pt;}
.h18{height:26.052902pt;}
.h25{height:29.244917pt;}
.h17{height:31.263483pt;}
.h10{height:31.729167pt;}
.h8{height:33.187635pt;}
.h7{height:33.426739pt;}
.h12{height:36.449833pt;}
.h5{height:36.556100pt;}
.h6{height:36.822767pt;}
.h1e{height:36.874903pt;}
.h11{height:38.937500pt;}
.h19{height:39.850400pt;}
.h3{height:40.211820pt;}
.h4{height:40.499820pt;}
.h2{height:40.505154pt;}
.hf{height:40.520833pt;}
.h14{height:41.684644pt;}
.hd{height:41.904000pt;}
.h1f{height:44.869197pt;}
.h1{height:87.734824pt;}
.h9{height:141.426000pt;}
.h21{height:173.913800pt;}
.h1a{height:252.257280pt;}
.h13{height:298.840800pt;}
.h0{height:1056.000000pt;}
.w2{width:85.693680pt;}
.w3{width:261.485700pt;}
.w1{width:275.649750pt;}
.w5{width:291.682200pt;}
.w4{width:310.887390pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x21{left:1.948339pt;}
.x14{left:4.862340pt;}
.x30{left:6.013965pt;}
.x45{left:8.901942pt;}
.x16{left:9.852911pt;}
.x3a{left:11.568342pt;}
.x2f{left:12.675254pt;}
.x26{left:16.934234pt;}
.x27{left:18.711032pt;}
.x1b{left:22.666667pt;}
.x3d{left:41.954118pt;}
.x1a{left:54.666667pt;}
.x43{left:57.433332pt;}
.xd{left:65.285333pt;}
.x2a{left:68.860517pt;}
.x1e{left:71.821809pt;}
.x28{left:76.134024pt;}
.x34{left:77.103497pt;}
.xc{left:78.569333pt;}
.x23{left:79.527917pt;}
.x22{left:80.805805pt;}
.x31{left:83.900013pt;}
.x29{left:85.936293pt;}
.x35{left:91.688794pt;}
.x12{left:95.183311pt;}
.x10{left:98.063561pt;}
.x1c{left:102.181333pt;}
.x11{left:108.788701pt;}
.x3f{left:115.325333pt;}
.x1{left:118.257333pt;}
.x47{left:119.777378pt;}
.x5{left:121.809333pt;}
.x46{left:127.109707pt;}
.x44{left:131.257380pt;}
.x3{left:132.372000pt;}
.x39{left:134.538856pt;}
.x37{left:138.374027pt;}
.x4{left:140.496000pt;}
.x2b{left:142.860230pt;}
.x2c{left:144.350870pt;}
.x38{left:149.540715pt;}
.x2{left:156.784000pt;}
.x20{left:160.854419pt;}
.x1f{left:165.539283pt;}
.x40{left:169.661333pt;}
.x41{left:172.484000pt;}
.xe{left:180.826667pt;}
.x36{left:187.539170pt;}
.x24{left:191.465807pt;}
.x2e{left:194.493707pt;}
.x25{left:195.904460pt;}
.x2d{left:202.199755pt;}
.x13{left:203.694821pt;}
.x3e{left:231.124578pt;}
.x3b{left:269.670918pt;}
.x3c{left:277.795434pt;}
.x7{left:296.965333pt;}
.x8{left:306.788000pt;}
.x6{left:313.970667pt;}
.xa{left:331.512000pt;}
.x9{left:339.684000pt;}
.x33{left:395.279987pt;}
.x19{left:415.970667pt;}
.x4d{left:421.284000pt;}
.x18{left:429.253333pt;}
.x48{left:432.290667pt;}
.x42{left:435.176900pt;}
.x4e{left:440.316000pt;}
.xf{left:445.657917pt;}
.x1d{left:452.632850pt;}
.x4b{left:460.774667pt;}
.xb{left:488.057333pt;}
.x15{left:490.730907pt;}
.x32{left:499.856000pt;}
.x17{left:508.789333pt;}
.x49{left:525.413333pt;}
.x4c{left:546.149333pt;}
.x4a{left:733.008000pt;}
}




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