
    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_ec5a41dc104dbc43bf4cb0e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_cf64df3a554ba066d93fbf6c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.859000;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_01d7c2bf94af5e7223ce35c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.686000;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_de93f0e496e8d904030bc287.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913000;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_6a5949564ccbf5e78a6c8a5c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.623000;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_f76cef3142e2b4afe9ffffd0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_8b6a861d96a3d86de997975d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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_f93f49cf85dd9d67817e4ce0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_574e30ce4e93f1abab244424.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.628000;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_d3ae6f94c074b360451fb3a2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.999000;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_e3e9ce8c4fcaa91a5b8f31f1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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);}
.v2{vertical-align:-22.855143px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.029301px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.988681px;}
.ls0{letter-spacing:2.991065px;}
.ls2{letter-spacing:3.168265px;}
.ls4{letter-spacing:5.918080px;}
.ls8{letter-spacing:7.412545px;}
.ls6{letter-spacing:7.771217px;}
.ls3{letter-spacing:8.488560px;}
.ls9{letter-spacing:16.917341px;}
.ls5{letter-spacing:29.891672px;}
.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;}
}
.ws7c{word-spacing:-17.684418px;}
.ws2c{word-spacing:-16.606492px;}
.ws67{word-spacing:-15.360211px;}
.ws77{word-spacing:-3.275867px;}
.wsb0{word-spacing:-2.558524px;}
.ws64{word-spacing:-2.438966px;}
.ws82{word-spacing:-2.394149px;}
.wsc1{word-spacing:-2.379188px;}
.ws7a{word-spacing:-2.080295px;}
.ws89{word-spacing:-1.960738px;}
.ws10{word-spacing:-1.841181px;}
.ws13{word-spacing:-1.721623px;}
.ws72{word-spacing:-1.602066px;}
.ws96{word-spacing:-1.422730px;}
.ws71{word-spacing:-1.362952px;}
.ws8f{word-spacing:-1.243395px;}
.ws40{word-spacing:-1.123837px;}
.ws42{word-spacing:-0.884723px;}
.ws90{word-spacing:-0.765166px;}
.wsbd{word-spacing:-0.645609px;}
.wsb9{word-spacing:-0.585830px;}
.wsc9{word-spacing:-0.286937px;}
.ws46{word-spacing:-0.227159px;}
.ws30{word-spacing:-0.167380px;}
.wsac{word-spacing:-0.059779px;}
.wsa9{word-spacing:-0.047823px;}
.ws25{word-spacing:0.000000px;}
.ws54{word-spacing:0.011956px;}
.ws62{word-spacing:0.071734px;}
.ws8{word-spacing:0.242105px;}
.ws8e{word-spacing:0.310849px;}
.ws8d{word-spacing:0.430406px;}
.ws55{word-spacing:0.549963px;}
.ws5d{word-spacing:0.729299px;}
.wsb7{word-spacing:0.908635px;}
.ws19{word-spacing:0.968413px;}
.ws6a{word-spacing:1.049121px;}
.wsc7{word-spacing:1.087970px;}
.ws1a{word-spacing:1.147749px;}
.ws14{word-spacing:1.207527px;}
.ws70{word-spacing:1.264326px;}
.ws97{word-spacing:1.267306px;}
.ws98{word-spacing:1.327085px;}
.wsc8{word-spacing:1.386863px;}
.ws61{word-spacing:1.446642px;}
.ws6{word-spacing:1.479530px;}
.ws56{word-spacing:1.566199px;}
.ws2a{word-spacing:1.625978px;}
.wsc6{word-spacing:1.745535px;}
.wsbf{word-spacing:1.805313px;}
.ws3d{word-spacing:1.865092px;}
.wsa4{word-spacing:1.924871px;}
.ws91{word-spacing:2.044428px;}
.ws5f{word-spacing:2.104206px;}
.wsc3{word-spacing:2.163985px;}
.ws32{word-spacing:2.223764px;}
.wsb{word-spacing:2.232745px;}
.ws87{word-spacing:2.283542px;}
.ws4f{word-spacing:2.403099px;}
.wsba{word-spacing:2.462878px;}
.wsf{word-spacing:2.582435px;}
.ws5{word-spacing:2.609353px;}
.ws78{word-spacing:2.642214px;}
.ws18{word-spacing:2.821549px;}
.ws2f{word-spacing:2.941107px;}
.wsd{word-spacing:3.039762px;}
.ws74{word-spacing:3.060664px;}
.ws68{word-spacing:3.093563px;}
.ws9{word-spacing:3.147364px;}
.ws35{word-spacing:3.240000px;}
.ws20{word-spacing:3.299778px;}
.ws22{word-spacing:3.359557px;}
.wsc4{word-spacing:3.419335px;}
.ws4d{word-spacing:3.479114px;}
.ws66{word-spacing:3.513211px;}
.ws3{word-spacing:3.577772px;}
.ws58{word-spacing:4.256236px;}
.ws1e{word-spacing:4.316014px;}
.wscc{word-spacing:4.375793px;}
.ws31{word-spacing:4.435571px;}
.wsa{word-spacing:4.438590px;}
.ws1{word-spacing:4.483424px;}
.ws11{word-spacing:4.495350px;}
.ws45{word-spacing:4.555128px;}
.ws1b{word-spacing:4.794243px;}
.wsab{word-spacing:4.854021px;}
.ws47{word-spacing:4.973579px;}
.ws48{word-spacing:5.033357px;}
.ws4b{word-spacing:5.212693px;}
.ws5e{word-spacing:5.272472px;}
.ws7{word-spacing:5.353208px;}
.ws39{word-spacing:5.380094px;}
.ws8b{word-spacing:5.392029px;}
.wsb5{word-spacing:5.451807px;}
.ws99{word-spacing:5.511586px;}
.wsca{word-spacing:5.631143px;}
.ws41{word-spacing:5.750700px;}
.ws63{word-spacing:5.870257px;}
.ws51{word-spacing:5.930036px;}
.ws52{word-spacing:5.989815px;}
.wsaf{word-spacing:6.049593px;}
.wsc2{word-spacing:6.109372px;}
.ws4e{word-spacing:6.169150px;}
.ws9f{word-spacing:6.228929px;}
.ws94{word-spacing:6.288708px;}
.ws0{word-spacing:6.456098px;}
.ws3c{word-spacing:6.468043px;}
.wsc{word-spacing:6.488626px;}
.ws73{word-spacing:6.527822px;}
.ws1c{word-spacing:6.587600px;}
.ws12{word-spacing:6.647379px;}
.ws1f{word-spacing:6.707158px;}
.ws88{word-spacing:6.766936px;}
.wsb1{word-spacing:6.826715px;}
.ws29{word-spacing:6.886493px;}
.wsc5{word-spacing:6.946272px;}
.ws16{word-spacing:7.006051px;}
.ws24{word-spacing:7.065829px;}
.ws57{word-spacing:7.125608px;}
.ws9d{word-spacing:7.304944px;}
.ws93{word-spacing:7.424501px;}
.ws2d{word-spacing:7.484279px;}
.ws44{word-spacing:7.544058px;}
.ws27{word-spacing:7.603836px;}
.ws86{word-spacing:7.666655px;}
.ws75{word-spacing:7.783172px;}
.wsae{word-spacing:7.783224px;}
.ws4c{word-spacing:7.842951px;}
.wsbb{word-spacing:7.902729px;}
.ws36{word-spacing:7.962508px;}
.ws17{word-spacing:8.082065px;}
.ws15{word-spacing:8.141844px;}
.ws59{word-spacing:8.261401px;}
.wsb8{word-spacing:8.321180px;}
.wsb6{word-spacing:8.380958px;}
.wsa7{word-spacing:8.440737px;}
.ws8a{word-spacing:8.500515px;}
.wsb2{word-spacing:8.560294px;}
.ws5c{word-spacing:8.620073px;}
.wsa2{word-spacing:8.739630px;}
.wsc0{word-spacing:8.918965px;}
.wsbc{word-spacing:9.158080px;}
.wsb3{word-spacing:9.217858px;}
.ws9a{word-spacing:9.277637px;}
.ws4{word-spacing:9.280688px;}
.ws92{word-spacing:9.397194px;}
.ws3a{word-spacing:9.456973px;}
.ws3e{word-spacing:9.516751px;}
.ws5b{word-spacing:9.576530px;}
.ws43{word-spacing:9.696087px;}
.ws2b{word-spacing:9.755866px;}
.wsbe{word-spacing:9.935201px;}
.ws2e{word-spacing:10.114537px;}
.ws34{word-spacing:10.174316px;}
.wsa5{word-spacing:10.234094px;}
.ws6e{word-spacing:10.356710px;}
.ws8c{word-spacing:10.532987px;}
.ws50{word-spacing:10.592766px;}
.ws3b{word-spacing:10.831880px;}
.ws3f{word-spacing:11.070995px;}
.wsad{word-spacing:11.130773px;}
.ws1d{word-spacing:11.190552px;}
.ws76{word-spacing:11.310109px;}
.ws37{word-spacing:11.369888px;}
.ws38{word-spacing:11.489445px;}
.ws33{word-spacing:11.668781px;}
.wsa3{word-spacing:11.788338px;}
.ws4a{word-spacing:12.027452px;}
.ws53{word-spacing:12.087231px;}
.wsb4{word-spacing:12.206788px;}
.wsa6{word-spacing:12.266566px;}
.ws6f{word-spacing:12.562554px;}
.ws79{word-spacing:12.565459px;}
.ws5a{word-spacing:12.625238px;}
.wscb{word-spacing:12.924131px;}
.ws28{word-spacing:12.983909px;}
.ws9b{word-spacing:13.281541px;}
.ws80{word-spacing:13.584775px;}
.wsa0{word-spacing:14.938586px;}
.wsa8{word-spacing:16.499481px;}
.ws85{word-spacing:16.759040px;}
.ws7f{word-spacing:16.974244px;}
.ws60{word-spacing:17.991251px;}
.ws95{word-spacing:19.100018px;}
.wsaa{word-spacing:21.406897px;}
.ws83{word-spacing:21.601138px;}
.ws2{word-spacing:22.219850px;}
.ws9e{word-spacing:22.810784px;}
.ws49{word-spacing:22.835421px;}
.ws23{word-spacing:24.569000px;}
.wsa1{word-spacing:25.276806px;}
.ws7b{word-spacing:26.701481px;}
.ws9c{word-spacing:27.498151px;}
.ws26{word-spacing:27.797044px;}
.ws21{word-spacing:28.335051px;}
.ws7e{word-spacing:39.290936px;}
.ws6b{word-spacing:45.596424px;}
.ws69{word-spacing:63.135579px;}
.ws6c{word-spacing:63.673590px;}
.wse{word-spacing:69.941222px;}
.ws81{word-spacing:78.953099px;}
.ws65{word-spacing:84.831350px;}
.ws7d{word-spacing:92.500214px;}
.ws84{word-spacing:113.816206px;}
.ws6d{word-spacing:121.886369px;}
._35{margin-left:-30.152681px;}
._34{margin-left:-28.930388px;}
._13{margin-left:-8.091661px;}
._19{margin-left:-6.743070px;}
._7{margin-left:-5.022716px;}
._0{margin-left:-3.202225px;}
._1{margin-left:-1.422550px;}
._2{width:1.560232px;}
._3{width:3.012861px;}
._2b{width:4.122273px;}
._9{width:13.856496px;}
._30{width:15.243540px;}
._17{width:17.112511px;}
._1f{width:18.164253px;}
._36{width:19.643786px;}
._6{width:20.943868px;}
._15{width:22.069055px;}
._33{width:23.289377px;}
._5{width:24.309615px;}
._a{width:25.573100px;}
._d{width:26.599023px;}
._11{width:27.746952px;}
._2f{width:28.930388px;}
._8{width:30.026233px;}
._1b{width:31.072890px;}
._1c{width:32.340217px;}
._16{width:33.463874px;}
._1e{width:34.533900px;}
._2e{width:35.867393px;}
._f{width:36.932412px;}
._c{width:38.206658px;}
._31{width:39.447880px;}
._b{width:40.559401px;}
._21{width:41.940297px;}
._4{width:43.010792px;}
._32{width:44.465583px;}
._18{width:45.598927px;}
._10{width:46.926192px;}
._1d{width:48.414669px;}
._e{width:49.902985px;}
._2c{width:51.558661px;}
._2d{width:53.364155px;}
._20{width:54.518073px;}
._28{width:56.813951px;}
._37{width:63.723976px;}
._1a{width:68.745377px;}
._27{width:74.169962px;}
._14{width:80.701635px;}
._2a{width:92.484074px;}
._12{width:96.841692px;}
._24{width:109.472250px;}
._25{width:119.169414px;}
._26{width:148.002284px;}
._29{width:157.655314px;}
._23{width:165.007943px;}
._22{width:222.361326px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.867393px;}
.fs2{font-size:47.822991px;}
.fs4{font-size:53.801090px;}
.fs6{font-size:59.778589px;}
.fs7{font-size:65.454600px;}
.fs1{font-size:71.734787px;}
.fs5{font-size:86.081504px;}
.fs0{font-size:103.297565px;}
.y0{bottom:0.000000px;}
.y31{bottom:22.740000px;}
.yf8{bottom:107.977657px;}
.y13b{bottom:113.845950px;}
.y8c{bottom:117.546635px;}
.yad{bottom:123.590437px;}
.y30{bottom:125.170016px;}
.yf7{bottom:125.911054px;}
.y13a{bottom:131.779347px;}
.y166{bottom:133.858451px;}
.y8b{bottom:135.480032px;}
.yda{bottom:140.833800px;}
.yac{bottom:141.523834px;}
.y2f{bottom:143.104913px;}
.y139{bottom:149.712744px;}
.y10c{bottom:149.780247px;}
.y165{bottom:151.791847px;}
.y8a{bottom:153.413429px;}
.yf6{bottom:154.649490px;}
.yd9{bottom:158.767196px;}
.yab{bottom:159.458731px;}
.y2e{bottom:161.038310px;}
.y138{bottom:167.646140px;}
.y10b{bottom:167.713644px;}
.y89{bottom:171.346825px;}
.yf5{bottom:172.582887px;}
.yaa{bottom:177.392127px;}
.y164{bottom:181.682342px;}
.y137{bottom:185.579537px;}
.y10a{bottom:185.647040px;}
.yd8{bottom:186.352075px;}
.y88{bottom:189.281722px;}
.y2d{bottom:190.927304px;}
.y5c{bottom:193.942455px;}
.ya9{bottom:195.325524px;}
.y163{bottom:199.615739px;}
.yf4{bottom:201.321324px;}
.y136{bottom:203.514433px;}
.y109{bottom:203.580437px;}
.y87{bottom:207.215119px;}
.y2c{bottom:208.860701px;}
.y5b{bottom:211.875852px;}
.ya8{bottom:213.258921px;}
.yf3{bottom:219.256221px;}
.y135{bottom:221.447830px;}
.y86{bottom:225.148515px;}
.yd7{bottom:228.187667px;}
.y162{bottom:229.504733px;}
.y5a{bottom:229.810748px;}
.y108{bottom:231.165316px;}
.ya7{bottom:231.192317px;}
.y2b{bottom:238.751195px;}
.y134{bottom:239.381227px;}
.y85{bottom:243.081912px;}
.yd6{bottom:246.121064px;}
.yf2{bottom:246.844100px;}
.y161{bottom:247.438130px;}
.y59{bottom:247.744145px;}
.ya6{bottom:249.125714px;}
.y2a{bottom:256.684592px;}
.y133{bottom:257.314623px;}
.y84{bottom:261.015308px;}
.yd5{bottom:264.054460px;}
.yf1{bottom:264.777496px;}
.y160{bottom:265.371526px;}
.ya5{bottom:267.060611px;}
.y107{bottom:273.000908px;}
.y29{bottom:274.617989px;}
.y132{bottom:275.248020px;}
.y58{bottom:275.329024px;}
.y83{bottom:278.948705px;}
.yf0{bottom:282.710893px;}
.ya4{bottom:284.994007px;}
.y106{bottom:290.934304px;}
.yd4{bottom:291.639340px;}
.y28{bottom:292.551385px;}
.y131{bottom:293.181417px;}
.y15f{bottom:295.262021px;}
.y82{bottom:296.883602px;}
.yef{bottom:300.644290px;}
.ya3{bottom:302.927404px;}
.y27{bottom:310.484782px;}
.y15e{bottom:313.195417px;}
.y81{bottom:314.816998px;}
.y57{bottom:317.164616px;}
.yee{bottom:318.577686px;}
.y105{bottom:320.823299px;}
.ya2{bottom:320.860801px;}
.y130{bottom:327.924654px;}
.y26{bottom:328.418178px;}
.y15d{bottom:331.128814px;}
.y80{bottom:332.750395px;}
.yd3{bottom:333.474931px;}
.y56{bottom:335.098012px;}
.yed{bottom:336.511083px;}
.y104{bottom:338.756695px;}
.y25{bottom:346.353075px;}
.ya1{bottom:348.445680px;}
.y7f{bottom:350.683792px;}
.yd2{bottom:351.408328px;}
.y55{bottom:353.031409px;}
.yec{bottom:354.445980px;}
.y15c{bottom:361.017808px;}
.y24{bottom:364.286472px;}
.y7e{bottom:368.617188px;}
.y103{bottom:368.647190px;}
.yd1{bottom:369.341724px;}
.y54{bottom:370.964806px;}
.yeb{bottom:372.379376px;}
.y12f{bottom:377.346125px;}
.y15b{bottom:378.951205px;}
.y23{bottom:382.219868px;}
.y7d{bottom:386.552085px;}
.y102{bottom:386.580586px;}
.ya0{bottom:390.281271px;}
.yea{bottom:390.312773px;}
.y12e{bottom:395.279521px;}
.y15a{bottom:396.886102px;}
.yd0{bottom:396.926604px;}
.y53{bottom:398.549685px;}
.y22{bottom:400.153265px;}
.y7c{bottom:404.485482px;}
.y101{bottom:404.513983px;}
.y9f{bottom:408.214668px;}
.ye9{bottom:408.246170px;}
.y12d{bottom:413.212918px;}
.y159{bottom:414.819498px;}
.y21{bottom:418.086662px;}
.y7b{bottom:422.418878px;}
.y100{bottom:422.447380px;}
.y9e{bottom:426.148065px;}
.y12c{bottom:431.146315px;}
.ye8{bottom:435.831049px;}
.y20{bottom:436.020058px;}
.ycf{bottom:438.762195px;}
.yff{bottom:440.380776px;}
.y52{bottom:440.385276px;}
.y9d{bottom:444.081461px;}
.y158{bottom:444.708493px;}
.y12b{bottom:449.079711px;}
.y7a{bottom:450.003757px;}
.y1f{bottom:453.954955px;}
.yce{bottom:456.695592px;}
.yfe{bottom:458.315673px;}
.y51{bottom:458.318673px;}
.y157{bottom:462.641889px;}
.y12a{bottom:467.014608px;}
.y1e{bottom:471.888352px;}
.yfd{bottom:476.249070px;}
.y50{bottom:476.252070px;}
.ye7{bottom:477.171616px;}
.y156{bottom:480.575286px;}
.ycd{bottom:484.280471px;}
.y1d{bottom:489.821748px;}
.y79{bottom:491.839349px;}
.yfc{bottom:494.182466px;}
.y4f{bottom:494.185466px;}
.y9c{bottom:494.446479px;}
.y129{bottom:494.599487px;}
.ye6{bottom:495.105012px;}
.y179{bottom:500.286271px;}
.y1c{bottom:507.755145px;}
.y78{bottom:509.772746px;}
.y155{bottom:510.465780px;}
.y9b{bottom:510.884301px;}
.yfb{bottom:512.115863px;}
.ye5{bottom:513.038409px;}
.y178{bottom:518.219668px;}
.y4e{bottom:521.771846px;}
.y1b{bottom:525.688541px;}
.ycc{bottom:526.116063px;}
.y77{bottom:527.706142px;}
.y9a{bottom:527.922153px;}
.y154{bottom:528.399177px;}
.ye4{bottom:530.971806px;}
.y128{bottom:533.445429px;}
.y1a{bottom:543.623438px;}
.ycb{bottom:544.049459px;}
.y99{bottom:544.361475px;}
.y76{bottom:545.639539px;}
.y153{bottom:546.332574px;}
.y177{bottom:548.110162px;}
.ye3{bottom:548.905202px;}
.y127{bottom:551.378826px;}
.yfa{bottom:559.855750px;}
.y98{bottom:560.800797px;}
.y19{bottom:561.556835px;}
.yca{bottom:561.982856px;}
.y75{bottom:563.572936px;}
.y4d{bottom:563.605937px;}
.y176{bottom:566.043559px;}
.ye2{bottom:566.838599px;}
.y126{bottom:569.312222px;}
.y152{bottom:576.221568px;}
.y97{bottom:577.837149px;}
.y18{bottom:579.490231px;}
.yc9{bottom:579.916253px;}
.y74{bottom:581.507832px;}
.y4c{bottom:581.539334px;}
.ye1{bottom:584.773496px;}
.y125{bottom:587.245619px;}
.y151{bottom:594.154965px;}
.y96{bottom:594.276471px;}
.y175{bottom:595.932553px;}
.y17{bottom:597.423628px;}
.yc8{bottom:597.851149px;}
.y4b{bottom:599.474230px;}
.ye0{bottom:602.706892px;}
.y124{bottom:605.180516px;}
.y73{bottom:609.092711px;}
.y95{bottom:610.715793px;}
.y174{bottom:613.865950px;}
.yc7{bottom:615.784546px;}
.y4a{bottom:617.407627px;}
.ydf{bottom:620.640289px;}
.y123{bottom:623.113912px;}
.y150{bottom:624.045459px;}
.y94{bottom:627.752144px;}
.y16{bottom:632.165365px;}
.yc6{bottom:633.717943px;}
.yde{bottom:638.573685px;}
.y14f{bottom:641.978856px;}
.y173{bottom:643.754944px;}
.y93{bottom:644.191466px;}
.y49{bottom:644.992506px;}
.y72{bottom:647.938654px;}
.y122{bottom:650.698792px;}
.ydd{bottom:656.507082px;}
.y92{bottom:660.630788px;}
.y172{bottom:661.689841px;}
.y71{bottom:665.872050px;}
.yc5{bottom:668.459680px;}
.y14e{bottom:671.867850px;}
.ydc{bottom:674.440479px;}
.y91{bottom:677.667140px;}
.y15{bottom:681.586836px;}
.y70{bottom:683.805447px;}
.y48{bottom:684.001957px;}
.y121{bottom:689.544734px;}
.y14d{bottom:689.801247px;}
.y171{bottom:691.578835px;}
.y90{bottom:694.106462px;}
.y6f{bottom:701.738843px;}
.y14{bottom:706.530083px;}
.y120{bottom:707.478130px;}
.y14c{bottom:707.736143px;}
.y170{bottom:709.512232px;}
.y8f{bottom:711.442829px;}
.yc4{bottom:717.881151px;}
.y6e{bottom:719.672240px;}
.ydb{bottom:719.879250px;}
.y13{bottom:722.969405px;}
.y11f{bottom:725.411527px;}
.y47{bottom:733.423428px;}
.yc3{bottom:735.814547px;}
.y14b{bottom:737.625138px;}
.y16f{bottom:739.401226px;}
.y12{bottom:739.408727px;}
.y11e{bottom:743.344924px;}
.y6d{bottom:747.258619px;}
.y46{bottom:751.356824px;}
.yc2{bottom:753.749444px;}
.y14a{bottom:755.558534px;}
.y11{bottom:755.848049px;}
.y16e{bottom:757.336123px;}
.y8e{bottom:759.265220px;}
.y11d{bottom:761.279820px;}
.y45{bottom:769.291721px;}
.yc1{bottom:771.682840px;}
.y10{bottom:772.287371px;}
.y149{bottom:773.491931px;}
.y8d{bottom:777.200116px;}
.y11c{bottom:779.213217px;}
.y6c{bottom:786.104562px;}
.y44{bottom:787.225118px;}
.yf{bottom:788.726693px;}
.yc0{bottom:789.616237px;}
.y11b{bottom:797.146614px;}
.y6b{bottom:804.037958px;}
.y43{bottom:805.158514px;}
.ye{bottom:805.166015px;}
.ybf{bottom:807.549634px;}
.y148{bottom:809.064709px;}
.y11a{bottom:815.080010px;}
.yd{bottom:821.605337px;}
.y6a{bottom:821.971355px;}
.y42{bottom:823.091911px;}
.ybe{bottom:825.483030px;}
.y16d{bottom:835.047509px;}
.yc{bottom:838.044658px;}
.y69{bottom:839.904751px;}
.y41{bottom:841.025307px;}
.y119{bottom:842.666389px;}
.ybd{bottom:843.416427px;}
.y16c{bottom:852.980905px;}
.y68{bottom:857.838148px;}
.y147{bottom:858.486180px;}
.y40{bottom:858.958704px;}
.ybc{bottom:861.351324px;}
.yb{bottom:861.469830px;}
.y67{bottom:875.773045px;}
.y146{bottom:876.419577px;}
.y3f{bottom:876.893601px;}
.y118{bottom:881.510832px;}
.y16b{bottom:882.871400px;}
.y145{bottom:894.352974px;}
.y3e{bottom:894.826997px;}
.y117{bottom:899.445728px;}
.ya{bottom:900.804796px;}
.y66{bottom:903.357924px;}
.ybb{bottom:911.714842px;}
.y144{bottom:912.286370px;}
.y3d{bottom:912.760394px;}
.y9{bottom:917.244118px;}
.y116{bottom:917.379125px;}
.yf9{bottom:921.495331px;}
.yba{bottom:928.154164px;}
.y143{bottom:930.221267px;}
.y3c{bottom:930.693791px;}
.y115{bottom:935.312522px;}
.y8{bottom:939.397226px;}
.y65{bottom:942.203866px;}
.yb9{bottom:945.190515px;}
.y142{bottom:948.154664px;}
.y3b{bottom:948.627187px;}
.y7{bottom:950.122762px;}
.y114{bottom:953.245918px;}
.y64{bottom:960.137263px;}
.yb8{bottom:961.629837px;}
.y141{bottom:966.088060px;}
.y3a{bottom:966.560584px;}
.y113{bottom:971.179315px;}
.y6{bottom:972.274370px;}
.yb7{bottom:978.069159px;}
.y63{bottom:978.070659px;}
.y16a{bottom:978.517682px;}
.y5{bottom:982.999906px;}
.y140{bottom:984.021457px;}
.y39{bottom:984.495481px;}
.y112{bottom:989.112711px;}
.yb6{bottom:995.105511px;}
.y169{bottom:996.451078px;}
.y13f{bottom:1001.954854px;}
.y38{bottom:1002.428877px;}
.y4{bottom:1005.153013px;}
.y62{bottom:1005.657039px;}
.y111{bottom:1007.047608px;}
.yb5{bottom:1011.544833px;}
.y13e{bottom:1019.889750px;}
.y37{bottom:1020.362274px;}
.y168{bottom:1026.340073px;}
.yb4{bottom:1027.984155px;}
.y3{bottom:1030.823797px;}
.y110{bottom:1034.632487px;}
.y36{bottom:1038.295670px;}
.y167{bottom:1044.273469px;}
.yb3{bottom:1045.020507px;}
.y61{bottom:1047.491130px;}
.y13d{bottom:1054.631487px;}
.y35{bottom:1056.229067px;}
.y2{bottom:1059.218717px;}
.yb2{bottom:1061.459829px;}
.y60{bottom:1065.424527px;}
.y10f{bottom:1073.478430px;}
.y34{bottom:1074.163964px;}
.yb1{bottom:1077.899151px;}
.y5f{bottom:1083.357923px;}
.y10e{bottom:1091.411826px;}
.y1{bottom:1092.097360px;}
.yb0{bottom:1094.937002px;}
.y5e{bottom:1101.292820px;}
.y13c{bottom:1104.052958px;}
.yaf{bottom:1111.376324px;}
.y10d{bottom:1118.996705px;}
.y33{bottom:1121.986355px;}
.yae{bottom:1128.711191px;}
.y5d{bottom:1136.034557px;}
.y32{bottom:1139.919751px;}
.h4{height:23.851817px;}
.h5{height:33.195272px;}
.h7{height:37.660763px;}
.h6{height:38.252575px;}
.h8{height:40.350817px;}
.ha{height:44.833942px;}
.hb{height:49.090950px;}
.hc{height:53.801090px;}
.h3{height:57.831590px;}
.h9{height:64.561128px;}
.h2{height:77.473173px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:107.986499px;}
.x1{left:114.084304px;}
.x1d{left:115.458373px;}
.x8{left:125.316865px;}
.xf{left:130.403620px;}
.x6{left:131.668183px;}
.x1e{left:138.706535px;}
.xd{left:145.348867px;}
.x3{left:152.175708px;}
.x1c{left:153.941297px;}
.xc{left:166.084404px;}
.x16{left:184.793339px;}
.x4{left:214.554827px;}
.x12{left:216.684934px;}
.x9{left:219.505075px;}
.x1a{left:227.062453px;}
.x19{left:253.838791px;}
.x11{left:272.831241px;}
.x17{left:288.367518px;}
.x1b{left:312.455722px;}
.x15{left:320.259112px;}
.xa{left:329.948097px;}
.x5{left:333.479273px;}
.x2{left:335.048352px;}
.x7{left:337.010450px;}
.x13{left:402.574228px;}
.xb{left:416.017900px;}
.x10{left:434.184000px;}
.x14{left:548.671032px;}
.x18{left:580.561127px;}
@media print{
.v2{vertical-align:-20.315682pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.137157pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.656606pt;}
.ls0{letter-spacing:2.658724pt;}
.ls2{letter-spacing:2.816236pt;}
.ls4{letter-spacing:5.260516pt;}
.ls8{letter-spacing:6.588929pt;}
.ls6{letter-spacing:6.907748pt;}
.ls3{letter-spacing:7.545386pt;}
.ls9{letter-spacing:15.037636pt;}
.ls5{letter-spacing:26.570375pt;}
.ws7c{word-spacing:-15.719483pt;}
.ws2c{word-spacing:-14.761326pt;}
.ws67{word-spacing:-13.653521pt;}
.ws77{word-spacing:-2.911881pt;}
.wsb0{word-spacing:-2.274243pt;}
.ws64{word-spacing:-2.167970pt;}
.ws82{word-spacing:-2.128132pt;}
.wsc1{word-spacing:-2.114834pt;}
.ws7a{word-spacing:-1.849151pt;}
.ws89{word-spacing:-1.742878pt;}
.ws10{word-spacing:-1.636605pt;}
.ws13{word-spacing:-1.530332pt;}
.ws72{word-spacing:-1.424059pt;}
.ws96{word-spacing:-1.264649pt;}
.ws71{word-spacing:-1.211513pt;}
.ws8f{word-spacing:-1.105240pt;}
.ws40{word-spacing:-0.998967pt;}
.ws42{word-spacing:-0.786421pt;}
.ws90{word-spacing:-0.680147pt;}
.wsbd{word-spacing:-0.573874pt;}
.wsb9{word-spacing:-0.520738pt;}
.wsc9{word-spacing:-0.255055pt;}
.ws46{word-spacing:-0.201919pt;}
.ws30{word-spacing:-0.148782pt;}
.wsac{word-spacing:-0.053137pt;}
.wsa9{word-spacing:-0.042509pt;}
.ws25{word-spacing:0.000000pt;}
.ws54{word-spacing:0.010627pt;}
.ws62{word-spacing:0.063764pt;}
.ws8{word-spacing:0.215204pt;}
.ws8e{word-spacing:0.276310pt;}
.ws8d{word-spacing:0.382583pt;}
.ws55{word-spacing:0.488856pt;}
.ws5d{word-spacing:0.648266pt;}
.wsb7{word-spacing:0.807675pt;}
.ws19{word-spacing:0.860812pt;}
.ws6a{word-spacing:0.932552pt;}
.wsc7{word-spacing:0.967085pt;}
.ws1a{word-spacing:1.020221pt;}
.ws14{word-spacing:1.073358pt;}
.ws70{word-spacing:1.123845pt;}
.ws97{word-spacing:1.126494pt;}
.ws98{word-spacing:1.179631pt;}
.wsc8{word-spacing:1.232767pt;}
.ws61{word-spacing:1.285904pt;}
.ws6{word-spacing:1.315138pt;}
.ws56{word-spacing:1.392177pt;}
.ws2a{word-spacing:1.445313pt;}
.wsc6{word-spacing:1.551586pt;}
.wsbf{word-spacing:1.604723pt;}
.ws3d{word-spacing:1.657860pt;}
.wsa4{word-spacing:1.710996pt;}
.ws91{word-spacing:1.817269pt;}
.ws5f{word-spacing:1.870406pt;}
.wsc3{word-spacing:1.923542pt;}
.ws32{word-spacing:1.976679pt;}
.wsb{word-spacing:1.984662pt;}
.ws87{word-spacing:2.029815pt;}
.ws4f{word-spacing:2.136088pt;}
.wsba{word-spacing:2.189225pt;}
.wsf{word-spacing:2.295498pt;}
.ws5{word-spacing:2.319425pt;}
.ws78{word-spacing:2.348634pt;}
.ws18{word-spacing:2.508044pt;}
.ws2f{word-spacing:2.614317pt;}
.wsd{word-spacing:2.702010pt;}
.ws74{word-spacing:2.720590pt;}
.ws68{word-spacing:2.749833pt;}
.ws9{word-spacing:2.797657pt;}
.ws35{word-spacing:2.880000pt;}
.ws20{word-spacing:2.933136pt;}
.ws22{word-spacing:2.986273pt;}
.wsc4{word-spacing:3.039409pt;}
.ws4d{word-spacing:3.092546pt;}
.ws66{word-spacing:3.122854pt;}
.ws3{word-spacing:3.180242pt;}
.ws58{word-spacing:3.783320pt;}
.ws1e{word-spacing:3.836457pt;}
.wscc{word-spacing:3.889594pt;}
.ws31{word-spacing:3.942730pt;}
.wsa{word-spacing:3.945413pt;}
.ws1{word-spacing:3.985266pt;}
.ws11{word-spacing:3.995867pt;}
.ws45{word-spacing:4.049003pt;}
.ws1b{word-spacing:4.261549pt;}
.wsab{word-spacing:4.314686pt;}
.ws47{word-spacing:4.420959pt;}
.ws48{word-spacing:4.474095pt;}
.ws4b{word-spacing:4.633505pt;}
.ws5e{word-spacing:4.686641pt;}
.ws7{word-spacing:4.758408pt;}
.ws39{word-spacing:4.782306pt;}
.ws8b{word-spacing:4.792914pt;}
.wsb5{word-spacing:4.846051pt;}
.ws99{word-spacing:4.899187pt;}
.wsca{word-spacing:5.005461pt;}
.ws41{word-spacing:5.111734pt;}
.ws63{word-spacing:5.218007pt;}
.ws51{word-spacing:5.271143pt;}
.ws52{word-spacing:5.324280pt;}
.wsaf{word-spacing:5.377416pt;}
.wsc2{word-spacing:5.430553pt;}
.ws4e{word-spacing:5.483689pt;}
.ws9f{word-spacing:5.536826pt;}
.ws94{word-spacing:5.589962pt;}
.ws0{word-spacing:5.738754pt;}
.ws3c{word-spacing:5.749372pt;}
.wsc{word-spacing:5.767668pt;}
.ws73{word-spacing:5.802508pt;}
.ws1c{word-spacing:5.855645pt;}
.ws12{word-spacing:5.908781pt;}
.ws1f{word-spacing:5.961918pt;}
.ws88{word-spacing:6.015054pt;}
.wsb1{word-spacing:6.068191pt;}
.ws29{word-spacing:6.121327pt;}
.wsc5{word-spacing:6.174464pt;}
.ws16{word-spacing:6.227601pt;}
.ws24{word-spacing:6.280737pt;}
.ws57{word-spacing:6.333874pt;}
.ws9d{word-spacing:6.493283pt;}
.ws93{word-spacing:6.599556pt;}
.ws2d{word-spacing:6.652693pt;}
.ws44{word-spacing:6.705829pt;}
.ws27{word-spacing:6.758966pt;}
.ws86{word-spacing:6.814805pt;}
.ws75{word-spacing:6.918375pt;}
.wsae{word-spacing:6.918422pt;}
.ws4c{word-spacing:6.971512pt;}
.wsbb{word-spacing:7.024648pt;}
.ws36{word-spacing:7.077785pt;}
.ws17{word-spacing:7.184058pt;}
.ws15{word-spacing:7.237194pt;}
.ws59{word-spacing:7.343468pt;}
.wsb8{word-spacing:7.396604pt;}
.wsb6{word-spacing:7.449741pt;}
.wsa7{word-spacing:7.502877pt;}
.ws8a{word-spacing:7.556014pt;}
.wsb2{word-spacing:7.609150pt;}
.ws5c{word-spacing:7.662287pt;}
.wsa2{word-spacing:7.768560pt;}
.wsc0{word-spacing:7.927969pt;}
.wsbc{word-spacing:8.140515pt;}
.wsb3{word-spacing:8.193652pt;}
.ws9a{word-spacing:8.246788pt;}
.ws4{word-spacing:8.249500pt;}
.ws92{word-spacing:8.353061pt;}
.ws3a{word-spacing:8.406198pt;}
.ws3e{word-spacing:8.459335pt;}
.ws5b{word-spacing:8.512471pt;}
.ws43{word-spacing:8.618744pt;}
.ws2b{word-spacing:8.671881pt;}
.wsbe{word-spacing:8.831290pt;}
.ws2e{word-spacing:8.990700pt;}
.ws34{word-spacing:9.043836pt;}
.wsa5{word-spacing:9.096973pt;}
.ws6e{word-spacing:9.205964pt;}
.ws8c{word-spacing:9.362655pt;}
.ws50{word-spacing:9.415792pt;}
.ws3b{word-spacing:9.628338pt;}
.ws3f{word-spacing:9.840884pt;}
.wsad{word-spacing:9.894021pt;}
.ws1d{word-spacing:9.947157pt;}
.ws76{word-spacing:10.053430pt;}
.ws37{word-spacing:10.106567pt;}
.ws38{word-spacing:10.212840pt;}
.ws33{word-spacing:10.372249pt;}
.wsa3{word-spacing:10.478522pt;}
.ws4a{word-spacing:10.691069pt;}
.ws53{word-spacing:10.744205pt;}
.wsb4{word-spacing:10.850478pt;}
.wsa6{word-spacing:10.903615pt;}
.ws6f{word-spacing:11.166715pt;}
.ws79{word-spacing:11.169297pt;}
.ws5a{word-spacing:11.222434pt;}
.wscb{word-spacing:11.488116pt;}
.ws28{word-spacing:11.541253pt;}
.ws9b{word-spacing:11.805814pt;}
.ws80{word-spacing:12.075356pt;}
.wsa0{word-spacing:13.278743pt;}
.wsa8{word-spacing:14.666205pt;}
.ws85{word-spacing:14.896924pt;}
.ws7f{word-spacing:15.088217pt;}
.ws60{word-spacing:15.992223pt;}
.ws95{word-spacing:16.977794pt;}
.wsaa{word-spacing:19.028353pt;}
.ws83{word-spacing:19.201011pt;}
.ws2{word-spacing:19.750978pt;}
.ws9e{word-spacing:20.276253pt;}
.ws49{word-spacing:20.298152pt;}
.ws23{word-spacing:21.839111pt;}
.wsa1{word-spacing:22.468272pt;}
.ws7b{word-spacing:23.734650pt;}
.ws9c{word-spacing:24.442801pt;}
.ws26{word-spacing:24.708483pt;}
.ws21{word-spacing:25.186712pt;}
.ws7e{word-spacing:34.925276pt;}
.ws6b{word-spacing:40.530154pt;}
.ws69{word-spacing:56.120515pt;}
.ws6c{word-spacing:56.598747pt;}
.wse{word-spacing:62.169975pt;}
.ws81{word-spacing:70.180533pt;}
.ws65{word-spacing:75.405645pt;}
.ws7d{word-spacing:82.222412pt;}
.ws84{word-spacing:101.169961pt;}
.ws6d{word-spacing:108.343439pt;}
._35{margin-left:-26.802383pt;}
._34{margin-left:-25.715900pt;}
._13{margin-left:-7.192588pt;}
._19{margin-left:-5.993840pt;}
._7{margin-left:-4.464636pt;}
._0{margin-left:-2.846422pt;}
._1{margin-left:-1.264489pt;}
._2{width:1.386873pt;}
._3{width:2.678099pt;}
._2b{width:3.664243pt;}
._9{width:12.316886pt;}
._30{width:13.549813pt;}
._17{width:15.211121pt;}
._1f{width:16.146003pt;}
._36{width:17.461143pt;}
._6{width:18.616772pt;}
._15{width:19.616938pt;}
._33{width:20.701669pt;}
._5{width:21.608547pt;}
._a{width:22.731644pt;}
._d{width:23.643576pt;}
._11{width:24.663957pt;}
._2f{width:25.715900pt;}
._8{width:26.689985pt;}
._1b{width:27.620346pt;}
._1c{width:28.746859pt;}
._16{width:29.745665pt;}
._1e{width:30.696800pt;}
._2e{width:31.882127pt;}
._f{width:32.828811pt;}
._c{width:33.961474pt;}
._31{width:35.064782pt;}
._b{width:36.052801pt;}
._21{width:37.280264pt;}
._4{width:38.231815pt;}
._32{width:39.524963pt;}
._18{width:40.532380pt;}
._10{width:41.712171pt;}
._1d{width:43.035261pt;}
._e{width:44.358209pt;}
._2c{width:45.829921pt;}
._2d{width:47.434805pt;}
._20{width:48.460509pt;}
._28{width:50.501290pt;}
._37{width:56.643534pt;}
._1a{width:61.107002pt;}
._27{width:65.928855pt;}
._14{width:71.734787pt;}
._2a{width:82.208065pt;}
._12{width:86.081504pt;}
._24{width:97.308666pt;}
._25{width:105.928368pt;}
._26{width:131.557586pt;}
._29{width:140.138057pt;}
._23{width:146.673727pt;}
._22{width:197.654512pt;}
.fs3{font-size:31.882127pt;}
.fs2{font-size:42.509325pt;}
.fs4{font-size:47.823191pt;}
.fs6{font-size:53.136523pt;}
.fs7{font-size:58.181867pt;}
.fs1{font-size:63.764255pt;}
.fs5{font-size:76.516892pt;}
.fs0{font-size:91.820057pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:20.213333pt;}
.yf8{bottom:95.980139pt;}
.y13b{bottom:101.196400pt;}
.y8c{bottom:104.485898pt;}
.yad{bottom:109.858167pt;}
.y30{bottom:111.262237pt;}
.yf7{bottom:111.920936pt;}
.y13a{bottom:117.137197pt;}
.y166{bottom:118.985290pt;}
.y8b{bottom:120.426695pt;}
.yda{bottom:125.185600pt;}
.yac{bottom:125.798964pt;}
.y2f{bottom:127.204367pt;}
.y139{bottom:133.077994pt;}
.y10c{bottom:133.137997pt;}
.y165{bottom:134.926087pt;}
.y8a{bottom:136.367492pt;}
.yf6{bottom:137.466214pt;}
.yd9{bottom:141.126397pt;}
.yab{bottom:141.741094pt;}
.y2e{bottom:143.145164pt;}
.y138{bottom:149.018791pt;}
.y10b{bottom:149.078794pt;}
.y89{bottom:152.308289pt;}
.yf5{bottom:153.407011pt;}
.yaa{bottom:157.681891pt;}
.y164{bottom:161.495415pt;}
.y137{bottom:164.959588pt;}
.y10a{bottom:165.019591pt;}
.yd8{bottom:165.646289pt;}
.y88{bottom:168.250419pt;}
.y2d{bottom:169.713159pt;}
.y5c{bottom:172.393293pt;}
.ya9{bottom:173.622688pt;}
.y163{bottom:177.436212pt;}
.yf4{bottom:178.952288pt;}
.y136{bottom:180.901719pt;}
.y109{bottom:180.960388pt;}
.y87{bottom:184.191216pt;}
.y2c{bottom:185.653956pt;}
.y5b{bottom:188.334090pt;}
.ya8{bottom:189.563485pt;}
.yf3{bottom:194.894418pt;}
.y135{bottom:196.842516pt;}
.y86{bottom:200.132013pt;}
.yd7{bottom:202.833482pt;}
.y162{bottom:204.004207pt;}
.y5a{bottom:204.276221pt;}
.y108{bottom:205.480281pt;}
.ya7{bottom:205.504282pt;}
.y2b{bottom:212.223285pt;}
.y134{bottom:212.783313pt;}
.y85{bottom:216.072810pt;}
.yd6{bottom:218.774279pt;}
.yf2{bottom:219.416978pt;}
.y161{bottom:219.945004pt;}
.y59{bottom:220.217018pt;}
.ya6{bottom:221.445079pt;}
.y2a{bottom:228.164082pt;}
.y133{bottom:228.724110pt;}
.y84{bottom:232.013607pt;}
.yd5{bottom:234.715076pt;}
.yf1{bottom:235.357775pt;}
.y160{bottom:235.885801pt;}
.ya5{bottom:237.387209pt;}
.y107{bottom:242.667473pt;}
.y29{bottom:244.104879pt;}
.y132{bottom:244.664907pt;}
.y58{bottom:244.736910pt;}
.y83{bottom:247.954404pt;}
.yf0{bottom:251.298572pt;}
.ya4{bottom:253.328006pt;}
.y106{bottom:258.608270pt;}
.yd4{bottom:259.234968pt;}
.y28{bottom:260.045676pt;}
.y131{bottom:260.605704pt;}
.y15f{bottom:262.455129pt;}
.y82{bottom:263.896535pt;}
.yef{bottom:267.239369pt;}
.ya3{bottom:269.268803pt;}
.y27{bottom:275.986473pt;}
.y15e{bottom:278.395926pt;}
.y81{bottom:279.837332pt;}
.y57{bottom:281.924103pt;}
.yee{bottom:283.180166pt;}
.y105{bottom:285.176265pt;}
.ya2{bottom:285.209600pt;}
.y130{bottom:291.488581pt;}
.y26{bottom:291.927270pt;}
.y15d{bottom:294.336723pt;}
.y80{bottom:295.778129pt;}
.yd3{bottom:296.422161pt;}
.y56{bottom:297.864900pt;}
.yed{bottom:299.120963pt;}
.y104{bottom:301.117062pt;}
.y25{bottom:307.869400pt;}
.ya1{bottom:309.729493pt;}
.y7f{bottom:311.718926pt;}
.yd2{bottom:312.362958pt;}
.y55{bottom:313.805697pt;}
.yec{bottom:315.063093pt;}
.y15c{bottom:320.904718pt;}
.y24{bottom:323.810197pt;}
.y7e{bottom:327.659723pt;}
.y103{bottom:327.686391pt;}
.yd1{bottom:328.303755pt;}
.y54{bottom:329.746494pt;}
.yeb{bottom:331.003890pt;}
.y12f{bottom:335.418777pt;}
.y15b{bottom:336.845515pt;}
.y23{bottom:339.750994pt;}
.y7d{bottom:343.601853pt;}
.y102{bottom:343.627188pt;}
.ya0{bottom:346.916686pt;}
.yea{bottom:346.944687pt;}
.y12e{bottom:351.359574pt;}
.y15a{bottom:352.787646pt;}
.yd0{bottom:352.823648pt;}
.y53{bottom:354.266386pt;}
.y22{bottom:355.691791pt;}
.y7c{bottom:359.542650pt;}
.y101{bottom:359.567985pt;}
.y9f{bottom:362.857483pt;}
.ye9{bottom:362.885484pt;}
.y12d{bottom:367.300371pt;}
.y159{bottom:368.728443pt;}
.y21{bottom:371.632588pt;}
.y7b{bottom:375.483447pt;}
.y100{bottom:375.508782pt;}
.y9e{bottom:378.798280pt;}
.y12c{bottom:383.241168pt;}
.ye8{bottom:387.405377pt;}
.y20{bottom:387.573385pt;}
.ycf{bottom:390.010840pt;}
.yff{bottom:391.449579pt;}
.y52{bottom:391.453579pt;}
.y9d{bottom:394.739077pt;}
.y158{bottom:395.296438pt;}
.y12b{bottom:399.181965pt;}
.y7a{bottom:400.003340pt;}
.y1f{bottom:403.515515pt;}
.yce{bottom:405.951637pt;}
.yfe{bottom:407.391709pt;}
.y51{bottom:407.394376pt;}
.y157{bottom:411.237235pt;}
.y12a{bottom:415.124096pt;}
.y1e{bottom:419.456312pt;}
.yfd{bottom:423.332506pt;}
.y50{bottom:423.335173pt;}
.ye7{bottom:424.152547pt;}
.y156{bottom:427.178032pt;}
.ycd{bottom:430.471530pt;}
.y1d{bottom:435.397109pt;}
.y79{bottom:437.190532pt;}
.yfc{bottom:439.273303pt;}
.y4f{bottom:439.275970pt;}
.y9c{bottom:439.507982pt;}
.y129{bottom:439.643988pt;}
.ye6{bottom:440.093344pt;}
.y179{bottom:444.698908pt;}
.y1c{bottom:451.337906pt;}
.y78{bottom:453.131329pt;}
.y155{bottom:453.747360pt;}
.y9b{bottom:454.119379pt;}
.yfb{bottom:455.214100pt;}
.ye5{bottom:456.034141pt;}
.y178{bottom:460.639705pt;}
.y4e{bottom:463.797196pt;}
.y1b{bottom:467.278703pt;}
.ycc{bottom:467.658722pt;}
.y77{bottom:469.072126pt;}
.y9a{bottom:469.264136pt;}
.y154{bottom:469.688157pt;}
.ye4{bottom:471.974938pt;}
.y128{bottom:474.173715pt;}
.y1a{bottom:483.220834pt;}
.ycb{bottom:483.599519pt;}
.y99{bottom:483.876867pt;}
.y76{bottom:485.012923pt;}
.y153{bottom:485.628954pt;}
.y177{bottom:487.209033pt;}
.ye3{bottom:487.915735pt;}
.y127{bottom:490.114512pt;}
.yfa{bottom:497.649555pt;}
.y98{bottom:498.489597pt;}
.y19{bottom:499.161631pt;}
.yca{bottom:499.540316pt;}
.y75{bottom:500.953720pt;}
.y4d{bottom:500.983055pt;}
.y176{bottom:503.149830pt;}
.ye2{bottom:503.856532pt;}
.y126{bottom:506.055309pt;}
.y152{bottom:512.196949pt;}
.y97{bottom:513.633021pt;}
.y18{bottom:515.102428pt;}
.yc9{bottom:515.481113pt;}
.y74{bottom:516.895851pt;}
.y4c{bottom:516.923852pt;}
.ye1{bottom:519.798663pt;}
.y125{bottom:521.996106pt;}
.y151{bottom:528.137746pt;}
.y96{bottom:528.245752pt;}
.y175{bottom:529.717825pt;}
.y17{bottom:531.043225pt;}
.yc8{bottom:531.423244pt;}
.y4b{bottom:532.865983pt;}
.ye0{bottom:535.739460pt;}
.y124{bottom:537.938236pt;}
.y73{bottom:541.415743pt;}
.y95{bottom:542.858482pt;}
.y174{bottom:545.658622pt;}
.yc7{bottom:547.364041pt;}
.y4a{bottom:548.806780pt;}
.ydf{bottom:551.680257pt;}
.y123{bottom:553.879033pt;}
.y150{bottom:554.707075pt;}
.y94{bottom:558.001906pt;}
.y16{bottom:561.924769pt;}
.yc6{bottom:563.304838pt;}
.yde{bottom:567.621054pt;}
.y14f{bottom:570.647872pt;}
.y173{bottom:572.226617pt;}
.y93{bottom:572.614637pt;}
.y49{bottom:573.326672pt;}
.y72{bottom:575.945470pt;}
.y122{bottom:578.398926pt;}
.ydd{bottom:583.561851pt;}
.y92{bottom:587.227367pt;}
.y172{bottom:588.168748pt;}
.y71{bottom:591.886267pt;}
.yc5{bottom:594.186382pt;}
.y14e{bottom:597.215867pt;}
.ydc{bottom:599.502648pt;}
.y91{bottom:602.370791pt;}
.y15{bottom:605.854965pt;}
.y70{bottom:607.827064pt;}
.y48{bottom:608.001739pt;}
.y121{bottom:612.928652pt;}
.y14d{bottom:613.156664pt;}
.y171{bottom:614.736743pt;}
.y90{bottom:616.983522pt;}
.y6f{bottom:623.767861pt;}
.y14{bottom:628.026740pt;}
.y120{bottom:628.869449pt;}
.y14c{bottom:629.098794pt;}
.y170{bottom:630.677540pt;}
.y8f{bottom:632.393625pt;}
.yc4{bottom:638.116578pt;}
.y6e{bottom:639.708658pt;}
.ydb{bottom:639.892667pt;}
.y13{bottom:642.639471pt;}
.y11f{bottom:644.810246pt;}
.y47{bottom:651.931936pt;}
.yc3{bottom:654.057375pt;}
.y14b{bottom:655.666789pt;}
.y16f{bottom:657.245535pt;}
.y12{bottom:657.252202pt;}
.y11e{bottom:660.751043pt;}
.y6d{bottom:664.229884pt;}
.y46{bottom:667.872733pt;}
.yc2{bottom:669.999506pt;}
.y14a{bottom:671.607586pt;}
.y11{bottom:671.864932pt;}
.y16e{bottom:673.187665pt;}
.y8e{bottom:674.902417pt;}
.y11d{bottom:676.693174pt;}
.y45{bottom:683.814863pt;}
.yc1{bottom:685.940303pt;}
.y10{bottom:686.477663pt;}
.y149{bottom:687.548383pt;}
.y8d{bottom:690.844548pt;}
.y11c{bottom:692.633971pt;}
.y6c{bottom:698.759610pt;}
.y44{bottom:699.755660pt;}
.yf{bottom:701.090393pt;}
.yc0{bottom:701.881100pt;}
.y11b{bottom:708.574768pt;}
.y6b{bottom:714.700407pt;}
.y43{bottom:715.696457pt;}
.ye{bottom:715.703124pt;}
.ybf{bottom:717.821897pt;}
.y148{bottom:719.168631pt;}
.y11a{bottom:724.515565pt;}
.yd{bottom:730.315855pt;}
.y6a{bottom:730.641204pt;}
.y42{bottom:731.637254pt;}
.ybe{bottom:733.762694pt;}
.y16d{bottom:742.264452pt;}
.yc{bottom:744.928585pt;}
.y69{bottom:746.582001pt;}
.y41{bottom:747.578051pt;}
.y119{bottom:749.036791pt;}
.ybd{bottom:749.703491pt;}
.y16c{bottom:758.205249pt;}
.y68{bottom:762.522798pt;}
.y147{bottom:763.098827pt;}
.y40{bottom:763.518848pt;}
.ybc{bottom:765.645621pt;}
.yb{bottom:765.750960pt;}
.y67{bottom:778.464929pt;}
.y146{bottom:779.039624pt;}
.y3f{bottom:779.460978pt;}
.y118{bottom:783.565184pt;}
.y16b{bottom:784.774577pt;}
.y145{bottom:794.980421pt;}
.y3e{bottom:795.401775pt;}
.y117{bottom:799.507314pt;}
.ya{bottom:800.715374pt;}
.y66{bottom:802.984821pt;}
.ybb{bottom:810.413193pt;}
.y144{bottom:810.921218pt;}
.y3d{bottom:811.342572pt;}
.y9{bottom:815.328105pt;}
.y116{bottom:815.448111pt;}
.yf9{bottom:819.106961pt;}
.yba{bottom:825.025923pt;}
.y143{bottom:826.863348pt;}
.y3c{bottom:827.283369pt;}
.y115{bottom:831.388908pt;}
.y8{bottom:835.019756pt;}
.y65{bottom:837.514548pt;}
.yb9{bottom:840.169347pt;}
.y142{bottom:842.804145pt;}
.y3b{bottom:843.224166pt;}
.y7{bottom:844.553566pt;}
.y114{bottom:847.329705pt;}
.y64{bottom:853.455345pt;}
.yb8{bottom:854.782078pt;}
.y141{bottom:858.744942pt;}
.y3a{bottom:859.164963pt;}
.y113{bottom:863.270502pt;}
.y6{bottom:864.243884pt;}
.yb7{bottom:869.394808pt;}
.y63{bottom:869.396142pt;}
.y16a{bottom:869.793495pt;}
.y5{bottom:873.777694pt;}
.y140{bottom:874.685739pt;}
.y39{bottom:875.107094pt;}
.y112{bottom:879.211299pt;}
.yb6{bottom:884.538232pt;}
.y169{bottom:885.734292pt;}
.y13f{bottom:890.626536pt;}
.y38{bottom:891.047891pt;}
.y4{bottom:893.469345pt;}
.y62{bottom:893.917368pt;}
.y111{bottom:895.153429pt;}
.yb5{bottom:899.150963pt;}
.y13e{bottom:906.568667pt;}
.y37{bottom:906.988688pt;}
.y168{bottom:912.302287pt;}
.yb4{bottom:913.763693pt;}
.y3{bottom:916.287819pt;}
.y110{bottom:919.673322pt;}
.y36{bottom:922.929485pt;}
.y167{bottom:928.243084pt;}
.yb3{bottom:928.907117pt;}
.y61{bottom:931.103227pt;}
.y13d{bottom:937.450211pt;}
.y35{bottom:938.870282pt;}
.y2{bottom:941.527748pt;}
.yb2{bottom:943.519848pt;}
.y60{bottom:947.044024pt;}
.y10f{bottom:954.203048pt;}
.y34{bottom:954.812412pt;}
.yb1{bottom:958.132578pt;}
.y5f{bottom:962.984821pt;}
.y10e{bottom:970.143845pt;}
.y1{bottom:970.753209pt;}
.yb0{bottom:973.277335pt;}
.y5e{bottom:978.926951pt;}
.y13c{bottom:981.380407pt;}
.yaf{bottom:987.890066pt;}
.y10d{bottom:994.663738pt;}
.y33{bottom:997.321204pt;}
.yae{bottom:1003.298836pt;}
.y5d{bottom:1009.808495pt;}
.y32{bottom:1013.262001pt;}
.h4{height:21.201615pt;}
.h5{height:29.506909pt;}
.h7{height:33.476234pt;}
.h6{height:34.002289pt;}
.h8{height:35.867393pt;}
.ha{height:39.852393pt;}
.hb{height:43.636400pt;}
.hc{height:47.823191pt;}
.h3{height:51.405858pt;}
.h9{height:57.387669pt;}
.h2{height:68.865043pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:95.987999pt;}
.x1{left:101.408270pt;}
.x1d{left:102.629665pt;}
.x8{left:111.392769pt;}
.xf{left:115.914329pt;}
.x6{left:117.038385pt;}
.x1e{left:123.294698pt;}
.xd{left:129.198993pt;}
.x3{left:135.267296pt;}
.x1c{left:136.836708pt;}
.xc{left:147.630581pt;}
.x16{left:164.260746pt;}
.x4{left:190.715402pt;}
.x12{left:192.608830pt;}
.x9{left:195.115622pt;}
.x1a{left:201.833291pt;}
.x19{left:225.634481pt;}
.x11{left:242.516659pt;}
.x17{left:256.326682pt;}
.x1b{left:277.738420pt;}
.x15{left:284.674766pt;}
.xa{left:293.287197pt;}
.x5{left:296.426021pt;}
.x2{left:297.820757pt;}
.x7{left:299.564844pt;}
.x13{left:357.843758pt;}
.xb{left:369.793689pt;}
.x10{left:385.941333pt;}
.x14{left:487.707584pt;}
.x18{left:516.054335pt;}
}




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