
    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_9d4fc372a58685523e28da6d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_02cd0f8e8f3893dba6132dac.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.139000;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_605dfacaa056a7c45af6467a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128000;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_986bab592d9e7a45da477f0a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8ea2a26c9f3523f92bd3bb7c.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-7.448922px;}
.ls7{letter-spacing:-7.101461px;}
.ls1{letter-spacing:-0.023797px;}
.ls2{letter-spacing:-0.007741px;}
.ls3{letter-spacing:-0.006685px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.005981px;}
.ls4{letter-spacing:0.006685px;}
.ls5{letter-spacing:0.012155px;}
.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;}
}
.ws68{word-spacing:-15.193200px;}
.wse{word-spacing:-4.861824px;}
.ws2c{word-spacing:-4.740278px;}
.ws7c{word-spacing:-4.350053px;}
.ws8b{word-spacing:-4.247283px;}
.ws99{word-spacing:-4.241301px;}
.ws79{word-spacing:-4.224989px;}
.ws84{word-spacing:-4.209220px;}
.ws4f{word-spacing:-1.033138px;}
.ws8c{word-spacing:-0.380630px;}
.ws1e{word-spacing:-0.364637px;}
.ws22{word-spacing:-0.335840px;}
.ws7f{word-spacing:-0.277316px;}
.ws2f{word-spacing:-0.182318px;}
.ws78{word-spacing:-0.163127px;}
.ws45{word-spacing:-0.134339px;}
.ws70{word-spacing:-0.121546px;}
.ws97{word-spacing:-0.114733px;}
.ws0{word-spacing:0.000000px;}
.ws23{word-spacing:0.044780px;}
.ws80{word-spacing:0.054376px;}
.ws94{word-spacing:0.108751px;}
.ws65{word-spacing:0.114861px;}
.ws88{word-spacing:0.163127px;}
.ws31{word-spacing:0.182318px;}
.ws2d{word-spacing:0.236406px;}
.ws91{word-spacing:0.282753px;}
.ws2a{word-spacing:0.364637px;}
.ws8d{word-spacing:0.402380px;}
.ws4a{word-spacing:0.425410px;}
.ws7b{word-spacing:0.489381px;}
.ws7a{word-spacing:0.570944px;}
.ws8f{word-spacing:0.614989px;}
.ws24{word-spacing:0.652508px;}
.ws12{word-spacing:0.668501px;}
.ws74{word-spacing:0.729274px;}
.ws4c{word-spacing:0.790046px;}
.ws81{word-spacing:0.891761px;}
.ws5a{word-spacing:0.911592px;}
.ws82{word-spacing:0.978762px;}
.ws49{word-spacing:1.020983px;}
.ws73{word-spacing:1.033138px;}
.ws71{word-spacing:1.100595px;}
.ws48{word-spacing:1.154683px;}
.ws4e{word-spacing:1.337002px;}
.ws6f{word-spacing:1.458547px;}
.ws72{word-spacing:1.477387px;}
.ws6{word-spacing:1.580093px;}
.ws5b{word-spacing:1.762411px;}
.ws63{word-spacing:1.823184px;}
.ws55{word-spacing:1.944730px;}
.ws39{word-spacing:2.066275px;}
.ws20{word-spacing:2.127048px;}
.ws75{word-spacing:2.187821px;}
.ws15{word-spacing:2.194506px;}
.wsc{word-spacing:2.248594px;}
.ws62{word-spacing:2.363454px;}
.ws14{word-spacing:2.491685px;}
.ws1{word-spacing:2.541010px;}
.ws3e{word-spacing:2.613230px;}
.ws4b{word-spacing:2.917094px;}
.ws59{word-spacing:2.977867px;}
.ws25{word-spacing:3.038640px;}
.ws89{word-spacing:3.072769px;}
.ws47{word-spacing:3.092728px;}
.ws17{word-spacing:3.160186px;}
.ws38{word-spacing:3.220958px;}
.ws3d{word-spacing:3.288416px;}
.wsa{word-spacing:3.403277px;}
.ws87{word-spacing:3.425667px;}
.ws2{word-spacing:3.455802px;}
.ws58{word-spacing:3.524822px;}
.ws4{word-spacing:3.585595px;}
.ws95{word-spacing:3.653501px;}
.ws5f{word-spacing:3.755759px;}
.ws8a{word-spacing:3.806296px;}
.ws3{word-spacing:3.828686px;}
.ws2b{word-spacing:3.950232px;}
.ws86{word-spacing:3.969423px;}
.ws10{word-spacing:4.071778px;}
.ws85{word-spacing:4.116237px;}
.ws61{word-spacing:4.132550px;}
.ws3c{word-spacing:4.193323px;}
.ws67{word-spacing:4.254096px;}
.ws83{word-spacing:4.393553px;}
.ws1d{word-spacing:4.436414px;}
.ws21{word-spacing:4.497187px;}
.ws96{word-spacing:4.497411px;}
.ws60{word-spacing:4.540336px;}
.ws1f{word-spacing:4.618733px;}
.ws3b{word-spacing:4.679506px;}
.ws30{word-spacing:4.740278px;}
.ws64{word-spacing:4.861824px;}
.ws54{word-spacing:5.044142px;}
.ws56{word-spacing:5.104915px;}
.ws13{word-spacing:5.591098px;}
.ws4d{word-spacing:5.651870px;}
.ws2e{word-spacing:5.773416px;}
.ws1a{word-spacing:5.955734px;}
.ws16{word-spacing:6.198826px;}
.ws35{word-spacing:6.259598px;}
.ws18{word-spacing:6.320371px;}
.ws5e{word-spacing:6.381144px;}
.ws42{word-spacing:6.466226px;}
.ws41{word-spacing:6.563462px;}
.ws11{word-spacing:6.624235px;}
.ws52{word-spacing:6.806554px;}
.ws50{word-spacing:6.867326px;}
.ws3a{word-spacing:6.928099px;}
.ws53{word-spacing:7.110418px;}
.ws1b{word-spacing:7.171190px;}
.wsd{word-spacing:7.231963px;}
.ws51{word-spacing:7.262957px;}
.ws1c{word-spacing:7.475054px;}
.ws36{word-spacing:7.839691px;}
.ws26{word-spacing:7.900464px;}
.ws7e{word-spacing:8.101973px;}
.ws7d{word-spacing:8.454871px;}
.ws27{word-spacing:8.508192px;}
.ws6b{word-spacing:8.556810px;}
.ws28{word-spacing:8.690510px;}
.ws76{word-spacing:8.751283px;}
.ws69{word-spacing:8.860674px;}
.ws34{word-spacing:8.872829px;}
.ws19{word-spacing:8.933602px;}
.ws6a{word-spacing:8.964596px;}
.ws7{word-spacing:9.055147px;}
.ws93{word-spacing:9.074754px;}
.ws6c{word-spacing:9.359011px;}
.ws5c{word-spacing:9.541330px;}
.ws6d{word-spacing:9.602102px;}
.ws5d{word-spacing:9.662875px;}
.ws8{word-spacing:9.723648px;}
.ws8e{word-spacing:9.820244px;}
.ws37{word-spacing:9.845194px;}
.ws33{word-spacing:9.966739px;}
.ws6e{word-spacing:10.088285px;}
.ws90{word-spacing:10.167705px;}
.ws32{word-spacing:10.398834px;}
.ws3f{word-spacing:10.574467px;}
.ws66{word-spacing:10.878331px;}
.ws9{word-spacing:10.999877px;}
.ws44{word-spacing:11.789923px;}
.ws43{word-spacing:12.458424px;}
.ws77{word-spacing:12.701515px;}
.wsf{word-spacing:12.823061px;}
.ws57{word-spacing:12.944606px;}
.wsb{word-spacing:13.066152px;}
.ws40{word-spacing:13.126925px;}
.ws98{word-spacing:13.158910px;}
.ws92{word-spacing:14.953306px;}
.ws29{word-spacing:15.314746px;}
.ws5{word-spacing:17.684885px;}
.ws46{word-spacing:769.959346px;}
._17{margin-left:-6.988872px;}
._b{margin-left:-5.459963px;}
._18{margin-left:-4.314869px;}
._9{margin-left:-3.144196px;}
._16{margin-left:-2.082265px;}
._1{margin-left:-1.055529px;}
._2{width:1.519320px;}
._11{width:3.304123px;}
._e{width:4.861824px;}
._12{width:8.012192px;}
._1b{width:9.067927px;}
._f{width:10.238623px;}
._13{width:12.672683px;}
._d{width:14.470328px;}
._6{width:15.663392px;}
._1a{width:16.888437px;}
._5{width:17.927976px;}
._3{width:19.933478px;}
._0{width:21.532792px;}
._10{width:22.693833px;}
._8{width:23.867720px;}
._7{width:25.790059px;}
._c{width:27.120659px;}
._15{width:28.297733px;}
._a{width:29.657126px;}
._19{width:31.828957px;}
._4{width:33.895232px;}
._14{width:667.134973px;}
.fc2{color:transparent;}
.fc1{color:rgb(191,50,65);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs9{font-size:44.779800px;}
.fs8{font-size:47.977200px;}
.fsa{font-size:54.375660px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:60.772800px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:70.368600px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:76.765200px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:8.370000px;}
.y4b{bottom:22.747500px;}
.y5{bottom:66.525004px;}
.y49{bottom:90.311850px;}
.y4{bottom:97.125005px;}
.y46{bottom:119.064139px;}
.y76{bottom:119.064263px;}
.y99{bottom:119.068365px;}
.y45{bottom:136.666981px;}
.y75{bottom:136.667105px;}
.y98{bottom:136.671207px;}
.y23{bottom:139.264499px;}
.y44{bottom:154.269822px;}
.y74{bottom:154.269946px;}
.y97{bottom:154.274048px;}
.y43{bottom:171.872664px;}
.y73{bottom:171.872788px;}
.y96{bottom:171.876890px;}
.yba{bottom:173.474077px;}
.y42{bottom:189.390423px;}
.y72{bottom:189.390547px;}
.y95{bottom:189.394649px;}
.yb9{bottom:189.461880px;}
.y1a{bottom:196.933500px;}
.y41{bottom:206.993265px;}
.y71{bottom:206.993389px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.yb8{bottom:210.551616px;}
.y94{bottom:215.501277px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y40{bottom:224.596107px;}
.y70{bottom:224.596230px;}
.yb7{bottom:226.539420px;}
.y93{bottom:233.104118px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y3f{bottom:242.198948px;}
.y6f{bottom:242.199072px;}
.yb6{bottom:242.527223px;}
.y92{bottom:250.706960px;}
.y3e{bottom:259.801790px;}
.y6e{bottom:259.801913px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.yb5{bottom:263.702328px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y91{bottom:276.813587px;}
.y3d{bottom:277.404631px;}
.y6d{bottom:277.404755px;}
.yb4{bottom:279.690132px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y90{bottom:294.331347px;}
.y3c{bottom:295.007473px;}
.y6c{bottom:295.007596px;}
.yb3{bottom:295.677935px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.yb2{bottom:311.665739px;}
.y8f{bottom:311.934189px;}
.y3b{bottom:312.610314px;}
.y6b{bottom:312.610438px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y8e{bottom:329.537030px;}
.y3a{bottom:330.128074px;}
.y6a{bottom:330.128198px;}
.yb1{bottom:332.755474px;}
.y8d{bottom:347.139872px;}
.y39{bottom:347.730915px;}
.y69{bottom:347.731039px;}
.y11{bottom:348.133500px;}
.yb0{bottom:348.743278px;}
.yaf{bottom:364.731081px;}
.y8c{bottom:364.742713px;}
.y38{bottom:365.333757px;}
.y68{bottom:365.333881px;}
.y8b{bottom:382.345555px;}
.y37{bottom:382.936598px;}
.y67{bottom:382.936722px;}
.yae{bottom:385.820817px;}
.y10{bottom:386.785499px;}
.y8a{bottom:399.948396px;}
.y36{bottom:400.539440px;}
.y66{bottom:400.539564px;}
.yad{bottom:401.808620px;}
.yf{bottom:408.044999px;}
.y89{bottom:417.551238px;}
.yac{bottom:417.796424px;}
.y35{bottom:418.142281px;}
.y65{bottom:418.142405px;}
.y88{bottom:435.068997px;}
.y34{bottom:435.745123px;}
.y64{bottom:435.745247px;}
.yab{bottom:438.886159px;}
.y33{bottom:453.347964px;}
.y63{bottom:453.348088px;}
.yaa{bottom:454.873963px;}
.y87{bottom:461.175625px;}
.y32{bottom:470.865724px;}
.y62{bottom:470.865848px;}
.ya9{bottom:475.963699px;}
.y86{bottom:478.778466px;}
.ye{bottom:484.864502px;}
.y31{bottom:488.468565px;}
.y61{bottom:488.468689px;}
.ya8{bottom:491.951502px;}
.y85{bottom:496.381308px;}
.yd{bottom:502.864502px;}
.y30{bottom:506.071407px;}
.y60{bottom:506.071531px;}
.ya7{bottom:513.041238px;}
.y84{bottom:513.984149px;}
.yc{bottom:520.864502px;}
.y2f{bottom:523.674249px;}
.y5f{bottom:523.674372px;}
.ya6{bottom:529.029041px;}
.y83{bottom:531.586991px;}
.yb{bottom:538.864499px;}
.y2e{bottom:541.277090px;}
.y5e{bottom:541.277214px;}
.y82{bottom:549.104751px;}
.ya5{bottom:550.204147px;}
.ya{bottom:556.864499px;}
.y2d{bottom:558.879932px;}
.y5d{bottom:558.880055px;}
.ya4{bottom:566.191950px;}
.y81{bottom:566.707592px;}
.y2c{bottom:576.482773px;}
.y5c{bottom:576.482897px;}
.y80{bottom:584.310434px;}
.y2b{bottom:594.000533px;}
.ya3{bottom:599.786227px;}
.y7f{bottom:601.913275px;}
.y5b{bottom:603.525426px;}
.y2a{bottom:611.603374px;}
.y7e{bottom:619.516117px;}
.y5a{bottom:621.043185px;}
.y29{bottom:629.206216px;}
.y7d{bottom:637.118958px;}
.ya2{bottom:639.244639px;}
.y9{bottom:645.510000px;}
.y28{bottom:646.809057px;}
.y59{bottom:646.810852px;}
.y7c{bottom:654.721800px;}
.ya1{bottom:656.762398px;}
.y58{bottom:664.413694px;}
.y8{bottom:666.771000px;}
.y7b{bottom:672.324641px;}
.ya0{bottom:674.365240px;}
.y7a{bottom:689.842401px;}
.y57{bottom:690.181361px;}
.y9f{bottom:691.968081px;}
.y27{bottom:698.598270px;}
.y7{bottom:707.398501px;}
.y79{bottom:707.445242px;}
.y56{bottom:707.784203px;}
.y9e{bottom:709.570923px;}
.y55{bottom:725.387044px;}
.y6{bottom:726.298500px;}
.y9d{bottom:727.173764px;}
.y78{bottom:733.551870px;}
.y26{bottom:737.461487px;}
.y54{bottom:742.989886px;}
.y9c{bottom:744.776606px;}
.y77{bottom:751.154711px;}
.y3{bottom:752.599495px;}
.y25{bottom:758.295870px;}
.y9b{bottom:762.379447px;}
.y53{bottom:768.757553px;}
.y9a{bottom:779.982289px;}
.y52{bottom:786.360394px;}
.y24{bottom:799.369905px;}
.y51{bottom:803.878154px;}
.y50{bottom:821.480995px;}
.y4f{bottom:839.083837px;}
.y4e{bottom:856.686678px;}
.y4d{bottom:874.289520px;}
.y2{bottom:879.369000px;}
.y48{bottom:893.423207px;}
.y4c{bottom:905.073855px;}
.y47{bottom:906.179265px;}
.y1{bottom:966.726000px;}
.h7{height:32.130000px;}
.he{height:39.316664px;}
.h10{height:41.220703px;}
.hd{height:42.123982px;}
.h6{height:45.900000px;}
.h11{height:47.741829px;}
.h3{height:48.195000px;}
.hc{height:53.358518px;}
.h12{height:54.027019px;}
.h2{height:55.080000px;}
.hb{height:62.557685px;}
.ha{height:68.244263px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.hf{height:990.705000px;}
.h8{height:990.708075px;}
.h9{height:990.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w4{width:667.500000px;}
.w3{width:667.558545px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:80.787441px;}
.x13{left:93.543830px;}
.x9{left:95.158841px;}
.xf{left:99.836534px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xd{left:160.775970px;}
.xe{left:162.550470px;}
.x6{left:183.685050px;}
.x7{left:192.614825px;}
.x4{left:203.484001px;}
.x8{left:210.897600px;}
.xb{left:217.105500px;}
.xc{left:253.587363px;}
.x5{left:273.061335px;}
.x12{left:285.646787px;}
.x11{left:297.042435px;}
.x10{left:406.573200px;}
.x3{left:454.959000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-6.621264pt;}
.ls7{letter-spacing:-6.312410pt;}
.ls1{letter-spacing:-0.021153pt;}
.ls2{letter-spacing:-0.006880pt;}
.ls3{letter-spacing:-0.005942pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005317pt;}
.ls4{letter-spacing:0.005942pt;}
.ls5{letter-spacing:0.010804pt;}
.ws68{word-spacing:-13.505067pt;}
.wse{word-spacing:-4.321621pt;}
.ws2c{word-spacing:-4.213581pt;}
.ws7c{word-spacing:-3.866714pt;}
.ws8b{word-spacing:-3.775362pt;}
.ws99{word-spacing:-3.770046pt;}
.ws79{word-spacing:-3.755546pt;}
.ws84{word-spacing:-3.741529pt;}
.ws4f{word-spacing:-0.918345pt;}
.ws8c{word-spacing:-0.338337pt;}
.ws1e{word-spacing:-0.324122pt;}
.ws22{word-spacing:-0.298525pt;}
.ws7f{word-spacing:-0.246503pt;}
.ws2f{word-spacing:-0.162061pt;}
.ws78{word-spacing:-0.145002pt;}
.ws45{word-spacing:-0.119413pt;}
.ws70{word-spacing:-0.108041pt;}
.ws97{word-spacing:-0.101985pt;}
.ws0{word-spacing:0.000000pt;}
.ws23{word-spacing:0.039804pt;}
.ws80{word-spacing:0.048334pt;}
.ws94{word-spacing:0.096668pt;}
.ws65{word-spacing:0.102098pt;}
.ws88{word-spacing:0.145002pt;}
.ws31{word-spacing:0.162061pt;}
.ws2d{word-spacing:0.210139pt;}
.ws91{word-spacing:0.251336pt;}
.ws2a{word-spacing:0.324122pt;}
.ws8d{word-spacing:0.357671pt;}
.ws4a{word-spacing:0.378142pt;}
.ws7b{word-spacing:0.435005pt;}
.ws7a{word-spacing:0.507506pt;}
.ws8f{word-spacing:0.546657pt;}
.ws24{word-spacing:0.580007pt;}
.ws12{word-spacing:0.594223pt;}
.ws74{word-spacing:0.648243pt;}
.ws4c{word-spacing:0.702263pt;}
.ws81{word-spacing:0.792676pt;}
.ws5a{word-spacing:0.810304pt;}
.ws82{word-spacing:0.870011pt;}
.ws49{word-spacing:0.907540pt;}
.ws73{word-spacing:0.918345pt;}
.ws71{word-spacing:0.978307pt;}
.ws48{word-spacing:1.026385pt;}
.ws4e{word-spacing:1.188446pt;}
.ws6f{word-spacing:1.296486pt;}
.ws72{word-spacing:1.313233pt;}
.ws6{word-spacing:1.404527pt;}
.ws5b{word-spacing:1.566588pt;}
.ws63{word-spacing:1.620608pt;}
.ws55{word-spacing:1.728649pt;}
.ws39{word-spacing:1.836689pt;}
.ws20{word-spacing:1.890709pt;}
.ws75{word-spacing:1.944730pt;}
.ws15{word-spacing:1.950672pt;}
.wsc{word-spacing:1.998750pt;}
.ws62{word-spacing:2.100848pt;}
.ws14{word-spacing:2.214831pt;}
.ws1{word-spacing:2.258676pt;}
.ws3e{word-spacing:2.322871pt;}
.ws4b{word-spacing:2.592973pt;}
.ws59{word-spacing:2.646993pt;}
.ws25{word-spacing:2.701013pt;}
.ws89{word-spacing:2.731350pt;}
.ws47{word-spacing:2.749091pt;}
.ws17{word-spacing:2.809054pt;}
.ws38{word-spacing:2.863074pt;}
.ws3d{word-spacing:2.923037pt;}
.wsa{word-spacing:3.025135pt;}
.ws87{word-spacing:3.045037pt;}
.ws2{word-spacing:3.071824pt;}
.ws58{word-spacing:3.133175pt;}
.ws4{word-spacing:3.187196pt;}
.ws95{word-spacing:3.247556pt;}
.ws5f{word-spacing:3.338452pt;}
.ws8a{word-spacing:3.383374pt;}
.ws3{word-spacing:3.403277pt;}
.ws2b{word-spacing:3.511317pt;}
.ws86{word-spacing:3.528376pt;}
.ws10{word-spacing:3.619358pt;}
.ws85{word-spacing:3.658878pt;}
.ws61{word-spacing:3.673378pt;}
.ws3c{word-spacing:3.727398pt;}
.ws67{word-spacing:3.781419pt;}
.ws83{word-spacing:3.905381pt;}
.ws1d{word-spacing:3.943479pt;}
.ws21{word-spacing:3.997500pt;}
.ws96{word-spacing:3.997699pt;}
.ws60{word-spacing:4.035854pt;}
.ws1f{word-spacing:4.105540pt;}
.ws3b{word-spacing:4.159561pt;}
.ws30{word-spacing:4.213581pt;}
.ws64{word-spacing:4.321621pt;}
.ws54{word-spacing:4.483682pt;}
.ws56{word-spacing:4.537702pt;}
.ws13{word-spacing:4.969865pt;}
.ws4d{word-spacing:5.023885pt;}
.ws2e{word-spacing:5.131925pt;}
.ws1a{word-spacing:5.293986pt;}
.ws16{word-spacing:5.510067pt;}
.ws35{word-spacing:5.564087pt;}
.ws18{word-spacing:5.618108pt;}
.ws5e{word-spacing:5.672128pt;}
.ws42{word-spacing:5.747756pt;}
.ws41{word-spacing:5.834189pt;}
.ws11{word-spacing:5.888209pt;}
.ws52{word-spacing:6.050270pt;}
.ws50{word-spacing:6.104290pt;}
.ws3a{word-spacing:6.158310pt;}
.ws53{word-spacing:6.320371pt;}
.ws1b{word-spacing:6.374391pt;}
.wsd{word-spacing:6.428412pt;}
.ws51{word-spacing:6.455962pt;}
.ws1c{word-spacing:6.644493pt;}
.ws36{word-spacing:6.968614pt;}
.ws26{word-spacing:7.022635pt;}
.ws7e{word-spacing:7.201754pt;}
.ws7d{word-spacing:7.515441pt;}
.ws27{word-spacing:7.562837pt;}
.ws6b{word-spacing:7.606054pt;}
.ws28{word-spacing:7.724898pt;}
.ws76{word-spacing:7.778918pt;}
.ws69{word-spacing:7.876155pt;}
.ws34{word-spacing:7.886959pt;}
.ws19{word-spacing:7.940979pt;}
.ws6a{word-spacing:7.968530pt;}
.ws7{word-spacing:8.049020pt;}
.ws93{word-spacing:8.066448pt;}
.ws6c{word-spacing:8.319121pt;}
.ws5c{word-spacing:8.481182pt;}
.ws6d{word-spacing:8.535202pt;}
.ws5d{word-spacing:8.589222pt;}
.ws8{word-spacing:8.643243pt;}
.ws8e{word-spacing:8.729106pt;}
.ws37{word-spacing:8.751283pt;}
.ws33{word-spacing:8.859324pt;}
.ws6e{word-spacing:8.967364pt;}
.ws90{word-spacing:9.037960pt;}
.ws32{word-spacing:9.243408pt;}
.ws3f{word-spacing:9.399526pt;}
.ws66{word-spacing:9.669628pt;}
.ws9{word-spacing:9.777668pt;}
.ws44{word-spacing:10.479932pt;}
.ws43{word-spacing:11.074155pt;}
.ws77{word-spacing:11.290236pt;}
.wsf{word-spacing:11.398276pt;}
.ws57{word-spacing:11.506317pt;}
.wsb{word-spacing:11.614357pt;}
.ws40{word-spacing:11.668378pt;}
.ws98{word-spacing:11.696809pt;}
.ws92{word-spacing:13.291828pt;}
.ws29{word-spacing:13.613107pt;}
.ws5{word-spacing:15.719898pt;}
.ws46{word-spacing:684.408307pt;}
._17{margin-left:-6.212331pt;}
._b{margin-left:-4.853301pt;}
._18{margin-left:-3.835439pt;}
._9{margin-left:-2.794841pt;}
._16{margin-left:-1.850902pt;}
._1{margin-left:-0.938248pt;}
._2{width:1.350507pt;}
._11{width:2.936998pt;}
._e{width:4.321621pt;}
._12{width:7.121949pt;}
._1b{width:8.060379pt;}
._f{width:9.100998pt;}
._13{width:11.264607pt;}
._d{width:12.862514pt;}
._6{width:13.923015pt;}
._1a{width:15.011944pt;}
._5{width:15.935979pt;}
._3{width:17.718647pt;}
._0{width:19.140259pt;}
._10{width:20.172296pt;}
._8{width:21.215751pt;}
._7{width:22.924497pt;}
._c{width:24.107252pt;}
._15{width:25.153541pt;}
._a{width:26.361890pt;}
._19{width:28.292406pt;}
._4{width:30.129095pt;}
._14{width:593.008864pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:39.804267pt;}
.fs8{font-size:42.646400pt;}
.fsa{font-size:48.333920pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:54.020267pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:62.549867pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:68.235733pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:7.440000pt;}
.y4b{bottom:20.220000pt;}
.y5{bottom:59.133337pt;}
.y49{bottom:80.277200pt;}
.y4{bottom:86.333337pt;}
.y46{bottom:105.834790pt;}
.y76{bottom:105.834901pt;}
.y99{bottom:105.838547pt;}
.y45{bottom:121.481761pt;}
.y75{bottom:121.481871pt;}
.y98{bottom:121.485517pt;}
.y23{bottom:123.790666pt;}
.y44{bottom:137.128731pt;}
.y74{bottom:137.128841pt;}
.y97{bottom:137.132487pt;}
.y43{bottom:152.775701pt;}
.y73{bottom:152.775811pt;}
.y96{bottom:152.779458pt;}
.yba{bottom:154.199180pt;}
.y42{bottom:168.347043pt;}
.y72{bottom:168.347153pt;}
.y95{bottom:168.350800pt;}
.yb9{bottom:168.410560pt;}
.y1a{bottom:175.052000pt;}
.y41{bottom:183.994013pt;}
.y71{bottom:183.994123pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.yb8{bottom:187.156992pt;}
.y94{bottom:191.556691pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y40{bottom:199.640984pt;}
.y70{bottom:199.641094pt;}
.yb7{bottom:201.368373pt;}
.y93{bottom:207.203661pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y3f{bottom:215.287954pt;}
.y6f{bottom:215.288064pt;}
.yb6{bottom:215.579754pt;}
.y92{bottom:222.850631pt;}
.y3e{bottom:230.934924pt;}
.y6e{bottom:230.935034pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.yb5{bottom:234.402070pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y91{bottom:246.056522pt;}
.y3d{bottom:246.581894pt;}
.y6d{bottom:246.582004pt;}
.yb4{bottom:248.613451pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y90{bottom:261.627864pt;}
.y3c{bottom:262.228865pt;}
.y6c{bottom:262.228975pt;}
.yb3{bottom:262.824831pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.yb2{bottom:277.036212pt;}
.y8f{bottom:277.274834pt;}
.y3b{bottom:277.875835pt;}
.y6b{bottom:277.875945pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y8e{bottom:292.921805pt;}
.y3a{bottom:293.447177pt;}
.y6a{bottom:293.447287pt;}
.yb1{bottom:295.782644pt;}
.y8d{bottom:308.568775pt;}
.y39{bottom:309.094147pt;}
.y69{bottom:309.094257pt;}
.y11{bottom:309.452000pt;}
.yb0{bottom:309.994025pt;}
.yaf{bottom:324.205406pt;}
.y8c{bottom:324.215745pt;}
.y38{bottom:324.741117pt;}
.y68{bottom:324.741227pt;}
.y8b{bottom:339.862715pt;}
.y37{bottom:340.388087pt;}
.y67{bottom:340.388197pt;}
.yae{bottom:342.951837pt;}
.y10{bottom:343.809333pt;}
.y8a{bottom:355.509686pt;}
.y36{bottom:356.035058pt;}
.y66{bottom:356.035168pt;}
.yad{bottom:357.163218pt;}
.yf{bottom:362.706666pt;}
.y89{bottom:371.156656pt;}
.yac{bottom:371.374599pt;}
.y35{bottom:371.682028pt;}
.y65{bottom:371.682138pt;}
.y88{bottom:386.727998pt;}
.y34{bottom:387.328998pt;}
.y64{bottom:387.329108pt;}
.yab{bottom:390.121031pt;}
.y33{bottom:402.975968pt;}
.y63{bottom:402.976078pt;}
.yaa{bottom:404.332411pt;}
.y87{bottom:409.933889pt;}
.y32{bottom:418.547310pt;}
.y62{bottom:418.547420pt;}
.ya9{bottom:423.078843pt;}
.y86{bottom:425.580859pt;}
.ye{bottom:430.990669pt;}
.y31{bottom:434.194280pt;}
.y61{bottom:434.194390pt;}
.ya8{bottom:437.290224pt;}
.y85{bottom:441.227829pt;}
.yd{bottom:446.990669pt;}
.y30{bottom:449.841251pt;}
.y60{bottom:449.841361pt;}
.ya7{bottom:456.036656pt;}
.y84{bottom:456.874799pt;}
.yc{bottom:462.990669pt;}
.y2f{bottom:465.488221pt;}
.y5f{bottom:465.488331pt;}
.ya6{bottom:470.248037pt;}
.y83{bottom:472.521770pt;}
.yb{bottom:478.990666pt;}
.y2e{bottom:481.135191pt;}
.y5e{bottom:481.135301pt;}
.y82{bottom:488.093112pt;}
.ya5{bottom:489.070353pt;}
.ya{bottom:494.990666pt;}
.y2d{bottom:496.782161pt;}
.y5d{bottom:496.782271pt;}
.ya4{bottom:503.281733pt;}
.y81{bottom:503.740082pt;}
.y2c{bottom:512.429132pt;}
.y5c{bottom:512.429242pt;}
.y80{bottom:519.387052pt;}
.y2b{bottom:528.000473pt;}
.ya3{bottom:533.143313pt;}
.y7f{bottom:535.034022pt;}
.y5b{bottom:536.467045pt;}
.y2a{bottom:543.647444pt;}
.y7e{bottom:550.680993pt;}
.y5a{bottom:552.038387pt;}
.y29{bottom:559.294414pt;}
.y7d{bottom:566.327963pt;}
.ya2{bottom:568.217457pt;}
.y9{bottom:573.786667pt;}
.y28{bottom:574.941384pt;}
.y59{bottom:574.942980pt;}
.y7c{bottom:581.974933pt;}
.ya1{bottom:583.788799pt;}
.y58{bottom:590.589950pt;}
.y8{bottom:592.685334pt;}
.y7b{bottom:597.621903pt;}
.ya0{bottom:599.435769pt;}
.y7a{bottom:613.193245pt;}
.y57{bottom:613.494543pt;}
.y9f{bottom:615.082739pt;}
.y27{bottom:620.976240pt;}
.y7{bottom:628.798668pt;}
.y79{bottom:628.840215pt;}
.y56{bottom:629.141513pt;}
.y9e{bottom:630.729709pt;}
.y55{bottom:644.788484pt;}
.y6{bottom:645.598667pt;}
.y9d{bottom:646.376679pt;}
.y78{bottom:652.046106pt;}
.y26{bottom:655.521322pt;}
.y54{bottom:660.435454pt;}
.y9c{bottom:662.023650pt;}
.y77{bottom:667.693077pt;}
.y3{bottom:668.977329pt;}
.y25{bottom:674.040773pt;}
.y9b{bottom:677.670620pt;}
.y53{bottom:683.340047pt;}
.y9a{bottom:693.317590pt;}
.y52{bottom:698.987017pt;}
.y24{bottom:710.551027pt;}
.y51{bottom:714.558359pt;}
.y50{bottom:730.205329pt;}
.y4f{bottom:745.852300pt;}
.y4e{bottom:761.499270pt;}
.y4d{bottom:777.146240pt;}
.y2{bottom:781.661334pt;}
.y48{bottom:794.153962pt;}
.y4c{bottom:804.510093pt;}
.y47{bottom:805.492680pt;}
.y1{bottom:859.312000pt;}
.h7{height:28.560000pt;}
.he{height:34.948146pt;}
.h10{height:36.640625pt;}
.hd{height:37.443539pt;}
.h6{height:40.800000pt;}
.h11{height:42.437182pt;}
.h3{height:42.840000pt;}
.hc{height:47.429794pt;}
.h12{height:48.024017pt;}
.h2{height:48.960000pt;}
.hb{height:55.606831pt;}
.ha{height:60.661567pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.hf{height:880.626667pt;}
.h8{height:880.629400pt;}
.h9{height:880.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w4{width:593.333333pt;}
.w3{width:593.385373pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:71.811059pt;}
.x13{left:83.150071pt;}
.x9{left:84.585636pt;}
.xf{left:88.743586pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xd{left:142.911973pt;}
.xe{left:144.489307pt;}
.x6{left:163.275600pt;}
.x7{left:171.213178pt;}
.x4{left:180.874667pt;}
.x8{left:187.464533pt;}
.xb{left:192.982667pt;}
.xc{left:225.410989pt;}
.x5{left:242.721187pt;}
.x12{left:253.908255pt;}
.x11{left:264.037720pt;}
.x10{left:361.398400pt;}
.x3{left:404.408000pt;}
}




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