
    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_bd12e06b8ea640d2ee42f1e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_e14c9ad8479b8715e9985b0d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107910;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_b244753068bc5c913e29c56b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.188000;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_3c3a8e5c903a50731f60f80c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_f5303f878f8308575874b3eb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.230000;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_a1a0b072b8e407b0804794d1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.109863;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_e32e06db910fdff2a479d16b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.578000;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_77f1572c7dc9d498af6f3194.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.665000;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_64600d27813bf63b2e0ab2f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.475000;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_f740bee9d4e94f32ae513574.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_6883baf6cf132251cf9a4fff.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.096680;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_d14e482e9fc924efb214d17f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692383;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(0.268013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.379486px;}
.v1{vertical-align:4.080539px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.009840px;}
.ls3{letter-spacing:16.923710px;}
.ls1{letter-spacing:19.038201px;}
.ls9{letter-spacing:21.327988px;}
.ls8{letter-spacing:24.068108px;}
.ls6{letter-spacing:24.747160px;}
.ls5{letter-spacing:24.828456px;}
.ls7{letter-spacing:24.833238px;}
.ls2{letter-spacing:26.789100px;}
.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;}
}
.ws5{word-spacing:-47.820600px;}
.ws9{word-spacing:-37.204427px;}
.ws4{word-spacing:-14.011436px;}
.ws2{word-spacing:-13.461330px;}
.wsa{word-spacing:-11.955150px;}
.ws0{word-spacing:-11.620260px;}
.wsb{word-spacing:-11.208832px;}
.ws6{word-spacing:-10.759500px;}
.ws8{word-spacing:-10.061328px;}
.ws3{word-spacing:-9.563850px;}
.wsc{word-spacing:-7.846130px;}
.ws7{word-spacing:0.000000px;}
.ws1{word-spacing:23.369634px;}
._5{margin-left:-17.343592px;}
._10{margin-left:-5.279394px;}
._c{margin-left:-4.260815px;}
._d{margin-left:-3.193499px;}
._4{margin-left:-1.392497px;}
._3{width:1.453705px;}
._1{width:2.633926px;}
._2{width:4.160762px;}
._6{width:6.107092px;}
._17{width:7.214924px;}
._e{width:8.220361px;}
._9{width:9.348927px;}
._8{width:10.453583px;}
._14{width:11.539111px;}
._a{width:12.968947px;}
._16{width:15.766452px;}
._b{width:16.923710px;}
._18{width:18.578303px;}
._f{width:20.318240px;}
._11{width:21.433193px;}
._19{width:22.523503px;}
._1a{width:23.989961px;}
._13{width:25.010174px;}
._12{width:26.090919px;}
._15{width:28.022872px;}
._7{width:30.193927px;}
._0{width:121.797540px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fs1{font-size:23.910000px;}
.fs7{font-size:26.761800px;}
.fsd{font-size:26.778600px;}
.fs8{font-size:38.255400px;}
.fsc{font-size:38.256000px;}
.fs9{font-size:41.842200px;}
.fs6{font-size:42.237000px;}
.fs0{font-size:43.038000px;}
.fs5{font-size:44.327400px;}
.fsa{font-size:47.820600px;}
.fs2{font-size:57.384000px;}
.fs4{font-size:63.362400px;}
.fs3{font-size:80.697000px;}
.fsb{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000732px;}
.y58{bottom:47.430000px;}
.yb6{bottom:78.416181px;}
.y76{bottom:78.491572px;}
.y5{bottom:79.140000px;}
.y75{bottom:92.778036px;}
.y4{bottom:93.495000px;}
.yb5{bottom:94.147962px;}
.y3{bottom:105.630000px;}
.y74{bottom:107.149500px;}
.yb4{bottom:109.794863px;}
.y56{bottom:119.905636px;}
.yb3{bottom:125.526645px;}
.y55{bottom:134.192100px;}
.yb2{bottom:141.174740px;}
.yd5{bottom:141.514267px;}
.yb1{bottom:156.906522px;}
.yd4{bottom:157.161167px;}
.y51{bottom:159.703536px;}
.yb0{bottom:172.553423px;}
.yd3{bottom:172.894144px;}
.y50{bottom:174.075000px;}
.yaf{bottom:188.285205px;}
.yd2{bottom:188.541045px;}
.yae{bottom:203.933300px;}
.yd1{bottom:204.272827px;}
.y4f{bottom:214.216753px;}
.y42{bottom:216.428456px;}
.yad{bottom:219.665082px;}
.yd0{bottom:219.919727px;}
.y4e{bottom:229.949730px;}
.y41{bottom:232.160238px;}
.yac{bottom:235.311983px;}
.ycf{bottom:235.652704px;}
.y4d{bottom:245.596631px;}
.y40{bottom:247.807138px;}
.yab{bottom:251.043764px;}
.y4c{bottom:261.328413px;}
.y3f{bottom:263.540115px;}
.yaa{bottom:266.691860px;}
.yce{bottom:267.031387px;}
.y4b{bottom:276.975313px;}
.y3e{bottom:279.187016px;}
.ya9{bottom:282.423642px;}
.y4a{bottom:292.708290px;}
.y3d{bottom:294.918798px;}
.ya8{bottom:298.070543px;}
.ycd{bottom:298.750791px;}
.y49{bottom:308.355191px;}
.y3c{bottom:310.565698px;}
.ya7{bottom:313.802324px;}
.ycc{bottom:314.397691px;}
.y48{bottom:324.086973px;}
.y3b{bottom:326.297480px;}
.ya6{bottom:329.449225px;}
.ycb{bottom:330.129473px;}
.y47{bottom:339.733873px;}
.y3a{bottom:341.945576px;}
.ya5{bottom:345.182202px;}
.y46{bottom:355.466850px;}
.y39{bottom:357.677358px;}
.ya4{bottom:360.829102px;}
.yca{bottom:361.509350px;}
.yde{bottom:364.138852px;}
.y45{bottom:371.113751px;}
.y38{bottom:373.324258px;}
.ydd{bottom:376.130007px;}
.ya3{bottom:376.560884px;}
.y11b{bottom:383.614837px;}
.ydc{bottom:388.120206px;}
.y37{bottom:389.056040px;}
.ya2{bottom:392.207785px;}
.yc9{bottom:393.228754px;}
.y11a{bottom:395.520874px;}
.ydb{bottom:400.025286px;}
.y44{bottom:402.492433px;}
.y36{bottom:404.704136px;}
.y119{bottom:407.511073px;}
.ya1{bottom:407.940762px;}
.yc8{bottom:408.875655px;}
.yda{bottom:412.015485px;}
.y118{bottom:419.501272px;}
.y35{bottom:420.435917px;}
.ya0{bottom:423.587662px;}
.yd9{bottom:423.921522px;}
.yc7{bottom:424.607437px;}
.y117{bottom:431.406352px;}
.yd8{bottom:435.911721px;}
.y34{bottom:436.082818px;}
.y9f{bottom:439.319444px;}
.yc6{bottom:440.255532px;}
.y116{bottom:443.397507px;}
.yd7{bottom:447.816801px;}
.y43{bottom:451.814600px;}
.y9e{bottom:454.966345px;}
.y115{bottom:455.302588px;}
.yc5{bottom:455.987314px;}
.yd6{bottom:459.807000px;}
.y114{bottom:467.292786px;}
.y33{bottom:467.461500px;}
.y9d{bottom:470.699322px;}
.yc4{bottom:471.634215px;}
.y113{bottom:479.282985px;}
.y9c{bottom:486.346222px;}
.yc3{bottom:487.365997px;}
.y112{bottom:491.189022px;}
.y9b{bottom:502.078004px;}
.yc2{bottom:503.014092px;}
.y111{bottom:503.179221px;}
.y110{bottom:515.084301px;}
.y9a{bottom:517.724904px;}
.yc1{bottom:518.745874px;}
.y32{bottom:526.990143px;}
.y10f{bottom:527.071470px;}
.y99{bottom:533.457882px;}
.yc0{bottom:534.392775px;}
.y2d{bottom:534.472844px;}
.y10e{bottom:538.977507px;}
.y31{bottom:541.361608px;}
.y2c{bottom:547.313269px;}
.y98{bottom:549.189664px;}
.ybf{bottom:550.124557px;}
.y10d{bottom:550.967705px;}
.y30{bottom:555.648072px;}
.y2b{bottom:560.154650px;}
.y10c{bottom:562.957904px;}
.y97{bottom:564.836564px;}
.ybe{bottom:565.771457px;}
.y2f{bottom:570.019536px;}
.y2a{bottom:572.995075px;}
.y10b{bottom:574.863941px;}
.y96{bottom:580.568346px;}
.ybd{bottom:581.504434px;}
.y2e{bottom:584.391000px;}
.y29{bottom:585.835500px;}
.y10a{bottom:586.854140px;}
.y95{bottom:596.215246px;}
.ybc{bottom:597.151335px;}
.y109{bottom:598.759220px;}
.y108{bottom:610.749419px;}
.y94{bottom:611.948224px;}
.ybb{bottom:612.883116px;}
.y28{bottom:613.644000px;}
.y107{bottom:622.740574px;}
.y93{bottom:627.595124px;}
.yba{bottom:628.530017px;}
.y106{bottom:634.645655px;}
.y92{bottom:643.326906px;}
.yb9{bottom:644.262994px;}
.y105{bottom:646.635853px;}
.y104{bottom:658.540934px;}
.y91{bottom:658.973806px;}
.yb8{bottom:659.909894px;}
.y27{bottom:663.137575px;}
.y103{bottom:670.532089px;}
.y90{bottom:674.706784px;}
.yb7{bottom:675.641676px;}
.y26{bottom:675.978000px;}
.y25{bottom:680.230500px;}
.y102{bottom:682.437169px;}
.y24{bottom:688.818000px;}
.y8f{bottom:690.353684px;}
.y73{bottom:691.288577px;}
.y23{bottom:693.070500px;}
.y101{bottom:694.427368px;}
.y22{bottom:701.660575px;}
.y8e{bottom:706.085466px;}
.y100{bottom:706.418523px;}
.y72{bottom:707.021554px;}
.y21{bottom:714.501000px;}
.yff{bottom:718.323604px;}
.y20{bottom:718.752000px;}
.y8d{bottom:721.732366px;}
.y71{bottom:722.753336px;}
.y1f{bottom:727.426500px;}
.yfe{bottom:730.313803px;}
.y1e{bottom:731.679000px;}
.y8c{bottom:737.465344px;}
.y70{bottom:738.400236px;}
.y1d{bottom:740.268000px;}
.yfd{bottom:742.218883px;}
.y1c{bottom:744.519000px;}
.y1b{bottom:753.108000px;}
.y8b{bottom:753.112244px;}
.y6f{bottom:754.132018px;}
.yfc{bottom:754.210038px;}
.y1a{bottom:757.360500px;}
.y19{bottom:765.949500px;}
.yfb{bottom:766.200237px;}
.y8a{bottom:768.844026px;}
.y6e{bottom:769.780114px;}
.y18{bottom:770.202000px;}
.yfa{bottom:778.105317px;}
.y17{bottom:778.790575px;}
.y89{bottom:784.490926px;}
.y6d{bottom:785.511896px;}
.yf9{bottom:790.095516px;}
.y16{bottom:791.631000px;}
.y15{bottom:795.883500px;}
.y88{bottom:800.223903px;}
.y6c{bottom:801.158796px;}
.yf8{bottom:802.001553px;}
.y14{bottom:804.472500px;}
.y13{bottom:808.725000px;}
.yf7{bottom:813.991752px;}
.y87{bottom:815.870804px;}
.y6b{bottom:816.890578px;}
.yf6{bottom:825.896832px;}
.y12{bottom:829.134000px;}
.y10{bottom:829.135650px;}
.y86{bottom:831.602586px;}
.y6a{bottom:832.537478px;}
.y11{bottom:836.191500px;}
.yf5{bottom:837.887031px;}
.y85{bottom:847.249486px;}
.y69{bottom:848.270456px;}
.yf{bottom:848.608500px;}
.yd{bottom:848.608690px;}
.yf4{bottom:849.878186px;}
.ye{bottom:855.666000px;}
.yf3{bottom:861.783267px;}
.y84{bottom:862.981268px;}
.y68{bottom:863.917356px;}
.yc{bottom:867.996000px;}
.ya{bottom:867.997650px;}
.yf2{bottom:873.773465px;}
.yb{bottom:875.055000px;}
.y83{bottom:878.629364px;}
.y67{bottom:879.649138px;}
.yf1{bottom:885.679502px;}
.y8{bottom:887.470500px;}
.y82{bottom:894.361146px;}
.y9{bottom:894.444000px;}
.y66{bottom:895.296038px;}
.yf0{bottom:897.669701px;}
.yef{bottom:909.659900px;}
.y81{bottom:910.008046px;}
.y65{bottom:911.029016px;}
.yee{bottom:921.564980px;}
.y7{bottom:924.888000px;}
.y80{bottom:925.739828px;}
.y64{bottom:926.675916px;}
.yed{bottom:933.556135px;}
.y7f{bottom:941.387924px;}
.y63{bottom:942.407698px;}
.yec{bottom:945.461216px;}
.y7e{bottom:957.119706px;}
.yeb{bottom:957.451415px;}
.y6{bottom:957.798000px;}
.y62{bottom:958.054598px;}
.yea{bottom:969.356495px;}
.y7d{bottom:972.766606px;}
.y61{bottom:973.787576px;}
.ye9{bottom:981.347650px;}
.y7c{bottom:988.498388px;}
.y60{bottom:989.434476px;}
.ye8{bottom:993.337849px;}
.y54{bottom:1003.719000px;}
.y7b{bottom:1004.146484px;}
.y5f{bottom:1005.166258px;}
.ye7{bottom:1005.242929px;}
.ye6{bottom:1017.233128px;}
.y7a{bottom:1019.878265px;}
.y5e{bottom:1020.813158px;}
.ye5{bottom:1029.139165px;}
.y79{bottom:1035.525166px;}
.y5d{bottom:1036.546136px;}
.ye4{bottom:1041.129364px;}
.y53{bottom:1045.474500px;}
.y5c{bottom:1052.193036px;}
.ye3{bottom:1053.119562px;}
.ye2{bottom:1065.025599px;}
.y78{bottom:1066.989925px;}
.y5b{bottom:1067.924818px;}
.ye1{bottom:1077.015798px;}
.y5a{bottom:1083.571718px;}
.y52{bottom:1087.312500px;}
.ye0{bottom:1088.920879px;}
.y59{bottom:1099.303500px;}
.ydf{bottom:1100.911077px;}
.y2{bottom:1127.505000px;}
.y57{bottom:1128.630000px;}
.y11c{bottom:1128.635883px;}
.y77{bottom:1128.642000px;}
.h4{height:21.014648px;}
.ha{height:23.521113px;}
.hb{height:33.622910px;}
.h10{height:33.623438px;}
.h11{height:33.635031px;}
.hf{height:34.478653px;}
.hc{height:36.775371px;}
.h9{height:37.122363px;}
.h3{height:37.826367px;}
.h8{height:38.959629px;}
.hd{height:42.029824px;}
.h5{height:50.435156px;}
.h7{height:55.689609px;}
.h6{height:70.925098px;}
.he{height:73.551270px;}
.h1{height:1190.250000px;}
.h2{height:1190.550018px;}
.h0{height:1190.551484px;}
.w2{width:892.914000px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:56.276979px;}
.x32{left:61.398300px;}
.x2d{left:62.758950px;}
.x38{left:63.949500px;}
.x36{left:74.323389px;}
.x42{left:80.956305px;}
.x41{left:89.970404px;}
.x3d{left:133.085457px;}
.x30{left:146.180725px;}
.x24{left:151.624500px;}
.x25{left:157.492500px;}
.x18{left:160.639500px;}
.x26{left:161.914500px;}
.x19{left:164.466000px;}
.x27{left:165.571500px;}
.x31{left:179.855997px;}
.x3e{left:188.020567px;}
.x3{left:201.373500px;}
.x4{left:207.411000px;}
.x9{left:211.068000px;}
.xa{left:216.595500px;}
.x40{left:227.648302px;}
.x3a{left:242.107500px;}
.x3f{left:262.514302px;}
.x28{left:288.283500px;}
.x1a{left:291.597903px;}
.x29{left:294.321000px;}
.x1{left:295.691979px;}
.x2a{left:298.743000px;}
.x35{left:302.995500px;}
.x2b{left:304.611000px;}
.x2c{left:309.033000px;}
.x1b{left:323.574000px;}
.x1c{left:329.868000px;}
.x43{left:338.198048px;}
.x39{left:342.624000px;}
.x33{left:356.736683px;}
.xb{left:367.710000px;}
.xc{left:373.237500px;}
.xd{left:377.745000px;}
.xe{left:384.378000px;}
.xf{left:388.885500px;}
.x10{left:394.668000px;}
.x2e{left:400.360942px;}
.x5{left:412.101000px;}
.x6{left:418.138500px;}
.x34{left:421.791276px;}
.x3c{left:444.311979px;}
.x2f{left:460.142929px;}
.x45{left:464.990789px;}
.x37{left:477.831221px;}
.x11{left:482.852620px;}
.x44{left:484.463744px;}
.x1d{left:492.121682px;}
.x12{left:503.092500px;}
.x13{left:509.811000px;}
.x14{left:514.233000px;}
.x1e{left:518.824500px;}
.x15{left:520.101000px;}
.x1f{left:525.628500px;}
.x7{left:565.002000px;}
.x8{left:571.635000px;}
.x3b{left:582.116979px;}
.x20{left:614.239500px;}
.x21{left:620.022000px;}
.x22{left:624.529500px;}
.x23{left:628.101000px;}
.x16{left:676.828500px;}
.x17{left:680.740500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.115099pt;}
.v1{vertical-align:3.627145pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.008747pt;}
.ls3{letter-spacing:15.043298pt;}
.ls1{letter-spacing:16.922845pt;}
.ls9{letter-spacing:18.958211pt;}
.ls8{letter-spacing:21.393874pt;}
.ls6{letter-spacing:21.997476pt;}
.ls5{letter-spacing:22.069738pt;}
.ls7{letter-spacing:22.073989pt;}
.ls2{letter-spacing:23.812533pt;}
.ws5{word-spacing:-42.507200pt;}
.ws9{word-spacing:-33.070602pt;}
.ws4{word-spacing:-12.454610pt;}
.ws2{word-spacing:-11.965627pt;}
.wsa{word-spacing:-10.626800pt;}
.ws0{word-spacing:-10.329120pt;}
.wsb{word-spacing:-9.963406pt;}
.ws6{word-spacing:-9.564000pt;}
.ws8{word-spacing:-8.943403pt;}
.ws3{word-spacing:-8.501200pt;}
.wsc{word-spacing:-6.974338pt;}
.ws7{word-spacing:0.000000pt;}
.ws1{word-spacing:20.773008pt;}
._5{margin-left:-15.416526pt;}
._10{margin-left:-4.692795pt;}
._c{margin-left:-3.787392pt;}
._d{margin-left:-2.838666pt;}
._4{margin-left:-1.237775pt;}
._3{width:1.292182pt;}
._1{width:2.341267pt;}
._2{width:3.698455pt;}
._6{width:5.428526pt;}
._17{width:6.413266pt;}
._e{width:7.306988pt;}
._9{width:8.310158pt;}
._8{width:9.292074pt;}
._14{width:10.256987pt;}
._a{width:11.527953pt;}
._16{width:14.014624pt;}
._b{width:15.043298pt;}
._18{width:16.514047pt;}
._f{width:18.060658pt;}
._11{width:19.051727pt;}
._19{width:20.020891pt;}
._1a{width:21.324410pt;}
._13{width:22.231266pt;}
._12{width:23.191928pt;}
._15{width:24.909219pt;}
._7{width:26.839046pt;}
._0{width:108.264480pt;}
.fs1{font-size:21.253333pt;}
.fs7{font-size:23.788267pt;}
.fsd{font-size:23.803200pt;}
.fs8{font-size:34.004800pt;}
.fsc{font-size:34.005333pt;}
.fs9{font-size:37.193067pt;}
.fs6{font-size:37.544000pt;}
.fs0{font-size:38.256000pt;}
.fs5{font-size:39.402133pt;}
.fsa{font-size:42.507200pt;}
.fs2{font-size:51.008000pt;}
.fs4{font-size:56.322133pt;}
.fs3{font-size:71.730667pt;}
.fsb{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000651pt;}
.y58{bottom:42.160000pt;}
.yb6{bottom:69.703272pt;}
.y76{bottom:69.770286pt;}
.y5{bottom:70.346667pt;}
.y75{bottom:82.469365pt;}
.y4{bottom:83.106667pt;}
.yb5{bottom:83.687078pt;}
.y3{bottom:93.893333pt;}
.y74{bottom:95.244000pt;}
.yb4{bottom:97.595434pt;}
.y56{bottom:106.582787pt;}
.yb3{bottom:111.579240pt;}
.y55{bottom:119.281867pt;}
.yb2{bottom:125.488658pt;}
.yd5{bottom:125.790459pt;}
.yb1{bottom:139.472464pt;}
.yd4{bottom:139.698815pt;}
.y51{bottom:141.958699pt;}
.yb0{bottom:153.380820pt;}
.yd3{bottom:153.683684pt;}
.y50{bottom:154.733333pt;}
.yaf{bottom:167.364626pt;}
.yd2{bottom:167.592040pt;}
.yae{bottom:181.274045pt;}
.yd1{bottom:181.575846pt;}
.y4f{bottom:190.414892pt;}
.y42{bottom:192.380850pt;}
.yad{bottom:195.257851pt;}
.yd0{bottom:195.484202pt;}
.y4e{bottom:204.399760pt;}
.y41{bottom:206.364656pt;}
.yac{bottom:209.166207pt;}
.ycf{bottom:209.469071pt;}
.y4d{bottom:218.308116pt;}
.y40{bottom:220.273012pt;}
.yab{bottom:223.150013pt;}
.y4c{bottom:232.291922pt;}
.y3f{bottom:234.257880pt;}
.yaa{bottom:237.059431pt;}
.yce{bottom:237.361233pt;}
.y4b{bottom:246.200278pt;}
.y3e{bottom:248.166236pt;}
.ya9{bottom:251.043238pt;}
.y4a{bottom:260.185147pt;}
.y3d{bottom:262.150042pt;}
.ya8{bottom:264.951593pt;}
.ycd{bottom:265.556258pt;}
.y49{bottom:274.093503pt;}
.y3c{bottom:276.058398pt;}
.ya7{bottom:278.935399pt;}
.ycc{bottom:279.464614pt;}
.y48{bottom:288.077309pt;}
.y3b{bottom:290.042204pt;}
.ya6{bottom:292.843755pt;}
.ycb{bottom:293.448420pt;}
.y47{bottom:301.985665pt;}
.y3a{bottom:303.951623pt;}
.ya5{bottom:306.828624pt;}
.y46{bottom:315.970534pt;}
.y39{bottom:317.935429pt;}
.ya4{bottom:320.736980pt;}
.yca{bottom:321.341645pt;}
.yde{bottom:323.678980pt;}
.y45{bottom:329.878889pt;}
.y38{bottom:331.843785pt;}
.ydd{bottom:334.337784pt;}
.ya3{bottom:334.720786pt;}
.y11b{bottom:340.990966pt;}
.ydc{bottom:344.995739pt;}
.y37{bottom:345.827591pt;}
.ya2{bottom:348.629142pt;}
.yc9{bottom:349.536671pt;}
.y11a{bottom:351.574110pt;}
.ydb{bottom:355.578032pt;}
.y44{bottom:357.771051pt;}
.y36{bottom:359.737009pt;}
.y119{bottom:362.232065pt;}
.ya1{bottom:362.614011pt;}
.yc8{bottom:363.445026pt;}
.yda{bottom:366.235987pt;}
.y118{bottom:372.890019pt;}
.y35{bottom:373.720816pt;}
.ya0{bottom:376.522367pt;}
.yd9{bottom:376.819131pt;}
.yc7{bottom:377.428833pt;}
.y117{bottom:383.472313pt;}
.yd8{bottom:387.477085pt;}
.y34{bottom:387.629171pt;}
.y9f{bottom:390.506173pt;}
.yc6{bottom:391.338251pt;}
.y116{bottom:394.131118pt;}
.yd7{bottom:398.059379pt;}
.y43{bottom:401.612977pt;}
.y9e{bottom:404.414529pt;}
.y115{bottom:404.713411pt;}
.yc5{bottom:405.322057pt;}
.yd6{bottom:408.717333pt;}
.y114{bottom:415.371366pt;}
.y33{bottom:415.521333pt;}
.y9d{bottom:418.399397pt;}
.yc4{bottom:419.230413pt;}
.y113{bottom:426.029320pt;}
.y9c{bottom:432.307753pt;}
.yc3{bottom:433.214219pt;}
.y112{bottom:436.612464pt;}
.y9b{bottom:446.291559pt;}
.yc2{bottom:447.123638pt;}
.y111{bottom:447.270418pt;}
.y110{bottom:457.852712pt;}
.y9a{bottom:460.199915pt;}
.yc1{bottom:461.107444pt;}
.y32{bottom:468.435683pt;}
.y10f{bottom:468.507973pt;}
.y99{bottom:474.184784pt;}
.yc0{bottom:475.015800pt;}
.y2d{bottom:475.086972pt;}
.y10e{bottom:479.091117pt;}
.y31{bottom:481.210318pt;}
.y2c{bottom:486.500683pt;}
.y98{bottom:488.168590pt;}
.ybf{bottom:488.999606pt;}
.y10d{bottom:489.749071pt;}
.y30{bottom:493.909397pt;}
.y2b{bottom:497.915244pt;}
.y10c{bottom:500.407026pt;}
.y97{bottom:502.076946pt;}
.ybe{bottom:502.907962pt;}
.y2f{bottom:506.684032pt;}
.y2a{bottom:509.328956pt;}
.y10b{bottom:510.990170pt;}
.y96{bottom:516.060752pt;}
.ybd{bottom:516.892830pt;}
.y2e{bottom:519.458667pt;}
.y29{bottom:520.742667pt;}
.y10a{bottom:521.648124pt;}
.y95{bottom:529.969108pt;}
.ybc{bottom:530.801186pt;}
.y109{bottom:532.230418pt;}
.y108{bottom:542.888372pt;}
.y94{bottom:543.953977pt;}
.ybb{bottom:544.784992pt;}
.y28{bottom:545.461333pt;}
.y107{bottom:553.547177pt;}
.y93{bottom:557.862332pt;}
.yba{bottom:558.693348pt;}
.y106{bottom:564.129471pt;}
.y92{bottom:571.846139pt;}
.yb9{bottom:572.678217pt;}
.y105{bottom:574.787425pt;}
.y104{bottom:585.369719pt;}
.y91{bottom:585.754494pt;}
.yb8{bottom:586.586573pt;}
.y27{bottom:589.455622pt;}
.y103{bottom:596.028524pt;}
.y90{bottom:599.739363pt;}
.yb7{bottom:600.570379pt;}
.y26{bottom:600.869333pt;}
.y25{bottom:604.649333pt;}
.y102{bottom:606.610817pt;}
.y24{bottom:612.282667pt;}
.y8f{bottom:613.647719pt;}
.y73{bottom:614.478735pt;}
.y23{bottom:616.062667pt;}
.y101{bottom:617.268772pt;}
.y22{bottom:623.698289pt;}
.y8e{bottom:627.631525pt;}
.y100{bottom:627.927576pt;}
.y72{bottom:628.463604pt;}
.y21{bottom:635.112000pt;}
.yff{bottom:638.509870pt;}
.y20{bottom:638.890667pt;}
.y8d{bottom:641.539881pt;}
.y71{bottom:642.447410pt;}
.y1f{bottom:646.601333pt;}
.yfe{bottom:649.167824pt;}
.y1e{bottom:650.381333pt;}
.y8c{bottom:655.524750pt;}
.y70{bottom:656.355766pt;}
.y1d{bottom:658.016000pt;}
.yfd{bottom:659.750118pt;}
.y1c{bottom:661.794667pt;}
.y1b{bottom:669.429333pt;}
.y8b{bottom:669.433106pt;}
.y6f{bottom:670.339572pt;}
.yfc{bottom:670.408923pt;}
.y1a{bottom:673.209333pt;}
.y19{bottom:680.844000pt;}
.yfb{bottom:681.066877pt;}
.y8a{bottom:683.416912pt;}
.y6e{bottom:684.248990pt;}
.y18{bottom:684.624000pt;}
.yfa{bottom:691.649171pt;}
.y17{bottom:692.258289pt;}
.y89{bottom:697.325268pt;}
.y6d{bottom:698.232796pt;}
.yf9{bottom:702.307125pt;}
.y16{bottom:703.672000pt;}
.y15{bottom:707.452000pt;}
.y88{bottom:711.310136pt;}
.y6c{bottom:712.141152pt;}
.yf8{bottom:712.890269pt;}
.y14{bottom:715.086667pt;}
.y13{bottom:718.866667pt;}
.yf7{bottom:723.548224pt;}
.y87{bottom:725.218492pt;}
.y6b{bottom:726.124958pt;}
.yf6{bottom:734.130518pt;}
.y12{bottom:737.008000pt;}
.y10{bottom:737.009467pt;}
.y86{bottom:739.202298pt;}
.y6a{bottom:740.033314pt;}
.y11{bottom:743.281333pt;}
.yf5{bottom:744.788472pt;}
.y85{bottom:753.110654pt;}
.y69{bottom:754.018183pt;}
.yf{bottom:754.318667pt;}
.yd{bottom:754.318835pt;}
.yf4{bottom:755.447277pt;}
.ye{bottom:760.592000pt;}
.yf3{bottom:766.029570pt;}
.y84{bottom:767.094460pt;}
.y68{bottom:767.926539pt;}
.yc{bottom:771.552000pt;}
.ya{bottom:771.553467pt;}
.yf2{bottom:776.687525pt;}
.yb{bottom:777.826667pt;}
.y83{bottom:781.003879pt;}
.y67{bottom:781.910345pt;}
.yf1{bottom:787.270669pt;}
.y8{bottom:788.862667pt;}
.y82{bottom:794.987685pt;}
.y9{bottom:795.061333pt;}
.y66{bottom:795.818701pt;}
.yf0{bottom:797.928623pt;}
.yef{bottom:808.586577pt;}
.y81{bottom:808.896041pt;}
.y65{bottom:809.803570pt;}
.yee{bottom:819.168871pt;}
.y7{bottom:822.122667pt;}
.y80{bottom:822.879847pt;}
.y64{bottom:823.711925pt;}
.yed{bottom:829.827676pt;}
.y7f{bottom:836.789265pt;}
.y63{bottom:837.695732pt;}
.yec{bottom:840.409970pt;}
.y7e{bottom:850.773072pt;}
.yeb{bottom:851.067924pt;}
.y6{bottom:851.376000pt;}
.y62{bottom:851.604087pt;}
.yea{bottom:861.650218pt;}
.y7d{bottom:864.681427pt;}
.y61{bottom:865.588956pt;}
.ye9{bottom:872.309022pt;}
.y7c{bottom:878.665234pt;}
.y60{bottom:879.497312pt;}
.ye8{bottom:882.966977pt;}
.y54{bottom:892.194667pt;}
.y7b{bottom:892.574652pt;}
.y5f{bottom:893.481118pt;}
.ye7{bottom:893.549271pt;}
.ye6{bottom:904.207225pt;}
.y7a{bottom:906.558458pt;}
.y5e{bottom:907.389474pt;}
.ye5{bottom:914.790369pt;}
.y79{bottom:920.466814pt;}
.y5d{bottom:921.374343pt;}
.ye4{bottom:925.448323pt;}
.y53{bottom:929.310667pt;}
.y5c{bottom:935.282699pt;}
.ye3{bottom:936.106278pt;}
.ye2{bottom:946.689422pt;}
.y78{bottom:948.435489pt;}
.y5b{bottom:949.266505pt;}
.ye1{bottom:957.347376pt;}
.y5a{bottom:963.174861pt;}
.y52{bottom:966.500000pt;}
.ye0{bottom:967.929670pt;}
.y59{bottom:977.158667pt;}
.ydf{bottom:978.587624pt;}
.y2{bottom:1002.226667pt;}
.y57{bottom:1003.226667pt;}
.y11c{bottom:1003.231896pt;}
.y77{bottom:1003.237333pt;}
.h4{height:18.679688pt;}
.ha{height:20.907656pt;}
.hb{height:29.887031pt;}
.h10{height:29.887500pt;}
.h11{height:29.897805pt;}
.hf{height:30.647691pt;}
.hc{height:32.689219pt;}
.h9{height:32.997656pt;}
.h3{height:33.623437pt;}
.h8{height:34.630781pt;}
.hd{height:37.359844pt;}
.h5{height:44.831250pt;}
.h7{height:49.501875pt;}
.h6{height:63.044531pt;}
.he{height:65.378906pt;}
.h1{height:1058.000000pt;}
.h2{height:1058.266683pt;}
.h0{height:1058.267985pt;}
.w2{width:793.701333pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:50.023981pt;}
.x32{left:54.576267pt;}
.x2d{left:55.785733pt;}
.x38{left:56.844000pt;}
.x36{left:66.065235pt;}
.x42{left:71.961160pt;}
.x41{left:79.973692pt;}
.x3d{left:118.298184pt;}
.x30{left:129.938422pt;}
.x24{left:134.777333pt;}
.x25{left:139.993333pt;}
.x18{left:142.790667pt;}
.x26{left:143.924000pt;}
.x19{left:146.192000pt;}
.x27{left:147.174667pt;}
.x31{left:159.871997pt;}
.x3e{left:167.129392pt;}
.x3{left:178.998667pt;}
.x4{left:184.365333pt;}
.x9{left:187.616000pt;}
.xa{left:192.529333pt;}
.x40{left:202.354046pt;}
.x3a{left:215.206667pt;}
.x3f{left:233.346046pt;}
.x28{left:256.252000pt;}
.x1a{left:259.198136pt;}
.x29{left:261.618667pt;}
.x1{left:262.837314pt;}
.x2a{left:265.549333pt;}
.x35{left:269.329333pt;}
.x2b{left:270.765333pt;}
.x2c{left:274.696000pt;}
.x1b{left:287.621333pt;}
.x1c{left:293.216000pt;}
.x43{left:300.620487pt;}
.x39{left:304.554667pt;}
.x33{left:317.099274pt;}
.xb{left:326.853333pt;}
.xc{left:331.766667pt;}
.xd{left:335.773333pt;}
.xe{left:341.669333pt;}
.xf{left:345.676000pt;}
.x10{left:350.816000pt;}
.x2e{left:355.876393pt;}
.x5{left:366.312000pt;}
.x6{left:371.678667pt;}
.x34{left:374.925579pt;}
.x3c{left:394.943981pt;}
.x2f{left:409.015937pt;}
.x45{left:413.325146pt;}
.x37{left:424.738863pt;}
.x11{left:429.202329pt;}
.x44{left:430.634439pt;}
.x1d{left:437.441495pt;}
.x12{left:447.193333pt;}
.x13{left:453.165333pt;}
.x14{left:457.096000pt;}
.x1e{left:461.177333pt;}
.x15{left:462.312000pt;}
.x1f{left:467.225333pt;}
.x7{left:502.224000pt;}
.x8{left:508.120000pt;}
.x3b{left:517.437314pt;}
.x20{left:545.990667pt;}
.x21{left:551.130667pt;}
.x22{left:555.137333pt;}
.x23{left:558.312000pt;}
.x16{left:601.625333pt;}
.x17{left:605.102667pt;}
}




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