
    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_f97da91f777800c05a99049b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_8b4c8f7ac15c1d6d4bd178df.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_2223b002466737a8f167b183.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_bf55ae90bcf7840a309e7047.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_c0b2d2730f7621b7dc28ee6e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_f1933ed83cbf4a0d5a462c68.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_0d15018e53b05ce649114486.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_9ebf83d8c9483311a3835ada.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_b93d771b4a9672c6d7e65a77.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874023;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_ecbf20b386455787d86ae7a8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024902;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_54ce56ff3e20d21fc3de6a0a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6dc4fc97afcb90d3cab84b14.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.024902;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:ffd;src:url('chunks/assets/font_416cf77067393a688d375a01.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.971191;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:ffe;src:url('chunks/assets/font_6b3f0548ed3c264140e17099.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.986816;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:fff;src:url('chunks/assets/font_ecbf20b386455787d86ae7a8.woff2')format("woff");}.fff{font-family:fff;line-height:1.024902;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:ff10;src:url('chunks/assets/font_0d2fff0d0d82b2b929fb40cd.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.024902;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:ff11;src:url('chunks/assets/font_d4b250321040946b482a95a0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.861816;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:22.728000px;}
.lsd{letter-spacing:-1.638000px;}
.ls6{letter-spacing:-1.404000px;}
.ls5{letter-spacing:-1.260000px;}
.ls13{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.528000px;}
.lsa{letter-spacing:-0.468000px;}
.lsb{letter-spacing:-0.330000px;}
.lse{letter-spacing:-0.312000px;}
.ls12{letter-spacing:-0.270000px;}
.ls4{letter-spacing:-0.078000px;}
.ls3{letter-spacing:-0.066000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.156000px;}
.ls8{letter-spacing:0.390000px;}
.ls10{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.972000px;}
.lsc{letter-spacing:1.170000px;}
.ls14{letter-spacing:1.560000px;}
.ls7{letter-spacing:7.299600px;}
.ls2{letter-spacing:24.480000px;}
.ls1{letter-spacing:45.672000px;}
.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:-45.672000px;}
.ws6{word-spacing:-28.476000px;}
.ws4{word-spacing:-24.480000px;}
.ws15{word-spacing:-20.340000px;}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.678320px;}
.wsf{word-spacing:-14.586000px;}
.wsc{word-spacing:-14.388000px;}
.ws16{word-spacing:-13.176000px;}
.ws17{word-spacing:-12.636000px;}
.ws7{word-spacing:-12.204000px;}
.ws18{word-spacing:-11.664000px;}
.wsa{word-spacing:-8.696028px;}
.ws1d{word-spacing:-1.560000px;}
.ws12{word-spacing:-1.170000px;}
.wsd{word-spacing:-0.390000px;}
.ws19{word-spacing:-0.156000px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:0.066000px;}
.ws8{word-spacing:0.078000px;}
.ws1c{word-spacing:0.270000px;}
.ws14{word-spacing:0.312000px;}
.ws11{word-spacing:0.330000px;}
.ws10{word-spacing:0.468000px;}
.ws9{word-spacing:1.260000px;}
.wsb{word-spacing:1.404000px;}
.ws13{word-spacing:1.638000px;}
.ws1a{word-spacing:2.442000px;}
.wse{word-spacing:7.326000px;}
.ws1b{word-spacing:16.470000px;}
._1d{margin-left:-28.951116px;}
._f{margin-left:-26.516400px;}
._10{margin-left:-15.212400px;}
._1f{margin-left:-12.518176px;}
._1b{margin-left:-10.124361px;}
._1e{margin-left:-8.456400px;}
._15{margin-left:-6.131400px;}
._c{margin-left:-4.435200px;}
._e{margin-left:-3.254400px;}
._d{margin-left:-1.465200px;}
._a{width:1.385992px;}
._3{width:2.870984px;}
._6{width:4.124977px;}
._11{width:5.682600px;}
._4{width:7.193961px;}
._12{width:8.798086px;}
._9{width:10.262944px;}
._13{width:12.025200px;}
._8{width:13.265928px;}
._2{width:15.377916px;}
._19{width:16.757400px;}
._18{width:17.813400px;}
._1a{width:18.902512px;}
._5{width:20.492888px;}
._14{width:21.615000px;}
._1c{width:23.515800px;}
._1{width:28.313846px;}
._16{width:29.429400px;}
._17{width:30.472509px;}
._7{width:33.164819px;}
._b{width:45.209753px;}
._0{width:820.875237px;}
.fc5{color:rgb(76,142,165);}
.fc2{color:rgb(65,160,17);}
.fc3{color:rgb(0,94,126);}
.fc1{color:rgb(255,101,0);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:32.999820px;}
.fse{font-size:36.000000px;}
.fs3{font-size:37.714080px;}
.fs13{font-size:38.478000px;}
.fs6{font-size:41.485488px;}
.fs7{font-size:42.428340px;}
.fs2{font-size:47.142600px;}
.fs1{font-size:51.856860px;}
.fs5{font-size:52.799712px;}
.fs10{font-size:54.000000px;}
.fs0{font-size:65.999640px;}
.fsb{font-size:66.000000px;}
.fs11{font-size:72.000000px;}
.fsd{font-size:78.000000px;}
.fs12{font-size:90.000000px;}
.fsc{font-size:114.000000px;}
.fsf{font-size:126.000000px;}
.fs8{font-size:252.000000px;}
.fsa{font-size:288.000000px;}
.fs9{font-size:519.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.298365px;}
.y34{bottom:46.346400px;}
.y20{bottom:50.265797px;}
.y1f{bottom:63.630724px;}
.y1e{bottom:76.995651px;}
.y1d{bottom:90.360579px;}
.y1c{bottom:101.780873px;}
.y33{bottom:102.047250px;}
.yb2{bottom:102.047400px;}
.y92{bottom:102.050400px;}
.y6b{bottom:102.068550px;}
.yf4{bottom:103.014450px;}
.y122{bottom:103.970700px;}
.yd1{bottom:104.168100px;}
.y10d{bottom:104.170350px;}
.y44{bottom:108.440550px;}
.y91{bottom:118.547400px;}
.y6a{bottom:118.565550px;}
.y121{bottom:120.170700px;}
.y1b{bottom:123.419327px;}
.yf3{bottom:123.721950px;}
.y43{bottom:124.640550px;}
.yd0{bottom:124.710600px;}
.y10c{bottom:124.712850px;}
.y69{bottom:135.062550px;}
.y120{bottom:136.370700px;}
.y21{bottom:136.778700px;}
.y28{bottom:142.439400px;}
.yf2{bottom:144.429450px;}
.y42{bottom:145.093050px;}
.ycf{bottom:145.253100px;}
.y10b{bottom:145.255350px;}
.yb1{bottom:145.947450px;}
.y68{bottom:151.559550px;}
.y11f{bottom:152.570700px;}
.y41{bottom:161.293050px;}
.y90{bottom:164.294850px;}
.yf1{bottom:165.136950px;}
.yce{bottom:165.795600px;}
.y10a{bottom:165.797850px;}
.yb0{bottom:166.654950px;}
.y67{bottom:168.056550px;}
.y11e{bottom:168.770700px;}
.y14f{bottom:171.958350px;}
.y40{bottom:177.493050px;}
.y1a{bottom:179.601520px;}
.y27{bottom:184.431900px;}
.y66{bottom:184.553550px;}
.y11d{bottom:184.970700px;}
.y8f{bottom:185.002350px;}
.yf0{bottom:185.844450px;}
.ycd{bottom:186.338100px;}
.y109{bottom:186.340350px;}
.yaf{bottom:187.362450px;}
.y14e{bottom:188.306850px;}
.y19{bottom:189.619323px;}
.y3f{bottom:193.693050px;}
.y18{bottom:198.812130px;}
.y65{bottom:201.050550px;}
.y11c{bottom:201.170700px;}
.y14d{bottom:204.655350px;}
.y26{bottom:205.436400px;}
.y8e{bottom:205.709850px;}
.ycc{bottom:206.880600px;}
.y108{bottom:206.882850px;}
.y17{bottom:207.156370px;}
.yae{bottom:208.069950px;}
.y3e{bottom:209.893050px;}
.yef{bottom:210.792450px;}
.y16{bottom:215.512396px;}
.y11b{bottom:217.370700px;}
.y64{bottom:217.547550px;}
.y14c{bottom:221.003850px;}
.y15{bottom:223.868422px;}
.y3d{bottom:226.093050px;}
.y8d{bottom:226.417350px;}
.y25{bottom:226.440900px;}
.ycb{bottom:227.423100px;}
.y107{bottom:227.425350px;}
.yad{bottom:228.777450px;}
.yee{bottom:231.499950px;}
.y14{bottom:232.212662px;}
.y11a{bottom:233.570700px;}
.y14b{bottom:237.352350px;}
.y13{bottom:240.568688px;}
.y3c{bottom:242.293050px;}
.y8c{bottom:247.124850px;}
.yca{bottom:247.965600px;}
.y106{bottom:247.967850px;}
.y12{bottom:248.924714px;}
.yac{bottom:249.484950px;}
.y119{bottom:249.770700px;}
.yed{bottom:252.207450px;}
.y14a{bottom:253.700850px;}
.y11{bottom:257.268954px;}
.y3b{bottom:258.493050px;}
.y10{bottom:265.624980px;}
.y118{bottom:265.970700px;}
.y63{bottom:266.361600px;}
.y8b{bottom:267.832350px;}
.yc9{bottom:268.508100px;}
.y105{bottom:268.510350px;}
.y149{bottom:270.049350px;}
.yab{bottom:270.192450px;}
.yec{bottom:272.914950px;}
.yf{bottom:273.981006px;}
.y117{bottom:282.170700px;}
.y32{bottom:284.429700px;}
.y148{bottom:286.397850px;}
.y62{bottom:287.069100px;}
.y8a{bottom:288.539850px;}
.yc8{bottom:289.050600px;}
.y104{bottom:289.052850px;}
.yaa{bottom:290.899950px;}
.ye{bottom:291.164483px;}
.yeb{bottom:293.622450px;}
.y116{bottom:298.370700px;}
.y147{bottom:302.746350px;}
.y31{bottom:305.434200px;}
.y61{bottom:307.776600px;}
.y89{bottom:309.247350px;}
.yc7{bottom:309.593100px;}
.y103{bottom:309.595350px;}
.ya9{bottom:311.607450px;}
.yea{bottom:314.329950px;}
.y115{bottom:314.570700px;}
.y146{bottom:319.094850px;}
.y30{bottom:326.438700px;}
.y60{bottom:328.296600px;}
.y88{bottom:329.954850px;}
.yc6{bottom:330.135600px;}
.y102{bottom:330.137850px;}
.y114{bottom:330.770700px;}
.ya8{bottom:332.314950px;}
.ye9{bottom:335.037450px;}
.y145{bottom:335.443350px;}
.y113{bottom:346.970700px;}
.y2f{bottom:347.443200px;}
.y5f{bottom:349.004100px;}
.y87{bottom:350.662350px;}
.yc5{bottom:350.678100px;}
.y101{bottom:350.680350px;}
.y144{bottom:351.791850px;}
.ya7{bottom:353.022450px;}
.ye8{bottom:355.744950px;}
.y143{bottom:368.140350px;}
.y2e{bottom:368.447700px;}
.y5e{bottom:369.711600px;}
.yc4{bottom:371.220600px;}
.y100{bottom:371.222850px;}
.y86{bottom:371.369850px;}
.ya6{bottom:373.729950px;}
.ye7{bottom:376.452450px;}
.y112{bottom:378.052500px;}
.y142{bottom:384.488850px;}
.y2d{bottom:389.452200px;}
.y5d{bottom:390.419100px;}
.yc3{bottom:391.763100px;}
.yff{bottom:391.765350px;}
.y85{bottom:392.077350px;}
.ya5{bottom:394.437450px;}
.ye6{bottom:397.159950px;}
.y141{bottom:400.837350px;}
.y2c{bottom:410.456700px;}
.y5c{bottom:411.126600px;}
.yd{bottom:412.250251px;}
.yc2{bottom:412.305600px;}
.yfe{bottom:412.307850px;}
.y84{bottom:412.784850px;}
.ya4{bottom:415.144950px;}
.y140{bottom:417.185850px;}
.ye5{bottom:417.867450px;}
.y5b{bottom:431.834100px;}
.yc1{bottom:432.848100px;}
.yfd{bottom:432.850350px;}
.y83{bottom:433.492350px;}
.y13f{bottom:433.534350px;}
.ya3{bottom:435.852450px;}
.y111{bottom:437.107350px;}
.y13e{bottom:449.882850px;}
.y5a{bottom:452.541600px;}
.yc0{bottom:453.390600px;}
.yfc{bottom:453.392850px;}
.y82{bottom:454.199850px;}
.ye4{bottom:456.425850px;}
.ya2{bottom:456.559950px;}
.y110{bottom:457.649850px;}
.y13d{bottom:466.231350px;}
.y59{bottom:473.249100px;}
.ybf{bottom:473.933100px;}
.yfb{bottom:473.935350px;}
.y81{bottom:474.907350px;}
.ya1{bottom:477.184950px;}
.y10f{bottom:478.192350px;}
.y13c{bottom:482.579850px;}
.y58{bottom:493.956600px;}
.ybe{bottom:494.475600px;}
.yfa{bottom:494.477850px;}
.y80{bottom:495.614850px;}
.ya0{bottom:497.892450px;}
.y2b{bottom:498.056700px;}
.y10e{bottom:498.734850px;}
.y13b{bottom:498.928350px;}
.y57{bottom:514.664100px;}
.ybd{bottom:515.018100px;}
.yf9{bottom:515.020350px;}
.y13a{bottom:515.276850px;}
.y7f{bottom:516.322350px;}
.y9f{bottom:518.599950px;}
.ye3{bottom:519.277350px;}
.y139{bottom:531.625350px;}
.y2a{bottom:532.256700px;}
.y56{bottom:535.371600px;}
.ybc{bottom:535.560600px;}
.yf8{bottom:535.562850px;}
.y7e{bottom:537.029850px;}
.y9e{bottom:539.307450px;}
.ye2{bottom:539.819850px;}
.y138{bottom:547.973850px;}
.y55{bottom:556.079100px;}
.ybb{bottom:556.103100px;}
.yf7{bottom:556.105350px;}
.y7d{bottom:557.737350px;}
.y9d{bottom:560.014950px;}
.ye1{bottom:560.362350px;}
.y137{bottom:564.322350px;}
.y29{bottom:566.456700px;}
.y162{bottom:572.909250px;}
.yc{bottom:574.420795px;}
.yba{bottom:576.645600px;}
.yf6{bottom:576.647850px;}
.y54{bottom:576.786600px;}
.y7c{bottom:578.444850px;}
.y136{bottom:580.670850px;}
.y9c{bottom:580.722450px;}
.ye0{bottom:580.904850px;}
.y161{bottom:591.390750px;}
.y135{bottom:597.019350px;}
.yf5{bottom:597.190350px;}
.y53{bottom:597.494100px;}
.y7b{bottom:599.152350px;}
.yb{bottom:600.184226px;}
.y9b{bottom:601.429950px;}
.yb9{bottom:601.445100px;}
.ydf{bottom:601.447350px;}
.y160{bottom:607.739250px;}
.y134{bottom:613.367850px;}
.ya{bottom:613.549153px;}
.y52{bottom:618.201600px;}
.y7a{bottom:619.859850px;}
.yde{bottom:621.989850px;}
.y9a{bottom:622.137450px;}
.yb8{bottom:622.152600px;}
.y15f{bottom:624.087750px;}
.y133{bottom:629.716350px;}
.y51{bottom:638.909100px;}
.y9{bottom:639.571869px;}
.y15e{bottom:640.436250px;}
.y79{bottom:640.567350px;}
.ydd{bottom:642.532350px;}
.y99{bottom:642.844950px;}
.yb7{bottom:642.860100px;}
.y132{bottom:646.064850px;}
.y3a{bottom:650.992350px;}
.y8{bottom:652.936796px;}
.y15d{bottom:656.784750px;}
.y24{bottom:657.176850px;}
.y50{bottom:659.616600px;}
.y78{bottom:661.274850px;}
.y131{bottom:662.413350px;}
.ydc{bottom:663.074850px;}
.y98{bottom:663.552450px;}
.yb6{bottom:663.567600px;}
.y7{bottom:666.301723px;}
.y15c{bottom:673.133250px;}
.y130{bottom:678.761850px;}
.y6{bottom:679.666650px;}
.y4f{bottom:680.324100px;}
.y77{bottom:681.982350px;}
.ydb{bottom:683.617350px;}
.y97{bottom:684.259950px;}
.y39{bottom:688.792350px;}
.y15b{bottom:689.481750px;}
.y12f{bottom:695.110350px;}
.y4e{bottom:701.031600px;}
.yb5{bottom:702.125850px;}
.y76{bottom:702.689850px;}
.yda{bottom:704.159850px;}
.y96{bottom:704.967450px;}
.y15a{bottom:705.830250px;}
.y6c{bottom:707.214000px;}
.y12e{bottom:711.458850px;}
.y4d{bottom:721.739100px;}
.y159{bottom:722.178750px;}
.y23{bottom:723.200850px;}
.y75{bottom:723.397350px;}
.yd9{bottom:724.702350px;}
.y38{bottom:726.592350px;}
.y12d{bottom:727.807350px;}
.y5{bottom:741.942024px;}
.y4c{bottom:742.446600px;}
.y95{bottom:743.525850px;}
.y74{bottom:744.104850px;}
.y12c{bottom:744.155850px;}
.yd8{bottom:745.244850px;}
.y158{bottom:751.284750px;}
.y12b{bottom:760.504350px;}
.y4{bottom:761.765488px;}
.y4b{bottom:763.154100px;}
.y37{bottom:764.392350px;}
.yb4{bottom:764.797350px;}
.y73{bottom:764.812350px;}
.yd7{bottom:765.787350px;}
.y157{bottom:769.766250px;}
.y12a{bottom:776.852850px;}
.y4a{bottom:783.861600px;}
.y3{bottom:785.148217px;}
.yb3{bottom:785.504850px;}
.y72{bottom:785.519850px;}
.y156{bottom:786.114750px;}
.yd6{bottom:786.329850px;}
.y129{bottom:793.201350px;}
.y155{bottom:802.463250px;}
.y49{bottom:804.569100px;}
.y94{bottom:806.212350px;}
.y71{bottom:806.227350px;}
.yd5{bottom:806.872350px;}
.y2{bottom:808.542733px;}
.y128{bottom:809.549850px;}
.y22{bottom:811.700850px;}
.y154{bottom:818.811750px;}
.y48{bottom:825.276600px;}
.y127{bottom:825.898350px;}
.y93{bottom:826.919850px;}
.y70{bottom:826.934850px;}
.yd4{bottom:827.414850px;}
.y153{bottom:835.160250px;}
.y36{bottom:839.992350px;}
.y126{bottom:842.246850px;}
.y47{bottom:845.984100px;}
.y6f{bottom:847.627350px;}
.yd3{bottom:847.957350px;}
.y152{bottom:851.508750px;}
.y125{bottom:858.595350px;}
.y151{bottom:867.857250px;}
.y6e{bottom:868.334850px;}
.yd2{bottom:868.499850px;}
.y124{bottom:874.943850px;}
.y35{bottom:877.792350px;}
.y150{bottom:884.205750px;}
.y46{bottom:884.542350px;}
.y6d{bottom:889.042350px;}
.y123{bottom:891.292350px;}
.y45{bottom:952.015800px;}
.h9{height:24.452867px;}
.h7{height:27.946133px;}
.h8{height:28.021561px;}
.h16{height:30.480469px;}
.hc{height:31.439400px;}
.h6{height:34.932667px;}
.ha{height:35.026952px;}
.h5{height:38.425933px;}
.hb{height:39.124587px;}
.h20{height:42.820312px;}
.h21{height:43.664062px;}
.h1a{height:45.720703px;}
.h3{height:48.905733px;}
.h4{height:49.037733px;}
.h12{height:52.335938px;}
.h15{height:54.272461px;}
.h13{height:55.880859px;}
.h1e{height:55.940859px;}
.h1f{height:56.210859px;}
.h1d{height:56.630859px;}
.h1b{height:60.960938px;}
.h1c{height:72.773438px;}
.h17{height:87.670898px;}
.h14{height:96.521484px;}
.h18{height:99.914062px;}
.h19{height:106.681641px;}
.hf{height:172.265625px;}
.h11{height:228.375000px;}
.h10{height:354.785156px;}
.h2{height:992.222088px;}
.h0{height:992.820000px;}
.h1{height:993.000000px;}
.he{height:999.000000px;}
.hd{height:999.213000px;}
.w1{width:701.250000px;}
.w3{width:701.575500px;}
.w2{width:701.576173px;}
.w0{width:701.580000px;}
.x0{left:0.000000px;}
.x3{left:36.747657px;}
.x1{left:43.430120px;}
.x15{left:46.771650px;}
.x1b{left:60.271650px;}
.x1a{left:76.535400px;}
.x8{left:80.205750px;}
.x13{left:86.066400px;}
.x12{left:92.715900px;}
.x1d{left:97.795200px;}
.xd{left:106.916700px;}
.xf{left:112.037400px;}
.x14{left:114.182400px;}
.xb{left:115.780200px;}
.x2{left:116.925434px;}
.xc{left:124.159200px;}
.x9{left:135.959250px;}
.x17{left:161.574750px;}
.x10{left:169.820400px;}
.x1c{left:182.826750px;}
.x7{left:190.392750px;}
.x29{left:204.822600px;}
.x11{left:238.476900px;}
.xa{left:281.522250px;}
.xe{left:307.133400px;}
.x1f{left:321.854100px;}
.x4{left:344.105623px;}
.x25{left:352.458600px;}
.x20{left:358.101600px;}
.x2b{left:359.438100px;}
.x2a{left:364.689600px;}
.x28{left:365.823600px;}
.x21{left:370.602600px;}
.x22{left:379.256100px;}
.x16{left:407.083800px;}
.x23{left:419.769600px;}
.x1e{left:424.103100px;}
.x24{left:439.641600px;}
.x26{left:443.246100px;}
.x27{left:445.149600px;}
.x5{left:449.502150px;}
.x6{left:481.152750px;}
.x18{left:635.391450px;}
.x19{left:641.303100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.202667pt;}
.lsd{letter-spacing:-1.456000pt;}
.ls6{letter-spacing:-1.248000pt;}
.ls5{letter-spacing:-1.120000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.469333pt;}
.lsa{letter-spacing:-0.416000pt;}
.lsb{letter-spacing:-0.293333pt;}
.lse{letter-spacing:-0.277333pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls4{letter-spacing:-0.069333pt;}
.ls3{letter-spacing:-0.058667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.138667pt;}
.ls8{letter-spacing:0.346667pt;}
.ls10{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.864000pt;}
.lsc{letter-spacing:1.040000pt;}
.ls14{letter-spacing:1.386667pt;}
.ls7{letter-spacing:6.488533pt;}
.ls2{letter-spacing:21.760000pt;}
.ls1{letter-spacing:40.597333pt;}
.ws3{word-spacing:-40.597333pt;}
.ws6{word-spacing:-25.312000pt;}
.ws4{word-spacing:-21.760000pt;}
.ws15{word-spacing:-18.080000pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-13.047395pt;}
.wsf{word-spacing:-12.965333pt;}
.wsc{word-spacing:-12.789333pt;}
.ws16{word-spacing:-11.712000pt;}
.ws17{word-spacing:-11.232000pt;}
.ws7{word-spacing:-10.848000pt;}
.ws18{word-spacing:-10.368000pt;}
.wsa{word-spacing:-7.729803pt;}
.ws1d{word-spacing:-1.386667pt;}
.ws12{word-spacing:-1.040000pt;}
.wsd{word-spacing:-0.346667pt;}
.ws19{word-spacing:-0.138667pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:0.058667pt;}
.ws8{word-spacing:0.069333pt;}
.ws1c{word-spacing:0.240000pt;}
.ws14{word-spacing:0.277333pt;}
.ws11{word-spacing:0.293333pt;}
.ws10{word-spacing:0.416000pt;}
.ws9{word-spacing:1.120000pt;}
.wsb{word-spacing:1.248000pt;}
.ws13{word-spacing:1.456000pt;}
.ws1a{word-spacing:2.170667pt;}
.wse{word-spacing:6.512000pt;}
.ws1b{word-spacing:14.640000pt;}
._1d{margin-left:-25.734325pt;}
._f{margin-left:-23.570133pt;}
._10{margin-left:-13.522133pt;}
._1f{margin-left:-11.127268pt;}
._1b{margin-left:-8.999432pt;}
._1e{margin-left:-7.516800pt;}
._15{margin-left:-5.450133pt;}
._c{margin-left:-3.942400pt;}
._e{margin-left:-2.892800pt;}
._d{margin-left:-1.302400pt;}
._a{width:1.231993pt;}
._3{width:2.551986pt;}
._6{width:3.666647pt;}
._11{width:5.051200pt;}
._4{width:6.394632pt;}
._12{width:7.820521pt;}
._9{width:9.122617pt;}
._13{width:10.689067pt;}
._8{width:11.791936pt;}
._2{width:13.669259pt;}
._19{width:14.895467pt;}
._18{width:15.834133pt;}
._1a{width:16.802233pt;}
._5{width:18.215901pt;}
._14{width:19.213333pt;}
._1c{width:20.902933pt;}
._1{width:25.167863pt;}
._16{width:26.159467pt;}
._17{width:27.086675pt;}
._7{width:29.479839pt;}
._b{width:40.186447pt;}
._0{width:729.666877pt;}
.fs4{font-size:29.333173pt;}
.fse{font-size:32.000000pt;}
.fs3{font-size:33.523627pt;}
.fs13{font-size:34.202667pt;}
.fs6{font-size:36.875989pt;}
.fs7{font-size:37.714080pt;}
.fs2{font-size:41.904533pt;}
.fs1{font-size:46.094987pt;}
.fs5{font-size:46.933077pt;}
.fs10{font-size:48.000000pt;}
.fs0{font-size:58.666347pt;}
.fsb{font-size:58.666667pt;}
.fs11{font-size:64.000000pt;}
.fsd{font-size:69.333333pt;}
.fs12{font-size:80.000000pt;}
.fsc{font-size:101.333333pt;}
.fsf{font-size:112.000000pt;}
.fs8{font-size:224.000000pt;}
.fsa{font-size:256.000000pt;}
.fs9{font-size:461.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.265213pt;}
.y34{bottom:41.196800pt;}
.y20{bottom:44.680709pt;}
.y1f{bottom:56.560644pt;}
.y1e{bottom:68.440579pt;}
.y1d{bottom:80.320514pt;}
.y1c{bottom:90.471887pt;}
.y33{bottom:90.708667pt;}
.yb2{bottom:90.708800pt;}
.y92{bottom:90.711467pt;}
.y6b{bottom:90.727600pt;}
.yf4{bottom:91.568400pt;}
.y122{bottom:92.418400pt;}
.yd1{bottom:92.593867pt;}
.y10d{bottom:92.595867pt;}
.y44{bottom:96.391600pt;}
.y91{bottom:105.375467pt;}
.y6a{bottom:105.391600pt;}
.y121{bottom:106.818400pt;}
.y1b{bottom:109.706068pt;}
.yf3{bottom:109.975067pt;}
.y43{bottom:110.791600pt;}
.yd0{bottom:110.853867pt;}
.y10c{bottom:110.855867pt;}
.y69{bottom:120.055600pt;}
.y120{bottom:121.218400pt;}
.y21{bottom:121.581067pt;}
.y28{bottom:126.612800pt;}
.yf2{bottom:128.381733pt;}
.y42{bottom:128.971600pt;}
.ycf{bottom:129.113867pt;}
.y10b{bottom:129.115867pt;}
.yb1{bottom:129.731067pt;}
.y68{bottom:134.719600pt;}
.y11f{bottom:135.618400pt;}
.y41{bottom:143.371600pt;}
.y90{bottom:146.039867pt;}
.yf1{bottom:146.788400pt;}
.yce{bottom:147.373867pt;}
.y10a{bottom:147.375867pt;}
.yb0{bottom:148.137733pt;}
.y67{bottom:149.383600pt;}
.y11e{bottom:150.018400pt;}
.y14f{bottom:152.851867pt;}
.y40{bottom:157.771600pt;}
.y1a{bottom:159.645796pt;}
.y27{bottom:163.939467pt;}
.y66{bottom:164.047600pt;}
.y11d{bottom:164.418400pt;}
.y8f{bottom:164.446533pt;}
.yf0{bottom:165.195067pt;}
.ycd{bottom:165.633867pt;}
.y109{bottom:165.635867pt;}
.yaf{bottom:166.544400pt;}
.y14e{bottom:167.383867pt;}
.y19{bottom:168.550509pt;}
.y3f{bottom:172.171600pt;}
.y18{bottom:176.721893pt;}
.y65{bottom:178.711600pt;}
.y11c{bottom:178.818400pt;}
.y14d{bottom:181.915867pt;}
.y26{bottom:182.610133pt;}
.y8e{bottom:182.853200pt;}
.ycc{bottom:183.893867pt;}
.y108{bottom:183.895867pt;}
.y17{bottom:184.138996pt;}
.yae{bottom:184.951067pt;}
.y3e{bottom:186.571600pt;}
.yef{bottom:187.371067pt;}
.y16{bottom:191.566574pt;}
.y11b{bottom:193.218400pt;}
.y64{bottom:193.375600pt;}
.y14c{bottom:196.447867pt;}
.y15{bottom:198.994153pt;}
.y3d{bottom:200.971600pt;}
.y8d{bottom:201.259867pt;}
.y25{bottom:201.280800pt;}
.ycb{bottom:202.153867pt;}
.y107{bottom:202.155867pt;}
.yad{bottom:203.357733pt;}
.yee{bottom:205.777733pt;}
.y14{bottom:206.411255pt;}
.y11a{bottom:207.618400pt;}
.y14b{bottom:210.979867pt;}
.y13{bottom:213.838834pt;}
.y3c{bottom:215.371600pt;}
.y8c{bottom:219.666533pt;}
.yca{bottom:220.413867pt;}
.y106{bottom:220.415867pt;}
.y12{bottom:221.266412pt;}
.yac{bottom:221.764400pt;}
.y119{bottom:222.018400pt;}
.yed{bottom:224.184400pt;}
.y14a{bottom:225.511867pt;}
.y11{bottom:228.683515pt;}
.y3b{bottom:229.771600pt;}
.y10{bottom:236.111093pt;}
.y118{bottom:236.418400pt;}
.y63{bottom:236.765867pt;}
.y8b{bottom:238.073200pt;}
.yc9{bottom:238.673867pt;}
.y105{bottom:238.675867pt;}
.y149{bottom:240.043867pt;}
.yab{bottom:240.171067pt;}
.yec{bottom:242.591067pt;}
.yf{bottom:243.538672pt;}
.y117{bottom:250.818400pt;}
.y32{bottom:252.826400pt;}
.y148{bottom:254.575867pt;}
.y62{bottom:255.172533pt;}
.y8a{bottom:256.479867pt;}
.yc8{bottom:256.933867pt;}
.y104{bottom:256.935867pt;}
.yaa{bottom:258.577733pt;}
.ye{bottom:258.812874pt;}
.yeb{bottom:260.997733pt;}
.y116{bottom:265.218400pt;}
.y147{bottom:269.107867pt;}
.y31{bottom:271.497067pt;}
.y61{bottom:273.579200pt;}
.y89{bottom:274.886533pt;}
.yc7{bottom:275.193867pt;}
.y103{bottom:275.195867pt;}
.ya9{bottom:276.984400pt;}
.yea{bottom:279.404400pt;}
.y115{bottom:279.618400pt;}
.y146{bottom:283.639867pt;}
.y30{bottom:290.167733pt;}
.y60{bottom:291.819200pt;}
.y88{bottom:293.293200pt;}
.yc6{bottom:293.453867pt;}
.y102{bottom:293.455867pt;}
.y114{bottom:294.018400pt;}
.ya8{bottom:295.391067pt;}
.ye9{bottom:297.811067pt;}
.y145{bottom:298.171867pt;}
.y113{bottom:308.418400pt;}
.y2f{bottom:308.838400pt;}
.y5f{bottom:310.225867pt;}
.y87{bottom:311.699867pt;}
.yc5{bottom:311.713867pt;}
.y101{bottom:311.715867pt;}
.y144{bottom:312.703867pt;}
.ya7{bottom:313.797733pt;}
.ye8{bottom:316.217733pt;}
.y143{bottom:327.235867pt;}
.y2e{bottom:327.509067pt;}
.y5e{bottom:328.632533pt;}
.yc4{bottom:329.973867pt;}
.y100{bottom:329.975867pt;}
.y86{bottom:330.106533pt;}
.ya6{bottom:332.204400pt;}
.ye7{bottom:334.624400pt;}
.y112{bottom:336.046667pt;}
.y142{bottom:341.767867pt;}
.y2d{bottom:346.179733pt;}
.y5d{bottom:347.039200pt;}
.yc3{bottom:348.233867pt;}
.yff{bottom:348.235867pt;}
.y85{bottom:348.513200pt;}
.ya5{bottom:350.611067pt;}
.ye6{bottom:353.031067pt;}
.y141{bottom:356.299867pt;}
.y2c{bottom:364.850400pt;}
.y5c{bottom:365.445867pt;}
.yd{bottom:366.444668pt;}
.yc2{bottom:366.493867pt;}
.yfe{bottom:366.495867pt;}
.y84{bottom:366.919867pt;}
.ya4{bottom:369.017733pt;}
.y140{bottom:370.831867pt;}
.ye5{bottom:371.437733pt;}
.y5b{bottom:383.852533pt;}
.yc1{bottom:384.753867pt;}
.yfd{bottom:384.755867pt;}
.y83{bottom:385.326533pt;}
.y13f{bottom:385.363867pt;}
.ya3{bottom:387.424400pt;}
.y111{bottom:388.539867pt;}
.y13e{bottom:399.895867pt;}
.y5a{bottom:402.259200pt;}
.yc0{bottom:403.013867pt;}
.yfc{bottom:403.015867pt;}
.y82{bottom:403.733200pt;}
.ye4{bottom:405.711867pt;}
.ya2{bottom:405.831067pt;}
.y110{bottom:406.799867pt;}
.y13d{bottom:414.427867pt;}
.y59{bottom:420.665867pt;}
.ybf{bottom:421.273867pt;}
.yfb{bottom:421.275867pt;}
.y81{bottom:422.139867pt;}
.ya1{bottom:424.164400pt;}
.y10f{bottom:425.059867pt;}
.y13c{bottom:428.959867pt;}
.y58{bottom:439.072533pt;}
.ybe{bottom:439.533867pt;}
.yfa{bottom:439.535867pt;}
.y80{bottom:440.546533pt;}
.ya0{bottom:442.571067pt;}
.y2b{bottom:442.717067pt;}
.y10e{bottom:443.319867pt;}
.y13b{bottom:443.491867pt;}
.y57{bottom:457.479200pt;}
.ybd{bottom:457.793867pt;}
.yf9{bottom:457.795867pt;}
.y13a{bottom:458.023867pt;}
.y7f{bottom:458.953200pt;}
.y9f{bottom:460.977733pt;}
.ye3{bottom:461.579867pt;}
.y139{bottom:472.555867pt;}
.y2a{bottom:473.117067pt;}
.y56{bottom:475.885867pt;}
.ybc{bottom:476.053867pt;}
.yf8{bottom:476.055867pt;}
.y7e{bottom:477.359867pt;}
.y9e{bottom:479.384400pt;}
.ye2{bottom:479.839867pt;}
.y138{bottom:487.087867pt;}
.y55{bottom:494.292533pt;}
.ybb{bottom:494.313867pt;}
.yf7{bottom:494.315867pt;}
.y7d{bottom:495.766533pt;}
.y9d{bottom:497.791067pt;}
.ye1{bottom:498.099867pt;}
.y137{bottom:501.619867pt;}
.y29{bottom:503.517067pt;}
.y162{bottom:509.252667pt;}
.yc{bottom:510.596263pt;}
.yba{bottom:512.573867pt;}
.yf6{bottom:512.575867pt;}
.y54{bottom:512.699200pt;}
.y7c{bottom:514.173200pt;}
.y136{bottom:516.151867pt;}
.y9c{bottom:516.197733pt;}
.ye0{bottom:516.359867pt;}
.y161{bottom:525.680667pt;}
.y135{bottom:530.683867pt;}
.yf5{bottom:530.835867pt;}
.y53{bottom:531.105867pt;}
.y7b{bottom:532.579867pt;}
.yb{bottom:533.497090pt;}
.y9b{bottom:534.604400pt;}
.yb9{bottom:534.617867pt;}
.ydf{bottom:534.619867pt;}
.y160{bottom:540.212667pt;}
.y134{bottom:545.215867pt;}
.ya{bottom:545.377025pt;}
.y52{bottom:549.512533pt;}
.y7a{bottom:550.986533pt;}
.yde{bottom:552.879867pt;}
.y9a{bottom:553.011067pt;}
.yb8{bottom:553.024533pt;}
.y15f{bottom:554.744667pt;}
.y133{bottom:559.747867pt;}
.y51{bottom:567.919200pt;}
.y9{bottom:568.508328pt;}
.y15e{bottom:569.276667pt;}
.y79{bottom:569.393200pt;}
.ydd{bottom:571.139867pt;}
.y99{bottom:571.417733pt;}
.yb7{bottom:571.431200pt;}
.y132{bottom:574.279867pt;}
.y3a{bottom:578.659867pt;}
.y8{bottom:580.388263pt;}
.y15d{bottom:583.808667pt;}
.y24{bottom:584.157200pt;}
.y50{bottom:586.325867pt;}
.y78{bottom:587.799867pt;}
.y131{bottom:588.811867pt;}
.ydc{bottom:589.399867pt;}
.y98{bottom:589.824400pt;}
.yb6{bottom:589.837867pt;}
.y7{bottom:592.268198pt;}
.y15c{bottom:598.340667pt;}
.y130{bottom:603.343867pt;}
.y6{bottom:604.148133pt;}
.y4f{bottom:604.732533pt;}
.y77{bottom:606.206533pt;}
.ydb{bottom:607.659867pt;}
.y97{bottom:608.231067pt;}
.y39{bottom:612.259867pt;}
.y15b{bottom:612.872667pt;}
.y12f{bottom:617.875867pt;}
.y4e{bottom:623.139200pt;}
.yb5{bottom:624.111867pt;}
.y76{bottom:624.613200pt;}
.yda{bottom:625.919867pt;}
.y96{bottom:626.637733pt;}
.y15a{bottom:627.404667pt;}
.y6c{bottom:628.634667pt;}
.y12e{bottom:632.407867pt;}
.y4d{bottom:641.545867pt;}
.y159{bottom:641.936667pt;}
.y23{bottom:642.845200pt;}
.y75{bottom:643.019867pt;}
.yd9{bottom:644.179867pt;}
.y38{bottom:645.859867pt;}
.y12d{bottom:646.939867pt;}
.y5{bottom:659.504022pt;}
.y4c{bottom:659.952533pt;}
.y95{bottom:660.911867pt;}
.y74{bottom:661.426533pt;}
.y12c{bottom:661.471867pt;}
.yd8{bottom:662.439867pt;}
.y158{bottom:667.808667pt;}
.y12b{bottom:676.003867pt;}
.y4{bottom:677.124878pt;}
.y4b{bottom:678.359200pt;}
.y37{bottom:679.459867pt;}
.yb4{bottom:679.819867pt;}
.y73{bottom:679.833200pt;}
.yd7{bottom:680.699867pt;}
.y157{bottom:684.236667pt;}
.y12a{bottom:690.535867pt;}
.y4a{bottom:696.765867pt;}
.y3{bottom:697.909527pt;}
.yb3{bottom:698.226533pt;}
.y72{bottom:698.239867pt;}
.y156{bottom:698.768667pt;}
.yd6{bottom:698.959867pt;}
.y129{bottom:705.067867pt;}
.y155{bottom:713.300667pt;}
.y49{bottom:715.172533pt;}
.y94{bottom:716.633200pt;}
.y71{bottom:716.646533pt;}
.yd5{bottom:717.219867pt;}
.y2{bottom:718.704651pt;}
.y128{bottom:719.599867pt;}
.y22{bottom:721.511867pt;}
.y154{bottom:727.832667pt;}
.y48{bottom:733.579200pt;}
.y127{bottom:734.131867pt;}
.y93{bottom:735.039867pt;}
.y70{bottom:735.053200pt;}
.yd4{bottom:735.479867pt;}
.y153{bottom:742.364667pt;}
.y36{bottom:746.659867pt;}
.y126{bottom:748.663867pt;}
.y47{bottom:751.985867pt;}
.y6f{bottom:753.446533pt;}
.yd3{bottom:753.739867pt;}
.y152{bottom:756.896667pt;}
.y125{bottom:763.195867pt;}
.y151{bottom:771.428667pt;}
.y6e{bottom:771.853200pt;}
.yd2{bottom:771.999867pt;}
.y124{bottom:777.727867pt;}
.y35{bottom:780.259867pt;}
.y150{bottom:785.960667pt;}
.y46{bottom:786.259867pt;}
.y6d{bottom:790.259867pt;}
.y123{bottom:792.259867pt;}
.y45{bottom:846.236267pt;}
.h9{height:21.735881pt;}
.h7{height:24.841007pt;}
.h8{height:24.908055pt;}
.h16{height:27.093750pt;}
.hc{height:27.946133pt;}
.h6{height:31.051259pt;}
.ha{height:31.135068pt;}
.h5{height:34.156385pt;}
.hb{height:34.777410pt;}
.h20{height:38.062500pt;}
.h21{height:38.812500pt;}
.h1a{height:40.640625pt;}
.h3{height:43.471763pt;}
.h4{height:43.589096pt;}
.h12{height:46.520833pt;}
.h15{height:48.242188pt;}
.h13{height:49.671875pt;}
.h1e{height:49.725208pt;}
.h1f{height:49.965208pt;}
.h1d{height:50.338542pt;}
.h1b{height:54.187500pt;}
.h1c{height:64.687500pt;}
.h17{height:77.929688pt;}
.h14{height:85.796875pt;}
.h18{height:88.812500pt;}
.h19{height:94.828125pt;}
.hf{height:153.125000pt;}
.h11{height:203.000000pt;}
.h10{height:315.364583pt;}
.h2{height:881.975189pt;}
.h0{height:882.506667pt;}
.h1{height:882.666667pt;}
.he{height:888.000000pt;}
.hd{height:888.189333pt;}
.w1{width:623.333333pt;}
.w3{width:623.622667pt;}
.w2{width:623.623265pt;}
.w0{width:623.626667pt;}
.x0{left:0.000000pt;}
.x3{left:32.664584pt;}
.x1{left:38.604551pt;}
.x15{left:41.574800pt;}
.x1b{left:53.574800pt;}
.x1a{left:68.031467pt;}
.x8{left:71.294000pt;}
.x13{left:76.503467pt;}
.x12{left:82.414133pt;}
.x1d{left:86.929067pt;}
.xd{left:95.037067pt;}
.xf{left:99.588800pt;}
.x14{left:101.495467pt;}
.xb{left:102.915733pt;}
.x2{left:103.933719pt;}
.xc{left:110.363733pt;}
.x9{left:120.852667pt;}
.x17{left:143.622000pt;}
.x10{left:150.951467pt;}
.x1c{left:162.512667pt;}
.x7{left:169.238000pt;}
.x29{left:182.064533pt;}
.x11{left:211.979467pt;}
.xa{left:250.242000pt;}
.xe{left:273.007467pt;}
.x1f{left:286.092533pt;}
.x4{left:305.871665pt;}
.x25{left:313.296533pt;}
.x20{left:318.312533pt;}
.x2b{left:319.500533pt;}
.x2a{left:324.168533pt;}
.x28{left:325.176533pt;}
.x21{left:329.424533pt;}
.x22{left:337.116533pt;}
.x16{left:361.852267pt;}
.x23{left:373.128533pt;}
.x1e{left:376.980533pt;}
.x24{left:390.792533pt;}
.x26{left:393.996533pt;}
.x27{left:395.688533pt;}
.x5{left:399.557467pt;}
.x6{left:427.691333pt;}
.x18{left:564.792400pt;}
.x19{left:570.047200pt;}
}




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