
    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_f0815fd371834bf49fc4cd29.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.940000;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_922e16c876b926598563065b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6c279e4c399248af315c2b75.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.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:ff4;src:url('chunks/assets/font_8a32e2ef6dfeac6e76c50c32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_8c2a733d36b0e56d4075f730.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.950000;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_6b07fb3caf40bb0bd0429be2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.737000;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_167b887508cb8b62f5450600.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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_d10894af892f9cc1bae96f91.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.721000;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_6ba888af8f108d56dd569c34.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.419000;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_c7ebcdb753d86d99936aac3a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.728000;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_5982724d6a899c1db510d9e9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700000;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_ea52bdf6c606d1c63865f1f3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.750000;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;}
.m1{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,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);}
.v4{vertical-align:-31.968000px;}
.v6{vertical-align:-19.980000px;}
.v3{vertical-align:-15.984000px;}
.v2{vertical-align:-1.197600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.800000px;}
.v9{vertical-align:14.832000px;}
.v8{vertical-align:15.984000px;}
.v5{vertical-align:17.982000px;}
.v7{vertical-align:19.980000px;}
.lsc{letter-spacing:-4.740000px;}
.ls6{letter-spacing:-4.440000px;}
.ls7{letter-spacing:-1.800000px;}
.ls8{letter-spacing:-0.900000px;}
.ls3{letter-spacing:-0.643632px;}
.lse{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.524700px;}
.ls1{letter-spacing:-0.480000px;}
.lsa{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.174900px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000120px;}
.ls0{letter-spacing:0.000408px;}
.ls5{letter-spacing:0.000600px;}
.lsf{letter-spacing:12.624000px;}
.lsd{letter-spacing:251.629896px;}
.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;}
}
.wsb{word-spacing:-16.680000px;}
.ws13{word-spacing:-16.380000px;}
.ws1c{word-spacing:-16.080000px;}
.wsf{word-spacing:-15.780000px;}
.ws4{word-spacing:-15.559104px;}
.wse{word-spacing:-14.880000px;}
.ws7{word-spacing:-13.344000px;}
.ws1{word-spacing:-12.864000px;}
.wsc{word-spacing:-12.240000px;}
.ws3{word-spacing:-12.000000px;}
.ws15{word-spacing:-11.940000px;}
.ws8{word-spacing:-9.724440px;}
.ws14{word-spacing:-9.549540px;}
.ws10{word-spacing:-9.199740px;}
.ws1a{word-spacing:-9.180000px;}
.ws5{word-spacing:-8.751996px;}
.ws16{word-spacing:-7.779552px;}
.ws1b{word-spacing:-7.344000px;}
.ws2{word-spacing:-6.352368px;}
.wsa{word-spacing:-2.640000px;}
.ws11{word-spacing:-1.080000px;}
.ws12{word-spacing:-0.900000px;}
.ws17{word-spacing:-0.864000px;}
.ws1d{word-spacing:-0.600000px;}
.ws6{word-spacing:-0.054000px;}
.ws0{word-spacing:-0.048000px;}
.ws9{word-spacing:0.000000px;}
.wsd{word-spacing:14.652000px;}
.ws18{word-spacing:227.507688px;}
.ws19{word-spacing:641.309400px;}
._20{margin-left:-12.744000px;}
._25{margin-left:-11.424600px;}
._f{margin-left:-9.876000px;}
._c{margin-left:-8.484000px;}
._8{margin-left:-7.113600px;}
._4{margin-left:-5.956800px;}
._a{margin-left:-4.873560px;}
._5{margin-left:-3.120000px;}
._3{margin-left:-1.776000px;}
._6{width:1.286424px;}
._2{width:2.640000px;}
._7{width:3.787200px;}
._1e{width:7.359384px;}
._10{width:9.160380px;}
._b{width:10.656000px;}
._e{width:13.320000px;}
._d{width:14.652000px;}
._0{width:33.691200px;}
._21{width:37.200000px;}
._24{width:39.336000px;}
._23{width:40.656000px;}
._9{width:46.766400px;}
._11{width:216.613200px;}
._16{width:219.254400px;}
._1d{width:229.910400px;}
._1b{width:232.550400px;}
._18{width:272.534400px;}
._17{width:275.173200px;}
._1c{width:312.566400px;}
._19{width:328.648200px;}
._13{width:384.793416px;}
._14{width:527.597400px;}
._12{width:548.046600px;}
._1a{width:653.760000px;}
._15{width:655.546800px;}
._1f{width:1449.453000px;}
._22{width:1453.004400px;}
._1{width:1475.661000px;}
.fc1{color:rgb(66,93,177);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:27.984000px;}
.fs6{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:49.072408px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:55.968000px;}
.fs8{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs7{font-size:84.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:54.139800px;}
.y123{bottom:122.523600px;}
.yd7{bottom:122.971500px;}
.yf2{bottom:123.897900px;}
.ycb{bottom:124.365600px;}
.ybb{bottom:124.740600px;}
.y11e{bottom:125.115600px;}
.y133{bottom:127.740600px;}
.y1b{bottom:134.191500px;}
.y17d{bottom:136.293600px;}
.y6a{bottom:143.151600px;}
.y122{bottom:143.523600px;}
.yd6{bottom:143.971500px;}
.yf1{bottom:144.897900px;}
.yca{bottom:145.365600px;}
.yba{bottom:145.740600px;}
.y11d{bottom:146.115600px;}
.y132{bottom:148.740600px;}
.y1a{bottom:150.691500px;}
.y17c{bottom:151.293600px;}
.y149{bottom:151.365600px;}
.y69{bottom:164.151600px;}
.y121{bottom:164.523600px;}
.yd5{bottom:164.971500px;}
.yf0{bottom:165.897900px;}
.y18c{bottom:166.293600px;}
.yc9{bottom:166.365600px;}
.y11c{bottom:167.115600px;}
.y19{bottom:167.191500px;}
.y131{bottom:169.740600px;}
.y17b{bottom:170.793600px;}
.yb9{bottom:172.740600px;}
.y3f{bottom:173.088000px;}
.y18{bottom:183.691500px;}
.y68{bottom:185.151600px;}
.y120{bottom:185.523600px;}
.y17a{bottom:185.793600px;}
.y148{bottom:185.865600px;}
.yd4{bottom:185.971500px;}
.yef{bottom:186.897900px;}
.y11b{bottom:188.115600px;}
.y130{bottom:190.740600px;}
.yc8{bottom:193.365600px;}
.y3e{bottom:195.588000px;}
.y18b{bottom:200.793600px;}
.y147{bottom:200.865600px;}
.y179{bottom:205.293600px;}
.y67{bottom:206.151600px;}
.y11f{bottom:206.523600px;}
.yd3{bottom:206.971500px;}
.yee{bottom:207.897900px;}
.y11a{bottom:209.115600px;}
.y17{bottom:209.191500px;}
.yb8{bottom:211.740600px;}
.y3d{bottom:218.088000px;}
.yc7{bottom:219.240600px;}
.y178{bottom:220.293600px;}
.y146{bottom:220.740600px;}
.y16{bottom:225.691500px;}
.y66{bottom:227.151600px;}
.yd2{bottom:227.971500px;}
.yed{bottom:228.897900px;}
.y119{bottom:230.115600px;}
.yb7{bottom:232.740600px;}
.y18a{bottom:235.293600px;}
.y177{bottom:239.793600px;}
.y3c{bottom:240.588000px;}
.y15{bottom:242.191500px;}
.y65{bottom:248.151600px;}
.yd1{bottom:248.971500px;}
.yec{bottom:249.897900px;}
.y118{bottom:251.115600px;}
.yb6{bottom:253.740600px;}
.y176{bottom:254.793600px;}
.y128{bottom:256.413600px;}
.y14{bottom:258.691500px;}
.y3b{bottom:263.088000px;}
.y145{bottom:265.740600px;}
.y64{bottom:269.151600px;}
.y189{bottom:269.793600px;}
.yd0{bottom:269.971500px;}
.yeb{bottom:270.897900px;}
.y117{bottom:272.115600px;}
.y175{bottom:274.293600px;}
.yb5{bottom:274.740600px;}
.y13{bottom:275.191500px;}
.y12f{bottom:279.615600px;}
.y127{bottom:280.413600px;}
.y3a{bottom:285.588000px;}
.y144{bottom:286.740600px;}
.y174{bottom:289.293600px;}
.y63{bottom:290.151600px;}
.ycf{bottom:290.971500px;}
.y12{bottom:291.691500px;}
.yea{bottom:291.898050px;}
.y116{bottom:293.115600px;}
.y126{bottom:295.413600px;}
.yb4{bottom:295.740600px;}
.y39{bottom:308.088000px;}
.y11{bottom:308.191500px;}
.y173{bottom:308.793600px;}
.y125{bottom:310.413600px;}
.y62{bottom:311.151600px;}
.yce{bottom:311.971500px;}
.y143{bottom:312.240600px;}
.ye9{bottom:312.898050px;}
.y115{bottom:314.115600px;}
.yb3{bottom:316.740600px;}
.y12e{bottom:317.115600px;}
.y172{bottom:323.793600px;}
.y10{bottom:324.691500px;}
.y124{bottom:325.413600px;}
.y38{bottom:330.588000px;}
.y61{bottom:332.151600px;}
.ycd{bottom:332.971500px;}
.ye8{bottom:333.898050px;}
.y114{bottom:335.115600px;}
.yb2{bottom:337.740600px;}
.y12d{bottom:338.115600px;}
.y171{bottom:343.293600px;}
.yf{bottom:350.191500px;}
.y37{bottom:353.088000px;}
.y60{bottom:353.151600px;}
.ycc{bottom:353.971500px;}
.ye7{bottom:354.898050px;}
.y113{bottom:356.115600px;}
.y170{bottom:358.293600px;}
.yb1{bottom:358.740600px;}
.y12c{bottom:359.115600px;}
.y92{bottom:362.826000px;}
.y142{bottom:363.240600px;}
.y5f{bottom:374.151600px;}
.y36{bottom:375.588000px;}
.ye{bottom:375.691500px;}
.ye6{bottom:375.898050px;}
.y112{bottom:377.115600px;}
.y16f{bottom:377.793600px;}
.y91{bottom:379.326000px;}
.yb0{bottom:379.740600px;}
.y12b{bottom:380.115600px;}
.y141{bottom:388.740600px;}
.y16e{bottom:392.793600px;}
.ydb{bottom:394.861500px;}
.y5e{bottom:395.151600px;}
.y90{bottom:395.826000px;}
.ye5{bottom:396.898050px;}
.y35{bottom:398.088000px;}
.yaf{bottom:400.740600px;}
.y12a{bottom:401.115600px;}
.yd{bottom:401.191500px;}
.y111{bottom:404.115600px;}
.y16d{bottom:412.293600px;}
.y8f{bottom:412.326000px;}
.y140{bottom:414.240600px;}
.y5d{bottom:416.151600px;}
.ye4{bottom:417.898050px;}
.yda{bottom:418.861500px;}
.y34{bottom:420.588000px;}
.yae{bottom:421.740600px;}
.y129{bottom:422.115600px;}
.yc{bottom:426.691500px;}
.y16c{bottom:427.293600px;}
.y8e{bottom:428.826000px;}
.yd9{bottom:433.861500px;}
.y5c{bottom:437.151600px;}
.ye3{bottom:438.898050px;}
.y13f{bottom:440.115600px;}
.y16b{bottom:442.293600px;}
.yad{bottom:442.740600px;}
.y33{bottom:443.088000px;}
.y110{bottom:443.115600px;}
.yb{bottom:443.191500px;}
.y8d{bottom:445.326000px;}
.y188{bottom:446.793600px;}
.yd8{bottom:448.861500px;}
.y5b{bottom:458.151600px;}
.ye2{bottom:459.898050px;}
.y16a{bottom:461.793600px;}
.y8c{bottom:461.826000px;}
.yac{bottom:463.740600px;}
.y10f{bottom:464.115600px;}
.y32{bottom:465.588000px;}
.ya{bottom:468.691500px;}
.y169{bottom:476.793600px;}
.y8b{bottom:478.326000px;}
.y13e{bottom:479.115600px;}
.y5a{bottom:479.151600px;}
.ye1{bottom:480.898050px;}
.y187{bottom:481.293600px;}
.yab{bottom:484.740600px;}
.y10e{bottom:485.115600px;}
.y9{bottom:485.191500px;}
.y31{bottom:488.088000px;}
.y8a{bottom:494.826000px;}
.y168{bottom:496.293600px;}
.y13d{bottom:500.115600px;}
.y59{bottom:500.151600px;}
.y186{bottom:500.793600px;}
.y8{bottom:501.691500px;}
.ye0{bottom:501.898050px;}
.yaa{bottom:505.740600px;}
.y10d{bottom:506.115600px;}
.y30{bottom:510.588000px;}
.y89{bottom:511.326000px;}
.y167{bottom:515.793600px;}
.y7{bottom:518.191500px;}
.y13c{bottom:521.115600px;}
.y58{bottom:521.151600px;}
.ydf{bottom:522.898050px;}
.ya9{bottom:526.740600px;}
.y10c{bottom:527.115600px;}
.y88{bottom:527.826000px;}
.y166{bottom:530.793600px;}
.y2f{bottom:533.088000px;}
.y6{bottom:534.691500px;}
.y185{bottom:535.293600px;}
.y13b{bottom:542.115600px;}
.y57{bottom:542.151600px;}
.yde{bottom:543.898050px;}
.y87{bottom:544.326000px;}
.yc6{bottom:547.740600px;}
.y10b{bottom:548.115600px;}
.y165{bottom:550.293600px;}
.y5{bottom:551.191500px;}
.ya8{bottom:553.740600px;}
.y2e{bottom:555.588000px;}
.y86{bottom:560.826000px;}
.y56{bottom:563.151600px;}
.ydd{bottom:564.898050px;}
.y164{bottom:565.293600px;}
.y4{bottom:567.691500px;}
.yc5{bottom:568.740600px;}
.y10a{bottom:569.115600px;}
.y184{bottom:569.793600px;}
.y13a{bottom:572.865600px;}
.y85{bottom:577.326000px;}
.y2d{bottom:578.088000px;}
.ya7{bottom:579.615600px;}
.y55{bottom:584.151600px;}
.y163{bottom:584.793600px;}
.ydc{bottom:585.898050px;}
.yc4{bottom:589.740600px;}
.y109{bottom:590.115600px;}
.y3{bottom:592.441500px;}
.y84{bottom:593.826000px;}
.y139{bottom:593.865600px;}
.y162{bottom:599.793600px;}
.y2c{bottom:600.588000px;}
.y183{bottom:604.293600px;}
.y54{bottom:605.151600px;}
.y83{bottom:610.326000px;}
.yc3{bottom:610.740600px;}
.y108{bottom:611.115600px;}
.y138{bottom:614.865600px;}
.y161{bottom:619.293600px;}
.y2b{bottom:623.088000px;}
.y53{bottom:626.151600px;}
.yc2{bottom:631.740600px;}
.ya6{bottom:632.115600px;}
.y160{bottom:634.293600px;}
.y82{bottom:635.826000px;}
.y182{bottom:638.793600px;}
.y137{bottom:645.615600px;}
.y52{bottom:647.151600px;}
.y81{bottom:652.326000px;}
.yc1{bottom:652.740600px;}
.ya5{bottom:653.115600px;}
.y15f{bottom:653.793600px;}
.y2a{bottom:654.288000px;}
.y107{bottom:656.787900px;}
.y136{bottom:666.615600px;}
.y51{bottom:668.151600px;}
.y80{bottom:668.826000px;}
.y15e{bottom:673.293600px;}
.yc0{bottom:673.740600px;}
.ya4{bottom:674.115600px;}
.y2{bottom:680.191500px;}
.y106{bottom:680.787900px;}
.y7f{bottom:685.326000px;}
.y135{bottom:687.615600px;}
.y15d{bottom:688.293600px;}
.y50{bottom:689.151600px;}
.ybf{bottom:694.740600px;}
.ya3{bottom:695.115600px;}
.y105{bottom:695.787900px;}
.y7e{bottom:701.826000px;}
.y15c{bottom:707.793600px;}
.y4f{bottom:710.151600px;}
.y104{bottom:710.787900px;}
.y134{bottom:713.115600px;}
.y29{bottom:713.538000px;}
.ybe{bottom:715.740600px;}
.ya2{bottom:716.115600px;}
.y7d{bottom:718.326000px;}
.y15b{bottom:722.793600px;}
.y103{bottom:725.787900px;}
.y4e{bottom:731.151600px;}
.y7c{bottom:734.826000px;}
.ybd{bottom:736.740600px;}
.ya1{bottom:737.115600px;}
.y102{bottom:740.787900px;}
.y15a{bottom:742.293600px;}
.y28{bottom:745.038000px;}
.y7b{bottom:751.326000px;}
.y4d{bottom:752.151600px;}
.y159{bottom:757.293600px;}
.ya0{bottom:758.115600px;}
.y101{bottom:759.162900px;}
.y27{bottom:760.038000px;}
.ybc{bottom:762.615600px;}
.y7a{bottom:767.826000px;}
.y4c{bottom:773.151600px;}
.y26{bottom:775.038000px;}
.y158{bottom:776.793600px;}
.y100{bottom:778.374900px;}
.y9f{bottom:779.115600px;}
.y79{bottom:784.326000px;}
.y25{bottom:790.038000px;}
.y157{bottom:791.793600px;}
.y4b{bottom:794.151600px;}
.yff{bottom:797.586900px;}
.y9e{bottom:800.115600px;}
.y78{bottom:800.826000px;}
.y24{bottom:805.038000px;}
.y156{bottom:811.293600px;}
.y4a{bottom:815.151600px;}
.yfe{bottom:816.798900px;}
.y77{bottom:817.326000px;}
.y23{bottom:820.038000px;}
.y9d{bottom:821.115600px;}
.y155{bottom:826.293600px;}
.y76{bottom:833.826000px;}
.y49{bottom:836.151600px;}
.yfd{bottom:836.298900px;}
.y9c{bottom:842.115600px;}
.y154{bottom:845.793600px;}
.y22{bottom:849.288000px;}
.y75{bottom:850.326000px;}
.yfc{bottom:855.510900px;}
.y48{bottom:857.151600px;}
.y153{bottom:860.793600px;}
.y9b{bottom:863.115600px;}
.y21{bottom:865.788000px;}
.y74{bottom:866.826000px;}
.yfb{bottom:874.722900px;}
.y47{bottom:878.151600px;}
.y152{bottom:880.293600px;}
.y20{bottom:882.288000px;}
.y73{bottom:883.326000px;}
.y9a{bottom:884.115600px;}
.yfa{bottom:893.934750px;}
.y151{bottom:895.293600px;}
.y46{bottom:899.151600px;}
.y181{bottom:899.793600px;}
.y72{bottom:899.826000px;}
.y99{bottom:905.115600px;}
.yf9{bottom:913.146750px;}
.y150{bottom:914.793600px;}
.y71{bottom:916.326000px;}
.y1f{bottom:917.163000px;}
.y45{bottom:920.151600px;}
.y98{bottom:926.115600px;}
.y14f{bottom:929.793600px;}
.yf8{bottom:932.358750px;}
.y70{bottom:932.826000px;}
.y180{bottom:934.293600px;}
.y44{bottom:941.151600px;}
.y1e{bottom:943.788000px;}
.y97{bottom:947.115600px;}
.y14e{bottom:949.293600px;}
.yf7{bottom:951.570750px;}
.y6f{bottom:958.326000px;}
.y43{bottom:962.151600px;}
.y14d{bottom:964.293600px;}
.y96{bottom:968.115600px;}
.y17f{bottom:968.793600px;}
.y1d{bottom:970.413000px;}
.yf6{bottom:970.782750px;}
.y6e{bottom:974.826000px;}
.y42{bottom:983.151600px;}
.y14c{bottom:983.793600px;}
.y95{bottom:989.115600px;}
.yf5{bottom:989.994750px;}
.y6d{bottom:991.326000px;}
.y14b{bottom:998.793600px;}
.y1c{bottom:1000.038000px;}
.y17e{bottom:1003.293600px;}
.y41{bottom:1004.151600px;}
.y94{bottom:1010.115600px;}
.yf4{bottom:1012.206600px;}
.y6c{bottom:1016.826000px;}
.y14a{bottom:1018.293600px;}
.y40{bottom:1030.026600px;}
.y93{bottom:1031.115600px;}
.yf3{bottom:1033.293600px;}
.y6b{bottom:1033.326000px;}
.h3{height:34.944000px;}
.h2{height:35.040000px;}
.he{height:35.260320px;}
.h4{height:35.724713px;}
.hf{height:36.000000px;}
.hd{height:36.356352px;}
.hc{height:36.412320px;}
.h1{height:37.800000px;}
.h6{height:40.900896px;}
.ha{height:43.680000px;}
.h8{height:43.800000px;}
.hb{height:45.515400px;}
.h9{height:48.048000px;}
.h7{height:61.152000px;}
.h5{height:69.888000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:53.832750px;}
.x3{left:67.705800px;}
.x8{left:72.000000px;}
.xb{left:73.500000px;}
.xc{left:76.794000px;}
.xd{left:84.000000px;}
.x2{left:137.951250px;}
.x9{left:148.161600px;}
.x4{left:217.209750px;}
.x5{left:223.209750px;}
.x6{left:297.000000px;}
.x7{left:315.000000px;}
.xa{left:402.626400px;}
@media print{
.v4{vertical-align:-28.416000pt;}
.v6{vertical-align:-17.760000pt;}
.v3{vertical-align:-14.208000pt;}
.v2{vertical-align:-1.064533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.600000pt;}
.v9{vertical-align:13.184000pt;}
.v8{vertical-align:14.208000pt;}
.v5{vertical-align:15.984000pt;}
.v7{vertical-align:17.760000pt;}
.lsc{letter-spacing:-4.213333pt;}
.ls6{letter-spacing:-3.946667pt;}
.ls7{letter-spacing:-1.600000pt;}
.ls8{letter-spacing:-0.800000pt;}
.ls3{letter-spacing:-0.572117pt;}
.lse{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.466400pt;}
.ls1{letter-spacing:-0.426667pt;}
.lsa{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.155467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000107pt;}
.ls0{letter-spacing:0.000363pt;}
.ls5{letter-spacing:0.000533pt;}
.lsf{letter-spacing:11.221333pt;}
.lsd{letter-spacing:223.671019pt;}
.wsb{word-spacing:-14.826667pt;}
.ws13{word-spacing:-14.560000pt;}
.ws1c{word-spacing:-14.293333pt;}
.wsf{word-spacing:-14.026667pt;}
.ws4{word-spacing:-13.830315pt;}
.wse{word-spacing:-13.226667pt;}
.ws7{word-spacing:-11.861333pt;}
.ws1{word-spacing:-11.434667pt;}
.wsc{word-spacing:-10.880000pt;}
.ws3{word-spacing:-10.666667pt;}
.ws15{word-spacing:-10.613333pt;}
.ws8{word-spacing:-8.643947pt;}
.ws14{word-spacing:-8.488480pt;}
.ws10{word-spacing:-8.177547pt;}
.ws1a{word-spacing:-8.160000pt;}
.ws5{word-spacing:-7.779552pt;}
.ws16{word-spacing:-6.915157pt;}
.ws1b{word-spacing:-6.528000pt;}
.ws2{word-spacing:-5.646549pt;}
.wsa{word-spacing:-2.346667pt;}
.ws11{word-spacing:-0.960000pt;}
.ws12{word-spacing:-0.800000pt;}
.ws17{word-spacing:-0.768000pt;}
.ws1d{word-spacing:-0.533333pt;}
.ws6{word-spacing:-0.048000pt;}
.ws0{word-spacing:-0.042667pt;}
.ws9{word-spacing:0.000000pt;}
.wsd{word-spacing:13.024000pt;}
.ws18{word-spacing:202.229056pt;}
.ws19{word-spacing:570.052800pt;}
._20{margin-left:-11.328000pt;}
._25{margin-left:-10.155200pt;}
._f{margin-left:-8.778667pt;}
._c{margin-left:-7.541333pt;}
._8{margin-left:-6.323200pt;}
._4{margin-left:-5.294933pt;}
._a{margin-left:-4.332053pt;}
._5{margin-left:-2.773333pt;}
._3{margin-left:-1.578667pt;}
._6{width:1.143488pt;}
._2{width:2.346667pt;}
._7{width:3.366400pt;}
._1e{width:6.541675pt;}
._10{width:8.142560pt;}
._b{width:9.472000pt;}
._e{width:11.840000pt;}
._d{width:13.024000pt;}
._0{width:29.947733pt;}
._21{width:33.066667pt;}
._24{width:34.965333pt;}
._23{width:36.138667pt;}
._9{width:41.570133pt;}
._11{width:192.545067pt;}
._16{width:194.892800pt;}
._1d{width:204.364800pt;}
._1b{width:206.711467pt;}
._18{width:242.252800pt;}
._17{width:244.598400pt;}
._1c{width:277.836800pt;}
._19{width:292.131733pt;}
._13{width:342.038592pt;}
._14{width:468.975467pt;}
._12{width:487.152533pt;}
._1a{width:581.120000pt;}
._15{width:582.708267pt;}
._1f{width:1288.402667pt;}
._22{width:1291.559467pt;}
._1{width:1311.698667pt;}
.fs1{font-size:24.874667pt;}
.fs6{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:43.619918pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:49.749333pt;}
.fs8{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs7{font-size:74.666667pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:48.124267pt;}
.y123{bottom:108.909867pt;}
.yd7{bottom:109.308000pt;}
.yf2{bottom:110.131467pt;}
.ycb{bottom:110.547200pt;}
.ybb{bottom:110.880533pt;}
.y11e{bottom:111.213867pt;}
.y133{bottom:113.547200pt;}
.y1b{bottom:119.281333pt;}
.y17d{bottom:121.149867pt;}
.y6a{bottom:127.245867pt;}
.y122{bottom:127.576533pt;}
.yd6{bottom:127.974667pt;}
.yf1{bottom:128.798133pt;}
.yca{bottom:129.213867pt;}
.yba{bottom:129.547200pt;}
.y11d{bottom:129.880533pt;}
.y132{bottom:132.213867pt;}
.y1a{bottom:133.948000pt;}
.y17c{bottom:134.483200pt;}
.y149{bottom:134.547200pt;}
.y69{bottom:145.912533pt;}
.y121{bottom:146.243200pt;}
.yd5{bottom:146.641333pt;}
.yf0{bottom:147.464800pt;}
.y18c{bottom:147.816533pt;}
.yc9{bottom:147.880533pt;}
.y11c{bottom:148.547200pt;}
.y19{bottom:148.614667pt;}
.y131{bottom:150.880533pt;}
.y17b{bottom:151.816533pt;}
.yb9{bottom:153.547200pt;}
.y3f{bottom:153.856000pt;}
.y18{bottom:163.281333pt;}
.y68{bottom:164.579200pt;}
.y120{bottom:164.909867pt;}
.y17a{bottom:165.149867pt;}
.y148{bottom:165.213867pt;}
.yd4{bottom:165.308000pt;}
.yef{bottom:166.131467pt;}
.y11b{bottom:167.213867pt;}
.y130{bottom:169.547200pt;}
.yc8{bottom:171.880533pt;}
.y3e{bottom:173.856000pt;}
.y18b{bottom:178.483200pt;}
.y147{bottom:178.547200pt;}
.y179{bottom:182.483200pt;}
.y67{bottom:183.245867pt;}
.y11f{bottom:183.576533pt;}
.yd3{bottom:183.974667pt;}
.yee{bottom:184.798133pt;}
.y11a{bottom:185.880533pt;}
.y17{bottom:185.948000pt;}
.yb8{bottom:188.213867pt;}
.y3d{bottom:193.856000pt;}
.yc7{bottom:194.880533pt;}
.y178{bottom:195.816533pt;}
.y146{bottom:196.213867pt;}
.y16{bottom:200.614667pt;}
.y66{bottom:201.912533pt;}
.yd2{bottom:202.641333pt;}
.yed{bottom:203.464800pt;}
.y119{bottom:204.547200pt;}
.yb7{bottom:206.880533pt;}
.y18a{bottom:209.149867pt;}
.y177{bottom:213.149867pt;}
.y3c{bottom:213.856000pt;}
.y15{bottom:215.281333pt;}
.y65{bottom:220.579200pt;}
.yd1{bottom:221.308000pt;}
.yec{bottom:222.131467pt;}
.y118{bottom:223.213867pt;}
.yb6{bottom:225.547200pt;}
.y176{bottom:226.483200pt;}
.y128{bottom:227.923200pt;}
.y14{bottom:229.948000pt;}
.y3b{bottom:233.856000pt;}
.y145{bottom:236.213867pt;}
.y64{bottom:239.245867pt;}
.y189{bottom:239.816533pt;}
.yd0{bottom:239.974667pt;}
.yeb{bottom:240.798133pt;}
.y117{bottom:241.880533pt;}
.y175{bottom:243.816533pt;}
.yb5{bottom:244.213867pt;}
.y13{bottom:244.614667pt;}
.y12f{bottom:248.547200pt;}
.y127{bottom:249.256533pt;}
.y3a{bottom:253.856000pt;}
.y144{bottom:254.880533pt;}
.y174{bottom:257.149867pt;}
.y63{bottom:257.912533pt;}
.ycf{bottom:258.641333pt;}
.y12{bottom:259.281333pt;}
.yea{bottom:259.464933pt;}
.y116{bottom:260.547200pt;}
.y126{bottom:262.589867pt;}
.yb4{bottom:262.880533pt;}
.y39{bottom:273.856000pt;}
.y11{bottom:273.948000pt;}
.y173{bottom:274.483200pt;}
.y125{bottom:275.923200pt;}
.y62{bottom:276.579200pt;}
.yce{bottom:277.308000pt;}
.y143{bottom:277.547200pt;}
.ye9{bottom:278.131600pt;}
.y115{bottom:279.213867pt;}
.yb3{bottom:281.547200pt;}
.y12e{bottom:281.880533pt;}
.y172{bottom:287.816533pt;}
.y10{bottom:288.614667pt;}
.y124{bottom:289.256533pt;}
.y38{bottom:293.856000pt;}
.y61{bottom:295.245867pt;}
.ycd{bottom:295.974667pt;}
.ye8{bottom:296.798267pt;}
.y114{bottom:297.880533pt;}
.yb2{bottom:300.213867pt;}
.y12d{bottom:300.547200pt;}
.y171{bottom:305.149867pt;}
.yf{bottom:311.281333pt;}
.y37{bottom:313.856000pt;}
.y60{bottom:313.912533pt;}
.ycc{bottom:314.641333pt;}
.ye7{bottom:315.464933pt;}
.y113{bottom:316.547200pt;}
.y170{bottom:318.483200pt;}
.yb1{bottom:318.880533pt;}
.y12c{bottom:319.213867pt;}
.y92{bottom:322.512000pt;}
.y142{bottom:322.880533pt;}
.y5f{bottom:332.579200pt;}
.y36{bottom:333.856000pt;}
.ye{bottom:333.948000pt;}
.ye6{bottom:334.131600pt;}
.y112{bottom:335.213867pt;}
.y16f{bottom:335.816533pt;}
.y91{bottom:337.178667pt;}
.yb0{bottom:337.547200pt;}
.y12b{bottom:337.880533pt;}
.y141{bottom:345.547200pt;}
.y16e{bottom:349.149867pt;}
.ydb{bottom:350.988000pt;}
.y5e{bottom:351.245867pt;}
.y90{bottom:351.845333pt;}
.ye5{bottom:352.798267pt;}
.y35{bottom:353.856000pt;}
.yaf{bottom:356.213867pt;}
.y12a{bottom:356.547200pt;}
.yd{bottom:356.614667pt;}
.y111{bottom:359.213867pt;}
.y16d{bottom:366.483200pt;}
.y8f{bottom:366.512000pt;}
.y140{bottom:368.213867pt;}
.y5d{bottom:369.912533pt;}
.ye4{bottom:371.464933pt;}
.yda{bottom:372.321333pt;}
.y34{bottom:373.856000pt;}
.yae{bottom:374.880533pt;}
.y129{bottom:375.213867pt;}
.yc{bottom:379.281333pt;}
.y16c{bottom:379.816533pt;}
.y8e{bottom:381.178667pt;}
.yd9{bottom:385.654667pt;}
.y5c{bottom:388.579200pt;}
.ye3{bottom:390.131600pt;}
.y13f{bottom:391.213867pt;}
.y16b{bottom:393.149867pt;}
.yad{bottom:393.547200pt;}
.y33{bottom:393.856000pt;}
.y110{bottom:393.880533pt;}
.yb{bottom:393.948000pt;}
.y8d{bottom:395.845333pt;}
.y188{bottom:397.149867pt;}
.yd8{bottom:398.988000pt;}
.y5b{bottom:407.245867pt;}
.ye2{bottom:408.798267pt;}
.y16a{bottom:410.483200pt;}
.y8c{bottom:410.512000pt;}
.yac{bottom:412.213867pt;}
.y10f{bottom:412.547200pt;}
.y32{bottom:413.856000pt;}
.ya{bottom:416.614667pt;}
.y169{bottom:423.816533pt;}
.y8b{bottom:425.178667pt;}
.y13e{bottom:425.880533pt;}
.y5a{bottom:425.912533pt;}
.ye1{bottom:427.464933pt;}
.y187{bottom:427.816533pt;}
.yab{bottom:430.880533pt;}
.y10e{bottom:431.213867pt;}
.y9{bottom:431.281333pt;}
.y31{bottom:433.856000pt;}
.y8a{bottom:439.845333pt;}
.y168{bottom:441.149867pt;}
.y13d{bottom:444.547200pt;}
.y59{bottom:444.579200pt;}
.y186{bottom:445.149867pt;}
.y8{bottom:445.948000pt;}
.ye0{bottom:446.131600pt;}
.yaa{bottom:449.547200pt;}
.y10d{bottom:449.880533pt;}
.y30{bottom:453.856000pt;}
.y89{bottom:454.512000pt;}
.y167{bottom:458.483200pt;}
.y7{bottom:460.614667pt;}
.y13c{bottom:463.213867pt;}
.y58{bottom:463.245867pt;}
.ydf{bottom:464.798267pt;}
.ya9{bottom:468.213867pt;}
.y10c{bottom:468.547200pt;}
.y88{bottom:469.178667pt;}
.y166{bottom:471.816533pt;}
.y2f{bottom:473.856000pt;}
.y6{bottom:475.281333pt;}
.y185{bottom:475.816533pt;}
.y13b{bottom:481.880533pt;}
.y57{bottom:481.912533pt;}
.yde{bottom:483.464933pt;}
.y87{bottom:483.845333pt;}
.yc6{bottom:486.880533pt;}
.y10b{bottom:487.213867pt;}
.y165{bottom:489.149867pt;}
.y5{bottom:489.948000pt;}
.ya8{bottom:492.213867pt;}
.y2e{bottom:493.856000pt;}
.y86{bottom:498.512000pt;}
.y56{bottom:500.579200pt;}
.ydd{bottom:502.131600pt;}
.y164{bottom:502.483200pt;}
.y4{bottom:504.614667pt;}
.yc5{bottom:505.547200pt;}
.y10a{bottom:505.880533pt;}
.y184{bottom:506.483200pt;}
.y13a{bottom:509.213867pt;}
.y85{bottom:513.178667pt;}
.y2d{bottom:513.856000pt;}
.ya7{bottom:515.213867pt;}
.y55{bottom:519.245867pt;}
.y163{bottom:519.816533pt;}
.ydc{bottom:520.798267pt;}
.yc4{bottom:524.213867pt;}
.y109{bottom:524.547200pt;}
.y3{bottom:526.614667pt;}
.y84{bottom:527.845333pt;}
.y139{bottom:527.880533pt;}
.y162{bottom:533.149867pt;}
.y2c{bottom:533.856000pt;}
.y183{bottom:537.149867pt;}
.y54{bottom:537.912533pt;}
.y83{bottom:542.512000pt;}
.yc3{bottom:542.880533pt;}
.y108{bottom:543.213867pt;}
.y138{bottom:546.547200pt;}
.y161{bottom:550.483200pt;}
.y2b{bottom:553.856000pt;}
.y53{bottom:556.579200pt;}
.yc2{bottom:561.547200pt;}
.ya6{bottom:561.880533pt;}
.y160{bottom:563.816533pt;}
.y82{bottom:565.178667pt;}
.y182{bottom:567.816533pt;}
.y137{bottom:573.880533pt;}
.y52{bottom:575.245867pt;}
.y81{bottom:579.845333pt;}
.yc1{bottom:580.213867pt;}
.ya5{bottom:580.547200pt;}
.y15f{bottom:581.149867pt;}
.y2a{bottom:581.589333pt;}
.y107{bottom:583.811467pt;}
.y136{bottom:592.547200pt;}
.y51{bottom:593.912533pt;}
.y80{bottom:594.512000pt;}
.y15e{bottom:598.483200pt;}
.yc0{bottom:598.880533pt;}
.ya4{bottom:599.213867pt;}
.y2{bottom:604.614667pt;}
.y106{bottom:605.144800pt;}
.y7f{bottom:609.178667pt;}
.y135{bottom:611.213867pt;}
.y15d{bottom:611.816533pt;}
.y50{bottom:612.579200pt;}
.ybf{bottom:617.547200pt;}
.ya3{bottom:617.880533pt;}
.y105{bottom:618.478133pt;}
.y7e{bottom:623.845333pt;}
.y15c{bottom:629.149867pt;}
.y4f{bottom:631.245867pt;}
.y104{bottom:631.811467pt;}
.y134{bottom:633.880533pt;}
.y29{bottom:634.256000pt;}
.ybe{bottom:636.213867pt;}
.ya2{bottom:636.547200pt;}
.y7d{bottom:638.512000pt;}
.y15b{bottom:642.483200pt;}
.y103{bottom:645.144800pt;}
.y4e{bottom:649.912533pt;}
.y7c{bottom:653.178667pt;}
.ybd{bottom:654.880533pt;}
.ya1{bottom:655.213867pt;}
.y102{bottom:658.478133pt;}
.y15a{bottom:659.816533pt;}
.y28{bottom:662.256000pt;}
.y7b{bottom:667.845333pt;}
.y4d{bottom:668.579200pt;}
.y159{bottom:673.149867pt;}
.ya0{bottom:673.880533pt;}
.y101{bottom:674.811467pt;}
.y27{bottom:675.589333pt;}
.ybc{bottom:677.880533pt;}
.y7a{bottom:682.512000pt;}
.y4c{bottom:687.245867pt;}
.y26{bottom:688.922667pt;}
.y158{bottom:690.483200pt;}
.y100{bottom:691.888800pt;}
.y9f{bottom:692.547200pt;}
.y79{bottom:697.178667pt;}
.y25{bottom:702.256000pt;}
.y157{bottom:703.816533pt;}
.y4b{bottom:705.912533pt;}
.yff{bottom:708.966133pt;}
.y9e{bottom:711.213867pt;}
.y78{bottom:711.845333pt;}
.y24{bottom:715.589333pt;}
.y156{bottom:721.149867pt;}
.y4a{bottom:724.579200pt;}
.yfe{bottom:726.043467pt;}
.y77{bottom:726.512000pt;}
.y23{bottom:728.922667pt;}
.y9d{bottom:729.880533pt;}
.y155{bottom:734.483200pt;}
.y76{bottom:741.178667pt;}
.y49{bottom:743.245867pt;}
.yfd{bottom:743.376800pt;}
.y9c{bottom:748.547200pt;}
.y154{bottom:751.816533pt;}
.y22{bottom:754.922667pt;}
.y75{bottom:755.845333pt;}
.yfc{bottom:760.454133pt;}
.y48{bottom:761.912533pt;}
.y153{bottom:765.149867pt;}
.y9b{bottom:767.213867pt;}
.y21{bottom:769.589333pt;}
.y74{bottom:770.512000pt;}
.yfb{bottom:777.531467pt;}
.y47{bottom:780.579200pt;}
.y152{bottom:782.483200pt;}
.y20{bottom:784.256000pt;}
.y73{bottom:785.178667pt;}
.y9a{bottom:785.880533pt;}
.yfa{bottom:794.608667pt;}
.y151{bottom:795.816533pt;}
.y46{bottom:799.245867pt;}
.y181{bottom:799.816533pt;}
.y72{bottom:799.845333pt;}
.y99{bottom:804.547200pt;}
.yf9{bottom:811.686000pt;}
.y150{bottom:813.149867pt;}
.y71{bottom:814.512000pt;}
.y1f{bottom:815.256000pt;}
.y45{bottom:817.912533pt;}
.y98{bottom:823.213867pt;}
.y14f{bottom:826.483200pt;}
.yf8{bottom:828.763333pt;}
.y70{bottom:829.178667pt;}
.y180{bottom:830.483200pt;}
.y44{bottom:836.579200pt;}
.y1e{bottom:838.922667pt;}
.y97{bottom:841.880533pt;}
.y14e{bottom:843.816533pt;}
.yf7{bottom:845.840667pt;}
.y6f{bottom:851.845333pt;}
.y43{bottom:855.245867pt;}
.y14d{bottom:857.149867pt;}
.y96{bottom:860.547200pt;}
.y17f{bottom:861.149867pt;}
.y1d{bottom:862.589333pt;}
.yf6{bottom:862.918000pt;}
.y6e{bottom:866.512000pt;}
.y42{bottom:873.912533pt;}
.y14c{bottom:874.483200pt;}
.y95{bottom:879.213867pt;}
.yf5{bottom:879.995333pt;}
.y6d{bottom:881.178667pt;}
.y14b{bottom:887.816533pt;}
.y1c{bottom:888.922667pt;}
.y17e{bottom:891.816533pt;}
.y41{bottom:892.579200pt;}
.y94{bottom:897.880533pt;}
.yf4{bottom:899.739200pt;}
.y6c{bottom:903.845333pt;}
.y14a{bottom:905.149867pt;}
.y40{bottom:915.579200pt;}
.y93{bottom:916.547200pt;}
.yf3{bottom:918.483200pt;}
.y6b{bottom:918.512000pt;}
.h3{height:31.061333pt;}
.h2{height:31.146667pt;}
.he{height:31.342507pt;}
.h4{height:31.755300pt;}
.hf{height:32.000000pt;}
.hd{height:32.316757pt;}
.hc{height:32.366507pt;}
.h1{height:33.600000pt;}
.h6{height:36.356352pt;}
.ha{height:38.826667pt;}
.h8{height:38.933333pt;}
.hb{height:40.458133pt;}
.h9{height:42.709333pt;}
.h7{height:54.357333pt;}
.h5{height:62.122667pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.851333pt;}
.x3{left:60.182933pt;}
.x8{left:64.000000pt;}
.xb{left:65.333333pt;}
.xc{left:68.261333pt;}
.xd{left:74.666667pt;}
.x2{left:122.623333pt;}
.x9{left:131.699200pt;}
.x4{left:193.075333pt;}
.x5{left:198.408667pt;}
.x6{left:264.000000pt;}
.x7{left:280.000000pt;}
.xa{left:357.890133pt;}
}




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