
    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_17829cb673d1d00c28054617.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_806bb72d2b247ccb3e1dad3a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.689453;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_d7b6d4beccf41bfd6f16aaa5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fc8d1ee6226472462dc1e38e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_ae17705faf7d500c8553c242.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.858398;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_aad14e0e87e51eca87c65eb6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4c498b83a9c3cebeeb166540.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_52effee6b2bfcb3c72c4c8f6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.171387;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_51fb5991f69479790dcc1db5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.724121;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_4303fb9f0825eb0953440673.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.724121;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_80d64c4bb7942e8ff5aa194f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bebd43df27470a69c61a1c5d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.765137;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_93905d22c3abe6e8231af2ce.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cdb5497e3c589a73fed8a4d2.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c72e6a079626cc585be73206.woff2')format("woff");}.fff{font-family:fff;line-height:0.861816;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_09ebfb231f000f654006d4c1.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls7{letter-spacing:-3.556800px;}
.ls3b{letter-spacing:-3.196800px;}
.ls2e{letter-spacing:-3.154896px;}
.ls32{letter-spacing:-2.209392px;}
.lsd{letter-spacing:-1.911600px;}
.ls36{letter-spacing:-1.514736px;}
.ls30{letter-spacing:-1.505088px;}
.ls35{letter-spacing:-1.485792px;}
.ls34{letter-spacing:-1.437552px;}
.ls2c{letter-spacing:-1.321776px;}
.ls37{letter-spacing:-1.242000px;}
.ls29{letter-spacing:-1.220400px;}
.ls2b{letter-spacing:-1.198800px;}
.ls2a{letter-spacing:-1.177200px;}
.ls1d{letter-spacing:-0.678528px;}
.ls22{letter-spacing:-0.547200px;}
.ls24{letter-spacing:-0.541728px;}
.ls1c{letter-spacing:-0.525312px;}
.ls1a{letter-spacing:-0.454176px;}
.ls23{letter-spacing:-0.432288px;}
.ls1f{letter-spacing:-0.421344px;}
.ls21{letter-spacing:-0.410400px;}
.ls20{letter-spacing:-0.350208px;}
.ls38{letter-spacing:-0.254016px;}
.ls1b{letter-spacing:-0.251712px;}
.lsf{letter-spacing:-0.225216px;}
.ls2d{letter-spacing:-0.218592px;}
.ls33{letter-spacing:-0.212256px;}
.ls14{letter-spacing:-0.205344px;}
.ls1e{letter-spacing:-0.196992px;}
.ls25{letter-spacing:-0.186048px;}
.ls39{letter-spacing:-0.185472px;}
.ls31{letter-spacing:-0.172224px;}
.ls28{letter-spacing:-0.165600px;}
.ls3a{letter-spacing:-0.158976px;}
.ls15{letter-spacing:-0.152352px;}
.ls19{letter-spacing:-0.145728px;}
.ls12{letter-spacing:-0.139104px;}
.lse{letter-spacing:-0.132480px;}
.ls10{letter-spacing:-0.125856px;}
.ls3c{letter-spacing:-0.119232px;}
.ls2f{letter-spacing:-0.112608px;}
.ls13{letter-spacing:-0.105984px;}
.ls11{letter-spacing:-0.086112px;}
.ls26{letter-spacing:-0.079488px;}
.ls17{letter-spacing:-0.072864px;}
.ls27{letter-spacing:-0.066240px;}
.ls18{letter-spacing:-0.059616px;}
.ls3d{letter-spacing:-0.052992px;}
.ls16{letter-spacing:-0.046368px;}
.ls6{letter-spacing:-0.043200px;}
.ls8{letter-spacing:-0.036000px;}
.lsa{letter-spacing:-0.028800px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.005760px;}
.ls4{letter-spacing:0.007200px;}
.ls0{letter-spacing:0.014400px;}
.ls2{letter-spacing:0.021600px;}
.ls9{letter-spacing:0.028800px;}
.ls1{letter-spacing:0.036000px;}
.lsb{letter-spacing:1.250784px;}
.lsc{letter-spacing:1.346400px;}
.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;}
}
.ws1{word-spacing:-24.364800px;}
.ws29{word-spacing:-21.804480px;}
.ws2a{word-spacing:-20.366928px;}
.ws28{word-spacing:-19.595088px;}
.ws7{word-spacing:-17.222400px;}
.ws26{word-spacing:-17.176032px;}
.ws1c{word-spacing:-17.156160px;}
.ws1e{word-spacing:-17.142912px;}
.ws1d{word-spacing:-17.136288px;}
.ws8{word-spacing:-17.116416px;}
.ws2d{word-spacing:-17.109792px;}
.ws17{word-spacing:-17.096544px;}
.ws20{word-spacing:-17.083296px;}
.wsb{word-spacing:-17.076672px;}
.ws2e{word-spacing:-17.070048px;}
.ws31{word-spacing:-17.063424px;}
.ws25{word-spacing:-17.056800px;}
.ws35{word-spacing:-17.050176px;}
.ws33{word-spacing:-17.017056px;}
.ws23{word-spacing:-16.997184px;}
.ws3{word-spacing:-16.286400px;}
.ws2{word-spacing:-16.243200px;}
.wse{word-spacing:-14.227200px;}
.wsf{word-spacing:-13.975488px;}
.ws14{word-spacing:-13.816800px;}
.ws12{word-spacing:-13.805856px;}
.wsd{word-spacing:-13.773024px;}
.ws10{word-spacing:-13.548672px;}
.ws0{word-spacing:-0.108000px;}
.ws5{word-spacing:-0.060480px;}
.wsc{word-spacing:-0.036000px;}
.wsa{word-spacing:-0.019872px;}
.ws4{word-spacing:0.000000px;}
.ws16{word-spacing:0.013248px;}
.ws22{word-spacing:0.019872px;}
.ws2f{word-spacing:0.039744px;}
.ws9{word-spacing:0.059616px;}
.ws1f{word-spacing:0.072864px;}
.ws32{word-spacing:0.079488px;}
.ws34{word-spacing:0.092736px;}
.ws18{word-spacing:0.099360px;}
.ws24{word-spacing:0.105984px;}
.ws27{word-spacing:0.139104px;}
.ws21{word-spacing:0.158976px;}
.ws2c{word-spacing:0.193536px;}
.ws15{word-spacing:0.377568px;}
.ws13{word-spacing:0.470592px;}
.ws11{word-spacing:0.623808px;}
.ws1a{word-spacing:1.069200px;}
.ws1b{word-spacing:1.090800px;}
.ws19{word-spacing:1.112400px;}
.ws2b{word-spacing:1.134000px;}
.ws6{word-spacing:1.803600px;}
.ws30{word-spacing:3.088800px;}
._2{margin-left:-8.791200px;}
._5{margin-left:-5.454000px;}
._1{margin-left:-3.996000px;}
._0{margin-left:-1.846800px;}
._7{width:1.059840px;}
._4{width:2.304000px;}
._3{width:3.528000px;}
._9{width:847.728000px;}
._a{width:2983.158576px;}
._6{width:3013.313904px;}
._8{width:3043.977264px;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fs3{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.fs8{font-size:96.480000px;}
.fs0{font-size:108.000000px;}
.y24{bottom:-4.920000px;}
.y0{bottom:0.000000px;}
.y23{bottom:23.160000px;}
.y22{bottom:48.720000px;}
.y26{bottom:50.040000px;}
.y1{bottom:60.000000px;}
.y21{bottom:74.280000px;}
.y20{bottom:99.480000px;}
.y49{bottom:122.040000px;}
.y1f{bottom:125.040000px;}
.y48{bottom:148.320000px;}
.y1e{bottom:150.600000px;}
.y47{bottom:153.000000px;}
.y46{bottom:171.360000px;}
.y9e{bottom:172.800000px;}
.y1d{bottom:175.800000px;}
.ybe{bottom:178.560000px;}
.yd8{bottom:187.200000px;}
.y45{bottom:189.720000px;}
.y68{bottom:190.800000px;}
.ya9{bottom:191.160000px;}
.y81{bottom:196.560000px;}
.y9d{bottom:199.080000px;}
.y1c{bottom:201.360000px;}
.ybd{bottom:204.480000px;}
.y44{bottom:208.080000px;}
.yd7{bottom:213.120000px;}
.ycf{bottom:216.000000px;}
.y67{bottom:216.720000px;}
.y8e{bottom:217.080000px;}
.y80{bottom:222.480000px;}
.y9c{bottom:225.000000px;}
.y43{bottom:226.440000px;}
.y1b{bottom:226.920000px;}
.ybc{bottom:230.400000px;}
.yd6{bottom:239.400000px;}
.y66{bottom:243.000000px;}
.y42{bottom:244.800000px;}
.y7f{bottom:248.400000px;}
.yce{bottom:250.920000px;}
.y1a{bottom:252.480000px;}
.ybb{bottom:256.320000px;}
.y9b{bottom:259.920000px;}
.yd5{bottom:265.320000px;}
.y41{bottom:268.560000px;}
.y65{bottom:268.920000px;}
.y84{bottom:269.280000px;}
.y7e{bottom:274.320000px;}
.ycd{bottom:276.840000px;}
.y19{bottom:277.680000px;}
.yba{bottom:282.600000px;}
.y9a{bottom:286.200000px;}
.y40{bottom:289.800000px;}
.yd4{bottom:291.240000px;}
.y64{bottom:294.840000px;}
.y8d{bottom:295.200000px;}
.y7d{bottom:300.600000px;}
.ycc{bottom:303.120000px;}
.y18{bottom:303.240000px;}
.ya3{bottom:303.840000px;}
.y3f{bottom:307.440000px;}
.y99{bottom:312.120000px;}
.yb9{bottom:317.520000px;}
.y7c{bottom:326.520000px;}
.y17{bottom:328.800000px;}
.ycb{bottom:329.040000px;}
.y63{bottom:330.120000px;}
.y98{bottom:338.040000px;}
.yb8{bottom:343.440000px;}
.y3e{bottom:344.520000px;}
.y7b{bottom:352.440000px;}
.y16{bottom:354.000000px;}
.y62{bottom:356.040000px;}
.ya8{bottom:356.400000px;}
.yca{bottom:363.960000px;}
.y97{bottom:364.320000px;}
.yd3{bottom:369.360000px;}
.yb7{bottom:369.720000px;}
.y3d{bottom:370.440000px;}
.y15{bottom:381.000000px;}
.y61{bottom:381.960000px;}
.y8c{bottom:382.320000px;}
.y7a{bottom:387.720000px;}
.y96{bottom:390.240000px;}
.yb6{bottom:395.640000px;}
.y3c{bottom:396.360000px;}
.y60{bottom:408.240000px;}
.y14{bottom:410.520000px;}
.y79{bottom:413.640000px;}
.yc9{bottom:416.160000px;}
.yb5{bottom:421.560000px;}
.y3b{bottom:422.640000px;}
.y95{bottom:425.160000px;}
.ya7{bottom:429.120000px;}
.y5f{bottom:434.160000px;}
.y13{bottom:438.960000px;}
.y78{bottom:439.560000px;}
.yc8{bottom:442.080000px;}
.yd2{bottom:447.480000px;}
.y3a{bottom:448.560000px;}
.y94{bottom:451.080000px;}
.y5e{bottom:460.080000px;}
.y12{bottom:464.520000px;}
.y77{bottom:465.840000px;}
.yc7{bottom:468.000000px;}
.y83{bottom:469.080000px;}
.yd1{bottom:473.400000px;}
.y39{bottom:474.480000px;}
.y93{bottom:477.360000px;}
.ya2{bottom:486.000000px;}
.y8b{bottom:486.360000px;}
.y11{bottom:489.720000px;}
.y76{bottom:491.760000px;}
.y5d{bottom:495.000000px;}
.ya6{bottom:495.360000px;}
.yd0{bottom:499.680000px;}
.y38{bottom:500.400000px;}
.yc6{bottom:503.280000px;}
.ya1{bottom:512.280000px;}
.y10{bottom:515.280000px;}
.y75{bottom:517.680000px;}
.yb4{bottom:520.200000px;}
.y5c{bottom:521.280000px;}
.y92{bottom:524.160000px;}
.y37{bottom:526.680000px;}
.yc5{bottom:529.200000px;}
.ya0{bottom:538.200000px;}
.yf{bottom:540.840000px;}
.y5b{bottom:547.200000px;}
.y36{bottom:552.600000px;}
.yc4{bottom:555.120000px;}
.yb3{bottom:555.480000px;}
.y91{bottom:564.120000px;}
.y74{bottom:564.480000px;}
.ye{bottom:566.040000px;}
.y5a{bottom:573.120000px;}
.y8a{bottom:573.480000px;}
.y35{bottom:578.520000px;}
.yb2{bottom:581.400000px;}
.y9f{bottom:590.400000px;}
.yd{bottom:591.600000px;}
.y59{bottom:599.400000px;}
.yb1{bottom:607.320000px;}
.y34{bottom:613.800000px;}
.yc3{bottom:616.320000px;}
.yc{bottom:617.160000px;}
.y58{bottom:625.320000px;}
.y73{bottom:634.320000px;}
.y33{bottom:639.720000px;}
.yc2{bottom:642.240000px;}
.yb0{bottom:642.600000px;}
.yb{bottom:642.720000px;}
.y57{bottom:651.240000px;}
.y89{bottom:651.600000px;}
.y82{bottom:660.240000px;}
.ya5{bottom:660.600000px;}
.y32{bottom:665.640000px;}
.ya{bottom:667.920000px;}
.yaf{bottom:668.520000px;}
.y72{bottom:677.520000px;}
.y56{bottom:686.520000px;}
.y31{bottom:691.920000px;}
.y9{bottom:693.480000px;}
.yae{bottom:694.440000px;}
.y71{bottom:703.440000px;}
.y55{bottom:712.440000px;}
.y30{bottom:717.840000px;}
.y8{bottom:719.040000px;}
.yad{bottom:720.360000px;}
.y70{bottom:729.360000px;}
.y54{bottom:738.360000px;}
.y2f{bottom:743.760000px;}
.y7{bottom:744.240000px;}
.yc1{bottom:746.280000px;}
.y6f{bottom:755.280000px;}
.yac{bottom:755.640000px;}
.y53{bottom:764.280000px;}
.y88{bottom:764.640000px;}
.y2e{bottom:769.680000px;}
.y6{bottom:769.800000px;}
.y6e{bottom:781.560000px;}
.y52{bottom:790.560000px;}
.y5{bottom:796.800000px;}
.y2d{bottom:804.960000px;}
.yab{bottom:807.480000px;}
.y51{bottom:816.480000px;}
.y90{bottom:825.480000px;}
.y4{bottom:826.320000px;}
.y2c{bottom:830.880000px;}
.yc0{bottom:833.400000px;}
.y50{bottom:842.400000px;}
.y8f{bottom:851.400000px;}
.y87{bottom:851.760000px;}
.yaa{bottom:854.640000px;}
.y2b{bottom:856.800000px;}
.y3{bottom:858.720000px;}
.ybf{bottom:859.680000px;}
.y6d{bottom:868.680000px;}
.y4f{bottom:877.680000px;}
.y2a{bottom:883.080000px;}
.y6c{bottom:894.600000px;}
.y2{bottom:895.800000px;}
.y4e{bottom:903.600000px;}
.ya4{bottom:906.480000px;}
.y29{bottom:909.000000px;}
.y6b{bottom:920.520000px;}
.y4d{bottom:929.520000px;}
.y86{bottom:929.880000px;}
.y28{bottom:934.920000px;}
.y6a{bottom:946.800000px;}
.y4c{bottom:955.800000px;}
.y69{bottom:972.720000px;}
.y4b{bottom:981.720000px;}
.y27{bottom:999.720000px;}
.y85{bottom:1002.600000px;}
.y4a{bottom:1007.640000px;}
.y25{bottom:1028.880000px;}
.ha{height:26.068359px;}
.hb{height:41.868281px;}
.h7{height:50.747344px;}
.h6{height:51.679688px;}
.h5{height:55.666406px;}
.h9{height:57.599297px;}
.h8{height:61.679531px;}
.hc{height:65.953125px;}
.h4{height:73.458984px;}
.h3{height:75.726563px;}
.h2{height:922.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:760.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:11.219964px;}
.x4{left:63.719964px;}
.x1{left:70.500000px;}
.x6{left:117.719964px;}
.x5{left:279.719964px;}
.x3{left:829.019880px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls7{letter-spacing:-3.161600pt;}
.ls3b{letter-spacing:-2.841600pt;}
.ls2e{letter-spacing:-2.804352pt;}
.ls32{letter-spacing:-1.963904pt;}
.lsd{letter-spacing:-1.699200pt;}
.ls36{letter-spacing:-1.346432pt;}
.ls30{letter-spacing:-1.337856pt;}
.ls35{letter-spacing:-1.320704pt;}
.ls34{letter-spacing:-1.277824pt;}
.ls2c{letter-spacing:-1.174912pt;}
.ls37{letter-spacing:-1.104000pt;}
.ls29{letter-spacing:-1.084800pt;}
.ls2b{letter-spacing:-1.065600pt;}
.ls2a{letter-spacing:-1.046400pt;}
.ls1d{letter-spacing:-0.603136pt;}
.ls22{letter-spacing:-0.486400pt;}
.ls24{letter-spacing:-0.481536pt;}
.ls1c{letter-spacing:-0.466944pt;}
.ls1a{letter-spacing:-0.403712pt;}
.ls23{letter-spacing:-0.384256pt;}
.ls1f{letter-spacing:-0.374528pt;}
.ls21{letter-spacing:-0.364800pt;}
.ls20{letter-spacing:-0.311296pt;}
.ls38{letter-spacing:-0.225792pt;}
.ls1b{letter-spacing:-0.223744pt;}
.lsf{letter-spacing:-0.200192pt;}
.ls2d{letter-spacing:-0.194304pt;}
.ls33{letter-spacing:-0.188672pt;}
.ls14{letter-spacing:-0.182528pt;}
.ls1e{letter-spacing:-0.175104pt;}
.ls25{letter-spacing:-0.165376pt;}
.ls39{letter-spacing:-0.164864pt;}
.ls31{letter-spacing:-0.153088pt;}
.ls28{letter-spacing:-0.147200pt;}
.ls3a{letter-spacing:-0.141312pt;}
.ls15{letter-spacing:-0.135424pt;}
.ls19{letter-spacing:-0.129536pt;}
.ls12{letter-spacing:-0.123648pt;}
.lse{letter-spacing:-0.117760pt;}
.ls10{letter-spacing:-0.111872pt;}
.ls3c{letter-spacing:-0.105984pt;}
.ls2f{letter-spacing:-0.100096pt;}
.ls13{letter-spacing:-0.094208pt;}
.ls11{letter-spacing:-0.076544pt;}
.ls26{letter-spacing:-0.070656pt;}
.ls17{letter-spacing:-0.064768pt;}
.ls27{letter-spacing:-0.058880pt;}
.ls18{letter-spacing:-0.052992pt;}
.ls3d{letter-spacing:-0.047104pt;}
.ls16{letter-spacing:-0.041216pt;}
.ls6{letter-spacing:-0.038400pt;}
.ls8{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:-0.025600pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.005120pt;}
.ls4{letter-spacing:0.006400pt;}
.ls0{letter-spacing:0.012800pt;}
.ls2{letter-spacing:0.019200pt;}
.ls9{letter-spacing:0.025600pt;}
.ls1{letter-spacing:0.032000pt;}
.lsb{letter-spacing:1.111808pt;}
.lsc{letter-spacing:1.196800pt;}
.ws1{word-spacing:-21.657600pt;}
.ws29{word-spacing:-19.381760pt;}
.ws2a{word-spacing:-18.103936pt;}
.ws28{word-spacing:-17.417856pt;}
.ws7{word-spacing:-15.308800pt;}
.ws26{word-spacing:-15.267584pt;}
.ws1c{word-spacing:-15.249920pt;}
.ws1e{word-spacing:-15.238144pt;}
.ws1d{word-spacing:-15.232256pt;}
.ws8{word-spacing:-15.214592pt;}
.ws2d{word-spacing:-15.208704pt;}
.ws17{word-spacing:-15.196928pt;}
.ws20{word-spacing:-15.185152pt;}
.wsb{word-spacing:-15.179264pt;}
.ws2e{word-spacing:-15.173376pt;}
.ws31{word-spacing:-15.167488pt;}
.ws25{word-spacing:-15.161600pt;}
.ws35{word-spacing:-15.155712pt;}
.ws33{word-spacing:-15.126272pt;}
.ws23{word-spacing:-15.108608pt;}
.ws3{word-spacing:-14.476800pt;}
.ws2{word-spacing:-14.438400pt;}
.wse{word-spacing:-12.646400pt;}
.wsf{word-spacing:-12.422656pt;}
.ws14{word-spacing:-12.281600pt;}
.ws12{word-spacing:-12.271872pt;}
.wsd{word-spacing:-12.242688pt;}
.ws10{word-spacing:-12.043264pt;}
.ws0{word-spacing:-0.096000pt;}
.ws5{word-spacing:-0.053760pt;}
.wsc{word-spacing:-0.032000pt;}
.wsa{word-spacing:-0.017664pt;}
.ws4{word-spacing:0.000000pt;}
.ws16{word-spacing:0.011776pt;}
.ws22{word-spacing:0.017664pt;}
.ws2f{word-spacing:0.035328pt;}
.ws9{word-spacing:0.052992pt;}
.ws1f{word-spacing:0.064768pt;}
.ws32{word-spacing:0.070656pt;}
.ws34{word-spacing:0.082432pt;}
.ws18{word-spacing:0.088320pt;}
.ws24{word-spacing:0.094208pt;}
.ws27{word-spacing:0.123648pt;}
.ws21{word-spacing:0.141312pt;}
.ws2c{word-spacing:0.172032pt;}
.ws15{word-spacing:0.335616pt;}
.ws13{word-spacing:0.418304pt;}
.ws11{word-spacing:0.554496pt;}
.ws1a{word-spacing:0.950400pt;}
.ws1b{word-spacing:0.969600pt;}
.ws19{word-spacing:0.988800pt;}
.ws2b{word-spacing:1.008000pt;}
.ws6{word-spacing:1.603200pt;}
.ws30{word-spacing:2.745600pt;}
._2{margin-left:-7.814400pt;}
._5{margin-left:-4.848000pt;}
._1{margin-left:-3.552000pt;}
._0{margin-left:-1.641600pt;}
._7{width:0.942080pt;}
._4{width:2.048000pt;}
._3{width:3.136000pt;}
._9{width:753.536000pt;}
._a{width:2651.696512pt;}
._6{width:2678.501248pt;}
._8{width:2705.757568pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fs3{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.fs8{font-size:85.760000pt;}
.fs0{font-size:96.000000pt;}
.y24{bottom:-4.373333pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:20.586667pt;}
.y22{bottom:43.306667pt;}
.y26{bottom:44.480000pt;}
.y1{bottom:53.333333pt;}
.y21{bottom:66.026667pt;}
.y20{bottom:88.426667pt;}
.y49{bottom:108.480000pt;}
.y1f{bottom:111.146667pt;}
.y48{bottom:131.840000pt;}
.y1e{bottom:133.866667pt;}
.y47{bottom:136.000000pt;}
.y46{bottom:152.320000pt;}
.y9e{bottom:153.600000pt;}
.y1d{bottom:156.266667pt;}
.ybe{bottom:158.720000pt;}
.yd8{bottom:166.400000pt;}
.y45{bottom:168.640000pt;}
.y68{bottom:169.600000pt;}
.ya9{bottom:169.920000pt;}
.y81{bottom:174.720000pt;}
.y9d{bottom:176.960000pt;}
.y1c{bottom:178.986667pt;}
.ybd{bottom:181.760000pt;}
.y44{bottom:184.960000pt;}
.yd7{bottom:189.440000pt;}
.ycf{bottom:192.000000pt;}
.y67{bottom:192.640000pt;}
.y8e{bottom:192.960000pt;}
.y80{bottom:197.760000pt;}
.y9c{bottom:200.000000pt;}
.y43{bottom:201.280000pt;}
.y1b{bottom:201.706667pt;}
.ybc{bottom:204.800000pt;}
.yd6{bottom:212.800000pt;}
.y66{bottom:216.000000pt;}
.y42{bottom:217.600000pt;}
.y7f{bottom:220.800000pt;}
.yce{bottom:223.040000pt;}
.y1a{bottom:224.426667pt;}
.ybb{bottom:227.840000pt;}
.y9b{bottom:231.040000pt;}
.yd5{bottom:235.840000pt;}
.y41{bottom:238.720000pt;}
.y65{bottom:239.040000pt;}
.y84{bottom:239.360000pt;}
.y7e{bottom:243.840000pt;}
.ycd{bottom:246.080000pt;}
.y19{bottom:246.826667pt;}
.yba{bottom:251.200000pt;}
.y9a{bottom:254.400000pt;}
.y40{bottom:257.600000pt;}
.yd4{bottom:258.880000pt;}
.y64{bottom:262.080000pt;}
.y8d{bottom:262.400000pt;}
.y7d{bottom:267.200000pt;}
.ycc{bottom:269.440000pt;}
.y18{bottom:269.546667pt;}
.ya3{bottom:270.080000pt;}
.y3f{bottom:273.280000pt;}
.y99{bottom:277.440000pt;}
.yb9{bottom:282.240000pt;}
.y7c{bottom:290.240000pt;}
.y17{bottom:292.266667pt;}
.ycb{bottom:292.480000pt;}
.y63{bottom:293.440000pt;}
.y98{bottom:300.480000pt;}
.yb8{bottom:305.280000pt;}
.y3e{bottom:306.240000pt;}
.y7b{bottom:313.280000pt;}
.y16{bottom:314.666667pt;}
.y62{bottom:316.480000pt;}
.ya8{bottom:316.800000pt;}
.yca{bottom:323.520000pt;}
.y97{bottom:323.840000pt;}
.yd3{bottom:328.320000pt;}
.yb7{bottom:328.640000pt;}
.y3d{bottom:329.280000pt;}
.y15{bottom:338.666667pt;}
.y61{bottom:339.520000pt;}
.y8c{bottom:339.840000pt;}
.y7a{bottom:344.640000pt;}
.y96{bottom:346.880000pt;}
.yb6{bottom:351.680000pt;}
.y3c{bottom:352.320000pt;}
.y60{bottom:362.880000pt;}
.y14{bottom:364.906667pt;}
.y79{bottom:367.680000pt;}
.yc9{bottom:369.920000pt;}
.yb5{bottom:374.720000pt;}
.y3b{bottom:375.680000pt;}
.y95{bottom:377.920000pt;}
.ya7{bottom:381.440000pt;}
.y5f{bottom:385.920000pt;}
.y13{bottom:390.186667pt;}
.y78{bottom:390.720000pt;}
.yc8{bottom:392.960000pt;}
.yd2{bottom:397.760000pt;}
.y3a{bottom:398.720000pt;}
.y94{bottom:400.960000pt;}
.y5e{bottom:408.960000pt;}
.y12{bottom:412.906667pt;}
.y77{bottom:414.080000pt;}
.yc7{bottom:416.000000pt;}
.y83{bottom:416.960000pt;}
.yd1{bottom:420.800000pt;}
.y39{bottom:421.760000pt;}
.y93{bottom:424.320000pt;}
.ya2{bottom:432.000000pt;}
.y8b{bottom:432.320000pt;}
.y11{bottom:435.306667pt;}
.y76{bottom:437.120000pt;}
.y5d{bottom:440.000000pt;}
.ya6{bottom:440.320000pt;}
.yd0{bottom:444.160000pt;}
.y38{bottom:444.800000pt;}
.yc6{bottom:447.360000pt;}
.ya1{bottom:455.360000pt;}
.y10{bottom:458.026667pt;}
.y75{bottom:460.160000pt;}
.yb4{bottom:462.400000pt;}
.y5c{bottom:463.360000pt;}
.y92{bottom:465.920000pt;}
.y37{bottom:468.160000pt;}
.yc5{bottom:470.400000pt;}
.ya0{bottom:478.400000pt;}
.yf{bottom:480.746667pt;}
.y5b{bottom:486.400000pt;}
.y36{bottom:491.200000pt;}
.yc4{bottom:493.440000pt;}
.yb3{bottom:493.760000pt;}
.y91{bottom:501.440000pt;}
.y74{bottom:501.760000pt;}
.ye{bottom:503.146667pt;}
.y5a{bottom:509.440000pt;}
.y8a{bottom:509.760000pt;}
.y35{bottom:514.240000pt;}
.yb2{bottom:516.800000pt;}
.y9f{bottom:524.800000pt;}
.yd{bottom:525.866667pt;}
.y59{bottom:532.800000pt;}
.yb1{bottom:539.840000pt;}
.y34{bottom:545.600000pt;}
.yc3{bottom:547.840000pt;}
.yc{bottom:548.586667pt;}
.y58{bottom:555.840000pt;}
.y73{bottom:563.840000pt;}
.y33{bottom:568.640000pt;}
.yc2{bottom:570.880000pt;}
.yb0{bottom:571.200000pt;}
.yb{bottom:571.306667pt;}
.y57{bottom:578.880000pt;}
.y89{bottom:579.200000pt;}
.y82{bottom:586.880000pt;}
.ya5{bottom:587.200000pt;}
.y32{bottom:591.680000pt;}
.ya{bottom:593.706667pt;}
.yaf{bottom:594.240000pt;}
.y72{bottom:602.240000pt;}
.y56{bottom:610.240000pt;}
.y31{bottom:615.040000pt;}
.y9{bottom:616.426667pt;}
.yae{bottom:617.280000pt;}
.y71{bottom:625.280000pt;}
.y55{bottom:633.280000pt;}
.y30{bottom:638.080000pt;}
.y8{bottom:639.146667pt;}
.yad{bottom:640.320000pt;}
.y70{bottom:648.320000pt;}
.y54{bottom:656.320000pt;}
.y2f{bottom:661.120000pt;}
.y7{bottom:661.546667pt;}
.yc1{bottom:663.360000pt;}
.y6f{bottom:671.360000pt;}
.yac{bottom:671.680000pt;}
.y53{bottom:679.360000pt;}
.y88{bottom:679.680000pt;}
.y2e{bottom:684.160000pt;}
.y6{bottom:684.266667pt;}
.y6e{bottom:694.720000pt;}
.y52{bottom:702.720000pt;}
.y5{bottom:708.266667pt;}
.y2d{bottom:715.520000pt;}
.yab{bottom:717.760000pt;}
.y51{bottom:725.760000pt;}
.y90{bottom:733.760000pt;}
.y4{bottom:734.506667pt;}
.y2c{bottom:738.560000pt;}
.yc0{bottom:740.800000pt;}
.y50{bottom:748.800000pt;}
.y8f{bottom:756.800000pt;}
.y87{bottom:757.120000pt;}
.yaa{bottom:759.680000pt;}
.y2b{bottom:761.600000pt;}
.y3{bottom:763.306667pt;}
.ybf{bottom:764.160000pt;}
.y6d{bottom:772.160000pt;}
.y4f{bottom:780.160000pt;}
.y2a{bottom:784.960000pt;}
.y6c{bottom:795.200000pt;}
.y2{bottom:796.266667pt;}
.y4e{bottom:803.200000pt;}
.ya4{bottom:805.760000pt;}
.y29{bottom:808.000000pt;}
.y6b{bottom:818.240000pt;}
.y4d{bottom:826.240000pt;}
.y86{bottom:826.560000pt;}
.y28{bottom:831.040000pt;}
.y6a{bottom:841.600000pt;}
.y4c{bottom:849.600000pt;}
.y69{bottom:864.640000pt;}
.y4b{bottom:872.640000pt;}
.y27{bottom:888.640000pt;}
.y85{bottom:891.200000pt;}
.y4a{bottom:895.680000pt;}
.y25{bottom:914.560000pt;}
.ha{height:23.171875pt;}
.hb{height:37.216250pt;}
.h7{height:45.108750pt;}
.h6{height:45.937500pt;}
.h5{height:49.481250pt;}
.h9{height:51.199375pt;}
.h8{height:54.826250pt;}
.hc{height:58.625000pt;}
.h4{height:65.296875pt;}
.h3{height:67.312500pt;}
.h2{height:820.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:676.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:9.973301pt;}
.x4{left:56.639968pt;}
.x1{left:62.666667pt;}
.x6{left:104.639968pt;}
.x5{left:248.639968pt;}
.x3{left:736.906560pt;}
}




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