
    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_083688f9b1b5f4eda043bc8d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_4e380faade11973676ac007b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_53cbbaee9d613c909ab19993.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_8cbfdbeb67d7a0ea48511e68.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_4e721258dafc85a9d6ea28be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_7666e9e95f58aaf94906df4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.061035;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_646af0db88ddb4700df053f7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_e8a65e7c7cc2e54102fbbe6f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_72981f56d9141e76909a1a43.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_a58ee92f457c115cdcda4c29.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-5.148000px;}
.ls3{letter-spacing:-0.252000px;}
.ls4{letter-spacing:-0.206400px;}
.ls2{letter-spacing:-0.008640px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.017280px;}
.lsa{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.023040px;}
.ls8{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.360000px;}
.ls5{letter-spacing:1.026000px;}
.lsc{letter-spacing:25.308000px;}
.ls6{letter-spacing:52.668000px;}
.lsb{letter-spacing:75.132000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-19.457280px;}
.ws0{word-spacing:-19.431360px;}
.ws3{word-spacing:-16.596000px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.966000px;}
.ws4{word-spacing:-14.733600px;}
.ws7{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.248000px;}
.wsa{word-spacing:-8.352000px;}
.ws6{word-spacing:0.000000px;}
._31{margin-left:-7.182000px;}
._2c{margin-left:-5.112000px;}
._30{margin-left:-3.762000px;}
._2f{margin-left:-2.322000px;}
._1{margin-left:-1.109520px;}
._0{width:1.465680px;}
._9{width:2.502000px;}
._6{width:4.050000px;}
._3{width:5.886000px;}
._11{width:7.614240px;}
._8{width:9.234000px;}
._7{width:10.422000px;}
._d{width:11.712960px;}
._c{width:14.526000px;}
._25{width:15.598320px;}
._15{width:16.632000px;}
._14{width:17.820000px;}
._24{width:18.933120px;}
._16{width:19.968720px;}
._12{width:21.179280px;}
._10{width:22.260960px;}
._b{width:23.382000px;}
._a{width:24.408000px;}
._e{width:25.725120px;}
._f{width:26.772480px;}
._1d{width:27.808560px;}
._1a{width:28.836000px;}
._13{width:30.240000px;}
._5{width:31.320000px;}
._4{width:32.454000px;}
._20{width:33.966000px;}
._23{width:35.308320px;}
._27{width:36.450000px;}
._29{width:38.178000px;}
._18{width:39.641040px;}
._17{width:41.040000px;}
._28{width:42.120000px;}
._21{width:43.578000px;}
._22{width:44.604000px;}
._26{width:46.108320px;}
._1c{width:47.525040px;}
._1b{width:48.870000px;}
._1e{width:50.166000px;}
._19{width:51.168000px;}
._1f{width:53.024160px;}
._2a{width:55.188000px;}
._2b{width:56.268000px;}
._32{width:59.634000px;}
._2e{width:60.642000px;}
._2d{width:107.709360px;}
._2{width:1340.400000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:66.384000px;}
.fs4{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:2.550000px;}
.y2{bottom:5.040000px;}
.y4{bottom:6.120000px;}
.y40{bottom:8.970000px;}
.y24{bottom:9.645000px;}
.y10e{bottom:9.705000px;}
.y160{bottom:9.900000px;}
.y112{bottom:10.065000px;}
.y11f{bottom:10.080000px;}
.y11d{bottom:10.110000px;}
.y2b{bottom:10.155000px;}
.y166{bottom:10.260000px;}
.y27{bottom:12.705000px;}
.y122{bottom:19.440000px;}
.y8{bottom:25.200000px;}
.y127{bottom:27.900000px;}
.y165{bottom:28.080000px;}
.y22{bottom:30.165000px;}
.y121{bottom:37.260000px;}
.y7{bottom:43.740000px;}
.y164{bottom:45.900000px;}
.y169{bottom:45.930000px;}
.y11b{bottom:46.980000px;}
.y125{bottom:55.110000px;}
.y6{bottom:59.580000px;}
.y163{bottom:63.720000px;}
.y168{bottom:63.750000px;}
.y116{bottom:64.785000px;}
.y11a{bottom:64.830000px;}
.y110{bottom:64.965000px;}
.y37{bottom:80.130000px;}
.y162{bottom:81.540000px;}
.y120{bottom:86.040000px;}
.y181{bottom:86.940000px;}
.y151{bottom:88.560000px;}
.ydd{bottom:91.260000px;}
.yad{bottom:92.160000px;}
.y1d{bottom:94.680000px;}
.y36{bottom:99.930000px;}
.ybf{bottom:100.260000px;}
.y16{bottom:103.680000px;}
.y180{bottom:104.760000px;}
.y150{bottom:106.380000px;}
.y7b{bottom:109.080000px;}
.yac{bottom:109.980000px;}
.y1c{bottom:112.500000px;}
.y123{bottom:113.580000px;}
.ybe{bottom:118.080000px;}
.y35{bottom:119.730000px;}
.y15{bottom:121.500000px;}
.y17f{bottom:122.580000px;}
.y7a{bottom:126.900000px;}
.ycf{bottom:127.080000px;}
.yab{bottom:127.980000px;}
.y1af{bottom:128.520000px;}
.y1b{bottom:130.320000px;}
.y14f{bottom:133.740000px;}
.ybd{bottom:135.900000px;}
.y14{bottom:139.320000px;}
.y34{bottom:139.710000px;}
.y17e{bottom:140.220000px;}
.y119{bottom:141.300000px;}
.y79{bottom:144.900000px;}
.y1f{bottom:145.230000px;}
.yaa{bottom:145.800000px;}
.y1ae{bottom:146.340000px;}
.y1a{bottom:148.140000px;}
.y14e{bottom:151.560000px;}
.ybc{bottom:153.900000px;}
.y13{bottom:157.140000px;}
.y33{bottom:159.510000px;}
.y78{bottom:162.720000px;}
.yce{bottom:162.900000px;}
.ya9{bottom:163.620000px;}
.y1ad{bottom:164.160000px;}
.y19{bottom:165.960000px;}
.y17d{bottom:167.400000px;}
.y11e{bottom:168.840000px;}
.y14d{bottom:169.380000px;}
.yd3{bottom:171.360000px;}
.ybb{bottom:171.720000px;}
.y12{bottom:174.960000px;}
.y32{bottom:179.355000px;}
.y77{bottom:180.540000px;}
.ycd{bottom:180.720000px;}
.ya8{bottom:181.440000px;}
.y1ac{bottom:182.160000px;}
.y18{bottom:183.960000px;}
.y17c{bottom:185.220000px;}
.yba{bottom:189.540000px;}
.y11{bottom:192.960000px;}
.y14c{bottom:196.200000px;}
.y11c{bottom:196.380000px;}
.y76{bottom:198.360000px;}
.ycc{bottom:198.540000px;}
.y30{bottom:199.155000px;}
.ya7{bottom:199.260000px;}
.y1ab{bottom:199.980000px;}
.y17{bottom:201.780000px;}
.y17b{bottom:203.040000px;}
.yb9{bottom:207.030000px;}
.ydc{bottom:207.390000px;}
.y10{bottom:210.810000px;}
.y14b{bottom:214.050000px;}
.y75{bottom:216.210000px;}
.ycb{bottom:216.390000px;}
.ya6{bottom:217.110000px;}
.y1aa{bottom:217.830000px;}
.y2e{bottom:218.955000px;}
.y17a{bottom:220.890000px;}
.y115{bottom:224.145000px;}
.ydb{bottom:225.210000px;}
.yf{bottom:230.610000px;}
.y14a{bottom:232.050000px;}
.y74{bottom:234.030000px;}
.yb8{bottom:234.210000px;}
.ya5{bottom:235.110000px;}
.y1a9{bottom:235.650000px;}
.y179{bottom:238.890000px;}
.y2d{bottom:238.935000px;}
.yda{bottom:243.030000px;}
.y149{bottom:249.870000px;}
.y118{bottom:251.685000px;}
.y73{bottom:252.030000px;}
.ya4{bottom:252.930000px;}
.y1a8{bottom:255.450000px;}
.y178{bottom:256.710000px;}
.yd9{bottom:261.030000px;}
.y148{bottom:267.690000px;}
.y2c{bottom:269.460000px;}
.yb7{bottom:270.030000px;}
.y177{bottom:274.530000px;}
.y72{bottom:278.490000px;}
.yd8{bottom:278.850000px;}
.y117{bottom:279.225000px;}
.ya3{bottom:279.750000px;}
.y147{bottom:285.510000px;}
.yb6{bottom:287.850000px;}
.y1a7{bottom:288.210000px;}
.y176{bottom:291.990000px;}
.ya2{bottom:297.570000px;}
.y39{bottom:300.990000px;}
.y71{bottom:305.670000px;}
.y1a6{bottom:306.210000px;}
.y114{bottom:306.945000px;}
.y146{bottom:312.330000px;}
.ya1{bottom:315.390000px;}
.y175{bottom:319.170000px;}
.y70{bottom:323.490000px;}
.y1a5{bottom:324.030000px;}
.y38{bottom:329.790000px;}
.y145{bottom:330.150000px;}
.ya0{bottom:333.210000px;}
.y10f{bottom:334.485000px;}
.y174{bottom:336.990000px;}
.y6f{bottom:341.310000px;}
.y1a4{bottom:341.850000px;}
.y144{bottom:348.150000px;}
.yca{bottom:350.310000px;}
.y9f{bottom:351.210000px;}
.y173{bottom:354.990000px;}
.y6e{bottom:359.310000px;}
.y1a3{bottom:359.670000px;}
.y113{bottom:362.025000px;}
.y143{bottom:365.970000px;}
.yc9{bottom:368.310000px;}
.y9e{bottom:369.030000px;}
.y172{bottom:372.810000px;}
.y6d{bottom:377.130000px;}
.y142{bottom:383.790000px;}
.yc8{bottom:386.130000px;}
.y9d{bottom:386.850000px;}
.y111{bottom:389.745000px;}
.y171{bottom:390.630000px;}
.y6c{bottom:394.950000px;}
.y141{bottom:401.250000px;}
.yc7{bottom:403.950000px;}
.y1a2{bottom:404.490000px;}
.y9c{bottom:404.670000px;}
.y170{bottom:408.450000px;}
.y6b{bottom:412.770000px;}
.y10d{bottom:417.285000px;}
.yb5{bottom:421.770000px;}
.y1a1{bottom:422.310000px;}
.y9b{bottom:422.490000px;}
.y16f{bottom:426.270000px;}
.y140{bottom:428.430000px;}
.yd7{bottom:430.230000px;}
.y6a{bottom:430.590000px;}
.yb4{bottom:439.590000px;}
.y9a{bottom:440.535000px;}
.y16e{bottom:444.315000px;}
.y13f{bottom:446.475000px;}
.y69{bottom:448.455000px;}
.y31{bottom:448.815000px;}
.y1a0{bottom:449.175000px;}
.y10c{bottom:450.075000px;}
.yb3{bottom:457.455000px;}
.y99{bottom:458.355000px;}
.y16d{bottom:461.775000px;}
.y13e{bottom:464.295000px;}
.y19f{bottom:466.995000px;}
.y2f{bottom:468.615000px;}
.y68{bottom:475.455000px;}
.y98{bottom:475.815000px;}
.y16c{bottom:481.935000px;}
.y13d{bottom:482.115000px;}
.y19e{bottom:484.455000px;}
.yf0{bottom:486.435000px;}
.y67{bottom:493.275000px;}
.y10b{bottom:495.075000px;}
.y97{bottom:495.975000px;}
.y13c{bottom:499.935000px;}
.yef{bottom:504.255000px;}
.y16b{bottom:507.675000px;}
.y66{bottom:511.095000px;}
.y19d{bottom:511.635000px;}
.y10a{bottom:512.895000px;}
.yee{bottom:522.075000px;}
.y13b{bottom:526.755000px;}
.y96{bottom:528.735000px;}
.y65{bottom:528.915000px;}
.y19c{bottom:529.635000px;}
.y109{bottom:530.715000px;}
.y16a{bottom:535.575000px;}
.yed{bottom:539.895000px;}
.y13a{bottom:544.575000px;}
.y64{bottom:546.375000px;}
.y95{bottom:546.735000px;}
.y108{bottom:548.715000px;}
.yc6{bottom:555.735000px;}
.y19b{bottom:556.455000px;}
.yec{bottom:557.715000px;}
.y139{bottom:562.575000px;}
.y94{bottom:564.555000px;}
.yd6{bottom:564.735000px;}
.y107{bottom:566.535000px;}
.y63{bottom:573.735000px;}
.y19a{bottom:574.275000px;}
.yeb{bottom:575.715000px;}
.y93{bottom:582.375000px;}
.y106{bottom:584.355000px;}
.y138{bottom:589.395000px;}
.ye{bottom:589.575000px;}
.y62{bottom:591.555000px;}
.y199{bottom:591.735000px;}
.yea{bottom:595.515000px;}
.y92{bottom:600.195000px;}
.y105{bottom:602.175000px;}
.y137{bottom:607.215000px;}
.yd{bottom:608.475000px;}
.y61{bottom:609.375000px;}
.y2a{bottom:615.240000px;}
.y198{bottom:618.915000px;}
.y104{bottom:619.995000px;}
.y136{bottom:625.035000px;}
.y91{bottom:627.015000px;}
.y60{bottom:627.195000px;}
.ye9{bottom:628.275000px;}
.y167{bottom:634.575000px;}
.y197{bottom:636.915000px;}
.y103{bottom:637.815000px;}
.yc5{bottom:644.655000px;}
.y90{bottom:644.835000px;}
.y5f{bottom:645.015000px;}
.ye8{bottom:646.095000px;}
.y135{bottom:651.855000px;}
.y196{bottom:654.735000px;}
.y102{bottom:655.815000px;}
.y29{bottom:656.535000px;}
.y5e{bottom:662.475000px;}
.y8f{bottom:662.835000px;}
.y1c1{bottom:663.015000px;}
.ye7{bottom:663.915000px;}
.y134{bottom:669.855000px;}
.yc4{bottom:671.835000px;}
.y195{bottom:672.555000px;}
.y101{bottom:673.275000px;}
.y8e{bottom:680.685000px;}
.yb2{bottom:680.865000px;}
.ye6{bottom:681.945000px;}
.y28{bottom:684.285000px;}
.y133{bottom:687.705000px;}
.y5d{bottom:689.865000px;}
.y194{bottom:690.405000px;}
.yd2{bottom:698.685000px;}
.ye5{bottom:699.765000px;}
.y100{bottom:700.485000px;}
.y132{bottom:705.525000px;}
.y8d{bottom:707.505000px;}
.y5c{bottom:707.685000px;}
.y1c0{bottom:707.865000px;}
.yc{bottom:712.005000px;}
.y161{bottom:715.785000px;}
.yd5{bottom:716.505000px;}
.y193{bottom:716.865000px;}
.yff{bottom:718.305000px;}
.y26{bottom:718.740000px;}
.ye4{bottom:719.565000px;}
.y131{bottom:723.345000px;}
.y8c{bottom:724.965000px;}
.y5b{bottom:725.505000px;}
.y1bf{bottom:725.685000px;}
.yd4{bottom:734.325000px;}
.yfe{bottom:736.125000px;}
.y5a{bottom:743.325000px;}
.y1be{bottom:743.505000px;}
.y192{bottom:744.045000px;}
.y130{bottom:750.165000px;}
.y8b{bottom:752.145000px;}
.ye3{bottom:752.325000px;}
.yfd{bottom:756.105000px;}
.y59{bottom:761.145000px;}
.y1bd{bottom:761.325000px;}
.y191{bottom:762.045000px;}
.y25{bottom:762.945000px;}
.y12f{bottom:767.985000px;}
.y8a{bottom:770.145000px;}
.y58{bottom:779.145000px;}
.y190{bottom:779.865000px;}
.yfc{bottom:781.845000px;}
.y12e{bottom:785.985000px;}
.y89{bottom:787.965000px;}
.ye2{bottom:788.145000px;}
.yb{bottom:793.005000px;}
.y57{bottom:796.965000px;}
.y1bc{bottom:797.145000px;}
.y18f{bottom:797.685000px;}
.y23{bottom:798.840000px;}
.y12d{bottom:803.805000px;}
.y88{bottom:805.785000px;}
.ye1{bottom:805.965000px;}
.yfb{bottom:814.605000px;}
.y56{bottom:814.785000px;}
.y1bb{bottom:814.965000px;}
.y12c{bottom:821.625000px;}
.y87{bottom:823.605000px;}
.ye0{bottom:823.785000px;}
.y18e{bottom:824.145000px;}
.yfa{bottom:832.425000px;}
.y55{bottom:832.605000px;}
.y1ba{bottom:832.785000px;}
.y21{bottom:839.340000px;}
.y12b{bottom:839.445000px;}
.y86{bottom:841.425000px;}
.ydf{bottom:841.605000px;}
.y18d{bottom:841.965000px;}
.y15f{bottom:847.725000px;}
.yd1{bottom:850.065000px;}
.yf9{bottom:850.245000px;}
.y54{bottom:850.425000px;}
.y1b9{bottom:850.605000px;}
.y12a{bottom:857.265000px;}
.y85{bottom:859.245000px;}
.yc3{bottom:859.425000px;}
.y53{bottom:868.245000px;}
.y1b8{bottom:868.425000px;}
.y18c{bottom:869.325000px;}
.y129{bottom:874.905000px;}
.yc2{bottom:877.245000px;}
.y52{bottom:886.245000px;}
.y18b{bottom:887.145000px;}
.y128{bottom:889.845000px;}
.y15e{bottom:892.725000px;}
.yf8{bottom:895.065000px;}
.yc1{bottom:895.245000px;}
.y20{bottom:898.125000px;}
.y51{bottom:904.065000px;}
.y1b7{bottom:904.245000px;}
.y18a{bottom:904.965000px;}
.y15d{bottom:910.590000px;}
.yf7{bottom:912.930000px;}
.yc0{bottom:913.110000px;}
.y50{bottom:921.930000px;}
.y1b6{bottom:922.110000px;}
.y189{bottom:922.830000px;}
.y15c{bottom:928.590000px;}
.yf6{bottom:930.390000px;}
.yb1{bottom:930.930000px;}
.y4f{bottom:939.390000px;}
.y84{bottom:939.750000px;}
.y1b5{bottom:939.930000px;}
.y188{bottom:940.650000px;}
.ya{bottom:946.050000px;}
.y15b{bottom:946.410000px;}
.yb0{bottom:948.750000px;}
.y1e{bottom:952.920000px;}
.y83{bottom:957.570000px;}
.y1b4{bottom:957.750000px;}
.y187{bottom:958.470000px;}
.y15a{bottom:963.870000px;}
.y3f{bottom:964.440000px;}
.y4e{bottom:966.570000px;}
.y82{bottom:975.570000px;}
.y186{bottom:976.470000px;}
.y4d{bottom:984.570000px;}
.y159{bottom:991.050000px;}
.y81{bottom:993.390000px;}
.y1b3{bottom:993.570000px;}
.y185{bottom:994.290000px;}
.y3e{bottom:1000.230000px;}
.y4c{bottom:1002.390000px;}
.y158{bottom:1008.870000px;}
.yf5{bottom:1011.210000px;}
.y1b2{bottom:1011.390000px;}
.y4b{bottom:1020.210000px;}
.y184{bottom:1021.110000px;}
.y3d{bottom:1026.510000px;}
.y157{bottom:1026.870000px;}
.yf4{bottom:1029.030000px;}
.y1b1{bottom:1029.210000px;}
.y4a{bottom:1038.030000px;}
.y183{bottom:1040.910000px;}
.y156{bottom:1044.690000px;}
.yf3{bottom:1046.850000px;}
.y1b0{bottom:1047.030000px;}
.y3c{bottom:1052.790000px;}
.yaf{bottom:1055.490000px;}
.y49{bottom:1055.850000px;}
.y155{bottom:1062.510000px;}
.yf2{bottom:1064.310000px;}
.yd0{bottom:1064.850000px;}
.y48{bottom:1073.670000px;}
.y3b{bottom:1079.070000px;}
.y154{bottom:1080.330000px;}
.yae{bottom:1082.670000px;}
.y80{bottom:1091.670000px;}
.y153{bottom:1098.150000px;}
.y47{bottom:1100.670000px;}
.yde{bottom:1109.130000px;}
.y7f{bottom:1109.490000px;}
.y152{bottom:1115.970000px;}
.y46{bottom:1118.490000px;}
.y9{bottom:1119.390000px;}
.y7e{bottom:1127.310000px;}
.y124{bottom:1129.110000px;}
.y45{bottom:1136.310000px;}
.y182{bottom:1144.770000px;}
.y7d{bottom:1145.130000px;}
.y44{bottom:1154.160000px;}
.y126{bottom:1156.680000px;}
.yf1{bottom:1162.980000px;}
.y43{bottom:1171.980000px;}
.y7c{bottom:1189.440000px;}
.y42{bottom:1189.800000px;}
.y1{bottom:1195.560000px;}
.y41{bottom:1215.360000px;}
.y5{bottom:1215.540000px;}
.y3{bottom:1225.080000px;}
.h2{height:17.460000px;}
.h4{height:21.780000px;}
.h1e{height:26.805000px;}
.h23{height:26.815500px;}
.h22{height:26.820000px;}
.h1c{height:26.841000px;}
.h27{height:26.842500px;}
.h21{height:26.856000px;}
.h28{height:27.000000px;}
.he{height:28.800000px;}
.h1b{height:37.705078px;}
.h2c{height:44.507812px;}
.h26{height:44.640000px;}
.h3{height:48.616875px;}
.h5{height:51.519375px;}
.h7{height:52.971680px;}
.ha{height:52.998047px;}
.h24{height:54.355500px;}
.h19{height:54.421875px;}
.h1a{height:55.503491px;}
.h8{height:55.825312px;}
.h14{height:58.621992px;}
.h17{height:58.651172px;}
.h15{height:58.763250px;}
.h16{height:60.226875px;}
.h6{height:65.010937px;}
.hf{height:66.757500px;}
.h11{height:66.902625px;}
.h10{height:68.400000px;}
.h25{height:72.202500px;}
.h9{height:78.367500px;}
.h2a{height:80.490000px;}
.h1f{height:81.885000px;}
.h20{height:81.936000px;}
.h1d{height:82.065000px;}
.hc{height:84.898125px;}
.h12{height:90.900000px;}
.h2b{height:98.265000px;}
.h29{height:98.280000px;}
.hd{height:100.800000px;}
.h18{height:134.460000px;}
.hb{height:160.560000px;}
.h13{height:261.720000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:85.320000px;}
.wb{width:102.456000px;}
.wc{width:105.465000px;}
.wa{width:147.636000px;}
.w9{width:153.925500px;}
.we{width:174.255000px;}
.wf{width:196.590000px;}
.wd{width:270.420000px;}
.w3{width:470.160000px;}
.w8{width:500.940000px;}
.w7{width:777.420000px;}
.w4{width:783.360000px;}
.w5{width:784.080000px;}
.w6{width:784.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.476000px;}
.x2d{left:4.320000px;}
.x22{left:7.905000px;}
.xb{left:10.800000px;}
.xd{left:13.140000px;}
.x2b{left:32.925000px;}
.x20{left:35.460000px;}
.x25{left:40.845000px;}
.x26{left:42.465000px;}
.x24{left:44.280000px;}
.x28{left:45.885000px;}
.x29{left:47.520000px;}
.x1e{left:50.251500px;}
.x27{left:52.725000px;}
.x5{left:54.000000px;}
.x12{left:61.200000px;}
.x11{left:65.160000px;}
.x13{left:72.000000px;}
.x1b{left:81.000000px;}
.x1{left:100.080000px;}
.x1c{left:108.036000px;}
.xf{left:118.656000px;}
.xc{left:126.936000px;}
.x6{left:161.670000px;}
.x14{left:165.810000px;}
.x15{left:178.770000px;}
.x1a{left:198.540000px;}
.x1f{left:209.730000px;}
.x10{left:251.175000px;}
.x18{left:257.070000px;}
.x16{left:265.755000px;}
.x1d{left:292.215000px;}
.xe{left:305.895000px;}
.x19{left:324.615000px;}
.x17{left:358.815000px;}
.x3{left:367.920000px;}
.x2a{left:421.275000px;}
.x4{left:460.080000px;}
.x21{left:461.460000px;}
.xa{left:465.945000px;}
.x2e{left:492.945000px;}
.x2f{left:519.945000px;}
.x23{left:567.660000px;}
.x2c{left:641.850000px;}
.x7{left:779.910000px;}
.x8{left:837.180000px;}
.x9{left:839.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-4.576000pt;}
.ls3{letter-spacing:-0.224000pt;}
.ls4{letter-spacing:-0.183467pt;}
.ls2{letter-spacing:-0.007680pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.015360pt;}
.lsa{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls8{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.912000pt;}
.lsc{letter-spacing:22.496000pt;}
.ls6{letter-spacing:46.816000pt;}
.lsb{letter-spacing:66.784000pt;}
.ws9{word-spacing:-17.295360pt;}
.ws0{word-spacing:-17.272320pt;}
.ws3{word-spacing:-14.752000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.192000pt;}
.ws4{word-spacing:-13.096533pt;}
.ws7{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.776000pt;}
.wsa{word-spacing:-7.424000pt;}
.ws6{word-spacing:0.000000pt;}
._31{margin-left:-6.384000pt;}
._2c{margin-left:-4.544000pt;}
._30{margin-left:-3.344000pt;}
._2f{margin-left:-2.064000pt;}
._1{margin-left:-0.986240pt;}
._0{width:1.302827pt;}
._9{width:2.224000pt;}
._6{width:3.600000pt;}
._3{width:5.232000pt;}
._11{width:6.768213pt;}
._8{width:8.208000pt;}
._7{width:9.264000pt;}
._d{width:10.411520pt;}
._c{width:12.912000pt;}
._25{width:13.865173pt;}
._15{width:14.784000pt;}
._14{width:15.840000pt;}
._24{width:16.829440pt;}
._16{width:17.749973pt;}
._12{width:18.826027pt;}
._10{width:19.787520pt;}
._b{width:20.784000pt;}
._a{width:21.696000pt;}
._e{width:22.866773pt;}
._f{width:23.797760pt;}
._1d{width:24.718720pt;}
._1a{width:25.632000pt;}
._13{width:26.880000pt;}
._5{width:27.840000pt;}
._4{width:28.848000pt;}
._20{width:30.192000pt;}
._23{width:31.385173pt;}
._27{width:32.400000pt;}
._29{width:33.936000pt;}
._18{width:35.236480pt;}
._17{width:36.480000pt;}
._28{width:37.440000pt;}
._21{width:38.736000pt;}
._22{width:39.648000pt;}
._26{width:40.985173pt;}
._1c{width:42.244480pt;}
._1b{width:43.440000pt;}
._1e{width:44.592000pt;}
._19{width:45.482667pt;}
._1f{width:47.132587pt;}
._2a{width:49.056000pt;}
._2b{width:50.016000pt;}
._32{width:53.008000pt;}
._2e{width:53.904000pt;}
._2d{width:95.741653pt;}
._2{width:1191.466667pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:59.008000pt;}
.fs4{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:2.266667pt;}
.y2{bottom:4.480000pt;}
.y4{bottom:5.440000pt;}
.y40{bottom:7.973333pt;}
.y24{bottom:8.573333pt;}
.y10e{bottom:8.626667pt;}
.y160{bottom:8.800000pt;}
.y112{bottom:8.946667pt;}
.y11f{bottom:8.960000pt;}
.y11d{bottom:8.986667pt;}
.y2b{bottom:9.026667pt;}
.y166{bottom:9.120000pt;}
.y27{bottom:11.293333pt;}
.y122{bottom:17.280000pt;}
.y8{bottom:22.400000pt;}
.y127{bottom:24.800000pt;}
.y165{bottom:24.960000pt;}
.y22{bottom:26.813333pt;}
.y121{bottom:33.120000pt;}
.y7{bottom:38.880000pt;}
.y164{bottom:40.800000pt;}
.y169{bottom:40.826667pt;}
.y11b{bottom:41.760000pt;}
.y125{bottom:48.986667pt;}
.y6{bottom:52.960000pt;}
.y163{bottom:56.640000pt;}
.y168{bottom:56.666667pt;}
.y116{bottom:57.586667pt;}
.y11a{bottom:57.626667pt;}
.y110{bottom:57.746667pt;}
.y37{bottom:71.226667pt;}
.y162{bottom:72.480000pt;}
.y120{bottom:76.480000pt;}
.y181{bottom:77.280000pt;}
.y151{bottom:78.720000pt;}
.ydd{bottom:81.120000pt;}
.yad{bottom:81.920000pt;}
.y1d{bottom:84.160000pt;}
.y36{bottom:88.826667pt;}
.ybf{bottom:89.120000pt;}
.y16{bottom:92.160000pt;}
.y180{bottom:93.120000pt;}
.y150{bottom:94.560000pt;}
.y7b{bottom:96.960000pt;}
.yac{bottom:97.760000pt;}
.y1c{bottom:100.000000pt;}
.y123{bottom:100.960000pt;}
.ybe{bottom:104.960000pt;}
.y35{bottom:106.426667pt;}
.y15{bottom:108.000000pt;}
.y17f{bottom:108.960000pt;}
.y7a{bottom:112.800000pt;}
.ycf{bottom:112.960000pt;}
.yab{bottom:113.760000pt;}
.y1af{bottom:114.240000pt;}
.y1b{bottom:115.840000pt;}
.y14f{bottom:118.880000pt;}
.ybd{bottom:120.800000pt;}
.y14{bottom:123.840000pt;}
.y34{bottom:124.186667pt;}
.y17e{bottom:124.640000pt;}
.y119{bottom:125.600000pt;}
.y79{bottom:128.800000pt;}
.y1f{bottom:129.093333pt;}
.yaa{bottom:129.600000pt;}
.y1ae{bottom:130.080000pt;}
.y1a{bottom:131.680000pt;}
.y14e{bottom:134.720000pt;}
.ybc{bottom:136.800000pt;}
.y13{bottom:139.680000pt;}
.y33{bottom:141.786667pt;}
.y78{bottom:144.640000pt;}
.yce{bottom:144.800000pt;}
.ya9{bottom:145.440000pt;}
.y1ad{bottom:145.920000pt;}
.y19{bottom:147.520000pt;}
.y17d{bottom:148.800000pt;}
.y11e{bottom:150.080000pt;}
.y14d{bottom:150.560000pt;}
.yd3{bottom:152.320000pt;}
.ybb{bottom:152.640000pt;}
.y12{bottom:155.520000pt;}
.y32{bottom:159.426667pt;}
.y77{bottom:160.480000pt;}
.ycd{bottom:160.640000pt;}
.ya8{bottom:161.280000pt;}
.y1ac{bottom:161.920000pt;}
.y18{bottom:163.520000pt;}
.y17c{bottom:164.640000pt;}
.yba{bottom:168.480000pt;}
.y11{bottom:171.520000pt;}
.y14c{bottom:174.400000pt;}
.y11c{bottom:174.560000pt;}
.y76{bottom:176.320000pt;}
.ycc{bottom:176.480000pt;}
.y30{bottom:177.026667pt;}
.ya7{bottom:177.120000pt;}
.y1ab{bottom:177.760000pt;}
.y17{bottom:179.360000pt;}
.y17b{bottom:180.480000pt;}
.yb9{bottom:184.026667pt;}
.ydc{bottom:184.346667pt;}
.y10{bottom:187.386667pt;}
.y14b{bottom:190.266667pt;}
.y75{bottom:192.186667pt;}
.ycb{bottom:192.346667pt;}
.ya6{bottom:192.986667pt;}
.y1aa{bottom:193.626667pt;}
.y2e{bottom:194.626667pt;}
.y17a{bottom:196.346667pt;}
.y115{bottom:199.240000pt;}
.ydb{bottom:200.186667pt;}
.yf{bottom:204.986667pt;}
.y14a{bottom:206.266667pt;}
.y74{bottom:208.026667pt;}
.yb8{bottom:208.186667pt;}
.ya5{bottom:208.986667pt;}
.y1a9{bottom:209.466667pt;}
.y179{bottom:212.346667pt;}
.y2d{bottom:212.386667pt;}
.yda{bottom:216.026667pt;}
.y149{bottom:222.106667pt;}
.y118{bottom:223.720000pt;}
.y73{bottom:224.026667pt;}
.ya4{bottom:224.826667pt;}
.y1a8{bottom:227.066667pt;}
.y178{bottom:228.186667pt;}
.yd9{bottom:232.026667pt;}
.y148{bottom:237.946667pt;}
.y2c{bottom:239.520000pt;}
.yb7{bottom:240.026667pt;}
.y177{bottom:244.026667pt;}
.y72{bottom:247.546667pt;}
.yd8{bottom:247.866667pt;}
.y117{bottom:248.200000pt;}
.ya3{bottom:248.666667pt;}
.y147{bottom:253.786667pt;}
.yb6{bottom:255.866667pt;}
.y1a7{bottom:256.186667pt;}
.y176{bottom:259.546667pt;}
.ya2{bottom:264.506667pt;}
.y39{bottom:267.546667pt;}
.y71{bottom:271.706667pt;}
.y1a6{bottom:272.186667pt;}
.y114{bottom:272.840000pt;}
.y146{bottom:277.626667pt;}
.ya1{bottom:280.346667pt;}
.y175{bottom:283.706667pt;}
.y70{bottom:287.546667pt;}
.y1a5{bottom:288.026667pt;}
.y38{bottom:293.146667pt;}
.y145{bottom:293.466667pt;}
.ya0{bottom:296.186667pt;}
.y10f{bottom:297.320000pt;}
.y174{bottom:299.546667pt;}
.y6f{bottom:303.386667pt;}
.y1a4{bottom:303.866667pt;}
.y144{bottom:309.466667pt;}
.yca{bottom:311.386667pt;}
.y9f{bottom:312.186667pt;}
.y173{bottom:315.546667pt;}
.y6e{bottom:319.386667pt;}
.y1a3{bottom:319.706667pt;}
.y113{bottom:321.800000pt;}
.y143{bottom:325.306667pt;}
.yc9{bottom:327.386667pt;}
.y9e{bottom:328.026667pt;}
.y172{bottom:331.386667pt;}
.y6d{bottom:335.226667pt;}
.y142{bottom:341.146667pt;}
.yc8{bottom:343.226667pt;}
.y9d{bottom:343.866667pt;}
.y111{bottom:346.440000pt;}
.y171{bottom:347.226667pt;}
.y6c{bottom:351.066667pt;}
.y141{bottom:356.666667pt;}
.yc7{bottom:359.066667pt;}
.y1a2{bottom:359.546667pt;}
.y9c{bottom:359.706667pt;}
.y170{bottom:363.066667pt;}
.y6b{bottom:366.906667pt;}
.y10d{bottom:370.920000pt;}
.yb5{bottom:374.906667pt;}
.y1a1{bottom:375.386667pt;}
.y9b{bottom:375.546667pt;}
.y16f{bottom:378.906667pt;}
.y140{bottom:380.826667pt;}
.yd7{bottom:382.426667pt;}
.y6a{bottom:382.746667pt;}
.yb4{bottom:390.746667pt;}
.y9a{bottom:391.586667pt;}
.y16e{bottom:394.946667pt;}
.y13f{bottom:396.866667pt;}
.y69{bottom:398.626667pt;}
.y31{bottom:398.946667pt;}
.y1a0{bottom:399.266667pt;}
.y10c{bottom:400.066667pt;}
.yb3{bottom:406.626667pt;}
.y99{bottom:407.426667pt;}
.y16d{bottom:410.466667pt;}
.y13e{bottom:412.706667pt;}
.y19f{bottom:415.106667pt;}
.y2f{bottom:416.546667pt;}
.y68{bottom:422.626667pt;}
.y98{bottom:422.946667pt;}
.y16c{bottom:428.386667pt;}
.y13d{bottom:428.546667pt;}
.y19e{bottom:430.626667pt;}
.yf0{bottom:432.386667pt;}
.y67{bottom:438.466667pt;}
.y10b{bottom:440.066667pt;}
.y97{bottom:440.866667pt;}
.y13c{bottom:444.386667pt;}
.yef{bottom:448.226667pt;}
.y16b{bottom:451.266667pt;}
.y66{bottom:454.306667pt;}
.y19d{bottom:454.786667pt;}
.y10a{bottom:455.906667pt;}
.yee{bottom:464.066667pt;}
.y13b{bottom:468.226667pt;}
.y96{bottom:469.986667pt;}
.y65{bottom:470.146667pt;}
.y19c{bottom:470.786667pt;}
.y109{bottom:471.746667pt;}
.y16a{bottom:476.066667pt;}
.yed{bottom:479.906667pt;}
.y13a{bottom:484.066667pt;}
.y64{bottom:485.666667pt;}
.y95{bottom:485.986667pt;}
.y108{bottom:487.746667pt;}
.yc6{bottom:493.986667pt;}
.y19b{bottom:494.626667pt;}
.yec{bottom:495.746667pt;}
.y139{bottom:500.066667pt;}
.y94{bottom:501.826667pt;}
.yd6{bottom:501.986667pt;}
.y107{bottom:503.586667pt;}
.y63{bottom:509.986667pt;}
.y19a{bottom:510.466667pt;}
.yeb{bottom:511.746667pt;}
.y93{bottom:517.666667pt;}
.y106{bottom:519.426667pt;}
.y138{bottom:523.906667pt;}
.ye{bottom:524.066667pt;}
.y62{bottom:525.826667pt;}
.y199{bottom:525.986667pt;}
.yea{bottom:529.346667pt;}
.y92{bottom:533.506667pt;}
.y105{bottom:535.266667pt;}
.y137{bottom:539.746667pt;}
.yd{bottom:540.866667pt;}
.y61{bottom:541.666667pt;}
.y2a{bottom:546.880000pt;}
.y198{bottom:550.146667pt;}
.y104{bottom:551.106667pt;}
.y136{bottom:555.586667pt;}
.y91{bottom:557.346667pt;}
.y60{bottom:557.506667pt;}
.ye9{bottom:558.466667pt;}
.y167{bottom:564.066667pt;}
.y197{bottom:566.146667pt;}
.y103{bottom:566.946667pt;}
.yc5{bottom:573.026667pt;}
.y90{bottom:573.186667pt;}
.y5f{bottom:573.346667pt;}
.ye8{bottom:574.306667pt;}
.y135{bottom:579.426667pt;}
.y196{bottom:581.986667pt;}
.y102{bottom:582.946667pt;}
.y29{bottom:583.586667pt;}
.y5e{bottom:588.866667pt;}
.y8f{bottom:589.186667pt;}
.y1c1{bottom:589.346667pt;}
.ye7{bottom:590.146667pt;}
.y134{bottom:595.426667pt;}
.yc4{bottom:597.186667pt;}
.y195{bottom:597.826667pt;}
.y101{bottom:598.466667pt;}
.y8e{bottom:605.053333pt;}
.yb2{bottom:605.213333pt;}
.ye6{bottom:606.173333pt;}
.y28{bottom:608.253333pt;}
.y133{bottom:611.293333pt;}
.y5d{bottom:613.213333pt;}
.y194{bottom:613.693333pt;}
.yd2{bottom:621.053333pt;}
.ye5{bottom:622.013333pt;}
.y100{bottom:622.653333pt;}
.y132{bottom:627.133333pt;}
.y8d{bottom:628.893333pt;}
.y5c{bottom:629.053333pt;}
.y1c0{bottom:629.213333pt;}
.yc{bottom:632.893333pt;}
.y161{bottom:636.253333pt;}
.yd5{bottom:636.893333pt;}
.y193{bottom:637.213333pt;}
.yff{bottom:638.493333pt;}
.y26{bottom:638.880000pt;}
.ye4{bottom:639.613333pt;}
.y131{bottom:642.973333pt;}
.y8c{bottom:644.413333pt;}
.y5b{bottom:644.893333pt;}
.y1bf{bottom:645.053333pt;}
.yd4{bottom:652.733333pt;}
.yfe{bottom:654.333333pt;}
.y5a{bottom:660.733333pt;}
.y1be{bottom:660.893333pt;}
.y192{bottom:661.373333pt;}
.y130{bottom:666.813333pt;}
.y8b{bottom:668.573333pt;}
.ye3{bottom:668.733333pt;}
.yfd{bottom:672.093333pt;}
.y59{bottom:676.573333pt;}
.y1bd{bottom:676.733333pt;}
.y191{bottom:677.373333pt;}
.y25{bottom:678.173333pt;}
.y12f{bottom:682.653333pt;}
.y8a{bottom:684.573333pt;}
.y58{bottom:692.573333pt;}
.y190{bottom:693.213333pt;}
.yfc{bottom:694.973333pt;}
.y12e{bottom:698.653333pt;}
.y89{bottom:700.413333pt;}
.ye2{bottom:700.573333pt;}
.yb{bottom:704.893333pt;}
.y57{bottom:708.413333pt;}
.y1bc{bottom:708.573333pt;}
.y18f{bottom:709.053333pt;}
.y23{bottom:710.080000pt;}
.y12d{bottom:714.493333pt;}
.y88{bottom:716.253333pt;}
.ye1{bottom:716.413333pt;}
.yfb{bottom:724.093333pt;}
.y56{bottom:724.253333pt;}
.y1bb{bottom:724.413333pt;}
.y12c{bottom:730.333333pt;}
.y87{bottom:732.093333pt;}
.ye0{bottom:732.253333pt;}
.y18e{bottom:732.573333pt;}
.yfa{bottom:739.933333pt;}
.y55{bottom:740.093333pt;}
.y1ba{bottom:740.253333pt;}
.y21{bottom:746.080000pt;}
.y12b{bottom:746.173333pt;}
.y86{bottom:747.933333pt;}
.ydf{bottom:748.093333pt;}
.y18d{bottom:748.413333pt;}
.y15f{bottom:753.533333pt;}
.yd1{bottom:755.613333pt;}
.yf9{bottom:755.773333pt;}
.y54{bottom:755.933333pt;}
.y1b9{bottom:756.093333pt;}
.y12a{bottom:762.013333pt;}
.y85{bottom:763.773333pt;}
.yc3{bottom:763.933333pt;}
.y53{bottom:771.773333pt;}
.y1b8{bottom:771.933333pt;}
.y18c{bottom:772.733333pt;}
.y129{bottom:777.693333pt;}
.yc2{bottom:779.773333pt;}
.y52{bottom:787.773333pt;}
.y18b{bottom:788.573333pt;}
.y128{bottom:790.973333pt;}
.y15e{bottom:793.533333pt;}
.yf8{bottom:795.613333pt;}
.yc1{bottom:795.773333pt;}
.y20{bottom:798.333333pt;}
.y51{bottom:803.613333pt;}
.y1b7{bottom:803.773333pt;}
.y18a{bottom:804.413333pt;}
.y15d{bottom:809.413333pt;}
.yf7{bottom:811.493333pt;}
.yc0{bottom:811.653333pt;}
.y50{bottom:819.493333pt;}
.y1b6{bottom:819.653333pt;}
.y189{bottom:820.293333pt;}
.y15c{bottom:825.413333pt;}
.yf6{bottom:827.013333pt;}
.yb1{bottom:827.493333pt;}
.y4f{bottom:835.013333pt;}
.y84{bottom:835.333333pt;}
.y1b5{bottom:835.493333pt;}
.y188{bottom:836.133333pt;}
.ya{bottom:840.933333pt;}
.y15b{bottom:841.253333pt;}
.yb0{bottom:843.333333pt;}
.y1e{bottom:847.040000pt;}
.y83{bottom:851.173333pt;}
.y1b4{bottom:851.333333pt;}
.y187{bottom:851.973333pt;}
.y15a{bottom:856.773333pt;}
.y3f{bottom:857.280000pt;}
.y4e{bottom:859.173333pt;}
.y82{bottom:867.173333pt;}
.y186{bottom:867.973333pt;}
.y4d{bottom:875.173333pt;}
.y159{bottom:880.933333pt;}
.y81{bottom:883.013333pt;}
.y1b3{bottom:883.173333pt;}
.y185{bottom:883.813333pt;}
.y3e{bottom:889.093333pt;}
.y4c{bottom:891.013333pt;}
.y158{bottom:896.773333pt;}
.yf5{bottom:898.853333pt;}
.y1b2{bottom:899.013333pt;}
.y4b{bottom:906.853333pt;}
.y184{bottom:907.653333pt;}
.y3d{bottom:912.453333pt;}
.y157{bottom:912.773333pt;}
.yf4{bottom:914.693333pt;}
.y1b1{bottom:914.853333pt;}
.y4a{bottom:922.693333pt;}
.y183{bottom:925.253333pt;}
.y156{bottom:928.613333pt;}
.yf3{bottom:930.533333pt;}
.y1b0{bottom:930.693333pt;}
.y3c{bottom:935.813333pt;}
.yaf{bottom:938.213333pt;}
.y49{bottom:938.533333pt;}
.y155{bottom:944.453333pt;}
.yf2{bottom:946.053333pt;}
.yd0{bottom:946.533333pt;}
.y48{bottom:954.373333pt;}
.y3b{bottom:959.173333pt;}
.y154{bottom:960.293333pt;}
.yae{bottom:962.373333pt;}
.y80{bottom:970.373333pt;}
.y153{bottom:976.133333pt;}
.y47{bottom:978.373333pt;}
.yde{bottom:985.893333pt;}
.y7f{bottom:986.213333pt;}
.y152{bottom:991.973333pt;}
.y46{bottom:994.213333pt;}
.y9{bottom:995.013333pt;}
.y7e{bottom:1002.053333pt;}
.y124{bottom:1003.653333pt;}
.y45{bottom:1010.053333pt;}
.y182{bottom:1017.573333pt;}
.y7d{bottom:1017.893333pt;}
.y44{bottom:1025.920000pt;}
.y126{bottom:1028.160000pt;}
.yf1{bottom:1033.760000pt;}
.y43{bottom:1041.760000pt;}
.y7c{bottom:1057.280000pt;}
.y42{bottom:1057.600000pt;}
.y1{bottom:1062.720000pt;}
.y41{bottom:1080.320000pt;}
.y5{bottom:1080.480000pt;}
.y3{bottom:1088.960000pt;}
.h2{height:15.520000pt;}
.h4{height:19.360000pt;}
.h1e{height:23.826667pt;}
.h23{height:23.836000pt;}
.h22{height:23.840000pt;}
.h1c{height:23.858667pt;}
.h27{height:23.860000pt;}
.h21{height:23.872000pt;}
.h28{height:24.000000pt;}
.he{height:25.600000pt;}
.h1b{height:33.515625pt;}
.h2c{height:39.562500pt;}
.h26{height:39.680000pt;}
.h3{height:43.215000pt;}
.h5{height:45.795000pt;}
.h7{height:47.085938pt;}
.ha{height:47.109375pt;}
.h24{height:48.316000pt;}
.h19{height:48.375000pt;}
.h1a{height:49.336436pt;}
.h8{height:49.622500pt;}
.h14{height:52.108438pt;}
.h17{height:52.134375pt;}
.h15{height:52.234000pt;}
.h16{height:53.535000pt;}
.h6{height:57.787500pt;}
.hf{height:59.340000pt;}
.h11{height:59.469000pt;}
.h10{height:60.800000pt;}
.h25{height:64.180000pt;}
.h9{height:69.660000pt;}
.h2a{height:71.546667pt;}
.h1f{height:72.786667pt;}
.h20{height:72.832000pt;}
.h1d{height:72.946667pt;}
.hc{height:75.465000pt;}
.h12{height:80.800000pt;}
.h2b{height:87.346667pt;}
.h29{height:87.360000pt;}
.hd{height:89.600000pt;}
.h18{height:119.520000pt;}
.hb{height:142.720000pt;}
.h13{height:232.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:75.840000pt;}
.wb{width:91.072000pt;}
.wc{width:93.746667pt;}
.wa{width:131.232000pt;}
.w9{width:136.822667pt;}
.we{width:154.893333pt;}
.wf{width:174.746667pt;}
.wd{width:240.373333pt;}
.w3{width:417.920000pt;}
.w8{width:445.280000pt;}
.w7{width:691.040000pt;}
.w4{width:696.320000pt;}
.w5{width:696.960000pt;}
.w6{width:697.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.312000pt;}
.x2d{left:3.840000pt;}
.x22{left:7.026667pt;}
.xb{left:9.600000pt;}
.xd{left:11.680000pt;}
.x2b{left:29.266667pt;}
.x20{left:31.520000pt;}
.x25{left:36.306667pt;}
.x26{left:37.746667pt;}
.x24{left:39.360000pt;}
.x28{left:40.786667pt;}
.x29{left:42.240000pt;}
.x1e{left:44.668000pt;}
.x27{left:46.866667pt;}
.x5{left:48.000000pt;}
.x12{left:54.400000pt;}
.x11{left:57.920000pt;}
.x13{left:64.000000pt;}
.x1b{left:72.000000pt;}
.x1{left:88.960000pt;}
.x1c{left:96.032000pt;}
.xf{left:105.472000pt;}
.xc{left:112.832000pt;}
.x6{left:143.706667pt;}
.x14{left:147.386667pt;}
.x15{left:158.906667pt;}
.x1a{left:176.480000pt;}
.x1f{left:186.426667pt;}
.x10{left:223.266667pt;}
.x18{left:228.506667pt;}
.x16{left:236.226667pt;}
.x1d{left:259.746667pt;}
.xe{left:271.906667pt;}
.x19{left:288.546667pt;}
.x17{left:318.946667pt;}
.x3{left:327.040000pt;}
.x2a{left:374.466667pt;}
.x4{left:408.960000pt;}
.x21{left:410.186667pt;}
.xa{left:414.173333pt;}
.x2e{left:438.173333pt;}
.x2f{left:462.173333pt;}
.x23{left:504.586667pt;}
.x2c{left:570.533333pt;}
.x7{left:693.253333pt;}
.x8{left:744.160000pt;}
.x9{left:746.080000pt;}
}




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