
    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_e29fcd09f58c7995e65e960e.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_a8c0fe31ff1f181d0e205772.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_8bce14e71a933cb2a58d9e17.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_93a9567181ea6045f732b7a4.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_29c3400e2eb7f99c2eb4230c.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;}
._6{margin-left:-673.190609px;}
._4{margin-left:-549.372522px;}
._2{margin-left:-277.462956px;}
._a{margin-left:-193.792696px;}
._d{margin-left:-46.440000px;}
._8{margin-left:-23.919652px;}
._9{margin-left:-12.168000px;}
._10{margin-left:-2.088000px;}
._0{margin-left:-1.056000px;}
._1{width:1.514087px;}
._f{width:2.570087px;}
._e{width:27.852000px;}
._c{width:29.280000px;}
._b{width:157.464000px;}
._3{width:240.984000px;}
._5{width:512.424000px;}
._7{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;}
.y5{bottom:72.391500px;}
.y4{bottom:87.916500px;}
.y5f{bottom:111.241500px;}
.y10c{bottom:117.091500px;}
.y78{bottom:121.966500px;}
.ya5{bottom:123.691500px;}
.ye9{bottom:124.066500px;}
.y101{bottom:127.891500px;}
.y5e{bottom:128.566500px;}
.y5d{bottom:134.416500px;}
.y12f{bottom:139.216500px;}
.y8d{bottom:145.891500px;}
.y41{bottom:151.291500px;}
.ydb{bottom:151.741500px;}
.yb8{bottom:152.791500px;}
.y77{bottom:153.016500px;}
.ya4{bottom:154.741500px;}
.ye8{bottom:155.116500px;}
.y100{bottom:158.941500px;}
.y3{bottom:161.641500px;}
.ybf{bottom:162.541500px;}
.y8c{bottom:169.066500px;}
.yc0{bottom:169.591500px;}
.yb7{bottom:170.116500px;}
.y12e{bottom:180.616500px;}
.y40{bottom:182.341500px;}
.ybe{bottom:183.241500px;}
.y76{bottom:184.066500px;}
.yda{bottom:185.266500px;}
.ya3{bottom:185.791500px;}
.yf2{bottom:187.516500px;}
.yff{bottom:189.991500px;}
.yb6{bottom:193.291500px;}
.y8b{bottom:195.016500px;}
.y10b{bottom:196.141500px;}
.y12d{bottom:201.316500px;}
.yf{bottom:204.916500px;}
.ye7{bottom:206.866500px;}
.y5c{bottom:213.766500px;}
.y75{bottom:215.116500px;}
.yd9{bottom:216.316500px;}
.y8a{bottom:216.841500px;}
.yf1{bottom:218.566500px;}
.yfe{bottom:221.041500px;}
.ye{bottom:222.241500px;}
.y10a{bottom:227.191500px;}
.y3f{bottom:234.091500px;}
.ya2{bottom:237.541500px;}
.ye6{bottom:237.916500px;}
.y12c{bottom:242.716500px;}
.y5b{bottom:244.816500px;}
.yd{bottom:245.416500px;}
.yd8{bottom:247.366500px;}
.y89{bottom:247.891500px;}
.yfd{bottom:252.091500px;}
.y74{bottom:256.516500px;}
.y109{bottom:258.241500px;}
.y12b{bottom:263.416500px;}
.y3e{bottom:265.141500px;}
.ya1{bottom:268.591500px;}
.yf0{bottom:270.358500px;}
.yd7{bottom:278.416500px;}
.yfc{bottom:283.141500px;}
.y12a{bottom:284.116500px;}
.y5a{bottom:286.216500px;}
.y10e{bottom:289.291500px;}
.ye5{bottom:289.666500px;}
.yb5{bottom:292.966500px;}
.y3d{bottom:296.191500px;}
.y88{bottom:299.641500px;}
.y73{bottom:308.266500px;}
.yd6{bottom:309.466500px;}
.y108{bottom:309.991500px;}
.yfb{bottom:314.191500px;}
.ye4{bottom:320.716500px;}
.yef{bottom:323.791500px;}
.yb4{bottom:324.016500px;}
.y129{bottom:325.516500px;}
.y3c{bottom:327.241500px;}
.ya0{bottom:330.691500px;}
.y59{bottom:337.966500px;}
.y72{bottom:339.316500px;}
.yd5{bottom:340.516500px;}
.y107{bottom:341.041500px;}
.yfa{bottom:345.241500px;}
.y87{bottom:351.391500px;}
.ye3{bottom:351.766500px;}
.yee{bottom:354.841500px;}
.yb3{bottom:355.066500px;}
.y3b{bottom:358.291500px;}
.y9f{bottom:361.741500px;}
.y128{bottom:366.916500px;}
.y58{bottom:369.016500px;}
.yd4{bottom:371.566500px;}
.y106{bottom:372.091500px;}
.yf9{bottom:376.291500px;}
.y71{bottom:382.441500px;}
.ye2{bottom:382.816500px;}
.yed{bottom:385.891500px;}
.y127{bottom:387.616500px;}
.y9e{bottom:392.791500px;}
.y3a{bottom:399.691500px;}
.y57{bottom:400.066500px;}
.y10d{bottom:403.141500px;}
.yb2{bottom:406.816500px;}
.yf8{bottom:407.341500px;}
.y105{bottom:413.491500px;}
.ye1{bottom:413.866500px;}
.yd3{bottom:423.316500px;}
.y9d{bottom:423.841500px;}
.y70{bottom:425.566500px;}
.y126{bottom:429.016500px;}
.y56{bottom:431.116500px;}
.y86{bottom:434.191500px;}
.yb1{bottom:437.866500px;}
.ybd{bottom:444.541500px;}
.y125{bottom:449.716500px;}
.y38{bottom:451.441500px;}
.yec{bottom:452.083500px;}
.y9c{bottom:454.891500px;}
.y39{bottom:458.491500px;}
.yf7{bottom:459.091500px;}
.y55{bottom:462.166500px;}
.y85{bottom:465.241500px;}
.ye0{bottom:465.616500px;}
.y6f{bottom:466.966500px;}
.yb0{bottom:468.916500px;}
.y124{bottom:470.416500px;}
.y37{bottom:472.141500px;}
.yd2{bottom:475.066500px;}
.ybc{bottom:475.591500px;}
.y9b{bottom:485.941500px;}
.yf6{bottom:490.141500px;}
.y35{bottom:492.841500px;}
.y83{bottom:496.291500px;}
.y36{bottom:499.891500px;}
.yaf{bottom:499.966500px;}
.y84{bottom:503.341500px;}
.yd1{bottom:506.116500px;}
.ybb{bottom:506.641500px;}
.ydf{bottom:510.091500px;}
.y123{bottom:511.816500px;}
.y34{bottom:513.541500px;}
.y53{bottom:513.916500px;}
.y9a{bottom:516.991500px;}
.y54{bottom:520.966500px;}
.yf5{bottom:521.191500px;}
.y82{bottom:527.341500px;}
.y122{bottom:532.516500px;}
.y32{bottom:534.241500px;}
.y6e{bottom:534.841500px;}
.yd0{bottom:537.166500px;}
.y33{bottom:541.291500px;}
.yae{bottom:541.366500px;}
.y52{bottom:544.966500px;}
.y99{bottom:548.041500px;}
.y31{bottom:554.941500px;}
.y81{bottom:558.391500px;}
.ycf{bottom:568.216500px;}
.yf4{bottom:568.741500px;}
.yde{bottom:572.791500px;}
.y121{bottom:573.916500px;}
.y21{bottom:575.641500px;}
.y51{bottom:576.016500px;}
.yeb{bottom:579.091500px;}
.y30{bottom:582.691500px;}
.y80{bottom:589.441500px;}
.yad{bottom:593.116500px;}
.y120{bottom:594.616500px;}
.y2f{bottom:596.341500px;}
.yce{bottom:599.266500px;}
.y98{bottom:599.791500px;}
.y20{bottom:606.691500px;}
.yea{bottom:610.141500px;}
.y11f{bottom:615.316500px;}
.y2e{bottom:617.041500px;}
.yba{bottom:620.491500px;}
.y50{bottom:627.766500px;}
.ycd{bottom:630.316500px;}
.y6d{bottom:630.841500px;}
.y7e{bottom:641.191500px;}
.y7f{bottom:648.241500px;}
.yb9{bottom:651.541500px;}
.y2d{bottom:656.716500px;}
.ycc{bottom:661.366500px;}
.y6c{bottom:661.891500px;}
.yac{bottom:666.316500px;}
.y1f{bottom:668.791500px;}
.y4f{bottom:669.166500px;}
.y7d{bottom:672.241500px;}
.y11e{bottom:677.416500px;}
.yf3{bottom:682.591500px;}
.y2c{bottom:687.766500px;}
.y6b{bottom:692.941500px;}
.y11d{bottom:698.116500px;}
.y1e{bottom:699.841500px;}
.y7c{bottom:703.291500px;}
.ycb{bottom:713.116500px;}
.y4e{bottom:713.641500px;}
.y6a{bottom:723.991500px;}
.y2b{bottom:729.208500px;}
.y1d{bottom:730.891500px;}
.y7b{bottom:734.341500px;}
.y11c{bottom:739.516500px;}
.ydd{bottom:741.241500px;}
.yca{bottom:744.166500px;}
.y104{bottom:744.691500px;}
.y69{bottom:755.041500px;}
.y11b{bottom:760.216500px;}
.y1c{bottom:761.941500px;}
.yab{bottom:762.316500px;}
.y7a{bottom:765.391500px;}
.yc9{bottom:775.216500px;}
.y4d{bottom:775.741500px;}
.y11a{bottom:780.916500px;}
.y2a{bottom:780.958500px;}
.y68{bottom:786.091500px;}
.y1b{bottom:792.991500px;}
.ya9{bottom:793.366500px;}
.y97{bottom:796.441500px;}
.yaa{bottom:800.416500px;}
.yc8{bottom:806.266500px;}
.y4c{bottom:806.791500px;}
.y29{bottom:812.008500px;}
.y67{bottom:817.141500px;}
.y119{bottom:822.316500px;}
.y1a{bottom:824.041500px;}
.ya8{bottom:824.416500px;}
.y103{bottom:827.491500px;}
.yc7{bottom:837.316500px;}
.y4b{bottom:837.841500px;}
.y96{bottom:848.191500px;}
.y19{bottom:855.091500px;}
.y79{bottom:858.541500px;}
.y118{bottom:863.716500px;}
.y28{bottom:863.758500px;}
.ya7{bottom:865.816500px;}
.yc6{bottom:868.366500px;}
.y66{bottom:868.891500px;}
.yc{bottom:873.541500px;}
.y95{bottom:879.241500px;}
.y117{bottom:884.416500px;}
.y18{bottom:886.141500px;}
.y4a{bottom:889.591500px;}
.y27{bottom:894.808500px;}
.yc5{bottom:899.416500px;}
.y65{bottom:899.941500px;}
.y94{bottom:910.291500px;}
.yb{bottom:914.941500px;}
.y17{bottom:917.191500px;}
.y49{bottom:920.641500px;}
.y116{bottom:925.816500px;}
.y26{bottom:925.858500px;}
.ydc{bottom:927.541500px;}
.yc3{bottom:930.466500px;}
.y64{bottom:930.991500px;}
.yc4{bottom:937.516500px;}
.y93{bottom:941.341500px;}
.y115{bottom:946.516500px;}
.y16{bottom:948.241500px;}
.y48{bottom:951.691500px;}
.y25{bottom:956.908500px;}
.y63{bottom:962.041500px;}
.y92{bottom:972.391500px;}
.y15{bottom:979.291500px;}
.yc2{bottom:979.441500px;}
.y47{bottom:982.741500px;}
.y114{bottom:987.916500px;}
.y24{bottom:987.958500px;}
.y62{bottom:993.091500px;}
.y91{bottom:1003.441500px;}
.y113{bottom:1008.616500px;}
.y14{bottom:1010.341500px;}
.y46{bottom:1013.791500px;}
.y23{bottom:1019.008500px;}
.y61{bottom:1024.141500px;}
.y9{bottom:1025.866500px;}
.y110{bottom:1026.466500px;}
.ya{bottom:1032.916500px;}
.y90{bottom:1034.491500px;}
.y13{bottom:1041.391500px;}
.y45{bottom:1044.841500px;}
.y112{bottom:1050.016500px;}
.y60{bottom:1055.191500px;}
.y22{bottom:1060.408500px;}
.y8f{bottom:1065.541500px;}
.y111{bottom:1070.716500px;}
.y12{bottom:1072.441500px;}
.y44{bottom:1075.891500px;}
.y10f{bottom:1081.066500px;}
.ya6{bottom:1082.941500px;}
.y8{bottom:1090.966500px;}
.y8e{bottom:1096.591500px;}
.y43{bottom:1106.941500px;}
.y102{bottom:1113.991500px;}
.yc1{bottom:1117.291500px;}
.y7{bottom:1132.366500px;}
.y11{bottom:1135.141500px;}
.y42{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;}
.x5f{left:112.500000px;}
.x28{left:116.250000px;}
.x54{left:121.050000px;}
.x7f{left:124.350000px;}
.x16{left:131.925000px;}
.x72{left:133.425000px;}
.x77{left:139.650000px;}
.x81{left:143.025000px;}
.x5d{left:148.650000px;}
.x18{left:150.675000px;}
.xa{left:151.875000px;}
.x40{left:154.575000px;}
.x78{left:167.325000px;}
.x84{left:172.950000px;}
.x6d{left:175.500000px;}
.x10{left:177.525000px;}
.x4d{left:180.750000px;}
.x4e{left:185.700000px;}
.x5c{left:194.175000px;}
.x23{left:195.600000px;}
.x6{left:197.250000px;}
.x11{left:200.400000px;}
.x82{left:204.675000px;}
.x49{left:210.375000px;}
.x87{left:212.625000px;}
.x3c{left:220.425000px;}
.x6e{left:222.825000px;}
.x68{left:226.500000px;}
.x3e{left:228.600000px;}
.x3f{left:232.875000px;}
.x13{left:235.350000px;}
.x39{left:236.850000px;}
.x44{left:240.000000px;}
.x14{left:243.900000px;}
.x7{left:248.475000px;}
.x1d{left:253.275000px;}
.x88{left:256.125000px;}
.x3a{left:257.700000px;}
.x6f{left:265.200000px;}
.x65{left:277.800000px;}
.x1b{left:281.100000px;}
.x31{left:282.600000px;}
.x7c{left:285.525000px;}
.x1c{left:291.000000px;}
.x7d{left:299.925000px;}
.x32{left:301.200000px;}
.x47{left:304.125000px;}
.x73{left:308.400000px;}
.x69{left:310.725000px;}
.x74{left:312.675000px;}
.x2d{left:313.875000px;}
.x29{left:317.925000px;}
.x17{left:320.100000px;}
.x67{left:322.725000px;}
.x61{left:324.525000px;}
.xd{left:326.475000px;}
.x15{left:327.750000px;}
.x3b{left:331.875000px;}
.x62{left:334.425000px;}
.x8{left:341.400000px;}
.x7b{left:347.100000px;}
.x4a{left:359.325000px;}
.x12{left:363.825000px;}
.x41{left:374.400000px;}
.x3d{left:377.025000px;}
.x6a{left:379.950000px;}
.x55{left:384.225000px;}
.x85{left:386.625000px;}
.x75{left:390.225000px;}
.x5e{left:395.100000px;}
.x70{left:397.275000px;}
.x6c{left:399.375000px;}
.x6b{left:404.025000px;}
.x2b{left:406.200000px;}
.xc{left:409.050000px;}
.x86{left:411.000000px;}
.x8b{left:412.800000px;}
.x20{left:417.300000px;}
.x24{left:422.625000px;}
.x51{left:425.400000px;}
.x21{left:432.150000px;}
.x22{left:442.275000px;}
.x4f{left:444.150000px;}
.x5{left:454.875000px;}
.x42{left:459.075000px;}
.x33{left:460.275000px;}
.x58{left:461.325000px;}
.x34{left:464.550000px;}
.x35{left:468.825000px;}
.x89{left:469.875000px;}
.x48{left:471.900000px;}
.x19{left:476.175000px;}
.x1a{left:486.075000px;}
.x66{left:493.275000px;}
.x36{left:495.075000px;}
.x2a{left:506.850000px;}
.xe{left:510.075000px;}
.x8d{left:513.600000px;}
.x79{left:515.325000px;}
.x8f{left:525.375000px;}
.x50{left:528.000000px;}
.x7a{left:529.725000px;}
.x43{left:533.250000px;}
.x4b{left:538.200000px;}
.x2e{left:539.325000px;}
.x3{left:540.750000px;}
.x57{left:542.475000px;}
.x9{left:546.900000px;}
.x4c{left:551.175000px;}
.x63{left:562.425000px;}
.x64{left:567.375000px;}
.x59{left:588.525000px;}
.x5a{left:597.075000px;}
.x2f{left:600.000000px;}
.x71{left:603.600000px;}
.x30{left:609.075000px;}
.x2c{left:613.725000px;}
.x76{left:616.200000px;}
.x25{left:617.550000px;}
.x4{left:618.600000px;}
.x52{left:626.250000px;}
.x53{left:636.150000px;}
.xf{left:639.075000px;}
.x37{left:667.275000px;}
.x45{left:670.275000px;}
.x38{left:672.150000px;}
.x80{left:686.325000px;}
.x56{left:689.100000px;}
.x8c{left:696.525000px;}
.x26{left:698.475000px;}
.x1e{left:700.125000px;}
.x27{left:703.425000px;}
.x1f{left:710.025000px;}
.x8a{left:724.350000px;}
.x8e{left:740.100000px;}
.x46{left:752.175000px;}
.x5b{left:758.550000px;}
.x7e{left:761.325000px;}
.x60{left:771.450000px;}
.x1{left:774.825000px;}
.x83{left:776.025000px;}
.xb{left:778.200000px;}
@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;}
._6{margin-left:-598.391652pt;}
._4{margin-left:-488.331130pt;}
._2{margin-left:-246.633739pt;}
._a{margin-left:-172.260174pt;}
._d{margin-left:-41.280000pt;}
._8{margin-left:-21.261913pt;}
._9{margin-left:-10.816000pt;}
._10{margin-left:-1.856000pt;}
._0{margin-left:-0.938667pt;}
._1{width:1.345855pt;}
._f{width:2.284522pt;}
._e{width:24.757333pt;}
._c{width:26.026667pt;}
._b{width:139.968000pt;}
._3{width:214.208000pt;}
._5{width:455.488000pt;}
._7{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;}
.y5{bottom:64.348000pt;}
.y4{bottom:78.148000pt;}
.y5f{bottom:98.881333pt;}
.y10c{bottom:104.081333pt;}
.y78{bottom:108.414667pt;}
.ya5{bottom:109.948000pt;}
.ye9{bottom:110.281333pt;}
.y101{bottom:113.681333pt;}
.y5e{bottom:114.281333pt;}
.y5d{bottom:119.481333pt;}
.y12f{bottom:123.748000pt;}
.y8d{bottom:129.681333pt;}
.y41{bottom:134.481333pt;}
.ydb{bottom:134.881333pt;}
.yb8{bottom:135.814667pt;}
.y77{bottom:136.014667pt;}
.ya4{bottom:137.548000pt;}
.ye8{bottom:137.881333pt;}
.y100{bottom:141.281333pt;}
.y3{bottom:143.681333pt;}
.ybf{bottom:144.481333pt;}
.y8c{bottom:150.281333pt;}
.yc0{bottom:150.748000pt;}
.yb7{bottom:151.214667pt;}
.y12e{bottom:160.548000pt;}
.y40{bottom:162.081333pt;}
.ybe{bottom:162.881333pt;}
.y76{bottom:163.614667pt;}
.yda{bottom:164.681333pt;}
.ya3{bottom:165.148000pt;}
.yf2{bottom:166.681333pt;}
.yff{bottom:168.881333pt;}
.yb6{bottom:171.814667pt;}
.y8b{bottom:173.348000pt;}
.y10b{bottom:174.348000pt;}
.y12d{bottom:178.948000pt;}
.yf{bottom:182.148000pt;}
.ye7{bottom:183.881333pt;}
.y5c{bottom:190.014667pt;}
.y75{bottom:191.214667pt;}
.yd9{bottom:192.281333pt;}
.y8a{bottom:192.748000pt;}
.yf1{bottom:194.281333pt;}
.yfe{bottom:196.481333pt;}
.ye{bottom:197.548000pt;}
.y10a{bottom:201.948000pt;}
.y3f{bottom:208.081333pt;}
.ya2{bottom:211.148000pt;}
.ye6{bottom:211.481333pt;}
.y12c{bottom:215.748000pt;}
.y5b{bottom:217.614667pt;}
.yd{bottom:218.148000pt;}
.yd8{bottom:219.881333pt;}
.y89{bottom:220.348000pt;}
.yfd{bottom:224.081333pt;}
.y74{bottom:228.014667pt;}
.y109{bottom:229.548000pt;}
.y12b{bottom:234.148000pt;}
.y3e{bottom:235.681333pt;}
.ya1{bottom:238.748000pt;}
.yf0{bottom:240.318667pt;}
.yd7{bottom:247.481333pt;}
.yfc{bottom:251.681333pt;}
.y12a{bottom:252.548000pt;}
.y5a{bottom:254.414667pt;}
.y10e{bottom:257.148000pt;}
.ye5{bottom:257.481333pt;}
.yb5{bottom:260.414667pt;}
.y3d{bottom:263.281333pt;}
.y88{bottom:266.348000pt;}
.y73{bottom:274.014667pt;}
.yd6{bottom:275.081333pt;}
.y108{bottom:275.548000pt;}
.yfb{bottom:279.281333pt;}
.ye4{bottom:285.081333pt;}
.yef{bottom:287.814667pt;}
.yb4{bottom:288.014667pt;}
.y129{bottom:289.348000pt;}
.y3c{bottom:290.881333pt;}
.ya0{bottom:293.948000pt;}
.y59{bottom:300.414667pt;}
.y72{bottom:301.614667pt;}
.yd5{bottom:302.681333pt;}
.y107{bottom:303.148000pt;}
.yfa{bottom:306.881333pt;}
.y87{bottom:312.348000pt;}
.ye3{bottom:312.681333pt;}
.yee{bottom:315.414667pt;}
.yb3{bottom:315.614667pt;}
.y3b{bottom:318.481333pt;}
.y9f{bottom:321.548000pt;}
.y128{bottom:326.148000pt;}
.y58{bottom:328.014667pt;}
.yd4{bottom:330.281333pt;}
.y106{bottom:330.748000pt;}
.yf9{bottom:334.481333pt;}
.y71{bottom:339.948000pt;}
.ye2{bottom:340.281333pt;}
.yed{bottom:343.014667pt;}
.y127{bottom:344.548000pt;}
.y9e{bottom:349.148000pt;}
.y3a{bottom:355.281333pt;}
.y57{bottom:355.614667pt;}
.y10d{bottom:358.348000pt;}
.yb2{bottom:361.614667pt;}
.yf8{bottom:362.081333pt;}
.y105{bottom:367.548000pt;}
.ye1{bottom:367.881333pt;}
.yd3{bottom:376.281333pt;}
.y9d{bottom:376.748000pt;}
.y70{bottom:378.281333pt;}
.y126{bottom:381.348000pt;}
.y56{bottom:383.214667pt;}
.y86{bottom:385.948000pt;}
.yb1{bottom:389.214667pt;}
.ybd{bottom:395.148000pt;}
.y125{bottom:399.748000pt;}
.y38{bottom:401.281333pt;}
.yec{bottom:401.852000pt;}
.y9c{bottom:404.348000pt;}
.y39{bottom:407.548000pt;}
.yf7{bottom:408.081333pt;}
.y55{bottom:410.814667pt;}
.y85{bottom:413.548000pt;}
.ye0{bottom:413.881333pt;}
.y6f{bottom:415.081333pt;}
.yb0{bottom:416.814667pt;}
.y124{bottom:418.148000pt;}
.y37{bottom:419.681333pt;}
.yd2{bottom:422.281333pt;}
.ybc{bottom:422.748000pt;}
.y9b{bottom:431.948000pt;}
.yf6{bottom:435.681333pt;}
.y35{bottom:438.081333pt;}
.y83{bottom:441.148000pt;}
.y36{bottom:444.348000pt;}
.yaf{bottom:444.414667pt;}
.y84{bottom:447.414667pt;}
.yd1{bottom:449.881333pt;}
.ybb{bottom:450.348000pt;}
.ydf{bottom:453.414667pt;}
.y123{bottom:454.948000pt;}
.y34{bottom:456.481333pt;}
.y53{bottom:456.814667pt;}
.y9a{bottom:459.548000pt;}
.y54{bottom:463.081333pt;}
.yf5{bottom:463.281333pt;}
.y82{bottom:468.748000pt;}
.y122{bottom:473.348000pt;}
.y32{bottom:474.881333pt;}
.y6e{bottom:475.414667pt;}
.yd0{bottom:477.481333pt;}
.y33{bottom:481.148000pt;}
.yae{bottom:481.214667pt;}
.y52{bottom:484.414667pt;}
.y99{bottom:487.148000pt;}
.y31{bottom:493.281333pt;}
.y81{bottom:496.348000pt;}
.ycf{bottom:505.081333pt;}
.yf4{bottom:505.548000pt;}
.yde{bottom:509.148000pt;}
.y121{bottom:510.148000pt;}
.y21{bottom:511.681333pt;}
.y51{bottom:512.014667pt;}
.yeb{bottom:514.748000pt;}
.y30{bottom:517.948000pt;}
.y80{bottom:523.948000pt;}
.yad{bottom:527.214667pt;}
.y120{bottom:528.548000pt;}
.y2f{bottom:530.081333pt;}
.yce{bottom:532.681333pt;}
.y98{bottom:533.148000pt;}
.y20{bottom:539.281333pt;}
.yea{bottom:542.348000pt;}
.y11f{bottom:546.948000pt;}
.y2e{bottom:548.481333pt;}
.yba{bottom:551.548000pt;}
.y50{bottom:558.014667pt;}
.ycd{bottom:560.281333pt;}
.y6d{bottom:560.748000pt;}
.y7e{bottom:569.948000pt;}
.y7f{bottom:576.214667pt;}
.yb9{bottom:579.148000pt;}
.y2d{bottom:583.748000pt;}
.ycc{bottom:587.881333pt;}
.y6c{bottom:588.348000pt;}
.yac{bottom:592.281333pt;}
.y1f{bottom:594.481333pt;}
.y4f{bottom:594.814667pt;}
.y7d{bottom:597.548000pt;}
.y11e{bottom:602.148000pt;}
.yf3{bottom:606.748000pt;}
.y2c{bottom:611.348000pt;}
.y6b{bottom:615.948000pt;}
.y11d{bottom:620.548000pt;}
.y1e{bottom:622.081333pt;}
.y7c{bottom:625.148000pt;}
.ycb{bottom:633.881333pt;}
.y4e{bottom:634.348000pt;}
.y6a{bottom:643.548000pt;}
.y2b{bottom:648.185333pt;}
.y1d{bottom:649.681333pt;}
.y7b{bottom:652.748000pt;}
.y11c{bottom:657.348000pt;}
.ydd{bottom:658.881333pt;}
.yca{bottom:661.481333pt;}
.y104{bottom:661.948000pt;}
.y69{bottom:671.148000pt;}
.y11b{bottom:675.748000pt;}
.y1c{bottom:677.281333pt;}
.yab{bottom:677.614667pt;}
.y7a{bottom:680.348000pt;}
.yc9{bottom:689.081333pt;}
.y4d{bottom:689.548000pt;}
.y11a{bottom:694.148000pt;}
.y2a{bottom:694.185333pt;}
.y68{bottom:698.748000pt;}
.y1b{bottom:704.881333pt;}
.ya9{bottom:705.214667pt;}
.y97{bottom:707.948000pt;}
.yaa{bottom:711.481333pt;}
.yc8{bottom:716.681333pt;}
.y4c{bottom:717.148000pt;}
.y29{bottom:721.785333pt;}
.y67{bottom:726.348000pt;}
.y119{bottom:730.948000pt;}
.y1a{bottom:732.481333pt;}
.ya8{bottom:732.814667pt;}
.y103{bottom:735.548000pt;}
.yc7{bottom:744.281333pt;}
.y4b{bottom:744.748000pt;}
.y96{bottom:753.948000pt;}
.y19{bottom:760.081333pt;}
.y79{bottom:763.148000pt;}
.y118{bottom:767.748000pt;}
.y28{bottom:767.785333pt;}
.ya7{bottom:769.614667pt;}
.yc6{bottom:771.881333pt;}
.y66{bottom:772.348000pt;}
.yc{bottom:776.481333pt;}
.y95{bottom:781.548000pt;}
.y117{bottom:786.148000pt;}
.y18{bottom:787.681333pt;}
.y4a{bottom:790.748000pt;}
.y27{bottom:795.385333pt;}
.yc5{bottom:799.481333pt;}
.y65{bottom:799.948000pt;}
.y94{bottom:809.148000pt;}
.yb{bottom:813.281333pt;}
.y17{bottom:815.281333pt;}
.y49{bottom:818.348000pt;}
.y116{bottom:822.948000pt;}
.y26{bottom:822.985333pt;}
.ydc{bottom:824.481333pt;}
.yc3{bottom:827.081333pt;}
.y64{bottom:827.548000pt;}
.yc4{bottom:833.348000pt;}
.y93{bottom:836.748000pt;}
.y115{bottom:841.348000pt;}
.y16{bottom:842.881333pt;}
.y48{bottom:845.948000pt;}
.y25{bottom:850.585333pt;}
.y63{bottom:855.148000pt;}
.y92{bottom:864.348000pt;}
.y15{bottom:870.481333pt;}
.yc2{bottom:870.614667pt;}
.y47{bottom:873.548000pt;}
.y114{bottom:878.148000pt;}
.y24{bottom:878.185333pt;}
.y62{bottom:882.748000pt;}
.y91{bottom:891.948000pt;}
.y113{bottom:896.548000pt;}
.y14{bottom:898.081333pt;}
.y46{bottom:901.148000pt;}
.y23{bottom:905.785333pt;}
.y61{bottom:910.348000pt;}
.y9{bottom:911.881333pt;}
.y110{bottom:912.414667pt;}
.ya{bottom:918.148000pt;}
.y90{bottom:919.548000pt;}
.y13{bottom:925.681333pt;}
.y45{bottom:928.748000pt;}
.y112{bottom:933.348000pt;}
.y60{bottom:937.948000pt;}
.y22{bottom:942.585333pt;}
.y8f{bottom:947.148000pt;}
.y111{bottom:951.748000pt;}
.y12{bottom:953.281333pt;}
.y44{bottom:956.348000pt;}
.y10f{bottom:960.948000pt;}
.ya6{bottom:962.614667pt;}
.y8{bottom:969.748000pt;}
.y8e{bottom:974.748000pt;}
.y43{bottom:983.948000pt;}
.y102{bottom:990.214667pt;}
.yc1{bottom:993.148000pt;}
.y7{bottom:1006.548000pt;}
.y11{bottom:1009.014667pt;}
.y42{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;}
.x5f{left:100.000000pt;}
.x28{left:103.333333pt;}
.x54{left:107.600000pt;}
.x7f{left:110.533333pt;}
.x16{left:117.266667pt;}
.x72{left:118.600000pt;}
.x77{left:124.133333pt;}
.x81{left:127.133333pt;}
.x5d{left:132.133333pt;}
.x18{left:133.933333pt;}
.xa{left:135.000000pt;}
.x40{left:137.400000pt;}
.x78{left:148.733333pt;}
.x84{left:153.733333pt;}
.x6d{left:156.000000pt;}
.x10{left:157.800000pt;}
.x4d{left:160.666667pt;}
.x4e{left:165.066667pt;}
.x5c{left:172.600000pt;}
.x23{left:173.866667pt;}
.x6{left:175.333333pt;}
.x11{left:178.133333pt;}
.x82{left:181.933333pt;}
.x49{left:187.000000pt;}
.x87{left:189.000000pt;}
.x3c{left:195.933333pt;}
.x6e{left:198.066667pt;}
.x68{left:201.333333pt;}
.x3e{left:203.200000pt;}
.x3f{left:207.000000pt;}
.x13{left:209.200000pt;}
.x39{left:210.533333pt;}
.x44{left:213.333333pt;}
.x14{left:216.800000pt;}
.x7{left:220.866667pt;}
.x1d{left:225.133333pt;}
.x88{left:227.666667pt;}
.x3a{left:229.066667pt;}
.x6f{left:235.733333pt;}
.x65{left:246.933333pt;}
.x1b{left:249.866667pt;}
.x31{left:251.200000pt;}
.x7c{left:253.800000pt;}
.x1c{left:258.666667pt;}
.x7d{left:266.600000pt;}
.x32{left:267.733333pt;}
.x47{left:270.333333pt;}
.x73{left:274.133333pt;}
.x69{left:276.200000pt;}
.x74{left:277.933333pt;}
.x2d{left:279.000000pt;}
.x29{left:282.600000pt;}
.x17{left:284.533333pt;}
.x67{left:286.866667pt;}
.x61{left:288.466667pt;}
.xd{left:290.200000pt;}
.x15{left:291.333333pt;}
.x3b{left:295.000000pt;}
.x62{left:297.266667pt;}
.x8{left:303.466667pt;}
.x7b{left:308.533333pt;}
.x4a{left:319.400000pt;}
.x12{left:323.400000pt;}
.x41{left:332.800000pt;}
.x3d{left:335.133333pt;}
.x6a{left:337.733333pt;}
.x55{left:341.533333pt;}
.x85{left:343.666667pt;}
.x75{left:346.866667pt;}
.x5e{left:351.200000pt;}
.x70{left:353.133333pt;}
.x6c{left:355.000000pt;}
.x6b{left:359.133333pt;}
.x2b{left:361.066667pt;}
.xc{left:363.600000pt;}
.x86{left:365.333333pt;}
.x8b{left:366.933333pt;}
.x20{left:370.933333pt;}
.x24{left:375.666667pt;}
.x51{left:378.133333pt;}
.x21{left:384.133333pt;}
.x22{left:393.133333pt;}
.x4f{left:394.800000pt;}
.x5{left:404.333333pt;}
.x42{left:408.066667pt;}
.x33{left:409.133333pt;}
.x58{left:410.066667pt;}
.x34{left:412.933333pt;}
.x35{left:416.733333pt;}
.x89{left:417.666667pt;}
.x48{left:419.466667pt;}
.x19{left:423.266667pt;}
.x1a{left:432.066667pt;}
.x66{left:438.466667pt;}
.x36{left:440.066667pt;}
.x2a{left:450.533333pt;}
.xe{left:453.400000pt;}
.x8d{left:456.533333pt;}
.x79{left:458.066667pt;}
.x8f{left:467.000000pt;}
.x50{left:469.333333pt;}
.x7a{left:470.866667pt;}
.x43{left:474.000000pt;}
.x4b{left:478.400000pt;}
.x2e{left:479.400000pt;}
.x3{left:480.666667pt;}
.x57{left:482.200000pt;}
.x9{left:486.133333pt;}
.x4c{left:489.933333pt;}
.x63{left:499.933333pt;}
.x64{left:504.333333pt;}
.x59{left:523.133333pt;}
.x5a{left:530.733333pt;}
.x2f{left:533.333333pt;}
.x71{left:536.533333pt;}
.x30{left:541.400000pt;}
.x2c{left:545.533333pt;}
.x76{left:547.733333pt;}
.x25{left:548.933333pt;}
.x4{left:549.866667pt;}
.x52{left:556.666667pt;}
.x53{left:565.466667pt;}
.xf{left:568.066667pt;}
.x37{left:593.133333pt;}
.x45{left:595.800000pt;}
.x38{left:597.466667pt;}
.x80{left:610.066667pt;}
.x56{left:612.533333pt;}
.x8c{left:619.133333pt;}
.x26{left:620.866667pt;}
.x1e{left:622.333333pt;}
.x27{left:625.266667pt;}
.x1f{left:631.133333pt;}
.x8a{left:643.866667pt;}
.x8e{left:657.866667pt;}
.x46{left:668.600000pt;}
.x5b{left:674.266667pt;}
.x7e{left:676.733333pt;}
.x60{left:685.733333pt;}
.x1{left:688.733333pt;}
.x83{left:689.800000pt;}
.xb{left:691.733333pt;}
}




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