
    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_7ecf1032309b96c1a653598e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.948242;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_0c5aaf469090bb0721c02d9b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.059570;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_9d7954b06caecdaef2d29bfc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.890137;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_7947a34a43a22b93f5f9c4da.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.689941;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_f938619e45e45df4d0d69ff2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.996000;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_5d953818d88bdf3b63dc7ddc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.882000;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_1945c7b5990d6c5e1c319d7b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_fd1932433e121e7e558234fa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_3dcb11e7e44b3fb4a9f48d33.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_139ea3fef95fd41d56a83dca.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.050293;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_8f4d095aa60e608aae3bec66.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973000;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_e6303e9b9afcc9b710de93e4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.810000px;}
.v5{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.112400px;}
.v7{vertical-align:12.000000px;}
.v3{vertical-align:18.810000px;}
.v1{vertical-align:21.780000px;}
.v6{vertical-align:30.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000600px;}
.lsd{letter-spacing:0.005160px;}
.ls5{letter-spacing:0.005280px;}
.lse{letter-spacing:0.005760px;}
.ls4{letter-spacing:0.005880px;}
.lsc{letter-spacing:0.009000px;}
.ls3{letter-spacing:0.009600px;}
.ls6{letter-spacing:0.010800px;}
.lsb{letter-spacing:0.330000px;}
.ls8{letter-spacing:0.330600px;}
.lsa{letter-spacing:0.335880px;}
.ls9{letter-spacing:0.570000px;}
.ls7{letter-spacing:0.579600px;}
.ls1{letter-spacing:1.050000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.363397px;}
.wsd{word-spacing:-14.820000px;}
.wsa{word-spacing:-14.250000px;}
.wse{word-spacing:-13.500000px;}
.wsf{word-spacing:-12.258000px;}
.wsb{word-spacing:-12.000000px;}
.ws8{word-spacing:-9.570000px;}
.wsc{word-spacing:-8.595600px;}
.ws9{word-spacing:-8.265000px;}
.ws2{word-spacing:-8.133471px;}
.ws3{word-spacing:-8.017001px;}
.ws6{word-spacing:-7.320124px;}
.ws0{word-spacing:-7.215301px;}
.ws5{word-spacing:-6.413601px;}
.ws4{word-spacing:-0.039755px;}
.ws7{word-spacing:0.000000px;}
.ws10{word-spacing:256.164000px;}
._e{margin-left:-6.327000px;}
._6{margin-left:-5.097420px;}
._5{margin-left:-3.705000px;}
._1{margin-left:-2.581747px;}
._0{margin-left:-1.345231px;}
._7{width:1.447200px;}
._9{width:2.682600px;}
._4{width:3.705000px;}
._8{width:5.130000px;}
._3{width:6.783000px;}
._d{width:7.923000px;}
._a{width:9.177000px;}
._2{width:11.088000px;}
._b{width:12.654000px;}
._c{width:15.675000px;}
._11{width:16.907220px;}
._10{width:19.259940px;}
._12{width:276.413400px;}
._14{width:297.956400px;}
._13{width:308.241000px;}
._15{width:330.600000px;}
._16{width:335.250000px;}
._f{width:987.071400px;}
.fc7{color:transparent;}
.fc1{color:rgb(56,116,161);}
.fc8{color:rgb(180,180,180);}
.fc6{color:rgb(35,31,32);}
.fc5{color:rgb(85,85,85);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(96,96,96);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:24.000000px;}
.fs3{font-size:27.828506px;}
.fse{font-size:31.320000px;}
.fs4{font-size:31.804007px;}
.fsb{font-size:33.060000px;}
.fs0{font-size:35.779508px;}
.fsa{font-size:38.280000px;}
.fs2{font-size:39.755009px;}
.fs5{font-size:47.706010px;}
.fsd{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs6{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:79.510017px;}
.fs9{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.212321px;}
.yb{bottom:3.975490px;}
.yd{bottom:3.975496px;}
.y11{bottom:3.975517px;}
.y13{bottom:3.975519px;}
.y10e{bottom:7.500000px;}
.y17{bottom:24.846853px;}
.y16{bottom:47.705982px;}
.y4d{bottom:115.578000px;}
.yda{bottom:119.485350px;}
.yd2{bottom:120.897300px;}
.ya2{bottom:125.312400px;}
.y4c{bottom:132.678000px;}
.yd9{bottom:135.685350px;}
.yd1{bottom:137.997300px;}
.y55{bottom:149.777850px;}
.y4b{bottom:149.778000px;}
.ya1{bottom:151.680600px;}
.yd8{bottom:151.885350px;}
.yd0{bottom:155.097300px;}
.y4a{bottom:166.878000px;}
.yd7{bottom:168.085350px;}
.ycf{bottom:172.197300px;}
.ya0{bottom:180.978000px;}
.y54{bottom:183.977850px;}
.y49{bottom:183.978000px;}
.yce{bottom:189.297300px;}
.y9f{bottom:197.178000px;}
.y48{bottom:201.078000px;}
.ycd{bottom:206.397300px;}
.y9e{bottom:213.378000px;}
.y47{bottom:218.178000px;}
.ycc{bottom:223.497300px;}
.y9d{bottom:229.578000px;}
.y53{bottom:235.277850px;}
.y46{bottom:235.278000px;}
.ycb{bottom:240.597300px;}
.y45{bottom:252.378000px;}
.yca{bottom:257.697300px;}
.y52{bottom:269.477850px;}
.y44{bottom:269.478000px;}
.y9c{bottom:270.917400px;}
.yc9{bottom:274.797300px;}
.y51{bottom:286.577850px;}
.y43{bottom:286.578000px;}
.yc8{bottom:291.897300px;}
.y42{bottom:303.678000px;}
.yc7{bottom:308.997300px;}
.y9b{bottom:317.285250px;}
.y6e{bottom:317.995200px;}
.y41{bottom:320.778000px;}
.y9a{bottom:334.385250px;}
.y6d{bottom:335.395200px;}
.y40{bottom:337.878000px;}
.yc6{bottom:343.197300px;}
.y99{bottom:351.485250px;}
.y6c{bottom:352.795200px;}
.y50{bottom:354.977850px;}
.y3f{bottom:354.978000px;}
.yc5{bottom:360.297300px;}
.y98{bottom:368.585250px;}
.y6b{bottom:370.195200px;}
.y3e{bottom:372.078000px;}
.yc4{bottom:377.397300px;}
.y97{bottom:385.685250px;}
.y6a{bottom:387.595200px;}
.y3d{bottom:389.178000px;}
.yc3{bottom:394.497300px;}
.y96{bottom:402.785250px;}
.y69{bottom:404.995200px;}
.y3c{bottom:406.278000px;}
.yc2{bottom:411.597300px;}
.y95{bottom:419.885250px;}
.y68{bottom:422.395200px;}
.y3b{bottom:423.378000px;}
.y94{bottom:436.985250px;}
.y67{bottom:439.795200px;}
.y3a{bottom:440.477850px;}
.yde{bottom:452.313000px;}
.y93{bottom:454.085250px;}
.y66{bottom:457.195200px;}
.y39{bottom:457.577850px;}
.ydd{bottom:468.512850px;}
.y92{bottom:471.185250px;}
.y65{bottom:474.595200px;}
.y38{bottom:474.677850px;}
.y4f{bottom:474.678000px;}
.ydc{bottom:484.713000px;}
.y37{bottom:491.777850px;}
.y4e{bottom:491.778000px;}
.y64{bottom:491.995200px;}
.yb1{bottom:499.176450px;}
.ydb{bottom:500.913000px;}
.y91{bottom:505.385250px;}
.y63{bottom:509.395200px;}
.yb0{bottom:516.276450px;}
.y90{bottom:522.485250px;}
.y62{bottom:526.795200px;}
.yaf{bottom:533.376450px;}
.y36{bottom:535.835850px;}
.y8f{bottom:539.585250px;}
.y35{bottom:550.235850px;}
.yae{bottom:550.476450px;}
.y61{bottom:552.699150px;}
.y8e{bottom:556.685250px;}
.yad{bottom:567.576300px;}
.y60{bottom:570.099150px;}
.y34{bottom:573.139800px;}
.y8d{bottom:573.785250px;}
.yac{bottom:584.676300px;}
.y8c{bottom:590.885250px;}
.y5f{bottom:600.255000px;}
.yab{bottom:601.776300px;}
.y33{bottom:607.339800px;}
.y8b{bottom:607.985250px;}
.y5e{bottom:617.655150px;}
.yaa{bottom:618.876300px;}
.y32{bottom:624.739800px;}
.y8a{bottom:625.085250px;}
.y5d{bottom:635.055150px;}
.ya9{bottom:635.976450px;}
.y31{bottom:641.839800px;}
.y89{bottom:642.185250px;}
.ya8{bottom:653.076300px;}
.y30{bottom:658.939800px;}
.y88{bottom:659.285250px;}
.y5c{bottom:660.958950px;}
.ya7{bottom:670.176300px;}
.y2f{bottom:676.039800px;}
.y87{bottom:676.385250px;}
.y5b{bottom:678.358950px;}
.ya6{bottom:687.276300px;}
.y2e{bottom:693.139800px;}
.y86{bottom:693.485250px;}
.ya5{bottom:704.376300px;}
.y5a{bottom:708.514950px;}
.y2d{bottom:710.239800px;}
.y85{bottom:710.585250px;}
.y59{bottom:725.914950px;}
.y2c{bottom:727.339800px;}
.y84{bottom:727.685250px;}
.y10d{bottom:727.783050px;}
.y15{bottom:738.449257px;}
.y10c{bottom:742.558050px;}
.y58{bottom:743.314950px;}
.yf3{bottom:743.922450px;}
.y2b{bottom:744.439800px;}
.y83{bottom:744.785250px;}
.yd6{bottom:749.839800px;}
.y10b{bottom:757.333050px;}
.yf2{bottom:758.322450px;}
.y57{bottom:760.714950px;}
.y2a{bottom:761.539800px;}
.y82{bottom:761.885250px;}
.y14{bottom:762.302262px;}
.yd5{bottom:766.039650px;}
.y10a{bottom:772.108050px;}
.yf1{bottom:772.722450px;}
.y12{bottom:776.428817px;}
.y29{bottom:778.639800px;}
.y81{bottom:778.985250px;}
.yd4{bottom:782.239800px;}
.y109{bottom:786.883050px;}
.yf0{bottom:787.122450px;}
.y10{bottom:792.330823px;}
.y28{bottom:795.739800px;}
.y80{bottom:796.085250px;}
.yd3{bottom:798.439800px;}
.ya4{bottom:798.538950px;}
.yef{bottom:801.522450px;}
.y108{bottom:801.658050px;}
.y27{bottom:812.839800px;}
.y7f{bottom:813.185250px;}
.ya3{bottom:814.738800px;}
.yee{bottom:815.922450px;}
.y107{bottom:816.433050px;}
.y26{bottom:829.939800px;}
.y7e{bottom:830.285250px;}
.yed{bottom:830.322450px;}
.y106{bottom:831.208050px;}
.yf{bottom:832.867402px;}
.yc1{bottom:839.097300px;}
.yec{bottom:844.722450px;}
.y105{bottom:845.983050px;}
.y25{bottom:847.039800px;}
.y7d{bottom:847.385250px;}
.yc0{bottom:856.197300px;}
.ye{bottom:856.720407px;}
.yeb{bottom:859.122450px;}
.y104{bottom:860.758050px;}
.y24{bottom:864.139800px;}
.y7c{bottom:864.485250px;}
.yc{bottom:870.846986px;}
.ybf{bottom:873.297300px;}
.yea{bottom:873.522450px;}
.y103{bottom:875.533050px;}
.y23{bottom:881.239800px;}
.y7b{bottom:881.585250px;}
.ya{bottom:886.748995px;}
.ye9{bottom:887.922450px;}
.y102{bottom:890.308050px;}
.ybe{bottom:890.397150px;}
.y22{bottom:898.339800px;}
.y7a{bottom:898.685250px;}
.ye8{bottom:902.322450px;}
.y101{bottom:905.083050px;}
.ybd{bottom:907.497300px;}
.y21{bottom:915.439800px;}
.y79{bottom:915.785250px;}
.ye7{bottom:916.722450px;}
.y9{bottom:917.346795px;}
.y100{bottom:919.857900px;}
.ybc{bottom:924.597300px;}
.ye6{bottom:931.122450px;}
.y78{bottom:932.885250px;}
.yff{bottom:934.632900px;}
.y20{bottom:937.242300px;}
.ybb{bottom:941.697300px;}
.ye5{bottom:945.522450px;}
.yfe{bottom:949.407900px;}
.y77{bottom:949.985250px;}
.y1f{bottom:954.342300px;}
.y8{bottom:955.114053px;}
.yba{bottom:958.797300px;}
.ye4{bottom:959.922450px;}
.yfd{bottom:964.182900px;}
.y76{bottom:967.085250px;}
.y7{bottom:971.016057px;}
.ye3{bottom:974.322450px;}
.y1e{bottom:975.243750px;}
.yb9{bottom:975.897150px;}
.yfc{bottom:978.957750px;}
.y75{bottom:984.185250px;}
.ye2{bottom:988.722450px;}
.yb8{bottom:992.997300px;}
.yfb{bottom:993.732750px;}
.y74{bottom:1001.285400px;}
.y1d{bottom:1003.547550px;}
.yfa{bottom:1008.507750px;}
.yb7{bottom:1010.097300px;}
.y73{bottom:1018.385400px;}
.y6{bottom:1019.715942px;}
.yf9{bottom:1023.282750px;}
.yb6{bottom:1027.197300px;}
.ye1{bottom:1027.197450px;}
.y1c{bottom:1028.747700px;}
.y5{bottom:1034.624071px;}
.yf8{bottom:1038.057750px;}
.y72{bottom:1039.737300px;}
.yb5{bottom:1044.297300px;}
.ye0{bottom:1044.297450px;}
.yf7{bottom:1052.832600px;}
.y71{bottom:1057.137300px;}
.yb4{bottom:1061.397450px;}
.yf6{bottom:1067.607600px;}
.y4{bottom:1076.366830px;}
.y70{bottom:1076.937450px;}
.yb3{bottom:1078.497450px;}
.yf5{bottom:1082.382600px;}
.y1b{bottom:1091.635950px;}
.y6f{bottom:1094.037450px;}
.yb2{bottom:1095.597450px;}
.yf4{bottom:1097.157600px;}
.y3{bottom:1104.195336px;}
.y56{bottom:1140.022350px;}
.ydf{bottom:1140.151200px;}
.y1a{bottom:1140.546600px;}
.y19{bottom:1140.680100px;}
.y18{bottom:1141.050450px;}
.y2{bottom:1144.944219px;}
.h9{height:12.920361px;}
.ha{height:12.920405px;}
.h6{height:20.151208px;}
.h12{height:22.970889px;}
.h7{height:23.029952px;}
.h23{height:25.031250px;}
.h3{height:25.908696px;}
.h5{height:28.787440px;}
.h22{height:33.351562px;}
.h8{height:34.544928px;}
.h1e{height:37.520508px;}
.h14{height:38.630859px;}
.h20{height:38.664000px;}
.h1f{height:39.581895px;}
.h13{height:39.604980px;}
.h16{height:40.054688px;}
.h19{height:40.812000px;}
.h17{height:41.780889px;}
.h21{height:41.781489px;}
.h1a{height:43.075195px;}
.he{height:44.010000px;}
.h1d{height:45.061523px;}
.h15{height:47.564941px;}
.h11{height:48.377871px;}
.hd{height:53.790000px;}
.h18{height:57.902400px;}
.h10{height:58.365234px;}
.hf{height:62.280000px;}
.h4{height:63.670131px;}
.h1c{height:67.075195px;}
.h1b{height:69.604980px;}
.hc{height:1254.000000px;}
.hb{height:1254.294000px;}
.h2{height:1261.227619px;}
.h0{height:1261.439940px;}
.h1{height:1261.500000px;}
.w2{width:346.862448px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.w5{width:914.209500px;}
.w4{width:935.250000px;}
.w3{width:935.469000px;}
.x0{left:0.000000px;}
.xf{left:21.259500px;}
.x1{left:59.632513px;}
.x7{left:64.601889px;}
.x34{left:75.000000px;}
.x3{left:99.387518px;}
.x8{left:106.390200px;}
.x4{left:110.320149px;}
.xb{left:114.803100px;}
.xc{left:127.664100px;}
.x11{left:148.818900px;}
.x12{left:150.447900px;}
.x30{left:155.196900px;}
.x31{left:165.826800px;}
.x14{left:170.078700px;}
.x2e{left:172.713750px;}
.x1d{left:173.893650px;}
.x15{left:187.835550px;}
.x1f{left:256.629000px;}
.x1e{left:259.957800px;}
.x20{left:268.069050px;}
.x13{left:273.340200px;}
.x16{left:275.003550px;}
.x21{left:359.794950px;}
.x22{left:378.879150px;}
.x10{left:391.566300px;}
.x9{left:406.283250px;}
.x2f{left:414.457050px;}
.x2{left:446.249971px;}
.xe{left:462.419850px;}
.x24{left:467.824200px;}
.x25{left:471.001350px;}
.x23{left:478.159200px;}
.xd{left:483.679650px;}
.x5{left:486.004991px;}
.x6{left:496.937607px;}
.x1b{left:504.939450px;}
.x32{left:511.317600px;}
.x33{left:521.947500px;}
.x1c{left:526.199400px;}
.x26{left:593.221950px;}
.x27{left:596.153100px;}
.x18{left:599.136750px;}
.x28{left:605.553900px;}
.xa{left:617.128500px;}
.x29{left:623.768400px;}
.x1a{left:629.342850px;}
.x17{left:647.538600px;}
.x19{left:648.728250px;}
.x2a{left:720.909600px;}
.x2b{left:722.153250px;}
.x2c{left:726.668100px;}
.x2d{left:751.456050px;}
@media print{
.v2{vertical-align:-16.720000pt;}
.v5{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.655467pt;}
.v7{vertical-align:10.666667pt;}
.v3{vertical-align:16.720000pt;}
.v1{vertical-align:19.360000pt;}
.v6{vertical-align:26.666667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000533pt;}
.lsd{letter-spacing:0.004587pt;}
.ls5{letter-spacing:0.004693pt;}
.lse{letter-spacing:0.005120pt;}
.ls4{letter-spacing:0.005227pt;}
.lsc{letter-spacing:0.008000pt;}
.ls3{letter-spacing:0.008533pt;}
.ls6{letter-spacing:0.009600pt;}
.lsb{letter-spacing:0.293333pt;}
.ls8{letter-spacing:0.293867pt;}
.lsa{letter-spacing:0.298560pt;}
.ls9{letter-spacing:0.506667pt;}
.ls7{letter-spacing:0.515200pt;}
.ls1{letter-spacing:0.933333pt;}
.ws1{word-spacing:-16.323020pt;}
.wsd{word-spacing:-13.173333pt;}
.wsa{word-spacing:-12.666667pt;}
.wse{word-spacing:-12.000000pt;}
.wsf{word-spacing:-10.896000pt;}
.wsb{word-spacing:-10.666667pt;}
.ws8{word-spacing:-8.506667pt;}
.wsc{word-spacing:-7.640533pt;}
.ws9{word-spacing:-7.346667pt;}
.ws2{word-spacing:-7.229752pt;}
.ws3{word-spacing:-7.126223pt;}
.ws6{word-spacing:-6.506777pt;}
.ws0{word-spacing:-6.413601pt;}
.ws5{word-spacing:-5.700979pt;}
.ws4{word-spacing:-0.035338pt;}
.ws7{word-spacing:0.000000pt;}
.ws10{word-spacing:227.701333pt;}
._e{margin-left:-5.624000pt;}
._6{margin-left:-4.531040pt;}
._5{margin-left:-3.293333pt;}
._1{margin-left:-2.294886pt;}
._0{margin-left:-1.195761pt;}
._7{width:1.286400pt;}
._9{width:2.384533pt;}
._4{width:3.293333pt;}
._8{width:4.560000pt;}
._3{width:6.029333pt;}
._d{width:7.042667pt;}
._a{width:8.157333pt;}
._2{width:9.856000pt;}
._b{width:11.248000pt;}
._c{width:13.933333pt;}
._11{width:15.028640pt;}
._10{width:17.119947pt;}
._12{width:245.700800pt;}
._14{width:264.850133pt;}
._13{width:273.992000pt;}
._15{width:293.866667pt;}
._16{width:298.000000pt;}
._f{width:877.396800pt;}
.fsf{font-size:21.333333pt;}
.fs3{font-size:24.736450pt;}
.fse{font-size:27.840000pt;}
.fs4{font-size:28.270228pt;}
.fsb{font-size:29.386667pt;}
.fs0{font-size:31.804007pt;}
.fsa{font-size:34.026667pt;}
.fs2{font-size:35.337785pt;}
.fs5{font-size:42.405342pt;}
.fsd{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs6{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:70.675571pt;}
.fs9{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.188729pt;}
.yb{bottom:3.533769pt;}
.yd{bottom:3.533774pt;}
.y11{bottom:3.533793pt;}
.y13{bottom:3.533795pt;}
.y10e{bottom:6.666667pt;}
.y17{bottom:22.086091pt;}
.y16{bottom:42.405318pt;}
.y4d{bottom:102.736000pt;}
.yda{bottom:106.209200pt;}
.yd2{bottom:107.464267pt;}
.ya2{bottom:111.388800pt;}
.y4c{bottom:117.936000pt;}
.yd9{bottom:120.609200pt;}
.yd1{bottom:122.664267pt;}
.y55{bottom:133.135867pt;}
.y4b{bottom:133.136000pt;}
.ya1{bottom:134.827200pt;}
.yd8{bottom:135.009200pt;}
.yd0{bottom:137.864267pt;}
.y4a{bottom:148.336000pt;}
.yd7{bottom:149.409200pt;}
.ycf{bottom:153.064267pt;}
.ya0{bottom:160.869333pt;}
.y54{bottom:163.535867pt;}
.y49{bottom:163.536000pt;}
.yce{bottom:168.264267pt;}
.y9f{bottom:175.269333pt;}
.y48{bottom:178.736000pt;}
.ycd{bottom:183.464267pt;}
.y9e{bottom:189.669333pt;}
.y47{bottom:193.936000pt;}
.ycc{bottom:198.664267pt;}
.y9d{bottom:204.069333pt;}
.y53{bottom:209.135867pt;}
.y46{bottom:209.136000pt;}
.ycb{bottom:213.864267pt;}
.y45{bottom:224.336000pt;}
.yca{bottom:229.064267pt;}
.y52{bottom:239.535867pt;}
.y44{bottom:239.536000pt;}
.y9c{bottom:240.815467pt;}
.yc9{bottom:244.264267pt;}
.y51{bottom:254.735867pt;}
.y43{bottom:254.736000pt;}
.yc8{bottom:259.464267pt;}
.y42{bottom:269.936000pt;}
.yc7{bottom:274.664267pt;}
.y9b{bottom:282.031333pt;}
.y6e{bottom:282.662400pt;}
.y41{bottom:285.136000pt;}
.y9a{bottom:297.231333pt;}
.y6d{bottom:298.129067pt;}
.y40{bottom:300.336000pt;}
.yc6{bottom:305.064267pt;}
.y99{bottom:312.431333pt;}
.y6c{bottom:313.595733pt;}
.y50{bottom:315.535867pt;}
.y3f{bottom:315.536000pt;}
.yc5{bottom:320.264267pt;}
.y98{bottom:327.631333pt;}
.y6b{bottom:329.062400pt;}
.y3e{bottom:330.736000pt;}
.yc4{bottom:335.464267pt;}
.y97{bottom:342.831333pt;}
.y6a{bottom:344.529067pt;}
.y3d{bottom:345.936000pt;}
.yc3{bottom:350.664267pt;}
.y96{bottom:358.031333pt;}
.y69{bottom:359.995733pt;}
.y3c{bottom:361.136000pt;}
.yc2{bottom:365.864267pt;}
.y95{bottom:373.231333pt;}
.y68{bottom:375.462400pt;}
.y3b{bottom:376.336000pt;}
.y94{bottom:388.431333pt;}
.y67{bottom:390.929067pt;}
.y3a{bottom:391.535867pt;}
.yde{bottom:402.056000pt;}
.y93{bottom:403.631333pt;}
.y66{bottom:406.395733pt;}
.y39{bottom:406.735867pt;}
.ydd{bottom:416.455867pt;}
.y92{bottom:418.831333pt;}
.y65{bottom:421.862400pt;}
.y38{bottom:421.935867pt;}
.y4f{bottom:421.936000pt;}
.ydc{bottom:430.856000pt;}
.y37{bottom:437.135867pt;}
.y4e{bottom:437.136000pt;}
.y64{bottom:437.329067pt;}
.yb1{bottom:443.712400pt;}
.ydb{bottom:445.256000pt;}
.y91{bottom:449.231333pt;}
.y63{bottom:452.795733pt;}
.yb0{bottom:458.912400pt;}
.y90{bottom:464.431333pt;}
.y62{bottom:468.262400pt;}
.yaf{bottom:474.112400pt;}
.y36{bottom:476.298533pt;}
.y8f{bottom:479.631333pt;}
.y35{bottom:489.098533pt;}
.yae{bottom:489.312400pt;}
.y61{bottom:491.288133pt;}
.y8e{bottom:494.831333pt;}
.yad{bottom:504.512267pt;}
.y60{bottom:506.754800pt;}
.y34{bottom:509.457600pt;}
.y8d{bottom:510.031333pt;}
.yac{bottom:519.712267pt;}
.y8c{bottom:525.231333pt;}
.y5f{bottom:533.560000pt;}
.yab{bottom:534.912267pt;}
.y33{bottom:539.857600pt;}
.y8b{bottom:540.431333pt;}
.y5e{bottom:549.026800pt;}
.yaa{bottom:550.112267pt;}
.y32{bottom:555.324267pt;}
.y8a{bottom:555.631333pt;}
.y5d{bottom:564.493467pt;}
.ya9{bottom:565.312400pt;}
.y31{bottom:570.524267pt;}
.y89{bottom:570.831333pt;}
.ya8{bottom:580.512267pt;}
.y30{bottom:585.724267pt;}
.y88{bottom:586.031333pt;}
.y5c{bottom:587.519067pt;}
.ya7{bottom:595.712267pt;}
.y2f{bottom:600.924267pt;}
.y87{bottom:601.231333pt;}
.y5b{bottom:602.985733pt;}
.ya6{bottom:610.912267pt;}
.y2e{bottom:616.124267pt;}
.y86{bottom:616.431333pt;}
.ya5{bottom:626.112267pt;}
.y5a{bottom:629.791067pt;}
.y2d{bottom:631.324267pt;}
.y85{bottom:631.631333pt;}
.y59{bottom:645.257733pt;}
.y2c{bottom:646.524267pt;}
.y84{bottom:646.831333pt;}
.y10d{bottom:646.918267pt;}
.y15{bottom:656.399339pt;}
.y10c{bottom:660.051600pt;}
.y58{bottom:660.724400pt;}
.yf3{bottom:661.264400pt;}
.y2b{bottom:661.724267pt;}
.y83{bottom:662.031333pt;}
.yd6{bottom:666.524267pt;}
.y10b{bottom:673.184933pt;}
.yf2{bottom:674.064400pt;}
.y57{bottom:676.191067pt;}
.y2a{bottom:676.924267pt;}
.y82{bottom:677.231333pt;}
.y14{bottom:677.602010pt;}
.yd5{bottom:680.924133pt;}
.y10a{bottom:686.318267pt;}
.yf1{bottom:686.864400pt;}
.y12{bottom:690.158949pt;}
.y29{bottom:692.124267pt;}
.y81{bottom:692.431333pt;}
.yd4{bottom:695.324267pt;}
.y109{bottom:699.451600pt;}
.yf0{bottom:699.664400pt;}
.y10{bottom:704.294065pt;}
.y28{bottom:707.324267pt;}
.y80{bottom:707.631333pt;}
.yd3{bottom:709.724267pt;}
.ya4{bottom:709.812400pt;}
.yef{bottom:712.464400pt;}
.y108{bottom:712.584933pt;}
.y27{bottom:722.524267pt;}
.y7f{bottom:722.831333pt;}
.ya3{bottom:724.212267pt;}
.yee{bottom:725.264400pt;}
.y107{bottom:725.718267pt;}
.y26{bottom:737.724267pt;}
.y7e{bottom:738.031333pt;}
.yed{bottom:738.064400pt;}
.y106{bottom:738.851600pt;}
.yf{bottom:740.326580pt;}
.yc1{bottom:745.864267pt;}
.yec{bottom:750.864400pt;}
.y105{bottom:751.984933pt;}
.y25{bottom:752.924267pt;}
.y7d{bottom:753.231333pt;}
.yc0{bottom:761.064267pt;}
.ye{bottom:761.529251pt;}
.yeb{bottom:763.664400pt;}
.y104{bottom:765.118267pt;}
.y24{bottom:768.124267pt;}
.y7c{bottom:768.431333pt;}
.yc{bottom:774.086210pt;}
.ybf{bottom:776.264267pt;}
.yea{bottom:776.464400pt;}
.y103{bottom:778.251600pt;}
.y23{bottom:783.324267pt;}
.y7b{bottom:783.631333pt;}
.ya{bottom:788.221329pt;}
.ye9{bottom:789.264400pt;}
.y102{bottom:791.384933pt;}
.ybe{bottom:791.464133pt;}
.y22{bottom:798.524267pt;}
.y7a{bottom:798.831333pt;}
.ye8{bottom:802.064400pt;}
.y101{bottom:804.518267pt;}
.ybd{bottom:806.664267pt;}
.y21{bottom:813.724267pt;}
.y79{bottom:814.031333pt;}
.ye7{bottom:814.864400pt;}
.y9{bottom:815.419374pt;}
.y100{bottom:817.651467pt;}
.ybc{bottom:821.864267pt;}
.ye6{bottom:827.664400pt;}
.y78{bottom:829.231333pt;}
.yff{bottom:830.784800pt;}
.y20{bottom:833.104267pt;}
.ybb{bottom:837.064267pt;}
.ye5{bottom:840.464400pt;}
.yfe{bottom:843.918133pt;}
.y77{bottom:844.431333pt;}
.y1f{bottom:848.304267pt;}
.y8{bottom:848.990270pt;}
.yba{bottom:852.264267pt;}
.ye4{bottom:853.264400pt;}
.yfd{bottom:857.051467pt;}
.y76{bottom:859.631333pt;}
.y7{bottom:863.125384pt;}
.ye3{bottom:866.064400pt;}
.y1e{bottom:866.883333pt;}
.yb9{bottom:867.464133pt;}
.yfc{bottom:870.184667pt;}
.y75{bottom:874.831333pt;}
.ye2{bottom:878.864400pt;}
.yb8{bottom:882.664267pt;}
.yfb{bottom:883.318000pt;}
.y74{bottom:890.031467pt;}
.y1d{bottom:892.042267pt;}
.yfa{bottom:896.451333pt;}
.yb7{bottom:897.864267pt;}
.y73{bottom:905.231467pt;}
.y6{bottom:906.414171pt;}
.yf9{bottom:909.584667pt;}
.yb6{bottom:913.064267pt;}
.ye1{bottom:913.064400pt;}
.y1c{bottom:914.442400pt;}
.y5{bottom:919.665840pt;}
.yf8{bottom:922.718000pt;}
.y72{bottom:924.210933pt;}
.yb5{bottom:928.264267pt;}
.ye0{bottom:928.264400pt;}
.yf7{bottom:935.851200pt;}
.y71{bottom:939.677600pt;}
.yb4{bottom:943.464400pt;}
.yf6{bottom:948.984533pt;}
.y4{bottom:956.770515pt;}
.y70{bottom:957.277733pt;}
.yb3{bottom:958.664400pt;}
.yf5{bottom:962.117867pt;}
.y1b{bottom:970.343067pt;}
.y6f{bottom:972.477733pt;}
.yb2{bottom:973.864400pt;}
.yf4{bottom:975.251200pt;}
.y3{bottom:981.506965pt;}
.y56{bottom:1013.353200pt;}
.ydf{bottom:1013.467733pt;}
.y1a{bottom:1013.819200pt;}
.y19{bottom:1013.937867pt;}
.y18{bottom:1014.267067pt;}
.y2{bottom:1017.728195pt;}
.h9{height:11.484765pt;}
.ha{height:11.484804pt;}
.h6{height:17.912185pt;}
.h12{height:20.418568pt;}
.h7{height:20.471069pt;}
.h23{height:22.250000pt;}
.h3{height:23.029952pt;}
.h5{height:25.588836pt;}
.h22{height:29.645833pt;}
.h8{height:30.706603pt;}
.h1e{height:33.351562pt;}
.h14{height:34.338542pt;}
.h20{height:34.368000pt;}
.h1f{height:35.183906pt;}
.h13{height:35.204427pt;}
.h16{height:35.604167pt;}
.h19{height:36.277333pt;}
.h17{height:37.138568pt;}
.h21{height:37.139101pt;}
.h1a{height:38.289062pt;}
.he{height:39.120000pt;}
.h1d{height:40.054688pt;}
.h15{height:42.279948pt;}
.h11{height:43.002552pt;}
.hd{height:47.813333pt;}
.h18{height:51.468800pt;}
.h10{height:51.880208pt;}
.hf{height:55.360000pt;}
.h4{height:56.595672pt;}
.h1c{height:59.622396pt;}
.h1b{height:61.871094pt;}
.hc{height:1114.666667pt;}
.hb{height:1114.928000pt;}
.h2{height:1121.091217pt;}
.h0{height:1121.279947pt;}
.h1{height:1121.333333pt;}
.w2{width:308.322176pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.w5{width:812.630667pt;}
.w4{width:831.333333pt;}
.w3{width:831.528000pt;}
.x0{left:0.000000pt;}
.xf{left:18.897333pt;}
.x1{left:53.006678pt;}
.x7{left:57.423901pt;}
.x34{left:66.666667pt;}
.x3{left:88.344460pt;}
.x8{left:94.569067pt;}
.x4{left:98.062355pt;}
.xb{left:102.047200pt;}
.xc{left:113.479200pt;}
.x11{left:132.283467pt;}
.x12{left:133.731467pt;}
.x30{left:137.952800pt;}
.x31{left:147.401600pt;}
.x14{left:151.181067pt;}
.x2e{left:153.523333pt;}
.x1d{left:154.572133pt;}
.x15{left:166.964933pt;}
.x1f{left:228.114667pt;}
.x1e{left:231.073600pt;}
.x20{left:238.283600pt;}
.x13{left:242.969067pt;}
.x16{left:244.447600pt;}
.x21{left:319.817733pt;}
.x22{left:336.781467pt;}
.x10{left:348.058933pt;}
.x9{left:361.140667pt;}
.x2f{left:368.406267pt;}
.x2{left:396.666641pt;}
.xe{left:411.039867pt;}
.x24{left:415.843733pt;}
.x25{left:418.667867pt;}
.x23{left:425.030400pt;}
.xd{left:429.937467pt;}
.x5{left:432.004436pt;}
.x6{left:441.722318pt;}
.x1b{left:448.835067pt;}
.x32{left:454.504533pt;}
.x33{left:463.953333pt;}
.x1c{left:467.732800pt;}
.x26{left:527.308400pt;}
.x27{left:529.913867pt;}
.x18{left:532.566000pt;}
.x28{left:538.270133pt;}
.xa{left:548.558667pt;}
.x29{left:554.460800pt;}
.x1a{left:559.415867pt;}
.x17{left:575.589867pt;}
.x19{left:576.647333pt;}
.x2a{left:640.808533pt;}
.x2b{left:641.914000pt;}
.x2c{left:645.927200pt;}
.x2d{left:667.960933pt;}
}




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