
    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_3c5f1e66703dfa7eadac83ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.769531;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_54e508b321405f952a72224f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_a47549adef324b1caa3553b4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_c6ed731561542602ee50b022.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_58e10e08d039b7ad830ed97c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_1ae73e7bed9a7c1e7fc1c982.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_5325204c8c753f3aea218f36.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.142090;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_c3693946e73bc1fdc2a05e86.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_11cb192dde6e6860f9d899c0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064941;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_a8693e8ef0d005ef911d710f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065430;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;}
.m12{transform:matrix(0.234844,0.000000,-0.078273,0.237431,0,0);-ms-transform:matrix(0.234844,0.000000,-0.078273,0.237431,0,0);-webkit-transform:matrix(0.234844,0.000000,-0.078273,0.237431,0,0);}
.ma{transform:matrix(0.236221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236221,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.236365,0.000000,-0.078780,0.237263,0,0);-ms-transform:matrix(0.236365,0.000000,-0.078780,0.237263,0,0);-webkit-transform:matrix(0.236365,0.000000,-0.078780,0.237263,0,0);}
.m6{transform:matrix(0.239311,0.000000,-0.079762,0.236935,0,0);-ms-transform:matrix(0.239311,0.000000,-0.079762,0.236935,0,0);-webkit-transform:matrix(0.239311,0.000000,-0.079762,0.236935,0,0);}
.m2{transform:matrix(0.240306,0.000000,-0.080094,0.236823,0,0);-ms-transform:matrix(0.240306,0.000000,-0.080094,0.236823,0,0);-webkit-transform:matrix(0.240306,0.000000,-0.080094,0.236823,0,0);}
.m8{transform:matrix(0.242370,0.000000,-0.080782,0.236589,0,0);-ms-transform:matrix(0.242370,0.000000,-0.080782,0.236589,0,0);-webkit-transform:matrix(0.242370,0.000000,-0.080782,0.236589,0,0);}
.mc{transform:matrix(0.244150,0.000000,-0.081375,0.236386,0,0);-ms-transform:matrix(0.244150,0.000000,-0.081375,0.236386,0,0);-webkit-transform:matrix(0.244150,0.000000,-0.081375,0.236386,0,0);}
.mf{transform:matrix(0.244185,0.000000,-0.081387,0.236381,0,0);-ms-transform:matrix(0.244185,0.000000,-0.081387,0.236381,0,0);-webkit-transform:matrix(0.244185,0.000000,-0.081387,0.236381,0,0);}
.m11{transform:matrix(0.247277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247277,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249054,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252507,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253662,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.253677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253677,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254479,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.256108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256108,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.258211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258211,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.258253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258253,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.v1{vertical-align:-77.424763px;}
.v3{vertical-align:-56.563830px;}
.v6{vertical-align:-55.129500px;}
.v7{vertical-align:-44.983449px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.880000px;}
.v5{vertical-align:44.521436px;}
.v2{vertical-align:45.592877px;}
.ls24{letter-spacing:-2.160000px;}
.ls27{letter-spacing:-0.936000px;}
.ls1f{letter-spacing:-0.833563px;}
.ls1b{letter-spacing:-0.764099px;}
.ls20{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.417360px;}
.ls28{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.278433px;}
.ls8{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.070042px;}
.ls11{letter-spacing:-0.000001px;}
.ls7{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000001px;}
.ls0{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.184320px;}
.ls26{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.635040px;}
.ls16{letter-spacing:6.480000px;}
.ls15{letter-spacing:12.960000px;}
.ls2{letter-spacing:16.050795px;}
.ls1{letter-spacing:33.240000px;}
.ls17{letter-spacing:62.807800px;}
.lsb{letter-spacing:64.259014px;}
.lsd{letter-spacing:67.212294px;}
.lsc{letter-spacing:71.237369px;}
.lse{letter-spacing:74.040398px;}
.lsf{letter-spacing:91.079160px;}
.ls25{letter-spacing:95.184000px;}
.ls10{letter-spacing:115.003725px;}
.ls22{letter-spacing:119.027595px;}
.ls21{letter-spacing:130.113462px;}
.ls23{letter-spacing:168.837729px;}
.ls3{letter-spacing:182.060923px;}
.ls5{letter-spacing:196.560000px;}
.ls4{letter-spacing:203.516325px;}
.ls18{letter-spacing:363.117201px;}
.ls1e{letter-spacing:415.682593px;}
.ls1d{letter-spacing:423.543370px;}
.ls1c{letter-spacing:438.384987px;}
.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;}
}
.ws7{word-spacing:-22.105052px;}
.ws10{word-spacing:-21.226387px;}
.ws9{word-spacing:-17.805828px;}
.wsd{word-spacing:-17.041729px;}
.ws0{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.768000px;}
.ws1{word-spacing:-15.696000px;}
.ws2{word-spacing:-15.552000px;}
.wsf{word-spacing:-12.273632px;}
.ws11{word-spacing:-10.612800px;}
.ws8{word-spacing:-10.294356px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:28.267276px;}
.ws6{word-spacing:45.231523px;}
.wsa{word-spacing:50.650625px;}
.wse{word-spacing:52.057587px;}
.wsb{word-spacing:70.348090px;}
.wsc{word-spacing:74.899787px;}
._1e{margin-left:-151.593327px;}
._10{margin-left:-84.840000px;}
._6{margin-left:-2.725440px;}
._0{margin-left:-1.457280px;}
._1{width:1.236000px;}
._7{width:2.592000px;}
._8{width:3.660000px;}
._9{width:4.680000px;}
._16{width:6.048000px;}
._15{width:7.320000px;}
._2{width:8.399997px;}
._12{width:11.448000px;}
._13{width:12.576000px;}
._5{width:13.824000px;}
._4{width:16.968000px;}
._1f{width:18.096000px;}
._21{width:19.248000px;}
._c{width:26.640000px;}
._1b{width:28.128000px;}
._d{width:30.797595px;}
._3{width:33.696000px;}
._11{width:38.340014px;}
._20{width:39.456000px;}
._17{width:70.313178px;}
._f{width:72.294824px;}
._18{width:73.918086px;}
._e{width:81.910035px;}
._1a{width:88.631240px;}
._14{width:105.840000px;}
._19{width:110.753823px;}
._1d{width:129.203511px;}
._a{width:160.560000px;}
._b{width:196.740000px;}
._1c{width:205.838511px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(5,57,118);}
.fs10{font-size:40.663264px;}
.fs14{font-size:40.742878px;}
.fs12{font-size:41.177424px;}
.fs6{font-size:41.523185px;}
.fs16{font-size:41.594784px;}
.fs9{font-size:41.698622px;}
.fsb{font-size:42.125592px;}
.fsd{font-size:48.240000px;}
.fs18{font-size:49.094527px;}
.fs0{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs15{font-size:70.348090px;}
.fs11{font-size:70.454086px;}
.fse{font-size:71.223312px;}
.fs7{font-size:71.772280px;}
.fs4{font-size:71.836344px;}
.fs1{font-size:72.000000px;}
.fsa{font-size:72.294824px;}
.fsf{font-size:75.260605px;}
.fs13{font-size:75.325351px;}
.fs17{font-size:75.326647px;}
.fs8{font-size:75.625282px;}
.fs5{font-size:75.833458px;}
.fsc{font-size:76.281410px;}
.fs3{font-size:84.240000px;}
.fs19{font-size:84.905550px;}
.fs1a{font-size:89.400395px;}
.y0{bottom:0.000000px;}
.y3d{bottom:3.621078px;}
.y4c{bottom:3.621127px;}
.y61{bottom:3.987153px;}
.y52{bottom:3.987205px;}
.y44{bottom:4.028556px;}
.y25{bottom:4.035570px;}
.y70{bottom:5.312566px;}
.y31{bottom:6.803406px;}
.y1f{bottom:7.450420px;}
.y20{bottom:7.450441px;}
.y1e{bottom:7.450451px;}
.y64{bottom:8.503589px;}
.y56{bottom:8.503637px;}
.y5a{bottom:11.594353px;}
.y4a{bottom:11.594372px;}
.y4d{bottom:12.917547px;}
.y3e{bottom:17.513502px;}
.y5c{bottom:17.513564px;}
.y4f{bottom:17.513566px;}
.y5e{bottom:17.513573px;}
.y4e{bottom:17.513582px;}
.y2a{bottom:18.070759px;}
.y27{bottom:18.070766px;}
.y6f{bottom:18.720895px;}
.y6a{bottom:18.756985px;}
.y30{bottom:20.944366px;}
.y34{bottom:20.944372px;}
.y35{bottom:20.944374px;}
.y32{bottom:20.944376px;}
.y33{bottom:20.944378px;}
.y6{bottom:21.240000px;}
.y63{bottom:22.300616px;}
.y55{bottom:22.300627px;}
.y62{bottom:22.300635px;}
.y53{bottom:22.300637px;}
.y46{bottom:22.334215px;}
.y45{bottom:22.334237px;}
.y69{bottom:24.250206px;}
.y6e{bottom:24.250214px;}
.y6b{bottom:24.250225px;}
.y3c{bottom:28.759364px;}
.y5b{bottom:28.759398px;}
.y5d{bottom:28.759406px;}
.y4b{bottom:28.759417px;}
.y26{bottom:29.392028px;}
.y29{bottom:29.392032px;}
.y28{bottom:29.392038px;}
.y68{bottom:32.056659px;}
.y54{bottom:33.379036px;}
.y6d{bottom:35.887066px;}
.y24{bottom:37.426921px;}
.y6c{bottom:37.549901px;}
.y2f{bottom:40.428966px;}
.y67{bottom:50.379448px;}
.y5{bottom:54.396000px;}
.y4{bottom:75.636000px;}
.y3f{bottom:100.836000px;}
.y3a{bottom:125.136000px;}
.y3b{bottom:125.190000px;}
.y89{bottom:133.776000px;}
.y88{bottom:157.890000px;}
.y39{bottom:177.870000px;}
.y87{bottom:182.190000px;}
.y38{bottom:202.170000px;}
.y86{bottom:206.490000px;}
.y37{bottom:226.470000px;}
.y85{bottom:230.790000px;}
.y79{bottom:242.850000px;}
.y36{bottom:250.770000px;}
.y84{bottom:255.090000px;}
.y78{bottom:263.190000px;}
.y2d{bottom:274.890000px;}
.y2e{bottom:274.964980px;}
.y83{bottom:279.390000px;}
.y82{bottom:303.555000px;}
.y81{bottom:323.715000px;}
.y2c{bottom:334.695000px;}
.y2b{bottom:358.995000px;}
.y23{bottom:359.039959px;}
.y77{bottom:387.435000px;}
.y76{bottom:411.735000px;}
.y22{bottom:415.695000px;}
.y75{bottom:431.895000px;}
.y21{bottom:439.995000px;}
.y1d{bottom:440.039959px;}
.y1c{bottom:466.995000px;}
.y80{bottom:589.785000px;}
.y7f{bottom:614.085000px;}
.y74{bottom:631.185000px;}
.y7e{bottom:638.385000px;}
.y73{bottom:655.305000px;}
.y1b{bottom:656.565000px;}
.y7d{bottom:658.545000px;}
.y72{bottom:679.605000px;}
.y1a{bottom:680.865000px;}
.y71{bottom:703.905000px;}
.y19{bottom:704.985000px;}
.y66{bottom:728.189919px;}
.y65{bottom:728.205000px;}
.y18{bottom:729.285000px;}
.y17{bottom:753.585000px;}
.y16{bottom:777.885000px;}
.y5f{bottom:799.125000px;}
.y60{bottom:799.139919px;}
.y15{bottom:802.185000px;}
.y14{bottom:826.485000px;}
.y13{bottom:850.650000px;}
.y59{bottom:856.514919px;}
.y58{bottom:856.590000px;}
.y12{bottom:874.950000px;}
.y7c{bottom:893.130000px;}
.y11{bottom:899.250000px;}
.y92{bottom:903.390000px;}
.y57{bottom:909.510000px;}
.y7b{bottom:917.430000px;}
.y10{bottom:923.550000px;}
.y91{bottom:927.510000px;}
.y51{bottom:933.764919px;}
.y50{bottom:933.810000px;}
.y7a{bottom:937.590000px;}
.yf{bottom:947.850000px;}
.y90{bottom:951.810000px;}
.ye{bottom:972.150000px;}
.y8f{bottom:976.110000px;}
.y49{bottom:991.139919px;}
.y48{bottom:991.230000px;}
.yd{bottom:996.270000px;}
.y8e{bottom:1001.490000px;}
.yc{bottom:1020.570000px;}
.y8d{bottom:1028.670000px;}
.y47{bottom:1044.150000px;}
.yb{bottom:1044.870000px;}
.y8c{bottom:1052.970000px;}
.y43{bottom:1068.389919px;}
.y42{bottom:1068.450000px;}
.ya{bottom:1069.170000px;}
.y8b{bottom:1077.270000px;}
.y9{bottom:1093.470000px;}
.y8a{bottom:1101.570000px;}
.y8{bottom:1118.850000px;}
.y41{bottom:1125.690000px;}
.y7{bottom:1147.140000px;}
.y40{bottom:1150.020000px;}
.y3{bottom:1174.320000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1223.820000px;}
.h9{height:23.925620px;}
.h5{height:36.720000px;}
.h1f{height:39.908770px;}
.h27{height:39.986906px;}
.h24{height:40.393284px;}
.h23{height:40.413390px;}
.he{height:40.752736px;}
.h14{height:40.924917px;}
.h1a{height:45.750442px;}
.h22{height:45.750524px;}
.h2{height:48.138750px;}
.h30{height:48.159621px;}
.h2e{height:48.183593px;}
.hd{height:49.497858px;}
.h26{height:50.175598px;}
.h1e{height:50.251200px;}
.h13{height:52.574844px;}
.h3{height:60.960938px;}
.h2d{height:63.751345px;}
.h6{height:65.010937px;}
.h2a{height:65.161292px;}
.h21{height:65.259473px;}
.h4{height:65.884219px;}
.h1d{height:65.971983px;}
.h12{height:66.480476px;}
.hc{height:66.539817px;}
.h19{height:66.964493px;}
.h29{height:69.008453px;}
.h28{height:69.042803px;}
.h1c{height:69.711606px;}
.h25{height:69.771577px;}
.h2b{height:69.772778px;}
.h1b{height:69.901785px;}
.h11{height:70.049395px;}
.hb{height:70.242222px;}
.h10{height:70.405523px;}
.hf{height:70.440568px;}
.ha{height:70.468367px;}
.h18{height:70.657146px;}
.h17{height:70.918116px;}
.h15{height:70.953416px;}
.h7{height:71.324297px;}
.h8{height:74.004654px;}
.h32{height:78.645424px;}
.h31{height:82.808862px;}
.h2f{height:83.330154px;}
.h2c{height:113.322118px;}
.h20{height:113.633867px;}
.h16{height:116.510993px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:24.660000px;}
.w7{width:57.076941px;}
.w4{width:72.748314px;}
.wc{width:104.921997px;}
.w5{width:108.744583px;}
.w9{width:112.503726px;}
.w6{width:127.428950px;}
.wb{width:131.921878px;}
.w8{width:138.078211px;}
.wd{width:161.323157px;}
.wa{width:172.422954px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:2.127106px;}
.x1d{left:11.679288px;}
.x3c{left:13.496911px;}
.x23{left:17.707207px;}
.x12{left:19.357659px;}
.x2d{left:21.023667px;}
.x1f{left:23.645655px;}
.x3e{left:25.387096px;}
.x35{left:26.927654px;}
.x31{left:31.327836px;}
.x22{left:34.238743px;}
.x1e{left:37.408659px;}
.x26{left:39.422373px;}
.x3b{left:41.133111px;}
.x2a{left:44.218882px;}
.x11{left:57.184888px;}
.x16{left:58.920936px;}
.x29{left:64.728993px;}
.x17{left:73.776494px;}
.x1b{left:76.112249px;}
.x15{left:77.117003px;}
.x36{left:82.107305px;}
.x4{left:84.959987px;}
.x1c{left:91.277882px;}
.x34{left:93.728929px;}
.x14{left:95.987369px;}
.x1a{left:102.201231px;}
.x3d{left:103.760585px;}
.x30{left:107.384041px;}
.x3a{left:117.258659px;}
.xe{left:127.475987px;}
.x6{left:129.275987px;}
.x39{left:137.182602px;}
.x13{left:200.189987px;}
.xa{left:220.349987px;}
.x18{left:236.189987px;}
.x45{left:260.309987px;}
.x28{left:281.639980px;}
.x25{left:299.264980px;}
.x33{left:303.764980px;}
.x7{left:334.334987px;}
.x2c{left:335.414980px;}
.x19{left:350.564959px;}
.xb{left:365.654987px;}
.x21{left:369.239959px;}
.x2b{left:394.094987px;}
.x37{left:408.674987px;}
.x38{left:421.439959px;}
.x24{left:426.314987px;}
.x5{left:434.235000px;}
.x27{left:437.294987px;}
.xd{left:447.014987px;}
.xf{left:451.514987px;}
.x20{left:477.974987px;}
.x2f{left:481.589959px;}
.x40{left:506.264987px;}
.x2e{left:507.884987px;}
.x9{left:512.564987px;}
.x42{left:519.044987px;}
.x2{left:539.744987px;}
.x43{left:543.704987px;}
.x44{left:552.704987px;}
.x41{left:575.204987px;}
.x3f{left:582.764987px;}
.x3{left:584.384987px;}
.x32{left:613.544987px;}
.x8{left:662.684987px;}
.xc{left:665.384987px;}
.x1{left:681.044987px;}
@media print{
.v1{vertical-align:-68.822011pt;}
.v3{vertical-align:-50.278960pt;}
.v6{vertical-align:-49.004000pt;}
.v7{vertical-align:-39.985288pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.560000pt;}
.v5{vertical-align:39.574610pt;}
.v2{vertical-align:40.527002pt;}
.ls24{letter-spacing:-1.920000pt;}
.ls27{letter-spacing:-0.832000pt;}
.ls1f{letter-spacing:-0.740945pt;}
.ls1b{letter-spacing:-0.679199pt;}
.ls20{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.370987pt;}
.ls28{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.247496pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.062260pt;}
.ls11{letter-spacing:-0.000001pt;}
.ls7{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000001pt;}
.ls0{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.163840pt;}
.ls26{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.564480pt;}
.ls16{letter-spacing:5.760000pt;}
.ls15{letter-spacing:11.520000pt;}
.ls2{letter-spacing:14.267373pt;}
.ls1{letter-spacing:29.546667pt;}
.ls17{letter-spacing:55.829156pt;}
.lsb{letter-spacing:57.119124pt;}
.lsd{letter-spacing:59.744261pt;}
.lsc{letter-spacing:63.322106pt;}
.lse{letter-spacing:65.813687pt;}
.lsf{letter-spacing:80.959254pt;}
.ls25{letter-spacing:84.608000pt;}
.ls10{letter-spacing:102.225534pt;}
.ls22{letter-spacing:105.802307pt;}
.ls21{letter-spacing:115.656411pt;}
.ls23{letter-spacing:150.077982pt;}
.ls3{letter-spacing:161.831931pt;}
.ls5{letter-spacing:174.720000pt;}
.ls4{letter-spacing:180.903400pt;}
.ls18{letter-spacing:322.770845pt;}
.ls1e{letter-spacing:369.495638pt;}
.ls1d{letter-spacing:376.482995pt;}
.ls1c{letter-spacing:389.675544pt;}
.ws7{word-spacing:-19.648935pt;}
.ws10{word-spacing:-18.867900pt;}
.ws9{word-spacing:-15.827403pt;}
.wsd{word-spacing:-15.148203pt;}
.ws0{word-spacing:-14.080000pt;}
.ws4{word-spacing:-14.016000pt;}
.ws1{word-spacing:-13.952000pt;}
.ws2{word-spacing:-13.824000pt;}
.wsf{word-spacing:-10.909895pt;}
.ws11{word-spacing:-9.433600pt;}
.ws8{word-spacing:-9.150539pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:25.126468pt;}
.ws6{word-spacing:40.205798pt;}
.wsa{word-spacing:45.022778pt;}
.wse{word-spacing:46.273410pt;}
.wsb{word-spacing:62.531635pt;}
.wsc{word-spacing:66.577588pt;}
._1e{margin-left:-134.749624pt;}
._10{margin-left:-75.413333pt;}
._6{margin-left:-2.422613pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.098667pt;}
._7{width:2.304000pt;}
._8{width:3.253333pt;}
._9{width:4.160000pt;}
._16{width:5.376000pt;}
._15{width:6.506667pt;}
._2{width:7.466664pt;}
._12{width:10.176000pt;}
._13{width:11.178667pt;}
._5{width:12.288000pt;}
._4{width:15.082667pt;}
._1f{width:16.085333pt;}
._21{width:17.109333pt;}
._c{width:23.680000pt;}
._1b{width:25.002667pt;}
._d{width:27.375640pt;}
._3{width:29.952000pt;}
._11{width:34.080013pt;}
._20{width:35.072000pt;}
._17{width:62.500603pt;}
._f{width:64.262066pt;}
._18{width:65.704966pt;}
._e{width:72.808920pt;}
._1a{width:78.783325pt;}
._14{width:94.080000pt;}
._19{width:98.447843pt;}
._1d{width:114.847566pt;}
._a{width:142.720000pt;}
._b{width:174.880000pt;}
._1c{width:182.967565pt;}
.fs10{font-size:36.145124pt;}
.fs14{font-size:36.215891pt;}
.fs12{font-size:36.602155pt;}
.fs6{font-size:36.909498pt;}
.fs16{font-size:36.973142pt;}
.fs9{font-size:37.065441pt;}
.fsb{font-size:37.444971pt;}
.fsd{font-size:42.880000pt;}
.fs18{font-size:43.639579pt;}
.fs0{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs15{font-size:62.531635pt;}
.fs11{font-size:62.625854pt;}
.fse{font-size:63.309610pt;}
.fs7{font-size:63.797582pt;}
.fs4{font-size:63.854528pt;}
.fs1{font-size:64.000000pt;}
.fsa{font-size:64.262066pt;}
.fsf{font-size:66.898316pt;}
.fs13{font-size:66.955867pt;}
.fs17{font-size:66.957020pt;}
.fs8{font-size:67.222473pt;}
.fs5{font-size:67.407519pt;}
.fsc{font-size:67.805698pt;}
.fs3{font-size:74.880000pt;}
.fs19{font-size:75.471600pt;}
.fs1a{font-size:79.467018pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:3.218736pt;}
.y4c{bottom:3.218780pt;}
.y61{bottom:3.544136pt;}
.y52{bottom:3.544182pt;}
.y44{bottom:3.580939pt;}
.y25{bottom:3.587173pt;}
.y70{bottom:4.722281pt;}
.y31{bottom:6.047472pt;}
.y1f{bottom:6.622595pt;}
.y20{bottom:6.622614pt;}
.y1e{bottom:6.622623pt;}
.y64{bottom:7.558746pt;}
.y56{bottom:7.558789pt;}
.y5a{bottom:10.306091pt;}
.y4a{bottom:10.306109pt;}
.y4d{bottom:11.482264pt;}
.y3e{bottom:15.567557pt;}
.y5c{bottom:15.567613pt;}
.y4f{bottom:15.567614pt;}
.y5e{bottom:15.567620pt;}
.y4e{bottom:15.567628pt;}
.y2a{bottom:16.062897pt;}
.y27{bottom:16.062903pt;}
.y6f{bottom:16.640796pt;}
.y6a{bottom:16.672876pt;}
.y30{bottom:18.617214pt;}
.y34{bottom:18.617220pt;}
.y35{bottom:18.617221pt;}
.y32{bottom:18.617223pt;}
.y33{bottom:18.617224pt;}
.y6{bottom:18.880000pt;}
.y63{bottom:19.822770pt;}
.y55{bottom:19.822780pt;}
.y62{bottom:19.822787pt;}
.y53{bottom:19.822788pt;}
.y46{bottom:19.852636pt;}
.y45{bottom:19.852655pt;}
.y69{bottom:21.555738pt;}
.y6e{bottom:21.555745pt;}
.y6b{bottom:21.555756pt;}
.y3c{bottom:25.563879pt;}
.y5b{bottom:25.563910pt;}
.y5d{bottom:25.563916pt;}
.y4b{bottom:25.563926pt;}
.y26{bottom:26.126247pt;}
.y29{bottom:26.126251pt;}
.y28{bottom:26.126256pt;}
.y68{bottom:28.494808pt;}
.y54{bottom:29.670254pt;}
.y6d{bottom:31.899614pt;}
.y24{bottom:33.268375pt;}
.y6c{bottom:33.377689pt;}
.y2f{bottom:35.936858pt;}
.y67{bottom:44.781732pt;}
.y5{bottom:48.352000pt;}
.y4{bottom:67.232000pt;}
.y3f{bottom:89.632000pt;}
.y3a{bottom:111.232000pt;}
.y3b{bottom:111.280000pt;}
.y89{bottom:118.912000pt;}
.y88{bottom:140.346667pt;}
.y39{bottom:158.106667pt;}
.y87{bottom:161.946667pt;}
.y38{bottom:179.706667pt;}
.y86{bottom:183.546667pt;}
.y37{bottom:201.306667pt;}
.y85{bottom:205.146667pt;}
.y79{bottom:215.866667pt;}
.y36{bottom:222.906667pt;}
.y84{bottom:226.746667pt;}
.y78{bottom:233.946667pt;}
.y2d{bottom:244.346667pt;}
.y2e{bottom:244.413315pt;}
.y83{bottom:248.346667pt;}
.y82{bottom:269.826667pt;}
.y81{bottom:287.746667pt;}
.y2c{bottom:297.506667pt;}
.y2b{bottom:319.106667pt;}
.y23{bottom:319.146630pt;}
.y77{bottom:344.386667pt;}
.y76{bottom:365.986667pt;}
.y22{bottom:369.506667pt;}
.y75{bottom:383.906667pt;}
.y21{bottom:391.106667pt;}
.y1d{bottom:391.146630pt;}
.y1c{bottom:415.106667pt;}
.y80{bottom:524.253333pt;}
.y7f{bottom:545.853333pt;}
.y74{bottom:561.053333pt;}
.y7e{bottom:567.453333pt;}
.y73{bottom:582.493333pt;}
.y1b{bottom:583.613333pt;}
.y7d{bottom:585.373333pt;}
.y72{bottom:604.093333pt;}
.y1a{bottom:605.213333pt;}
.y71{bottom:625.693333pt;}
.y19{bottom:626.653333pt;}
.y66{bottom:647.279928pt;}
.y65{bottom:647.293333pt;}
.y18{bottom:648.253333pt;}
.y17{bottom:669.853333pt;}
.y16{bottom:691.453333pt;}
.y5f{bottom:710.333333pt;}
.y60{bottom:710.346594pt;}
.y15{bottom:713.053333pt;}
.y14{bottom:734.653333pt;}
.y13{bottom:756.133333pt;}
.y59{bottom:761.346594pt;}
.y58{bottom:761.413333pt;}
.y12{bottom:777.733333pt;}
.y7c{bottom:793.893333pt;}
.y11{bottom:799.333333pt;}
.y92{bottom:803.013333pt;}
.y57{bottom:808.453333pt;}
.y7b{bottom:815.493333pt;}
.y10{bottom:820.933333pt;}
.y91{bottom:824.453333pt;}
.y51{bottom:830.013261pt;}
.y50{bottom:830.053333pt;}
.y7a{bottom:833.413333pt;}
.yf{bottom:842.533333pt;}
.y90{bottom:846.053333pt;}
.ye{bottom:864.133333pt;}
.y8f{bottom:867.653333pt;}
.y49{bottom:881.013261pt;}
.y48{bottom:881.093333pt;}
.yd{bottom:885.573333pt;}
.y8e{bottom:890.213333pt;}
.yc{bottom:907.173333pt;}
.y8d{bottom:914.373333pt;}
.y47{bottom:928.133333pt;}
.yb{bottom:928.773333pt;}
.y8c{bottom:935.973333pt;}
.y43{bottom:949.679928pt;}
.y42{bottom:949.733333pt;}
.ya{bottom:950.373333pt;}
.y8b{bottom:957.573333pt;}
.y9{bottom:971.973333pt;}
.y8a{bottom:979.173333pt;}
.y8{bottom:994.533333pt;}
.y41{bottom:1000.613333pt;}
.y7{bottom:1019.680000pt;}
.y40{bottom:1022.240000pt;}
.y3{bottom:1043.840000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1087.840000pt;}
.h9{height:21.267218pt;}
.h5{height:32.640000pt;}
.h1f{height:35.474462pt;}
.h27{height:35.543917pt;}
.h24{height:35.905141pt;}
.h23{height:35.923013pt;}
.he{height:36.224654pt;}
.h14{height:36.377704pt;}
.h1a{height:40.667060pt;}
.h22{height:40.667132pt;}
.h2{height:42.790000pt;}
.h30{height:42.808552pt;}
.h2e{height:42.829861pt;}
.hd{height:43.998096pt;}
.h26{height:44.600532pt;}
.h1e{height:44.667733pt;}
.h13{height:46.733195pt;}
.h3{height:54.187500pt;}
.h2d{height:56.667863pt;}
.h6{height:57.787500pt;}
.h2a{height:57.921149pt;}
.h21{height:58.008421pt;}
.h4{height:58.563750pt;}
.h1d{height:58.641763pt;}
.h12{height:59.093757pt;}
.hc{height:59.146504pt;}
.h19{height:59.523993pt;}
.h29{height:61.340847pt;}
.h28{height:61.371381pt;}
.h1c{height:61.965872pt;}
.h25{height:62.019180pt;}
.h2b{height:62.020248pt;}
.h1b{height:62.134920pt;}
.h11{height:62.266129pt;}
.hb{height:62.437531pt;}
.h10{height:62.582687pt;}
.hf{height:62.613838pt;}
.ha{height:62.638548pt;}
.h18{height:62.806352pt;}
.h17{height:63.038325pt;}
.h15{height:63.069703pt;}
.h7{height:63.399375pt;}
.h8{height:65.781915pt;}
.h32{height:69.907044pt;}
.h31{height:73.607877pt;}
.h2f{height:74.071248pt;}
.h2c{height:100.730772pt;}
.h20{height:101.007882pt;}
.h16{height:103.565327pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:21.920000pt;}
.w7{width:50.735059pt;}
.w4{width:64.665168pt;}
.wc{width:93.263998pt;}
.w5{width:96.661852pt;}
.w9{width:100.003312pt;}
.w6{width:113.270178pt;}
.wb{width:117.263892pt;}
.w8{width:122.736187pt;}
.wd{width:143.398362pt;}
.wa{width:153.264848pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:1.890761pt;}
.x1d{left:10.381590pt;}
.x3c{left:11.997254pt;}
.x23{left:15.739739pt;}
.x12{left:17.206808pt;}
.x2d{left:18.687704pt;}
.x1f{left:21.018360pt;}
.x3e{left:22.566307pt;}
.x35{left:23.935693pt;}
.x31{left:27.846966pt;}
.x22{left:30.434438pt;}
.x1e{left:33.252142pt;}
.x26{left:35.042110pt;}
.x3b{left:36.562766pt;}
.x2a{left:39.305673pt;}
.x11{left:50.831012pt;}
.x16{left:52.374166pt;}
.x29{left:57.536883pt;}
.x17{left:65.579106pt;}
.x1b{left:67.655332pt;}
.x15{left:68.548447pt;}
.x36{left:72.984271pt;}
.x4{left:75.519988pt;}
.x1c{left:81.135895pt;}
.x34{left:83.314604pt;}
.x14{left:85.322106pt;}
.x1a{left:90.845539pt;}
.x3d{left:92.231631pt;}
.x30{left:95.452481pt;}
.x3a{left:104.229919pt;}
.xe{left:113.311988pt;}
.x6{left:114.911988pt;}
.x39{left:121.940091pt;}
.x13{left:177.946655pt;}
.xa{left:195.866655pt;}
.x18{left:209.946655pt;}
.x45{left:231.386655pt;}
.x28{left:250.346649pt;}
.x25{left:266.013315pt;}
.x33{left:270.013315pt;}
.x7{left:297.186655pt;}
.x2c{left:298.146649pt;}
.x19{left:311.613297pt;}
.xb{left:325.026655pt;}
.x21{left:328.213297pt;}
.x2b{left:350.306655pt;}
.x37{left:363.266655pt;}
.x38{left:374.613297pt;}
.x24{left:378.946655pt;}
.x5{left:385.986667pt;}
.x27{left:388.706655pt;}
.xd{left:397.346655pt;}
.xf{left:401.346655pt;}
.x20{left:424.866655pt;}
.x2f{left:428.079964pt;}
.x40{left:450.013322pt;}
.x2e{left:451.453322pt;}
.x9{left:455.613322pt;}
.x42{left:461.373322pt;}
.x2{left:479.773322pt;}
.x43{left:483.293322pt;}
.x44{left:491.293322pt;}
.x41{left:511.293322pt;}
.x3f{left:518.013322pt;}
.x3{left:519.453322pt;}
.x32{left:545.373322pt;}
.x8{left:589.053322pt;}
.xc{left:591.453322pt;}
.x1{left:605.373322pt;}
}




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