
    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_b7dcda473e96f03c0c8e4fbb.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_8a60e7190b90a9b4964f0e6f.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_3df7d247078ae2d04fe02810.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_93662f92cc2ac0ba135c91c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_bd20d8d3c9b8a41fc905f563.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_968fe70ca2bea2b2ea2f952e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.686000;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_726672a9db34e4af5bd6df3d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0710c5c88937b6f5bcd5e8a7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918000;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_379b1aaeafeb4e0cb526cecb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.501000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_74b69921dc29a5c3b331d020.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.482000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8c780c3ce6b8a74bd32bb107.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.726000;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;}
.v1{vertical-align:26.034000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.035593px;}
.ls7{letter-spacing:21.434400px;}
.lsc{letter-spacing:23.408400px;}
.ls0{letter-spacing:23.413974px;}
.ls4{letter-spacing:23.840915px;}
.ls8{letter-spacing:23.990400px;}
.lsd{letter-spacing:25.100400px;}
.lsa{letter-spacing:27.448404px;}
.ls6{letter-spacing:27.694404px;}
.lsb{letter-spacing:29.512404px;}
.ls9{letter-spacing:32.995473px;}
.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;}
}
.ws33{word-spacing:-32.278875px;}
.ws1{word-spacing:-22.416000px;}
.ws5{word-spacing:-19.510886px;}
.ws34{word-spacing:-19.439155px;}
.ws3b{word-spacing:-3.945216px;}
.ws28{word-spacing:-3.730022px;}
.ws9{word-spacing:-3.514829px;}
.ws75{word-spacing:-3.371366px;}
.ws23{word-spacing:-3.084442px;}
.ws5e{word-spacing:-2.869248px;}
.ws26{word-spacing:-2.367130px;}
.ws53{word-spacing:-2.223667px;}
.ws3a{word-spacing:-2.151936px;}
.ws74{word-spacing:-1.936742px;}
.ws87{word-spacing:-1.793280px;}
.ws7e{word-spacing:-1.578086px;}
.ws52{word-spacing:-1.506355px;}
.ws73{word-spacing:-1.362893px;}
.ws8{word-spacing:-1.291162px;}
.ws7d{word-spacing:-1.004237px;}
.ws57{word-spacing:-0.789043px;}
.ws65{word-spacing:-0.717312px;}
.ws1c{word-spacing:-0.573850px;}
.ws59{word-spacing:-0.430387px;}
.ws1e{word-spacing:-0.286925px;}
.ws3e{word-spacing:-0.215194px;}
.ws50{word-spacing:-0.071731px;}
.ws6{word-spacing:0.000000px;}
.ws2b{word-spacing:0.071731px;}
.ws3f{word-spacing:0.215194px;}
.ws56{word-spacing:0.430387px;}
.ws4f{word-spacing:0.502118px;}
.ws62{word-spacing:0.717312px;}
.ws21{word-spacing:0.730072px;}
.ws15{word-spacing:1.004237px;}
.ws5c{word-spacing:1.075968px;}
.ws2c{word-spacing:1.147699px;}
.wsa{word-spacing:1.219430px;}
.ws47{word-spacing:1.362893px;}
.ws4e{word-spacing:1.649818px;}
.ws2f{word-spacing:1.721549px;}
.ws77{word-spacing:1.865011px;}
.ws8b{word-spacing:1.936742px;}
.ws79{word-spacing:2.151936px;}
.ws70{word-spacing:2.295398px;}
.ws5b{word-spacing:2.438861px;}
.ws84{word-spacing:2.582323px;}
.ws69{word-spacing:2.654054px;}
.ws5d{word-spacing:2.940979px;}
.ws61{word-spacing:3.012710px;}
.ws8f{word-spacing:3.084442px;}
.ws1d{word-spacing:3.156173px;}
.ws5a{word-spacing:3.514829px;}
.ws20{word-spacing:3.586560px;}
.ws1a{word-spacing:3.730022px;}
.ws5f{word-spacing:3.801754px;}
.ws2{word-spacing:3.873485px;}
.wsc{word-spacing:3.945216px;}
.ws66{word-spacing:4.016947px;}
.ws46{word-spacing:4.088678px;}
.ws1b{word-spacing:4.303872px;}
.ws31{word-spacing:4.375603px;}
.ws8d{word-spacing:4.447334px;}
.ws0{word-spacing:4.483200px;}
.ws45{word-spacing:4.519066px;}
.ws3{word-spacing:4.648169px;}
.ws89{word-spacing:4.662528px;}
.ws2d{word-spacing:4.734259px;}
.ws76{word-spacing:5.308109px;}
.ws39{word-spacing:5.379825px;}
.ws3d{word-spacing:5.379840px;}
.ws7b{word-spacing:5.523302px;}
.ws86{word-spacing:5.595034px;}
.ws7f{word-spacing:5.666765px;}
.ws54{word-spacing:5.738496px;}
.ws6d{word-spacing:5.881958px;}
.ws4a{word-spacing:5.953690px;}
.ws40{word-spacing:6.025421px;}
.ws44{word-spacing:6.097152px;}
.ws78{word-spacing:6.168883px;}
.ws80{word-spacing:6.240614px;}
.ws7c{word-spacing:6.312346px;}
.ws92{word-spacing:6.384077px;}
.ws4{word-spacing:6.455775px;}
.ws6c{word-spacing:6.455808px;}
.ws42{word-spacing:6.511340px;}
.ws7a{word-spacing:6.599270px;}
.ws27{word-spacing:6.814464px;}
.ws14{word-spacing:6.886195px;}
.ws83{word-spacing:6.957926px;}
.ws67{word-spacing:7.101389px;}
.ws6b{word-spacing:7.173120px;}
.ws24{word-spacing:7.244851px;}
.ws81{word-spacing:7.316582px;}
.ws49{word-spacing:7.388314px;}
.ws29{word-spacing:7.531776px;}
.ws4c{word-spacing:7.603507px;}
.ws25{word-spacing:7.746970px;}
.ws72{word-spacing:7.818701px;}
.ws19{word-spacing:7.890432px;}
.ws55{word-spacing:8.177357px;}
.ws64{word-spacing:8.249088px;}
.ws68{word-spacing:8.464282px;}
.ws30{word-spacing:8.536013px;}
.ws88{word-spacing:8.607744px;}
.ws4b{word-spacing:8.822938px;}
.ws13{word-spacing:8.966400px;}
.ws58{word-spacing:9.253325px;}
.ws85{word-spacing:9.325056px;}
.ws43{word-spacing:9.396787px;}
.ws22{word-spacing:9.540250px;}
.ws1f{word-spacing:9.683712px;}
.ws6f{word-spacing:9.898906px;}
.ws36{word-spacing:9.970637px;}
.ws90{word-spacing:10.042368px;}
.ws2a{word-spacing:10.185830px;}
.ws2e{word-spacing:10.257562px;}
.ws71{word-spacing:10.329293px;}
.ws12{word-spacing:10.401024px;}
.ws3c{word-spacing:10.472755px;}
.ws60{word-spacing:10.616218px;}
.ws16{word-spacing:10.759680px;}
.ws6e{word-spacing:10.903142px;}
.ws32{word-spacing:11.190067px;}
.ws41{word-spacing:11.261798px;}
.ws51{word-spacing:11.333530px;}
.ws82{word-spacing:11.476992px;}
.wsd{word-spacing:11.695811px;}
.ws18{word-spacing:11.749340px;}
.ws48{word-spacing:11.835648px;}
.ws63{word-spacing:12.122573px;}
.ws98{word-spacing:12.337766px;}
.ws6a{word-spacing:12.524233px;}
.ws8e{word-spacing:13.485466px;}
.ws17{word-spacing:14.633165px;}
.ws8a{word-spacing:15.565670px;}
.ws8c{word-spacing:15.637402px;}
.ws35{word-spacing:16.354714px;}
.ws94{word-spacing:18.793574px;}
.ws93{word-spacing:21.734554px;}
.ws95{word-spacing:22.093210px;}
.ws7{word-spacing:23.312640px;}
.ws96{word-spacing:25.392845px;}
.ws97{word-spacing:31.274803px;}
.ws38{word-spacing:42.572467px;}
.ws11{word-spacing:49.315200px;}
.ws37{word-spacing:52.005120px;}
.ws91{word-spacing:83.925075px;}
.wse{word-spacing:414.316368px;}
.wsf{word-spacing:421.080620px;}
.wsb{word-spacing:475.811526px;}
.ws10{word-spacing:514.610932px;}
.ws4d{word-spacing:1403.696658px;}
._32{margin-left:-39.810816px;}
._2c{margin-left:-37.802342px;}
._2b{margin-left:-35.865600px;}
._d{margin-left:-34.861363px;}
._34{margin-left:-33.857126px;}
._2d{margin-left:-12.481229px;}
._4{margin-left:-9.709486px;}
._42{margin-left:-7.818701px;}
._a{margin-left:-5.953690px;}
._1{margin-left:-4.519066px;}
._44{margin-left:-3.371366px;}
._0{margin-left:-2.223667px;}
._1b{margin-left:-1.147699px;}
._2{width:1.936742px;}
._3{width:3.202064px;}
._4c{width:4.662528px;}
._33{width:7.101389px;}
._35{width:9.827174px;}
._41{width:10.831411px;}
._1c{width:12.337766px;}
._23{width:18.363187px;}
._43{width:19.367424px;}
._21{width:20.443392px;}
._45{width:21.734554px;}
._2f{width:23.186567px;}
._48{width:24.316877px;}
._26{width:25.321114px;}
._24{width:27.329587px;}
._1f{width:28.405555px;}
._20{width:30.414029px;}
._6{width:31.561728px;}
._27{width:32.637696px;}
._25{width:34.215782px;}
._3d{width:35.865600px;}
._5{width:37.443582px;}
._4b{width:38.447923px;}
._49{width:39.810816px;}
._47{width:40.815053px;}
._40{width:42.034483px;}
._1e{width:43.756032px;}
._4d{width:45.692774px;}
._3f{width:47.055667px;}
._22{width:49.422797px;}
._1d{width:51.861658px;}
._3e{width:53.583206px;}
._46{width:55.761858px;}
._29{width:64.988467px;}
._36{width:66.981725px;}
._8{width:72.000735px;}
._f{width:76.096587px;}
._e{width:84.058750px;}
._4e{width:85.933978px;}
._3c{width:96.836850px;}
._2e{width:107.381606px;}
._37{width:108.566258px;}
._3b{width:116.203950px;}
._10{width:118.453860px;}
._14{width:141.884314px;}
._30{width:144.127544px;}
._17{width:153.737351px;}
._9{width:155.108504px;}
._18{width:184.851302px;}
._19{width:209.615956px;}
._c{width:218.203267px;}
._12{width:253.641523px;}
._16{width:260.975495px;}
._11{width:336.710383px;}
._1a{width:388.370106px;}
._4a{width:415.503041px;}
._b{width:445.655729px;}
._7{width:449.473342px;}
._28{width:450.621041px;}
._15{width:771.056058px;}
._13{width:922.750157px;}
._2a{width:1311.891917px;}
._31{width:1610.867558px;}
._38{width:1630.952294px;}
._39{width:1785.676493px;}
._3a{width:2135.653018px;}
.fc4{color:rgb(176,170,62);}
.fc3{color:rgb(0,153,0);}
.fc2{color:rgb(0,0,204);}
.fc1{color:rgb(229,115,0);}
.fc5{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs4{font-size:65.454600px;}
.fs0{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y77{bottom:110.313000px;}
.y92{bottom:118.723500px;}
.y4c{bottom:123.199500px;}
.yd2{bottom:128.278500px;}
.y76{bottom:131.980500px;}
.yb6{bottom:140.023500px;}
.y91{bottom:140.392500px;}
.y4b{bottom:144.868500px;}
.yf4{bottom:146.221500px;}
.yd1{bottom:149.947500px;}
.yd{bottom:151.408500px;}
.y75{bottom:153.649500px;}
.yb5{bottom:161.692500px;}
.y90{bottom:162.061500px;}
.yf3{bottom:167.890500px;}
.yd0{bottom:171.616500px;}
.yc{bottom:173.077500px;}
.y74{bottom:175.318500px;}
.yb4{bottom:183.361500px;}
.y8f{bottom:183.730500px;}
.y4a{bottom:188.205000px;}
.yf2{bottom:189.558000px;}
.ycf{bottom:193.285500px;}
.y49{bottom:209.874000px;}
.y73{bottom:211.524000px;}
.yce{bottom:214.953000px;}
.yb3{bottom:216.612000px;}
.y8e{bottom:216.981000px;}
.yf1{bottom:225.468000px;}
.y48{bottom:231.543000px;}
.y72{bottom:233.193000px;}
.ycd{bottom:236.622000px;}
.y47{bottom:253.212000px;}
.yf0{bottom:253.905000px;}
.y71{bottom:254.862000px;}
.ycc{bottom:258.291000px;}
.y8d{bottom:261.637500px;}
.yb2{bottom:268.603500px;}
.y46{bottom:274.881000px;}
.yef{bottom:275.574000px;}
.y70{bottom:276.529500px;}
.ycb{bottom:279.960000px;}
.yb1{bottom:290.272500px;}
.y45{bottom:296.548500px;}
.yca{bottom:301.629000px;}
.yee{bottom:304.011000px;}
.yb0{bottom:311.941500px;}
.y6f{bottom:312.735000px;}
.y44{bottom:318.217500px;}
.yc9{bottom:323.298000px;}
.yed{bottom:325.678500px;}
.yaf{bottom:333.610500px;}
.y6e{bottom:334.404000px;}
.y8c{bottom:336.483000px;}
.y43{bottom:339.886500px;}
.yc8{bottom:344.965500px;}
.yae{bottom:355.279500px;}
.y6d{bottom:356.073000px;}
.y8b{bottom:358.150500px;}
.y42{bottom:361.555500px;}
.yec{bottom:361.588500px;}
.yc7{bottom:366.634500px;}
.yad{bottom:376.947000px;}
.y8a{bottom:379.819500px;}
.yc6{bottom:388.303500px;}
.y6c{bottom:391.464000px;}
.yac{bottom:398.616000px;}
.yeb{bottom:399.868500px;}
.y41{bottom:404.893500px;}
.yc5{bottom:409.972500px;}
.y89{bottom:416.433000px;}
.yab{bottom:420.285000px;}
.yea{bottom:421.537500px;}
.y6b{bottom:424.714500px;}
.y40{bottom:426.561000px;}
.yc4{bottom:431.641500px;}
.y88{bottom:438.102000px;}
.yaa{bottom:441.954000px;}
.ye9{bottom:443.206500px;}
.y3f{bottom:448.230000px;}
.yc3{bottom:453.310500px;}
.yb{bottom:455.712000px;}
.y87{bottom:459.769500px;}
.ya9{bottom:463.623000px;}
.ye8{bottom:464.875500px;}
.y3e{bottom:469.899000px;}
.yc2{bottom:474.978000px;}
.y6a{bottom:476.496000px;}
.ya8{bottom:485.292000px;}
.ye7{bottom:486.544500px;}
.y3d{bottom:491.568000px;}
.y86{bottom:496.383000px;}
.yc1{bottom:496.647000px;}
.y69{bottom:498.165000px;}
.ya{bottom:502.038000px;}
.ya7{bottom:506.959500px;}
.y3c{bottom:513.237000px;}
.y85{bottom:518.052000px;}
.yc0{bottom:518.316000px;}
.y68{bottom:519.834000px;}
.ye6{bottom:525.970500px;}
.y3b{bottom:534.906000px;}
.y9{bottom:534.915000px;}
.y84{bottom:539.721000px;}
.ya6{bottom:540.210000px;}
.y67{bottom:541.503000px;}
.y83{bottom:561.388500px;}
.y66{bottom:563.172000px;}
.ya5{bottom:567.109500px;}
.y8{bottom:567.792000px;}
.ybf{bottom:572.637000px;}
.y106{bottom:574.381500px;}
.y23{bottom:576.894000px;}
.y3a{bottom:578.242500px;}
.y82{bottom:583.057500px;}
.y65{bottom:584.839500px;}
.ye5{bottom:585.508500px;}
.ybe{bottom:594.306000px;}
.y105{bottom:596.050500px;}
.y22{bottom:598.563000px;}
.y39{bottom:599.911500px;}
.y7{bottom:600.669000px;}
.y81{bottom:604.726500px;}
.y64{bottom:606.508500px;}
.ye4{bottom:607.176000px;}
.ybd{bottom:615.975000px;}
.y104{bottom:617.719500px;}
.ya4{bottom:619.102500px;}
.y21{bottom:620.232000px;}
.y38{bottom:621.580500px;}
.y63{bottom:628.177500px;}
.ye3{bottom:628.845000px;}
.y6{bottom:633.544500px;}
.ybc{bottom:637.644000px;}
.y103{bottom:639.388500px;}
.ya3{bottom:640.771500px;}
.y80{bottom:641.340000px;}
.y20{bottom:642.498000px;}
.y37{bottom:643.249500px;}
.ye2{bottom:650.514000px;}
.ybb{bottom:659.313000px;}
.ya2{bottom:662.439000px;}
.y7f{bottom:663.007500px;}
.y62{bottom:663.568500px;}
.y1f{bottom:664.764000px;}
.y36{bottom:664.917000px;}
.ye1{bottom:672.183000px;}
.y102{bottom:678.816000px;}
.yba{bottom:680.980500px;}
.ya1{bottom:684.108000px;}
.y7e{bottom:684.676500px;}
.y61{bottom:685.237500px;}
.y35{bottom:686.586000px;}
.y1e{bottom:687.031500px;}
.ye0{bottom:693.852000px;}
.yb9{bottom:702.649500px;}
.ya0{bottom:705.777000px;}
.y34{bottom:708.255000px;}
.y1d{bottom:709.297500px;}
.ydf{bottom:715.521000px;}
.y60{bottom:720.628500px;}
.y5{bottom:723.208500px;}
.y56{bottom:724.695000px;}
.y9f{bottom:727.446000px;}
.y1c{bottom:731.563500px;}
.yb7{bottom:736.852500px;}
.yde{bottom:737.188500px;}
.y101{bottom:738.715500px;}
.y7d{bottom:738.997500px;}
.y5f{bottom:742.296000px;}
.y9e{bottom:749.115000px;}
.y4{bottom:750.108000px;}
.y33{bottom:751.593000px;}
.y1b{bottom:753.232500px;}
.y100{bottom:760.384500px;}
.y7c{bottom:760.666500px;}
.y55{bottom:763.921500px;}
.y9d{bottom:770.782500px;}
.y32{bottom:773.262000px;}
.y1a{bottom:775.498500px;}
.ydd{bottom:776.616000px;}
.y5e{bottom:781.764000px;}
.y7b{bottom:782.335500px;}
.yff{bottom:789.525000px;}
.y9c{bottom:792.451500px;}
.y31{bottom:794.929500px;}
.y19{bottom:797.167500px;}
.y54{bottom:803.149500px;}
.y7a{bottom:804.004500px;}
.y9b{bottom:814.120500px;}
.y30{bottom:816.598500px;}
.y5d{bottom:817.969500px;}
.yfe{bottom:818.665500px;}
.y18{bottom:819.435000px;}
.y79{bottom:825.673500px;}
.y9a{bottom:835.789500px;}
.ydc{bottom:836.152500px;}
.y2f{bottom:838.267500px;}
.yfd{bottom:840.334500px;}
.y17{bottom:841.102500px;}
.y53{bottom:842.377500px;}
.yb8{bottom:849.129000px;}
.y5c{bottom:854.175000px;}
.y99{bottom:857.458500px;}
.ydb{bottom:857.821500px;}
.y78{bottom:862.119000px;}
.y16{bottom:862.771500px;}
.y52{bottom:864.046500px;}
.y10a{bottom:866.661000px;}
.yfc{bottom:869.475000px;}
.y5b{bottom:875.842500px;}
.y98{bottom:879.127500px;}
.yda{bottom:879.490500px;}
.y2e{bottom:881.605500px;}
.y15{bottom:884.440500px;}
.y51{bottom:885.715500px;}
.y26{bottom:886.234500px;}
.y109{bottom:888.330000px;}
.yfb{bottom:891.144000px;}
.y97{bottom:900.795000px;}
.yd9{bottom:901.159500px;}
.y2d{bottom:903.274500px;}
.y14{bottom:906.706500px;}
.y50{bottom:907.383000px;}
.y25{bottom:907.902000px;}
.y108{bottom:909.999000px;}
.y5a{bottom:912.048000px;}
.yfa{bottom:912.813000px;}
.yd8{bottom:922.828500px;}
.y2c{bottom:924.942000px;}
.y13{bottom:928.974000px;}
.y4f{bottom:929.052000px;}
.y24{bottom:929.571000px;}
.y96{bottom:934.045500px;}
.yf9{bottom:941.953500px;}
.yd7{bottom:944.497500px;}
.y2b{bottom:946.611000px;}
.y59{bottom:948.253500px;}
.y4e{bottom:950.721000px;}
.y12{bottom:951.240000px;}
.yf8{bottom:963.622500px;}
.yd6{bottom:966.165000px;}
.y2a{bottom:968.280000px;}
.y58{bottom:969.922500px;}
.y4d{bottom:972.390000px;}
.y11{bottom:972.909000px;}
.y95{bottom:986.038500px;}
.yd5{bottom:987.834000px;}
.y107{bottom:989.949000px;}
.yf7{bottom:992.763000px;}
.y10{bottom:994.578000px;}
.y57{bottom:1003.173000px;}
.y94{bottom:1007.707500px;}
.yd4{bottom:1009.503000px;}
.y29{bottom:1011.618000px;}
.yf6{bottom:1014.432000px;}
.yf{bottom:1016.844000px;}
.y93{bottom:1029.376500px;}
.y28{bottom:1033.287000px;}
.yd3{bottom:1042.753500px;}
.yf5{bottom:1043.572500px;}
.y3{bottom:1051.044000px;}
.y27{bottom:1054.954500px;}
.y2{bottom:1072.713000px;}
.y1{bottom:1094.382000px;}
.ye{bottom:1142.382000px;}
.h7{height:49.090950px;}
.h2{height:53.798400px;}
.h5{height:55.376486px;}
.h6{height:57.834699px;}
.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;}
.xe{left:108.000000px;}
.x7{left:111.945000px;}
.x19{left:129.460500px;}
.x9{left:132.870000px;}
.x12{left:134.338500px;}
.xf{left:135.690000px;}
.x8{left:146.652000px;}
.x14{left:151.897500px;}
.x1a{left:154.434000px;}
.x11{left:159.477000px;}
.x16{left:163.143000px;}
.x13{left:174.724500px;}
.xb{left:180.432000px;}
.x1b{left:190.527000px;}
.x3{left:218.566500px;}
.xd{left:221.271000px;}
.x4{left:227.973000px;}
.x1{left:232.443000px;}
.x17{left:247.576500px;}
.x15{left:249.850500px;}
.x2{left:251.863500px;}
.xc{left:259.918500px;}
.x10{left:332.026500px;}
.xa{left:339.712500px;}
.x5{left:399.048000px;}
.x6{left:409.500000px;}
.x18{left:621.700500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.031638pt;}
.ls7{letter-spacing:19.052800pt;}
.lsc{letter-spacing:20.807467pt;}
.ls0{letter-spacing:20.812421pt;}
.ls4{letter-spacing:21.191925pt;}
.ls8{letter-spacing:21.324800pt;}
.lsd{letter-spacing:22.311467pt;}
.lsa{letter-spacing:24.398582pt;}
.ls6{letter-spacing:24.617248pt;}
.lsb{letter-spacing:26.233248pt;}
.ls9{letter-spacing:29.329309pt;}
.ls3{letter-spacing:31.215625pt;}
.ls2{letter-spacing:31.880533pt;}
.ws33{word-spacing:-28.692333pt;}
.ws1{word-spacing:-19.925333pt;}
.ws5{word-spacing:-17.343010pt;}
.ws34{word-spacing:-17.279249pt;}
.ws3b{word-spacing:-3.506859pt;}
.ws28{word-spacing:-3.315575pt;}
.ws9{word-spacing:-3.124292pt;}
.ws75{word-spacing:-2.996770pt;}
.ws23{word-spacing:-2.741726pt;}
.ws5e{word-spacing:-2.550443pt;}
.ws26{word-spacing:-2.104115pt;}
.ws53{word-spacing:-1.976593pt;}
.ws3a{word-spacing:-1.912832pt;}
.ws74{word-spacing:-1.721549pt;}
.ws87{word-spacing:-1.594027pt;}
.ws7e{word-spacing:-1.402743pt;}
.ws52{word-spacing:-1.338982pt;}
.ws73{word-spacing:-1.211460pt;}
.ws8{word-spacing:-1.147699pt;}
.ws7d{word-spacing:-0.892655pt;}
.ws57{word-spacing:-0.701372pt;}
.ws65{word-spacing:-0.637611pt;}
.ws1c{word-spacing:-0.510089pt;}
.ws59{word-spacing:-0.382566pt;}
.ws1e{word-spacing:-0.255044pt;}
.ws3e{word-spacing:-0.191283pt;}
.ws50{word-spacing:-0.063761pt;}
.ws6{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.063761pt;}
.ws3f{word-spacing:0.191283pt;}
.ws56{word-spacing:0.382566pt;}
.ws4f{word-spacing:0.446327pt;}
.ws62{word-spacing:0.637611pt;}
.ws21{word-spacing:0.648953pt;}
.ws15{word-spacing:0.892655pt;}
.ws5c{word-spacing:0.956416pt;}
.ws2c{word-spacing:1.020177pt;}
.wsa{word-spacing:1.083938pt;}
.ws47{word-spacing:1.211460pt;}
.ws4e{word-spacing:1.466505pt;}
.ws2f{word-spacing:1.530266pt;}
.ws77{word-spacing:1.657788pt;}
.ws8b{word-spacing:1.721549pt;}
.ws79{word-spacing:1.912832pt;}
.ws70{word-spacing:2.040354pt;}
.ws5b{word-spacing:2.167876pt;}
.ws84{word-spacing:2.295398pt;}
.ws69{word-spacing:2.359159pt;}
.ws5d{word-spacing:2.614204pt;}
.ws61{word-spacing:2.677965pt;}
.ws8f{word-spacing:2.741726pt;}
.ws1d{word-spacing:2.805487pt;}
.ws5a{word-spacing:3.124292pt;}
.ws20{word-spacing:3.188053pt;}
.ws1a{word-spacing:3.315575pt;}
.ws5f{word-spacing:3.379337pt;}
.ws2{word-spacing:3.443098pt;}
.wsc{word-spacing:3.506859pt;}
.ws66{word-spacing:3.570620pt;}
.ws46{word-spacing:3.634381pt;}
.ws1b{word-spacing:3.825664pt;}
.ws31{word-spacing:3.889425pt;}
.ws8d{word-spacing:3.953186pt;}
.ws0{word-spacing:3.985067pt;}
.ws45{word-spacing:4.016947pt;}
.ws3{word-spacing:4.131706pt;}
.ws89{word-spacing:4.144469pt;}
.ws2d{word-spacing:4.208230pt;}
.ws76{word-spacing:4.718319pt;}
.ws39{word-spacing:4.782067pt;}
.ws3d{word-spacing:4.782080pt;}
.ws7b{word-spacing:4.909602pt;}
.ws86{word-spacing:4.973363pt;}
.ws7f{word-spacing:5.037124pt;}
.ws54{word-spacing:5.100885pt;}
.ws6d{word-spacing:5.228407pt;}
.ws4a{word-spacing:5.292169pt;}
.ws40{word-spacing:5.355930pt;}
.ws44{word-spacing:5.419691pt;}
.ws78{word-spacing:5.483452pt;}
.ws80{word-spacing:5.547213pt;}
.ws7c{word-spacing:5.610974pt;}
.ws92{word-spacing:5.674735pt;}
.ws4{word-spacing:5.738467pt;}
.ws6c{word-spacing:5.738496pt;}
.ws42{word-spacing:5.787858pt;}
.ws7a{word-spacing:5.866018pt;}
.ws27{word-spacing:6.057301pt;}
.ws14{word-spacing:6.121062pt;}
.ws83{word-spacing:6.184823pt;}
.ws67{word-spacing:6.312346pt;}
.ws6b{word-spacing:6.376107pt;}
.ws24{word-spacing:6.439868pt;}
.ws81{word-spacing:6.503629pt;}
.ws49{word-spacing:6.567390pt;}
.ws29{word-spacing:6.694912pt;}
.ws4c{word-spacing:6.758673pt;}
.ws25{word-spacing:6.886195pt;}
.ws72{word-spacing:6.949956pt;}
.ws19{word-spacing:7.013717pt;}
.ws55{word-spacing:7.268762pt;}
.ws64{word-spacing:7.332523pt;}
.ws68{word-spacing:7.523806pt;}
.ws30{word-spacing:7.587567pt;}
.ws88{word-spacing:7.651328pt;}
.ws4b{word-spacing:7.842611pt;}
.ws13{word-spacing:7.970133pt;}
.ws58{word-spacing:8.225178pt;}
.ws85{word-spacing:8.288939pt;}
.ws43{word-spacing:8.352700pt;}
.ws22{word-spacing:8.480222pt;}
.ws1f{word-spacing:8.607744pt;}
.ws6f{word-spacing:8.799027pt;}
.ws36{word-spacing:8.862788pt;}
.ws90{word-spacing:8.926549pt;}
.ws2a{word-spacing:9.054071pt;}
.ws2e{word-spacing:9.117833pt;}
.ws71{word-spacing:9.181594pt;}
.ws12{word-spacing:9.245355pt;}
.ws3c{word-spacing:9.309116pt;}
.ws60{word-spacing:9.436638pt;}
.ws16{word-spacing:9.564160pt;}
.ws6e{word-spacing:9.691682pt;}
.ws32{word-spacing:9.946726pt;}
.ws41{word-spacing:10.010487pt;}
.ws51{word-spacing:10.074249pt;}
.ws82{word-spacing:10.201771pt;}
.wsd{word-spacing:10.396276pt;}
.ws18{word-spacing:10.443858pt;}
.ws48{word-spacing:10.520576pt;}
.ws63{word-spacing:10.775620pt;}
.ws98{word-spacing:10.966903pt;}
.ws6a{word-spacing:11.132651pt;}
.ws8e{word-spacing:11.987081pt;}
.ws17{word-spacing:13.007258pt;}
.ws8a{word-spacing:13.836151pt;}
.ws8c{word-spacing:13.899913pt;}
.ws35{word-spacing:14.537523pt;}
.ws94{word-spacing:16.705399pt;}
.ws93{word-spacing:19.319603pt;}
.ws95{word-spacing:19.638409pt;}
.ws7{word-spacing:20.722347pt;}
.ws96{word-spacing:22.571418pt;}
.ws97{word-spacing:27.799825pt;}
.ws38{word-spacing:37.842193pt;}
.ws11{word-spacing:43.835733pt;}
.ws37{word-spacing:46.226773pt;}
.ws91{word-spacing:74.600067pt;}
.wse{word-spacing:368.281216pt;}
.wsf{word-spacing:374.293885pt;}
.wsb{word-spacing:422.943578pt;}
.ws10{word-spacing:457.431939pt;}
.ws4d{word-spacing:1247.730362pt;}
._32{margin-left:-35.387392pt;}
._2c{margin-left:-33.602082pt;}
._2b{margin-left:-31.880533pt;}
._d{margin-left:-30.987878pt;}
._34{margin-left:-30.095223pt;}
._2d{margin-left:-11.094426pt;}
._4{margin-left:-8.630654pt;}
._42{margin-left:-6.949956pt;}
._a{margin-left:-5.292169pt;}
._1{margin-left:-4.016947pt;}
._44{margin-left:-2.996770pt;}
._0{margin-left:-1.976593pt;}
._1b{margin-left:-1.020177pt;}
._2{width:1.721549pt;}
._3{width:2.846279pt;}
._4c{width:4.144469pt;}
._33{width:6.312346pt;}
._35{width:8.735266pt;}
._41{width:9.627921pt;}
._1c{width:10.966903pt;}
._23{width:16.322833pt;}
._43{width:17.215488pt;}
._21{width:18.171904pt;}
._45{width:19.319603pt;}
._2f{width:20.610282pt;}
._48{width:21.615002pt;}
._26{width:22.507657pt;}
._24{width:24.292966pt;}
._1f{width:25.249382pt;}
._20{width:27.034692pt;}
._6{width:28.054869pt;}
._27{width:29.011285pt;}
._25{width:30.414029pt;}
._3d{width:31.880533pt;}
._5{width:33.283184pt;}
._4b{width:34.175932pt;}
._49{width:35.387392pt;}
._47{width:36.280047pt;}
._40{width:37.363985pt;}
._1e{width:38.894251pt;}
._4d{width:40.615799pt;}
._3f{width:41.827260pt;}
._22{width:43.931375pt;}
._1d{width:46.099251pt;}
._3e{width:47.629517pt;}
._46{width:49.566096pt;}
._29{width:57.767526pt;}
._36{width:59.539311pt;}
._8{width:64.000654pt;}
._f{width:67.641411pt;}
._e{width:74.718889pt;}
._4e{width:76.385758pt;}
._3c{width:86.077200pt;}
._2e{width:95.450317pt;}
._37{width:96.503340pt;}
._3b{width:103.292400pt;}
._10{width:105.292320pt;}
._14{width:126.119390pt;}
._30{width:128.113372pt;}
._17{width:136.655423pt;}
._9{width:137.874225pt;}
._18{width:164.312269pt;}
._19{width:186.325294pt;}
._c{width:193.958460pt;}
._12{width:225.459132pt;}
._16{width:231.978218pt;}
._11{width:299.298118pt;}
._1a{width:345.217872pt;}
._4a{width:369.336037pt;}
._b{width:396.138426pt;}
._7{width:399.531860pt;}
._28{width:400.552037pt;}
._15{width:685.383163pt;}
._13{width:820.222362pt;}
._2a{width:1166.126148pt;}
._31{width:1431.882274pt;}
._38{width:1449.735373pt;}
._39{width:1587.267994pt;}
._3a{width:1898.358238pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:58.181867pt;}
.fs0{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:98.056000pt;}
.y92{bottom:105.532000pt;}
.y4c{bottom:109.510667pt;}
.yd2{bottom:114.025333pt;}
.y76{bottom:117.316000pt;}
.yb6{bottom:124.465333pt;}
.y91{bottom:124.793333pt;}
.y4b{bottom:128.772000pt;}
.yf4{bottom:129.974667pt;}
.yd1{bottom:133.286667pt;}
.yd{bottom:134.585333pt;}
.y75{bottom:136.577333pt;}
.yb5{bottom:143.726667pt;}
.y90{bottom:144.054667pt;}
.yf3{bottom:149.236000pt;}
.yd0{bottom:152.548000pt;}
.yc{bottom:153.846667pt;}
.y74{bottom:155.838667pt;}
.yb4{bottom:162.988000pt;}
.y8f{bottom:163.316000pt;}
.y4a{bottom:167.293333pt;}
.yf2{bottom:168.496000pt;}
.ycf{bottom:171.809333pt;}
.y49{bottom:186.554667pt;}
.y73{bottom:188.021333pt;}
.yce{bottom:191.069333pt;}
.yb3{bottom:192.544000pt;}
.y8e{bottom:192.872000pt;}
.yf1{bottom:200.416000pt;}
.y48{bottom:205.816000pt;}
.y72{bottom:207.282667pt;}
.ycd{bottom:210.330667pt;}
.y47{bottom:225.077333pt;}
.yf0{bottom:225.693333pt;}
.y71{bottom:226.544000pt;}
.ycc{bottom:229.592000pt;}
.y8d{bottom:232.566667pt;}
.yb2{bottom:238.758667pt;}
.y46{bottom:244.338667pt;}
.yef{bottom:244.954667pt;}
.y70{bottom:245.804000pt;}
.ycb{bottom:248.853333pt;}
.yb1{bottom:258.020000pt;}
.y45{bottom:263.598667pt;}
.yca{bottom:268.114667pt;}
.yee{bottom:270.232000pt;}
.yb0{bottom:277.281333pt;}
.y6f{bottom:277.986667pt;}
.y44{bottom:282.860000pt;}
.yc9{bottom:287.376000pt;}
.yed{bottom:289.492000pt;}
.yaf{bottom:296.542667pt;}
.y6e{bottom:297.248000pt;}
.y8c{bottom:299.096000pt;}
.y43{bottom:302.121333pt;}
.yc8{bottom:306.636000pt;}
.yae{bottom:315.804000pt;}
.y6d{bottom:316.509333pt;}
.y8b{bottom:318.356000pt;}
.y42{bottom:321.382667pt;}
.yec{bottom:321.412000pt;}
.yc7{bottom:325.897333pt;}
.yad{bottom:335.064000pt;}
.y8a{bottom:337.617333pt;}
.yc6{bottom:345.158667pt;}
.y6c{bottom:347.968000pt;}
.yac{bottom:354.325333pt;}
.yeb{bottom:355.438667pt;}
.y41{bottom:359.905333pt;}
.yc5{bottom:364.420000pt;}
.y89{bottom:370.162667pt;}
.yab{bottom:373.586667pt;}
.yea{bottom:374.700000pt;}
.y6b{bottom:377.524000pt;}
.y40{bottom:379.165333pt;}
.yc4{bottom:383.681333pt;}
.y88{bottom:389.424000pt;}
.yaa{bottom:392.848000pt;}
.ye9{bottom:393.961333pt;}
.y3f{bottom:398.426667pt;}
.yc3{bottom:402.942667pt;}
.yb{bottom:405.077333pt;}
.y87{bottom:408.684000pt;}
.ya9{bottom:412.109333pt;}
.ye8{bottom:413.222667pt;}
.y3e{bottom:417.688000pt;}
.yc2{bottom:422.202667pt;}
.y6a{bottom:423.552000pt;}
.ya8{bottom:431.370667pt;}
.ye7{bottom:432.484000pt;}
.y3d{bottom:436.949333pt;}
.y86{bottom:441.229333pt;}
.yc1{bottom:441.464000pt;}
.y69{bottom:442.813333pt;}
.ya{bottom:446.256000pt;}
.ya7{bottom:450.630667pt;}
.y3c{bottom:456.210667pt;}
.y85{bottom:460.490667pt;}
.yc0{bottom:460.725333pt;}
.y68{bottom:462.074667pt;}
.ye6{bottom:467.529333pt;}
.y3b{bottom:475.472000pt;}
.y9{bottom:475.480000pt;}
.y84{bottom:479.752000pt;}
.ya6{bottom:480.186667pt;}
.y67{bottom:481.336000pt;}
.y83{bottom:499.012000pt;}
.y66{bottom:500.597333pt;}
.ya5{bottom:504.097333pt;}
.y8{bottom:504.704000pt;}
.ybf{bottom:509.010667pt;}
.y106{bottom:510.561333pt;}
.y23{bottom:512.794667pt;}
.y3a{bottom:513.993333pt;}
.y82{bottom:518.273333pt;}
.y65{bottom:519.857333pt;}
.ye5{bottom:520.452000pt;}
.ybe{bottom:528.272000pt;}
.y105{bottom:529.822667pt;}
.y22{bottom:532.056000pt;}
.y39{bottom:533.254667pt;}
.y7{bottom:533.928000pt;}
.y81{bottom:537.534667pt;}
.y64{bottom:539.118667pt;}
.ye4{bottom:539.712000pt;}
.ybd{bottom:547.533333pt;}
.y104{bottom:549.084000pt;}
.ya4{bottom:550.313333pt;}
.y21{bottom:551.317333pt;}
.y38{bottom:552.516000pt;}
.y63{bottom:558.380000pt;}
.ye3{bottom:558.973333pt;}
.y6{bottom:563.150667pt;}
.ybc{bottom:566.794667pt;}
.y103{bottom:568.345333pt;}
.ya3{bottom:569.574667pt;}
.y80{bottom:570.080000pt;}
.y20{bottom:571.109333pt;}
.y37{bottom:571.777333pt;}
.ye2{bottom:578.234667pt;}
.ybb{bottom:586.056000pt;}
.ya2{bottom:588.834667pt;}
.y7f{bottom:589.340000pt;}
.y62{bottom:589.838667pt;}
.y1f{bottom:590.901333pt;}
.y36{bottom:591.037333pt;}
.ye1{bottom:597.496000pt;}
.y102{bottom:603.392000pt;}
.yba{bottom:605.316000pt;}
.ya1{bottom:608.096000pt;}
.y7e{bottom:608.601333pt;}
.y61{bottom:609.100000pt;}
.y35{bottom:610.298667pt;}
.y1e{bottom:610.694667pt;}
.ye0{bottom:616.757333pt;}
.yb9{bottom:624.577333pt;}
.ya0{bottom:627.357333pt;}
.y34{bottom:629.560000pt;}
.y1d{bottom:630.486667pt;}
.ydf{bottom:636.018667pt;}
.y60{bottom:640.558667pt;}
.y5{bottom:642.852000pt;}
.y56{bottom:644.173333pt;}
.y9f{bottom:646.618667pt;}
.y1c{bottom:650.278667pt;}
.yb7{bottom:654.980000pt;}
.yde{bottom:655.278667pt;}
.y101{bottom:656.636000pt;}
.y7d{bottom:656.886667pt;}
.y5f{bottom:659.818667pt;}
.y9e{bottom:665.880000pt;}
.y4{bottom:666.762667pt;}
.y33{bottom:668.082667pt;}
.y1b{bottom:669.540000pt;}
.y100{bottom:675.897333pt;}
.y7c{bottom:676.148000pt;}
.y55{bottom:679.041333pt;}
.y9d{bottom:685.140000pt;}
.y32{bottom:687.344000pt;}
.y1a{bottom:689.332000pt;}
.ydd{bottom:690.325333pt;}
.y5e{bottom:694.901333pt;}
.y7b{bottom:695.409333pt;}
.yff{bottom:701.800000pt;}
.y9c{bottom:704.401333pt;}
.y31{bottom:706.604000pt;}
.y19{bottom:708.593333pt;}
.y54{bottom:713.910667pt;}
.y7a{bottom:714.670667pt;}
.y9b{bottom:723.662667pt;}
.y30{bottom:725.865333pt;}
.y5d{bottom:727.084000pt;}
.yfe{bottom:727.702667pt;}
.y18{bottom:728.386667pt;}
.y79{bottom:733.932000pt;}
.y9a{bottom:742.924000pt;}
.ydc{bottom:743.246667pt;}
.y2f{bottom:745.126667pt;}
.yfd{bottom:746.964000pt;}
.y17{bottom:747.646667pt;}
.y53{bottom:748.780000pt;}
.yb8{bottom:754.781333pt;}
.y5c{bottom:759.266667pt;}
.y99{bottom:762.185333pt;}
.ydb{bottom:762.508000pt;}
.y78{bottom:766.328000pt;}
.y16{bottom:766.908000pt;}
.y52{bottom:768.041333pt;}
.y10a{bottom:770.365333pt;}
.yfc{bottom:772.866667pt;}
.y5b{bottom:778.526667pt;}
.y98{bottom:781.446667pt;}
.yda{bottom:781.769333pt;}
.y2e{bottom:783.649333pt;}
.y15{bottom:786.169333pt;}
.y51{bottom:787.302667pt;}
.y26{bottom:787.764000pt;}
.y109{bottom:789.626667pt;}
.yfb{bottom:792.128000pt;}
.y97{bottom:800.706667pt;}
.yd9{bottom:801.030667pt;}
.y2d{bottom:802.910667pt;}
.y14{bottom:805.961333pt;}
.y50{bottom:806.562667pt;}
.y25{bottom:807.024000pt;}
.y108{bottom:808.888000pt;}
.y5a{bottom:810.709333pt;}
.yfa{bottom:811.389333pt;}
.yd8{bottom:820.292000pt;}
.y2c{bottom:822.170667pt;}
.y13{bottom:825.754667pt;}
.y4f{bottom:825.824000pt;}
.y24{bottom:826.285333pt;}
.y96{bottom:830.262667pt;}
.yf9{bottom:837.292000pt;}
.yd7{bottom:839.553333pt;}
.y2b{bottom:841.432000pt;}
.y59{bottom:842.892000pt;}
.y4e{bottom:845.085333pt;}
.y12{bottom:845.546667pt;}
.yf8{bottom:856.553333pt;}
.yd6{bottom:858.813333pt;}
.y2a{bottom:860.693333pt;}
.y58{bottom:862.153333pt;}
.y4d{bottom:864.346667pt;}
.y11{bottom:864.808000pt;}
.y95{bottom:876.478667pt;}
.yd5{bottom:878.074667pt;}
.y107{bottom:879.954667pt;}
.yf7{bottom:882.456000pt;}
.y10{bottom:884.069333pt;}
.y57{bottom:891.709333pt;}
.y94{bottom:895.740000pt;}
.yd4{bottom:897.336000pt;}
.y29{bottom:899.216000pt;}
.yf6{bottom:901.717333pt;}
.yf{bottom:903.861333pt;}
.y93{bottom:915.001333pt;}
.y28{bottom:918.477333pt;}
.yd3{bottom:926.892000pt;}
.yf5{bottom:927.620000pt;}
.y3{bottom:934.261333pt;}
.y27{bottom:937.737333pt;}
.y2{bottom:953.522667pt;}
.y1{bottom:972.784000pt;}
.ye{bottom:1015.450667pt;}
.h7{height:43.636400pt;}
.h2{height:47.820800pt;}
.h5{height:49.223543pt;}
.h6{height:51.408621pt;}
.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;}
.xe{left:96.000000pt;}
.x7{left:99.506667pt;}
.x19{left:115.076000pt;}
.x9{left:118.106667pt;}
.x12{left:119.412000pt;}
.xf{left:120.613333pt;}
.x8{left:130.357333pt;}
.x14{left:135.020000pt;}
.x1a{left:137.274667pt;}
.x11{left:141.757333pt;}
.x16{left:145.016000pt;}
.x13{left:155.310667pt;}
.xb{left:160.384000pt;}
.x1b{left:169.357333pt;}
.x3{left:194.281333pt;}
.xd{left:196.685333pt;}
.x4{left:202.642667pt;}
.x1{left:206.616000pt;}
.x17{left:220.068000pt;}
.x15{left:222.089333pt;}
.x2{left:223.878667pt;}
.xc{left:231.038667pt;}
.x10{left:295.134667pt;}
.xa{left:301.966667pt;}
.x5{left:354.709333pt;}
.x6{left:364.000000pt;}
.x18{left:552.622667pt;}
}




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