
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_40772eb73c1f5edeb47b01a9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_8c5663948e8ecaed764d6f33.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_78887ec670ffb7f5245afbc1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3502e9f7851f4fb4a24762d3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a416f1865dd4b8c0cadd1a9f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_e87eff128f81abd20c1ad4d3.woff')format("woff");}.ff8{font-family:ff8;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;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls18{letter-spacing:-0.444600px;}
.ls14{letter-spacing:-0.285600px;}
.ls12{letter-spacing:-0.186600px;}
.lsa{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.084600px;}
.lsb{letter-spacing:-0.081000px;}
.ls15{letter-spacing:-0.067200px;}
.ls17{letter-spacing:-0.037800px;}
.ls16{letter-spacing:-0.013320px;}
.lsc{letter-spacing:-0.008400px;}
.ls7{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls6{letter-spacing:0.060480px;}
.ls3{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls11{letter-spacing:0.118200px;}
.ls8{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.174600px;}
.ls1a{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:4.053600px;}
.ls1b{letter-spacing:47.726640px;}
.ls19{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;}
}
.ws5{word-spacing:-14.493600px;}
.ws2{word-spacing:-14.412600px;}
.wsb{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.344600px;}
.wsc{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.213080px;}
.ws10{word-spacing:-13.188600px;}
.wse{word-spacing:-13.159200px;}
.ws8{word-spacing:-13.039800px;}
.wsa{word-spacing:-12.940800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._10{margin-left:-3.547200px;}
._a{margin-left:-2.512439px;}
._8{margin-left:-1.214760px;}
._2{width:1.325316px;}
._b{width:2.403648px;}
._6{width:3.464352px;}
._5{width:4.707096px;}
._4{width:6.654012px;}
._7{width:7.892916px;}
._9{width:9.718548px;}
._c{width:11.035212px;}
._d{width:12.165252px;}
._11{width:14.308560px;}
._3{width:15.685812px;}
._12{width:16.953840px;}
._13{width:18.144479px;}
._e{width:19.178400px;}
._1e{width:20.821087px;}
._20{width:21.823560px;}
._1f{width:22.905720px;}
._f{width:24.529837px;}
._1{width:25.935684px;}
._0{width:27.456960px;}
._16{width:33.126120px;}
._15{width:35.290440px;}
._1c{width:37.635120px;}
._1a{width:46.196880px;}
._18{width:47.735280px;}
._19{width:50.140080px;}
._17{width:103.707000px;}
._1b{width:119.157840px;}
._21{width:152.644680px;}
._1d{width:228.155400px;}
._14{width:326.271240px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y58{bottom:7.830000px;}
.yca{bottom:7.860000px;}
.y5b{bottom:7.920000px;}
.y108{bottom:7.950000px;}
.yec{bottom:13.140000px;}
.y9c{bottom:20.970000px;}
.y82{bottom:25.380000px;}
.y57{bottom:25.470000px;}
.y8d{bottom:29.880000px;}
.ye8{bottom:29.910000px;}
.yeb{bottom:35.190000px;}
.y123{bottom:35.220000px;}
.y9b{bottom:43.020000px;}
.ye7{bottom:47.550000px;}
.y101{bottom:62.550000px;}
.y115{bottom:62.580000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.ye4{bottom:74.280000px;}
.yfc{bottom:89.820000px;}
.yf7{bottom:89.850000px;}
.yee{bottom:89.910000px;}
.y1{bottom:101.640000px;}
.y104{bottom:108.570000px;}
.ya6{bottom:111.720000px;}
.y5e{bottom:113.250000px;}
.y191{bottom:119.910000px;}
.y15d{bottom:121.620000px;}
.y1ad{bottom:130.980000px;}
.y29{bottom:131.970000px;}
.y100{bottom:135.840000px;}
.y190{bottom:137.460000px;}
.ya5{bottom:139.080000px;}
.y15c{bottom:139.260000px;}
.y5d{bottom:140.610000px;}
.yc5{bottom:142.230000px;}
.y84{bottom:146.640000px;}
.ye2{bottom:147.180000px;}
.y28{bottom:149.610000px;}
.y18f{bottom:155.010000px;}
.y11d{bottom:156.450000px;}
.y15b{bottom:156.810000px;}
.y1ac{bottom:157.620000px;}
.y103{bottom:163.200000px;}
.ye1{bottom:164.730000px;}
.ya4{bottom:166.350000px;}
.y27{bottom:167.160000px;}
.y5c{bottom:167.970000px;}
.yc4{bottom:171.840000px;}
.y18e{bottom:172.650000px;}
.y15a{bottom:174.360000px;}
.y11e{bottom:183.810000px;}
.y1ab{bottom:184.170000px;}
.y26{bottom:184.800000px;}
.y18d{bottom:190.200000px;}
.y102{bottom:190.560000px;}
.ye0{bottom:191.280000px;}
.y83{bottom:191.550000px;}
.y159{bottom:192.000000px;}
.ya3{bottom:193.710000px;}
.y5a{bottom:195.240000px;}
.yc3{bottom:201.450000px;}
.y1aa{bottom:201.720000px;}
.y25{bottom:202.350000px;}
.y18c{bottom:207.840000px;}
.y158{bottom:209.550000px;}
.y11c{bottom:211.170000px;}
.yfb{bottom:217.920000px;}
.y81{bottom:218.910000px;}
.yc2{bottom:219.090000px;}
.y24{bottom:219.900000px;}
.ya2{bottom:221.070000px;}
.y59{bottom:222.600000px;}
.y18b{bottom:225.390000px;}
.ydf{bottom:226.830000px;}
.y157{bottom:227.190000px;}
.y1a9{bottom:228.360000px;}
.y23{bottom:237.540000px;}
.y11b{bottom:238.440000px;}
.y18a{bottom:242.940000px;}
.yde{bottom:244.560000px;}
.y156{bottom:244.740000px;}
.yff{bottom:245.190000px;}
.ya1{bottom:248.340000px;}
.yc1{bottom:248.610000px;}
.y56{bottom:249.960000px;}
.y1a8{bottom:255.270000px;}
.y135{bottom:257.520000px;}
.y189{bottom:260.580000px;}
.ydd{bottom:262.110000px;}
.y155{bottom:262.290000px;}
.y22{bottom:264.450000px;}
.y11a{bottom:265.800000px;}
.yc0{bottom:266.250000px;}
.yfe{bottom:272.550000px;}
.ya0{bottom:275.700000px;}
.y188{bottom:278.130000px;}
.ydc{bottom:279.660000px;}
.y154{bottom:279.930000px;}
.ybf{bottom:283.800000px;}
.y134{bottom:284.880000px;}
.y80{bottom:285.150000px;}
.y118{bottom:293.160000px;}
.y187{bottom:295.680000px;}
.y153{bottom:297.480000px;}
.yfd{bottom:299.910000px;}
.ybe{bottom:301.440000px;}
.y9f{bottom:303.060000px;}
.y1a7{bottom:303.510000px;}
.y133{bottom:312.240000px;}
.y21{bottom:313.050000px;}
.y186{bottom:313.320000px;}
.y152{bottom:315.120000px;}
.ydb{bottom:315.300000px;}
.y55{bottom:316.200000px;}
.ybd{bottom:318.990000px;}
.y119{bottom:320.520000px;}
.y7f{bottom:320.790000px;}
.yf6{bottom:327.270000px;}
.y9e{bottom:330.420000px;}
.y185{bottom:330.870000px;}
.y151{bottom:332.670000px;}
.yda{bottom:332.850000px;}
.y54{bottom:333.840000px;}
.ybc{bottom:336.630000px;}
.y132{bottom:339.600000px;}
.y7e{bottom:347.340000px;}
.y114{bottom:347.790000px;}
.y184{bottom:348.510000px;}
.y20{bottom:350.040000px;}
.y150{bottom:350.220000px;}
.yfa{bottom:354.540000px;}
.y9d{bottom:357.690000px;}
.yd9{bottom:365.070000px;}
.y183{bottom:366.060000px;}
.y131{bottom:366.870000px;}
.y1a6{bottom:367.500000px;}
.y1f{bottom:367.590000px;}
.y14f{bottom:367.860000px;}
.y53{bottom:369.390000px;}
.ybb{bottom:369.570000px;}
.y117{bottom:375.150000px;}
.yf9{bottom:381.900000px;}
.y7d{bottom:383.250000px;}
.y182{bottom:383.610000px;}
.y9a{bottom:385.050000px;}
.y1e{bottom:385.230000px;}
.y14e{bottom:385.410000px;}
.y52{bottom:386.940000px;}
.y130{bottom:394.260000px;}
.y1a5{bottom:394.320000px;}
.yba{bottom:396.930000px;}
.y181{bottom:401.250000px;}
.y116{bottom:402.540000px;}
.y1d{bottom:402.780000px;}
.y51{bottom:404.580000px;}
.yf8{bottom:409.290000px;}
.y14d{bottom:412.320000px;}
.y180{bottom:418.800000px;}
.y1c{bottom:420.420000px;}
.y12f{bottom:421.620000px;}
.y50{bottom:422.130000px;}
.yb9{bottom:424.200000px;}
.y111{bottom:429.810000px;}
.y1a4{bottom:431.400000px;}
.y7c{bottom:431.490000px;}
.y17f{bottom:436.440000px;}
.yf2{bottom:436.560000px;}
.y1b{bottom:437.970000px;}
.y4f{bottom:439.770000px;}
.y12e{bottom:448.890000px;}
.y7b{bottom:449.130000px;}
.yb8{bottom:451.560000px;}
.y17e{bottom:453.990000px;}
.y1a{bottom:455.520000px;}
.y113{bottom:457.170000px;}
.y1a3{bottom:458.310000px;}
.y14c{bottom:460.560000px;}
.yf5{bottom:463.920000px;}
.y4e{bottom:466.320000px;}
.y7a{bottom:466.680000px;}
.y99{bottom:468.930000px;}
.y17d{bottom:471.570000px;}
.y19{bottom:473.190000px;}
.y12d{bottom:476.250000px;}
.y14b{bottom:478.230000px;}
.yb7{bottom:478.950000px;}
.y112{bottom:484.530000px;}
.y17c{bottom:489.210000px;}
.y18{bottom:490.740000px;}
.yf4{bottom:491.280000px;}
.y79{bottom:493.260000px;}
.y1a2{bottom:495.330000px;}
.y14a{bottom:495.780000px;}
.y4d{bottom:501.900000px;}
.y12c{bottom:503.610000px;}
.y1c6{bottom:504.330000px;}
.y98{bottom:504.510000px;}
.yb6{bottom:506.310000px;}
.y17b{bottom:506.760000px;}
.y17{bottom:508.380000px;}
.y110{bottom:511.890000px;}
.y1a1{bottom:512.970000px;}
.yf3{bottom:518.640000px;}
.y4c{bottom:519.540000px;}
.y1c5{bottom:521.880000px;}
.y97{bottom:522.150000px;}
.y17a{bottom:524.400000px;}
.y16{bottom:525.930000px;}
.y149{bottom:528.810000px;}
.y78{bottom:528.900000px;}
.y1a0{bottom:530.520000px;}
.y12b{bottom:530.970000px;}
.yb5{bottom:533.580000px;}
.y10e{bottom:539.160000px;}
.y96{bottom:539.700000px;}
.y179{bottom:541.950000px;}
.y15{bottom:543.480000px;}
.yed{bottom:545.910000px;}
.y4b{bottom:546.090000px;}
.y77{bottom:546.450000px;}
.y19f{bottom:548.070000px;}
.y1c4{bottom:548.430000px;}
.y148{bottom:556.080000px;}
.y12a{bottom:558.240000px;}
.y178{bottom:559.500000px;}
.yb4{bottom:560.940000px;}
.y14{bottom:561.120000px;}
.y76{bottom:564.090000px;}
.y1c3{bottom:566.070000px;}
.y95{bottom:566.340000px;}
.y10f{bottom:566.520000px;}
.yf1{bottom:573.270000px;}
.y19e{bottom:574.980000px;}
.y177{bottom:577.140000px;}
.y13{bottom:578.670000px;}
.y4a{bottom:582.000000px;}
.y147{bottom:583.440000px;}
.y129{bottom:585.600000px;}
.yb3{bottom:588.300000px;}
.y75{bottom:590.640000px;}
.y1c2{bottom:592.620000px;}
.y10c{bottom:593.880000px;}
.y176{bottom:594.690000px;}
.y94{bottom:599.280000px;}
.yf0{bottom:600.630000px;}
.y12{bottom:605.580000px;}
.y1c1{bottom:610.260000px;}
.y146{bottom:610.800000px;}
.y175{bottom:612.330000px;}
.y128{bottom:612.960000px;}
.yb2{bottom:615.660000px;}
.y10d{bottom:621.240000px;}
.y74{bottom:626.190000px;}
.y93{bottom:626.640000px;}
.yd8{bottom:626.910000px;}
.yef{bottom:627.990000px;}
.y174{bottom:629.880000px;}
.y49{bottom:630.330000px;}
.y1c0{bottom:636.810000px;}
.y145{bottom:638.160000px;}
.y127{bottom:640.320000px;}
.yb1{bottom:642.930000px;}
.y73{bottom:643.830000px;}
.y173{bottom:647.430000px;}
.y48{bottom:647.880000px;}
.y109{bottom:648.510000px;}
.y11{bottom:653.820000px;}
.y92{bottom:653.910000px;}
.yd7{bottom:654.180000px;}
.y1bf{bottom:654.360000px;}
.yea{bottom:655.260000px;}
.y19d{bottom:660.660000px;}
.y72{bottom:661.380000px;}
.y172{bottom:665.070000px;}
.y47{bottom:665.430000px;}
.y126{bottom:667.590000px;}
.yb0{bottom:670.290000px;}
.y10b{bottom:675.870000px;}
.y19c{bottom:678.210000px;}
.y71{bottom:679.020000px;}
.y1be{bottom:681.000000px;}
.yd6{bottom:681.540000px;}
.ye9{bottom:682.620000px;}
.y46{bottom:683.070000px;}
.y10{bottom:689.460000px;}
.y144{bottom:692.790000px;}
.y125{bottom:694.950000px;}
.y19b{bottom:695.760000px;}
.y70{bottom:696.570000px;}
.yaf{bottom:697.650000px;}
.y1bd{bottom:698.550000px;}
.y91{bottom:698.910000px;}
.y171{bottom:700.260000px;}
.y45{bottom:700.620000px;}
.y10a{bottom:703.230000px;}
.yd5{bottom:708.900000px;}
.ye6{bottom:709.980000px;}
.y19a{bottom:713.400000px;}
.y6f{bottom:714.120000px;}
.y170{bottom:717.810000px;}
.y44{bottom:718.260000px;}
.y143{bottom:720.150000px;}
.y122{bottom:722.310000px;}
.yae{bottom:724.920000px;}
.y1bc{bottom:725.190000px;}
.yf{bottom:725.280000px;}
.y90{bottom:726.180000px;}
.y107{bottom:730.500000px;}
.y199{bottom:730.950000px;}
.y6e{bottom:731.760000px;}
.y16f{bottom:735.360000px;}
.y43{bottom:735.810000px;}
.yd4{bottom:736.170000px;}
.y142{bottom:747.420000px;}
.y198{bottom:748.590000px;}
.y6d{bottom:749.310000px;}
.y124{bottom:749.610000px;}
.y1bb{bottom:751.740000px;}
.yad{bottom:752.280000px;}
.y16e{bottom:753.000000px;}
.y42{bottom:753.360000px;}
.y106{bottom:757.890000px;}
.yd3{bottom:763.530000px;}
.ye{bottom:765.060000px;}
.y197{bottom:766.140000px;}
.y6c{bottom:766.950000px;}
.y1ba{bottom:769.290000px;}
.y16d{bottom:770.550000px;}
.y41{bottom:771.000000px;}
.y8f{bottom:771.090000px;}
.y141{bottom:774.780000px;}
.yac{bottom:779.640000px;}
.yd{bottom:783.060000px;}
.y196{bottom:783.690000px;}
.y105{bottom:785.250000px;}
.y16c{bottom:788.190000px;}
.y40{bottom:788.550000px;}
.yd2{bottom:790.890000px;}
.y6b{bottom:793.500000px;}
.y1b9{bottom:795.930000px;}
.ye5{bottom:798.390000px;}
.yc{bottom:801.060000px;}
.y195{bottom:801.330000px;}
.y140{bottom:802.140000px;}
.y16b{bottom:805.740000px;}
.y3f{bottom:806.190000px;}
.yab{bottom:807.000000px;}
.y1b8{bottom:813.480000px;}
.y8e{bottom:816.000000px;}
.yd1{bottom:818.250000px;}
.y194{bottom:818.880000px;}
.yb{bottom:819.060000px;}
.y16a{bottom:823.290000px;}
.y3e{bottom:823.740000px;}
.ye3{bottom:824.940000px;}
.y6a{bottom:826.440000px;}
.y13f{bottom:829.500000px;}
.ya{bottom:833.280000px;}
.yaa{bottom:834.270000px;}
.y193{bottom:836.520000px;}
.y1b7{bottom:840.030000px;}
.y169{bottom:840.930000px;}
.y3d{bottom:841.290000px;}
.yd0{bottom:845.520000px;}
.y69{bottom:853.800000px;}
.y9{bottom:855.060000px;}
.y13e{bottom:856.770000px;}
.y168{bottom:858.480000px;}
.y3c{bottom:858.930000px;}
.y8c{bottom:861.000000px;}
.y192{bottom:863.340000px;}
.y1b6{bottom:866.670000px;}
.ycf{bottom:872.880000px;}
.y8{bottom:873.060000px;}
.y167{bottom:876.030000px;}
.y3b{bottom:876.480000px;}
.y68{bottom:881.160000px;}
.ya9{bottom:882.960000px;}
.y13d{bottom:884.130000px;}
.y1b5{bottom:884.220000px;}
.y166{bottom:893.670000px;}
.y3a{bottom:894.030000px;}
.yce{bottom:900.240000px;}
.y7{bottom:905.370000px;}
.y67{bottom:908.430000px;}
.y8b{bottom:910.410000px;}
.y1b4{bottom:910.860000px;}
.y165{bottom:911.220000px;}
.y13c{bottom:911.490000px;}
.y39{bottom:911.670000px;}
.ya8{bottom:918.600000px;}
.y6{bottom:924.720000px;}
.ycd{bottom:927.600000px;}
.y1b3{bottom:928.410000px;}
.y164{bottom:928.860000px;}
.y38{bottom:929.220000px;}
.y66{bottom:935.790000px;}
.y13b{bottom:938.850000px;}
.y1b2{bottom:945.960000px;}
.y163{bottom:946.410000px;}
.y37{bottom:946.860000px;}
.ya7{bottom:948.120000px;}
.ycc{bottom:954.870000px;}
.y8a{bottom:955.320000px;}
.y5{bottom:962.970000px;}
.y65{bottom:963.150000px;}
.y162{bottom:963.960000px;}
.y36{bottom:964.410000px;}
.y13a{bottom:966.120000px;}
.y1b1{bottom:972.600000px;}
.y161{bottom:981.600000px;}
.y35{bottom:981.960000px;}
.ycb{bottom:982.230000px;}
.y89{bottom:982.680000px;}
.y4{bottom:987.630000px;}
.y64{bottom:990.510000px;}
.y138{bottom:993.480000px;}
.y160{bottom:999.150000px;}
.y34{bottom:999.600000px;}
.y121{bottom:1007.790000px;}
.yc9{bottom:1009.590000px;}
.y88{bottom:1009.980000px;}
.y3{bottom:1012.320000px;}
.y15f{bottom:1016.820000px;}
.y33{bottom:1017.180000px;}
.y63{bottom:1017.810000px;}
.y139{bottom:1020.870000px;}
.y120{bottom:1025.370000px;}
.y15e{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.yc8{bottom:1036.890000px;}
.y87{bottom:1037.340000px;}
.y1b0{bottom:1043.370000px;}
.y62{bottom:1045.170000px;}
.y11f{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.y1af{bottom:1060.920000px;}
.yc7{bottom:1064.250000px;}
.y137{bottom:1069.560000px;}
.y30{bottom:1069.920000px;}
.y61{bottom:1072.530000px;}
.y1ae{bottom:1078.560000px;}
.y86{bottom:1082.250000px;}
.y136{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.yc6{bottom:1091.610000px;}
.y60{bottom:1099.890000px;}
.y2e{bottom:1105.110000px;}
.y85{bottom:1109.610000px;}
.y2d{bottom:1122.750000px;}
.y5f{bottom:1127.160000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h11{height:26.580000px;}
.h10{height:26.640000px;}
.h16{height:26.670000px;}
.h2{height:31.901133px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h12{height:44.100000px;}
.he{height:44.190000px;}
.h13{height:48.600000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.hd{height:52.781133px;}
.h1a{height:53.910000px;}
.h20{height:53.940000px;}
.h21{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:57.838008px;}
.h14{height:59.797090px;}
.h15{height:61.740000px;}
.h22{height:61.793886px;}
.hc{height:62.585859px;}
.ha{height:63.210938px;}
.h19{height:66.270000px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h1e{height:81.270000px;}
.h1f{height:81.300000px;}
.h1d{height:108.540000px;}
.h1c{height:108.570000px;}
.h1b{height:108.630000px;}
.h17{height:893.160000px;}
.h18{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:39.090000px;}
.w38{width:50.490000px;}
.w37{width:50.580000px;}
.w31{width:52.920000px;}
.w33{width:56.250000px;}
.w17{width:59.580000px;}
.w21{width:60.300000px;}
.w36{width:61.470000px;}
.w32{width:61.560000px;}
.w30{width:61.590000px;}
.w11{width:65.370000px;}
.w3{width:65.430000px;}
.w15{width:72.360000px;}
.w1d{width:72.390000px;}
.w14{width:72.450000px;}
.w16{width:72.480000px;}
.w35{width:78.210000px;}
.w3b{width:78.240000px;}
.w5{width:78.480000px;}
.w6{width:79.290000px;}
.w25{width:83.070000px;}
.w26{width:83.430000px;}
.w12{width:84.330000px;}
.w13{width:84.780000px;}
.w7{width:87.750000px;}
.w1c{width:93.900000px;}
.w34{width:95.220000px;}
.w23{width:105.120000px;}
.w28{width:108.270000px;}
.w24{width:108.810000px;}
.wa{width:108.900000px;}
.w2e{width:112.770000px;}
.w39{width:112.860000px;}
.w2f{width:112.890000px;}
.w2b{width:115.230000px;}
.w2c{width:118.530000px;}
.w27{width:125.940000px;}
.w2a{width:126.450000px;}
.w29{width:130.860000px;}
.w9{width:143.100000px;}
.w8{width:148.350000px;}
.w18{width:149.940000px;}
.wd{width:156.090000px;}
.w22{width:167.160000px;}
.we{width:169.380000px;}
.w10{width:171.180000px;}
.w2d{width:174.150000px;}
.w3a{width:174.180000px;}
.wf{width:190.650000px;}
.w1a{width:210.330000px;}
.w1b{width:283.530000px;}
.wb{width:313.320000px;}
.wc{width:375.510000px;}
.w19{width:515.280000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w1f{width:1262.250000px;}
.w20{width:1262.519981px;}
.w1e{width:1262.520000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x20{left:81.179987px;}
.x3a{left:99.360000px;}
.x23{left:107.999981px;}
.x43{left:111.239987px;}
.x10{left:113.400000px;}
.x5{left:134.910000px;}
.x17{left:150.300000px;}
.x2b{left:166.410000px;}
.x6{left:174.720000px;}
.x11{left:179.580000px;}
.x2{left:192.719987px;}
.x3f{left:227.730000px;}
.x2c{left:232.560000px;}
.x24{left:235.890000px;}
.x18{left:244.920000px;}
.x7{left:254.010000px;}
.x12{left:264.630000px;}
.x3b{left:279.030000px;}
.xd{left:291.720000px;}
.x33{left:294.870000px;}
.x19{left:318.000000px;}
.x8{left:334.110000px;}
.x40{left:341.310000px;}
.x2d{left:348.510000px;}
.x13{left:350.130000px;}
.x21{left:377.399981px;}
.x3c{left:392.610000px;}
.x1a{left:403.500000px;}
.x34{left:410.790000px;}
.x9{left:422.580000px;}
.xc{left:448.950000px;}
.xe{left:461.820000px;}
.x2e{left:467.760000px;}
.x1b{left:476.670000px;}
.x41{left:488.550000px;}
.x14{left:496.380000px;}
.x25{left:509.700000px;}
.x1c{left:549.780000px;}
.x35{left:563.700000px;}
.x3d{left:567.510000px;}
.x15{left:569.580000px;}
.xa{left:571.740000px;}
.x26{left:619.230000px;}
.x1d{left:622.950000px;}
.x16{left:629.970000px;}
.x2f{left:642.720000px;}
.xf{left:653.280000px;}
.x3e{left:681.090000px;}
.x1e{left:683.340000px;}
.x1f{left:699.809987px;}
.x27{left:703.020000px;}
.x36{left:704.910000px;}
.xb{left:715.560000px;}
.x42{left:743.370000px;}
.x30{left:756.210000px;}
.x28{left:787.260000px;}
.x3{left:808.619987px;}
.x37{left:818.520000px;}
.x31{left:869.820000px;}
.x29{left:913.920000px;}
.x38{left:932.100000px;}
.x32{left:983.400000px;}
.x2a{left:1023.000000px;}
.x39{left:1045.680000px;}
.x22{left:1137.929981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.395200pt;}
.ls14{letter-spacing:-0.253867pt;}
.ls12{letter-spacing:-0.165867pt;}
.lsa{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.075200pt;}
.lsb{letter-spacing:-0.072000pt;}
.ls15{letter-spacing:-0.059733pt;}
.ls17{letter-spacing:-0.033600pt;}
.ls16{letter-spacing:-0.011840pt;}
.lsc{letter-spacing:-0.007467pt;}
.ls7{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls6{letter-spacing:0.053760pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls11{letter-spacing:0.105067pt;}
.ls8{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.155200pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:3.603200pt;}
.ls1b{letter-spacing:42.423680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws2{word-spacing:-12.811200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.861867pt;}
.wsc{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.744960pt;}
.ws10{word-spacing:-11.723200pt;}
.wse{word-spacing:-11.697067pt;}
.ws8{word-spacing:-11.590933pt;}
.wsa{word-spacing:-11.502933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._10{margin-left:-3.153067pt;}
._a{margin-left:-2.233279pt;}
._8{margin-left:-1.079787pt;}
._2{width:1.178059pt;}
._b{width:2.136576pt;}
._6{width:3.079424pt;}
._5{width:4.184086pt;}
._4{width:5.914677pt;}
._7{width:7.015926pt;}
._9{width:8.638709pt;}
._c{width:9.809078pt;}
._d{width:10.813558pt;}
._11{width:12.718720pt;}
._3{width:13.942944pt;}
._12{width:15.070080pt;}
._13{width:16.128426pt;}
._e{width:17.047467pt;}
._1e{width:18.507633pt;}
._20{width:19.398720pt;}
._1f{width:20.360640pt;}
._f{width:21.804299pt;}
._1{width:23.053941pt;}
._0{width:24.406187pt;}
._16{width:29.445440pt;}
._15{width:31.369280pt;}
._1c{width:33.453440pt;}
._1a{width:41.063894pt;}
._18{width:42.431360pt;}
._19{width:44.568960pt;}
._17{width:92.184000pt;}
._1b{width:105.918080pt;}
._21{width:135.684160pt;}
._1d{width:202.804800pt;}
._14{width:290.018880pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:6.960000pt;}
.yca{bottom:6.986667pt;}
.y5b{bottom:7.040000pt;}
.y108{bottom:7.066667pt;}
.yec{bottom:11.680000pt;}
.y9c{bottom:18.640000pt;}
.y82{bottom:22.560000pt;}
.y57{bottom:22.640000pt;}
.y8d{bottom:26.560000pt;}
.ye8{bottom:26.586667pt;}
.yeb{bottom:31.280000pt;}
.y123{bottom:31.306667pt;}
.y9b{bottom:38.240000pt;}
.ye7{bottom:42.266667pt;}
.y101{bottom:55.600000pt;}
.y115{bottom:55.626667pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.ye4{bottom:66.026667pt;}
.yfc{bottom:79.840000pt;}
.yf7{bottom:79.866667pt;}
.yee{bottom:79.920000pt;}
.y1{bottom:90.346667pt;}
.y104{bottom:96.506667pt;}
.ya6{bottom:99.306667pt;}
.y5e{bottom:100.666667pt;}
.y191{bottom:106.586667pt;}
.y15d{bottom:108.106667pt;}
.y1ad{bottom:116.426667pt;}
.y29{bottom:117.306667pt;}
.y100{bottom:120.746667pt;}
.y190{bottom:122.186667pt;}
.ya5{bottom:123.626667pt;}
.y15c{bottom:123.786667pt;}
.y5d{bottom:124.986667pt;}
.yc5{bottom:126.426667pt;}
.y84{bottom:130.346667pt;}
.ye2{bottom:130.826667pt;}
.y28{bottom:132.986667pt;}
.y18f{bottom:137.786667pt;}
.y11d{bottom:139.066667pt;}
.y15b{bottom:139.386667pt;}
.y1ac{bottom:140.106667pt;}
.y103{bottom:145.066667pt;}
.ye1{bottom:146.426667pt;}
.ya4{bottom:147.866667pt;}
.y27{bottom:148.586667pt;}
.y5c{bottom:149.306667pt;}
.yc4{bottom:152.746667pt;}
.y18e{bottom:153.466667pt;}
.y15a{bottom:154.986667pt;}
.y11e{bottom:163.386667pt;}
.y1ab{bottom:163.706667pt;}
.y26{bottom:164.266667pt;}
.y18d{bottom:169.066667pt;}
.y102{bottom:169.386667pt;}
.ye0{bottom:170.026667pt;}
.y83{bottom:170.266667pt;}
.y159{bottom:170.666667pt;}
.ya3{bottom:172.186667pt;}
.y5a{bottom:173.546667pt;}
.yc3{bottom:179.066667pt;}
.y1aa{bottom:179.306667pt;}
.y25{bottom:179.866667pt;}
.y18c{bottom:184.746667pt;}
.y158{bottom:186.266667pt;}
.y11c{bottom:187.706667pt;}
.yfb{bottom:193.706667pt;}
.y81{bottom:194.586667pt;}
.yc2{bottom:194.746667pt;}
.y24{bottom:195.466667pt;}
.ya2{bottom:196.506667pt;}
.y59{bottom:197.866667pt;}
.y18b{bottom:200.346667pt;}
.ydf{bottom:201.626667pt;}
.y157{bottom:201.946667pt;}
.y1a9{bottom:202.986667pt;}
.y23{bottom:211.146667pt;}
.y11b{bottom:211.946667pt;}
.y18a{bottom:215.946667pt;}
.yde{bottom:217.386667pt;}
.y156{bottom:217.546667pt;}
.yff{bottom:217.946667pt;}
.ya1{bottom:220.746667pt;}
.yc1{bottom:220.986667pt;}
.y56{bottom:222.186667pt;}
.y1a8{bottom:226.906667pt;}
.y135{bottom:228.906667pt;}
.y189{bottom:231.626667pt;}
.ydd{bottom:232.986667pt;}
.y155{bottom:233.146667pt;}
.y22{bottom:235.066667pt;}
.y11a{bottom:236.266667pt;}
.yc0{bottom:236.666667pt;}
.yfe{bottom:242.266667pt;}
.ya0{bottom:245.066667pt;}
.y188{bottom:247.226667pt;}
.ydc{bottom:248.586667pt;}
.y154{bottom:248.826667pt;}
.ybf{bottom:252.266667pt;}
.y134{bottom:253.226667pt;}
.y80{bottom:253.466667pt;}
.y118{bottom:260.586667pt;}
.y187{bottom:262.826667pt;}
.y153{bottom:264.426667pt;}
.yfd{bottom:266.586667pt;}
.ybe{bottom:267.946667pt;}
.y9f{bottom:269.386667pt;}
.y1a7{bottom:269.786667pt;}
.y133{bottom:277.546667pt;}
.y21{bottom:278.266667pt;}
.y186{bottom:278.506667pt;}
.y152{bottom:280.106667pt;}
.ydb{bottom:280.266667pt;}
.y55{bottom:281.066667pt;}
.ybd{bottom:283.546667pt;}
.y119{bottom:284.906667pt;}
.y7f{bottom:285.146667pt;}
.yf6{bottom:290.906667pt;}
.y9e{bottom:293.706667pt;}
.y185{bottom:294.106667pt;}
.y151{bottom:295.706667pt;}
.yda{bottom:295.866667pt;}
.y54{bottom:296.746667pt;}
.ybc{bottom:299.226667pt;}
.y132{bottom:301.866667pt;}
.y7e{bottom:308.746667pt;}
.y114{bottom:309.146667pt;}
.y184{bottom:309.786667pt;}
.y20{bottom:311.146667pt;}
.y150{bottom:311.306667pt;}
.yfa{bottom:315.146667pt;}
.y9d{bottom:317.946667pt;}
.yd9{bottom:324.506667pt;}
.y183{bottom:325.386667pt;}
.y131{bottom:326.106667pt;}
.y1a6{bottom:326.666667pt;}
.y1f{bottom:326.746667pt;}
.y14f{bottom:326.986667pt;}
.y53{bottom:328.346667pt;}
.ybb{bottom:328.506667pt;}
.y117{bottom:333.466667pt;}
.yf9{bottom:339.466667pt;}
.y7d{bottom:340.666667pt;}
.y182{bottom:340.986667pt;}
.y9a{bottom:342.266667pt;}
.y1e{bottom:342.426667pt;}
.y14e{bottom:342.586667pt;}
.y52{bottom:343.946667pt;}
.y130{bottom:350.453333pt;}
.y1a5{bottom:350.506667pt;}
.yba{bottom:352.826667pt;}
.y181{bottom:356.666667pt;}
.y116{bottom:357.813333pt;}
.y1d{bottom:358.026667pt;}
.y51{bottom:359.626667pt;}
.yf8{bottom:363.813333pt;}
.y14d{bottom:366.506667pt;}
.y180{bottom:372.266667pt;}
.y1c{bottom:373.706667pt;}
.y12f{bottom:374.773333pt;}
.y50{bottom:375.226667pt;}
.yb9{bottom:377.066667pt;}
.y111{bottom:382.053333pt;}
.y1a4{bottom:383.466667pt;}
.y7c{bottom:383.546667pt;}
.y17f{bottom:387.946667pt;}
.yf2{bottom:388.053333pt;}
.y1b{bottom:389.306667pt;}
.y4f{bottom:390.906667pt;}
.y12e{bottom:399.013333pt;}
.y7b{bottom:399.226667pt;}
.yb8{bottom:401.386667pt;}
.y17e{bottom:403.546667pt;}
.y1a{bottom:404.906667pt;}
.y113{bottom:406.373333pt;}
.y1a3{bottom:407.386667pt;}
.y14c{bottom:409.386667pt;}
.yf5{bottom:412.373333pt;}
.y4e{bottom:414.506667pt;}
.y7a{bottom:414.826667pt;}
.y99{bottom:416.826667pt;}
.y17d{bottom:419.173333pt;}
.y19{bottom:420.613333pt;}
.y12d{bottom:423.333333pt;}
.y14b{bottom:425.093333pt;}
.yb7{bottom:425.733333pt;}
.y112{bottom:430.693333pt;}
.y17c{bottom:434.853333pt;}
.y18{bottom:436.213333pt;}
.yf4{bottom:436.693333pt;}
.y79{bottom:438.453333pt;}
.y1a2{bottom:440.293333pt;}
.y14a{bottom:440.693333pt;}
.y4d{bottom:446.133333pt;}
.y12c{bottom:447.653333pt;}
.y1c6{bottom:448.293333pt;}
.y98{bottom:448.453333pt;}
.yb6{bottom:450.053333pt;}
.y17b{bottom:450.453333pt;}
.y17{bottom:451.893333pt;}
.y110{bottom:455.013333pt;}
.y1a1{bottom:455.973333pt;}
.yf3{bottom:461.013333pt;}
.y4c{bottom:461.813333pt;}
.y1c5{bottom:463.893333pt;}
.y97{bottom:464.133333pt;}
.y17a{bottom:466.133333pt;}
.y16{bottom:467.493333pt;}
.y149{bottom:470.053333pt;}
.y78{bottom:470.133333pt;}
.y1a0{bottom:471.573333pt;}
.y12b{bottom:471.973333pt;}
.yb5{bottom:474.293333pt;}
.y10e{bottom:479.253333pt;}
.y96{bottom:479.733333pt;}
.y179{bottom:481.733333pt;}
.y15{bottom:483.093333pt;}
.yed{bottom:485.253333pt;}
.y4b{bottom:485.413333pt;}
.y77{bottom:485.733333pt;}
.y19f{bottom:487.173333pt;}
.y1c4{bottom:487.493333pt;}
.y148{bottom:494.293333pt;}
.y12a{bottom:496.213333pt;}
.y178{bottom:497.333333pt;}
.yb4{bottom:498.613333pt;}
.y14{bottom:498.773333pt;}
.y76{bottom:501.413333pt;}
.y1c3{bottom:503.173333pt;}
.y95{bottom:503.413333pt;}
.y10f{bottom:503.573333pt;}
.yf1{bottom:509.573333pt;}
.y19e{bottom:511.093333pt;}
.y177{bottom:513.013333pt;}
.y13{bottom:514.373333pt;}
.y4a{bottom:517.333333pt;}
.y147{bottom:518.613333pt;}
.y129{bottom:520.533333pt;}
.yb3{bottom:522.933333pt;}
.y75{bottom:525.013333pt;}
.y1c2{bottom:526.773333pt;}
.y10c{bottom:527.893333pt;}
.y176{bottom:528.613333pt;}
.y94{bottom:532.693333pt;}
.yf0{bottom:533.893333pt;}
.y12{bottom:538.293333pt;}
.y1c1{bottom:542.453333pt;}
.y146{bottom:542.933333pt;}
.y175{bottom:544.293333pt;}
.y128{bottom:544.853333pt;}
.yb2{bottom:547.253333pt;}
.y10d{bottom:552.213333pt;}
.y74{bottom:556.613333pt;}
.y93{bottom:557.013333pt;}
.yd8{bottom:557.253333pt;}
.yef{bottom:558.213333pt;}
.y174{bottom:559.893333pt;}
.y49{bottom:560.293333pt;}
.y1c0{bottom:566.053333pt;}
.y145{bottom:567.253333pt;}
.y127{bottom:569.173333pt;}
.yb1{bottom:571.493333pt;}
.y73{bottom:572.293333pt;}
.y173{bottom:575.493333pt;}
.y48{bottom:575.893333pt;}
.y109{bottom:576.453333pt;}
.y11{bottom:581.173333pt;}
.y92{bottom:581.253333pt;}
.yd7{bottom:581.493333pt;}
.y1bf{bottom:581.653333pt;}
.yea{bottom:582.453333pt;}
.y19d{bottom:587.253333pt;}
.y72{bottom:587.893333pt;}
.y172{bottom:591.173333pt;}
.y47{bottom:591.493333pt;}
.y126{bottom:593.413333pt;}
.yb0{bottom:595.813333pt;}
.y10b{bottom:600.773333pt;}
.y19c{bottom:602.853333pt;}
.y71{bottom:603.573333pt;}
.y1be{bottom:605.333333pt;}
.yd6{bottom:605.813333pt;}
.ye9{bottom:606.773333pt;}
.y46{bottom:607.173333pt;}
.y10{bottom:612.853333pt;}
.y144{bottom:615.813333pt;}
.y125{bottom:617.733333pt;}
.y19b{bottom:618.453333pt;}
.y70{bottom:619.173333pt;}
.yaf{bottom:620.133333pt;}
.y1bd{bottom:620.933333pt;}
.y91{bottom:621.253333pt;}
.y171{bottom:622.453333pt;}
.y45{bottom:622.773333pt;}
.y10a{bottom:625.093333pt;}
.yd5{bottom:630.133333pt;}
.ye6{bottom:631.093333pt;}
.y19a{bottom:634.133333pt;}
.y6f{bottom:634.773333pt;}
.y170{bottom:638.053333pt;}
.y44{bottom:638.453333pt;}
.y143{bottom:640.133333pt;}
.y122{bottom:642.053333pt;}
.yae{bottom:644.373333pt;}
.y1bc{bottom:644.613333pt;}
.yf{bottom:644.693333pt;}
.y90{bottom:645.493333pt;}
.y107{bottom:649.333333pt;}
.y199{bottom:649.733333pt;}
.y6e{bottom:650.453333pt;}
.y16f{bottom:653.653333pt;}
.y43{bottom:654.053333pt;}
.yd4{bottom:654.373333pt;}
.y142{bottom:664.373333pt;}
.y198{bottom:665.413333pt;}
.y6d{bottom:666.053333pt;}
.y124{bottom:666.320000pt;}
.y1bb{bottom:668.213333pt;}
.yad{bottom:668.693333pt;}
.y16e{bottom:669.333333pt;}
.y42{bottom:669.653333pt;}
.y106{bottom:673.680000pt;}
.yd3{bottom:678.693333pt;}
.ye{bottom:680.053333pt;}
.y197{bottom:681.013333pt;}
.y6c{bottom:681.733333pt;}
.y1ba{bottom:683.813333pt;}
.y16d{bottom:684.933333pt;}
.y41{bottom:685.333333pt;}
.y8f{bottom:685.413333pt;}
.y141{bottom:688.693333pt;}
.yac{bottom:693.013333pt;}
.yd{bottom:696.053333pt;}
.y196{bottom:696.613333pt;}
.y105{bottom:698.000000pt;}
.y16c{bottom:700.613333pt;}
.y40{bottom:700.933333pt;}
.yd2{bottom:703.013333pt;}
.y6b{bottom:705.333333pt;}
.y1b9{bottom:707.493333pt;}
.ye5{bottom:709.680000pt;}
.yc{bottom:712.053333pt;}
.y195{bottom:712.293333pt;}
.y140{bottom:713.013333pt;}
.y16b{bottom:716.213333pt;}
.y3f{bottom:716.613333pt;}
.yab{bottom:717.333333pt;}
.y1b8{bottom:723.093333pt;}
.y8e{bottom:725.333333pt;}
.yd1{bottom:727.333333pt;}
.y194{bottom:727.893333pt;}
.yb{bottom:728.053333pt;}
.y16a{bottom:731.813333pt;}
.y3e{bottom:732.213333pt;}
.ye3{bottom:733.280000pt;}
.y6a{bottom:734.613333pt;}
.y13f{bottom:737.333333pt;}
.ya{bottom:740.693333pt;}
.yaa{bottom:741.573333pt;}
.y193{bottom:743.573333pt;}
.y1b7{bottom:746.693333pt;}
.y169{bottom:747.493333pt;}
.y3d{bottom:747.813333pt;}
.yd0{bottom:751.573333pt;}
.y69{bottom:758.933333pt;}
.y9{bottom:760.053333pt;}
.y13e{bottom:761.573333pt;}
.y168{bottom:763.093333pt;}
.y3c{bottom:763.493333pt;}
.y8c{bottom:765.333333pt;}
.y192{bottom:767.413333pt;}
.y1b6{bottom:770.373333pt;}
.ycf{bottom:775.893333pt;}
.y8{bottom:776.053333pt;}
.y167{bottom:778.693333pt;}
.y3b{bottom:779.093333pt;}
.y68{bottom:783.253333pt;}
.ya9{bottom:784.853333pt;}
.y13d{bottom:785.893333pt;}
.y1b5{bottom:785.973333pt;}
.y166{bottom:794.373333pt;}
.y3a{bottom:794.693333pt;}
.yce{bottom:800.213333pt;}
.y7{bottom:804.773333pt;}
.y67{bottom:807.493333pt;}
.y8b{bottom:809.253333pt;}
.y1b4{bottom:809.653333pt;}
.y165{bottom:809.973333pt;}
.y13c{bottom:810.213333pt;}
.y39{bottom:810.373333pt;}
.ya8{bottom:816.533333pt;}
.y6{bottom:821.973333pt;}
.ycd{bottom:824.533333pt;}
.y1b3{bottom:825.253333pt;}
.y164{bottom:825.653333pt;}
.y38{bottom:825.973333pt;}
.y66{bottom:831.813333pt;}
.y13b{bottom:834.533333pt;}
.y1b2{bottom:840.853333pt;}
.y163{bottom:841.253333pt;}
.y37{bottom:841.653333pt;}
.ya7{bottom:842.773333pt;}
.ycc{bottom:848.773333pt;}
.y8a{bottom:849.173333pt;}
.y5{bottom:855.973333pt;}
.y65{bottom:856.133333pt;}
.y162{bottom:856.853333pt;}
.y36{bottom:857.253333pt;}
.y13a{bottom:858.773333pt;}
.y1b1{bottom:864.533333pt;}
.y161{bottom:872.533333pt;}
.y35{bottom:872.853333pt;}
.ycb{bottom:873.093333pt;}
.y89{bottom:873.493333pt;}
.y4{bottom:877.893333pt;}
.y64{bottom:880.453333pt;}
.y138{bottom:883.093333pt;}
.y160{bottom:888.133333pt;}
.y34{bottom:888.533333pt;}
.y121{bottom:895.813333pt;}
.yc9{bottom:897.413333pt;}
.y88{bottom:897.760000pt;}
.y3{bottom:899.840000pt;}
.y15f{bottom:903.840000pt;}
.y33{bottom:904.160000pt;}
.y63{bottom:904.720000pt;}
.y139{bottom:907.440000pt;}
.y120{bottom:911.440000pt;}
.y15e{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.yc8{bottom:921.680000pt;}
.y87{bottom:922.080000pt;}
.y1b0{bottom:927.440000pt;}
.y62{bottom:929.040000pt;}
.y11f{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.y1af{bottom:943.040000pt;}
.yc7{bottom:946.000000pt;}
.y137{bottom:950.720000pt;}
.y30{bottom:951.040000pt;}
.y61{bottom:953.360000pt;}
.y1ae{bottom:958.720000pt;}
.y86{bottom:962.000000pt;}
.y136{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.yc6{bottom:970.320000pt;}
.y60{bottom:977.680000pt;}
.y2e{bottom:982.320000pt;}
.y85{bottom:986.320000pt;}
.y2d{bottom:998.000000pt;}
.y5f{bottom:1001.920000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h11{height:23.626667pt;}
.h10{height:23.680000pt;}
.h16{height:23.706667pt;}
.h2{height:28.356562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h12{height:39.200000pt;}
.he{height:39.280000pt;}
.h13{height:43.200000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.hd{height:46.916562pt;}
.h1a{height:47.920000pt;}
.h20{height:47.946667pt;}
.h21{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:51.411562pt;}
.h14{height:53.152969pt;}
.h15{height:54.880000pt;}
.h22{height:54.927899pt;}
.hc{height:55.631875pt;}
.ha{height:56.187500pt;}
.h19{height:58.906667pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1e{height:72.240000pt;}
.h1f{height:72.266667pt;}
.h1d{height:96.480000pt;}
.h1c{height:96.506667pt;}
.h1b{height:96.560000pt;}
.h17{height:793.920000pt;}
.h18{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:34.746667pt;}
.w38{width:44.880000pt;}
.w37{width:44.960000pt;}
.w31{width:47.040000pt;}
.w33{width:50.000000pt;}
.w17{width:52.960000pt;}
.w21{width:53.600000pt;}
.w36{width:54.640000pt;}
.w32{width:54.720000pt;}
.w30{width:54.746667pt;}
.w11{width:58.106667pt;}
.w3{width:58.160000pt;}
.w15{width:64.320000pt;}
.w1d{width:64.346667pt;}
.w14{width:64.400000pt;}
.w16{width:64.426667pt;}
.w35{width:69.520000pt;}
.w3b{width:69.546667pt;}
.w5{width:69.760000pt;}
.w6{width:70.480000pt;}
.w25{width:73.840000pt;}
.w26{width:74.160000pt;}
.w12{width:74.960000pt;}
.w13{width:75.360000pt;}
.w7{width:78.000000pt;}
.w1c{width:83.466667pt;}
.w34{width:84.640000pt;}
.w23{width:93.440000pt;}
.w28{width:96.240000pt;}
.w24{width:96.720000pt;}
.wa{width:96.800000pt;}
.w2e{width:100.240000pt;}
.w39{width:100.320000pt;}
.w2f{width:100.346667pt;}
.w2b{width:102.426667pt;}
.w2c{width:105.360000pt;}
.w27{width:111.946667pt;}
.w2a{width:112.400000pt;}
.w29{width:116.320000pt;}
.w9{width:127.200000pt;}
.w8{width:131.866667pt;}
.w18{width:133.280000pt;}
.wd{width:138.746667pt;}
.w22{width:148.586667pt;}
.we{width:150.560000pt;}
.w10{width:152.160000pt;}
.w2d{width:154.800000pt;}
.w3a{width:154.826667pt;}
.wf{width:169.466667pt;}
.w1a{width:186.960000pt;}
.w1b{width:252.026667pt;}
.wb{width:278.506667pt;}
.wc{width:333.786667pt;}
.w19{width:458.026667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w1f{width:1122.000000pt;}
.w20{width:1122.239983pt;}
.w1e{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x20{left:72.159988pt;}
.x3a{left:88.320000pt;}
.x23{left:95.999983pt;}
.x43{left:98.879988pt;}
.x10{left:100.800000pt;}
.x5{left:119.920000pt;}
.x17{left:133.600000pt;}
.x2b{left:147.920000pt;}
.x6{left:155.306667pt;}
.x11{left:159.626667pt;}
.x2{left:171.306655pt;}
.x3f{left:202.426667pt;}
.x2c{left:206.720000pt;}
.x24{left:209.680000pt;}
.x18{left:217.706667pt;}
.x7{left:225.786667pt;}
.x12{left:235.226667pt;}
.x3b{left:248.026667pt;}
.xd{left:259.306667pt;}
.x33{left:262.106667pt;}
.x19{left:282.666667pt;}
.x8{left:296.986667pt;}
.x40{left:303.386667pt;}
.x2d{left:309.786667pt;}
.x13{left:311.226667pt;}
.x21{left:335.466650pt;}
.x3c{left:348.986667pt;}
.x1a{left:358.666667pt;}
.x34{left:365.146667pt;}
.x9{left:375.626667pt;}
.xc{left:399.066667pt;}
.xe{left:410.506667pt;}
.x2e{left:415.786667pt;}
.x1b{left:423.706667pt;}
.x41{left:434.266667pt;}
.x14{left:441.226667pt;}
.x25{left:453.066667pt;}
.x1c{left:488.693333pt;}
.x35{left:501.066667pt;}
.x3d{left:504.453333pt;}
.x15{left:506.293333pt;}
.xa{left:508.213333pt;}
.x26{left:550.426667pt;}
.x1d{left:553.733333pt;}
.x16{left:559.973333pt;}
.x2f{left:571.306667pt;}
.xf{left:580.693333pt;}
.x3e{left:605.413333pt;}
.x1e{left:607.413333pt;}
.x1f{left:622.053322pt;}
.x27{left:624.906667pt;}
.x36{left:626.586667pt;}
.xb{left:636.053333pt;}
.x42{left:660.773333pt;}
.x30{left:672.186667pt;}
.x28{left:699.786667pt;}
.x3{left:718.773322pt;}
.x37{left:727.573333pt;}
.x31{left:773.173333pt;}
.x29{left:812.373333pt;}
.x38{left:828.533333pt;}
.x32{left:874.133333pt;}
.x2a{left:909.333333pt;}
.x39{left:929.493333pt;}
.x22{left:1011.493317pt;}
}




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