
    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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ff29dc6a39da69ee437bf082.woff')format("woff");}.ff2{font-family:ff2;line-height:1.049000;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_e794dcc4603c3c4e4602c469.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899902;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_ec975071da8e7f0015e6db68.woff')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_e12d7e5df68ba2af9dc23eee.woff')format("woff");}.ff5{font-family:ff5;line-height:0.920000;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_27cb87684c015e73b2543e3e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.920000;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_a18ab1022984d12d78cb73bd.woff')format("woff");}.ff7{font-family:ff7;line-height:1.049000;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_fb8e143ad17db753f9e5022f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112000;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_22f417892faa424782985070.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_399e4a4b8cf8524ef264bbbe.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b4ee26ed240b6aeba9ba24d1.woff')format("woff");}.ffb{font-family:ffb;line-height:1.018000;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_f1b470b37962858f1fa2ea90.woff')format("woff");}.ffc{font-family:ffc;line-height:1.018000;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_a0099be25bd559adb8fdddb5.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a88bbe05889b2101b40ff16a.woff')format("woff");}.ffe{font-family:ffe;line-height:1.009000;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_5d123772bb4c8abe91c34807.woff')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d6b4997f8c23b1bf9a8af556.woff')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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m5{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.392400px;}
.ls1c{letter-spacing:-0.385800px;}
.ls9{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.277800px;}
.ls11{letter-spacing:-0.227682px;}
.ls1d{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.136800px;}
.ls20{letter-spacing:-0.103200px;}
.ls1b{letter-spacing:-0.067200px;}
.ls13{letter-spacing:-0.061800px;}
.lsf{letter-spacing:-0.013680px;}
.ls7{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.040320px;}
.ls3{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.126600px;}
.ls17{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.150000px;}
.lsb{letter-spacing:0.184200px;}
.ls0{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.249120px;}
.ls10{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.316800px;}
.lse{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.378720px;}
.ls1e{letter-spacing:0.406800px;}
.lsd{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.648000px;}
.ls19{letter-spacing:0.720000px;}
.ls5{letter-spacing:4.536000px;}
.ls4{letter-spacing:30.456000px;}
.ls14{letter-spacing:54.840000px;}
.ls6{letter-spacing:846.300000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(145,25,56),0 0.015em rgb(145,25,56),0.015em 0 rgb(145,25,56),0 -0.015em  rgb(145,25,56);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(145,25,56);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15{word-spacing:-72.000000px;}
.ws2{word-spacing:-19.944000px;}
.ws1{word-spacing:-19.872000px;}
.wsc{word-spacing:-19.277052px;}
.ws5{word-spacing:-19.152000px;}
.ws6{word-spacing:-19.080000px;}
.ws7{word-spacing:-19.051200px;}
.wsa{word-spacing:-18.792000px;}
.ws13{word-spacing:-18.648000px;}
.wsb{word-spacing:-18.504000px;}
.ws14{word-spacing:-18.360000px;}
.ws16{word-spacing:-18.288000px;}
.ws4{word-spacing:-17.207880px;}
.ws3{word-spacing:-17.023680px;}
.ws12{word-spacing:-15.484920px;}
.ws11{word-spacing:-15.358320px;}
.wsd{word-spacing:-12.397680px;}
.wsf{word-spacing:-12.335880px;}
.wse{word-spacing:-12.119880px;}
.ws10{word-spacing:-12.109680px;}
.ws0{word-spacing:-0.156240px;}
.ws9{word-spacing:-0.142560px;}
.ws8{word-spacing:0.000000px;}
._1e{margin-left:-4.632000px;}
._1b{margin-left:-3.384000px;}
._14{margin-left:-2.376000px;}
._1{margin-left:-1.157760px;}
._2{width:1.127520px;}
._f{width:2.237280px;}
._1a{width:3.439680px;}
._d{width:4.464000px;}
._e{width:5.496480px;}
._22{width:7.377600px;}
._21{width:8.626320px;}
._12{width:10.296000px;}
._13{width:11.820000px;}
._a{width:12.847680px;}
._9{width:13.942080px;}
._1d{width:15.069600px;}
._19{width:16.794720px;}
._5{width:18.173280px;}
._23{width:19.784880px;}
._15{width:21.240000px;}
._16{width:22.500480px;}
._8{width:23.917440px;}
._7{width:25.948800px;}
._6{width:27.371520px;}
._11{width:28.667520px;}
._3{width:29.712000px;}
._4{width:31.440000px;}
._10{width:32.712480px;}
._17{width:33.888000px;}
._b{width:35.928000px;}
._c{width:36.936480px;}
._2c{width:39.888000px;}
._2b{width:41.760000px;}
._29{width:43.632000px;}
._2a{width:44.748000px;}
._26{width:45.892080px;}
._28{width:47.208000px;}
._27{width:48.365040px;}
._24{width:51.155791px;}
._25{width:52.157327px;}
._18{width:54.485760px;}
._1c{width:56.952000px;}
._1f{width:92.496480px;}
._20{width:179.784000px;}
._0{width:1481.489760px;}
.fc5{color:rgb(21,27,28);}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(145,25,56);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsb{font-size:59.760000px;}
.fsc{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:74.880000px;}
.fsa{font-size:75.893905px;}
.fs9{font-size:77.760000px;}
.fsd{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.yd{bottom:-5.940000px;}
.y0{bottom:0.000000px;}
.y83{bottom:3.780000px;}
.y8{bottom:4.320000px;}
.yc{bottom:5.400000px;}
.y3c{bottom:6.660000px;}
.y80{bottom:11.700000px;}
.yb{bottom:16.740000px;}
.y6{bottom:19.650000px;}
.y88{bottom:21.960000px;}
.y82{bottom:22.140000px;}
.ya{bottom:24.156000px;}
.y7{bottom:26.820000px;}
.y3b{bottom:30.450000px;}
.y3d{bottom:39.450000px;}
.y8c{bottom:40.320000px;}
.y85{bottom:40.500000px;}
.y9{bottom:47.520000px;}
.y3a{bottom:54.210000px;}
.y4{bottom:58.320000px;}
.y8b{bottom:58.500000px;}
.y90{bottom:58.530000px;}
.y8e{bottom:58.680000px;}
.y8a{bottom:76.860000px;}
.y3{bottom:78.156000px;}
.y2{bottom:98.676000px;}
.y7e{bottom:117.396000px;}
.ya3{bottom:126.576000px;}
.y5{bottom:131.220000px;}
.y7d{bottom:131.976000px;}
.y7c{bottom:136.476000px;}
.y7b{bottom:146.736000px;}
.ya2{bottom:148.536000px;}
.y7a{bottom:161.310000px;}
.y79{bottom:165.810000px;}
.ya1{bottom:170.490000px;}
.y78{bottom:175.890000px;}
.y77{bottom:190.470000px;}
.ya0{bottom:193.170000px;}
.y76{bottom:205.230000px;}
.y75{bottom:209.730000px;}
.y9f{bottom:215.130000px;}
.y74{bottom:219.810000px;}
.y73{bottom:234.390000px;}
.y9e{bottom:237.630000px;}
.y72{bottom:238.890000px;}
.y71{bottom:248.970000px;}
.y9d{bottom:259.590000px;}
.y70{bottom:263.730000px;}
.y6f{bottom:268.230000px;}
.y38{bottom:270.390000px;}
.y6e{bottom:278.310000px;}
.y9c{bottom:281.550000px;}
.y37{bottom:292.350000px;}
.y6d{bottom:292.890000px;}
.y6c{bottom:297.390000px;}
.y9b{bottom:303.510000px;}
.y6b{bottom:307.470000px;}
.y36{bottom:314.310000px;}
.y6a{bottom:322.230000px;}
.y9a{bottom:325.470000px;}
.y69{bottom:326.730000px;}
.y35{bottom:336.270000px;}
.y68{bottom:336.855000px;}
.y99{bottom:347.475000px;}
.y67{bottom:351.435000px;}
.y66{bottom:355.935000px;}
.yba{bottom:358.095000px;}
.y34{bottom:358.275000px;}
.y65{bottom:367.455000px;}
.y98{bottom:369.435000px;}
.y33{bottom:380.055000px;}
.y97{bottom:391.395000px;}
.y32{bottom:402.015000px;}
.y64{bottom:403.275000px;}
.y96{bottom:413.355000px;}
.yb9{bottom:423.795000px;}
.y31{bottom:423.975000px;}
.y63{bottom:425.235000px;}
.y95{bottom:435.315000px;}
.y30{bottom:445.935000px;}
.y62{bottom:447.195000px;}
.yb8{bottom:448.635000px;}
.y94{bottom:457.095000px;}
.y2f{bottom:467.895000px;}
.y61{bottom:468.975000px;}
.yb7{bottom:470.595000px;}
.y93{bottom:479.055000px;}
.y2e{bottom:489.855000px;}
.y60{bottom:490.935000px;}
.yb6{bottom:492.555000px;}
.y92{bottom:501.015000px;}
.y2d{bottom:511.815000px;}
.y5f{bottom:512.895000px;}
.yb5{bottom:517.395000px;}
.y91{bottom:519.195000px;}
.y2c{bottom:533.775000px;}
.y5e{bottom:534.855000px;}
.yb4{bottom:539.355000px;}
.y2b{bottom:555.735000px;}
.y8f{bottom:556.635000px;}
.y5d{bottom:556.815000px;}
.yb3{bottom:561.315000px;}
.y2a{bottom:577.695000px;}
.y5c{bottom:578.775000px;}
.yb2{bottom:583.275000px;}
.y29{bottom:599.475000px;}
.y5b{bottom:600.735000px;}
.yb1{bottom:608.145000px;}
.y28{bottom:621.465000px;}
.y5a{bottom:622.725000px;}
.yb0{bottom:630.105000px;}
.y8d{bottom:630.465000px;}
.y27{bottom:643.065000px;}
.y59{bottom:644.685000px;}
.yaf{bottom:652.065000px;}
.y26{bottom:664.665000px;}
.y58{bottom:666.645000px;}
.y25{bottom:676.185000px;}
.yae{bottom:676.905000px;}
.y57{bottom:688.425000px;}
.y24{bottom:696.165000px;}
.yad{bottom:698.865000px;}
.y89{bottom:704.445000px;}
.y56{bottom:710.385000px;}
.y23{bottom:716.325000px;}
.yac{bottom:723.705000px;}
.y55{bottom:732.345000px;}
.y22{bottom:736.485000px;}
.yab{bottom:745.665000px;}
.y54{bottom:754.305000px;}
.y21{bottom:756.645000px;}
.yaa{bottom:767.625000px;}
.y53{bottom:776.265000px;}
.y20{bottom:776.625000px;}
.ya9{bottom:789.585000px;}
.y87{bottom:796.605000px;}
.y1f{bottom:796.785000px;}
.y52{bottom:798.225000px;}
.ya8{bottom:814.425000px;}
.y1e{bottom:816.945000px;}
.y51{bottom:820.185000px;}
.y86{bottom:833.865000px;}
.ya7{bottom:836.205000px;}
.y1d{bottom:837.105000px;}
.y50{bottom:842.145000px;}
.y1c{bottom:857.085000px;}
.ya6{bottom:858.165000px;}
.y4f{bottom:864.105000px;}
.y84{bottom:871.170000px;}
.y1b{bottom:877.290000px;}
.ya5{bottom:883.050000px;}
.y4e{bottom:886.110000px;}
.y1a{bottom:894.390000px;}
.y19{bottom:903.210000px;}
.ya4{bottom:905.010000px;}
.y4d{bottom:907.890000px;}
.y18{bottom:922.470000px;}
.y81{bottom:926.790000px;}
.y4c{bottom:929.850000px;}
.y17{bottom:935.430000px;}
.y16{bottom:947.310000px;}
.y4b{bottom:951.810000px;}
.y7f{bottom:964.230000px;}
.y15{bottom:969.090000px;}
.y4a{bottom:973.770000px;}
.y14{bottom:991.050000px;}
.y49{bottom:995.730000px;}
.y13{bottom:1013.010000px;}
.y48{bottom:1017.690000px;}
.y47{bottom:1039.650000px;}
.y12{bottom:1056.210000px;}
.y46{bottom:1061.610000px;}
.y11{bottom:1079.070000px;}
.y44{bottom:1083.570000px;}
.y45{bottom:1089.510000px;}
.y42{bottom:1105.530000px;}
.y43{bottom:1111.470000px;}
.y39{bottom:1125.510000px;}
.y41{bottom:1127.310000px;}
.y10{bottom:1132.710000px;}
.y3f{bottom:1149.300000px;}
.yf{bottom:1152.900000px;}
.y40{bottom:1155.240000px;}
.y3e{bottom:1171.260000px;}
.ye{bottom:1173.060000px;}
.y1{bottom:1193.220000px;}
.ha{height:15.336000px;}
.h11{height:16.398000px;}
.h6{height:17.280000px;}
.h1a{height:26.280000px;}
.hf{height:27.548640px;}
.h13{height:29.635200px;}
.hc{height:30.672000px;}
.hb{height:35.579520px;}
.h8{height:35.676000px;}
.h9{height:36.228240px;}
.h1c{height:36.540000px;}
.h7{height:39.315600px;}
.h17{height:40.924800px;}
.h19{height:47.275200px;}
.h1d{height:54.900000px;}
.hd{height:56.234880px;}
.h3{height:56.436480px;}
.h1b{height:58.564800px;}
.h1e{height:61.732102px;}
.h16{height:63.374400px;}
.h12{height:64.915200px;}
.h10{height:65.592000px;}
.h2{height:65.884219px;}
.he{height:70.560000px;}
.h20{height:73.080000px;}
.h15{height:73.116000px;}
.h21{height:74.004654px;}
.h18{height:74.376027px;}
.h14{height:74.953125px;}
.h22{height:82.555200px;}
.h23{height:86.585445px;}
.h1f{height:91.440000px;}
.h5{height:121.070742px;}
.h4{height:210.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:43.380000px;}
.w8{width:137.340000px;}
.w9{width:158.790000px;}
.w4{width:317.415000px;}
.wa{width:402.915000px;}
.w6{width:438.195000px;}
.w5{width:797.400000px;}
.w7{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:5.910000px;}
.x34{left:7.740000px;}
.x40{left:9.180000px;}
.xe{left:17.640000px;}
.x43{left:18.900000px;}
.x41{left:26.505000px;}
.xf{left:28.080000px;}
.x3d{left:31.365000px;}
.x32{left:32.940000px;}
.x3b{left:34.560000px;}
.x33{left:36.225000px;}
.x3e{left:39.054000px;}
.x38{left:40.674000px;}
.x2e{left:41.754000px;}
.x42{left:45.894000px;}
.x46{left:47.745000px;}
.x35{left:48.774000px;}
.x36{left:59.250000px;}
.x39{left:63.945000px;}
.x3c{left:68.574000px;}
.x6{left:70.740000px;}
.x3a{left:79.425000px;}
.x1{left:80.999987px;}
.x28{left:83.699987px;}
.x29{left:85.319987px;}
.x4e{left:98.135987px;}
.x5{left:105.165000px;}
.x2d{left:113.436000px;}
.x2a{left:127.475987px;}
.xc{left:134.135987px;}
.xa{left:140.255987px;}
.x10{left:146.880000px;}
.x4c{left:151.769987px;}
.x4f{left:156.089987px;}
.x50{left:158.069987px;}
.x4b{left:162.029987px;}
.x3f{left:163.290000px;}
.x1f{left:169.229973px;}
.x4d{left:170.849987px;}
.x20{left:175.889987px;}
.x31{left:183.810000px;}
.x4a{left:212.609987px;}
.x44{left:233.310000px;}
.x21{left:242.129987px;}
.x2f{left:251.490000px;}
.xd{left:285.735000px;}
.x27{left:297.074987px;}
.x25{left:303.734987px;}
.x45{left:334.335000px;}
.xb{left:347.114987px;}
.x2c{left:361.874987px;}
.x37{left:381.675000px;}
.x47{left:387.254987px;}
.x11{left:401.294973px;}
.x12{left:405.074987px;}
.x30{left:411.015000px;}
.x9{left:487.905000px;}
.x13{left:511.664973px;}
.x14{left:517.604987px;}
.x49{left:528.944987px;}
.x4{left:554.145000px;}
.x19{left:573.944973px;}
.x1a{left:579.704987px;}
.x26{left:587.444987px;}
.x22{left:616.064987px;}
.x48{left:631.004987px;}
.x23{left:636.584987px;}
.x24{left:640.004987px;}
.x15{left:668.129973px;}
.x16{left:673.889987px;}
.x1b{left:680.909973px;}
.x1c{left:687.209987px;}
.x7{left:720.690000px;}
.x2b{left:763.889987px;}
.x8{left:786.600000px;}
.x17{left:795.029973px;}
.x18{left:801.869987px;}
.x1d{left:819.689973px;}
.x1e{left:825.809987px;}
.x2{left:829.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.348800pt;}
.ls1c{letter-spacing:-0.342933pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.246933pt;}
.ls11{letter-spacing:-0.202384pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.121600pt;}
.ls20{letter-spacing:-0.091733pt;}
.ls1b{letter-spacing:-0.059733pt;}
.ls13{letter-spacing:-0.054933pt;}
.lsf{letter-spacing:-0.012160pt;}
.ls7{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.035840pt;}
.ls3{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.112533pt;}
.ls17{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.133333pt;}
.lsb{letter-spacing:0.163733pt;}
.ls0{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.221440pt;}
.ls10{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.281600pt;}
.lse{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.336640pt;}
.ls1e{letter-spacing:0.361600pt;}
.lsd{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.576000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls5{letter-spacing:4.032000pt;}
.ls4{letter-spacing:27.072000pt;}
.ls14{letter-spacing:48.746667pt;}
.ls6{letter-spacing:752.266667pt;}
.ws15{word-spacing:-64.000000pt;}
.ws2{word-spacing:-17.728000pt;}
.ws1{word-spacing:-17.664000pt;}
.wsc{word-spacing:-17.135157pt;}
.ws5{word-spacing:-17.024000pt;}
.ws6{word-spacing:-16.960000pt;}
.ws7{word-spacing:-16.934400pt;}
.wsa{word-spacing:-16.704000pt;}
.ws13{word-spacing:-16.576000pt;}
.wsb{word-spacing:-16.448000pt;}
.ws14{word-spacing:-16.320000pt;}
.ws16{word-spacing:-16.256000pt;}
.ws4{word-spacing:-15.295893pt;}
.ws3{word-spacing:-15.132160pt;}
.ws12{word-spacing:-13.764373pt;}
.ws11{word-spacing:-13.651840pt;}
.wsd{word-spacing:-11.020160pt;}
.wsf{word-spacing:-10.965227pt;}
.wse{word-spacing:-10.773227pt;}
.ws10{word-spacing:-10.764160pt;}
.ws0{word-spacing:-0.138880pt;}
.ws9{word-spacing:-0.126720pt;}
.ws8{word-spacing:0.000000pt;}
._1e{margin-left:-4.117333pt;}
._1b{margin-left:-3.008000pt;}
._14{margin-left:-2.112000pt;}
._1{margin-left:-1.029120pt;}
._2{width:1.002240pt;}
._f{width:1.988693pt;}
._1a{width:3.057493pt;}
._d{width:3.968000pt;}
._e{width:4.885760pt;}
._22{width:6.557867pt;}
._21{width:7.667840pt;}
._12{width:9.152000pt;}
._13{width:10.506667pt;}
._a{width:11.420160pt;}
._9{width:12.392960pt;}
._1d{width:13.395200pt;}
._19{width:14.928640pt;}
._5{width:16.154027pt;}
._23{width:17.586560pt;}
._15{width:18.880000pt;}
._16{width:20.000427pt;}
._8{width:21.259947pt;}
._7{width:23.065600pt;}
._6{width:24.330240pt;}
._11{width:25.482240pt;}
._3{width:26.410667pt;}
._4{width:27.946667pt;}
._10{width:29.077760pt;}
._17{width:30.122667pt;}
._b{width:31.936000pt;}
._c{width:32.832427pt;}
._2c{width:35.456000pt;}
._2b{width:37.120000pt;}
._29{width:38.784000pt;}
._2a{width:39.776000pt;}
._26{width:40.792960pt;}
._28{width:41.962667pt;}
._27{width:42.991147pt;}
._24{width:45.471814pt;}
._25{width:46.362069pt;}
._18{width:48.431787pt;}
._1c{width:50.624000pt;}
._1f{width:82.219093pt;}
._20{width:159.808000pt;}
._0{width:1316.879787pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsb{font-size:53.120000pt;}
.fsc{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:66.560000pt;}
.fsa{font-size:67.461249pt;}
.fs9{font-size:69.120000pt;}
.fsd{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.yd{bottom:-5.280000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:3.360000pt;}
.y8{bottom:3.840000pt;}
.yc{bottom:4.800000pt;}
.y3c{bottom:5.920000pt;}
.y80{bottom:10.400000pt;}
.yb{bottom:14.880000pt;}
.y6{bottom:17.466667pt;}
.y88{bottom:19.520000pt;}
.y82{bottom:19.680000pt;}
.ya{bottom:21.472000pt;}
.y7{bottom:23.840000pt;}
.y3b{bottom:27.066667pt;}
.y3d{bottom:35.066667pt;}
.y8c{bottom:35.840000pt;}
.y85{bottom:36.000000pt;}
.y9{bottom:42.240000pt;}
.y3a{bottom:48.186667pt;}
.y4{bottom:51.840000pt;}
.y8b{bottom:52.000000pt;}
.y90{bottom:52.026667pt;}
.y8e{bottom:52.160000pt;}
.y8a{bottom:68.320000pt;}
.y3{bottom:69.472000pt;}
.y2{bottom:87.712000pt;}
.y7e{bottom:104.352000pt;}
.ya3{bottom:112.512000pt;}
.y5{bottom:116.640000pt;}
.y7d{bottom:117.312000pt;}
.y7c{bottom:121.312000pt;}
.y7b{bottom:130.432000pt;}
.ya2{bottom:132.032000pt;}
.y7a{bottom:143.386667pt;}
.y79{bottom:147.386667pt;}
.ya1{bottom:151.546667pt;}
.y78{bottom:156.346667pt;}
.y77{bottom:169.306667pt;}
.ya0{bottom:171.706667pt;}
.y76{bottom:182.426667pt;}
.y75{bottom:186.426667pt;}
.y9f{bottom:191.226667pt;}
.y74{bottom:195.386667pt;}
.y73{bottom:208.346667pt;}
.y9e{bottom:211.226667pt;}
.y72{bottom:212.346667pt;}
.y71{bottom:221.306667pt;}
.y9d{bottom:230.746667pt;}
.y70{bottom:234.426667pt;}
.y6f{bottom:238.426667pt;}
.y38{bottom:240.346667pt;}
.y6e{bottom:247.386667pt;}
.y9c{bottom:250.266667pt;}
.y37{bottom:259.866667pt;}
.y6d{bottom:260.346667pt;}
.y6c{bottom:264.346667pt;}
.y9b{bottom:269.786667pt;}
.y6b{bottom:273.306667pt;}
.y36{bottom:279.386667pt;}
.y6a{bottom:286.426667pt;}
.y9a{bottom:289.306667pt;}
.y69{bottom:290.426667pt;}
.y35{bottom:298.906667pt;}
.y68{bottom:299.426667pt;}
.y99{bottom:308.866667pt;}
.y67{bottom:312.386667pt;}
.y66{bottom:316.386667pt;}
.yba{bottom:318.306667pt;}
.y34{bottom:318.466667pt;}
.y65{bottom:326.626667pt;}
.y98{bottom:328.386667pt;}
.y33{bottom:337.826667pt;}
.y97{bottom:347.906667pt;}
.y32{bottom:357.346667pt;}
.y64{bottom:358.466667pt;}
.y96{bottom:367.426667pt;}
.yb9{bottom:376.706667pt;}
.y31{bottom:376.866667pt;}
.y63{bottom:377.986667pt;}
.y95{bottom:386.946667pt;}
.y30{bottom:396.386667pt;}
.y62{bottom:397.506667pt;}
.yb8{bottom:398.786667pt;}
.y94{bottom:406.306667pt;}
.y2f{bottom:415.906667pt;}
.y61{bottom:416.866667pt;}
.yb7{bottom:418.306667pt;}
.y93{bottom:425.826667pt;}
.y2e{bottom:435.426667pt;}
.y60{bottom:436.386667pt;}
.yb6{bottom:437.826667pt;}
.y92{bottom:445.346667pt;}
.y2d{bottom:454.946667pt;}
.y5f{bottom:455.906667pt;}
.yb5{bottom:459.906667pt;}
.y91{bottom:461.506667pt;}
.y2c{bottom:474.466667pt;}
.y5e{bottom:475.426667pt;}
.yb4{bottom:479.426667pt;}
.y2b{bottom:493.986667pt;}
.y8f{bottom:494.786667pt;}
.y5d{bottom:494.946667pt;}
.yb3{bottom:498.946667pt;}
.y2a{bottom:513.506667pt;}
.y5c{bottom:514.466667pt;}
.yb2{bottom:518.466667pt;}
.y29{bottom:532.866667pt;}
.y5b{bottom:533.986667pt;}
.yb1{bottom:540.573333pt;}
.y28{bottom:552.413333pt;}
.y5a{bottom:553.533333pt;}
.yb0{bottom:560.093333pt;}
.y8d{bottom:560.413333pt;}
.y27{bottom:571.613333pt;}
.y59{bottom:573.053333pt;}
.yaf{bottom:579.613333pt;}
.y26{bottom:590.813333pt;}
.y58{bottom:592.573333pt;}
.y25{bottom:601.053333pt;}
.yae{bottom:601.693333pt;}
.y57{bottom:611.933333pt;}
.y24{bottom:618.813333pt;}
.yad{bottom:621.213333pt;}
.y89{bottom:626.173333pt;}
.y56{bottom:631.453333pt;}
.y23{bottom:636.733333pt;}
.yac{bottom:643.293333pt;}
.y55{bottom:650.973333pt;}
.y22{bottom:654.653333pt;}
.yab{bottom:662.813333pt;}
.y54{bottom:670.493333pt;}
.y21{bottom:672.573333pt;}
.yaa{bottom:682.333333pt;}
.y53{bottom:690.013333pt;}
.y20{bottom:690.333333pt;}
.ya9{bottom:701.853333pt;}
.y87{bottom:708.093333pt;}
.y1f{bottom:708.253333pt;}
.y52{bottom:709.533333pt;}
.ya8{bottom:723.933333pt;}
.y1e{bottom:726.173333pt;}
.y51{bottom:729.053333pt;}
.y86{bottom:741.213333pt;}
.ya7{bottom:743.293333pt;}
.y1d{bottom:744.093333pt;}
.y50{bottom:748.573333pt;}
.y1c{bottom:761.853333pt;}
.ya6{bottom:762.813333pt;}
.y4f{bottom:768.093333pt;}
.y84{bottom:774.373333pt;}
.y1b{bottom:779.813333pt;}
.ya5{bottom:784.933333pt;}
.y4e{bottom:787.653333pt;}
.y1a{bottom:795.013333pt;}
.y19{bottom:802.853333pt;}
.ya4{bottom:804.453333pt;}
.y4d{bottom:807.013333pt;}
.y18{bottom:819.973333pt;}
.y81{bottom:823.813333pt;}
.y4c{bottom:826.533333pt;}
.y17{bottom:831.493333pt;}
.y16{bottom:842.053333pt;}
.y4b{bottom:846.053333pt;}
.y7f{bottom:857.093333pt;}
.y15{bottom:861.413333pt;}
.y4a{bottom:865.573333pt;}
.y14{bottom:880.933333pt;}
.y49{bottom:885.093333pt;}
.y13{bottom:900.453333pt;}
.y48{bottom:904.613333pt;}
.y47{bottom:924.133333pt;}
.y12{bottom:938.853333pt;}
.y46{bottom:943.653333pt;}
.y11{bottom:959.173333pt;}
.y44{bottom:963.173333pt;}
.y45{bottom:968.453333pt;}
.y42{bottom:982.693333pt;}
.y43{bottom:987.973333pt;}
.y39{bottom:1000.453333pt;}
.y41{bottom:1002.053333pt;}
.y10{bottom:1006.853333pt;}
.y3f{bottom:1021.600000pt;}
.yf{bottom:1024.800000pt;}
.y40{bottom:1026.880000pt;}
.y3e{bottom:1041.120000pt;}
.ye{bottom:1042.720000pt;}
.y1{bottom:1060.640000pt;}
.ha{height:13.632000pt;}
.h11{height:14.576000pt;}
.h6{height:15.360000pt;}
.h1a{height:23.360000pt;}
.hf{height:24.487680pt;}
.h13{height:26.342400pt;}
.hc{height:27.264000pt;}
.hb{height:31.626240pt;}
.h8{height:31.712000pt;}
.h9{height:32.202880pt;}
.h1c{height:32.480000pt;}
.h7{height:34.947200pt;}
.h17{height:36.377600pt;}
.h19{height:42.022400pt;}
.h1d{height:48.800000pt;}
.hd{height:49.986560pt;}
.h3{height:50.165760pt;}
.h1b{height:52.057600pt;}
.h1e{height:54.872980pt;}
.h16{height:56.332800pt;}
.h12{height:57.702400pt;}
.h10{height:58.304000pt;}
.h2{height:58.563750pt;}
.he{height:62.720000pt;}
.h20{height:64.960000pt;}
.h15{height:64.992000pt;}
.h21{height:65.781915pt;}
.h18{height:66.112024pt;}
.h14{height:66.625000pt;}
.h22{height:73.382400pt;}
.h23{height:76.964840pt;}
.h1f{height:81.280000pt;}
.h5{height:107.618438pt;}
.h4{height:187.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:38.560000pt;}
.w8{width:122.080000pt;}
.w9{width:141.146667pt;}
.w4{width:282.146667pt;}
.wa{width:358.146667pt;}
.w6{width:389.506667pt;}
.w5{width:708.800000pt;}
.w7{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:5.253333pt;}
.x34{left:6.880000pt;}
.x40{left:8.160000pt;}
.xe{left:15.680000pt;}
.x43{left:16.800000pt;}
.x41{left:23.560000pt;}
.xf{left:24.960000pt;}
.x3d{left:27.880000pt;}
.x32{left:29.280000pt;}
.x3b{left:30.720000pt;}
.x33{left:32.200000pt;}
.x3e{left:34.714667pt;}
.x38{left:36.154667pt;}
.x2e{left:37.114667pt;}
.x42{left:40.794667pt;}
.x46{left:42.440000pt;}
.x35{left:43.354667pt;}
.x36{left:52.666667pt;}
.x39{left:56.840000pt;}
.x3c{left:60.954667pt;}
.x6{left:62.880000pt;}
.x3a{left:70.600000pt;}
.x1{left:71.999988pt;}
.x28{left:74.399988pt;}
.x29{left:75.839988pt;}
.x4e{left:87.231988pt;}
.x5{left:93.480000pt;}
.x2d{left:100.832000pt;}
.x2a{left:113.311988pt;}
.xc{left:119.231988pt;}
.xa{left:124.671988pt;}
.x10{left:130.560000pt;}
.x4c{left:134.906655pt;}
.x4f{left:138.746655pt;}
.x50{left:140.506655pt;}
.x4b{left:144.026655pt;}
.x3f{left:145.146667pt;}
.x1f{left:150.426643pt;}
.x4d{left:151.866655pt;}
.x20{left:156.346655pt;}
.x31{left:163.386667pt;}
.x4a{left:188.986655pt;}
.x44{left:207.386667pt;}
.x21{left:215.226655pt;}
.x2f{left:223.546667pt;}
.xd{left:253.986667pt;}
.x27{left:264.066655pt;}
.x25{left:269.986655pt;}
.x45{left:297.186667pt;}
.xb{left:308.546655pt;}
.x2c{left:321.666655pt;}
.x37{left:339.266667pt;}
.x47{left:344.226655pt;}
.x11{left:356.706643pt;}
.x12{left:360.066655pt;}
.x30{left:365.346667pt;}
.x9{left:433.693333pt;}
.x13{left:454.813310pt;}
.x14{left:460.093322pt;}
.x49{left:470.173322pt;}
.x4{left:492.573333pt;}
.x19{left:510.173310pt;}
.x1a{left:515.293322pt;}
.x26{left:522.173322pt;}
.x22{left:547.613322pt;}
.x48{left:560.893322pt;}
.x23{left:565.853322pt;}
.x24{left:568.893322pt;}
.x15{left:593.893310pt;}
.x16{left:599.013322pt;}
.x1b{left:605.253310pt;}
.x1c{left:610.853322pt;}
.x7{left:640.613333pt;}
.x2b{left:679.013322pt;}
.x8{left:699.200000pt;}
.x17{left:706.693310pt;}
.x18{left:712.773322pt;}
.x1d{left:728.613310pt;}
.x1e{left:734.053322pt;}
.x2{left:737.120000pt;}
}




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