
    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_def70c27f9c59a227a7c9387.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_165723775881c292dc128b36.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fa9872c12f549823350a7877.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_f46c0c8e468dbda5168fe0cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.977539;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_f0c2f4a0fe101182f9b3a145.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.977539;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_71e7f02928a847495f39b388.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_19b55da0166a3eee40809a06.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_50435ef7f59c09f1b827476d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.095703;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls18{letter-spacing:-1.296000px;}
.ls13{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.792000px;}
.ls6{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.498000px;}
.lsc{letter-spacing:-0.486600px;}
.ls1a{letter-spacing:-0.305400px;}
.ls11{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.020160px;}
.ls12{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.498240px;}
.ls1{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.840000px;}
.lsf{letter-spacing:3.600000px;}
.ls15{letter-spacing:5.040000px;}
.ls10{letter-spacing:6.480000px;}
.ls16{letter-spacing:20.880000px;}
.lse{letter-spacing:33.276000px;}
.lsa{letter-spacing:33.840000px;}
.ls4{letter-spacing:51.996000px;}
.ls14{letter-spacing:63.838560px;}
.ls19{letter-spacing:95.328000px;}
.lsd{letter-spacing:111.341280px;}
.lsb{letter-spacing:137.100000px;}
.ls3{letter-spacing:150.382560px;}
.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;}
}
.ws1{word-spacing:-119.520000px;}
.wsb{word-spacing:-60.480000px;}
.ws2{word-spacing:-23.425920px;}
.ws9{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.208000px;}
.wsa{word-spacing:-17.064000px;}
.wse{word-spacing:-16.704000px;}
.ws3{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.120000px;}
.ws7{word-spacing:-14.633400px;}
.ws0{word-spacing:-13.182000px;}
.wsf{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._d{margin-left:-4.452000px;}
._7{margin-left:-3.154080px;}
._3{margin-left:-2.039040px;}
._0{margin-left:-1.028160px;}
._1{width:1.816800px;}
._6{width:3.336960px;}
._f{width:4.520160px;}
._9{width:6.434400px;}
._14{width:7.516800px;}
._13{width:8.591040px;}
._8{width:10.224000px;}
._4{width:11.712960px;}
._5{width:13.218720px;}
._c{width:14.337600px;}
._a{width:15.552000px;}
._b{width:16.822080px;}
._1a{width:18.400320px;}
._16{width:20.022240px;}
._21{width:21.232320px;}
._e{width:22.320000px;}
._25{width:23.331360px;}
._17{width:24.336000px;}
._18{width:25.848000px;}
._19{width:27.248160px;}
._23{width:28.823040px;}
._22{width:30.096000px;}
._15{width:31.464000px;}
._11{width:32.936160px;}
._12{width:34.655040px;}
._24{width:35.876160px;}
._20{width:37.224000px;}
._1f{width:38.664000px;}
._1d{width:40.104000px;}
._1e{width:41.112000px;}
._1b{width:42.287040px;}
._1c{width:44.017920px;}
._38{width:45.792000px;}
._39{width:47.447040px;}
._2b{width:61.991040px;}
._2d{width:63.207360px;}
._3b{width:64.232640px;}
._29{width:91.397280px;}
._32{width:93.456000px;}
._31{width:95.351040px;}
._37{width:97.536960px;}
._3c{width:146.520000px;}
._2c{width:150.480000px;}
._33{width:162.936000px;}
._34{width:164.376000px;}
._2e{width:199.944000px;}
._30{width:257.232000px;}
._2f{width:283.980000px;}
._36{width:289.008000px;}
._28{width:311.760000px;}
._3a{width:320.184000px;}
._2a{width:342.072000px;}
._2{width:393.960000px;}
._35{width:539.076000px;}
._26{width:652.392000px;}
._27{width:653.832000px;}
._10{width:1069.656000px;}
.fc7{color:rgb(112,173,71);}
.fc6{color:transparent;}
.fc5{color:rgb(118,113,113);}
.fc4{color:rgb(83,129,53);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(192,0,0);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs3{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:80.640000px;}
.fs8{font-size:83.520000px;}
.fs5{font-size:96.480000px;}
.fs4{font-size:119.520000px;}
.ya{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y106{bottom:3.960000px;}
.y17b{bottom:4.005000px;}
.y10a{bottom:4.320000px;}
.y110{bottom:4.365000px;}
.y13{bottom:6.120000px;}
.ye{bottom:11.556000px;}
.yc{bottom:19.836000px;}
.y113{bottom:24.474000px;}
.y16e{bottom:24.834000px;}
.y109{bottom:24.840000px;}
.y10d{bottom:24.870000px;}
.y105{bottom:24.885000px;}
.y12{bottom:41.760000px;}
.yf{bottom:43.560000px;}
.y112{bottom:45.354000px;}
.y116{bottom:45.360000px;}
.y10c{bottom:45.390000px;}
.y171{bottom:45.405000px;}
.y108{bottom:45.720000px;}
.y16a{bottom:66.240000px;}
.y16d{bottom:66.279000px;}
.y170{bottom:66.285000px;}
.yb{bottom:68.400000px;}
.y11{bottom:77.040000px;}
.y16c{bottom:86.799000px;}
.y17a{bottom:86.805000px;}
.y169{bottom:87.150000px;}
.y3b{bottom:94.716000px;}
.y168{bottom:107.670000px;}
.y179{bottom:107.685000px;}
.y9{bottom:111.636000px;}
.y178{bottom:128.205000px;}
.y167{bottom:128.550000px;}
.y111{bottom:131.436000px;}
.y16b{bottom:133.236000px;}
.y37{bottom:135.396000px;}
.y135{bottom:140.076000px;}
.y193{bottom:141.156000px;}
.y152{bottom:142.236000px;}
.y65{bottom:144.036000px;}
.yd3{bottom:146.556000px;}
.y166{bottom:149.070000px;}
.y177{bottom:149.115000px;}
.y36{bottom:155.910000px;}
.yf8{bottom:156.270000px;}
.y134{bottom:160.590000px;}
.y151{bottom:163.110000px;}
.y64{bottom:164.910000px;}
.yd2{bottom:167.430000px;}
.y176{bottom:169.635000px;}
.y165{bottom:169.950000px;}
.y8a{bottom:172.110000px;}
.y35{bottom:176.790000px;}
.yf7{bottom:177.510000px;}
.y192{bottom:182.910000px;}
.y63{bottom:185.430000px;}
.yd1{bottom:188.310000px;}
.y175{bottom:190.515000px;}
.y89{bottom:192.630000px;}
.y10f{bottom:194.070000px;}
.y34{bottom:197.310000px;}
.yf6{bottom:198.075000px;}
.y133{bottom:202.035000px;}
.y150{bottom:204.555000px;}
.yd0{bottom:208.875000px;}
.y174{bottom:211.035000px;}
.y88{bottom:213.555000px;}
.y33{bottom:218.235000px;}
.yf5{bottom:218.955000px;}
.y191{bottom:224.715000px;}
.y14f{bottom:225.795000px;}
.y62{bottom:226.875000px;}
.ycf{bottom:229.755000px;}
.y173{bottom:231.915000px;}
.y87{bottom:234.075000px;}
.y10e{bottom:236.235000px;}
.y164{bottom:237.315000px;}
.y32{bottom:238.755000px;}
.y132{bottom:243.795000px;}
.yab{bottom:244.875000px;}
.y190{bottom:245.595000px;}
.y14e{bottom:246.315000px;}
.y61{bottom:247.755000px;}
.y86{bottom:254.955000px;}
.y31{bottom:259.635000px;}
.yf4{bottom:259.995000px;}
.y131{bottom:265.035000px;}
.yaa{bottom:266.115000px;}
.y18f{bottom:266.475000px;}
.y14d{bottom:267.195000px;}
.y60{bottom:268.635000px;}
.yce{bottom:270.795000px;}
.y85{bottom:275.475000px;}
.y30{bottom:280.155000px;}
.yf3{bottom:281.235000px;}
.y130{bottom:285.555000px;}
.ya9{bottom:286.635000px;}
.y18e{bottom:286.995000px;}
.y14c{bottom:287.715000px;}
.y5f{bottom:289.155000px;}
.ycd{bottom:292.035000px;}
.y84{bottom:296.355000px;}
.y10b{bottom:299.235000px;}
.y2f{bottom:301.035000px;}
.yf2{bottom:301.755000px;}
.y12f{bottom:306.435000px;}
.y14b{bottom:308.595000px;}
.y5e{bottom:310.035000px;}
.ycc{bottom:312.555000px;}
.yf1{bottom:322.635000px;}
.y12e{bottom:326.985000px;}
.ya8{bottom:328.065000px;}
.y18d{bottom:328.425000px;}
.y5d{bottom:330.585000px;}
.ycb{bottom:333.465000px;}
.y83{bottom:337.785000px;}
.y2e{bottom:342.465000px;}
.yf0{bottom:343.185000px;}
.y12d{bottom:347.865000px;}
.ya7{bottom:349.305000px;}
.y18c{bottom:349.665000px;}
.y14a{bottom:350.025000px;}
.y5c{bottom:351.465000px;}
.yca{bottom:353.985000px;}
.y82{bottom:358.665000px;}
.y107{bottom:361.905000px;}
.yef{bottom:364.065000px;}
.y12c{bottom:368.385000px;}
.ya6{bottom:369.825000px;}
.y18b{bottom:370.185000px;}
.yc9{bottom:374.865000px;}
.y81{bottom:379.545000px;}
.y2d{bottom:383.865000px;}
.y12b{bottom:389.265000px;}
.ya5{bottom:390.705000px;}
.y18a{bottom:391.065000px;}
.y149{bottom:391.425000px;}
.y5b{bottom:392.865000px;}
.y80{bottom:400.065000px;}
.y2c{bottom:405.105000px;}
.yee{bottom:405.465000px;}
.y12a{bottom:409.785000px;}
.ya4{bottom:411.225000px;}
.y148{bottom:412.665000px;}
.y5a{bottom:413.745000px;}
.yc8{bottom:416.265000px;}
.y7f{bottom:420.945000px;}
.y163{bottom:424.545000px;}
.y104{bottom:424.905000px;}
.yed{bottom:426.345000px;}
.y129{bottom:430.665000px;}
.ya3{bottom:432.105000px;}
.y147{bottom:433.185000px;}
.y59{bottom:434.625000px;}
.yc7{bottom:437.145000px;}
.y7e{bottom:441.465000px;}
.y2b{bottom:446.505000px;}
.yec{bottom:447.225000px;}
.ya2{bottom:452.670000px;}
.y146{bottom:454.110000px;}
.y58{bottom:455.190000px;}
.yc6{bottom:458.070000px;}
.y7d{bottom:462.390000px;}
.y2a{bottom:467.430000px;}
.yeb{bottom:467.790000px;}
.y128{bottom:471.750000px;}
.ya1{bottom:473.550000px;}
.y189{bottom:473.910000px;}
.y145{bottom:474.630000px;}
.y162{bottom:474.990000px;}
.y103{bottom:475.350000px;}
.y57{bottom:476.070000px;}
.yc5{bottom:478.590000px;}
.y7c{bottom:482.910000px;}
.y29{bottom:488.310000px;}
.yea{bottom:488.670000px;}
.y127{bottom:492.990000px;}
.ya0{bottom:494.070000px;}
.y188{bottom:495.150000px;}
.y56{bottom:496.590000px;}
.yc4{bottom:499.470000px;}
.y28{bottom:508.830000px;}
.y126{bottom:513.510000px;}
.y9f{bottom:514.950000px;}
.y187{bottom:515.670000px;}
.y144{bottom:516.030000px;}
.y161{bottom:516.750000px;}
.y102{bottom:517.110000px;}
.y55{bottom:517.470000px;}
.yc3{bottom:519.990000px;}
.y1aa{bottom:522.870000px;}
.y7b{bottom:524.310000px;}
.y27{bottom:529.710000px;}
.ye9{bottom:530.070000px;}
.y125{bottom:534.390000px;}
.y9e{bottom:535.470000px;}
.y186{bottom:536.550000px;}
.y143{bottom:537.270000px;}
.y160{bottom:537.630000px;}
.y54{bottom:537.990000px;}
.yc2{bottom:540.870000px;}
.y1a9{bottom:543.030000px;}
.y7a{bottom:545.190000px;}
.y26{bottom:550.230000px;}
.ye8{bottom:550.950000px;}
.y124{bottom:554.910000px;}
.y9d{bottom:556.350000px;}
.y185{bottom:557.070000px;}
.y142{bottom:557.790000px;}
.y15f{bottom:558.510000px;}
.y53{bottom:558.870000px;}
.y1a8{bottom:561.030000px;}
.y79{bottom:566.070000px;}
.y25{bottom:571.110000px;}
.ye7{bottom:571.830000px;}
.y123{bottom:575.820000px;}
.y9c{bottom:576.900000px;}
.y184{bottom:577.980000px;}
.y101{bottom:579.420000px;}
.yc1{bottom:582.300000px;}
.y78{bottom:586.620000px;}
.y24{bottom:591.660000px;}
.y9b{bottom:597.780000px;}
.y183{bottom:598.500000px;}
.y141{bottom:599.220000px;}
.y15e{bottom:599.940000px;}
.y52{bottom:600.300000px;}
.y1a7{bottom:602.100000px;}
.yc0{bottom:603.180000px;}
.y77{bottom:607.500000px;}
.y23{bottom:612.540000px;}
.ye6{bottom:612.900000px;}
.y122{bottom:617.220000px;}
.y9a{bottom:618.300000px;}
.y182{bottom:619.380000px;}
.y15d{bottom:620.820000px;}
.y51{bottom:621.180000px;}
.ybf{bottom:624.060000px;}
.y76{bottom:628.020000px;}
.y22{bottom:633.060000px;}
.ye5{bottom:634.140000px;}
.y99{bottom:639.180000px;}
.y1a6{bottom:640.260000px;}
.y140{bottom:640.980000px;}
.y100{bottom:641.700000px;}
.y50{bottom:642.060000px;}
.y75{bottom:648.900000px;}
.y21{bottom:653.940000px;}
.ye4{bottom:654.660000px;}
.y121{bottom:658.620000px;}
.y1a5{bottom:658.980000px;}
.y98{bottom:659.700000px;}
.y181{bottom:660.420000px;}
.y13f{bottom:661.860000px;}
.y15c{bottom:662.220000px;}
.y4f{bottom:662.580000px;}
.ybe{bottom:665.100000px;}
.ye3{bottom:675.540000px;}
.y1a4{bottom:678.060000px;}
.y120{bottom:679.860000px;}
.y97{bottom:680.580000px;}
.y13e{bottom:682.740000px;}
.y15b{bottom:683.100000px;}
.y4e{bottom:683.460000px;}
.ybd{bottom:686.340000px;}
.y74{bottom:689.580000px;}
.y20{bottom:695.340000px;}
.ye2{bottom:696.060000px;}
.y1a3{bottom:697.140000px;}
.y11f{bottom:700.380000px;}
.y180{bottom:702.210000px;}
.y15a{bottom:703.650000px;}
.y4d{bottom:704.010000px;}
.ybc{bottom:706.890000px;}
.y1a2{bottom:716.250000px;}
.y96{bottom:721.650000px;}
.y17f{bottom:723.450000px;}
.y13d{bottom:724.170000px;}
.y159{bottom:724.530000px;}
.y4c{bottom:724.890000px;}
.y73{bottom:727.050000px;}
.ybb{bottom:727.770000px;}
.y1f{bottom:733.170000px;}
.y1a1{bottom:734.970000px;}
.ye1{bottom:738.570000px;}
.y11e{bottom:741.810000px;}
.y17e{bottom:743.970000px;}
.y158{bottom:745.050000px;}
.yff{bottom:745.410000px;}
.yba{bottom:748.290000px;}
.y1a0{bottom:754.050000px;}
.y95{bottom:763.770000px;}
.y17d{bottom:764.850000px;}
.y4b{bottom:765.930000px;}
.yfe{bottom:766.290000px;}
.y72{bottom:767.010000px;}
.y1e{bottom:768.450000px;}
.yb9{bottom:769.170000px;}
.y19f{bottom:773.130000px;}
.ye0{bottom:782.850000px;}
.y11d{bottom:783.570000px;}
.y17c{bottom:785.370000px;}
.y1d{bottom:785.730000px;}
.y157{bottom:786.450000px;}
.y13c{bottom:786.810000px;}
.y4a{bottom:787.170000px;}
.y19e{bottom:791.850000px;}
.y1c{bottom:803.010000px;}
.ydf{bottom:803.730000px;}
.y11c{bottom:804.810000px;}
.y71{bottom:806.970000px;}
.yfd{bottom:807.330000px;}
.y49{bottom:807.690000px;}
.yb8{bottom:810.570000px;}
.y19d{bottom:810.930000px;}
.y1b{bottom:820.290000px;}
.y172{bottom:823.890000px;}
.y11b{bottom:825.330000px;}
.y70{bottom:826.050000px;}
.y156{bottom:827.895000px;}
.y13b{bottom:828.255000px;}
.y48{bottom:828.615000px;}
.y94{bottom:828.975000px;}
.y19c{bottom:830.055000px;}
.y6f{bottom:844.815000px;}
.yde{bottom:845.175000px;}
.y11a{bottom:846.255000px;}
.y19b{bottom:848.775000px;}
.y47{bottom:849.135000px;}
.y93{bottom:849.495000px;}
.yb7{bottom:852.375000px;}
.y1a{bottom:858.855000px;}
.y6e{bottom:863.895000px;}
.ydd{bottom:866.055000px;}
.y119{bottom:866.775000px;}
.y19a{bottom:867.855000px;}
.y13a{bottom:869.655000px;}
.y46{bottom:870.015000px;}
.y92{bottom:870.375000px;}
.yb6{bottom:873.255000px;}
.y19{bottom:877.935000px;}
.ydc{bottom:886.935000px;}
.y45{bottom:890.535000px;}
.y91{bottom:890.895000px;}
.yb5{bottom:894.135000px;}
.y18{bottom:897.015000px;}
.y6d{bottom:903.855000px;}
.y118{bottom:905.295000px;}
.y199{bottom:906.015000px;}
.y139{bottom:911.055000px;}
.y44{bottom:911.415000px;}
.y90{bottom:911.775000px;}
.yb4{bottom:914.655000px;}
.y6c{bottom:922.935000px;}
.y198{bottom:924.735000px;}
.ydb{bottom:928.335000px;}
.y43{bottom:931.935000px;}
.y155{bottom:932.295000px;}
.yb3{bottom:935.175000px;}
.y17{bottom:936.975000px;}
.y6b{bottom:942.015000px;}
.y197{bottom:943.815000px;}
.y42{bottom:952.845000px;}
.y154{bottom:953.205000px;}
.yb2{bottom:956.085000px;}
.y16{bottom:958.245000px;}
.y196{bottom:962.925000px;}
.y117{bottom:967.965000px;}
.yda{bottom:970.125000px;}
.y41{bottom:973.365000px;}
.y138{bottom:973.725000px;}
.y8f{bottom:974.085000px;}
.yb1{bottom:976.605000px;}
.y15{bottom:978.765000px;}
.y6a{bottom:981.645000px;}
.yd9{bottom:991.005000px;}
.y8e{bottom:994.605000px;}
.yb0{bottom:997.485000px;}
.y69{bottom:1000.725000px;}
.yd8{bottom:1011.885000px;}
.y40{bottom:1014.765000px;}
.yfc{bottom:1015.125000px;}
.y8d{bottom:1015.485000px;}
.yaf{bottom:1018.005000px;}
.y68{bottom:1019.805000px;}
.y14{bottom:1021.605000px;}
.y115{bottom:1030.965000px;}
.yd7{bottom:1032.405000px;}
.y137{bottom:1035.645000px;}
.y8c{bottom:1036.005000px;}
.y67{bottom:1038.885000px;}
.y8{bottom:1047.165000px;}
.y3f{bottom:1056.525000px;}
.y8b{bottom:1056.885000px;}
.yae{bottom:1059.405000px;}
.y7{bottom:1064.445000px;}
.y16f{bottom:1073.085000px;}
.yd6{bottom:1073.805000px;}
.y195{bottom:1074.885000px;}
.y136{bottom:1077.045000px;}
.y3e{bottom:1077.405000px;}
.yfb{bottom:1077.765000px;}
.y66{bottom:1078.890000px;}
.y6{bottom:1082.130000px;}
.y114{bottom:1093.650000px;}
.yd5{bottom:1094.730000px;}
.y153{bottom:1098.330000px;}
.yfa{bottom:1098.690000px;}
.y194{bottom:1100.850000px;}
.yad{bottom:1101.210000px;}
.y10{bottom:1103.370000px;}
.y5{bottom:1104.450000px;}
.y3d{bottom:1118.850000px;}
.yf9{bottom:1119.210000px;}
.y4{bottom:1128.210000px;}
.yd4{bottom:1137.210000px;}
.yac{bottom:1139.730000px;}
.y3c{bottom:1140.090000px;}
.y3{bottom:1151.610000px;}
.y3a{bottom:1167.090000px;}
.y2{bottom:1175.370000px;}
.y39{bottom:1181.130000px;}
.y1{bottom:1199.130000px;}
.y38{bottom:1202.010000px;}
.h5{height:8.640000px;}
.hf{height:15.516000px;}
.h7{height:32.436000px;}
.h14{height:41.436000px;}
.h6{height:48.013594px;}
.h8{height:48.147188px;}
.h4{height:53.067656px;}
.he{height:53.717344px;}
.h3{height:58.121719px;}
.h1d{height:58.283437px;}
.h10{height:58.833281px;}
.h17{height:61.920000px;}
.h16{height:61.956000px;}
.h15{height:62.280000px;}
.hd{height:63.175781px;}
.h2{height:63.949219px;}
.h1c{height:64.001953px;}
.hc{height:67.330547px;}
.h11{height:71.623125px;}
.h12{height:73.283906px;}
.h13{height:74.181094px;}
.h1a{height:82.836000px;}
.hb{height:85.691953px;}
.ha{height:95.300859px;}
.h19{height:103.356000px;}
.h9{height:106.596000px;}
.h18{height:186.510000px;}
.h1b{height:248.475000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:139.032000px;}
.wa{width:146.592000px;}
.w4{width:181.875000px;}
.wf{width:207.075000px;}
.wb{width:227.595000px;}
.wc{width:303.630000px;}
.we{width:331.710000px;}
.w9{width:333.510000px;}
.w7{width:339.270000px;}
.w6{width:341.430000px;}
.w8{width:347.190000px;}
.w3{width:498.810000px;}
.w5{width:566.130000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1a{left:7.590000px;}
.x3{left:8.640000px;}
.x9{left:10.800000px;}
.x16{left:20.160000px;}
.x14{left:23.796000px;}
.x13{left:26.676000px;}
.x17{left:58.365000px;}
.x19{left:59.790000px;}
.x1{left:106.235987px;}
.xe{left:119.915987px;}
.x5{left:127.869000px;}
.x12{left:133.271987px;}
.x1d{left:138.671987px;}
.xb{left:144.791987px;}
.x7{left:146.595000px;}
.xd{left:160.274987px;}
.xa{left:184.034987px;}
.x1b{left:246.705000px;}
.x8{left:248.865000px;}
.x15{left:254.265000px;}
.x11{left:298.230000px;}
.x6{left:308.664000px;}
.xc{left:357.989987px;}
.x2{left:446.579987px;}
.xf{left:447.660000px;}
.x10{left:453.420000px;}
.x18{left:482.580000px;}
.x1c{left:579.135000px;}
.x4{left:605.055000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls18{letter-spacing:-1.152000pt;}
.ls13{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.704000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.442667pt;}
.lsc{letter-spacing:-0.432533pt;}
.ls1a{letter-spacing:-0.271467pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.017920pt;}
.ls12{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.442880pt;}
.ls1{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.746667pt;}
.lsf{letter-spacing:3.200000pt;}
.ls15{letter-spacing:4.480000pt;}
.ls10{letter-spacing:5.760000pt;}
.ls16{letter-spacing:18.560000pt;}
.lse{letter-spacing:29.578667pt;}
.lsa{letter-spacing:30.080000pt;}
.ls4{letter-spacing:46.218667pt;}
.ls14{letter-spacing:56.745387pt;}
.ls19{letter-spacing:84.736000pt;}
.lsd{letter-spacing:98.970027pt;}
.lsb{letter-spacing:121.866667pt;}
.ls3{letter-spacing:133.673387pt;}
.ws1{word-spacing:-106.240000pt;}
.wsb{word-spacing:-53.760000pt;}
.ws2{word-spacing:-20.823040pt;}
.ws9{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.296000pt;}
.wsa{word-spacing:-15.168000pt;}
.wse{word-spacing:-14.848000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.448533pt;}
.ws4{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.007467pt;}
.ws0{word-spacing:-11.717333pt;}
.wsf{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._d{margin-left:-3.957333pt;}
._7{margin-left:-2.803627pt;}
._3{margin-left:-1.812480pt;}
._0{margin-left:-0.913920pt;}
._1{width:1.614933pt;}
._6{width:2.966187pt;}
._f{width:4.017920pt;}
._9{width:5.719467pt;}
._14{width:6.681600pt;}
._13{width:7.636480pt;}
._8{width:9.088000pt;}
._4{width:10.411520pt;}
._5{width:11.749973pt;}
._c{width:12.744533pt;}
._a{width:13.824000pt;}
._b{width:14.952960pt;}
._1a{width:16.355840pt;}
._16{width:17.797547pt;}
._21{width:18.873173pt;}
._e{width:19.840000pt;}
._25{width:20.738987pt;}
._17{width:21.632000pt;}
._18{width:22.976000pt;}
._19{width:24.220587pt;}
._23{width:25.620480pt;}
._22{width:26.752000pt;}
._15{width:27.968000pt;}
._11{width:29.276587pt;}
._12{width:30.804480pt;}
._24{width:31.889920pt;}
._20{width:33.088000pt;}
._1f{width:34.368000pt;}
._1d{width:35.648000pt;}
._1e{width:36.544000pt;}
._1b{width:37.588480pt;}
._1c{width:39.127040pt;}
._38{width:40.704000pt;}
._39{width:42.175147pt;}
._2b{width:55.103147pt;}
._2d{width:56.184320pt;}
._3b{width:57.095680pt;}
._29{width:81.242027pt;}
._32{width:83.072000pt;}
._31{width:84.756480pt;}
._37{width:86.699520pt;}
._3c{width:130.240000pt;}
._2c{width:133.760000pt;}
._33{width:144.832000pt;}
._34{width:146.112000pt;}
._2e{width:177.728000pt;}
._30{width:228.650667pt;}
._2f{width:252.426667pt;}
._36{width:256.896000pt;}
._28{width:277.120000pt;}
._3a{width:284.608000pt;}
._2a{width:304.064000pt;}
._2{width:350.186667pt;}
._35{width:479.178667pt;}
._26{width:579.904000pt;}
._27{width:581.184000pt;}
._10{width:950.805333pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:71.680000pt;}
.fs8{font-size:74.240000pt;}
.fs5{font-size:85.760000pt;}
.fs4{font-size:106.240000pt;}
.ya{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y106{bottom:3.520000pt;}
.y17b{bottom:3.560000pt;}
.y10a{bottom:3.840000pt;}
.y110{bottom:3.880000pt;}
.y13{bottom:5.440000pt;}
.ye{bottom:10.272000pt;}
.yc{bottom:17.632000pt;}
.y113{bottom:21.754667pt;}
.y16e{bottom:22.074667pt;}
.y109{bottom:22.080000pt;}
.y10d{bottom:22.106667pt;}
.y105{bottom:22.120000pt;}
.y12{bottom:37.120000pt;}
.yf{bottom:38.720000pt;}
.y112{bottom:40.314667pt;}
.y116{bottom:40.320000pt;}
.y10c{bottom:40.346667pt;}
.y171{bottom:40.360000pt;}
.y108{bottom:40.640000pt;}
.y16a{bottom:58.880000pt;}
.y16d{bottom:58.914667pt;}
.y170{bottom:58.920000pt;}
.yb{bottom:60.800000pt;}
.y11{bottom:68.480000pt;}
.y16c{bottom:77.154667pt;}
.y17a{bottom:77.160000pt;}
.y169{bottom:77.466667pt;}
.y3b{bottom:84.192000pt;}
.y168{bottom:95.706667pt;}
.y179{bottom:95.720000pt;}
.y9{bottom:99.232000pt;}
.y178{bottom:113.960000pt;}
.y167{bottom:114.266667pt;}
.y111{bottom:116.832000pt;}
.y16b{bottom:118.432000pt;}
.y37{bottom:120.352000pt;}
.y135{bottom:124.512000pt;}
.y193{bottom:125.472000pt;}
.y152{bottom:126.432000pt;}
.y65{bottom:128.032000pt;}
.yd3{bottom:130.272000pt;}
.y166{bottom:132.506667pt;}
.y177{bottom:132.546667pt;}
.y36{bottom:138.586667pt;}
.yf8{bottom:138.906667pt;}
.y134{bottom:142.746667pt;}
.y151{bottom:144.986667pt;}
.y64{bottom:146.586667pt;}
.yd2{bottom:148.826667pt;}
.y176{bottom:150.786667pt;}
.y165{bottom:151.066667pt;}
.y8a{bottom:152.986667pt;}
.y35{bottom:157.146667pt;}
.yf7{bottom:157.786667pt;}
.y192{bottom:162.586667pt;}
.y63{bottom:164.826667pt;}
.yd1{bottom:167.386667pt;}
.y175{bottom:169.346667pt;}
.y89{bottom:171.226667pt;}
.y10f{bottom:172.506667pt;}
.y34{bottom:175.386667pt;}
.yf6{bottom:176.066667pt;}
.y133{bottom:179.586667pt;}
.y150{bottom:181.826667pt;}
.yd0{bottom:185.666667pt;}
.y174{bottom:187.586667pt;}
.y88{bottom:189.826667pt;}
.y33{bottom:193.986667pt;}
.yf5{bottom:194.626667pt;}
.y191{bottom:199.746667pt;}
.y14f{bottom:200.706667pt;}
.y62{bottom:201.666667pt;}
.ycf{bottom:204.226667pt;}
.y173{bottom:206.146667pt;}
.y87{bottom:208.066667pt;}
.y10e{bottom:209.986667pt;}
.y164{bottom:210.946667pt;}
.y32{bottom:212.226667pt;}
.y132{bottom:216.706667pt;}
.yab{bottom:217.666667pt;}
.y190{bottom:218.306667pt;}
.y14e{bottom:218.946667pt;}
.y61{bottom:220.226667pt;}
.y86{bottom:226.626667pt;}
.y31{bottom:230.786667pt;}
.yf4{bottom:231.106667pt;}
.y131{bottom:235.586667pt;}
.yaa{bottom:236.546667pt;}
.y18f{bottom:236.866667pt;}
.y14d{bottom:237.506667pt;}
.y60{bottom:238.786667pt;}
.yce{bottom:240.706667pt;}
.y85{bottom:244.866667pt;}
.y30{bottom:249.026667pt;}
.yf3{bottom:249.986667pt;}
.y130{bottom:253.826667pt;}
.ya9{bottom:254.786667pt;}
.y18e{bottom:255.106667pt;}
.y14c{bottom:255.746667pt;}
.y5f{bottom:257.026667pt;}
.ycd{bottom:259.586667pt;}
.y84{bottom:263.426667pt;}
.y10b{bottom:265.986667pt;}
.y2f{bottom:267.586667pt;}
.yf2{bottom:268.226667pt;}
.y12f{bottom:272.386667pt;}
.y14b{bottom:274.306667pt;}
.y5e{bottom:275.586667pt;}
.ycc{bottom:277.826667pt;}
.yf1{bottom:286.786667pt;}
.y12e{bottom:290.653333pt;}
.ya8{bottom:291.613333pt;}
.y18d{bottom:291.933333pt;}
.y5d{bottom:293.853333pt;}
.ycb{bottom:296.413333pt;}
.y83{bottom:300.253333pt;}
.y2e{bottom:304.413333pt;}
.yf0{bottom:305.053333pt;}
.y12d{bottom:309.213333pt;}
.ya7{bottom:310.493333pt;}
.y18c{bottom:310.813333pt;}
.y14a{bottom:311.133333pt;}
.y5c{bottom:312.413333pt;}
.yca{bottom:314.653333pt;}
.y82{bottom:318.813333pt;}
.y107{bottom:321.693333pt;}
.yef{bottom:323.613333pt;}
.y12c{bottom:327.453333pt;}
.ya6{bottom:328.733333pt;}
.y18b{bottom:329.053333pt;}
.yc9{bottom:333.213333pt;}
.y81{bottom:337.373333pt;}
.y2d{bottom:341.213333pt;}
.y12b{bottom:346.013333pt;}
.ya5{bottom:347.293333pt;}
.y18a{bottom:347.613333pt;}
.y149{bottom:347.933333pt;}
.y5b{bottom:349.213333pt;}
.y80{bottom:355.613333pt;}
.y2c{bottom:360.093333pt;}
.yee{bottom:360.413333pt;}
.y12a{bottom:364.253333pt;}
.ya4{bottom:365.533333pt;}
.y148{bottom:366.813333pt;}
.y5a{bottom:367.773333pt;}
.yc8{bottom:370.013333pt;}
.y7f{bottom:374.173333pt;}
.y163{bottom:377.373333pt;}
.y104{bottom:377.693333pt;}
.yed{bottom:378.973333pt;}
.y129{bottom:382.813333pt;}
.ya3{bottom:384.093333pt;}
.y147{bottom:385.053333pt;}
.y59{bottom:386.333333pt;}
.yc7{bottom:388.573333pt;}
.y7e{bottom:392.413333pt;}
.y2b{bottom:396.893333pt;}
.yec{bottom:397.533333pt;}
.ya2{bottom:402.373333pt;}
.y146{bottom:403.653333pt;}
.y58{bottom:404.613333pt;}
.yc6{bottom:407.173333pt;}
.y7d{bottom:411.013333pt;}
.y2a{bottom:415.493333pt;}
.yeb{bottom:415.813333pt;}
.y128{bottom:419.333333pt;}
.ya1{bottom:420.933333pt;}
.y189{bottom:421.253333pt;}
.y145{bottom:421.893333pt;}
.y162{bottom:422.213333pt;}
.y103{bottom:422.533333pt;}
.y57{bottom:423.173333pt;}
.yc5{bottom:425.413333pt;}
.y7c{bottom:429.253333pt;}
.y29{bottom:434.053333pt;}
.yea{bottom:434.373333pt;}
.y127{bottom:438.213333pt;}
.ya0{bottom:439.173333pt;}
.y188{bottom:440.133333pt;}
.y56{bottom:441.413333pt;}
.yc4{bottom:443.973333pt;}
.y28{bottom:452.293333pt;}
.y126{bottom:456.453333pt;}
.y9f{bottom:457.733333pt;}
.y187{bottom:458.373333pt;}
.y144{bottom:458.693333pt;}
.y161{bottom:459.333333pt;}
.y102{bottom:459.653333pt;}
.y55{bottom:459.973333pt;}
.yc3{bottom:462.213333pt;}
.y1aa{bottom:464.773333pt;}
.y7b{bottom:466.053333pt;}
.y27{bottom:470.853333pt;}
.ye9{bottom:471.173333pt;}
.y125{bottom:475.013333pt;}
.y9e{bottom:475.973333pt;}
.y186{bottom:476.933333pt;}
.y143{bottom:477.573333pt;}
.y160{bottom:477.893333pt;}
.y54{bottom:478.213333pt;}
.yc2{bottom:480.773333pt;}
.y1a9{bottom:482.693333pt;}
.y7a{bottom:484.613333pt;}
.y26{bottom:489.093333pt;}
.ye8{bottom:489.733333pt;}
.y124{bottom:493.253333pt;}
.y9d{bottom:494.533333pt;}
.y185{bottom:495.173333pt;}
.y142{bottom:495.813333pt;}
.y15f{bottom:496.453333pt;}
.y53{bottom:496.773333pt;}
.y1a8{bottom:498.693333pt;}
.y79{bottom:503.173333pt;}
.y25{bottom:507.653333pt;}
.ye7{bottom:508.293333pt;}
.y123{bottom:511.840000pt;}
.y9c{bottom:512.800000pt;}
.y184{bottom:513.760000pt;}
.y101{bottom:515.040000pt;}
.yc1{bottom:517.600000pt;}
.y78{bottom:521.440000pt;}
.y24{bottom:525.920000pt;}
.y9b{bottom:531.360000pt;}
.y183{bottom:532.000000pt;}
.y141{bottom:532.640000pt;}
.y15e{bottom:533.280000pt;}
.y52{bottom:533.600000pt;}
.y1a7{bottom:535.200000pt;}
.yc0{bottom:536.160000pt;}
.y77{bottom:540.000000pt;}
.y23{bottom:544.480000pt;}
.ye6{bottom:544.800000pt;}
.y122{bottom:548.640000pt;}
.y9a{bottom:549.600000pt;}
.y182{bottom:550.560000pt;}
.y15d{bottom:551.840000pt;}
.y51{bottom:552.160000pt;}
.ybf{bottom:554.720000pt;}
.y76{bottom:558.240000pt;}
.y22{bottom:562.720000pt;}
.ye5{bottom:563.680000pt;}
.y99{bottom:568.160000pt;}
.y1a6{bottom:569.120000pt;}
.y140{bottom:569.760000pt;}
.y100{bottom:570.400000pt;}
.y50{bottom:570.720000pt;}
.y75{bottom:576.800000pt;}
.y21{bottom:581.280000pt;}
.ye4{bottom:581.920000pt;}
.y121{bottom:585.440000pt;}
.y1a5{bottom:585.760000pt;}
.y98{bottom:586.400000pt;}
.y181{bottom:587.040000pt;}
.y13f{bottom:588.320000pt;}
.y15c{bottom:588.640000pt;}
.y4f{bottom:588.960000pt;}
.ybe{bottom:591.200000pt;}
.ye3{bottom:600.480000pt;}
.y1a4{bottom:602.720000pt;}
.y120{bottom:604.320000pt;}
.y97{bottom:604.960000pt;}
.y13e{bottom:606.880000pt;}
.y15b{bottom:607.200000pt;}
.y4e{bottom:607.520000pt;}
.ybd{bottom:610.080000pt;}
.y74{bottom:612.960000pt;}
.y20{bottom:618.080000pt;}
.ye2{bottom:618.720000pt;}
.y1a3{bottom:619.680000pt;}
.y11f{bottom:622.560000pt;}
.y180{bottom:624.186667pt;}
.y15a{bottom:625.466667pt;}
.y4d{bottom:625.786667pt;}
.ybc{bottom:628.346667pt;}
.y1a2{bottom:636.666667pt;}
.y96{bottom:641.466667pt;}
.y17f{bottom:643.066667pt;}
.y13d{bottom:643.706667pt;}
.y159{bottom:644.026667pt;}
.y4c{bottom:644.346667pt;}
.y73{bottom:646.266667pt;}
.ybb{bottom:646.906667pt;}
.y1f{bottom:651.706667pt;}
.y1a1{bottom:653.306667pt;}
.ye1{bottom:656.506667pt;}
.y11e{bottom:659.386667pt;}
.y17e{bottom:661.306667pt;}
.y158{bottom:662.266667pt;}
.yff{bottom:662.586667pt;}
.yba{bottom:665.146667pt;}
.y1a0{bottom:670.266667pt;}
.y95{bottom:678.906667pt;}
.y17d{bottom:679.866667pt;}
.y4b{bottom:680.826667pt;}
.yfe{bottom:681.146667pt;}
.y72{bottom:681.786667pt;}
.y1e{bottom:683.066667pt;}
.yb9{bottom:683.706667pt;}
.y19f{bottom:687.226667pt;}
.ye0{bottom:695.866667pt;}
.y11d{bottom:696.506667pt;}
.y17c{bottom:698.106667pt;}
.y1d{bottom:698.426667pt;}
.y157{bottom:699.066667pt;}
.y13c{bottom:699.386667pt;}
.y4a{bottom:699.706667pt;}
.y19e{bottom:703.866667pt;}
.y1c{bottom:713.786667pt;}
.ydf{bottom:714.426667pt;}
.y11c{bottom:715.386667pt;}
.y71{bottom:717.306667pt;}
.yfd{bottom:717.626667pt;}
.y49{bottom:717.946667pt;}
.yb8{bottom:720.506667pt;}
.y19d{bottom:720.826667pt;}
.y1b{bottom:729.146667pt;}
.y172{bottom:732.346667pt;}
.y11b{bottom:733.626667pt;}
.y70{bottom:734.266667pt;}
.y156{bottom:735.906667pt;}
.y13b{bottom:736.226667pt;}
.y48{bottom:736.546667pt;}
.y94{bottom:736.866667pt;}
.y19c{bottom:737.826667pt;}
.y6f{bottom:750.946667pt;}
.yde{bottom:751.266667pt;}
.y11a{bottom:752.226667pt;}
.y19b{bottom:754.466667pt;}
.y47{bottom:754.786667pt;}
.y93{bottom:755.106667pt;}
.yb7{bottom:757.666667pt;}
.y1a{bottom:763.426667pt;}
.y6e{bottom:767.906667pt;}
.ydd{bottom:769.826667pt;}
.y119{bottom:770.466667pt;}
.y19a{bottom:771.426667pt;}
.y13a{bottom:773.026667pt;}
.y46{bottom:773.346667pt;}
.y92{bottom:773.666667pt;}
.yb6{bottom:776.226667pt;}
.y19{bottom:780.386667pt;}
.ydc{bottom:788.386667pt;}
.y45{bottom:791.586667pt;}
.y91{bottom:791.906667pt;}
.yb5{bottom:794.786667pt;}
.y18{bottom:797.346667pt;}
.y6d{bottom:803.426667pt;}
.y118{bottom:804.706667pt;}
.y199{bottom:805.346667pt;}
.y139{bottom:809.826667pt;}
.y44{bottom:810.146667pt;}
.y90{bottom:810.466667pt;}
.yb4{bottom:813.026667pt;}
.y6c{bottom:820.386667pt;}
.y198{bottom:821.986667pt;}
.ydb{bottom:825.186667pt;}
.y43{bottom:828.386667pt;}
.y155{bottom:828.706667pt;}
.yb3{bottom:831.266667pt;}
.y17{bottom:832.866667pt;}
.y6b{bottom:837.346667pt;}
.y197{bottom:838.946667pt;}
.y42{bottom:846.973333pt;}
.y154{bottom:847.293333pt;}
.yb2{bottom:849.853333pt;}
.y16{bottom:851.773333pt;}
.y196{bottom:855.933333pt;}
.y117{bottom:860.413333pt;}
.yda{bottom:862.333333pt;}
.y41{bottom:865.213333pt;}
.y138{bottom:865.533333pt;}
.y8f{bottom:865.853333pt;}
.yb1{bottom:868.093333pt;}
.y15{bottom:870.013333pt;}
.y6a{bottom:872.573333pt;}
.yd9{bottom:880.893333pt;}
.y8e{bottom:884.093333pt;}
.yb0{bottom:886.653333pt;}
.y69{bottom:889.533333pt;}
.yd8{bottom:899.453333pt;}
.y40{bottom:902.013333pt;}
.yfc{bottom:902.333333pt;}
.y8d{bottom:902.653333pt;}
.yaf{bottom:904.893333pt;}
.y68{bottom:906.493333pt;}
.y14{bottom:908.093333pt;}
.y115{bottom:916.413333pt;}
.yd7{bottom:917.693333pt;}
.y137{bottom:920.573333pt;}
.y8c{bottom:920.893333pt;}
.y67{bottom:923.453333pt;}
.y8{bottom:930.813333pt;}
.y3f{bottom:939.133333pt;}
.y8b{bottom:939.453333pt;}
.yae{bottom:941.693333pt;}
.y7{bottom:946.173333pt;}
.y16f{bottom:953.853333pt;}
.yd6{bottom:954.493333pt;}
.y195{bottom:955.453333pt;}
.y136{bottom:957.373333pt;}
.y3e{bottom:957.693333pt;}
.yfb{bottom:958.013333pt;}
.y66{bottom:959.013333pt;}
.y6{bottom:961.893333pt;}
.y114{bottom:972.133333pt;}
.yd5{bottom:973.093333pt;}
.y153{bottom:976.293333pt;}
.yfa{bottom:976.613333pt;}
.y194{bottom:978.533333pt;}
.yad{bottom:978.853333pt;}
.y10{bottom:980.773333pt;}
.y5{bottom:981.733333pt;}
.y3d{bottom:994.533333pt;}
.yf9{bottom:994.853333pt;}
.y4{bottom:1002.853333pt;}
.yd4{bottom:1010.853333pt;}
.yac{bottom:1013.093333pt;}
.y3c{bottom:1013.413333pt;}
.y3{bottom:1023.653333pt;}
.y3a{bottom:1037.413333pt;}
.y2{bottom:1044.773333pt;}
.y39{bottom:1049.893333pt;}
.y1{bottom:1065.893333pt;}
.y38{bottom:1068.453333pt;}
.h5{height:7.680000pt;}
.hf{height:13.792000pt;}
.h7{height:28.832000pt;}
.h14{height:36.832000pt;}
.h6{height:42.678750pt;}
.h8{height:42.797500pt;}
.h4{height:47.171250pt;}
.he{height:47.748750pt;}
.h3{height:51.663750pt;}
.h1d{height:51.807500pt;}
.h10{height:52.296250pt;}
.h17{height:55.040000pt;}
.h16{height:55.072000pt;}
.h15{height:55.360000pt;}
.hd{height:56.156250pt;}
.h2{height:56.843750pt;}
.h1c{height:56.890625pt;}
.hc{height:59.849375pt;}
.h11{height:63.665000pt;}
.h12{height:65.141250pt;}
.h13{height:65.938750pt;}
.h1a{height:73.632000pt;}
.hb{height:76.170625pt;}
.ha{height:84.711875pt;}
.h19{height:91.872000pt;}
.h9{height:94.752000pt;}
.h18{height:165.786667pt;}
.h1b{height:220.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:123.584000pt;}
.wa{width:130.304000pt;}
.w4{width:161.666667pt;}
.wf{width:184.066667pt;}
.wb{width:202.306667pt;}
.wc{width:269.893333pt;}
.we{width:294.853333pt;}
.w9{width:296.453333pt;}
.w7{width:301.573333pt;}
.w6{width:303.493333pt;}
.w8{width:308.613333pt;}
.w3{width:443.386667pt;}
.w5{width:503.226667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.746667pt;}
.x3{left:7.680000pt;}
.x9{left:9.600000pt;}
.x16{left:17.920000pt;}
.x14{left:21.152000pt;}
.x13{left:23.712000pt;}
.x17{left:51.880000pt;}
.x19{left:53.146667pt;}
.x1{left:94.431988pt;}
.xe{left:106.591988pt;}
.x5{left:113.661333pt;}
.x12{left:118.463988pt;}
.x1d{left:123.263988pt;}
.xb{left:128.703988pt;}
.x7{left:130.306667pt;}
.xd{left:142.466655pt;}
.xa{left:163.586655pt;}
.x1b{left:219.293333pt;}
.x8{left:221.213333pt;}
.x15{left:226.013333pt;}
.x11{left:265.093333pt;}
.x6{left:274.368000pt;}
.xc{left:318.213322pt;}
.x2{left:396.959988pt;}
.xf{left:397.920000pt;}
.x10{left:403.040000pt;}
.x18{left:428.960000pt;}
.x1c{left:514.786667pt;}
.x4{left:537.826667pt;}
}




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