
    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_c5ece3a7c3be93ba0bdf7975.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_8a54ce1f770d2b265c86cd56.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_14d534ceb1091e24ef1d527f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_fea02e5a4d7a3b7bf08ff063.woff')format("woff");}.ff4{font-family:ff4;line-height:0.972656;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_4273230278093d6f73b88d3f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.916016;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_c427176994f8e9874a8b51ae.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_7ef6f8d826503f773d70c7a4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_00ed3d2b441a029495a17c7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_6448beb3af9a9b4aa20bd7aa.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_35721bdc509eeb3373d54088.woff')format("woff");}.ffa{font-family:ffa;line-height:0.752441;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_a54019a1033f6c24a2c1ff4a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.776855;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_9d4b97b51b8ec8db7aacbdfc.woff')format("woff");}.ffc{font-family:ffc;line-height:1.104004;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-4.320000px;}
.ls7{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.387600px;}
.lsb{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.252720px;}
.lsc{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.720000px;}
.lse{letter-spacing:1.440000px;}
.ls0{letter-spacing:8.640000px;}
.ls9{letter-spacing:54.864000px;}
.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;}
}
.ws5{word-spacing:-28.977840px;}
.ws6{word-spacing:-28.590240px;}
.wsd{word-spacing:-21.060000px;}
.wsb{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.712000px;}
.ws4{word-spacing:-17.280000px;}
.ws9{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.254600px;}
.ws3{word-spacing:-13.680000px;}
.ws7{word-spacing:0.000000px;}
._9{margin-left:-16.560000px;}
._a{margin-left:-9.096000px;}
._6{margin-left:-6.192000px;}
._5{margin-left:-5.184000px;}
._b{margin-left:-3.828000px;}
._8{margin-left:-2.808000px;}
._0{margin-left:-1.008000px;}
._1{width:1.020000px;}
._2{width:2.340000px;}
._3{width:3.600000px;}
._c{width:4.656000px;}
._f{width:6.528000px;}
._18{width:7.608000px;}
._4{width:8.640000px;}
._7{width:9.804000px;}
._d{width:11.808000px;}
._12{width:12.864000px;}
._11{width:14.112000px;}
._10{width:15.120000px;}
._15{width:16.776000px;}
._e{width:19.428000px;}
._14{width:21.240000px;}
._1f{width:23.112000px;}
._19{width:25.128000px;}
._16{width:27.000000px;}
._17{width:28.008000px;}
._13{width:29.592000px;}
._20{width:64.008000px;}
._1d{width:65.088000px;}
._1b{width:76.104000px;}
._1c{width:192.312000px;}
._1e{width:203.256000px;}
._1a{width:3126.960000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,32,96);}
.fc6{color:rgb(38,38,38);}
.fc5{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(192,0,0);}
.fc0{color:rgb(57,85,160);}
.fs2{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs4{font-size:120.240000px;}
.y21{bottom:-29.880000px;}
.y2b{bottom:-14.760060px;}
.y26{bottom:-8.820000px;}
.y0{bottom:0.000000px;}
.ycf{bottom:3.600000px;}
.yd4{bottom:3.780000px;}
.yd1{bottom:3.960000px;}
.y121{bottom:4.005000px;}
.yd5{bottom:4.140000px;}
.y128{bottom:7.560000px;}
.y116{bottom:8.280000px;}
.y120{bottom:8.325000px;}
.y125{bottom:8.460000px;}
.y20{bottom:8.820000px;}
.y2a{bottom:9.180000px;}
.y113{bottom:10.260000px;}
.y127{bottom:10.980000px;}
.y129{bottom:11.340000px;}
.y12b{bottom:12.240000px;}
.y115{bottom:12.420000px;}
.y11f{bottom:12.465000px;}
.y12c{bottom:12.600000px;}
.y117{bottom:12.780000px;}
.y122{bottom:12.825000px;}
.ya2{bottom:14.220000px;}
.y14b{bottom:14.265000px;}
.yb4{bottom:14.400000px;}
.y25{bottom:14.580000px;}
.y14c{bottom:14.625000px;}
.y9f{bottom:14.760000px;}
.y23{bottom:14.940000px;}
.ya0{bottom:15.120000px;}
.yb2{bottom:15.165000px;}
.ya4{bottom:15.300000px;}
.y27{bottom:16.200000px;}
.y4{bottom:16.920000px;}
.y68{bottom:18.720000px;}
.y111{bottom:19.800000px;}
.yce{bottom:22.680000px;}
.y1{bottom:24.480000px;}
.y112{bottom:29.340000px;}
.y144{bottom:29.880000px;}
.y156{bottom:30.060000px;}
.y9c{bottom:30.645000px;}
.y9d{bottom:31.005000px;}
.y11b{bottom:31.680000px;}
.y29{bottom:32.940000px;}
.y11a{bottom:40.140000px;}
.y11c{bottom:40.500000px;}
.y3{bottom:41.400000px;}
.ycd{bottom:41.580000px;}
.y145{bottom:45.360000px;}
.y157{bottom:45.720000px;}
.y67{bottom:50.220000px;}
.y28{bottom:56.700000px;}
.y1f{bottom:59.970000px;}
.ycc{bottom:60.660000px;}
.y2{bottom:65.160000px;}
.y6{bottom:76.500000px;}
.y66{bottom:81.360000px;}
.y2c{bottom:97.920000px;}
.y17b{bottom:112.140000px;}
.y65{bottom:112.320000px;}
.y89{bottom:112.500000px;}
.yf3{bottom:116.640000px;}
.y142{bottom:117.360000px;}
.y18e{bottom:117.720000px;}
.y4b{bottom:124.920000px;}
.yca{bottom:125.640000px;}
.y172{bottom:130.896000px;}
.y10f{bottom:132.876000px;}
.ya8{bottom:134.136000px;}
.y18d{bottom:138.456000px;}
.y64{bottom:143.460000px;}
.y88{bottom:143.676000px;}
.yf2{bottom:147.816000px;}
.y141{bottom:148.356000px;}
.y177{bottom:148.716000px;}
.yc9{bottom:156.630000px;}
.y4a{bottom:161.310000px;}
.y171{bottom:161.850000px;}
.y10e{bottom:164.010000px;}
.ya7{bottom:166.350000px;}
.y18c{bottom:169.410000px;}
.y63{bottom:174.420000px;}
.y87{bottom:174.630000px;}
.y4c{bottom:177.510000px;}
.yf1{bottom:178.770000px;}
.y140{bottom:179.850000px;}
.yc8{bottom:187.770000px;}
.y170{bottom:192.990000px;}
.y10d{bottom:195.330000px;}
.y49{bottom:197.490000px;}
.ya6{bottom:198.750000px;}
.y18b{bottom:200.550000px;}
.y62{bottom:205.605000px;}
.y86{bottom:205.770000px;}
.yf0{bottom:209.910000px;}
.y13f{bottom:210.810000px;}
.yc7{bottom:218.730000px;}
.y16f{bottom:223.950000px;}
.y10c{bottom:226.470000px;}
.ya5{bottom:230.970000px;}
.y18a{bottom:231.510000px;}
.y48{bottom:233.670000px;}
.y17a{bottom:236.370000px;}
.y61{bottom:236.565000px;}
.y85{bottom:236.730000px;}
.yef{bottom:240.870000px;}
.y13e{bottom:241.950000px;}
.yc6{bottom:249.870000px;}
.y16e{bottom:255.090000px;}
.y10b{bottom:257.430000px;}
.ya3{bottom:262.650000px;}
.y84{bottom:267.690000px;}
.y60{bottom:267.705000px;}
.y47{bottom:269.850000px;}
.yee{bottom:272.190000px;}
.y176{bottom:272.550000px;}
.y13d{bottom:272.910000px;}
.yc5{bottom:280.830000px;}
.y16d{bottom:285.690000px;}
.y10a{bottom:288.390000px;}
.y189{bottom:293.610000px;}
.ya1{bottom:295.050000px;}
.y5f{bottom:298.665000px;}
.y83{bottom:298.830000px;}
.yed{bottom:303.330000px;}
.y175{bottom:303.690000px;}
.y13c{bottom:304.050000px;}
.y46{bottom:306.030000px;}
.yc4{bottom:313.950000px;}
.y16c{bottom:316.830000px;}
.y109{bottom:319.530000px;}
.y188{bottom:324.750000px;}
.y9e{bottom:326.730000px;}
.y82{bottom:329.790000px;}
.y5e{bottom:329.805000px;}
.yec{bottom:334.290000px;}
.y13b{bottom:334.650000px;}
.y174{bottom:335.010000px;}
.y45{bottom:342.390000px;}
.yc3{bottom:347.790000px;}
.y16b{bottom:348.150000px;}
.y108{bottom:350.490000px;}
.y187{bottom:355.710000px;}
.y9b{bottom:358.950000px;}
.y5d{bottom:360.765000px;}
.y81{bottom:360.930000px;}
.yeb{bottom:365.430000px;}
.y13a{bottom:365.790000px;}
.y173{bottom:366.150000px;}
.y44{bottom:378.615000px;}
.yc2{bottom:379.155000px;}
.y16a{bottom:379.335000px;}
.y107{bottom:381.675000px;}
.y1d{bottom:384.915000px;}
.y186{bottom:386.895000px;}
.y5c{bottom:391.905000px;}
.y80{bottom:391.935000px;}
.yea{bottom:396.435000px;}
.y139{bottom:397.155000px;}
.y9a{bottom:407.055000px;}
.yc1{bottom:410.295000px;}
.y106{bottom:412.635000px;}
.y43{bottom:414.795000px;}
.y185{bottom:417.855000px;}
.y5b{bottom:422.865000px;}
.y7f{bottom:423.075000px;}
.y1c{bottom:424.515000px;}
.ye9{bottom:427.575000px;}
.y138{bottom:428.295000px;}
.yc0{bottom:440.895000px;}
.y105{bottom:443.415000px;}
.y184{bottom:448.995000px;}
.y42{bottom:450.975000px;}
.y99{bottom:453.675000px;}
.y5a{bottom:453.855000px;}
.y7e{bottom:454.035000px;}
.ye8{bottom:458.175000px;}
.y137{bottom:459.255000px;}
.y1b{bottom:464.295000px;}
.ybf{bottom:472.395000px;}
.y104{bottom:474.375000px;}
.y169{bottom:477.615000px;}
.y183{bottom:479.955000px;}
.y98{bottom:484.815000px;}
.y59{bottom:484.995000px;}
.y7d{bottom:485.175000px;}
.y41{bottom:487.335000px;}
.y155{bottom:487.515000px;}
.ye7{bottom:489.315000px;}
.y136{bottom:490.395000px;}
.ybe{bottom:503.355000px;}
.y1a{bottom:503.895000px;}
.y103{bottom:505.875000px;}
.y168{bottom:508.575000px;}
.y182{bottom:511.095000px;}
.y58{bottom:515.955000px;}
.y7c{bottom:516.135000px;}
.ye6{bottom:520.635000px;}
.y40{bottom:520.995000px;}
.y135{bottom:521.355000px;}
.y167{bottom:525.675000px;}
.ybd{bottom:534.135000px;}
.y102{bottom:536.835000px;}
.y181{bottom:542.055000px;}
.y97{bottom:546.915000px;}
.y57{bottom:547.095000px;}
.y7b{bottom:547.275000px;}
.y154{bottom:550.335000px;}
.ye5{bottom:551.775000px;}
.y3f{bottom:552.135000px;}
.y134{bottom:552.495000px;}
.y19{bottom:555.015000px;}
.y166{bottom:557.535000px;}
.ybc{bottom:565.455000px;}
.y101{bottom:567.975000px;}
.y180{bottom:573.195000px;}
.y179{bottom:577.875000px;}
.y56{bottom:578.055000px;}
.y7a{bottom:578.235000px;}
.y153{bottom:582.015000px;}
.ye4{bottom:582.735000px;}
.y3e{bottom:583.095000px;}
.y133{bottom:583.455000px;}
.y18{bottom:585.975000px;}
.y165{bottom:589.395000px;}
.ybb{bottom:596.595000px;}
.y100{bottom:598.935000px;}
.y17f{bottom:604.155000px;}
.y178{bottom:609.045000px;}
.y55{bottom:609.195000px;}
.y79{bottom:609.405000px;}
.ye3{bottom:613.905000px;}
.y3d{bottom:614.265000px;}
.y132{bottom:614.625000px;}
.y17{bottom:617.145000px;}
.y164{bottom:621.105000px;}
.yba{bottom:627.585000px;}
.yff{bottom:630.105000px;}
.y17e{bottom:635.325000px;}
.y54{bottom:640.155000px;}
.y78{bottom:640.365000px;}
.y16{bottom:640.545000px;}
.ye2{bottom:644.505000px;}
.y3c{bottom:645.225000px;}
.y131{bottom:645.585000px;}
.y152{bottom:645.765000px;}
.y163{bottom:652.965000px;}
.yb9{bottom:658.725000px;}
.yfe{bottom:660.705000px;}
.ye1{bottom:661.965000px;}
.y15{bottom:664.665000px;}
.y17d{bottom:666.285000px;}
.y53{bottom:671.340000px;}
.y77{bottom:671.505000px;}
.y3b{bottom:676.365000px;}
.y130{bottom:676.725000px;}
.y151{bottom:677.445000px;}
.ye0{bottom:681.765000px;}
.y162{bottom:684.825000px;}
.y14{bottom:688.425000px;}
.yb8{bottom:689.685000px;}
.yfd{bottom:691.845000px;}
.y17c{bottom:699.405000px;}
.ydf{bottom:701.565000px;}
.y96{bottom:702.105000px;}
.y52{bottom:702.300000px;}
.y76{bottom:702.465000px;}
.y3a{bottom:707.325000px;}
.y12f{bottom:707.685000px;}
.y150{bottom:709.305000px;}
.y161{bottom:716.505000px;}
.y13{bottom:719.025000px;}
.yb7{bottom:720.825000px;}
.yde{bottom:721.185000px;}
.yfc{bottom:722.805000px;}
.y12a{bottom:731.985000px;}
.y51{bottom:733.440000px;}
.y75{bottom:733.605000px;}
.y95{bottom:735.765000px;}
.y39{bottom:738.465000px;}
.y12e{bottom:738.825000px;}
.ydd{bottom:740.985000px;}
.y14f{bottom:741.165000px;}
.y12{bottom:742.785000px;}
.y160{bottom:748.365000px;}
.yb6{bottom:753.945000px;}
.y126{bottom:760.425000px;}
.ydc{bottom:760.605000px;}
.y50{bottom:764.400000px;}
.y74{bottom:764.565000px;}
.y11{bottom:766.725000px;}
.y38{bottom:769.425000px;}
.y12d{bottom:769.785000px;}
.y14e{bottom:772.845000px;}
.yb5{bottom:774.105000px;}
.y15f{bottom:780.225000px;}
.ydb{bottom:780.405000px;}
.yfb{bottom:784.905000px;}
.y124{bottom:787.425000px;}
.y10{bottom:790.485000px;}
.y4f{bottom:795.540000px;}
.y73{bottom:795.705000px;}
.yda{bottom:800.025000px;}
.y37{bottom:800.385000px;}
.y94{bottom:800.745000px;}
.y14d{bottom:804.705000px;}
.yb3{bottom:806.505000px;}
.y15e{bottom:811.905000px;}
.yf{bottom:814.245000px;}
.y123{bottom:815.865000px;}
.yfa{bottom:816.045000px;}
.yd9{bottom:819.825000px;}
.y4e{bottom:826.500000px;}
.y72{bottom:826.665000px;}
.y36{bottom:831.525000px;}
.y93{bottom:831.885000px;}
.y14a{bottom:836.565000px;}
.ye{bottom:838.005000px;}
.yb1{bottom:838.185000px;}
.yd8{bottom:839.625000px;}
.y15d{bottom:843.765000px;}
.y11e{bottom:844.305000px;}
.yf9{bottom:847.005000px;}
.y4d{bottom:857.280000px;}
.y71{bottom:857.850000px;}
.yd7{bottom:859.290000px;}
.yd{bottom:861.450000px;}
.y35{bottom:862.530000px;}
.y92{bottom:862.890000px;}
.y149{bottom:868.290000px;}
.yb0{bottom:870.450000px;}
.y11d{bottom:872.790000px;}
.y15c{bottom:875.670000px;}
.yf8{bottom:878.190000px;}
.yd6{bottom:879.090000px;}
.yc{bottom:885.750000px;}
.y70{bottom:888.810000px;}
.y34{bottom:893.670000px;}
.y91{bottom:894.030000px;}
.yd3{bottom:898.710000px;}
.y148{bottom:900.150000px;}
.yaf{bottom:902.130000px;}
.y15b{bottom:907.350000px;}
.yf7{bottom:909.150000px;}
.yb{bottom:909.510000px;}
.y195{bottom:910.950000px;}
.yd2{bottom:918.510000px;}
.y6f{bottom:919.950000px;}
.y33{bottom:924.630000px;}
.y90{bottom:924.990000px;}
.y119{bottom:928.950000px;}
.y194{bottom:931.650000px;}
.y147{bottom:932.010000px;}
.yae{bottom:934.530000px;}
.ya{bottom:935.250000px;}
.yd0{bottom:938.310000px;}
.y15a{bottom:939.210000px;}
.yf6{bottom:942.630000px;}
.y6e{bottom:950.910000px;}
.y193{bottom:952.350000px;}
.y32{bottom:955.770000px;}
.y8f{bottom:956.130000px;}
.ycb{bottom:957.930000px;}
.y146{bottom:963.690000px;}
.yad{bottom:966.750000px;}
.y9{bottom:967.110000px;}
.y159{bottom:971.070000px;}
.y192{bottom:973.050000px;}
.yf5{bottom:978.990000px;}
.y6d{bottom:982.050000px;}
.y118{bottom:985.110000px;}
.y31{bottom:986.730000px;}
.y8e{bottom:987.090000px;}
.y191{bottom:993.750000px;}
.y143{bottom:995.550000px;}
.yac{bottom:999.150000px;}
.y8{bottom:999.690000px;}
.y158{bottom:1002.750000px;}
.y6c{bottom:1013.010000px;}
.y114{bottom:1013.550000px;}
.yf4{bottom:1015.170000px;}
.y30{bottom:1017.870000px;}
.y8d{bottom:1018.230000px;}
.y190{bottom:1024.710000px;}
.yab{bottom:1031.370000px;}
.y1e{bottom:1033.890000px;}
.y7{bottom:1034.970000px;}
.y110{bottom:1041.990000px;}
.y6b{bottom:1044.150000px;}
.y2f{bottom:1048.830000px;}
.y8c{bottom:1049.190000px;}
.yaa{bottom:1063.770000px;}
.y6a{bottom:1075.110000px;}
.y2e{bottom:1079.970000px;}
.y8b{bottom:1080.330000px;}
.ya9{bottom:1095.480000px;}
.y69{bottom:1108.260000px;}
.y2d{bottom:1110.960000px;}
.y8a{bottom:1111.320000px;}
.y18f{bottom:1112.760000px;}
.y5{bottom:1131.120000px;}
.y24{bottom:1133.280000px;}
.y22{bottom:1133.640000px;}
.h1a{height:18.900000px;}
.h1c{height:18.936000px;}
.h1b{height:19.080000px;}
.h21{height:26.280000px;}
.h22{height:27.540000px;}
.h1e{height:27.720000px;}
.h20{height:27.756000px;}
.h13{height:30.780000px;}
.h14{height:30.960000px;}
.h15{height:30.996000px;}
.h24{height:31.140000px;}
.h25{height:31.176000px;}
.h12{height:31.500000px;}
.h16{height:31.536000px;}
.h10{height:31.680000px;}
.hb{height:33.660000px;}
.ha{height:34.560000px;}
.h11{height:47.376000px;}
.h1d{height:51.336000px;}
.h1f{height:55.440000px;}
.h5{height:58.651172px;}
.h23{height:62.100000px;}
.h26{height:64.546875px;}
.h4{height:65.010937px;}
.h19{height:66.757500px;}
.hf{height:70.628906px;}
.h3{height:70.664062px;}
.h7{height:72.562500px;}
.hc{height:73.080000px;}
.h17{height:74.004654px;}
.h18{height:75.960000px;}
.h2{height:81.540000px;}
.hd{height:84.898125px;}
.h8{height:87.336000px;}
.h9{height:90.884531px;}
.h6{height:96.508125px;}
.he{height:878.505000px;}
.h1{height:1200.000000px;}
.h0{height:1200.060000px;}
.wb{width:78.300000px;}
.w11{width:85.140000px;}
.w18{width:103.320000px;}
.w5{width:103.896000px;}
.w15{width:105.300000px;}
.w10{width:126.936000px;}
.w16{width:147.996000px;}
.we{width:148.176000px;}
.w13{width:176.070000px;}
.w1b{width:188.670000px;}
.w1a{width:188.895000px;}
.w19{width:195.690000px;}
.wd{width:201.270000px;}
.w14{width:205.050000px;}
.w17{width:211.890000px;}
.wf{width:222.510000px;}
.w12{width:224.490000px;}
.wc{width:228.135000px;}
.w8{width:232.590000px;}
.w9{width:328.575000px;}
.wa{width:562.065000px;}
.w4{width:619.710000px;}
.w3{width:642.570000px;}
.w7{width:703.050000px;}
.w1{width:824.400000px;}
.w6{width:831.600000px;}
.w2{width:899.999987px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.xf{left:1.440000px;}
.x17{left:7.740000px;}
.xe{left:10.800000px;}
.x21{left:12.060000px;}
.x1b{left:14.040000px;}
.x25{left:19.260000px;}
.x22{left:20.700000px;}
.x2{left:21.780000px;}
.x20{left:23.580000px;}
.x12{left:25.380000px;}
.x1d{left:29.340000px;}
.x2e{left:30.954000px;}
.x26{left:35.094000px;}
.x1{left:41.760000px;}
.x11{left:43.200000px;}
.x2b{left:55.080000px;}
.x5{left:57.059987px;}
.x2a{left:59.220000px;}
.x7{left:68.039987px;}
.x23{left:79.020000px;}
.x9{left:82.475987px;}
.x18{left:84.095987px;}
.xc{left:85.715987px;}
.x1e{left:92.565000px;}
.x2d{left:102.960000px;}
.x15{left:104.436000px;}
.x2c{left:105.705000px;}
.x28{left:107.100000px;}
.x27{left:109.845000px;}
.x1a{left:120.996000px;}
.x19{left:141.875987px;}
.x3{left:165.450000px;}
.x13{left:169.050000px;}
.x31{left:189.570000px;}
.x2f{left:195.329987px;}
.x1c{left:200.190000px;}
.x38{left:214.770000px;}
.x16{left:231.149987px;}
.xd{left:238.170000px;}
.x35{left:248.250000px;}
.x34{left:258.554987px;}
.xa{left:330.014987px;}
.x8{left:346.394987px;}
.x36{left:397.155000px;}
.x4{left:402.225000px;}
.x14{left:405.825000px;}
.x39{left:411.195000px;}
.x32{left:414.795000px;}
.x1f{left:429.045000px;}
.xb{left:440.204987px;}
.x30{left:450.104987px;}
.x37{left:546.045000px;}
.x33{left:591.630000px;}
.x3a{left:600.810000px;}
.x24{left:631.050000px;}
.x29{left:652.290000px;}
.x10{left:717.990000px;}
.x3b{left:768.239987px;}
.x6{left:834.119987px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-3.840000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.344533pt;}
.lsb{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.224640pt;}
.lsc{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.640000pt;}
.lse{letter-spacing:1.280000pt;}
.ls0{letter-spacing:7.680000pt;}
.ls9{letter-spacing:48.768000pt;}
.ws5{word-spacing:-25.758080pt;}
.ws6{word-spacing:-25.413547pt;}
.wsd{word-spacing:-18.720000pt;}
.wsb{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws4{word-spacing:-15.360000pt;}
.ws9{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.448533pt;}
.ws3{word-spacing:-12.160000pt;}
.ws7{word-spacing:0.000000pt;}
._9{margin-left:-14.720000pt;}
._a{margin-left:-8.085333pt;}
._6{margin-left:-5.504000pt;}
._5{margin-left:-4.608000pt;}
._b{margin-left:-3.402667pt;}
._8{margin-left:-2.496000pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.906667pt;}
._2{width:2.080000pt;}
._3{width:3.200000pt;}
._c{width:4.138667pt;}
._f{width:5.802667pt;}
._18{width:6.762667pt;}
._4{width:7.680000pt;}
._7{width:8.714667pt;}
._d{width:10.496000pt;}
._12{width:11.434667pt;}
._11{width:12.544000pt;}
._10{width:13.440000pt;}
._15{width:14.912000pt;}
._e{width:17.269333pt;}
._14{width:18.880000pt;}
._1f{width:20.544000pt;}
._19{width:22.336000pt;}
._16{width:24.000000pt;}
._17{width:24.896000pt;}
._13{width:26.304000pt;}
._20{width:56.896000pt;}
._1d{width:57.856000pt;}
._1b{width:67.648000pt;}
._1c{width:170.944000pt;}
._1e{width:180.672000pt;}
._1a{width:2779.520000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs4{font-size:106.880000pt;}
.y21{bottom:-26.560000pt;}
.y2b{bottom:-13.120053pt;}
.y26{bottom:-7.840000pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:3.200000pt;}
.yd4{bottom:3.360000pt;}
.yd1{bottom:3.520000pt;}
.y121{bottom:3.560000pt;}
.yd5{bottom:3.680000pt;}
.y128{bottom:6.720000pt;}
.y116{bottom:7.360000pt;}
.y120{bottom:7.400000pt;}
.y125{bottom:7.520000pt;}
.y20{bottom:7.840000pt;}
.y2a{bottom:8.160000pt;}
.y113{bottom:9.120000pt;}
.y127{bottom:9.760000pt;}
.y129{bottom:10.080000pt;}
.y12b{bottom:10.880000pt;}
.y115{bottom:11.040000pt;}
.y11f{bottom:11.080000pt;}
.y12c{bottom:11.200000pt;}
.y117{bottom:11.360000pt;}
.y122{bottom:11.400000pt;}
.ya2{bottom:12.640000pt;}
.y14b{bottom:12.680000pt;}
.yb4{bottom:12.800000pt;}
.y25{bottom:12.960000pt;}
.y14c{bottom:13.000000pt;}
.y9f{bottom:13.120000pt;}
.y23{bottom:13.280000pt;}
.ya0{bottom:13.440000pt;}
.yb2{bottom:13.480000pt;}
.ya4{bottom:13.600000pt;}
.y27{bottom:14.400000pt;}
.y4{bottom:15.040000pt;}
.y68{bottom:16.640000pt;}
.y111{bottom:17.600000pt;}
.yce{bottom:20.160000pt;}
.y1{bottom:21.760000pt;}
.y112{bottom:26.080000pt;}
.y144{bottom:26.560000pt;}
.y156{bottom:26.720000pt;}
.y9c{bottom:27.240000pt;}
.y9d{bottom:27.560000pt;}
.y11b{bottom:28.160000pt;}
.y29{bottom:29.280000pt;}
.y11a{bottom:35.680000pt;}
.y11c{bottom:36.000000pt;}
.y3{bottom:36.800000pt;}
.ycd{bottom:36.960000pt;}
.y145{bottom:40.320000pt;}
.y157{bottom:40.640000pt;}
.y67{bottom:44.640000pt;}
.y28{bottom:50.400000pt;}
.y1f{bottom:53.306667pt;}
.ycc{bottom:53.920000pt;}
.y2{bottom:57.920000pt;}
.y6{bottom:68.000000pt;}
.y66{bottom:72.320000pt;}
.y2c{bottom:87.040000pt;}
.y17b{bottom:99.680000pt;}
.y65{bottom:99.840000pt;}
.y89{bottom:100.000000pt;}
.yf3{bottom:103.680000pt;}
.y142{bottom:104.320000pt;}
.y18e{bottom:104.640000pt;}
.y4b{bottom:111.040000pt;}
.yca{bottom:111.680000pt;}
.y172{bottom:116.352000pt;}
.y10f{bottom:118.112000pt;}
.ya8{bottom:119.232000pt;}
.y18d{bottom:123.072000pt;}
.y64{bottom:127.520000pt;}
.y88{bottom:127.712000pt;}
.yf2{bottom:131.392000pt;}
.y141{bottom:131.872000pt;}
.y177{bottom:132.192000pt;}
.yc9{bottom:139.226667pt;}
.y4a{bottom:143.386667pt;}
.y171{bottom:143.866667pt;}
.y10e{bottom:145.786667pt;}
.ya7{bottom:147.866667pt;}
.y18c{bottom:150.586667pt;}
.y63{bottom:155.040000pt;}
.y87{bottom:155.226667pt;}
.y4c{bottom:157.786667pt;}
.yf1{bottom:158.906667pt;}
.y140{bottom:159.866667pt;}
.yc8{bottom:166.906667pt;}
.y170{bottom:171.546667pt;}
.y10d{bottom:173.626667pt;}
.y49{bottom:175.546667pt;}
.ya6{bottom:176.666667pt;}
.y18b{bottom:178.266667pt;}
.y62{bottom:182.760000pt;}
.y86{bottom:182.906667pt;}
.yf0{bottom:186.586667pt;}
.y13f{bottom:187.386667pt;}
.yc7{bottom:194.426667pt;}
.y16f{bottom:199.066667pt;}
.y10c{bottom:201.306667pt;}
.ya5{bottom:205.306667pt;}
.y18a{bottom:205.786667pt;}
.y48{bottom:207.706667pt;}
.y17a{bottom:210.106667pt;}
.y61{bottom:210.280000pt;}
.y85{bottom:210.426667pt;}
.yef{bottom:214.106667pt;}
.y13e{bottom:215.066667pt;}
.yc6{bottom:222.106667pt;}
.y16e{bottom:226.746667pt;}
.y10b{bottom:228.826667pt;}
.ya3{bottom:233.466667pt;}
.y84{bottom:237.946667pt;}
.y60{bottom:237.960000pt;}
.y47{bottom:239.866667pt;}
.yee{bottom:241.946667pt;}
.y176{bottom:242.266667pt;}
.y13d{bottom:242.586667pt;}
.yc5{bottom:249.626667pt;}
.y16d{bottom:253.946667pt;}
.y10a{bottom:256.346667pt;}
.y189{bottom:260.986667pt;}
.ya1{bottom:262.266667pt;}
.y5f{bottom:265.480000pt;}
.y83{bottom:265.626667pt;}
.yed{bottom:269.626667pt;}
.y175{bottom:269.946667pt;}
.y13c{bottom:270.266667pt;}
.y46{bottom:272.026667pt;}
.yc4{bottom:279.066667pt;}
.y16c{bottom:281.626667pt;}
.y109{bottom:284.026667pt;}
.y188{bottom:288.666667pt;}
.y9e{bottom:290.426667pt;}
.y82{bottom:293.146667pt;}
.y5e{bottom:293.160000pt;}
.yec{bottom:297.146667pt;}
.y13b{bottom:297.466667pt;}
.y174{bottom:297.786667pt;}
.y45{bottom:304.346667pt;}
.yc3{bottom:309.146667pt;}
.y16b{bottom:309.466667pt;}
.y108{bottom:311.546667pt;}
.y187{bottom:316.186667pt;}
.y9b{bottom:319.066667pt;}
.y5d{bottom:320.680000pt;}
.y81{bottom:320.826667pt;}
.yeb{bottom:324.826667pt;}
.y13a{bottom:325.146667pt;}
.y173{bottom:325.466667pt;}
.y44{bottom:336.546667pt;}
.yc2{bottom:337.026667pt;}
.y16a{bottom:337.186667pt;}
.y107{bottom:339.266667pt;}
.y1d{bottom:342.146667pt;}
.y186{bottom:343.906667pt;}
.y5c{bottom:348.360000pt;}
.y80{bottom:348.386667pt;}
.yea{bottom:352.386667pt;}
.y139{bottom:353.026667pt;}
.y9a{bottom:361.826667pt;}
.yc1{bottom:364.706667pt;}
.y106{bottom:366.786667pt;}
.y43{bottom:368.706667pt;}
.y185{bottom:371.426667pt;}
.y5b{bottom:375.880000pt;}
.y7f{bottom:376.066667pt;}
.y1c{bottom:377.346667pt;}
.ye9{bottom:380.066667pt;}
.y138{bottom:380.706667pt;}
.yc0{bottom:391.906667pt;}
.y105{bottom:394.146667pt;}
.y184{bottom:399.106667pt;}
.y42{bottom:400.866667pt;}
.y99{bottom:403.266667pt;}
.y5a{bottom:403.426667pt;}
.y7e{bottom:403.586667pt;}
.ye8{bottom:407.266667pt;}
.y137{bottom:408.226667pt;}
.y1b{bottom:412.706667pt;}
.ybf{bottom:419.906667pt;}
.y104{bottom:421.666667pt;}
.y169{bottom:424.546667pt;}
.y183{bottom:426.626667pt;}
.y98{bottom:430.946667pt;}
.y59{bottom:431.106667pt;}
.y7d{bottom:431.266667pt;}
.y41{bottom:433.186667pt;}
.y155{bottom:433.346667pt;}
.ye7{bottom:434.946667pt;}
.y136{bottom:435.906667pt;}
.ybe{bottom:447.426667pt;}
.y1a{bottom:447.906667pt;}
.y103{bottom:449.666667pt;}
.y168{bottom:452.066667pt;}
.y182{bottom:454.306667pt;}
.y58{bottom:458.626667pt;}
.y7c{bottom:458.786667pt;}
.ye6{bottom:462.786667pt;}
.y40{bottom:463.106667pt;}
.y135{bottom:463.426667pt;}
.y167{bottom:467.266667pt;}
.ybd{bottom:474.786667pt;}
.y102{bottom:477.186667pt;}
.y181{bottom:481.826667pt;}
.y97{bottom:486.146667pt;}
.y57{bottom:486.306667pt;}
.y7b{bottom:486.466667pt;}
.y154{bottom:489.186667pt;}
.ye5{bottom:490.466667pt;}
.y3f{bottom:490.786667pt;}
.y134{bottom:491.106667pt;}
.y19{bottom:493.346667pt;}
.y166{bottom:495.586667pt;}
.ybc{bottom:502.626667pt;}
.y101{bottom:504.866667pt;}
.y180{bottom:509.506667pt;}
.y179{bottom:513.666667pt;}
.y56{bottom:513.826667pt;}
.y7a{bottom:513.986667pt;}
.y153{bottom:517.346667pt;}
.ye4{bottom:517.986667pt;}
.y3e{bottom:518.306667pt;}
.y133{bottom:518.626667pt;}
.y18{bottom:520.866667pt;}
.y165{bottom:523.906667pt;}
.ybb{bottom:530.306667pt;}
.y100{bottom:532.386667pt;}
.y17f{bottom:537.026667pt;}
.y178{bottom:541.373333pt;}
.y55{bottom:541.506667pt;}
.y79{bottom:541.693333pt;}
.ye3{bottom:545.693333pt;}
.y3d{bottom:546.013333pt;}
.y132{bottom:546.333333pt;}
.y17{bottom:548.573333pt;}
.y164{bottom:552.093333pt;}
.yba{bottom:557.853333pt;}
.yff{bottom:560.093333pt;}
.y17e{bottom:564.733333pt;}
.y54{bottom:569.026667pt;}
.y78{bottom:569.213333pt;}
.y16{bottom:569.373333pt;}
.ye2{bottom:572.893333pt;}
.y3c{bottom:573.533333pt;}
.y131{bottom:573.853333pt;}
.y152{bottom:574.013333pt;}
.y163{bottom:580.413333pt;}
.yb9{bottom:585.533333pt;}
.yfe{bottom:587.293333pt;}
.ye1{bottom:588.413333pt;}
.y15{bottom:590.813333pt;}
.y17d{bottom:592.253333pt;}
.y53{bottom:596.746667pt;}
.y77{bottom:596.893333pt;}
.y3b{bottom:601.213333pt;}
.y130{bottom:601.533333pt;}
.y151{bottom:602.173333pt;}
.ye0{bottom:606.013333pt;}
.y162{bottom:608.733333pt;}
.y14{bottom:611.933333pt;}
.yb8{bottom:613.053333pt;}
.yfd{bottom:614.973333pt;}
.y17c{bottom:621.693333pt;}
.ydf{bottom:623.613333pt;}
.y96{bottom:624.093333pt;}
.y52{bottom:624.266667pt;}
.y76{bottom:624.413333pt;}
.y3a{bottom:628.733333pt;}
.y12f{bottom:629.053333pt;}
.y150{bottom:630.493333pt;}
.y161{bottom:636.893333pt;}
.y13{bottom:639.133333pt;}
.yb7{bottom:640.733333pt;}
.yde{bottom:641.053333pt;}
.yfc{bottom:642.493333pt;}
.y12a{bottom:650.653333pt;}
.y51{bottom:651.946667pt;}
.y75{bottom:652.093333pt;}
.y95{bottom:654.013333pt;}
.y39{bottom:656.413333pt;}
.y12e{bottom:656.733333pt;}
.ydd{bottom:658.653333pt;}
.y14f{bottom:658.813333pt;}
.y12{bottom:660.253333pt;}
.y160{bottom:665.213333pt;}
.yb6{bottom:670.173333pt;}
.y126{bottom:675.933333pt;}
.ydc{bottom:676.093333pt;}
.y50{bottom:679.466667pt;}
.y74{bottom:679.613333pt;}
.y11{bottom:681.533333pt;}
.y38{bottom:683.933333pt;}
.y12d{bottom:684.253333pt;}
.y14e{bottom:686.973333pt;}
.yb5{bottom:688.093333pt;}
.y15f{bottom:693.533333pt;}
.ydb{bottom:693.693333pt;}
.yfb{bottom:697.693333pt;}
.y124{bottom:699.933333pt;}
.y10{bottom:702.653333pt;}
.y4f{bottom:707.146667pt;}
.y73{bottom:707.293333pt;}
.yda{bottom:711.133333pt;}
.y37{bottom:711.453333pt;}
.y94{bottom:711.773333pt;}
.y14d{bottom:715.293333pt;}
.yb3{bottom:716.893333pt;}
.y15e{bottom:721.693333pt;}
.yf{bottom:723.773333pt;}
.y123{bottom:725.213333pt;}
.yfa{bottom:725.373333pt;}
.yd9{bottom:728.733333pt;}
.y4e{bottom:734.666667pt;}
.y72{bottom:734.813333pt;}
.y36{bottom:739.133333pt;}
.y93{bottom:739.453333pt;}
.y14a{bottom:743.613333pt;}
.ye{bottom:744.893333pt;}
.yb1{bottom:745.053333pt;}
.yd8{bottom:746.333333pt;}
.y15d{bottom:750.013333pt;}
.y11e{bottom:750.493333pt;}
.yf9{bottom:752.893333pt;}
.y4d{bottom:762.026667pt;}
.y71{bottom:762.533333pt;}
.yd7{bottom:763.813333pt;}
.yd{bottom:765.733333pt;}
.y35{bottom:766.693333pt;}
.y92{bottom:767.013333pt;}
.y149{bottom:771.813333pt;}
.yb0{bottom:773.733333pt;}
.y11d{bottom:775.813333pt;}
.y15c{bottom:778.373333pt;}
.yf8{bottom:780.613333pt;}
.yd6{bottom:781.413333pt;}
.yc{bottom:787.333333pt;}
.y70{bottom:790.053333pt;}
.y34{bottom:794.373333pt;}
.y91{bottom:794.693333pt;}
.yd3{bottom:798.853333pt;}
.y148{bottom:800.133333pt;}
.yaf{bottom:801.893333pt;}
.y15b{bottom:806.533333pt;}
.yf7{bottom:808.133333pt;}
.yb{bottom:808.453333pt;}
.y195{bottom:809.733333pt;}
.yd2{bottom:816.453333pt;}
.y6f{bottom:817.733333pt;}
.y33{bottom:821.893333pt;}
.y90{bottom:822.213333pt;}
.y119{bottom:825.733333pt;}
.y194{bottom:828.133333pt;}
.y147{bottom:828.453333pt;}
.yae{bottom:830.693333pt;}
.ya{bottom:831.333333pt;}
.yd0{bottom:834.053333pt;}
.y15a{bottom:834.853333pt;}
.yf6{bottom:837.893333pt;}
.y6e{bottom:845.253333pt;}
.y193{bottom:846.533333pt;}
.y32{bottom:849.573333pt;}
.y8f{bottom:849.893333pt;}
.ycb{bottom:851.493333pt;}
.y146{bottom:856.613333pt;}
.yad{bottom:859.333333pt;}
.y9{bottom:859.653333pt;}
.y159{bottom:863.173333pt;}
.y192{bottom:864.933333pt;}
.yf5{bottom:870.213333pt;}
.y6d{bottom:872.933333pt;}
.y118{bottom:875.653333pt;}
.y31{bottom:877.093333pt;}
.y8e{bottom:877.413333pt;}
.y191{bottom:883.333333pt;}
.y143{bottom:884.933333pt;}
.yac{bottom:888.133333pt;}
.y8{bottom:888.613333pt;}
.y158{bottom:891.333333pt;}
.y6c{bottom:900.453333pt;}
.y114{bottom:900.933333pt;}
.yf4{bottom:902.373333pt;}
.y30{bottom:904.773333pt;}
.y8d{bottom:905.093333pt;}
.y190{bottom:910.853333pt;}
.yab{bottom:916.773333pt;}
.y1e{bottom:919.013333pt;}
.y7{bottom:919.973333pt;}
.y110{bottom:926.213333pt;}
.y6b{bottom:928.133333pt;}
.y2f{bottom:932.293333pt;}
.y8c{bottom:932.613333pt;}
.yaa{bottom:945.573333pt;}
.y6a{bottom:955.653333pt;}
.y2e{bottom:959.973333pt;}
.y8b{bottom:960.293333pt;}
.ya9{bottom:973.760000pt;}
.y69{bottom:985.120000pt;}
.y2d{bottom:987.520000pt;}
.y8a{bottom:987.840000pt;}
.y18f{bottom:989.120000pt;}
.y5{bottom:1005.440000pt;}
.y24{bottom:1007.360000pt;}
.y22{bottom:1007.680000pt;}
.h1a{height:16.800000pt;}
.h1c{height:16.832000pt;}
.h1b{height:16.960000pt;}
.h21{height:23.360000pt;}
.h22{height:24.480000pt;}
.h1e{height:24.640000pt;}
.h20{height:24.672000pt;}
.h13{height:27.360000pt;}
.h14{height:27.520000pt;}
.h15{height:27.552000pt;}
.h24{height:27.680000pt;}
.h25{height:27.712000pt;}
.h12{height:28.000000pt;}
.h16{height:28.032000pt;}
.h10{height:28.160000pt;}
.hb{height:29.920000pt;}
.ha{height:30.720000pt;}
.h11{height:42.112000pt;}
.h1d{height:45.632000pt;}
.h1f{height:49.280000pt;}
.h5{height:52.134375pt;}
.h23{height:55.200000pt;}
.h26{height:57.375000pt;}
.h4{height:57.787500pt;}
.h19{height:59.340000pt;}
.hf{height:62.781250pt;}
.h3{height:62.812500pt;}
.h7{height:64.500000pt;}
.hc{height:64.960000pt;}
.h17{height:65.781915pt;}
.h18{height:67.520000pt;}
.h2{height:72.480000pt;}
.hd{height:75.465000pt;}
.h8{height:77.632000pt;}
.h9{height:80.786250pt;}
.h6{height:85.785000pt;}
.he{height:780.893333pt;}
.h1{height:1066.666667pt;}
.h0{height:1066.720000pt;}
.wb{width:69.600000pt;}
.w11{width:75.680000pt;}
.w18{width:91.840000pt;}
.w5{width:92.352000pt;}
.w15{width:93.600000pt;}
.w10{width:112.832000pt;}
.w16{width:131.552000pt;}
.we{width:131.712000pt;}
.w13{width:156.506667pt;}
.w1b{width:167.706667pt;}
.w1a{width:167.906667pt;}
.w19{width:173.946667pt;}
.wd{width:178.906667pt;}
.w14{width:182.266667pt;}
.w17{width:188.346667pt;}
.wf{width:197.786667pt;}
.w12{width:199.546667pt;}
.wc{width:202.786667pt;}
.w8{width:206.746667pt;}
.w9{width:292.066667pt;}
.wa{width:499.613333pt;}
.w4{width:550.853333pt;}
.w3{width:571.173333pt;}
.w7{width:624.933333pt;}
.w1{width:732.800000pt;}
.w6{width:739.200000pt;}
.w2{width:799.999988pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.xf{left:1.280000pt;}
.x17{left:6.880000pt;}
.xe{left:9.600000pt;}
.x21{left:10.720000pt;}
.x1b{left:12.480000pt;}
.x25{left:17.120000pt;}
.x22{left:18.400000pt;}
.x2{left:19.360000pt;}
.x20{left:20.960000pt;}
.x12{left:22.560000pt;}
.x1d{left:26.080000pt;}
.x2e{left:27.514667pt;}
.x26{left:31.194667pt;}
.x1{left:37.120000pt;}
.x11{left:38.400000pt;}
.x2b{left:48.960000pt;}
.x5{left:50.719988pt;}
.x2a{left:52.640000pt;}
.x7{left:60.479988pt;}
.x23{left:70.240000pt;}
.x9{left:73.311988pt;}
.x18{left:74.751988pt;}
.xc{left:76.191988pt;}
.x1e{left:82.280000pt;}
.x2d{left:91.520000pt;}
.x15{left:92.832000pt;}
.x2c{left:93.960000pt;}
.x28{left:95.200000pt;}
.x27{left:97.640000pt;}
.x1a{left:107.552000pt;}
.x19{left:126.111988pt;}
.x3{left:147.066667pt;}
.x13{left:150.266667pt;}
.x31{left:168.506667pt;}
.x2f{left:173.626655pt;}
.x1c{left:177.946667pt;}
.x38{left:190.906667pt;}
.x16{left:205.466655pt;}
.xd{left:211.706667pt;}
.x35{left:220.666667pt;}
.x34{left:229.826655pt;}
.xa{left:293.346655pt;}
.x8{left:307.906655pt;}
.x36{left:353.026667pt;}
.x4{left:357.533333pt;}
.x14{left:360.733333pt;}
.x39{left:365.506667pt;}
.x32{left:368.706667pt;}
.x1f{left:381.373333pt;}
.xb{left:391.293321pt;}
.x30{left:400.093321pt;}
.x37{left:485.373333pt;}
.x33{left:525.893333pt;}
.x3a{left:534.053333pt;}
.x24{left:560.933333pt;}
.x29{left:579.813333pt;}
.x10{left:638.213333pt;}
.x3b{left:682.879988pt;}
.x6{left:741.439988pt;}
}




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