
    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_5c7e67075aa54558a17ce608.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3b533e8eacac3cd85e8dbb1b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d7c1b34fc89a5c899aa26815.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_037662214ff50cf2b8e50060.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.698000;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_34ab4b722cdcea15f58e49ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.717000;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_61d2cf24de3d805db9e8c608.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.843000;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_fbc0b4b54151fc8105f7fb62.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_252b9fa7408745cbf627826e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.388000;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_623d37f3c372c562667c6778.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:8.964000px;}
.v5{vertical-align:17.358000px;}
.v1{vertical-align:21.696000px;}
.ls2{letter-spacing:0.000000px;}
.ls1f{letter-spacing:2.809892px;}
.ls1c{letter-spacing:2.822474px;}
.ls1b{letter-spacing:2.844177px;}
.ls1d{letter-spacing:2.845229px;}
.ls1e{letter-spacing:2.846485px;}
.ls3{letter-spacing:2.985004px;}
.ls4{letter-spacing:2.987100px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.990611px;}
.ls2c{letter-spacing:4.427451px;}
.ls2b{letter-spacing:4.462005px;}
.ls16{letter-spacing:4.604530px;}
.ls13{letter-spacing:4.625149px;}
.ls12{letter-spacing:4.660713px;}
.ls14{letter-spacing:4.662437px;}
.ls15{letter-spacing:4.664496px;}
.ls11{letter-spacing:4.878824px;}
.ls10{letter-spacing:4.916901px;}
.lse{letter-spacing:5.152801px;}
.lsb{letter-spacing:5.175875px;}
.lsa{letter-spacing:5.215674px;}
.lsc{letter-spacing:5.217603px;}
.lsd{letter-spacing:5.219907px;}
.ls31{letter-spacing:5.229662px;}
.ls2e{letter-spacing:5.253080px;}
.ls2d{letter-spacing:5.293473px;}
.ls2f{letter-spacing:5.295431px;}
.ls30{letter-spacing:5.297769px;}
.ls22{letter-spacing:10.572538px;}
.ls23{letter-spacing:12.024538px;}
.ls21{letter-spacing:12.070200px;}
.ls24{letter-spacing:12.076200px;}
.ls19{letter-spacing:13.236538px;}
.ls9{letter-spacing:13.788538px;}
.ls7{letter-spacing:13.794538px;}
.ls25{letter-spacing:14.874538px;}
.ls28{letter-spacing:14.880538px;}
.ls1a{letter-spacing:14.892538px;}
.ls2a{letter-spacing:14.898538px;}
.ls18{letter-spacing:14.944200px;}
.ls8{letter-spacing:15.894538px;}
.ls6{letter-spacing:15.946200px;}
.ls20{letter-spacing:17.022760px;}
.ls36{letter-spacing:17.628538px;}
.ls34{letter-spacing:17.634538px;}
.ls29{letter-spacing:17.850538px;}
.ls26{letter-spacing:17.856538px;}
.ls27{letter-spacing:17.908200px;}
.ls5{letter-spacing:18.249004px;}
.ls35{letter-spacing:22.800538px;}
.ls33{letter-spacing:22.852200px;}
.ls17{letter-spacing:27.894959px;}
.lsf{letter-spacing:31.216469px;}
.ls32{letter-spacing:31.682106px;}
.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;}
}
.wsa1{word-spacing:-31.772584px;}
.ws69{word-spacing:-31.305617px;}
.ws7b{word-spacing:-27.974622px;}
.wsaa{word-spacing:-21.519300px;}
.ws7a{word-spacing:-18.649795px;}
.ws8b{word-spacing:-17.071373px;}
.ws5e{word-spacing:-14.943900px;}
.ws9f{word-spacing:-5.300198px;}
.ws9d{word-spacing:-5.295431px;}
.ws9b{word-spacing:-5.289567px;}
.ws65{word-spacing:-5.217603px;}
.ws79{word-spacing:-4.668732px;}
.ws77{word-spacing:-4.662437px;}
.ws4d{word-spacing:-3.048556px;}
.ws7f{word-spacing:-2.988780px;}
.ws32{word-spacing:-2.929004px;}
.ws8d{word-spacing:-2.873904px;}
.ws5{word-spacing:-2.869229px;}
.ws89{word-spacing:-2.850230px;}
.ws87{word-spacing:-2.845229px;}
.ws36{word-spacing:-2.809453px;}
.wsa7{word-spacing:-2.749678px;}
.ws39{word-spacing:-2.677954px;}
.ws19{word-spacing:-2.630126px;}
.ws83{word-spacing:-2.570351px;}
.ws29{word-spacing:-2.510575px;}
.wsb4{word-spacing:-2.385040px;}
.wsb6{word-spacing:-2.175826px;}
.wsae{word-spacing:-2.050297px;}
.ws84{word-spacing:-2.032370px;}
.ws6e{word-spacing:-1.972595px;}
.ws8e{word-spacing:-1.915242px;}
.ws53{word-spacing:-1.853044px;}
.ws34{word-spacing:-1.255288px;}
.ws20{word-spacing:-1.195512px;}
.ws51{word-spacing:-1.075961px;}
.wsad{word-spacing:-0.920542px;}
.ws4c{word-spacing:-0.896634px;}
.wsbc{word-spacing:-0.753170px;}
.ws2{word-spacing:-0.717307px;}
.ws13{word-spacing:-0.657532px;}
.wsc1{word-spacing:-0.543956px;}
.wsc{word-spacing:-0.537980px;}
.wsac{word-spacing:-0.502114px;}
.ws44{word-spacing:-0.478205px;}
.ws71{word-spacing:-0.418429px;}
.ws11{word-spacing:-0.358654px;}
.wsc2{word-spacing:-0.334742px;}
.ws48{word-spacing:-0.179327px;}
.ws42{word-spacing:-0.119551px;}
.ws38{word-spacing:-0.059776px;}
.wsb0{word-spacing:-0.041843px;}
.ws9e{word-spacing:-0.004614px;}
.ws66{word-spacing:-0.004546px;}
.ws78{word-spacing:-0.004062px;}
.ws88{word-spacing:-0.002479px;}
.ws7d{word-spacing:-0.001133px;}
.ws0{word-spacing:0.000000px;}
.ws76{word-spacing:0.012331px;}
.ws62{word-spacing:0.013799px;}
.ws9a{word-spacing:0.014005px;}
.ws2e{word-spacing:0.059776px;}
.wsa9{word-spacing:0.119551px;}
.ws1a{word-spacing:0.239102px;}
.ws43{word-spacing:0.298878px;}
.ws10{word-spacing:0.478205px;}
.wsa8{word-spacing:0.537980px;}
.ws3e{word-spacing:0.657532px;}
.wsb3{word-spacing:0.711328px;}
.ws3c{word-spacing:0.717307px;}
.ws14{word-spacing:0.777083px;}
.ws75{word-spacing:0.836858px;}
.ws41{word-spacing:0.896634px;}
.ws2b{word-spacing:0.956410px;}
.ws60{word-spacing:0.986682px;}
.ws61{word-spacing:0.995341px;}
.ws4{word-spacing:1.016185px;}
.wsa{word-spacing:1.135736px;}
.ws17{word-spacing:1.147694px;}
.ws40{word-spacing:1.195512px;}
.wsf{word-spacing:1.315063px;}
.ws6{word-spacing:1.374839px;}
.wsaf{word-spacing:1.380812px;}
.ws33{word-spacing:1.434614px;}
.ws35{word-spacing:1.494390px;}
.ws45{word-spacing:1.613941px;}
.ws1d{word-spacing:1.733492px;}
.ws54{word-spacing:1.793268px;}
.ws98{word-spacing:1.853044px;}
.ws4b{word-spacing:2.032370px;}
.wsb7{word-spacing:2.133983px;}
.ws58{word-spacing:2.151922px;}
.ws28{word-spacing:2.211697px;}
.ws37{word-spacing:2.271473px;}
.ws59{word-spacing:2.331248px;}
.ws52{word-spacing:2.510575px;}
.ws30{word-spacing:2.630126px;}
.wsb2{word-spacing:2.677939px;}
.ws73{word-spacing:2.689902px;}
.ws3d{word-spacing:2.749678px;}
.ws2c{word-spacing:2.809453px;}
.ws91{word-spacing:2.929004px;}
.ws8f{word-spacing:2.964025px;}
.ws90{word-spacing:2.975856px;}
.ws23{word-spacing:2.988780px;}
.wsb1{word-spacing:3.012682px;}
.ws5c{word-spacing:3.108331px;}
.ws27{word-spacing:3.227882px;}
.wsbd{word-spacing:3.305581px;}
.ws2a{word-spacing:3.347434px;}
.ws86{word-spacing:3.407209px;}
.ws25{word-spacing:3.466985px;}
.wsbf{word-spacing:3.472952px;}
.wsb5{word-spacing:3.514795px;}
.ws70{word-spacing:3.526760px;}
.ws49{word-spacing:3.586536px;}
.ws1e{word-spacing:3.646312px;}
.ws18{word-spacing:3.706087px;}
.ws22{word-spacing:3.825638px;}
.ws12{word-spacing:3.885414px;}
.ws9{word-spacing:3.945190px;}
.ws7{word-spacing:4.004965px;}
.ws1c{word-spacing:4.064741px;}
.ws85{word-spacing:4.244068px;}
.wsbe{word-spacing:4.351651px;}
.wsb{word-spacing:4.363619px;}
.ws92{word-spacing:4.423394px;}
.ws2f{word-spacing:4.542946px;}
.ws1f{word-spacing:4.662497px;}
.wsb9{word-spacing:4.686394px;}
.ws57{word-spacing:4.722272px;}
.wsc0{word-spacing:4.728236px;}
.ws31{word-spacing:4.841824px;}
.ws4a{word-spacing:5.080926px;}
.ws3{word-spacing:5.200477px;}
.ws67{word-spacing:5.212077px;}
.ws63{word-spacing:5.222551px;}
.ws94{word-spacing:5.260253px;}
.ws3a{word-spacing:5.320028px;}
.ws15{word-spacing:5.379804px;}
.wsab{word-spacing:5.559131px;}
.wsba{word-spacing:5.606935px;}
.ws8a{word-spacing:5.644948px;}
.ws26{word-spacing:5.678682px;}
.ws50{word-spacing:5.738458px;}
.ws3f{word-spacing:5.858009px;}
.ws46{word-spacing:5.917784px;}
.wsbb{word-spacing:6.025363px;}
.ws99{word-spacing:6.037336px;}
.ws5d{word-spacing:6.276438px;}
.ws80{word-spacing:6.455765px;}
.ws5b{word-spacing:6.575316px;}
.ws2d{word-spacing:6.635092px;}
.ws47{word-spacing:6.694867px;}
.ws3b{word-spacing:6.874194px;}
.wsb8{word-spacing:6.945905px;}
.ws93{word-spacing:6.993745px;}
.ws74{word-spacing:7.053521px;}
.ws6f{word-spacing:7.173072px;}
.ws55{word-spacing:7.471950px;}
.wsa3{word-spacing:7.890379px;}
.wsa4{word-spacing:7.940706px;}
.ws5f{word-spacing:8.189257px;}
.ws81{word-spacing:8.488135px;}
.ws1b{word-spacing:9.564096px;}
.ws56{word-spacing:10.221628px;}
.ws68{word-spacing:10.351750px;}
.ws64{word-spacing:10.370561px;}
.wsa0{word-spacing:10.506161px;}
.ws9c{word-spacing:10.514622px;}
.ws16{word-spacing:11.901626px;}
.ws1{word-spacing:11.907329px;}
.ws21{word-spacing:13.701791px;}
.ws24{word-spacing:14.884124px;}
.ws4f{word-spacing:14.943900px;}
.ws6b{word-spacing:16.772534px;}
.wsa6{word-spacing:19.507966px;}
.ws72{word-spacing:19.747966px;}
.ws5a{word-spacing:19.843966px;}
.ws4e{word-spacing:20.185966px;}
.wse{word-spacing:21.519300px;}
.ws8{word-spacing:24.169966px;}
.ws82{word-spacing:28.693966px;}
.wsd{word-spacing:37.003661px;}
.ws8c{word-spacing:54.059349px;}
.ws7c{word-spacing:88.586303px;}
.ws6a{word-spacing:99.134455px;}
.wsa2{word-spacing:100.613184px;}
.wsa5{word-spacing:482.176116px;}
.ws7e{word-spacing:797.528346px;}
.ws6d{word-spacing:810.118828px;}
.ws6c{word-spacing:870.218707px;}
.ws97{word-spacing:1249.948437px;}
.ws96{word-spacing:1435.168962px;}
.ws95{word-spacing:1504.526238px;}
._1d{margin-left:-2170.321684px;}
._29{margin-left:-2168.827342px;}
._9{margin-left:-2154.469637px;}
._18{margin-left:-2153.166539px;}
._8{margin-left:-2138.234984px;}
._4d{margin-left:-1827.796649px;}
._14{margin-left:-1549.538375px;}
._30{margin-left:-1522.641140px;}
._1c{margin-left:-969.087054px;}
._47{margin-left:-819.866984px;}
._46{margin-left:-789.826042px;}
._2b{margin-left:-622.014140px;}
._48{margin-left:-615.175403px;}
._49{margin-left:-515.804105px;}
._20{margin-left:-348.122341px;}
._10{margin-left:-8.189257px;}
._13{margin-left:-7.173120px;}
._23{margin-left:-5.512114px;}
._5{margin-left:-4.483170px;}
._1{margin-left:-2.630126px;}
._0{margin-left:-1.291158px;}
._22{width:1.043521px;}
._31{width:2.233144px;}
._17{width:3.941143px;}
._21{width:5.134121px;}
._4e{width:9.372722px;}
._4c{width:10.544300px;}
._4a{width:11.955820px;}
._12{width:13.509286px;}
._4b{width:14.519061px;}
._a{width:15.679416px;}
._15{width:16.856719px;}
._2{width:18.207653px;}
._7{width:19.905275px;}
._3{width:21.519216px;}
._16{width:22.714728px;}
._e{width:23.802654px;}
._11{width:25.105752px;}
._d{width:26.958796px;}
._c{width:29.708473px;}
._4{width:30.775751px;}
._f{width:32.159273px;}
._1e{width:33.235233px;}
._19{width:34.789399px;}
._6{width:35.865600px;}
._1f{width:37.574946px;}
._1a{width:38.734589px;}
._2a{width:40.025746px;}
._1b{width:43.038600px;}
._34{width:91.957798px;}
._3a{width:106.972976px;}
._39{width:120.410087px;}
._3b{width:141.009544px;}
._36{width:145.789529px;}
._2e{width:150.689965px;}
._3c{width:151.803767px;}
._38{width:155.235689px;}
._28{width:168.942014px;}
._41{width:171.148322px;}
._43{width:176.973295px;}
._33{width:190.004386px;}
._26{width:194.720941px;}
._3f{width:197.625475px;}
._2d{width:202.443016px;}
._42{width:211.605412px;}
._3e{width:226.432618px;}
._24{width:228.844064px;}
._44{width:238.082566px;}
._25{width:258.789136px;}
._45{width:264.559720px;}
._27{width:266.410805px;}
._2c{width:283.755917px;}
._40{width:291.036874px;}
._2f{width:317.325464px;}
._35{width:567.054119px;}
._32{width:575.020760px;}
._3d{width:580.491230px;}
._37{width:609.732553px;}
._b{width:1105.899188px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs13{font-size:41.842800px;}
.fs3{font-size:44.233800px;}
.fse{font-size:45.523777px;}
.fs2{font-size:47.820600px;}
.fsd{font-size:56.904578px;}
.fs1{font-size:59.775600px;}
.fs10{font-size:71.410502px;}
.fs4{font-size:71.731200px;}
.fsc{font-size:74.599180px;}
.fsa{font-size:78.690710px;}
.fs8{font-size:83.481856px;}
.fs12{font-size:84.727104px;}
.fs0{font-size:86.077200px;}
.fsf{font-size:89.262903px;}
.fsb{font-size:93.248740px;}
.fs9{font-size:98.363141px;}
.fs7{font-size:104.352058px;}
.fs11{font-size:105.908615px;}
.y0{bottom:0.000000px;}
.y22{bottom:134.047500px;}
.y21{bottom:178.879500px;}
.y4c{bottom:179.812500px;}
.yc9{bottom:188.026500px;}
.y127{bottom:192.328500px;}
.y69{bottom:196.812000px;}
.y20{bottom:197.415000px;}
.y4b{bottom:197.745000px;}
.y126{bottom:205.779000px;}
.yc8{bottom:205.959000px;}
.y1f{bottom:207.789000px;}
.yfd{bottom:207.987000px;}
.y68{bottom:214.744500px;}
.y4a{bottom:215.679000px;}
.y125{bottom:219.228000px;}
.yfc{bottom:221.436000px;}
.yc7{bottom:223.893000px;}
.y1e{bottom:226.326000px;}
.y67{bottom:232.677000px;}
.y49{bottom:233.611500px;}
.ye5{bottom:233.751000px;}
.yc6{bottom:241.825500px;}
.y124{bottom:244.632000px;}
.y66{bottom:250.609500px;}
.y48{bottom:251.544000px;}
.ye4{bottom:251.683500px;}
.yfb{bottom:251.847000px;}
.y89{bottom:252.142500px;}
.y123{bottom:258.082500px;}
.yc5{bottom:259.758000px;}
.y65{bottom:268.543500px;}
.y47{bottom:269.476500px;}
.ye3{bottom:269.617500px;}
.y88{bottom:270.075000px;}
.y1d{bottom:271.774500px;}
.yb0{bottom:276.898500px;}
.yc4{bottom:277.690500px;}
.y122{bottom:283.486500px;}
.y64{bottom:286.476000px;}
.y46{bottom:287.409000px;}
.ye2{bottom:287.550000px;}
.y87{bottom:288.007500px;}
.y1c{bottom:289.707000px;}
.y94{bottom:291.427500px;}
.yfa{bottom:294.213000px;}
.yc3{bottom:295.623000px;}
.y121{bottom:296.937000px;}
.y63{bottom:304.408500px;}
.y45{bottom:305.343000px;}
.y86{bottom:305.940000px;}
.y1b{bottom:307.641000px;}
.y120{bottom:310.386000px;}
.y62{bottom:322.341000px;}
.ye1{bottom:322.768500px;}
.y44{bottom:323.275500px;}
.yc2{bottom:323.643000px;}
.y85{bottom:323.872500px;}
.y1a{bottom:325.573500px;}
.yaf{bottom:328.629717px;}
.y11f{bottom:335.791500px;}
.y61{bottom:340.273500px;}
.y43{bottom:341.208000px;}
.y84{bottom:341.806500px;}
.y93{bottom:343.157159px;}
.y19{bottom:343.506000px;}
.yf9{bottom:344.649000px;}
.y11e{bottom:349.240500px;}
.yae{bottom:358.140831px;}
.y60{bottom:358.206000px;}
.y42{bottom:359.140500px;}
.y83{bottom:359.739000px;}
.y18{bottom:361.438500px;}
.yc1{bottom:363.432000px;}
.y92{bottom:372.668274px;}
.y11d{bottom:374.644500px;}
.ye0{bottom:375.252780px;}
.y5f{bottom:376.140000px;}
.y41{bottom:377.073000px;}
.y82{bottom:377.671500px;}
.yf8{bottom:378.049500px;}
.y17{bottom:379.371000px;}
.yc0{bottom:381.364500px;}
.y11c{bottom:388.095000px;}
.yad{bottom:388.631864px;}
.y5e{bottom:394.072500px;}
.y40{bottom:395.005500px;}
.y81{bottom:395.604000px;}
.y16{bottom:397.303500px;}
.ybf{bottom:399.297000px;}
.y11b{bottom:401.544000px;}
.y91{bottom:402.176920px;}
.ydf{bottom:407.027703px;}
.y5d{bottom:412.005000px;}
.y3f{bottom:412.939500px;}
.y80{bottom:413.536500px;}
.ybe{bottom:417.229500px;}
.y15{bottom:425.323500px;}
.y11a{bottom:426.949500px;}
.yac{bottom:428.461500px;}
.yf7{bottom:428.484000px;}
.y5c{bottom:429.937500px;}
.y3e{bottom:430.872000px;}
.y7f{bottom:431.469000px;}
.y90{bottom:432.667953px;}
.yde{bottom:438.799969px;}
.y119{bottom:440.398500px;}
.yab{bottom:446.394000px;}
.yf6{bottom:446.418000px;}
.y3d{bottom:448.804500px;}
.y7e{bottom:449.403000px;}
.ybd{bottom:452.448000px;}
.y5b{bottom:457.957500px;}
.y14{bottom:461.712000px;}
.y118{bottom:465.802500px;}
.y3c{bottom:466.737000px;}
.y7d{bottom:467.335500px;}
.ydd{bottom:470.572234px;}
.y117{bottom:479.253000px;}
.yf5{bottom:479.817000px;}
.yaa{bottom:481.612500px;}
.y3b{bottom:484.669500px;}
.y7c{bottom:485.268000px;}
.y116{bottom:492.702000px;}
.ybc{bottom:500.034053px;}
.y5a{bottom:500.631000px;}
.y3a{bottom:502.602000px;}
.y7b{bottom:503.200500px;}
.ydc{bottom:503.404904px;}
.y13{bottom:515.629500px;}
.ybb{bottom:517.105255px;}
.y115{bottom:518.107500px;}
.y59{bottom:518.565000px;}
.y7a{bottom:521.133000px;}
.yf4{bottom:530.253000px;}
.y39{bottom:530.622000px;}
.y114{bottom:531.556500px;}
.ya9{bottom:532.832820px;}
.y12{bottom:533.562000px;}
.yba{bottom:534.176457px;}
.ydb{bottom:535.177170px;}
.y58{bottom:536.497500px;}
.y79{bottom:539.065500px;}
.y113{bottom:545.005500px;}
.yf3{bottom:548.185500px;}
.yb9{bottom:551.247659px;}
.y57{bottom:554.430000px;}
.y78{bottom:556.999500px;}
.ya8{bottom:560.807162px;}
.y11{bottom:561.970500px;}
.yda{bottom:568.007182px;}
.yb8{bottom:568.318861px;}
.y112{bottom:570.411000px;}
.y56{bottom:572.362500px;}
.y38{bottom:573.399000px;}
.y77{bottom:574.932000px;}
.y10{bottom:579.903000px;}
.yf2{bottom:581.586000px;}
.y111{bottom:583.860000px;}
.yb7{bottom:585.390063px;}
.ya7{bottom:589.715151px;}
.y55{bottom:590.295000px;}
.y37{bottom:591.333000px;}
.y76{bottom:592.864500px;}
.yf{bottom:597.835500px;}
.yb6{bottom:603.031019px;}
.y54{bottom:608.227500px;}
.y36{bottom:609.265500px;}
.y75{bottom:610.797000px;}
.yd9{bottom:612.912000px;}
.ye{bottom:615.768000px;}
.ya6{bottom:617.689492px;}
.yb5{bottom:620.671976px;}
.y110{bottom:622.714500px;}
.y53{bottom:626.161500px;}
.y35{bottom:627.198000px;}
.yd8{bottom:630.844500px;}
.yf1{bottom:632.020500px;}
.yd{bottom:633.700500px;}
.yb4{bottom:637.743178px;}
.y74{bottom:638.817000px;}
.y52{bottom:644.094000px;}
.y34{bottom:645.130500px;}
.ya5{bottom:646.597482px;}
.y10f{bottom:648.120000px;}
.yd7{bottom:648.778500px;}
.yc{bottom:651.634500px;}
.yb3{bottom:655.384134px;}
.y10e{bottom:661.569000px;}
.y51{bottom:662.026500px;}
.y33{bottom:663.063000px;}
.yf0{bottom:665.421000px;}
.yd6{bottom:666.711000px;}
.y73{bottom:666.837000px;}
.yb{bottom:669.567000px;}
.yb2{bottom:672.455336px;}
.y50{bottom:679.959000px;}
.y32{bottom:680.995500px;}
.yd5{bottom:684.643500px;}
.y10d{bottom:686.974500px;}
.ya{bottom:687.499500px;}
.y8f{bottom:687.789000px;}
.ya4{bottom:688.842000px;}
.yb1{bottom:690.094864px;}
.y4f{bottom:697.891500px;}
.y31{bottom:698.929500px;}
.y10c{bottom:700.423500px;}
.yd4{bottom:702.576000px;}
.y72{bottom:703.225500px;}
.y9{bottom:705.432000px;}
.ya3{bottom:706.774500px;}
.yef{bottom:715.857000px;}
.y30{bottom:716.862000px;}
.yd3{bottom:720.508500px;}
.y8{bottom:723.364500px;}
.ya2{bottom:724.707000px;}
.y10b{bottom:725.827500px;}
.yee{bottom:733.789500px;}
.y2f{bottom:734.794500px;}
.yd2{bottom:738.441000px;}
.y10a{bottom:739.278000px;}
.y8e{bottom:740.119534px;}
.y7{bottom:741.297000px;}
.ya1{bottom:742.639500px;}
.y4e{bottom:744.855000px;}
.yed{bottom:751.722000px;}
.y2e{bottom:752.727000px;}
.y71{bottom:753.661500px;}
.yd1{bottom:756.375000px;}
.y4d{bottom:759.051000px;}
.ya0{bottom:760.573500px;}
.y109{bottom:764.682000px;}
.y6{bottom:767.758500px;}
.yec{bottom:769.654500px;}
.y2d{bottom:770.659500px;}
.y8d{bottom:771.424837px;}
.y70{bottom:771.594000px;}
.yd0{bottom:774.307500px;}
.y108{bottom:778.132500px;}
.y9f{bottom:778.506000px;}
.yeb{bottom:787.587000px;}
.y2c{bottom:788.592000px;}
.y6f{bottom:789.526500px;}
.y107{bottom:791.581500px;}
.y9e{bottom:796.438500px;}
.y8c{bottom:803.772341px;}
.y2b{bottom:806.526000px;}
.y6e{bottom:807.459000px;}
.y9d{bottom:814.371000px;}
.y106{bottom:816.987000px;}
.yea{bottom:820.987500px;}
.ycf{bottom:821.727000px;}
.y2a{bottom:824.458500px;}
.y6d{bottom:825.393000px;}
.y105{bottom:830.436000px;}
.y9c{bottom:832.303500px;}
.y8b{bottom:835.080263px;}
.y29{bottom:842.391000px;}
.y6c{bottom:843.325500px;}
.y9b{bottom:850.236000px;}
.y104{bottom:855.840000px;}
.y28{bottom:860.323500px;}
.y6b{bottom:861.258000px;}
.y8a{bottom:867.427767px;}
.y5{bottom:867.796500px;}
.y9a{bottom:868.170000px;}
.ye9{bottom:868.407000px;}
.y103{bottom:869.290500px;}
.yce{bottom:872.548551px;}
.y27{bottom:878.256000px;}
.y99{bottom:886.102500px;}
.y6a{bottom:889.278000px;}
.y4{bottom:890.959500px;}
.y102{bottom:894.694500px;}
.y26{bottom:896.188500px;}
.ycd{bottom:899.327153px;}
.y98{bottom:904.035000px;}
.y101{bottom:908.145000px;}
.y3{bottom:914.122500px;}
.ye8{bottom:920.138217px;}
.y97{bottom:921.967500px;}
.ycc{bottom:926.105755px;}
.y25{bottom:932.055000px;}
.y100{bottom:933.549000px;}
.y96{bottom:939.900000px;}
.yff{bottom:946.998000px;}
.ye7{bottom:949.646863px;}
.y24{bottom:949.987500px;}
.ycb{bottom:952.886597px;}
.y95{bottom:957.832500px;}
.y2{bottom:958.954500px;}
.y23{bottom:967.920000px;}
.yfe{bottom:972.403500px;}
.ye6{bottom:980.140364px;}
.yca{bottom:980.556700px;}
.y1{bottom:985.852500px;}
.ha{height:24.675533px;}
.h8{height:25.787366px;}
.h16{height:28.787846px;}
.h17{height:28.997846px;}
.h3{height:32.804932px;}
.h9{height:32.900573px;}
.h12{height:39.150350px;}
.h2{height:41.125613px;}
.h4{height:41.364715px;}
.h13{height:41.425613px;}
.hb{height:41.484266px;}
.he{height:41.961802px;}
.h11{height:41.967802px;}
.h7{height:49.637990px;}
.h5{height:52.040387px;}
.hc{height:52.046387px;}
.h1{height:59.221114px;}
.h6{height:59.565422px;}
.h14{height:61.412878px;}
.h10{height:64.155133px;}
.hf{height:67.673841px;}
.hd{height:71.794216px;}
.h15{height:72.865127px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:200.652000px;}
.x16{left:204.209036px;}
.xc{left:207.174920px;}
.x7{left:214.045500px;}
.x8{left:216.942000px;}
.x10{left:221.051858px;}
.x1{left:222.888000px;}
.x1c{left:233.020500px;}
.x13{left:240.157500px;}
.xe{left:243.289500px;}
.x17{left:244.777500px;}
.xf{left:249.456754px;}
.x20{left:253.077000px;}
.xa{left:255.268036px;}
.x12{left:257.061000px;}
.xd{left:260.194500px;}
.x2{left:266.614500px;}
.x1b{left:268.831500px;}
.x1a{left:278.982000px;}
.x14{left:287.765823px;}
.x4{left:293.067000px;}
.x5{left:307.503000px;}
.x1d{left:320.725500px;}
.x15{left:335.886478px;}
.x21{left:354.030000px;}
.x3{left:405.975000px;}
.x11{left:422.235459px;}
.x19{left:430.262761px;}
.xb{left:431.609460px;}
.x1e{left:434.614500px;}
.x22{left:450.964500px;}
.x9{left:454.699500px;}
.x1f{left:492.616500px;}
.x18{left:514.153500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:7.968000pt;}
.v5{vertical-align:15.429333pt;}
.v1{vertical-align:19.285333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:2.497681pt;}
.ls1c{letter-spacing:2.508866pt;}
.ls1b{letter-spacing:2.528157pt;}
.ls1d{letter-spacing:2.529092pt;}
.ls1e{letter-spacing:2.530209pt;}
.ls3{letter-spacing:2.653337pt;}
.ls4{letter-spacing:2.655200pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.658321pt;}
.ls2c{letter-spacing:3.935512pt;}
.ls2b{letter-spacing:3.966227pt;}
.ls16{letter-spacing:4.092916pt;}
.ls13{letter-spacing:4.111244pt;}
.ls12{letter-spacing:4.142856pt;}
.ls14{letter-spacing:4.144388pt;}
.ls15{letter-spacing:4.146219pt;}
.ls11{letter-spacing:4.336732pt;}
.ls10{letter-spacing:4.370579pt;}
.lse{letter-spacing:4.580268pt;}
.lsb{letter-spacing:4.600778pt;}
.lsa{letter-spacing:4.636154pt;}
.lsc{letter-spacing:4.637869pt;}
.lsd{letter-spacing:4.639918pt;}
.ls31{letter-spacing:4.648589pt;}
.ls2e{letter-spacing:4.669405pt;}
.ls2d{letter-spacing:4.705309pt;}
.ls2f{letter-spacing:4.707050pt;}
.ls30{letter-spacing:4.709128pt;}
.ls22{letter-spacing:9.397812pt;}
.ls23{letter-spacing:10.688479pt;}
.ls21{letter-spacing:10.729067pt;}
.ls24{letter-spacing:10.734400pt;}
.ls19{letter-spacing:11.765812pt;}
.ls9{letter-spacing:12.256479pt;}
.ls7{letter-spacing:12.261812pt;}
.ls25{letter-spacing:13.221812pt;}
.ls28{letter-spacing:13.227145pt;}
.ls1a{letter-spacing:13.237812pt;}
.ls2a{letter-spacing:13.243145pt;}
.ls18{letter-spacing:13.283733pt;}
.ls8{letter-spacing:14.128479pt;}
.ls6{letter-spacing:14.174400pt;}
.ls20{letter-spacing:15.131342pt;}
.ls36{letter-spacing:15.669812pt;}
.ls34{letter-spacing:15.675145pt;}
.ls29{letter-spacing:15.867145pt;}
.ls26{letter-spacing:15.872479pt;}
.ls27{letter-spacing:15.918400pt;}
.ls5{letter-spacing:16.221337pt;}
.ls35{letter-spacing:20.267145pt;}
.ls33{letter-spacing:20.313067pt;}
.ls17{letter-spacing:24.795519pt;}
.lsf{letter-spacing:27.747972pt;}
.ls32{letter-spacing:28.161872pt;}
.wsa1{word-spacing:-28.242297pt;}
.ws69{word-spacing:-27.827216pt;}
.ws7b{word-spacing:-24.866331pt;}
.wsaa{word-spacing:-19.128267pt;}
.ws7a{word-spacing:-16.577595pt;}
.ws8b{word-spacing:-15.174554pt;}
.ws5e{word-spacing:-13.283467pt;}
.ws9f{word-spacing:-4.711287pt;}
.ws9d{word-spacing:-4.707050pt;}
.ws9b{word-spacing:-4.701837pt;}
.ws65{word-spacing:-4.637869pt;}
.ws79{word-spacing:-4.149984pt;}
.ws77{word-spacing:-4.144388pt;}
.ws4d{word-spacing:-2.709827pt;}
.ws7f{word-spacing:-2.656693pt;}
.ws32{word-spacing:-2.603559pt;}
.ws8d{word-spacing:-2.554581pt;}
.ws5{word-spacing:-2.550426pt;}
.ws89{word-spacing:-2.533538pt;}
.ws87{word-spacing:-2.529092pt;}
.ws36{word-spacing:-2.497292pt;}
.wsa7{word-spacing:-2.444158pt;}
.ws39{word-spacing:-2.380403pt;}
.ws19{word-spacing:-2.337890pt;}
.ws83{word-spacing:-2.284756pt;}
.ws29{word-spacing:-2.231622pt;}
.wsb4{word-spacing:-2.120035pt;}
.wsb6{word-spacing:-1.934067pt;}
.wsae{word-spacing:-1.822486pt;}
.ws84{word-spacing:-1.806551pt;}
.ws6e{word-spacing:-1.753418pt;}
.ws8e{word-spacing:-1.702437pt;}
.ws53{word-spacing:-1.647150pt;}
.ws34{word-spacing:-1.115811pt;}
.ws20{word-spacing:-1.062677pt;}
.ws51{word-spacing:-0.956410pt;}
.wsad{word-spacing:-0.818259pt;}
.ws4c{word-spacing:-0.797008pt;}
.wsbc{word-spacing:-0.669485pt;}
.ws2{word-spacing:-0.637606pt;}
.ws13{word-spacing:-0.584473pt;}
.wsc1{word-spacing:-0.483517pt;}
.wsc{word-spacing:-0.478205pt;}
.wsac{word-spacing:-0.446323pt;}
.ws44{word-spacing:-0.425071pt;}
.ws71{word-spacing:-0.371937pt;}
.ws11{word-spacing:-0.318803pt;}
.wsc2{word-spacing:-0.297549pt;}
.ws48{word-spacing:-0.159402pt;}
.ws42{word-spacing:-0.106268pt;}
.ws38{word-spacing:-0.053134pt;}
.wsb0{word-spacing:-0.037194pt;}
.ws9e{word-spacing:-0.004101pt;}
.ws66{word-spacing:-0.004041pt;}
.ws78{word-spacing:-0.003611pt;}
.ws88{word-spacing:-0.002203pt;}
.ws7d{word-spacing:-0.001007pt;}
.ws0{word-spacing:0.000000pt;}
.ws76{word-spacing:0.010961pt;}
.ws62{word-spacing:0.012266pt;}
.ws9a{word-spacing:0.012449pt;}
.ws2e{word-spacing:0.053134pt;}
.wsa9{word-spacing:0.106268pt;}
.ws1a{word-spacing:0.212535pt;}
.ws43{word-spacing:0.265669pt;}
.ws10{word-spacing:0.425071pt;}
.wsa8{word-spacing:0.478205pt;}
.ws3e{word-spacing:0.584473pt;}
.wsb3{word-spacing:0.632291pt;}
.ws3c{word-spacing:0.637606pt;}
.ws14{word-spacing:0.690740pt;}
.ws75{word-spacing:0.743874pt;}
.ws41{word-spacing:0.797008pt;}
.ws2b{word-spacing:0.850142pt;}
.ws60{word-spacing:0.877051pt;}
.ws61{word-spacing:0.884748pt;}
.ws4{word-spacing:0.903276pt;}
.wsa{word-spacing:1.009543pt;}
.ws17{word-spacing:1.020173pt;}
.ws40{word-spacing:1.062677pt;}
.wsf{word-spacing:1.168945pt;}
.ws6{word-spacing:1.222079pt;}
.wsaf{word-spacing:1.227389pt;}
.ws33{word-spacing:1.275213pt;}
.ws35{word-spacing:1.328347pt;}
.ws45{word-spacing:1.434614pt;}
.ws1d{word-spacing:1.540882pt;}
.ws54{word-spacing:1.594016pt;}
.ws98{word-spacing:1.647150pt;}
.ws4b{word-spacing:1.806551pt;}
.wsb7{word-spacing:1.896874pt;}
.ws58{word-spacing:1.912819pt;}
.ws28{word-spacing:1.965953pt;}
.ws37{word-spacing:2.019087pt;}
.ws59{word-spacing:2.072221pt;}
.ws52{word-spacing:2.231622pt;}
.ws30{word-spacing:2.337890pt;}
.wsb2{word-spacing:2.380390pt;}
.ws73{word-spacing:2.391024pt;}
.ws3d{word-spacing:2.444158pt;}
.ws2c{word-spacing:2.497292pt;}
.ws91{word-spacing:2.603559pt;}
.ws8f{word-spacing:2.634689pt;}
.ws90{word-spacing:2.645205pt;}
.ws23{word-spacing:2.656693pt;}
.wsb1{word-spacing:2.677939pt;}
.ws5c{word-spacing:2.762961pt;}
.ws27{word-spacing:2.869229pt;}
.wsbd{word-spacing:2.938294pt;}
.ws2a{word-spacing:2.975497pt;}
.ws86{word-spacing:3.028630pt;}
.ws25{word-spacing:3.081764pt;}
.wsbf{word-spacing:3.087069pt;}
.wsb5{word-spacing:3.124262pt;}
.ws70{word-spacing:3.134898pt;}
.ws49{word-spacing:3.188032pt;}
.ws1e{word-spacing:3.241166pt;}
.ws18{word-spacing:3.294300pt;}
.ws22{word-spacing:3.400567pt;}
.ws12{word-spacing:3.453701pt;}
.ws9{word-spacing:3.506835pt;}
.ws7{word-spacing:3.559969pt;}
.ws1c{word-spacing:3.613103pt;}
.ws85{word-spacing:3.772505pt;}
.wsbe{word-spacing:3.868134pt;}
.wsb{word-spacing:3.878772pt;}
.ws92{word-spacing:3.931906pt;}
.ws2f{word-spacing:4.038174pt;}
.ws1f{word-spacing:4.144442pt;}
.wsb9{word-spacing:4.165683pt;}
.ws57{word-spacing:4.197575pt;}
.wsc0{word-spacing:4.202877pt;}
.ws31{word-spacing:4.303843pt;}
.ws4a{word-spacing:4.516379pt;}
.ws3{word-spacing:4.622646pt;}
.ws67{word-spacing:4.632957pt;}
.ws63{word-spacing:4.642268pt;}
.ws94{word-spacing:4.675780pt;}
.ws3a{word-spacing:4.728914pt;}
.ws15{word-spacing:4.782048pt;}
.wsab{word-spacing:4.941450pt;}
.wsba{word-spacing:4.983942pt;}
.ws8a{word-spacing:5.017732pt;}
.ws26{word-spacing:5.047717pt;}
.ws50{word-spacing:5.100851pt;}
.ws3f{word-spacing:5.207119pt;}
.ws46{word-spacing:5.260253pt;}
.wsbb{word-spacing:5.355878pt;}
.ws99{word-spacing:5.366521pt;}
.ws5d{word-spacing:5.579056pt;}
.ws80{word-spacing:5.738458pt;}
.ws5b{word-spacing:5.844725pt;}
.ws2d{word-spacing:5.897859pt;}
.ws47{word-spacing:5.950993pt;}
.ws3b{word-spacing:6.110395pt;}
.wsb8{word-spacing:6.174138pt;}
.ws93{word-spacing:6.216662pt;}
.ws74{word-spacing:6.269796pt;}
.ws6f{word-spacing:6.376064pt;}
.ws55{word-spacing:6.641733pt;}
.wsa3{word-spacing:7.013670pt;}
.wsa4{word-spacing:7.058405pt;}
.ws5f{word-spacing:7.279340pt;}
.ws81{word-spacing:7.545009pt;}
.ws1b{word-spacing:8.501419pt;}
.ws56{word-spacing:9.085891pt;}
.ws68{word-spacing:9.201556pt;}
.ws64{word-spacing:9.218277pt;}
.wsa0{word-spacing:9.338810pt;}
.ws9c{word-spacing:9.346331pt;}
.ws16{word-spacing:10.579223pt;}
.ws1{word-spacing:10.584293pt;}
.ws21{word-spacing:12.179370pt;}
.ws24{word-spacing:13.230333pt;}
.ws4f{word-spacing:13.283467pt;}
.ws6b{word-spacing:14.908919pt;}
.wsa6{word-spacing:17.340414pt;}
.ws72{word-spacing:17.553748pt;}
.ws5a{word-spacing:17.639081pt;}
.ws4e{word-spacing:17.943081pt;}
.wse{word-spacing:19.128267pt;}
.ws8{word-spacing:21.484414pt;}
.ws82{word-spacing:25.505748pt;}
.wsd{word-spacing:32.892143pt;}
.ws8c{word-spacing:48.052755pt;}
.ws7c{word-spacing:78.743381pt;}
.ws6a{word-spacing:88.119516pt;}
.wsa2{word-spacing:89.433941pt;}
.wsa5{word-spacing:428.600992pt;}
.ws7e{word-spacing:708.914085pt;}
.ws6d{word-spacing:720.105625pt;}
.ws6c{word-spacing:773.527739pt;}
.ws97{word-spacing:1111.065278pt;}
.ws96{word-spacing:1275.705744pt;}
.ws95{word-spacing:1337.356656pt;}
._1d{margin-left:-1929.174830pt;}
._29{margin-left:-1927.846526pt;}
._9{margin-left:-1915.084122pt;}
._18{margin-left:-1913.925813pt;}
._8{margin-left:-1900.653319pt;}
._4d{margin-left:-1624.708133pt;}
._14{margin-left:-1377.367444pt;}
._30{margin-left:-1353.458791pt;}
._1c{margin-left:-861.410715pt;}
._47{margin-left:-728.770653pt;}
._46{margin-left:-702.067593pt;}
._2b{margin-left:-552.901458pt;}
._48{margin-left:-546.822580pt;}
._49{margin-left:-458.492538pt;}
._20{margin-left:-309.442081pt;}
._10{margin-left:-7.279340pt;}
._13{margin-left:-6.376107pt;}
._23{margin-left:-4.899656pt;}
._5{margin-left:-3.985040pt;}
._1{margin-left:-2.337890pt;}
._0{margin-left:-1.147696pt;}
._22{width:0.927574pt;}
._31{width:1.985017pt;}
._17{width:3.503238pt;}
._21{width:4.563663pt;}
._4e{width:8.331308pt;}
._4c{width:9.372711pt;}
._4a{width:10.627395pt;}
._12{width:12.008254pt;}
._4b{width:12.905832pt;}
._a{width:13.937259pt;}
._15{width:14.983750pt;}
._2{width:16.184580pt;}
._7{width:17.693578pt;}
._3{width:19.128192pt;}
._16{width:20.190869pt;}
._e{width:21.157915pt;}
._11{width:22.316224pt;}
._d{width:23.963374pt;}
._c{width:26.407532pt;}
._4{width:27.356223pt;}
._f{width:28.586020pt;}
._1e{width:29.542429pt;}
._19{width:30.923910pt;}
._6{width:31.880533pt;}
._1f{width:33.399952pt;}
._1a{width:34.430746pt;}
._2a{width:35.578441pt;}
._1b{width:38.256533pt;}
._34{width:81.740265pt;}
._3a{width:95.087090pt;}
._39{width:107.031188pt;}
._3b{width:125.341817pt;}
._36{width:129.590692pt;}
._2e{width:133.946635pt;}
._3c{width:134.936681pt;}
._38{width:137.987279pt;}
._28{width:150.170679pt;}
._41{width:152.131841pt;}
._43{width:157.309596pt;}
._33{width:168.892787pt;}
._26{width:173.085281pt;}
._3f{width:175.667089pt;}
._2d{width:179.949347pt;}
._42{width:188.093700pt;}
._3e{width:201.273439pt;}
._24{width:203.416945pt;}
._44{width:211.628948pt;}
._25{width:230.034787pt;}
._45{width:235.164195pt;}
._27{width:236.809604pt;}
._2c{width:252.227482pt;}
._40{width:258.699443pt;}
._2f{width:282.067079pt;}
._35{width:504.048106pt;}
._32{width:511.129564pt;}
._3d{width:515.992204pt;}
._37{width:541.984491pt;}
._b{width:983.021501pt;}
.fs5{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs13{font-size:37.193600pt;}
.fs3{font-size:39.318933pt;}
.fse{font-size:40.465579pt;}
.fs2{font-size:42.507200pt;}
.fsd{font-size:50.581847pt;}
.fs1{font-size:53.133867pt;}
.fs10{font-size:63.476002pt;}
.fs4{font-size:63.761067pt;}
.fsc{font-size:66.310382pt;}
.fsa{font-size:69.947298pt;}
.fs8{font-size:74.206094pt;}
.fs12{font-size:75.312982pt;}
.fs0{font-size:76.513067pt;}
.fsf{font-size:79.344803pt;}
.fsb{font-size:82.887769pt;}
.fs9{font-size:87.433903pt;}
.fs7{font-size:92.757385pt;}
.fs11{font-size:94.140991pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:119.153333pt;}
.y21{bottom:159.004000pt;}
.y4c{bottom:159.833333pt;}
.yc9{bottom:167.134667pt;}
.y127{bottom:170.958667pt;}
.y69{bottom:174.944000pt;}
.y20{bottom:175.480000pt;}
.y4b{bottom:175.773333pt;}
.y126{bottom:182.914667pt;}
.yc8{bottom:183.074667pt;}
.y1f{bottom:184.701333pt;}
.yfd{bottom:184.877333pt;}
.y68{bottom:190.884000pt;}
.y4a{bottom:191.714667pt;}
.y125{bottom:194.869333pt;}
.yfc{bottom:196.832000pt;}
.yc7{bottom:199.016000pt;}
.y1e{bottom:201.178667pt;}
.y67{bottom:206.824000pt;}
.y49{bottom:207.654667pt;}
.ye5{bottom:207.778667pt;}
.yc6{bottom:214.956000pt;}
.y124{bottom:217.450667pt;}
.y66{bottom:222.764000pt;}
.y48{bottom:223.594667pt;}
.ye4{bottom:223.718667pt;}
.yfb{bottom:223.864000pt;}
.y89{bottom:224.126667pt;}
.y123{bottom:229.406667pt;}
.yc5{bottom:230.896000pt;}
.y65{bottom:238.705333pt;}
.y47{bottom:239.534667pt;}
.ye3{bottom:239.660000pt;}
.y88{bottom:240.066667pt;}
.y1d{bottom:241.577333pt;}
.yb0{bottom:246.132000pt;}
.yc4{bottom:246.836000pt;}
.y122{bottom:251.988000pt;}
.y64{bottom:254.645333pt;}
.y46{bottom:255.474667pt;}
.ye2{bottom:255.600000pt;}
.y87{bottom:256.006667pt;}
.y1c{bottom:257.517333pt;}
.y94{bottom:259.046667pt;}
.yfa{bottom:261.522667pt;}
.yc3{bottom:262.776000pt;}
.y121{bottom:263.944000pt;}
.y63{bottom:270.585333pt;}
.y45{bottom:271.416000pt;}
.y86{bottom:271.946667pt;}
.y1b{bottom:273.458667pt;}
.y120{bottom:275.898667pt;}
.y62{bottom:286.525333pt;}
.ye1{bottom:286.905333pt;}
.y44{bottom:287.356000pt;}
.yc2{bottom:287.682667pt;}
.y85{bottom:287.886667pt;}
.y1a{bottom:289.398667pt;}
.yaf{bottom:292.115304pt;}
.y11f{bottom:298.481333pt;}
.y61{bottom:302.465333pt;}
.y43{bottom:303.296000pt;}
.y84{bottom:303.828000pt;}
.y93{bottom:305.028586pt;}
.y19{bottom:305.338667pt;}
.yf9{bottom:306.354667pt;}
.y11e{bottom:310.436000pt;}
.yae{bottom:318.347405pt;}
.y60{bottom:318.405333pt;}
.y42{bottom:319.236000pt;}
.y83{bottom:319.768000pt;}
.y18{bottom:321.278667pt;}
.yc1{bottom:323.050667pt;}
.y92{bottom:331.260688pt;}
.y11d{bottom:333.017333pt;}
.ye0{bottom:333.558027pt;}
.y5f{bottom:334.346667pt;}
.y41{bottom:335.176000pt;}
.y82{bottom:335.708000pt;}
.yf8{bottom:336.044000pt;}
.y17{bottom:337.218667pt;}
.yc0{bottom:338.990667pt;}
.y11c{bottom:344.973333pt;}
.yad{bottom:345.450546pt;}
.y5e{bottom:350.286667pt;}
.y40{bottom:351.116000pt;}
.y81{bottom:351.648000pt;}
.y16{bottom:353.158667pt;}
.ybf{bottom:354.930667pt;}
.y11b{bottom:356.928000pt;}
.y91{bottom:357.490595pt;}
.ydf{bottom:361.802403pt;}
.y5d{bottom:366.226667pt;}
.y3f{bottom:367.057333pt;}
.y80{bottom:367.588000pt;}
.ybe{bottom:370.870667pt;}
.y15{bottom:378.065333pt;}
.y11a{bottom:379.510667pt;}
.yac{bottom:380.854667pt;}
.yf7{bottom:380.874667pt;}
.y5c{bottom:382.166667pt;}
.y3e{bottom:382.997333pt;}
.y7f{bottom:383.528000pt;}
.y90{bottom:384.593736pt;}
.yde{bottom:390.044417pt;}
.y119{bottom:391.465333pt;}
.yab{bottom:396.794667pt;}
.yf6{bottom:396.816000pt;}
.y3d{bottom:398.937333pt;}
.y7e{bottom:399.469333pt;}
.ybd{bottom:402.176000pt;}
.y5b{bottom:407.073333pt;}
.y14{bottom:410.410667pt;}
.y118{bottom:414.046667pt;}
.y3c{bottom:414.877333pt;}
.y7d{bottom:415.409333pt;}
.ydd{bottom:418.286431pt;}
.y117{bottom:426.002667pt;}
.yf5{bottom:426.504000pt;}
.yaa{bottom:428.100000pt;}
.y3b{bottom:430.817333pt;}
.y7c{bottom:431.349333pt;}
.y116{bottom:437.957333pt;}
.ybc{bottom:444.474714pt;}
.y5a{bottom:445.005333pt;}
.y3a{bottom:446.757333pt;}
.y7b{bottom:447.289333pt;}
.ydc{bottom:447.471026pt;}
.y13{bottom:458.337333pt;}
.ybb{bottom:459.649116pt;}
.y115{bottom:460.540000pt;}
.y59{bottom:460.946667pt;}
.y7a{bottom:463.229333pt;}
.yf4{bottom:471.336000pt;}
.y39{bottom:471.664000pt;}
.y114{bottom:472.494667pt;}
.ya9{bottom:473.629174pt;}
.y12{bottom:474.277333pt;}
.yba{bottom:474.823518pt;}
.ydb{bottom:475.713040pt;}
.y58{bottom:476.886667pt;}
.y79{bottom:479.169333pt;}
.y113{bottom:484.449333pt;}
.yf3{bottom:487.276000pt;}
.yb9{bottom:489.997919pt;}
.y57{bottom:492.826667pt;}
.y78{bottom:495.110667pt;}
.ya8{bottom:498.495255pt;}
.y11{bottom:499.529333pt;}
.yda{bottom:504.895273pt;}
.yb8{bottom:505.172321pt;}
.y112{bottom:507.032000pt;}
.y56{bottom:508.766667pt;}
.y38{bottom:509.688000pt;}
.y77{bottom:511.050667pt;}
.y10{bottom:515.469333pt;}
.yf2{bottom:516.965333pt;}
.y111{bottom:518.986667pt;}
.yb7{bottom:520.346723pt;}
.ya7{bottom:524.191245pt;}
.y55{bottom:524.706667pt;}
.y37{bottom:525.629333pt;}
.y76{bottom:526.990667pt;}
.yf{bottom:531.409333pt;}
.yb6{bottom:536.027573pt;}
.y54{bottom:540.646667pt;}
.y36{bottom:541.569333pt;}
.y75{bottom:542.930667pt;}
.yd9{bottom:544.810667pt;}
.ye{bottom:547.349333pt;}
.ya6{bottom:549.057327pt;}
.yb5{bottom:551.708423pt;}
.y110{bottom:553.524000pt;}
.y53{bottom:556.588000pt;}
.y35{bottom:557.509333pt;}
.yd8{bottom:560.750667pt;}
.yf1{bottom:561.796000pt;}
.yd{bottom:563.289333pt;}
.yb4{bottom:566.882825pt;}
.y74{bottom:567.837333pt;}
.y52{bottom:572.528000pt;}
.y34{bottom:573.449333pt;}
.ya5{bottom:574.753317pt;}
.y10f{bottom:576.106667pt;}
.yd7{bottom:576.692000pt;}
.yc{bottom:579.230667pt;}
.yb3{bottom:582.563674pt;}
.y10e{bottom:588.061333pt;}
.y51{bottom:588.468000pt;}
.y33{bottom:589.389333pt;}
.yf0{bottom:591.485333pt;}
.yd6{bottom:592.632000pt;}
.y73{bottom:592.744000pt;}
.yb{bottom:595.170667pt;}
.yb2{bottom:597.738076pt;}
.y50{bottom:604.408000pt;}
.y32{bottom:605.329333pt;}
.yd5{bottom:608.572000pt;}
.y10d{bottom:610.644000pt;}
.ya{bottom:611.110667pt;}
.y8f{bottom:611.368000pt;}
.ya4{bottom:612.304000pt;}
.yb1{bottom:613.417657pt;}
.y4f{bottom:620.348000pt;}
.y31{bottom:621.270667pt;}
.y10c{bottom:622.598667pt;}
.yd4{bottom:624.512000pt;}
.y72{bottom:625.089333pt;}
.y9{bottom:627.050667pt;}
.ya3{bottom:628.244000pt;}
.yef{bottom:636.317333pt;}
.y30{bottom:637.210667pt;}
.yd3{bottom:640.452000pt;}
.y8{bottom:642.990667pt;}
.ya2{bottom:644.184000pt;}
.y10b{bottom:645.180000pt;}
.yee{bottom:652.257333pt;}
.y2f{bottom:653.150667pt;}
.yd2{bottom:656.392000pt;}
.y10a{bottom:657.136000pt;}
.y8e{bottom:657.884030pt;}
.y7{bottom:658.930667pt;}
.ya1{bottom:660.124000pt;}
.y4e{bottom:662.093333pt;}
.yed{bottom:668.197333pt;}
.y2e{bottom:669.090667pt;}
.y71{bottom:669.921333pt;}
.yd1{bottom:672.333333pt;}
.y4d{bottom:674.712000pt;}
.ya0{bottom:676.065333pt;}
.y109{bottom:679.717333pt;}
.y6{bottom:682.452000pt;}
.yec{bottom:684.137333pt;}
.y2d{bottom:685.030667pt;}
.y8d{bottom:685.710966pt;}
.y70{bottom:685.861333pt;}
.yd0{bottom:688.273333pt;}
.y108{bottom:691.673333pt;}
.y9f{bottom:692.005333pt;}
.yeb{bottom:700.077333pt;}
.y2c{bottom:700.970667pt;}
.y6f{bottom:701.801333pt;}
.y107{bottom:703.628000pt;}
.y9e{bottom:707.945333pt;}
.y8c{bottom:714.464303pt;}
.y2b{bottom:716.912000pt;}
.y6e{bottom:717.741333pt;}
.y9d{bottom:723.885333pt;}
.y106{bottom:726.210667pt;}
.yea{bottom:729.766667pt;}
.ycf{bottom:730.424000pt;}
.y2a{bottom:732.852000pt;}
.y6d{bottom:733.682667pt;}
.y105{bottom:738.165333pt;}
.y9c{bottom:739.825333pt;}
.y8b{bottom:742.293567pt;}
.y29{bottom:748.792000pt;}
.y6c{bottom:749.622667pt;}
.y9b{bottom:755.765333pt;}
.y104{bottom:760.746667pt;}
.y28{bottom:764.732000pt;}
.y6b{bottom:765.562667pt;}
.y8a{bottom:771.046904pt;}
.y5{bottom:771.374667pt;}
.y9a{bottom:771.706667pt;}
.ye9{bottom:771.917333pt;}
.y103{bottom:772.702667pt;}
.yce{bottom:775.598712pt;}
.y27{bottom:780.672000pt;}
.y99{bottom:787.646667pt;}
.y6a{bottom:790.469333pt;}
.y4{bottom:791.964000pt;}
.y102{bottom:795.284000pt;}
.y26{bottom:796.612000pt;}
.ycd{bottom:799.401914pt;}
.y98{bottom:803.586667pt;}
.y101{bottom:807.240000pt;}
.y3{bottom:812.553333pt;}
.ye8{bottom:817.900637pt;}
.y97{bottom:819.526667pt;}
.ycc{bottom:823.205116pt;}
.y25{bottom:828.493333pt;}
.y100{bottom:829.821333pt;}
.y96{bottom:835.466667pt;}
.yff{bottom:841.776000pt;}
.ye7{bottom:844.130545pt;}
.y24{bottom:844.433333pt;}
.ycb{bottom:847.010309pt;}
.y95{bottom:851.406667pt;}
.y2{bottom:852.404000pt;}
.y23{bottom:860.373333pt;}
.yfe{bottom:864.358667pt;}
.ye6{bottom:871.235879pt;}
.yca{bottom:871.605955pt;}
.y1{bottom:876.313333pt;}
.ha{height:21.933807pt;}
.h8{height:22.922103pt;}
.h16{height:25.589197pt;}
.h17{height:25.775863pt;}
.h3{height:29.159939pt;}
.h9{height:29.244954pt;}
.h12{height:34.800311pt;}
.h2{height:36.556100pt;}
.h4{height:36.768636pt;}
.h13{height:36.822767pt;}
.hb{height:36.874903pt;}
.he{height:37.299379pt;}
.h11{height:37.304713pt;}
.h7{height:44.122658pt;}
.h5{height:46.258122pt;}
.hc{height:46.263455pt;}
.h1{height:52.640990pt;}
.h6{height:52.947042pt;}
.h14{height:54.589225pt;}
.h10{height:57.026785pt;}
.hf{height:60.154525pt;}
.hd{height:63.817081pt;}
.h15{height:64.769002pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:178.357333pt;}
.x16{left:181.519143pt;}
.xc{left:184.155485pt;}
.x7{left:190.262667pt;}
.x8{left:192.837333pt;}
.x10{left:196.490541pt;}
.x1{left:198.122667pt;}
.x1c{left:207.129333pt;}
.x13{left:213.473333pt;}
.xe{left:216.257333pt;}
.x17{left:217.580000pt;}
.xf{left:221.739337pt;}
.x20{left:224.957333pt;}
.xa{left:226.904921pt;}
.x12{left:228.498667pt;}
.xd{left:231.284000pt;}
.x2{left:236.990667pt;}
.x1b{left:238.961333pt;}
.x1a{left:247.984000pt;}
.x14{left:255.791842pt;}
.x4{left:260.504000pt;}
.x5{left:273.336000pt;}
.x1d{left:285.089333pt;}
.x15{left:298.565758pt;}
.x21{left:314.693333pt;}
.x3{left:360.866667pt;}
.x11{left:375.320408pt;}
.x19{left:382.455788pt;}
.xb{left:383.652854pt;}
.x1e{left:386.324000pt;}
.x22{left:400.857333pt;}
.x9{left:404.177333pt;}
.x1f{left:437.881333pt;}
.x18{left:457.025333pt;}
}




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