
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_c3f1b3b639e769f4accb46c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_55602c51b1afdbb1b224c428.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_258d587b2815c983db153a63.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_b323431ffd4dcc5f6352025b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_e8b3c911054ac440ca38b6a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_936ed2b016c347c973468a66.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_f945b1271aad30ad89b1d34b.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.885742;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_eb06cb84d11166d19e2e0abe.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_658357b70021caab7314d71c.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.885742;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_1bb42e411a0fbe88abcb4ac4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065430;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);}
.m3{transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250473,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);}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.240000px;}
.v1{vertical-align:15.120000px;}
.v6{vertical-align:28.080000px;}
.vb{vertical-align:37.080000px;}
.v5{vertical-align:40.320000px;}
.v4{vertical-align:45.360000px;}
.v8{vertical-align:75.240000px;}
.v7{vertical-align:87.480000px;}
.va{vertical-align:93.600000px;}
.v9{vertical-align:105.840000px;}
.ls26{letter-spacing:-0.364200px;}
.ls12{letter-spacing:-0.359400px;}
.ls6{letter-spacing:-0.186600px;}
.ls27{letter-spacing:-0.153600px;}
.ls4{letter-spacing:-0.135000px;}
.ls7{letter-spacing:-0.121200px;}
.ls3{letter-spacing:-0.090000px;}
.ls5{letter-spacing:-0.084600px;}
.ls1d{letter-spacing:-0.063600px;}
.ls29{letter-spacing:-0.036000px;}
.ls1e{letter-spacing:-0.024120px;}
.ls25{letter-spacing:-0.006840px;}
.ls2{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.021960px;}
.ls19{letter-spacing:0.032160px;}
.lsa{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.048960px;}
.ls20{letter-spacing:0.051120px;}
.lsc{letter-spacing:0.064800px;}
.ls8{letter-spacing:0.074160px;}
.ls0{letter-spacing:0.090000px;}
.lse{letter-spacing:0.093600px;}
.ls1f{letter-spacing:0.104040px;}
.ls11{letter-spacing:0.173400px;}
.ls2d{letter-spacing:0.173520px;}
.ls9{letter-spacing:0.180000px;}
.ls28{letter-spacing:0.199200px;}
.ls14{letter-spacing:0.206640px;}
.ls13{letter-spacing:0.275400px;}
.ls10{letter-spacing:1.096920px;}
.ls1{letter-spacing:1.346400px;}
.ls18{letter-spacing:1.533600px;}
.lsf{letter-spacing:1.821960px;}
.ls23{letter-spacing:2.612520px;}
.ls22{letter-spacing:3.575880px;}
.ls21{letter-spacing:3.645720px;}
.ls1b{letter-spacing:3.935880px;}
.ls1c{letter-spacing:4.005720px;}
.ls17{letter-spacing:7.965720px;}
.ls16{letter-spacing:8.255880px;}
.ls1a{letter-spacing:13.410360px;}
.ls15{letter-spacing:20.495880px;}
.ls2e{letter-spacing:47.726640px;}
.lsd{letter-spacing:63.566640px;}
.ls2c{letter-spacing:80.846640px;}
.ls2a{letter-spacing:86.246640px;}
.ls2b{letter-spacing:125.486640px;}
.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;}
}
.ws0{word-spacing:-54.000000px;}
.ws1a{word-spacing:-15.813593px;}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws17{word-spacing:-13.425600px;}
.ws8{word-spacing:-13.399800px;}
.ws14{word-spacing:-13.277520px;}
.wsb{word-spacing:-13.275360px;}
.ws12{word-spacing:-13.248360px;}
.ws4{word-spacing:-13.226400px;}
.ws13{word-spacing:-13.219560px;}
.wsc{word-spacing:-13.162800px;}
.ws16{word-spacing:-13.072800px;}
.ws3{word-spacing:-13.039800px;}
.ws9{word-spacing:-12.867000px;}
.ws15{word-spacing:-12.862200px;}
.ws18{word-spacing:-11.880000px;}
.ws19{word-spacing:-11.844000px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.wsf{word-spacing:-9.242280px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
.ws11{word-spacing:10.987560px;}
.wsd{word-spacing:11.467560px;}
.wse{word-spacing:28.983960px;}
.ws10{word-spacing:334.939320px;}
._15{margin-left:-5.238517px;}
._12{margin-left:-3.486960px;}
._14{margin-left:-2.382089px;}
._3{margin-left:-1.295760px;}
._2{width:1.333646px;}
._a{width:2.946000px;}
._e{width:4.809600px;}
._4{width:6.673200px;}
._7{width:7.935600px;}
._10{width:8.973877px;}
._9{width:9.985919px;}
._8{width:11.062200px;}
._5{width:12.204600px;}
._6{width:14.622234px;}
._f{width:16.112400px;}
._b{width:17.314800px;}
._13{width:18.331472px;}
._11{width:19.657440px;}
._c{width:20.741400px;}
._d{width:22.425000px;}
._16{width:23.724240px;}
._18{width:25.078440px;}
._17{width:26.152200px;}
._1e{width:28.436760px;}
._1{width:36.274666px;}
._0{width:37.547748px;}
._1a{width:55.134000px;}
._1c{width:56.212200px;}
._20{width:76.352400px;}
._19{width:98.010000px;}
._1d{width:99.198000px;}
._1f{width:148.075560px;}
._1b{width:673.890960px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.120000px;}
.fs1{font-size:45.000000px;}
.fs8{font-size:51.347860px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.660372px;}
.fs5{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs7{font-size:71.879966px;}
.fs2{font-size:83.880000px;}
.y107{bottom:-36.024721px;}
.y105{bottom:-30.920888px;}
.y106{bottom:-20.867802px;}
.y0{bottom:0.000000px;}
.yf5{bottom:2.620627px;}
.yf3{bottom:4.025283px;}
.y10c{bottom:6.300000px;}
.yf1{bottom:6.361413px;}
.y10f{bottom:6.390000px;}
.yc1{bottom:7.380000px;}
.yb9{bottom:7.470000px;}
.ybd{bottom:7.500000px;}
.yd1{bottom:7.830000px;}
.yd6{bottom:7.920000px;}
.yd4{bottom:13.050000px;}
.yef{bottom:17.969422px;}
.yb8{bottom:23.310000px;}
.y10b{bottom:23.940000px;}
.yd3{bottom:35.190000px;}
.yb7{bottom:39.150000px;}
.yd9{bottom:40.500000px;}
.yd8{bottom:62.550000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:96.060000px;}
.y12d{bottom:111.450000px;}
.y125{bottom:119.280000px;}
.y88{bottom:127.200000px;}
.y5f{bottom:136.290000px;}
.y181{bottom:136.380000px;}
.y157{bottom:143.130000px;}
.y87{bottom:143.580000px;}
.y12c{bottom:143.670000px;}
.y27{bottom:145.020000px;}
.y103{bottom:153.480000px;}
.y86{bottom:153.660000px;}
.y180{bottom:153.930000px;}
.y5e{bottom:156.450000px;}
.y156{bottom:160.680000px;}
.y26{bottom:162.660000px;}
.y124{bottom:167.970000px;}
.y102{bottom:171.930000px;}
.y5d{bottom:177.510000px;}
.y155{bottom:178.320000px;}
.y25{bottom:180.210000px;}
.y17f{bottom:180.570000px;}
.yba{bottom:183.630000px;}
.y123{bottom:192.270000px;}
.y154{bottom:195.870000px;}
.y17e{bottom:198.120000px;}
.y5c{bottom:198.570000px;}
.y85{bottom:203.160000px;}
.y101{bottom:208.380000px;}
.yc8{bottom:209.190000px;}
.y153{bottom:213.420000px;}
.y24{bottom:215.400000px;}
.y122{bottom:216.660000px;}
.y5b{bottom:219.630000px;}
.y17d{bottom:224.670000px;}
.y152{bottom:231.060000px;}
.y23{bottom:232.950000px;}
.yc7{bottom:234.840000px;}
.y5a{bottom:238.170000px;}
.y84{bottom:238.710000px;}
.y121{bottom:240.960000px;}
.y17c{bottom:242.310000px;}
.y22{bottom:250.590000px;}
.y100{bottom:252.660000px;}
.y59{bottom:255.720000px;}
.y83{bottom:256.260000px;}
.y17b{bottom:259.860000px;}
.yc6{bottom:260.400000px;}
.y120{bottom:265.260000px;}
.y21{bottom:268.140000px;}
.y151{bottom:269.130000px;}
.yff{bottom:271.110000px;}
.y58{bottom:273.270000px;}
.y82{bottom:273.900000px;}
.yed{bottom:281.550000px;}
.y20{bottom:285.690000px;}
.yc5{bottom:285.960000px;}
.y17a{bottom:286.500000px;}
.y150{bottom:289.380000px;}
.yfe{bottom:289.560000px;}
.y11f{bottom:289.650000px;}
.y57{bottom:290.910000px;}
.y81{bottom:291.450000px;}
.y1f{bottom:303.330000px;}
.y179{bottom:304.050000px;}
.y56{bottom:308.460000px;}
.y14f{bottom:310.440000px;}
.yc4{bottom:311.520000px;}
.y11e{bottom:313.950000px;}
.yec{bottom:317.190000px;}
.y80{bottom:318.090000px;}
.yfd{bottom:326.010000px;}
.y178{bottom:330.600000px;}
.y14e{bottom:331.500000px;}
.y55{bottom:335.100000px;}
.yc3{bottom:337.080000px;}
.y11d{bottom:338.340000px;}
.y1e{bottom:338.520000px;}
.yaa{bottom:342.660000px;}
.yfc{bottom:343.560000px;}
.ybb{bottom:346.080000px;}
.y177{bottom:348.240000px;}
.y14d{bottom:351.750000px;}
.yeb{bottom:352.740000px;}
.y7f{bottom:353.640000px;}
.y1d{bottom:356.070000px;}
.ya9{bottom:360.210000px;}
.yc2{bottom:362.640000px;}
.yfb{bottom:370.110000px;}
.y54{bottom:370.920000px;}
.y7e{bottom:371.190000px;}
.y14c{bottom:372.810000px;}
.y1c{bottom:373.620000px;}
.y176{bottom:374.790000px;}
.yea{bottom:384.960000px;}
.y11c{bottom:386.940000px;}
.yee{bottom:388.258504px;}
.yc0{bottom:388.290000px;}
.y1b{bottom:391.260000px;}
.y175{bottom:392.340000px;}
.y14b{bottom:392.970000px;}
.ya8{bottom:395.850000px;}
.yfa{bottom:405.750000px;}
.y7d{bottom:406.830000px;}
.y1a{bottom:408.810000px;}
.y11b{bottom:411.330000px;}
.yf0{bottom:411.906444px;}
.ya7{bottom:413.400000px;}
.ybf{bottom:413.850000px;}
.y174{bottom:418.980000px;}
.y53{bottom:419.250000px;}
.yf9{bottom:423.300000px;}
.y7c{bottom:424.380000px;}
.y14a{bottom:429.510000px;}
.yf2{bottom:431.493750px;}
.ya6{bottom:431.850000px;}
.y11a{bottom:435.630000px;}
.y19{bottom:435.720000px;}
.y173{bottom:436.530000px;}
.y52{bottom:436.800000px;}
.ybe{bottom:439.410000px;}
.yf8{bottom:440.940000px;}
.y7b{bottom:442.830000px;}
.ya5{bottom:449.400000px;}
.y51{bottom:454.440000px;}
.ye9{bottom:457.770000px;}
.y119{bottom:460.020000px;}
.y7a{bottom:460.380000px;}
.y172{bottom:463.170000px;}
.ybc{bottom:464.970000px;}
.y149{bottom:465.060000px;}
.ya4{bottom:467.850000px;}
.y50{bottom:472.020000px;}
.yf7{bottom:476.520000px;}
.y79{bottom:478.770000px;}
.y148{bottom:482.730000px;}
.y18{bottom:484.080000px;}
.y118{bottom:484.350000px;}
.ya3{bottom:485.430000px;}
.y4f{bottom:489.570000px;}
.y171{bottom:489.750000px;}
.yb6{bottom:490.560000px;}
.ye8{bottom:493.350000px;}
.y147{bottom:500.280000px;}
.y17{bottom:501.630000px;}
.ya2{bottom:503.790000px;}
.y78{bottom:506.220000px;}
.y4e{bottom:507.210000px;}
.y170{bottom:507.300000px;}
.y117{bottom:508.650000px;}
.yf6{bottom:508.740000px;}
.y104{bottom:512.070000px;}
.y146{bottom:517.830000px;}
.ya1{bottom:521.340000px;}
.y4d{bottom:524.760000px;}
.ye7{bottom:528.990000px;}
.y116{bottom:533.040000px;}
.y16f{bottom:533.940000px;}
.y145{bottom:535.470000px;}
.y16{bottom:536.820000px;}
.ya0{bottom:539.790000px;}
.y77{bottom:541.860000px;}
.y4c{bottom:542.400000px;}
.ye6{bottom:546.540000px;}
.y144{bottom:553.020000px;}
.y15{bottom:554.370000px;}
.y9f{bottom:557.340000px;}
.y76{bottom:559.410000px;}
.y4b{bottom:559.950000px;}
.y16e{bottom:560.490000px;}
.ye5{bottom:564.090000px;}
.yb5{bottom:569.220000px;}
.y14{bottom:571.920000px;}
.y4a{bottom:577.500000px;}
.y16d{bottom:578.130000px;}
.ye4{bottom:581.730000px;}
.y75{bottom:586.050000px;}
.y143{bottom:588.660000px;}
.y13{bottom:589.560000px;}
.y9e{bottom:593.790000px;}
.y49{bottom:595.140000px;}
.y16c{bottom:604.680000px;}
.yb4{bottom:604.770000px;}
.y115{bottom:606.030000px;}
.y142{bottom:606.210000px;}
.y12{bottom:607.110000px;}
.ye3{bottom:608.280000px;}
.y9d{bottom:611.430000px;}
.y48{bottom:612.690000px;}
.y74{bottom:621.600000px;}
.y16b{bottom:622.230000px;}
.yb3{bottom:622.320000px;}
.y141{bottom:623.760000px;}
.y11{bottom:624.750000px;}
.y47{bottom:630.330000px;}
.y9c{bottom:637.980000px;}
.y73{bottom:639.150000px;}
.y140{bottom:641.400000px;}
.y10{bottom:642.300000px;}
.ye2{bottom:643.920000px;}
.y46{bottom:647.880000px;}
.y16a{bottom:648.870000px;}
.y114{bottom:654.720000px;}
.y72{bottom:656.790000px;}
.yb2{bottom:657.870000px;}
.y13f{bottom:658.950000px;}
.yf{bottom:659.850000px;}
.ye1{bottom:661.470000px;}
.y45{bottom:665.430000px;}
.y169{bottom:666.420000px;}
.y9b{bottom:673.620000px;}
.yb1{bottom:676.320000px;}
.y13e{bottom:676.590000px;}
.ye{bottom:677.490000px;}
.ye0{bottom:679.020000px;}
.y44{bottom:683.070000px;}
.y9a{bottom:691.170000px;}
.y71{bottom:692.340000px;}
.y168{bottom:693.060000px;}
.y13d{bottom:694.140000px;}
.yb0{bottom:694.770000px;}
.yd{bottom:695.040000px;}
.ydf{bottom:696.660000px;}
.y43{bottom:700.620000px;}
.y113{bottom:703.410000px;}
.y99{bottom:708.720000px;}
.y70{bottom:709.890000px;}
.y167{bottom:710.610000px;}
.yc{bottom:712.680000px;}
.yaf{bottom:713.130000px;}
.y42{bottom:718.260000px;}
.y98{bottom:726.360000px;}
.y6f{bottom:727.530000px;}
.y112{bottom:727.710000px;}
.y166{bottom:728.160000px;}
.y13c{bottom:729.690000px;}
.yb{bottom:730.230000px;}
.yde{bottom:732.210000px;}
.y41{bottom:735.810000px;}
.y6e{bottom:745.080000px;}
.y13b{bottom:747.330000px;}
.yae{bottom:749.580000px;}
.ydd{bottom:749.850000px;}
.y111{bottom:752.010000px;}
.y40{bottom:753.360000px;}
.y165{bottom:754.800000px;}
.ya{bottom:757.140000px;}
.y97{bottom:761.910000px;}
.y13a{bottom:764.880000px;}
.y3f{bottom:771.000000px;}
.y6d{bottom:771.720000px;}
.y164{bottom:772.350000px;}
.yf4{bottom:776.155194px;}
.yad{bottom:776.220000px;}
.ydc{bottom:776.400000px;}
.y96{bottom:779.550000px;}
.y139{bottom:782.520000px;}
.y3e{bottom:788.550000px;}
.y163{bottom:789.990000px;}
.y18d{bottom:795.930000px;}
.y95{bottom:797.100000px;}
.y110{bottom:800.700000px;}
.y9{bottom:805.380000px;}
.y3d{bottom:806.190000px;}
.y6c{bottom:807.270000px;}
.yd7{bottom:809.340000px;}
.yac{bottom:811.770000px;}
.y94{bottom:814.650000px;}
.y162{bottom:816.900000px;}
.y138{bottom:818.070000px;}
.y18c{bottom:822.480000px;}
.y3c{bottom:823.740000px;}
.y10e{bottom:825.000000px;}
.y6b{bottom:826.620000px;}
.y93{bottom:832.290000px;}
.y137{bottom:835.620000px;}
.ydb{bottom:836.700000px;}
.y18b{bottom:840.030000px;}
.y8{bottom:841.200000px;}
.y3b{bottom:841.290000px;}
.yab{bottom:843.990000px;}
.y6a{bottom:845.970000px;}
.y10d{bottom:849.390000px;}
.y92{bottom:849.840000px;}
.y136{bottom:853.260000px;}
.y3a{bottom:858.930000px;}
.y69{bottom:863.610000px;}
.yda{bottom:864.060000px;}
.y161{bottom:865.140000px;}
.y18a{bottom:866.670000px;}
.y135{bottom:870.810000px;}
.y10a{bottom:873.690000px;}
.y39{bottom:876.480000px;}
.y7{bottom:877.200000px;}
.y189{bottom:884.220000px;}
.y134{bottom:888.450000px;}
.y68{bottom:890.160000px;}
.yd2{bottom:891.420000px;}
.y160{bottom:892.050000px;}
.y38{bottom:894.030000px;}
.y188{bottom:910.860000px;}
.y37{bottom:911.670000px;}
.y91{bottom:912.030000px;}
.y6{bottom:913.200000px;}
.y133{bottom:915.270000px;}
.yd5{bottom:918.690000px;}
.y67{bottom:925.710000px;}
.y187{bottom:928.410000px;}
.y15f{bottom:929.040000px;}
.y36{bottom:929.220000px;}
.y90{bottom:929.580000px;}
.y109{bottom:936.960000px;}
.yd0{bottom:946.050000px;}
.y15e{bottom:946.680000px;}
.y35{bottom:946.860000px;}
.y8f{bottom:947.220000px;}
.y5{bottom:949.290000px;}
.y108{bottom:954.600000px;}
.y186{bottom:954.960000px;}
.y132{bottom:963.600000px;}
.y34{bottom:964.410000px;}
.y66{bottom:972.600000px;}
.y15d{bottom:973.590000px;}
.y131{bottom:981.150000px;}
.y8e{bottom:981.330000px;}
.y33{bottom:981.960000px;}
.y4{bottom:987.630000px;}
.y65{bottom:990.150000px;}
.y8d{bottom:990.600000px;}
.ycf{bottom:994.740000px;}
.y130{bottom:998.790000px;}
.y32{bottom:999.600000px;}
.y64{bottom:1007.790000px;}
.y15c{bottom:1010.610000px;}
.y3{bottom:1012.320000px;}
.y12f{bottom:1016.370000px;}
.y185{bottom:1016.820000px;}
.y31{bottom:1017.180000px;}
.y12b{bottom:1017.900000px;}
.y63{bottom:1025.370000px;}
.y15b{bottom:1028.160000px;}
.yce{bottom:1030.320000px;}
.y12a{bottom:1032.840000px;}
.y8c{bottom:1034.100000px;}
.y184{bottom:1034.370000px;}
.y30{bottom:1034.820000px;}
.y62{bottom:1042.920000px;}
.y15a{bottom:1045.800000px;}
.ycd{bottom:1047.960000px;}
.y12e{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.y8b{bottom:1053.450000px;}
.y129{bottom:1057.140000px;}
.y159{bottom:1063.350000px;}
.ycc{bottom:1065.510000px;}
.y61{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.y183{bottom:1078.560000px;}
.y128{bottom:1081.530000px;}
.ycb{bottom:1083.150000px;}
.y2d{bottom:1087.560000px;}
.y8a{bottom:1087.650000px;}
.y158{bottom:1090.260000px;}
.y182{bottom:1096.110000px;}
.y89{bottom:1096.920000px;}
.yca{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.y127{bottom:1105.830000px;}
.y60{bottom:1113.930000px;}
.y2b{bottom:1122.750000px;}
.yc9{bottom:1127.610000px;}
.y126{bottom:1130.220000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h25{height:-8.618553px;}
.h22{height:19.946695px;}
.h1f{height:20.665527px;}
.h20{height:21.384296px;}
.h27{height:23.580000px;}
.h29{height:23.610000px;}
.h28{height:23.670000px;}
.h18{height:24.750000px;}
.h17{height:24.840000px;}
.h16{height:24.870000px;}
.h19{height:26.550000px;}
.h1b{height:26.640000px;}
.h3{height:39.155273px;}
.h26{height:41.220000px;}
.h24{height:44.678656px;}
.h14{height:45.720703px;}
.h2{height:46.986328px;}
.h6{height:50.902383px;}
.h1e{height:51.911515px;}
.h7{height:52.311445px;}
.h1a{height:53.910000px;}
.h8{height:55.779258px;}
.h13{height:56.520000px;}
.h5{height:57.323320px;}
.hd{height:59.973223px;}
.hb{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h1c{height:81.270000px;}
.hc{height:103.918359px;}
.h21{height:124.245644px;}
.h12{height:140.998359px;}
.h10{height:144.238359px;}
.he{height:149.278359px;}
.hf{height:191.398359px;}
.h11{height:209.758359px;}
.h15{height:363.450000px;}
.h23{height:640.185635px;}
.h1d{height:764.008633px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:27.990000px;}
.w8{width:28.710000px;}
.w12{width:55.992513px;}
.w11{width:72.016094px;}
.w18{width:79.020000px;}
.w4{width:87.570000px;}
.wa{width:94.950000px;}
.we{width:95.220000px;}
.w7{width:105.600000px;}
.wc{width:120.960000px;}
.w6{width:126.810000px;}
.w3{width:126.840000px;}
.w9{width:129.240000px;}
.w15{width:134.310000px;}
.w17{width:235.350000px;}
.wd{width:238.710000px;}
.wb{width:280.200000px;}
.w16{width:304.680000px;}
.w10{width:455.141712px;}
.wf{width:506.700000px;}
.w14{width:547.709608px;}
.w13{width:551.893161px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x2c{left:9.296783px;}
.x23{left:10.802414px;}
.x26{left:15.333427px;}
.x1{left:68.040000px;}
.xf{left:72.989987px;}
.x19{left:77.940000px;}
.x10{left:80.190000px;}
.x29{left:89.369987px;}
.x4{left:95.039987px;}
.x33{left:111.239987px;}
.x5{left:122.039987px;}
.x28{left:145.259987px;}
.x2a{left:170.970000px;}
.xa{left:176.069987px;}
.x20{left:193.470000px;}
.x2e{left:203.790000px;}
.x12{left:207.750000px;}
.x2{left:211.079987px;}
.xb{left:222.059987px;}
.x22{left:228.217765px;}
.x1f{left:229.439987px;}
.x32{left:232.859987px;}
.xc{left:250.409987px;}
.x2d{left:278.038357px;}
.x13{left:296.040000px;}
.x14{left:324.750000px;}
.xe{left:328.259987px;}
.x6{left:340.229987px;}
.x1a{left:358.950000px;}
.x7{left:370.289987px;}
.x25{left:400.876350px;}
.x9{left:403.859987px;}
.x24{left:422.121097px;}
.x1d{left:446.609987px;}
.x15{left:452.280000px;}
.x8{left:469.739987px;}
.x1b{left:480.630000px;}
.x21{left:501.877156px;}
.x2f{left:509.280000px;}
.x16{left:558.690000px;}
.x2b{left:561.499837px;}
.x17{left:588.120000px;}
.x1e{left:702.059987px;}
.x18{left:718.080000px;}
.x1c{left:720.060000px;}
.x27{left:724.559987px;}
.x31{left:730.139987px;}
.x30{left:745.440000px;}
.xd{left:760.559987px;}
.x3{left:800.339987px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.880000pt;}
.v1{vertical-align:13.440000pt;}
.v6{vertical-align:24.960000pt;}
.vb{vertical-align:32.960000pt;}
.v5{vertical-align:35.840000pt;}
.v4{vertical-align:40.320000pt;}
.v8{vertical-align:66.880000pt;}
.v7{vertical-align:77.760000pt;}
.va{vertical-align:83.200000pt;}
.v9{vertical-align:94.080000pt;}
.ls26{letter-spacing:-0.323733pt;}
.ls12{letter-spacing:-0.319467pt;}
.ls6{letter-spacing:-0.165867pt;}
.ls27{letter-spacing:-0.136533pt;}
.ls4{letter-spacing:-0.120000pt;}
.ls7{letter-spacing:-0.107733pt;}
.ls3{letter-spacing:-0.080000pt;}
.ls5{letter-spacing:-0.075200pt;}
.ls1d{letter-spacing:-0.056533pt;}
.ls29{letter-spacing:-0.032000pt;}
.ls1e{letter-spacing:-0.021440pt;}
.ls25{letter-spacing:-0.006080pt;}
.ls2{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.019520pt;}
.ls19{letter-spacing:0.028587pt;}
.lsa{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.043520pt;}
.ls20{letter-spacing:0.045440pt;}
.lsc{letter-spacing:0.057600pt;}
.ls8{letter-spacing:0.065920pt;}
.ls0{letter-spacing:0.080000pt;}
.lse{letter-spacing:0.083200pt;}
.ls1f{letter-spacing:0.092480pt;}
.ls11{letter-spacing:0.154133pt;}
.ls2d{letter-spacing:0.154240pt;}
.ls9{letter-spacing:0.160000pt;}
.ls28{letter-spacing:0.177067pt;}
.ls14{letter-spacing:0.183680pt;}
.ls13{letter-spacing:0.244800pt;}
.ls10{letter-spacing:0.975040pt;}
.ls1{letter-spacing:1.196800pt;}
.ls18{letter-spacing:1.363200pt;}
.lsf{letter-spacing:1.619520pt;}
.ls23{letter-spacing:2.322240pt;}
.ls22{letter-spacing:3.178560pt;}
.ls21{letter-spacing:3.240640pt;}
.ls1b{letter-spacing:3.498560pt;}
.ls1c{letter-spacing:3.560640pt;}
.ls17{letter-spacing:7.080640pt;}
.ls16{letter-spacing:7.338560pt;}
.ls1a{letter-spacing:11.920320pt;}
.ls15{letter-spacing:18.218560pt;}
.ls2e{letter-spacing:42.423680pt;}
.lsd{letter-spacing:56.503680pt;}
.ls2c{letter-spacing:71.863680pt;}
.ls2a{letter-spacing:76.663680pt;}
.ls2b{letter-spacing:111.543680pt;}
.ws0{word-spacing:-48.000000pt;}
.ws1a{word-spacing:-14.056527pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws17{word-spacing:-11.933867pt;}
.ws8{word-spacing:-11.910933pt;}
.ws14{word-spacing:-11.802240pt;}
.wsb{word-spacing:-11.800320pt;}
.ws12{word-spacing:-11.776320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws13{word-spacing:-11.750720pt;}
.wsc{word-spacing:-11.700267pt;}
.ws16{word-spacing:-11.620267pt;}
.ws3{word-spacing:-11.590933pt;}
.ws9{word-spacing:-11.437333pt;}
.ws15{word-spacing:-11.433067pt;}
.ws18{word-spacing:-10.560000pt;}
.ws19{word-spacing:-10.528000pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.wsf{word-spacing:-8.215360pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
.ws11{word-spacing:9.766720pt;}
.wsd{word-spacing:10.193387pt;}
.wse{word-spacing:25.763520pt;}
.ws10{word-spacing:297.723840pt;}
._15{margin-left:-4.656460pt;}
._12{margin-left:-3.099520pt;}
._14{margin-left:-2.117413pt;}
._3{margin-left:-1.151786pt;}
._2{width:1.185463pt;}
._a{width:2.618667pt;}
._e{width:4.275200pt;}
._4{width:5.931733pt;}
._7{width:7.053866pt;}
._10{width:7.976780pt;}
._9{width:8.876372pt;}
._8{width:9.833067pt;}
._5{width:10.848534pt;}
._6{width:12.997542pt;}
._f{width:14.322134pt;}
._b{width:15.390934pt;}
._13{width:16.294642pt;}
._11{width:17.473280pt;}
._c{width:18.436800pt;}
._d{width:19.933334pt;}
._16{width:21.088213pt;}
._18{width:22.291946pt;}
._17{width:23.246400pt;}
._1e{width:25.277120pt;}
._1{width:32.244148pt;}
._0{width:33.375776pt;}
._1a{width:49.008000pt;}
._1c{width:49.966400pt;}
._20{width:67.868800pt;}
._19{width:87.120000pt;}
._1d{width:88.176000pt;}
._1f{width:131.622720pt;}
._1b{width:599.014186pt;}
.fs4{font-size:37.440000pt;}
.fs1{font-size:40.000000pt;}
.fs8{font-size:45.642542pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.031442pt;}
.fs5{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs7{font-size:63.893303pt;}
.fs2{font-size:74.560000pt;}
.y107{bottom:-32.021974pt;}
.y105{bottom:-27.485234pt;}
.y106{bottom:-18.549158pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:2.329446pt;}
.yf3{bottom:3.578029pt;}
.y10c{bottom:5.600000pt;}
.yf1{bottom:5.654589pt;}
.y10f{bottom:5.680000pt;}
.yc1{bottom:6.560000pt;}
.yb9{bottom:6.640000pt;}
.ybd{bottom:6.666667pt;}
.yd1{bottom:6.960000pt;}
.yd6{bottom:7.040000pt;}
.yd4{bottom:11.600000pt;}
.yef{bottom:15.972819pt;}
.yb8{bottom:20.720000pt;}
.y10b{bottom:21.280000pt;}
.yd3{bottom:31.280000pt;}
.yb7{bottom:34.800000pt;}
.yd9{bottom:36.000000pt;}
.yd8{bottom:55.600000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:85.386667pt;}
.y12d{bottom:99.066667pt;}
.y125{bottom:106.026667pt;}
.y88{bottom:113.066667pt;}
.y5f{bottom:121.146667pt;}
.y181{bottom:121.226667pt;}
.y157{bottom:127.226667pt;}
.y87{bottom:127.626667pt;}
.y12c{bottom:127.706667pt;}
.y27{bottom:128.906667pt;}
.y103{bottom:136.426667pt;}
.y86{bottom:136.586667pt;}
.y180{bottom:136.826667pt;}
.y5e{bottom:139.066667pt;}
.y156{bottom:142.826667pt;}
.y26{bottom:144.586667pt;}
.y124{bottom:149.306667pt;}
.y102{bottom:152.826667pt;}
.y5d{bottom:157.786667pt;}
.y155{bottom:158.506667pt;}
.y25{bottom:160.186667pt;}
.y17f{bottom:160.506667pt;}
.yba{bottom:163.226667pt;}
.y123{bottom:170.906667pt;}
.y154{bottom:174.106667pt;}
.y17e{bottom:176.106667pt;}
.y5c{bottom:176.506667pt;}
.y85{bottom:180.586667pt;}
.y101{bottom:185.226667pt;}
.yc8{bottom:185.946667pt;}
.y153{bottom:189.706667pt;}
.y24{bottom:191.466667pt;}
.y122{bottom:192.586667pt;}
.y5b{bottom:195.226667pt;}
.y17d{bottom:199.706667pt;}
.y152{bottom:205.386667pt;}
.y23{bottom:207.066667pt;}
.yc7{bottom:208.746667pt;}
.y5a{bottom:211.706667pt;}
.y84{bottom:212.186667pt;}
.y121{bottom:214.186667pt;}
.y17c{bottom:215.386667pt;}
.y22{bottom:222.746667pt;}
.y100{bottom:224.586667pt;}
.y59{bottom:227.306667pt;}
.y83{bottom:227.786667pt;}
.y17b{bottom:230.986667pt;}
.yc6{bottom:231.466667pt;}
.y120{bottom:235.786667pt;}
.y21{bottom:238.346667pt;}
.y151{bottom:239.226667pt;}
.yff{bottom:240.986667pt;}
.y58{bottom:242.906667pt;}
.y82{bottom:243.466667pt;}
.yed{bottom:250.266667pt;}
.y20{bottom:253.946667pt;}
.yc5{bottom:254.186667pt;}
.y17a{bottom:254.666667pt;}
.y150{bottom:257.226667pt;}
.yfe{bottom:257.386667pt;}
.y11f{bottom:257.466667pt;}
.y57{bottom:258.586667pt;}
.y81{bottom:259.066667pt;}
.y1f{bottom:269.626667pt;}
.y179{bottom:270.266667pt;}
.y56{bottom:274.186667pt;}
.y14f{bottom:275.946667pt;}
.yc4{bottom:276.906667pt;}
.y11e{bottom:279.066667pt;}
.yec{bottom:281.946667pt;}
.y80{bottom:282.746667pt;}
.yfd{bottom:289.786667pt;}
.y178{bottom:293.866667pt;}
.y14e{bottom:294.666667pt;}
.y55{bottom:297.866667pt;}
.yc3{bottom:299.626667pt;}
.y11d{bottom:300.746667pt;}
.y1e{bottom:300.906667pt;}
.yaa{bottom:304.586667pt;}
.yfc{bottom:305.386667pt;}
.ybb{bottom:307.626667pt;}
.y177{bottom:309.546667pt;}
.y14d{bottom:312.666667pt;}
.yeb{bottom:313.546667pt;}
.y7f{bottom:314.346667pt;}
.y1d{bottom:316.506667pt;}
.ya9{bottom:320.186667pt;}
.yc2{bottom:322.346667pt;}
.yfb{bottom:328.986667pt;}
.y54{bottom:329.706667pt;}
.y7e{bottom:329.946667pt;}
.y14c{bottom:331.386667pt;}
.y1c{bottom:332.106667pt;}
.y176{bottom:333.146667pt;}
.yea{bottom:342.186667pt;}
.y11c{bottom:343.946667pt;}
.yee{bottom:345.118670pt;}
.yc0{bottom:345.146667pt;}
.y1b{bottom:347.786667pt;}
.y175{bottom:348.746667pt;}
.y14b{bottom:349.306667pt;}
.ya8{bottom:351.866667pt;}
.yfa{bottom:360.666667pt;}
.y7d{bottom:361.626667pt;}
.y1a{bottom:363.386667pt;}
.y11b{bottom:365.626667pt;}
.yf0{bottom:366.139061pt;}
.ya7{bottom:367.466667pt;}
.ybf{bottom:367.866667pt;}
.y174{bottom:372.426667pt;}
.y53{bottom:372.666667pt;}
.yf9{bottom:376.266667pt;}
.y7c{bottom:377.226667pt;}
.y14a{bottom:381.786667pt;}
.yf2{bottom:383.550000pt;}
.ya6{bottom:383.866667pt;}
.y11a{bottom:387.226667pt;}
.y19{bottom:387.306667pt;}
.y173{bottom:388.026667pt;}
.y52{bottom:388.266667pt;}
.ybe{bottom:390.586667pt;}
.yf8{bottom:391.946667pt;}
.y7b{bottom:393.626667pt;}
.ya5{bottom:399.466667pt;}
.y51{bottom:403.946667pt;}
.ye9{bottom:406.906667pt;}
.y119{bottom:408.906667pt;}
.y7a{bottom:409.226667pt;}
.y172{bottom:411.706667pt;}
.ybc{bottom:413.306667pt;}
.y149{bottom:413.386667pt;}
.ya4{bottom:415.866667pt;}
.y50{bottom:419.573333pt;}
.yf7{bottom:423.573333pt;}
.y79{bottom:425.573333pt;}
.y148{bottom:429.093333pt;}
.y18{bottom:430.293333pt;}
.y118{bottom:430.533333pt;}
.ya3{bottom:431.493333pt;}
.y4f{bottom:435.173333pt;}
.y171{bottom:435.333333pt;}
.yb6{bottom:436.053333pt;}
.ye8{bottom:438.533333pt;}
.y147{bottom:444.693333pt;}
.y17{bottom:445.893333pt;}
.ya2{bottom:447.813333pt;}
.y78{bottom:449.973333pt;}
.y4e{bottom:450.853333pt;}
.y170{bottom:450.933333pt;}
.y117{bottom:452.133333pt;}
.yf6{bottom:452.213333pt;}
.y104{bottom:455.173333pt;}
.y146{bottom:460.293333pt;}
.ya1{bottom:463.413333pt;}
.y4d{bottom:466.453333pt;}
.ye7{bottom:470.213333pt;}
.y116{bottom:473.813333pt;}
.y16f{bottom:474.613333pt;}
.y145{bottom:475.973333pt;}
.y16{bottom:477.173333pt;}
.ya0{bottom:479.813333pt;}
.y77{bottom:481.653333pt;}
.y4c{bottom:482.133333pt;}
.ye6{bottom:485.813333pt;}
.y144{bottom:491.573333pt;}
.y15{bottom:492.773333pt;}
.y9f{bottom:495.413333pt;}
.y76{bottom:497.253333pt;}
.y4b{bottom:497.733333pt;}
.y16e{bottom:498.213333pt;}
.ye5{bottom:501.413333pt;}
.yb5{bottom:505.973333pt;}
.y14{bottom:508.373333pt;}
.y4a{bottom:513.333333pt;}
.y16d{bottom:513.893333pt;}
.ye4{bottom:517.093333pt;}
.y75{bottom:520.933333pt;}
.y143{bottom:523.253333pt;}
.y13{bottom:524.053333pt;}
.y9e{bottom:527.813333pt;}
.y49{bottom:529.013333pt;}
.y16c{bottom:537.493333pt;}
.yb4{bottom:537.573333pt;}
.y115{bottom:538.693333pt;}
.y142{bottom:538.853333pt;}
.y12{bottom:539.653333pt;}
.ye3{bottom:540.693333pt;}
.y9d{bottom:543.493333pt;}
.y48{bottom:544.613333pt;}
.y74{bottom:552.533333pt;}
.y16b{bottom:553.093333pt;}
.yb3{bottom:553.173333pt;}
.y141{bottom:554.453333pt;}
.y11{bottom:555.333333pt;}
.y47{bottom:560.293333pt;}
.y9c{bottom:567.093333pt;}
.y73{bottom:568.133333pt;}
.y140{bottom:570.133333pt;}
.y10{bottom:570.933333pt;}
.ye2{bottom:572.373333pt;}
.y46{bottom:575.893333pt;}
.y16a{bottom:576.773333pt;}
.y114{bottom:581.973333pt;}
.y72{bottom:583.813333pt;}
.yb2{bottom:584.773333pt;}
.y13f{bottom:585.733333pt;}
.yf{bottom:586.533333pt;}
.ye1{bottom:587.973333pt;}
.y45{bottom:591.493333pt;}
.y169{bottom:592.373333pt;}
.y9b{bottom:598.773333pt;}
.yb1{bottom:601.173333pt;}
.y13e{bottom:601.413333pt;}
.ye{bottom:602.213333pt;}
.ye0{bottom:603.573333pt;}
.y44{bottom:607.173333pt;}
.y9a{bottom:614.373333pt;}
.y71{bottom:615.413333pt;}
.y168{bottom:616.053333pt;}
.y13d{bottom:617.013333pt;}
.yb0{bottom:617.573333pt;}
.yd{bottom:617.813333pt;}
.ydf{bottom:619.253333pt;}
.y43{bottom:622.773333pt;}
.y113{bottom:625.253333pt;}
.y99{bottom:629.973333pt;}
.y70{bottom:631.013333pt;}
.y167{bottom:631.653333pt;}
.yc{bottom:633.493333pt;}
.yaf{bottom:633.893333pt;}
.y42{bottom:638.453333pt;}
.y98{bottom:645.653333pt;}
.y6f{bottom:646.693333pt;}
.y112{bottom:646.853333pt;}
.y166{bottom:647.253333pt;}
.y13c{bottom:648.613333pt;}
.yb{bottom:649.093333pt;}
.yde{bottom:650.853333pt;}
.y41{bottom:654.053333pt;}
.y6e{bottom:662.293333pt;}
.y13b{bottom:664.293333pt;}
.yae{bottom:666.293333pt;}
.ydd{bottom:666.533333pt;}
.y111{bottom:668.453333pt;}
.y40{bottom:669.653333pt;}
.y165{bottom:670.933333pt;}
.ya{bottom:673.013333pt;}
.y97{bottom:677.253333pt;}
.y13a{bottom:679.893333pt;}
.y3f{bottom:685.333333pt;}
.y6d{bottom:685.973333pt;}
.y164{bottom:686.533333pt;}
.yf4{bottom:689.915728pt;}
.yad{bottom:689.973333pt;}
.ydc{bottom:690.133333pt;}
.y96{bottom:692.933333pt;}
.y139{bottom:695.573333pt;}
.y3e{bottom:700.933333pt;}
.y163{bottom:702.213333pt;}
.y18d{bottom:707.493333pt;}
.y95{bottom:708.533333pt;}
.y110{bottom:711.733333pt;}
.y9{bottom:715.893333pt;}
.y3d{bottom:716.613333pt;}
.y6c{bottom:717.573333pt;}
.yd7{bottom:719.413333pt;}
.yac{bottom:721.573333pt;}
.y94{bottom:724.133333pt;}
.y162{bottom:726.133333pt;}
.y138{bottom:727.173333pt;}
.y18c{bottom:731.093333pt;}
.y3c{bottom:732.213333pt;}
.y10e{bottom:733.333333pt;}
.y6b{bottom:734.773333pt;}
.y93{bottom:739.813333pt;}
.y137{bottom:742.773333pt;}
.ydb{bottom:743.733333pt;}
.y18b{bottom:746.693333pt;}
.y8{bottom:747.733333pt;}
.y3b{bottom:747.813333pt;}
.yab{bottom:750.213333pt;}
.y6a{bottom:751.973333pt;}
.y10d{bottom:755.013333pt;}
.y92{bottom:755.413333pt;}
.y136{bottom:758.453333pt;}
.y3a{bottom:763.493333pt;}
.y69{bottom:767.653333pt;}
.yda{bottom:768.053333pt;}
.y161{bottom:769.013333pt;}
.y18a{bottom:770.373333pt;}
.y135{bottom:774.053333pt;}
.y10a{bottom:776.613333pt;}
.y39{bottom:779.093333pt;}
.y7{bottom:779.733333pt;}
.y189{bottom:785.973333pt;}
.y134{bottom:789.733333pt;}
.y68{bottom:791.253333pt;}
.yd2{bottom:792.373333pt;}
.y160{bottom:792.933333pt;}
.y38{bottom:794.693333pt;}
.y188{bottom:809.653333pt;}
.y37{bottom:810.373333pt;}
.y91{bottom:810.693333pt;}
.y6{bottom:811.733333pt;}
.y133{bottom:813.573333pt;}
.yd5{bottom:816.613333pt;}
.y67{bottom:822.853333pt;}
.y187{bottom:825.253333pt;}
.y15f{bottom:825.813333pt;}
.y36{bottom:825.973333pt;}
.y90{bottom:826.293333pt;}
.y109{bottom:832.853333pt;}
.yd0{bottom:840.933333pt;}
.y15e{bottom:841.493333pt;}
.y35{bottom:841.653333pt;}
.y8f{bottom:841.973333pt;}
.y5{bottom:843.813333pt;}
.y108{bottom:848.533333pt;}
.y186{bottom:848.853333pt;}
.y132{bottom:856.533333pt;}
.y34{bottom:857.253333pt;}
.y66{bottom:864.533333pt;}
.y15d{bottom:865.413333pt;}
.y131{bottom:872.133333pt;}
.y8e{bottom:872.293333pt;}
.y33{bottom:872.853333pt;}
.y4{bottom:877.893333pt;}
.y65{bottom:880.133333pt;}
.y8d{bottom:880.533333pt;}
.ycf{bottom:884.213333pt;}
.y130{bottom:887.813333pt;}
.y32{bottom:888.533333pt;}
.y64{bottom:895.813333pt;}
.y15c{bottom:898.320000pt;}
.y3{bottom:899.840000pt;}
.y12f{bottom:903.440000pt;}
.y185{bottom:903.840000pt;}
.y31{bottom:904.160000pt;}
.y12b{bottom:904.800000pt;}
.y63{bottom:911.440000pt;}
.y15b{bottom:913.920000pt;}
.yce{bottom:915.840000pt;}
.y12a{bottom:918.080000pt;}
.y8c{bottom:919.200000pt;}
.y184{bottom:919.440000pt;}
.y30{bottom:919.840000pt;}
.y62{bottom:927.040000pt;}
.y15a{bottom:929.600000pt;}
.ycd{bottom:931.520000pt;}
.y12e{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.y8b{bottom:936.400000pt;}
.y129{bottom:939.680000pt;}
.y159{bottom:945.200000pt;}
.ycc{bottom:947.120000pt;}
.y61{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.y183{bottom:958.720000pt;}
.y128{bottom:961.360000pt;}
.ycb{bottom:962.800000pt;}
.y2d{bottom:966.720000pt;}
.y8a{bottom:966.800000pt;}
.y158{bottom:969.120000pt;}
.y182{bottom:974.320000pt;}
.y89{bottom:975.040000pt;}
.yca{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.y127{bottom:982.960000pt;}
.y60{bottom:990.160000pt;}
.y2b{bottom:998.000000pt;}
.yc9{bottom:1002.320000pt;}
.y126{bottom:1004.640000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h25{height:-7.660936pt;}
.h22{height:17.730396pt;}
.h1f{height:18.369357pt;}
.h20{height:19.008263pt;}
.h27{height:20.960000pt;}
.h29{height:20.986667pt;}
.h28{height:21.040000pt;}
.h18{height:22.000000pt;}
.h17{height:22.080000pt;}
.h16{height:22.106667pt;}
.h19{height:23.600000pt;}
.h1b{height:23.680000pt;}
.h3{height:34.804688pt;}
.h26{height:36.640000pt;}
.h24{height:39.714361pt;}
.h14{height:40.640625pt;}
.h2{height:41.765625pt;}
.h6{height:45.246562pt;}
.h1e{height:46.143569pt;}
.h7{height:46.499062pt;}
.h1a{height:47.920000pt;}
.h8{height:49.581562pt;}
.h13{height:50.240000pt;}
.h5{height:50.954062pt;}
.hd{height:53.309531pt;}
.hb{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1c{height:72.240000pt;}
.hc{height:92.371875pt;}
.h21{height:110.440573pt;}
.h12{height:125.331875pt;}
.h10{height:128.211875pt;}
.he{height:132.691875pt;}
.hf{height:170.131875pt;}
.h11{height:186.451875pt;}
.h15{height:323.066667pt;}
.h23{height:569.053898pt;}
.h1d{height:679.118785pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:24.880000pt;}
.w8{width:25.520000pt;}
.w12{width:49.771123pt;}
.w11{width:64.014305pt;}
.w18{width:70.240000pt;}
.w4{width:77.840000pt;}
.wa{width:84.400000pt;}
.we{width:84.640000pt;}
.w7{width:93.866667pt;}
.wc{width:107.520000pt;}
.w6{width:112.720000pt;}
.w3{width:112.746667pt;}
.w9{width:114.880000pt;}
.w15{width:119.386667pt;}
.w17{width:209.200000pt;}
.wd{width:212.186667pt;}
.wb{width:249.066667pt;}
.w16{width:270.826667pt;}
.w10{width:404.570411pt;}
.wf{width:450.400000pt;}
.w14{width:486.852985pt;}
.w13{width:490.571698pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x2c{left:8.263807pt;}
.x23{left:9.602146pt;}
.x26{left:13.629713pt;}
.x1{left:60.480000pt;}
.xf{left:64.879988pt;}
.x19{left:69.280000pt;}
.x10{left:71.280000pt;}
.x29{left:79.439988pt;}
.x4{left:84.479988pt;}
.x33{left:98.879988pt;}
.x5{left:108.479988pt;}
.x28{left:129.119988pt;}
.x2a{left:151.973333pt;}
.xa{left:156.506655pt;}
.x20{left:171.973333pt;}
.x2e{left:181.146667pt;}
.x12{left:184.666667pt;}
.x2{left:187.626655pt;}
.xb{left:197.386655pt;}
.x22{left:202.860236pt;}
.x1f{left:203.946655pt;}
.x32{left:206.986655pt;}
.xc{left:222.586655pt;}
.x2d{left:247.145206pt;}
.x13{left:263.146667pt;}
.x14{left:288.666667pt;}
.xe{left:291.786655pt;}
.x6{left:302.426655pt;}
.x1a{left:319.066667pt;}
.x7{left:329.146655pt;}
.x25{left:356.334533pt;}
.x9{left:358.986655pt;}
.x24{left:375.218753pt;}
.x1d{left:396.986655pt;}
.x15{left:402.026667pt;}
.x8{left:417.546655pt;}
.x1b{left:427.226667pt;}
.x21{left:446.113028pt;}
.x2f{left:452.693333pt;}
.x16{left:496.613333pt;}
.x2b{left:499.110966pt;}
.x17{left:522.773333pt;}
.x1e{left:624.053322pt;}
.x18{left:638.293333pt;}
.x1c{left:640.053333pt;}
.x27{left:644.053322pt;}
.x31{left:649.013322pt;}
.x30{left:662.613333pt;}
.xd{left:676.053322pt;}
.x3{left:711.413322pt;}
}




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