
    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_b0518004c6c48b4cd0e9b553.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ee5c81b30f62d287824cbba5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_90abe9ec0d45da46d0a8c70e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.372070;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_c2ef6864b629e597acd0ae82.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_4564699eab057fd6744aa562.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f3192c9fbe7b920b1cf47a3c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_43f5990b6703b6103c290a76.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_4f2a1f2c1c104f0247be18c6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m2{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.240245px;}
.ls14{letter-spacing:-1.134000px;}
.ls27{letter-spacing:-0.538800px;}
.lsa{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.269400px;}
.ls28{letter-spacing:-0.223800px;}
.lsc{letter-spacing:-0.206400px;}
.ls1c{letter-spacing:-0.181200px;}
.lsb{letter-spacing:-0.053280px;}
.ls1e{letter-spacing:-0.032298px;}
.ls23{letter-spacing:-0.006020px;}
.ls9{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.032298px;}
.ls1a{letter-spacing:0.045669px;}
.lsf{letter-spacing:0.053280px;}
.ls20{letter-spacing:0.058653px;}
.ls1d{letter-spacing:0.064596px;}
.ls19{letter-spacing:0.071508px;}
.ls10{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.223800px;}
.ls4{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls26{letter-spacing:0.269400px;}
.ls3{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.613440px;}
.ls1f{letter-spacing:0.638209px;}
.ls16{letter-spacing:0.666000px;}
.ls22{letter-spacing:0.702805px;}
.ls6{letter-spacing:0.749280px;}
.lsd{letter-spacing:0.828000px;}
.ls13{letter-spacing:0.900000px;}
.ls11{letter-spacing:8.586720px;}
.lse{letter-spacing:10.746720px;}
.ls25{letter-spacing:14.669280px;}
.ls1b{letter-spacing:19.386720px;}
.ls5{letter-spacing:20.826720px;}
.ls7{letter-spacing:22.589280px;}
.ls0{letter-spacing:30.186720px;}
.ls24{letter-spacing:38.429280px;}
.ls8{letter-spacing:40.986720px;}
.ls18{letter-spacing:50.580000px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws4{word-spacing:-54.000000px;}
.ws2{word-spacing:-36.000000px;}
.ws9{word-spacing:-15.768000px;}
.ws12{word-spacing:-15.606000px;}
.wsd{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws11{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.733600px;}
.wse{word-spacing:-13.806000px;}
.ws3{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.420000px;}
.ws1d{word-spacing:-12.346251px;}
.ws1e{word-spacing:-12.329400px;}
.ws14{word-spacing:-12.283800px;}
.ws18{word-spacing:-12.281655px;}
.ws6{word-spacing:-12.060000px;}
.ws13{word-spacing:-11.878800px;}
.ws20{word-spacing:-11.836200px;}
.ws10{word-spacing:-11.790600px;}
.ws1{word-spacing:-11.700000px;}
.ws1c{word-spacing:-11.675743px;}
.ws15{word-spacing:-11.643445px;}
.ws16{word-spacing:-11.627296px;}
.ws17{word-spacing:-11.611147px;}
.ws1f{word-spacing:-11.521200px;}
.ws19{word-spacing:-9.221092px;}
.ws1b{word-spacing:-9.204943px;}
.wsb{word-spacing:0.000000px;}
.ws1a{word-spacing:168.426555px;}
._0{margin-left:-1.688400px;}
._1{width:1.302480px;}
._c{width:2.778480px;}
._7{width:4.050000px;}
._8{width:5.579040px;}
._a{width:6.713760px;}
._11{width:8.142480px;}
._10{width:9.382320px;}
._5{width:10.422000px;}
._6{width:11.624400px;}
._b{width:13.497120px;}
._2{width:15.372000px;}
._3{width:17.280000px;}
._4{width:19.170000px;}
._9{width:21.121920px;}
._f{width:23.127120px;}
._2f{width:24.134160px;}
._16{width:25.398000px;}
._14{width:26.712720px;}
._1a{width:28.033680px;}
._d{width:29.546640px;}
._e{width:30.584160px;}
._15{width:32.520720px;}
._19{width:33.883920px;}
._18{width:36.003360px;}
._17{width:37.589040px;}
._25{width:40.553760px;}
._26{width:42.676320px;}
._23{width:44.222400px;}
._24{width:45.348960px;}
._21{width:50.544000px;}
._13{width:53.404560px;}
._12{width:54.501120px;}
._29{width:55.881840px;}
._2b{width:57.222480px;}
._2c{width:58.360560px;}
._28{width:86.048640px;}
._27{width:87.073200px;}
._2e{width:88.134480px;}
._2d{width:89.205600px;}
._22{width:121.923660px;}
._32{width:126.244080px;}
._33{width:127.717200px;}
._20{width:212.787360px;}
._1f{width:231.946320px;}
._1b{width:333.019920px;}
._1c{width:382.003920px;}
._1d{width:475.380000px;}
._1e{width:503.280000px;}
._31{width:721.766880px;}
._2a{width:955.441440px;}
._30{width:977.535360px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.819772px;}
.fs8{font-size:36.884368px;}
.fs7{font-size:46.509185px;}
.fs6{font-size:46.573781px;}
.fs0{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:2.880000px;}
.y3{bottom:3.600000px;}
.yab{bottom:8.155256px;}
.y45{bottom:16.740000px;}
.yba{bottom:34.898038px;}
.ybc{bottom:37.304242px;}
.ybb{bottom:48.172535px;}
.yb9{bottom:48.850794px;}
.y4a{bottom:57.600000px;}
.ybd{bottom:67.244530px;}
.yb8{bottom:83.471068px;}
.yb5{bottom:131.840621px;}
.yb6{bottom:139.314389px;}
.yb4{bottom:145.793376px;}
.yb7{bottom:163.828605px;}
.yad{bottom:180.042224px;}
.y60{bottom:187.050000px;}
.yc5{bottom:192.090000px;}
.y41{bottom:196.950000px;}
.y29{bottom:203.070000px;}
.y5f{bottom:203.430000px;}
.yb2{bottom:211.177539px;}
.ybf{bottom:215.395664px;}
.yc4{bottom:218.190000px;}
.y5e{bottom:219.990000px;}
.y40{bottom:222.330000px;}
.y74{bottom:228.810000px;}
.ybe{bottom:229.361339px;}
.yb3{bottom:229.393637px;}
.y28{bottom:234.390000px;}
.y5d{bottom:236.370000px;}
.y119{bottom:236.550000px;}
.y73{bottom:245.190000px;}
.y3f{bottom:248.790000px;}
.y27{bottom:251.310000px;}
.yac{bottom:255.813438px;}
.y93{bottom:255.990000px;}
.y118{bottom:256.710000px;}
.y72{bottom:261.570000px;}
.y5c{bottom:267.150000px;}
.ydd{bottom:272.010000px;}
.yb0{bottom:273.306059px;}
.y117{bottom:273.990000px;}
.y3e{bottom:275.250000px;}
.y71{bottom:277.950000px;}
.y92{bottom:281.910000px;}
.yaf{bottom:282.284916px;}
.y116{bottom:287.310000px;}
.y3d{bottom:291.630000px;}
.y70{bottom:294.330000px;}
.yb1{bottom:294.913452px;}
.yae{bottom:296.250591px;}
.ydc{bottom:297.390000px;}
.y91{bottom:298.290000px;}
.y5b{bottom:299.010000px;}
.y115{bottom:300.810000px;}
.y6f{bottom:310.710000px;}
.y90{bottom:314.670000px;}
.y3c{bottom:318.090000px;}
.y99{bottom:321.333253px;}
.ydb{bottom:322.770000px;}
.y8f{bottom:331.050000px;}
.y114{bottom:331.410000px;}
.y6e{bottom:333.390000px;}
.y3b{bottom:334.470000px;}
.yda{bottom:339.150000px;}
.ya2{bottom:340.369721px;}
.y113{bottom:344.910000px;}
.yaa{bottom:345.782873px;}
.y8e{bottom:347.430000px;}
.yd9{bottom:355.530000px;}
.ya3{bottom:357.907559px;}
.ya9{bottom:359.748548px;}
.y3a{bottom:360.930000px;}
.y112{bottom:362.370000px;}
.y8d{bottom:363.810000px;}
.y111{bottom:375.690000px;}
.y6d{bottom:376.770000px;}
.yd8{bottom:378.210000px;}
.y8c{bottom:380.190000px;}
.y98{bottom:386.200647px;}
.y39{bottom:386.310000px;}
.y110{bottom:389.190000px;}
.y8b{bottom:396.570000px;}
.y38{bottom:402.735000px;}
.ya0{bottom:404.920594px;}
.ya8{bottom:405.224196px;}
.y8a{bottom:412.995000px;}
.yd7{bottom:416.235000px;}
.y37{bottom:419.115000px;}
.ya7{bottom:419.196330px;}
.y10f{bottom:420.195000px;}
.ya1{bottom:423.556566px;}
.y89{bottom:429.375000px;}
.yd6{bottom:432.615000px;}
.ya6{bottom:433.162005px;}
.y10e{bottom:433.515000px;}
.y36{bottom:435.495000px;}
.y88{bottom:445.755000px;}
.y10d{bottom:447.015000px;}
.y26{bottom:448.815000px;}
.yd5{bottom:448.995000px;}
.y35{bottom:451.875000px;}
.y97{bottom:452.366422px;}
.y10c{bottom:460.515000px;}
.yd4{bottom:465.375000px;}
.y34{bottom:468.255000px;}
.y87{bottom:471.495000px;}
.y9e{bottom:473.230960px;}
.ya5{bottom:476.073188px;}
.y10b{bottom:477.975000px;}
.yc3{bottom:478.155000px;}
.y5a{bottom:479.235000px;}
.y33{bottom:484.635000px;}
.y25{bottom:486.795000px;}
.ya4{bottom:490.038863px;}
.yd3{bottom:490.755000px;}
.y10a{bottom:491.295000px;}
.y9f{bottom:491.447057px;}
.y59{bottom:495.615000px;}
.y86{bottom:497.775000px;}
.y32{bottom:501.015000px;}
.y24{bottom:503.175000px;}
.yd2{bottom:507.135000px;}
.y109{bottom:508.755000px;}
.y58{bottom:511.995000px;}
.y96{bottom:517.879778px;}
.y23{bottom:519.555000px;}
.yc2{bottom:521.535000px;}
.y108{bottom:522.075000px;}
.yd1{bottom:523.515000px;}
.y85{bottom:524.055000px;}
.y31{bottom:526.395000px;}
.y57{bottom:528.375000px;}
.y9c{bottom:535.372399px;}
.y107{bottom:535.575000px;}
.y22{bottom:535.935000px;}
.yd0{bottom:539.895000px;}
.y30{bottom:542.775000px;}
.y9b{bottom:544.331877px;}
.y56{bottom:544.755000px;}
.y106{bottom:549.075000px;}
.y84{bottom:549.975000px;}
.yc1{bottom:550.875000px;}
.y21{bottom:552.315000px;}
.ycf{bottom:556.275000px;}
.y9d{bottom:556.960412px;}
.y9a{bottom:558.304011px;}
.y2f{bottom:559.155000px;}
.y83{bottom:566.355000px;}
.y105{bottom:566.535000px;}
.y20{bottom:568.695000px;}
.yce{bottom:572.655000px;}
.yc0{bottom:573.015000px;}
.y94{bottom:573.030000px;}
.y2e{bottom:575.535000px;}
.y55{bottom:575.715000px;}
.y104{bottom:579.855000px;}
.y82{bottom:582.735000px;}
.y95{bottom:584.672135px;}
.y1f{bottom:585.075000px;}
.y2d{bottom:592.095000px;}
.y103{bottom:593.355000px;}
.ycd{bottom:595.335000px;}
.y1e{bottom:601.455000px;}
.y54{bottom:607.575000px;}
.y2c{bottom:608.475000px;}
.y102{bottom:610.635000px;}
.y81{bottom:613.515000px;}
.y1d{bottom:617.835000px;}
.y101{bottom:623.955000px;}
.y80{bottom:633.495000px;}
.y1c{bottom:634.395000px;}
.y100{bottom:637.455000px;}
.ycc{bottom:638.715000px;}
.y2b{bottom:639.255000px;}
.y1b{bottom:650.805000px;}
.yff{bottom:654.945000px;}
.y7f{bottom:659.445000px;}
.ycb{bottom:664.845000px;}
.y2a{bottom:665.205000px;}
.yfe{bottom:672.225000px;}
.y1a{bottom:676.185000px;}
.yfd{bottom:685.545000px;}
.y19{bottom:692.565000px;}
.yfc{bottom:699.045000px;}
.y18{bottom:708.945000px;}
.y46{bottom:709.305000px;}
.y6c{bottom:711.825000px;}
.yfb{bottom:712.545000px;}
.y17{bottom:725.325000px;}
.y6b{bottom:728.205000px;}
.yfa{bottom:730.005000px;}
.yf9{bottom:743.325000px;}
.y6a{bottom:744.585000px;}
.y16{bottom:747.825000px;}
.y7e{bottom:749.805000px;}
.yca{bottom:752.685000px;}
.yf8{bottom:756.825000px;}
.y69{bottom:760.965000px;}
.y7d{bottom:769.785000px;}
.yf7{bottom:770.325000px;}
.y68{bottom:777.345000px;}
.y7c{bottom:780.585000px;}
.yf6{bottom:783.825000px;}
.y15{bottom:785.445000px;}
.y14{bottom:800.925000px;}
.yf5{bottom:801.285000px;}
.y53{bottom:808.125000px;}
.yf4{bottom:814.605000px;}
.y52{bottom:824.505000px;}
.yf3{bottom:828.105000px;}
.y42{bottom:830.805000px;}
.y13{bottom:831.525000px;}
.y67{bottom:834.225000px;}
.y44{bottom:837.105000px;}
.y51{bottom:840.885000px;}
.yf2{bottom:845.565000px;}
.y12{bottom:847.005000px;}
.yc9{bottom:855.645000px;}
.y50{bottom:857.265000px;}
.yf1{bottom:858.885000px;}
.y11{bottom:862.485000px;}
.yf0{bottom:872.385000px;}
.y7b{bottom:872.925000px;}
.y10{bottom:877.965000px;}
.yef{bottom:885.885000px;}
.y4f{bottom:888.225000px;}
.y7a{bottom:889.305000px;}
.yf{bottom:893.670000px;}
.y47{bottom:901.050000px;}
.yee{bottom:903.210000px;}
.y79{bottom:905.730000px;}
.ye{bottom:909.150000px;}
.y4e{bottom:914.190000px;}
.yed{bottom:916.530000px;}
.y78{bottom:922.110000px;}
.yd{bottom:924.630000px;}
.yec{bottom:930.030000px;}
.y77{bottom:938.490000px;}
.yc{bottom:941.010000px;}
.yeb{bottom:947.490000px;}
.yb{bottom:958.290000px;}
.yea{bottom:960.810000px;}
.y76{bottom:969.270000px;}
.y66{bottom:971.070000px;}
.ye9{bottom:974.310000px;}
.ya{bottom:975.390000px;}
.yc8{bottom:985.650000px;}
.y65{bottom:987.450000px;}
.ye8{bottom:991.770000px;}
.y9{bottom:992.670000px;}
.y75{bottom:995.370000px;}
.y64{bottom:1003.830000px;}
.ye7{bottom:1005.090000px;}
.y8{bottom:1009.950000px;}
.ye6{bottom:1018.590000px;}
.y63{bottom:1020.210000px;}
.y7{bottom:1027.230000px;}
.ye5{bottom:1036.050000px;}
.y6{bottom:1047.750000px;}
.ye4{bottom:1049.370000px;}
.y62{bottom:1050.990000px;}
.ye3{bottom:1062.870000px;}
.ye2{bottom:1076.370000px;}
.y61{bottom:1077.090000px;}
.ye1{bottom:1093.830000px;}
.y5{bottom:1106.610000px;}
.ye0{bottom:1107.150000px;}
.y4d{bottom:1119.210000px;}
.ydf{bottom:1124.610000px;}
.y4c{bottom:1135.770000px;}
.yde{bottom:1137.930000px;}
.yc7{bottom:1142.640000px;}
.y4{bottom:1148.040000px;}
.y4b{bottom:1158.300000px;}
.yc6{bottom:1159.020000px;}
.y49{bottom:1183.860000px;}
.y2{bottom:1195.380000px;}
.y48{bottom:1197.720000px;}
.y1{bottom:1209.240000px;}
.he{height:13.665000px;}
.hc{height:13.680000px;}
.hd{height:27.540000px;}
.h14{height:36.136592px;}
.h12{height:36.199990px;}
.h13{height:37.376837px;}
.h15{height:37.428514px;}
.h11{height:45.646222px;}
.h10{height:45.709619px;}
.h2{height:47.344922px;}
.hb{height:49.583118px;}
.h8{height:52.971680px;}
.h7{height:54.421875px;}
.h3{height:58.651172px;}
.h9{height:61.423863px;}
.h6{height:65.010937px;}
.ha{height:70.664062px;}
.h4{height:141.257812px;}
.h5{height:143.648438px;}
.hf{height:599.774701px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:57.096000px;}
.w5{width:98.121000px;}
.w4{width:102.096000px;}
.w2{width:103.845000px;}
.w6{width:116.625000px;}
.w7{width:377.851787px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:10.800000px;}
.x1b{left:13.530000px;}
.x17{left:21.780000px;}
.x3f{left:33.684286px;}
.xb{left:55.080000px;}
.x1e{left:56.700000px;}
.xa{left:75.600000px;}
.xd{left:76.680000px;}
.x4{left:91.440000px;}
.x45{left:97.002994px;}
.x2d{left:102.456000px;}
.x2f{left:117.036000px;}
.xe{left:121.536000px;}
.x20{left:130.176000px;}
.x22{left:140.616000px;}
.x24{left:145.476000px;}
.x30{left:148.356000px;}
.x10{left:152.850000px;}
.x41{left:160.463802px;}
.x44{left:161.723329px;}
.x32{left:172.830000px;}
.x31{left:173.910000px;}
.x33{left:175.675018px;}
.x4f{left:179.310000px;}
.x3e{left:181.565732px;}
.x4e{left:183.270000px;}
.xc{left:184.350000px;}
.x36{left:199.231412px;}
.x37{left:203.571938px;}
.x42{left:205.251308px;}
.x3c{left:209.953543px;}
.x3d{left:217.543004px;}
.x3a{left:219.513034px;}
.x35{left:220.578788px;}
.x34{left:222.019171px;}
.x38{left:226.960394px;}
.x39{left:228.911047px;}
.x46{left:234.627364px;}
.x3b{left:240.860410px;}
.x11{left:244.110000px;}
.x40{left:280.054322px;}
.x43{left:301.543799px;}
.x7{left:317.415000px;}
.x21{left:322.455000px;}
.x23{left:332.535000px;}
.x9{left:349.095000px;}
.x4d{left:351.075000px;}
.x4c{left:352.155000px;}
.x1f{left:375.375000px;}
.x8{left:380.415000px;}
.x2c{left:384.195000px;}
.x5{left:390.675000px;}
.x6{left:392.295000px;}
.x2e{left:408.495000px;}
.xf{left:431.175000px;}
.x3{left:446.655000px;}
.x18{left:455.115000px;}
.x14{left:460.155000px;}
.x1a{left:465.015000px;}
.x13{left:481.785000px;}
.x51{left:487.185000px;}
.x15{left:502.665000px;}
.x1{left:510.945000px;}
.x26{left:524.625000px;}
.x2a{left:537.945000px;}
.x28{left:559.905000px;}
.x49{left:567.465000px;}
.x4b{left:570.165000px;}
.x2b{left:584.745000px;}
.x4a{left:606.705000px;}
.x50{left:610.485000px;}
.x1c{left:634.260000px;}
.x48{left:649.185000px;}
.x2{left:680.910000px;}
.x1d{left:721.590000px;}
.x27{left:726.810000px;}
.x16{left:733.650000px;}
.x29{left:753.990000px;}
.x25{left:830.850000px;}
.x12{left:832.830000px;}
.x47{left:838.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.102440pt;}
.ls14{letter-spacing:-1.008000pt;}
.ls27{letter-spacing:-0.478933pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.239467pt;}
.ls28{letter-spacing:-0.198933pt;}
.lsc{letter-spacing:-0.183467pt;}
.ls1c{letter-spacing:-0.161067pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls1e{letter-spacing:-0.028709pt;}
.ls23{letter-spacing:-0.005351pt;}
.ls9{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.028709pt;}
.ls1a{letter-spacing:0.040595pt;}
.lsf{letter-spacing:0.047360pt;}
.ls20{letter-spacing:0.052136pt;}
.ls1d{letter-spacing:0.057419pt;}
.ls19{letter-spacing:0.063563pt;}
.ls10{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.198933pt;}
.ls4{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls26{letter-spacing:0.239467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.545280pt;}
.ls1f{letter-spacing:0.567297pt;}
.ls16{letter-spacing:0.592000pt;}
.ls22{letter-spacing:0.624716pt;}
.ls6{letter-spacing:0.666027pt;}
.lsd{letter-spacing:0.736000pt;}
.ls13{letter-spacing:0.800000pt;}
.ls11{letter-spacing:7.632640pt;}
.lse{letter-spacing:9.552640pt;}
.ls25{letter-spacing:13.039360pt;}
.ls1b{letter-spacing:17.232640pt;}
.ls5{letter-spacing:18.512640pt;}
.ls7{letter-spacing:20.079360pt;}
.ls0{letter-spacing:26.832640pt;}
.ls24{letter-spacing:34.159360pt;}
.ls8{letter-spacing:36.432640pt;}
.ls18{letter-spacing:44.960000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws4{word-spacing:-48.000000pt;}
.ws2{word-spacing:-32.000000pt;}
.ws9{word-spacing:-14.016000pt;}
.ws12{word-spacing:-13.872000pt;}
.wsd{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws11{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.096533pt;}
.wse{word-spacing:-12.272000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.040000pt;}
.ws1d{word-spacing:-10.974445pt;}
.ws1e{word-spacing:-10.959467pt;}
.ws14{word-spacing:-10.918933pt;}
.ws18{word-spacing:-10.917026pt;}
.ws6{word-spacing:-10.720000pt;}
.ws13{word-spacing:-10.558933pt;}
.ws20{word-spacing:-10.521067pt;}
.ws10{word-spacing:-10.480533pt;}
.ws1{word-spacing:-10.400000pt;}
.ws1c{word-spacing:-10.378439pt;}
.ws15{word-spacing:-10.349729pt;}
.ws16{word-spacing:-10.335374pt;}
.ws17{word-spacing:-10.321020pt;}
.ws1f{word-spacing:-10.241067pt;}
.ws19{word-spacing:-8.196526pt;}
.ws1b{word-spacing:-8.182171pt;}
.wsb{word-spacing:0.000000pt;}
.ws1a{word-spacing:149.712493pt;}
._0{margin-left:-1.500800pt;}
._1{width:1.157760pt;}
._c{width:2.469760pt;}
._7{width:3.600000pt;}
._8{width:4.959147pt;}
._a{width:5.967787pt;}
._11{width:7.237760pt;}
._10{width:8.339840pt;}
._5{width:9.264000pt;}
._6{width:10.332800pt;}
._b{width:11.997440pt;}
._2{width:13.664000pt;}
._3{width:15.360000pt;}
._4{width:17.040000pt;}
._9{width:18.775040pt;}
._f{width:20.557440pt;}
._2f{width:21.452587pt;}
._16{width:22.576000pt;}
._14{width:23.744640pt;}
._1a{width:24.918827pt;}
._d{width:26.263680pt;}
._e{width:27.185920pt;}
._15{width:28.907307pt;}
._19{width:30.119040pt;}
._18{width:32.002987pt;}
._17{width:33.412480pt;}
._25{width:36.047787pt;}
._26{width:37.934507pt;}
._23{width:39.308800pt;}
._24{width:40.310187pt;}
._21{width:44.928000pt;}
._13{width:47.470720pt;}
._12{width:48.445440pt;}
._29{width:49.672747pt;}
._2b{width:50.864427pt;}
._2c{width:51.876053pt;}
._28{width:76.487680pt;}
._27{width:77.398400pt;}
._2e{width:78.341760pt;}
._2d{width:79.293867pt;}
._22{width:108.376587pt;}
._32{width:112.216960pt;}
._33{width:113.526400pt;}
._20{width:189.144320pt;}
._1f{width:206.174507pt;}
._1b{width:296.017707pt;}
._1c{width:339.559040pt;}
._1d{width:422.560000pt;}
._1e{width:447.360000pt;}
._31{width:641.570560pt;}
._2a{width:849.281280pt;}
._30{width:868.920320pt;}
.fs9{font-size:32.728686pt;}
.fs8{font-size:32.786105pt;}
.fs7{font-size:41.341498pt;}
.fs6{font-size:41.398917pt;}
.fs0{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:2.560000pt;}
.y3{bottom:3.200000pt;}
.yab{bottom:7.249117pt;}
.y45{bottom:14.880000pt;}
.yba{bottom:31.020478pt;}
.ybc{bottom:33.159327pt;}
.ybb{bottom:42.820031pt;}
.yb9{bottom:43.422928pt;}
.y4a{bottom:51.200000pt;}
.ybd{bottom:59.772916pt;}
.yb8{bottom:74.196505pt;}
.yb5{bottom:117.191663pt;}
.yb6{bottom:123.835012pt;}
.yb4{bottom:129.594112pt;}
.yb7{bottom:145.625427pt;}
.yad{bottom:160.037532pt;}
.y60{bottom:166.266667pt;}
.yc5{bottom:170.746667pt;}
.y41{bottom:175.066667pt;}
.y29{bottom:180.506667pt;}
.y5f{bottom:180.826667pt;}
.yb2{bottom:187.713368pt;}
.ybf{bottom:191.462813pt;}
.yc4{bottom:193.946667pt;}
.y5e{bottom:195.546667pt;}
.y40{bottom:197.626667pt;}
.y74{bottom:203.386667pt;}
.ybe{bottom:203.876746pt;}
.yb3{bottom:203.905455pt;}
.y28{bottom:208.346667pt;}
.y5d{bottom:210.106667pt;}
.y119{bottom:210.266667pt;}
.y73{bottom:217.946667pt;}
.y3f{bottom:221.146667pt;}
.y27{bottom:223.386667pt;}
.yac{bottom:227.389723pt;}
.y93{bottom:227.546667pt;}
.y118{bottom:228.186667pt;}
.y72{bottom:232.506667pt;}
.y5c{bottom:237.466667pt;}
.ydd{bottom:241.786667pt;}
.yb0{bottom:242.938719pt;}
.y117{bottom:243.546667pt;}
.y3e{bottom:244.666667pt;}
.y71{bottom:247.066667pt;}
.y92{bottom:250.586667pt;}
.yaf{bottom:250.919925pt;}
.y116{bottom:255.386667pt;}
.y3d{bottom:259.226667pt;}
.y70{bottom:261.626667pt;}
.yb1{bottom:262.145290pt;}
.yae{bottom:263.333858pt;}
.ydc{bottom:264.346667pt;}
.y91{bottom:265.146667pt;}
.y5b{bottom:265.786667pt;}
.y115{bottom:267.386667pt;}
.y6f{bottom:276.186667pt;}
.y90{bottom:279.706667pt;}
.y3c{bottom:282.746667pt;}
.y99{bottom:285.629558pt;}
.ydb{bottom:286.906667pt;}
.y8f{bottom:294.266667pt;}
.y114{bottom:294.586667pt;}
.y6e{bottom:296.346667pt;}
.y3b{bottom:297.306667pt;}
.yda{bottom:301.466667pt;}
.ya2{bottom:302.550863pt;}
.y113{bottom:306.586667pt;}
.yaa{bottom:307.362554pt;}
.y8e{bottom:308.826667pt;}
.yd9{bottom:316.026667pt;}
.ya3{bottom:318.140053pt;}
.ya9{bottom:319.776487pt;}
.y3a{bottom:320.826667pt;}
.y112{bottom:322.106667pt;}
.y8d{bottom:323.386667pt;}
.y111{bottom:333.946667pt;}
.y6d{bottom:334.906667pt;}
.yd8{bottom:336.186667pt;}
.y8c{bottom:337.946667pt;}
.y98{bottom:343.289464pt;}
.y39{bottom:343.386667pt;}
.y110{bottom:345.946667pt;}
.y8b{bottom:352.506667pt;}
.y38{bottom:357.986667pt;}
.ya0{bottom:359.929417pt;}
.ya8{bottom:360.199285pt;}
.y8a{bottom:367.106667pt;}
.yd7{bottom:369.986667pt;}
.y37{bottom:372.546667pt;}
.ya7{bottom:372.618960pt;}
.y10f{bottom:373.506667pt;}
.ya1{bottom:376.494725pt;}
.y89{bottom:381.666667pt;}
.yd6{bottom:384.546667pt;}
.ya6{bottom:385.032893pt;}
.y10e{bottom:385.346667pt;}
.y36{bottom:387.106667pt;}
.y88{bottom:396.226667pt;}
.y10d{bottom:397.346667pt;}
.y26{bottom:398.946667pt;}
.yd5{bottom:399.106667pt;}
.y35{bottom:401.666667pt;}
.y97{bottom:402.103487pt;}
.y10c{bottom:409.346667pt;}
.yd4{bottom:413.666667pt;}
.y34{bottom:416.226667pt;}
.y87{bottom:419.106667pt;}
.y9e{bottom:420.649742pt;}
.ya5{bottom:423.176167pt;}
.y10b{bottom:424.866667pt;}
.yc3{bottom:425.026667pt;}
.y5a{bottom:425.986667pt;}
.y33{bottom:430.786667pt;}
.y25{bottom:432.706667pt;}
.ya4{bottom:435.590100pt;}
.yd3{bottom:436.226667pt;}
.y10a{bottom:436.706667pt;}
.y9f{bottom:436.841829pt;}
.y59{bottom:440.546667pt;}
.y86{bottom:442.466667pt;}
.y32{bottom:445.346667pt;}
.y24{bottom:447.266667pt;}
.yd2{bottom:450.786667pt;}
.y109{bottom:452.226667pt;}
.y58{bottom:455.106667pt;}
.y96{bottom:460.337580pt;}
.y23{bottom:461.826667pt;}
.yc2{bottom:463.586667pt;}
.y108{bottom:464.066667pt;}
.yd1{bottom:465.346667pt;}
.y85{bottom:465.826667pt;}
.y31{bottom:467.906667pt;}
.y57{bottom:469.666667pt;}
.y9c{bottom:475.886577pt;}
.y107{bottom:476.066667pt;}
.y22{bottom:476.386667pt;}
.yd0{bottom:479.906667pt;}
.y30{bottom:482.466667pt;}
.y9b{bottom:483.850557pt;}
.y56{bottom:484.226667pt;}
.y106{bottom:488.066667pt;}
.y84{bottom:488.866667pt;}
.yc1{bottom:489.666667pt;}
.y21{bottom:490.946667pt;}
.ycf{bottom:494.466667pt;}
.y9d{bottom:495.075922pt;}
.y9a{bottom:496.270232pt;}
.y2f{bottom:497.026667pt;}
.y83{bottom:503.426667pt;}
.y105{bottom:503.586667pt;}
.y20{bottom:505.506667pt;}
.yce{bottom:509.026667pt;}
.yc0{bottom:509.346667pt;}
.y94{bottom:509.360000pt;}
.y2e{bottom:511.586667pt;}
.y55{bottom:511.746667pt;}
.y104{bottom:515.426667pt;}
.y82{bottom:517.986667pt;}
.y95{bottom:519.708565pt;}
.y1f{bottom:520.066667pt;}
.y2d{bottom:526.306667pt;}
.y103{bottom:527.426667pt;}
.ycd{bottom:529.186667pt;}
.y1e{bottom:534.626667pt;}
.y54{bottom:540.066667pt;}
.y2c{bottom:540.866667pt;}
.y102{bottom:542.786667pt;}
.y81{bottom:545.346667pt;}
.y1d{bottom:549.186667pt;}
.y101{bottom:554.626667pt;}
.y80{bottom:563.106667pt;}
.y1c{bottom:563.906667pt;}
.y100{bottom:566.626667pt;}
.ycc{bottom:567.746667pt;}
.y2b{bottom:568.226667pt;}
.y1b{bottom:578.493333pt;}
.yff{bottom:582.173333pt;}
.y7f{bottom:586.173333pt;}
.ycb{bottom:590.973333pt;}
.y2a{bottom:591.293333pt;}
.yfe{bottom:597.533333pt;}
.y1a{bottom:601.053333pt;}
.yfd{bottom:609.373333pt;}
.y19{bottom:615.613333pt;}
.yfc{bottom:621.373333pt;}
.y18{bottom:630.173333pt;}
.y46{bottom:630.493333pt;}
.y6c{bottom:632.733333pt;}
.yfb{bottom:633.373333pt;}
.y17{bottom:644.733333pt;}
.y6b{bottom:647.293333pt;}
.yfa{bottom:648.893333pt;}
.yf9{bottom:660.733333pt;}
.y6a{bottom:661.853333pt;}
.y16{bottom:664.733333pt;}
.y7e{bottom:666.493333pt;}
.yca{bottom:669.053333pt;}
.yf8{bottom:672.733333pt;}
.y69{bottom:676.413333pt;}
.y7d{bottom:684.253333pt;}
.yf7{bottom:684.733333pt;}
.y68{bottom:690.973333pt;}
.y7c{bottom:693.853333pt;}
.yf6{bottom:696.733333pt;}
.y15{bottom:698.173333pt;}
.y14{bottom:711.933333pt;}
.yf5{bottom:712.253333pt;}
.y53{bottom:718.333333pt;}
.yf4{bottom:724.093333pt;}
.y52{bottom:732.893333pt;}
.yf3{bottom:736.093333pt;}
.y42{bottom:738.493333pt;}
.y13{bottom:739.133333pt;}
.y67{bottom:741.533333pt;}
.y44{bottom:744.093333pt;}
.y51{bottom:747.453333pt;}
.yf2{bottom:751.613333pt;}
.y12{bottom:752.893333pt;}
.yc9{bottom:760.573333pt;}
.y50{bottom:762.013333pt;}
.yf1{bottom:763.453333pt;}
.y11{bottom:766.653333pt;}
.yf0{bottom:775.453333pt;}
.y7b{bottom:775.933333pt;}
.y10{bottom:780.413333pt;}
.yef{bottom:787.453333pt;}
.y4f{bottom:789.533333pt;}
.y7a{bottom:790.493333pt;}
.yf{bottom:794.373333pt;}
.y47{bottom:800.933333pt;}
.yee{bottom:802.853333pt;}
.y79{bottom:805.093333pt;}
.ye{bottom:808.133333pt;}
.y4e{bottom:812.613333pt;}
.yed{bottom:814.693333pt;}
.y78{bottom:819.653333pt;}
.yd{bottom:821.893333pt;}
.yec{bottom:826.693333pt;}
.y77{bottom:834.213333pt;}
.yc{bottom:836.453333pt;}
.yeb{bottom:842.213333pt;}
.yb{bottom:851.813333pt;}
.yea{bottom:854.053333pt;}
.y76{bottom:861.573333pt;}
.y66{bottom:863.173333pt;}
.ye9{bottom:866.053333pt;}
.ya{bottom:867.013333pt;}
.yc8{bottom:876.133333pt;}
.y65{bottom:877.733333pt;}
.ye8{bottom:881.573333pt;}
.y9{bottom:882.373333pt;}
.y75{bottom:884.773333pt;}
.y64{bottom:892.293333pt;}
.ye7{bottom:893.413333pt;}
.y8{bottom:897.733333pt;}
.ye6{bottom:905.413333pt;}
.y63{bottom:906.853333pt;}
.y7{bottom:913.093333pt;}
.ye5{bottom:920.933333pt;}
.y6{bottom:931.333333pt;}
.ye4{bottom:932.773333pt;}
.y62{bottom:934.213333pt;}
.ye3{bottom:944.773333pt;}
.ye2{bottom:956.773333pt;}
.y61{bottom:957.413333pt;}
.ye1{bottom:972.293333pt;}
.y5{bottom:983.653333pt;}
.ye0{bottom:984.133333pt;}
.y4d{bottom:994.853333pt;}
.ydf{bottom:999.653333pt;}
.y4c{bottom:1009.573333pt;}
.yde{bottom:1011.493333pt;}
.yc7{bottom:1015.680000pt;}
.y4{bottom:1020.480000pt;}
.y4b{bottom:1029.600000pt;}
.yc6{bottom:1030.240000pt;}
.y49{bottom:1052.320000pt;}
.y2{bottom:1062.560000pt;}
.y48{bottom:1064.640000pt;}
.y1{bottom:1074.880000pt;}
.he{height:12.146667pt;}
.hc{height:12.160000pt;}
.hd{height:24.480000pt;}
.h14{height:32.121415pt;}
.h12{height:32.177769pt;}
.h13{height:33.223855pt;}
.h15{height:33.269790pt;}
.h11{height:40.574419pt;}
.h10{height:40.630773pt;}
.h2{height:42.084375pt;}
.hb{height:44.073883pt;}
.h8{height:47.085938pt;}
.h7{height:48.375000pt;}
.h3{height:52.134375pt;}
.h9{height:54.598989pt;}
.h6{height:57.787500pt;}
.ha{height:62.812500pt;}
.h4{height:125.562500pt;}
.h5{height:127.687500pt;}
.hf{height:533.133068pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:50.752000pt;}
.w5{width:87.218667pt;}
.w4{width:90.752000pt;}
.w2{width:92.306667pt;}
.w6{width:103.666667pt;}
.w7{width:335.868255pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:9.600000pt;}
.x1b{left:12.026667pt;}
.x17{left:19.360000pt;}
.x3f{left:29.941588pt;}
.xb{left:48.960000pt;}
.x1e{left:50.400000pt;}
.xa{left:67.200000pt;}
.xd{left:68.160000pt;}
.x4{left:81.280000pt;}
.x45{left:86.224883pt;}
.x2d{left:91.072000pt;}
.x2f{left:104.032000pt;}
.xe{left:108.032000pt;}
.x20{left:115.712000pt;}
.x22{left:124.992000pt;}
.x24{left:129.312000pt;}
.x30{left:131.872000pt;}
.x10{left:135.866667pt;}
.x41{left:142.634491pt;}
.x44{left:143.754071pt;}
.x32{left:153.626667pt;}
.x31{left:154.586667pt;}
.x33{left:156.155572pt;}
.x4f{left:159.386667pt;}
.x3e{left:161.391761pt;}
.x4e{left:162.906667pt;}
.xc{left:163.866667pt;}
.x36{left:177.094588pt;}
.x37{left:180.952833pt;}
.x42{left:182.445607pt;}
.x3c{left:186.625372pt;}
.x3d{left:193.371559pt;}
.x3a{left:195.122697pt;}
.x35{left:196.070034pt;}
.x34{left:197.350374pt;}
.x38{left:201.742573pt;}
.x39{left:203.476486pt;}
.x46{left:208.557657pt;}
.x3b{left:214.098142pt;}
.x11{left:216.986667pt;}
.x40{left:248.937175pt;}
.x43{left:268.038932pt;}
.x7{left:282.146667pt;}
.x21{left:286.626667pt;}
.x23{left:295.586667pt;}
.x9{left:310.306667pt;}
.x4d{left:312.066667pt;}
.x4c{left:313.026667pt;}
.x1f{left:333.666667pt;}
.x8{left:338.146667pt;}
.x2c{left:341.506667pt;}
.x5{left:347.266667pt;}
.x6{left:348.706667pt;}
.x2e{left:363.106667pt;}
.xf{left:383.266667pt;}
.x3{left:397.026667pt;}
.x18{left:404.546667pt;}
.x14{left:409.026667pt;}
.x1a{left:413.346667pt;}
.x13{left:428.253333pt;}
.x51{left:433.053333pt;}
.x15{left:446.813333pt;}
.x1{left:454.173333pt;}
.x26{left:466.333333pt;}
.x2a{left:478.173333pt;}
.x28{left:497.693333pt;}
.x49{left:504.413333pt;}
.x4b{left:506.813333pt;}
.x2b{left:519.773333pt;}
.x4a{left:539.293333pt;}
.x50{left:542.653333pt;}
.x1c{left:563.786667pt;}
.x48{left:577.053333pt;}
.x2{left:605.253333pt;}
.x1d{left:641.413333pt;}
.x27{left:646.053333pt;}
.x16{left:652.133333pt;}
.x29{left:670.213333pt;}
.x25{left:738.533333pt;}
.x12{left:740.293333pt;}
.x47{left:744.933333pt;}
}




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