
    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_7e7f1486354ca8c55c960eae.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_58c2a4a03a0c9d82a8374de4.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a0ebbefc5c054ebb3b3dc723.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_e992c104281759ad5847185c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6798a444d5a6a0553f28820c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3ae9b5c9d2ebf463a5182195.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f0e2b162fa859aaf0a19771b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.056641;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_6b3fbd49b03c48e6b01adac9.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b551138a009642c1acfabfda.woff')format("woff");}.ffa{font-family:ffa;line-height:1.401855;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_5b749c75cf226bc65cc800ca.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v5{vertical-align:40.320000px;}
.v4{vertical-align:45.360000px;}
.ls1e{letter-spacing:-1.626000px;}
.ls1d{letter-spacing:-1.500000px;}
.ls21{letter-spacing:-1.452000px;}
.ls20{letter-spacing:-1.368000px;}
.ls22{letter-spacing:-0.648000px;}
.ls23{letter-spacing:-0.373200px;}
.ls1c{letter-spacing:-0.285600px;}
.ls17{letter-spacing:-0.243600px;}
.ls12{letter-spacing:-0.186600px;}
.ls25{letter-spacing:-0.159600px;}
.ls18{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls29{letter-spacing:-0.038880px;}
.ls16{letter-spacing:-0.037800px;}
.ls19{letter-spacing:-0.014760px;}
.lsb{letter-spacing:-0.008400px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.005400px;}
.ls3{letter-spacing:0.014760px;}
.ls10{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.060480px;}
.lsf{letter-spacing:0.060600px;}
.ls2{letter-spacing:0.065520px;}
.ls1b{letter-spacing:0.074400px;}
.ls1{letter-spacing:0.090000px;}
.ls1f{letter-spacing:0.093600px;}
.lse{letter-spacing:0.115800px;}
.ls1a{letter-spacing:0.116400px;}
.ls28{letter-spacing:0.121800px;}
.ls7{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.173400px;}
.ls24{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:7.293600px;}
.ls15{letter-spacing:13.234320px;}
.ls27{letter-spacing:47.726640px;}
.ls26{letter-spacing:80.846640px;}
.ls14{letter-spacing:190.170360px;}
.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;}
.wsb{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.399800px;}
.ws1b{word-spacing:-13.348200px;}
.ws11{word-spacing:-13.342800px;}
.ws6{word-spacing:-13.342200px;}
.ws12{word-spacing:-13.300800px;}
.wsc{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.211640px;}
.ws1c{word-spacing:-13.187520px;}
.wsf{word-spacing:-13.072800px;}
.ws1a{word-spacing:-13.066800px;}
.ws9{word-spacing:-13.039800px;}
.wse{word-spacing:-12.982800px;}
.ws13{word-spacing:-12.940800px;}
.ws19{word-spacing:-12.853200px;}
.ws18{word-spacing:-12.578400px;}
.ws16{word-spacing:-11.858400px;}
.ws17{word-spacing:-11.774400px;}
.ws14{word-spacing:-11.726400px;}
.ws15{word-spacing:-11.600400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:-8.614200px;}
.ws2{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.wsd{word-spacing:3.370320px;}
.ws4{word-spacing:4.304880px;}
._9{margin-left:-4.078199px;}
._8{margin-left:-2.388000px;}
._3{margin-left:-1.087800px;}
._2{width:1.081560px;}
._1{width:2.181635px;}
._0{width:3.187188px;}
._a{width:4.281390px;}
._b{width:5.295599px;}
._5{width:6.493200px;}
._6{width:7.633797px;}
._7{width:9.369486px;}
._d{width:10.710594px;}
._e{width:11.936777px;}
._4{width:15.330600px;}
._f{width:16.521840px;}
._17{width:17.566800px;}
._1a{width:18.577080px;}
._c{width:22.864320px;}
._16{width:24.709320px;}
._18{width:26.092080px;}
._19{width:27.239040px;}
._15{width:39.568680px;}
._13{width:43.226280px;}
._12{width:45.390600px;}
._1b{width:56.392560px;}
._1c{width:57.594960px;}
._1d{width:58.837200px;}
._20{width:68.596920px;}
._1e{width:85.490640px;}
._1f{width:86.848200px;}
._14{width:101.486760px;}
._11{width:102.854160px;}
._10{width:157.770360px;}
._21{width:199.177560px;}
._22{width:203.457239px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y76{bottom:7.830000px;}
.y78{bottom:7.860000px;}
.y74{bottom:7.920000px;}
.yad{bottom:7.950000px;}
.yaa{bottom:25.380000px;}
.ya6{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y5b{bottom:111.720000px;}
.y11b{bottom:112.980000px;}
.yf5{bottom:113.700000px;}
.yb9{bottom:114.240000px;}
.y94{bottom:114.330000px;}
.y85{bottom:116.220000px;}
.yc8{bottom:118.110000px;}
.y29{bottom:126.390000px;}
.yc0{bottom:129.000000px;}
.yb8{bottom:129.180000px;}
.y5a{bottom:129.270000px;}
.y142{bottom:129.990000px;}
.y11a{bottom:130.530000px;}
.yf4{bottom:131.340000px;}
.yd8{bottom:139.800000px;}
.y84{bottom:143.130000px;}
.y28{bottom:143.940000px;}
.y93{bottom:146.550000px;}
.y59{bottom:146.910000px;}
.y119{bottom:148.170000px;}
.yf3{bottom:148.890000px;}
.yc7{bottom:150.330000px;}
.yb7{bottom:156.540000px;}
.ye0{bottom:161.040000px;}
.ybf{bottom:161.220000px;}
.y58{bottom:164.460000px;}
.yf2{bottom:166.440000px;}
.y83{bottom:170.130000px;}
.y141{bottom:174.090000px;}
.y118{bottom:174.990000px;}
.yd7{bottom:175.350000px;}
.y27{bottom:179.580000px;}
.y57{bottom:182.100000px;}
.yb6{bottom:183.900000px;}
.yf1{bottom:184.080000px;}
.ydf{bottom:196.590000px;}
.y82{bottom:197.040000px;}
.y26{bottom:197.130000px;}
.y140{bottom:200.730000px;}
.yf0{bottom:201.630000px;}
.ycf{bottom:203.250000px;}
.y56{bottom:208.650000px;}
.yd6{bottom:210.180000px;}
.yb5{bottom:211.260000px;}
.y25{bottom:214.680000px;}
.y13f{bottom:218.280000px;}
.yef{bottom:219.270000px;}
.yd5{bottom:221.610000px;}
.y117{bottom:223.320000px;}
.y81{bottom:224.040000px;}
.yde{bottom:231.510000px;}
.y24{bottom:232.320000px;}
.yee{bottom:236.820000px;}
.yb4{bottom:238.530000px;}
.yce{bottom:238.800000px;}
.y116{bottom:240.870000px;}
.ydd{bottom:242.940000px;}
.y55{bottom:244.200000px;}
.y13e{bottom:244.830000px;}
.y23{bottom:249.870000px;}
.y80{bottom:251.040000px;}
.yed{bottom:254.370000px;}
.y115{bottom:258.510000px;}
.y54{bottom:261.840000px;}
.y13d{bottom:262.470000px;}
.y22{bottom:267.510000px;}
.ycd{bottom:271.020000px;}
.yec{bottom:272.010000px;}
.y7f{bottom:277.950000px;}
.y13c{bottom:280.020000px;}
.yb3{bottom:283.440000px;}
.y21{bottom:285.060000px;}
.y53{bottom:288.390000px;}
.yeb{bottom:289.560000px;}
.y114{bottom:294.060000px;}
.y20{bottom:302.610000px;}
.y7e{bottom:304.950000px;}
.y13b{bottom:306.660000px;}
.yea{bottom:307.110000px;}
.yb2{bottom:310.800000px;}
.y113{bottom:311.610000px;}
.y1f{bottom:320.250000px;}
.y52{bottom:323.940000px;}
.y13a{bottom:324.210000px;}
.ye9{bottom:324.750000px;}
.y112{bottom:329.250000px;}
.y7d{bottom:331.860000px;}
.y1e{bottom:337.800000px;}
.yb1{bottom:338.160000px;}
.y51{bottom:341.580000px;}
.ye8{bottom:342.300000px;}
.y111{bottom:346.800000px;}
.y139{bottom:350.760000px;}
.y1d{bottom:355.440000px;}
.y7c{bottom:358.860000px;}
.y50{bottom:359.130000px;}
.ye7{bottom:359.940000px;}
.yb0{bottom:365.520000px;}
.y138{bottom:368.400000px;}
.y1c{bottom:372.990000px;}
.y4f{bottom:376.770000px;}
.ye6{bottom:377.490000px;}
.y110{bottom:382.440000px;}
.y7b{bottom:385.770000px;}
.y137{bottom:385.950000px;}
.y1b{bottom:390.540000px;}
.y4e{bottom:394.320000px;}
.ye5{bottom:395.040000px;}
.y10f{bottom:399.990000px;}
.yc6{bottom:401.250000px;}
.y1a{bottom:408.180000px;}
.yaf{bottom:410.430000px;}
.y4d{bottom:411.870000px;}
.y136{bottom:412.590000px;}
.ye4{bottom:412.680000px;}
.y7a{bottom:412.770000px;}
.y10e{bottom:417.540000px;}
.y19{bottom:425.730000px;}
.y4c{bottom:429.510000px;}
.y135{bottom:430.140000px;}
.ye3{bottom:430.230000px;}
.y10d{bottom:435.180000px;}
.yc5{bottom:436.800000px;}
.yae{bottom:437.700000px;}
.y79{bottom:439.680000px;}
.y18{bottom:443.280000px;}
.y134{bottom:447.690000px;}
.ye2{bottom:447.870000px;}
.ybe{bottom:450.300000px;}
.y10c{bottom:452.730000px;}
.yc4{bottom:454.440000px;}
.y4b{bottom:456.060000px;}
.y17{bottom:460.920000px;}
.yac{bottom:465.060000px;}
.y77{bottom:466.680000px;}
.y10b{bottom:470.400000px;}
.y133{bottom:474.360000px;}
.ye1{bottom:474.810000px;}
.y16{bottom:478.500000px;}
.ybd{bottom:482.550000px;}
.yc3{bottom:486.690000px;}
.y10a{bottom:487.950000px;}
.y4a{bottom:491.730000px;}
.y132{bottom:491.910000px;}
.yab{bottom:492.450000px;}
.y75{bottom:493.710000px;}
.y15{bottom:496.140000px;}
.yd4{bottom:501.810000px;}
.y109{bottom:505.500000px;}
.y49{bottom:509.280000px;}
.y131{bottom:518.550000px;}
.ya9{bottom:519.810000px;}
.y73{bottom:520.620000px;}
.y14{bottom:523.050000px;}
.y108{bottom:523.140000px;}
.y48{bottom:526.830000px;}
.y130{bottom:536.100000px;}
.yd3{bottom:537.360000px;}
.y107{bottom:540.690000px;}
.y47{bottom:544.470000px;}
.ycc{bottom:551.220000px;}
.y12f{bottom:553.650000px;}
.ydc{bottom:557.880000px;}
.y106{bottom:558.330000px;}
.ya8{bottom:564.720000px;}
.y72{bottom:568.950000px;}
.ydb{bottom:569.310000px;}
.yd2{bottom:569.670000px;}
.y46{bottom:571.020000px;}
.y12e{bottom:571.290000px;}
.y13{bottom:571.650000px;}
.y105{bottom:575.880000px;}
.ycb{bottom:583.440000px;}
.ya7{bottom:591.990000px;}
.y104{bottom:593.430000px;}
.y12d{bottom:597.840000px;}
.y71{bottom:604.500000px;}
.y45{bottom:606.660000px;}
.y12{bottom:608.640000px;}
.y12c{bottom:615.480000px;}
.ya5{bottom:619.350000px;}
.y70{bottom:622.140000px;}
.y11{bottom:626.190000px;}
.y103{bottom:629.070000px;}
.y12b{bottom:633.030000px;}
.y44{bottom:633.210000px;}
.y6f{bottom:639.690000px;}
.y10{bottom:643.830000px;}
.y102{bottom:646.620000px;}
.y6e{bottom:657.330000px;}
.y12a{bottom:659.580000px;}
.yf{bottom:661.380000px;}
.y101{bottom:664.260000px;}
.y43{bottom:669.120000px;}
.y6d{bottom:674.880000px;}
.y129{bottom:677.220000px;}
.ye{bottom:679.020000px;}
.y100{bottom:681.810000px;}
.ya4{bottom:685.680000px;}
.y6c{bottom:692.430000px;}
.yd{bottom:696.570000px;}
.yff{bottom:699.360000px;}
.y128{bottom:703.770000px;}
.y154{bottom:707.550000px;}
.y6b{bottom:710.070000px;}
.yc{bottom:714.120000px;}
.yfe{bottom:717.000000px;}
.y42{bottom:717.360000px;}
.ya3{bottom:721.230000px;}
.y127{bottom:721.410000px;}
.y153{bottom:725.190000px;}
.y6a{bottom:727.620000px;}
.yfd{bottom:734.550000px;}
.y41{bottom:735.000000px;}
.ya2{bottom:736.170000px;}
.yb{bottom:741.120000px;}
.y152{bottom:742.740000px;}
.y69{bottom:745.260000px;}
.y126{bottom:747.960000px;}
.yfc{bottom:752.190000px;}
.y40{bottom:752.550000px;}
.y68{bottom:762.810000px;}
.ya1{bottom:763.530000px;}
.y125{bottom:765.510000px;}
.y151{bottom:769.290000px;}
.yfb{bottom:769.740000px;}
.y67{bottom:780.360000px;}
.y124{bottom:783.150000px;}
.ya{bottom:787.830000px;}
.y3f{bottom:788.190000px;}
.ya0{bottom:790.890000px;}
.y150{bottom:795.930000px;}
.yfa{bottom:805.290000px;}
.ybc{bottom:805.470000px;}
.y3e{bottom:805.740000px;}
.y92{bottom:807.360000px;}
.yc2{bottom:809.520000px;}
.y123{bottom:810.060000px;}
.y14f{bottom:813.480000px;}
.y66{bottom:816.000000px;}
.y9f{bottom:818.250000px;}
.yf9{bottom:822.930000px;}
.y3d{bottom:823.290000px;}
.y9{bottom:823.380000px;}
.y91{bottom:830.940000px;}
.y14e{bottom:831.030000px;}
.y65{bottom:833.550000px;}
.yf8{bottom:840.480000px;}
.y3c{bottom:840.930000px;}
.ybb{bottom:841.020000px;}
.yc1{bottom:841.740000px;}
.y9e{bottom:845.520000px;}
.yda{bottom:849.480000px;}
.y64{bottom:851.190000px;}
.yd1{bottom:854.520000px;}
.y14d{bottom:857.670000px;}
.y90{bottom:857.940000px;}
.y122{bottom:858.300000px;}
.y3b{bottom:858.480000px;}
.y8{bottom:859.200000px;}
.yca{bottom:863.520000px;}
.y63{bottom:868.740000px;}
.y9d{bottom:872.880000px;}
.yba{bottom:873.240000px;}
.y14c{bottom:875.220000px;}
.y3a{bottom:876.030000px;}
.yd9{bottom:884.310000px;}
.y8f{bottom:884.850000px;}
.y121{bottom:885.210000px;}
.yd0{bottom:886.740000px;}
.y39{bottom:893.670000px;}
.y62{bottom:895.650000px;}
.yc9{bottom:895.740000px;}
.y7{bottom:898.980000px;}
.y9c{bottom:900.240000px;}
.y14b{bottom:901.860000px;}
.y38{bottom:911.220000px;}
.y8e{bottom:911.850000px;}
.y6{bottom:916.980000px;}
.y14a{bottom:919.410000px;}
.y120{bottom:922.200000px;}
.y9b{bottom:927.600000px;}
.y37{bottom:928.860000px;}
.y8d{bottom:938.850000px;}
.y11f{bottom:939.840000px;}
.y61{bottom:943.800000px;}
.y149{bottom:945.960000px;}
.y36{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y60{bottom:953.880000px;}
.y9a{bottom:954.870000px;}
.y11e{bottom:957.390000px;}
.y148{bottom:963.600000px;}
.y35{bottom:963.960000px;}
.y8c{bottom:965.760000px;}
.y34{bottom:981.600000px;}
.y99{bottom:982.230000px;}
.y11d{bottom:984.300000px;}
.y4{bottom:987.630000px;}
.y147{bottom:990.150000px;}
.y8b{bottom:992.760000px;}
.y33{bottom:999.150000px;}
.y5f{bottom:999.330000px;}
.y146{bottom:1007.790000px;}
.y98{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.yf7{bottom:1016.820000px;}
.y8a{bottom:1019.700000px;}
.y11c{bottom:1021.680000px;}
.y5e{bottom:1031.670000px;}
.yf6{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.y97{bottom:1036.890000px;}
.y5d{bottom:1041.750000px;}
.y89{bottom:1046.700000px;}
.y145{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.y96{bottom:1064.250000px;}
.y30{bottom:1069.920000px;}
.y88{bottom:1073.610000px;}
.y144{bottom:1078.560000px;}
.y5c{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.y95{bottom:1091.610000px;}
.y143{bottom:1096.110000px;}
.y87{bottom:1100.610000px;}
.y2e{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.y86{bottom:1127.520000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hd{height:26.550000px;}
.he{height:26.580000px;}
.hc{height:26.640000px;}
.h11{height:26.670000px;}
.h2{height:26.995781px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h13{height:40.539023px;}
.h10{height:44.100000px;}
.hf{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h12{height:60.589687px;}
.h14{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.hb{height:91.222383px;}
.ha{height:96.262383px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:50.880000px;}
.w7{width:54.900000px;}
.w5{width:56.430000px;}
.w6{width:73.530000px;}
.wa{width:83.790000px;}
.wc{width:85.320000px;}
.wb{width:85.410000px;}
.we{width:86.400000px;}
.w10{width:88.650000px;}
.wf{width:88.680000px;}
.w11{width:90.270000px;}
.w9{width:208.200000px;}
.wd{width:307.650000px;}
.w8{width:384.330000px;}
.w3{width:621.150000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:4.140000px;}
.x19{left:7.740000px;}
.xd{left:20.970000px;}
.x1{left:68.040000px;}
.x24{left:83.069987px;}
.x28{left:98.549987px;}
.x46{left:111.239987px;}
.x21{left:119.699987px;}
.x22{left:125.549987px;}
.x13{left:128.070000px;}
.x8{left:136.080000px;}
.x26{left:141.569987px;}
.x10{left:173.010000px;}
.xb{left:187.230000px;}
.x2{left:192.719987px;}
.x12{left:205.049987px;}
.xc{left:243.930000px;}
.x9{left:258.510000px;}
.x6{left:261.029987px;}
.x4{left:268.319987px;}
.x39{left:277.319987px;}
.x3a{left:281.279987px;}
.x2d{left:284.609987px;}
.x40{left:296.669987px;}
.x5{left:304.949987px;}
.x43{left:306.029987px;}
.x30{left:311.609987px;}
.x3e{left:315.029987px;}
.xe{left:317.730000px;}
.x7{left:319.079987px;}
.x3c{left:333.389987px;}
.x45{left:335.909987px;}
.x14{left:336.990000px;}
.x2b{left:338.609987px;}
.x33{left:340.409987px;}
.x32{left:350.849987px;}
.x35{left:358.949987px;}
.x2e{left:360.749987px;}
.xf{left:372.900000px;}
.x1a{left:377.130000px;}
.x37{left:380.999987px;}
.x29{left:406.289987px;}
.x15{left:421.500000px;}
.x1f{left:446.609987px;}
.x1b{left:464.250000px;}
.x16{left:507.660000px;}
.x1c{left:553.740000px;}
.x34{left:558.059987px;}
.x2a{left:560.309987px;}
.x31{left:564.809987px;}
.x44{left:565.889987px;}
.x2c{left:567.059987px;}
.x41{left:569.309987px;}
.x2f{left:570.389987px;}
.x36{left:572.729987px;}
.x3d{left:573.809987px;}
.x42{left:574.889987px;}
.x3f{left:577.139987px;}
.x3b{left:579.389987px;}
.x38{left:588.389987px;}
.x17{left:593.790000px;}
.x1d{left:643.110000px;}
.x18{left:679.830000px;}
.x23{left:698.639987px;}
.x20{left:702.059987px;}
.x1e{left:734.190000px;}
.x27{left:739.139987px;}
.x11{left:750.839987px;}
.x25{left:766.139987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v5{vertical-align:35.840000pt;}
.v4{vertical-align:40.320000pt;}
.ls1e{letter-spacing:-1.445333pt;}
.ls1d{letter-spacing:-1.333333pt;}
.ls21{letter-spacing:-1.290667pt;}
.ls20{letter-spacing:-1.216000pt;}
.ls22{letter-spacing:-0.576000pt;}
.ls23{letter-spacing:-0.331733pt;}
.ls1c{letter-spacing:-0.253867pt;}
.ls17{letter-spacing:-0.216533pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls25{letter-spacing:-0.141867pt;}
.ls18{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls29{letter-spacing:-0.034560pt;}
.ls16{letter-spacing:-0.033600pt;}
.ls19{letter-spacing:-0.013120pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.004800pt;}
.ls3{letter-spacing:0.013120pt;}
.ls10{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.053760pt;}
.lsf{letter-spacing:0.053867pt;}
.ls2{letter-spacing:0.058240pt;}
.ls1b{letter-spacing:0.066133pt;}
.ls1{letter-spacing:0.080000pt;}
.ls1f{letter-spacing:0.083200pt;}
.lse{letter-spacing:0.102933pt;}
.ls1a{letter-spacing:0.103467pt;}
.ls28{letter-spacing:0.108267pt;}
.ls7{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.154133pt;}
.ls24{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:6.483200pt;}
.ls15{letter-spacing:11.763840pt;}
.ls27{letter-spacing:42.423680pt;}
.ls26{letter-spacing:71.863680pt;}
.ls14{letter-spacing:169.040320pt;}
.ws5{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.910933pt;}
.ws1b{word-spacing:-11.865067pt;}
.ws11{word-spacing:-11.860267pt;}
.ws6{word-spacing:-11.859733pt;}
.ws12{word-spacing:-11.822933pt;}
.wsc{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.743680pt;}
.ws1c{word-spacing:-11.722240pt;}
.wsf{word-spacing:-11.620267pt;}
.ws1a{word-spacing:-11.614933pt;}
.ws9{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.540267pt;}
.ws13{word-spacing:-11.502933pt;}
.ws19{word-spacing:-11.425067pt;}
.ws18{word-spacing:-11.180800pt;}
.ws16{word-spacing:-10.540800pt;}
.ws17{word-spacing:-10.466133pt;}
.ws14{word-spacing:-10.423467pt;}
.ws15{word-spacing:-10.311467pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:-7.657067pt;}
.ws2{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.wsd{word-spacing:2.995840pt;}
.ws4{word-spacing:3.826560pt;}
._9{margin-left:-3.625066pt;}
._8{margin-left:-2.122667pt;}
._3{margin-left:-0.966933pt;}
._2{width:0.961387pt;}
._1{width:1.939231pt;}
._0{width:2.833056pt;}
._a{width:3.805680pt;}
._b{width:4.707199pt;}
._5{width:5.771734pt;}
._6{width:6.785597pt;}
._7{width:8.328432pt;}
._d{width:9.520528pt;}
._e{width:10.610469pt;}
._4{width:13.627200pt;}
._f{width:14.686080pt;}
._17{width:15.614933pt;}
._1a{width:16.512960pt;}
._c{width:20.323840pt;}
._16{width:21.963840pt;}
._18{width:23.192960pt;}
._19{width:24.212480pt;}
._15{width:35.172160pt;}
._13{width:38.423360pt;}
._12{width:40.347200pt;}
._1b{width:50.126720pt;}
._1c{width:51.195520pt;}
._1d{width:52.299733pt;}
._20{width:60.975040pt;}
._1e{width:75.991680pt;}
._1f{width:77.198400pt;}
._14{width:90.210453pt;}
._11{width:91.425920pt;}
._10{width:140.240320pt;}
._21{width:177.046720pt;}
._22{width:180.850879pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:6.960000pt;}
.y78{bottom:6.986667pt;}
.y74{bottom:7.040000pt;}
.yad{bottom:7.066667pt;}
.yaa{bottom:22.560000pt;}
.ya6{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y5b{bottom:99.306667pt;}
.y11b{bottom:100.426667pt;}
.yf5{bottom:101.066667pt;}
.yb9{bottom:101.546667pt;}
.y94{bottom:101.626667pt;}
.y85{bottom:103.306667pt;}
.yc8{bottom:104.986667pt;}
.y29{bottom:112.346667pt;}
.yc0{bottom:114.666667pt;}
.yb8{bottom:114.826667pt;}
.y5a{bottom:114.906667pt;}
.y142{bottom:115.546667pt;}
.y11a{bottom:116.026667pt;}
.yf4{bottom:116.746667pt;}
.yd8{bottom:124.266667pt;}
.y84{bottom:127.226667pt;}
.y28{bottom:127.946667pt;}
.y93{bottom:130.266667pt;}
.y59{bottom:130.586667pt;}
.y119{bottom:131.706667pt;}
.yf3{bottom:132.346667pt;}
.yc7{bottom:133.626667pt;}
.yb7{bottom:139.146667pt;}
.ye0{bottom:143.146667pt;}
.ybf{bottom:143.306667pt;}
.y58{bottom:146.186667pt;}
.yf2{bottom:147.946667pt;}
.y83{bottom:151.226667pt;}
.y141{bottom:154.746667pt;}
.y118{bottom:155.546667pt;}
.yd7{bottom:155.866667pt;}
.y27{bottom:159.626667pt;}
.y57{bottom:161.866667pt;}
.yb6{bottom:163.466667pt;}
.yf1{bottom:163.626667pt;}
.ydf{bottom:174.746667pt;}
.y82{bottom:175.146667pt;}
.y26{bottom:175.226667pt;}
.y140{bottom:178.426667pt;}
.yf0{bottom:179.226667pt;}
.ycf{bottom:180.666667pt;}
.y56{bottom:185.466667pt;}
.yd6{bottom:186.826667pt;}
.yb5{bottom:187.786667pt;}
.y25{bottom:190.826667pt;}
.y13f{bottom:194.026667pt;}
.yef{bottom:194.906667pt;}
.yd5{bottom:196.986667pt;}
.y117{bottom:198.506667pt;}
.y81{bottom:199.146667pt;}
.yde{bottom:205.786667pt;}
.y24{bottom:206.506667pt;}
.yee{bottom:210.506667pt;}
.yb4{bottom:212.026667pt;}
.yce{bottom:212.266667pt;}
.y116{bottom:214.106667pt;}
.ydd{bottom:215.946667pt;}
.y55{bottom:217.066667pt;}
.y13e{bottom:217.626667pt;}
.y23{bottom:222.106667pt;}
.y80{bottom:223.146667pt;}
.yed{bottom:226.106667pt;}
.y115{bottom:229.786667pt;}
.y54{bottom:232.746667pt;}
.y13d{bottom:233.306667pt;}
.y22{bottom:237.786667pt;}
.ycd{bottom:240.906667pt;}
.yec{bottom:241.786667pt;}
.y7f{bottom:247.066667pt;}
.y13c{bottom:248.906667pt;}
.yb3{bottom:251.946667pt;}
.y21{bottom:253.386667pt;}
.y53{bottom:256.346667pt;}
.yeb{bottom:257.386667pt;}
.y114{bottom:261.386667pt;}
.y20{bottom:268.986667pt;}
.y7e{bottom:271.066667pt;}
.y13b{bottom:272.586667pt;}
.yea{bottom:272.986667pt;}
.yb2{bottom:276.266667pt;}
.y113{bottom:276.986667pt;}
.y1f{bottom:284.666667pt;}
.y52{bottom:287.946667pt;}
.y13a{bottom:288.186667pt;}
.ye9{bottom:288.666667pt;}
.y112{bottom:292.666667pt;}
.y7d{bottom:294.986667pt;}
.y1e{bottom:300.266667pt;}
.yb1{bottom:300.586667pt;}
.y51{bottom:303.626667pt;}
.ye8{bottom:304.266667pt;}
.y111{bottom:308.266667pt;}
.y139{bottom:311.786667pt;}
.y1d{bottom:315.946667pt;}
.y7c{bottom:318.986667pt;}
.y50{bottom:319.226667pt;}
.ye7{bottom:319.946667pt;}
.yb0{bottom:324.906667pt;}
.y138{bottom:327.466667pt;}
.y1c{bottom:331.546667pt;}
.y4f{bottom:334.906667pt;}
.ye6{bottom:335.546667pt;}
.y110{bottom:339.946667pt;}
.y7b{bottom:342.906667pt;}
.y137{bottom:343.066667pt;}
.y1b{bottom:347.146667pt;}
.y4e{bottom:350.506667pt;}
.ye5{bottom:351.146667pt;}
.y10f{bottom:355.546667pt;}
.yc6{bottom:356.666667pt;}
.y1a{bottom:362.826667pt;}
.yaf{bottom:364.826667pt;}
.y4d{bottom:366.106667pt;}
.y136{bottom:366.746667pt;}
.ye4{bottom:366.826667pt;}
.y7a{bottom:366.906667pt;}
.y10e{bottom:371.146667pt;}
.y19{bottom:378.426667pt;}
.y4c{bottom:381.786667pt;}
.y135{bottom:382.346667pt;}
.ye3{bottom:382.426667pt;}
.y10d{bottom:386.826667pt;}
.yc5{bottom:388.266667pt;}
.yae{bottom:389.066667pt;}
.y79{bottom:390.826667pt;}
.y18{bottom:394.026667pt;}
.y134{bottom:397.946667pt;}
.ye2{bottom:398.106667pt;}
.ybe{bottom:400.266667pt;}
.y10c{bottom:402.426667pt;}
.yc4{bottom:403.946667pt;}
.y4b{bottom:405.386667pt;}
.y17{bottom:409.706667pt;}
.yac{bottom:413.386667pt;}
.y77{bottom:414.826667pt;}
.y10b{bottom:418.133333pt;}
.y133{bottom:421.653333pt;}
.ye1{bottom:422.053333pt;}
.y16{bottom:425.333333pt;}
.ybd{bottom:428.933333pt;}
.yc3{bottom:432.613333pt;}
.y10a{bottom:433.733333pt;}
.y4a{bottom:437.093333pt;}
.y132{bottom:437.253333pt;}
.yab{bottom:437.733333pt;}
.y75{bottom:438.853333pt;}
.y15{bottom:441.013333pt;}
.yd4{bottom:446.053333pt;}
.y109{bottom:449.333333pt;}
.y49{bottom:452.693333pt;}
.y131{bottom:460.933333pt;}
.ya9{bottom:462.053333pt;}
.y73{bottom:462.773333pt;}
.y14{bottom:464.933333pt;}
.y108{bottom:465.013333pt;}
.y48{bottom:468.293333pt;}
.y130{bottom:476.533333pt;}
.yd3{bottom:477.653333pt;}
.y107{bottom:480.613333pt;}
.y47{bottom:483.973333pt;}
.ycc{bottom:489.973333pt;}
.y12f{bottom:492.133333pt;}
.ydc{bottom:495.893333pt;}
.y106{bottom:496.293333pt;}
.ya8{bottom:501.973333pt;}
.y72{bottom:505.733333pt;}
.ydb{bottom:506.053333pt;}
.yd2{bottom:506.373333pt;}
.y46{bottom:507.573333pt;}
.y12e{bottom:507.813333pt;}
.y13{bottom:508.133333pt;}
.y105{bottom:511.893333pt;}
.ycb{bottom:518.613333pt;}
.ya7{bottom:526.213333pt;}
.y104{bottom:527.493333pt;}
.y12d{bottom:531.413333pt;}
.y71{bottom:537.333333pt;}
.y45{bottom:539.253333pt;}
.y12{bottom:541.013333pt;}
.y12c{bottom:547.093333pt;}
.ya5{bottom:550.533333pt;}
.y70{bottom:553.013333pt;}
.y11{bottom:556.613333pt;}
.y103{bottom:559.173333pt;}
.y12b{bottom:562.693333pt;}
.y44{bottom:562.853333pt;}
.y6f{bottom:568.613333pt;}
.y10{bottom:572.293333pt;}
.y102{bottom:574.773333pt;}
.y6e{bottom:584.293333pt;}
.y12a{bottom:586.293333pt;}
.yf{bottom:587.893333pt;}
.y101{bottom:590.453333pt;}
.y43{bottom:594.773333pt;}
.y6d{bottom:599.893333pt;}
.y129{bottom:601.973333pt;}
.ye{bottom:603.573333pt;}
.y100{bottom:606.053333pt;}
.ya4{bottom:609.493333pt;}
.y6c{bottom:615.493333pt;}
.yd{bottom:619.173333pt;}
.yff{bottom:621.653333pt;}
.y128{bottom:625.573333pt;}
.y154{bottom:628.933333pt;}
.y6b{bottom:631.173333pt;}
.yc{bottom:634.773333pt;}
.yfe{bottom:637.333333pt;}
.y42{bottom:637.653333pt;}
.ya3{bottom:641.093333pt;}
.y127{bottom:641.253333pt;}
.y153{bottom:644.613333pt;}
.y6a{bottom:646.773333pt;}
.yfd{bottom:652.933333pt;}
.y41{bottom:653.333333pt;}
.ya2{bottom:654.373333pt;}
.yb{bottom:658.773333pt;}
.y152{bottom:660.213333pt;}
.y69{bottom:662.453333pt;}
.y126{bottom:664.853333pt;}
.yfc{bottom:668.613333pt;}
.y40{bottom:668.933333pt;}
.y68{bottom:678.053333pt;}
.ya1{bottom:678.693333pt;}
.y125{bottom:680.453333pt;}
.y151{bottom:683.813333pt;}
.yfb{bottom:684.213333pt;}
.y67{bottom:693.653333pt;}
.y124{bottom:696.133333pt;}
.ya{bottom:700.293333pt;}
.y3f{bottom:700.613333pt;}
.ya0{bottom:703.013333pt;}
.y150{bottom:707.493333pt;}
.yfa{bottom:715.813333pt;}
.ybc{bottom:715.973333pt;}
.y3e{bottom:716.213333pt;}
.y92{bottom:717.653333pt;}
.yc2{bottom:719.573333pt;}
.y123{bottom:720.053333pt;}
.y14f{bottom:723.093333pt;}
.y66{bottom:725.333333pt;}
.y9f{bottom:727.333333pt;}
.yf9{bottom:731.493333pt;}
.y3d{bottom:731.813333pt;}
.y9{bottom:731.893333pt;}
.y91{bottom:738.613333pt;}
.y14e{bottom:738.693333pt;}
.y65{bottom:740.933333pt;}
.yf8{bottom:747.093333pt;}
.y3c{bottom:747.493333pt;}
.ybb{bottom:747.573333pt;}
.yc1{bottom:748.213333pt;}
.y9e{bottom:751.573333pt;}
.yda{bottom:755.093333pt;}
.y64{bottom:756.613333pt;}
.yd1{bottom:759.573333pt;}
.y14d{bottom:762.373333pt;}
.y90{bottom:762.613333pt;}
.y122{bottom:762.933333pt;}
.y3b{bottom:763.093333pt;}
.y8{bottom:763.733333pt;}
.yca{bottom:767.573333pt;}
.y63{bottom:772.213333pt;}
.y9d{bottom:775.893333pt;}
.yba{bottom:776.213333pt;}
.y14c{bottom:777.973333pt;}
.y3a{bottom:778.693333pt;}
.yd9{bottom:786.053333pt;}
.y8f{bottom:786.533333pt;}
.y121{bottom:786.853333pt;}
.yd0{bottom:788.213333pt;}
.y39{bottom:794.373333pt;}
.y62{bottom:796.133333pt;}
.yc9{bottom:796.213333pt;}
.y7{bottom:799.093333pt;}
.y9c{bottom:800.213333pt;}
.y14b{bottom:801.653333pt;}
.y38{bottom:809.973333pt;}
.y8e{bottom:810.533333pt;}
.y6{bottom:815.093333pt;}
.y14a{bottom:817.253333pt;}
.y120{bottom:819.733333pt;}
.y9b{bottom:824.533333pt;}
.y37{bottom:825.653333pt;}
.y8d{bottom:834.533333pt;}
.y11f{bottom:835.413333pt;}
.y61{bottom:838.933333pt;}
.y149{bottom:840.853333pt;}
.y36{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y60{bottom:847.893333pt;}
.y9a{bottom:848.773333pt;}
.y11e{bottom:851.013333pt;}
.y148{bottom:856.533333pt;}
.y35{bottom:856.853333pt;}
.y8c{bottom:858.453333pt;}
.y34{bottom:872.533333pt;}
.y99{bottom:873.093333pt;}
.y11d{bottom:874.933333pt;}
.y4{bottom:877.893333pt;}
.y147{bottom:880.133333pt;}
.y8b{bottom:882.453333pt;}
.y33{bottom:888.133333pt;}
.y5f{bottom:888.293333pt;}
.y146{bottom:895.813333pt;}
.y98{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.yf7{bottom:903.840000pt;}
.y8a{bottom:906.400000pt;}
.y11c{bottom:908.160000pt;}
.y5e{bottom:917.040000pt;}
.yf6{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.y97{bottom:921.680000pt;}
.y5d{bottom:926.000000pt;}
.y89{bottom:930.400000pt;}
.y145{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.y96{bottom:946.000000pt;}
.y30{bottom:951.040000pt;}
.y88{bottom:954.320000pt;}
.y144{bottom:958.720000pt;}
.y5c{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.y95{bottom:970.320000pt;}
.y143{bottom:974.320000pt;}
.y87{bottom:978.320000pt;}
.y2e{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.y86{bottom:1002.240000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.he{height:23.626667pt;}
.hc{height:23.680000pt;}
.h11{height:23.706667pt;}
.h2{height:23.996250pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h13{height:36.034687pt;}
.h10{height:39.200000pt;}
.hf{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h12{height:53.857500pt;}
.h14{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.hb{height:81.086562pt;}
.ha{height:85.566562pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:45.226667pt;}
.w7{width:48.800000pt;}
.w5{width:50.160000pt;}
.w6{width:65.360000pt;}
.wa{width:74.480000pt;}
.wc{width:75.840000pt;}
.wb{width:75.920000pt;}
.we{width:76.800000pt;}
.w10{width:78.800000pt;}
.wf{width:78.826667pt;}
.w11{width:80.240000pt;}
.w9{width:185.066667pt;}
.wd{width:273.466667pt;}
.w8{width:341.626667pt;}
.w3{width:552.133333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:3.680000pt;}
.x19{left:6.880000pt;}
.xd{left:18.640000pt;}
.x1{left:60.480000pt;}
.x24{left:73.839988pt;}
.x28{left:87.599988pt;}
.x46{left:98.879988pt;}
.x21{left:106.399988pt;}
.x22{left:111.599988pt;}
.x13{left:113.840000pt;}
.x8{left:120.960000pt;}
.x26{left:125.839988pt;}
.x10{left:153.786667pt;}
.xb{left:166.426667pt;}
.x2{left:171.306655pt;}
.x12{left:182.266655pt;}
.xc{left:216.826667pt;}
.x9{left:229.786667pt;}
.x6{left:232.026655pt;}
.x4{left:238.506655pt;}
.x39{left:246.506655pt;}
.x3a{left:250.026655pt;}
.x2d{left:252.986655pt;}
.x40{left:263.706655pt;}
.x5{left:271.066655pt;}
.x43{left:272.026655pt;}
.x30{left:276.986655pt;}
.x3e{left:280.026655pt;}
.xe{left:282.426667pt;}
.x7{left:283.626655pt;}
.x3c{left:296.346655pt;}
.x45{left:298.586655pt;}
.x14{left:299.546667pt;}
.x2b{left:300.986655pt;}
.x33{left:302.586655pt;}
.x32{left:311.866655pt;}
.x35{left:319.066655pt;}
.x2e{left:320.666655pt;}
.xf{left:331.466667pt;}
.x1a{left:335.226667pt;}
.x37{left:338.666655pt;}
.x29{left:361.146655pt;}
.x15{left:374.666667pt;}
.x1f{left:396.986655pt;}
.x1b{left:412.666667pt;}
.x16{left:451.253333pt;}
.x1c{left:492.213333pt;}
.x34{left:496.053322pt;}
.x2a{left:498.053322pt;}
.x31{left:502.053322pt;}
.x44{left:503.013322pt;}
.x2c{left:504.053322pt;}
.x41{left:506.053322pt;}
.x2f{left:507.013322pt;}
.x36{left:509.093322pt;}
.x3d{left:510.053322pt;}
.x42{left:511.013322pt;}
.x3f{left:513.013322pt;}
.x3b{left:515.013322pt;}
.x38{left:523.013322pt;}
.x17{left:527.813333pt;}
.x1d{left:571.653333pt;}
.x18{left:604.293333pt;}
.x23{left:621.013322pt;}
.x20{left:624.053322pt;}
.x1e{left:652.613333pt;}
.x27{left:657.013322pt;}
.x11{left:667.413322pt;}
.x25{left:681.013322pt;}
.x3{left:711.413322pt;}
}




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