
    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_91f7e9f6fe8332fc2571ce9a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9a4ee387da1a95c4b0929bbc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932129;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_00630dcfd77c0ab6208180cb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.744629;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_b86abe24e9952ff080482e84.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_6bc7da91abecb75f50abcb32.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9a091418a909f46b013da289.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_adbc76b9b7b0ed37c2531e76.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932129;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_8c8dfe424c370f7b67ea61dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:11.640000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.020009px;}
.ls2{letter-spacing:0.060026px;}
.ls1{letter-spacing:46.360390px;}
.ls5{letter-spacing:50.542229px;}
.ls3{letter-spacing:53.543549px;}
.ls6{letter-spacing:109.428127px;}
.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;}
}
.ws3{word-spacing:-16.687339px;}
.ws2{word-spacing:-16.627313px;}
.ws1{word-spacing:0.000000px;}
.ws0{word-spacing:13.265834px;}
.ws4{word-spacing:34.415136px;}
._3a{margin-left:-1802.312669px;}
._3c{margin-left:-16.167110px;}
._26{margin-left:-7.923485px;}
._5{margin-left:-6.843010px;}
._36{margin-left:-5.782543px;}
._2{margin-left:-4.742086px;}
._1{margin-left:-2.761214px;}
._0{margin-left:-1.080475px;}
._8{width:1.020449px;}
._14{width:2.160950px;}
._3{width:3.661610px;}
._4{width:4.682059px;}
._12{width:6.542878px;}
._13{width:8.163590px;}
._20{width:9.604224px;}
._1c{width:10.984831px;}
._1d{width:12.305412px;}
._23{width:13.325861px;}
._6{width:14.706468px;}
._25{width:18.608184px;}
._21{width:20.088835px;}
._22{width:21.989671px;}
._15{width:23.530349px;}
._2e{width:24.610824px;}
._29{width:25.751326px;}
._1b{width:27.251986px;}
._38{width:28.632593px;}
._10{width:29.893147px;}
._18{width:31.033649px;}
._32{width:32.434265px;}
._27{width:33.734837px;}
._28{width:34.935365px;}
._24{width:36.496051px;}
._33{width:37.996711px;}
._34{width:39.017160px;}
._1f{width:40.037609px;}
._a{width:42.058498px;}
._2a{width:44.419536px;}
._2c{width:45.740117px;}
._2d{width:48.441305px;}
._2f{width:49.541789px;}
._3f{width:51.042449px;}
._41{width:54.163822px;}
._1a{width:56.024640px;}
._16{width:57.065098px;}
._17{width:58.745837px;}
._19{width:60.086426px;}
._30{width:63.888098px;}
._31{width:66.989462px;}
._2b{width:89.099186px;}
._40{width:110.168453px;}
._3e{width:112.529491px;}
._35{width:130.077209px;}
._d{width:142.302586px;}
._7{width:145.303906px;}
._b{width:168.714202px;}
._c{width:195.245870px;}
._9{width:205.690464px;}
._37{width:234.122969px;}
._11{width:262.055254px;}
._f{width:342.130471px;}
._43{width:470.907108px;}
._42{width:476.369510px;}
._e{width:498.979454px;}
._3d{width:815.818802px;}
._3b{width:1771.078932px;}
._39{width:1901.040000px;}
._1e{width:1927.680000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(60,60,60);}
.fc0{color:rgb(195,255,195);}
.fs5{font-size:30.000000px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:50.022000px;}
.fs7{font-size:55.024200px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:60.026400px;}
.fs1{font-size:90.000000px;}
.fs0{font-size:300.001366px;}
.y5{bottom:-650.550000px;}
.y4{bottom:-225.360000px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.251350px;}
.y30{bottom:19.005000px;}
.y2f{bottom:29.640000px;}
.y2e{bottom:40.275000px;}
.y2d{bottom:50.895000px;}
.y2c{bottom:61.530000px;}
.y2b{bottom:144.438525px;}
.ya8{bottom:177.077880px;}
.y113{bottom:178.578540px;}
.y54{bottom:180.579420px;}
.y77{bottom:182.330190px;}
.y8e{bottom:187.207335px;}
.y14f{bottom:190.458765px;}
.yf2{bottom:194.210415px;}
.y13c{bottom:197.586900px;}
.yb5{bottom:199.462725px;}
.y3{bottom:199.845000px;}
.y154{bottom:201.213495px;}
.ya7{bottom:202.964265px;}
.y112{bottom:204.464925px;}
.y18b{bottom:206.215695px;}
.y53{bottom:206.465805px;}
.y76{bottom:208.216575px;}
.y2a{bottom:211.468005px;}
.y8d{bottom:213.093720px;}
.y14e{bottom:216.345150px;}
.y99{bottom:218.346030px;}
.yf1{bottom:220.096800px;}
.y13b{bottom:223.473285px;}
.yb4{bottom:225.349110px;}
.yd8{bottom:226.724715px;}
.y11e{bottom:227.099880px;}
.ya6{bottom:228.850650px;}
.y111{bottom:230.351310px;}
.y52{bottom:232.352190px;}
.y178{bottom:233.977905px;}
.y75{bottom:234.102960px;}
.y29{bottom:237.354390px;}
.y8c{bottom:238.980105px;}
.y18a{bottom:240.730875px;}
.y14d{bottom:243.982305px;}
.y98{bottom:244.232415px;}
.yf0{bottom:247.733955px;}
.y13a{bottom:249.359670px;}
.yb3{bottom:251.235495px;}
.yd7{bottom:252.611100px;}
.y11d{bottom:252.986265px;}
.ya5{bottom:254.737035px;}
.y110{bottom:256.237695px;}
.y51{bottom:258.238575px;}
.y74{bottom:259.989345px;}
.y28{bottom:263.240775px;}
.y8b{bottom:264.866490px;}
.y177{bottom:268.493085px;}
.y14c{bottom:269.868690px;}
.y97{bottom:270.118800px;}
.yef{bottom:273.620340px;}
.y189{bottom:275.246055px;}
.y165{bottom:275.371110px;}
.y139{bottom:276.996825px;}
.yd6{bottom:278.497485px;}
.yb2{bottom:278.872650px;}
.ya4{bottom:280.623420px;}
.y10f{bottom:282.124080px;}
.y50{bottom:284.124960px;}
.y73{bottom:285.875730px;}
.y27{bottom:289.127160px;}
.y8a{bottom:290.752875px;}
.y14b{bottom:295.755075px;}
.y96{bottom:296.005185px;}
.yee{bottom:299.506725px;}
.y138{bottom:302.883210px;}
.y164{bottom:303.008265px;}
.yd5{bottom:304.383870px;}
.yb1{bottom:304.759035px;}
.ya3{bottom:306.509805px;}
.y10e{bottom:308.010465px;}
.y4f{bottom:310.011345px;}
.y188{bottom:311.512005px;}
.y72{bottom:311.762115px;}
.y26{bottom:315.013545px;}
.y89{bottom:318.390030px;}
.y14a{bottom:321.641460px;}
.y95{bottom:323.642340px;}
.yed{bottom:325.393110px;}
.y137{bottom:328.769595px;}
.y163{bottom:328.894650px;}
.yb0{bottom:330.645420px;}
.yd4{bottom:332.021025px;}
.ya2{bottom:332.396190px;}
.y10d{bottom:333.896850px;}
.y4e{bottom:335.897730px;}
.y71{bottom:337.648500px;}
.y176{bottom:339.274215px;}
.y25{bottom:340.899930px;}
.y88{bottom:344.276415px;}
.y187{bottom:346.027185px;}
.y149{bottom:347.527845px;}
.y94{bottom:351.279495px;}
.y136{bottom:354.655980px;}
.y162{bottom:354.781035px;}
.yaf{bottom:356.531805px;}
.yd3{bottom:357.907410px;}
.y153{bottom:358.282575px;}
.y10c{bottom:359.783235px;}
.ya1{bottom:360.033345px;}
.y4d{bottom:361.784115px;}
.y70{bottom:363.534885px;}
.y24{bottom:366.786315px;}
.y87{bottom:370.162800px;}
.y175{bottom:373.789395px;}
.y148{bottom:375.165000px;}
.yec{bottom:377.165880px;}
.y93{bottom:378.916650px;}
.y135{bottom:380.542365px;}
.y161{bottom:380.667420px;}
.yae{bottom:382.418190px;}
.yd2{bottom:383.793795px;}
.y152{bottom:384.168960px;}
.ya0{bottom:385.919730px;}
.y10b{bottom:387.420390px;}
.y4c{bottom:387.670500px;}
.y6f{bottom:389.421270px;}
.y23{bottom:392.672700px;}
.y86{bottom:396.049185px;}
.y147{bottom:401.051385px;}
.yeb{bottom:404.803035px;}
.y92{bottom:406.553805px;}
.y134{bottom:408.179520px;}
.yad{bottom:408.304575px;}
.yd1{bottom:409.680180px;}
.y151{bottom:410.055345px;}
.y9f{bottom:411.806115px;}
.y10a{bottom:413.306775px;}
.y4b{bottom:413.556885px;}
.y6e{bottom:415.307655px;}
.y186{bottom:416.808315px;}
.y22{bottom:418.559085px;}
.y85{bottom:421.935570px;}
.y146{bottom:426.937770px;}
.yea{bottom:430.689420px;}
.y133{bottom:434.065905px;}
.y91{bottom:434.190960px;}
.yd0{bottom:435.566565px;}
.y150{bottom:435.941730px;}
.y9e{bottom:437.692500px;}
.y109{bottom:439.193160px;}
.y4a{bottom:439.443270px;}
.y6d{bottom:441.194040px;}
.y174{bottom:442.819755px;}
.y21{bottom:444.445470px;}
.y84{bottom:447.821955px;}
.y185{bottom:451.323495px;}
.y145{bottom:452.824155px;}
.ye9{bottom:456.575805px;}
.y132{bottom:459.952290px;}
.y160{bottom:460.077345px;}
.ycf{bottom:461.452950px;}
.y90{bottom:461.828115px;}
.y9d{bottom:463.578885px;}
.y108{bottom:465.079545px;}
.y49{bottom:465.329655px;}
.y6c{bottom:467.080425px;}
.y20{bottom:472.082625px;}
.y83{bottom:473.708340px;}
.y144{bottom:478.710540px;}
.y173{bottom:479.085705px;}
.ye8{bottom:482.462190px;}
.y131{bottom:485.838675px;}
.y15f{bottom:485.963730px;}
.yce{bottom:487.339335px;}
.yac{bottom:487.714500px;}
.y8f{bottom:489.465270px;}
.y107{bottom:490.965930px;}
.y48{bottom:491.216040px;}
.y6b{bottom:492.966810px;}
.y82{bottom:499.594725px;}
.y1f{bottom:499.719780px;}
.y143{bottom:506.347695px;}
.ye7{bottom:508.348575px;}
.y130{bottom:511.725060px;}
.y15e{bottom:511.850115px;}
.ycd{bottom:513.225720px;}
.yab{bottom:513.600885px;}
.y9c{bottom:515.351655px;}
.y47{bottom:517.102425px;}
.y106{bottom:518.603085px;}
.y6a{bottom:518.853195px;}
.y184{bottom:522.104625px;}
.y81{bottom:525.481110px;}
.y142{bottom:532.234080px;}
.ye6{bottom:535.985730px;}
.y12f{bottom:537.611445px;}
.y15d{bottom:537.736500px;}
.ycc{bottom:539.112105px;}
.y11c{bottom:539.487270px;}
.y9b{bottom:541.238040px;}
.y46{bottom:542.988810px;}
.y105{bottom:544.489470px;}
.y69{bottom:544.739580px;}
.y172{bottom:548.116065px;}
.y80{bottom:553.118265px;}
.y1e{bottom:553.243320px;}
.y141{bottom:558.120465px;}
.y183{bottom:560.121345px;}
.ye5{bottom:561.872115px;}
.y12e{bottom:563.497830px;}
.y15c{bottom:563.622885px;}
.ycb{bottom:564.998490px;}
.y9a{bottom:567.124425px;}
.y45{bottom:568.875195px;}
.y104{bottom:570.375855px;}
.y68{bottom:570.625965px;}
.y1d{bottom:579.129705px;}
.y7f{bottom:580.755420px;}
.y171{bottom:582.631245px;}
.y140{bottom:585.882675px;}
.ye4{bottom:587.758500px;}
.y12d{bottom:589.384215px;}
.y15b{bottom:589.509270px;}
.yca{bottom:590.884875px;}
.yaa{bottom:593.010810px;}
.y44{bottom:594.761580px;}
.y103{bottom:596.262240px;}
.y67{bottom:596.512350px;}
.y1c{bottom:605.016090px;}
.y7e{bottom:608.392575px;}
.y13f{bottom:613.519830px;}
.ye3{bottom:613.644885px;}
.y182{bottom:615.395655px;}
.yc9{bottom:616.771260px;}
.y12c{bottom:617.021370px;}
.y15a{bottom:617.146425px;}
.ya9{bottom:618.897195px;}
.y43{bottom:620.647965px;}
.y66{bottom:622.398735px;}
.y102{bottom:623.899395px;}
.y2{bottom:625.035000px;}
.y193{bottom:630.027090px;}
.y1b{bottom:630.902475px;}
.y7d{bottom:636.029730px;}
.ye2{bottom:639.531270px;}
.y13e{bottom:641.282040px;}
.yc8{bottom:642.657645px;}
.y12b{bottom:642.907755px;}
.y159{bottom:643.032810px;}
.y11b{bottom:644.783580px;}
.y42{bottom:646.534350px;}
.y65{bottom:648.285120px;}
.y101{bottom:649.785780px;}
.y181{bottom:649.910835px;}
.y170{bottom:651.661605px;}
.y1a{bottom:656.788860px;}
.y7c{bottom:663.666885px;}
.ye1{bottom:667.168425px;}
.yc7{bottom:668.544030px;}
.y13d{bottom:668.919195px;}
.y12a{bottom:670.544910px;}
.y11a{bottom:670.669965px;}
.y41{bottom:672.420735px;}
.y192{bottom:673.171065px;}
.y64{bottom:674.171505px;}
.y100{bottom:677.422935px;}
.y19{bottom:682.675245px;}
.y180{bottom:684.426015px;}
.y16f{bottom:686.176785px;}
.y7b{bottom:691.304040px;}
.ye0{bottom:693.054810px;}
.y158{bottom:694.805580px;}
.yc6{bottom:696.181185px;}
.y129{bottom:696.431295px;}
.y119{bottom:696.556350px;}
.y40{bottom:698.307120px;}
.y63{bottom:700.057890px;}
.yff{bottom:703.309320px;}
.y191{bottom:716.315040px;}
.y7a{bottom:718.941195px;}
.y157{bottom:720.691965px;}
.yc5{bottom:722.067570px;}
.y128{bottom:722.317680px;}
.y118{bottom:722.442735px;}
.y3f{bottom:724.193505px;}
.y62{bottom:725.944275px;}
.yfe{bottom:730.946475px;}
.y18{bottom:734.448015px;}
.y190{bottom:737.949555px;}
.ydf{bottom:744.827580px;}
.y79{bottom:746.578350px;}
.yc4{bottom:747.953955px;}
.y127{bottom:748.204065px;}
.y117{bottom:748.329120px;}
.y3e{bottom:750.079890px;}
.y61{bottom:751.830660px;}
.y17f{bottom:753.456375px;}
.y16e{bottom:755.207145px;}
.yfd{bottom:756.832860px;}
.y17{bottom:760.334400px;}
.yde{bottom:770.713965px;}
.y156{bottom:772.464735px;}
.y126{bottom:774.090450px;}
.y78{bottom:774.215505px;}
.yc3{bottom:775.591110px;}
.y3d{bottom:775.966275px;}
.y60{bottom:777.717045px;}
.y18f{bottom:781.093530px;}
.yfc{bottom:782.719245px;}
.y16{bottom:786.220785px;}
.y16d{bottom:789.722325px;}
.ydd{bottom:796.600350px;}
.y155{bottom:798.351120px;}
.y125{bottom:799.976835px;}
.y116{bottom:800.101890px;}
.yc2{bottom:801.477495px;}
.y3c{bottom:801.852660px;}
.y5f{bottom:803.603430px;}
.yfb{bottom:810.356400px;}
.y15{bottom:812.107170px;}
.ydc{bottom:822.486735px;}
.y16c{bottom:824.237505px;}
.y124{bottom:825.863220px;}
.y115{bottom:825.988275px;}
.yc1{bottom:827.363880px;}
.y3b{bottom:827.739045px;}
.y5e{bottom:829.489815px;}
.yfa{bottom:836.242785px;}
.y14{bottom:837.993555px;}
.ydb{bottom:850.123890px;}
.y114{bottom:851.874660px;}
.yc0{bottom:853.250265px;}
.y123{bottom:853.500375px;}
.y3a{bottom:853.625430px;}
.y5d{bottom:855.376200px;}
.y16b{bottom:858.752685px;}
.yf9{bottom:862.129170px;}
.y13{bottom:863.879940px;}
.y18e{bottom:867.381480px;}
.yda{bottom:877.761045px;}
.ybf{bottom:879.261705px;}
.y122{bottom:879.386760px;}
.y39{bottom:879.511815px;}
.y5c{bottom:881.262585px;}
.y12{bottom:889.766325px;}
.y16a{bottom:893.267865px;}
.y17e{bottom:895.018635px;}
.yd9{bottom:903.647430px;}
.ybe{bottom:905.148090px;}
.y121{bottom:905.273145px;}
.y38{bottom:905.398200px;}
.y5b{bottom:907.148970px;}
.yf8{bottom:908.774685px;}
.y18d{bottom:910.525455px;}
.y11{bottom:915.652710px;}
.y169{bottom:927.783045px;}
.y17d{bottom:929.533815px;}
.ybd{bottom:931.034475px;}
.y120{bottom:931.159530px;}
.y37{bottom:931.284585px;}
.y5a{bottom:933.035355px;}
.yf7{bottom:936.411840px;}
.y10{bottom:941.539095px;}
.ybc{bottom:956.920860px;}
.y11f{bottom:957.045915px;}
.y36{bottom:957.170970px;}
.y59{bottom:958.921740px;}
.yf6{bottom:962.298225px;}
.y17c{bottom:965.799765px;}
.yf{bottom:967.425480px;}
.ybb{bottom:982.807245px;}
.y35{bottom:983.057355px;}
.y58{bottom:984.808125px;}
.yf5{bottom:989.935380px;}
.ye{bottom:993.311865px;}
.y168{bottom:996.813405px;}
.y17b{bottom:1000.314945px;}
.yba{bottom:1008.818685px;}
.y34{bottom:1008.943740px;}
.y57{bottom:1010.694510px;}
.yf4{bottom:1015.821765px;}
.yd{bottom:1019.198250px;}
.y167{bottom:1031.328585px;}
.yb9{bottom:1034.705070px;}
.y33{bottom:1034.830125px;}
.y56{bottom:1036.580895px;}
.yf3{bottom:1041.708150px;}
.yc{bottom:1045.084635px;}
.y1{bottom:1050.240000px;}
.yb8{bottom:1060.591455px;}
.y55{bottom:1062.467280px;}
.y17a{bottom:1069.345305px;}
.y18c{bottom:1071.096075px;}
.yb{bottom:1083.101355px;}
.yb7{bottom:1086.477840px;}
.y166{bottom:1086.602895px;}
.y32{bottom:1088.353665px;}
.y179{bottom:1105.611255px;}
.yb6{bottom:1112.489280px;}
.y31{bottom:1114.240050px;}
.ya{bottom:1121.118075px;}
.y9{bottom:1140.126435px;}
.y7{bottom:1179.675000px;}
.y6{bottom:1202.925000px;}
.h8{height:31.289062px;}
.h7{height:36.246410px;}
.h6{height:43.495692px;}
.h9{height:61.702500px;}
.h4{height:62.578125px;}
.h3{height:93.867188px;}
.h2{height:312.892049px;}
.h5{height:1260.554400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:765.336600px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x1{left:-85.035000px;}
.x2{left:-63.780000px;}
.x3{left:-42.525000px;}
.x4{left:-21.255000px;}
.x0{left:0.000000px;}
.x6{left:42.519750px;}
.x10{left:46.785000px;}
.x5{left:174.330000px;}
.x14{left:176.327550px;}
.xb{left:177.453045px;}
.x12{left:195.210855px;}
.x11{left:199.962945px;}
.xe{left:204.089760px;}
.xc{left:212.843610px;}
.x9{left:215.219655px;}
.xa{left:222.472845px;}
.x8{left:321.141240px;}
.x13{left:327.393990px;}
.xf{left:334.272015px;}
.xd{left:345.902130px;}
.x15{left:382.793355px;}
.x7{left:389.921490px;}
.x16{left:492.591645px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.346667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.017786pt;}
.ls2{letter-spacing:0.053357pt;}
.ls1{letter-spacing:41.209235pt;}
.ls5{letter-spacing:44.926426pt;}
.ls3{letter-spacing:47.594266pt;}
.ls6{letter-spacing:97.269446pt;}
.ws3{word-spacing:-14.833190pt;}
.ws2{word-spacing:-14.779834pt;}
.ws1{word-spacing:0.000000pt;}
.ws0{word-spacing:11.791853pt;}
.ws4{word-spacing:30.591232pt;}
._3a{margin-left:-1602.055706pt;}
._3c{margin-left:-14.370765pt;}
._26{margin-left:-7.043098pt;}
._5{margin-left:-6.082675pt;}
._36{margin-left:-5.140038pt;}
._2{margin-left:-4.215187pt;}
._1{margin-left:-2.454413pt;}
._0{margin-left:-0.960422pt;}
._8{width:0.907066pt;}
._14{width:1.920845pt;}
._3{width:3.254765pt;}
._4{width:4.161830pt;}
._12{width:5.815891pt;}
._13{width:7.256525pt;}
._20{width:8.537088pt;}
._1c{width:9.764294pt;}
._1d{width:10.938144pt;}
._23{width:11.845210pt;}
._6{width:13.072416pt;}
._25{width:16.540608pt;}
._21{width:17.856742pt;}
._22{width:19.546374pt;}
._15{width:20.915866pt;}
._2e{width:21.876288pt;}
._29{width:22.890067pt;}
._1b{width:24.223987pt;}
._38{width:25.451194pt;}
._10{width:26.571686pt;}
._18{width:27.585466pt;}
._32{width:28.830458pt;}
._27{width:29.986522pt;}
._28{width:31.053658pt;}
._24{width:32.440934pt;}
._33{width:33.774854pt;}
._34{width:34.681920pt;}
._1f{width:35.588986pt;}
._a{width:37.385331pt;}
._2a{width:39.484032pt;}
._2c{width:40.657882pt;}
._2d{width:43.058938pt;}
._2f{width:44.037146pt;}
._3f{width:45.371066pt;}
._41{width:48.145619pt;}
._1a{width:49.799680pt;}
._16{width:50.724531pt;}
._17{width:52.218522pt;}
._19{width:53.410157pt;}
._30{width:56.789421pt;}
._31{width:59.546189pt;}
._2b{width:79.199277pt;}
._40{width:97.927514pt;}
._3e{width:100.026214pt;}
._35{width:115.624186pt;}
._d{width:126.491187pt;}
._7{width:129.159027pt;}
._b{width:149.968179pt;}
._c{width:173.551885pt;}
._9{width:182.835968pt;}
._37{width:208.109306pt;}
._11{width:232.938003pt;}
._f{width:304.115974pt;}
._43{width:418.584096pt;}
._42{width:423.439565pt;}
._e{width:443.537293pt;}
._3d{width:725.172269pt;}
._3b{width:1574.292384pt;}
._39{width:1689.813333pt;}
._1e{width:1713.493333pt;}
.fs5{font-size:26.666667pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:44.464000pt;}
.fs7{font-size:48.910400pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:53.356800pt;}
.fs1{font-size:80.000000pt;}
.fs0{font-size:266.667881pt;}
.y5{bottom:-578.266667pt;}
.y4{bottom:-200.320000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.001200pt;}
.y30{bottom:16.893333pt;}
.y2f{bottom:26.346667pt;}
.y2e{bottom:35.800000pt;}
.y2d{bottom:45.240000pt;}
.y2c{bottom:54.693333pt;}
.y2b{bottom:128.389800pt;}
.ya8{bottom:157.402560pt;}
.y113{bottom:158.736480pt;}
.y54{bottom:160.515040pt;}
.y77{bottom:162.071280pt;}
.y8e{bottom:166.406520pt;}
.y14f{bottom:169.296680pt;}
.yf2{bottom:172.631480pt;}
.y13c{bottom:175.632800pt;}
.yb5{bottom:177.300200pt;}
.y3{bottom:177.640000pt;}
.y154{bottom:178.856440pt;}
.ya7{bottom:180.412680pt;}
.y112{bottom:181.746600pt;}
.y18b{bottom:183.302840pt;}
.y53{bottom:183.525160pt;}
.y76{bottom:185.081400pt;}
.y2a{bottom:187.971560pt;}
.y8d{bottom:189.416640pt;}
.y14e{bottom:192.306800pt;}
.y99{bottom:194.085360pt;}
.yf1{bottom:195.641600pt;}
.y13b{bottom:198.642920pt;}
.yb4{bottom:200.310320pt;}
.yd8{bottom:201.533080pt;}
.y11e{bottom:201.866560pt;}
.ya6{bottom:203.422800pt;}
.y111{bottom:204.756720pt;}
.y52{bottom:206.535280pt;}
.y178{bottom:207.980360pt;}
.y75{bottom:208.091520pt;}
.y29{bottom:210.981680pt;}
.y8c{bottom:212.426760pt;}
.y18a{bottom:213.983000pt;}
.y14d{bottom:216.873160pt;}
.y98{bottom:217.095480pt;}
.yf0{bottom:220.207960pt;}
.y13a{bottom:221.653040pt;}
.yb3{bottom:223.320440pt;}
.yd7{bottom:224.543200pt;}
.y11d{bottom:224.876680pt;}
.ya5{bottom:226.432920pt;}
.y110{bottom:227.766840pt;}
.y51{bottom:229.545400pt;}
.y74{bottom:231.101640pt;}
.y28{bottom:233.991800pt;}
.y8b{bottom:235.436880pt;}
.y177{bottom:238.660520pt;}
.y14c{bottom:239.883280pt;}
.y97{bottom:240.105600pt;}
.yef{bottom:243.218080pt;}
.y189{bottom:244.663160pt;}
.y165{bottom:244.774320pt;}
.y139{bottom:246.219400pt;}
.yd6{bottom:247.553320pt;}
.yb2{bottom:247.886800pt;}
.ya4{bottom:249.443040pt;}
.y10f{bottom:250.776960pt;}
.y50{bottom:252.555520pt;}
.y73{bottom:254.111760pt;}
.y27{bottom:257.001920pt;}
.y8a{bottom:258.447000pt;}
.y14b{bottom:262.893400pt;}
.y96{bottom:263.115720pt;}
.yee{bottom:266.228200pt;}
.y138{bottom:269.229520pt;}
.y164{bottom:269.340680pt;}
.yd5{bottom:270.563440pt;}
.yb1{bottom:270.896920pt;}
.ya3{bottom:272.453160pt;}
.y10e{bottom:273.787080pt;}
.y4f{bottom:275.565640pt;}
.y188{bottom:276.899560pt;}
.y72{bottom:277.121880pt;}
.y26{bottom:280.012040pt;}
.y89{bottom:283.013360pt;}
.y14a{bottom:285.903520pt;}
.y95{bottom:287.682080pt;}
.yed{bottom:289.238320pt;}
.y137{bottom:292.239640pt;}
.y163{bottom:292.350800pt;}
.yb0{bottom:293.907040pt;}
.yd4{bottom:295.129800pt;}
.ya2{bottom:295.463280pt;}
.y10d{bottom:296.797200pt;}
.y4e{bottom:298.575760pt;}
.y71{bottom:300.132000pt;}
.y176{bottom:301.577080pt;}
.y25{bottom:303.022160pt;}
.y88{bottom:306.023480pt;}
.y187{bottom:307.579720pt;}
.y149{bottom:308.913640pt;}
.y94{bottom:312.248440pt;}
.y136{bottom:315.249760pt;}
.y162{bottom:315.360920pt;}
.yaf{bottom:316.917160pt;}
.yd3{bottom:318.139920pt;}
.y153{bottom:318.473400pt;}
.y10c{bottom:319.807320pt;}
.ya1{bottom:320.029640pt;}
.y4d{bottom:321.585880pt;}
.y70{bottom:323.142120pt;}
.y24{bottom:326.032280pt;}
.y87{bottom:329.033600pt;}
.y175{bottom:332.257240pt;}
.y148{bottom:333.480000pt;}
.yec{bottom:335.258560pt;}
.y93{bottom:336.814800pt;}
.y135{bottom:338.259880pt;}
.y161{bottom:338.371040pt;}
.yae{bottom:339.927280pt;}
.yd2{bottom:341.150040pt;}
.y152{bottom:341.483520pt;}
.ya0{bottom:343.039760pt;}
.y10b{bottom:344.373680pt;}
.y4c{bottom:344.596000pt;}
.y6f{bottom:346.152240pt;}
.y23{bottom:349.042400pt;}
.y86{bottom:352.043720pt;}
.y147{bottom:356.490120pt;}
.yeb{bottom:359.824920pt;}
.y92{bottom:361.381160pt;}
.y134{bottom:362.826240pt;}
.yad{bottom:362.937400pt;}
.yd1{bottom:364.160160pt;}
.y151{bottom:364.493640pt;}
.y9f{bottom:366.049880pt;}
.y10a{bottom:367.383800pt;}
.y4b{bottom:367.606120pt;}
.y6e{bottom:369.162360pt;}
.y186{bottom:370.496280pt;}
.y22{bottom:372.052520pt;}
.y85{bottom:375.053840pt;}
.y146{bottom:379.500240pt;}
.yea{bottom:382.835040pt;}
.y133{bottom:385.836360pt;}
.y91{bottom:385.947520pt;}
.yd0{bottom:387.170280pt;}
.y150{bottom:387.503760pt;}
.y9e{bottom:389.060000pt;}
.y109{bottom:390.393920pt;}
.y4a{bottom:390.616240pt;}
.y6d{bottom:392.172480pt;}
.y174{bottom:393.617560pt;}
.y21{bottom:395.062640pt;}
.y84{bottom:398.063960pt;}
.y185{bottom:401.176440pt;}
.y145{bottom:402.510360pt;}
.ye9{bottom:405.845160pt;}
.y132{bottom:408.846480pt;}
.y160{bottom:408.957640pt;}
.ycf{bottom:410.180400pt;}
.y90{bottom:410.513880pt;}
.y9d{bottom:412.070120pt;}
.y108{bottom:413.404040pt;}
.y49{bottom:413.626360pt;}
.y6c{bottom:415.182600pt;}
.y20{bottom:419.629000pt;}
.y83{bottom:421.074080pt;}
.y144{bottom:425.520480pt;}
.y173{bottom:425.853960pt;}
.ye8{bottom:428.855280pt;}
.y131{bottom:431.856600pt;}
.y15f{bottom:431.967760pt;}
.yce{bottom:433.190520pt;}
.yac{bottom:433.524000pt;}
.y8f{bottom:435.080240pt;}
.y107{bottom:436.414160pt;}
.y48{bottom:436.636480pt;}
.y6b{bottom:438.192720pt;}
.y82{bottom:444.084200pt;}
.y1f{bottom:444.195360pt;}
.y143{bottom:450.086840pt;}
.ye7{bottom:451.865400pt;}
.y130{bottom:454.866720pt;}
.y15e{bottom:454.977880pt;}
.ycd{bottom:456.200640pt;}
.yab{bottom:456.534120pt;}
.y9c{bottom:458.090360pt;}
.y47{bottom:459.646600pt;}
.y106{bottom:460.980520pt;}
.y6a{bottom:461.202840pt;}
.y184{bottom:464.093000pt;}
.y81{bottom:467.094320pt;}
.y142{bottom:473.096960pt;}
.ye6{bottom:476.431760pt;}
.y12f{bottom:477.876840pt;}
.y15d{bottom:477.988000pt;}
.ycc{bottom:479.210760pt;}
.y11c{bottom:479.544240pt;}
.y9b{bottom:481.100480pt;}
.y46{bottom:482.656720pt;}
.y105{bottom:483.990640pt;}
.y69{bottom:484.212960pt;}
.y172{bottom:487.214280pt;}
.y80{bottom:491.660680pt;}
.y1e{bottom:491.771840pt;}
.y141{bottom:496.107080pt;}
.y183{bottom:497.885640pt;}
.ye5{bottom:499.441880pt;}
.y12e{bottom:500.886960pt;}
.y15c{bottom:500.998120pt;}
.ycb{bottom:502.220880pt;}
.y9a{bottom:504.110600pt;}
.y45{bottom:505.666840pt;}
.y104{bottom:507.000760pt;}
.y68{bottom:507.223080pt;}
.y1d{bottom:514.781960pt;}
.y7f{bottom:516.227040pt;}
.y171{bottom:517.894440pt;}
.y140{bottom:520.784600pt;}
.ye4{bottom:522.452000pt;}
.y12d{bottom:523.897080pt;}
.y15b{bottom:524.008240pt;}
.yca{bottom:525.231000pt;}
.yaa{bottom:527.120720pt;}
.y44{bottom:528.676960pt;}
.y103{bottom:530.010880pt;}
.y67{bottom:530.233200pt;}
.y1c{bottom:537.792080pt;}
.y7e{bottom:540.793400pt;}
.y13f{bottom:545.350960pt;}
.ye3{bottom:545.462120pt;}
.y182{bottom:547.018360pt;}
.yc9{bottom:548.241120pt;}
.y12c{bottom:548.463440pt;}
.y15a{bottom:548.574600pt;}
.ya9{bottom:550.130840pt;}
.y43{bottom:551.687080pt;}
.y66{bottom:553.243320pt;}
.y102{bottom:554.577240pt;}
.y2{bottom:555.586667pt;}
.y193{bottom:560.024080pt;}
.y1b{bottom:560.802200pt;}
.y7d{bottom:565.359760pt;}
.ye2{bottom:568.472240pt;}
.y13e{bottom:570.028480pt;}
.yc8{bottom:571.251240pt;}
.y12b{bottom:571.473560pt;}
.y159{bottom:571.584720pt;}
.y11b{bottom:573.140960pt;}
.y42{bottom:574.697200pt;}
.y65{bottom:576.253440pt;}
.y101{bottom:577.587360pt;}
.y181{bottom:577.698520pt;}
.y170{bottom:579.254760pt;}
.y1a{bottom:583.812320pt;}
.y7c{bottom:589.926120pt;}
.ye1{bottom:593.038600pt;}
.yc7{bottom:594.261360pt;}
.y13d{bottom:594.594840pt;}
.y12a{bottom:596.039920pt;}
.y11a{bottom:596.151080pt;}
.y41{bottom:597.707320pt;}
.y192{bottom:598.374280pt;}
.y64{bottom:599.263560pt;}
.y100{bottom:602.153720pt;}
.y19{bottom:606.822440pt;}
.y180{bottom:608.378680pt;}
.y16f{bottom:609.934920pt;}
.y7b{bottom:614.492480pt;}
.ye0{bottom:616.048720pt;}
.y158{bottom:617.604960pt;}
.yc6{bottom:618.827720pt;}
.y129{bottom:619.050040pt;}
.y119{bottom:619.161200pt;}
.y40{bottom:620.717440pt;}
.y63{bottom:622.273680pt;}
.yff{bottom:625.163840pt;}
.y191{bottom:636.724480pt;}
.y7a{bottom:639.058840pt;}
.y157{bottom:640.615080pt;}
.yc5{bottom:641.837840pt;}
.y128{bottom:642.060160pt;}
.y118{bottom:642.171320pt;}
.y3f{bottom:643.727560pt;}
.y62{bottom:645.283800pt;}
.yfe{bottom:649.730200pt;}
.y18{bottom:652.842680pt;}
.y190{bottom:655.955160pt;}
.ydf{bottom:662.068960pt;}
.y79{bottom:663.625200pt;}
.yc4{bottom:664.847960pt;}
.y127{bottom:665.070280pt;}
.y117{bottom:665.181440pt;}
.y3e{bottom:666.737680pt;}
.y61{bottom:668.293920pt;}
.y17f{bottom:669.739000pt;}
.y16e{bottom:671.295240pt;}
.yfd{bottom:672.740320pt;}
.y17{bottom:675.852800pt;}
.yde{bottom:685.079080pt;}
.y156{bottom:686.635320pt;}
.y126{bottom:688.080400pt;}
.y78{bottom:688.191560pt;}
.yc3{bottom:689.414320pt;}
.y3d{bottom:689.747800pt;}
.y60{bottom:691.304040pt;}
.y18f{bottom:694.305360pt;}
.yfc{bottom:695.750440pt;}
.y16{bottom:698.862920pt;}
.y16d{bottom:701.975400pt;}
.ydd{bottom:708.089200pt;}
.y155{bottom:709.645440pt;}
.y125{bottom:711.090520pt;}
.y116{bottom:711.201680pt;}
.yc2{bottom:712.424440pt;}
.y3c{bottom:712.757920pt;}
.y5f{bottom:714.314160pt;}
.yfb{bottom:720.316800pt;}
.y15{bottom:721.873040pt;}
.ydc{bottom:731.099320pt;}
.y16c{bottom:732.655560pt;}
.y124{bottom:734.100640pt;}
.y115{bottom:734.211800pt;}
.yc1{bottom:735.434560pt;}
.y3b{bottom:735.768040pt;}
.y5e{bottom:737.324280pt;}
.yfa{bottom:743.326920pt;}
.y14{bottom:744.883160pt;}
.ydb{bottom:755.665680pt;}
.y114{bottom:757.221920pt;}
.yc0{bottom:758.444680pt;}
.y123{bottom:758.667000pt;}
.y3a{bottom:758.778160pt;}
.y5d{bottom:760.334400pt;}
.y16b{bottom:763.335720pt;}
.yf9{bottom:766.337040pt;}
.y13{bottom:767.893280pt;}
.y18e{bottom:771.005760pt;}
.yda{bottom:780.232040pt;}
.ybf{bottom:781.565960pt;}
.y122{bottom:781.677120pt;}
.y39{bottom:781.788280pt;}
.y5c{bottom:783.344520pt;}
.y12{bottom:790.903400pt;}
.y16a{bottom:794.015880pt;}
.y17e{bottom:795.572120pt;}
.yd9{bottom:803.242160pt;}
.ybe{bottom:804.576080pt;}
.y121{bottom:804.687240pt;}
.y38{bottom:804.798400pt;}
.y5b{bottom:806.354640pt;}
.yf8{bottom:807.799720pt;}
.y18d{bottom:809.355960pt;}
.y11{bottom:813.913520pt;}
.y169{bottom:824.696040pt;}
.y17d{bottom:826.252280pt;}
.ybd{bottom:827.586200pt;}
.y120{bottom:827.697360pt;}
.y37{bottom:827.808520pt;}
.y5a{bottom:829.364760pt;}
.yf7{bottom:832.366080pt;}
.y10{bottom:836.923640pt;}
.ybc{bottom:850.596320pt;}
.y11f{bottom:850.707480pt;}
.y36{bottom:850.818640pt;}
.y59{bottom:852.374880pt;}
.yf6{bottom:855.376200pt;}
.y17c{bottom:858.488680pt;}
.yf{bottom:859.933760pt;}
.ybb{bottom:873.606440pt;}
.y35{bottom:873.828760pt;}
.y58{bottom:875.385000pt;}
.yf5{bottom:879.942560pt;}
.ye{bottom:882.943880pt;}
.y168{bottom:886.056360pt;}
.y17b{bottom:889.168840pt;}
.yba{bottom:896.727720pt;}
.y34{bottom:896.838880pt;}
.y57{bottom:898.395120pt;}
.yf4{bottom:902.952680pt;}
.yd{bottom:905.954000pt;}
.y167{bottom:916.736520pt;}
.yb9{bottom:919.737840pt;}
.y33{bottom:919.849000pt;}
.y56{bottom:921.405240pt;}
.yf3{bottom:925.962800pt;}
.yc{bottom:928.964120pt;}
.y1{bottom:933.546667pt;}
.yb8{bottom:942.747960pt;}
.y55{bottom:944.415360pt;}
.y17a{bottom:950.529160pt;}
.y18c{bottom:952.085400pt;}
.yb{bottom:962.756760pt;}
.yb7{bottom:965.758080pt;}
.y166{bottom:965.869240pt;}
.y32{bottom:967.425480pt;}
.y179{bottom:982.765560pt;}
.yb6{bottom:988.879360pt;}
.y31{bottom:990.435600pt;}
.ya{bottom:996.549400pt;}
.y9{bottom:1013.445720pt;}
.y7{bottom:1048.600000pt;}
.y6{bottom:1069.266667pt;}
.h8{height:27.812500pt;}
.h7{height:32.219031pt;}
.h6{height:38.662838pt;}
.h9{height:54.846667pt;}
.h4{height:55.625000pt;}
.h3{height:83.437500pt;}
.h2{height:278.126266pt;}
.h5{height:1120.492800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:680.299200pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x1{left:-75.586667pt;}
.x2{left:-56.693333pt;}
.x3{left:-37.800000pt;}
.x4{left:-18.893333pt;}
.x0{left:0.000000pt;}
.x6{left:37.795333pt;}
.x10{left:41.586667pt;}
.x5{left:154.960000pt;}
.x14{left:156.735600pt;}
.xb{left:157.736040pt;}
.x12{left:173.520760pt;}
.x11{left:177.744840pt;}
.xe{left:181.413120pt;}
.xc{left:189.194320pt;}
.x9{left:191.306360pt;}
.xa{left:197.753640pt;}
.x8{left:285.458880pt;}
.x13{left:291.016880pt;}
.xf{left:297.130680pt;}
.xd{left:307.468560pt;}
.x15{left:340.260760pt;}
.x7{left:346.596880pt;}
.x16{left:437.859240pt;}
}




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