
    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_44ab2ef4ff2bc355e74aa6bc.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_ff992b0607dba0d94b7370ef.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a0c57f0ac0db937c238b3500.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_c4bbcd8f3f0e5b8ebc3dc1b8.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_57fabe10b3caabe244bc0581.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_00c051a26e39b36543b7b8fc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_205f9e1ff33ba8ce6495e52f.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_a6674302606bb8f3a457137a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsc{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.084000px;}
.ls14{letter-spacing:-0.067200px;}
.ls11{letter-spacing:-0.063600px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls12{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.lse{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.113400px;}
.ls6{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls17{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:45.926640px;}
.ls18{letter-spacing:47.726640px;}
.lsf{letter-spacing:63.566640px;}
.ls16{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;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.339800px;}
.ws8{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws9{word-spacing:-13.162800px;}
.ws4{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsb{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._b{margin-left:-3.309601px;}
._4{margin-left:-2.223000px;}
._0{margin-left:-1.110000px;}
._1{width:1.174152px;}
._8{width:2.553047px;}
._12{width:3.555197px;}
._9{width:4.569000px;}
._a{width:5.796052px;}
._3{width:6.973800px;}
._2{width:8.116200px;}
._7{width:9.347593px;}
._5{width:10.521000px;}
._6{width:11.753567px;}
._d{width:14.368800px;}
._c{width:15.687360px;}
._e{width:16.805447px;}
._f{width:18.404859px;}
._10{width:19.899720px;}
._11{width:21.113683px;}
._15{width:25.671240px;}
._16{width:26.753400px;}
._1e{width:30.721320px;}
._18{width:35.591040px;}
._1f{width:38.476800px;}
._1b{width:41.302440px;}
._1a{width:59.699160px;}
._19{width:60.781320px;}
._1c{width:64.568880px;}
._1d{width:94.147920px;}
._17{width:145.971360px;}
._13{width:181.802880px;}
._14{width:229.434960px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y29{bottom:7.830000px;}
.y2e{bottom:7.860000px;}
.y2b{bottom:7.920000px;}
.y174{bottom:7.950000px;}
.y168{bottom:9.180000px;}
.y161{bottom:10.350000px;}
.y110{bottom:11.610000px;}
.yd6{bottom:25.380000px;}
.yd2{bottom:25.470000px;}
.y15d{bottom:25.500000px;}
.y172{bottom:35.220000px;}
.yd5{bottom:43.020000px;}
.yd9{bottom:43.110000px;}
.y11f{bottom:60.570000px;}
.ye1{bottom:60.690000px;}
.y164{bottom:62.460000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y176{bottom:89.910000px;}
.y1{bottom:101.640000px;}
.y5b{bottom:111.270000px;}
.y112{bottom:117.270000px;}
.y10c{bottom:117.300000px;}
.y15b{bottom:120.270000px;}
.yef{bottom:123.240000px;}
.y5a{bottom:128.910000px;}
.y19b{bottom:130.980000px;}
.y126{bottom:131.070000px;}
.y1be{bottom:134.220000px;}
.y146{bottom:134.940000px;}
.y15a{bottom:137.820000px;}
.yee{bottom:140.790000px;}
.y12b{bottom:144.570000px;}
.y59{bottom:146.460000px;}
.y89{bottom:147.090000px;}
.y19a{bottom:148.530000px;}
.y1bd{bottom:151.770000px;}
.y183{bottom:152.220000px;}
.y145{bottom:152.490000px;}
.y159{bottom:155.460000px;}
.yed{bottom:158.430000px;}
.ya4{bottom:162.300000px;}
.y10b{bottom:163.470000px;}
.y58{bottom:164.100000px;}
.y88{bottom:164.640000px;}
.y199{bottom:166.170000px;}
.y125{bottom:166.620000px;}
.y182{bottom:169.770000px;}
.y144{bottom:170.130000px;}
.y158{bottom:173.010000px;}
.yec{bottom:175.980000px;}
.y1bc{bottom:178.410000px;}
.y57{bottom:181.650000px;}
.y87{bottom:182.280000px;}
.yd0{bottom:182.460000px;}
.y198{bottom:183.720000px;}
.y181{bottom:187.410000px;}
.y143{bottom:187.680000px;}
.y157{bottom:190.560000px;}
.y1bb{bottom:195.960000px;}
.ya3{bottom:197.850000px;}
.y10a{bottom:199.020000px;}
.y56{bottom:199.200000px;}
.y86{bottom:199.830000px;}
.y197{bottom:201.270000px;}
.y124{bottom:202.170000px;}
.y180{bottom:204.960000px;}
.y142{bottom:205.230000px;}
.yeb{bottom:211.530000px;}
.ya2{bottom:215.400000px;}
.y109{bottom:216.660000px;}
.y156{bottom:217.200000px;}
.y85{bottom:217.380000px;}
.ycf{bottom:218.100000px;}
.y196{bottom:218.910000px;}
.y123{bottom:219.810000px;}
.y1ba{bottom:222.510000px;}
.y17f{bottom:222.600000px;}
.y141{bottom:222.870000px;}
.yea{bottom:229.170000px;}
.y24{bottom:231.240000px;}
.ya1{bottom:233.040000px;}
.y108{bottom:234.210000px;}
.y55{bottom:234.840000px;}
.y195{bottom:236.460000px;}
.y122{bottom:237.360000px;}
.y17e{bottom:240.150000px;}
.y140{bottom:240.420000px;}
.y84{bottom:244.020000px;}
.ye9{bottom:246.720000px;}
.y23{bottom:248.790000px;}
.ya0{bottom:250.590000px;}
.y107{bottom:251.760000px;}
.y54{bottom:252.390000px;}
.y155{bottom:252.750000px;}
.yce{bottom:253.650000px;}
.y194{bottom:254.100000px;}
.y17d{bottom:257.700000px;}
.ye8{bottom:264.360000px;}
.y22{bottom:266.340000px;}
.y1b9{bottom:266.700000px;}
.y13f{bottom:267.060000px;}
.y9f{bottom:268.230000px;}
.y53{bottom:270.030000px;}
.y121{bottom:270.390000px;}
.y193{bottom:271.650000px;}
.y17c{bottom:275.340000px;}
.y83{bottom:279.570000px;}
.ye7{bottom:281.910000px;}
.y21{bottom:283.980000px;}
.y1b8{bottom:284.340000px;}
.y9e{bottom:285.780000px;}
.y106{bottom:287.400000px;}
.y52{bottom:287.580000px;}
.y154{bottom:287.940000px;}
.ycd{bottom:289.200000px;}
.y82{bottom:297.210000px;}
.ye6{bottom:299.460000px;}
.y20{bottom:301.530000px;}
.y13e{bottom:302.610000px;}
.y9d{bottom:303.330000px;}
.y51{bottom:305.130000px;}
.y153{bottom:305.490000px;}
.ycc{bottom:306.840000px;}
.y17b{bottom:310.890000px;}
.y81{bottom:314.760000px;}
.y120{bottom:315.300000px;}
.ye5{bottom:317.100000px;}
.y105{bottom:319.980000px;}
.y13d{bottom:320.160000px;}
.y50{bottom:322.770000px;}
.y152{bottom:323.130000px;}
.ycb{bottom:324.390000px;}
.y17a{bottom:325.920000px;}
.y1f{bottom:328.440000px;}
.y80{bottom:332.310000px;}
.ye4{bottom:334.650000px;}
.y13c{bottom:337.800000px;}
.y9c{bottom:338.970000px;}
.y4f{bottom:340.320000px;}
.y151{bottom:340.680000px;}
.yca{bottom:341.940000px;}
.y7f{bottom:349.950000px;}
.ye3{bottom:352.290000px;}
.y175{bottom:353.190000px;}
.y1b7{bottom:355.080000px;}
.y104{bottom:355.890000px;}
.y9b{bottom:356.520000px;}
.y150{bottom:358.320000px;}
.yc9{bottom:359.580000px;}
.y11e{bottom:360.210000px;}
.y7e{bottom:367.500000px;}
.y1b6{bottom:372.630000px;}
.y13b{bottom:373.350000px;}
.y9a{bottom:374.160000px;}
.y4e{bottom:375.870000px;}
.y1e{bottom:376.770000px;}
.yc8{bottom:377.130000px;}
.ye2{bottom:378.840000px;}
.y179{bottom:380.550000px;}
.y192{bottom:386.130000px;}
.y99{bottom:391.710000px;}
.y14f{bottom:393.420000px;}
.y4d{bottom:393.510000px;}
.y1d{bottom:394.680000px;}
.y1b5{bottom:399.270000px;}
.y7d{bottom:403.050000px;}
.yc7{bottom:403.770000px;}
.y103{bottom:404.130000px;}
.y13a{bottom:405.570000px;}
.y178{bottom:407.910000px;}
.y98{bottom:409.260000px;}
.y4c{bottom:411.060000px;}
.ye0{bottom:411.780000px;}
.y1b4{bottom:416.820000px;}
.y7c{bottom:420.690000px;}
.y102{bottom:421.770000px;}
.y97{bottom:426.900000px;}
.y4b{bottom:428.700000px;}
.y1c{bottom:431.670000px;}
.y177{bottom:435.180000px;}
.y7b{bottom:438.240000px;}
.yc6{bottom:439.320000px;}
.y11d{bottom:440.310000px;}
.y1b3{bottom:443.370000px;}
.y96{bottom:444.450000px;}
.y4a{bottom:446.250000px;}
.y14e{bottom:446.610000px;}
.y1b{bottom:449.220000px;}
.y7a{bottom:455.880000px;}
.yc5{bottom:456.870000px;}
.y1b2{bottom:461.010000px;}
.y95{bottom:462.000000px;}
.y171{bottom:462.540000px;}
.y49{bottom:463.800000px;}
.y1a{bottom:466.860000px;}
.y79{bottom:473.460000px;}
.yc4{bottom:474.540000px;}
.y14d{bottom:478.860000px;}
.y48{bottom:481.470000px;}
.y19{bottom:484.440000px;}
.y11c{bottom:485.250000px;}
.y1b1{bottom:487.590000px;}
.y173{bottom:489.930000px;}
.y78{bottom:491.010000px;}
.ydf{bottom:491.910000px;}
.yc3{bottom:492.090000px;}
.y94{bottom:497.670000px;}
.y18{bottom:502.080000px;}
.y1b0{bottom:505.230000px;}
.yc2{bottom:509.730000px;}
.y47{bottom:517.020000px;}
.y170{bottom:517.290000px;}
.y77{bottom:517.650000px;}
.y17{bottom:519.630000px;}
.yc1{bottom:527.280000px;}
.y93{bottom:529.890000px;}
.y1af{bottom:532.140000px;}
.y46{bottom:534.660000px;}
.y16{bottom:537.180000px;}
.yc0{bottom:544.830000px;}
.y11b{bottom:551.490000px;}
.y45{bottom:552.210000px;}
.y76{bottom:553.200000px;}
.yde{bottom:554.460000px;}
.y15{bottom:554.820000px;}
.ybf{bottom:562.470000px;}
.y16f{bottom:565.980000px;}
.y44{bottom:569.760000px;}
.y75{bottom:570.840000px;}
.y101{bottom:571.740000px;}
.y14{bottom:572.370000px;}
.y11a{bottom:578.130000px;}
.ybe{bottom:580.020000px;}
.y1ae{bottom:580.380000px;}
.y43{bottom:587.400000px;}
.y74{bottom:588.390000px;}
.y13{bottom:589.920000px;}
.y16e{bottom:601.530000px;}
.y42{bottom:604.950000px;}
.y1ad{bottom:607.290000px;}
.y12{bottom:607.560000px;}
.y119{bottom:613.680000px;}
.y73{bottom:614.940000px;}
.ybd{bottom:615.660000px;}
.ydd{bottom:616.920000px;}
.y16d{bottom:619.170000px;}
.y100{bottom:620.070000px;}
.y41{bottom:622.590000px;}
.y11{bottom:625.110000px;}
.y118{bottom:631.320000px;}
.ybc{bottom:633.210000px;}
.y16c{bottom:636.720000px;}
.yff{bottom:637.620000px;}
.y40{bottom:640.140000px;}
.y10{bottom:642.750000px;}
.y1ac{bottom:644.640000px;}
.y117{bottom:648.870000px;}
.y72{bottom:650.490000px;}
.ybb{bottom:650.760000px;}
.y191{bottom:651.210000px;}
.y16b{bottom:654.270000px;}
.yfe{bottom:655.260000px;}
.y3f{bottom:657.690000px;}
.yf{bottom:660.300000px;}
.yba{bottom:668.400000px;}
.y190{bottom:668.760000px;}
.y71{bottom:668.940000px;}
.y16a{bottom:671.910000px;}
.yfd{bottom:672.810000px;}
.y3e{bottom:675.330000px;}
.y139{bottom:676.770000px;}
.ye{bottom:677.850000px;}
.ydc{bottom:679.470000px;}
.y111{bottom:681.810000px;}
.yb9{bottom:685.950000px;}
.y18f{bottom:686.400000px;}
.y70{bottom:687.390000px;}
.yfc{bottom:690.360000px;}
.y3d{bottom:692.880000px;}
.yd{bottom:695.490000px;}
.yb8{bottom:703.590000px;}
.y18e{bottom:703.950000px;}
.y169{bottom:707.460000px;}
.yfb{bottom:708.000000px;}
.y116{bottom:709.170000px;}
.y3c{bottom:710.520000px;}
.y138{bottom:712.320000px;}
.yc{bottom:713.040000px;}
.yb7{bottom:721.140000px;}
.y18d{bottom:721.590000px;}
.y167{bottom:722.400000px;}
.y6f{bottom:723.840000px;}
.ydb{bottom:724.380000px;}
.yfa{bottom:725.550000px;}
.y3b{bottom:728.070000px;}
.y137{bottom:729.870000px;}
.yb{bottom:730.680000px;}
.y115{bottom:736.530000px;}
.y18c{bottom:739.140000px;}
.yf9{bottom:743.190000px;}
.y1ab{bottom:746.520000px;}
.y136{bottom:747.510000px;}
.yb6{bottom:747.690000px;}
.y6e{bottom:750.750000px;}
.y166{bottom:751.020000px;}
.y18b{bottom:756.690000px;}
.ya{bottom:757.590000px;}
.y3a{bottom:763.620000px;}
.y114{bottom:763.800000px;}
.y1aa{bottom:764.070000px;}
.y135{bottom:765.060000px;}
.y18a{bottom:774.330000px;}
.yf8{bottom:778.740000px;}
.y163{bottom:780.900000px;}
.y39{bottom:781.260000px;}
.y1a9{bottom:782.520000px;}
.y134{bottom:782.700000px;}
.yb5{bottom:783.330000px;}
.yda{bottom:786.840000px;}
.y6d{bottom:787.740000px;}
.y113{bottom:791.160000px;}
.y189{bottom:791.880000px;}
.yf7{bottom:796.290000px;}
.y38{bottom:798.810000px;}
.y1a8{bottom:800.070000px;}
.y133{bottom:800.250000px;}
.yb4{bottom:800.880000px;}
.y1c8{bottom:804.480000px;}
.y6c{bottom:805.290000px;}
.y9{bottom:805.830000px;}
.y165{bottom:808.170000px;}
.y188{bottom:809.520000px;}
.yf6{bottom:813.930000px;}
.y37{bottom:816.450000px;}
.y132{bottom:817.800000px;}
.yb3{bottom:818.520000px;}
.y1c7{bottom:822.030000px;}
.y6b{bottom:822.930000px;}
.y187{bottom:827.070000px;}
.yf5{bottom:831.480000px;}
.yd8{bottom:831.750000px;}
.y36{bottom:834.000000px;}
.y131{bottom:835.440000px;}
.y14c{bottom:835.530000px;}
.yb2{bottom:836.070000px;}
.y6a{bottom:840.480000px;}
.y8{bottom:841.380000px;}
.y1c6{bottom:848.670000px;}
.yf4{bottom:849.030000px;}
.y10f{bottom:849.660000px;}
.y35{bottom:851.550000px;}
.yb1{bottom:853.620000px;}
.y69{bottom:858.030000px;}
.y162{bottom:862.890000px;}
.y1a7{bottom:866.400000px;}
.y12a{bottom:868.380000px;}
.y34{bottom:869.190000px;}
.y14b{bottom:871.080000px;}
.yb0{bottom:871.260000px;}
.y1c5{bottom:875.220000px;}
.y68{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.y14a{bottom:886.020000px;}
.y33{bottom:886.740000px;}
.yaf{bottom:888.810000px;}
.y186{bottom:889.260000px;}
.y160{bottom:890.250000px;}
.y1c4{bottom:892.860000px;}
.y67{bottom:893.220000px;}
.y1a6{bottom:893.310000px;}
.yd7{bottom:894.300000px;}
.y130{bottom:895.740000px;}
.y10e{bottom:898.350000px;}
.y92{bottom:902.220000px;}
.y32{bottom:904.380000px;}
.yae{bottom:906.450000px;}
.y185{bottom:906.810000px;}
.y66{bottom:910.860000px;}
.yf3{bottom:911.220000px;}
.y6{bottom:913.200000px;}
.y1c3{bottom:919.410000px;}
.y91{bottom:919.860000px;}
.y31{bottom:921.930000px;}
.y12f{bottom:923.100000px;}
.y184{bottom:924.450000px;}
.y10d{bottom:924.900000px;}
.y65{bottom:928.410000px;}
.yf2{bottom:928.860000px;}
.y1a5{bottom:930.300000px;}
.y149{bottom:930.930000px;}
.y90{bottom:937.410000px;}
.y15f{bottom:941.460000px;}
.yad{bottom:942.000000px;}
.y1c2{bottom:945.960000px;}
.yf1{bottom:946.410000px;}
.y1a4{bottom:948.030000px;}
.y5{bottom:949.290000px;}
.y12e{bottom:950.370000px;}
.y30{bottom:954.870000px;}
.y8f{bottom:954.960000px;}
.yd4{bottom:956.850000px;}
.y148{bottom:958.290000px;}
.yac{bottom:959.550000px;}
.y1c1{bottom:963.600000px;}
.y64{bottom:963.960000px;}
.y1a3{bottom:965.580000px;}
.y8e{bottom:972.600000px;}
.y15e{bottom:977.010000px;}
.yab{bottom:977.190000px;}
.y12d{bottom:977.730000px;}
.y63{bottom:981.600000px;}
.y2f{bottom:982.230000px;}
.y1a2{bottom:983.130000px;}
.y4{bottom:987.630000px;}
.y8d{bottom:990.150000px;}
.y15c{bottom:991.950000px;}
.yaa{bottom:994.740000px;}
.y62{bottom:999.150000px;}
.y1a1{bottom:1000.770000px;}
.y12c{bottom:1005.090000px;}
.y8c{bottom:1007.790000px;}
.y2d{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y61{bottom:1016.820000px;}
.y1a0{bottom:1018.350000px;}
.yd3{bottom:1019.340000px;}
.y147{bottom:1020.870000px;}
.ya9{bottom:1029.960000px;}
.y129{bottom:1032.390000px;}
.y60{bottom:1034.370000px;}
.y19f{bottom:1035.990000px;}
.y2c{bottom:1036.890000px;}
.yd1{bottom:1046.700000px;}
.ya8{bottom:1047.510000px;}
.y5f{bottom:1051.920000px;}
.y19e{bottom:1053.540000px;}
.y2a{bottom:1064.250000px;}
.ya7{bottom:1065.150000px;}
.y5e{bottom:1069.560000px;}
.y8b{bottom:1069.920000px;}
.y19d{bottom:1071.090000px;}
.y1c0{bottom:1078.560000px;}
.y128{bottom:1081.170000px;}
.yf0{bottom:1087.110000px;}
.y8a{bottom:1087.560000px;}
.y28{bottom:1091.610000px;}
.ya6{bottom:1091.700000px;}
.y1bf{bottom:1096.110000px;}
.y19c{bottom:1100.610000px;}
.y5d{bottom:1105.110000px;}
.y127{bottom:1107.720000px;}
.y5c{bottom:1122.750000px;}
.ya5{bottom:1127.610000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.h7{height:26.550000px;}
.h9{height:26.580000px;}
.h8{height:26.640000px;}
.h1e{height:26.670000px;}
.h1c{height:27.900000px;}
.h1a{height:29.070000px;}
.h2{height:30.022383px;}
.h14{height:30.330000px;}
.h3{height:38.100586px;}
.h18{height:44.100000px;}
.he{height:44.190000px;}
.h16{height:44.220000px;}
.h6{height:50.902383px;}
.h1d{height:53.940000px;}
.h5{height:55.779258px;}
.hc{height:59.973223px;}
.h10{height:61.740000px;}
.hf{height:61.770000px;}
.ha{height:61.793886px;}
.h11{height:61.830000px;}
.hb{height:62.585859px;}
.hd{height:68.582109px;}
.h4{height:71.019492px;}
.h17{height:79.290000px;}
.h12{height:79.410000px;}
.h1b{height:81.180000px;}
.h1f{height:108.630000px;}
.h15{height:135.990000px;}
.h13{height:136.020000px;}
.h19{height:163.290000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3e{width:23.760000px;}
.w35{width:36.180000px;}
.w22{width:48.420000px;}
.wc{width:48.540000px;}
.w31{width:48.600000px;}
.w3b{width:51.750000px;}
.w1b{width:53.280000px;}
.w17{width:55.890000px;}
.w1c{width:56.610000px;}
.w28{width:60.390000px;}
.w11{width:64.920000px;}
.w18{width:67.620000px;}
.w26{width:67.710000px;}
.w9{width:69.030000px;}
.w1f{width:69.060000px;}
.w2a{width:71.670000px;}
.w19{width:76.320000px;}
.w3c{width:77.850000px;}
.w33{width:78.210000px;}
.w10{width:83.430000px;}
.w16{width:84.240000px;}
.w34{width:85.410000px;}
.w1e{width:88.470000px;}
.w8{width:88.560000px;}
.w1a{width:90.360000px;}
.w25{width:92.430000px;}
.w2b{width:98.010000px;}
.w12{width:101.250000px;}
.w27{width:102.420000px;}
.wa{width:108.210000px;}
.w20{width:108.270000px;}
.wd{width:113.940000px;}
.w3d{width:117.120000px;}
.w36{width:130.350000px;}
.w2c{width:132.960000px;}
.w13{width:141.210000px;}
.w32{width:148.890000px;}
.wb{width:151.020000px;}
.w21{width:151.110000px;}
.w7{width:163.200000px;}
.w4{width:166.980000px;}
.w2f{width:167.250000px;}
.w30{width:171.720000px;}
.w14{width:174.150000px;}
.w3{width:177.030000px;}
.w3a{width:178.650000px;}
.w39{width:195.780000px;}
.w5{width:201.360000px;}
.w2d{width:206.640000px;}
.w23{width:221.790000px;}
.wf{width:223.410000px;}
.w3f{width:231.960000px;}
.w24{width:242.040000px;}
.w15{width:247.350000px;}
.w38{width:256.530000px;}
.w1d{width:270.930000px;}
.w6{width:523.560000px;}
.w29{width:604.950000px;}
.we{width:617.100000px;}
.w2e{width:703.860000px;}
.w37{width:737.610000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x38{left:76.860000px;}
.xa{left:83.790000px;}
.x18{left:87.570000px;}
.x7{left:95.039987px;}
.x1f{left:101.250000px;}
.x3d{left:111.239987px;}
.x3c{left:122.039987px;}
.x37{left:131.580000px;}
.x12{left:138.060000px;}
.x2f{left:144.180000px;}
.x24{left:150.390000px;}
.xc{left:155.070000px;}
.x17{left:187.320000px;}
.x2{left:201.539987px;}
.x11{left:204.330000px;}
.x30{left:216.660000px;}
.x33{left:262.740000px;}
.x4{left:274.260000px;}
.xb{left:285.870000px;}
.x31{left:309.900000px;}
.x27{left:311.520000px;}
.xd{left:318.990000px;}
.x39{left:334.200000px;}
.x19{left:335.640000px;}
.x9{left:341.489987px;}
.x26{left:353.369987px;}
.x13{left:362.190000px;}
.x20{left:372.900000px;}
.x2e{left:384.689987px;}
.x28{left:404.760000px;}
.xe{left:408.270000px;}
.x3b{left:412.860000px;}
.x1a{left:420.600000px;}
.x34{left:435.180000px;}
.x14{left:446.340000px;}
.x6{left:452.010000px;}
.x21{left:462.180000px;}
.xf{left:478.110000px;}
.x35{left:484.590000px;}
.x15{left:511.980000px;}
.x29{left:529.800000px;}
.x22{left:531.960000px;}
.x32{left:542.490000px;}
.x1b{left:545.730000px;}
.x10{left:587.130000px;}
.x2a{left:606.930000px;}
.x16{left:613.950000px;}
.x1c{left:622.770000px;}
.x36{left:634.200000px;}
.x23{left:640.950000px;}
.x2d{left:708.809987px;}
.x2b{left:710.070000px;}
.x1d{left:713.850000px;}
.x25{left:731.309987px;}
.x8{left:760.559987px;}
.x3a{left:762.720000px;}
.x2c{left:764.070000px;}
.x1e{left:767.850000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.074667pt;}
.ls14{letter-spacing:-0.059733pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls12{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.lse{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.100800pt;}
.ls6{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls17{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:40.823680pt;}
.ls18{letter-spacing:42.423680pt;}
.lsf{letter-spacing:56.503680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.857600pt;}
.ws8{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws9{word-spacing:-11.700267pt;}
.ws4{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsb{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._b{margin-left:-2.941868pt;}
._4{margin-left:-1.976000pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.043691pt;}
._8{width:2.269375pt;}
._12{width:3.160175pt;}
._9{width:4.061333pt;}
._a{width:5.152046pt;}
._3{width:6.198933pt;}
._2{width:7.214400pt;}
._7{width:8.308972pt;}
._5{width:9.352000pt;}
._6{width:10.447615pt;}
._d{width:12.772267pt;}
._c{width:13.944320pt;}
._e{width:14.938175pt;}
._f{width:16.359874pt;}
._10{width:17.688640pt;}
._11{width:18.767718pt;}
._15{width:22.818880pt;}
._16{width:23.780800pt;}
._1e{width:27.307840pt;}
._18{width:31.636480pt;}
._1f{width:34.201600pt;}
._1b{width:36.713280pt;}
._1a{width:53.065920pt;}
._19{width:54.027840pt;}
._1c{width:57.394560pt;}
._1d{width:83.687040pt;}
._17{width:129.752320pt;}
._13{width:161.602560pt;}
._14{width:203.942187pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:6.960000pt;}
.y2e{bottom:6.986667pt;}
.y2b{bottom:7.040000pt;}
.y174{bottom:7.066667pt;}
.y168{bottom:8.160000pt;}
.y161{bottom:9.200000pt;}
.y110{bottom:10.320000pt;}
.yd6{bottom:22.560000pt;}
.yd2{bottom:22.640000pt;}
.y15d{bottom:22.666667pt;}
.y172{bottom:31.306667pt;}
.yd5{bottom:38.240000pt;}
.yd9{bottom:38.320000pt;}
.y11f{bottom:53.840000pt;}
.ye1{bottom:53.946667pt;}
.y164{bottom:55.520000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y176{bottom:79.920000pt;}
.y1{bottom:90.346667pt;}
.y5b{bottom:98.906667pt;}
.y112{bottom:104.240000pt;}
.y10c{bottom:104.266667pt;}
.y15b{bottom:106.906667pt;}
.yef{bottom:109.546667pt;}
.y5a{bottom:114.586667pt;}
.y19b{bottom:116.426667pt;}
.y126{bottom:116.506667pt;}
.y1be{bottom:119.306667pt;}
.y146{bottom:119.946667pt;}
.y15a{bottom:122.506667pt;}
.yee{bottom:125.146667pt;}
.y12b{bottom:128.506667pt;}
.y59{bottom:130.186667pt;}
.y89{bottom:130.746667pt;}
.y19a{bottom:132.026667pt;}
.y1bd{bottom:134.906667pt;}
.y183{bottom:135.306667pt;}
.y145{bottom:135.546667pt;}
.y159{bottom:138.186667pt;}
.yed{bottom:140.826667pt;}
.ya4{bottom:144.266667pt;}
.y10b{bottom:145.306667pt;}
.y58{bottom:145.866667pt;}
.y88{bottom:146.346667pt;}
.y199{bottom:147.706667pt;}
.y125{bottom:148.106667pt;}
.y182{bottom:150.906667pt;}
.y144{bottom:151.226667pt;}
.y158{bottom:153.786667pt;}
.yec{bottom:156.426667pt;}
.y1bc{bottom:158.586667pt;}
.y57{bottom:161.466667pt;}
.y87{bottom:162.026667pt;}
.yd0{bottom:162.186667pt;}
.y198{bottom:163.306667pt;}
.y181{bottom:166.586667pt;}
.y143{bottom:166.826667pt;}
.y157{bottom:169.386667pt;}
.y1bb{bottom:174.186667pt;}
.ya3{bottom:175.866667pt;}
.y10a{bottom:176.906667pt;}
.y56{bottom:177.066667pt;}
.y86{bottom:177.626667pt;}
.y197{bottom:178.906667pt;}
.y124{bottom:179.706667pt;}
.y180{bottom:182.186667pt;}
.y142{bottom:182.426667pt;}
.yeb{bottom:188.026667pt;}
.ya2{bottom:191.466667pt;}
.y109{bottom:192.586667pt;}
.y156{bottom:193.066667pt;}
.y85{bottom:193.226667pt;}
.ycf{bottom:193.866667pt;}
.y196{bottom:194.586667pt;}
.y123{bottom:195.386667pt;}
.y1ba{bottom:197.786667pt;}
.y17f{bottom:197.866667pt;}
.y141{bottom:198.106667pt;}
.yea{bottom:203.706667pt;}
.y24{bottom:205.546667pt;}
.ya1{bottom:207.146667pt;}
.y108{bottom:208.186667pt;}
.y55{bottom:208.746667pt;}
.y195{bottom:210.186667pt;}
.y122{bottom:210.986667pt;}
.y17e{bottom:213.466667pt;}
.y140{bottom:213.706667pt;}
.y84{bottom:216.906667pt;}
.ye9{bottom:219.306667pt;}
.y23{bottom:221.146667pt;}
.ya0{bottom:222.746667pt;}
.y107{bottom:223.786667pt;}
.y54{bottom:224.346667pt;}
.y155{bottom:224.666667pt;}
.yce{bottom:225.466667pt;}
.y194{bottom:225.866667pt;}
.y17d{bottom:229.066667pt;}
.ye8{bottom:234.986667pt;}
.y22{bottom:236.746667pt;}
.y1b9{bottom:237.066667pt;}
.y13f{bottom:237.386667pt;}
.y9f{bottom:238.426667pt;}
.y53{bottom:240.026667pt;}
.y121{bottom:240.346667pt;}
.y193{bottom:241.466667pt;}
.y17c{bottom:244.746667pt;}
.y83{bottom:248.506667pt;}
.ye7{bottom:250.586667pt;}
.y21{bottom:252.426667pt;}
.y1b8{bottom:252.746667pt;}
.y9e{bottom:254.026667pt;}
.y106{bottom:255.466667pt;}
.y52{bottom:255.626667pt;}
.y154{bottom:255.946667pt;}
.ycd{bottom:257.066667pt;}
.y82{bottom:264.186667pt;}
.ye6{bottom:266.186667pt;}
.y20{bottom:268.026667pt;}
.y13e{bottom:268.986667pt;}
.y9d{bottom:269.626667pt;}
.y51{bottom:271.226667pt;}
.y153{bottom:271.546667pt;}
.ycc{bottom:272.746667pt;}
.y17b{bottom:276.346667pt;}
.y81{bottom:279.786667pt;}
.y120{bottom:280.266667pt;}
.ye5{bottom:281.866667pt;}
.y105{bottom:284.426667pt;}
.y13d{bottom:284.586667pt;}
.y50{bottom:286.906667pt;}
.y152{bottom:287.226667pt;}
.ycb{bottom:288.346667pt;}
.y17a{bottom:289.706667pt;}
.y1f{bottom:291.946667pt;}
.y80{bottom:295.386667pt;}
.ye4{bottom:297.466667pt;}
.y13c{bottom:300.266667pt;}
.y9c{bottom:301.306667pt;}
.y4f{bottom:302.506667pt;}
.y151{bottom:302.826667pt;}
.yca{bottom:303.946667pt;}
.y7f{bottom:311.066667pt;}
.ye3{bottom:313.146667pt;}
.y175{bottom:313.946667pt;}
.y1b7{bottom:315.626667pt;}
.y104{bottom:316.346667pt;}
.y9b{bottom:316.906667pt;}
.y150{bottom:318.506667pt;}
.yc9{bottom:319.626667pt;}
.y11e{bottom:320.186667pt;}
.y7e{bottom:326.666667pt;}
.y1b6{bottom:331.226667pt;}
.y13b{bottom:331.866667pt;}
.y9a{bottom:332.586667pt;}
.y4e{bottom:334.106667pt;}
.y1e{bottom:334.906667pt;}
.yc8{bottom:335.226667pt;}
.ye2{bottom:336.746667pt;}
.y179{bottom:338.266667pt;}
.y192{bottom:343.226667pt;}
.y99{bottom:348.186667pt;}
.y14f{bottom:349.706667pt;}
.y4d{bottom:349.786667pt;}
.y1d{bottom:350.826667pt;}
.y1b5{bottom:354.906667pt;}
.y7d{bottom:358.266667pt;}
.yc7{bottom:358.906667pt;}
.y103{bottom:359.226667pt;}
.y13a{bottom:360.506667pt;}
.y178{bottom:362.586667pt;}
.y98{bottom:363.786667pt;}
.y4c{bottom:365.386667pt;}
.ye0{bottom:366.026667pt;}
.y1b4{bottom:370.506667pt;}
.y7c{bottom:373.946667pt;}
.y102{bottom:374.906667pt;}
.y97{bottom:379.466667pt;}
.y4b{bottom:381.066667pt;}
.y1c{bottom:383.706667pt;}
.y177{bottom:386.826667pt;}
.y7b{bottom:389.546667pt;}
.yc6{bottom:390.506667pt;}
.y11d{bottom:391.386667pt;}
.y1b3{bottom:394.106667pt;}
.y96{bottom:395.066667pt;}
.y4a{bottom:396.666667pt;}
.y14e{bottom:396.986667pt;}
.y1b{bottom:399.306667pt;}
.y7a{bottom:405.226667pt;}
.yc5{bottom:406.106667pt;}
.y1b2{bottom:409.786667pt;}
.y95{bottom:410.666667pt;}
.y171{bottom:411.146667pt;}
.y49{bottom:412.266667pt;}
.y1a{bottom:414.986667pt;}
.y79{bottom:420.853333pt;}
.yc4{bottom:421.813333pt;}
.y14d{bottom:425.653333pt;}
.y48{bottom:427.973333pt;}
.y19{bottom:430.613333pt;}
.y11c{bottom:431.333333pt;}
.y1b1{bottom:433.413333pt;}
.y173{bottom:435.493333pt;}
.y78{bottom:436.453333pt;}
.ydf{bottom:437.253333pt;}
.yc3{bottom:437.413333pt;}
.y94{bottom:442.373333pt;}
.y18{bottom:446.293333pt;}
.y1b0{bottom:449.093333pt;}
.yc2{bottom:453.093333pt;}
.y47{bottom:459.573333pt;}
.y170{bottom:459.813333pt;}
.y77{bottom:460.133333pt;}
.y17{bottom:461.893333pt;}
.yc1{bottom:468.693333pt;}
.y93{bottom:471.013333pt;}
.y1af{bottom:473.013333pt;}
.y46{bottom:475.253333pt;}
.y16{bottom:477.493333pt;}
.yc0{bottom:484.293333pt;}
.y11b{bottom:490.213333pt;}
.y45{bottom:490.853333pt;}
.y76{bottom:491.733333pt;}
.yde{bottom:492.853333pt;}
.y15{bottom:493.173333pt;}
.ybf{bottom:499.973333pt;}
.y16f{bottom:503.093333pt;}
.y44{bottom:506.453333pt;}
.y75{bottom:507.413333pt;}
.y101{bottom:508.213333pt;}
.y14{bottom:508.773333pt;}
.y11a{bottom:513.893333pt;}
.ybe{bottom:515.573333pt;}
.y1ae{bottom:515.893333pt;}
.y43{bottom:522.133333pt;}
.y74{bottom:523.013333pt;}
.y13{bottom:524.373333pt;}
.y16e{bottom:534.693333pt;}
.y42{bottom:537.733333pt;}
.y1ad{bottom:539.813333pt;}
.y12{bottom:540.053333pt;}
.y119{bottom:545.493333pt;}
.y73{bottom:546.613333pt;}
.ybd{bottom:547.253333pt;}
.ydd{bottom:548.373333pt;}
.y16d{bottom:550.373333pt;}
.y100{bottom:551.173333pt;}
.y41{bottom:553.413333pt;}
.y11{bottom:555.653333pt;}
.y118{bottom:561.173333pt;}
.ybc{bottom:562.853333pt;}
.y16c{bottom:565.973333pt;}
.yff{bottom:566.773333pt;}
.y40{bottom:569.013333pt;}
.y10{bottom:571.333333pt;}
.y1ac{bottom:573.013333pt;}
.y117{bottom:576.773333pt;}
.y72{bottom:578.213333pt;}
.ybb{bottom:578.453333pt;}
.y191{bottom:578.853333pt;}
.y16b{bottom:581.573333pt;}
.yfe{bottom:582.453333pt;}
.y3f{bottom:584.613333pt;}
.yf{bottom:586.933333pt;}
.yba{bottom:594.133333pt;}
.y190{bottom:594.453333pt;}
.y71{bottom:594.613333pt;}
.y16a{bottom:597.253333pt;}
.yfd{bottom:598.053333pt;}
.y3e{bottom:600.293333pt;}
.y139{bottom:601.573333pt;}
.ye{bottom:602.533333pt;}
.ydc{bottom:603.973333pt;}
.y111{bottom:606.053333pt;}
.yb9{bottom:609.733333pt;}
.y18f{bottom:610.133333pt;}
.y70{bottom:611.013333pt;}
.yfc{bottom:613.653333pt;}
.y3d{bottom:615.893333pt;}
.yd{bottom:618.213333pt;}
.yb8{bottom:625.413333pt;}
.y18e{bottom:625.733333pt;}
.y169{bottom:628.853333pt;}
.yfb{bottom:629.333333pt;}
.y116{bottom:630.373333pt;}
.y3c{bottom:631.573333pt;}
.y138{bottom:633.173333pt;}
.yc{bottom:633.813333pt;}
.yb7{bottom:641.013333pt;}
.y18d{bottom:641.413333pt;}
.y167{bottom:642.133333pt;}
.y6f{bottom:643.413333pt;}
.ydb{bottom:643.893333pt;}
.yfa{bottom:644.933333pt;}
.y3b{bottom:647.173333pt;}
.y137{bottom:648.773333pt;}
.yb{bottom:649.493333pt;}
.y115{bottom:654.693333pt;}
.y18c{bottom:657.013333pt;}
.yf9{bottom:660.613333pt;}
.y1ab{bottom:663.573333pt;}
.y136{bottom:664.453333pt;}
.yb6{bottom:664.613333pt;}
.y6e{bottom:667.333333pt;}
.y166{bottom:667.573333pt;}
.y18b{bottom:672.613333pt;}
.ya{bottom:673.413333pt;}
.y3a{bottom:678.773333pt;}
.y114{bottom:678.933333pt;}
.y1aa{bottom:679.173333pt;}
.y135{bottom:680.053333pt;}
.y18a{bottom:688.293333pt;}
.yf8{bottom:692.213333pt;}
.y163{bottom:694.133333pt;}
.y39{bottom:694.453333pt;}
.y1a9{bottom:695.573333pt;}
.y134{bottom:695.733333pt;}
.yb5{bottom:696.293333pt;}
.yda{bottom:699.413333pt;}
.y6d{bottom:700.213333pt;}
.y113{bottom:703.253333pt;}
.y189{bottom:703.893333pt;}
.yf7{bottom:707.813333pt;}
.y38{bottom:710.053333pt;}
.y1a8{bottom:711.173333pt;}
.y133{bottom:711.333333pt;}
.yb4{bottom:711.893333pt;}
.y1c8{bottom:715.093333pt;}
.y6c{bottom:715.813333pt;}
.y9{bottom:716.293333pt;}
.y165{bottom:718.373333pt;}
.y188{bottom:719.573333pt;}
.yf6{bottom:723.493333pt;}
.y37{bottom:725.733333pt;}
.y132{bottom:726.933333pt;}
.yb3{bottom:727.573333pt;}
.y1c7{bottom:730.693333pt;}
.y6b{bottom:731.493333pt;}
.y187{bottom:735.173333pt;}
.yf5{bottom:739.093333pt;}
.yd8{bottom:739.333333pt;}
.y36{bottom:741.333333pt;}
.y131{bottom:742.613333pt;}
.y14c{bottom:742.693333pt;}
.yb2{bottom:743.173333pt;}
.y6a{bottom:747.093333pt;}
.y8{bottom:747.893333pt;}
.y1c6{bottom:754.373333pt;}
.yf4{bottom:754.693333pt;}
.y10f{bottom:755.253333pt;}
.y35{bottom:756.933333pt;}
.yb1{bottom:758.773333pt;}
.y69{bottom:762.693333pt;}
.y162{bottom:767.013333pt;}
.y1a7{bottom:770.133333pt;}
.y12a{bottom:771.893333pt;}
.y34{bottom:772.613333pt;}
.y14b{bottom:774.293333pt;}
.yb0{bottom:774.453333pt;}
.y1c5{bottom:777.973333pt;}
.y68{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.y14a{bottom:787.573333pt;}
.y33{bottom:788.213333pt;}
.yaf{bottom:790.053333pt;}
.y186{bottom:790.453333pt;}
.y160{bottom:791.333333pt;}
.y1c4{bottom:793.653333pt;}
.y67{bottom:793.973333pt;}
.y1a6{bottom:794.053333pt;}
.yd7{bottom:794.933333pt;}
.y130{bottom:796.213333pt;}
.y10e{bottom:798.533333pt;}
.y92{bottom:801.973333pt;}
.y32{bottom:803.893333pt;}
.yae{bottom:805.733333pt;}
.y185{bottom:806.053333pt;}
.y66{bottom:809.653333pt;}
.yf3{bottom:809.973333pt;}
.y6{bottom:811.733333pt;}
.y1c3{bottom:817.253333pt;}
.y91{bottom:817.653333pt;}
.y31{bottom:819.493333pt;}
.y12f{bottom:820.533333pt;}
.y184{bottom:821.733333pt;}
.y10d{bottom:822.133333pt;}
.y65{bottom:825.253333pt;}
.yf2{bottom:825.653333pt;}
.y1a5{bottom:826.933333pt;}
.y149{bottom:827.493333pt;}
.y90{bottom:833.253333pt;}
.y15f{bottom:836.853333pt;}
.yad{bottom:837.333333pt;}
.y1c2{bottom:840.853333pt;}
.yf1{bottom:841.253333pt;}
.y1a4{bottom:842.693333pt;}
.y5{bottom:843.813333pt;}
.y12e{bottom:844.773333pt;}
.y30{bottom:848.773333pt;}
.y8f{bottom:848.853333pt;}
.yd4{bottom:850.533333pt;}
.y148{bottom:851.813333pt;}
.yac{bottom:852.933333pt;}
.y1c1{bottom:856.533333pt;}
.y64{bottom:856.853333pt;}
.y1a3{bottom:858.293333pt;}
.y8e{bottom:864.533333pt;}
.y15e{bottom:868.453333pt;}
.yab{bottom:868.613333pt;}
.y12d{bottom:869.093333pt;}
.y63{bottom:872.533333pt;}
.y2f{bottom:873.093333pt;}
.y1a2{bottom:873.893333pt;}
.y4{bottom:877.893333pt;}
.y8d{bottom:880.133333pt;}
.y15c{bottom:881.733333pt;}
.yaa{bottom:884.213333pt;}
.y62{bottom:888.133333pt;}
.y1a1{bottom:889.573333pt;}
.y12c{bottom:893.413333pt;}
.y8c{bottom:895.813333pt;}
.y2d{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y61{bottom:903.840000pt;}
.y1a0{bottom:905.200000pt;}
.yd3{bottom:906.080000pt;}
.y147{bottom:907.440000pt;}
.ya9{bottom:915.520000pt;}
.y129{bottom:917.680000pt;}
.y60{bottom:919.440000pt;}
.y19f{bottom:920.880000pt;}
.y2c{bottom:921.680000pt;}
.yd1{bottom:930.400000pt;}
.ya8{bottom:931.120000pt;}
.y5f{bottom:935.040000pt;}
.y19e{bottom:936.480000pt;}
.y2a{bottom:946.000000pt;}
.ya7{bottom:946.800000pt;}
.y5e{bottom:950.720000pt;}
.y8b{bottom:951.040000pt;}
.y19d{bottom:952.080000pt;}
.y1c0{bottom:958.720000pt;}
.y128{bottom:961.040000pt;}
.yf0{bottom:966.320000pt;}
.y8a{bottom:966.720000pt;}
.y28{bottom:970.320000pt;}
.ya6{bottom:970.400000pt;}
.y1bf{bottom:974.320000pt;}
.y19c{bottom:978.320000pt;}
.y5d{bottom:982.320000pt;}
.y127{bottom:984.640000pt;}
.y5c{bottom:998.000000pt;}
.ya5{bottom:1002.320000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.h7{height:23.600000pt;}
.h9{height:23.626667pt;}
.h8{height:23.680000pt;}
.h1e{height:23.706667pt;}
.h1c{height:24.800000pt;}
.h1a{height:25.840000pt;}
.h2{height:26.686562pt;}
.h14{height:26.960000pt;}
.h3{height:33.867188pt;}
.h18{height:39.200000pt;}
.he{height:39.280000pt;}
.h16{height:39.306667pt;}
.h6{height:45.246562pt;}
.h1d{height:47.946667pt;}
.h5{height:49.581562pt;}
.hc{height:53.309531pt;}
.h10{height:54.880000pt;}
.hf{height:54.906667pt;}
.ha{height:54.927899pt;}
.h11{height:54.960000pt;}
.hb{height:55.631875pt;}
.hd{height:60.961875pt;}
.h4{height:63.128437pt;}
.h17{height:70.480000pt;}
.h12{height:70.586667pt;}
.h1b{height:72.160000pt;}
.h1f{height:96.560000pt;}
.h15{height:120.880000pt;}
.h13{height:120.906667pt;}
.h19{height:145.146667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3e{width:21.120000pt;}
.w35{width:32.160000pt;}
.w22{width:43.040000pt;}
.wc{width:43.146667pt;}
.w31{width:43.200000pt;}
.w3b{width:46.000000pt;}
.w1b{width:47.360000pt;}
.w17{width:49.680000pt;}
.w1c{width:50.320000pt;}
.w28{width:53.680000pt;}
.w11{width:57.706667pt;}
.w18{width:60.106667pt;}
.w26{width:60.186667pt;}
.w9{width:61.360000pt;}
.w1f{width:61.386667pt;}
.w2a{width:63.706667pt;}
.w19{width:67.840000pt;}
.w3c{width:69.200000pt;}
.w33{width:69.520000pt;}
.w10{width:74.160000pt;}
.w16{width:74.880000pt;}
.w34{width:75.920000pt;}
.w1e{width:78.640000pt;}
.w8{width:78.720000pt;}
.w1a{width:80.320000pt;}
.w25{width:82.160000pt;}
.w2b{width:87.120000pt;}
.w12{width:90.000000pt;}
.w27{width:91.040000pt;}
.wa{width:96.186667pt;}
.w20{width:96.240000pt;}
.wd{width:101.280000pt;}
.w3d{width:104.106667pt;}
.w36{width:115.866667pt;}
.w2c{width:118.186667pt;}
.w13{width:125.520000pt;}
.w32{width:132.346667pt;}
.wb{width:134.240000pt;}
.w21{width:134.320000pt;}
.w7{width:145.066667pt;}
.w4{width:148.426667pt;}
.w2f{width:148.666667pt;}
.w30{width:152.640000pt;}
.w14{width:154.800000pt;}
.w3{width:157.360000pt;}
.w3a{width:158.800000pt;}
.w39{width:174.026667pt;}
.w5{width:178.986667pt;}
.w2d{width:183.680000pt;}
.w23{width:197.146667pt;}
.wf{width:198.586667pt;}
.w3f{width:206.186667pt;}
.w24{width:215.146667pt;}
.w15{width:219.866667pt;}
.w38{width:228.026667pt;}
.w1d{width:240.826667pt;}
.w6{width:465.386667pt;}
.w29{width:537.733333pt;}
.we{width:548.533333pt;}
.w2e{width:625.653333pt;}
.w37{width:655.653333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x38{left:68.320000pt;}
.xa{left:74.480000pt;}
.x18{left:77.840000pt;}
.x7{left:84.479988pt;}
.x1f{left:90.000000pt;}
.x3d{left:98.879988pt;}
.x3c{left:108.479988pt;}
.x37{left:116.960000pt;}
.x12{left:122.720000pt;}
.x2f{left:128.160000pt;}
.x24{left:133.680000pt;}
.xc{left:137.840000pt;}
.x17{left:166.506667pt;}
.x2{left:179.146655pt;}
.x11{left:181.626667pt;}
.x30{left:192.586667pt;}
.x33{left:233.546667pt;}
.x4{left:243.786667pt;}
.xb{left:254.106667pt;}
.x31{left:275.466667pt;}
.x27{left:276.906667pt;}
.xd{left:283.546667pt;}
.x39{left:297.066667pt;}
.x19{left:298.346667pt;}
.x9{left:303.546655pt;}
.x26{left:314.106655pt;}
.x13{left:321.946667pt;}
.x20{left:331.466667pt;}
.x2e{left:341.946655pt;}
.x28{left:359.786667pt;}
.xe{left:362.906667pt;}
.x3b{left:366.986667pt;}
.x1a{left:373.866667pt;}
.x34{left:386.826667pt;}
.x14{left:396.746667pt;}
.x6{left:401.786667pt;}
.x21{left:410.826667pt;}
.xf{left:424.986667pt;}
.x35{left:430.746667pt;}
.x15{left:455.093333pt;}
.x29{left:470.933333pt;}
.x22{left:472.853333pt;}
.x32{left:482.213333pt;}
.x1b{left:485.093333pt;}
.x10{left:521.893333pt;}
.x2a{left:539.493333pt;}
.x16{left:545.733333pt;}
.x1c{left:553.573333pt;}
.x36{left:563.733333pt;}
.x23{left:569.733333pt;}
.x2d{left:630.053322pt;}
.x2b{left:631.173333pt;}
.x1d{left:634.533333pt;}
.x25{left:650.053322pt;}
.x8{left:676.053322pt;}
.x3a{left:677.973333pt;}
.x2c{left:679.173333pt;}
.x1e{left:682.533333pt;}
.x3{left:704.053322pt;}
}




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