
    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_af64e0bc9c2a2e3a86a60f82.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_4a83852cabc114f92352a303.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919434;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_84c3175313479edb38d2035d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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_38fe86a39ab165fce843df01.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912598;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_c8652f71b8b73ea62f350628.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912598;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_76ebf55707c9ca48e3f9e927.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_fd8ad02c047f99675275dba9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3f16b5c7a6005723d8c0b2a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.110352;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_c6f3b5b86365488d696f3bba.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.110352;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_de441fc4a9ec408c0022171e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919922;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_859509226a20f6e9b2e3fdd2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.087402;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_c0ffb7e4d87ea4de53fa9b96.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919922;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_7cc21756493f77a773c086e2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.912598;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_fc93bfa40437b9b02ef52815.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.912598;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_76ebf55707c9ca48e3f9e927.woff2')format("woff");}.fff{font-family:fff;line-height:1.435059;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_6f20c9ad41ecd22d07d1daac.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_79b770e648261cc42086bffd.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.087402;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_927421f4a04fd17727b48559.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.919922;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_87a87ff926036694b897cfbf.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.037598;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_279999eeb6581a5e708aeab3.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.037598;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);}
.v0{vertical-align:0.000000px;}
.ls38{letter-spacing:-0.340800px;}
.ls41{letter-spacing:-0.297600px;}
.ls3d{letter-spacing:-0.226200px;}
.ls4e{letter-spacing:-0.208800px;}
.ls3f{letter-spacing:-0.153600px;}
.ls37{letter-spacing:-0.085200px;}
.ls4d{letter-spacing:-0.053280px;}
.ls3c{letter-spacing:-0.052560px;}
.ls3e{letter-spacing:-0.049680px;}
.ls43{letter-spacing:-0.043920px;}
.ls44{letter-spacing:-0.010800px;}
.ls3a{letter-spacing:-0.010080px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.020880px;}
.ls6{letter-spacing:0.027360px;}
.ls3b{letter-spacing:0.081600px;}
.ls39{letter-spacing:0.190800px;}
.ls1a{letter-spacing:0.206400px;}
.ls4{letter-spacing:0.209520px;}
.ls42{letter-spacing:0.211800px;}
.ls34{letter-spacing:0.319680px;}
.ls20{letter-spacing:0.350208px;}
.ls4f{letter-spacing:0.357000px;}
.ls2c{letter-spacing:0.357120px;}
.ls9{letter-spacing:0.425520px;}
.ls12{letter-spacing:0.532800px;}
.ls1{letter-spacing:0.540000px;}
.ls36{letter-spacing:0.666000px;}
.ls35{letter-spacing:0.708000px;}
.ls40{letter-spacing:0.732000px;}
.ls3{letter-spacing:0.740880px;}
.ls4c{letter-spacing:1.039680px;}
.ls13{letter-spacing:1.252800px;}
.ls21{letter-spacing:1.363968px;}
.ls33{letter-spacing:1.461600px;}
.ls14{letter-spacing:1.972800px;}
.ls11{letter-spacing:4.132800px;}
.ls10{letter-spacing:4.852800px;}
.ls15{letter-spacing:7.732800px;}
.ls16{letter-spacing:8.452800px;}
.ls22{letter-spacing:9.892800px;}
.ls23{letter-spacing:12.052800px;}
.ls25{letter-spacing:12.772800px;}
.ls24{letter-spacing:12.952800px;}
.ls49{letter-spacing:14.932800px;}
.ls4b{letter-spacing:17.092800px;}
.ls47{letter-spacing:22.852800px;}
.ls17{letter-spacing:23.572800px;}
.ls18{letter-spacing:24.292800px;}
.ls2e{letter-spacing:25.012800px;}
.ls8{letter-spacing:25.732800px;}
.ls7{letter-spacing:26.452800px;}
.ls26{letter-spacing:27.172800px;}
.ls27{letter-spacing:27.892800px;}
.ls28{letter-spacing:29.332800px;}
.ls29{letter-spacing:30.052800px;}
.ls2f{letter-spacing:34.372800px;}
.ls2a{letter-spacing:35.068800px;}
.ls2b{letter-spacing:35.092800px;}
.ls2d{letter-spacing:35.812800px;}
.ls1f{letter-spacing:37.221120px;}
.ls32{letter-spacing:37.252800px;}
.ls19{letter-spacing:43.732800px;}
.ls1c{letter-spacing:44.452800px;}
.ls1b{letter-spacing:44.632800px;}
.ls30{letter-spacing:45.892800px;}
.ls31{letter-spacing:46.612800px;}
.lsf{letter-spacing:48.772800px;}
.lsd{letter-spacing:49.492800px;}
.lse{letter-spacing:49.672800px;}
.ls4a{letter-spacing:62.452800px;}
.ls46{letter-spacing:63.892800px;}
.lsa{letter-spacing:66.772800px;}
.ls1d{letter-spacing:71.812800px;}
.ls1e{letter-spacing:72.532800px;}
.lsb{letter-spacing:74.692800px;}
.lsc{letter-spacing:75.412800px;}
.ls48{letter-spacing:81.172800px;}
.ls45{letter-spacing:98.452800px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.wsf{word-spacing:-13.879200px;}
.ws2{word-spacing:-13.174560px;}
.wsd{word-spacing:-13.160160px;}
.ws1{word-spacing:-13.147200px;}
.ws9{word-spacing:-13.094640px;}
.ws16{word-spacing:-12.938400px;}
.ws4{word-spacing:-10.612800px;}
.ws3{word-spacing:-10.527600px;}
.ws5{word-spacing:-10.272000px;}
.ws17{word-spacing:-0.416760px;}
.ws13{word-spacing:-0.271560px;}
.ws11{word-spacing:-0.266160px;}
.ws8{word-spacing:-0.141360px;}
.ws12{word-spacing:-0.059904px;}
.ws6{word-spacing:-0.059760px;}
.ws7{word-spacing:-0.049680px;}
.ws14{word-spacing:-0.015840px;}
.wsc{word-spacing:-0.010080px;}
.ws15{word-spacing:-0.006480px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.093840px;}
.wsa{word-spacing:0.166440px;}
.ws10{word-spacing:0.237840px;}
._19{margin-left:-23.583600px;}
._25{margin-left:-11.593440px;}
._5{margin-left:-9.111600px;}
._22{margin-left:-8.026560px;}
._7{margin-left:-6.991920px;}
._e{margin-left:-5.179920px;}
._a{margin-left:-3.884400px;}
._6{margin-left:-2.409120px;}
._0{margin-left:-1.126080px;}
._1{width:1.195200px;}
._4{width:3.132960px;}
._2{width:4.582800px;}
._3{width:5.885280px;}
._15{width:7.477680px;}
._b{width:8.790960px;}
._18{width:9.843600px;}
._17{width:11.314080px;}
._32{width:12.609360px;}
._28{width:14.402160px;}
._2a{width:16.015680px;}
._11{width:17.468640px;}
._c{width:18.645120px;}
._d{width:19.714080px;}
._13{width:21.384720px;}
._1f{width:22.975920px;}
._f{width:24.800400px;}
._10{width:26.593200px;}
._14{width:28.326240px;}
._2b{width:30.112800px;}
._12{width:31.613040px;}
._38{width:33.888240px;}
._1b{width:35.434800px;}
._30{width:37.189440px;}
._8{width:38.296800px;}
._9{width:40.756560px;}
._3c{width:42.327360px;}
._27{width:43.744320px;}
._1a{width:45.102960px;}
._2d{width:46.930320px;}
._2c{width:48.166560px;}
._45{width:51.447360px;}
._20{width:52.465440px;}
._2f{width:53.539440px;}
._31{width:55.489680px;}
._44{width:56.652480px;}
._24{width:57.967200px;}
._23{width:59.042880px;}
._2e{width:60.297840px;}
._36{width:62.449200px;}
._26{width:63.926640px;}
._29{width:65.853360px;}
._39{width:72.787680px;}
._16{width:74.959680px;}
._46{width:79.421040px;}
._40{width:81.871200px;}
._33{width:84.261600px;}
._37{width:93.445920px;}
._3b{width:94.600080px;}
._21{width:95.814000px;}
._42{width:97.408800px;}
._3d{width:99.083520px;}
._43{width:100.098000px;}
._3a{width:101.532240px;}
._41{width:103.677120px;}
._34{width:106.133760px;}
._35{width:107.287920px;}
._1d{width:111.612960px;}
._1c{width:112.905360px;}
._3e{width:124.121520px;}
._3f{width:125.277600px;}
._1e{width:167.645520px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs4{font-size:23.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs7{font-size:59.904000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y8{bottom:1.260000px;}
.yd{bottom:2.700000px;}
.y6{bottom:3.420000px;}
.y3{bottom:15.120000px;}
.yc{bottom:16.776000px;}
.y17{bottom:20.880000px;}
.y11{bottom:21.060000px;}
.y25{bottom:21.105000px;}
.y5{bottom:21.600000px;}
.y15{bottom:38.520000px;}
.y1e{bottom:38.550000px;}
.y10{bottom:38.700000px;}
.y24{bottom:38.745000px;}
.y4{bottom:42.300000px;}
.ye{bottom:54.180000px;}
.yb{bottom:55.620000px;}
.y2b{bottom:56.154000px;}
.y2a{bottom:73.794000px;}
.ya{bottom:83.736000px;}
.y62{bottom:97.956000px;}
.y29{bottom:98.316000px;}
.y7c{bottom:101.736000px;}
.y61{bottom:115.596000px;}
.y7b{bottom:119.376000px;}
.y60{bottom:133.236000px;}
.y7a{bottom:136.836000px;}
.y5f{bottom:150.690000px;}
.y79{bottom:154.470000px;}
.y5e{bottom:168.330000px;}
.y78{bottom:172.110000px;}
.y5d{bottom:185.970000px;}
.y28{bottom:186.330000px;}
.y77{bottom:189.750000px;}
.y5c{bottom:203.430000px;}
.y76{bottom:207.210000px;}
.y5b{bottom:221.070000px;}
.y27{bottom:221.430000px;}
.y75{bottom:224.850000px;}
.y5a{bottom:238.710000px;}
.y74{bottom:242.490000px;}
.y59{bottom:256.350000px;}
.y26{bottom:256.530000px;}
.y73{bottom:259.950000px;}
.y58{bottom:273.810000px;}
.y72{bottom:277.590000px;}
.y57{bottom:291.450000px;}
.y71{bottom:295.230000px;}
.y56{bottom:309.090000px;}
.y23{bottom:309.270000px;}
.y70{bottom:312.690000px;}
.y55{bottom:326.595000px;}
.y6f{bottom:330.375000px;}
.y54{bottom:344.235000px;}
.y6e{bottom:348.015000px;}
.y53{bottom:361.875000px;}
.y22{bottom:362.235000px;}
.y91{bottom:365.475000px;}
.y6d{bottom:365.655000px;}
.y52{bottom:379.335000px;}
.y6c{bottom:383.115000px;}
.y51{bottom:396.975000px;}
.y21{bottom:397.335000px;}
.y6b{bottom:400.755000px;}
.y50{bottom:414.615000px;}
.y6a{bottom:418.395000px;}
.y4f{bottom:432.075000px;}
.y69{bottom:435.855000px;}
.y4e{bottom:449.715000px;}
.y20{bottom:450.075000px;}
.y68{bottom:453.495000px;}
.y4d{bottom:467.355000px;}
.y67{bottom:471.135000px;}
.y4c{bottom:484.995000px;}
.y1f{bottom:485.175000px;}
.y66{bottom:488.595000px;}
.y4b{bottom:502.455000px;}
.y65{bottom:506.235000px;}
.y4a{bottom:520.095000px;}
.y64{bottom:523.875000px;}
.y90{bottom:537.735000px;}
.y1d{bottom:538.095000px;}
.y49{bottom:541.335000px;}
.y63{bottom:541.515000px;}
.y8f{bottom:555.195000px;}
.y48{bottom:558.975000px;}
.y8e{bottom:572.865000px;}
.y47{bottom:576.645000px;}
.y8d{bottom:590.505000px;}
.y1c{bottom:590.865000px;}
.y46{bottom:594.285000px;}
.y8c{bottom:607.965000px;}
.y45{bottom:611.745000px;}
.y8b{bottom:625.605000px;}
.y44{bottom:629.385000px;}
.y8a{bottom:643.245000px;}
.y1b{bottom:643.605000px;}
.y43{bottom:647.025000px;}
.y89{bottom:660.885000px;}
.y42{bottom:664.485000px;}
.y88{bottom:678.345000px;}
.y41{bottom:682.125000px;}
.y87{bottom:695.985000px;}
.y1a{bottom:696.345000px;}
.y40{bottom:699.765000px;}
.y86{bottom:713.625000px;}
.y3f{bottom:717.225000px;}
.y85{bottom:731.085000px;}
.y19{bottom:731.445000px;}
.y3e{bottom:734.865000px;}
.y84{bottom:748.725000px;}
.y3d{bottom:752.505000px;}
.y83{bottom:766.365000px;}
.y3c{bottom:770.145000px;}
.y82{bottom:783.825000px;}
.y18{bottom:784.185000px;}
.y3b{bottom:787.605000px;}
.y81{bottom:801.465000px;}
.y3a{bottom:805.245000px;}
.y80{bottom:819.150000px;}
.y16{bottom:819.510000px;}
.y39{bottom:822.930000px;}
.y7f{bottom:836.790000px;}
.y38{bottom:840.390000px;}
.y7e{bottom:854.250000px;}
.y14{bottom:854.610000px;}
.y37{bottom:858.030000px;}
.y7d{bottom:871.890000px;}
.y36{bottom:875.670000px;}
.y35{bottom:893.130000px;}
.y13{bottom:907.350000px;}
.y34{bottom:910.770000px;}
.y33{bottom:928.410000px;}
.y32{bottom:946.050000px;}
.y12{bottom:960.090000px;}
.y31{bottom:963.510000px;}
.y30{bottom:981.150000px;}
.y2f{bottom:998.790000px;}
.yf{bottom:1012.830000px;}
.y2e{bottom:1016.250000px;}
.y2d{bottom:1033.890000px;}
.y2c{bottom:1051.530000px;}
.y9{bottom:1065.930000px;}
.y7{bottom:1068.090000px;}
.y2{bottom:1076.040000px;}
.y1{bottom:1229.400000px;}
.ha{height:4.038750px;}
.h1c{height:5.006250px;}
.h10{height:5.920372px;}
.hb{height:6.840000px;}
.h8{height:7.056000px;}
.h9{height:16.659844px;}
.h1b{height:20.650781px;}
.hd{height:24.421536px;}
.hc{height:24.734531px;}
.he{height:28.116000px;}
.hf{height:33.824531px;}
.h14{height:35.100000px;}
.h15{height:35.316000px;}
.h12{height:41.902031px;}
.h1d{height:41.927344px;}
.h2{height:45.184219px;}
.h5{height:46.445625px;}
.h20{height:48.963516px;}
.h1e{height:51.939844px;}
.h1f{height:52.065000px;}
.h11{height:52.740000px;}
.h16{height:52.776000px;}
.h17{height:52.920000px;}
.h18{height:52.956000px;}
.h13{height:53.311289px;}
.h1a{height:57.571875px;}
.h4{height:57.960000px;}
.h7{height:58.902187px;}
.h6{height:59.066719px;}
.h19{height:88.020000px;}
.h3{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:50.760000px;}
.w6{width:112.176000px;}
.w4{width:112.896000px;}
.w7{width:735.810000px;}
.w5{width:736.530000px;}
.wb{width:798.660000px;}
.w9{width:849.420000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w8{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:8.094000px;}
.x2{left:34.380000px;}
.x6{left:42.479986px;}
.x1{left:78.659987px;}
.x7{left:85.140000px;}
.x3{left:87.876000px;}
.x4{left:147.276000px;}
.x8{left:469.694986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls38{letter-spacing:-0.302933pt;}
.ls41{letter-spacing:-0.264533pt;}
.ls3d{letter-spacing:-0.201067pt;}
.ls4e{letter-spacing:-0.185600pt;}
.ls3f{letter-spacing:-0.136533pt;}
.ls37{letter-spacing:-0.075733pt;}
.ls4d{letter-spacing:-0.047360pt;}
.ls3c{letter-spacing:-0.046720pt;}
.ls3e{letter-spacing:-0.044160pt;}
.ls43{letter-spacing:-0.039040pt;}
.ls44{letter-spacing:-0.009600pt;}
.ls3a{letter-spacing:-0.008960pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.018560pt;}
.ls6{letter-spacing:0.024320pt;}
.ls3b{letter-spacing:0.072533pt;}
.ls39{letter-spacing:0.169600pt;}
.ls1a{letter-spacing:0.183467pt;}
.ls4{letter-spacing:0.186240pt;}
.ls42{letter-spacing:0.188267pt;}
.ls34{letter-spacing:0.284160pt;}
.ls20{letter-spacing:0.311296pt;}
.ls4f{letter-spacing:0.317333pt;}
.ls2c{letter-spacing:0.317440pt;}
.ls9{letter-spacing:0.378240pt;}
.ls12{letter-spacing:0.473600pt;}
.ls1{letter-spacing:0.480000pt;}
.ls36{letter-spacing:0.592000pt;}
.ls35{letter-spacing:0.629333pt;}
.ls40{letter-spacing:0.650667pt;}
.ls3{letter-spacing:0.658560pt;}
.ls4c{letter-spacing:0.924160pt;}
.ls13{letter-spacing:1.113600pt;}
.ls21{letter-spacing:1.212416pt;}
.ls33{letter-spacing:1.299200pt;}
.ls14{letter-spacing:1.753600pt;}
.ls11{letter-spacing:3.673600pt;}
.ls10{letter-spacing:4.313600pt;}
.ls15{letter-spacing:6.873600pt;}
.ls16{letter-spacing:7.513600pt;}
.ls22{letter-spacing:8.793600pt;}
.ls23{letter-spacing:10.713600pt;}
.ls25{letter-spacing:11.353600pt;}
.ls24{letter-spacing:11.513600pt;}
.ls49{letter-spacing:13.273600pt;}
.ls4b{letter-spacing:15.193600pt;}
.ls47{letter-spacing:20.313600pt;}
.ls17{letter-spacing:20.953600pt;}
.ls18{letter-spacing:21.593600pt;}
.ls2e{letter-spacing:22.233600pt;}
.ls8{letter-spacing:22.873600pt;}
.ls7{letter-spacing:23.513600pt;}
.ls26{letter-spacing:24.153600pt;}
.ls27{letter-spacing:24.793600pt;}
.ls28{letter-spacing:26.073600pt;}
.ls29{letter-spacing:26.713600pt;}
.ls2f{letter-spacing:30.553600pt;}
.ls2a{letter-spacing:31.172267pt;}
.ls2b{letter-spacing:31.193600pt;}
.ls2d{letter-spacing:31.833600pt;}
.ls1f{letter-spacing:33.085440pt;}
.ls32{letter-spacing:33.113600pt;}
.ls19{letter-spacing:38.873600pt;}
.ls1c{letter-spacing:39.513600pt;}
.ls1b{letter-spacing:39.673600pt;}
.ls30{letter-spacing:40.793600pt;}
.ls31{letter-spacing:41.433600pt;}
.lsf{letter-spacing:43.353600pt;}
.lsd{letter-spacing:43.993600pt;}
.lse{letter-spacing:44.153600pt;}
.ls4a{letter-spacing:55.513600pt;}
.ls46{letter-spacing:56.793600pt;}
.lsa{letter-spacing:59.353600pt;}
.ls1d{letter-spacing:63.833600pt;}
.ls1e{letter-spacing:64.473600pt;}
.lsb{letter-spacing:66.393600pt;}
.lsc{letter-spacing:67.033600pt;}
.ls48{letter-spacing:72.153600pt;}
.ls45{letter-spacing:87.513600pt;}
.wsb{word-spacing:-53.120000pt;}
.wsf{word-spacing:-12.337067pt;}
.ws2{word-spacing:-11.710720pt;}
.wsd{word-spacing:-11.697920pt;}
.ws1{word-spacing:-11.686400pt;}
.ws9{word-spacing:-11.639680pt;}
.ws16{word-spacing:-11.500800pt;}
.ws4{word-spacing:-9.433600pt;}
.ws3{word-spacing:-9.357867pt;}
.ws5{word-spacing:-9.130667pt;}
.ws17{word-spacing:-0.370453pt;}
.ws13{word-spacing:-0.241387pt;}
.ws11{word-spacing:-0.236587pt;}
.ws8{word-spacing:-0.125653pt;}
.ws12{word-spacing:-0.053248pt;}
.ws6{word-spacing:-0.053120pt;}
.ws7{word-spacing:-0.044160pt;}
.ws14{word-spacing:-0.014080pt;}
.wsc{word-spacing:-0.008960pt;}
.ws15{word-spacing:-0.005760pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.083413pt;}
.wsa{word-spacing:0.147947pt;}
.ws10{word-spacing:0.211413pt;}
._19{margin-left:-20.963200pt;}
._25{margin-left:-10.305280pt;}
._5{margin-left:-8.099200pt;}
._22{margin-left:-7.134720pt;}
._7{margin-left:-6.215040pt;}
._e{margin-left:-4.604373pt;}
._a{margin-left:-3.452800pt;}
._6{margin-left:-2.141440pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.062400pt;}
._4{width:2.784853pt;}
._2{width:4.073600pt;}
._3{width:5.231360pt;}
._15{width:6.646827pt;}
._b{width:7.814187pt;}
._18{width:8.749867pt;}
._17{width:10.056960pt;}
._32{width:11.208320pt;}
._28{width:12.801920pt;}
._2a{width:14.236160pt;}
._11{width:15.527680pt;}
._c{width:16.573440pt;}
._d{width:17.523627pt;}
._13{width:19.008640pt;}
._1f{width:20.423040pt;}
._f{width:22.044800pt;}
._10{width:23.638400pt;}
._14{width:25.178880pt;}
._2b{width:26.766933pt;}
._12{width:28.100480pt;}
._38{width:30.122880pt;}
._1b{width:31.497600pt;}
._30{width:33.057280pt;}
._8{width:34.041600pt;}
._9{width:36.228053pt;}
._3c{width:37.624320pt;}
._27{width:38.883840pt;}
._1a{width:40.091520pt;}
._2d{width:41.715840pt;}
._2c{width:42.814720pt;}
._45{width:45.730987pt;}
._20{width:46.635947pt;}
._2f{width:47.590613pt;}
._31{width:49.324160pt;}
._44{width:50.357760pt;}
._24{width:51.526400pt;}
._23{width:52.482560pt;}
._2e{width:53.598080pt;}
._36{width:55.510400pt;}
._26{width:56.823680pt;}
._29{width:58.536320pt;}
._39{width:64.700160pt;}
._16{width:66.630827pt;}
._46{width:70.596480pt;}
._40{width:72.774400pt;}
._33{width:74.899200pt;}
._37{width:83.063040pt;}
._3b{width:84.088960pt;}
._21{width:85.168000pt;}
._42{width:86.585600pt;}
._3d{width:88.074240pt;}
._43{width:88.976000pt;}
._3a{width:90.250880pt;}
._41{width:92.157440pt;}
._34{width:94.341120pt;}
._35{width:95.367040pt;}
._1d{width:99.211520pt;}
._1c{width:100.360320pt;}
._3e{width:110.330240pt;}
._3f{width:111.357867pt;}
._1e{width:149.018240pt;}
.fs5{font-size:5.120000pt;}
.fs4{font-size:21.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs7{font-size:53.248000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:1.120000pt;}
.yd{bottom:2.400000pt;}
.y6{bottom:3.040000pt;}
.y3{bottom:13.440000pt;}
.yc{bottom:14.912000pt;}
.y17{bottom:18.560000pt;}
.y11{bottom:18.720000pt;}
.y25{bottom:18.760000pt;}
.y5{bottom:19.200000pt;}
.y15{bottom:34.240000pt;}
.y1e{bottom:34.266667pt;}
.y10{bottom:34.400000pt;}
.y24{bottom:34.440000pt;}
.y4{bottom:37.600000pt;}
.ye{bottom:48.160000pt;}
.yb{bottom:49.440000pt;}
.y2b{bottom:49.914667pt;}
.y2a{bottom:65.594667pt;}
.ya{bottom:74.432000pt;}
.y62{bottom:87.072000pt;}
.y29{bottom:87.392000pt;}
.y7c{bottom:90.432000pt;}
.y61{bottom:102.752000pt;}
.y7b{bottom:106.112000pt;}
.y60{bottom:118.432000pt;}
.y7a{bottom:121.632000pt;}
.y5f{bottom:133.946667pt;}
.y79{bottom:137.306667pt;}
.y5e{bottom:149.626667pt;}
.y78{bottom:152.986667pt;}
.y5d{bottom:165.306667pt;}
.y28{bottom:165.626667pt;}
.y77{bottom:168.666667pt;}
.y5c{bottom:180.826667pt;}
.y76{bottom:184.186667pt;}
.y5b{bottom:196.506667pt;}
.y27{bottom:196.826667pt;}
.y75{bottom:199.866667pt;}
.y5a{bottom:212.186667pt;}
.y74{bottom:215.546667pt;}
.y59{bottom:227.866667pt;}
.y26{bottom:228.026667pt;}
.y73{bottom:231.066667pt;}
.y58{bottom:243.386667pt;}
.y72{bottom:246.746667pt;}
.y57{bottom:259.066667pt;}
.y71{bottom:262.426667pt;}
.y56{bottom:274.746667pt;}
.y23{bottom:274.906667pt;}
.y70{bottom:277.946667pt;}
.y55{bottom:290.306667pt;}
.y6f{bottom:293.666667pt;}
.y54{bottom:305.986667pt;}
.y6e{bottom:309.346667pt;}
.y53{bottom:321.666667pt;}
.y22{bottom:321.986667pt;}
.y91{bottom:324.866667pt;}
.y6d{bottom:325.026667pt;}
.y52{bottom:337.186667pt;}
.y6c{bottom:340.546667pt;}
.y51{bottom:352.866667pt;}
.y21{bottom:353.186667pt;}
.y6b{bottom:356.226667pt;}
.y50{bottom:368.546667pt;}
.y6a{bottom:371.906667pt;}
.y4f{bottom:384.066667pt;}
.y69{bottom:387.426667pt;}
.y4e{bottom:399.746667pt;}
.y20{bottom:400.066667pt;}
.y68{bottom:403.106667pt;}
.y4d{bottom:415.426667pt;}
.y67{bottom:418.786667pt;}
.y4c{bottom:431.106667pt;}
.y1f{bottom:431.266667pt;}
.y66{bottom:434.306667pt;}
.y4b{bottom:446.626667pt;}
.y65{bottom:449.986667pt;}
.y4a{bottom:462.306667pt;}
.y64{bottom:465.666667pt;}
.y90{bottom:477.986667pt;}
.y1d{bottom:478.306667pt;}
.y49{bottom:481.186667pt;}
.y63{bottom:481.346667pt;}
.y8f{bottom:493.506667pt;}
.y48{bottom:496.866667pt;}
.y8e{bottom:509.213333pt;}
.y47{bottom:512.573333pt;}
.y8d{bottom:524.893333pt;}
.y1c{bottom:525.213333pt;}
.y46{bottom:528.253333pt;}
.y8c{bottom:540.413333pt;}
.y45{bottom:543.773333pt;}
.y8b{bottom:556.093333pt;}
.y44{bottom:559.453333pt;}
.y8a{bottom:571.773333pt;}
.y1b{bottom:572.093333pt;}
.y43{bottom:575.133333pt;}
.y89{bottom:587.453333pt;}
.y42{bottom:590.653333pt;}
.y88{bottom:602.973333pt;}
.y41{bottom:606.333333pt;}
.y87{bottom:618.653333pt;}
.y1a{bottom:618.973333pt;}
.y40{bottom:622.013333pt;}
.y86{bottom:634.333333pt;}
.y3f{bottom:637.533333pt;}
.y85{bottom:649.853333pt;}
.y19{bottom:650.173333pt;}
.y3e{bottom:653.213333pt;}
.y84{bottom:665.533333pt;}
.y3d{bottom:668.893333pt;}
.y83{bottom:681.213333pt;}
.y3c{bottom:684.573333pt;}
.y82{bottom:696.733333pt;}
.y18{bottom:697.053333pt;}
.y3b{bottom:700.093333pt;}
.y81{bottom:712.413333pt;}
.y3a{bottom:715.773333pt;}
.y80{bottom:728.133333pt;}
.y16{bottom:728.453333pt;}
.y39{bottom:731.493333pt;}
.y7f{bottom:743.813333pt;}
.y38{bottom:747.013333pt;}
.y7e{bottom:759.333333pt;}
.y14{bottom:759.653333pt;}
.y37{bottom:762.693333pt;}
.y7d{bottom:775.013333pt;}
.y36{bottom:778.373333pt;}
.y35{bottom:793.893333pt;}
.y13{bottom:806.533333pt;}
.y34{bottom:809.573333pt;}
.y33{bottom:825.253333pt;}
.y32{bottom:840.933333pt;}
.y12{bottom:853.413333pt;}
.y31{bottom:856.453333pt;}
.y30{bottom:872.133333pt;}
.y2f{bottom:887.813333pt;}
.yf{bottom:900.293333pt;}
.y2e{bottom:903.333333pt;}
.y2d{bottom:919.013333pt;}
.y2c{bottom:934.693333pt;}
.y9{bottom:947.493333pt;}
.y7{bottom:949.413333pt;}
.y2{bottom:956.480000pt;}
.y1{bottom:1092.800000pt;}
.ha{height:3.590000pt;}
.h1c{height:4.450000pt;}
.h10{height:5.262553pt;}
.hb{height:6.080000pt;}
.h8{height:6.272000pt;}
.h9{height:14.808750pt;}
.h1b{height:18.356250pt;}
.hd{height:21.708032pt;}
.hc{height:21.986250pt;}
.he{height:24.992000pt;}
.hf{height:30.066250pt;}
.h14{height:31.200000pt;}
.h15{height:31.392000pt;}
.h12{height:37.246250pt;}
.h1d{height:37.268750pt;}
.h2{height:40.163750pt;}
.h5{height:41.285000pt;}
.h20{height:43.523125pt;}
.h1e{height:46.168750pt;}
.h1f{height:46.280000pt;}
.h11{height:46.880000pt;}
.h16{height:46.912000pt;}
.h17{height:47.040000pt;}
.h18{height:47.072000pt;}
.h13{height:47.387813pt;}
.h1a{height:51.175000pt;}
.h4{height:51.520000pt;}
.h7{height:52.357500pt;}
.h6{height:52.503750pt;}
.h19{height:78.240000pt;}
.h3{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:45.120000pt;}
.w6{width:99.712000pt;}
.w4{width:100.352000pt;}
.w7{width:654.053333pt;}
.w5{width:654.693333pt;}
.wb{width:709.920000pt;}
.w9{width:755.040000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w8{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.194667pt;}
.x2{left:30.560000pt;}
.x6{left:37.759988pt;}
.x1{left:69.919988pt;}
.x7{left:75.680000pt;}
.x3{left:78.112000pt;}
.x4{left:130.912000pt;}
.x8{left:417.506655pt;}
}




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