
    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_08a1f372bcac5ff6b4988c6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_67c3a26affcdf0dfaa720c2c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_06f1be6de429028361ac4c72.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.042000;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_8d4fd6fb629a0b088efc6e30.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.920000;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_4d49786eedbfbcf89371740a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_69dddc4b0c643d44a1af6a0a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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(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;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:23.384371px;}
.ls0{letter-spacing:23.413974px;}
.ls3{letter-spacing:35.117578px;}
.ls2{letter-spacing:35.865600px;}
.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;}
}
.ws19{word-spacing:-32.278875px;}
.ws1b{word-spacing:-28.764211px;}
.ws1{word-spacing:-22.416000px;}
.ws5{word-spacing:-19.510886px;}
.ws1c{word-spacing:-19.439155px;}
.ws72{word-spacing:-17.932800px;}
.ws56{word-spacing:-3.945216px;}
.ws3e{word-spacing:-3.873485px;}
.ws40{word-spacing:-2.367130px;}
.ws68{word-spacing:-2.223667px;}
.ws51{word-spacing:-1.865011px;}
.ws7e{word-spacing:-1.721549px;}
.ws43{word-spacing:-1.578086px;}
.ws47{word-spacing:-1.362893px;}
.ws44{word-spacing:-1.219430px;}
.wsb{word-spacing:-0.430387px;}
.ws61{word-spacing:-0.215194px;}
.ws3f{word-spacing:-0.071731px;}
.ws6{word-spacing:0.000000px;}
.ws14{word-spacing:0.071731px;}
.ws62{word-spacing:0.430387px;}
.ws6f{word-spacing:0.573850px;}
.ws74{word-spacing:0.860774px;}
.ws39{word-spacing:0.932506px;}
.ws3a{word-spacing:1.004237px;}
.ws65{word-spacing:1.147699px;}
.ws1f{word-spacing:1.506355px;}
.ws6a{word-spacing:1.721549px;}
.ws24{word-spacing:2.008474px;}
.ws50{word-spacing:2.080205px;}
.ws22{word-spacing:2.151936px;}
.ws45{word-spacing:2.438861px;}
.ws18{word-spacing:2.510592px;}
.ws2a{word-spacing:2.582323px;}
.ws71{word-spacing:2.869248px;}
.ws87{word-spacing:3.084442px;}
.ws20{word-spacing:3.156173px;}
.ws2b{word-spacing:3.371366px;}
.ws73{word-spacing:3.514829px;}
.ws58{word-spacing:3.586560px;}
.ws2{word-spacing:3.873485px;}
.ws9{word-spacing:3.945216px;}
.ws57{word-spacing:4.160410px;}
.ws3b{word-spacing:4.232141px;}
.ws25{word-spacing:4.447334px;}
.ws0{word-spacing:4.483200px;}
.ws21{word-spacing:4.590797px;}
.ws3{word-spacing:4.648169px;}
.ws5d{word-spacing:4.662528px;}
.ws54{word-spacing:4.734259px;}
.ws52{word-spacing:4.805990px;}
.ws6b{word-spacing:4.949453px;}
.ws81{word-spacing:5.164646px;}
.ws13{word-spacing:5.236378px;}
.ws37{word-spacing:5.308109px;}
.ws38{word-spacing:5.379825px;}
.ws4d{word-spacing:5.451571px;}
.ws3d{word-spacing:5.523302px;}
.ws5b{word-spacing:5.595034px;}
.ws33{word-spacing:5.810227px;}
.ws4a{word-spacing:5.881958px;}
.ws28{word-spacing:6.025421px;}
.ws75{word-spacing:6.097152px;}
.ws55{word-spacing:6.352483px;}
.ws2d{word-spacing:6.384077px;}
.ws4{word-spacing:6.455775px;}
.ws17{word-spacing:6.527539px;}
.ws15{word-spacing:6.599270px;}
.ws3c{word-spacing:6.742733px;}
.ws31{word-spacing:6.814464px;}
.ws46{word-spacing:7.029658px;}
.ws32{word-spacing:7.173120px;}
.ws80{word-spacing:7.244851px;}
.ws23{word-spacing:7.316582px;}
.ws77{word-spacing:7.460045px;}
.ws86{word-spacing:7.531776px;}
.ws7a{word-spacing:7.603507px;}
.ws26{word-spacing:7.675238px;}
.ws7f{word-spacing:7.746970px;}
.ws36{word-spacing:7.890432px;}
.ws49{word-spacing:7.962163px;}
.ws34{word-spacing:8.177357px;}
.ws7d{word-spacing:8.392550px;}
.ws48{word-spacing:8.536013px;}
.ws5f{word-spacing:8.607744px;}
.ws53{word-spacing:8.679475px;}
.ws4c{word-spacing:8.751206px;}
.ws8{word-spacing:9.038131px;}
.ws59{word-spacing:9.396787px;}
.ws41{word-spacing:9.468518px;}
.ws6c{word-spacing:9.540250px;}
.ws5c{word-spacing:9.683712px;}
.ws4e{word-spacing:9.827174px;}
.ws6d{word-spacing:9.898906px;}
.ws35{word-spacing:10.042368px;}
.ws79{word-spacing:10.185830px;}
.ws78{word-spacing:10.329293px;}
.ws63{word-spacing:10.401024px;}
.ws85{word-spacing:10.472755px;}
.ws5e{word-spacing:10.544486px;}
.ws7b{word-spacing:10.616218px;}
.ws27{word-spacing:10.687949px;}
.ws5a{word-spacing:10.759680px;}
.ws69{word-spacing:10.831411px;}
.ws6e{word-spacing:11.046605px;}
.ws82{word-spacing:11.190067px;}
.ws66{word-spacing:11.548723px;}
.ws29{word-spacing:11.692186px;}
.wsc{word-spacing:11.695811px;}
.ws12{word-spacing:12.194304px;}
.ws76{word-spacing:12.266035px;}
.ws7c{word-spacing:12.481229px;}
.ws2c{word-spacing:12.552960px;}
.ws16{word-spacing:12.768154px;}
.ws42{word-spacing:13.055078px;}
.ws30{word-spacing:13.270272px;}
.ws64{word-spacing:13.413734px;}
.ws4f{word-spacing:13.557197px;}
.ws83{word-spacing:13.915853px;}
.ws70{word-spacing:14.489702px;}
.ws67{word-spacing:15.063552px;}
.ws60{word-spacing:15.350477px;}
.ws4b{word-spacing:16.211251px;}
.ws1d{word-spacing:16.354714px;}
.ws2f{word-spacing:18.291456px;}
.ws7{word-spacing:23.312640px;}
.wse{word-spacing:23.743027px;}
.ws84{word-spacing:26.612275px;}
.ws1a{word-spacing:42.572467px;}
.ws11{word-spacing:64.952602px;}
.ws2e{word-spacing:69.937725px;}
.ws1e{word-spacing:83.925075px;}
.wsd{word-spacing:414.316368px;}
.wsf{word-spacing:421.080620px;}
.wsa{word-spacing:475.811526px;}
.ws10{word-spacing:514.610932px;}
._26{margin-left:-41.747558px;}
._24{margin-left:-35.865600px;}
._42{margin-left:-33.068083px;}
._4{margin-left:-9.709486px;}
._39{margin-left:-8.535983px;}
._6{margin-left:-7.173088px;}
._8{margin-left:-5.595034px;}
._1{margin-left:-4.519066px;}
._3a{margin-left:-3.443098px;}
._0{margin-left:-2.223667px;}
._f{margin-left:-1.075968px;}
._2{width:1.936742px;}
._3{width:3.202064px;}
._21{width:4.519066px;}
._3d{width:15.565670px;}
._3b{width:16.856832px;}
._3c{width:17.932800px;}
._3e{width:19.223962px;}
._1e{width:20.802048px;}
._43{width:22.236672px;}
._28{width:23.473492px;}
._1d{width:25.751501px;}
._20{width:27.498889px;}
._46{width:28.666640px;}
._c{width:29.911910px;}
._7{width:31.561728px;}
._44{width:32.565965px;}
._1c{width:34.000589px;}
._25{width:35.937331px;}
._5{width:37.443582px;}
._41{width:38.447923px;}
._1f{width:39.810816px;}
._32{width:41.988592px;}
._35{width:43.612570px;}
._3f{width:45.190656px;}
._37{width:47.127398px;}
._11{width:48.131635px;}
._36{width:50.140109px;}
._48{width:51.431270px;}
._47{width:53.009357px;}
._45{width:56.093798px;}
._33{width:57.743616px;}
._34{width:59.823821px;}
._29{width:62.945182px;}
._2c{width:64.988467px;}
._2b{width:69.435802px;}
._a{width:72.000735px;}
._12{width:76.096587px;}
._9{width:82.467830px;}
._10{width:84.058750px;}
._38{width:96.836850px;}
._27{width:107.309875px;}
._40{width:116.203950px;}
._13{width:119.673258px;}
._2a{width:143.175475px;}
._b{width:155.108504px;}
._17{width:200.488704px;}
._1a{width:209.705076px;}
._e{width:218.203267px;}
._18{width:219.227937px;}
._15{width:253.641523px;}
._14{width:336.710383px;}
._1b{width:388.585300px;}
._d{width:445.655729px;}
._16{width:922.750157px;}
._19{width:944.878145px;}
._2d{width:1433.261107px;}
._2e{width:1780.511846px;}
._23{width:2064.495667px;}
._30{width:2086.445414px;}
._22{width:2118.150605px;}
._31{width:2135.653018px;}
._2f{width:2225.603910px;}
.fc1{color:rgb(0,173,239);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y86{bottom:110.311500px;}
.y85{bottom:131.980500px;}
.y70{bottom:135.874500px;}
.y50{bottom:149.388000px;}
.yc{bottom:151.408500px;}
.y84{bottom:153.649500px;}
.yd6{bottom:155.329500px;}
.y9c{bottom:156.265500px;}
.y6f{bottom:157.542000px;}
.yb{bottom:173.077500px;}
.y83{bottom:175.318500px;}
.yd5{bottom:176.997000px;}
.y9b{bottom:177.934500px;}
.y6e{bottom:179.211000px;}
.y82{bottom:196.987500px;}
.yd4{bottom:198.666000px;}
.y9a{bottom:199.603500px;}
.yb5{bottom:203.649000px;}
.y4e{bottom:207.246000px;}
.y6d{bottom:215.824500px;}
.y81{bottom:218.656500px;}
.y59{bottom:219.298500px;}
.yd3{bottom:220.335000px;}
.y99{bottom:221.272500px;}
.yb4{bottom:225.318000px;}
.y4d{bottom:228.915000px;}
.y6c{bottom:237.493500px;}
.y80{bottom:240.324000px;}
.y58{bottom:240.967500px;}
.yd2{bottom:242.004000px;}
.y98{bottom:242.941500px;}
.yb3{bottom:246.987000px;}
.y4c{bottom:250.584000px;}
.y57{bottom:262.636500px;}
.yd1{bottom:263.673000px;}
.y97{bottom:264.610500px;}
.yb2{bottom:268.656000px;}
.y4b{bottom:272.253000px;}
.y6b{bottom:274.105500px;}
.y7f{bottom:279.751500px;}
.y96{bottom:286.278000px;}
.yb1{bottom:290.323500px;}
.y4a{bottom:293.922000px;}
.y6a{bottom:295.774500px;}
.yd0{bottom:300.285000px;}
.y56{bottom:302.238000px;}
.yb0{bottom:311.992500px;}
.y49{bottom:315.589500px;}
.ycf{bottom:321.954000px;}
.y55{bottom:323.905500px;}
.y95{bottom:325.705500px;}
.y69{bottom:332.386500px;}
.yaf{bottom:333.661500px;}
.y48{bottom:337.258500px;}
.yce{bottom:343.623000px;}
.y54{bottom:345.574500px;}
.y68{bottom:354.055500px;}
.yae{bottom:355.330500px;}
.ycd{bottom:365.292000px;}
.y47{bottom:370.509000px;}
.yad{bottom:376.999500px;}
.y53{bottom:378.825000px;}
.y67{bottom:390.669000px;}
.y7e{bottom:391.491000px;}
.yac{bottom:398.667000px;}
.ycc{bottom:401.904000px;}
.y94{bottom:403.539000px;}
.y66{bottom:412.336500px;}
.y7d{bottom:413.160000px;}
.yab{bottom:420.336000px;}
.ycb{bottom:423.573000px;}
.y93{bottom:425.208000px;}
.y52{bottom:430.132500px;}
.y46{bottom:440.434500px;}
.yaa{bottom:442.005000px;}
.yca{bottom:445.242000px;}
.y92{bottom:446.877000px;}
.y65{bottom:448.950000px;}
.y7c{bottom:449.367000px;}
.y45{bottom:462.103500px;}
.ya9{bottom:463.674000px;}
.yc9{bottom:466.911000px;}
.y91{bottom:468.544500px;}
.y64{bottom:470.619000px;}
.y44{bottom:483.772500px;}
.ya8{bottom:485.343000px;}
.y7b{bottom:485.575500px;}
.ya{bottom:488.589000px;}
.y90{bottom:490.213500px;}
.yc8{bottom:503.523000px;}
.y43{bottom:505.441500px;}
.ya7{bottom:507.012000px;}
.y63{bottom:507.231000px;}
.y7a{bottom:507.243000px;}
.y8f{bottom:511.882500px;}
.yc7{bottom:525.192000px;}
.y42{bottom:527.109000px;}
.ya6{bottom:528.679500px;}
.y62{bottom:528.900000px;}
.y8e{bottom:533.551500px;}
.y9{bottom:534.915000px;}
.y79{bottom:543.451500px;}
.yc6{bottom:546.861000px;}
.y41{bottom:548.778000px;}
.ya5{bottom:550.348500px;}
.y8d{bottom:555.220500px;}
.y78{bottom:565.119000px;}
.y8{bottom:567.792000px;}
.yc5{bottom:568.530000px;}
.y61{bottom:569.995500px;}
.ya4{bottom:572.017500px;}
.y40{bottom:582.028500px;}
.yc4{bottom:590.197500px;}
.y60{bottom:591.664500px;}
.ya3{bottom:593.686500px;}
.y8c{bottom:594.648000px;}
.y7{bottom:600.669000px;}
.y77{bottom:601.327500px;}
.y5f{bottom:613.333500px;}
.ya2{bottom:615.355500px;}
.y76{bottom:622.995000px;}
.y3f{bottom:626.686500px;}
.yc3{bottom:626.811000px;}
.y6{bottom:633.544500px;}
.ya1{bottom:637.024500px;}
.y4f{bottom:640.633500px;}
.y5e{bottom:646.584000px;}
.yc2{bottom:648.480000px;}
.y8b{bottom:654.547500px;}
.ya0{bottom:658.692000px;}
.y75{bottom:662.469000px;}
.y1e{bottom:663.568500px;}
.yc1{bottom:670.147500px;}
.y8a{bottom:676.216500px;}
.y9f{bottom:680.361000px;}
.y74{bottom:684.138000px;}
.y1d{bottom:685.237500px;}
.y3e{bottom:686.586000px;}
.y89{bottom:697.885500px;}
.y5d{bottom:698.575500px;}
.y73{bottom:705.807000px;}
.yc0{bottom:706.761000px;}
.y1c{bottom:707.505000px;}
.y3d{bottom:708.255000px;}
.y33{bottom:711.244500px;}
.y9e{bottom:719.788500px;}
.y5c{bottom:720.244500px;}
.y5{bottom:723.208500px;}
.y72{bottom:727.476000px;}
.ybf{bottom:728.430000px;}
.y1b{bottom:729.771000px;}
.y3c{bottom:729.924000px;}
.y88{bottom:749.193000px;}
.ybe{bottom:750.099000px;}
.y4{bottom:750.108000px;}
.y32{bottom:750.472500px;}
.y3b{bottom:751.593000px;}
.y1a{bottom:752.037000px;}
.y5b{bottom:753.495000px;}
.y87{bottom:770.862000px;}
.y9d{bottom:771.096000px;}
.ybd{bottom:771.766500px;}
.y3a{bottom:773.262000px;}
.y19{bottom:774.303000px;}
.y71{bottom:777.972000px;}
.y31{bottom:789.700500px;}
.y39{bottom:794.929500px;}
.y51{bottom:795.201000px;}
.y18{bottom:796.570500px;}
.y5a{bottom:804.802500px;}
.ybc{bottom:808.380000px;}
.y38{bottom:816.598500px;}
.y17{bottom:818.239500px;}
.y30{bottom:828.928500px;}
.ybb{bottom:830.049000px;}
.y37{bottom:838.267500px;}
.y16{bottom:840.505500px;}
.yba{bottom:851.718000px;}
.y36{bottom:859.936500px;}
.y15{bottom:862.174500px;}
.y2f{bottom:868.156500px;}
.y35{bottom:881.605500px;}
.y14{bottom:884.440500px;}
.yb9{bottom:888.330000px;}
.y34{bottom:903.274500px;}
.y13{bottom:906.109500px;}
.y2e{bottom:907.383000px;}
.y21{bottom:907.902000px;}
.yb8{bottom:909.999000px;}
.y28{bottom:924.942000px;}
.y12{bottom:928.375500px;}
.y2d{bottom:929.052000px;}
.y20{bottom:929.571000px;}
.yb7{bottom:931.668000px;}
.y27{bottom:946.611000px;}
.y11{bottom:950.643000px;}
.y2c{bottom:950.721000px;}
.y1f{bottom:951.240000px;}
.yb6{bottom:953.335500px;}
.y26{bottom:968.280000px;}
.y2b{bottom:972.390000px;}
.y10{bottom:972.909000px;}
.y25{bottom:989.949000px;}
.y2a{bottom:994.059000px;}
.yf{bottom:994.578000px;}
.y24{bottom:1011.618000px;}
.y29{bottom:1015.728000px;}
.ye{bottom:1016.844000px;}
.y23{bottom:1033.287000px;}
.y3{bottom:1051.044000px;}
.y22{bottom:1054.954500px;}
.y2{bottom:1072.713000px;}
.y1{bottom:1094.382000px;}
.yd{bottom:1142.382000px;}
.h6{height:49.781453px;}
.h2{height:53.798400px;}
.h5{height:55.376486px;}
.h3{height:64.557900px;}
.h4{height:77.469300px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:108.000000px;}
.x8{left:113.836500px;}
.xa{left:120.925500px;}
.x17{left:131.529000px;}
.x11{left:134.338500px;}
.xe{left:135.690000px;}
.x7{left:143.643000px;}
.x16{left:151.897500px;}
.x10{left:157.521000px;}
.x12{left:177.828000px;}
.x15{left:214.300500px;}
.x3{left:218.566500px;}
.xc{left:221.271000px;}
.x4{left:227.973000px;}
.x1{left:232.443000px;}
.x2{left:251.863500px;}
.xb{left:259.918500px;}
.x18{left:269.773500px;}
.x13{left:281.925000px;}
.x14{left:288.874500px;}
.xf{left:332.026500px;}
.x5{left:399.048000px;}
.x9{left:411.639000px;}
.x6{left:416.763000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:20.786108pt;}
.ls0{letter-spacing:20.812421pt;}
.ls3{letter-spacing:31.215625pt;}
.ls2{letter-spacing:31.880533pt;}
.ws19{word-spacing:-28.692333pt;}
.ws1b{word-spacing:-25.568188pt;}
.ws1{word-spacing:-19.925333pt;}
.ws5{word-spacing:-17.343010pt;}
.ws1c{word-spacing:-17.279249pt;}
.ws72{word-spacing:-15.940267pt;}
.ws56{word-spacing:-3.506859pt;}
.ws3e{word-spacing:-3.443098pt;}
.ws40{word-spacing:-2.104115pt;}
.ws68{word-spacing:-1.976593pt;}
.ws51{word-spacing:-1.657788pt;}
.ws7e{word-spacing:-1.530266pt;}
.ws43{word-spacing:-1.402743pt;}
.ws47{word-spacing:-1.211460pt;}
.ws44{word-spacing:-1.083938pt;}
.wsb{word-spacing:-0.382566pt;}
.ws61{word-spacing:-0.191283pt;}
.ws3f{word-spacing:-0.063761pt;}
.ws6{word-spacing:0.000000pt;}
.ws14{word-spacing:0.063761pt;}
.ws62{word-spacing:0.382566pt;}
.ws6f{word-spacing:0.510089pt;}
.ws74{word-spacing:0.765133pt;}
.ws39{word-spacing:0.828894pt;}
.ws3a{word-spacing:0.892655pt;}
.ws65{word-spacing:1.020177pt;}
.ws1f{word-spacing:1.338982pt;}
.ws6a{word-spacing:1.530266pt;}
.ws24{word-spacing:1.785310pt;}
.ws50{word-spacing:1.849071pt;}
.ws22{word-spacing:1.912832pt;}
.ws45{word-spacing:2.167876pt;}
.ws18{word-spacing:2.231637pt;}
.ws2a{word-spacing:2.295398pt;}
.ws71{word-spacing:2.550443pt;}
.ws87{word-spacing:2.741726pt;}
.ws20{word-spacing:2.805487pt;}
.ws2b{word-spacing:2.996770pt;}
.ws73{word-spacing:3.124292pt;}
.ws58{word-spacing:3.188053pt;}
.ws2{word-spacing:3.443098pt;}
.ws9{word-spacing:3.506859pt;}
.ws57{word-spacing:3.698142pt;}
.ws3b{word-spacing:3.761903pt;}
.ws25{word-spacing:3.953186pt;}
.ws0{word-spacing:3.985067pt;}
.ws21{word-spacing:4.080708pt;}
.ws3{word-spacing:4.131706pt;}
.ws5d{word-spacing:4.144469pt;}
.ws54{word-spacing:4.208230pt;}
.ws52{word-spacing:4.271991pt;}
.ws6b{word-spacing:4.399514pt;}
.ws81{word-spacing:4.590797pt;}
.ws13{word-spacing:4.654558pt;}
.ws37{word-spacing:4.718319pt;}
.ws38{word-spacing:4.782067pt;}
.ws4d{word-spacing:4.845841pt;}
.ws3d{word-spacing:4.909602pt;}
.ws5b{word-spacing:4.973363pt;}
.ws33{word-spacing:5.164646pt;}
.ws4a{word-spacing:5.228407pt;}
.ws28{word-spacing:5.355930pt;}
.ws75{word-spacing:5.419691pt;}
.ws55{word-spacing:5.646651pt;}
.ws2d{word-spacing:5.674735pt;}
.ws4{word-spacing:5.738467pt;}
.ws17{word-spacing:5.802257pt;}
.ws15{word-spacing:5.866018pt;}
.ws3c{word-spacing:5.993540pt;}
.ws31{word-spacing:6.057301pt;}
.ws46{word-spacing:6.248585pt;}
.ws32{word-spacing:6.376107pt;}
.ws80{word-spacing:6.439868pt;}
.ws23{word-spacing:6.503629pt;}
.ws77{word-spacing:6.631151pt;}
.ws86{word-spacing:6.694912pt;}
.ws7a{word-spacing:6.758673pt;}
.ws26{word-spacing:6.822434pt;}
.ws7f{word-spacing:6.886195pt;}
.ws36{word-spacing:7.013717pt;}
.ws49{word-spacing:7.077478pt;}
.ws34{word-spacing:7.268762pt;}
.ws7d{word-spacing:7.460045pt;}
.ws48{word-spacing:7.587567pt;}
.ws5f{word-spacing:7.651328pt;}
.ws53{word-spacing:7.715089pt;}
.ws4c{word-spacing:7.778850pt;}
.ws8{word-spacing:8.033894pt;}
.ws59{word-spacing:8.352700pt;}
.ws41{word-spacing:8.416461pt;}
.ws6c{word-spacing:8.480222pt;}
.ws5c{word-spacing:8.607744pt;}
.ws4e{word-spacing:8.735266pt;}
.ws6d{word-spacing:8.799027pt;}
.ws35{word-spacing:8.926549pt;}
.ws79{word-spacing:9.054071pt;}
.ws78{word-spacing:9.181594pt;}
.ws63{word-spacing:9.245355pt;}
.ws85{word-spacing:9.309116pt;}
.ws5e{word-spacing:9.372877pt;}
.ws7b{word-spacing:9.436638pt;}
.ws27{word-spacing:9.500399pt;}
.ws5a{word-spacing:9.564160pt;}
.ws69{word-spacing:9.627921pt;}
.ws6e{word-spacing:9.819204pt;}
.ws82{word-spacing:9.946726pt;}
.ws66{word-spacing:10.265532pt;}
.ws29{word-spacing:10.393054pt;}
.wsc{word-spacing:10.396276pt;}
.ws12{word-spacing:10.839381pt;}
.ws76{word-spacing:10.903142pt;}
.ws7c{word-spacing:11.094426pt;}
.ws2c{word-spacing:11.158187pt;}
.ws16{word-spacing:11.349470pt;}
.ws42{word-spacing:11.604514pt;}
.ws30{word-spacing:11.795797pt;}
.ws64{word-spacing:11.923319pt;}
.ws4f{word-spacing:12.050842pt;}
.ws83{word-spacing:12.369647pt;}
.ws70{word-spacing:12.879735pt;}
.ws67{word-spacing:13.389824pt;}
.ws60{word-spacing:13.644868pt;}
.ws4b{word-spacing:14.410001pt;}
.ws1d{word-spacing:14.537523pt;}
.ws2f{word-spacing:16.259072pt;}
.ws7{word-spacing:20.722347pt;}
.wse{word-spacing:21.104913pt;}
.ws84{word-spacing:23.655356pt;}
.ws1a{word-spacing:37.842193pt;}
.ws11{word-spacing:57.735646pt;}
.ws2e{word-spacing:62.166867pt;}
.ws1e{word-spacing:74.600067pt;}
.wsd{word-spacing:368.281216pt;}
.wsf{word-spacing:374.293885pt;}
.wsa{word-spacing:422.943578pt;}
.ws10{word-spacing:457.431939pt;}
._26{margin-left:-37.108941pt;}
._24{margin-left:-31.880533pt;}
._42{margin-left:-29.393852pt;}
._4{margin-left:-8.630654pt;}
._39{margin-left:-7.587540pt;}
._6{margin-left:-6.376078pt;}
._8{margin-left:-4.973363pt;}
._1{margin-left:-4.016947pt;}
._3a{margin-left:-3.060531pt;}
._0{margin-left:-1.976593pt;}
._f{margin-left:-0.956416pt;}
._2{width:1.721549pt;}
._3{width:2.846279pt;}
._21{width:4.016947pt;}
._3d{width:13.836151pt;}
._3b{width:14.983851pt;}
._3c{width:15.940267pt;}
._3e{width:17.087966pt;}
._1e{width:18.490709pt;}
._43{width:19.765931pt;}
._28{width:20.865326pt;}
._1d{width:22.890223pt;}
._20{width:24.443457pt;}
._46{width:25.481458pt;}
._c{width:26.588365pt;}
._7{width:28.054869pt;}
._44{width:28.947524pt;}
._1c{width:30.222746pt;}
._25{width:31.944294pt;}
._5{width:33.283184pt;}
._41{width:34.175932pt;}
._1f{width:35.387392pt;}
._32{width:37.323193pt;}
._35{width:38.766729pt;}
._3f{width:40.169472pt;}
._37{width:41.891021pt;}
._11{width:42.783676pt;}
._36{width:44.568986pt;}
._48{width:45.716685pt;}
._47{width:47.119428pt;}
._45{width:49.861154pt;}
._33{width:51.327659pt;}
._34{width:53.176730pt;}
._29{width:55.951273pt;}
._2c{width:57.767526pt;}
._2b{width:61.720713pt;}
._a{width:64.000654pt;}
._12{width:67.641411pt;}
._9{width:73.304738pt;}
._10{width:74.718889pt;}
._38{width:86.077200pt;}
._27{width:95.386556pt;}
._40{width:103.292400pt;}
._13{width:106.376230pt;}
._2a{width:127.267089pt;}
._b{width:137.874225pt;}
._17{width:178.212181pt;}
._1a{width:186.404512pt;}
._e{width:193.958460pt;}
._18{width:194.869277pt;}
._15{width:225.459132pt;}
._14{width:299.298118pt;}
._1b{width:345.409155pt;}
._d{width:396.138426pt;}
._16{width:820.222362pt;}
._19{width:839.891685pt;}
._2d{width:1274.009873pt;}
._2e{width:1582.677197pt;}
._23{width:1835.107260pt;}
._30{width:1854.618146pt;}
._22{width:1882.800538pt;}
._31{width:1898.358238pt;}
._2f{width:1978.314587pt;}
.fs0{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:98.054667pt;}
.y85{bottom:117.316000pt;}
.y70{bottom:120.777333pt;}
.y50{bottom:132.789333pt;}
.yc{bottom:134.585333pt;}
.y84{bottom:136.577333pt;}
.yd6{bottom:138.070667pt;}
.y9c{bottom:138.902667pt;}
.y6f{bottom:140.037333pt;}
.yb{bottom:153.846667pt;}
.y83{bottom:155.838667pt;}
.yd5{bottom:157.330667pt;}
.y9b{bottom:158.164000pt;}
.y6e{bottom:159.298667pt;}
.y82{bottom:175.100000pt;}
.yd4{bottom:176.592000pt;}
.y9a{bottom:177.425333pt;}
.yb5{bottom:181.021333pt;}
.y4e{bottom:184.218667pt;}
.y6d{bottom:191.844000pt;}
.y81{bottom:194.361333pt;}
.y59{bottom:194.932000pt;}
.yd3{bottom:195.853333pt;}
.y99{bottom:196.686667pt;}
.yb4{bottom:200.282667pt;}
.y4d{bottom:203.480000pt;}
.y6c{bottom:211.105333pt;}
.y80{bottom:213.621333pt;}
.y58{bottom:214.193333pt;}
.yd2{bottom:215.114667pt;}
.y98{bottom:215.948000pt;}
.yb3{bottom:219.544000pt;}
.y4c{bottom:222.741333pt;}
.y57{bottom:233.454667pt;}
.yd1{bottom:234.376000pt;}
.y97{bottom:235.209333pt;}
.yb2{bottom:238.805333pt;}
.y4b{bottom:242.002667pt;}
.y6b{bottom:243.649333pt;}
.y7f{bottom:248.668000pt;}
.y96{bottom:254.469333pt;}
.yb1{bottom:258.065333pt;}
.y4a{bottom:261.264000pt;}
.y6a{bottom:262.910667pt;}
.yd0{bottom:266.920000pt;}
.y56{bottom:268.656000pt;}
.yb0{bottom:277.326667pt;}
.y49{bottom:280.524000pt;}
.ycf{bottom:286.181333pt;}
.y55{bottom:287.916000pt;}
.y95{bottom:289.516000pt;}
.y69{bottom:295.454667pt;}
.yaf{bottom:296.588000pt;}
.y48{bottom:299.785333pt;}
.yce{bottom:305.442667pt;}
.y54{bottom:307.177333pt;}
.y68{bottom:314.716000pt;}
.yae{bottom:315.849333pt;}
.ycd{bottom:324.704000pt;}
.y47{bottom:329.341333pt;}
.yad{bottom:335.110667pt;}
.y53{bottom:336.733333pt;}
.y67{bottom:347.261333pt;}
.y7e{bottom:347.992000pt;}
.yac{bottom:354.370667pt;}
.ycc{bottom:357.248000pt;}
.y94{bottom:358.701333pt;}
.y66{bottom:366.521333pt;}
.y7d{bottom:367.253333pt;}
.yab{bottom:373.632000pt;}
.ycb{bottom:376.509333pt;}
.y93{bottom:377.962667pt;}
.y52{bottom:382.340000pt;}
.y46{bottom:391.497333pt;}
.yaa{bottom:392.893333pt;}
.yca{bottom:395.770667pt;}
.y92{bottom:397.224000pt;}
.y65{bottom:399.066667pt;}
.y7c{bottom:399.437333pt;}
.y45{bottom:410.758667pt;}
.ya9{bottom:412.154667pt;}
.yc9{bottom:415.032000pt;}
.y91{bottom:416.484000pt;}
.y64{bottom:418.328000pt;}
.y44{bottom:430.020000pt;}
.ya8{bottom:431.416000pt;}
.y7b{bottom:431.622667pt;}
.ya{bottom:434.301333pt;}
.y90{bottom:435.745333pt;}
.yc8{bottom:447.576000pt;}
.y43{bottom:449.281333pt;}
.ya7{bottom:450.677333pt;}
.y63{bottom:450.872000pt;}
.y7a{bottom:450.882667pt;}
.y8f{bottom:455.006667pt;}
.yc7{bottom:466.837333pt;}
.y42{bottom:468.541333pt;}
.ya6{bottom:469.937333pt;}
.y62{bottom:470.133333pt;}
.y8e{bottom:474.268000pt;}
.y9{bottom:475.480000pt;}
.y79{bottom:483.068000pt;}
.yc6{bottom:486.098667pt;}
.y41{bottom:487.802667pt;}
.ya5{bottom:489.198667pt;}
.y8d{bottom:493.529333pt;}
.y78{bottom:502.328000pt;}
.y8{bottom:504.704000pt;}
.yc5{bottom:505.360000pt;}
.y61{bottom:506.662667pt;}
.ya4{bottom:508.460000pt;}
.y40{bottom:517.358667pt;}
.yc4{bottom:524.620000pt;}
.y60{bottom:525.924000pt;}
.ya3{bottom:527.721333pt;}
.y8c{bottom:528.576000pt;}
.y7{bottom:533.928000pt;}
.y77{bottom:534.513333pt;}
.y5f{bottom:545.185333pt;}
.ya2{bottom:546.982667pt;}
.y76{bottom:553.773333pt;}
.y3f{bottom:557.054667pt;}
.yc3{bottom:557.165333pt;}
.y6{bottom:563.150667pt;}
.ya1{bottom:566.244000pt;}
.y4f{bottom:569.452000pt;}
.y5e{bottom:574.741333pt;}
.yc2{bottom:576.426667pt;}
.y8b{bottom:581.820000pt;}
.ya0{bottom:585.504000pt;}
.y75{bottom:588.861333pt;}
.y1e{bottom:589.838667pt;}
.yc1{bottom:595.686667pt;}
.y8a{bottom:601.081333pt;}
.y9f{bottom:604.765333pt;}
.y74{bottom:608.122667pt;}
.y1d{bottom:609.100000pt;}
.y3e{bottom:610.298667pt;}
.y89{bottom:620.342667pt;}
.y5d{bottom:620.956000pt;}
.y73{bottom:627.384000pt;}
.yc0{bottom:628.232000pt;}
.y1c{bottom:628.893333pt;}
.y3d{bottom:629.560000pt;}
.y33{bottom:632.217333pt;}
.y9e{bottom:639.812000pt;}
.y5c{bottom:640.217333pt;}
.y5{bottom:642.852000pt;}
.y72{bottom:646.645333pt;}
.ybf{bottom:647.493333pt;}
.y1b{bottom:648.685333pt;}
.y3c{bottom:648.821333pt;}
.y88{bottom:665.949333pt;}
.ybe{bottom:666.754667pt;}
.y4{bottom:666.762667pt;}
.y32{bottom:667.086667pt;}
.y3b{bottom:668.082667pt;}
.y1a{bottom:668.477333pt;}
.y5b{bottom:669.773333pt;}
.y87{bottom:685.210667pt;}
.y9d{bottom:685.418667pt;}
.ybd{bottom:686.014667pt;}
.y3a{bottom:687.344000pt;}
.y19{bottom:688.269333pt;}
.y71{bottom:691.530667pt;}
.y31{bottom:701.956000pt;}
.y39{bottom:706.604000pt;}
.y51{bottom:706.845333pt;}
.y18{bottom:708.062667pt;}
.y5a{bottom:715.380000pt;}
.ybc{bottom:718.560000pt;}
.y38{bottom:725.865333pt;}
.y17{bottom:727.324000pt;}
.y30{bottom:736.825333pt;}
.ybb{bottom:737.821333pt;}
.y37{bottom:745.126667pt;}
.y16{bottom:747.116000pt;}
.yba{bottom:757.082667pt;}
.y36{bottom:764.388000pt;}
.y15{bottom:766.377333pt;}
.y2f{bottom:771.694667pt;}
.y35{bottom:783.649333pt;}
.y14{bottom:786.169333pt;}
.yb9{bottom:789.626667pt;}
.y34{bottom:802.910667pt;}
.y13{bottom:805.430667pt;}
.y2e{bottom:806.562667pt;}
.y21{bottom:807.024000pt;}
.yb8{bottom:808.888000pt;}
.y28{bottom:822.170667pt;}
.y12{bottom:825.222667pt;}
.y2d{bottom:825.824000pt;}
.y20{bottom:826.285333pt;}
.yb7{bottom:828.149333pt;}
.y27{bottom:841.432000pt;}
.y11{bottom:845.016000pt;}
.y2c{bottom:845.085333pt;}
.y1f{bottom:845.546667pt;}
.yb6{bottom:847.409333pt;}
.y26{bottom:860.693333pt;}
.y2b{bottom:864.346667pt;}
.y10{bottom:864.808000pt;}
.y25{bottom:879.954667pt;}
.y2a{bottom:883.608000pt;}
.yf{bottom:884.069333pt;}
.y24{bottom:899.216000pt;}
.y29{bottom:902.869333pt;}
.ye{bottom:903.861333pt;}
.y23{bottom:918.477333pt;}
.y3{bottom:934.261333pt;}
.y22{bottom:937.737333pt;}
.y2{bottom:953.522667pt;}
.y1{bottom:972.784000pt;}
.yd{bottom:1015.450667pt;}
.h6{height:44.250180pt;}
.h2{height:47.820800pt;}
.h5{height:49.223543pt;}
.h3{height:57.384800pt;}
.h4{height:68.861600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:96.000000pt;}
.x8{left:101.188000pt;}
.xa{left:107.489333pt;}
.x17{left:116.914667pt;}
.x11{left:119.412000pt;}
.xe{left:120.613333pt;}
.x7{left:127.682667pt;}
.x16{left:135.020000pt;}
.x10{left:140.018667pt;}
.x12{left:158.069333pt;}
.x15{left:190.489333pt;}
.x3{left:194.281333pt;}
.xc{left:196.685333pt;}
.x4{left:202.642667pt;}
.x1{left:206.616000pt;}
.x2{left:223.878667pt;}
.xb{left:231.038667pt;}
.x18{left:239.798667pt;}
.x13{left:250.600000pt;}
.x14{left:256.777333pt;}
.xf{left:295.134667pt;}
.x5{left:354.709333pt;}
.x9{left:365.901333pt;}
.x6{left:370.456000pt;}
}




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