
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_91008b19066c2a4e1c64ef19.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_19ccf8871e747a2885924183.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.089844;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_7bbe85abfdcadec08ed2f038.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_758738259bbe210a2959d473.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.089844;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_1de2c370136198064a2a5874.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ddfe05fd762bedf05d2eec96.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsa{letter-spacing:-0.186600px;}
.ls19{letter-spacing:-0.178800px;}
.lsf{letter-spacing:-0.160800px;}
.ls7{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls18{letter-spacing:-0.018360px;}
.ls16{letter-spacing:-0.014760px;}
.ls8{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls15{letter-spacing:0.060600px;}
.ls3{letter-spacing:0.065520px;}
.ls17{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.115800px;}
.ls5{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:47.726640px;}
.ls13{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.407600px;}
.ws5{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.342200px;}
.ws10{word-spacing:-13.300800px;}
.wse{word-spacing:-13.287000px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.211640px;}
.ws11{word-spacing:-13.208040px;}
.wsb{word-spacing:-13.065600px;}
.ws4{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._e{margin-left:-3.632280px;}
._d{margin-left:-2.197440px;}
._0{margin-left:-1.110000px;}
._2{width:1.168680px;}
._5{width:3.066000px;}
._6{width:4.389602px;}
._9{width:5.950798px;}
._f{width:7.517164px;}
._11{width:8.524054px;}
._7{width:9.979800px;}
._3{width:11.529000px;}
._4{width:12.658080px;}
._a{width:14.285880px;}
._8{width:15.755760px;}
._10{width:17.013960px;}
._c{width:18.451799px;}
._b{width:19.479000px;}
._16{width:20.681280px;}
._15{width:21.763440px;}
._22{width:23.146200px;}
._1{width:24.891600px;}
._1c{width:26.241600px;}
._23{width:28.226160px;}
._12{width:29.338560px;}
._13{width:30.540960px;}
._26{width:32.104080px;}
._25{width:33.996840px;}
._1b{width:35.266680px;}
._27{width:36.913680px;}
._28{width:39.017880px;}
._29{width:40.032480px;}
._18{width:49.298400px;}
._24{width:57.985560px;}
._1d{width:59.939640px;}
._1e{width:83.266200px;}
._19{width:85.430520px;}
._14{width:97.634880px;}
._20{width:118.737000px;}
._1f{width:136.552800px;}
._17{width:140.740920px;}
._21{width:179.578440px;}
._1a{width:358.014600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y82{bottom:7.830000px;}
.y80{bottom:7.920000px;}
.y84{bottom:25.380000px;}
.yce{bottom:25.410000px;}
.y7f{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y12a{bottom:111.450000px;}
.y114{bottom:112.530000px;}
.y1ff{bottom:116.580000px;}
.y72{bottom:118.920000px;}
.yca{bottom:121.980000px;}
.ya0{bottom:129.180000px;}
.y113{bottom:130.170000px;}
.y18d{bottom:132.600000px;}
.y1ca{bottom:133.680000px;}
.y1fe{bottom:134.130000px;}
.y157{bottom:135.390000px;}
.y71{bottom:136.560000px;}
.y143{bottom:137.820000px;}
.y29{bottom:137.910000px;}
.yc9{bottom:139.530000px;}
.y9f{bottom:146.820000px;}
.y129{bottom:147.000000px;}
.y18c{bottom:150.240000px;}
.y1c9{bottom:151.320000px;}
.y1fd{bottom:151.680000px;}
.y1ee{bottom:152.130000px;}
.y156{bottom:152.940000px;}
.y70{bottom:154.110000px;}
.y1a5{bottom:155.100000px;}
.y142{bottom:155.370000px;}
.y28{bottom:155.460000px;}
.yc8{bottom:157.170000px;}
.y9e{bottom:164.370000px;}
.y112{bottom:165.720000px;}
.y18b{bottom:167.790000px;}
.y1c8{bottom:168.870000px;}
.y1ed{bottom:169.680000px;}
.y155{bottom:170.580000px;}
.y1a4{bottom:172.740000px;}
.y27{bottom:173.010000px;}
.yc7{bottom:174.720000px;}
.y1fc{bottom:178.320000px;}
.y9d{bottom:182.010000px;}
.y128{bottom:182.550000px;}
.y111{bottom:183.270000px;}
.y18a{bottom:185.340000px;}
.y1ec{bottom:187.320000px;}
.y5b{bottom:188.130000px;}
.y6f{bottom:189.660000px;}
.yf1{bottom:190.560000px;}
.y26{bottom:190.650000px;}
.yc6{bottom:192.270000px;}
.y1c7{bottom:195.510000px;}
.y1fb{bottom:195.870000px;}
.y1a3{bottom:199.290000px;}
.y9c{bottom:199.560000px;}
.y127{bottom:200.190000px;}
.y110{bottom:200.910000px;}
.y189{bottom:202.980000px;}
.y154{bottom:205.680000px;}
.y141{bottom:208.110000px;}
.yc5{bottom:209.910000px;}
.y1c6{bottom:213.060000px;}
.y1fa{bottom:213.510000px;}
.y1eb{bottom:213.870000px;}
.y1a2{bottom:216.840000px;}
.y25{bottom:217.560000px;}
.y126{bottom:217.740000px;}
.y10f{bottom:218.460000px;}
.y188{bottom:220.530000px;}
.y6e{bottom:221.880000px;}
.y153{bottom:223.320000px;}
.y5a{bottom:223.680000px;}
.y140{bottom:225.750000px;}
.yf0{bottom:226.110000px;}
.y1ea{bottom:231.510000px;}
.y9b{bottom:235.110000px;}
.y125{bottom:235.380000px;}
.y10e{bottom:236.100000px;}
.y187{bottom:238.170000px;}
.y1c5{bottom:239.610000px;}
.y1f9{bottom:240.060000px;}
.y152{bottom:240.870000px;}
.y59{bottom:241.320000px;}
.y1a1{bottom:243.480000px;}
.yef{bottom:243.750000px;}
.yc4{bottom:245.460000px;}
.y1e9{bottom:249.060000px;}
.y9a{bottom:252.750000px;}
.y124{bottom:252.930000px;}
.y10d{bottom:253.650000px;}
.y186{bottom:255.720000px;}
.y1c4{bottom:257.250000px;}
.y1f8{bottom:257.610000px;}
.y58{bottom:258.870000px;}
.y1a0{bottom:261.030000px;}
.yee{bottom:261.300000px;}
.yc3{bottom:263.100000px;}
.y24{bottom:265.800000px;}
.y216{bottom:266.610000px;}
.y99{bottom:270.300000px;}
.y123{bottom:270.480000px;}
.y185{bottom:273.270000px;}
.y211{bottom:275.250000px;}
.y1e8{bottom:275.610000px;}
.y57{bottom:276.510000px;}
.yed{bottom:278.940000px;}
.y10c{bottom:280.200000px;}
.yc2{bottom:280.650000px;}
.y23{bottom:283.710000px;}
.y1c3{bottom:283.800000px;}
.y1f7{bottom:284.250000px;}
.y98{bottom:287.940000px;}
.y184{bottom:290.910000px;}
.y1e7{bottom:293.250000px;}
.y56{bottom:294.060000px;}
.yec{bottom:296.490000px;}
.yc1{bottom:298.200000px;}
.y1c2{bottom:301.440000px;}
.y1f6{bottom:301.800000px;}
.y97{bottom:305.490000px;}
.y122{bottom:306.120000px;}
.y183{bottom:308.460000px;}
.y1e6{bottom:310.800000px;}
.y55{bottom:311.610000px;}
.y13f{bottom:314.040000px;}
.yc0{bottom:315.840000px;}
.y1c1{bottom:318.990000px;}
.y210{bottom:319.440000px;}
.y22{bottom:320.700000px;}
.y96{bottom:323.040000px;}
.y182{bottom:326.100000px;}
.y1f5{bottom:328.440000px;}
.y54{bottom:329.250000px;}
.yeb{bottom:332.040000px;}
.y10b{bottom:333.390000px;}
.y19f{bottom:336.180000px;}
.y20f{bottom:336.990000px;}
.y1e5{bottom:337.440000px;}
.y21{bottom:338.340000px;}
.y95{bottom:340.680000px;}
.y181{bottom:343.650000px;}
.y1c0{bottom:345.540000px;}
.y1f4{bottom:345.990000px;}
.y53{bottom:346.800000px;}
.yea{bottom:349.680000px;}
.y10a{bottom:350.940000px;}
.ybf{bottom:351.390000px;}
.y1e4{bottom:354.990000px;}
.y20{bottom:355.890000px;}
.y180{bottom:361.200000px;}
.y19e{bottom:363.090000px;}
.y1bf{bottom:363.180000px;}
.y20e{bottom:363.540000px;}
.y151{bottom:364.440000px;}
.y94{bottom:367.230000px;}
.y109{bottom:368.580000px;}
.ybe{bottom:368.940000px;}
.y1e3{bottom:372.540000px;}
.y1f{bottom:373.530000px;}
.y17f{bottom:378.840000px;}
.y20d{bottom:381.180000px;}
.y150{bottom:381.990000px;}
.y52{bottom:382.440000px;}
.ye9{bottom:384.870000px;}
.y108{bottom:386.130000px;}
.ybd{bottom:386.580000px;}
.y1be{bottom:389.730000px;}
.y1f3{bottom:390.180000px;}
.y1e{bottom:391.080000px;}
.y17e{bottom:396.390000px;}
.y20c{bottom:398.730000px;}
.y1e2{bottom:399.180000px;}
.y14f{bottom:399.540000px;}
.y51{bottom:399.990000px;}
.y19d{bottom:400.440000px;}
.ye8{bottom:402.420000px;}
.y93{bottom:402.870000px;}
.y107{bottom:403.770000px;}
.ybc{bottom:404.130000px;}
.y1bd{bottom:407.370000px;}
.y1f2{bottom:407.730000px;}
.y1d{bottom:408.630000px;}
.y17d{bottom:413.940000px;}
.y1e1{bottom:416.730000px;}
.y14e{bottom:417.180000px;}
.y50{bottom:417.540000px;}
.ye7{bottom:419.970000px;}
.y92{bottom:420.420000px;}
.ybb{bottom:421.770000px;}
.y20b{bottom:425.370000px;}
.y1c{bottom:426.270000px;}
.y1bc{bottom:433.920000px;}
.y1f1{bottom:434.370000px;}
.y14d{bottom:434.730000px;}
.y4f{bottom:435.180000px;}
.ye6{bottom:437.610000px;}
.y91{bottom:437.970000px;}
.yba{bottom:439.320000px;}
.y20a{bottom:442.920000px;}
.y1e0{bottom:443.370000px;}
.y1b{bottom:443.820000px;}
.y13e{bottom:446.610000px;}
.y19c{bottom:448.770000px;}
.y17c{bottom:449.580000px;}
.y1bb{bottom:451.470000px;}
.y1f0{bottom:451.920000px;}
.y14c{bottom:452.370000px;}
.y4e{bottom:452.730000px;}
.ye5{bottom:455.160000px;}
.y90{bottom:455.610000px;}
.yb9{bottom:456.870000px;}
.y209{bottom:460.470000px;}
.y1df{bottom:460.920000px;}
.y1a{bottom:461.460000px;}
.y19b{bottom:466.320000px;}
.y17b{bottom:467.130000px;}
.y4d{bottom:470.400000px;}
.ye4{bottom:472.830000px;}
.y8f{bottom:473.190000px;}
.yb8{bottom:474.540000px;}
.y1ba{bottom:478.140000px;}
.y1de{bottom:478.500000px;}
.y19{bottom:479.040000px;}
.y13d{bottom:482.190000px;}
.y19a{bottom:483.900000px;}
.y17a{bottom:484.800000px;}
.y208{bottom:487.140000px;}
.y4c{bottom:487.950000px;}
.yb7{bottom:492.090000px;}
.y1b9{bottom:495.690000px;}
.y1ef{bottom:496.140000px;}
.y18{bottom:496.590000px;}
.ye3{bottom:499.380000px;}
.y13c{bottom:499.830000px;}
.y199{bottom:501.540000px;}
.y179{bottom:502.350000px;}
.y207{bottom:504.690000px;}
.y1dd{bottom:505.140000px;}
.y4b{bottom:505.500000px;}
.y8e{bottom:508.830000px;}
.y106{bottom:509.730000px;}
.y215{bottom:513.690000px;}
.y17{bottom:514.230000px;}
.y13b{bottom:517.380000px;}
.yb6{bottom:518.730000px;}
.y198{bottom:519.090000px;}
.y178{bottom:519.900000px;}
.y1b8{bottom:522.330000px;}
.y1dc{bottom:522.690000px;}
.y14b{bottom:523.140000px;}
.y8d{bottom:526.380000px;}
.y105{bottom:527.280000px;}
.y206{bottom:531.330000px;}
.y16{bottom:531.780000px;}
.ye2{bottom:534.930000px;}
.y197{bottom:536.730000px;}
.y177{bottom:537.540000px;}
.y1b7{bottom:539.880000px;}
.y1db{bottom:540.330000px;}
.y14a{bottom:540.690000px;}
.y4a{bottom:541.140000px;}
.y8c{bottom:543.930000px;}
.y205{bottom:548.880000px;}
.y15{bottom:549.420000px;}
.ye1{bottom:552.570000px;}
.yb5{bottom:554.640000px;}
.y176{bottom:555.090000px;}
.y1b6{bottom:557.430000px;}
.y214{bottom:557.880000px;}
.y149{bottom:558.330000px;}
.y49{bottom:558.690000px;}
.y8b{bottom:561.570000px;}
.y104{bottom:562.830000px;}
.y1da{bottom:566.880000px;}
.y14{bottom:566.970000px;}
.ye0{bottom:570.120000px;}
.y196{bottom:572.280000px;}
.y175{bottom:572.730000px;}
.y204{bottom:575.430000px;}
.y148{bottom:575.880000px;}
.y48{bottom:576.330000px;}
.y8a{bottom:579.120000px;}
.y103{bottom:580.470000px;}
.y1b5{bottom:584.070000px;}
.y1d9{bottom:584.430000px;}
.y13{bottom:584.520000px;}
.ydf{bottom:587.760000px;}
.y195{bottom:589.830000px;}
.y174{bottom:590.280000px;}
.y203{bottom:593.070000px;}
.y47{bottom:593.880000px;}
.y89{bottom:596.760000px;}
.y102{bottom:598.020000px;}
.y1b4{bottom:601.620000px;}
.y1d8{bottom:602.070000px;}
.y12{bottom:602.160000px;}
.y147{bottom:602.430000px;}
.yb4{bottom:602.880000px;}
.y13a{bottom:603.060000px;}
.yde{bottom:605.310000px;}
.y194{bottom:607.470000px;}
.y173{bottom:607.830000px;}
.y46{bottom:611.430000px;}
.y88{bottom:614.310000px;}
.y101{bottom:615.660000px;}
.y1b3{bottom:619.260000px;}
.y202{bottom:619.620000px;}
.yb3{bottom:620.430000px;}
.y193{bottom:625.020000px;}
.y172{bottom:625.470000px;}
.y1d7{bottom:628.620000px;}
.y11{bottom:629.070000px;}
.y100{bottom:633.210000px;}
.y87{bottom:636.360000px;}
.y201{bottom:637.260000px;}
.yb2{bottom:638.070000px;}
.ydd{bottom:640.860000px;}
.y192{bottom:642.660000px;}
.y171{bottom:643.020000px;}
.y1b2{bottom:645.810000px;}
.y1d6{bottom:646.260000px;}
.y45{bottom:646.620000px;}
.y139{bottom:648.060000px;}
.yff{bottom:650.760000px;}
.yb1{bottom:655.620000px;}
.y86{bottom:655.890000px;}
.ydc{bottom:658.500000px;}
.y191{bottom:660.210000px;}
.y170{bottom:660.660000px;}
.y1b1{bottom:663.360000px;}
.y1d5{bottom:663.810000px;}
.yb0{bottom:673.260000px;}
.y10{bottom:675.780000px;}
.ydb{bottom:676.050000px;}
.yfe{bottom:677.400000px;}
.y190{bottom:677.760000px;}
.y16f{bottom:678.210000px;}
.y200{bottom:681.360000px;}
.y44{bottom:682.260000px;}
.y85{bottom:683.160000px;}
.y1b0{bottom:690.000000px;}
.y1d4{bottom:690.360000px;}
.yaf{bottom:690.810000px;}
.y138{bottom:692.970000px;}
.yda{bottom:693.690000px;}
.y121{bottom:694.950000px;}
.y18f{bottom:695.400000px;}
.y16e{bottom:695.760000px;}
.y43{bottom:699.810000px;}
.y1af{bottom:707.550000px;}
.y1d3{bottom:708.000000px;}
.yae{bottom:708.360000px;}
.yd9{bottom:711.240000px;}
.yf{bottom:711.600000px;}
.y120{bottom:712.590000px;}
.yfd{bottom:712.950000px;}
.y16d{bottom:713.400000px;}
.y42{bottom:717.360000px;}
.y1d2{bottom:725.550000px;}
.yad{bottom:726.000000px;}
.y83{bottom:728.160000px;}
.yd8{bottom:728.790000px;}
.y11f{bottom:730.140000px;}
.yfc{bottom:730.590000px;}
.y16c{bottom:730.950000px;}
.y1ae{bottom:734.190000px;}
.y41{bottom:735.000000px;}
.y137{bottom:737.880000px;}
.y213{bottom:743.190000px;}
.y146{bottom:743.550000px;}
.ye{bottom:747.600000px;}
.y11e{bottom:747.690000px;}
.yfb{bottom:748.140000px;}
.y16b{bottom:748.590000px;}
.y1ad{bottom:751.740000px;}
.y1d1{bottom:752.190000px;}
.y40{bottom:752.550000px;}
.yac{bottom:761.550000px;}
.yd7{bottom:764.430000px;}
.y11d{bottom:765.330000px;}
.yfa{bottom:765.690000px;}
.y16a{bottom:766.140000px;}
.y1d0{bottom:769.740000px;}
.y3f{bottom:770.190000px;}
.y81{bottom:773.070000px;}
.y1ac{bottom:778.290000px;}
.yab{bottom:779.190000px;}
.yd6{bottom:781.980000px;}
.y136{bottom:782.790000px;}
.y11c{bottom:782.880000px;}
.yf9{bottom:783.330000px;}
.y18e{bottom:783.690000px;}
.y1cf{bottom:787.290000px;}
.yd{bottom:787.380000px;}
.y3e{bottom:787.740000px;}
.y1ab{bottom:795.930000px;}
.yaa{bottom:796.740000px;}
.yd5{bottom:799.530000px;}
.y7e{bottom:800.340000px;}
.y11b{bottom:800.520000px;}
.yf8{bottom:800.880000px;}
.y6d{bottom:801.330000px;}
.y169{bottom:801.690000px;}
.y212{bottom:804.930000px;}
.yc{bottom:805.380000px;}
.y1ce{bottom:813.930000px;}
.ya9{bottom:814.290000px;}
.yd4{bottom:817.170000px;}
.y11a{bottom:818.070000px;}
.yf7{bottom:818.520000px;}
.y6c{bottom:818.880000px;}
.y168{bottom:819.330000px;}
.y1aa{bottom:822.480000px;}
.y3d{bottom:823.290000px;}
.yb{bottom:823.380000px;}
.y1cd{bottom:831.480000px;}
.ya8{bottom:831.930000px;}
.yd3{bottom:834.720000px;}
.yf6{bottom:836.070000px;}
.y6b{bottom:836.520000px;}
.y167{bottom:836.880000px;}
.y1a9{bottom:840.030000px;}
.y3c{bottom:840.930000px;}
.ya{bottom:841.380000px;}
.y135{bottom:849.030000px;}
.ya7{bottom:849.480000px;}
.yd2{bottom:852.360000px;}
.yf5{bottom:853.620000px;}
.y6a{bottom:854.070000px;}
.y166{bottom:854.520000px;}
.y3b{bottom:858.480000px;}
.y9{bottom:859.380000px;}
.y7d{bottom:866.670000px;}
.ya6{bottom:867.030000px;}
.yf4{bottom:871.260000px;}
.y69{bottom:871.620000px;}
.y165{bottom:872.070000px;}
.y1cc{bottom:875.670000px;}
.y3a{bottom:876.030000px;}
.y8{bottom:877.380000px;}
.yd1{bottom:878.910000px;}
.y1a8{bottom:884.220000px;}
.ya5{bottom:884.670000px;}
.yf3{bottom:888.810000px;}
.y68{bottom:889.260000px;}
.y164{bottom:889.620000px;}
.y1cb{bottom:893.220000px;}
.y39{bottom:893.670000px;}
.y7{bottom:895.380000px;}
.y7c{bottom:902.220000px;}
.yf2{bottom:906.450000px;}
.y67{bottom:906.810000px;}
.y163{bottom:907.260000px;}
.y1a7{bottom:910.860000px;}
.y38{bottom:911.220000px;}
.yd0{bottom:911.850000px;}
.y7b{bottom:919.860000px;}
.y145{bottom:920.220000px;}
.y119{bottom:924.000000px;}
.y66{bottom:924.450000px;}
.y162{bottom:924.810000px;}
.y6{bottom:927.690000px;}
.y1a6{bottom:928.410000px;}
.y37{bottom:928.860000px;}
.y7a{bottom:937.410000px;}
.y144{bottom:937.860000px;}
.y118{bottom:941.550000px;}
.y65{bottom:942.000000px;}
.y161{bottom:942.450000px;}
.y36{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y79{bottom:954.960000px;}
.y134{bottom:955.410000px;}
.ycf{bottom:956.850000px;}
.y117{bottom:959.190000px;}
.y64{bottom:959.550000px;}
.y160{bottom:960.000000px;}
.y35{bottom:963.960000px;}
.y78{bottom:972.600000px;}
.y133{bottom:972.960000px;}
.y63{bottom:977.190000px;}
.y15f{bottom:977.550000px;}
.y34{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y116{bottom:985.740000px;}
.y77{bottom:990.150000px;}
.y132{bottom:990.600000px;}
.y62{bottom:994.740000px;}
.y15e{bottom:995.190000px;}
.y33{bottom:999.150000px;}
.ya4{bottom:999.600000px;}
.ycd{bottom:1001.760000px;}
.y76{bottom:1007.790000px;}
.y131{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.y61{bottom:1012.320000px;}
.y15d{bottom:1012.770000px;}
.y32{bottom:1016.820000px;}
.ya3{bottom:1017.180000px;}
.y115{bottom:1021.680000px;}
.y75{bottom:1025.370000px;}
.y130{bottom:1025.820000px;}
.y60{bottom:1029.960000px;}
.y15c{bottom:1030.320000px;}
.y31{bottom:1034.370000px;}
.ya2{bottom:1034.820000px;}
.y74{bottom:1042.920000px;}
.y12f{bottom:1043.370000px;}
.ycc{bottom:1046.700000px;}
.y5f{bottom:1047.510000px;}
.y15b{bottom:1047.960000px;}
.ya1{bottom:1052.370000px;}
.y12e{bottom:1060.920000px;}
.y5e{bottom:1065.150000px;}
.y15a{bottom:1065.510000px;}
.y73{bottom:1069.560000px;}
.y30{bottom:1069.920000px;}
.ycb{bottom:1073.970000px;}
.y12d{bottom:1078.560000px;}
.y159{bottom:1083.150000px;}
.y2f{bottom:1087.560000px;}
.y5d{bottom:1091.700000px;}
.y12c{bottom:1096.110000px;}
.y158{bottom:1100.700000px;}
.y2e{bottom:1105.110000px;}
.y12b{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y5c{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hd{height:26.550000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.221191px;}
.he{height:44.100000px;}
.hf{height:44.130000px;}
.hb{height:44.190000px;}
.hc{height:50.902383px;}
.h7{height:52.399512px;}
.h8{height:55.779258px;}
.h5{height:57.419824px;}
.h10{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:73.108301px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:80.190000px;}
.w11{width:84.330000px;}
.w3{width:87.750000px;}
.w7{width:88.380000px;}
.we{width:115.920000px;}
.wc{width:128.640000px;}
.wf{width:133.860000px;}
.w10{width:136.890000px;}
.wd{width:152.100000px;}
.w8{width:156.720000px;}
.w4{width:169.680000px;}
.w9{width:204.060000px;}
.w5{width:217.380000px;}
.wa{width:223.470000px;}
.w6{width:278.640000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:3.960000px;}
.x1{left:68.040000px;}
.x5{left:75.689987px;}
.x14{left:111.239987px;}
.xe{left:120.059987px;}
.x7{left:157.320000px;}
.x2{left:191.459987px;}
.xf{left:198.210000px;}
.xa{left:315.300000px;}
.x8{left:327.720000px;}
.x10{left:351.030000px;}
.x11{left:467.760000px;}
.xb{left:520.080000px;}
.x9{left:545.820000px;}
.x12{left:602.430000px;}
.xd{left:733.559987px;}
.x13{left:740.130000px;}
.xc{left:744.270000px;}
.x4{left:766.139987px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls19{letter-spacing:-0.158933pt;}
.lsf{letter-spacing:-0.142933pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls18{letter-spacing:-0.016320pt;}
.ls16{letter-spacing:-0.013120pt;}
.ls8{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls15{letter-spacing:0.053867pt;}
.ls3{letter-spacing:0.058240pt;}
.ls17{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.102933pt;}
.ls5{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:42.423680pt;}
.ls13{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.917867pt;}
.ws5{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.859733pt;}
.ws10{word-spacing:-11.822933pt;}
.wse{word-spacing:-11.810667pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.743680pt;}
.ws11{word-spacing:-11.740480pt;}
.wsb{word-spacing:-11.613867pt;}
.ws4{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._e{margin-left:-3.228694pt;}
._d{margin-left:-1.953280pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.038827pt;}
._5{width:2.725333pt;}
._6{width:3.901868pt;}
._9{width:5.289598pt;}
._f{width:6.681924pt;}
._11{width:7.576937pt;}
._7{width:8.870933pt;}
._3{width:10.248000pt;}
._4{width:11.251627pt;}
._a{width:12.698560pt;}
._8{width:14.005120pt;}
._10{width:15.123520pt;}
._c{width:16.401599pt;}
._b{width:17.314667pt;}
._16{width:18.383360pt;}
._15{width:19.345280pt;}
._22{width:20.574400pt;}
._1{width:22.125867pt;}
._1c{width:23.325866pt;}
._23{width:25.089920pt;}
._12{width:26.078720pt;}
._13{width:27.147520pt;}
._26{width:28.536960pt;}
._25{width:30.219413pt;}
._1b{width:31.348160pt;}
._27{width:32.812160pt;}
._28{width:34.682560pt;}
._29{width:35.584427pt;}
._18{width:43.820800pt;}
._24{width:51.542720pt;}
._1d{width:53.279680pt;}
._1e{width:74.014400pt;}
._19{width:75.938240pt;}
._14{width:86.786560pt;}
._20{width:105.544000pt;}
._1f{width:121.380267pt;}
._17{width:125.103040pt;}
._21{width:159.625280pt;}
._1a{width:318.235200pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:6.960000pt;}
.y80{bottom:7.040000pt;}
.y84{bottom:22.560000pt;}
.yce{bottom:22.586667pt;}
.y7f{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y12a{bottom:99.066667pt;}
.y114{bottom:100.026667pt;}
.y1ff{bottom:103.626667pt;}
.y72{bottom:105.706667pt;}
.yca{bottom:108.426667pt;}
.ya0{bottom:114.826667pt;}
.y113{bottom:115.706667pt;}
.y18d{bottom:117.866667pt;}
.y1ca{bottom:118.826667pt;}
.y1fe{bottom:119.226667pt;}
.y157{bottom:120.346667pt;}
.y71{bottom:121.386667pt;}
.y143{bottom:122.506667pt;}
.y29{bottom:122.586667pt;}
.yc9{bottom:124.026667pt;}
.y9f{bottom:130.506667pt;}
.y129{bottom:130.666667pt;}
.y18c{bottom:133.546667pt;}
.y1c9{bottom:134.506667pt;}
.y1fd{bottom:134.826667pt;}
.y1ee{bottom:135.226667pt;}
.y156{bottom:135.946667pt;}
.y70{bottom:136.986667pt;}
.y1a5{bottom:137.866667pt;}
.y142{bottom:138.106667pt;}
.y28{bottom:138.186667pt;}
.yc8{bottom:139.706667pt;}
.y9e{bottom:146.106667pt;}
.y112{bottom:147.306667pt;}
.y18b{bottom:149.146667pt;}
.y1c8{bottom:150.106667pt;}
.y1ed{bottom:150.826667pt;}
.y155{bottom:151.626667pt;}
.y1a4{bottom:153.546667pt;}
.y27{bottom:153.786667pt;}
.yc7{bottom:155.306667pt;}
.y1fc{bottom:158.506667pt;}
.y9d{bottom:161.786667pt;}
.y128{bottom:162.266667pt;}
.y111{bottom:162.906667pt;}
.y18a{bottom:164.746667pt;}
.y1ec{bottom:166.506667pt;}
.y5b{bottom:167.226667pt;}
.y6f{bottom:168.586667pt;}
.yf1{bottom:169.386667pt;}
.y26{bottom:169.466667pt;}
.yc6{bottom:170.906667pt;}
.y1c7{bottom:173.786667pt;}
.y1fb{bottom:174.106667pt;}
.y1a3{bottom:177.146667pt;}
.y9c{bottom:177.386667pt;}
.y127{bottom:177.946667pt;}
.y110{bottom:178.586667pt;}
.y189{bottom:180.426667pt;}
.y154{bottom:182.826667pt;}
.y141{bottom:184.986667pt;}
.yc5{bottom:186.586667pt;}
.y1c6{bottom:189.386667pt;}
.y1fa{bottom:189.786667pt;}
.y1eb{bottom:190.106667pt;}
.y1a2{bottom:192.746667pt;}
.y25{bottom:193.386667pt;}
.y126{bottom:193.546667pt;}
.y10f{bottom:194.186667pt;}
.y188{bottom:196.026667pt;}
.y6e{bottom:197.226667pt;}
.y153{bottom:198.506667pt;}
.y5a{bottom:198.826667pt;}
.y140{bottom:200.666667pt;}
.yf0{bottom:200.986667pt;}
.y1ea{bottom:205.786667pt;}
.y9b{bottom:208.986667pt;}
.y125{bottom:209.226667pt;}
.y10e{bottom:209.866667pt;}
.y187{bottom:211.706667pt;}
.y1c5{bottom:212.986667pt;}
.y1f9{bottom:213.386667pt;}
.y152{bottom:214.106667pt;}
.y59{bottom:214.506667pt;}
.y1a1{bottom:216.426667pt;}
.yef{bottom:216.666667pt;}
.yc4{bottom:218.186667pt;}
.y1e9{bottom:221.386667pt;}
.y9a{bottom:224.666667pt;}
.y124{bottom:224.826667pt;}
.y10d{bottom:225.466667pt;}
.y186{bottom:227.306667pt;}
.y1c4{bottom:228.666667pt;}
.y1f8{bottom:228.986667pt;}
.y58{bottom:230.106667pt;}
.y1a0{bottom:232.026667pt;}
.yee{bottom:232.266667pt;}
.yc3{bottom:233.866667pt;}
.y24{bottom:236.266667pt;}
.y216{bottom:236.986667pt;}
.y99{bottom:240.266667pt;}
.y123{bottom:240.426667pt;}
.y185{bottom:242.906667pt;}
.y211{bottom:244.666667pt;}
.y1e8{bottom:244.986667pt;}
.y57{bottom:245.786667pt;}
.yed{bottom:247.946667pt;}
.y10c{bottom:249.066667pt;}
.yc2{bottom:249.466667pt;}
.y23{bottom:252.186667pt;}
.y1c3{bottom:252.266667pt;}
.y1f7{bottom:252.666667pt;}
.y98{bottom:255.946667pt;}
.y184{bottom:258.586667pt;}
.y1e7{bottom:260.666667pt;}
.y56{bottom:261.386667pt;}
.yec{bottom:263.546667pt;}
.yc1{bottom:265.066667pt;}
.y1c2{bottom:267.946667pt;}
.y1f6{bottom:268.266667pt;}
.y97{bottom:271.546667pt;}
.y122{bottom:272.106667pt;}
.y183{bottom:274.186667pt;}
.y1e6{bottom:276.266667pt;}
.y55{bottom:276.986667pt;}
.y13f{bottom:279.146667pt;}
.yc0{bottom:280.746667pt;}
.y1c1{bottom:283.546667pt;}
.y210{bottom:283.946667pt;}
.y22{bottom:285.066667pt;}
.y96{bottom:287.146667pt;}
.y182{bottom:289.866667pt;}
.y1f5{bottom:291.946667pt;}
.y54{bottom:292.666667pt;}
.yeb{bottom:295.146667pt;}
.y10b{bottom:296.346667pt;}
.y19f{bottom:298.826667pt;}
.y20f{bottom:299.546667pt;}
.y1e5{bottom:299.946667pt;}
.y21{bottom:300.746667pt;}
.y95{bottom:302.826667pt;}
.y181{bottom:305.466667pt;}
.y1c0{bottom:307.146667pt;}
.y1f4{bottom:307.546667pt;}
.y53{bottom:308.266667pt;}
.yea{bottom:310.826667pt;}
.y10a{bottom:311.946667pt;}
.ybf{bottom:312.346667pt;}
.y1e4{bottom:315.546667pt;}
.y20{bottom:316.346667pt;}
.y180{bottom:321.066667pt;}
.y19e{bottom:322.746667pt;}
.y1bf{bottom:322.826667pt;}
.y20e{bottom:323.146667pt;}
.y151{bottom:323.946667pt;}
.y94{bottom:326.426667pt;}
.y109{bottom:327.626667pt;}
.ybe{bottom:327.946667pt;}
.y1e3{bottom:331.146667pt;}
.y1f{bottom:332.026667pt;}
.y17f{bottom:336.746667pt;}
.y20d{bottom:338.826667pt;}
.y150{bottom:339.546667pt;}
.y52{bottom:339.946667pt;}
.ye9{bottom:342.106667pt;}
.y108{bottom:343.226667pt;}
.ybd{bottom:343.626667pt;}
.y1be{bottom:346.426667pt;}
.y1f3{bottom:346.826667pt;}
.y1e{bottom:347.626667pt;}
.y17e{bottom:352.346667pt;}
.y20c{bottom:354.426667pt;}
.y1e2{bottom:354.826667pt;}
.y14f{bottom:355.146667pt;}
.y51{bottom:355.546667pt;}
.y19d{bottom:355.946667pt;}
.ye8{bottom:357.706667pt;}
.y93{bottom:358.106667pt;}
.y107{bottom:358.906667pt;}
.ybc{bottom:359.226667pt;}
.y1bd{bottom:362.106667pt;}
.y1f2{bottom:362.426667pt;}
.y1d{bottom:363.226667pt;}
.y17d{bottom:367.946667pt;}
.y1e1{bottom:370.426667pt;}
.y14e{bottom:370.826667pt;}
.y50{bottom:371.146667pt;}
.ye7{bottom:373.306667pt;}
.y92{bottom:373.706667pt;}
.ybb{bottom:374.906667pt;}
.y20b{bottom:378.106667pt;}
.y1c{bottom:378.906667pt;}
.y1bc{bottom:385.706667pt;}
.y1f1{bottom:386.106667pt;}
.y14d{bottom:386.426667pt;}
.y4f{bottom:386.826667pt;}
.ye6{bottom:388.986667pt;}
.y91{bottom:389.306667pt;}
.yba{bottom:390.506667pt;}
.y20a{bottom:393.706667pt;}
.y1e0{bottom:394.106667pt;}
.y1b{bottom:394.506667pt;}
.y13e{bottom:396.986667pt;}
.y19c{bottom:398.906667pt;}
.y17c{bottom:399.626667pt;}
.y1bb{bottom:401.306667pt;}
.y1f0{bottom:401.706667pt;}
.y14c{bottom:402.106667pt;}
.y4e{bottom:402.426667pt;}
.ye5{bottom:404.586667pt;}
.y90{bottom:404.986667pt;}
.yb9{bottom:406.106667pt;}
.y209{bottom:409.306667pt;}
.y1df{bottom:409.706667pt;}
.y1a{bottom:410.186667pt;}
.y19b{bottom:414.506667pt;}
.y17b{bottom:415.226667pt;}
.y4d{bottom:418.133333pt;}
.ye4{bottom:420.293333pt;}
.y8f{bottom:420.613333pt;}
.yb8{bottom:421.813333pt;}
.y1ba{bottom:425.013333pt;}
.y1de{bottom:425.333333pt;}
.y19{bottom:425.813333pt;}
.y13d{bottom:428.613333pt;}
.y19a{bottom:430.133333pt;}
.y17a{bottom:430.933333pt;}
.y208{bottom:433.013333pt;}
.y4c{bottom:433.733333pt;}
.yb7{bottom:437.413333pt;}
.y1b9{bottom:440.613333pt;}
.y1ef{bottom:441.013333pt;}
.y18{bottom:441.413333pt;}
.ye3{bottom:443.893333pt;}
.y13c{bottom:444.293333pt;}
.y199{bottom:445.813333pt;}
.y179{bottom:446.533333pt;}
.y207{bottom:448.613333pt;}
.y1dd{bottom:449.013333pt;}
.y4b{bottom:449.333333pt;}
.y8e{bottom:452.293333pt;}
.y106{bottom:453.093333pt;}
.y215{bottom:456.613333pt;}
.y17{bottom:457.093333pt;}
.y13b{bottom:459.893333pt;}
.yb6{bottom:461.093333pt;}
.y198{bottom:461.413333pt;}
.y178{bottom:462.133333pt;}
.y1b8{bottom:464.293333pt;}
.y1dc{bottom:464.613333pt;}
.y14b{bottom:465.013333pt;}
.y8d{bottom:467.893333pt;}
.y105{bottom:468.693333pt;}
.y206{bottom:472.293333pt;}
.y16{bottom:472.693333pt;}
.ye2{bottom:475.493333pt;}
.y197{bottom:477.093333pt;}
.y177{bottom:477.813333pt;}
.y1b7{bottom:479.893333pt;}
.y1db{bottom:480.293333pt;}
.y14a{bottom:480.613333pt;}
.y4a{bottom:481.013333pt;}
.y8c{bottom:483.493333pt;}
.y205{bottom:487.893333pt;}
.y15{bottom:488.373333pt;}
.ye1{bottom:491.173333pt;}
.yb5{bottom:493.013333pt;}
.y176{bottom:493.413333pt;}
.y1b6{bottom:495.493333pt;}
.y214{bottom:495.893333pt;}
.y149{bottom:496.293333pt;}
.y49{bottom:496.613333pt;}
.y8b{bottom:499.173333pt;}
.y104{bottom:500.293333pt;}
.y1da{bottom:503.893333pt;}
.y14{bottom:503.973333pt;}
.ye0{bottom:506.773333pt;}
.y196{bottom:508.693333pt;}
.y175{bottom:509.093333pt;}
.y204{bottom:511.493333pt;}
.y148{bottom:511.893333pt;}
.y48{bottom:512.293333pt;}
.y8a{bottom:514.773333pt;}
.y103{bottom:515.973333pt;}
.y1b5{bottom:519.173333pt;}
.y1d9{bottom:519.493333pt;}
.y13{bottom:519.573333pt;}
.ydf{bottom:522.453333pt;}
.y195{bottom:524.293333pt;}
.y174{bottom:524.693333pt;}
.y203{bottom:527.173333pt;}
.y47{bottom:527.893333pt;}
.y89{bottom:530.453333pt;}
.y102{bottom:531.573333pt;}
.y1b4{bottom:534.773333pt;}
.y1d8{bottom:535.173333pt;}
.y12{bottom:535.253333pt;}
.y147{bottom:535.493333pt;}
.yb4{bottom:535.893333pt;}
.y13a{bottom:536.053333pt;}
.yde{bottom:538.053333pt;}
.y194{bottom:539.973333pt;}
.y173{bottom:540.293333pt;}
.y46{bottom:543.493333pt;}
.y88{bottom:546.053333pt;}
.y101{bottom:547.253333pt;}
.y1b3{bottom:550.453333pt;}
.y202{bottom:550.773333pt;}
.yb3{bottom:551.493333pt;}
.y193{bottom:555.573333pt;}
.y172{bottom:555.973333pt;}
.y1d7{bottom:558.773333pt;}
.y11{bottom:559.173333pt;}
.y100{bottom:562.853333pt;}
.y87{bottom:565.653333pt;}
.y201{bottom:566.453333pt;}
.yb2{bottom:567.173333pt;}
.ydd{bottom:569.653333pt;}
.y192{bottom:571.253333pt;}
.y171{bottom:571.573333pt;}
.y1b2{bottom:574.053333pt;}
.y1d6{bottom:574.453333pt;}
.y45{bottom:574.773333pt;}
.y139{bottom:576.053333pt;}
.yff{bottom:578.453333pt;}
.yb1{bottom:582.773333pt;}
.y86{bottom:583.013333pt;}
.ydc{bottom:585.333333pt;}
.y191{bottom:586.853333pt;}
.y170{bottom:587.253333pt;}
.y1b1{bottom:589.653333pt;}
.y1d5{bottom:590.053333pt;}
.yb0{bottom:598.453333pt;}
.y10{bottom:600.693333pt;}
.ydb{bottom:600.933333pt;}
.yfe{bottom:602.133333pt;}
.y190{bottom:602.453333pt;}
.y16f{bottom:602.853333pt;}
.y200{bottom:605.653333pt;}
.y44{bottom:606.453333pt;}
.y85{bottom:607.253333pt;}
.y1b0{bottom:613.333333pt;}
.y1d4{bottom:613.653333pt;}
.yaf{bottom:614.053333pt;}
.y138{bottom:615.973333pt;}
.yda{bottom:616.613333pt;}
.y121{bottom:617.733333pt;}
.y18f{bottom:618.133333pt;}
.y16e{bottom:618.453333pt;}
.y43{bottom:622.053333pt;}
.y1af{bottom:628.933333pt;}
.y1d3{bottom:629.333333pt;}
.yae{bottom:629.653333pt;}
.yd9{bottom:632.213333pt;}
.yf{bottom:632.533333pt;}
.y120{bottom:633.413333pt;}
.yfd{bottom:633.733333pt;}
.y16d{bottom:634.133333pt;}
.y42{bottom:637.653333pt;}
.y1d2{bottom:644.933333pt;}
.yad{bottom:645.333333pt;}
.y83{bottom:647.253333pt;}
.yd8{bottom:647.813333pt;}
.y11f{bottom:649.013333pt;}
.yfc{bottom:649.413333pt;}
.y16c{bottom:649.733333pt;}
.y1ae{bottom:652.613333pt;}
.y41{bottom:653.333333pt;}
.y137{bottom:655.893333pt;}
.y213{bottom:660.613333pt;}
.y146{bottom:660.933333pt;}
.ye{bottom:664.533333pt;}
.y11e{bottom:664.613333pt;}
.yfb{bottom:665.013333pt;}
.y16b{bottom:665.413333pt;}
.y1ad{bottom:668.213333pt;}
.y1d1{bottom:668.613333pt;}
.y40{bottom:668.933333pt;}
.yac{bottom:676.933333pt;}
.yd7{bottom:679.493333pt;}
.y11d{bottom:680.293333pt;}
.yfa{bottom:680.613333pt;}
.y16a{bottom:681.013333pt;}
.y1d0{bottom:684.213333pt;}
.y3f{bottom:684.613333pt;}
.y81{bottom:687.173333pt;}
.y1ac{bottom:691.813333pt;}
.yab{bottom:692.613333pt;}
.yd6{bottom:695.093333pt;}
.y136{bottom:695.813333pt;}
.y11c{bottom:695.893333pt;}
.yf9{bottom:696.293333pt;}
.y18e{bottom:696.613333pt;}
.y1cf{bottom:699.813333pt;}
.yd{bottom:699.893333pt;}
.y3e{bottom:700.213333pt;}
.y1ab{bottom:707.493333pt;}
.yaa{bottom:708.213333pt;}
.yd5{bottom:710.693333pt;}
.y7e{bottom:711.413333pt;}
.y11b{bottom:711.573333pt;}
.yf8{bottom:711.893333pt;}
.y6d{bottom:712.293333pt;}
.y169{bottom:712.613333pt;}
.y212{bottom:715.493333pt;}
.yc{bottom:715.893333pt;}
.y1ce{bottom:723.493333pt;}
.ya9{bottom:723.813333pt;}
.yd4{bottom:726.373333pt;}
.y11a{bottom:727.173333pt;}
.yf7{bottom:727.573333pt;}
.y6c{bottom:727.893333pt;}
.y168{bottom:728.293333pt;}
.y1aa{bottom:731.093333pt;}
.y3d{bottom:731.813333pt;}
.yb{bottom:731.893333pt;}
.y1cd{bottom:739.093333pt;}
.ya8{bottom:739.493333pt;}
.yd3{bottom:741.973333pt;}
.yf6{bottom:743.173333pt;}
.y6b{bottom:743.573333pt;}
.y167{bottom:743.893333pt;}
.y1a9{bottom:746.693333pt;}
.y3c{bottom:747.493333pt;}
.ya{bottom:747.893333pt;}
.y135{bottom:754.693333pt;}
.ya7{bottom:755.093333pt;}
.yd2{bottom:757.653333pt;}
.yf5{bottom:758.773333pt;}
.y6a{bottom:759.173333pt;}
.y166{bottom:759.573333pt;}
.y3b{bottom:763.093333pt;}
.y9{bottom:763.893333pt;}
.y7d{bottom:770.373333pt;}
.ya6{bottom:770.693333pt;}
.yf4{bottom:774.453333pt;}
.y69{bottom:774.773333pt;}
.y165{bottom:775.173333pt;}
.y1cc{bottom:778.373333pt;}
.y3a{bottom:778.693333pt;}
.y8{bottom:779.893333pt;}
.yd1{bottom:781.253333pt;}
.y1a8{bottom:785.973333pt;}
.ya5{bottom:786.373333pt;}
.yf3{bottom:790.053333pt;}
.y68{bottom:790.453333pt;}
.y164{bottom:790.773333pt;}
.y1cb{bottom:793.973333pt;}
.y39{bottom:794.373333pt;}
.y7{bottom:795.893333pt;}
.y7c{bottom:801.973333pt;}
.yf2{bottom:805.733333pt;}
.y67{bottom:806.053333pt;}
.y163{bottom:806.453333pt;}
.y1a7{bottom:809.653333pt;}
.y38{bottom:809.973333pt;}
.yd0{bottom:810.533333pt;}
.y7b{bottom:817.653333pt;}
.y145{bottom:817.973333pt;}
.y119{bottom:821.333333pt;}
.y66{bottom:821.733333pt;}
.y162{bottom:822.053333pt;}
.y6{bottom:824.613333pt;}
.y1a6{bottom:825.253333pt;}
.y37{bottom:825.653333pt;}
.y7a{bottom:833.253333pt;}
.y144{bottom:833.653333pt;}
.y118{bottom:836.933333pt;}
.y65{bottom:837.333333pt;}
.y161{bottom:837.733333pt;}
.y36{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y79{bottom:848.853333pt;}
.y134{bottom:849.253333pt;}
.ycf{bottom:850.533333pt;}
.y117{bottom:852.613333pt;}
.y64{bottom:852.933333pt;}
.y160{bottom:853.333333pt;}
.y35{bottom:856.853333pt;}
.y78{bottom:864.533333pt;}
.y133{bottom:864.853333pt;}
.y63{bottom:868.613333pt;}
.y15f{bottom:868.933333pt;}
.y34{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y116{bottom:876.213333pt;}
.y77{bottom:880.133333pt;}
.y132{bottom:880.533333pt;}
.y62{bottom:884.213333pt;}
.y15e{bottom:884.613333pt;}
.y33{bottom:888.133333pt;}
.ya4{bottom:888.533333pt;}
.ycd{bottom:890.453333pt;}
.y76{bottom:895.813333pt;}
.y131{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.y61{bottom:899.840000pt;}
.y15d{bottom:900.240000pt;}
.y32{bottom:903.840000pt;}
.ya3{bottom:904.160000pt;}
.y115{bottom:908.160000pt;}
.y75{bottom:911.440000pt;}
.y130{bottom:911.840000pt;}
.y60{bottom:915.520000pt;}
.y15c{bottom:915.840000pt;}
.y31{bottom:919.440000pt;}
.ya2{bottom:919.840000pt;}
.y74{bottom:927.040000pt;}
.y12f{bottom:927.440000pt;}
.ycc{bottom:930.400000pt;}
.y5f{bottom:931.120000pt;}
.y15b{bottom:931.520000pt;}
.ya1{bottom:935.440000pt;}
.y12e{bottom:943.040000pt;}
.y5e{bottom:946.800000pt;}
.y15a{bottom:947.120000pt;}
.y73{bottom:950.720000pt;}
.y30{bottom:951.040000pt;}
.ycb{bottom:954.640000pt;}
.y12d{bottom:958.720000pt;}
.y159{bottom:962.800000pt;}
.y2f{bottom:966.720000pt;}
.y5d{bottom:970.400000pt;}
.y12c{bottom:974.320000pt;}
.y158{bottom:978.400000pt;}
.y2e{bottom:982.320000pt;}
.y12b{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y5c{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.863281pt;}
.he{height:39.200000pt;}
.hf{height:39.226667pt;}
.hb{height:39.280000pt;}
.hc{height:45.246562pt;}
.h7{height:46.577344pt;}
.h8{height:49.581562pt;}
.h5{height:51.039844pt;}
.h10{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.985156pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:71.280000pt;}
.w11{width:74.960000pt;}
.w3{width:78.000000pt;}
.w7{width:78.560000pt;}
.we{width:103.040000pt;}
.wc{width:114.346667pt;}
.wf{width:118.986667pt;}
.w10{width:121.680000pt;}
.wd{width:135.200000pt;}
.w8{width:139.306667pt;}
.w4{width:150.826667pt;}
.w9{width:181.386667pt;}
.w5{width:193.226667pt;}
.wa{width:198.640000pt;}
.w6{width:247.680000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:3.520000pt;}
.x1{left:60.480000pt;}
.x5{left:67.279988pt;}
.x14{left:98.879988pt;}
.xe{left:106.719988pt;}
.x7{left:139.840000pt;}
.x2{left:170.186655pt;}
.xf{left:176.186667pt;}
.xa{left:280.266667pt;}
.x8{left:291.306667pt;}
.x10{left:312.026667pt;}
.x11{left:415.786667pt;}
.xb{left:462.293333pt;}
.x9{left:485.173333pt;}
.x12{left:535.493333pt;}
.xd{left:652.053322pt;}
.x13{left:657.893333pt;}
.xc{left:661.573333pt;}
.x4{left:681.013322pt;}
.x3{left:718.773322pt;}
}




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