
    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_97731f32fb432dbf13f3dba0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d6c10c3ff40fd10eec60f160.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5fcfe7d6a1f4c9b12ae29cb7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_413f9c56db7bccc96f47bcdd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bdddcafb3fbf7973944b8be7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005859;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;}
.m9{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240196,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.240809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240809,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242347,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);}
.m5{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);}
.v1{vertical-align:-23.400000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:17.988000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-21.000000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.000000px;}
.ws5{word-spacing:-10.500000px;}
.ws1{word-spacing:-8.700000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:370.368000px;}
._7{margin-left:-673.190609px;}
._5{margin-left:-549.372522px;}
._f{margin-left:-530.940000px;}
._3{margin-left:-277.462956px;}
._b{margin-left:-193.792696px;}
._e{margin-left:-46.440000px;}
._9{margin-left:-23.919652px;}
._a{margin-left:-12.168000px;}
._10{margin-left:-2.088000px;}
._0{margin-left:-1.056000px;}
._2{width:1.138435px;}
._1{width:2.315478px;}
._d{width:29.280000px;}
._c{width:157.464000px;}
._4{width:240.984000px;}
._6{width:512.424000px;}
._8{width:636.048000px;}
.fc4{color:rgb(57,100,254);}
.fc3{color:rgb(15,17,21);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:12.000000px;}
.fs5{font-size:34.800000px;}
.fs4{font-size:42.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:0.042000px;}
.y6{bottom:56.866500px;}
.y42{bottom:64.591500px;}
.y5{bottom:72.391500px;}
.y4{bottom:87.916500px;}
.y60{bottom:111.241500px;}
.y10a{bottom:117.091500px;}
.y132{bottom:118.516500px;}
.y79{bottom:121.966500px;}
.ya4{bottom:123.691500px;}
.y5f{bottom:128.566500px;}
.y5e{bottom:134.416500px;}
.y8c{bottom:145.891500px;}
.y41{bottom:151.291500px;}
.ye2{bottom:151.741500px;}
.y78{bottom:153.016500px;}
.ya3{bottom:154.741500px;}
.y131{bottom:159.916500px;}
.y3{bottom:161.641500px;}
.y8b{bottom:169.066500px;}
.yc8{bottom:172.891500px;}
.y100{bottom:177.166500px;}
.yb6{bottom:179.116500px;}
.y130{bottom:180.616500px;}
.y40{bottom:182.341500px;}
.y77{bottom:184.066500px;}
.ya2{bottom:185.791500px;}
.yb7{bottom:186.166500px;}
.yc7{bottom:193.591500px;}
.y107{bottom:196.141500px;}
.yf{bottom:204.916500px;}
.yff{bottom:208.216500px;}
.yb5{bottom:210.166500px;}
.y5d{bottom:213.766500px;}
.yc6{bottom:214.291500px;}
.y76{bottom:215.116500px;}
.y8a{bottom:216.841500px;}
.y12f{bottom:222.016500px;}
.ye{bottom:222.241500px;}
.y106{bottom:227.191500px;}
.yf7{bottom:227.566500px;}
.y3f{bottom:234.091500px;}
.yc5{bottom:234.991500px;}
.ya1{bottom:237.541500px;}
.yb4{bottom:241.216500px;}
.y12e{bottom:242.716500px;}
.y5c{bottom:244.816500px;}
.yd{bottom:245.416500px;}
.y89{bottom:247.891500px;}
.yc3{bottom:255.691500px;}
.y75{bottom:256.516500px;}
.y105{bottom:258.241500px;}
.yf6{bottom:258.616500px;}
.yfe{bottom:259.966500px;}
.yc4{bottom:262.741500px;}
.y12d{bottom:263.416500px;}
.y3e{bottom:265.141500px;}
.ye1{bottom:268.066500px;}
.ya0{bottom:268.591500px;}
.yc2{bottom:276.391500px;}
.y5b{bottom:286.216500px;}
.y104{bottom:289.291500px;}
.yfd{bottom:291.016500px;}
.yb3{bottom:292.966500px;}
.y3d{bottom:296.191500px;}
.ye0{bottom:299.116500px;}
.y88{bottom:299.641500px;}
.y12c{bottom:304.816500px;}
.y74{bottom:308.266500px;}
.yc1{bottom:309.991500px;}
.yf5{bottom:310.366500px;}
.y103{bottom:320.341500px;}
.yb2{bottom:324.016500px;}
.y3c{bottom:327.241500px;}
.ydf{bottom:330.166500px;}
.y9f{bottom:330.691500px;}
.y5a{bottom:337.966500px;}
.y73{bottom:339.316500px;}
.yf4{bottom:341.416500px;}
.yfc{bottom:342.808500px;}
.y12b{bottom:346.216500px;}
.y87{bottom:351.391500px;}
.yb1{bottom:355.066500px;}
.y3b{bottom:358.291500px;}
.yde{bottom:361.216500px;}
.y9e{bottom:361.741500px;}
.y12a{bottom:366.916500px;}
.y59{bottom:369.016500px;}
.y72{bottom:382.441500px;}
.ydd{bottom:392.266500px;}
.y9d{bottom:392.791500px;}
.yf3{bottom:393.166500px;}
.yfb{bottom:396.241500px;}
.y3a{bottom:399.691500px;}
.y58{bottom:400.066500px;}
.yb0{bottom:406.816500px;}
.y129{bottom:408.316500px;}
.y102{bottom:413.491500px;}
.ydc{bottom:423.316500px;}
.y9c{bottom:423.841500px;}
.yf2{bottom:424.216500px;}
.y71{bottom:425.566500px;}
.yfa{bottom:427.291500px;}
.y128{bottom:429.016500px;}
.y57{bottom:431.116500px;}
.y86{bottom:434.191500px;}
.yaf{bottom:437.866500px;}
.y101{bottom:444.541500px;}
.y127{bottom:449.716500px;}
.y38{bottom:451.441500px;}
.ydb{bottom:454.366500px;}
.y9b{bottom:454.891500px;}
.yf1{bottom:455.266500px;}
.y39{bottom:458.491500px;}
.y56{bottom:462.166500px;}
.y85{bottom:465.241500px;}
.y70{bottom:466.966500px;}
.yae{bottom:468.916500px;}
.y37{bottom:472.141500px;}
.yc0{bottom:475.591500px;}
.y9a{bottom:485.941500px;}
.yf0{bottom:486.316500px;}
.y126{bottom:491.116500px;}
.y35{bottom:492.841500px;}
.yf9{bottom:493.483500px;}
.y83{bottom:496.291500px;}
.y36{bottom:499.891500px;}
.yad{bottom:499.966500px;}
.y84{bottom:503.341500px;}
.yda{bottom:506.116500px;}
.y109{bottom:506.641500px;}
.y125{bottom:511.816500px;}
.y34{bottom:513.541500px;}
.y54{bottom:513.916500px;}
.y99{bottom:516.991500px;}
.yef{bottom:517.366500px;}
.y55{bottom:520.966500px;}
.y82{bottom:527.341500px;}
.y32{bottom:534.241500px;}
.y6f{bottom:534.841500px;}
.ybf{bottom:537.691500px;}
.y33{bottom:541.291500px;}
.yac{bottom:541.366500px;}
.y53{bottom:544.966500px;}
.y98{bottom:548.041500px;}
.y124{bottom:553.216500px;}
.y31{bottom:554.941500px;}
.yd9{bottom:557.866500px;}
.y81{bottom:558.391500px;}
.ybe{bottom:568.741500px;}
.yee{bottom:569.116500px;}
.y123{bottom:573.916500px;}
.y21{bottom:575.641500px;}
.y52{bottom:576.016500px;}
.y30{bottom:582.691500px;}
.yd8{bottom:588.916500px;}
.y80{bottom:589.441500px;}
.yab{bottom:593.116500px;}
.y122{bottom:594.616500px;}
.y2f{bottom:596.341500px;}
.y97{bottom:599.791500px;}
.y20{bottom:606.691500px;}
.yed{bottom:613.591500px;}
.y2e{bottom:617.041500px;}
.yd7{bottom:619.966500px;}
.yf8{bottom:620.491500px;}
.y51{bottom:627.766500px;}
.y6e{bottom:630.841500px;}
.y121{bottom:636.016500px;}
.y7f{bottom:641.191500px;}
.yd6{bottom:651.016500px;}
.ybd{bottom:651.541500px;}
.y2d{bottom:656.716500px;}
.y111{bottom:658.441500px;}
.y6d{bottom:661.891500px;}
.yaa{bottom:666.316500px;}
.y1f{bottom:668.791500px;}
.y50{bottom:669.166500px;}
.y7e{bottom:672.241500px;}
.yec{bottom:676.291500px;}
.y120{bottom:677.416500px;}
.yd5{bottom:682.066500px;}
.ybc{bottom:682.591500px;}
.y2c{bottom:687.766500px;}
.y110{bottom:689.491500px;}
.y6c{bottom:692.941500px;}
.y1e{bottom:699.841500px;}
.y7d{bottom:703.291500px;}
.yd4{bottom:713.116500px;}
.y4f{bottom:713.641500px;}
.y11f{bottom:718.816500px;}
.y10f{bottom:720.541500px;}
.y6b{bottom:723.991500px;}
.y2b{bottom:729.208500px;}
.y1d{bottom:730.891500px;}
.y7c{bottom:734.341500px;}
.y11e{bottom:739.516500px;}
.yd3{bottom:744.166500px;}
.ybb{bottom:744.691500px;}
.y10e{bottom:751.591500px;}
.y6a{bottom:755.041500px;}
.y11d{bottom:760.216500px;}
.y1c{bottom:761.941500px;}
.ya9{bottom:762.316500px;}
.y7b{bottom:765.391500px;}
.yeb{bottom:772.291500px;}
.y4e{bottom:775.741500px;}
.y2a{bottom:780.958500px;}
.y10d{bottom:782.641500px;}
.y69{bottom:786.091500px;}
.y1b{bottom:792.991500px;}
.ya7{bottom:793.366500px;}
.yd2{bottom:795.916500px;}
.y96{bottom:796.441500px;}
.ya8{bottom:800.416500px;}
.y11c{bottom:801.616500px;}
.yea{bottom:803.341500px;}
.y4d{bottom:806.791500px;}
.y29{bottom:812.008500px;}
.y10c{bottom:813.691500px;}
.y68{bottom:817.141500px;}
.y1a{bottom:824.041500px;}
.ya6{bottom:824.416500px;}
.yd1{bottom:826.966500px;}
.yba{bottom:827.491500px;}
.y4c{bottom:837.841500px;}
.y11b{bottom:843.016500px;}
.ye9{bottom:844.741500px;}
.y95{bottom:848.191500px;}
.y19{bottom:855.091500px;}
.yd0{bottom:858.016500px;}
.y7a{bottom:858.541500px;}
.y11a{bottom:863.716500px;}
.y28{bottom:863.758500px;}
.ya5{bottom:865.816500px;}
.y67{bottom:868.891500px;}
.yc{bottom:873.541500px;}
.y94{bottom:879.241500px;}
.y18{bottom:886.141500px;}
.ycf{bottom:889.066500px;}
.y4b{bottom:889.591500px;}
.y27{bottom:894.808500px;}
.ye8{bottom:896.491500px;}
.y66{bottom:899.941500px;}
.y119{bottom:905.116500px;}
.y10b{bottom:907.441500px;}
.y93{bottom:910.291500px;}
.yb{bottom:914.941500px;}
.y17{bottom:917.191500px;}
.yce{bottom:920.116500px;}
.y4a{bottom:920.641500px;}
.y118{bottom:925.816500px;}
.y26{bottom:925.858500px;}
.ye7{bottom:927.541500px;}
.y65{bottom:930.991500px;}
.y92{bottom:941.341500px;}
.y16{bottom:948.241500px;}
.ycd{bottom:951.166500px;}
.y49{bottom:951.691500px;}
.y25{bottom:956.908500px;}
.ye6{bottom:958.591500px;}
.y64{bottom:962.041500px;}
.y117{bottom:967.216500px;}
.y91{bottom:972.391500px;}
.y15{bottom:979.291500px;}
.ycc{bottom:982.216500px;}
.y48{bottom:982.741500px;}
.y116{bottom:987.916500px;}
.y24{bottom:987.958500px;}
.ye5{bottom:989.641500px;}
.y63{bottom:993.091500px;}
.y90{bottom:1003.441500px;}
.y14{bottom:1010.341500px;}
.yca{bottom:1013.266500px;}
.y47{bottom:1013.791500px;}
.y23{bottom:1019.008500px;}
.ycb{bottom:1020.316500px;}
.y62{bottom:1024.141500px;}
.y9{bottom:1025.866500px;}
.y113{bottom:1026.466500px;}
.ye4{bottom:1031.041500px;}
.ya{bottom:1032.916500px;}
.y8f{bottom:1034.491500px;}
.y115{bottom:1039.666500px;}
.y13{bottom:1041.391500px;}
.y46{bottom:1044.841500px;}
.y61{bottom:1055.191500px;}
.y22{bottom:1060.408500px;}
.yc9{bottom:1062.241500px;}
.y8e{bottom:1065.541500px;}
.y114{bottom:1070.716500px;}
.y12{bottom:1072.441500px;}
.y45{bottom:1075.891500px;}
.ye3{bottom:1079.491500px;}
.y112{bottom:1081.066500px;}
.yb9{bottom:1086.241500px;}
.y8{bottom:1090.966500px;}
.y8d{bottom:1096.591500px;}
.y44{bottom:1106.941500px;}
.y108{bottom:1113.991500px;}
.yb8{bottom:1117.291500px;}
.y7{bottom:1132.366500px;}
.y11{bottom:1135.141500px;}
.y43{bottom:1137.991500px;}
.y10{bottom:1196.191500px;}
.y1{bottom:1196.233500px;}
.hc{height:8.337891px;}
.h8{height:24.179883px;}
.hd{height:29.162109px;}
.h7{height:29.182617px;}
.h2{height:37.520508px;}
.h4{height:41.689453px;}
.hb{height:48.796875px;}
.ha{height:49.992188px;}
.h6{height:50.027344px;}
.h9{height:56.929688px;}
.he{height:56.953125px;}
.h5{height:65.062500px;}
.h3{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:108.150000px;}
.x5b{left:112.500000px;}
.xf{left:116.700000px;}
.x17{left:131.925000px;}
.x6c{left:133.425000px;}
.x73{left:143.025000px;}
.x59{left:148.650000px;}
.x1a{left:150.675000px;}
.xa{left:151.875000px;}
.x76{left:172.950000px;}
.x67{left:175.500000px;}
.x62{left:178.050000px;}
.x4d{left:180.750000px;}
.x4e{left:185.700000px;}
.x58{left:194.175000px;}
.x26{left:195.600000px;}
.x6{left:197.250000px;}
.x18{left:201.300000px;}
.x74{left:204.675000px;}
.x4b{left:210.375000px;}
.x79{left:212.625000px;}
.x3e{left:220.425000px;}
.x68{left:222.825000px;}
.x63{left:225.825000px;}
.x40{left:228.600000px;}
.x41{left:232.875000px;}
.x3a{left:236.850000px;}
.x46{left:240.000000px;}
.x1f{left:243.375000px;}
.x64{left:244.800000px;}
.x7{left:248.475000px;}
.x20{left:253.275000px;}
.x7a{left:256.125000px;}
.x3b{left:257.700000px;}
.x69{left:265.200000px;}
.x5f{left:277.800000px;}
.x1d{left:281.100000px;}
.x32{left:282.600000px;}
.x10{left:286.800000px;}
.x1e{left:291.000000px;}
.x33{left:301.200000px;}
.x49{left:304.125000px;}
.x6d{left:308.400000px;}
.x11{left:309.675000px;}
.x13{left:310.800000px;}
.x6e{left:312.675000px;}
.x2f{left:313.875000px;}
.x2b{left:317.925000px;}
.x19{left:320.100000px;}
.x44{left:323.700000px;}
.x3c{left:331.875000px;}
.xd{left:335.100000px;}
.x8{left:341.400000px;}
.x61{left:346.800000px;}
.x4c{left:359.325000px;}
.x3d{left:363.675000px;}
.x3f{left:377.025000px;}
.x65{left:379.950000px;}
.x53{left:384.300000px;}
.x77{left:386.625000px;}
.x6f{left:390.225000px;}
.x5a{left:395.100000px;}
.x6a{left:397.275000px;}
.x66{left:399.375000px;}
.x45{left:403.650000px;}
.x2d{left:406.200000px;}
.xc{left:409.050000px;}
.x78{left:411.000000px;}
.x7e{left:412.800000px;}
.x23{left:417.300000px;}
.x27{left:422.625000px;}
.x50{left:425.400000px;}
.x24{left:432.150000px;}
.x14{left:438.000000px;}
.x25{left:442.275000px;}
.x4f{left:444.150000px;}
.x15{left:446.550000px;}
.x5{left:454.875000px;}
.x34{left:460.275000px;}
.x35{left:464.550000px;}
.x36{left:468.825000px;}
.x7c{left:469.875000px;}
.x4a{left:471.900000px;}
.x1b{left:476.175000px;}
.x12{left:481.725000px;}
.x1c{left:486.075000px;}
.x60{left:493.275000px;}
.x37{left:495.075000px;}
.x2c{left:506.850000px;}
.x80{left:513.600000px;}
.x71{left:516.225000px;}
.x82{left:525.375000px;}
.xe{left:527.400000px;}
.x16{left:539.100000px;}
.x55{left:542.475000px;}
.x9{left:546.900000px;}
.x3{left:550.875000px;}
.x5d{left:562.425000px;}
.x5e{left:567.375000px;}
.x70{left:572.700000px;}
.x42{left:590.325000px;}
.x56{left:596.025000px;}
.x30{left:600.000000px;}
.x6b{left:603.600000px;}
.x31{left:609.075000px;}
.x2e{left:613.725000px;}
.x28{left:617.550000px;}
.x4{left:618.600000px;}
.x51{left:626.250000px;}
.x52{left:636.150000px;}
.x7b{left:638.325000px;}
.x38{left:667.275000px;}
.x47{left:670.275000px;}
.x39{left:672.150000px;}
.x72{left:686.325000px;}
.x54{left:689.100000px;}
.x7f{left:696.525000px;}
.x29{left:698.475000px;}
.x21{left:700.125000px;}
.x2a{left:703.425000px;}
.x22{left:710.025000px;}
.x7d{left:724.350000px;}
.x81{left:740.100000px;}
.x48{left:752.175000px;}
.x57{left:757.500000px;}
.x5c{left:771.450000px;}
.x1{left:774.825000px;}
.x75{left:776.025000px;}
.xb{left:778.200000px;}
.x43{left:779.775000px;}
@media print{
.v1{vertical-align:-20.800000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:15.989333pt;}
.ws4{word-spacing:-18.666667pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws5{word-spacing:-9.333333pt;}
.ws1{word-spacing:-7.733333pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:329.216000pt;}
._7{margin-left:-598.391652pt;}
._5{margin-left:-488.331130pt;}
._f{margin-left:-471.946667pt;}
._3{margin-left:-246.633739pt;}
._b{margin-left:-172.260174pt;}
._e{margin-left:-41.280000pt;}
._9{margin-left:-21.261913pt;}
._a{margin-left:-10.816000pt;}
._10{margin-left:-1.856000pt;}
._0{margin-left:-0.938667pt;}
._2{width:1.011942pt;}
._1{width:2.058203pt;}
._d{width:26.026667pt;}
._c{width:139.968000pt;}
._4{width:214.208000pt;}
._6{width:455.488000pt;}
._8{width:565.376000pt;}
.fs7{font-size:10.666667pt;}
.fs5{font-size:30.933333pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:0.037333pt;}
.y6{bottom:50.548000pt;}
.y42{bottom:57.414667pt;}
.y5{bottom:64.348000pt;}
.y4{bottom:78.148000pt;}
.y60{bottom:98.881333pt;}
.y10a{bottom:104.081333pt;}
.y132{bottom:105.348000pt;}
.y79{bottom:108.414667pt;}
.ya4{bottom:109.948000pt;}
.y5f{bottom:114.281333pt;}
.y5e{bottom:119.481333pt;}
.y8c{bottom:129.681333pt;}
.y41{bottom:134.481333pt;}
.ye2{bottom:134.881333pt;}
.y78{bottom:136.014667pt;}
.ya3{bottom:137.548000pt;}
.y131{bottom:142.148000pt;}
.y3{bottom:143.681333pt;}
.y8b{bottom:150.281333pt;}
.yc8{bottom:153.681333pt;}
.y100{bottom:157.481333pt;}
.yb6{bottom:159.214667pt;}
.y130{bottom:160.548000pt;}
.y40{bottom:162.081333pt;}
.y77{bottom:163.614667pt;}
.ya2{bottom:165.148000pt;}
.yb7{bottom:165.481333pt;}
.yc7{bottom:172.081333pt;}
.y107{bottom:174.348000pt;}
.yf{bottom:182.148000pt;}
.yff{bottom:185.081333pt;}
.yb5{bottom:186.814667pt;}
.y5d{bottom:190.014667pt;}
.yc6{bottom:190.481333pt;}
.y76{bottom:191.214667pt;}
.y8a{bottom:192.748000pt;}
.y12f{bottom:197.348000pt;}
.ye{bottom:197.548000pt;}
.y106{bottom:201.948000pt;}
.yf7{bottom:202.281333pt;}
.y3f{bottom:208.081333pt;}
.yc5{bottom:208.881333pt;}
.ya1{bottom:211.148000pt;}
.yb4{bottom:214.414667pt;}
.y12e{bottom:215.748000pt;}
.y5c{bottom:217.614667pt;}
.yd{bottom:218.148000pt;}
.y89{bottom:220.348000pt;}
.yc3{bottom:227.281333pt;}
.y75{bottom:228.014667pt;}
.y105{bottom:229.548000pt;}
.yf6{bottom:229.881333pt;}
.yfe{bottom:231.081333pt;}
.yc4{bottom:233.548000pt;}
.y12d{bottom:234.148000pt;}
.y3e{bottom:235.681333pt;}
.ye1{bottom:238.281333pt;}
.ya0{bottom:238.748000pt;}
.yc2{bottom:245.681333pt;}
.y5b{bottom:254.414667pt;}
.y104{bottom:257.148000pt;}
.yfd{bottom:258.681333pt;}
.yb3{bottom:260.414667pt;}
.y3d{bottom:263.281333pt;}
.ye0{bottom:265.881333pt;}
.y88{bottom:266.348000pt;}
.y12c{bottom:270.948000pt;}
.y74{bottom:274.014667pt;}
.yc1{bottom:275.548000pt;}
.yf5{bottom:275.881333pt;}
.y103{bottom:284.748000pt;}
.yb2{bottom:288.014667pt;}
.y3c{bottom:290.881333pt;}
.ydf{bottom:293.481333pt;}
.y9f{bottom:293.948000pt;}
.y5a{bottom:300.414667pt;}
.y73{bottom:301.614667pt;}
.yf4{bottom:303.481333pt;}
.yfc{bottom:304.718667pt;}
.y12b{bottom:307.748000pt;}
.y87{bottom:312.348000pt;}
.yb1{bottom:315.614667pt;}
.y3b{bottom:318.481333pt;}
.yde{bottom:321.081333pt;}
.y9e{bottom:321.548000pt;}
.y12a{bottom:326.148000pt;}
.y59{bottom:328.014667pt;}
.y72{bottom:339.948000pt;}
.ydd{bottom:348.681333pt;}
.y9d{bottom:349.148000pt;}
.yf3{bottom:349.481333pt;}
.yfb{bottom:352.214667pt;}
.y3a{bottom:355.281333pt;}
.y58{bottom:355.614667pt;}
.yb0{bottom:361.614667pt;}
.y129{bottom:362.948000pt;}
.y102{bottom:367.548000pt;}
.ydc{bottom:376.281333pt;}
.y9c{bottom:376.748000pt;}
.yf2{bottom:377.081333pt;}
.y71{bottom:378.281333pt;}
.yfa{bottom:379.814667pt;}
.y128{bottom:381.348000pt;}
.y57{bottom:383.214667pt;}
.y86{bottom:385.948000pt;}
.yaf{bottom:389.214667pt;}
.y101{bottom:395.148000pt;}
.y127{bottom:399.748000pt;}
.y38{bottom:401.281333pt;}
.ydb{bottom:403.881333pt;}
.y9b{bottom:404.348000pt;}
.yf1{bottom:404.681333pt;}
.y39{bottom:407.548000pt;}
.y56{bottom:410.814667pt;}
.y85{bottom:413.548000pt;}
.y70{bottom:415.081333pt;}
.yae{bottom:416.814667pt;}
.y37{bottom:419.681333pt;}
.yc0{bottom:422.748000pt;}
.y9a{bottom:431.948000pt;}
.yf0{bottom:432.281333pt;}
.y126{bottom:436.548000pt;}
.y35{bottom:438.081333pt;}
.yf9{bottom:438.652000pt;}
.y83{bottom:441.148000pt;}
.y36{bottom:444.348000pt;}
.yad{bottom:444.414667pt;}
.y84{bottom:447.414667pt;}
.yda{bottom:449.881333pt;}
.y109{bottom:450.348000pt;}
.y125{bottom:454.948000pt;}
.y34{bottom:456.481333pt;}
.y54{bottom:456.814667pt;}
.y99{bottom:459.548000pt;}
.yef{bottom:459.881333pt;}
.y55{bottom:463.081333pt;}
.y82{bottom:468.748000pt;}
.y32{bottom:474.881333pt;}
.y6f{bottom:475.414667pt;}
.ybf{bottom:477.948000pt;}
.y33{bottom:481.148000pt;}
.yac{bottom:481.214667pt;}
.y53{bottom:484.414667pt;}
.y98{bottom:487.148000pt;}
.y124{bottom:491.748000pt;}
.y31{bottom:493.281333pt;}
.yd9{bottom:495.881333pt;}
.y81{bottom:496.348000pt;}
.ybe{bottom:505.548000pt;}
.yee{bottom:505.881333pt;}
.y123{bottom:510.148000pt;}
.y21{bottom:511.681333pt;}
.y52{bottom:512.014667pt;}
.y30{bottom:517.948000pt;}
.yd8{bottom:523.481333pt;}
.y80{bottom:523.948000pt;}
.yab{bottom:527.214667pt;}
.y122{bottom:528.548000pt;}
.y2f{bottom:530.081333pt;}
.y97{bottom:533.148000pt;}
.y20{bottom:539.281333pt;}
.yed{bottom:545.414667pt;}
.y2e{bottom:548.481333pt;}
.yd7{bottom:551.081333pt;}
.yf8{bottom:551.548000pt;}
.y51{bottom:558.014667pt;}
.y6e{bottom:560.748000pt;}
.y121{bottom:565.348000pt;}
.y7f{bottom:569.948000pt;}
.yd6{bottom:578.681333pt;}
.ybd{bottom:579.148000pt;}
.y2d{bottom:583.748000pt;}
.y111{bottom:585.281333pt;}
.y6d{bottom:588.348000pt;}
.yaa{bottom:592.281333pt;}
.y1f{bottom:594.481333pt;}
.y50{bottom:594.814667pt;}
.y7e{bottom:597.548000pt;}
.yec{bottom:601.148000pt;}
.y120{bottom:602.148000pt;}
.yd5{bottom:606.281333pt;}
.ybc{bottom:606.748000pt;}
.y2c{bottom:611.348000pt;}
.y110{bottom:612.881333pt;}
.y6c{bottom:615.948000pt;}
.y1e{bottom:622.081333pt;}
.y7d{bottom:625.148000pt;}
.yd4{bottom:633.881333pt;}
.y4f{bottom:634.348000pt;}
.y11f{bottom:638.948000pt;}
.y10f{bottom:640.481333pt;}
.y6b{bottom:643.548000pt;}
.y2b{bottom:648.185333pt;}
.y1d{bottom:649.681333pt;}
.y7c{bottom:652.748000pt;}
.y11e{bottom:657.348000pt;}
.yd3{bottom:661.481333pt;}
.ybb{bottom:661.948000pt;}
.y10e{bottom:668.081333pt;}
.y6a{bottom:671.148000pt;}
.y11d{bottom:675.748000pt;}
.y1c{bottom:677.281333pt;}
.ya9{bottom:677.614667pt;}
.y7b{bottom:680.348000pt;}
.yeb{bottom:686.481333pt;}
.y4e{bottom:689.548000pt;}
.y2a{bottom:694.185333pt;}
.y10d{bottom:695.681333pt;}
.y69{bottom:698.748000pt;}
.y1b{bottom:704.881333pt;}
.ya7{bottom:705.214667pt;}
.yd2{bottom:707.481333pt;}
.y96{bottom:707.948000pt;}
.ya8{bottom:711.481333pt;}
.y11c{bottom:712.548000pt;}
.yea{bottom:714.081333pt;}
.y4d{bottom:717.148000pt;}
.y29{bottom:721.785333pt;}
.y10c{bottom:723.281333pt;}
.y68{bottom:726.348000pt;}
.y1a{bottom:732.481333pt;}
.ya6{bottom:732.814667pt;}
.yd1{bottom:735.081333pt;}
.yba{bottom:735.548000pt;}
.y4c{bottom:744.748000pt;}
.y11b{bottom:749.348000pt;}
.ye9{bottom:750.881333pt;}
.y95{bottom:753.948000pt;}
.y19{bottom:760.081333pt;}
.yd0{bottom:762.681333pt;}
.y7a{bottom:763.148000pt;}
.y11a{bottom:767.748000pt;}
.y28{bottom:767.785333pt;}
.ya5{bottom:769.614667pt;}
.y67{bottom:772.348000pt;}
.yc{bottom:776.481333pt;}
.y94{bottom:781.548000pt;}
.y18{bottom:787.681333pt;}
.ycf{bottom:790.281333pt;}
.y4b{bottom:790.748000pt;}
.y27{bottom:795.385333pt;}
.ye8{bottom:796.881333pt;}
.y66{bottom:799.948000pt;}
.y119{bottom:804.548000pt;}
.y10b{bottom:806.614667pt;}
.y93{bottom:809.148000pt;}
.yb{bottom:813.281333pt;}
.y17{bottom:815.281333pt;}
.yce{bottom:817.881333pt;}
.y4a{bottom:818.348000pt;}
.y118{bottom:822.948000pt;}
.y26{bottom:822.985333pt;}
.ye7{bottom:824.481333pt;}
.y65{bottom:827.548000pt;}
.y92{bottom:836.748000pt;}
.y16{bottom:842.881333pt;}
.ycd{bottom:845.481333pt;}
.y49{bottom:845.948000pt;}
.y25{bottom:850.585333pt;}
.ye6{bottom:852.081333pt;}
.y64{bottom:855.148000pt;}
.y117{bottom:859.748000pt;}
.y91{bottom:864.348000pt;}
.y15{bottom:870.481333pt;}
.ycc{bottom:873.081333pt;}
.y48{bottom:873.548000pt;}
.y116{bottom:878.148000pt;}
.y24{bottom:878.185333pt;}
.ye5{bottom:879.681333pt;}
.y63{bottom:882.748000pt;}
.y90{bottom:891.948000pt;}
.y14{bottom:898.081333pt;}
.yca{bottom:900.681333pt;}
.y47{bottom:901.148000pt;}
.y23{bottom:905.785333pt;}
.ycb{bottom:906.948000pt;}
.y62{bottom:910.348000pt;}
.y9{bottom:911.881333pt;}
.y113{bottom:912.414667pt;}
.ye4{bottom:916.481333pt;}
.ya{bottom:918.148000pt;}
.y8f{bottom:919.548000pt;}
.y115{bottom:924.148000pt;}
.y13{bottom:925.681333pt;}
.y46{bottom:928.748000pt;}
.y61{bottom:937.948000pt;}
.y22{bottom:942.585333pt;}
.yc9{bottom:944.214667pt;}
.y8e{bottom:947.148000pt;}
.y114{bottom:951.748000pt;}
.y12{bottom:953.281333pt;}
.y45{bottom:956.348000pt;}
.ye3{bottom:959.548000pt;}
.y112{bottom:960.948000pt;}
.yb9{bottom:965.548000pt;}
.y8{bottom:969.748000pt;}
.y8d{bottom:974.748000pt;}
.y44{bottom:983.948000pt;}
.y108{bottom:990.214667pt;}
.yb8{bottom:993.148000pt;}
.y7{bottom:1006.548000pt;}
.y11{bottom:1009.014667pt;}
.y43{bottom:1011.548000pt;}
.y10{bottom:1063.281333pt;}
.y1{bottom:1063.318667pt;}
.hc{height:7.411458pt;}
.h8{height:21.493229pt;}
.hd{height:25.921875pt;}
.h7{height:25.940104pt;}
.h2{height:33.351562pt;}
.h4{height:37.057292pt;}
.hb{height:43.375000pt;}
.ha{height:44.437500pt;}
.h6{height:44.468750pt;}
.h9{height:50.604167pt;}
.he{height:50.625000pt;}
.h5{height:57.833333pt;}
.h3{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.133333pt;}
.x5b{left:100.000000pt;}
.xf{left:103.733333pt;}
.x17{left:117.266667pt;}
.x6c{left:118.600000pt;}
.x73{left:127.133333pt;}
.x59{left:132.133333pt;}
.x1a{left:133.933333pt;}
.xa{left:135.000000pt;}
.x76{left:153.733333pt;}
.x67{left:156.000000pt;}
.x62{left:158.266667pt;}
.x4d{left:160.666667pt;}
.x4e{left:165.066667pt;}
.x58{left:172.600000pt;}
.x26{left:173.866667pt;}
.x6{left:175.333333pt;}
.x18{left:178.933333pt;}
.x74{left:181.933333pt;}
.x4b{left:187.000000pt;}
.x79{left:189.000000pt;}
.x3e{left:195.933333pt;}
.x68{left:198.066667pt;}
.x63{left:200.733333pt;}
.x40{left:203.200000pt;}
.x41{left:207.000000pt;}
.x3a{left:210.533333pt;}
.x46{left:213.333333pt;}
.x1f{left:216.333333pt;}
.x64{left:217.600000pt;}
.x7{left:220.866667pt;}
.x20{left:225.133333pt;}
.x7a{left:227.666667pt;}
.x3b{left:229.066667pt;}
.x69{left:235.733333pt;}
.x5f{left:246.933333pt;}
.x1d{left:249.866667pt;}
.x32{left:251.200000pt;}
.x10{left:254.933333pt;}
.x1e{left:258.666667pt;}
.x33{left:267.733333pt;}
.x49{left:270.333333pt;}
.x6d{left:274.133333pt;}
.x11{left:275.266667pt;}
.x13{left:276.266667pt;}
.x6e{left:277.933333pt;}
.x2f{left:279.000000pt;}
.x2b{left:282.600000pt;}
.x19{left:284.533333pt;}
.x44{left:287.733333pt;}
.x3c{left:295.000000pt;}
.xd{left:297.866667pt;}
.x8{left:303.466667pt;}
.x61{left:308.266667pt;}
.x4c{left:319.400000pt;}
.x3d{left:323.266667pt;}
.x3f{left:335.133333pt;}
.x65{left:337.733333pt;}
.x53{left:341.600000pt;}
.x77{left:343.666667pt;}
.x6f{left:346.866667pt;}
.x5a{left:351.200000pt;}
.x6a{left:353.133333pt;}
.x66{left:355.000000pt;}
.x45{left:358.800000pt;}
.x2d{left:361.066667pt;}
.xc{left:363.600000pt;}
.x78{left:365.333333pt;}
.x7e{left:366.933333pt;}
.x23{left:370.933333pt;}
.x27{left:375.666667pt;}
.x50{left:378.133333pt;}
.x24{left:384.133333pt;}
.x14{left:389.333333pt;}
.x25{left:393.133333pt;}
.x4f{left:394.800000pt;}
.x15{left:396.933333pt;}
.x5{left:404.333333pt;}
.x34{left:409.133333pt;}
.x35{left:412.933333pt;}
.x36{left:416.733333pt;}
.x7c{left:417.666667pt;}
.x4a{left:419.466667pt;}
.x1b{left:423.266667pt;}
.x12{left:428.200000pt;}
.x1c{left:432.066667pt;}
.x60{left:438.466667pt;}
.x37{left:440.066667pt;}
.x2c{left:450.533333pt;}
.x80{left:456.533333pt;}
.x71{left:458.866667pt;}
.x82{left:467.000000pt;}
.xe{left:468.800000pt;}
.x16{left:479.200000pt;}
.x55{left:482.200000pt;}
.x9{left:486.133333pt;}
.x3{left:489.666667pt;}
.x5d{left:499.933333pt;}
.x5e{left:504.333333pt;}
.x70{left:509.066667pt;}
.x42{left:524.733333pt;}
.x56{left:529.800000pt;}
.x30{left:533.333333pt;}
.x6b{left:536.533333pt;}
.x31{left:541.400000pt;}
.x2e{left:545.533333pt;}
.x28{left:548.933333pt;}
.x4{left:549.866667pt;}
.x51{left:556.666667pt;}
.x52{left:565.466667pt;}
.x7b{left:567.400000pt;}
.x38{left:593.133333pt;}
.x47{left:595.800000pt;}
.x39{left:597.466667pt;}
.x72{left:610.066667pt;}
.x54{left:612.533333pt;}
.x7f{left:619.133333pt;}
.x29{left:620.866667pt;}
.x21{left:622.333333pt;}
.x2a{left:625.266667pt;}
.x22{left:631.133333pt;}
.x7d{left:643.866667pt;}
.x81{left:657.866667pt;}
.x48{left:668.600000pt;}
.x57{left:673.333333pt;}
.x5c{left:685.733333pt;}
.x1{left:688.733333pt;}
.x75{left:689.800000pt;}
.xb{left:691.733333pt;}
.x43{left:693.133333pt;}
}




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