
    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_09ca32705b4af7c904ecb4b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.131000;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_27b7b11389208b6f5dfc68a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_37eddd80fa9f6140b4ee78a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.732000;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_899c7eed1bfb580c41c7d6ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081000;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_dd6b9894df98bcec47d018d7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_8c8194b8ca7f0043a55b545c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.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:ff7;src:url('chunks/assets/font_a52c7c0455b7ed0e5d0e6734.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.733000;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_732f425bc7eeec2cb7d7da75.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.977000;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;}
.m8{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247501,0.000000,0.000000,0.250000,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);}
.m7{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.184800px;}
.v1{vertical-align:19.628400px;}
.lsa{letter-spacing:-0.775200px;}
.ls9{letter-spacing:-0.228000px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.001371px;}
.ls2{letter-spacing:0.001984px;}
.ls6{letter-spacing:0.006833px;}
.ls1{letter-spacing:1.320000px;}
.ls8{letter-spacing:3.784800px;}
.ls5{letter-spacing:53.031429px;}
.ls3{letter-spacing:1197.311400px;}
.ls0{letter-spacing:2264.095200px;}
.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;}
}
.ws72{word-spacing:-17.404800px;}
.wsd9{word-spacing:-16.200000px;}
.wse5{word-spacing:-12.000000px;}
.ws0{word-spacing:-9.120000px;}
.ws14{word-spacing:-6.856080px;}
.ws23{word-spacing:-3.939600px;}
.wsc5{word-spacing:-3.469200px;}
.ws8{word-spacing:-3.410400px;}
.wse3{word-spacing:-3.234000px;}
.wse2{word-spacing:-3.175200px;}
.ws20{word-spacing:-3.116400px;}
.wsa5{word-spacing:-3.057600px;}
.ws82{word-spacing:-2.998800px;}
.ws1a{word-spacing:-2.940000px;}
.ws34{word-spacing:-2.822400px;}
.wsc7{word-spacing:-2.763600px;}
.ws77{word-spacing:-2.646000px;}
.wscb{word-spacing:-2.587200px;}
.ws7d{word-spacing:-2.528400px;}
.wsbb{word-spacing:-2.469600px;}
.wscd{word-spacing:-2.410800px;}
.wsaa{word-spacing:-2.352000px;}
.wsdb{word-spacing:-2.293200px;}
.wsc6{word-spacing:-2.175600px;}
.wsb7{word-spacing:-2.116800px;}
.ws98{word-spacing:-2.058000px;}
.ws37{word-spacing:-1.999200px;}
.wsdf{word-spacing:-1.940400px;}
.wsa6{word-spacing:-1.822800px;}
.wsd{word-spacing:-1.764000px;}
.ws71{word-spacing:-1.731600px;}
.ws9d{word-spacing:-1.705200px;}
.ws5c{word-spacing:-1.646400px;}
.ws26{word-spacing:-1.641600px;}
.ws64{word-spacing:-1.528800px;}
.ws7a{word-spacing:-1.470000px;}
.wsd7{word-spacing:-1.413600px;}
.ws66{word-spacing:-1.411200px;}
.ws13{word-spacing:-1.322400px;}
.ws1b{word-spacing:-1.293600px;}
.ws52{word-spacing:-1.231200px;}
.wsac{word-spacing:-1.117200px;}
.ws55{word-spacing:-1.094400px;}
.ws3a{word-spacing:-1.048800px;}
.wse7{word-spacing:-1.003200px;}
.ws6{word-spacing:-0.999600px;}
.ws1e{word-spacing:-0.940800px;}
.ws24{word-spacing:-0.912000px;}
.ws1f{word-spacing:-0.882000px;}
.wsa1{word-spacing:-0.866400px;}
.ws2d{word-spacing:-0.820800px;}
.ws5{word-spacing:-0.764400px;}
.wsd5{word-spacing:-0.684000px;}
.ws4d{word-spacing:-0.638400px;}
.ws2b{word-spacing:-0.592800px;}
.wsa{word-spacing:-0.588000px;}
.ws7e{word-spacing:-0.529200px;}
.ws25{word-spacing:-0.501600px;}
.wsb3{word-spacing:-0.470400px;}
.ws41{word-spacing:-0.456000px;}
.ws6c{word-spacing:-0.411600px;}
.ws4e{word-spacing:-0.364800px;}
.ws19{word-spacing:-0.352800px;}
.ws16{word-spacing:-0.294000px;}
.ws54{word-spacing:-0.273600px;}
.wsc8{word-spacing:-0.235200px;}
.ws2a{word-spacing:-0.228000px;}
.wsb1{word-spacing:-0.176400px;}
.wsbe{word-spacing:-0.117600px;}
.ws97{word-spacing:-0.058800px;}
.wsa7{word-spacing:-0.046800px;}
.ws38{word-spacing:-0.045600px;}
.ws1{word-spacing:0.000000px;}
.ws45{word-spacing:0.091200px;}
.ws3{word-spacing:0.176400px;}
.wse6{word-spacing:0.182400px;}
.ws6e{word-spacing:0.273600px;}
.wsa9{word-spacing:0.294000px;}
.ws33{word-spacing:0.364800px;}
.wsd3{word-spacing:0.411600px;}
.ws4a{word-spacing:0.456000px;}
.ws9{word-spacing:0.470400px;}
.ws4f{word-spacing:0.501600px;}
.ws89{word-spacing:0.547200px;}
.ws83{word-spacing:0.588000px;}
.wsaf{word-spacing:0.646800px;}
.ws86{word-spacing:0.705600px;}
.wsc4{word-spacing:0.729600px;}
.wsde{word-spacing:0.764400px;}
.ws70{word-spacing:0.775200px;}
.wsbd{word-spacing:0.823200px;}
.ws40{word-spacing:0.866400px;}
.ws7b{word-spacing:0.882000px;}
.ws81{word-spacing:0.940800px;}
.ws50{word-spacing:0.957600px;}
.ws10{word-spacing:0.999600px;}
.ws56{word-spacing:1.003200px;}
.ws30{word-spacing:1.048800px;}
.wsc0{word-spacing:1.094400px;}
.ws3f{word-spacing:1.140000px;}
.ws78{word-spacing:1.176000px;}
.ws29{word-spacing:1.231200px;}
.wsb5{word-spacing:1.276800px;}
.wsba{word-spacing:1.293600px;}
.ws51{word-spacing:1.322400px;}
.wsa0{word-spacing:1.352400px;}
.ws39{word-spacing:1.368000px;}
.ws5a{word-spacing:1.411200px;}
.wsb6{word-spacing:1.413600px;}
.ws84{word-spacing:1.528800px;}
.ws42{word-spacing:1.550400px;}
.ws17{word-spacing:1.587600px;}
.ws12{word-spacing:1.596000px;}
.ws3b{word-spacing:1.641600px;}
.wsca{word-spacing:1.646400px;}
.wsa3{word-spacing:1.705200px;}
.ws69{word-spacing:1.764000px;}
.ws31{word-spacing:1.778400px;}
.wsb{word-spacing:1.822800px;}
.ws79{word-spacing:1.881600px;}
.ws73{word-spacing:1.940400px;}
.ws6d{word-spacing:2.006400px;}
.ws49{word-spacing:2.052000px;}
.wsf{word-spacing:2.058000px;}
.wsb0{word-spacing:2.116800px;}
.ws48{word-spacing:2.143200px;}
.ws2c{word-spacing:2.188800px;}
.ws5f{word-spacing:2.234400px;}
.ws46{word-spacing:2.280000px;}
.ws9b{word-spacing:2.293200px;}
.wsd4{word-spacing:2.325600px;}
.wsd0{word-spacing:2.410800px;}
.ws3c{word-spacing:2.508000px;}
.wscc{word-spacing:2.528400px;}
.ws28{word-spacing:2.599200px;}
.ws8d{word-spacing:2.646000px;}
.ws88{word-spacing:2.690400px;}
.wse0{word-spacing:2.704800px;}
.wsd6{word-spacing:2.736000px;}
.ws43{word-spacing:2.781600px;}
.ws6f{word-spacing:2.827200px;}
.wsd8{word-spacing:2.872800px;}
.ws6b{word-spacing:2.881200px;}
.ws75{word-spacing:2.940000px;}
.ws4b{word-spacing:3.055200px;}
.ws99{word-spacing:3.057600px;}
.ws6a{word-spacing:3.116400px;}
.ws7c{word-spacing:3.175200px;}
.wsc3{word-spacing:3.283200px;}
.wsd2{word-spacing:3.292800px;}
.ws8a{word-spacing:3.351600px;}
.ws85{word-spacing:3.410400px;}
.ws2e{word-spacing:3.465600px;}
.ws8b{word-spacing:3.469200px;}
.ws53{word-spacing:3.511200px;}
.ws60{word-spacing:3.528000px;}
.ws61{word-spacing:3.586800px;}
.ws65{word-spacing:3.645600px;}
.wsc1{word-spacing:3.648000px;}
.ws27{word-spacing:3.693600px;}
.wsce{word-spacing:3.704400px;}
.wse1{word-spacing:3.763200px;}
.ws76{word-spacing:3.822000px;}
.ws2f{word-spacing:3.876000px;}
.wsb8{word-spacing:3.880800px;}
.wse4{word-spacing:3.939600px;}
.wse9{word-spacing:3.967200px;}
.ws57{word-spacing:4.012800px;}
.ws5b{word-spacing:4.116000px;}
.ws8c{word-spacing:4.174800px;}
.ws90{word-spacing:4.233600px;}
.ws44{word-spacing:4.377600px;}
.ws22{word-spacing:4.410000px;}
.ws58{word-spacing:4.423200px;}
.wse{word-spacing:4.468800px;}
.ws62{word-spacing:4.527600px;}
.ws67{word-spacing:4.586400px;}
.wsdc{word-spacing:4.645200px;}
.wsbc{word-spacing:4.762800px;}
.ws3d{word-spacing:4.788000px;}
.ws96{word-spacing:4.880400px;}
.ws9f{word-spacing:4.939200px;}
.ws95{word-spacing:5.056800px;}
.wsa4{word-spacing:5.115600px;}
.ws74{word-spacing:5.174400px;}
.ws63{word-spacing:5.292000px;}
.ws1c{word-spacing:5.350800px;}
.wsb4{word-spacing:5.380800px;}
.ws32{word-spacing:5.426400px;}
.ws4c{word-spacing:5.472000px;}
.wsc9{word-spacing:5.527200px;}
.ws7{word-spacing:5.586000px;}
.wsc2{word-spacing:5.608800px;}
.ws21{word-spacing:5.644800px;}
.ws92{word-spacing:5.703600px;}
.wsa8{word-spacing:5.762400px;}
.wsc{word-spacing:5.821200px;}
.ws59{word-spacing:5.836800px;}
.wsdd{word-spacing:5.880000px;}
.ws87{word-spacing:5.882400px;}
.wsae{word-spacing:5.997600px;}
.ws5e{word-spacing:6.115200px;}
.ws94{word-spacing:6.291600px;}
.wsbf{word-spacing:6.384000px;}
.ws2{word-spacing:6.468000px;}
.ws35{word-spacing:6.526800px;}
.ws80{word-spacing:6.703200px;}
.ws68{word-spacing:6.762000px;}
.ws18{word-spacing:6.820800px;}
.ws47{word-spacing:6.840000px;}
.ws1d{word-spacing:6.879600px;}
.wsb2{word-spacing:6.938400px;}
.ws3e{word-spacing:7.022400px;}
.ws11{word-spacing:7.056000px;}
.ws93{word-spacing:7.350000px;}
.wse8{word-spacing:7.478400px;}
.wscf{word-spacing:7.526400px;}
.ws9a{word-spacing:7.644000px;}
.ws9e{word-spacing:7.996800px;}
.ws7f{word-spacing:8.173200px;}
.wsa2{word-spacing:8.408400px;}
.ws9c{word-spacing:8.702400px;}
.wsda{word-spacing:9.055200px;}
.ws36{word-spacing:9.114000px;}
.ws5d{word-spacing:9.466800px;}
.wsd1{word-spacing:9.584400px;}
.wsad{word-spacing:9.643200px;}
.wsb9{word-spacing:9.996000px;}
.ws91{word-spacing:10.054800px;}
.ws4{word-spacing:10.172400px;}
.ws8e{word-spacing:10.348800px;}
.wsab{word-spacing:12.348000px;}
.ws8f{word-spacing:12.642000px;}
.ws15{word-spacing:1583.505600px;}
._9{margin-left:-1583.488800px;}
._7{margin-left:-7.585200px;}
._a{margin-left:-5.832240px;}
._6{margin-left:-4.604400px;}
._5{margin-left:-3.028680px;}
._2{margin-left:-1.044000px;}
._4{width:1.015200px;}
._0{width:2.046000px;}
._3{width:3.276000px;}
._1{width:5.346000px;}
._14{width:22.160897px;}
._12{width:24.349600px;}
._10{width:26.402131px;}
._11{width:28.410637px;}
._13{width:31.463200px;}
._c{width:47.606253px;}
._b{width:49.566931px;}
._8{width:51.436531px;}
._e{width:55.130225px;}
._f{width:58.185626px;}
._d{width:1353.667800px;}
.fc5{color:rgb(101,121,137);}
.fc4{color:rgb(0,80,152);}
.fc3{color:rgb(147,22,120);}
.fc1{color:rgb(124,16,100);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(94,112,127);}
.fsa{font-size:26.584800px;}
.fs5{font-size:34.280400px;}
.fs6{font-size:44.400000px;}
.fs0{font-size:45.600000px;}
.fs7{font-size:46.800000px;}
.fs4{font-size:58.800000px;}
.fs9{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs8{font-size:81.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:77.698800px;}
.y76{bottom:142.818300px;}
.y94{bottom:142.861650px;}
.y116{bottom:142.910550px;}
.yfe{bottom:142.939350px;}
.y92{bottom:142.943100px;}
.y45{bottom:142.944150px;}
.y1f{bottom:142.948950px;}
.y46{bottom:143.654250px;}
.y75{bottom:158.573100px;}
.y115{bottom:158.665350px;}
.yfd{bottom:158.694150px;}
.y1d{bottom:158.697900px;}
.y1e{bottom:158.698950px;}
.y93{bottom:159.066150px;}
.y91{bottom:164.204100px;}
.yd8{bottom:164.208900px;}
.y74{bottom:174.327900px;}
.y114{bottom:174.420150px;}
.y44{bottom:174.433500px;}
.yfc{bottom:174.448950px;}
.y1c{bottom:179.958900px;}
.yd7{bottom:185.469000px;}
.y73{bottom:190.082700px;}
.y113{bottom:190.174950px;}
.yfb{bottom:190.198950px;}
.y43{bottom:195.694500px;}
.y90{bottom:195.703200px;}
.y1b{bottom:195.708900px;}
.yb4{bottom:201.214200px;}
.y72{bottom:205.837500px;}
.y112{bottom:205.929750px;}
.yd6{bottom:206.728950px;}
.y133{bottom:208.150800px;}
.ydd{bottom:208.192800px;}
.y42{bottom:211.449300px;}
.y124{bottom:216.949800px;}
.y8f{bottom:216.964200px;}
.yb3{bottom:216.969000px;}
.y71{bottom:221.592300px;}
.y111{bottom:221.684550px;}
.y41{bottom:227.204100px;}
.yd5{bottom:227.988900px;}
.y132{bottom:229.906800px;}
.yfa{bottom:229.942800px;}
.ydc{bottom:229.948800px;}
.y123{bottom:232.704600px;}
.y8e{bottom:232.719000px;}
.y70{bottom:237.347100px;}
.y110{bottom:237.439350px;}
.y40{bottom:242.958900px;}
.y122{bottom:248.459400px;}
.y8d{bottom:248.469000px;}
.yf8{bottom:251.614800px;}
.yda{bottom:251.644800px;}
.y131{bottom:251.662800px;}
.yf9{bottom:251.698800px;}
.y6f{bottom:253.101900px;}
.y10f{bottom:253.194150px;}
.yb2{bottom:253.959750px;}
.ydb{bottom:256.593900px;}
.y3f{bottom:258.708900px;}
.y121{bottom:264.214200px;}
.y6e{bottom:268.856700px;}
.y10e{bottom:268.948950px;}
.yb1{bottom:269.714550px;}
.yf7{bottom:273.370800px;}
.yd9{bottom:273.400800px;}
.y130{bottom:273.418800px;}
.y3e{bottom:279.925650px;}
.y120{bottom:279.969000px;}
.y6d{bottom:284.611500px;}
.yb0{bottom:285.469350px;}
.y10d{bottom:290.184900px;}
.yf6{bottom:295.126800px;}
.y1a{bottom:295.138800px;}
.yd4{bottom:295.156800px;}
.y12f{bottom:295.174800px;}
.y3d{bottom:295.680450px;}
.y11f{bottom:295.719000px;}
.y6c{bottom:300.366300px;}
.yaf{bottom:301.224150px;}
.y10c{bottom:305.939700px;}
.y3c{bottom:311.435250px;}
.yf5{bottom:316.882800px;}
.y19{bottom:316.894800px;}
.yd3{bottom:316.912800px;}
.y12e{bottom:316.930800px;}
.yae{bottom:316.978950px;}
.y6b{bottom:321.487050px;}
.y10b{bottom:321.694500px;}
.y3b{bottom:327.190050px;}
.y6a{bottom:337.241850px;}
.y10a{bottom:337.449300px;}
.yad{bottom:338.238900px;}
.yf4{bottom:338.638800px;}
.y18{bottom:338.650800px;}
.y8c{bottom:338.668800px;}
.y12d{bottom:338.686800px;}
.y3a{bottom:342.944850px;}
.y69{bottom:352.996650px;}
.y109{bottom:353.204100px;}
.y39{bottom:358.699650px;}
.yf3{bottom:360.394800px;}
.y17{bottom:360.406800px;}
.y8b{bottom:360.424800px;}
.y12c{bottom:360.442800px;}
.y68{bottom:368.751450px;}
.y108{bottom:368.948400px;}
.y38{bottom:374.454450px;}
.y12a{bottom:382.144800px;}
.yf2{bottom:382.150800px;}
.y16{bottom:382.162800px;}
.yac{bottom:382.174800px;}
.y8a{bottom:382.180800px;}
.y12b{bottom:382.198800px;}
.y67{bottom:384.506250px;}
.y37{bottom:390.209250px;}
.y107{bottom:390.209400px;}
.y66{bottom:400.261050px;}
.y129{bottom:403.900800px;}
.yf1{bottom:403.906800px;}
.y15{bottom:403.918800px;}
.yab{bottom:403.930800px;}
.y89{bottom:403.936800px;}
.y36{bottom:405.964050px;}
.y106{bottom:405.964200px;}
.y65{bottom:416.015850px;}
.y34{bottom:421.713150px;}
.y35{bottom:421.718850px;}
.y105{bottom:421.719000px;}
.y128{bottom:425.656800px;}
.yf0{bottom:425.662800px;}
.y14{bottom:425.674800px;}
.yaa{bottom:425.686800px;}
.y88{bottom:425.692800px;}
.y64{bottom:431.770650px;}
.y33{bottom:442.974150px;}
.y87{bottom:447.388800px;}
.y11e{bottom:447.400800px;}
.y127{bottom:447.412800px;}
.yef{bottom:447.418800px;}
.yd0{bottom:447.424800px;}
.y13{bottom:447.430800px;}
.ya9{bottom:447.442800px;}
.yd2{bottom:447.448800px;}
.y63{bottom:447.525450px;}
.yd1{bottom:452.343900px;}
.y31{bottom:458.724150px;}
.y32{bottom:458.728950px;}
.y62{bottom:463.280250px;}
.y86{bottom:469.144800px;}
.y11d{bottom:469.156800px;}
.y126{bottom:469.168800px;}
.yee{bottom:469.174800px;}
.ycf{bottom:469.180800px;}
.y12{bottom:469.186800px;}
.ya8{bottom:469.198800px;}
.y30{bottom:474.478950px;}
.y61{bottom:479.035050px;}
.y85{bottom:490.900800px;}
.ya7{bottom:490.912800px;}
.y125{bottom:490.924800px;}
.yed{bottom:490.930800px;}
.yce{bottom:490.936800px;}
.y11{bottom:490.942800px;}
.y60{bottom:494.789850px;}
.y5f{bottom:510.544650px;}
.y84{bottom:512.656800px;}
.ya6{bottom:512.668800px;}
.ye{bottom:512.680800px;}
.yec{bottom:512.686800px;}
.ycd{bottom:512.692800px;}
.y10{bottom:512.698800px;}
.ydf{bottom:513.079650px;}
.yf{bottom:517.593900px;}
.y5e{bottom:526.299450px;}
.yde{bottom:529.284150px;}
.y104{bottom:534.346800px;}
.y83{bottom:534.412800px;}
.yca{bottom:534.418800px;}
.ya5{bottom:534.424800px;}
.yd{bottom:534.436800px;}
.yeb{bottom:534.442800px;}
.ycc{bottom:534.448800px;}
.ycb{bottom:539.343900px;}
.y5d{bottom:542.054250px;}
.y103{bottom:556.102800px;}
.y82{bottom:556.168800px;}
.yc9{bottom:556.174800px;}
.ya4{bottom:556.180800px;}
.yc{bottom:556.192800px;}
.yea{bottom:556.198800px;}
.y5c{bottom:557.809050px;}
.y5b{bottom:573.563850px;}
.y102{bottom:577.858800px;}
.y81{bottom:577.924800px;}
.yc8{bottom:577.930800px;}
.y9{bottom:577.936800px;}
.yb{bottom:577.948800px;}
.ya{bottom:582.843900px;}
.y5a{bottom:589.318650px;}
.y101{bottom:599.614800px;}
.y80{bottom:599.680800px;}
.yc7{bottom:599.686800px;}
.y8{bottom:599.692800px;}
.ye9{bottom:599.698800px;}
.y59{bottom:605.073450px;}
.y58{bottom:620.828250px;}
.y100{bottom:621.370800px;}
.ya3{bottom:621.388800px;}
.y7f{bottom:621.436800px;}
.yc6{bottom:621.442800px;}
.y7{bottom:621.448800px;}
.y11c{bottom:626.343900px;}
.y57{bottom:636.583050px;}
.y11b{bottom:643.114800px;}
.y2f{bottom:643.120800px;}
.yff{bottom:643.126800px;}
.ya2{bottom:643.144800px;}
.yc4{bottom:643.186800px;}
.y7e{bottom:643.192800px;}
.y6{bottom:643.198800px;}
.yc5{bottom:648.093900px;}
.y56{bottom:652.337850px;}
.y11a{bottom:664.870800px;}
.y2e{bottom:664.876800px;}
.ye8{bottom:664.882800px;}
.ya1{bottom:664.900800px;}
.y7d{bottom:664.918800px;}
.yc3{bottom:664.942800px;}
.y55{bottom:668.092650px;}
.y13e{bottom:672.699300px;}
.y54{bottom:683.847450px;}
.y119{bottom:686.626800px;}
.y2d{bottom:686.632800px;}
.ye7{bottom:686.638800px;}
.ya0{bottom:686.656800px;}
.y7c{bottom:686.674800px;}
.yc0{bottom:686.680800px;}
.yc2{bottom:686.698800px;}
.y13d{bottom:689.195100px;}
.yc1{bottom:691.593900px;}
.y53{bottom:699.602250px;}
.y13c{bottom:705.690900px;}
.y13b{bottom:705.695100px;}
.y118{bottom:708.382800px;}
.y2c{bottom:708.388800px;}
.ye6{bottom:708.394800px;}
.y9f{bottom:708.412800px;}
.y7b{bottom:708.430800px;}
.ybf{bottom:708.436800px;}
.y52{bottom:715.357050px;}
.y13a{bottom:718.394700px;}
.y117{bottom:730.138800px;}
.y2b{bottom:730.144800px;}
.ye5{bottom:730.150800px;}
.y9e{bottom:730.168800px;}
.y7a{bottom:730.186800px;}
.ybe{bottom:730.192800px;}
.y51{bottom:731.111850px;}
.y50{bottom:746.866650px;}
.ybb{bottom:751.894800px;}
.y2a{bottom:751.900800px;}
.ye4{bottom:751.906800px;}
.y9d{bottom:751.924800px;}
.y79{bottom:751.942800px;}
.ybd{bottom:751.948800px;}
.ybc{bottom:756.843900px;}
.y4f{bottom:762.621450px;}
.yba{bottom:773.650800px;}
.y29{bottom:773.656800px;}
.ye3{bottom:773.662800px;}
.y9c{bottom:773.680800px;}
.y78{bottom:773.698800px;}
.y4e{bottom:778.376250px;}
.y5{bottom:790.192800px;}
.y4d{bottom:794.126250px;}
.yb9{bottom:795.406800px;}
.y28{bottom:795.412800px;}
.ye2{bottom:795.418800px;}
.y9b{bottom:795.436800px;}
.y139{bottom:813.194850px;}
.y138{bottom:813.211350px;}
.yb8{bottom:817.162800px;}
.y27{bottom:817.168800px;}
.ye1{bottom:817.174800px;}
.y9a{bottom:817.192800px;}
.y4{bottom:817.198800px;}
.y137{bottom:833.959350px;}
.yb7{bottom:838.918800px;}
.y26{bottom:838.924800px;}
.ye0{bottom:838.930800px;}
.y4a{bottom:838.942800px;}
.y4c{bottom:838.948800px;}
.y4b{bottom:843.843900px;}
.y136{bottom:850.455150px;}
.yb6{bottom:860.674800px;}
.y25{bottom:860.680800px;}
.y49{bottom:860.686800px;}
.y99{bottom:860.692800px;}
.y3{bottom:860.698800px;}
.y135{bottom:866.950950px;}
.yb5{bottom:882.430800px;}
.y24{bottom:882.436800px;}
.y48{bottom:882.442800px;}
.y98{bottom:882.448800px;}
.y134{bottom:883.446750px;}
.y77{bottom:887.343900px;}
.y96{bottom:904.186800px;}
.y23{bottom:904.192800px;}
.y47{bottom:904.198800px;}
.y97{bottom:909.093900px;}
.y20{bottom:925.942800px;}
.y22{bottom:925.948800px;}
.y21{bottom:930.843900px;}
.y2{bottom:947.698800px;}
.y95{bottom:952.593900px;}
.h7{height:24.819010px;}
.h14{height:33.014400px;}
.hc{height:34.351200px;}
.h2{height:40.948800px;}
.h8{height:40.953000px;}
.ha{height:40.971600px;}
.h11{height:40.972200px;}
.h13{height:40.990800px;}
.hb{height:41.010600px;}
.hd{height:42.026400px;}
.h15{height:44.040000px;}
.h3{height:47.718000px;}
.h6{height:49.921200px;}
.h9{height:49.969200px;}
.hf{height:50.041200px;}
.h10{height:50.161200px;}
.h12{height:50.329200px;}
.h16{height:56.133600px;}
.he{height:58.644000px;}
.h5{height:75.432000px;}
.h4{height:86.880000px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x1{left:110.551200px;}
.x12{left:115.028400px;}
.x28{left:122.863050px;}
.xc{left:124.848450px;}
.x7{left:131.811000px;}
.x2{left:144.567000px;}
.x2e{left:148.501950px;}
.xd{left:154.382400px;}
.x13{left:167.004450px;}
.x14{left:176.074800px;}
.x11{left:186.225300px;}
.x20{left:208.791300px;}
.x3{left:216.298050px;}
.x21{left:217.861800px;}
.x4{left:220.879650px;}
.xa{left:247.602900px;}
.x1e{left:281.774700px;}
.x2f{left:287.785650px;}
.x1f{left:290.845200px;}
.x2b{left:299.905650px;}
.x25{left:359.828400px;}
.x26{left:368.898750px;}
.x1c{left:373.791450px;}
.x1a{left:381.509400px;}
.x1d{left:382.861800px;}
.x1b{left:390.579750px;}
.x8{left:415.107600px;}
.x9{left:419.689200px;}
.x18{left:449.029650px;}
.x19{left:458.100150px;}
.xb{left:479.303700px;}
.x29{left:495.961950px;}
.x2a{left:505.032450px;}
.x30{left:521.675100px;}
.x27{left:544.087200px;}
.x23{left:545.255250px;}
.x24{left:554.325750px;}
.x5{left:579.460050px;}
.x22{left:581.359500px;}
.xe{left:582.760350px;}
.x6{left:584.041500px;}
.xf{left:587.341950px;}
.x15{left:636.894600px;}
.x16{left:645.965100px;}
.x17{left:654.872250px;}
.x10{left:657.462900px;}
.x2d{left:664.535250px;}
.x2c{left:697.322850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.497600pt;}
.v1{vertical-align:17.447467pt;}
.lsa{letter-spacing:-0.689067pt;}
.ls9{letter-spacing:-0.202667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.001219pt;}
.ls2{letter-spacing:0.001763pt;}
.ls6{letter-spacing:0.006073pt;}
.ls1{letter-spacing:1.173333pt;}
.ls8{letter-spacing:3.364267pt;}
.ls5{letter-spacing:47.139048pt;}
.ls3{letter-spacing:1064.276800pt;}
.ls0{letter-spacing:2012.529067pt;}
.ws72{word-spacing:-15.470933pt;}
.wsd9{word-spacing:-14.400000pt;}
.wse5{word-spacing:-10.666667pt;}
.ws0{word-spacing:-8.106667pt;}
.ws14{word-spacing:-6.094293pt;}
.ws23{word-spacing:-3.501867pt;}
.wsc5{word-spacing:-3.083733pt;}
.ws8{word-spacing:-3.031467pt;}
.wse3{word-spacing:-2.874667pt;}
.wse2{word-spacing:-2.822400pt;}
.ws20{word-spacing:-2.770133pt;}
.wsa5{word-spacing:-2.717867pt;}
.ws82{word-spacing:-2.665600pt;}
.ws1a{word-spacing:-2.613333pt;}
.ws34{word-spacing:-2.508800pt;}
.wsc7{word-spacing:-2.456533pt;}
.ws77{word-spacing:-2.352000pt;}
.wscb{word-spacing:-2.299733pt;}
.ws7d{word-spacing:-2.247467pt;}
.wsbb{word-spacing:-2.195200pt;}
.wscd{word-spacing:-2.142933pt;}
.wsaa{word-spacing:-2.090667pt;}
.wsdb{word-spacing:-2.038400pt;}
.wsc6{word-spacing:-1.933867pt;}
.wsb7{word-spacing:-1.881600pt;}
.ws98{word-spacing:-1.829333pt;}
.ws37{word-spacing:-1.777067pt;}
.wsdf{word-spacing:-1.724800pt;}
.wsa6{word-spacing:-1.620267pt;}
.wsd{word-spacing:-1.568000pt;}
.ws71{word-spacing:-1.539200pt;}
.ws9d{word-spacing:-1.515733pt;}
.ws5c{word-spacing:-1.463467pt;}
.ws26{word-spacing:-1.459200pt;}
.ws64{word-spacing:-1.358933pt;}
.ws7a{word-spacing:-1.306667pt;}
.wsd7{word-spacing:-1.256533pt;}
.ws66{word-spacing:-1.254400pt;}
.ws13{word-spacing:-1.175467pt;}
.ws1b{word-spacing:-1.149867pt;}
.ws52{word-spacing:-1.094400pt;}
.wsac{word-spacing:-0.993067pt;}
.ws55{word-spacing:-0.972800pt;}
.ws3a{word-spacing:-0.932267pt;}
.wse7{word-spacing:-0.891733pt;}
.ws6{word-spacing:-0.888533pt;}
.ws1e{word-spacing:-0.836267pt;}
.ws24{word-spacing:-0.810667pt;}
.ws1f{word-spacing:-0.784000pt;}
.wsa1{word-spacing:-0.770133pt;}
.ws2d{word-spacing:-0.729600pt;}
.ws5{word-spacing:-0.679467pt;}
.wsd5{word-spacing:-0.608000pt;}
.ws4d{word-spacing:-0.567467pt;}
.ws2b{word-spacing:-0.526933pt;}
.wsa{word-spacing:-0.522667pt;}
.ws7e{word-spacing:-0.470400pt;}
.ws25{word-spacing:-0.445867pt;}
.wsb3{word-spacing:-0.418133pt;}
.ws41{word-spacing:-0.405333pt;}
.ws6c{word-spacing:-0.365867pt;}
.ws4e{word-spacing:-0.324267pt;}
.ws19{word-spacing:-0.313600pt;}
.ws16{word-spacing:-0.261333pt;}
.ws54{word-spacing:-0.243200pt;}
.wsc8{word-spacing:-0.209067pt;}
.ws2a{word-spacing:-0.202667pt;}
.wsb1{word-spacing:-0.156800pt;}
.wsbe{word-spacing:-0.104533pt;}
.ws97{word-spacing:-0.052267pt;}
.wsa7{word-spacing:-0.041600pt;}
.ws38{word-spacing:-0.040533pt;}
.ws1{word-spacing:0.000000pt;}
.ws45{word-spacing:0.081067pt;}
.ws3{word-spacing:0.156800pt;}
.wse6{word-spacing:0.162133pt;}
.ws6e{word-spacing:0.243200pt;}
.wsa9{word-spacing:0.261333pt;}
.ws33{word-spacing:0.324267pt;}
.wsd3{word-spacing:0.365867pt;}
.ws4a{word-spacing:0.405333pt;}
.ws9{word-spacing:0.418133pt;}
.ws4f{word-spacing:0.445867pt;}
.ws89{word-spacing:0.486400pt;}
.ws83{word-spacing:0.522667pt;}
.wsaf{word-spacing:0.574933pt;}
.ws86{word-spacing:0.627200pt;}
.wsc4{word-spacing:0.648533pt;}
.wsde{word-spacing:0.679467pt;}
.ws70{word-spacing:0.689067pt;}
.wsbd{word-spacing:0.731733pt;}
.ws40{word-spacing:0.770133pt;}
.ws7b{word-spacing:0.784000pt;}
.ws81{word-spacing:0.836267pt;}
.ws50{word-spacing:0.851200pt;}
.ws10{word-spacing:0.888533pt;}
.ws56{word-spacing:0.891733pt;}
.ws30{word-spacing:0.932267pt;}
.wsc0{word-spacing:0.972800pt;}
.ws3f{word-spacing:1.013333pt;}
.ws78{word-spacing:1.045333pt;}
.ws29{word-spacing:1.094400pt;}
.wsb5{word-spacing:1.134933pt;}
.wsba{word-spacing:1.149867pt;}
.ws51{word-spacing:1.175467pt;}
.wsa0{word-spacing:1.202133pt;}
.ws39{word-spacing:1.216000pt;}
.ws5a{word-spacing:1.254400pt;}
.wsb6{word-spacing:1.256533pt;}
.ws84{word-spacing:1.358933pt;}
.ws42{word-spacing:1.378133pt;}
.ws17{word-spacing:1.411200pt;}
.ws12{word-spacing:1.418667pt;}
.ws3b{word-spacing:1.459200pt;}
.wsca{word-spacing:1.463467pt;}
.wsa3{word-spacing:1.515733pt;}
.ws69{word-spacing:1.568000pt;}
.ws31{word-spacing:1.580800pt;}
.wsb{word-spacing:1.620267pt;}
.ws79{word-spacing:1.672533pt;}
.ws73{word-spacing:1.724800pt;}
.ws6d{word-spacing:1.783467pt;}
.ws49{word-spacing:1.824000pt;}
.wsf{word-spacing:1.829333pt;}
.wsb0{word-spacing:1.881600pt;}
.ws48{word-spacing:1.905067pt;}
.ws2c{word-spacing:1.945600pt;}
.ws5f{word-spacing:1.986133pt;}
.ws46{word-spacing:2.026667pt;}
.ws9b{word-spacing:2.038400pt;}
.wsd4{word-spacing:2.067200pt;}
.wsd0{word-spacing:2.142933pt;}
.ws3c{word-spacing:2.229333pt;}
.wscc{word-spacing:2.247467pt;}
.ws28{word-spacing:2.310400pt;}
.ws8d{word-spacing:2.352000pt;}
.ws88{word-spacing:2.391467pt;}
.wse0{word-spacing:2.404267pt;}
.wsd6{word-spacing:2.432000pt;}
.ws43{word-spacing:2.472533pt;}
.ws6f{word-spacing:2.513067pt;}
.wsd8{word-spacing:2.553600pt;}
.ws6b{word-spacing:2.561067pt;}
.ws75{word-spacing:2.613333pt;}
.ws4b{word-spacing:2.715733pt;}
.ws99{word-spacing:2.717867pt;}
.ws6a{word-spacing:2.770133pt;}
.ws7c{word-spacing:2.822400pt;}
.wsc3{word-spacing:2.918400pt;}
.wsd2{word-spacing:2.926933pt;}
.ws8a{word-spacing:2.979200pt;}
.ws85{word-spacing:3.031467pt;}
.ws2e{word-spacing:3.080533pt;}
.ws8b{word-spacing:3.083733pt;}
.ws53{word-spacing:3.121067pt;}
.ws60{word-spacing:3.136000pt;}
.ws61{word-spacing:3.188267pt;}
.ws65{word-spacing:3.240533pt;}
.wsc1{word-spacing:3.242667pt;}
.ws27{word-spacing:3.283200pt;}
.wsce{word-spacing:3.292800pt;}
.wse1{word-spacing:3.345067pt;}
.ws76{word-spacing:3.397333pt;}
.ws2f{word-spacing:3.445333pt;}
.wsb8{word-spacing:3.449600pt;}
.wse4{word-spacing:3.501867pt;}
.wse9{word-spacing:3.526400pt;}
.ws57{word-spacing:3.566933pt;}
.ws5b{word-spacing:3.658667pt;}
.ws8c{word-spacing:3.710933pt;}
.ws90{word-spacing:3.763200pt;}
.ws44{word-spacing:3.891200pt;}
.ws22{word-spacing:3.920000pt;}
.ws58{word-spacing:3.931733pt;}
.wse{word-spacing:3.972267pt;}
.ws62{word-spacing:4.024533pt;}
.ws67{word-spacing:4.076800pt;}
.wsdc{word-spacing:4.129067pt;}
.wsbc{word-spacing:4.233600pt;}
.ws3d{word-spacing:4.256000pt;}
.ws96{word-spacing:4.338133pt;}
.ws9f{word-spacing:4.390400pt;}
.ws95{word-spacing:4.494933pt;}
.wsa4{word-spacing:4.547200pt;}
.ws74{word-spacing:4.599467pt;}
.ws63{word-spacing:4.704000pt;}
.ws1c{word-spacing:4.756267pt;}
.wsb4{word-spacing:4.782933pt;}
.ws32{word-spacing:4.823467pt;}
.ws4c{word-spacing:4.864000pt;}
.wsc9{word-spacing:4.913067pt;}
.ws7{word-spacing:4.965333pt;}
.wsc2{word-spacing:4.985600pt;}
.ws21{word-spacing:5.017600pt;}
.ws92{word-spacing:5.069867pt;}
.wsa8{word-spacing:5.122133pt;}
.wsc{word-spacing:5.174400pt;}
.ws59{word-spacing:5.188267pt;}
.wsdd{word-spacing:5.226667pt;}
.ws87{word-spacing:5.228800pt;}
.wsae{word-spacing:5.331200pt;}
.ws5e{word-spacing:5.435733pt;}
.ws94{word-spacing:5.592533pt;}
.wsbf{word-spacing:5.674667pt;}
.ws2{word-spacing:5.749333pt;}
.ws35{word-spacing:5.801600pt;}
.ws80{word-spacing:5.958400pt;}
.ws68{word-spacing:6.010667pt;}
.ws18{word-spacing:6.062933pt;}
.ws47{word-spacing:6.080000pt;}
.ws1d{word-spacing:6.115200pt;}
.wsb2{word-spacing:6.167467pt;}
.ws3e{word-spacing:6.242133pt;}
.ws11{word-spacing:6.272000pt;}
.ws93{word-spacing:6.533333pt;}
.wse8{word-spacing:6.647467pt;}
.wscf{word-spacing:6.690133pt;}
.ws9a{word-spacing:6.794667pt;}
.ws9e{word-spacing:7.108267pt;}
.ws7f{word-spacing:7.265067pt;}
.wsa2{word-spacing:7.474133pt;}
.ws9c{word-spacing:7.735467pt;}
.wsda{word-spacing:8.049067pt;}
.ws36{word-spacing:8.101333pt;}
.ws5d{word-spacing:8.414933pt;}
.wsd1{word-spacing:8.519467pt;}
.wsad{word-spacing:8.571733pt;}
.wsb9{word-spacing:8.885333pt;}
.ws91{word-spacing:8.937600pt;}
.ws4{word-spacing:9.042133pt;}
.ws8e{word-spacing:9.198933pt;}
.wsab{word-spacing:10.976000pt;}
.ws8f{word-spacing:11.237333pt;}
.ws15{word-spacing:1407.560533pt;}
._9{margin-left:-1407.545600pt;}
._7{margin-left:-6.742400pt;}
._a{margin-left:-5.184213pt;}
._6{margin-left:-4.092800pt;}
._5{margin-left:-2.692160pt;}
._2{margin-left:-0.928000pt;}
._4{width:0.902400pt;}
._0{width:1.818667pt;}
._3{width:2.912000pt;}
._1{width:4.752000pt;}
._14{width:19.698575pt;}
._12{width:21.644089pt;}
._10{width:23.468561pt;}
._11{width:25.253899pt;}
._13{width:27.967289pt;}
._c{width:42.316669pt;}
._b{width:44.059494pt;}
._8{width:45.721361pt;}
._e{width:49.004644pt;}
._f{width:51.720556pt;}
._d{width:1203.260267pt;}
.fsa{font-size:23.630933pt;}
.fs5{font-size:30.471467pt;}
.fs6{font-size:39.466667pt;}
.fs0{font-size:40.533333pt;}
.fs7{font-size:41.600000pt;}
.fs4{font-size:52.266667pt;}
.fs9{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs8{font-size:72.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:69.065600pt;}
.y76{bottom:126.949600pt;}
.y94{bottom:126.988133pt;}
.y116{bottom:127.031600pt;}
.yfe{bottom:127.057200pt;}
.y92{bottom:127.060533pt;}
.y45{bottom:127.061467pt;}
.y1f{bottom:127.065733pt;}
.y46{bottom:127.692667pt;}
.y75{bottom:140.953867pt;}
.y115{bottom:141.035867pt;}
.yfd{bottom:141.061467pt;}
.y1d{bottom:141.064800pt;}
.y1e{bottom:141.065733pt;}
.y93{bottom:141.392133pt;}
.y91{bottom:145.959200pt;}
.yd8{bottom:145.963467pt;}
.y74{bottom:154.958133pt;}
.y114{bottom:155.040133pt;}
.y44{bottom:155.052000pt;}
.yfc{bottom:155.065733pt;}
.y1c{bottom:159.963467pt;}
.yd7{bottom:164.861333pt;}
.y73{bottom:168.962400pt;}
.y113{bottom:169.044400pt;}
.yfb{bottom:169.065733pt;}
.y43{bottom:173.950667pt;}
.y90{bottom:173.958400pt;}
.y1b{bottom:173.963467pt;}
.yb4{bottom:178.857067pt;}
.y72{bottom:182.966667pt;}
.y112{bottom:183.048667pt;}
.yd6{bottom:183.759067pt;}
.y133{bottom:185.022933pt;}
.ydd{bottom:185.060267pt;}
.y42{bottom:187.954933pt;}
.y124{bottom:192.844267pt;}
.y8f{bottom:192.857067pt;}
.yb3{bottom:192.861333pt;}
.y71{bottom:196.970933pt;}
.y111{bottom:197.052933pt;}
.y41{bottom:201.959200pt;}
.yd5{bottom:202.656800pt;}
.y132{bottom:204.361600pt;}
.yfa{bottom:204.393600pt;}
.ydc{bottom:204.398933pt;}
.y123{bottom:206.848533pt;}
.y8e{bottom:206.861333pt;}
.y70{bottom:210.975200pt;}
.y110{bottom:211.057200pt;}
.y40{bottom:215.963467pt;}
.y122{bottom:220.852800pt;}
.y8d{bottom:220.861333pt;}
.yf8{bottom:223.657600pt;}
.yda{bottom:223.684267pt;}
.y131{bottom:223.700267pt;}
.yf9{bottom:223.732267pt;}
.y6f{bottom:224.979467pt;}
.y10f{bottom:225.061467pt;}
.yb2{bottom:225.742000pt;}
.ydb{bottom:228.083467pt;}
.y3f{bottom:229.963467pt;}
.y121{bottom:234.857067pt;}
.y6e{bottom:238.983733pt;}
.y10e{bottom:239.065733pt;}
.yb1{bottom:239.746267pt;}
.yf7{bottom:242.996267pt;}
.yd9{bottom:243.022933pt;}
.y130{bottom:243.038933pt;}
.y3e{bottom:248.822800pt;}
.y120{bottom:248.861333pt;}
.y6d{bottom:252.988000pt;}
.yb0{bottom:253.750533pt;}
.y10d{bottom:257.942133pt;}
.yf6{bottom:262.334933pt;}
.y1a{bottom:262.345600pt;}
.yd4{bottom:262.361600pt;}
.y12f{bottom:262.377600pt;}
.y3d{bottom:262.827067pt;}
.y11f{bottom:262.861333pt;}
.y6c{bottom:266.992267pt;}
.yaf{bottom:267.754800pt;}
.y10c{bottom:271.946400pt;}
.y3c{bottom:276.831333pt;}
.yf5{bottom:281.673600pt;}
.y19{bottom:281.684267pt;}
.yd3{bottom:281.700267pt;}
.y12e{bottom:281.716267pt;}
.yae{bottom:281.759067pt;}
.y6b{bottom:285.766267pt;}
.y10b{bottom:285.950667pt;}
.y3b{bottom:290.835600pt;}
.y6a{bottom:299.770533pt;}
.y10a{bottom:299.954933pt;}
.yad{bottom:300.656800pt;}
.yf4{bottom:301.012267pt;}
.y18{bottom:301.022933pt;}
.y8c{bottom:301.038933pt;}
.y12d{bottom:301.054933pt;}
.y3a{bottom:304.839867pt;}
.y69{bottom:313.774800pt;}
.y109{bottom:313.959200pt;}
.y39{bottom:318.844133pt;}
.yf3{bottom:320.350933pt;}
.y17{bottom:320.361600pt;}
.y8b{bottom:320.377600pt;}
.y12c{bottom:320.393600pt;}
.y68{bottom:327.779067pt;}
.y108{bottom:327.954133pt;}
.y38{bottom:332.848400pt;}
.y12a{bottom:339.684267pt;}
.yf2{bottom:339.689600pt;}
.y16{bottom:339.700267pt;}
.yac{bottom:339.710933pt;}
.y8a{bottom:339.716267pt;}
.y12b{bottom:339.732267pt;}
.y67{bottom:341.783333pt;}
.y37{bottom:346.852667pt;}
.y107{bottom:346.852800pt;}
.y66{bottom:355.787600pt;}
.y129{bottom:359.022933pt;}
.yf1{bottom:359.028267pt;}
.y15{bottom:359.038933pt;}
.yab{bottom:359.049600pt;}
.y89{bottom:359.054933pt;}
.y36{bottom:360.856933pt;}
.y106{bottom:360.857067pt;}
.y65{bottom:369.791867pt;}
.y34{bottom:374.856133pt;}
.y35{bottom:374.861200pt;}
.y105{bottom:374.861333pt;}
.y128{bottom:378.361600pt;}
.yf0{bottom:378.366933pt;}
.y14{bottom:378.377600pt;}
.yaa{bottom:378.388267pt;}
.y88{bottom:378.393600pt;}
.y64{bottom:383.796133pt;}
.y33{bottom:393.754800pt;}
.y87{bottom:397.678933pt;}
.y11e{bottom:397.689600pt;}
.y127{bottom:397.700267pt;}
.yef{bottom:397.705600pt;}
.yd0{bottom:397.710933pt;}
.y13{bottom:397.716267pt;}
.ya9{bottom:397.726933pt;}
.yd2{bottom:397.732267pt;}
.y63{bottom:397.800400pt;}
.yd1{bottom:402.083467pt;}
.y31{bottom:407.754800pt;}
.y32{bottom:407.759067pt;}
.y62{bottom:411.804667pt;}
.y86{bottom:417.017600pt;}
.y11d{bottom:417.028267pt;}
.y126{bottom:417.038933pt;}
.yee{bottom:417.044267pt;}
.ycf{bottom:417.049600pt;}
.y12{bottom:417.054933pt;}
.ya8{bottom:417.065600pt;}
.y30{bottom:421.759067pt;}
.y61{bottom:425.808933pt;}
.y85{bottom:436.356267pt;}
.ya7{bottom:436.366933pt;}
.y125{bottom:436.377600pt;}
.yed{bottom:436.382933pt;}
.yce{bottom:436.388267pt;}
.y11{bottom:436.393600pt;}
.y60{bottom:439.813200pt;}
.y5f{bottom:453.817467pt;}
.y84{bottom:455.694933pt;}
.ya6{bottom:455.705600pt;}
.ye{bottom:455.716267pt;}
.yec{bottom:455.721600pt;}
.ycd{bottom:455.726933pt;}
.y10{bottom:455.732267pt;}
.ydf{bottom:456.070800pt;}
.yf{bottom:460.083467pt;}
.y5e{bottom:467.821733pt;}
.yde{bottom:470.474800pt;}
.y104{bottom:474.974933pt;}
.y83{bottom:475.033600pt;}
.yca{bottom:475.038933pt;}
.ya5{bottom:475.044267pt;}
.yd{bottom:475.054933pt;}
.yeb{bottom:475.060267pt;}
.ycc{bottom:475.065600pt;}
.ycb{bottom:479.416800pt;}
.y5d{bottom:481.826000pt;}
.y103{bottom:494.313600pt;}
.y82{bottom:494.372267pt;}
.yc9{bottom:494.377600pt;}
.ya4{bottom:494.382933pt;}
.yc{bottom:494.393600pt;}
.yea{bottom:494.398933pt;}
.y5c{bottom:495.830267pt;}
.y5b{bottom:509.834533pt;}
.y102{bottom:513.652267pt;}
.y81{bottom:513.710933pt;}
.yc8{bottom:513.716267pt;}
.y9{bottom:513.721600pt;}
.yb{bottom:513.732267pt;}
.ya{bottom:518.083467pt;}
.y5a{bottom:523.838800pt;}
.y101{bottom:532.990933pt;}
.y80{bottom:533.049600pt;}
.yc7{bottom:533.054933pt;}
.y8{bottom:533.060267pt;}
.ye9{bottom:533.065600pt;}
.y59{bottom:537.843067pt;}
.y58{bottom:551.847333pt;}
.y100{bottom:552.329600pt;}
.ya3{bottom:552.345600pt;}
.y7f{bottom:552.388267pt;}
.yc6{bottom:552.393600pt;}
.y7{bottom:552.398933pt;}
.y11c{bottom:556.750133pt;}
.y57{bottom:565.851600pt;}
.y11b{bottom:571.657600pt;}
.y2f{bottom:571.662933pt;}
.yff{bottom:571.668267pt;}
.ya2{bottom:571.684267pt;}
.yc4{bottom:571.721600pt;}
.y7e{bottom:571.726933pt;}
.y6{bottom:571.732267pt;}
.yc5{bottom:576.083467pt;}
.y56{bottom:579.855867pt;}
.y11a{bottom:590.996267pt;}
.y2e{bottom:591.001600pt;}
.ye8{bottom:591.006933pt;}
.ya1{bottom:591.022933pt;}
.y7d{bottom:591.038933pt;}
.yc3{bottom:591.060267pt;}
.y55{bottom:593.860133pt;}
.y13e{bottom:597.954933pt;}
.y54{bottom:607.864400pt;}
.y119{bottom:610.334933pt;}
.y2d{bottom:610.340267pt;}
.ye7{bottom:610.345600pt;}
.ya0{bottom:610.361600pt;}
.y7c{bottom:610.377600pt;}
.yc0{bottom:610.382933pt;}
.yc2{bottom:610.398933pt;}
.y13d{bottom:612.617867pt;}
.yc1{bottom:614.750133pt;}
.y53{bottom:621.868667pt;}
.y13c{bottom:627.280800pt;}
.y13b{bottom:627.284533pt;}
.y118{bottom:629.673600pt;}
.y2c{bottom:629.678933pt;}
.ye6{bottom:629.684267pt;}
.y9f{bottom:629.700267pt;}
.y7b{bottom:629.716267pt;}
.ybf{bottom:629.721600pt;}
.y52{bottom:635.872933pt;}
.y13a{bottom:638.573067pt;}
.y117{bottom:649.012267pt;}
.y2b{bottom:649.017600pt;}
.ye5{bottom:649.022933pt;}
.y9e{bottom:649.038933pt;}
.y7a{bottom:649.054933pt;}
.ybe{bottom:649.060267pt;}
.y51{bottom:649.877200pt;}
.y50{bottom:663.881467pt;}
.ybb{bottom:668.350933pt;}
.y2a{bottom:668.356267pt;}
.ye4{bottom:668.361600pt;}
.y9d{bottom:668.377600pt;}
.y79{bottom:668.393600pt;}
.ybd{bottom:668.398933pt;}
.ybc{bottom:672.750133pt;}
.y4f{bottom:677.885733pt;}
.yba{bottom:687.689600pt;}
.y29{bottom:687.694933pt;}
.ye3{bottom:687.700267pt;}
.y9c{bottom:687.716267pt;}
.y78{bottom:687.732267pt;}
.y4e{bottom:691.890000pt;}
.y5{bottom:702.393600pt;}
.y4d{bottom:705.890000pt;}
.yb9{bottom:707.028267pt;}
.y28{bottom:707.033600pt;}
.ye2{bottom:707.038933pt;}
.y9b{bottom:707.054933pt;}
.y139{bottom:722.839867pt;}
.y138{bottom:722.854533pt;}
.yb8{bottom:726.366933pt;}
.y27{bottom:726.372267pt;}
.ye1{bottom:726.377600pt;}
.y9a{bottom:726.393600pt;}
.y4{bottom:726.398933pt;}
.y137{bottom:741.297200pt;}
.yb7{bottom:745.705600pt;}
.y26{bottom:745.710933pt;}
.ye0{bottom:745.716267pt;}
.y4a{bottom:745.726933pt;}
.y4c{bottom:745.732267pt;}
.y4b{bottom:750.083467pt;}
.y136{bottom:755.960133pt;}
.yb6{bottom:765.044267pt;}
.y25{bottom:765.049600pt;}
.y49{bottom:765.054933pt;}
.y99{bottom:765.060267pt;}
.y3{bottom:765.065600pt;}
.y135{bottom:770.623067pt;}
.yb5{bottom:784.382933pt;}
.y24{bottom:784.388267pt;}
.y48{bottom:784.393600pt;}
.y98{bottom:784.398933pt;}
.y134{bottom:785.286000pt;}
.y77{bottom:788.750133pt;}
.y96{bottom:803.721600pt;}
.y23{bottom:803.726933pt;}
.y47{bottom:803.732267pt;}
.y97{bottom:808.083467pt;}
.y20{bottom:823.060267pt;}
.y22{bottom:823.065600pt;}
.y21{bottom:827.416800pt;}
.y2{bottom:842.398933pt;}
.y95{bottom:846.750133pt;}
.h7{height:22.061342pt;}
.h14{height:29.346133pt;}
.hc{height:30.534400pt;}
.h2{height:36.398933pt;}
.h8{height:36.402667pt;}
.ha{height:36.419200pt;}
.h11{height:36.419733pt;}
.h13{height:36.436267pt;}
.hb{height:36.453867pt;}
.hd{height:37.356800pt;}
.h15{height:39.146667pt;}
.h3{height:42.416000pt;}
.h6{height:44.374400pt;}
.h9{height:44.417067pt;}
.hf{height:44.481067pt;}
.h10{height:44.587733pt;}
.h12{height:44.737067pt;}
.h16{height:49.896533pt;}
.he{height:52.128000pt;}
.h5{height:67.050667pt;}
.h4{height:77.226667pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x1{left:98.267733pt;}
.x12{left:102.247467pt;}
.x28{left:109.211600pt;}
.xc{left:110.976400pt;}
.x7{left:117.165333pt;}
.x2{left:128.504000pt;}
.x2e{left:132.001733pt;}
.xd{left:137.228800pt;}
.x13{left:148.448400pt;}
.x14{left:156.510933pt;}
.x11{left:165.533600pt;}
.x20{left:185.592267pt;}
.x3{left:192.264933pt;}
.x21{left:193.654933pt;}
.x4{left:196.337467pt;}
.xa{left:220.091467pt;}
.x1e{left:250.466400pt;}
.x2f{left:255.809467pt;}
.x1f{left:258.529067pt;}
.x2b{left:266.582800pt;}
.x25{left:319.847467pt;}
.x26{left:327.910000pt;}
.x1c{left:332.259067pt;}
.x1a{left:339.119467pt;}
.x1d{left:340.321600pt;}
.x1b{left:347.182000pt;}
.x8{left:368.984533pt;}
.x9{left:373.057067pt;}
.x18{left:399.137467pt;}
.x19{left:407.200133pt;}
.xb{left:426.047733pt;}
.x29{left:440.855067pt;}
.x2a{left:448.917733pt;}
.x30{left:463.711200pt;}
.x27{left:483.633067pt;}
.x23{left:484.671333pt;}
.x24{left:492.734000pt;}
.x5{left:515.075600pt;}
.x22{left:516.764000pt;}
.xe{left:518.009200pt;}
.x6{left:519.148000pt;}
.xf{left:522.081733pt;}
.x15{left:566.128533pt;}
.x16{left:574.191200pt;}
.x17{left:582.108667pt;}
.x10{left:584.411467pt;}
.x2d{left:590.698000pt;}
.x2c{left:619.842533pt;}
}




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