
    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_9c9c5ff68a3a13bf8665a915.woff2')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_0a6cafb3bc9b903ab20c37d9.woff2')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_6d529d6d97ae5ec97f2cd295.woff2')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_c09951c7271047a557548a71.woff2')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_c526b61bdcbabcf07375c7bf.woff2')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_69266612f9717cd1d52bb989.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_29138e0a6d807218783dfaa8.woff2')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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_14ea8530187d6ae8f089f1d0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsc{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.121200px;}
.ls4{letter-spacing:-0.090000px;}
.ls11{letter-spacing:-0.066000px;}
.ls7{letter-spacing:-0.049800px;}
.ls6{letter-spacing:-0.018600px;}
.ls14{letter-spacing:-0.018360px;}
.ls5{letter-spacing:-0.008400px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.002886px;}
.lse{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls2{letter-spacing:0.065520px;}
.ls9{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.160800px;}
.lsb{letter-spacing:0.173400px;}
.ls10{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:47.726640px;}
.ls13{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.387200px;}
.ws9{word-spacing:-13.275360px;}
.ws1{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.208040px;}
.ws2{word-spacing:-13.207800px;}
.ws3{word-spacing:-13.176600px;}
.wsb{word-spacing:-13.160400px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._9{margin-left:-3.609601px;}
._8{margin-left:-2.464800px;}
._0{margin-left:-1.020000px;}
._3{width:1.258368px;}
._5{width:2.788393px;}
._b{width:4.449000px;}
._1{width:5.871516px;}
._2{width:7.129968px;}
._d{width:8.236200px;}
._10{width:9.859920px;}
._f{width:10.931640px;}
._e{width:11.963880px;}
._11{width:14.549040px;}
._6{width:15.751200px;}
._7{width:17.127602px;}
._a{width:18.710395px;}
._c{width:20.067005px;}
._4{width:21.462600px;}
._1b{width:25.070040px;}
._12{width:26.627040px;}
._13{width:27.986400px;}
._1d{width:30.083760px;}
._1e{width:31.191120px;}
._1f{width:32.509680px;}
._1a{width:43.887600px;}
._16{width:73.707120px;}
._15{width:76.472640px;}
._1c{width:82.514520px;}
._14{width:93.426480px;}
._19{width:98.596800px;}
._17{width:112.080600px;}
._18{width:116.632800px;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y8f{bottom:7.830000px;}
.y8d{bottom:7.920000px;}
.y91{bottom:25.380000px;}
.y8c{bottom:25.470000px;}
.yed{bottom:25.500000px;}
.yec{bottom:43.050000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y137{bottom:113.160000px;}
.y162{bottom:123.510000px;}
.y29{bottom:126.300000px;}
.ycd{bottom:130.260000px;}
.y136{bottom:130.800000px;}
.y18f{bottom:138.450000px;}
.y161{bottom:141.060000px;}
.y28{bottom:143.850000px;}
.ye8{bottom:145.830000px;}
.y135{bottom:148.350000px;}
.y18e{bottom:156.000000px;}
.ycc{bottom:157.530000px;}
.y160{bottom:158.610000px;}
.yb6{bottom:160.320000px;}
.y27{bottom:161.490000px;}
.y86{bottom:163.650000px;}
.y5b{bottom:165.720000px;}
.y134{bottom:165.900000px;}
.yb5{bottom:172.470000px;}
.y26{bottom:179.040000px;}
.ye7{bottom:181.380000px;}
.y18d{bottom:182.640000px;}
.y5a{bottom:183.270000px;}
.y133{bottom:183.540000px;}
.ycb{bottom:184.890000px;}
.y15f{bottom:194.250000px;}
.ye6{bottom:198.930000px;}
.y85{bottom:199.200000px;}
.yb4{bottom:199.830000px;}
.y18c{bottom:200.190000px;}
.y59{bottom:200.910000px;}
.y15e{bottom:211.800000px;}
.yca{bottom:212.250000px;}
.y25{bottom:214.590000px;}
.ye5{bottom:216.570000px;}
.y58{bottom:218.460000px;}
.y132{bottom:219.090000px;}
.y18b{bottom:226.830000px;}
.yb3{bottom:227.190000px;}
.y15d{bottom:229.440000px;}
.y24{bottom:232.230000px;}
.ye4{bottom:234.120000px;}
.y84{bottom:234.840000px;}
.y57{bottom:236.100000px;}
.y131{bottom:236.730000px;}
.yc9{bottom:239.610000px;}
.y18a{bottom:244.380000px;}
.y15c{bottom:246.990000px;}
.y23{bottom:249.780000px;}
.ye3{bottom:251.670000px;}
.y56{bottom:253.650000px;}
.y130{bottom:254.280000px;}
.yb2{bottom:254.460000px;}
.y15b{bottom:264.540000px;}
.yc8{bottom:266.880000px;}
.y22{bottom:267.420000px;}
.y83{bottom:270.390000px;}
.y189{bottom:270.930000px;}
.y16d{bottom:271.200000px;}
.ye2{bottom:278.310000px;}
.yb1{bottom:281.820000px;}
.y15a{bottom:282.180000px;}
.y21{bottom:284.970000px;}
.y188{bottom:288.570000px;}
.y16c{bottom:288.840000px;}
.y55{bottom:289.200000px;}
.y12f{bottom:289.830000px;}
.y20{bottom:302.520000px;}
.y82{bottom:305.940000px;}
.y54{bottom:306.840000px;}
.y12e{bottom:307.470000px;}
.yb0{bottom:309.180000px;}
.y119{bottom:313.770000px;}
.ye1{bottom:313.860000px;}
.y187{bottom:315.120000px;}
.y159{bottom:317.730000px;}
.y1f{bottom:320.160000px;}
.y81{bottom:323.580000px;}
.y53{bottom:324.390000px;}
.y12d{bottom:325.020000px;}
.y118{bottom:331.410000px;}
.ye0{bottom:331.500000px;}
.y186{bottom:332.760000px;}
.yc7{bottom:333.210000px;}
.y158{bottom:335.370000px;}
.yaf{bottom:336.540000px;}
.y1e{bottom:337.710000px;}
.y80{bottom:341.130000px;}
.y52{bottom:341.940000px;}
.y12c{bottom:342.660000px;}
.y117{bottom:348.960000px;}
.ydf{bottom:349.050000px;}
.y7f{bottom:358.770000px;}
.y185{bottom:359.310000px;}
.y51{bottom:359.580000px;}
.yae{bottom:363.810000px;}
.y1d{bottom:364.620000px;}
.yc6{bottom:368.760000px;}
.y12b{bottom:369.210000px;}
.y157{bottom:370.920000px;}
.y184{bottom:376.860000px;}
.y50{bottom:377.130000px;}
.y103{bottom:382.620000px;}
.y116{bottom:384.510000px;}
.yde{bottom:384.600000px;}
.yc5{bottom:386.400000px;}
.y156{bottom:388.470000px;}
.yad{bottom:391.170000px;}
.y7e{bottom:394.320000px;}
.y16b{bottom:394.770000px;}
.y102{bottom:400.170000px;}
.y115{bottom:402.150000px;}
.ydd{bottom:402.240000px;}
.y183{bottom:403.500000px;}
.yc4{bottom:403.950000px;}
.y12a{bottom:404.760000px;}
.y155{bottom:406.110000px;}
.y7d{bottom:411.870000px;}
.y4f{bottom:412.770000px;}
.y1c{bottom:412.950000px;}
.y101{bottom:417.810000px;}
.yac{bottom:418.530000px;}
.y114{bottom:419.700000px;}
.ydc{bottom:419.790000px;}
.y182{bottom:421.050000px;}
.yc3{bottom:421.500000px;}
.y129{bottom:422.400000px;}
.y154{bottom:423.660000px;}
.y9d{bottom:428.250000px;}
.y7c{bottom:429.510000px;}
.y4e{bottom:430.320000px;}
.y1b{bottom:430.860000px;}
.y153{bottom:441.300000px;}
.y9c{bottom:445.800000px;}
.yab{bottom:445.890000px;}
.y7b{bottom:447.060000px;}
.y181{bottom:447.690000px;}
.y4d{bottom:447.870000px;}
.yc2{bottom:448.140000px;}
.y100{bottom:453.360000px;}
.y113{bottom:455.250000px;}
.ydb{bottom:455.430000px;}
.y128{bottom:457.950000px;}
.y152{bottom:458.850000px;}
.y9b{bottom:463.440000px;}
.y180{bottom:465.240000px;}
.y4c{bottom:465.510000px;}
.y1a{bottom:467.850000px;}
.yff{bottom:470.940000px;}
.y112{bottom:472.920000px;}
.yda{bottom:473.010000px;}
.y127{bottom:475.530000px;}
.y151{bottom:476.430000px;}
.y9a{bottom:481.020000px;}
.y7a{bottom:482.730000px;}
.y4b{bottom:483.090000px;}
.yc1{bottom:483.720000px;}
.y19{bottom:485.430000px;}
.yfe{bottom:488.580000px;}
.y111{bottom:490.470000px;}
.yd9{bottom:490.560000px;}
.y17f{bottom:491.820000px;}
.y126{bottom:493.170000px;}
.y150{bottom:494.070000px;}
.yaa{bottom:494.610000px;}
.y79{bottom:500.280000px;}
.y4a{bottom:500.730000px;}
.yc0{bottom:501.360000px;}
.y18{bottom:503.070000px;}
.yfd{bottom:506.130000px;}
.yd8{bottom:508.200000px;}
.y17e{bottom:509.460000px;}
.y125{bottom:510.720000px;}
.y14f{bottom:511.620000px;}
.y99{bottom:514.050000px;}
.y78{bottom:517.830000px;}
.y16a{bottom:518.280000px;}
.y17{bottom:520.620000px;}
.yfc{bottom:523.770000px;}
.y110{bottom:526.110000px;}
.y14e{bottom:529.260000px;}
.ya9{bottom:530.160000px;}
.y77{bottom:535.470000px;}
.y49{bottom:536.280000px;}
.y17d{bottom:536.370000px;}
.ybf{bottom:536.910000px;}
.y124{bottom:537.360000px;}
.y16{bottom:538.170000px;}
.y10f{bottom:543.660000px;}
.yd7{bottom:543.750000px;}
.y14d{bottom:546.810000px;}
.y76{bottom:553.020000px;}
.y48{bottom:553.830000px;}
.ybe{bottom:554.460000px;}
.y15{bottom:555.810000px;}
.y98{bottom:558.960000px;}
.yfb{bottom:559.320000px;}
.y10e{bottom:561.210000px;}
.yd6{bottom:561.390000px;}
.y14c{bottom:564.360000px;}
.ya8{bottom:565.710000px;}
.y47{bottom:571.470000px;}
.ybd{bottom:572.100000px;}
.y123{bottom:572.910000px;}
.y14{bottom:573.360000px;}
.yfa{bottom:576.870000px;}
.yd5{bottom:578.940000px;}
.y14b{bottom:582.000000px;}
.ya7{bottom:583.350000px;}
.y17c{bottom:584.610000px;}
.y75{bottom:588.660000px;}
.y46{bottom:589.020000px;}
.ybc{bottom:589.650000px;}
.y122{bottom:590.460000px;}
.y13{bottom:591.000000px;}
.yf9{bottom:594.510000px;}
.yd4{bottom:596.490000px;}
.y10d{bottom:596.850000px;}
.ya6{bottom:600.900000px;}
.y17b{bottom:602.160000px;}
.y97{bottom:603.870000px;}
.y74{bottom:606.210000px;}
.y45{bottom:606.660000px;}
.y12{bottom:608.550000px;}
.y10c{bottom:614.400000px;}
.y14a{bottom:614.940000px;}
.y17a{bottom:619.800000px;}
.y73{bottom:623.760000px;}
.y169{bottom:624.210000px;}
.ybb{bottom:625.290000px;}
.y11{bottom:626.100000px;}
.ya5{bottom:627.540000px;}
.yf8{bottom:629.340000px;}
.yd3{bottom:632.130000px;}
.yf7{bottom:641.490000px;}
.y168{bottom:641.760000px;}
.y44{bottom:642.210000px;}
.y149{bottom:642.300000px;}
.yba{bottom:642.840000px;}
.y121{bottom:643.650000px;}
.y10{bottom:643.740000px;}
.ya4{bottom:645.090000px;}
.y96{bottom:648.780000px;}
.y10b{bottom:650.040000px;}
.y179{bottom:655.350000px;}
.y72{bottom:659.400000px;}
.y43{bottom:659.760000px;}
.yb9{bottom:660.390000px;}
.yf{bottom:661.290000px;}
.yd2{bottom:664.350000px;}
.y10a{bottom:667.590000px;}
.y148{bottom:669.660000px;}
.y178{bottom:672.990000px;}
.y71{bottom:676.950000px;}
.y42{bottom:677.400000px;}
.ye{bottom:678.930000px;}
.ya3{bottom:680.640000px;}
.y109{bottom:685.140000px;}
.yf6{bottom:686.490000px;}
.y177{bottom:690.540000px;}
.y95{bottom:693.690000px;}
.y70{bottom:694.590000px;}
.y41{bottom:694.950000px;}
.yb8{bottom:696.030000px;}
.yd{bottom:696.480000px;}
.y120{bottom:696.840000px;}
.y147{bottom:696.930000px;}
.ya2{bottom:698.280000px;}
.y6f{bottom:712.140000px;}
.y40{bottom:712.590000px;}
.yf5{bottom:713.760000px;}
.y11f{bottom:714.390000px;}
.ya1{bottom:715.830000px;}
.y176{bottom:717.450000px;}
.y108{bottom:720.780000px;}
.yc{bottom:723.390000px;}
.y146{bottom:724.290000px;}
.yb7{bottom:728.250000px;}
.y167{bottom:730.140000px;}
.y11e{bottom:732.030000px;}
.ya0{bottom:733.470000px;}
.y107{bottom:738.330000px;}
.y94{bottom:738.600000px;}
.y3f{bottom:739.500000px;}
.yf4{bottom:741.120000px;}
.y6e{bottom:747.690000px;}
.y11d{bottom:749.580000px;}
.y145{bottom:751.650000px;}
.y106{bottom:755.970000px;}
.y6d{bottom:765.330000px;}
.y175{bottom:765.690000px;}
.y11c{bottom:767.220000px;}
.y9f{bottom:769.020000px;}
.yb{bottom:771.630000px;}
.y144{bottom:778.920000px;}
.y6c{bottom:782.880000px;}
.y174{bottom:783.330000px;}
.y93{bottom:783.510000px;}
.yf3{bottom:786.030000px;}
.y3e{bottom:787.740000px;}
.y105{bottom:791.520000px;}
.y166{bottom:800.520000px;}
.y173{bottom:800.880000px;}
.y9e{bottom:801.240000px;}
.y11b{bottom:802.770000px;}
.y3d{bottom:805.290000px;}
.y143{bottom:806.280000px;}
.ya{bottom:807.450000px;}
.y198{bottom:813.480000px;}
.y6b{bottom:818.520000px;}
.y3c{bottom:822.930000px;}
.y104{bottom:823.740000px;}
.y92{bottom:828.420000px;}
.yf2{bottom:830.940000px;}
.y197{bottom:831.030000px;}
.y142{bottom:833.640000px;}
.y11a{bottom:834.990000px;}
.y6a{bottom:836.070000px;}
.y3b{bottom:840.480000px;}
.y9{bottom:843.450000px;}
.y69{bottom:853.620000px;}
.y196{bottom:857.670000px;}
.y3a{bottom:858.030000px;}
.yf1{bottom:858.300000px;}
.y141{bottom:861.000000px;}
.y68{bottom:871.260000px;}
.y172{bottom:871.620000px;}
.y90{bottom:873.420000px;}
.y195{bottom:875.220000px;}
.y39{bottom:875.670000px;}
.y8{bottom:883.230000px;}
.y140{bottom:888.270000px;}
.y67{bottom:888.810000px;}
.y171{bottom:889.260000px;}
.y38{bottom:893.220000px;}
.y7{bottom:901.230000px;}
.y194{bottom:901.860000px;}
.yf0{bottom:903.210000px;}
.y165{bottom:906.450000px;}
.y170{bottom:906.810000px;}
.y37{bottom:910.860000px;}
.y8e{bottom:918.330000px;}
.y6{bottom:919.230000px;}
.y193{bottom:919.410000px;}
.y66{bottom:924.450000px;}
.yef{bottom:930.570000px;}
.y13f{bottom:936.960000px;}
.y65{bottom:942.000000px;}
.y8b{bottom:945.600000px;}
.y192{bottom:945.960000px;}
.y36{bottom:946.410000px;}
.y5{bottom:951.540000px;}
.yee{bottom:957.930000px;}
.y64{bottom:959.550000px;}
.y191{bottom:963.600000px;}
.y35{bottom:963.960000px;}
.y13e{bottom:972.600000px;}
.y63{bottom:977.190000px;}
.y34{bottom:981.600000px;}
.yeb{bottom:985.200000px;}
.y4{bottom:989.880000px;}
.y13d{bottom:990.150000px;}
.y62{bottom:994.740000px;}
.y16f{bottom:995.190000px;}
.y33{bottom:999.150000px;}
.y190{bottom:1007.790000px;}
.y8a{bottom:1011.960000px;}
.y16e{bottom:1012.770000px;}
.y3{bottom:1014.570000px;}
.y32{bottom:1016.820000px;}
.y164{bottom:1021.680000px;}
.y13c{bottom:1025.820000px;}
.y61{bottom:1030.320000px;}
.y31{bottom:1034.370000px;}
.yd1{bottom:1042.740000px;}
.y13b{bottom:1043.370000px;}
.y89{bottom:1047.510000px;}
.y60{bottom:1047.960000px;}
.y30{bottom:1051.920000px;}
.yd0{bottom:1054.890000px;}
.y13a{bottom:1060.920000px;}
.y88{bottom:1065.150000px;}
.y5f{bottom:1065.510000px;}
.yea{bottom:1069.110000px;}
.y163{bottom:1069.920000px;}
.y139{bottom:1078.560000px;}
.y5e{bottom:1083.150000px;}
.y2f{bottom:1087.560000px;}
.y87{bottom:1091.700000px;}
.y138{bottom:1096.110000px;}
.ycf{bottom:1099.890000px;}
.y5d{bottom:1100.700000px;}
.ye9{bottom:1104.750000px;}
.y2e{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.yce{bottom:1127.160000px;}
.y5c{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hb{height:26.550000px;}
.hd{height:26.580000px;}
.he{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hf{height:40.539023px;}
.hc{height:44.100000px;}
.ha{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h10{height:61.770000px;}
.h11{height:61.793886px;}
.h8{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:67.950000px;}
.w5{width:82.260000px;}
.wc{width:90.630000px;}
.w7{width:94.680000px;}
.w17{width:94.710000px;}
.w15{width:101.880000px;}
.w14{width:106.470000px;}
.w9{width:111.240000px;}
.w12{width:119.340000px;}
.w13{width:123.240000px;}
.w11{width:123.840000px;}
.w18{width:125.550000px;}
.w8{width:125.580000px;}
.wf{width:127.440000px;}
.we{width:128.520000px;}
.wd{width:140.790000px;}
.wa{width:147.510000px;}
.w19{width:147.600000px;}
.w10{width:177.240000px;}
.w6{width:200.100000px;}
.wb{width:265.350000px;}
.w16{width:307.290000px;}
.w3{width:603.960000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x9{left:105.570000px;}
.x21{left:108.000000px;}
.x25{left:111.239987px;}
.x8{left:145.169987px;}
.x10{left:227.099987px;}
.x18{left:246.720000px;}
.x2{left:251.759987px;}
.xa{left:306.390000px;}
.x16{left:309.719987px;}
.x11{left:334.830000px;}
.x17{left:337.349987px;}
.x20{left:338.519987px;}
.x1e{left:359.129987px;}
.x19{left:371.280000px;}
.xe{left:395.579987px;}
.xb{left:401.790000px;}
.x22{left:416.010000px;}
.x12{left:426.180000px;}
.x1a{left:491.340000px;}
.x23{left:511.440000px;}
.xc{left:528.180000px;}
.x13{left:567.780000px;}
.x1b{left:615.300000px;}
.x24{left:637.710000px;}
.xd{left:640.230000px;}
.x5{left:673.530000px;}
.x14{left:697.020000px;}
.x1c{left:722.580000px;}
.x7{left:731.309987px;}
.xf{left:739.139987px;}
.x6{left:742.200000px;}
.x15{left:777.389987px;}
.x1d{left:795.389987px;}
.x1f{left:797.639987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.107733pt;}
.ls4{letter-spacing:-0.080000pt;}
.ls11{letter-spacing:-0.058667pt;}
.ls7{letter-spacing:-0.044267pt;}
.ls6{letter-spacing:-0.016533pt;}
.ls14{letter-spacing:-0.016320pt;}
.ls5{letter-spacing:-0.007467pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.002565pt;}
.lse{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls2{letter-spacing:0.058240pt;}
.ls9{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.142933pt;}
.lsb{letter-spacing:0.154133pt;}
.ls10{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:42.423680pt;}
.ls13{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.899733pt;}
.ws9{word-spacing:-11.800320pt;}
.ws1{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.740480pt;}
.ws2{word-spacing:-11.740267pt;}
.ws3{word-spacing:-11.712533pt;}
.wsb{word-spacing:-11.698133pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._9{margin-left:-3.208534pt;}
._8{margin-left:-2.190933pt;}
._0{margin-left:-0.906667pt;}
._3{width:1.118549pt;}
._5{width:2.478572pt;}
._b{width:3.954667pt;}
._1{width:5.219125pt;}
._2{width:6.337749pt;}
._d{width:7.321066pt;}
._10{width:8.764374pt;}
._f{width:9.717013pt;}
._e{width:10.634560pt;}
._11{width:12.932480pt;}
._6{width:14.001066pt;}
._7{width:15.224535pt;}
._a{width:16.631462pt;}
._c{width:17.837338pt;}
._4{width:19.077866pt;}
._1b{width:22.284480pt;}
._12{width:23.668480pt;}
._13{width:24.876800pt;}
._1d{width:26.741120pt;}
._1e{width:27.725440pt;}
._1f{width:28.897493pt;}
._1a{width:39.011200pt;}
._16{width:65.517440pt;}
._15{width:67.975680pt;}
._1c{width:73.346240pt;}
._14{width:83.045760pt;}
._19{width:87.641600pt;}
._17{width:99.627200pt;}
._18{width:103.673600pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:6.960000pt;}
.y8d{bottom:7.040000pt;}
.y91{bottom:22.560000pt;}
.y8c{bottom:22.640000pt;}
.yed{bottom:22.666667pt;}
.yec{bottom:38.266667pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y137{bottom:100.586667pt;}
.y162{bottom:109.786667pt;}
.y29{bottom:112.266667pt;}
.ycd{bottom:115.786667pt;}
.y136{bottom:116.266667pt;}
.y18f{bottom:123.066667pt;}
.y161{bottom:125.386667pt;}
.y28{bottom:127.866667pt;}
.ye8{bottom:129.626667pt;}
.y135{bottom:131.866667pt;}
.y18e{bottom:138.666667pt;}
.ycc{bottom:140.026667pt;}
.y160{bottom:140.986667pt;}
.yb6{bottom:142.506667pt;}
.y27{bottom:143.546667pt;}
.y86{bottom:145.466667pt;}
.y5b{bottom:147.306667pt;}
.y134{bottom:147.466667pt;}
.yb5{bottom:153.306667pt;}
.y26{bottom:159.146667pt;}
.ye7{bottom:161.226667pt;}
.y18d{bottom:162.346667pt;}
.y5a{bottom:162.906667pt;}
.y133{bottom:163.146667pt;}
.ycb{bottom:164.346667pt;}
.y15f{bottom:172.666667pt;}
.ye6{bottom:176.826667pt;}
.y85{bottom:177.066667pt;}
.yb4{bottom:177.626667pt;}
.y18c{bottom:177.946667pt;}
.y59{bottom:178.586667pt;}
.y15e{bottom:188.266667pt;}
.yca{bottom:188.666667pt;}
.y25{bottom:190.746667pt;}
.ye5{bottom:192.506667pt;}
.y58{bottom:194.186667pt;}
.y132{bottom:194.746667pt;}
.y18b{bottom:201.626667pt;}
.yb3{bottom:201.946667pt;}
.y15d{bottom:203.946667pt;}
.y24{bottom:206.426667pt;}
.ye4{bottom:208.106667pt;}
.y84{bottom:208.746667pt;}
.y57{bottom:209.866667pt;}
.y131{bottom:210.426667pt;}
.yc9{bottom:212.986667pt;}
.y18a{bottom:217.226667pt;}
.y15c{bottom:219.546667pt;}
.y23{bottom:222.026667pt;}
.ye3{bottom:223.706667pt;}
.y56{bottom:225.466667pt;}
.y130{bottom:226.026667pt;}
.yb2{bottom:226.186667pt;}
.y15b{bottom:235.146667pt;}
.yc8{bottom:237.226667pt;}
.y22{bottom:237.706667pt;}
.y83{bottom:240.346667pt;}
.y189{bottom:240.826667pt;}
.y16d{bottom:241.066667pt;}
.ye2{bottom:247.386667pt;}
.yb1{bottom:250.506667pt;}
.y15a{bottom:250.826667pt;}
.y21{bottom:253.306667pt;}
.y188{bottom:256.506667pt;}
.y16c{bottom:256.746667pt;}
.y55{bottom:257.066667pt;}
.y12f{bottom:257.626667pt;}
.y20{bottom:268.906667pt;}
.y82{bottom:271.946667pt;}
.y54{bottom:272.746667pt;}
.y12e{bottom:273.306667pt;}
.yb0{bottom:274.826667pt;}
.y119{bottom:278.906667pt;}
.ye1{bottom:278.986667pt;}
.y187{bottom:280.106667pt;}
.y159{bottom:282.426667pt;}
.y1f{bottom:284.586667pt;}
.y81{bottom:287.626667pt;}
.y53{bottom:288.346667pt;}
.y12d{bottom:288.906667pt;}
.y118{bottom:294.586667pt;}
.ye0{bottom:294.666667pt;}
.y186{bottom:295.786667pt;}
.yc7{bottom:296.186667pt;}
.y158{bottom:298.106667pt;}
.yaf{bottom:299.146667pt;}
.y1e{bottom:300.186667pt;}
.y80{bottom:303.226667pt;}
.y52{bottom:303.946667pt;}
.y12c{bottom:304.586667pt;}
.y117{bottom:310.186667pt;}
.ydf{bottom:310.266667pt;}
.y7f{bottom:318.906667pt;}
.y185{bottom:319.386667pt;}
.y51{bottom:319.626667pt;}
.yae{bottom:323.386667pt;}
.y1d{bottom:324.106667pt;}
.yc6{bottom:327.786667pt;}
.y12b{bottom:328.186667pt;}
.y157{bottom:329.706667pt;}
.y184{bottom:334.986667pt;}
.y50{bottom:335.226667pt;}
.y103{bottom:340.106667pt;}
.y116{bottom:341.786667pt;}
.yde{bottom:341.866667pt;}
.yc5{bottom:343.466667pt;}
.y156{bottom:345.306667pt;}
.yad{bottom:347.706667pt;}
.y7e{bottom:350.506667pt;}
.y16b{bottom:350.906667pt;}
.y102{bottom:355.706667pt;}
.y115{bottom:357.466667pt;}
.ydd{bottom:357.546667pt;}
.y183{bottom:358.666667pt;}
.yc4{bottom:359.066667pt;}
.y12a{bottom:359.786667pt;}
.y155{bottom:360.986667pt;}
.y7d{bottom:366.106667pt;}
.y4f{bottom:366.906667pt;}
.y1c{bottom:367.066667pt;}
.y101{bottom:371.386667pt;}
.yac{bottom:372.026667pt;}
.y114{bottom:373.066667pt;}
.ydc{bottom:373.146667pt;}
.y182{bottom:374.266667pt;}
.yc3{bottom:374.666667pt;}
.y129{bottom:375.466667pt;}
.y154{bottom:376.586667pt;}
.y9d{bottom:380.666667pt;}
.y7c{bottom:381.786667pt;}
.y4e{bottom:382.506667pt;}
.y1b{bottom:382.986667pt;}
.y153{bottom:392.266667pt;}
.y9c{bottom:396.266667pt;}
.yab{bottom:396.346667pt;}
.y7b{bottom:397.386667pt;}
.y181{bottom:397.946667pt;}
.y4d{bottom:398.106667pt;}
.yc2{bottom:398.346667pt;}
.y100{bottom:402.986667pt;}
.y113{bottom:404.666667pt;}
.ydb{bottom:404.826667pt;}
.y128{bottom:407.066667pt;}
.y152{bottom:407.866667pt;}
.y9b{bottom:411.946667pt;}
.y180{bottom:413.546667pt;}
.y4c{bottom:413.786667pt;}
.y1a{bottom:415.866667pt;}
.yff{bottom:418.613333pt;}
.y112{bottom:420.373333pt;}
.yda{bottom:420.453333pt;}
.y127{bottom:422.693333pt;}
.y151{bottom:423.493333pt;}
.y9a{bottom:427.573333pt;}
.y7a{bottom:429.093333pt;}
.y4b{bottom:429.413333pt;}
.yc1{bottom:429.973333pt;}
.y19{bottom:431.493333pt;}
.yfe{bottom:434.293333pt;}
.y111{bottom:435.973333pt;}
.yd9{bottom:436.053333pt;}
.y17f{bottom:437.173333pt;}
.y126{bottom:438.373333pt;}
.y150{bottom:439.173333pt;}
.yaa{bottom:439.653333pt;}
.y79{bottom:444.693333pt;}
.y4a{bottom:445.093333pt;}
.yc0{bottom:445.653333pt;}
.y18{bottom:447.173333pt;}
.yfd{bottom:449.893333pt;}
.yd8{bottom:451.733333pt;}
.y17e{bottom:452.853333pt;}
.y125{bottom:453.973333pt;}
.y14f{bottom:454.773333pt;}
.y99{bottom:456.933333pt;}
.y78{bottom:460.293333pt;}
.y16a{bottom:460.693333pt;}
.y17{bottom:462.773333pt;}
.yfc{bottom:465.573333pt;}
.y110{bottom:467.653333pt;}
.y14e{bottom:470.453333pt;}
.ya9{bottom:471.253333pt;}
.y77{bottom:475.973333pt;}
.y49{bottom:476.693333pt;}
.y17d{bottom:476.773333pt;}
.ybf{bottom:477.253333pt;}
.y124{bottom:477.653333pt;}
.y16{bottom:478.373333pt;}
.y10f{bottom:483.253333pt;}
.yd7{bottom:483.333333pt;}
.y14d{bottom:486.053333pt;}
.y76{bottom:491.573333pt;}
.y48{bottom:492.293333pt;}
.ybe{bottom:492.853333pt;}
.y15{bottom:494.053333pt;}
.y98{bottom:496.853333pt;}
.yfb{bottom:497.173333pt;}
.y10e{bottom:498.853333pt;}
.yd6{bottom:499.013333pt;}
.y14c{bottom:501.653333pt;}
.ya8{bottom:502.853333pt;}
.y47{bottom:507.973333pt;}
.ybd{bottom:508.533333pt;}
.y123{bottom:509.253333pt;}
.y14{bottom:509.653333pt;}
.yfa{bottom:512.773333pt;}
.yd5{bottom:514.613333pt;}
.y14b{bottom:517.333333pt;}
.ya7{bottom:518.533333pt;}
.y17c{bottom:519.653333pt;}
.y75{bottom:523.253333pt;}
.y46{bottom:523.573333pt;}
.ybc{bottom:524.133333pt;}
.y122{bottom:524.853333pt;}
.y13{bottom:525.333333pt;}
.yf9{bottom:528.453333pt;}
.yd4{bottom:530.213333pt;}
.y10d{bottom:530.533333pt;}
.ya6{bottom:534.133333pt;}
.y17b{bottom:535.253333pt;}
.y97{bottom:536.773333pt;}
.y74{bottom:538.853333pt;}
.y45{bottom:539.253333pt;}
.y12{bottom:540.933333pt;}
.y10c{bottom:546.133333pt;}
.y14a{bottom:546.613333pt;}
.y17a{bottom:550.933333pt;}
.y73{bottom:554.453333pt;}
.y169{bottom:554.853333pt;}
.ybb{bottom:555.813333pt;}
.y11{bottom:556.533333pt;}
.ya5{bottom:557.813333pt;}
.yf8{bottom:559.413333pt;}
.yd3{bottom:561.893333pt;}
.yf7{bottom:570.213333pt;}
.y168{bottom:570.453333pt;}
.y44{bottom:570.853333pt;}
.y149{bottom:570.933333pt;}
.yba{bottom:571.413333pt;}
.y121{bottom:572.133333pt;}
.y10{bottom:572.213333pt;}
.ya4{bottom:573.413333pt;}
.y96{bottom:576.693333pt;}
.y10b{bottom:577.813333pt;}
.y179{bottom:582.533333pt;}
.y72{bottom:586.133333pt;}
.y43{bottom:586.453333pt;}
.yb9{bottom:587.013333pt;}
.yf{bottom:587.813333pt;}
.yd2{bottom:590.533333pt;}
.y10a{bottom:593.413333pt;}
.y148{bottom:595.253333pt;}
.y178{bottom:598.213333pt;}
.y71{bottom:601.733333pt;}
.y42{bottom:602.133333pt;}
.ye{bottom:603.493333pt;}
.ya3{bottom:605.013333pt;}
.y109{bottom:609.013333pt;}
.yf6{bottom:610.213333pt;}
.y177{bottom:613.813333pt;}
.y95{bottom:616.613333pt;}
.y70{bottom:617.413333pt;}
.y41{bottom:617.733333pt;}
.yb8{bottom:618.693333pt;}
.yd{bottom:619.093333pt;}
.y120{bottom:619.413333pt;}
.y147{bottom:619.493333pt;}
.ya2{bottom:620.693333pt;}
.y6f{bottom:633.013333pt;}
.y40{bottom:633.413333pt;}
.yf5{bottom:634.453333pt;}
.y11f{bottom:635.013333pt;}
.ya1{bottom:636.293333pt;}
.y176{bottom:637.733333pt;}
.y108{bottom:640.693333pt;}
.yc{bottom:643.013333pt;}
.y146{bottom:643.813333pt;}
.yb7{bottom:647.333333pt;}
.y167{bottom:649.013333pt;}
.y11e{bottom:650.693333pt;}
.ya0{bottom:651.973333pt;}
.y107{bottom:656.293333pt;}
.y94{bottom:656.533333pt;}
.y3f{bottom:657.333333pt;}
.yf4{bottom:658.773333pt;}
.y6e{bottom:664.613333pt;}
.y11d{bottom:666.293333pt;}
.y145{bottom:668.133333pt;}
.y106{bottom:671.973333pt;}
.y6d{bottom:680.293333pt;}
.y175{bottom:680.613333pt;}
.y11c{bottom:681.973333pt;}
.y9f{bottom:683.573333pt;}
.yb{bottom:685.893333pt;}
.y144{bottom:692.373333pt;}
.y6c{bottom:695.893333pt;}
.y174{bottom:696.293333pt;}
.y93{bottom:696.453333pt;}
.yf3{bottom:698.693333pt;}
.y3e{bottom:700.213333pt;}
.y105{bottom:703.573333pt;}
.y166{bottom:711.573333pt;}
.y173{bottom:711.893333pt;}
.y9e{bottom:712.213333pt;}
.y11b{bottom:713.573333pt;}
.y3d{bottom:715.813333pt;}
.y143{bottom:716.693333pt;}
.ya{bottom:717.733333pt;}
.y198{bottom:723.093333pt;}
.y6b{bottom:727.573333pt;}
.y3c{bottom:731.493333pt;}
.y104{bottom:732.213333pt;}
.y92{bottom:736.373333pt;}
.yf2{bottom:738.613333pt;}
.y197{bottom:738.693333pt;}
.y142{bottom:741.013333pt;}
.y11a{bottom:742.213333pt;}
.y6a{bottom:743.173333pt;}
.y3b{bottom:747.093333pt;}
.y9{bottom:749.733333pt;}
.y69{bottom:758.773333pt;}
.y196{bottom:762.373333pt;}
.y3a{bottom:762.693333pt;}
.yf1{bottom:762.933333pt;}
.y141{bottom:765.333333pt;}
.y68{bottom:774.453333pt;}
.y172{bottom:774.773333pt;}
.y90{bottom:776.373333pt;}
.y195{bottom:777.973333pt;}
.y39{bottom:778.373333pt;}
.y8{bottom:785.093333pt;}
.y140{bottom:789.573333pt;}
.y67{bottom:790.053333pt;}
.y171{bottom:790.453333pt;}
.y38{bottom:793.973333pt;}
.y7{bottom:801.093333pt;}
.y194{bottom:801.653333pt;}
.yf0{bottom:802.853333pt;}
.y165{bottom:805.733333pt;}
.y170{bottom:806.053333pt;}
.y37{bottom:809.653333pt;}
.y8e{bottom:816.293333pt;}
.y6{bottom:817.093333pt;}
.y193{bottom:817.253333pt;}
.y66{bottom:821.733333pt;}
.yef{bottom:827.173333pt;}
.y13f{bottom:832.853333pt;}
.y65{bottom:837.333333pt;}
.y8b{bottom:840.533333pt;}
.y192{bottom:840.853333pt;}
.y36{bottom:841.253333pt;}
.y5{bottom:845.813333pt;}
.yee{bottom:851.493333pt;}
.y64{bottom:852.933333pt;}
.y191{bottom:856.533333pt;}
.y35{bottom:856.853333pt;}
.y13e{bottom:864.533333pt;}
.y63{bottom:868.613333pt;}
.y34{bottom:872.533333pt;}
.yeb{bottom:875.733333pt;}
.y4{bottom:879.893333pt;}
.y13d{bottom:880.133333pt;}
.y62{bottom:884.213333pt;}
.y16f{bottom:884.613333pt;}
.y33{bottom:888.133333pt;}
.y190{bottom:895.813333pt;}
.y8a{bottom:899.520000pt;}
.y16e{bottom:900.240000pt;}
.y3{bottom:901.840000pt;}
.y32{bottom:903.840000pt;}
.y164{bottom:908.160000pt;}
.y13c{bottom:911.840000pt;}
.y61{bottom:915.840000pt;}
.y31{bottom:919.440000pt;}
.yd1{bottom:926.880000pt;}
.y13b{bottom:927.440000pt;}
.y89{bottom:931.120000pt;}
.y60{bottom:931.520000pt;}
.y30{bottom:935.040000pt;}
.yd0{bottom:937.680000pt;}
.y13a{bottom:943.040000pt;}
.y88{bottom:946.800000pt;}
.y5f{bottom:947.120000pt;}
.yea{bottom:950.320000pt;}
.y163{bottom:951.040000pt;}
.y139{bottom:958.720000pt;}
.y5e{bottom:962.800000pt;}
.y2f{bottom:966.720000pt;}
.y87{bottom:970.400000pt;}
.y138{bottom:974.320000pt;}
.ycf{bottom:977.680000pt;}
.y5d{bottom:978.400000pt;}
.ye9{bottom:982.000000pt;}
.y2e{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.yce{bottom:1001.920000pt;}
.y5c{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.hd{height:23.626667pt;}
.he{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hf{height:36.034687pt;}
.hc{height:39.200000pt;}
.ha{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h10{height:54.906667pt;}
.h11{height:54.927899pt;}
.h8{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:60.400000pt;}
.w5{width:73.120000pt;}
.wc{width:80.560000pt;}
.w7{width:84.160000pt;}
.w17{width:84.186667pt;}
.w15{width:90.560000pt;}
.w14{width:94.640000pt;}
.w9{width:98.880000pt;}
.w12{width:106.080000pt;}
.w13{width:109.546667pt;}
.w11{width:110.080000pt;}
.w18{width:111.600000pt;}
.w8{width:111.626667pt;}
.wf{width:113.280000pt;}
.we{width:114.240000pt;}
.wd{width:125.146667pt;}
.wa{width:131.120000pt;}
.w19{width:131.200000pt;}
.w10{width:157.546667pt;}
.w6{width:177.866667pt;}
.wb{width:235.866667pt;}
.w16{width:273.146667pt;}
.w3{width:536.853333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x9{left:93.840000pt;}
.x21{left:96.000000pt;}
.x25{left:98.879988pt;}
.x8{left:129.039988pt;}
.x10{left:201.866655pt;}
.x18{left:219.306667pt;}
.x2{left:223.786655pt;}
.xa{left:272.346667pt;}
.x16{left:275.306655pt;}
.x11{left:297.626667pt;}
.x17{left:299.866655pt;}
.x20{left:300.906655pt;}
.x1e{left:319.226655pt;}
.x19{left:330.026667pt;}
.xe{left:351.626655pt;}
.xb{left:357.146667pt;}
.x22{left:369.786667pt;}
.x12{left:378.826667pt;}
.x1a{left:436.746667pt;}
.x23{left:454.613333pt;}
.xc{left:469.493333pt;}
.x13{left:504.693333pt;}
.x1b{left:546.933333pt;}
.x24{left:566.853333pt;}
.xd{left:569.093333pt;}
.x5{left:598.693333pt;}
.x14{left:619.573333pt;}
.x1c{left:642.293333pt;}
.x7{left:650.053322pt;}
.xf{left:657.013322pt;}
.x6{left:659.733333pt;}
.x15{left:691.013322pt;}
.x1d{left:707.013322pt;}
.x1f{left:709.013322pt;}
.x3{left:711.413322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  