
    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_9a578e72ce140f9010e668ca.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_7825c3c396370647147f909c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.721000;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_ecde9f4a715e6e4ed3f1bf04.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_26b0cbe71d50b5fbb45403c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.904000;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_81fb4cbdc7e7430dbce344a0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.876000;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_0f5c0e974fad680eb21a7c10.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f8e6351e2e30e209e5572887.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.844000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6b2e5c4b1f777ba9bb566369.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8c90550894b673f58188f49f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0321b3dadd010977cc574990.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_020da707cd5c4fd9459f5410.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.114000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c60dbc62f46912fe66f79a13.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f9a2413b85c3b71436a285b8.woff2')format("woff");}.fff{font-family:fff;line-height:0.841000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e66d839f6c313106fb8e8623.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.888000;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:ff11;src:url('chunks/assets/font_291a4f5c329773bcf85f0d5c.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_5952a00f2adfbc90ece538e7.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.002000;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:ff13;src:url('chunks/assets/font_d0ab7f04a9abddff0dd094bf.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.675000;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:ff14;src:url('chunks/assets/font_4e2faa7d6b8fd96b30bc788d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.665000;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:ff15;src:url('chunks/assets/font_9e36ac5abf5ef9b2c20bef3e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_dd367848ad56a9bb9f09d570.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.704000;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:ff17;src:url('chunks/assets/font_204255a0bc113451afa79bd8.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.665000;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:ff18;src:url('chunks/assets/font_37bbaef5ec30ad184144f59a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.911000;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);}
.v3{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:8.670000px;}
.v2{vertical-align:23.754000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.002706px;}
.ls7{letter-spacing:0.003791px;}
.lsd{letter-spacing:0.502322px;}
.ls4{letter-spacing:0.508322px;}
.lse{letter-spacing:2.984915px;}
.ls10{letter-spacing:2.992118px;}
.ls11{letter-spacing:10.904712px;}
.lsc{letter-spacing:10.910712px;}
.ls6{letter-spacing:17.141973px;}
.ls3{letter-spacing:17.910479px;}
.ls5{letter-spacing:20.132915px;}
.lsf{letter-spacing:24.696479px;}
.ls2{letter-spacing:25.385426px;}
.lsa{letter-spacing:25.553644px;}
.ls9{letter-spacing:25.714335px;}
.ls8{letter-spacing:26.260335px;}
.lsb{letter-spacing:26.261644px;}
.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;}
}
.ws60{word-spacing:-33.192028px;}
.wsaa{word-spacing:-32.544027px;}
.ws15{word-spacing:-20.906199px;}
.wsf1{word-spacing:-17.882197px;}
.ws83{word-spacing:-17.634427px;}
.ws77{word-spacing:-17.620378px;}
.ws78{word-spacing:-17.554924px;}
.ws67{word-spacing:-17.424015px;}
.ws89{word-spacing:-17.096742px;}
.wsd3{word-spacing:-17.031287px;}
.wsf3{word-spacing:-16.965832px;}
.wsb9{word-spacing:-16.900378px;}
.wseb{word-spacing:-16.442196px;}
.ws9c{word-spacing:-16.311286px;}
.ws27{word-spacing:-16.245832px;}
.wsf0{word-spacing:-16.114923px;}
.ws65{word-spacing:-16.049468px;}
.ws82{word-spacing:-16.005240px;}
.ws66{word-spacing:-15.984013px;}
.wsf9{word-spacing:-15.930428px;}
.wsfb{word-spacing:-15.918559px;}
.wsbe{word-spacing:-15.853104px;}
.ws75{word-spacing:-15.591286px;}
.ws76{word-spacing:-15.525831px;}
.wsb0{word-spacing:-15.394922px;}
.wsd0{word-spacing:-15.133104px;}
.wscf{word-spacing:-15.067649px;}
.ws3e{word-spacing:-15.002194px;}
.ws9d{word-spacing:-14.936740px;}
.ws53{word-spacing:-14.805831px;}
.ws8a{word-spacing:-14.740376px;}
.wsfa{word-spacing:-14.602921px;}
.ws7e{word-spacing:-14.544012px;}
.wsa6{word-spacing:-14.478558px;}
.ws96{word-spacing:-14.413103px;}
.wsc7{word-spacing:-14.347648px;}
.ws21{word-spacing:-14.282194px;}
.ws2{word-spacing:-14.113114px;}
.wscd{word-spacing:-14.085830px;}
.wsef{word-spacing:-14.020375px;}
.wsb8{word-spacing:-13.954921px;}
.ws93{word-spacing:-13.889466px;}
.ws95{word-spacing:-13.824012px;}
.wsf7{word-spacing:-13.817466px;}
.wsad{word-spacing:-13.693102px;}
.ws7a{word-spacing:-13.627648px;}
.ws43{word-spacing:-13.562193px;}
.ws98{word-spacing:-13.234920px;}
.wse1{word-spacing:-13.169466px;}
.ws9b{word-spacing:-13.104011px;}
.ws9a{word-spacing:-13.038556px;}
.ws8d{word-spacing:-12.973102px;}
.ws42{word-spacing:-12.907647px;}
.ws2f{word-spacing:-12.842193px;}
.ws7d{word-spacing:-12.776738px;}
.wsd7{word-spacing:-12.711283px;}
.ws9e{word-spacing:-12.645829px;}
.ws5{word-spacing:-12.617518px;}
.ws84{word-spacing:-12.580374px;}
.ws58{word-spacing:-12.449465px;}
.ws28{word-spacing:-12.384010px;}
.ws79{word-spacing:-12.318556px;}
.ws3a{word-spacing:-12.253101px;}
.wsb7{word-spacing:-12.187647px;}
.wsc5{word-spacing:-12.122192px;}
.ws5a{word-spacing:-12.056737px;}
.ws7f{word-spacing:-11.991283px;}
.wsd8{word-spacing:-11.925828px;}
.ws6a{word-spacing:-11.860374px;}
.wsf5{word-spacing:-11.853828px;}
.wse2{word-spacing:-11.794919px;}
.wsb2{word-spacing:-11.729464px;}
.ws4e{word-spacing:-11.664010px;}
.ws5c{word-spacing:-11.598555px;}
.ws92{word-spacing:-11.533101px;}
.ws4d{word-spacing:-11.467646px;}
.ws101{word-spacing:-11.464655px;}
.wsc8{word-spacing:-11.443275px;}
.ws3f{word-spacing:-11.402191px;}
.ws29{word-spacing:-11.336737px;}
.wsc4{word-spacing:-11.271282px;}
.ws94{word-spacing:-11.140373px;}
.ws8f{word-spacing:-11.074918px;}
.wsea{word-spacing:-11.009464px;}
.ws46{word-spacing:-10.944009px;}
.ws22{word-spacing:-10.878555px;}
.wse0{word-spacing:-10.877288px;}
.ws102{word-spacing:-10.846685px;}
.ws100{word-spacing:-10.830794px;}
.wsde{word-spacing:-10.820056px;}
.ws30{word-spacing:-10.813100px;}
.ws52{word-spacing:-10.747645px;}
.wsb3{word-spacing:-10.741100px;}
.ws73{word-spacing:-10.682191px;}
.wsc6{word-spacing:-10.571729px;}
.wsc2{word-spacing:-10.569545px;}
.ws7b{word-spacing:-10.555349px;}
.ws7c{word-spacing:-10.551282px;}
.ws20{word-spacing:-10.485827px;}
.ws68{word-spacing:-10.420372px;}
.ws71{word-spacing:-10.328491px;}
.ws2d{word-spacing:-10.289463px;}
.ws3c{word-spacing:-10.158554px;}
.ws55{word-spacing:-10.093099px;}
.ws24{word-spacing:-10.027645px;}
.ws85{word-spacing:-9.962190px;}
.wsf4{word-spacing:-9.955645px;}
.ws74{word-spacing:-9.896736px;}
.ws49{word-spacing:-9.895272px;}
.wscc{word-spacing:-9.831281px;}
.wsa1{word-spacing:-9.765826px;}
.ws48{word-spacing:-9.700372px;}
.wsb4{word-spacing:-9.634917px;}
.ws59{word-spacing:-9.569463px;}
.ws2b{word-spacing:-9.504008px;}
.ws41{word-spacing:-9.438553px;}
.wsd5{word-spacing:-9.373099px;}
.ws8b{word-spacing:-9.317118px;}
.ws8c{word-spacing:-9.307644px;}
.ws4a{word-spacing:-9.242190px;}
.ws56{word-spacing:-9.235644px;}
.ws54{word-spacing:-9.176735px;}
.wsd4{word-spacing:-9.170189px;}
.wsa5{word-spacing:-9.111280px;}
.wsbf{word-spacing:-9.110904px;}
.ws39{word-spacing:-9.045826px;}
.ws86{word-spacing:-8.980371px;}
.wsc3{word-spacing:-8.914917px;}
.wscb{word-spacing:-8.849462px;}
.wse8{word-spacing:-8.718553px;}
.ws33{word-spacing:-8.653098px;}
.ws4f{word-spacing:-8.522189px;}
.ws5e{word-spacing:-8.456734px;}
.ws2c{word-spacing:-8.325825px;}
.wsa0{word-spacing:-8.260371px;}
.ws72{word-spacing:-8.194916px;}
.ws5b{word-spacing:-8.129461px;}
.ws63{word-spacing:-8.077788px;}
.ws57{word-spacing:-8.064007px;}
.wsa2{word-spacing:-7.998552px;}
.wsfc{word-spacing:-7.933098px;}
.wsba{word-spacing:-7.867643px;}
.ws62{word-spacing:-7.802893px;}
.wsb6{word-spacing:-7.802188px;}
.ws2e{word-spacing:-7.736734px;}
.wsac{word-spacing:-7.671279px;}
.wse3{word-spacing:-7.540370px;}
.ws34{word-spacing:-7.409461px;}
.ws97{word-spacing:-7.344006px;}
.wsbb{word-spacing:-7.341894px;}
.wsf2{word-spacing:-7.213097px;}
.ws5f{word-spacing:-7.164683px;}
.ws61{word-spacing:-7.147642px;}
.ws2a{word-spacing:-7.016733px;}
.ws38{word-spacing:-6.885824px;}
.ws9f{word-spacing:-6.820369px;}
.wsff{word-spacing:-6.748369px;}
.wsee{word-spacing:-6.624006px;}
.ws32{word-spacing:-6.493096px;}
.ws40{word-spacing:-6.427642px;}
.ws6d{word-spacing:-6.362187px;}
.ws6e{word-spacing:-6.296733px;}
.wse4{word-spacing:-6.231278px;}
.ws50{word-spacing:-6.100369px;}
.ws69{word-spacing:-6.034914px;}
.wsaf{word-spacing:-6.024213px;}
.ws4b{word-spacing:-5.969460px;}
.ws3d{word-spacing:-5.838550px;}
.wse7{word-spacing:-5.773096px;}
.wsab{word-spacing:-5.707641px;}
.ws51{word-spacing:-5.642187px;}
.ws25{word-spacing:-5.576732px;}
.ws3b{word-spacing:-5.511277px;}
.wsae{word-spacing:-5.420984px;}
.ws37{word-spacing:-5.380368px;}
.ws70{word-spacing:-5.314914px;}
.wse5{word-spacing:-5.053095px;}
.wse6{word-spacing:-4.922186px;}
.wsbc{word-spacing:-4.660368px;}
.ws6f{word-spacing:-4.594913px;}
.wsf8{word-spacing:-4.588367px;}
.wsb5{word-spacing:-4.529458px;}
.wsa7{word-spacing:-4.464004px;}
.ws4c{word-spacing:-4.398549px;}
.wsb1{word-spacing:-4.333095px;}
.ws44{word-spacing:-4.136731px;}
.wsca{word-spacing:-4.071276px;}
.ws5d{word-spacing:-4.005822px;}
.wsa4{word-spacing:-3.940367px;}
.wsc9{word-spacing:-3.874912px;}
.ws81{word-spacing:-3.809458px;}
.wsec{word-spacing:-3.744003px;}
.ws99{word-spacing:-3.678549px;}
.wsa8{word-spacing:-3.482185px;}
.wsd9{word-spacing:-3.416730px;}
.ws91{word-spacing:-3.285821px;}
.ws31{word-spacing:-3.220366px;}
.wsd2{word-spacing:-3.024003px;}
.ws36{word-spacing:-2.893093px;}
.ws9{word-spacing:-2.801457px;}
.wsa3{word-spacing:-2.762184px;}
.wsf6{word-spacing:-2.434911px;}
.ws6b{word-spacing:-2.304002px;}
.ws64{word-spacing:-1.803199px;}
.ws23{word-spacing:-1.780365px;}
.wsbd{word-spacing:-1.714911px;}
.ws26{word-spacing:-1.584001px;}
.ws80{word-spacing:-1.387638px;}
.wse9{word-spacing:-0.994910px;}
.ws90{word-spacing:-0.929455px;}
.ws35{word-spacing:-0.798546px;}
.wsed{word-spacing:-0.667637px;}
.wsc1{word-spacing:-0.536728px;}
.wsfd{word-spacing:-0.471273px;}
.wsfe{word-spacing:-0.464728px;}
.ws87{word-spacing:-0.274909px;}
.ws45{word-spacing:-0.065455px;}
.wsb{word-spacing:-0.052364px;}
.ws88{word-spacing:-0.013091px;}
.ws0{word-spacing:0.000000px;}
.ws6c{word-spacing:0.183273px;}
.wsa9{word-spacing:0.248727px;}
.ws13{word-spacing:0.879311px;}
.ws17{word-spacing:1.322183px;}
.ws4{word-spacing:2.338437px;}
.ws1{word-spacing:2.671987px;}
.ws3{word-spacing:2.707853px;}
.ws10{word-spacing:3.613094px;}
.ws1e{word-spacing:4.162913px;}
.ws1c{word-spacing:4.464004px;}
.wse{word-spacing:4.922186px;}
.ws6{word-spacing:5.379825px;}
.ws8{word-spacing:5.624884px;}
.wsd{word-spacing:6.231278px;}
.wsc{word-spacing:7.344006px;}
.ws19{word-spacing:7.409461px;}
.ws14{word-spacing:8.177700px;}
.ws1b{word-spacing:8.260371px;}
.wsf{word-spacing:8.522189px;}
.wsa{word-spacing:8.980371px;}
.ws12{word-spacing:9.045826px;}
.ws18{word-spacing:9.831281px;}
.ws11{word-spacing:10.381100px;}
.ws1a{word-spacing:10.944009px;}
.ws16{word-spacing:11.074918px;}
.wsdf{word-spacing:18.130924px;}
.wsda{word-spacing:18.345254px;}
.ws1d{word-spacing:18.896421px;}
.wsd1{word-spacing:19.391945px;}
.ws47{word-spacing:21.627254px;}
.wsce{word-spacing:21.635945px;}
.wsc0{word-spacing:26.827469px;}
.ws7{word-spacing:27.042662px;}
.ws8e{word-spacing:31.504255px;}
.wsd6{word-spacing:33.774574px;}
.wsdb{word-spacing:39.180958px;}
.wsdc{word-spacing:68.992267px;}
.ws1f{word-spacing:94.598843px;}
.wsdd{word-spacing:103.349919px;}
._8{margin-left:-48.375386px;}
._c{margin-left:-45.706993px;}
._1d{margin-left:-37.636395px;}
._19{margin-left:-33.940454px;}
._14{margin-left:-32.792755px;}
._10{margin-left:-31.382190px;}
._f{margin-left:-29.553055px;}
._e{margin-left:-27.276644px;}
._12{margin-left:-25.612222px;}
._5{margin-left:-21.913882px;}
._1f{margin-left:-16.577095px;}
._d{margin-left:-8.081652px;}
._1a{margin-left:-6.423507px;}
._a{margin-left:-5.336786px;}
._0{margin-left:-4.016947px;}
._9{margin-left:-2.754470px;}
._2{margin-left:-1.362893px;}
._7{width:1.147699px;}
._b{width:2.668393px;}
._1{width:3.722903px;}
._2d{width:5.405607px;}
._24{width:6.830112px;}
._29{width:10.800009px;}
._3{width:14.892858px;}
._26{width:17.986815px;}
._16{width:19.535954px;}
._23{width:21.147213px;}
._1c{width:22.849033px;}
._2b{width:23.930111px;}
._1e{width:25.069112px;}
._2c{width:26.091272px;}
._17{width:27.128688px;}
._25{width:28.281764px;}
._1b{width:30.128589px;}
._21{width:31.483655px;}
._22{width:32.798132px;}
._28{width:34.298210px;}
._18{width:36.785485px;}
._13{width:39.697619px;}
._15{width:44.056323px;}
._20{width:51.054588px;}
._11{width:62.764380px;}
._2a{width:80.697600px;}
._35{width:85.258267px;}
._34{width:90.716920px;}
._27{width:94.684920px;}
._39{width:101.536294px;}
._32{width:106.948267px;}
._40{width:117.808294px;}
._38{width:123.220294px;}
._50{width:126.321243px;}
._47{width:127.617242px;}
._46{width:131.502998px;}
._4a{width:132.686443px;}
._4{width:140.951808px;}
._43{width:143.122294px;}
._3f{width:148.541973px;}
._48{width:161.646909px;}
._53{width:167.337812px;}
._51{width:169.368935px;}
._41{width:173.880289px;}
._49{width:177.590490px;}
._4e{width:180.054534px;}
._37{width:186.140810px;}
._44{width:187.984587px;}
._42{width:196.532839px;}
._4c{width:198.316878px;}
._45{width:202.379219px;}
._6{width:211.320115px;}
._55{width:218.220624px;}
._3e{width:221.116264px;}
._4f{width:239.012507px;}
._4b{width:251.149463px;}
._52{width:260.012588px;}
._2f{width:262.012672px;}
._54{width:268.333462px;}
._4d{width:272.725964px;}
._3c{width:303.782284px;}
._31{width:329.411788px;}
._2e{width:335.764943px;}
._3d{width:340.716351px;}
._3b{width:346.597412px;}
._33{width:354.742835px;}
._36{width:413.312133px;}
._3a{width:475.372239px;}
._30{width:498.845345px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:47.820600px;}
.fsb{font-size:53.798400px;}
.fs8{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:65.454600px;}
.fs7{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:86.077200px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y1db{bottom:89.512500px;}
.y6f{bottom:89.514000px;}
.y4{bottom:97.125005px;}
.y126{bottom:134.344500px;}
.y185{bottom:134.346000px;}
.y139{bottom:136.344000px;}
.y41{bottom:137.449500px;}
.y22{bottom:139.264499px;}
.ye4{bottom:143.209500px;}
.yb5{bottom:144.025500px;}
.y1b7{bottom:144.597000px;}
.y19e{bottom:145.998000px;}
.yf9{bottom:146.404500px;}
.y10f{bottom:147.994500px;}
.yce{bottom:148.113000px;}
.y14b{bottom:149.100000px;}
.y6e{bottom:149.523000px;}
.y8a{bottom:158.250000px;}
.y9c{bottom:159.160500px;}
.y158{bottom:164.817000px;}
.y125{bottom:164.830500px;}
.y138{bottom:166.830000px;}
.ye3{bottom:173.695500px;}
.yb4{bottom:174.510000px;}
.y1b6{bottom:175.083000px;}
.yf8{bottom:176.890500px;}
.y10e{bottom:178.480500px;}
.ycd{bottom:178.599000px;}
.y14a{bottom:179.586000px;}
.y6d{bottom:180.009000px;}
.y89{bottom:188.734500px;}
.y9b{bottom:189.646500px;}
.y184{bottom:189.738000px;}
.y19{bottom:196.933500px;}
.y40{bottom:201.957000px;}
.yb3{bottom:204.996000px;}
.y19d{bottom:207.172500px;}
.yf7{bottom:207.375000px;}
.y1c7{bottom:207.735000px;}
.y124{bottom:208.072500px;}
.y10d{bottom:208.966500px;}
.ycc{bottom:209.085000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y137{bottom:210.070500px;}
.y6c{bottom:210.495000px;}
.ye2{bottom:217.630500px;}
.y1b5{bottom:218.323500px;}
.y88{bottom:219.220500px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y149{bottom:222.826500px;}
.y9a{bottom:233.581500px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.yb2{bottom:235.482000px;}
.y1c6{bottom:238.221000px;}
.y123{bottom:238.558500px;}
.y10c{bottom:239.451000px;}
.y136{bottom:240.556500px;}
.y6b{bottom:240.981000px;}
.ye1{bottom:248.116500px;}
.y1b4{bottom:248.809500px;}
.y183{bottom:249.354000px;}
.y87{bottom:249.706500px;}
.yf6{bottom:250.617000px;}
.ycb{bottom:253.020000px;}
.y148{bottom:253.312500px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y99{bottom:264.067500px;}
.yb1{bottom:265.968000px;}
.y122{bottom:269.044500px;}
.y135{bottom:271.042500px;}
.y6a{bottom:271.467000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y1b3{bottom:279.295500px;}
.y182{bottom:279.840000px;}
.y157{bottom:280.192500px;}
.yf5{bottom:281.103000px;}
.y1c5{bottom:281.127000px;}
.y10b{bottom:282.693000px;}
.yca{bottom:283.506000px;}
.y147{bottom:283.798500px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y86{bottom:292.948500px;}
.y98{bottom:294.552000px;}
.y16e{bottom:294.831000px;}
.y19c{bottom:298.833000px;}
.y121{bottom:299.529000px;}
.ye0{bottom:309.291000px;}
.y1b2{bottom:309.781500px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y156{bottom:310.678500px;}
.yf4{bottom:311.589000px;}
.y1c4{bottom:311.611500px;}
.y10a{bottom:313.179000px;}
.yc9{bottom:313.992000px;}
.y134{bottom:314.284500px;}
.y69{bottom:314.707500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y85{bottom:323.434500px;}
.y16d{bottom:325.914000px;}
.y146{bottom:327.040500px;}
.yb0{bottom:327.142500px;}
.y19b{bottom:329.319000px;}
.y120{bottom:330.015000px;}
.y97{bottom:338.488500px;}
.y181{bottom:339.456000px;}
.ydf{bottom:339.777000px;}
.y1b1{bottom:340.267500px;}
.y155{bottom:341.163000px;}
.yf3{bottom:342.075000px;}
.y109{bottom:343.665000px;}
.yc8{bottom:344.476500px;}
.y133{bottom:344.770500px;}
.y68{bottom:345.193500px;}
.y10{bottom:348.133500px;}
.y84{bottom:353.919000px;}
.y1c3{bottom:354.517500px;}
.y16c{bottom:356.400000px;}
.y145{bottom:357.526500px;}
.yaf{bottom:357.628500px;}
.y11f{bottom:360.501000px;}
.y1da{bottom:365.100000px;}
.y96{bottom:368.973000px;}
.y180{bottom:369.940500px;}
.y1b0{bottom:370.752000px;}
.yf2{bottom:372.559500px;}
.y108{bottom:374.151000px;}
.y132{bottom:375.255000px;}
.y67{bottom:375.679500px;}
.yde{bottom:383.017500px;}
.y154{bottom:384.405000px;}
.y1c2{bottom:385.002000px;}
.yf{bottom:386.785499px;}
.y16b{bottom:386.886000px;}
.y144{bottom:388.011000px;}
.yc7{bottom:388.413000px;}
.y19a{bottom:390.493500px;}
.y11e{bottom:390.987000px;}
.y1d9{bottom:395.586000px;}
.y83{bottom:397.161000px;}
.y1af{bottom:401.238000px;}
.yae{bottom:401.563500px;}
.yf1{bottom:403.045500px;}
.y107{bottom:404.635500px;}
.y66{bottom:406.165500px;}
.ye{bottom:408.044999px;}
.y17f{bottom:413.182500px;}
.ydd{bottom:413.503500px;}
.y153{bottom:414.891000px;}
.y16a{bottom:417.372000px;}
.y131{bottom:418.497000px;}
.yc6{bottom:418.897500px;}
.y199{bottom:420.978000px;}
.y11d{bottom:421.473000px;}
.y1d8{bottom:426.070500px;}
.y82{bottom:427.647000px;}
.y1c1{bottom:427.908000px;}
.y95{bottom:430.147500px;}
.y1ae{bottom:431.724000px;}
.yad{bottom:432.048000px;}
.yf0{bottom:433.531500px;}
.y106{bottom:435.121500px;}
.y17e{bottom:443.668500px;}
.ydc{bottom:443.989500px;}
.y152{bottom:445.377000px;}
.y169{bottom:447.856500px;}
.y130{bottom:448.983000px;}
.y65{bottom:449.407500px;}
.y198{bottom:451.464000px;}
.y11c{bottom:451.957500px;}
.y3f{bottom:454.836000px;}
.y81{bottom:458.133000px;}
.y1c0{bottom:458.392500px;}
.y94{bottom:460.633500px;}
.y143{bottom:461.739000px;}
.y1ad{bottom:462.210000px;}
.yac{bottom:462.534000px;}
.yc5{bottom:462.832500px;}
.yef{bottom:464.017500px;}
.y1d7{bottom:470.005500px;}
.y17d{bottom:474.154500px;}
.ydb{bottom:474.475500px;}
.y3e{bottom:475.159500px;}
.y151{bottom:475.863000px;}
.y168{bottom:478.342500px;}
.y105{bottom:478.363500px;}
.y12f{bottom:479.469000px;}
.y64{bottom:479.892000px;}
.y11b{bottom:482.443500px;}
.y80{bottom:488.619000px;}
.y93{bottom:491.119500px;}
.y142{bottom:492.225000px;}
.y1ac{bottom:492.696000px;}
.yab{bottom:493.020000px;}
.yc4{bottom:493.318500px;}
.yee{bottom:494.503500px;}
.y197{bottom:494.706000px;}
.y3d{bottom:495.483000px;}
.y1d6{bottom:500.491500px;}
.y1bf{bottom:501.298500px;}
.yd{bottom:502.864502px;}
.y17c{bottom:504.640500px;}
.yda{bottom:504.961500px;}
.y150{bottom:506.347500px;}
.y167{bottom:508.828500px;}
.y104{bottom:508.849500px;}
.y12e{bottom:509.955000px;}
.y63{bottom:510.378000px;}
.y3c{bottom:515.806500px;}
.y7f{bottom:519.103500px;}
.yc{bottom:520.864502px;}
.y92{bottom:521.605500px;}
.y141{bottom:522.711000px;}
.yc3{bottom:523.804500px;}
.yed{bottom:524.988000px;}
.y196{bottom:525.192000px;}
.y1d5{bottom:530.977500px;}
.y1be{bottom:531.783000px;}
.y11a{bottom:532.522500px;}
.y17b{bottom:535.125000px;}
.yd9{bottom:535.446000px;}
.y1ab{bottom:535.936500px;}
.y14f{bottom:536.833500px;}
.yaa{bottom:536.955000px;}
.yb{bottom:538.864499px;}
.y166{bottom:539.314500px;}
.y103{bottom:539.335500px;}
.y62{bottom:540.864000px;}
.y7e{bottom:549.589500px;}
.y91{bottom:552.091500px;}
.y12d{bottom:553.195500px;}
.y195{bottom:555.678000px;}
.y3b{bottom:556.455000px;}
.ya{bottom:556.864499px;}
.y119{bottom:563.008500px;}
.y17a{bottom:565.611000px;}
.yd8{bottom:565.932000px;}
.y1aa{bottom:566.422500px;}
.y14e{bottom:567.319500px;}
.ya9{bottom:567.441000px;}
.yc2{bottom:567.739500px;}
.yec{bottom:568.230000px;}
.y165{bottom:569.800500px;}
.y102{bottom:569.820000px;}
.y61{bottom:571.350000px;}
.y1bd{bottom:574.689000px;}
.y1d4{bottom:574.912500px;}
.y3a{bottom:576.778500px;}
.y90{bottom:582.576000px;}
.y12c{bottom:583.681500px;}
.y194{bottom:586.162500px;}
.y179{bottom:596.097000px;}
.y1a9{bottom:596.908500px;}
.y39{bottom:597.102000px;}
.yc1{bottom:598.225500px;}
.yeb{bottom:598.716000px;}
.y164{bottom:600.285000px;}
.y101{bottom:600.306000px;}
.y118{bottom:604.297500px;}
.y1bc{bottom:605.173500px;}
.y1d3{bottom:605.398500px;}
.y7d{bottom:609.031500px;}
.y8f{bottom:613.062000px;}
.y12b{bottom:614.167500px;}
.y60{bottom:614.592000px;}
.ya8{bottom:615.859500px;}
.y193{bottom:616.648500px;}
.y38{bottom:617.425500px;}
.yd7{bottom:625.374000px;}
.y178{bottom:626.583000px;}
.y14d{bottom:626.761500px;}
.y1a8{bottom:627.394500px;}
.yc0{bottom:628.711500px;}
.yea{bottom:629.202000px;}
.y163{bottom:630.771000px;}
.y100{bottom:630.792000px;}
.y51{bottom:634.705500px;}
.y117{bottom:634.783500px;}
.y37{bottom:637.749000px;}
.y8e{bottom:643.548000px;}
.y12a{bottom:644.653500px;}
.y5f{bottom:645.076500px;}
.y9{bottom:645.510000px;}
.y192{bottom:647.134500px;}
.y1bb{bottom:648.079500px;}
.y1d2{bottom:649.333500px;}
.ya7{bottom:652.323000px;}
.y50{bottom:655.030500px;}
.y177{bottom:657.069000px;}
.y1a7{bottom:657.880500px;}
.y36{bottom:658.074000px;}
.ybf{bottom:659.197500px;}
.y162{bottom:661.257000px;}
.yff{bottom:661.278000px;}
.y116{bottom:665.269500px;}
.y8{bottom:666.771000px;}
.ye9{bottom:672.444000px;}
.y140{bottom:675.138000px;}
.y129{bottom:675.139500px;}
.y4f{bottom:675.354000px;}
.y5e{bottom:675.562500px;}
.y191{bottom:677.620500px;}
.y35{bottom:678.397500px;}
.y1ba{bottom:678.564000px;}
.y1d1{bottom:679.819500px;}
.y7c{bottom:686.790000px;}
.y176{bottom:687.553500px;}
.y1a6{bottom:688.365000px;}
.ya6{bottom:688.786500px;}
.ybe{bottom:689.682000px;}
.y161{bottom:691.743000px;}
.yfe{bottom:691.764000px;}
.y4e{bottom:695.677500px;}
.y34{bottom:698.721000px;}
.ye8{bottom:702.928500px;}
.yd6{bottom:703.132500px;}
.y14c{bottom:704.520000px;}
.y13f{bottom:705.624000px;}
.y5d{bottom:706.048500px;}
.y115{bottom:706.560000px;}
.y190{bottom:708.106500px;}
.y1b9{bottom:709.050000px;}
.y7b{bottom:717.276000px;}
.y175{bottom:718.039500px;}
.ybd{bottom:720.168000px;}
.y160{bottom:722.227500px;}
.y1d0{bottom:723.754500px;}
.y7{bottom:726.298500px;}
.y33{bottom:726.348000px;}
.y128{bottom:728.946000px;}
.y1a5{bottom:731.607000px;}
.ye7{bottom:733.414500px;}
.yd5{bottom:733.618500px;}
.yfd{bottom:735.004500px;}
.y13e{bottom:736.110000px;}
.y5c{bottom:736.534500px;}
.y114{bottom:737.046000px;}
.ya5{bottom:737.205000px;}
.y7a{bottom:747.760500px;}
.ybc{bottom:750.654000px;}
.y18f{bottom:751.347000px;}
.y3{bottom:752.599495px;}
.y15f{bottom:752.713500px;}
.y1cf{bottom:754.240500px;}
.y4d{bottom:757.584000px;}
.y1b8{bottom:761.946000px;}
.y1a4{bottom:762.093000px;}
.yd4{bottom:764.103000px;}
.yfc{bottom:765.490500px;}
.y13d{bottom:766.596000px;}
.ya4{bottom:767.689500px;}
.y174{bottom:773.433000px;}
.y32{bottom:774.033000px;}
.y4c{bottom:777.909000px;}
.y79{bottom:778.246500px;}
.y113{bottom:778.335000px;}
.y5b{bottom:779.776500px;}
.ybb{bottom:781.140000px;}
.y18e{bottom:781.833000px;}
.y15e{bottom:783.199500px;}
.y1a3{bottom:792.579000px;}
.y31{bottom:794.356500px;}
.yd3{bottom:794.589000px;}
.yfb{bottom:795.976500px;}
.y1ce{bottom:798.175500px;}
.y4b{bottom:798.232500px;}
.y78{bottom:808.732500px;}
.y13c{bottom:809.838000px;}
.y5a{bottom:810.261000px;}
.ya3{bottom:811.626000px;}
.y18d{bottom:812.319000px;}
.y15d{bottom:813.685500px;}
.y30{bottom:814.680000px;}
.y173{bottom:816.847500px;}
.y4a{bottom:818.556000px;}
.y112{bottom:819.625500px;}
.y1a2{bottom:823.065000px;}
.ye6{bottom:825.075000px;}
.yfa{bottom:826.462500px;}
.y1cd{bottom:828.661500px;}
.y2f{bottom:835.005000px;}
.yd2{bottom:838.524000px;}
.y49{bottom:838.879500px;}
.y77{bottom:839.218500px;}
.y13b{bottom:840.322500px;}
.y59{bottom:840.747000px;}
.ya2{bottom:842.110500px;}
.y18c{bottom:842.805000px;}
.y15c{bottom:844.171500px;}
.y111{bottom:850.111500px;}
.yba{bottom:855.561000px;}
.y127{bottom:856.948500px;}
.y48{bottom:859.203000px;}
.y172{bottom:860.263500px;}
.yd1{bottom:869.010000px;}
.y76{bottom:869.704500px;}
.y58{bottom:871.233000px;}
.y1cc{bottom:872.596500px;}
.y18b{bottom:873.291000px;}
.y15b{bottom:874.656000px;}
.y2e{bottom:878.437500px;}
.ya1{bottom:879.321000px;}
.y2{bottom:879.369000px;}
.y47{bottom:879.528000px;}
.y110{bottom:880.597500px;}
.y1a1{bottom:882.507000px;}
.yb9{bottom:886.047000px;}
.y13a{bottom:894.130500px;}
.y2d{bottom:898.761000px;}
.yd0{bottom:899.496000px;}
.y46{bottom:899.851500px;}
.y75{bottom:900.189000px;}
.y57{bottom:901.719000px;}
.y1cb{bottom:903.082500px;}
.y18a{bottom:903.775500px;}
.y15a{bottom:908.728500px;}
.ya0{bottom:909.807000px;}
.y171{bottom:915.657000px;}
.yb8{bottom:916.531500px;}
.y2c{bottom:919.086000px;}
.ycf{bottom:929.982000px;}
.y74{bottom:930.675000px;}
.y56{bottom:932.205000px;}
.y1ca{bottom:933.568500px;}
.y189{bottom:934.261500px;}
.y159{bottom:935.341500px;}
.y45{bottom:938.107500px;}
.y2b{bottom:939.409500px;}
.y9f{bottom:953.742000px;}
.y1a0{bottom:960.264000px;}
.yb7{bottom:960.468000px;}
.y8d{bottom:961.161000px;}
.y1c9{bottom:964.054500px;}
.y188{bottom:964.747500px;}
.y1{bottom:966.726000px;}
.y73{bottom:973.917000px;}
.y170{bottom:975.273000px;}
.y55{bottom:975.445500px;}
.y2a{bottom:982.842000px;}
.y9e{bottom:984.228000px;}
.y19f{bottom:990.750000px;}
.yb6{bottom:990.952500px;}
.y8c{bottom:991.647000px;}
.y187{bottom:995.233500px;}
.y29{bottom:1003.165500px;}
.y72{bottom:1004.403000px;}
.y16f{bottom:1005.757500px;}
.y54{bottom:1005.931500px;}
.y1c8{bottom:1007.989500px;}
.y44{bottom:1015.557000px;}
.ye5{bottom:1021.438500px;}
.y8b{bottom:1022.131500px;}
.y28{bottom:1023.490500px;}
.y9d{bottom:1028.163000px;}
.y71{bottom:1034.889000px;}
.y43{bottom:1035.880500px;}
.y53{bottom:1036.417500px;}
.y27{bottom:1043.814000px;}
.y186{bottom:1051.924500px;}
.y42{bottom:1056.204000px;}
.y70{bottom:1065.373500px;}
.y52{bottom:1095.859500px;}
.y26{bottom:1107.406500px;}
.y25{bottom:1117.867500px;}
.y24{bottom:1128.328500px;}
.y23{bottom:1139.859000px;}
.h19{height:23.886490px;}
.hc{height:25.356979px;}
.he{height:26.899200px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.hd{height:34.020979px;}
.hb{height:34.026979px;}
.h12{height:37.180423px;}
.h11{height:44.831700px;}
.h1a{height:45.490947px;}
.h7{height:45.960000px;}
.h13{height:46.080038px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h10{height:48.992410px;}
.h14{height:49.090950px;}
.h17{height:50.283571px;}
.h2{height:55.152000px;}
.h16{height:56.552774px;}
.h18{height:56.941496px;}
.h15{height:60.340117px;}
.hf{height:60.598349px;}
.h5{height:78.132000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:99.496500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x22{left:107.631000px;}
.x21{left:115.767000px;}
.x1e{left:118.146000px;}
.x1d{left:119.566500px;}
.x19{left:124.900500px;}
.x1b{left:140.406000px;}
.x1c{left:155.566500px;}
.x11{left:176.742000px;}
.x15{left:183.232500px;}
.x14{left:196.333500px;}
.x4{left:203.484001px;}
.xa{left:215.532000px;}
.x8{left:240.295500px;}
.x20{left:244.644000px;}
.x16{left:246.520500px;}
.x12{left:256.641000px;}
.x9{left:269.496000px;}
.xb{left:281.721000px;}
.x1f{left:286.303500px;}
.xf{left:307.134000px;}
.xe{left:308.437500px;}
.xc{left:311.290500px;}
.xd{left:323.659500px;}
.x17{left:392.904000px;}
.x10{left:397.552500px;}
.x13{left:433.461000px;}
.x1a{left:438.081000px;}
.x5{left:448.608000px;}
.x3{left:454.959000px;}
.x7{left:505.212000px;}
.x6{left:540.712500px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:7.706667pt;}
.v2{vertical-align:21.114667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.002405pt;}
.ls7{letter-spacing:0.003370pt;}
.lsd{letter-spacing:0.446509pt;}
.ls4{letter-spacing:0.451842pt;}
.lse{letter-spacing:2.653258pt;}
.ls10{letter-spacing:2.659661pt;}
.ls11{letter-spacing:9.693077pt;}
.lsc{letter-spacing:9.698411pt;}
.ls6{letter-spacing:15.237309pt;}
.ls3{letter-spacing:15.920426pt;}
.ls5{letter-spacing:17.895925pt;}
.lsf{letter-spacing:21.952426pt;}
.ls2{letter-spacing:22.564823pt;}
.lsa{letter-spacing:22.714350pt;}
.ls9{letter-spacing:22.857187pt;}
.ls8{letter-spacing:23.342520pt;}
.lsb{letter-spacing:23.343684pt;}
.ws60{word-spacing:-29.504025pt;}
.wsaa{word-spacing:-28.928024pt;}
.ws15{word-spacing:-18.583288pt;}
.wsf1{word-spacing:-15.895286pt;}
.ws83{word-spacing:-15.675046pt;}
.ws77{word-spacing:-15.662559pt;}
.ws78{word-spacing:-15.604377pt;}
.ws67{word-spacing:-15.488013pt;}
.ws89{word-spacing:-15.197104pt;}
.wsd3{word-spacing:-15.138922pt;}
.wsf3{word-spacing:-15.080740pt;}
.wsb9{word-spacing:-15.022558pt;}
.wseb{word-spacing:-14.615285pt;}
.ws9c{word-spacing:-14.498921pt;}
.ws27{word-spacing:-14.440739pt;}
.wsf0{word-spacing:-14.324376pt;}
.ws65{word-spacing:-14.266194pt;}
.ws82{word-spacing:-14.226880pt;}
.ws66{word-spacing:-14.208012pt;}
.wsf9{word-spacing:-14.160380pt;}
.wsfb{word-spacing:-14.149830pt;}
.wsbe{word-spacing:-14.091648pt;}
.ws75{word-spacing:-13.858921pt;}
.ws76{word-spacing:-13.800739pt;}
.wsb0{word-spacing:-13.684375pt;}
.wsd0{word-spacing:-13.451648pt;}
.wscf{word-spacing:-13.393466pt;}
.ws3e{word-spacing:-13.335284pt;}
.ws9d{word-spacing:-13.277102pt;}
.ws53{word-spacing:-13.160738pt;}
.ws8a{word-spacing:-13.102556pt;}
.wsfa{word-spacing:-12.980374pt;}
.ws7e{word-spacing:-12.928011pt;}
.wsa6{word-spacing:-12.869829pt;}
.ws96{word-spacing:-12.811647pt;}
.wsc7{word-spacing:-12.753465pt;}
.ws21{word-spacing:-12.695283pt;}
.ws2{word-spacing:-12.544990pt;}
.wscd{word-spacing:-12.520738pt;}
.wsef{word-spacing:-12.462556pt;}
.wsb8{word-spacing:-12.404374pt;}
.ws93{word-spacing:-12.346192pt;}
.ws95{word-spacing:-12.288010pt;}
.wsf7{word-spacing:-12.282192pt;}
.wsad{word-spacing:-12.171647pt;}
.ws7a{word-spacing:-12.113465pt;}
.ws43{word-spacing:-12.055283pt;}
.ws98{word-spacing:-11.764373pt;}
.wse1{word-spacing:-11.706192pt;}
.ws9b{word-spacing:-11.648010pt;}
.ws9a{word-spacing:-11.589828pt;}
.ws8d{word-spacing:-11.531646pt;}
.ws42{word-spacing:-11.473464pt;}
.ws2f{word-spacing:-11.415282pt;}
.ws7d{word-spacing:-11.357100pt;}
.wsd7{word-spacing:-11.298919pt;}
.ws9e{word-spacing:-11.240737pt;}
.ws5{word-spacing:-11.215572pt;}
.ws84{word-spacing:-11.182555pt;}
.ws58{word-spacing:-11.066191pt;}
.ws28{word-spacing:-11.008009pt;}
.ws79{word-spacing:-10.949827pt;}
.ws3a{word-spacing:-10.891645pt;}
.wsb7{word-spacing:-10.833464pt;}
.wsc5{word-spacing:-10.775282pt;}
.ws5a{word-spacing:-10.717100pt;}
.ws7f{word-spacing:-10.658918pt;}
.wsd8{word-spacing:-10.600736pt;}
.ws6a{word-spacing:-10.542554pt;}
.wsf5{word-spacing:-10.536736pt;}
.wse2{word-spacing:-10.484372pt;}
.wsb2{word-spacing:-10.426191pt;}
.ws4e{word-spacing:-10.368009pt;}
.ws5c{word-spacing:-10.309827pt;}
.ws92{word-spacing:-10.251645pt;}
.ws4d{word-spacing:-10.193463pt;}
.ws101{word-spacing:-10.190804pt;}
.wsc8{word-spacing:-10.171800pt;}
.ws3f{word-spacing:-10.135281pt;}
.ws29{word-spacing:-10.077099pt;}
.wsc4{word-spacing:-10.018917pt;}
.ws94{word-spacing:-9.902554pt;}
.ws8f{word-spacing:-9.844372pt;}
.wsea{word-spacing:-9.786190pt;}
.ws46{word-spacing:-9.728008pt;}
.ws22{word-spacing:-9.669826pt;}
.wse0{word-spacing:-9.668700pt;}
.ws102{word-spacing:-9.641498pt;}
.ws100{word-spacing:-9.627372pt;}
.wsde{word-spacing:-9.617828pt;}
.ws30{word-spacing:-9.611644pt;}
.ws52{word-spacing:-9.553463pt;}
.wsb3{word-spacing:-9.547644pt;}
.ws73{word-spacing:-9.495281pt;}
.wsc6{word-spacing:-9.397093pt;}
.wsc2{word-spacing:-9.395151pt;}
.ws7b{word-spacing:-9.382533pt;}
.ws7c{word-spacing:-9.378917pt;}
.ws20{word-spacing:-9.320735pt;}
.ws68{word-spacing:-9.262553pt;}
.ws71{word-spacing:-9.180881pt;}
.ws2d{word-spacing:-9.146189pt;}
.ws3c{word-spacing:-9.029826pt;}
.ws55{word-spacing:-8.971644pt;}
.ws24{word-spacing:-8.913462pt;}
.ws85{word-spacing:-8.855280pt;}
.wsf4{word-spacing:-8.849462pt;}
.ws74{word-spacing:-8.797098pt;}
.ws49{word-spacing:-8.795797pt;}
.wscc{word-spacing:-8.738916pt;}
.wsa1{word-spacing:-8.680735pt;}
.ws48{word-spacing:-8.622553pt;}
.wsb4{word-spacing:-8.564371pt;}
.ws59{word-spacing:-8.506189pt;}
.ws2b{word-spacing:-8.448007pt;}
.ws41{word-spacing:-8.389825pt;}
.wsd5{word-spacing:-8.331643pt;}
.ws8b{word-spacing:-8.281882pt;}
.ws8c{word-spacing:-8.273461pt;}
.ws4a{word-spacing:-8.215280pt;}
.ws56{word-spacing:-8.209461pt;}
.ws54{word-spacing:-8.157098pt;}
.wsd4{word-spacing:-8.151280pt;}
.wsa5{word-spacing:-8.098916pt;}
.wsbf{word-spacing:-8.098582pt;}
.ws39{word-spacing:-8.040734pt;}
.ws86{word-spacing:-7.982552pt;}
.wsc3{word-spacing:-7.924370pt;}
.wscb{word-spacing:-7.866188pt;}
.wse8{word-spacing:-7.749825pt;}
.ws33{word-spacing:-7.691643pt;}
.ws4f{word-spacing:-7.575279pt;}
.ws5e{word-spacing:-7.517097pt;}
.ws2c{word-spacing:-7.400733pt;}
.wsa0{word-spacing:-7.342552pt;}
.ws72{word-spacing:-7.284370pt;}
.ws5b{word-spacing:-7.226188pt;}
.ws63{word-spacing:-7.180256pt;}
.ws57{word-spacing:-7.168006pt;}
.wsa2{word-spacing:-7.109824pt;}
.wsfc{word-spacing:-7.051642pt;}
.wsba{word-spacing:-6.993460pt;}
.ws62{word-spacing:-6.935904pt;}
.wsb6{word-spacing:-6.935279pt;}
.ws2e{word-spacing:-6.877097pt;}
.wsac{word-spacing:-6.818915pt;}
.wse3{word-spacing:-6.702551pt;}
.ws34{word-spacing:-6.586187pt;}
.ws97{word-spacing:-6.528005pt;}
.wsbb{word-spacing:-6.526128pt;}
.wsf2{word-spacing:-6.411642pt;}
.ws5f{word-spacing:-6.368607pt;}
.ws61{word-spacing:-6.353460pt;}
.ws2a{word-spacing:-6.237096pt;}
.ws38{word-spacing:-6.120732pt;}
.ws9f{word-spacing:-6.062551pt;}
.wsff{word-spacing:-5.998550pt;}
.wsee{word-spacing:-5.888005pt;}
.ws32{word-spacing:-5.771641pt;}
.ws40{word-spacing:-5.713459pt;}
.ws6d{word-spacing:-5.655277pt;}
.ws6e{word-spacing:-5.597096pt;}
.wse4{word-spacing:-5.538914pt;}
.ws50{word-spacing:-5.422550pt;}
.ws69{word-spacing:-5.364368pt;}
.wsaf{word-spacing:-5.354856pt;}
.ws4b{word-spacing:-5.306186pt;}
.ws3d{word-spacing:-5.189823pt;}
.wse7{word-spacing:-5.131641pt;}
.wsab{word-spacing:-5.073459pt;}
.ws51{word-spacing:-5.015277pt;}
.ws25{word-spacing:-4.957095pt;}
.ws3b{word-spacing:-4.898913pt;}
.wsae{word-spacing:-4.818652pt;}
.ws37{word-spacing:-4.782549pt;}
.ws70{word-spacing:-4.724368pt;}
.wse5{word-spacing:-4.491640pt;}
.wse6{word-spacing:-4.375276pt;}
.wsbc{word-spacing:-4.142549pt;}
.ws6f{word-spacing:-4.084367pt;}
.wsf8{word-spacing:-4.078549pt;}
.wsb5{word-spacing:-4.026185pt;}
.wsa7{word-spacing:-3.968003pt;}
.ws4c{word-spacing:-3.909821pt;}
.wsb1{word-spacing:-3.851640pt;}
.ws44{word-spacing:-3.677094pt;}
.wsca{word-spacing:-3.618912pt;}
.ws5d{word-spacing:-3.560730pt;}
.wsa4{word-spacing:-3.502548pt;}
.wsc9{word-spacing:-3.444367pt;}
.ws81{word-spacing:-3.386185pt;}
.wsec{word-spacing:-3.328003pt;}
.ws99{word-spacing:-3.269821pt;}
.wsa8{word-spacing:-3.095275pt;}
.wsd9{word-spacing:-3.037093pt;}
.ws91{word-spacing:-2.920730pt;}
.ws31{word-spacing:-2.862548pt;}
.wsd2{word-spacing:-2.688002pt;}
.ws36{word-spacing:-2.571639pt;}
.ws9{word-spacing:-2.490184pt;}
.wsa3{word-spacing:-2.455275pt;}
.wsf6{word-spacing:-2.164365pt;}
.ws6b{word-spacing:-2.048002pt;}
.ws64{word-spacing:-1.602843pt;}
.ws23{word-spacing:-1.582547pt;}
.wsbd{word-spacing:-1.524365pt;}
.ws26{word-spacing:-1.408001pt;}
.ws80{word-spacing:-1.233456pt;}
.wse9{word-spacing:-0.884364pt;}
.ws90{word-spacing:-0.826183pt;}
.ws35{word-spacing:-0.709819pt;}
.wsed{word-spacing:-0.593455pt;}
.wsc1{word-spacing:-0.477091pt;}
.wsfd{word-spacing:-0.418909pt;}
.wsfe{word-spacing:-0.413091pt;}
.ws87{word-spacing:-0.244364pt;}
.ws45{word-spacing:-0.058182pt;}
.wsb{word-spacing:-0.046545pt;}
.ws88{word-spacing:-0.011636pt;}
.ws0{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.162909pt;}
.wsa9{word-spacing:0.221091pt;}
.ws13{word-spacing:0.781610pt;}
.ws17{word-spacing:1.175274pt;}
.ws4{word-spacing:2.078611pt;}
.ws1{word-spacing:2.375100pt;}
.ws3{word-spacing:2.406980pt;}
.ws10{word-spacing:3.211639pt;}
.ws1e{word-spacing:3.700367pt;}
.ws1c{word-spacing:3.968003pt;}
.wse{word-spacing:4.375276pt;}
.ws6{word-spacing:4.782067pt;}
.ws8{word-spacing:4.999897pt;}
.wsd{word-spacing:5.538914pt;}
.wsc{word-spacing:6.528005pt;}
.ws19{word-spacing:6.586187pt;}
.ws14{word-spacing:7.269067pt;}
.ws1b{word-spacing:7.342552pt;}
.wsf{word-spacing:7.575279pt;}
.wsa{word-spacing:7.982552pt;}
.ws12{word-spacing:8.040734pt;}
.ws18{word-spacing:8.738916pt;}
.ws11{word-spacing:9.227644pt;}
.ws1a{word-spacing:9.728008pt;}
.ws16{word-spacing:9.844372pt;}
.wsdf{word-spacing:16.116377pt;}
.wsda{word-spacing:16.306893pt;}
.ws1d{word-spacing:16.796819pt;}
.wsd1{word-spacing:17.237285pt;}
.ws47{word-spacing:19.224226pt;}
.wsce{word-spacing:19.231951pt;}
.wsc0{word-spacing:23.846639pt;}
.ws7{word-spacing:24.037922pt;}
.ws8e{word-spacing:28.003782pt;}
.wsd6{word-spacing:30.021843pt;}
.wsdb{word-spacing:34.827519pt;}
.wsdc{word-spacing:61.326460pt;}
.ws1f{word-spacing:84.087860pt;}
.wsdd{word-spacing:91.866594pt;}
._8{margin-left:-43.000343pt;}
._c{margin-left:-40.628438pt;}
._1d{margin-left:-33.454573pt;}
._19{margin-left:-30.169292pt;}
._14{margin-left:-29.149115pt;}
._10{margin-left:-27.895280pt;}
._f{margin-left:-26.269382pt;}
._e{margin-left:-24.245906pt;}
._12{margin-left:-22.766419pt;}
._5{margin-left:-19.479006pt;}
._1f{margin-left:-14.735196pt;}
._d{margin-left:-7.183691pt;}
._1a{margin-left:-5.709784pt;}
._a{margin-left:-4.743810pt;}
._0{margin-left:-3.570620pt;}
._9{margin-left:-2.448418pt;}
._2{margin-left:-1.211460pt;}
._7{width:1.020177pt;}
._b{width:2.371905pt;}
._1{width:3.309247pt;}
._2d{width:4.804984pt;}
._24{width:6.071211pt;}
._29{width:9.600008pt;}
._3{width:13.238096pt;}
._26{width:15.988280pt;}
._16{width:17.365293pt;}
._23{width:18.797523pt;}
._1c{width:20.310251pt;}
._2b{width:21.271210pt;}
._1e{width:22.283655pt;}
._2c{width:23.192242pt;}
._17{width:24.114389pt;}
._25{width:25.139346pt;}
._1b{width:26.780968pt;}
._21{width:27.985471pt;}
._22{width:29.153895pt;}
._28{width:30.487298pt;}
._18{width:32.698209pt;}
._13{width:35.286772pt;}
._15{width:39.161176pt;}
._20{width:45.381856pt;}
._11{width:55.790560pt;}
._2a{width:71.731200pt;}
._35{width:75.785126pt;}
._34{width:80.637262pt;}
._27{width:84.164373pt;}
._39{width:90.254484pt;}
._32{width:95.065126pt;}
._40{width:104.718484pt;}
._38{width:109.529151pt;}
._50{width:112.285550pt;}
._47{width:113.437548pt;}
._46{width:116.891554pt;}
._4a{width:117.943505pt;}
._4{width:125.290496pt;}
._43{width:127.219817pt;}
._3f{width:132.037309pt;}
._48{width:143.686142pt;}
._53{width:148.744722pt;}
._51{width:150.550165pt;}
._41{width:154.560257pt;}
._49{width:157.858213pt;}
._4e{width:160.048475pt;}
._37{width:165.458498pt;}
._44{width:167.097411pt;}
._42{width:174.695857pt;}
._4c{width:176.281669pt;}
._45{width:179.892639pt;}
._6{width:187.840102pt;}
._55{width:193.973888pt;}
._3e{width:196.547790pt;}
._4f{width:212.455562pt;}
._4b{width:223.243967pt;}
._52{width:231.122300pt;}
._2f{width:232.900153pt;}
._54{width:238.518633pt;}
._4d{width:242.423079pt;}
._3c{width:270.028697pt;}
._31{width:292.810478pt;}
._2e{width:298.457727pt;}
._3d{width:302.858978pt;}
._3b{width:308.086589pt;}
._33{width:315.326965pt;}
._36{width:367.388563pt;}
._3a{width:422.553102pt;}
._30{width:443.418084pt;}
.fs5{font-size:31.880533pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:42.507200pt;}
.fsb{font-size:47.820800pt;}
.fs8{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.181867pt;}
.fs7{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:76.513067pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y1db{bottom:79.566667pt;}
.y6f{bottom:79.568000pt;}
.y4{bottom:86.333337pt;}
.y126{bottom:119.417333pt;}
.y185{bottom:119.418667pt;}
.y139{bottom:121.194667pt;}
.y41{bottom:122.177333pt;}
.y22{bottom:123.790666pt;}
.ye4{bottom:127.297333pt;}
.yb5{bottom:128.022667pt;}
.y1b7{bottom:128.530667pt;}
.y19e{bottom:129.776000pt;}
.yf9{bottom:130.137333pt;}
.y10f{bottom:131.550667pt;}
.yce{bottom:131.656000pt;}
.y14b{bottom:132.533333pt;}
.y6e{bottom:132.909333pt;}
.y8a{bottom:140.666667pt;}
.y9c{bottom:141.476000pt;}
.y158{bottom:146.504000pt;}
.y125{bottom:146.516000pt;}
.y138{bottom:148.293333pt;}
.ye3{bottom:154.396000pt;}
.yb4{bottom:155.120000pt;}
.y1b6{bottom:155.629333pt;}
.yf8{bottom:157.236000pt;}
.y10e{bottom:158.649333pt;}
.ycd{bottom:158.754667pt;}
.y14a{bottom:159.632000pt;}
.y6d{bottom:160.008000pt;}
.y89{bottom:167.764000pt;}
.y9b{bottom:168.574667pt;}
.y184{bottom:168.656000pt;}
.y19{bottom:175.052000pt;}
.y40{bottom:179.517333pt;}
.yb3{bottom:182.218667pt;}
.y19d{bottom:184.153333pt;}
.yf7{bottom:184.333333pt;}
.y1c7{bottom:184.653333pt;}
.y124{bottom:184.953333pt;}
.y10d{bottom:185.748000pt;}
.ycc{bottom:185.853333pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y137{bottom:186.729333pt;}
.y6c{bottom:187.106667pt;}
.ye2{bottom:193.449333pt;}
.y1b5{bottom:194.065333pt;}
.y88{bottom:194.862667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y149{bottom:198.068000pt;}
.y9a{bottom:207.628000pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.yb2{bottom:209.317333pt;}
.y1c6{bottom:211.752000pt;}
.y123{bottom:212.052000pt;}
.y10c{bottom:212.845333pt;}
.y136{bottom:213.828000pt;}
.y6b{bottom:214.205333pt;}
.ye1{bottom:220.548000pt;}
.y1b4{bottom:221.164000pt;}
.y183{bottom:221.648000pt;}
.y87{bottom:221.961333pt;}
.yf6{bottom:222.770667pt;}
.ycb{bottom:224.906667pt;}
.y148{bottom:225.166667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y99{bottom:234.726667pt;}
.yb1{bottom:236.416000pt;}
.y122{bottom:239.150667pt;}
.y135{bottom:240.926667pt;}
.y6a{bottom:241.304000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y1b3{bottom:248.262667pt;}
.y182{bottom:248.746667pt;}
.y157{bottom:249.060000pt;}
.yf5{bottom:249.869333pt;}
.y1c5{bottom:249.890667pt;}
.y10b{bottom:251.282667pt;}
.yca{bottom:252.005333pt;}
.y147{bottom:252.265333pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y86{bottom:260.398667pt;}
.y98{bottom:261.824000pt;}
.y16e{bottom:262.072000pt;}
.y19c{bottom:265.629333pt;}
.y121{bottom:266.248000pt;}
.ye0{bottom:274.925333pt;}
.y1b2{bottom:275.361333pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y156{bottom:276.158667pt;}
.yf4{bottom:276.968000pt;}
.y1c4{bottom:276.988000pt;}
.y10a{bottom:278.381333pt;}
.yc9{bottom:279.104000pt;}
.y134{bottom:279.364000pt;}
.y69{bottom:279.740000pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y85{bottom:287.497333pt;}
.y16d{bottom:289.701333pt;}
.y146{bottom:290.702667pt;}
.yb0{bottom:290.793333pt;}
.y19b{bottom:292.728000pt;}
.y120{bottom:293.346667pt;}
.y97{bottom:300.878667pt;}
.y181{bottom:301.738667pt;}
.ydf{bottom:302.024000pt;}
.y1b1{bottom:302.460000pt;}
.y155{bottom:303.256000pt;}
.yf3{bottom:304.066667pt;}
.y109{bottom:305.480000pt;}
.yc8{bottom:306.201333pt;}
.y133{bottom:306.462667pt;}
.y68{bottom:306.838667pt;}
.y10{bottom:309.452000pt;}
.y84{bottom:314.594667pt;}
.y1c3{bottom:315.126667pt;}
.y16c{bottom:316.800000pt;}
.y145{bottom:317.801333pt;}
.yaf{bottom:317.892000pt;}
.y11f{bottom:320.445333pt;}
.y1da{bottom:324.533333pt;}
.y96{bottom:327.976000pt;}
.y180{bottom:328.836000pt;}
.y1b0{bottom:329.557333pt;}
.yf2{bottom:331.164000pt;}
.y108{bottom:332.578667pt;}
.y132{bottom:333.560000pt;}
.y67{bottom:333.937333pt;}
.yde{bottom:340.460000pt;}
.y154{bottom:341.693333pt;}
.y1c2{bottom:342.224000pt;}
.yf{bottom:343.809333pt;}
.y16b{bottom:343.898667pt;}
.y144{bottom:344.898667pt;}
.yc7{bottom:345.256000pt;}
.y19a{bottom:347.105333pt;}
.y11e{bottom:347.544000pt;}
.y1d9{bottom:351.632000pt;}
.y83{bottom:353.032000pt;}
.y1af{bottom:356.656000pt;}
.yae{bottom:356.945333pt;}
.yf1{bottom:358.262667pt;}
.y107{bottom:359.676000pt;}
.y66{bottom:361.036000pt;}
.ye{bottom:362.706666pt;}
.y17f{bottom:367.273333pt;}
.ydd{bottom:367.558667pt;}
.y153{bottom:368.792000pt;}
.y16a{bottom:370.997333pt;}
.y131{bottom:371.997333pt;}
.yc6{bottom:372.353333pt;}
.y199{bottom:374.202667pt;}
.y11d{bottom:374.642667pt;}
.y1d8{bottom:378.729333pt;}
.y82{bottom:380.130667pt;}
.y1c1{bottom:380.362667pt;}
.y95{bottom:382.353333pt;}
.y1ae{bottom:383.754667pt;}
.yad{bottom:384.042667pt;}
.yf0{bottom:385.361333pt;}
.y106{bottom:386.774667pt;}
.y17e{bottom:394.372000pt;}
.ydc{bottom:394.657333pt;}
.y152{bottom:395.890667pt;}
.y169{bottom:398.094667pt;}
.y130{bottom:399.096000pt;}
.y65{bottom:399.473333pt;}
.y198{bottom:401.301333pt;}
.y11c{bottom:401.740000pt;}
.y3f{bottom:404.298667pt;}
.y81{bottom:407.229333pt;}
.y1c0{bottom:407.460000pt;}
.y94{bottom:409.452000pt;}
.y143{bottom:410.434667pt;}
.y1ad{bottom:410.853333pt;}
.yac{bottom:411.141333pt;}
.yc5{bottom:411.406667pt;}
.yef{bottom:412.460000pt;}
.y1d7{bottom:417.782667pt;}
.y17d{bottom:421.470667pt;}
.ydb{bottom:421.756000pt;}
.y3e{bottom:422.364000pt;}
.y151{bottom:422.989333pt;}
.y168{bottom:425.193333pt;}
.y105{bottom:425.212000pt;}
.y12f{bottom:426.194667pt;}
.y64{bottom:426.570667pt;}
.y11b{bottom:428.838667pt;}
.y80{bottom:434.328000pt;}
.y93{bottom:436.550667pt;}
.y142{bottom:437.533333pt;}
.y1ac{bottom:437.952000pt;}
.yab{bottom:438.240000pt;}
.yc4{bottom:438.505333pt;}
.yee{bottom:439.558667pt;}
.y197{bottom:439.738667pt;}
.y3d{bottom:440.429333pt;}
.y1d6{bottom:444.881333pt;}
.y1bf{bottom:445.598667pt;}
.yd{bottom:446.990669pt;}
.y17c{bottom:448.569333pt;}
.yda{bottom:448.854667pt;}
.y150{bottom:450.086667pt;}
.y167{bottom:452.292000pt;}
.y104{bottom:452.310667pt;}
.y12e{bottom:453.293333pt;}
.y63{bottom:453.669333pt;}
.y3c{bottom:458.494667pt;}
.y7f{bottom:461.425333pt;}
.yc{bottom:462.990669pt;}
.y92{bottom:463.649333pt;}
.y141{bottom:464.632000pt;}
.yc3{bottom:465.604000pt;}
.yed{bottom:466.656000pt;}
.y196{bottom:466.837333pt;}
.y1d5{bottom:471.980000pt;}
.y1be{bottom:472.696000pt;}
.y11a{bottom:473.353333pt;}
.y17b{bottom:475.666667pt;}
.yd9{bottom:475.952000pt;}
.y1ab{bottom:476.388000pt;}
.y14f{bottom:477.185333pt;}
.yaa{bottom:477.293333pt;}
.yb{bottom:478.990666pt;}
.y166{bottom:479.390667pt;}
.y103{bottom:479.409333pt;}
.y62{bottom:480.768000pt;}
.y7e{bottom:488.524000pt;}
.y91{bottom:490.748000pt;}
.y12d{bottom:491.729333pt;}
.y195{bottom:493.936000pt;}
.y3b{bottom:494.626667pt;}
.ya{bottom:494.990666pt;}
.y119{bottom:500.452000pt;}
.y17a{bottom:502.765333pt;}
.yd8{bottom:503.050667pt;}
.y1aa{bottom:503.486667pt;}
.y14e{bottom:504.284000pt;}
.ya9{bottom:504.392000pt;}
.yc2{bottom:504.657333pt;}
.yec{bottom:505.093333pt;}
.y165{bottom:506.489333pt;}
.y102{bottom:506.506667pt;}
.y61{bottom:507.866667pt;}
.y1bd{bottom:510.834667pt;}
.y1d4{bottom:511.033333pt;}
.y3a{bottom:512.692000pt;}
.y90{bottom:517.845333pt;}
.y12c{bottom:518.828000pt;}
.y194{bottom:521.033333pt;}
.y179{bottom:529.864000pt;}
.y1a9{bottom:530.585333pt;}
.y39{bottom:530.757333pt;}
.yc1{bottom:531.756000pt;}
.yeb{bottom:532.192000pt;}
.y164{bottom:533.586667pt;}
.y101{bottom:533.605333pt;}
.y118{bottom:537.153333pt;}
.y1bc{bottom:537.932000pt;}
.y1d3{bottom:538.132000pt;}
.y7d{bottom:541.361333pt;}
.y8f{bottom:544.944000pt;}
.y12b{bottom:545.926667pt;}
.y60{bottom:546.304000pt;}
.ya8{bottom:547.430667pt;}
.y193{bottom:548.132000pt;}
.y38{bottom:548.822667pt;}
.yd7{bottom:555.888000pt;}
.y178{bottom:556.962667pt;}
.y14d{bottom:557.121333pt;}
.y1a8{bottom:557.684000pt;}
.yc0{bottom:558.854667pt;}
.yea{bottom:559.290667pt;}
.y163{bottom:560.685333pt;}
.y100{bottom:560.704000pt;}
.y51{bottom:564.182667pt;}
.y117{bottom:564.252000pt;}
.y37{bottom:566.888000pt;}
.y8e{bottom:572.042667pt;}
.y12a{bottom:573.025333pt;}
.y5f{bottom:573.401333pt;}
.y9{bottom:573.786667pt;}
.y192{bottom:575.230667pt;}
.y1bb{bottom:576.070667pt;}
.y1d2{bottom:577.185333pt;}
.ya7{bottom:579.842667pt;}
.y50{bottom:582.249333pt;}
.y177{bottom:584.061333pt;}
.y1a7{bottom:584.782667pt;}
.y36{bottom:584.954667pt;}
.ybf{bottom:585.953333pt;}
.y162{bottom:587.784000pt;}
.yff{bottom:587.802667pt;}
.y116{bottom:591.350667pt;}
.y8{bottom:592.685334pt;}
.ye9{bottom:597.728000pt;}
.y140{bottom:600.122667pt;}
.y129{bottom:600.124000pt;}
.y4f{bottom:600.314667pt;}
.y5e{bottom:600.500000pt;}
.y191{bottom:602.329333pt;}
.y35{bottom:603.020000pt;}
.y1ba{bottom:603.168000pt;}
.y1d1{bottom:604.284000pt;}
.y7c{bottom:610.480000pt;}
.y176{bottom:611.158667pt;}
.y1a6{bottom:611.880000pt;}
.ya6{bottom:612.254667pt;}
.ybe{bottom:613.050667pt;}
.y161{bottom:614.882667pt;}
.yfe{bottom:614.901333pt;}
.y4e{bottom:618.380000pt;}
.y34{bottom:621.085333pt;}
.ye8{bottom:624.825333pt;}
.yd6{bottom:625.006667pt;}
.y14c{bottom:626.240000pt;}
.y13f{bottom:627.221333pt;}
.y5d{bottom:627.598667pt;}
.y115{bottom:628.053333pt;}
.y190{bottom:629.428000pt;}
.y1b9{bottom:630.266667pt;}
.y7b{bottom:637.578667pt;}
.y175{bottom:638.257333pt;}
.ybd{bottom:640.149333pt;}
.y160{bottom:641.980000pt;}
.y1d0{bottom:643.337333pt;}
.y7{bottom:645.598667pt;}
.y33{bottom:645.642667pt;}
.y128{bottom:647.952000pt;}
.y1a5{bottom:650.317333pt;}
.ye7{bottom:651.924000pt;}
.yd5{bottom:652.105333pt;}
.yfd{bottom:653.337333pt;}
.y13e{bottom:654.320000pt;}
.y5c{bottom:654.697333pt;}
.y114{bottom:655.152000pt;}
.ya5{bottom:655.293333pt;}
.y7a{bottom:664.676000pt;}
.ybc{bottom:667.248000pt;}
.y18f{bottom:667.864000pt;}
.y3{bottom:668.977329pt;}
.y15f{bottom:669.078667pt;}
.y1cf{bottom:670.436000pt;}
.y4d{bottom:673.408000pt;}
.y1b8{bottom:677.285333pt;}
.y1a4{bottom:677.416000pt;}
.yd4{bottom:679.202667pt;}
.yfc{bottom:680.436000pt;}
.y13d{bottom:681.418667pt;}
.ya4{bottom:682.390667pt;}
.y174{bottom:687.496000pt;}
.y32{bottom:688.029333pt;}
.y4c{bottom:691.474667pt;}
.y79{bottom:691.774667pt;}
.y113{bottom:691.853333pt;}
.y5b{bottom:693.134667pt;}
.ybb{bottom:694.346667pt;}
.y18e{bottom:694.962667pt;}
.y15e{bottom:696.177333pt;}
.y1a3{bottom:704.514667pt;}
.y31{bottom:706.094667pt;}
.yd3{bottom:706.301333pt;}
.yfb{bottom:707.534667pt;}
.y1ce{bottom:709.489333pt;}
.y4b{bottom:709.540000pt;}
.y78{bottom:718.873333pt;}
.y13c{bottom:719.856000pt;}
.y5a{bottom:720.232000pt;}
.ya3{bottom:721.445333pt;}
.y18d{bottom:722.061333pt;}
.y15d{bottom:723.276000pt;}
.y30{bottom:724.160000pt;}
.y173{bottom:726.086667pt;}
.y4a{bottom:727.605333pt;}
.y112{bottom:728.556000pt;}
.y1a2{bottom:731.613333pt;}
.ye6{bottom:733.400000pt;}
.yfa{bottom:734.633333pt;}
.y1cd{bottom:736.588000pt;}
.y2f{bottom:742.226667pt;}
.yd2{bottom:745.354667pt;}
.y49{bottom:745.670667pt;}
.y77{bottom:745.972000pt;}
.y13b{bottom:746.953333pt;}
.y59{bottom:747.330667pt;}
.ya2{bottom:748.542667pt;}
.y18c{bottom:749.160000pt;}
.y15c{bottom:750.374667pt;}
.y111{bottom:755.654667pt;}
.yba{bottom:760.498667pt;}
.y127{bottom:761.732000pt;}
.y48{bottom:763.736000pt;}
.y172{bottom:764.678667pt;}
.yd1{bottom:772.453333pt;}
.y76{bottom:773.070667pt;}
.y58{bottom:774.429333pt;}
.y1cc{bottom:775.641333pt;}
.y18b{bottom:776.258667pt;}
.y15b{bottom:777.472000pt;}
.y2e{bottom:780.833333pt;}
.ya1{bottom:781.618667pt;}
.y2{bottom:781.661334pt;}
.y47{bottom:781.802667pt;}
.y110{bottom:782.753333pt;}
.y1a1{bottom:784.450667pt;}
.yb9{bottom:787.597333pt;}
.y13a{bottom:794.782667pt;}
.y2d{bottom:798.898667pt;}
.yd0{bottom:799.552000pt;}
.y46{bottom:799.868000pt;}
.y75{bottom:800.168000pt;}
.y57{bottom:801.528000pt;}
.y1cb{bottom:802.740000pt;}
.y18a{bottom:803.356000pt;}
.y15a{bottom:807.758667pt;}
.ya0{bottom:808.717333pt;}
.y171{bottom:813.917333pt;}
.yb8{bottom:814.694667pt;}
.y2c{bottom:816.965333pt;}
.ycf{bottom:826.650667pt;}
.y74{bottom:827.266667pt;}
.y56{bottom:828.626667pt;}
.y1ca{bottom:829.838667pt;}
.y189{bottom:830.454667pt;}
.y159{bottom:831.414667pt;}
.y45{bottom:833.873333pt;}
.y2b{bottom:835.030667pt;}
.y9f{bottom:847.770667pt;}
.y1a0{bottom:853.568000pt;}
.yb7{bottom:853.749333pt;}
.y8d{bottom:854.365333pt;}
.y1c9{bottom:856.937333pt;}
.y188{bottom:857.553333pt;}
.y1{bottom:859.312000pt;}
.y73{bottom:865.704000pt;}
.y170{bottom:866.909333pt;}
.y55{bottom:867.062667pt;}
.y2a{bottom:873.637333pt;}
.y9e{bottom:874.869333pt;}
.y19f{bottom:880.666667pt;}
.yb6{bottom:880.846667pt;}
.y8c{bottom:881.464000pt;}
.y187{bottom:884.652000pt;}
.y29{bottom:891.702667pt;}
.y72{bottom:892.802667pt;}
.y16f{bottom:894.006667pt;}
.y54{bottom:894.161333pt;}
.y1c8{bottom:895.990667pt;}
.y44{bottom:902.717333pt;}
.ye5{bottom:907.945333pt;}
.y8b{bottom:908.561333pt;}
.y28{bottom:909.769333pt;}
.y9d{bottom:913.922667pt;}
.y71{bottom:919.901333pt;}
.y43{bottom:920.782667pt;}
.y53{bottom:921.260000pt;}
.y27{bottom:927.834667pt;}
.y186{bottom:935.044000pt;}
.y42{bottom:938.848000pt;}
.y70{bottom:946.998667pt;}
.y52{bottom:974.097333pt;}
.y26{bottom:984.361333pt;}
.y25{bottom:993.660000pt;}
.y24{bottom:1002.958667pt;}
.y23{bottom:1013.208000pt;}
.h19{height:21.232435pt;}
.hc{height:22.539537pt;}
.he{height:23.910400pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.hd{height:30.240870pt;}
.hb{height:30.246204pt;}
.h12{height:33.049265pt;}
.h11{height:39.850400pt;}
.h1a{height:40.436397pt;}
.h7{height:40.853333pt;}
.h13{height:40.960034pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h10{height:43.548809pt;}
.h14{height:43.636400pt;}
.h17{height:44.696508pt;}
.h2{height:49.024000pt;}
.h16{height:50.269133pt;}
.h18{height:50.614663pt;}
.h15{height:53.635660pt;}
.hf{height:53.865199pt;}
.h5{height:69.450667pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:88.441333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x22{left:95.672000pt;}
.x21{left:102.904000pt;}
.x1e{left:105.018667pt;}
.x1d{left:106.281333pt;}
.x19{left:111.022667pt;}
.x1b{left:124.805333pt;}
.x1c{left:138.281333pt;}
.x11{left:157.104000pt;}
.x15{left:162.873333pt;}
.x14{left:174.518667pt;}
.x4{left:180.874667pt;}
.xa{left:191.584000pt;}
.x8{left:213.596000pt;}
.x20{left:217.461333pt;}
.x16{left:219.129333pt;}
.x12{left:228.125333pt;}
.x9{left:239.552000pt;}
.xb{left:250.418667pt;}
.x1f{left:254.492000pt;}
.xf{left:273.008000pt;}
.xe{left:274.166667pt;}
.xc{left:276.702667pt;}
.xd{left:287.697333pt;}
.x17{left:349.248000pt;}
.x10{left:353.380000pt;}
.x13{left:385.298667pt;}
.x1a{left:389.405333pt;}
.x5{left:398.762667pt;}
.x3{left:404.408000pt;}
.x7{left:449.077333pt;}
.x6{left:480.633333pt;}
}




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