
    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_df47da9d8a574c0d3fd6a351.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.118000;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_1dcb535319371c4a4bad44ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.132000;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_cb128119b9acc26923219627.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.178000;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_efa27111feadd5f9d62c23b0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.175000;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_c0f2cb2a3697ad8a7d8a0127.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.141000;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_36cd68460a44f7549f1b3d7d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.140000;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_01c3d6eb5ce7d2e4c9b7e68f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.116000;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_269cc10fb24ee8ad25bfe88d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.071000;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_021e004f9362e162e6c205c2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7d1d71c2acd8b0911c7ff46a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.135000;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);}
.v2{vertical-align:-3.756000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:74.220000px;}
.ls1{letter-spacing:-1.620000px;}
.ls5{letter-spacing:-0.570000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.162000px;}
.ls3{letter-spacing:0.570000px;}
.ls0{letter-spacing:10.500000px;}
.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;}
}
.ws4{word-spacing:-45.806850px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.180000px;}
.ws86{word-spacing:-14.250000px;}
.ws2{word-spacing:-12.150000px;}
.ws3{word-spacing:-9.450000px;}
.ws85{word-spacing:-3.933000px;}
.ws9b{word-spacing:-3.591000px;}
.ws46{word-spacing:-3.363000px;}
.ws3a{word-spacing:-2.793000px;}
.wsac{word-spacing:-2.736000px;}
.wsc{word-spacing:-2.622000px;}
.ws31{word-spacing:-2.322000px;}
.ws1f{word-spacing:-2.052000px;}
.ws68{word-spacing:-1.938000px;}
.ws63{word-spacing:-1.767000px;}
.ws62{word-spacing:-1.710000px;}
.ws77{word-spacing:-1.653000px;}
.ws9f{word-spacing:-1.539000px;}
.ws71{word-spacing:-1.482000px;}
.ws1e{word-spacing:-1.425000px;}
.ws5b{word-spacing:-1.368000px;}
.ws7a{word-spacing:-1.311000px;}
.ws40{word-spacing:-1.083000px;}
.ws30{word-spacing:-0.972000px;}
.ws9a{word-spacing:-0.912000px;}
.ws8e{word-spacing:-0.570000px;}
.wsad{word-spacing:-0.513000px;}
.ws5a{word-spacing:-0.456000px;}
.ws9d{word-spacing:-0.399000px;}
.wsaa{word-spacing:-0.342000px;}
.wsa3{word-spacing:-0.285000px;}
.ws7c{word-spacing:-0.228000px;}
.ws53{word-spacing:-0.171000px;}
.ws7{word-spacing:0.000000px;}
.ws78{word-spacing:0.057000px;}
.wsb4{word-spacing:0.162000px;}
.ws97{word-spacing:0.342000px;}
.ws3d{word-spacing:0.513000px;}
.ws17{word-spacing:0.627000px;}
.ws18{word-spacing:0.684000px;}
.ws6c{word-spacing:0.741000px;}
.ws83{word-spacing:0.798000px;}
.ws19{word-spacing:0.969000px;}
.ws21{word-spacing:1.026000px;}
.wsb6{word-spacing:1.134000px;}
.ws27{word-spacing:1.188000px;}
.wsa4{word-spacing:1.197000px;}
.wsb7{word-spacing:1.242000px;}
.wsae{word-spacing:1.254000px;}
.ws79{word-spacing:1.311000px;}
.ws26{word-spacing:1.350000px;}
.ws9e{word-spacing:1.425000px;}
.ws98{word-spacing:1.539000px;}
.ws3e{word-spacing:2.109000px;}
.ws5c{word-spacing:2.166000px;}
.wsa2{word-spacing:2.223000px;}
.wsb{word-spacing:2.337000px;}
.ws2c{word-spacing:2.430000px;}
.ws75{word-spacing:2.508000px;}
.ws76{word-spacing:2.565000px;}
.ws32{word-spacing:2.907000px;}
.ws61{word-spacing:3.078000px;}
.ws84{word-spacing:3.249000px;}
.wsaf{word-spacing:3.456000px;}
.ws15{word-spacing:3.477000px;}
.ws96{word-spacing:3.534000px;}
.ws7d{word-spacing:3.762000px;}
.ws28{word-spacing:3.780000px;}
.wsa0{word-spacing:3.876000px;}
.ws5d{word-spacing:3.933000px;}
.ws36{word-spacing:4.047000px;}
.wsab{word-spacing:4.104000px;}
.ws9c{word-spacing:4.161000px;}
.ws29{word-spacing:4.212000px;}
.ws4a{word-spacing:4.218000px;}
.ws82{word-spacing:4.275000px;}
.ws7b{word-spacing:4.389000px;}
.ws3f{word-spacing:4.446000px;}
.ws4f{word-spacing:4.617000px;}
.wsb5{word-spacing:4.644000px;}
.ws2b{word-spacing:4.698000px;}
.ws16{word-spacing:4.731000px;}
.ws72{word-spacing:4.788000px;}
.ws9{word-spacing:4.845000px;}
.ws45{word-spacing:4.959000px;}
.ws8d{word-spacing:5.130000px;}
.ws2a{word-spacing:5.238000px;}
.ws88{word-spacing:5.301000px;}
.ws41{word-spacing:5.472000px;}
.wsa8{word-spacing:5.586000px;}
.ws24{word-spacing:5.724000px;}
.ws12{word-spacing:5.757000px;}
.wsa6{word-spacing:5.928000px;}
.wsb0{word-spacing:5.940000px;}
.ws54{word-spacing:5.985000px;}
.ws39{word-spacing:6.099000px;}
.ws48{word-spacing:6.213000px;}
.ws25{word-spacing:6.372000px;}
.wsb3{word-spacing:6.426000px;}
.ws10{word-spacing:6.498000px;}
.wsb1{word-spacing:6.588000px;}
.ws5{word-spacing:6.726000px;}
.ws90{word-spacing:6.783000px;}
.wsd{word-spacing:6.897000px;}
.ws13{word-spacing:7.068000px;}
.wsb2{word-spacing:7.128000px;}
.ws74{word-spacing:7.239000px;}
.ws37{word-spacing:7.353000px;}
.ws50{word-spacing:7.467000px;}
.ws6d{word-spacing:7.524000px;}
.ws81{word-spacing:7.581000px;}
.ws69{word-spacing:7.638000px;}
.ws52{word-spacing:7.809000px;}
.ws8c{word-spacing:7.923000px;}
.ws1a{word-spacing:8.037000px;}
.ws65{word-spacing:8.151000px;}
.ws2e{word-spacing:8.316000px;}
.ws6e{word-spacing:8.322000px;}
.ws1d{word-spacing:8.379000px;}
.ws8a{word-spacing:8.436000px;}
.ws91{word-spacing:8.493000px;}
.ws6f{word-spacing:8.607000px;}
.ws89{word-spacing:8.664000px;}
.ws8{word-spacing:8.721000px;}
.wsa1{word-spacing:8.892000px;}
.ws7e{word-spacing:8.949000px;}
.ws80{word-spacing:9.006000px;}
.ws4b{word-spacing:9.177000px;}
.ws2d{word-spacing:9.180000px;}
.ws2f{word-spacing:9.234000px;}
.ws60{word-spacing:9.462000px;}
.ws38{word-spacing:9.519000px;}
.ws11{word-spacing:9.633000px;}
.ws20{word-spacing:9.918000px;}
.ws47{word-spacing:10.089000px;}
.wsa7{word-spacing:10.203000px;}
.ws64{word-spacing:10.317000px;}
.ws94{word-spacing:10.431000px;}
.ws67{word-spacing:10.659000px;}
.ws49{word-spacing:10.887000px;}
.ws5e{word-spacing:11.001000px;}
.ws33{word-spacing:11.058000px;}
.ws6b{word-spacing:11.115000px;}
.ws4d{word-spacing:11.172000px;}
.ws7f{word-spacing:11.229000px;}
.wsa9{word-spacing:11.628000px;}
.ws93{word-spacing:11.799000px;}
.ws56{word-spacing:12.027000px;}
.ws73{word-spacing:12.369000px;}
.ws23{word-spacing:12.420000px;}
.wsa{word-spacing:12.597000px;}
.ws8f{word-spacing:13.053000px;}
.ws6a{word-spacing:13.167000px;}
.ws4e{word-spacing:13.281000px;}
.ws1c{word-spacing:13.338000px;}
.ws57{word-spacing:13.452000px;}
.ws51{word-spacing:13.509000px;}
.ws1b{word-spacing:13.737000px;}
.ws22{word-spacing:13.770000px;}
.ws44{word-spacing:14.193000px;}
.ws99{word-spacing:14.364000px;}
.ws87{word-spacing:14.421000px;}
.wsf{word-spacing:14.649000px;}
.ws92{word-spacing:14.877000px;}
.ws6{word-spacing:15.447000px;}
.ws14{word-spacing:15.732000px;}
.wsa5{word-spacing:15.846000px;}
.ws8b{word-spacing:16.473000px;}
.ws4c{word-spacing:16.587000px;}
.ws34{word-spacing:16.815000px;}
.ws58{word-spacing:17.100000px;}
.ws3c{word-spacing:17.157000px;}
.ws42{word-spacing:18.069000px;}
.ws5f{word-spacing:18.810000px;}
.ws43{word-spacing:19.437000px;}
.ws35{word-spacing:20.121000px;}
.wse{word-spacing:21.147000px;}
.ws70{word-spacing:21.204000px;}
.ws66{word-spacing:21.489000px;}
.ws59{word-spacing:25.422000px;}
.ws3b{word-spacing:26.790000px;}
.ws95{word-spacing:27.246000px;}
.ws55{word-spacing:56.532000px;}
._2{margin-left:-4.788000px;}
._3{margin-left:-3.029400px;}
._0{margin-left:-1.230600px;}
._1{width:2.100000px;}
._6{width:3.780000px;}
._4{width:10.206000px;}
._5{width:1729.020600px;}
.fc6{color:transparent;}
.fc4{color:rgb(167,165,166);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(145,143,143);}
.fc0{color:rgb(90,87,88);}
.fs0{font-size:30.000000px;}
.fs7{font-size:36.000000px;}
.fs4{font-size:37.800000px;}
.fs8{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:96.000000px;}
.fs6{font-size:183.227400px;}
.y56{bottom:-26.197650px;}
.y0{bottom:0.000000px;}
.y80{bottom:85.202100px;}
.y2d{bottom:85.954350px;}
.y64{bottom:86.612850px;}
.y55{bottom:86.870850px;}
.yaa{bottom:87.119850px;}
.y7f{bottom:103.755600px;}
.y63{bottom:105.166350px;}
.y54{bottom:105.424350px;}
.y2c{bottom:110.699850px;}
.ya9{bottom:111.851850px;}
.y7e{bottom:122.309100px;}
.y62{bottom:123.719850px;}
.y53{bottom:123.977850px;}
.y2b{bottom:127.048350px;}
.ya8{bottom:128.200350px;}
.y7d{bottom:140.862600px;}
.y61{bottom:142.273350px;}
.y52{bottom:142.531350px;}
.y2a{bottom:143.396850px;}
.ya7{bottom:144.548850px;}
.y7c{bottom:159.416100px;}
.y29{bottom:159.745350px;}
.y60{bottom:160.826850px;}
.ya6{bottom:160.897350px;}
.y51{bottom:161.084850px;}
.y28{bottom:176.093850px;}
.ya5{bottom:177.245850px;}
.y7b{bottom:177.969600px;}
.y5f{bottom:179.380350px;}
.y50{bottom:179.638350px;}
.y27{bottom:192.442350px;}
.ya4{bottom:193.594350px;}
.y7a{bottom:196.523100px;}
.y5e{bottom:197.933850px;}
.y4f{bottom:198.191850px;}
.y26{bottom:208.790850px;}
.ya3{bottom:209.942850px;}
.y79{bottom:215.076600px;}
.y5d{bottom:216.487350px;}
.y4e{bottom:216.745350px;}
.y25{bottom:225.139350px;}
.y78{bottom:233.630100px;}
.y5c{bottom:235.040850px;}
.y4d{bottom:235.298850px;}
.y24{bottom:241.487850px;}
.y77{bottom:252.183600px;}
.y5b{bottom:253.594350px;}
.y4c{bottom:253.852350px;}
.y23{bottom:257.836350px;}
.y76{bottom:270.737100px;}
.y5a{bottom:272.147850px;}
.y4b{bottom:272.405850px;}
.y75{bottom:289.290600px;}
.y59{bottom:290.701350px;}
.y4a{bottom:290.959350px;}
.y74{bottom:307.844100px;}
.y58{bottom:309.254850px;}
.y49{bottom:309.512850px;}
.y73{bottom:326.397600px;}
.y57{bottom:327.808350px;}
.ya2{bottom:327.879600px;}
.y48{bottom:328.066350px;}
.y72{bottom:344.951100px;}
.y22{bottom:346.361850px;}
.ya1{bottom:346.433100px;}
.y47{bottom:346.619850px;}
.y71{bottom:363.504600px;}
.y21{bottom:364.915350px;}
.ya0{bottom:364.986600px;}
.y46{bottom:365.173350px;}
.y70{bottom:382.058100px;}
.y20{bottom:383.468850px;}
.y9f{bottom:383.540100px;}
.y45{bottom:383.726850px;}
.y6f{bottom:400.611600px;}
.y1f{bottom:402.022350px;}
.y9e{bottom:402.093600px;}
.y44{bottom:402.280350px;}
.y6e{bottom:419.165100px;}
.y1e{bottom:420.575850px;}
.y9d{bottom:420.647100px;}
.y43{bottom:420.833850px;}
.y6d{bottom:437.718600px;}
.y1d{bottom:439.129350px;}
.y9c{bottom:439.200600px;}
.y42{bottom:439.387350px;}
.y6c{bottom:456.272100px;}
.y1c{bottom:457.682850px;}
.y9b{bottom:457.754100px;}
.y41{bottom:457.940850px;}
.y6b{bottom:474.825600px;}
.y1b{bottom:476.236350px;}
.y9a{bottom:476.307600px;}
.y40{bottom:476.494350px;}
.y6a{bottom:493.379100px;}
.y1a{bottom:494.789850px;}
.y99{bottom:494.861100px;}
.y3f{bottom:495.047850px;}
.y69{bottom:511.932600px;}
.y19{bottom:513.343350px;}
.y98{bottom:513.414600px;}
.y3e{bottom:513.601350px;}
.y68{bottom:530.486100px;}
.y18{bottom:531.896850px;}
.y97{bottom:531.968100px;}
.y3d{bottom:532.154850px;}
.y67{bottom:549.039600px;}
.y17{bottom:550.450350px;}
.y96{bottom:550.521600px;}
.y3c{bottom:550.708350px;}
.y66{bottom:567.593100px;}
.y16{bottom:569.003850px;}
.y95{bottom:569.075100px;}
.y3b{bottom:569.261850px;}
.y65{bottom:586.146600px;}
.y15{bottom:587.557350px;}
.y94{bottom:587.628600px;}
.y3a{bottom:587.815350px;}
.y14{bottom:606.110850px;}
.y93{bottom:606.182100px;}
.y39{bottom:606.368850px;}
.y13{bottom:624.664350px;}
.y92{bottom:624.735600px;}
.y38{bottom:624.922350px;}
.y81{bottom:642.305850px;}
.y12{bottom:643.217850px;}
.y91{bottom:643.289100px;}
.y37{bottom:643.475850px;}
.y11{bottom:661.771350px;}
.y90{bottom:661.842600px;}
.y36{bottom:662.029350px;}
.y10{bottom:680.324850px;}
.y8f{bottom:680.396100px;}
.y35{bottom:680.582850px;}
.yf{bottom:698.878350px;}
.y8e{bottom:698.949600px;}
.y34{bottom:699.136350px;}
.ye{bottom:717.431850px;}
.y8d{bottom:717.503100px;}
.y33{bottom:717.689850px;}
.yd{bottom:735.985350px;}
.y8c{bottom:736.056600px;}
.y32{bottom:736.243350px;}
.yc{bottom:754.538850px;}
.y8b{bottom:754.610100px;}
.y31{bottom:754.796850px;}
.yb{bottom:773.092350px;}
.y8a{bottom:773.163600px;}
.y2f{bottom:773.348850px;}
.y30{bottom:773.350350px;}
.ya{bottom:791.645850px;}
.y89{bottom:791.717100px;}
.y9{bottom:810.199350px;}
.y88{bottom:810.270600px;}
.y8{bottom:828.752850px;}
.y87{bottom:828.824100px;}
.y7{bottom:847.306350px;}
.y86{bottom:847.377600px;}
.y6{bottom:865.859850px;}
.y85{bottom:865.931100px;}
.y5{bottom:884.413350px;}
.y84{bottom:884.484600px;}
.y4{bottom:902.966850px;}
.y83{bottom:903.038100px;}
.y2e{bottom:914.630850px;}
.y3{bottom:921.520350px;}
.y82{bottom:921.591600px;}
.y2{bottom:980.386350px;}
.y1{bottom:981.325350px;}
.h2{height:25.800000px;}
.h9{height:26.525391px;}
.hb{height:41.712000px;}
.hc{height:46.764000px;}
.h5{height:46.926000px;}
.h6{height:48.924000px;}
.ha{height:49.164000px;}
.h4{height:51.642000px;}
.h3{height:52.920000px;}
.h7{height:83.424000px;}
.h8{height:159.224611px;}
.h1{height:1041.750000px;}
.h0{height:1042.087350px;}
.w0{width:713.687400px;}
.w1{width:714.000000px;}
.x0{left:0.000000px;}
.xe{left:15.347250px;}
.x8{left:24.347250px;}
.x2{left:49.364100px;}
.xa{left:85.386750px;}
.xb{left:98.154750px;}
.x1{left:102.890550px;}
.x3{left:115.646400px;}
.x4{left:247.922400px;}
.xc{left:366.026250px;}
.xd{left:378.780000px;}
.x6{left:383.520900px;}
.x5{left:396.276900px;}
.x7{left:408.117900px;}
.xf{left:453.086400px;}
.x9{left:501.098400px;}
@media print{
.v2{vertical-align:-3.338667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:65.973333pt;}
.ls1{letter-spacing:-1.440000pt;}
.ls5{letter-spacing:-0.506667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.144000pt;}
.ls3{letter-spacing:0.506667pt;}
.ls0{letter-spacing:9.333333pt;}
.ws4{word-spacing:-40.717200pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.493333pt;}
.ws86{word-spacing:-12.666667pt;}
.ws2{word-spacing:-10.800000pt;}
.ws3{word-spacing:-8.400000pt;}
.ws85{word-spacing:-3.496000pt;}
.ws9b{word-spacing:-3.192000pt;}
.ws46{word-spacing:-2.989333pt;}
.ws3a{word-spacing:-2.482667pt;}
.wsac{word-spacing:-2.432000pt;}
.wsc{word-spacing:-2.330667pt;}
.ws31{word-spacing:-2.064000pt;}
.ws1f{word-spacing:-1.824000pt;}
.ws68{word-spacing:-1.722667pt;}
.ws63{word-spacing:-1.570667pt;}
.ws62{word-spacing:-1.520000pt;}
.ws77{word-spacing:-1.469333pt;}
.ws9f{word-spacing:-1.368000pt;}
.ws71{word-spacing:-1.317333pt;}
.ws1e{word-spacing:-1.266667pt;}
.ws5b{word-spacing:-1.216000pt;}
.ws7a{word-spacing:-1.165333pt;}
.ws40{word-spacing:-0.962667pt;}
.ws30{word-spacing:-0.864000pt;}
.ws9a{word-spacing:-0.810667pt;}
.ws8e{word-spacing:-0.506667pt;}
.wsad{word-spacing:-0.456000pt;}
.ws5a{word-spacing:-0.405333pt;}
.ws9d{word-spacing:-0.354667pt;}
.wsaa{word-spacing:-0.304000pt;}
.wsa3{word-spacing:-0.253333pt;}
.ws7c{word-spacing:-0.202667pt;}
.ws53{word-spacing:-0.152000pt;}
.ws7{word-spacing:0.000000pt;}
.ws78{word-spacing:0.050667pt;}
.wsb4{word-spacing:0.144000pt;}
.ws97{word-spacing:0.304000pt;}
.ws3d{word-spacing:0.456000pt;}
.ws17{word-spacing:0.557333pt;}
.ws18{word-spacing:0.608000pt;}
.ws6c{word-spacing:0.658667pt;}
.ws83{word-spacing:0.709333pt;}
.ws19{word-spacing:0.861333pt;}
.ws21{word-spacing:0.912000pt;}
.wsb6{word-spacing:1.008000pt;}
.ws27{word-spacing:1.056000pt;}
.wsa4{word-spacing:1.064000pt;}
.wsb7{word-spacing:1.104000pt;}
.wsae{word-spacing:1.114667pt;}
.ws79{word-spacing:1.165333pt;}
.ws26{word-spacing:1.200000pt;}
.ws9e{word-spacing:1.266667pt;}
.ws98{word-spacing:1.368000pt;}
.ws3e{word-spacing:1.874667pt;}
.ws5c{word-spacing:1.925333pt;}
.wsa2{word-spacing:1.976000pt;}
.wsb{word-spacing:2.077333pt;}
.ws2c{word-spacing:2.160000pt;}
.ws75{word-spacing:2.229333pt;}
.ws76{word-spacing:2.280000pt;}
.ws32{word-spacing:2.584000pt;}
.ws61{word-spacing:2.736000pt;}
.ws84{word-spacing:2.888000pt;}
.wsaf{word-spacing:3.072000pt;}
.ws15{word-spacing:3.090667pt;}
.ws96{word-spacing:3.141333pt;}
.ws7d{word-spacing:3.344000pt;}
.ws28{word-spacing:3.360000pt;}
.wsa0{word-spacing:3.445333pt;}
.ws5d{word-spacing:3.496000pt;}
.ws36{word-spacing:3.597333pt;}
.wsab{word-spacing:3.648000pt;}
.ws9c{word-spacing:3.698667pt;}
.ws29{word-spacing:3.744000pt;}
.ws4a{word-spacing:3.749333pt;}
.ws82{word-spacing:3.800000pt;}
.ws7b{word-spacing:3.901333pt;}
.ws3f{word-spacing:3.952000pt;}
.ws4f{word-spacing:4.104000pt;}
.wsb5{word-spacing:4.128000pt;}
.ws2b{word-spacing:4.176000pt;}
.ws16{word-spacing:4.205333pt;}
.ws72{word-spacing:4.256000pt;}
.ws9{word-spacing:4.306667pt;}
.ws45{word-spacing:4.408000pt;}
.ws8d{word-spacing:4.560000pt;}
.ws2a{word-spacing:4.656000pt;}
.ws88{word-spacing:4.712000pt;}
.ws41{word-spacing:4.864000pt;}
.wsa8{word-spacing:4.965333pt;}
.ws24{word-spacing:5.088000pt;}
.ws12{word-spacing:5.117333pt;}
.wsa6{word-spacing:5.269333pt;}
.wsb0{word-spacing:5.280000pt;}
.ws54{word-spacing:5.320000pt;}
.ws39{word-spacing:5.421333pt;}
.ws48{word-spacing:5.522667pt;}
.ws25{word-spacing:5.664000pt;}
.wsb3{word-spacing:5.712000pt;}
.ws10{word-spacing:5.776000pt;}
.wsb1{word-spacing:5.856000pt;}
.ws5{word-spacing:5.978667pt;}
.ws90{word-spacing:6.029333pt;}
.wsd{word-spacing:6.130667pt;}
.ws13{word-spacing:6.282667pt;}
.wsb2{word-spacing:6.336000pt;}
.ws74{word-spacing:6.434667pt;}
.ws37{word-spacing:6.536000pt;}
.ws50{word-spacing:6.637333pt;}
.ws6d{word-spacing:6.688000pt;}
.ws81{word-spacing:6.738667pt;}
.ws69{word-spacing:6.789333pt;}
.ws52{word-spacing:6.941333pt;}
.ws8c{word-spacing:7.042667pt;}
.ws1a{word-spacing:7.144000pt;}
.ws65{word-spacing:7.245333pt;}
.ws2e{word-spacing:7.392000pt;}
.ws6e{word-spacing:7.397333pt;}
.ws1d{word-spacing:7.448000pt;}
.ws8a{word-spacing:7.498667pt;}
.ws91{word-spacing:7.549333pt;}
.ws6f{word-spacing:7.650667pt;}
.ws89{word-spacing:7.701333pt;}
.ws8{word-spacing:7.752000pt;}
.wsa1{word-spacing:7.904000pt;}
.ws7e{word-spacing:7.954667pt;}
.ws80{word-spacing:8.005333pt;}
.ws4b{word-spacing:8.157333pt;}
.ws2d{word-spacing:8.160000pt;}
.ws2f{word-spacing:8.208000pt;}
.ws60{word-spacing:8.410667pt;}
.ws38{word-spacing:8.461333pt;}
.ws11{word-spacing:8.562667pt;}
.ws20{word-spacing:8.816000pt;}
.ws47{word-spacing:8.968000pt;}
.wsa7{word-spacing:9.069333pt;}
.ws64{word-spacing:9.170667pt;}
.ws94{word-spacing:9.272000pt;}
.ws67{word-spacing:9.474667pt;}
.ws49{word-spacing:9.677333pt;}
.ws5e{word-spacing:9.778667pt;}
.ws33{word-spacing:9.829333pt;}
.ws6b{word-spacing:9.880000pt;}
.ws4d{word-spacing:9.930667pt;}
.ws7f{word-spacing:9.981333pt;}
.wsa9{word-spacing:10.336000pt;}
.ws93{word-spacing:10.488000pt;}
.ws56{word-spacing:10.690667pt;}
.ws73{word-spacing:10.994667pt;}
.ws23{word-spacing:11.040000pt;}
.wsa{word-spacing:11.197333pt;}
.ws8f{word-spacing:11.602667pt;}
.ws6a{word-spacing:11.704000pt;}
.ws4e{word-spacing:11.805333pt;}
.ws1c{word-spacing:11.856000pt;}
.ws57{word-spacing:11.957333pt;}
.ws51{word-spacing:12.008000pt;}
.ws1b{word-spacing:12.210667pt;}
.ws22{word-spacing:12.240000pt;}
.ws44{word-spacing:12.616000pt;}
.ws99{word-spacing:12.768000pt;}
.ws87{word-spacing:12.818667pt;}
.wsf{word-spacing:13.021333pt;}
.ws92{word-spacing:13.224000pt;}
.ws6{word-spacing:13.730667pt;}
.ws14{word-spacing:13.984000pt;}
.wsa5{word-spacing:14.085333pt;}
.ws8b{word-spacing:14.642667pt;}
.ws4c{word-spacing:14.744000pt;}
.ws34{word-spacing:14.946667pt;}
.ws58{word-spacing:15.200000pt;}
.ws3c{word-spacing:15.250667pt;}
.ws42{word-spacing:16.061333pt;}
.ws5f{word-spacing:16.720000pt;}
.ws43{word-spacing:17.277333pt;}
.ws35{word-spacing:17.885333pt;}
.wse{word-spacing:18.797333pt;}
.ws70{word-spacing:18.848000pt;}
.ws66{word-spacing:19.101333pt;}
.ws59{word-spacing:22.597333pt;}
.ws3b{word-spacing:23.813333pt;}
.ws95{word-spacing:24.218667pt;}
.ws55{word-spacing:50.250667pt;}
._2{margin-left:-4.256000pt;}
._3{margin-left:-2.692800pt;}
._0{margin-left:-1.093867pt;}
._1{width:1.866667pt;}
._6{width:3.360000pt;}
._4{width:9.072000pt;}
._5{width:1536.907200pt;}
.fs0{font-size:26.666667pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:33.600000pt;}
.fs8{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:85.333333pt;}
.fs6{font-size:162.868800pt;}
.y56{bottom:-23.286800pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:75.735200pt;}
.y2d{bottom:76.403867pt;}
.y64{bottom:76.989200pt;}
.y55{bottom:77.218533pt;}
.yaa{bottom:77.439867pt;}
.y7f{bottom:92.227200pt;}
.y63{bottom:93.481200pt;}
.y54{bottom:93.710533pt;}
.y2c{bottom:98.399867pt;}
.ya9{bottom:99.423867pt;}
.y7e{bottom:108.719200pt;}
.y62{bottom:109.973200pt;}
.y53{bottom:110.202533pt;}
.y2b{bottom:112.931867pt;}
.ya8{bottom:113.955867pt;}
.y7d{bottom:125.211200pt;}
.y61{bottom:126.465200pt;}
.y52{bottom:126.694533pt;}
.y2a{bottom:127.463867pt;}
.ya7{bottom:128.487867pt;}
.y7c{bottom:141.703200pt;}
.y29{bottom:141.995867pt;}
.y60{bottom:142.957200pt;}
.ya6{bottom:143.019867pt;}
.y51{bottom:143.186533pt;}
.y28{bottom:156.527867pt;}
.ya5{bottom:157.551867pt;}
.y7b{bottom:158.195200pt;}
.y5f{bottom:159.449200pt;}
.y50{bottom:159.678533pt;}
.y27{bottom:171.059867pt;}
.ya4{bottom:172.083867pt;}
.y7a{bottom:174.687200pt;}
.y5e{bottom:175.941200pt;}
.y4f{bottom:176.170533pt;}
.y26{bottom:185.591867pt;}
.ya3{bottom:186.615867pt;}
.y79{bottom:191.179200pt;}
.y5d{bottom:192.433200pt;}
.y4e{bottom:192.662533pt;}
.y25{bottom:200.123867pt;}
.y78{bottom:207.671200pt;}
.y5c{bottom:208.925200pt;}
.y4d{bottom:209.154533pt;}
.y24{bottom:214.655867pt;}
.y77{bottom:224.163200pt;}
.y5b{bottom:225.417200pt;}
.y4c{bottom:225.646533pt;}
.y23{bottom:229.187867pt;}
.y76{bottom:240.655200pt;}
.y5a{bottom:241.909200pt;}
.y4b{bottom:242.138533pt;}
.y75{bottom:257.147200pt;}
.y59{bottom:258.401200pt;}
.y4a{bottom:258.630533pt;}
.y74{bottom:273.639200pt;}
.y58{bottom:274.893200pt;}
.y49{bottom:275.122533pt;}
.y73{bottom:290.131200pt;}
.y57{bottom:291.385200pt;}
.ya2{bottom:291.448533pt;}
.y48{bottom:291.614533pt;}
.y72{bottom:306.623200pt;}
.y22{bottom:307.877200pt;}
.ya1{bottom:307.940533pt;}
.y47{bottom:308.106533pt;}
.y71{bottom:323.115200pt;}
.y21{bottom:324.369200pt;}
.ya0{bottom:324.432533pt;}
.y46{bottom:324.598533pt;}
.y70{bottom:339.607200pt;}
.y20{bottom:340.861200pt;}
.y9f{bottom:340.924533pt;}
.y45{bottom:341.090533pt;}
.y6f{bottom:356.099200pt;}
.y1f{bottom:357.353200pt;}
.y9e{bottom:357.416533pt;}
.y44{bottom:357.582533pt;}
.y6e{bottom:372.591200pt;}
.y1e{bottom:373.845200pt;}
.y9d{bottom:373.908533pt;}
.y43{bottom:374.074533pt;}
.y6d{bottom:389.083200pt;}
.y1d{bottom:390.337200pt;}
.y9c{bottom:390.400533pt;}
.y42{bottom:390.566533pt;}
.y6c{bottom:405.575200pt;}
.y1c{bottom:406.829200pt;}
.y9b{bottom:406.892533pt;}
.y41{bottom:407.058533pt;}
.y6b{bottom:422.067200pt;}
.y1b{bottom:423.321200pt;}
.y9a{bottom:423.384533pt;}
.y40{bottom:423.550533pt;}
.y6a{bottom:438.559200pt;}
.y1a{bottom:439.813200pt;}
.y99{bottom:439.876533pt;}
.y3f{bottom:440.042533pt;}
.y69{bottom:455.051200pt;}
.y19{bottom:456.305200pt;}
.y98{bottom:456.368533pt;}
.y3e{bottom:456.534533pt;}
.y68{bottom:471.543200pt;}
.y18{bottom:472.797200pt;}
.y97{bottom:472.860533pt;}
.y3d{bottom:473.026533pt;}
.y67{bottom:488.035200pt;}
.y17{bottom:489.289200pt;}
.y96{bottom:489.352533pt;}
.y3c{bottom:489.518533pt;}
.y66{bottom:504.527200pt;}
.y16{bottom:505.781200pt;}
.y95{bottom:505.844533pt;}
.y3b{bottom:506.010533pt;}
.y65{bottom:521.019200pt;}
.y15{bottom:522.273200pt;}
.y94{bottom:522.336533pt;}
.y3a{bottom:522.502533pt;}
.y14{bottom:538.765200pt;}
.y93{bottom:538.828533pt;}
.y39{bottom:538.994533pt;}
.y13{bottom:555.257200pt;}
.y92{bottom:555.320533pt;}
.y38{bottom:555.486533pt;}
.y81{bottom:570.938533pt;}
.y12{bottom:571.749200pt;}
.y91{bottom:571.812533pt;}
.y37{bottom:571.978533pt;}
.y11{bottom:588.241200pt;}
.y90{bottom:588.304533pt;}
.y36{bottom:588.470533pt;}
.y10{bottom:604.733200pt;}
.y8f{bottom:604.796533pt;}
.y35{bottom:604.962533pt;}
.yf{bottom:621.225200pt;}
.y8e{bottom:621.288533pt;}
.y34{bottom:621.454533pt;}
.ye{bottom:637.717200pt;}
.y8d{bottom:637.780533pt;}
.y33{bottom:637.946533pt;}
.yd{bottom:654.209200pt;}
.y8c{bottom:654.272533pt;}
.y32{bottom:654.438533pt;}
.yc{bottom:670.701200pt;}
.y8b{bottom:670.764533pt;}
.y31{bottom:670.930533pt;}
.yb{bottom:687.193200pt;}
.y8a{bottom:687.256533pt;}
.y2f{bottom:687.421200pt;}
.y30{bottom:687.422533pt;}
.ya{bottom:703.685200pt;}
.y89{bottom:703.748533pt;}
.y9{bottom:720.177200pt;}
.y88{bottom:720.240533pt;}
.y8{bottom:736.669200pt;}
.y87{bottom:736.732533pt;}
.y7{bottom:753.161200pt;}
.y86{bottom:753.224533pt;}
.y6{bottom:769.653200pt;}
.y85{bottom:769.716533pt;}
.y5{bottom:786.145200pt;}
.y84{bottom:786.208533pt;}
.y4{bottom:802.637200pt;}
.y83{bottom:802.700533pt;}
.y2e{bottom:813.005200pt;}
.y3{bottom:819.129200pt;}
.y82{bottom:819.192533pt;}
.y2{bottom:871.454533pt;}
.y1{bottom:872.289200pt;}
.h2{height:22.933333pt;}
.h9{height:23.578125pt;}
.hb{height:37.077333pt;}
.hc{height:41.568000pt;}
.h5{height:41.712000pt;}
.h6{height:43.488000pt;}
.ha{height:43.701333pt;}
.h4{height:45.904000pt;}
.h3{height:47.040000pt;}
.h7{height:74.154667pt;}
.h8{height:141.532987pt;}
.h1{height:926.000000pt;}
.h0{height:926.299867pt;}
.w0{width:634.388800pt;}
.w1{width:634.666667pt;}
.x0{left:0.000000pt;}
.xe{left:13.642000pt;}
.x8{left:21.642000pt;}
.x2{left:43.879200pt;}
.xa{left:75.899333pt;}
.xb{left:87.248667pt;}
.x1{left:91.458267pt;}
.x3{left:102.796800pt;}
.x4{left:220.375467pt;}
.xc{left:325.356667pt;}
.xd{left:336.693333pt;}
.x6{left:340.907467pt;}
.x5{left:352.246133pt;}
.x7{left:362.771467pt;}
.xf{left:402.743467pt;}
.x9{left:445.420800pt;}
}




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