
    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_0108725f0e6fba6db6bbe003.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_72cf4299ef336b86b01d9e75.woff')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_68bce6dfd8b211280ac32fa9.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ea1b2e011d207e4693c949ce.woff')format("woff");}.ff4{font-family:ff4;line-height:0.757812;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_dda0803bc9b1d2a530a13b58.woff')format("woff");}.ff5{font-family:ff5;line-height:1.097656;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_5d421ea317ca52daa94b56f6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_4a53377d4ad6ff5b51907941.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_bb388c6752767d11cf6327b5.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_dadd59d1ee46607aef48ed68.woff')format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_0ccce201fafe96519f4557f6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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_5edc887c282536d8b7d46697.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_8f446aa235b317f4b9f75613.woff')format("woff");}.ffc{font-family:ffc;line-height:1.005371;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_a32e21116f4a1212e2ecf68d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.675781;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_bf1c729561d33ac23cb906ed.woff')format("woff");}.ffe{font-family:ffe;line-height:1.006348;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_5375de14b81baf28dc690f1e.woff')format("woff");}.fff{font-family:fff;line-height:0.910645;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_86f14f46c606a84f5259cff9.woff')format("woff");}.ff10{font-family:ff10;line-height:0.758789;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_1ebbac896860180f04091d97.woff')format("woff");}.ff11{font-family:ff11;line-height:1.104004;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_080877a22f2a4bf785f00afb.woff')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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_5cb1259e963aca5b994748f9.woff')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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_dadd59d1ee46607aef48ed68.woff')format("woff");}.ff14{font-family:ff14;line-height:0.675781;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_d9d687d8293fb6efef1428e5.woff')format("woff");}.ff15{font-family:ff15;line-height:0.910156;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_71bced8f8250fe44b96a74fc.woff')format("woff");}.ff16{font-family:ff16;line-height:0.910156;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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls1a{letter-spacing:-0.569088px;}
.ls16{letter-spacing:-0.470592px;}
.ls6{letter-spacing:-0.454176px;}
.ls13{letter-spacing:-0.447552px;}
.ls19{letter-spacing:-0.432288px;}
.ls1b{letter-spacing:-0.421344px;}
.ls18{letter-spacing:-0.361152px;}
.lse{letter-spacing:-0.338688px;}
.lsf{letter-spacing:-0.320544px;}
.ls29{letter-spacing:-0.302400px;}
.ls27{letter-spacing:-0.260064px;}
.lsd{letter-spacing:-0.241920px;}
.ls9{letter-spacing:-0.241200px;}
.ls10{letter-spacing:-0.223776px;}
.ls1d{letter-spacing:-0.213408px;}
.ls7{letter-spacing:-0.186048px;}
.ls28{letter-spacing:-0.175392px;}
.ls1c{letter-spacing:-0.169632px;}
.ls3{letter-spacing:-0.158976px;}
.ls12{letter-spacing:-0.157248px;}
.ls11{letter-spacing:-0.145152px;}
.ls5{letter-spacing:-0.125856px;}
.ls8{letter-spacing:-0.115776px;}
.lsc{letter-spacing:-0.014400px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.007200px;}
.ls2{letter-spacing:0.014400px;}
.ls23{letter-spacing:0.191520px;}
.ls0{letter-spacing:0.240480px;}
.ls20{letter-spacing:0.256608px;}
.ls1f{letter-spacing:0.275616px;}
.ls14{letter-spacing:0.285120px;}
.lsa{letter-spacing:0.286848px;}
.ls15{letter-spacing:0.289872px;}
.ls1e{letter-spacing:0.294624px;}
.ls25{letter-spacing:0.357120px;}
.lsb{letter-spacing:0.358560px;}
.ls26{letter-spacing:0.476640px;}
.ls22{letter-spacing:0.551520px;}
.ls24{letter-spacing:0.609120px;}
.ls1{letter-spacing:73.440000px;}
.ls21{letter-spacing:196.127424px;}
.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;}
}
.ws5{word-spacing:-27.298368px;}
.ws4{word-spacing:-26.821440px;}
.ws0{word-spacing:-18.414720px;}
.ws1{word-spacing:-18.288864px;}
.ws14{word-spacing:-18.014400px;}
.ws6{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.985600px;}
.ws13{word-spacing:-16.257600px;}
.ws7{word-spacing:-15.120000px;}
.ws8{word-spacing:-14.974848px;}
.wsb{word-spacing:-14.962752px;}
.ws9{word-spacing:-14.896224px;}
.wsa{word-spacing:-14.878080px;}
.ws17{word-spacing:-14.817600px;}
.wsc{word-spacing:-14.672448px;}
.wse{word-spacing:-14.227200px;}
.ws3{word-spacing:-14.041152px;}
.wsf{word-spacing:-13.866048px;}
.ws11{word-spacing:-13.805856px;}
.ws2{word-spacing:-13.773024px;}
.ws10{word-spacing:-13.658112px;}
.ws12{word-spacing:-12.649824px;}
.ws16{word-spacing:-0.072000px;}
.wsd{word-spacing:0.000000px;}
._4{margin-left:-9.544320px;}
._a{margin-left:-5.196960px;}
._1{margin-left:-3.841920px;}
._0{margin-left:-2.119680px;}
._3{margin-left:-1.023552px;}
._2{width:1.073952px;}
._11{width:2.282400px;}
._d{width:3.600000px;}
._13{width:4.774752px;}
._15{width:6.184800px;}
._c{width:8.069904px;}
._8{width:9.698400px;}
._6{width:11.358864px;}
._9{width:12.709008px;}
._b{width:14.421600px;}
._7{width:16.355520px;}
._f{width:19.554192px;}
._14{width:20.866608px;}
._19{width:21.989952px;}
._18{width:23.263200px;}
._10{width:24.530400px;}
._16{width:27.302400px;}
._e{width:28.407024px;}
._38{width:31.024800px;}
._3d{width:35.985600px;}
._2b{width:39.571200px;}
._1f{width:40.881600px;}
._3c{width:42.580800px;}
._2f{width:44.913600px;}
._1c{width:47.894400px;}
._2e{width:49.615200px;}
._25{width:51.566400px;}
._26{width:52.776000px;}
._1e{width:54.842400px;}
._31{width:55.987200px;}
._21{width:57.592800px;}
._42{width:59.587200px;}
._29{width:61.732800px;}
._3b{width:62.942400px;}
._2c{width:71.560800px;}
._41{width:75.528000px;}
._5{width:77.726880px;}
._1d{width:79.718400px;}
._35{width:80.942400px;}
._3a{width:88.992000px;}
._32{width:90.914400px;}
._37{width:92.210400px;}
._12{width:94.219344px;}
._1b{width:95.457456px;}
._20{width:106.963200px;}
._1a{width:112.963680px;}
._2a{width:114.167520px;}
._2d{width:115.754400px;}
._3f{width:133.214400px;}
._22{width:145.159200px;}
._27{width:160.927200px;}
._28{width:167.904000px;}
._34{width:171.712800px;}
._43{width:176.399424px;}
._36{width:179.935200px;}
._23{width:189.079200px;}
._17{width:194.399424px;}
._3e{width:205.128000px;}
._24{width:229.118400px;}
._39{width:235.699200px;}
._40{width:251.719200px;}
._30{width:253.108800px;}
._33{width:267.019200px;}
.fc6{color:rgb(17,85,204);}
.fc4{color:rgb(255,0,0);}
.fc1{color:rgb(121,124,143);}
.fc5{color:rgb(33,33,33);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(51,198,119);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.fs4{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:3.840000px;}
.y47{bottom:4.020000px;}
.y6e{bottom:5.040000px;}
.y54{bottom:5.400000px;}
.y9{bottom:6.900000px;}
.yda{bottom:12.780000px;}
.yeb{bottom:12.840000px;}
.y169{bottom:13.260000px;}
.yb6{bottom:13.380000px;}
.y167{bottom:13.440000px;}
.yf5{bottom:13.560000px;}
.yc0{bottom:13.740000px;}
.y16e{bottom:13.860000px;}
.yfd{bottom:13.920000px;}
.y165{bottom:13.980000px;}
.y16b{bottom:14.040000px;}
.ye3{bottom:14.100000px;}
.y162{bottom:14.160000px;}
.y15f{bottom:14.340000px;}
.yc6{bottom:14.460000px;}
.yb0{bottom:14.520000px;}
.y145{bottom:14.580000px;}
.y16d{bottom:14.940000px;}
.y164{bottom:15.060000px;}
.y101{bottom:15.120000px;}
.y161{bottom:15.240000px;}
.y13a{bottom:15.660000px;}
.ycd{bottom:18.780000px;}
.y11f{bottom:20.520000px;}
.y46{bottom:21.300000px;}
.y4b{bottom:22.200000px;}
.y6b{bottom:22.380000px;}
.yf{bottom:22.500000px;}
.y15e{bottom:23.340000px;}
.y10f{bottom:24.720000px;}
.y11c{bottom:24.840000px;}
.yfb{bottom:25.440000px;}
.y16{bottom:26.640000px;}
.yef{bottom:28.320000px;}
.y8{bottom:29.220000px;}
.yf3{bottom:34.080000px;}
.yb4{bottom:34.260000px;}
.yf4{bottom:34.440000px;}
.ybd{bottom:34.620000px;}
.yfc{bottom:34.800000px;}
.yc4{bottom:34.980000px;}
.yae{bottom:35.040000px;}
.ydb{bottom:35.100000px;}
.yc5{bottom:35.340000px;}
.yaf{bottom:35.400000px;}
.y141{bottom:35.460000px;}
.y6d{bottom:36.000000px;}
.y142{bottom:36.540000px;}
.y100{bottom:37.440000px;}
.y139{bottom:37.980000px;}
.y45{bottom:38.580000px;}
.y37{bottom:38.940000px;}
.ye{bottom:40.140000px;}
.yba{bottom:40.380000px;}
.ycc{bottom:41.100000px;}
.y4a{bottom:42.720000px;}
.y11e{bottom:42.840000px;}
.y6a{bottom:43.260000px;}
.y15c{bottom:43.860000px;}
.yea{bottom:44.160000px;}
.y15d{bottom:44.220000px;}
.yca{bottom:44.340000px;}
.y49{bottom:45.240000px;}
.y102{bottom:46.440000px;}
.y117{bottom:46.560000px;}
.yfa{bottom:46.680000px;}
.yc{bottom:46.860000px;}
.y15{bottom:47.520000px;}
.yee{bottom:49.560000px;}
.yb5{bottom:52.260000px;}
.ybf{bottom:52.620000px;}
.yd9{bottom:53.100000px;}
.y144{bottom:53.460000px;}
.yf2{bottom:55.320000px;}
.ye2{bottom:55.500000px;}
.yf8{bottom:55.680000px;}
.y44{bottom:55.860000px;}
.y11b{bottom:56.160000px;}
.yc3{bottom:56.220000px;}
.y52{bottom:56.880000px;}
.y4{bottom:57.240000px;}
.y13e{bottom:58.860000px;}
.y138{bottom:60.300000px;}
.yb9{bottom:61.620000px;}
.y53{bottom:63.000000px;}
.ycb{bottom:63.420000px;}
.y10e{bottom:63.600000px;}
.y69{bottom:64.140000px;}
.y11d{bottom:65.160000px;}
.yc9{bottom:65.580000px;}
.y109{bottom:66.120000px;}
.ye9{bottom:66.480000px;}
.y113{bottom:67.440000px;}
.y10c{bottom:67.560000px;}
.y14{bottom:68.400000px;}
.yff{bottom:68.760000px;}
.ye7{bottom:69.720000px;}
.yed{bottom:70.080000px;}
.yb3{bottom:72.780000px;}
.y51{bottom:73.080000px;}
.y43{bottom:73.140000px;}
.ybe{bottom:73.500000px;}
.y140{bottom:73.980000px;}
.y143{bottom:74.340000px;}
.yd8{bottom:75.420000px;}
.yf9{bottom:75.840000px;}
.ydf{bottom:76.020000px;}
.yf7{bottom:76.200000px;}
.y3{bottom:76.320000px;}
.ye1{bottom:76.380000px;}
.y36{bottom:77.460000px;}
.y13d{bottom:81.180000px;}
.yb8{bottom:82.140000px;}
.yb{bottom:83.220000px;}
.yf1{bottom:84.480000px;}
.y68{bottom:84.660000px;}
.yc2{bottom:85.380000px;}
.y116{bottom:85.440000px;}
.y11a{bottom:87.480000px;}
.ye8{bottom:88.800000px;}
.y13{bottom:89.280000px;}
.y10b{bottom:89.880000px;}
.yec{bottom:90.600000px;}
.y1ba{bottom:90.720000px;}
.ye6{bottom:90.960000px;}
.y15a{bottom:91.080000px;}
.y137{bottom:91.620000px;}
.y106{bottom:93.120000px;}
.yb2{bottom:94.020000px;}
.ybc{bottom:94.380000px;}
.yc8{bottom:94.740000px;}
.y13f{bottom:95.220000px;}
.y183{bottom:96.120000px;}
.ye0{bottom:96.900000px;}
.yde{bottom:97.260000px;}
.ydc{bottom:97.500000px;}
.yd7{bottom:98.100000px;}
.y35{bottom:98.340000px;}
.y198{bottom:101.520000px;}
.y108{bottom:105.000000px;}
.y10d{bottom:105.360000px;}
.y67{bottom:105.540000px;}
.y112{bottom:105.960000px;}
.y115{bottom:106.320000px;}
.y12{bottom:110.160000px;}
.yb7{bottom:111.660000px;}
.y10a{bottom:112.200000px;}
.y13c{bottom:112.860000px;}
.y1b9{bottom:113.040000px;}
.yab{bottom:114.120000px;}
.y105{bottom:114.360000px;}
.y4d{bottom:115.560000px;}
.y119{bottom:118.800000px;}
.y34{bottom:119.220000px;}
.y19d{bottom:119.520000px;}
.ya{bottom:119.940000px;}
.ye5{bottom:120.120000px;}
.yd6{bottom:120.420000px;}
.yd4{bottom:124.740000px;}
.y107{bottom:125.880000px;}
.y66{bottom:126.060000px;}
.ydd{bottom:126.420000px;}
.y114{bottom:126.840000px;}
.y182{bottom:127.080000px;}
.y111{bottom:127.200000px;}
.yd1{bottom:127.980000px;}
.y48{bottom:129.000000px;}
.y11{bottom:131.400000px;}
.y9b{bottom:132.480000px;}
.y33{bottom:139.740000px;}
.y159{bottom:140.040000px;}
.yd5{bottom:142.740000px;}
.y7{bottom:143.340000px;}
.y104{bottom:143.520000px;}
.y65{bottom:146.940000px;}
.y135{bottom:147.240000px;}
.y19c{bottom:150.480000px;}
.y1b8{bottom:151.920000px;}
.yaa{bottom:154.440000px;}
.y181{bottom:158.400000px;}
.y32{bottom:160.620000px;}
.y7d{bottom:162.360000px;}
.y9a{bottom:163.440000px;}
.yd3{bottom:165.060000px;}
.yd0{bottom:166.500000px;}
.y64{bottom:167.460000px;}
.y158{bottom:171.360000px;}
.y1b7{bottom:172.800000px;}
.y134{bottom:178.200000px;}
.y31{bottom:181.140000px;}
.y197{bottom:181.440000px;}
.ya9{bottom:185.400000px;}
.yd2{bottom:187.380000px;}
.y17{bottom:187.500000px;}
.ycf{bottom:187.740000px;}
.y63{bottom:188.340000px;}
.y118{bottom:189.000000px;}
.y180{bottom:189.360000px;}
.y7c{bottom:193.680000px;}
.y30{bottom:202.020000px;}
.y157{bottom:202.320000px;}
.y62{bottom:208.860000px;}
.y133{bottom:209.520000px;}
.y99{bottom:212.760000px;}
.ya8{bottom:222.120000px;}
.y2f{bottom:222.540000px;}
.y7b{bottom:224.640000px;}
.y61{bottom:229.740000px;}
.y156{bottom:233.280000px;}
.y1b6{bottom:235.080000px;}
.y17f{bottom:238.320000px;}
.y132{bottom:240.480000px;}
.y2e{bottom:243.420000px;}
.y98{bottom:243.720000px;}
.y60{bottom:250.260000px;}
.y7a{bottom:255.600000px;}
.yce{bottom:256.500000px;}
.y2d{bottom:263.940000px;}
.y155{bottom:264.240000px;}
.y17e{bottom:269.280000px;}
.y5f{bottom:271.140000px;}
.y131{bottom:271.440000px;}
.y38{bottom:274.500000px;}
.y97{bottom:274.680000px;}
.y1b5{bottom:275.400000px;}
.y2c{bottom:284.820000px;}
.y79{bottom:286.560000px;}
.y5e{bottom:291.660000px;}
.y1b4{bottom:297.720000px;}
.y17d{bottom:300.240000px;}
.y2b{bottom:305.340000px;}
.y196{bottom:305.640000px;}
.y5d{bottom:312.540000px;}
.y154{bottom:313.560000px;}
.y78{bottom:317.880000px;}
.y130{bottom:320.400000px;}
.y96{bottom:323.640000px;}
.y2a{bottom:326.220000px;}
.y17c{bottom:331.560000px;}
.y5c{bottom:333.060000px;}
.y195{bottom:336.960000px;}
.y1b3{bottom:338.040000px;}
.y110{bottom:339.000000px;}
.y42{bottom:339.660000px;}
.y153{bottom:344.520000px;}
.y95{bottom:344.880000px;}
.y29{bottom:346.740000px;}
.y77{bottom:348.840000px;}
.y12f{bottom:351.720000px;}
.y5b{bottom:353.940000px;}
.y41{bottom:356.940000px;}
.y1b2{bottom:360.360000px;}
.y28{bottom:367.620000px;}
.y40{bottom:373.860000px;}
.y5a{bottom:374.460000px;}
.y152{bottom:375.480000px;}
.y17b{bottom:380.520000px;}
.y12e{bottom:382.680000px;}
.y194{bottom:385.920000px;}
.y27{bottom:388.140000px;}
.y3f{bottom:391.140000px;}
.y94{bottom:393.480000px;}
.y59{bottom:395.340000px;}
.y76{bottom:397.800000px;}
.y1b1{bottom:400.680000px;}
.y151{bottom:406.440000px;}
.y19b{bottom:406.800000px;}
.y3e{bottom:408.420000px;}
.y26{bottom:409.020000px;}
.y17a{bottom:411.480000px;}
.y12d{bottom:413.640000px;}
.y58{bottom:415.860000px;}
.y193{bottom:416.880000px;}
.y1b0{bottom:423.000000px;}
.y93{bottom:424.440000px;}
.y3d{bottom:425.700000px;}
.y75{bottom:428.760000px;}
.y25{bottom:429.540000px;}
.y57{bottom:436.740000px;}
.y150{bottom:437.760000px;}
.y179{bottom:442.440000px;}
.y3c{bottom:442.980000px;}
.y192{bottom:447.840000px;}
.y24{bottom:450.420000px;}
.y92{bottom:455.760000px;}
.y56{bottom:457.260000px;}
.y74{bottom:460.080000px;}
.y3b{bottom:460.260000px;}
.y12c{bottom:462.600000px;}
.y1af{bottom:463.680000px;}
.y23{bottom:470.940000px;}
.y178{bottom:473.760000px;}
.y3a{bottom:477.540000px;}
.y191{bottom:478.800000px;}
.y1ae{bottom:486.000000px;}
.y14f{bottom:486.720000px;}
.y73{bottom:491.040000px;}
.y22{bottom:491.820000px;}
.yc7{bottom:493.500000px;}
.y12b{bottom:493.920000px;}
.y39{bottom:494.820000px;}
.y91{bottom:504.720000px;}
.y190{bottom:510.120000px;}
.y21{bottom:512.340000px;}
.y103{bottom:516.000000px;}
.y14e{bottom:517.680000px;}
.y72{bottom:522.000000px;}
.y177{bottom:522.720000px;}
.y12a{bottom:524.880000px;}
.y1ad{bottom:526.320000px;}
.y20{bottom:533.220000px;}
.y90{bottom:535.680000px;}
.y14d{bottom:548.640000px;}
.y71{bottom:552.960000px;}
.y176{bottom:553.680000px;}
.y1f{bottom:553.740000px;}
.y129{bottom:555.840000px;}
.y18f{bottom:559.080000px;}
.y8f{bottom:566.640000px;}
.y70{bottom:574.200000px;}
.y1e{bottom:574.620000px;}
.y14c{bottom:579.600000px;}
.y175{bottom:584.640000px;}
.y1ac{bottom:588.960000px;}
.y18e{bottom:590.040000px;}
.y1d{bottom:595.140000px;}
.y8e{bottom:597.600000px;}
.y128{bottom:604.800000px;}
.y6f{bottom:605.160000px;}
.y19a{bottom:610.920000px;}
.y1ab{bottom:611.280000px;}
.y174{bottom:615.960000px;}
.yc1{bottom:619.500000px;}
.y6c{bottom:621.000000px;}
.y14b{bottom:628.920000px;}
.y1c{bottom:634.020000px;}
.y127{bottom:635.760000px;}
.y199{bottom:641.880000px;}
.y8d{bottom:646.920000px;}
.y1aa{bottom:651.600000px;}
.y18d{bottom:652.320000px;}
.y1b{bottom:654.540000px;}
.y14a{bottom:659.880000px;}
.y126{bottom:667.080000px;}
.ya7{bottom:672.840000px;}
.y55{bottom:673.500000px;}
.y1a9{bottom:673.920000px;}
.y1a{bottom:675.420000px;}
.y8c{bottom:677.880000px;}
.y18c{bottom:683.280000px;}
.yfe{bottom:684.000000px;}
.y173{bottom:687.240000px;}
.y149{bottom:690.840000px;}
.y1a8{bottom:696.240000px;}
.y125{bottom:698.040000px;}
.y19{bottom:698.820000px;}
.y8b{bottom:708.840000px;}
.ya6{bottom:721.800000px;}
.y18{bottom:725.460000px;}
.y172{bottom:726.840000px;}
.y124{bottom:729.000000px;}
.y18b{bottom:732.240000px;}
.ybb{bottom:736.500000px;}
.y1a7{bottom:736.560000px;}
.y8a{bottom:739.800000px;}
.ya5{bottom:753.120000px;}
.y171{bottom:754.200000px;}
.y1a6{bottom:758.880000px;}
.y18a{bottom:763.200000px;}
.y89{bottom:771.120000px;}
.yf6{bottom:777.000000px;}
.y123{bottom:777.960000px;}
.y170{bottom:781.920000px;}
.y10{bottom:783.000000px;}
.ya4{bottom:784.080000px;}
.y189{bottom:794.520000px;}
.y122{bottom:799.200000px;}
.y88{bottom:802.080000px;}
.y16f{bottom:809.640000px;}
.ya3{bottom:815.040000px;}
.y1a5{bottom:821.520000px;}
.y16c{bottom:823.500000px;}
.y188{bottom:825.480000px;}
.y121{bottom:830.160000px;}
.y148{bottom:833.040000px;}
.ya2{bottom:846.000000px;}
.y87{bottom:851.040000px;}
.y16a{bottom:855.000000px;}
.y187{bottom:856.440000px;}
.y1a4{bottom:860.400000px;}
.y120{bottom:861.480000px;}
.y147{bottom:864.000000px;}
.ya1{bottom:877.320000px;}
.yb1{bottom:880.500000px;}
.y1a3{bottom:881.280000px;}
.y86{bottom:882.000000px;}
.yf0{bottom:885.000000px;}
.y13b{bottom:886.500000px;}
.y186{bottom:887.400000px;}
.y146{bottom:895.320000px;}
.y85{bottom:913.320000px;}
.y168{bottom:919.500000px;}
.y1a2{bottom:921.240000px;}
.ya0{bottom:926.280000px;}
.yd{bottom:931.500000px;}
.y185{bottom:936.720000px;}
.y84{bottom:944.280000px;}
.y166{bottom:951.000000px;}
.y9f{bottom:957.240000px;}
.y184{bottom:957.600000px;}
.y1a1{bottom:960.120000px;}
.y83{bottom:975.240000px;}
.y1a0{bottom:981.000000px;}
.y163{bottom:982.500000px;}
.y9e{bottom:988.200000px;}
.y6{bottom:988.500000px;}
.ye4{bottom:1002.000000px;}
.y82{bottom:1006.200000px;}
.y160{bottom:1014.000000px;}
.y9d{bottom:1019.520000px;}
.yad{bottom:1023.000000px;}
.y19f{bottom:1029.600000px;}
.y136{bottom:1030.500000px;}
.y1be{bottom:1030.680000px;}
.y81{bottom:1037.520000px;}
.y15b{bottom:1045.500000px;}
.y9c{bottom:1050.480000px;}
.y19e{bottom:1050.840000px;}
.y80{bottom:1068.480000px;}
.y1bd{bottom:1071.000000px;}
.yac{bottom:1098.720000px;}
.y7f{bottom:1099.440000px;}
.y1bc{bottom:1109.880000px;}
.y7e{bottom:1130.400000px;}
.y1bb{bottom:1130.760000px;}
.y50{bottom:1152.000000px;}
.y5{bottom:1154.520000px;}
.y4f{bottom:1173.240000px;}
.y2{bottom:1175.400000px;}
.y4e{bottom:1192.680000px;}
.y1{bottom:1194.480000px;}
.h16{height:24.000000px;}
.h2a{height:31.500000px;}
.h29{height:33.000000px;}
.h14{height:36.405703px;}
.h4{height:41.574375px;}
.h13{height:41.868281px;}
.h10{height:41.993438px;}
.h3{height:47.988281px;}
.h2{height:48.256875px;}
.he{height:48.796875px;}
.ha{height:49.992188px;}
.h15{height:50.027344px;}
.h1a{height:52.500000px;}
.h18{height:54.000000px;}
.hd{height:56.593125px;}
.h9{height:58.500000px;}
.h12{height:60.000000px;}
.h28{height:61.500000px;}
.h7{height:62.472656px;}
.h19{height:63.949219px;}
.h6{height:72.360000px;}
.h23{height:87.000000px;}
.h11{height:88.500000px;}
.h22{height:93.000000px;}
.h8{height:98.568984px;}
.h21{height:102.000000px;}
.h1c{height:103.500000px;}
.h26{height:109.500000px;}
.h1d{height:112.500000px;}
.h1b{height:129.000000px;}
.h27{height:130.500000px;}
.h25{height:136.500000px;}
.h20{height:138.000000px;}
.h1f{height:144.000000px;}
.hb{height:150.000000px;}
.h5{height:160.500000px;}
.h24{height:162.000000px;}
.h1e{height:223.500000px;}
.h17{height:474.000000px;}
.hf{height:510.000000px;}
.hc{height:745.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:28.500000px;}
.w6{width:120.000000px;}
.w9{width:129.000000px;}
.wf{width:130.500000px;}
.wb{width:144.000000px;}
.wc{width:162.000000px;}
.wa{width:177.000000px;}
.wd{width:181.500000px;}
.w3{width:247.500000px;}
.w2{width:249.000000px;}
.we{width:286.500000px;}
.w10{width:363.000000px;}
.w4{width:552.000000px;}
.w7{width:666.000000px;}
.w8{width:786.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x14{left:7.859964px;}
.xc{left:9.480108px;}
.x2d{left:12.907848px;}
.x2a{left:18.042960px;}
.x1b{left:20.020392px;}
.x11{left:21.688464px;}
.x24{left:23.035080px;}
.x2b{left:24.538080px;}
.x30{left:25.911120px;}
.x29{left:29.038080px;}
.x28{left:33.278520px;}
.xd{left:37.737660px;}
.x25{left:39.782640px;}
.x3{left:42.000000px;}
.x23{left:43.267440px;}
.x6{left:45.805656px;}
.x27{left:47.262000px;}
.x22{left:48.307560px;}
.x21{left:51.313560px;}
.x1{left:54.000000px;}
.xa{left:58.377324px;}
.x1d{left:59.705940px;}
.x33{left:62.880480px;}
.x35{left:67.614984px;}
.x26{left:72.262560px;}
.x10{left:77.433096px;}
.x34{left:78.878160px;}
.x2f{left:80.534880px;}
.xf{left:86.072772px;}
.xe{left:89.254416px;}
.x32{left:99.356760px;}
.x31{left:101.606760px;}
.x18{left:107.174916px;}
.x9{left:114.239280px;}
.x4{left:124.379904px;}
.x12{left:165.813600px;}
.x17{left:174.000000px;}
.x13{left:175.758960px;}
.x1c{left:181.500000px;}
.x7{left:202.954080px;}
.xb{left:208.846200px;}
.x15{left:229.887804px;}
.x5{left:233.819832px;}
.x8{left:289.500000px;}
.x2c{left:339.000000px;}
.x1e{left:357.000000px;}
.x1a{left:446.474880px;}
.x2e{left:468.000000px;}
.x1f{left:499.500000px;}
.x20{left:660.000000px;}
.x2{left:685.130400px;}
.x19{left:724.574880px;}
.x16{left:811.500000px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls1a{letter-spacing:-0.505856pt;}
.ls16{letter-spacing:-0.418304pt;}
.ls6{letter-spacing:-0.403712pt;}
.ls13{letter-spacing:-0.397824pt;}
.ls19{letter-spacing:-0.384256pt;}
.ls1b{letter-spacing:-0.374528pt;}
.ls18{letter-spacing:-0.321024pt;}
.lse{letter-spacing:-0.301056pt;}
.lsf{letter-spacing:-0.284928pt;}
.ls29{letter-spacing:-0.268800pt;}
.ls27{letter-spacing:-0.231168pt;}
.lsd{letter-spacing:-0.215040pt;}
.ls9{letter-spacing:-0.214400pt;}
.ls10{letter-spacing:-0.198912pt;}
.ls1d{letter-spacing:-0.189696pt;}
.ls7{letter-spacing:-0.165376pt;}
.ls28{letter-spacing:-0.155904pt;}
.ls1c{letter-spacing:-0.150784pt;}
.ls3{letter-spacing:-0.141312pt;}
.ls12{letter-spacing:-0.139776pt;}
.ls11{letter-spacing:-0.129024pt;}
.ls5{letter-spacing:-0.111872pt;}
.ls8{letter-spacing:-0.102912pt;}
.lsc{letter-spacing:-0.012800pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.006400pt;}
.ls2{letter-spacing:0.012800pt;}
.ls23{letter-spacing:0.170240pt;}
.ls0{letter-spacing:0.213760pt;}
.ls20{letter-spacing:0.228096pt;}
.ls1f{letter-spacing:0.244992pt;}
.ls14{letter-spacing:0.253440pt;}
.lsa{letter-spacing:0.254976pt;}
.ls15{letter-spacing:0.257664pt;}
.ls1e{letter-spacing:0.261888pt;}
.ls25{letter-spacing:0.317440pt;}
.lsb{letter-spacing:0.318720pt;}
.ls26{letter-spacing:0.423680pt;}
.ls22{letter-spacing:0.490240pt;}
.ls24{letter-spacing:0.541440pt;}
.ls1{letter-spacing:65.280000pt;}
.ls21{letter-spacing:174.335488pt;}
.ws5{word-spacing:-24.265216pt;}
.ws4{word-spacing:-23.841280pt;}
.ws0{word-spacing:-16.368640pt;}
.ws1{word-spacing:-16.256768pt;}
.ws14{word-spacing:-16.012800pt;}
.ws6{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.987200pt;}
.ws13{word-spacing:-14.451200pt;}
.ws7{word-spacing:-13.440000pt;}
.ws8{word-spacing:-13.310976pt;}
.wsb{word-spacing:-13.300224pt;}
.ws9{word-spacing:-13.241088pt;}
.wsa{word-spacing:-13.224960pt;}
.ws17{word-spacing:-13.171200pt;}
.wsc{word-spacing:-13.042176pt;}
.wse{word-spacing:-12.646400pt;}
.ws3{word-spacing:-12.481024pt;}
.wsf{word-spacing:-12.325376pt;}
.ws11{word-spacing:-12.271872pt;}
.ws2{word-spacing:-12.242688pt;}
.ws10{word-spacing:-12.140544pt;}
.ws12{word-spacing:-11.244288pt;}
.ws16{word-spacing:-0.064000pt;}
.wsd{word-spacing:0.000000pt;}
._4{margin-left:-8.483840pt;}
._a{margin-left:-4.619520pt;}
._1{margin-left:-3.415040pt;}
._0{margin-left:-1.884160pt;}
._3{margin-left:-0.909824pt;}
._2{width:0.954624pt;}
._11{width:2.028800pt;}
._d{width:3.200000pt;}
._13{width:4.244224pt;}
._15{width:5.497600pt;}
._c{width:7.173248pt;}
._8{width:8.620800pt;}
._6{width:10.096768pt;}
._9{width:11.296896pt;}
._b{width:12.819200pt;}
._7{width:14.538240pt;}
._f{width:17.381504pt;}
._14{width:18.548096pt;}
._19{width:19.546624pt;}
._18{width:20.678400pt;}
._10{width:21.804800pt;}
._16{width:24.268800pt;}
._e{width:25.250688pt;}
._38{width:27.577600pt;}
._3d{width:31.987200pt;}
._2b{width:35.174400pt;}
._1f{width:36.339200pt;}
._3c{width:37.849600pt;}
._2f{width:39.923200pt;}
._1c{width:42.572800pt;}
._2e{width:44.102400pt;}
._25{width:45.836800pt;}
._26{width:46.912000pt;}
._1e{width:48.748800pt;}
._31{width:49.766400pt;}
._21{width:51.193600pt;}
._42{width:52.966400pt;}
._29{width:54.873600pt;}
._3b{width:55.948800pt;}
._2c{width:63.609600pt;}
._41{width:67.136000pt;}
._5{width:69.090560pt;}
._1d{width:70.860800pt;}
._35{width:71.948800pt;}
._3a{width:79.104000pt;}
._32{width:80.812800pt;}
._37{width:81.964800pt;}
._12{width:83.750528pt;}
._1b{width:84.851072pt;}
._20{width:95.078400pt;}
._1a{width:100.412160pt;}
._2a{width:101.482240pt;}
._2d{width:102.892800pt;}
._3f{width:118.412800pt;}
._22{width:129.030400pt;}
._27{width:143.046400pt;}
._28{width:149.248000pt;}
._34{width:152.633600pt;}
._43{width:156.799488pt;}
._36{width:159.942400pt;}
._23{width:168.070400pt;}
._17{width:172.799488pt;}
._3e{width:182.336000pt;}
._24{width:203.660800pt;}
._39{width:209.510400pt;}
._40{width:223.750400pt;}
._30{width:224.985600pt;}
._33{width:237.350400pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.fs4{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:3.413333pt;}
.y47{bottom:3.573333pt;}
.y6e{bottom:4.480000pt;}
.y54{bottom:4.800000pt;}
.y9{bottom:6.133333pt;}
.yda{bottom:11.360000pt;}
.yeb{bottom:11.413333pt;}
.y169{bottom:11.786667pt;}
.yb6{bottom:11.893333pt;}
.y167{bottom:11.946667pt;}
.yf5{bottom:12.053333pt;}
.yc0{bottom:12.213333pt;}
.y16e{bottom:12.320000pt;}
.yfd{bottom:12.373333pt;}
.y165{bottom:12.426667pt;}
.y16b{bottom:12.480000pt;}
.ye3{bottom:12.533333pt;}
.y162{bottom:12.586667pt;}
.y15f{bottom:12.746667pt;}
.yc6{bottom:12.853333pt;}
.yb0{bottom:12.906667pt;}
.y145{bottom:12.960000pt;}
.y16d{bottom:13.280000pt;}
.y164{bottom:13.386667pt;}
.y101{bottom:13.440000pt;}
.y161{bottom:13.546667pt;}
.y13a{bottom:13.920000pt;}
.ycd{bottom:16.693333pt;}
.y11f{bottom:18.240000pt;}
.y46{bottom:18.933333pt;}
.y4b{bottom:19.733333pt;}
.y6b{bottom:19.893333pt;}
.yf{bottom:20.000000pt;}
.y15e{bottom:20.746667pt;}
.y10f{bottom:21.973333pt;}
.y11c{bottom:22.080000pt;}
.yfb{bottom:22.613333pt;}
.y16{bottom:23.680000pt;}
.yef{bottom:25.173333pt;}
.y8{bottom:25.973333pt;}
.yf3{bottom:30.293333pt;}
.yb4{bottom:30.453333pt;}
.yf4{bottom:30.613333pt;}
.ybd{bottom:30.773333pt;}
.yfc{bottom:30.933333pt;}
.yc4{bottom:31.093333pt;}
.yae{bottom:31.146667pt;}
.ydb{bottom:31.200000pt;}
.yc5{bottom:31.413333pt;}
.yaf{bottom:31.466667pt;}
.y141{bottom:31.520000pt;}
.y6d{bottom:32.000000pt;}
.y142{bottom:32.480000pt;}
.y100{bottom:33.280000pt;}
.y139{bottom:33.760000pt;}
.y45{bottom:34.293333pt;}
.y37{bottom:34.613333pt;}
.ye{bottom:35.680000pt;}
.yba{bottom:35.893333pt;}
.ycc{bottom:36.533333pt;}
.y4a{bottom:37.973333pt;}
.y11e{bottom:38.080000pt;}
.y6a{bottom:38.453333pt;}
.y15c{bottom:38.986667pt;}
.yea{bottom:39.253333pt;}
.y15d{bottom:39.306667pt;}
.yca{bottom:39.413333pt;}
.y49{bottom:40.213333pt;}
.y102{bottom:41.280000pt;}
.y117{bottom:41.386667pt;}
.yfa{bottom:41.493333pt;}
.yc{bottom:41.653333pt;}
.y15{bottom:42.240000pt;}
.yee{bottom:44.053333pt;}
.yb5{bottom:46.453333pt;}
.ybf{bottom:46.773333pt;}
.yd9{bottom:47.200000pt;}
.y144{bottom:47.520000pt;}
.yf2{bottom:49.173333pt;}
.ye2{bottom:49.333333pt;}
.yf8{bottom:49.493333pt;}
.y44{bottom:49.653333pt;}
.y11b{bottom:49.920000pt;}
.yc3{bottom:49.973333pt;}
.y52{bottom:50.560000pt;}
.y4{bottom:50.880000pt;}
.y13e{bottom:52.320000pt;}
.y138{bottom:53.600000pt;}
.yb9{bottom:54.773333pt;}
.y53{bottom:56.000000pt;}
.ycb{bottom:56.373333pt;}
.y10e{bottom:56.533333pt;}
.y69{bottom:57.013333pt;}
.y11d{bottom:57.920000pt;}
.yc9{bottom:58.293333pt;}
.y109{bottom:58.773333pt;}
.ye9{bottom:59.093333pt;}
.y113{bottom:59.946667pt;}
.y10c{bottom:60.053333pt;}
.y14{bottom:60.800000pt;}
.yff{bottom:61.120000pt;}
.ye7{bottom:61.973333pt;}
.yed{bottom:62.293333pt;}
.yb3{bottom:64.693333pt;}
.y51{bottom:64.960000pt;}
.y43{bottom:65.013333pt;}
.ybe{bottom:65.333333pt;}
.y140{bottom:65.760000pt;}
.y143{bottom:66.080000pt;}
.yd8{bottom:67.040000pt;}
.yf9{bottom:67.413333pt;}
.ydf{bottom:67.573333pt;}
.yf7{bottom:67.733333pt;}
.y3{bottom:67.840000pt;}
.ye1{bottom:67.893333pt;}
.y36{bottom:68.853333pt;}
.y13d{bottom:72.160000pt;}
.yb8{bottom:73.013333pt;}
.yb{bottom:73.973333pt;}
.yf1{bottom:75.093333pt;}
.y68{bottom:75.253333pt;}
.yc2{bottom:75.893333pt;}
.y116{bottom:75.946667pt;}
.y11a{bottom:77.760000pt;}
.ye8{bottom:78.933333pt;}
.y13{bottom:79.360000pt;}
.y10b{bottom:79.893333pt;}
.yec{bottom:80.533333pt;}
.y1ba{bottom:80.640000pt;}
.ye6{bottom:80.853333pt;}
.y15a{bottom:80.960000pt;}
.y137{bottom:81.440000pt;}
.y106{bottom:82.773333pt;}
.yb2{bottom:83.573333pt;}
.ybc{bottom:83.893333pt;}
.yc8{bottom:84.213333pt;}
.y13f{bottom:84.640000pt;}
.y183{bottom:85.440000pt;}
.ye0{bottom:86.133333pt;}
.yde{bottom:86.453333pt;}
.ydc{bottom:86.666667pt;}
.yd7{bottom:87.200000pt;}
.y35{bottom:87.413333pt;}
.y198{bottom:90.240000pt;}
.y108{bottom:93.333333pt;}
.y10d{bottom:93.653333pt;}
.y67{bottom:93.813333pt;}
.y112{bottom:94.186667pt;}
.y115{bottom:94.506667pt;}
.y12{bottom:97.920000pt;}
.yb7{bottom:99.253333pt;}
.y10a{bottom:99.733333pt;}
.y13c{bottom:100.320000pt;}
.y1b9{bottom:100.480000pt;}
.yab{bottom:101.440000pt;}
.y105{bottom:101.653333pt;}
.y4d{bottom:102.720000pt;}
.y119{bottom:105.600000pt;}
.y34{bottom:105.973333pt;}
.y19d{bottom:106.240000pt;}
.ya{bottom:106.613333pt;}
.ye5{bottom:106.773333pt;}
.yd6{bottom:107.040000pt;}
.yd4{bottom:110.880000pt;}
.y107{bottom:111.893333pt;}
.y66{bottom:112.053333pt;}
.ydd{bottom:112.373333pt;}
.y114{bottom:112.746667pt;}
.y182{bottom:112.960000pt;}
.y111{bottom:113.066667pt;}
.yd1{bottom:113.760000pt;}
.y48{bottom:114.666667pt;}
.y11{bottom:116.800000pt;}
.y9b{bottom:117.760000pt;}
.y33{bottom:124.213333pt;}
.y159{bottom:124.480000pt;}
.yd5{bottom:126.880000pt;}
.y7{bottom:127.413333pt;}
.y104{bottom:127.573333pt;}
.y65{bottom:130.613333pt;}
.y135{bottom:130.880000pt;}
.y19c{bottom:133.760000pt;}
.y1b8{bottom:135.040000pt;}
.yaa{bottom:137.280000pt;}
.y181{bottom:140.800000pt;}
.y32{bottom:142.773333pt;}
.y7d{bottom:144.320000pt;}
.y9a{bottom:145.280000pt;}
.yd3{bottom:146.720000pt;}
.yd0{bottom:148.000000pt;}
.y64{bottom:148.853333pt;}
.y158{bottom:152.320000pt;}
.y1b7{bottom:153.600000pt;}
.y134{bottom:158.400000pt;}
.y31{bottom:161.013333pt;}
.y197{bottom:161.280000pt;}
.ya9{bottom:164.800000pt;}
.yd2{bottom:166.560000pt;}
.y17{bottom:166.666667pt;}
.ycf{bottom:166.880000pt;}
.y63{bottom:167.413333pt;}
.y118{bottom:168.000000pt;}
.y180{bottom:168.320000pt;}
.y7c{bottom:172.160000pt;}
.y30{bottom:179.573333pt;}
.y157{bottom:179.840000pt;}
.y62{bottom:185.653333pt;}
.y133{bottom:186.240000pt;}
.y99{bottom:189.120000pt;}
.ya8{bottom:197.440000pt;}
.y2f{bottom:197.813333pt;}
.y7b{bottom:199.680000pt;}
.y61{bottom:204.213333pt;}
.y156{bottom:207.360000pt;}
.y1b6{bottom:208.960000pt;}
.y17f{bottom:211.840000pt;}
.y132{bottom:213.760000pt;}
.y2e{bottom:216.373333pt;}
.y98{bottom:216.640000pt;}
.y60{bottom:222.453333pt;}
.y7a{bottom:227.200000pt;}
.yce{bottom:228.000000pt;}
.y2d{bottom:234.613333pt;}
.y155{bottom:234.880000pt;}
.y17e{bottom:239.360000pt;}
.y5f{bottom:241.013333pt;}
.y131{bottom:241.280000pt;}
.y38{bottom:244.000000pt;}
.y97{bottom:244.160000pt;}
.y1b5{bottom:244.800000pt;}
.y2c{bottom:253.173333pt;}
.y79{bottom:254.720000pt;}
.y5e{bottom:259.253333pt;}
.y1b4{bottom:264.640000pt;}
.y17d{bottom:266.880000pt;}
.y2b{bottom:271.413333pt;}
.y196{bottom:271.680000pt;}
.y5d{bottom:277.813333pt;}
.y154{bottom:278.720000pt;}
.y78{bottom:282.560000pt;}
.y130{bottom:284.800000pt;}
.y96{bottom:287.680000pt;}
.y2a{bottom:289.973333pt;}
.y17c{bottom:294.720000pt;}
.y5c{bottom:296.053333pt;}
.y195{bottom:299.520000pt;}
.y1b3{bottom:300.480000pt;}
.y110{bottom:301.333333pt;}
.y42{bottom:301.920000pt;}
.y153{bottom:306.240000pt;}
.y95{bottom:306.560000pt;}
.y29{bottom:308.213333pt;}
.y77{bottom:310.080000pt;}
.y12f{bottom:312.640000pt;}
.y5b{bottom:314.613333pt;}
.y41{bottom:317.280000pt;}
.y1b2{bottom:320.320000pt;}
.y28{bottom:326.773333pt;}
.y40{bottom:332.320000pt;}
.y5a{bottom:332.853333pt;}
.y152{bottom:333.760000pt;}
.y17b{bottom:338.240000pt;}
.y12e{bottom:340.160000pt;}
.y194{bottom:343.040000pt;}
.y27{bottom:345.013333pt;}
.y3f{bottom:347.680000pt;}
.y94{bottom:349.760000pt;}
.y59{bottom:351.413333pt;}
.y76{bottom:353.600000pt;}
.y1b1{bottom:356.160000pt;}
.y151{bottom:361.280000pt;}
.y19b{bottom:361.600000pt;}
.y3e{bottom:363.040000pt;}
.y26{bottom:363.573333pt;}
.y17a{bottom:365.760000pt;}
.y12d{bottom:367.680000pt;}
.y58{bottom:369.653333pt;}
.y193{bottom:370.560000pt;}
.y1b0{bottom:376.000000pt;}
.y93{bottom:377.280000pt;}
.y3d{bottom:378.400000pt;}
.y75{bottom:381.120000pt;}
.y25{bottom:381.813333pt;}
.y57{bottom:388.213333pt;}
.y150{bottom:389.120000pt;}
.y179{bottom:393.280000pt;}
.y3c{bottom:393.760000pt;}
.y192{bottom:398.080000pt;}
.y24{bottom:400.373333pt;}
.y92{bottom:405.120000pt;}
.y56{bottom:406.453333pt;}
.y74{bottom:408.960000pt;}
.y3b{bottom:409.120000pt;}
.y12c{bottom:411.200000pt;}
.y1af{bottom:412.160000pt;}
.y23{bottom:418.613333pt;}
.y178{bottom:421.120000pt;}
.y3a{bottom:424.480000pt;}
.y191{bottom:425.600000pt;}
.y1ae{bottom:432.000000pt;}
.y14f{bottom:432.640000pt;}
.y73{bottom:436.480000pt;}
.y22{bottom:437.173333pt;}
.yc7{bottom:438.666667pt;}
.y12b{bottom:439.040000pt;}
.y39{bottom:439.840000pt;}
.y91{bottom:448.640000pt;}
.y190{bottom:453.440000pt;}
.y21{bottom:455.413333pt;}
.y103{bottom:458.666667pt;}
.y14e{bottom:460.160000pt;}
.y72{bottom:464.000000pt;}
.y177{bottom:464.640000pt;}
.y12a{bottom:466.560000pt;}
.y1ad{bottom:467.840000pt;}
.y20{bottom:473.973333pt;}
.y90{bottom:476.160000pt;}
.y14d{bottom:487.680000pt;}
.y71{bottom:491.520000pt;}
.y176{bottom:492.160000pt;}
.y1f{bottom:492.213333pt;}
.y129{bottom:494.080000pt;}
.y18f{bottom:496.960000pt;}
.y8f{bottom:503.680000pt;}
.y70{bottom:510.400000pt;}
.y1e{bottom:510.773333pt;}
.y14c{bottom:515.200000pt;}
.y175{bottom:519.680000pt;}
.y1ac{bottom:523.520000pt;}
.y18e{bottom:524.480000pt;}
.y1d{bottom:529.013333pt;}
.y8e{bottom:531.200000pt;}
.y128{bottom:537.600000pt;}
.y6f{bottom:537.920000pt;}
.y19a{bottom:543.040000pt;}
.y1ab{bottom:543.360000pt;}
.y174{bottom:547.520000pt;}
.yc1{bottom:550.666667pt;}
.y6c{bottom:552.000000pt;}
.y14b{bottom:559.040000pt;}
.y1c{bottom:563.573333pt;}
.y127{bottom:565.120000pt;}
.y199{bottom:570.560000pt;}
.y8d{bottom:575.040000pt;}
.y1aa{bottom:579.200000pt;}
.y18d{bottom:579.840000pt;}
.y1b{bottom:581.813333pt;}
.y14a{bottom:586.560000pt;}
.y126{bottom:592.960000pt;}
.ya7{bottom:598.080000pt;}
.y55{bottom:598.666667pt;}
.y1a9{bottom:599.040000pt;}
.y1a{bottom:600.373333pt;}
.y8c{bottom:602.560000pt;}
.y18c{bottom:607.360000pt;}
.yfe{bottom:608.000000pt;}
.y173{bottom:610.880000pt;}
.y149{bottom:614.080000pt;}
.y1a8{bottom:618.880000pt;}
.y125{bottom:620.480000pt;}
.y19{bottom:621.173333pt;}
.y8b{bottom:630.080000pt;}
.ya6{bottom:641.600000pt;}
.y18{bottom:644.853333pt;}
.y172{bottom:646.080000pt;}
.y124{bottom:648.000000pt;}
.y18b{bottom:650.880000pt;}
.ybb{bottom:654.666667pt;}
.y1a7{bottom:654.720000pt;}
.y8a{bottom:657.600000pt;}
.ya5{bottom:669.440000pt;}
.y171{bottom:670.400000pt;}
.y1a6{bottom:674.560000pt;}
.y18a{bottom:678.400000pt;}
.y89{bottom:685.440000pt;}
.yf6{bottom:690.666667pt;}
.y123{bottom:691.520000pt;}
.y170{bottom:695.040000pt;}
.y10{bottom:696.000000pt;}
.ya4{bottom:696.960000pt;}
.y189{bottom:706.240000pt;}
.y122{bottom:710.400000pt;}
.y88{bottom:712.960000pt;}
.y16f{bottom:719.680000pt;}
.ya3{bottom:724.480000pt;}
.y1a5{bottom:730.240000pt;}
.y16c{bottom:732.000000pt;}
.y188{bottom:733.760000pt;}
.y121{bottom:737.920000pt;}
.y148{bottom:740.480000pt;}
.ya2{bottom:752.000000pt;}
.y87{bottom:756.480000pt;}
.y16a{bottom:760.000000pt;}
.y187{bottom:761.280000pt;}
.y1a4{bottom:764.800000pt;}
.y120{bottom:765.760000pt;}
.y147{bottom:768.000000pt;}
.ya1{bottom:779.840000pt;}
.yb1{bottom:782.666667pt;}
.y1a3{bottom:783.360000pt;}
.y86{bottom:784.000000pt;}
.yf0{bottom:786.666667pt;}
.y13b{bottom:788.000000pt;}
.y186{bottom:788.800000pt;}
.y146{bottom:795.840000pt;}
.y85{bottom:811.840000pt;}
.y168{bottom:817.333333pt;}
.y1a2{bottom:818.880000pt;}
.ya0{bottom:823.360000pt;}
.yd{bottom:828.000000pt;}
.y185{bottom:832.640000pt;}
.y84{bottom:839.360000pt;}
.y166{bottom:845.333333pt;}
.y9f{bottom:850.880000pt;}
.y184{bottom:851.200000pt;}
.y1a1{bottom:853.440000pt;}
.y83{bottom:866.880000pt;}
.y1a0{bottom:872.000000pt;}
.y163{bottom:873.333333pt;}
.y9e{bottom:878.400000pt;}
.y6{bottom:878.666667pt;}
.ye4{bottom:890.666667pt;}
.y82{bottom:894.400000pt;}
.y160{bottom:901.333333pt;}
.y9d{bottom:906.240000pt;}
.yad{bottom:909.333333pt;}
.y19f{bottom:915.200000pt;}
.y136{bottom:916.000000pt;}
.y1be{bottom:916.160000pt;}
.y81{bottom:922.240000pt;}
.y15b{bottom:929.333333pt;}
.y9c{bottom:933.760000pt;}
.y19e{bottom:934.080000pt;}
.y80{bottom:949.760000pt;}
.y1bd{bottom:952.000000pt;}
.yac{bottom:976.640000pt;}
.y7f{bottom:977.280000pt;}
.y1bc{bottom:986.560000pt;}
.y7e{bottom:1004.800000pt;}
.y1bb{bottom:1005.120000pt;}
.y50{bottom:1024.000000pt;}
.y5{bottom:1026.240000pt;}
.y4f{bottom:1042.880000pt;}
.y2{bottom:1044.800000pt;}
.y4e{bottom:1060.160000pt;}
.y1{bottom:1061.760000pt;}
.h16{height:21.333333pt;}
.h2a{height:28.000000pt;}
.h29{height:29.333333pt;}
.h14{height:32.360625pt;}
.h4{height:36.955000pt;}
.h13{height:37.216250pt;}
.h10{height:37.327500pt;}
.h3{height:42.656250pt;}
.h2{height:42.895000pt;}
.he{height:43.375000pt;}
.ha{height:44.437500pt;}
.h15{height:44.468750pt;}
.h1a{height:46.666667pt;}
.h18{height:48.000000pt;}
.hd{height:50.305000pt;}
.h9{height:52.000000pt;}
.h12{height:53.333333pt;}
.h28{height:54.666667pt;}
.h7{height:55.531250pt;}
.h19{height:56.843750pt;}
.h6{height:64.320000pt;}
.h23{height:77.333333pt;}
.h11{height:78.666667pt;}
.h22{height:82.666667pt;}
.h8{height:87.616875pt;}
.h21{height:90.666667pt;}
.h1c{height:92.000000pt;}
.h26{height:97.333333pt;}
.h1d{height:100.000000pt;}
.h1b{height:114.666667pt;}
.h27{height:116.000000pt;}
.h25{height:121.333333pt;}
.h20{height:122.666667pt;}
.h1f{height:128.000000pt;}
.hb{height:133.333333pt;}
.h5{height:142.666667pt;}
.h24{height:144.000000pt;}
.h1e{height:198.666667pt;}
.h17{height:421.333333pt;}
.hf{height:453.333333pt;}
.hc{height:662.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:25.333333pt;}
.w6{width:106.666667pt;}
.w9{width:114.666667pt;}
.wf{width:116.000000pt;}
.wb{width:128.000000pt;}
.wc{width:144.000000pt;}
.wa{width:157.333333pt;}
.wd{width:161.333333pt;}
.w3{width:220.000000pt;}
.w2{width:221.333333pt;}
.we{width:254.666667pt;}
.w10{width:322.666667pt;}
.w4{width:490.666667pt;}
.w7{width:592.000000pt;}
.w8{width:698.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x14{left:6.986635pt;}
.xc{left:8.426763pt;}
.x2d{left:11.473643pt;}
.x2a{left:16.038187pt;}
.x1b{left:17.795904pt;}
.x11{left:19.278635pt;}
.x24{left:20.475627pt;}
.x2b{left:21.811627pt;}
.x30{left:23.032107pt;}
.x29{left:25.811627pt;}
.x28{left:29.580907pt;}
.xd{left:33.544587pt;}
.x25{left:35.362347pt;}
.x3{left:37.333333pt;}
.x23{left:38.459947pt;}
.x6{left:40.716139pt;}
.x27{left:42.010667pt;}
.x22{left:42.940053pt;}
.x21{left:45.612053pt;}
.x1{left:48.000000pt;}
.xa{left:51.890955pt;}
.x1d{left:53.071947pt;}
.x33{left:55.893760pt;}
.x35{left:60.102208pt;}
.x26{left:64.233387pt;}
.x10{left:68.829419pt;}
.x34{left:70.113920pt;}
.x2f{left:71.586560pt;}
.xf{left:76.509131pt;}
.xe{left:79.337259pt;}
.x32{left:88.317120pt;}
.x31{left:90.317120pt;}
.x18{left:95.266592pt;}
.x9{left:101.546027pt;}
.x4{left:110.559915pt;}
.x12{left:147.389867pt;}
.x17{left:154.666667pt;}
.x13{left:156.230187pt;}
.x1c{left:161.333333pt;}
.x7{left:180.403627pt;}
.xb{left:185.641067pt;}
.x15{left:204.344715pt;}
.x5{left:207.839851pt;}
.x8{left:257.333333pt;}
.x2c{left:301.333333pt;}
.x1e{left:317.333333pt;}
.x1a{left:396.866560pt;}
.x2e{left:416.000000pt;}
.x1f{left:444.000000pt;}
.x20{left:586.666667pt;}
.x2{left:609.004800pt;}
.x19{left:644.066560pt;}
.x16{left:721.333333pt;}
}




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