
    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_b8c327195112a0643c21cae7.woff')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_3651e7f027b38bcd1fc2e62e.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_15f4152b58099e60abb082ea.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ad1d8a782ada9411b1b76034.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_daf30a2c7b67b7da680d55f8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.919434;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_b145fd27e1f9bb4a11d673d4.woff')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_baea9ab0d70ed7037528e5e2.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4a8f8e0adddb8492e5b5bc3a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.969238;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_234fd61762ec5f58edabb820.woff')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_6fcffbe047d52516fe7a298e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.812012;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_b99721cb1b18cedf360e28e0.woff')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1a{letter-spacing:-0.444600px;}
.ls18{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.273600px;}
.lse{letter-spacing:-0.186600px;}
.lsc{letter-spacing:-0.135000px;}
.ls17{letter-spacing:-0.121200px;}
.lsb{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.084600px;}
.ls1f{letter-spacing:-0.014760px;}
.ls20{letter-spacing:-0.013320px;}
.ls29{letter-spacing:-0.009000px;}
.ls21{letter-spacing:-0.007560px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.015360px;}
.ls13{letter-spacing:0.045360px;}
.ls16{letter-spacing:0.048960px;}
.ls15{letter-spacing:0.051840px;}
.ls1b{letter-spacing:0.060480px;}
.ls19{letter-spacing:0.060600px;}
.ls5{letter-spacing:0.065520px;}
.ls14{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls26{letter-spacing:0.098400px;}
.ls3{letter-spacing:0.106800px;}
.ls1d{letter-spacing:0.109800px;}
.ls23{letter-spacing:0.113400px;}
.ls4{letter-spacing:0.138000px;}
.lsa{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.168600px;}
.lsf{letter-spacing:0.173400px;}
.ls22{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.185520px;}
.ls2a{letter-spacing:0.199200px;}
.ls1c{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.425520px;}
.ls25{letter-spacing:2.606400px;}
.ls12{letter-spacing:12.000000px;}
.ls28{letter-spacing:47.726640px;}
.ls27{letter-spacing:80.846640px;}
.ls24{letter-spacing:202.893600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws11{word-spacing:-60.120000px;}
.wsb{word-spacing:-14.372400px;}
.ws13{word-spacing:-13.425600px;}
.ws4{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.217400px;}
.ws3{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsc{word-spacing:-8.625600px;}
.wse{word-spacing:-8.614200px;}
.wsf{word-spacing:-8.553600px;}
.wsd{word-spacing:-8.265600px;}
.ws8{word-spacing:-0.420000px;}
.ws9{word-spacing:-0.300000px;}
.ws7{word-spacing:-0.240000px;}
.wsa{word-spacing:-0.096000px;}
.ws5{word-spacing:0.000000px;}
.ws6{word-spacing:0.084000px;}
._e{margin-left:-4.180920px;}
._4{margin-left:-2.852280px;}
._0{margin-left:-1.110000px;}
._3{width:1.358664px;}
._9{width:2.549136px;}
._b{width:4.027800px;}
._c{width:5.089470px;}
._10{width:6.360209px;}
._7{width:7.455000px;}
._a{width:8.593320px;}
._d{width:9.863280px;}
._6{width:11.779200px;}
._1d{width:14.404320px;}
._14{width:15.441960px;}
._12{width:16.593120px;}
._13{width:18.194280px;}
._8{width:19.659000px;}
._f{width:20.861640px;}
._1{width:22.983036px;}
._2{width:24.064739px;}
._5{width:25.208858px;}
._11{width:26.975302px;}
._16{width:44.248320px;}
._18{width:53.987760px;}
._1b{width:78.792480px;}
._1c{width:106.725600px;}
._17{width:112.281480px;}
._19{width:143.223120px;}
._1a{width:144.343080px;}
._15{width:202.893600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:7.830000px;}
.y7c{bottom:7.920000px;}
.ydb{bottom:8.100000px;}
.yd7{bottom:8.190000px;}
.y77{bottom:11.340000px;}
.yae{bottom:25.470000px;}
.yda{bottom:27.450000px;}
.yd6{bottom:27.540000px;}
.ya7{bottom:29.970000px;}
.y78{bottom:33.510000px;}
.yd3{bottom:33.750000px;}
.ya1{bottom:35.190000px;}
.y76{bottom:38.100000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yaf{bottom:117.930000px;}
.y85{bottom:118.650000px;}
.y5a{bottom:123.960000px;}
.y127{bottom:129.540000px;}
.yd1{bottom:135.120000px;}
.yad{bottom:145.200000px;}
.y84{bottom:146.010000px;}
.y126{bottom:147.090000px;}
.y59{bottom:159.510000px;}
.yfb{bottom:159.600000px;}
.yd0{bottom:162.480000px;}
.y28{bottom:165.000000px;}
.y83{bottom:173.280000px;}
.y125{bottom:173.730000px;}
.y58{bottom:177.150000px;}
.y27{bottom:182.550000px;}
.ycf{bottom:189.840000px;}
.yac{bottom:190.200000px;}
.y124{bottom:191.280000px;}
.y57{bottom:194.700000px;}
.y26{bottom:200.190000px;}
.y82{bottom:200.640000px;}
.y56{bottom:212.250000px;}
.yfa{bottom:212.340000px;}
.yce{bottom:217.200000px;}
.yab{bottom:217.470000px;}
.y25{bottom:217.740000px;}
.y123{bottom:217.830000px;}
.y81{bottom:228.000000px;}
.y55{bottom:229.890000px;}
.y24{bottom:235.290000px;}
.y122{bottom:235.470000px;}
.ycd{bottom:244.470000px;}
.yaa{bottom:244.830000px;}
.y54{bottom:247.440000px;}
.y80{bottom:255.360000px;}
.yf9{bottom:256.800000px;}
.y121{bottom:262.020000px;}
.y23{bottom:270.930000px;}
.ya9{bottom:272.190000px;}
.y53{bottom:274.080000px;}
.y120{bottom:279.660000px;}
.y7f{bottom:282.630000px;}
.y22{bottom:288.480000px;}
.ycc{bottom:293.880000px;}
.y11f{bottom:297.210000px;}
.ya8{bottom:299.460000px;}
.yf8{bottom:305.040000px;}
.y21{bottom:306.120000px;}
.y52{bottom:309.990000px;}
.ycb{bottom:321.240000px;}
.yf7{bottom:322.680000px;}
.y20{bottom:323.670000px;}
.y11e{bottom:323.760000px;}
.ya6{bottom:326.820000px;}
.y7e{bottom:337.350000px;}
.yf6{bottom:340.230000px;}
.y1f{bottom:341.220000px;}
.y11d{bottom:341.400000px;}
.yf5{bottom:357.870000px;}
.y51{bottom:358.230000px;}
.y1e{bottom:358.860000px;}
.y11c{bottom:358.950000px;}
.y7d{bottom:364.620000px;}
.yca{bottom:366.150000px;}
.y50{bottom:375.780000px;}
.ya5{bottom:376.230000px;}
.y1d{bottom:376.410000px;}
.y11b{bottom:385.590000px;}
.y7b{bottom:391.980000px;}
.y4f{bottom:393.420000px;}
.yc9{bottom:393.510000px;}
.y11a{bottom:403.140000px;}
.ya4{bottom:403.590000px;}
.yf4{bottom:410.970000px;}
.y1c{bottom:412.050000px;}
.y79{bottom:419.340000px;}
.y94{bottom:419.970000px;}
.y119{bottom:420.690000px;}
.yc8{bottom:420.870000px;}
.yf3{bottom:428.610000px;}
.y1b{bottom:429.600000px;}
.ya3{bottom:430.950000px;}
.y4e{bottom:432.750000px;}
.yf2{bottom:446.160000px;}
.y4d{bottom:446.610000px;}
.y75{bottom:446.700000px;}
.y1a{bottom:447.150000px;}
.y118{bottom:447.330000px;}
.yc7{bottom:448.230000px;}
.y93{bottom:458.220000px;}
.yf1{bottom:463.800000px;}
.y4c{bottom:464.160000px;}
.y19{bottom:464.790000px;}
.y117{bottom:464.880000px;}
.yc6{bottom:475.530000px;}
.yf0{bottom:481.380000px;}
.y4b{bottom:481.740000px;}
.y18{bottom:482.370000px;}
.y116{bottom:482.550000px;}
.ya0{bottom:485.610000px;}
.y92{bottom:493.980000px;}
.yef{bottom:498.930000px;}
.y4a{bottom:499.380000px;}
.y17{bottom:499.920000px;}
.yc5{bottom:502.890000px;}
.y115{bottom:509.100000px;}
.ya2{bottom:512.970000px;}
.yee{bottom:516.570000px;}
.y49{bottom:516.930000px;}
.y16{bottom:517.560000px;}
.y74{bottom:525.660000px;}
.y91{bottom:526.200000px;}
.y114{bottom:526.650000px;}
.yc4{bottom:530.250000px;}
.yed{bottom:534.120000px;}
.y48{bottom:534.480000px;}
.yec{bottom:551.760000px;}
.y47{bottom:552.120000px;}
.y15{bottom:553.110000px;}
.y113{bottom:553.290000px;}
.yc3{bottom:557.520000px;}
.y73{bottom:561.210000px;}
.y9f{bottom:561.660000px;}
.yeb{bottom:569.310000px;}
.y46{bottom:569.670000px;}
.y14{bottom:570.750000px;}
.y112{bottom:570.840000px;}
.y72{bottom:578.760000px;}
.yc2{bottom:584.880000px;}
.yea{bottom:586.860000px;}
.y45{bottom:587.310000px;}
.y13{bottom:588.300000px;}
.y71{bottom:596.400000px;}
.y9e{bottom:597.210000px;}
.y111{bottom:597.480000px;}
.y13d{bottom:601.620000px;}
.ye9{bottom:604.500000px;}
.y12{bottom:605.850000px;}
.yc1{bottom:612.240000px;}
.y70{bottom:613.950000px;}
.y9d{bottom:614.850000px;}
.ye8{bottom:622.050000px;}
.y44{bottom:622.860000px;}
.y11{bottom:623.490000px;}
.y110{bottom:624.030000px;}
.y13c{bottom:628.260000px;}
.y9c{bottom:632.400000px;}
.ybf{bottom:639.600000px;}
.ye7{bottom:639.690000px;}
.y43{bottom:640.410000px;}
.y6f{bottom:640.590000px;}
.y10{bottom:641.040000px;}
.y10f{bottom:641.580000px;}
.y13b{bottom:645.810000px;}
.y9b{bottom:650.040000px;}
.ye6{bottom:657.240000px;}
.y42{bottom:658.050000px;}
.yf{bottom:658.680000px;}
.yc0{bottom:666.870000px;}
.y10e{bottom:668.220000px;}
.y13a{bottom:672.360000px;}
.ye5{bottom:674.790000px;}
.y41{bottom:675.600000px;}
.y6e{bottom:676.500000px;}
.ye{bottom:685.590000px;}
.y10d{bottom:685.770000px;}
.y139{bottom:690.000000px;}
.ye4{bottom:692.430000px;}
.y9a{bottom:703.140000px;}
.ye3{bottom:709.980000px;}
.y40{bottom:711.240000px;}
.y10c{bottom:712.410000px;}
.ybe{bottom:715.560000px;}
.y138{bottom:716.550000px;}
.y99{bottom:720.780000px;}
.y6d{bottom:724.740000px;}
.ye2{bottom:727.620000px;}
.y3f{bottom:728.790000px;}
.y10b{bottom:729.960000px;}
.yd{bottom:733.830000px;}
.y137{bottom:734.190000px;}
.y98{bottom:738.330000px;}
.ybd{bottom:744.720000px;}
.ye1{bottom:745.170000px;}
.y3e{bottom:750.120000px;}
.y10a{bottom:756.510000px;}
.ybc{bottom:759.750000px;}
.y6c{bottom:760.290000px;}
.y136{bottom:760.740000px;}
.ye0{bottom:762.720000px;}
.y3d{bottom:763.980000px;}
.y97{bottom:764.970000px;}
.yc{bottom:769.380000px;}
.y109{bottom:774.150000px;}
.y6b{bottom:777.930000px;}
.y135{bottom:778.290000px;}
.ydf{bottom:780.360000px;}
.y3c{bottom:781.530000px;}
.ybb{bottom:787.110000px;}
.y6a{bottom:795.480000px;}
.y134{bottom:795.930000px;}
.yde{bottom:797.910000px;}
.y3b{bottom:799.170000px;}
.y96{bottom:800.520000px;}
.y108{bottom:800.700000px;}
.yb{bottom:805.200000px;}
.y69{bottom:813.030000px;}
.yba{bottom:814.470000px;}
.y107{bottom:818.340000px;}
.y133{bottom:822.480000px;}
.ydd{bottom:824.820000px;}
.y95{bottom:832.740000px;}
.y3a{bottom:834.720000px;}
.y132{bottom:840.030000px;}
.yb9{bottom:841.830000px;}
.y106{bottom:844.890000px;}
.ya{bottom:844.980000px;}
.y68{bottom:848.670000px;}
.y39{bottom:852.270000px;}
.y131{bottom:857.670000px;}
.y90{bottom:860.280000px;}
.y105{bottom:862.440000px;}
.y9{bottom:862.980000px;}
.y67{bottom:866.220000px;}
.yb8{bottom:869.100000px;}
.y38{bottom:869.910000px;}
.ydc{bottom:870.450000px;}
.y8{bottom:880.980000px;}
.y8f{bottom:881.430000px;}
.y66{bottom:883.860000px;}
.y130{bottom:884.220000px;}
.y37{bottom:887.460000px;}
.y104{bottom:889.080000px;}
.yb7{bottom:896.460000px;}
.y7{bottom:898.980000px;}
.y65{bottom:901.410000px;}
.y12f{bottom:901.860000px;}
.y8e{bottom:903.570000px;}
.y36{bottom:905.100000px;}
.y103{bottom:906.630000px;}
.y6{bottom:916.980000px;}
.yd9{bottom:918.960000px;}
.y35{bottom:922.650000px;}
.yb6{bottom:923.820000px;}
.y102{bottom:924.180000px;}
.y64{bottom:927.960000px;}
.y12e{bottom:928.410000px;}
.y8d{bottom:930.210000px;}
.y34{bottom:940.200000px;}
.y12d{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y101{bottom:951.090000px;}
.yb4{bottom:951.180000px;}
.y33{bottom:957.840000px;}
.y8c{bottom:963.150000px;}
.y63{bottom:963.600000px;}
.yd8{bottom:967.380000px;}
.y32{bottom:975.390000px;}
.yb5{bottom:978.450000px;}
.y62{bottom:981.150000px;}
.y4{bottom:987.630000px;}
.y12c{bottom:990.150000px;}
.y8b{bottom:990.510000px;}
.y31{bottom:993.030000px;}
.y61{bottom:998.790000px;}
.y100{bottom:999.420000px;}
.y12b{bottom:1007.790000px;}
.y30{bottom:1010.610000px;}
.y3{bottom:1012.320000px;}
.yd5{bottom:1015.830000px;}
.y8a{bottom:1017.810000px;}
.y60{bottom:1025.370000px;}
.yff{bottom:1026.360000px;}
.yb3{bottom:1027.170000px;}
.y2f{bottom:1028.160000px;}
.y12a{bottom:1034.370000px;}
.y89{bottom:1045.170000px;}
.y2e{bottom:1045.800000px;}
.y129{bottom:1051.920000px;}
.y5f{bottom:1060.920000px;}
.yb2{bottom:1062.810000px;}
.yfe{bottom:1063.350000px;}
.yd2{bottom:1064.250000px;}
.y88{bottom:1072.530000px;}
.y2d{bottom:1072.710000px;}
.yb1{bottom:1077.750000px;}
.y5e{bottom:1078.560000px;}
.yfd{bottom:1090.260000px;}
.yd4{bottom:1091.610000px;}
.y5d{bottom:1096.110000px;}
.y87{bottom:1099.890000px;}
.yb0{bottom:1105.110000px;}
.y5c{bottom:1113.750000px;}
.y2c{bottom:1120.950000px;}
.y128{bottom:1122.750000px;}
.y86{bottom:1127.160000px;}
.yfc{bottom:1127.610000px;}
.y2b{bottom:1138.860000px;}
.y5b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h11{height:26.580000px;}
.h10{height:26.640000px;}
.h13{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.hb{height:37.191445px;}
.h3{height:39.155273px;}
.h15{height:44.190000px;}
.h18{height:47.610000px;}
.h16{height:47.700000px;}
.h17{height:47.730000px;}
.h14{height:48.690000px;}
.he{height:50.902383px;}
.h7{height:52.311445px;}
.h12{height:53.910000px;}
.h8{height:55.779258px;}
.hd{height:56.820000px;}
.h5{height:57.323320px;}
.h9{height:60.960938px;}
.h19{height:61.793886px;}
.hc{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:51.750000px;}
.wb{width:65.880000px;}
.w17{width:66.420000px;}
.w15{width:67.230000px;}
.w4{width:96.570000px;}
.w10{width:119.160000px;}
.w14{width:128.370000px;}
.w16{width:128.610000px;}
.wc{width:138.600000px;}
.wa{width:139.890000px;}
.we{width:161.040000px;}
.w9{width:191.160000px;}
.w13{width:195.750000px;}
.w12{width:196.410000px;}
.w8{width:206.490000px;}
.wf{width:224.190000px;}
.w3{width:253.830000px;}
.w5{width:255.900000px;}
.w7{width:276.330000px;}
.w11{width:281.010000px;}
.wd{width:308.100000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x10{left:56.520000px;}
.xb{left:66.869987px;}
.x1{left:68.040000px;}
.x14{left:99.180000px;}
.xe{left:108.900000px;}
.x1d{left:111.239987px;}
.x4{left:116.460000px;}
.x2{left:192.719987px;}
.xd{left:254.729987px;}
.xa{left:283.619987px;}
.x6{left:371.100000px;}
.xf{left:385.950000px;}
.x19{left:391.080000px;}
.x15{left:408.090000px;}
.x7{left:468.390000px;}
.x1b{left:520.260000px;}
.x12{left:526.560000px;}
.x16{left:569.850000px;}
.x1a{left:588.210000px;}
.x11{left:593.160000px;}
.x17{left:622.410000px;}
.x9{left:709.889987px;}
.x1c{left:717.540000px;}
.xc{left:720.059987px;}
.x8{left:725.010000px;}
.x13{left:732.570000px;}
.x18{left:742.290000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1a{letter-spacing:-0.395200pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.243200pt;}
.lse{letter-spacing:-0.165867pt;}
.lsc{letter-spacing:-0.120000pt;}
.ls17{letter-spacing:-0.107733pt;}
.lsb{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.075200pt;}
.ls1f{letter-spacing:-0.013120pt;}
.ls20{letter-spacing:-0.011840pt;}
.ls29{letter-spacing:-0.008000pt;}
.ls21{letter-spacing:-0.006720pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.013653pt;}
.ls13{letter-spacing:0.040320pt;}
.ls16{letter-spacing:0.043520pt;}
.ls15{letter-spacing:0.046080pt;}
.ls1b{letter-spacing:0.053760pt;}
.ls19{letter-spacing:0.053867pt;}
.ls5{letter-spacing:0.058240pt;}
.ls14{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls26{letter-spacing:0.087467pt;}
.ls3{letter-spacing:0.094933pt;}
.ls1d{letter-spacing:0.097600pt;}
.ls23{letter-spacing:0.100800pt;}
.ls4{letter-spacing:0.122667pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.149867pt;}
.lsf{letter-spacing:0.154133pt;}
.ls22{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.164907pt;}
.ls2a{letter-spacing:0.177067pt;}
.ls1c{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.378240pt;}
.ls25{letter-spacing:2.316800pt;}
.ls12{letter-spacing:10.666667pt;}
.ls28{letter-spacing:42.423680pt;}
.ls27{letter-spacing:71.863680pt;}
.ls24{letter-spacing:180.349867pt;}
.ws11{word-spacing:-53.440000pt;}
.wsb{word-spacing:-12.775467pt;}
.ws13{word-spacing:-11.933867pt;}
.ws4{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.748800pt;}
.ws3{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsc{word-spacing:-7.667200pt;}
.wse{word-spacing:-7.657067pt;}
.wsf{word-spacing:-7.603200pt;}
.wsd{word-spacing:-7.347200pt;}
.ws8{word-spacing:-0.373333pt;}
.ws9{word-spacing:-0.266667pt;}
.ws7{word-spacing:-0.213333pt;}
.wsa{word-spacing:-0.085333pt;}
.ws5{word-spacing:0.000000pt;}
.ws6{word-spacing:0.074667pt;}
._e{margin-left:-3.716373pt;}
._4{margin-left:-2.535360pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.207701pt;}
._9{width:2.265899pt;}
._b{width:3.580266pt;}
._c{width:4.523974pt;}
._10{width:5.653519pt;}
._7{width:6.626667pt;}
._a{width:7.638506pt;}
._d{width:8.767360pt;}
._6{width:10.470400pt;}
._1d{width:12.803840pt;}
._14{width:13.726187pt;}
._12{width:14.749440pt;}
._13{width:16.172693pt;}
._8{width:17.474666pt;}
._f{width:18.543680pt;}
._1{width:20.429365pt;}
._2{width:21.390879pt;}
._5{width:22.407874pt;}
._11{width:23.978046pt;}
._16{width:39.331840pt;}
._18{width:47.989120pt;}
._1b{width:70.037760pt;}
._1c{width:94.867200pt;}
._17{width:99.805760pt;}
._19{width:127.309440pt;}
._1a{width:128.304960pt;}
._15{width:180.349867pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:6.960000pt;}
.y7c{bottom:7.040000pt;}
.ydb{bottom:7.200000pt;}
.yd7{bottom:7.280000pt;}
.y77{bottom:10.080000pt;}
.yae{bottom:22.640000pt;}
.yda{bottom:24.400000pt;}
.yd6{bottom:24.480000pt;}
.ya7{bottom:26.640000pt;}
.y78{bottom:29.786667pt;}
.yd3{bottom:30.000000pt;}
.ya1{bottom:31.280000pt;}
.y76{bottom:33.866667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yaf{bottom:104.826667pt;}
.y85{bottom:105.466667pt;}
.y5a{bottom:110.186667pt;}
.y127{bottom:115.146667pt;}
.yd1{bottom:120.106667pt;}
.yad{bottom:129.066667pt;}
.y84{bottom:129.786667pt;}
.y126{bottom:130.746667pt;}
.y59{bottom:141.786667pt;}
.yfb{bottom:141.866667pt;}
.yd0{bottom:144.426667pt;}
.y28{bottom:146.666667pt;}
.y83{bottom:154.026667pt;}
.y125{bottom:154.426667pt;}
.y58{bottom:157.466667pt;}
.y27{bottom:162.266667pt;}
.ycf{bottom:168.746667pt;}
.yac{bottom:169.066667pt;}
.y124{bottom:170.026667pt;}
.y57{bottom:173.066667pt;}
.y26{bottom:177.946667pt;}
.y82{bottom:178.346667pt;}
.y56{bottom:188.666667pt;}
.yfa{bottom:188.746667pt;}
.yce{bottom:193.066667pt;}
.yab{bottom:193.306667pt;}
.y25{bottom:193.546667pt;}
.y123{bottom:193.626667pt;}
.y81{bottom:202.666667pt;}
.y55{bottom:204.346667pt;}
.y24{bottom:209.146667pt;}
.y122{bottom:209.306667pt;}
.ycd{bottom:217.306667pt;}
.yaa{bottom:217.626667pt;}
.y54{bottom:219.946667pt;}
.y80{bottom:226.986667pt;}
.yf9{bottom:228.266667pt;}
.y121{bottom:232.906667pt;}
.y23{bottom:240.826667pt;}
.ya9{bottom:241.946667pt;}
.y53{bottom:243.626667pt;}
.y120{bottom:248.586667pt;}
.y7f{bottom:251.226667pt;}
.y22{bottom:256.426667pt;}
.ycc{bottom:261.226667pt;}
.y11f{bottom:264.186667pt;}
.ya8{bottom:266.186667pt;}
.yf8{bottom:271.146667pt;}
.y21{bottom:272.106667pt;}
.y52{bottom:275.546667pt;}
.ycb{bottom:285.546667pt;}
.yf7{bottom:286.826667pt;}
.y20{bottom:287.706667pt;}
.y11e{bottom:287.786667pt;}
.ya6{bottom:290.506667pt;}
.y7e{bottom:299.866667pt;}
.yf6{bottom:302.426667pt;}
.y1f{bottom:303.306667pt;}
.y11d{bottom:303.466667pt;}
.yf5{bottom:318.106667pt;}
.y51{bottom:318.426667pt;}
.y1e{bottom:318.986667pt;}
.y11c{bottom:319.066667pt;}
.y7d{bottom:324.106667pt;}
.yca{bottom:325.466667pt;}
.y50{bottom:334.026667pt;}
.ya5{bottom:334.426667pt;}
.y1d{bottom:334.586667pt;}
.y11b{bottom:342.746667pt;}
.y7b{bottom:348.426667pt;}
.y4f{bottom:349.706667pt;}
.yc9{bottom:349.786667pt;}
.y11a{bottom:358.346667pt;}
.ya4{bottom:358.746667pt;}
.yf4{bottom:365.306667pt;}
.y1c{bottom:366.266667pt;}
.y79{bottom:372.746667pt;}
.y94{bottom:373.306667pt;}
.y119{bottom:373.946667pt;}
.yc8{bottom:374.106667pt;}
.yf3{bottom:380.986667pt;}
.y1b{bottom:381.866667pt;}
.ya3{bottom:383.066667pt;}
.y4e{bottom:384.666667pt;}
.yf2{bottom:396.586667pt;}
.y4d{bottom:396.986667pt;}
.y75{bottom:397.066667pt;}
.y1a{bottom:397.466667pt;}
.y118{bottom:397.626667pt;}
.yc7{bottom:398.426667pt;}
.y93{bottom:407.306667pt;}
.yf1{bottom:412.266667pt;}
.y4c{bottom:412.586667pt;}
.y19{bottom:413.146667pt;}
.y117{bottom:413.226667pt;}
.yc6{bottom:422.693333pt;}
.yf0{bottom:427.893333pt;}
.y4b{bottom:428.213333pt;}
.y18{bottom:428.773333pt;}
.y116{bottom:428.933333pt;}
.ya0{bottom:431.653333pt;}
.y92{bottom:439.093333pt;}
.yef{bottom:443.493333pt;}
.y4a{bottom:443.893333pt;}
.y17{bottom:444.373333pt;}
.yc5{bottom:447.013333pt;}
.y115{bottom:452.533333pt;}
.ya2{bottom:455.973333pt;}
.yee{bottom:459.173333pt;}
.y49{bottom:459.493333pt;}
.y16{bottom:460.053333pt;}
.y74{bottom:467.253333pt;}
.y91{bottom:467.733333pt;}
.y114{bottom:468.133333pt;}
.yc4{bottom:471.333333pt;}
.yed{bottom:474.773333pt;}
.y48{bottom:475.093333pt;}
.yec{bottom:490.453333pt;}
.y47{bottom:490.773333pt;}
.y15{bottom:491.653333pt;}
.y113{bottom:491.813333pt;}
.yc3{bottom:495.573333pt;}
.y73{bottom:498.853333pt;}
.y9f{bottom:499.253333pt;}
.yeb{bottom:506.053333pt;}
.y46{bottom:506.373333pt;}
.y14{bottom:507.333333pt;}
.y112{bottom:507.413333pt;}
.y72{bottom:514.453333pt;}
.yc2{bottom:519.893333pt;}
.yea{bottom:521.653333pt;}
.y45{bottom:522.053333pt;}
.y13{bottom:522.933333pt;}
.y71{bottom:530.133333pt;}
.y9e{bottom:530.853333pt;}
.y111{bottom:531.093333pt;}
.y13d{bottom:534.773333pt;}
.ye9{bottom:537.333333pt;}
.y12{bottom:538.533333pt;}
.yc1{bottom:544.213333pt;}
.y70{bottom:545.733333pt;}
.y9d{bottom:546.533333pt;}
.ye8{bottom:552.933333pt;}
.y44{bottom:553.653333pt;}
.y11{bottom:554.213333pt;}
.y110{bottom:554.693333pt;}
.y13c{bottom:558.453333pt;}
.y9c{bottom:562.133333pt;}
.ybf{bottom:568.533333pt;}
.ye7{bottom:568.613333pt;}
.y43{bottom:569.253333pt;}
.y6f{bottom:569.413333pt;}
.y10{bottom:569.813333pt;}
.y10f{bottom:570.293333pt;}
.y13b{bottom:574.053333pt;}
.y9b{bottom:577.813333pt;}
.ye6{bottom:584.213333pt;}
.y42{bottom:584.933333pt;}
.yf{bottom:585.493333pt;}
.yc0{bottom:592.773333pt;}
.y10e{bottom:593.973333pt;}
.y13a{bottom:597.653333pt;}
.ye5{bottom:599.813333pt;}
.y41{bottom:600.533333pt;}
.y6e{bottom:601.333333pt;}
.ye{bottom:609.413333pt;}
.y10d{bottom:609.573333pt;}
.y139{bottom:613.333333pt;}
.ye4{bottom:615.493333pt;}
.y9a{bottom:625.013333pt;}
.ye3{bottom:631.093333pt;}
.y40{bottom:632.213333pt;}
.y10c{bottom:633.253333pt;}
.ybe{bottom:636.053333pt;}
.y138{bottom:636.933333pt;}
.y99{bottom:640.693333pt;}
.y6d{bottom:644.213333pt;}
.ye2{bottom:646.773333pt;}
.y3f{bottom:647.813333pt;}
.y10b{bottom:648.853333pt;}
.yd{bottom:652.293333pt;}
.y137{bottom:652.613333pt;}
.y98{bottom:656.293333pt;}
.ybd{bottom:661.973333pt;}
.ye1{bottom:662.373333pt;}
.y3e{bottom:666.773333pt;}
.y10a{bottom:672.453333pt;}
.ybc{bottom:675.333333pt;}
.y6c{bottom:675.813333pt;}
.y136{bottom:676.213333pt;}
.ye0{bottom:677.973333pt;}
.y3d{bottom:679.093333pt;}
.y97{bottom:679.973333pt;}
.yc{bottom:683.893333pt;}
.y109{bottom:688.133333pt;}
.y6b{bottom:691.493333pt;}
.y135{bottom:691.813333pt;}
.ydf{bottom:693.653333pt;}
.y3c{bottom:694.693333pt;}
.ybb{bottom:699.653333pt;}
.y6a{bottom:707.093333pt;}
.y134{bottom:707.493333pt;}
.yde{bottom:709.253333pt;}
.y3b{bottom:710.373333pt;}
.y96{bottom:711.573333pt;}
.y108{bottom:711.733333pt;}
.yb{bottom:715.733333pt;}
.y69{bottom:722.693333pt;}
.yba{bottom:723.973333pt;}
.y107{bottom:727.413333pt;}
.y133{bottom:731.093333pt;}
.ydd{bottom:733.173333pt;}
.y95{bottom:740.213333pt;}
.y3a{bottom:741.973333pt;}
.y132{bottom:746.693333pt;}
.yb9{bottom:748.293333pt;}
.y106{bottom:751.013333pt;}
.ya{bottom:751.093333pt;}
.y68{bottom:754.373333pt;}
.y39{bottom:757.573333pt;}
.y131{bottom:762.373333pt;}
.y90{bottom:764.693333pt;}
.y105{bottom:766.613333pt;}
.y9{bottom:767.093333pt;}
.y67{bottom:769.973333pt;}
.yb8{bottom:772.533333pt;}
.y38{bottom:773.253333pt;}
.ydc{bottom:773.733333pt;}
.y8{bottom:783.093333pt;}
.y8f{bottom:783.493333pt;}
.y66{bottom:785.653333pt;}
.y130{bottom:785.973333pt;}
.y37{bottom:788.853333pt;}
.y104{bottom:790.293333pt;}
.yb7{bottom:796.853333pt;}
.y7{bottom:799.093333pt;}
.y65{bottom:801.253333pt;}
.y12f{bottom:801.653333pt;}
.y8e{bottom:803.173333pt;}
.y36{bottom:804.533333pt;}
.y103{bottom:805.893333pt;}
.y6{bottom:815.093333pt;}
.yd9{bottom:816.853333pt;}
.y35{bottom:820.133333pt;}
.yb6{bottom:821.173333pt;}
.y102{bottom:821.493333pt;}
.y64{bottom:824.853333pt;}
.y12e{bottom:825.253333pt;}
.y8d{bottom:826.853333pt;}
.y34{bottom:835.733333pt;}
.y12d{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y101{bottom:845.413333pt;}
.yb4{bottom:845.493333pt;}
.y33{bottom:851.413333pt;}
.y8c{bottom:856.133333pt;}
.y63{bottom:856.533333pt;}
.yd8{bottom:859.893333pt;}
.y32{bottom:867.013333pt;}
.yb5{bottom:869.733333pt;}
.y62{bottom:872.133333pt;}
.y4{bottom:877.893333pt;}
.y12c{bottom:880.133333pt;}
.y8b{bottom:880.453333pt;}
.y31{bottom:882.693333pt;}
.y61{bottom:887.813333pt;}
.y100{bottom:888.373333pt;}
.y12b{bottom:895.813333pt;}
.y30{bottom:898.320000pt;}
.y3{bottom:899.840000pt;}
.yd5{bottom:902.960000pt;}
.y8a{bottom:904.720000pt;}
.y60{bottom:911.440000pt;}
.yff{bottom:912.320000pt;}
.yb3{bottom:913.040000pt;}
.y2f{bottom:913.920000pt;}
.y12a{bottom:919.440000pt;}
.y89{bottom:929.040000pt;}
.y2e{bottom:929.600000pt;}
.y129{bottom:935.040000pt;}
.y5f{bottom:943.040000pt;}
.yb2{bottom:944.720000pt;}
.yfe{bottom:945.200000pt;}
.yd2{bottom:946.000000pt;}
.y88{bottom:953.360000pt;}
.y2d{bottom:953.520000pt;}
.yb1{bottom:958.000000pt;}
.y5e{bottom:958.720000pt;}
.yfd{bottom:969.120000pt;}
.yd4{bottom:970.320000pt;}
.y5d{bottom:974.320000pt;}
.y87{bottom:977.680000pt;}
.yb0{bottom:982.320000pt;}
.y5c{bottom:990.000000pt;}
.y2c{bottom:996.400000pt;}
.y128{bottom:998.000000pt;}
.y86{bottom:1001.920000pt;}
.yfc{bottom:1002.320000pt;}
.y2b{bottom:1012.320000pt;}
.y5b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h11{height:23.626667pt;}
.h10{height:23.680000pt;}
.h13{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.hb{height:33.059063pt;}
.h3{height:34.804688pt;}
.h15{height:39.280000pt;}
.h18{height:42.320000pt;}
.h16{height:42.400000pt;}
.h17{height:42.426667pt;}
.h14{height:43.280000pt;}
.he{height:45.246562pt;}
.h7{height:46.499062pt;}
.h12{height:47.920000pt;}
.h8{height:49.581562pt;}
.hd{height:50.506667pt;}
.h5{height:50.954062pt;}
.h9{height:54.187500pt;}
.h19{height:54.927899pt;}
.hc{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:46.000000pt;}
.wb{width:58.560000pt;}
.w17{width:59.040000pt;}
.w15{width:59.760000pt;}
.w4{width:85.840000pt;}
.w10{width:105.920000pt;}
.w14{width:114.106667pt;}
.w16{width:114.320000pt;}
.wc{width:123.200000pt;}
.wa{width:124.346667pt;}
.we{width:143.146667pt;}
.w9{width:169.920000pt;}
.w13{width:174.000000pt;}
.w12{width:174.586667pt;}
.w8{width:183.546667pt;}
.wf{width:199.280000pt;}
.w3{width:225.626667pt;}
.w5{width:227.466667pt;}
.w7{width:245.626667pt;}
.w11{width:249.786667pt;}
.wd{width:273.866667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x10{left:50.240000pt;}
.xb{left:59.439988pt;}
.x1{left:60.480000pt;}
.x14{left:88.160000pt;}
.xe{left:96.800000pt;}
.x1d{left:98.879988pt;}
.x4{left:103.520000pt;}
.x2{left:171.306655pt;}
.xd{left:226.426655pt;}
.xa{left:252.106655pt;}
.x6{left:329.866667pt;}
.xf{left:343.066667pt;}
.x19{left:347.626667pt;}
.x15{left:362.746667pt;}
.x7{left:416.346667pt;}
.x1b{left:462.453333pt;}
.x12{left:468.053333pt;}
.x16{left:506.533333pt;}
.x1a{left:522.853333pt;}
.x11{left:527.253333pt;}
.x17{left:553.253333pt;}
.x9{left:631.013322pt;}
.x1c{left:637.813333pt;}
.xc{left:640.053322pt;}
.x8{left:644.453333pt;}
.x13{left:651.173333pt;}
.x18{left:659.813333pt;}
.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; }
  