
    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_79fe6049c0a4713df774ecac.woff2')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_1ee11f8cd65b3083b2196c28.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_885115d70859f47951063111.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_19848a3f759cb9e379093cae.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_543fa3c8bbb747cc0a24fcc3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_52eff2d0783349376c848f17.woff2')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_840dabb62b788057c89dc7d7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_d897b51cdacbd145d8019a5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.059082;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_73cf87dde2d29f0c6d070d54.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_94c96c5948e5390e520e9d00.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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:-74.880000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls7{letter-spacing:-2.700000px;}
.ls8{letter-spacing:-1.980000px;}
.ls4{letter-spacing:-0.924000px;}
.ls10{letter-spacing:-0.804000px;}
.ls6{letter-spacing:-0.690000px;}
.ls11{letter-spacing:-0.594000px;}
.lsa{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.427800px;}
.ls9{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.126000px;}
.lse{letter-spacing:-0.085200px;}
.ls3{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.256200px;}
.lsb{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.720000px;}
.ls17{letter-spacing:25.308000px;}
.ls16{letter-spacing:52.668000px;}
.lsc{letter-spacing:64.026720px;}
.ls12{letter-spacing:64.170720px;}
.ls0{letter-spacing:1064.460000px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.ws4{word-spacing:-21.420000px;}
.ws6{word-spacing:-20.370000px;}
.ws3{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.wsf{word-spacing:-13.860000px;}
.wse{word-spacing:-13.824000px;}
.ws15{word-spacing:-13.608000px;}
.ws1{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.374000px;}
.ws13{word-spacing:-13.284000px;}
.ws8{word-spacing:-13.140000px;}
.ws12{word-spacing:-12.906000px;}
.wsd{word-spacing:-10.612800px;}
.wsa{word-spacing:-10.527600px;}
.wsb{word-spacing:-10.185000px;}
.ws2{word-spacing:-9.978240px;}
.wsc{word-spacing:-9.808800px;}
.ws7{word-spacing:-9.000000px;}
.ws5{word-spacing:-0.084240px;}
.ws11{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
._9{margin-left:-2.502000px;}
._2{margin-left:-1.192320px;}
._0{width:1.254960px;}
._1{width:2.742960px;}
._d{width:4.158000px;}
._8{width:5.994000px;}
._1b{width:7.020000px;}
._a{width:8.064000px;}
._14{width:9.612000px;}
._11{width:11.286000px;}
._c{width:12.316320px;}
._13{width:15.290640px;}
._f{width:17.064000px;}
._10{width:18.185040px;}
._e{width:19.615680px;}
._b{width:20.682000px;}
._1a{width:22.194000px;}
._19{width:23.382000px;}
._18{width:25.218000px;}
._1e{width:26.842320px;}
._1f{width:28.255680px;}
._12{width:29.862000px;}
._20{width:30.942000px;}
._1c{width:32.454000px;}
._1d{width:33.534000px;}
._28{width:34.560000px;}
._23{width:36.072000px;}
._24{width:37.530000px;}
._2a{width:39.330000px;}
._17{width:40.770000px;}
._6{width:42.132000px;}
._21{width:43.794000px;}
._22{width:44.928000px;}
._16{width:46.710000px;}
._15{width:47.790000px;}
._27{width:48.924000px;}
._25{width:50.868720px;}
._5{width:52.654320px;}
._2b{width:54.432000px;}
._26{width:56.484000px;}
._7{width:69.552000px;}
._4{width:82.331760px;}
._2c{width:93.690000px;}
._2d{width:95.922000px;}
._2e{width:164.430000px;}
._2f{width:278.640000px;}
._29{width:306.072000px;}
._3{width:432.814560px;}
._30{width:850.098000px;}
.fc6{color:transparent;}
.fc5{color:rgb(79,129,189);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y26{bottom:5.580000px;}
.y29{bottom:7.770000px;}
.y25{bottom:23.400000px;}
.y28{bottom:25.590000px;}
.y19{bottom:41.040000px;}
.y24{bottom:50.220000px;}
.y5f{bottom:58.500000px;}
.y18{bottom:67.860000px;}
.y23{bottom:68.040000px;}
.y4{bottom:77.220000px;}
.y22{bottom:86.040000px;}
.y48{bottom:92.160000px;}
.y17{bottom:94.680000px;}
.y5d{bottom:98.100000px;}
.ycf{bottom:99.360000px;}
.y188{bottom:101.160000px;}
.y21{bottom:103.860000px;}
.y6{bottom:105.120000px;}
.y9a{bottom:107.100000px;}
.y47{bottom:109.980000px;}
.y5c{bottom:115.920000px;}
.yce{bottom:117.180000px;}
.y174{bottom:118.980000px;}
.y16{bottom:121.140000px;}
.y20{bottom:121.680000px;}
.y100{bottom:122.400000px;}
.y99{bottom:124.920000px;}
.y46{bottom:127.800000px;}
.y1ae{bottom:130.500000px;}
.y5b{bottom:133.740000px;}
.ycd{bottom:135.000000px;}
.y173{bottom:136.800000px;}
.y1f{bottom:139.500000px;}
.yff{bottom:140.220000px;}
.y159{bottom:142.740000px;}
.y98{bottom:142.920000px;}
.y45{bottom:145.620000px;}
.y15{bottom:148.320000px;}
.y5a{bottom:151.560000px;}
.ycc{bottom:152.820000px;}
.y172{bottom:154.620000px;}
.y187{bottom:154.800000px;}
.y1e{bottom:157.320000px;}
.y138{bottom:158.220000px;}
.y158{bottom:160.560000px;}
.y44{bottom:163.620000px;}
.y14{bottom:166.140000px;}
.y97{bottom:166.320000px;}
.yfe{bottom:166.500000px;}
.y59{bottom:169.380000px;}
.ycb{bottom:170.820000px;}
.y171{bottom:172.440000px;}
.y186{bottom:172.620000px;}
.y1d{bottom:175.140000px;}
.y137{bottom:176.040000px;}
.y157{bottom:178.380000px;}
.y43{bottom:181.440000px;}
.y13{bottom:184.140000px;}
.yfd{bottom:184.500000px;}
.y58{bottom:187.380000px;}
.yca{bottom:188.640000px;}
.y1ad{bottom:190.080000px;}
.y170{bottom:190.260000px;}
.y185{bottom:190.440000px;}
.y96{bottom:192.060000px;}
.y1c{bottom:193.185000px;}
.y136{bottom:193.860000px;}
.y156{bottom:196.200000px;}
.y42{bottom:199.260000px;}
.yfc{bottom:202.320000px;}
.y57{bottom:205.200000px;}
.yc9{bottom:206.490000px;}
.y1ac{bottom:207.930000px;}
.y16f{bottom:208.290000px;}
.y12{bottom:210.645000px;}
.y1b{bottom:211.005000px;}
.y135{bottom:211.710000px;}
.y155{bottom:214.230000px;}
.y41{bottom:217.110000px;}
.y95{bottom:220.350000px;}
.y56{bottom:223.050000px;}
.yc8{bottom:224.310000px;}
.y1ab{bottom:225.750000px;}
.yfb{bottom:226.110000px;}
.y11{bottom:228.465000px;}
.y1a{bottom:228.825000px;}
.y134{bottom:229.710000px;}
.y184{bottom:232.230000px;}
.y40{bottom:234.930000px;}
.y154{bottom:237.630000px;}
.y94{bottom:238.170000px;}
.y55{bottom:240.870000px;}
.yc7{bottom:242.310000px;}
.yfa{bottom:243.930000px;}
.y1aa{bottom:249.690000px;}
.y183{bottom:250.050000px;}
.y3f{bottom:252.930000px;}
.y133{bottom:254.910000px;}
.y153{bottom:255.630000px;}
.y93{bottom:255.990000px;}
.y54{bottom:258.690000px;}
.y16e{bottom:261.750000px;}
.yf9{bottom:261.930000px;}
.yc6{bottom:266.070000px;}
.y1a9{bottom:267.510000px;}
.y182{bottom:267.870000px;}
.y92{bottom:273.810000px;}
.y53{bottom:276.510000px;}
.y3e{bottom:276.690000px;}
.y16d{bottom:279.570000px;}
.yf8{bottom:279.750000px;}
.y132{bottom:283.170000px;}
.yc5{bottom:283.890000px;}
.y181{bottom:285.690000px;}
.y1a8{bottom:291.270000px;}
.y91{bottom:291.810000px;}
.y3d{bottom:294.510000px;}
.yf7{bottom:297.570000px;}
.y131{bottom:301.170000px;}
.yc4{bottom:301.710000px;}
.y180{bottom:303.510000px;}
.y1a7{bottom:309.270000px;}
.y90{bottom:309.630000px;}
.y3c{bottom:312.330000px;}
.yf6{bottom:315.390000px;}
.y130{bottom:318.990000px;}
.yc3{bottom:319.530000px;}
.y16c{bottom:321.330000px;}
.y17f{bottom:321.510000px;}
.y1a6{bottom:327.090000px;}
.y8f{bottom:327.450000px;}
.y52{bottom:330.150000px;}
.y3b{bottom:330.330000px;}
.yf5{bottom:333.210000px;}
.y12f{bottom:336.810000px;}
.yc2{bottom:337.530000px;}
.y16b{bottom:339.150000px;}
.y17e{bottom:344.910000px;}
.y8e{bottom:345.270000px;}
.y3a{bottom:348.150000px;}
.yf4{bottom:351.210000px;}
.y51{bottom:353.910000px;}
.y12e{bottom:354.630000px;}
.yc1{bottom:355.350000px;}
.y16a{bottom:356.970000px;}
.y1a5{bottom:362.730000px;}
.y8d{bottom:363.090000px;}
.y39{bottom:365.970000px;}
.yf3{bottom:369.030000px;}
.y17d{bottom:369.210000px;}
.y50{bottom:371.910000px;}
.y12d{bottom:372.450000px;}
.yc0{bottom:373.170000px;}
.y169{bottom:374.970000px;}
.y8c{bottom:380.910000px;}
.y38{bottom:383.790000px;}
.y1a4{bottom:386.670000px;}
.yf2{bottom:386.850000px;}
.y17c{bottom:387.030000px;}
.y4f{bottom:389.730000px;}
.y12c{bottom:390.270000px;}
.ybf{bottom:390.990000px;}
.y152{bottom:392.790000px;}
.y8b{bottom:398.910000px;}
.y37{bottom:401.610000px;}
.y1a3{bottom:404.490000px;}
.y17b{bottom:404.850000px;}
.y12b{bottom:408.270000px;}
.ybe{bottom:408.810000px;}
.yf1{bottom:410.610000px;}
.y4e{bottom:415.110000px;}
.y8a{bottom:416.730000px;}
.y36{bottom:419.430000px;}
.y1a2{bottom:422.310000px;}
.y17a{bottom:422.670000px;}
.ybd{bottom:426.630000px;}
.y168{bottom:428.430000px;}
.yf0{bottom:428.610000px;}
.y12a{bottom:432.030000px;}
.y89{bottom:434.550000px;}
.y35{bottom:437.430000px;}
.y1a1{bottom:440.130000px;}
.y179{bottom:440.490000px;}
.y4d{bottom:443.415000px;}
.ybc{bottom:444.675000px;}
.y167{bottom:446.295000px;}
.yef{bottom:446.475000px;}
.y129{bottom:449.895000px;}
.y1a0{bottom:458.175000px;}
.y88{bottom:458.355000px;}
.y34{bottom:461.235000px;}
.yee{bottom:464.295000px;}
.y128{bottom:467.895000px;}
.ybb{bottom:468.255000px;}
.y87{bottom:476.355000px;}
.y33{bottom:479.055000px;}
.y19f{bottom:481.935000px;}
.yed{bottom:482.115000px;}
.y127{bottom:485.715000px;}
.y166{bottom:489.495000px;}
.yba{bottom:493.815000px;}
.y86{bottom:494.175000px;}
.y32{bottom:496.875000px;}
.y19e{bottom:499.755000px;}
.yec{bottom:499.935000px;}
.y126{bottom:503.535000px;}
.y85{bottom:511.995000px;}
.y31{bottom:514.875000px;}
.y19d{bottom:517.575000px;}
.yeb{bottom:517.935000px;}
.y125{bottom:521.355000px;}
.yb9{bottom:522.075000px;}
.y84{bottom:529.995000px;}
.y30{bottom:532.695000px;}
.y19c{bottom:535.575000px;}
.yea{bottom:535.755000px;}
.y178{bottom:535.935000px;}
.y124{bottom:539.175000px;}
.yb8{bottom:540.075000px;}
.y2f{bottom:550.515000px;}
.y151{bottom:553.575000px;}
.y83{bottom:553.755000px;}
.y123{bottom:556.995000px;}
.y19b{bottom:559.335000px;}
.ye9{bottom:559.515000px;}
.yb7{bottom:563.835000px;}
.y2e{bottom:568.335000px;}
.y4c{bottom:568.515000px;}
.y165{bottom:571.395000px;}
.y82{bottom:571.575000px;}
.y122{bottom:574.995000px;}
.y150{bottom:577.155000px;}
.ye8{bottom:577.335000px;}
.yb6{bottom:581.655000px;}
.y2d{bottom:586.155000px;}
.y164{bottom:589.215000px;}
.y81{bottom:589.395000px;}
.y4b{bottom:592.275000px;}
.y121{bottom:592.815000px;}
.y19a{bottom:595.155000px;}
.ye7{bottom:595.335000px;}
.yb5{bottom:599.475000px;}
.y14f{bottom:601.275000px;}
.y2c{bottom:604.155000px;}
.y163{bottom:607.035000px;}
.y80{bottom:607.215000px;}
.y4a{bottom:610.095000px;}
.y120{bottom:610.635000px;}
.ye6{bottom:613.155000px;}
.y199{bottom:618.915000px;}
.y14e{bottom:619.095000px;}
.y2b{bottom:621.975000px;}
.y162{bottom:625.035000px;}
.y7f{bottom:625.215000px;}
.yb4{bottom:625.935000px;}
.y49{bottom:627.915000px;}
.ye5{bottom:630.975000px;}
.y11f{bottom:634.575000px;}
.y198{bottom:636.735000px;}
.y14d{bottom:637.095000px;}
.y177{bottom:643.035000px;}
.yb3{bottom:643.755000px;}
.y2a{bottom:647.175000px;}
.ye4{bottom:648.795000px;}
.y7e{bottom:648.975000px;}
.y11e{bottom:652.395000px;}
.y197{bottom:654.555000px;}
.y14c{bottom:660.855000px;}
.yb2{bottom:661.575000px;}
.ye3{bottom:666.615000px;}
.y7d{bottom:666.795000px;}
.y11d{bottom:670.215000px;}
.y27{bottom:673.635000px;}
.y196{bottom:678.525000px;}
.y14b{bottom:678.705000px;}
.ye2{bottom:684.465000px;}
.y7c{bottom:684.645000px;}
.yb1{bottom:687.885000px;}
.y11c{bottom:688.065000px;}
.y195{bottom:696.345000px;}
.y14a{bottom:696.525000px;}
.y7b{bottom:702.465000px;}
.yb0{bottom:705.705000px;}
.y11b{bottom:705.885000px;}
.y149{bottom:714.345000px;}
.y176{bottom:714.525000px;}
.y194{bottom:720.105000px;}
.ye1{bottom:720.285000px;}
.y7a{bottom:720.465000px;}
.y10{bottom:721.365000px;}
.y11a{bottom:723.705000px;}
.yaf{bottom:732.165000px;}
.y193{bottom:737.925000px;}
.ye0{bottom:738.105000px;}
.y79{bottom:738.285000px;}
.y119{bottom:741.705000px;}
.y161{bottom:743.865000px;}
.yae{bottom:749.985000px;}
.y148{bottom:750.165000px;}
.y192{bottom:755.925000px;}
.y78{bottom:756.105000px;}
.y118{bottom:759.525000px;}
.ydf{bottom:762.045000px;}
.y147{bottom:767.985000px;}
.yad{bottom:773.565000px;}
.y191{bottom:773.745000px;}
.y77{bottom:773.925000px;}
.yde{bottom:779.865000px;}
.y117{bottom:783.285000px;}
.y146{bottom:785.805000px;}
.y190{bottom:791.565000px;}
.y76{bottom:791.745000px;}
.yac{bottom:797.685000px;}
.y116{bottom:801.105000px;}
.y160{bottom:803.625000px;}
.y145{bottom:803.805000px;}
.y75{bottom:809.745000px;}
.yab{bottom:815.505000px;}
.y115{bottom:819.105000px;}
.y15f{bottom:821.445000px;}
.y74{bottom:827.565000px;}
.yaa{bottom:833.325000px;}
.y114{bottom:836.925000px;}
.y15e{bottom:839.445000px;}
.y73{bottom:845.385000px;}
.ya9{bottom:851.145000px;}
.ydd{bottom:851.325000px;}
.y113{bottom:854.745000px;}
.y18f{bottom:857.085000px;}
.y15d{bottom:857.265000px;}
.y72{bottom:863.205000px;}
.ya8{bottom:869.145000px;}
.y112{bottom:872.565000px;}
.y18e{bottom:874.905000px;}
.ydc{bottom:875.085000px;}
.y71{bottom:881.025000px;}
.ya7{bottom:886.965000px;}
.y111{bottom:890.385000px;}
.ydb{bottom:892.905000px;}
.y144{bottom:898.845000px;}
.y70{bottom:899.025000px;}
.ya6{bottom:904.785000px;}
.y110{bottom:908.385000px;}
.yda{bottom:910.770000px;}
.y18d{bottom:916.710000px;}
.y143{bottom:916.890000px;}
.ya5{bottom:922.650000px;}
.y6f{bottom:922.830000px;}
.y10f{bottom:926.250000px;}
.yd9{bottom:928.590000px;}
.y18c{bottom:934.530000px;}
.y142{bottom:934.710000px;}
.y6e{bottom:940.650000px;}
.y10e{bottom:944.070000px;}
.ya4{bottom:946.230000px;}
.yd8{bottom:946.590000px;}
.y15c{bottom:952.530000px;}
.y141{bottom:958.110000px;}
.y6d{bottom:958.470000px;}
.y1b8{bottom:961.170000px;}
.y10d{bottom:961.890000px;}
.yd7{bottom:964.410000px;}
.ya3{bottom:970.350000px;}
.y140{bottom:976.110000px;}
.y18b{bottom:976.290000px;}
.y6c{bottom:976.470000px;}
.yf{bottom:977.730000px;}
.yd6{bottom:982.230000px;}
.y10c{bottom:985.830000px;}
.ya2{bottom:988.170000px;}
.y15b{bottom:988.350000px;}
.y18a{bottom:994.110000px;}
.y6b{bottom:994.290000px;}
.y13f{bottom:1000.230000px;}
.ye{bottom:1001.670000px;}
.y10b{bottom:1003.650000px;}
.ya1{bottom:1006.170000px;}
.y15a{bottom:1011.750000px;}
.y1b6{bottom:1011.930000px;}
.y6a{bottom:1012.110000px;}
.y13e{bottom:1018.050000px;}
.y10a{bottom:1021.470000px;}
.yd{bottom:1022.550000px;}
.ya0{bottom:1023.990000px;}
.y69{bottom:1029.930000px;}
.y13d{bottom:1035.870000px;}
.y189{bottom:1037.310000px;}
.y109{bottom:1039.290000px;}
.y9f{bottom:1041.810000px;}
.yc{bottom:1046.310000px;}
.y68{bottom:1047.750000px;}
.y1b5{bottom:1053.690000px;}
.y13c{bottom:1053.870000px;}
.y108{bottom:1057.110000px;}
.y9e{bottom:1059.630000px;}
.y67{bottom:1065.570000px;}
.yb{bottom:1066.830000px;}
.y1b4{bottom:1071.510000px;}
.y13b{bottom:1071.690000px;}
.y107{bottom:1075.110000px;}
.y1b7{bottom:1077.270000px;}
.yd5{bottom:1077.450000px;}
.y9d{bottom:1077.630000px;}
.y66{bottom:1083.570000px;}
.y1b3{bottom:1089.330000px;}
.y13a{bottom:1089.510000px;}
.yd4{bottom:1095.450000px;}
.y106{bottom:1098.510000px;}
.y9c{bottom:1101.030000px;}
.y65{bottom:1101.390000px;}
.ya{bottom:1104.450000px;}
.y139{bottom:1107.330000px;}
.y5{bottom:1112.940000px;}
.y64{bottom:1119.210000px;}
.y105{bottom:1122.810000px;}
.y9b{bottom:1125.150000px;}
.y1b2{bottom:1131.090000px;}
.y9{bottom:1132.350000px;}
.yd3{bottom:1137.030000px;}
.y104{bottom:1140.630000px;}
.y63{bottom:1142.970000px;}
.y1b1{bottom:1148.940000px;}
.yd2{bottom:1154.880000px;}
.y175{bottom:1155.060000px;}
.y103{bottom:1158.480000px;}
.y62{bottom:1161.000000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.y1b0{bottom:1172.700000px;}
.yd1{bottom:1172.880000px;}
.y102{bottom:1176.300000px;}
.y61{bottom:1178.820000px;}
.y2{bottom:1181.520000px;}
.y1af{bottom:1190.700000px;}
.y7{bottom:1191.240000px;}
.y101{bottom:1194.120000px;}
.yd0{bottom:1196.280000px;}
.y60{bottom:1196.640000px;}
.y1{bottom:1196.820000px;}
.y5e{bottom:1224.540000px;}
.hb{height:35.332031px;}
.h12{height:40.843828px;}
.hf{height:46.830000px;}
.h11{height:47.381836px;}
.h5{height:47.980898px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.h15{height:52.971680px;}
.hc{height:52.998047px;}
.he{height:54.421875px;}
.h14{height:55.503491px;}
.h2{height:58.651172px;}
.ha{height:60.041250px;}
.h13{height:61.423863px;}
.h4{height:65.010937px;}
.h3{height:65.884219px;}
.h10{height:72.562500px;}
.h9{height:84.898125px;}
.h6{height:149.940000px;}
.hd{height:250.050000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.w3{width:211.933500px;}
.w4{width:541.365000px;}
.w5{width:754.198500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.098500px;}
.x3{left:12.090000px;}
.x1{left:54.000000px;}
.x13{left:55.440000px;}
.x9{left:57.600000px;}
.xb{left:68.220000px;}
.xd{left:69.481500px;}
.x18{left:81.000000px;}
.x10{left:95.256000px;}
.x6{left:102.816000px;}
.x19{left:108.036000px;}
.x7{left:237.090000px;}
.x8{left:247.530000px;}
.xf{left:282.315000px;}
.xc{left:401.295000px;}
.xa{left:422.895000px;}
.x15{left:438.195000px;}
.x11{left:473.505000px;}
.x16{left:500.505000px;}
.x12{left:514.725000px;}
.x17{left:527.505000px;}
.x14{left:668.490000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-66.560000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls7{letter-spacing:-2.400000pt;}
.ls8{letter-spacing:-1.760000pt;}
.ls4{letter-spacing:-0.821333pt;}
.ls10{letter-spacing:-0.714667pt;}
.ls6{letter-spacing:-0.613333pt;}
.ls11{letter-spacing:-0.528000pt;}
.lsa{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.380267pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.112000pt;}
.lse{letter-spacing:-0.075733pt;}
.ls3{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.227733pt;}
.lsb{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls17{letter-spacing:22.496000pt;}
.ls16{letter-spacing:46.816000pt;}
.lsc{letter-spacing:56.912640pt;}
.ls12{letter-spacing:57.040640pt;}
.ls0{letter-spacing:946.186667pt;}
.ws10{word-spacing:-53.120000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws6{word-spacing:-18.106667pt;}
.ws3{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.wsf{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.288000pt;}
.ws15{word-spacing:-12.096000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.888000pt;}
.ws13{word-spacing:-11.808000pt;}
.ws8{word-spacing:-11.680000pt;}
.ws12{word-spacing:-11.472000pt;}
.wsd{word-spacing:-9.433600pt;}
.wsa{word-spacing:-9.357867pt;}
.wsb{word-spacing:-9.053333pt;}
.ws2{word-spacing:-8.869547pt;}
.wsc{word-spacing:-8.718933pt;}
.ws7{word-spacing:-8.000000pt;}
.ws5{word-spacing:-0.074880pt;}
.ws11{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
._9{margin-left:-2.224000pt;}
._2{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._1{width:2.438187pt;}
._d{width:3.696000pt;}
._8{width:5.328000pt;}
._1b{width:6.240000pt;}
._a{width:7.168000pt;}
._14{width:8.544000pt;}
._11{width:10.032000pt;}
._c{width:10.947840pt;}
._13{width:13.591680pt;}
._f{width:15.168000pt;}
._10{width:16.164480pt;}
._e{width:17.436160pt;}
._b{width:18.384000pt;}
._1a{width:19.728000pt;}
._19{width:20.784000pt;}
._18{width:22.416000pt;}
._1e{width:23.859840pt;}
._1f{width:25.116160pt;}
._12{width:26.544000pt;}
._20{width:27.504000pt;}
._1c{width:28.848000pt;}
._1d{width:29.808000pt;}
._28{width:30.720000pt;}
._23{width:32.064000pt;}
._24{width:33.360000pt;}
._2a{width:34.960000pt;}
._17{width:36.240000pt;}
._6{width:37.450667pt;}
._21{width:38.928000pt;}
._22{width:39.936000pt;}
._16{width:41.520000pt;}
._15{width:42.480000pt;}
._27{width:43.488000pt;}
._25{width:45.216640pt;}
._5{width:46.803840pt;}
._2b{width:48.384000pt;}
._26{width:50.208000pt;}
._7{width:61.824000pt;}
._4{width:73.183787pt;}
._2c{width:83.280000pt;}
._2d{width:85.264000pt;}
._2e{width:146.160000pt;}
._2f{width:247.680000pt;}
._29{width:272.064000pt;}
._3{width:384.724053pt;}
._30{width:755.642667pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:4.960000pt;}
.y29{bottom:6.906667pt;}
.y25{bottom:20.800000pt;}
.y28{bottom:22.746667pt;}
.y19{bottom:36.480000pt;}
.y24{bottom:44.640000pt;}
.y5f{bottom:52.000000pt;}
.y18{bottom:60.320000pt;}
.y23{bottom:60.480000pt;}
.y4{bottom:68.640000pt;}
.y22{bottom:76.480000pt;}
.y48{bottom:81.920000pt;}
.y17{bottom:84.160000pt;}
.y5d{bottom:87.200000pt;}
.ycf{bottom:88.320000pt;}
.y188{bottom:89.920000pt;}
.y21{bottom:92.320000pt;}
.y6{bottom:93.440000pt;}
.y9a{bottom:95.200000pt;}
.y47{bottom:97.760000pt;}
.y5c{bottom:103.040000pt;}
.yce{bottom:104.160000pt;}
.y174{bottom:105.760000pt;}
.y16{bottom:107.680000pt;}
.y20{bottom:108.160000pt;}
.y100{bottom:108.800000pt;}
.y99{bottom:111.040000pt;}
.y46{bottom:113.600000pt;}
.y1ae{bottom:116.000000pt;}
.y5b{bottom:118.880000pt;}
.ycd{bottom:120.000000pt;}
.y173{bottom:121.600000pt;}
.y1f{bottom:124.000000pt;}
.yff{bottom:124.640000pt;}
.y159{bottom:126.880000pt;}
.y98{bottom:127.040000pt;}
.y45{bottom:129.440000pt;}
.y15{bottom:131.840000pt;}
.y5a{bottom:134.720000pt;}
.ycc{bottom:135.840000pt;}
.y172{bottom:137.440000pt;}
.y187{bottom:137.600000pt;}
.y1e{bottom:139.840000pt;}
.y138{bottom:140.640000pt;}
.y158{bottom:142.720000pt;}
.y44{bottom:145.440000pt;}
.y14{bottom:147.680000pt;}
.y97{bottom:147.840000pt;}
.yfe{bottom:148.000000pt;}
.y59{bottom:150.560000pt;}
.ycb{bottom:151.840000pt;}
.y171{bottom:153.280000pt;}
.y186{bottom:153.440000pt;}
.y1d{bottom:155.680000pt;}
.y137{bottom:156.480000pt;}
.y157{bottom:158.560000pt;}
.y43{bottom:161.280000pt;}
.y13{bottom:163.680000pt;}
.yfd{bottom:164.000000pt;}
.y58{bottom:166.560000pt;}
.yca{bottom:167.680000pt;}
.y1ad{bottom:168.960000pt;}
.y170{bottom:169.120000pt;}
.y185{bottom:169.280000pt;}
.y96{bottom:170.720000pt;}
.y1c{bottom:171.720000pt;}
.y136{bottom:172.320000pt;}
.y156{bottom:174.400000pt;}
.y42{bottom:177.120000pt;}
.yfc{bottom:179.840000pt;}
.y57{bottom:182.400000pt;}
.yc9{bottom:183.546667pt;}
.y1ac{bottom:184.826667pt;}
.y16f{bottom:185.146667pt;}
.y12{bottom:187.240000pt;}
.y1b{bottom:187.560000pt;}
.y135{bottom:188.186667pt;}
.y155{bottom:190.426667pt;}
.y41{bottom:192.986667pt;}
.y95{bottom:195.866667pt;}
.y56{bottom:198.266667pt;}
.yc8{bottom:199.386667pt;}
.y1ab{bottom:200.666667pt;}
.yfb{bottom:200.986667pt;}
.y11{bottom:203.080000pt;}
.y1a{bottom:203.400000pt;}
.y134{bottom:204.186667pt;}
.y184{bottom:206.426667pt;}
.y40{bottom:208.826667pt;}
.y154{bottom:211.226667pt;}
.y94{bottom:211.706667pt;}
.y55{bottom:214.106667pt;}
.yc7{bottom:215.386667pt;}
.yfa{bottom:216.826667pt;}
.y1aa{bottom:221.946667pt;}
.y183{bottom:222.266667pt;}
.y3f{bottom:224.826667pt;}
.y133{bottom:226.586667pt;}
.y153{bottom:227.226667pt;}
.y93{bottom:227.546667pt;}
.y54{bottom:229.946667pt;}
.y16e{bottom:232.666667pt;}
.yf9{bottom:232.826667pt;}
.yc6{bottom:236.506667pt;}
.y1a9{bottom:237.786667pt;}
.y182{bottom:238.106667pt;}
.y92{bottom:243.386667pt;}
.y53{bottom:245.786667pt;}
.y3e{bottom:245.946667pt;}
.y16d{bottom:248.506667pt;}
.yf8{bottom:248.666667pt;}
.y132{bottom:251.706667pt;}
.yc5{bottom:252.346667pt;}
.y181{bottom:253.946667pt;}
.y1a8{bottom:258.906667pt;}
.y91{bottom:259.386667pt;}
.y3d{bottom:261.786667pt;}
.yf7{bottom:264.506667pt;}
.y131{bottom:267.706667pt;}
.yc4{bottom:268.186667pt;}
.y180{bottom:269.786667pt;}
.y1a7{bottom:274.906667pt;}
.y90{bottom:275.226667pt;}
.y3c{bottom:277.626667pt;}
.yf6{bottom:280.346667pt;}
.y130{bottom:283.546667pt;}
.yc3{bottom:284.026667pt;}
.y16c{bottom:285.626667pt;}
.y17f{bottom:285.786667pt;}
.y1a6{bottom:290.746667pt;}
.y8f{bottom:291.066667pt;}
.y52{bottom:293.466667pt;}
.y3b{bottom:293.626667pt;}
.yf5{bottom:296.186667pt;}
.y12f{bottom:299.386667pt;}
.yc2{bottom:300.026667pt;}
.y16b{bottom:301.466667pt;}
.y17e{bottom:306.586667pt;}
.y8e{bottom:306.906667pt;}
.y3a{bottom:309.466667pt;}
.yf4{bottom:312.186667pt;}
.y51{bottom:314.586667pt;}
.y12e{bottom:315.226667pt;}
.yc1{bottom:315.866667pt;}
.y16a{bottom:317.306667pt;}
.y1a5{bottom:322.426667pt;}
.y8d{bottom:322.746667pt;}
.y39{bottom:325.306667pt;}
.yf3{bottom:328.026667pt;}
.y17d{bottom:328.186667pt;}
.y50{bottom:330.586667pt;}
.y12d{bottom:331.066667pt;}
.yc0{bottom:331.706667pt;}
.y169{bottom:333.306667pt;}
.y8c{bottom:338.586667pt;}
.y38{bottom:341.146667pt;}
.y1a4{bottom:343.706667pt;}
.yf2{bottom:343.866667pt;}
.y17c{bottom:344.026667pt;}
.y4f{bottom:346.426667pt;}
.y12c{bottom:346.906667pt;}
.ybf{bottom:347.546667pt;}
.y152{bottom:349.146667pt;}
.y8b{bottom:354.586667pt;}
.y37{bottom:356.986667pt;}
.y1a3{bottom:359.546667pt;}
.y17b{bottom:359.866667pt;}
.y12b{bottom:362.906667pt;}
.ybe{bottom:363.386667pt;}
.yf1{bottom:364.986667pt;}
.y4e{bottom:368.986667pt;}
.y8a{bottom:370.426667pt;}
.y36{bottom:372.826667pt;}
.y1a2{bottom:375.386667pt;}
.y17a{bottom:375.706667pt;}
.ybd{bottom:379.226667pt;}
.y168{bottom:380.826667pt;}
.yf0{bottom:380.986667pt;}
.y12a{bottom:384.026667pt;}
.y89{bottom:386.266667pt;}
.y35{bottom:388.826667pt;}
.y1a1{bottom:391.226667pt;}
.y179{bottom:391.546667pt;}
.y4d{bottom:394.146667pt;}
.ybc{bottom:395.266667pt;}
.y167{bottom:396.706667pt;}
.yef{bottom:396.866667pt;}
.y129{bottom:399.906667pt;}
.y1a0{bottom:407.266667pt;}
.y88{bottom:407.426667pt;}
.y34{bottom:409.986667pt;}
.yee{bottom:412.706667pt;}
.y128{bottom:415.906667pt;}
.ybb{bottom:416.226667pt;}
.y87{bottom:423.426667pt;}
.y33{bottom:425.826667pt;}
.y19f{bottom:428.386667pt;}
.yed{bottom:428.546667pt;}
.y127{bottom:431.746667pt;}
.y166{bottom:435.106667pt;}
.yba{bottom:438.946667pt;}
.y86{bottom:439.266667pt;}
.y32{bottom:441.666667pt;}
.y19e{bottom:444.226667pt;}
.yec{bottom:444.386667pt;}
.y126{bottom:447.586667pt;}
.y85{bottom:455.106667pt;}
.y31{bottom:457.666667pt;}
.y19d{bottom:460.066667pt;}
.yeb{bottom:460.386667pt;}
.y125{bottom:463.426667pt;}
.yb9{bottom:464.066667pt;}
.y84{bottom:471.106667pt;}
.y30{bottom:473.506667pt;}
.y19c{bottom:476.066667pt;}
.yea{bottom:476.226667pt;}
.y178{bottom:476.386667pt;}
.y124{bottom:479.266667pt;}
.yb8{bottom:480.066667pt;}
.y2f{bottom:489.346667pt;}
.y151{bottom:492.066667pt;}
.y83{bottom:492.226667pt;}
.y123{bottom:495.106667pt;}
.y19b{bottom:497.186667pt;}
.ye9{bottom:497.346667pt;}
.yb7{bottom:501.186667pt;}
.y2e{bottom:505.186667pt;}
.y4c{bottom:505.346667pt;}
.y165{bottom:507.906667pt;}
.y82{bottom:508.066667pt;}
.y122{bottom:511.106667pt;}
.y150{bottom:513.026667pt;}
.ye8{bottom:513.186667pt;}
.yb6{bottom:517.026667pt;}
.y2d{bottom:521.026667pt;}
.y164{bottom:523.746667pt;}
.y81{bottom:523.906667pt;}
.y4b{bottom:526.466667pt;}
.y121{bottom:526.946667pt;}
.y19a{bottom:529.026667pt;}
.ye7{bottom:529.186667pt;}
.yb5{bottom:532.866667pt;}
.y14f{bottom:534.466667pt;}
.y2c{bottom:537.026667pt;}
.y163{bottom:539.586667pt;}
.y80{bottom:539.746667pt;}
.y4a{bottom:542.306667pt;}
.y120{bottom:542.786667pt;}
.ye6{bottom:545.026667pt;}
.y199{bottom:550.146667pt;}
.y14e{bottom:550.306667pt;}
.y2b{bottom:552.866667pt;}
.y162{bottom:555.586667pt;}
.y7f{bottom:555.746667pt;}
.yb4{bottom:556.386667pt;}
.y49{bottom:558.146667pt;}
.ye5{bottom:560.866667pt;}
.y11f{bottom:564.066667pt;}
.y198{bottom:565.986667pt;}
.y14d{bottom:566.306667pt;}
.y177{bottom:571.586667pt;}
.yb3{bottom:572.226667pt;}
.y2a{bottom:575.266667pt;}
.ye4{bottom:576.706667pt;}
.y7e{bottom:576.866667pt;}
.y11e{bottom:579.906667pt;}
.y197{bottom:581.826667pt;}
.y14c{bottom:587.426667pt;}
.yb2{bottom:588.066667pt;}
.ye3{bottom:592.546667pt;}
.y7d{bottom:592.706667pt;}
.y11d{bottom:595.746667pt;}
.y27{bottom:598.786667pt;}
.y196{bottom:603.133333pt;}
.y14b{bottom:603.293333pt;}
.ye2{bottom:608.413333pt;}
.y7c{bottom:608.573333pt;}
.yb1{bottom:611.453333pt;}
.y11c{bottom:611.613333pt;}
.y195{bottom:618.973333pt;}
.y14a{bottom:619.133333pt;}
.y7b{bottom:624.413333pt;}
.yb0{bottom:627.293333pt;}
.y11b{bottom:627.453333pt;}
.y149{bottom:634.973333pt;}
.y176{bottom:635.133333pt;}
.y194{bottom:640.093333pt;}
.ye1{bottom:640.253333pt;}
.y7a{bottom:640.413333pt;}
.y10{bottom:641.213333pt;}
.y11a{bottom:643.293333pt;}
.yaf{bottom:650.813333pt;}
.y193{bottom:655.933333pt;}
.ye0{bottom:656.093333pt;}
.y79{bottom:656.253333pt;}
.y119{bottom:659.293333pt;}
.y161{bottom:661.213333pt;}
.yae{bottom:666.653333pt;}
.y148{bottom:666.813333pt;}
.y192{bottom:671.933333pt;}
.y78{bottom:672.093333pt;}
.y118{bottom:675.133333pt;}
.ydf{bottom:677.373333pt;}
.y147{bottom:682.653333pt;}
.yad{bottom:687.613333pt;}
.y191{bottom:687.773333pt;}
.y77{bottom:687.933333pt;}
.yde{bottom:693.213333pt;}
.y117{bottom:696.253333pt;}
.y146{bottom:698.493333pt;}
.y190{bottom:703.613333pt;}
.y76{bottom:703.773333pt;}
.yac{bottom:709.053333pt;}
.y116{bottom:712.093333pt;}
.y160{bottom:714.333333pt;}
.y145{bottom:714.493333pt;}
.y75{bottom:719.773333pt;}
.yab{bottom:724.893333pt;}
.y115{bottom:728.093333pt;}
.y15f{bottom:730.173333pt;}
.y74{bottom:735.613333pt;}
.yaa{bottom:740.733333pt;}
.y114{bottom:743.933333pt;}
.y15e{bottom:746.173333pt;}
.y73{bottom:751.453333pt;}
.ya9{bottom:756.573333pt;}
.ydd{bottom:756.733333pt;}
.y113{bottom:759.773333pt;}
.y18f{bottom:761.853333pt;}
.y15d{bottom:762.013333pt;}
.y72{bottom:767.293333pt;}
.ya8{bottom:772.573333pt;}
.y112{bottom:775.613333pt;}
.y18e{bottom:777.693333pt;}
.ydc{bottom:777.853333pt;}
.y71{bottom:783.133333pt;}
.ya7{bottom:788.413333pt;}
.y111{bottom:791.453333pt;}
.ydb{bottom:793.693333pt;}
.y144{bottom:798.973333pt;}
.y70{bottom:799.133333pt;}
.ya6{bottom:804.253333pt;}
.y110{bottom:807.453333pt;}
.yda{bottom:809.573333pt;}
.y18d{bottom:814.853333pt;}
.y143{bottom:815.013333pt;}
.ya5{bottom:820.133333pt;}
.y6f{bottom:820.293333pt;}
.y10f{bottom:823.333333pt;}
.yd9{bottom:825.413333pt;}
.y18c{bottom:830.693333pt;}
.y142{bottom:830.853333pt;}
.y6e{bottom:836.133333pt;}
.y10e{bottom:839.173333pt;}
.ya4{bottom:841.093333pt;}
.yd8{bottom:841.413333pt;}
.y15c{bottom:846.693333pt;}
.y141{bottom:851.653333pt;}
.y6d{bottom:851.973333pt;}
.y1b8{bottom:854.373333pt;}
.y10d{bottom:855.013333pt;}
.yd7{bottom:857.253333pt;}
.ya3{bottom:862.533333pt;}
.y140{bottom:867.653333pt;}
.y18b{bottom:867.813333pt;}
.y6c{bottom:867.973333pt;}
.yf{bottom:869.093333pt;}
.yd6{bottom:873.093333pt;}
.y10c{bottom:876.293333pt;}
.ya2{bottom:878.373333pt;}
.y15b{bottom:878.533333pt;}
.y18a{bottom:883.653333pt;}
.y6b{bottom:883.813333pt;}
.y13f{bottom:889.093333pt;}
.ye{bottom:890.373333pt;}
.y10b{bottom:892.133333pt;}
.ya1{bottom:894.373333pt;}
.y15a{bottom:899.333333pt;}
.y1b6{bottom:899.493333pt;}
.y6a{bottom:899.653333pt;}
.y13e{bottom:904.933333pt;}
.y10a{bottom:907.973333pt;}
.yd{bottom:908.933333pt;}
.ya0{bottom:910.213333pt;}
.y69{bottom:915.493333pt;}
.y13d{bottom:920.773333pt;}
.y189{bottom:922.053333pt;}
.y109{bottom:923.813333pt;}
.y9f{bottom:926.053333pt;}
.yc{bottom:930.053333pt;}
.y68{bottom:931.333333pt;}
.y1b5{bottom:936.613333pt;}
.y13c{bottom:936.773333pt;}
.y108{bottom:939.653333pt;}
.y9e{bottom:941.893333pt;}
.y67{bottom:947.173333pt;}
.yb{bottom:948.293333pt;}
.y1b4{bottom:952.453333pt;}
.y13b{bottom:952.613333pt;}
.y107{bottom:955.653333pt;}
.y1b7{bottom:957.573333pt;}
.yd5{bottom:957.733333pt;}
.y9d{bottom:957.893333pt;}
.y66{bottom:963.173333pt;}
.y1b3{bottom:968.293333pt;}
.y13a{bottom:968.453333pt;}
.yd4{bottom:973.733333pt;}
.y106{bottom:976.453333pt;}
.y9c{bottom:978.693333pt;}
.y65{bottom:979.013333pt;}
.ya{bottom:981.733333pt;}
.y139{bottom:984.293333pt;}
.y5{bottom:989.280000pt;}
.y64{bottom:994.853333pt;}
.y105{bottom:998.053333pt;}
.y9b{bottom:1000.133333pt;}
.y1b2{bottom:1005.413333pt;}
.y9{bottom:1006.533333pt;}
.yd3{bottom:1010.693333pt;}
.y104{bottom:1013.893333pt;}
.y63{bottom:1015.973333pt;}
.y1b1{bottom:1021.280000pt;}
.yd2{bottom:1026.560000pt;}
.y175{bottom:1026.720000pt;}
.y103{bottom:1029.760000pt;}
.y62{bottom:1032.000000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.y1b0{bottom:1042.400000pt;}
.yd1{bottom:1042.560000pt;}
.y102{bottom:1045.600000pt;}
.y61{bottom:1047.840000pt;}
.y2{bottom:1050.240000pt;}
.y1af{bottom:1058.400000pt;}
.y7{bottom:1058.880000pt;}
.y101{bottom:1061.440000pt;}
.yd0{bottom:1063.360000pt;}
.y60{bottom:1063.680000pt;}
.y1{bottom:1063.840000pt;}
.y5e{bottom:1088.480000pt;}
.hb{height:31.406250pt;}
.h12{height:36.305625pt;}
.hf{height:41.626667pt;}
.h11{height:42.117188pt;}
.h5{height:42.649687pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.h15{height:47.085938pt;}
.hc{height:47.109375pt;}
.he{height:48.375000pt;}
.h14{height:49.336436pt;}
.h2{height:52.134375pt;}
.ha{height:53.370000pt;}
.h13{height:54.598989pt;}
.h4{height:57.787500pt;}
.h3{height:58.563750pt;}
.h10{height:64.500000pt;}
.h9{height:75.465000pt;}
.h6{height:133.280000pt;}
.hd{height:222.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.w3{width:188.385333pt;}
.w4{width:481.213333pt;}
.w5{width:670.398667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.198667pt;}
.x3{left:10.746667pt;}
.x1{left:48.000000pt;}
.x13{left:49.280000pt;}
.x9{left:51.200000pt;}
.xb{left:60.640000pt;}
.xd{left:61.761333pt;}
.x18{left:72.000000pt;}
.x10{left:84.672000pt;}
.x6{left:91.392000pt;}
.x19{left:96.032000pt;}
.x7{left:210.746667pt;}
.x8{left:220.026667pt;}
.xf{left:250.946667pt;}
.xc{left:356.706667pt;}
.xa{left:375.906667pt;}
.x15{left:389.506667pt;}
.x11{left:420.893333pt;}
.x16{left:444.893333pt;}
.x12{left:457.533333pt;}
.x17{left:468.893333pt;}
.x14{left:594.213333pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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