
    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_910cb1514f32f58440328e70.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.117676;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_47ff943053bd3eadee751cd1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.117676;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_14bea132a60ed2208bb37142.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.123047;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_ce5318c6aa725572282c89a3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.191406;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_141fe8fc5c5ed1285c9c6751.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.129395;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_5626186e28c59e9a6dcf5863.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.123047;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_7bf4343bfa4299e503dd0337.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.129395;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_1aa77abab00b1552b46ed6b6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.129395;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_c2452db08c1423628da34997.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.851562;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);}
.ve{vertical-align:-15.120000px;}
.v8{vertical-align:-12.240000px;}
.vf{vertical-align:-10.800000px;}
.v4{vertical-align:-9.360000px;}
.v9{vertical-align:-7.200000px;}
.v6{vertical-align:-5.040000px;}
.vb{vertical-align:-3.600000px;}
.v2{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.160000px;}
.vc{vertical-align:3.600000px;}
.v3{vertical-align:5.760000px;}
.va{vertical-align:7.200000px;}
.v5{vertical-align:9.360000px;}
.v10{vertical-align:10.800000px;}
.v7{vertical-align:12.240000px;}
.vd{vertical-align:15.120000px;}
.ls47{letter-spacing:-14.220000px;}
.ls4d{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.360000px;}
.ls4e{letter-spacing:-0.216000px;}
.ls4c{letter-spacing:-0.126000px;}
.ls5{letter-spacing:-0.108000px;}
.ls9{letter-spacing:-0.053280px;}
.ls3{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.007200px;}
.ls4{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.053280px;}
.ls32{letter-spacing:0.084240px;}
.ls14{letter-spacing:0.103680px;}
.ls4b{letter-spacing:0.108000px;}
.ls20{letter-spacing:0.123120px;}
.ls1{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls45{letter-spacing:0.198000px;}
.ls49{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.ls43{letter-spacing:0.324000px;}
.ls7{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.538560px;}
.ls4a{letter-spacing:0.540000px;}
.ls34{letter-spacing:0.589680px;}
.ls25{letter-spacing:0.617040px;}
.ls28{letter-spacing:0.630000px;}
.ls15{letter-spacing:0.681120px;}
.ls1f{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.721440px;}
.ls12{letter-spacing:0.843120px;}
.ls23{letter-spacing:0.900000px;}
.ls1a{letter-spacing:0.934560px;}
.ls44{letter-spacing:1.026000px;}
.ls21{letter-spacing:1.337040px;}
.ls26{letter-spacing:1.440000px;}
.ls41{letter-spacing:1.764000px;}
.ls11{letter-spacing:1.978560px;}
.ls17{letter-spacing:2.160000px;}
.ls2a{letter-spacing:3.094560px;}
.ls2b{letter-spacing:3.379680px;}
.ls40{letter-spacing:3.384000px;}
.lsa{letter-spacing:3.780000px;}
.ls3c{letter-spacing:3.834000px;}
.ls42{letter-spacing:3.852000px;}
.ls3a{letter-spacing:3.942000px;}
.ls39{letter-spacing:4.104000px;}
.ls29{letter-spacing:4.138560px;}
.ls2c{letter-spacing:4.189680px;}
.ls10{letter-spacing:4.230000px;}
.ls1e{letter-spacing:4.423680px;}
.ls31{letter-spacing:4.617360px;}
.ls37{letter-spacing:5.220000px;}
.ls2e{letter-spacing:5.578560px;}
.ls48{letter-spacing:7.380000px;}
.ls36{letter-spacing:8.100000px;}
.ls33{letter-spacing:8.458560px;}
.ls16{letter-spacing:8.854560px;}
.ls3e{letter-spacing:8.964000px;}
.ls19{letter-spacing:9.184320px;}
.ls1c{letter-spacing:9.229680px;}
.ls3f{letter-spacing:9.540000px;}
.ls3b{letter-spacing:9.756000px;}
.ls27{letter-spacing:10.087200px;}
.ls30{letter-spacing:10.643040px;}
.ls22{letter-spacing:10.980000px;}
.ls1d{letter-spacing:11.391120px;}
.ls13{letter-spacing:11.481120px;}
.ls24{letter-spacing:11.700000px;}
.ls18{letter-spacing:11.766240px;}
.ls3d{letter-spacing:14.904000px;}
.lsb{letter-spacing:15.300000px;}
.ls2f{letter-spacing:17.098560px;}
.ls38{letter-spacing:44.424000px;}
.ls35{letter-spacing:255.394560px;}
.ls46{letter-spacing:1434.324000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.ws7{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws10{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.482000px;}
.ws3{word-spacing:-13.392000px;}
.wsf{word-spacing:-13.374000px;}
.ws11{word-spacing:-13.284000px;}
.wse{word-spacing:-13.140000px;}
.wsa{word-spacing:-0.059760px;}
.wsc{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.wsd{word-spacing:14.850000px;}
.wsb{word-spacing:69.178800px;}
._22{margin-left:-1478.790000px;}
._1c{margin-left:-1469.397840px;}
._19{margin-left:-1008.840000px;}
._27{margin-left:-543.180000px;}
._29{margin-left:-529.344000px;}
._2f{margin-left:-489.612000px;}
._2d{margin-left:-481.476000px;}
._1f{margin-left:-383.760000px;}
._2a{margin-left:-380.586000px;}
._26{margin-left:-252.666000px;}
._32{margin-left:-202.026000px;}
._36{margin-left:-165.276000px;}
._1e{margin-left:-153.766080px;}
._33{margin-left:-138.420000px;}
._37{margin-left:-134.766000px;}
._2c{margin-left:-133.488000px;}
._25{margin-left:-109.260000px;}
._24{margin-left:-90.684000px;}
._18{margin-left:-70.345440px;}
._34{margin-left:-53.100000px;}
._23{margin-left:-14.202000px;}
._16{margin-left:-9.900000px;}
._1b{margin-left:-8.596080px;}
._21{margin-left:-7.470000px;}
._1a{margin-left:-6.102000px;}
._17{margin-left:-5.040000px;}
._10{margin-left:-4.021200px;}
._2{margin-left:-2.808000px;}
._0{margin-left:-1.080000px;}
._1{width:1.152000px;}
._7{width:3.096000px;}
._6{width:4.716000px;}
._3{width:6.372000px;}
._4{width:7.572000px;}
._5{width:9.252000px;}
._11{width:10.637280px;}
._12{width:12.075840px;}
._f{width:13.446000px;}
._b{width:14.904000px;}
._c{width:15.906000px;}
._a{width:17.982000px;}
._9{width:19.062000px;}
._8{width:20.142000px;}
._14{width:21.334320px;}
._e{width:23.050800px;}
._13{width:25.099200px;}
._d{width:26.832240px;}
._31{width:37.512720px;}
._30{width:132.402000px;}
._2e{width:134.616000px;}
._35{width:138.762000px;}
._20{width:154.677600px;}
._38{width:188.730000px;}
._28{width:344.460000px;}
._1d{width:400.895040px;}
._2b{width:531.552000px;}
._39{width:846.180000px;}
._15{width:1010.303760px;}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(84,141,212);}
.fc2{color:rgb(0,32,96);}
.fc4{color:rgb(64,64,64);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y100{bottom:2.880000px;}
.y105{bottom:3.060000px;}
.yff{bottom:18.360000px;}
.y104{bottom:18.540000px;}
.y127{bottom:33.840000px;}
.yfe{bottom:34.020000px;}
.y126{bottom:49.365000px;}
.yfd{bottom:49.500000px;}
.yf{bottom:57.780000px;}
.yfc{bottom:64.980000px;}
.y125{bottom:65.025000px;}
.y103{bottom:65.160000px;}
.ye{bottom:78.480000px;}
.yfb{bottom:80.460000px;}
.y124{bottom:80.505000px;}
.y102{bottom:80.640000px;}
.yfa{bottom:95.985000px;}
.y130{bottom:96.120000px;}
.yd{bottom:99.180000px;}
.y123{bottom:111.465000px;}
.y12f{bottom:111.600000px;}
.yf9{bottom:111.645000px;}
.yc{bottom:119.880000px;}
.y12e{bottom:127.080000px;}
.yf8{bottom:127.125000px;}
.yb{bottom:140.616000px;}
.yf7{bottom:142.605000px;}
.yf6{bottom:158.085000px;}
.ya{bottom:161.310000px;}
.y122{bottom:173.565000px;}
.yf4{bottom:173.745000px;}
.yf5{bottom:174.645000px;}
.y9{bottom:182.010000px;}
.yf3{bottom:189.225000px;}
.y8{bottom:200.910000px;}
.y121{bottom:204.705000px;}
.y7{bottom:212.070000px;}
.y120{bottom:220.185000px;}
.y6{bottom:227.550000px;}
.y11f{bottom:235.665000px;}
.y5{bottom:243.030000px;}
.y11e{bottom:251.325000px;}
.y4{bottom:259.590000px;}
.y11c{bottom:266.805000px;}
.y11d{bottom:267.705000px;}
.y42{bottom:279.390000px;}
.yc6{bottom:280.830000px;}
.y11b{bottom:282.285000px;}
.ycd{bottom:284.610000px;}
.y12c{bottom:285.330000px;}
.yf2{bottom:286.590000px;}
.y9d{bottom:290.550000px;}
.y41{bottom:295.230000px;}
.y152{bottom:297.210000px;}
.yc5{bottom:297.390000px;}
.yc4{bottom:298.110000px;}
.yf1{bottom:300.450000px;}
.ycc{bottom:301.890000px;}
.y17f{bottom:302.070000px;}
.y12b{bottom:302.610000px;}
.y9c{bottom:307.830000px;}
.y40{bottom:312.510000px;}
.y151{bottom:312.690000px;}
.y6e{bottom:314.310000px;}
.yc3{bottom:315.210000px;}
.yf0{bottom:317.550000px;}
.y128{bottom:318.810000px;}
.y12a{bottom:319.890000px;}
.y9b{bottom:325.830000px;}
.ycb{bottom:328.170000px;}
.y3f{bottom:329.610000px;}
.yc2{bottom:332.490000px;}
.y17e{bottom:333.030000px;}
.y6d{bottom:334.290000px;}
.yef{bottom:334.830000px;}
.y129{bottom:337.170000px;}
.y11a{bottom:341.310000px;}
.y150{bottom:343.830000px;}
.y9a{bottom:345.450000px;}
.y3e{bottom:346.890000px;}
.y17d{bottom:348.690000px;}
.yc1{bottom:349.770000px;}
.y6c{bottom:351.570000px;}
.y3d{bottom:352.110000px;}
.yca{bottom:354.450000px;}
.y14f{bottom:359.670000px;}
.y99{bottom:360.930000px;}
.y17c{bottom:364.170000px;}
.y3c{bottom:364.890000px;}
.yc0{bottom:367.050000px;}
.y6b{bottom:368.670000px;}
.yc9{bottom:371.550000px;}
.y98{bottom:376.410000px;}
.y14e{bottom:376.770000px;}
.yee{bottom:378.390000px;}
.y17b{bottom:379.650000px;}
.ybf{bottom:384.375000px;}
.y6a{bottom:385.995000px;}
.yc8{bottom:388.875000px;}
.y97{bottom:392.115000px;}
.y14d{bottom:394.095000px;}
.y17a{bottom:395.175000px;}
.ybe{bottom:401.655000px;}
.y69{bottom:403.275000px;}
.yed{bottom:404.715000px;}
.y3b{bottom:405.795000px;}
.yc7{bottom:406.155000px;}
.y96{bottom:407.595000px;}
.y14c{bottom:411.375000px;}
.y179{bottom:411.915000px;}
.ybd{bottom:418.755000px;}
.y68{bottom:420.555000px;}
.y3a{bottom:421.275000px;}
.yec{bottom:421.815000px;}
.y95{bottom:423.435000px;}
.y178{bottom:428.295000px;}
.y14b{bottom:428.655000px;}
.ybc{bottom:436.035000px;}
.y39{bottom:436.935000px;}
.y67{bottom:437.835000px;}
.yeb{bottom:439.095000px;}
.y94{bottom:440.715000px;}
.y177{bottom:443.775000px;}
.y14a{bottom:445.935000px;}
.y38{bottom:452.415000px;}
.ybb{bottom:453.315000px;}
.y66{bottom:455.115000px;}
.yea{bottom:456.375000px;}
.y93{bottom:457.815000px;}
.y176{bottom:459.255000px;}
.y149{bottom:463.215000px;}
.y37{bottom:467.895000px;}
.yba{bottom:470.595000px;}
.y65{bottom:472.215000px;}
.ye9{bottom:473.655000px;}
.y175{bottom:474.915000px;}
.y92{bottom:475.095000px;}
.y148{bottom:480.315000px;}
.y36{bottom:483.375000px;}
.yb9{bottom:487.875000px;}
.y64{bottom:489.495000px;}
.y174{bottom:490.395000px;}
.ye8{bottom:490.935000px;}
.y91{bottom:492.375000px;}
.y147{bottom:497.595000px;}
.y35{bottom:499.035000px;}
.yb8{bottom:505.155000px;}
.y173{bottom:505.875000px;}
.y63{bottom:506.775000px;}
.ye7{bottom:508.215000px;}
.y90{bottom:509.655000px;}
.y34{bottom:514.515000px;}
.y146{bottom:514.875000px;}
.y172{bottom:521.355000px;}
.yb7{bottom:522.255000px;}
.y62{bottom:524.055000px;}
.ye6{bottom:525.315000px;}
.y8f{bottom:526.935000px;}
.y33{bottom:529.995000px;}
.y145{bottom:532.155000px;}
.y171{bottom:537.015000px;}
.yb6{bottom:539.535000px;}
.y61{bottom:541.335000px;}
.ye5{bottom:542.595000px;}
.y8e{bottom:544.215000px;}
.y32{bottom:545.475000px;}
.y144{bottom:549.435000px;}
.y170{bottom:552.495000px;}
.yb5{bottom:556.815000px;}
.y60{bottom:558.615000px;}
.ye4{bottom:559.875000px;}
.y31{bottom:561.135000px;}
.y8d{bottom:561.315000px;}
.y143{bottom:566.715000px;}
.y16f{bottom:567.975000px;}
.yb4{bottom:574.095000px;}
.y5f{bottom:575.715000px;}
.y30{bottom:576.615000px;}
.y8c{bottom:578.595000px;}
.y16e{bottom:583.455000px;}
.y142{bottom:583.815000px;}
.ye3{bottom:586.155000px;}
.yb3{bottom:591.375000px;}
.y2f{bottom:592.095000px;}
.y5e{bottom:592.995000px;}
.y8b{bottom:595.875000px;}
.y16d{bottom:598.935000px;}
.y141{bottom:601.095000px;}
.y2e{bottom:607.575000px;}
.yb2{bottom:608.295000px;}
.y5d{bottom:610.275000px;}
.ye2{bottom:612.435000px;}
.y8a{bottom:613.155000px;}
.y16c{bottom:614.595000px;}
.y140{bottom:618.375000px;}
.y2d{bottom:623.235000px;}
.yb1{bottom:623.775000px;}
.y5c{bottom:627.555000px;}
.ye1{bottom:629.715000px;}
.y16b{bottom:630.075000px;}
.y89{bottom:630.435000px;}
.y13f{bottom:635.685000px;}
.y2c{bottom:638.745000px;}
.yb0{bottom:639.285000px;}
.y119{bottom:640.185000px;}
.y5b{bottom:644.865000px;}
.y16a{bottom:645.585000px;}
.ye0{bottom:646.845000px;}
.y88{bottom:647.745000px;}
.y13e{bottom:652.965000px;}
.y2b{bottom:654.225000px;}
.yaf{bottom:654.765000px;}
.y118{bottom:657.465000px;}
.y169{bottom:661.065000px;}
.y5a{bottom:662.145000px;}
.ydf{bottom:664.125000px;}
.y87{bottom:664.845000px;}
.y2a{bottom:669.705000px;}
.y13d{bottom:670.245000px;}
.yae{bottom:670.605000px;}
.y117{bottom:674.745000px;}
.y168{bottom:676.725000px;}
.y59{bottom:679.245000px;}
.yde{bottom:681.405000px;}
.y86{bottom:682.125000px;}
.y29{bottom:685.365000px;}
.y13c{bottom:687.345000px;}
.yad{bottom:687.885000px;}
.y116{bottom:692.025000px;}
.y167{bottom:692.205000px;}
.y58{bottom:696.525000px;}
.ydd{bottom:698.685000px;}
.y85{bottom:699.405000px;}
.y28{bottom:700.845000px;}
.y13b{bottom:704.625000px;}
.yac{bottom:705.165000px;}
.y166{bottom:707.685000px;}
.y115{bottom:709.305000px;}
.y57{bottom:713.805000px;}
.ydc{bottom:715.965000px;}
.y27{bottom:716.325000px;}
.y84{bottom:716.685000px;}
.y13a{bottom:721.905000px;}
.yab{bottom:722.445000px;}
.y165{bottom:723.165000px;}
.y114{bottom:726.405000px;}
.y56{bottom:731.085000px;}
.y26{bottom:731.805000px;}
.ydb{bottom:733.065000px;}
.y83{bottom:733.965000px;}
.y164{bottom:738.825000px;}
.y139{bottom:739.185000px;}
.yaa{bottom:739.725000px;}
.y113{bottom:743.685000px;}
.y25{bottom:747.465000px;}
.y55{bottom:748.365000px;}
.yda{bottom:750.345000px;}
.y82{bottom:751.065000px;}
.y163{bottom:754.305000px;}
.y138{bottom:756.465000px;}
.ya9{bottom:757.005000px;}
.y112{bottom:760.965000px;}
.y24{bottom:762.945000px;}
.y54{bottom:765.465000px;}
.yd9{bottom:767.625000px;}
.y81{bottom:768.345000px;}
.y162{bottom:769.785000px;}
.ya8{bottom:774.105000px;}
.y111{bottom:778.245000px;}
.y23{bottom:778.425000px;}
.y137{bottom:782.565000px;}
.y53{bottom:782.745000px;}
.yd8{bottom:784.905000px;}
.y161{bottom:785.265000px;}
.y80{bottom:785.625000px;}
.ya7{bottom:791.385000px;}
.y22{bottom:793.905000px;}
.y110{bottom:795.525000px;}
.y52{bottom:800.025000px;}
.y160{bottom:800.925000px;}
.yd7{bottom:802.185000px;}
.y7f{bottom:802.905000px;}
.ya6{bottom:808.665000px;}
.y136{bottom:808.845000px;}
.y21{bottom:809.565000px;}
.y10f{bottom:812.805000px;}
.y15f{bottom:816.405000px;}
.y51{bottom:817.305000px;}
.yd6{bottom:819.465000px;}
.y7e{bottom:820.185000px;}
.y20{bottom:825.045000px;}
.ya5{bottom:826.665000px;}
.y10e{bottom:829.905000px;}
.y15e{bottom:831.885000px;}
.y50{bottom:834.585000px;}
.y135{bottom:835.125000px;}
.yd5{bottom:836.565000px;}
.y7d{bottom:837.465000px;}
.y1f{bottom:840.525000px;}
.ya4{bottom:846.285000px;}
.y10d{bottom:847.185000px;}
.y15d{bottom:847.365000px;}
.y4f{bottom:851.865000px;}
.y134{bottom:852.405000px;}
.yd4{bottom:853.845000px;}
.y7c{bottom:854.565000px;}
.y1e{bottom:856.005000px;}
.ya3{bottom:861.765000px;}
.y15c{bottom:863.025000px;}
.y10c{bottom:864.465000px;}
.y4e{bottom:868.965000px;}
.y133{bottom:869.685000px;}
.yd3{bottom:871.125000px;}
.y1d{bottom:871.665000px;}
.y7b{bottom:871.845000px;}
.ya2{bottom:877.425000px;}
.y15b{bottom:878.505000px;}
.y10b{bottom:881.745000px;}
.y4d{bottom:886.290000px;}
.y132{bottom:887.010000px;}
.y1c{bottom:887.190000px;}
.yd2{bottom:888.450000px;}
.y7a{bottom:889.170000px;}
.ya1{bottom:894.030000px;}
.y10a{bottom:899.070000px;}
.y1b{bottom:902.670000px;}
.y4c{bottom:903.570000px;}
.yd1{bottom:905.730000px;}
.y79{bottom:906.450000px;}
.y15a{bottom:909.510000px;}
.y131{bottom:912.930000px;}
.y109{bottom:916.170000px;}
.y1a{bottom:918.150000px;}
.y4b{bottom:920.850000px;}
.ya0{bottom:923.010000px;}
.y78{bottom:923.730000px;}
.y159{bottom:925.170000px;}
.y108{bottom:933.450000px;}
.y19{bottom:933.630000px;}
.y12d{bottom:935.250000px;}
.y4a{bottom:938.130000px;}
.y9f{bottom:940.110000px;}
.y158{bottom:940.650000px;}
.y77{bottom:941.010000px;}
.y18{bottom:949.290000px;}
.y107{bottom:950.730000px;}
.y49{bottom:955.410000px;}
.y157{bottom:956.130000px;}
.yd0{bottom:957.390000px;}
.y76{bottom:958.110000px;}
.y17{bottom:964.770000px;}
.y9e{bottom:966.390000px;}
.y156{bottom:971.610000px;}
.ycf{bottom:974.670000px;}
.y75{bottom:975.390000px;}
.y106{bottom:976.650000px;}
.y16{bottom:980.250000px;}
.y48{bottom:981.510000px;}
.y180{bottom:983.130000px;}
.y155{bottom:987.270000px;}
.y74{bottom:992.670000px;}
.y15{bottom:996.810000px;}
.y101{bottom:998.970000px;}
.yce{bottom:1000.950000px;}
.y154{bottom:1002.750000px;}
.y47{bottom:1007.790000px;}
.y73{bottom:1009.950000px;}
.y13{bottom:1017.510000px;}
.y153{bottom:1018.230000px;}
.y14{bottom:1023.450000px;}
.y72{bottom:1027.230000px;}
.y46{bottom:1033.710000px;}
.y12{bottom:1038.210000px;}
.y71{bottom:1044.510000px;}
.y45{bottom:1049.370000px;}
.y11{bottom:1058.190000px;}
.y70{bottom:1061.610000px;}
.y44{bottom:1064.850000px;}
.y10{bottom:1076.190000px;}
.y6f{bottom:1078.890000px;}
.y43{bottom:1080.330000px;}
.y3{bottom:1157.760000px;}
.y2{bottom:1177.740000px;}
.y1{bottom:1195.020000px;}
.hc{height:34.855313px;}
.h6{height:44.282812px;}
.h5{height:48.410156px;}
.ha{height:48.647461px;}
.h18{height:49.543945px;}
.h9{height:49.570312px;}
.hd{height:53.077852px;}
.h7{height:53.573906px;}
.h2{height:53.836523px;}
.he{height:54.828633px;}
.h19{height:56.023945px;}
.hb{height:58.833281px;}
.h1a{height:59.623945px;}
.h1c{height:60.343945px;}
.hf{height:60.588633px;}
.h1b{height:61.063945px;}
.h13{height:62.028633px;}
.h11{height:62.748633px;}
.h20{height:63.949219px;}
.h4{height:64.546875px;}
.h3{height:64.863281px;}
.h16{height:65.628633px;}
.h8{height:66.093750px;}
.h14{height:66.348633px;}
.h12{height:67.068633px;}
.h15{height:67.788633px;}
.h10{height:69.948633px;}
.h1d{height:93.240000px;}
.h1f{height:139.680000px;}
.h17{height:201.810000px;}
.h1e{height:294.915000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:551.445000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:56.520000px;}
.x1e{left:84.825000px;}
.x1f{left:101.925000px;}
.x2e{left:112.185000px;}
.x3b{left:121.545000px;}
.x2c{left:133.425000px;}
.x5{left:170.129987px;}
.xf{left:174.989987px;}
.x45{left:189.045000px;}
.x8{left:190.109987px;}
.x11{left:191.369987px;}
.x3d{left:195.165000px;}
.x12{left:199.829987px;}
.xc{left:202.349987px;}
.x2a{left:206.505000px;}
.x3e{left:208.125000px;}
.x33{left:209.565000px;}
.x6{left:212.249987px;}
.x3a{left:214.245000px;}
.x10{left:224.129987px;}
.x28{left:226.845000px;}
.x31{left:230.085000px;}
.x3c{left:231.165000px;}
.x27{left:234.045000px;}
.x20{left:236.025000px;}
.x39{left:237.825000px;}
.x40{left:240.165000px;}
.x2d{left:243.405000px;}
.x21{left:247.545000px;}
.x35{left:249.375000px;}
.x2f{left:256.395000px;}
.x26{left:262.875000px;}
.x1d{left:263.955000px;}
.x22{left:271.125000px;}
.x29{left:272.955000px;}
.x43{left:274.215000px;}
.x30{left:278.355000px;}
.x3f{left:279.435000px;}
.x41{left:281.055000px;}
.x42{left:284.474987px;}
.x2b{left:286.455000px;}
.x44{left:287.715000px;}
.x37{left:296.535000px;}
.x34{left:299.594987px;}
.x2{left:304.994987px;}
.x9{left:317.594987px;}
.x38{left:324.975000px;}
.x7{left:329.474987px;}
.x1b{left:342.029987px;}
.x23{left:346.725000px;}
.x24{left:353.925000px;}
.x36{left:368.895000px;}
.xd{left:379.334987px;}
.x1c{left:383.249987px;}
.x25{left:405.765000px;}
.x13{left:410.654987px;}
.xe{left:428.324987px;}
.x14{left:450.434987px;}
.x3{left:454.064987px;}
.x1{left:467.564987px;}
.x1a{left:473.684987px;}
.x15{left:517.754987px;}
.x4{left:524.804987px;}
.xa{left:569.264973px;}
.xb{left:575.384987px;}
.x16{left:585.074987px;}
.x17{left:638.534987px;}
.x18{left:653.009987px;}
.x19{left:714.209987px;}
@media print{
.ve{vertical-align:-13.440000pt;}
.v8{vertical-align:-10.880000pt;}
.vf{vertical-align:-9.600000pt;}
.v4{vertical-align:-8.320000pt;}
.v9{vertical-align:-6.400000pt;}
.v6{vertical-align:-4.480000pt;}
.vb{vertical-align:-3.200000pt;}
.v2{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.920000pt;}
.vc{vertical-align:3.200000pt;}
.v3{vertical-align:5.120000pt;}
.va{vertical-align:6.400000pt;}
.v5{vertical-align:8.320000pt;}
.v10{vertical-align:9.600000pt;}
.v7{vertical-align:10.880000pt;}
.vd{vertical-align:13.440000pt;}
.ls47{letter-spacing:-12.640000pt;}
.ls4d{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls4e{letter-spacing:-0.192000pt;}
.ls4c{letter-spacing:-0.112000pt;}
.ls5{letter-spacing:-0.096000pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.006400pt;}
.ls4{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls32{letter-spacing:0.074880pt;}
.ls14{letter-spacing:0.092160pt;}
.ls4b{letter-spacing:0.096000pt;}
.ls20{letter-spacing:0.109440pt;}
.ls1{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls45{letter-spacing:0.176000pt;}
.ls49{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.ls43{letter-spacing:0.288000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.478720pt;}
.ls4a{letter-spacing:0.480000pt;}
.ls34{letter-spacing:0.524160pt;}
.ls25{letter-spacing:0.548480pt;}
.ls28{letter-spacing:0.560000pt;}
.ls15{letter-spacing:0.605440pt;}
.ls1f{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.641280pt;}
.ls12{letter-spacing:0.749440pt;}
.ls23{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:0.830720pt;}
.ls44{letter-spacing:0.912000pt;}
.ls21{letter-spacing:1.188480pt;}
.ls26{letter-spacing:1.280000pt;}
.ls41{letter-spacing:1.568000pt;}
.ls11{letter-spacing:1.758720pt;}
.ls17{letter-spacing:1.920000pt;}
.ls2a{letter-spacing:2.750720pt;}
.ls2b{letter-spacing:3.004160pt;}
.ls40{letter-spacing:3.008000pt;}
.lsa{letter-spacing:3.360000pt;}
.ls3c{letter-spacing:3.408000pt;}
.ls42{letter-spacing:3.424000pt;}
.ls3a{letter-spacing:3.504000pt;}
.ls39{letter-spacing:3.648000pt;}
.ls29{letter-spacing:3.678720pt;}
.ls2c{letter-spacing:3.724160pt;}
.ls10{letter-spacing:3.760000pt;}
.ls1e{letter-spacing:3.932160pt;}
.ls31{letter-spacing:4.104320pt;}
.ls37{letter-spacing:4.640000pt;}
.ls2e{letter-spacing:4.958720pt;}
.ls48{letter-spacing:6.560000pt;}
.ls36{letter-spacing:7.200000pt;}
.ls33{letter-spacing:7.518720pt;}
.ls16{letter-spacing:7.870720pt;}
.ls3e{letter-spacing:7.968000pt;}
.ls19{letter-spacing:8.163840pt;}
.ls1c{letter-spacing:8.204160pt;}
.ls3f{letter-spacing:8.480000pt;}
.ls3b{letter-spacing:8.672000pt;}
.ls27{letter-spacing:8.966400pt;}
.ls30{letter-spacing:9.460480pt;}
.ls22{letter-spacing:9.760000pt;}
.ls1d{letter-spacing:10.125440pt;}
.ls13{letter-spacing:10.205440pt;}
.ls24{letter-spacing:10.400000pt;}
.ls18{letter-spacing:10.458880pt;}
.ls3d{letter-spacing:13.248000pt;}
.lsb{letter-spacing:13.600000pt;}
.ls2f{letter-spacing:15.198720pt;}
.ls38{letter-spacing:39.488000pt;}
.ls35{letter-spacing:227.017387pt;}
.ls46{letter-spacing:1274.954667pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws10{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.984000pt;}
.ws3{word-spacing:-11.904000pt;}
.wsf{word-spacing:-11.888000pt;}
.ws11{word-spacing:-11.808000pt;}
.wse{word-spacing:-11.680000pt;}
.wsa{word-spacing:-0.053120pt;}
.wsc{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.wsd{word-spacing:13.200000pt;}
.wsb{word-spacing:61.492267pt;}
._22{margin-left:-1314.480000pt;}
._1c{margin-left:-1306.131413pt;}
._19{margin-left:-896.746667pt;}
._27{margin-left:-482.826667pt;}
._29{margin-left:-470.528000pt;}
._2f{margin-left:-435.210667pt;}
._2d{margin-left:-427.978667pt;}
._1f{margin-left:-341.120000pt;}
._2a{margin-left:-338.298667pt;}
._26{margin-left:-224.592000pt;}
._32{margin-left:-179.578667pt;}
._36{margin-left:-146.912000pt;}
._1e{margin-left:-136.680960pt;}
._33{margin-left:-123.040000pt;}
._37{margin-left:-119.792000pt;}
._2c{margin-left:-118.656000pt;}
._25{margin-left:-97.120000pt;}
._24{margin-left:-80.608000pt;}
._18{margin-left:-62.529280pt;}
._34{margin-left:-47.200000pt;}
._23{margin-left:-12.624000pt;}
._16{margin-left:-8.800000pt;}
._1b{margin-left:-7.640960pt;}
._21{margin-left:-6.640000pt;}
._1a{margin-left:-5.424000pt;}
._17{margin-left:-4.480000pt;}
._10{margin-left:-3.574400pt;}
._2{margin-left:-2.496000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.024000pt;}
._7{width:2.752000pt;}
._6{width:4.192000pt;}
._3{width:5.664000pt;}
._4{width:6.730667pt;}
._5{width:8.224000pt;}
._11{width:9.455360pt;}
._12{width:10.734080pt;}
._f{width:11.952000pt;}
._b{width:13.248000pt;}
._c{width:14.138667pt;}
._a{width:15.984000pt;}
._9{width:16.944000pt;}
._8{width:17.904000pt;}
._14{width:18.963840pt;}
._e{width:20.489600pt;}
._13{width:22.310400pt;}
._d{width:23.850880pt;}
._31{width:33.344640pt;}
._30{width:117.690667pt;}
._2e{width:119.658667pt;}
._35{width:123.344000pt;}
._20{width:137.491200pt;}
._38{width:167.760000pt;}
._28{width:306.186667pt;}
._1d{width:356.351147pt;}
._2b{width:472.490667pt;}
._39{width:752.160000pt;}
._15{width:898.047787pt;}
.fs4{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y100{bottom:2.560000pt;}
.y105{bottom:2.720000pt;}
.yff{bottom:16.320000pt;}
.y104{bottom:16.480000pt;}
.y127{bottom:30.080000pt;}
.yfe{bottom:30.240000pt;}
.y126{bottom:43.880000pt;}
.yfd{bottom:44.000000pt;}
.yf{bottom:51.360000pt;}
.yfc{bottom:57.760000pt;}
.y125{bottom:57.800000pt;}
.y103{bottom:57.920000pt;}
.ye{bottom:69.760000pt;}
.yfb{bottom:71.520000pt;}
.y124{bottom:71.560000pt;}
.y102{bottom:71.680000pt;}
.yfa{bottom:85.320000pt;}
.y130{bottom:85.440000pt;}
.yd{bottom:88.160000pt;}
.y123{bottom:99.080000pt;}
.y12f{bottom:99.200000pt;}
.yf9{bottom:99.240000pt;}
.yc{bottom:106.560000pt;}
.y12e{bottom:112.960000pt;}
.yf8{bottom:113.000000pt;}
.yb{bottom:124.992000pt;}
.yf7{bottom:126.760000pt;}
.yf6{bottom:140.520000pt;}
.ya{bottom:143.386667pt;}
.y122{bottom:154.280000pt;}
.yf4{bottom:154.440000pt;}
.yf5{bottom:155.240000pt;}
.y9{bottom:161.786667pt;}
.yf3{bottom:168.200000pt;}
.y8{bottom:178.586667pt;}
.y121{bottom:181.960000pt;}
.y7{bottom:188.506667pt;}
.y120{bottom:195.720000pt;}
.y6{bottom:202.266667pt;}
.y11f{bottom:209.480000pt;}
.y5{bottom:216.026667pt;}
.y11e{bottom:223.400000pt;}
.y4{bottom:230.746667pt;}
.y11c{bottom:237.160000pt;}
.y11d{bottom:237.960000pt;}
.y42{bottom:248.346667pt;}
.yc6{bottom:249.626667pt;}
.y11b{bottom:250.920000pt;}
.ycd{bottom:252.986667pt;}
.y12c{bottom:253.626667pt;}
.yf2{bottom:254.746667pt;}
.y9d{bottom:258.266667pt;}
.y41{bottom:262.426667pt;}
.y152{bottom:264.186667pt;}
.yc5{bottom:264.346667pt;}
.yc4{bottom:264.986667pt;}
.yf1{bottom:267.066667pt;}
.ycc{bottom:268.346667pt;}
.y17f{bottom:268.506667pt;}
.y12b{bottom:268.986667pt;}
.y9c{bottom:273.626667pt;}
.y40{bottom:277.786667pt;}
.y151{bottom:277.946667pt;}
.y6e{bottom:279.386667pt;}
.yc3{bottom:280.186667pt;}
.yf0{bottom:282.266667pt;}
.y128{bottom:283.386667pt;}
.y12a{bottom:284.346667pt;}
.y9b{bottom:289.626667pt;}
.ycb{bottom:291.706667pt;}
.y3f{bottom:292.986667pt;}
.yc2{bottom:295.546667pt;}
.y17e{bottom:296.026667pt;}
.y6d{bottom:297.146667pt;}
.yef{bottom:297.626667pt;}
.y129{bottom:299.706667pt;}
.y11a{bottom:303.386667pt;}
.y150{bottom:305.626667pt;}
.y9a{bottom:307.066667pt;}
.y3e{bottom:308.346667pt;}
.y17d{bottom:309.946667pt;}
.yc1{bottom:310.906667pt;}
.y6c{bottom:312.506667pt;}
.y3d{bottom:312.986667pt;}
.yca{bottom:315.066667pt;}
.y14f{bottom:319.706667pt;}
.y99{bottom:320.826667pt;}
.y17c{bottom:323.706667pt;}
.y3c{bottom:324.346667pt;}
.yc0{bottom:326.266667pt;}
.y6b{bottom:327.706667pt;}
.yc9{bottom:330.266667pt;}
.y98{bottom:334.586667pt;}
.y14e{bottom:334.906667pt;}
.yee{bottom:336.346667pt;}
.y17b{bottom:337.466667pt;}
.ybf{bottom:341.666667pt;}
.y6a{bottom:343.106667pt;}
.yc8{bottom:345.666667pt;}
.y97{bottom:348.546667pt;}
.y14d{bottom:350.306667pt;}
.y17a{bottom:351.266667pt;}
.ybe{bottom:357.026667pt;}
.y69{bottom:358.466667pt;}
.yed{bottom:359.746667pt;}
.y3b{bottom:360.706667pt;}
.yc7{bottom:361.026667pt;}
.y96{bottom:362.306667pt;}
.y14c{bottom:365.666667pt;}
.y179{bottom:366.146667pt;}
.ybd{bottom:372.226667pt;}
.y68{bottom:373.826667pt;}
.y3a{bottom:374.466667pt;}
.yec{bottom:374.946667pt;}
.y95{bottom:376.386667pt;}
.y178{bottom:380.706667pt;}
.y14b{bottom:381.026667pt;}
.ybc{bottom:387.586667pt;}
.y39{bottom:388.386667pt;}
.y67{bottom:389.186667pt;}
.yeb{bottom:390.306667pt;}
.y94{bottom:391.746667pt;}
.y177{bottom:394.466667pt;}
.y14a{bottom:396.386667pt;}
.y38{bottom:402.146667pt;}
.ybb{bottom:402.946667pt;}
.y66{bottom:404.546667pt;}
.yea{bottom:405.666667pt;}
.y93{bottom:406.946667pt;}
.y176{bottom:408.226667pt;}
.y149{bottom:411.746667pt;}
.y37{bottom:415.906667pt;}
.yba{bottom:418.306667pt;}
.y65{bottom:419.746667pt;}
.ye9{bottom:421.026667pt;}
.y175{bottom:422.146667pt;}
.y92{bottom:422.306667pt;}
.y148{bottom:426.946667pt;}
.y36{bottom:429.666667pt;}
.yb9{bottom:433.666667pt;}
.y64{bottom:435.106667pt;}
.y174{bottom:435.906667pt;}
.ye8{bottom:436.386667pt;}
.y91{bottom:437.666667pt;}
.y147{bottom:442.306667pt;}
.y35{bottom:443.586667pt;}
.yb8{bottom:449.026667pt;}
.y173{bottom:449.666667pt;}
.y63{bottom:450.466667pt;}
.ye7{bottom:451.746667pt;}
.y90{bottom:453.026667pt;}
.y34{bottom:457.346667pt;}
.y146{bottom:457.666667pt;}
.y172{bottom:463.426667pt;}
.yb7{bottom:464.226667pt;}
.y62{bottom:465.826667pt;}
.ye6{bottom:466.946667pt;}
.y8f{bottom:468.386667pt;}
.y33{bottom:471.106667pt;}
.y145{bottom:473.026667pt;}
.y171{bottom:477.346667pt;}
.yb6{bottom:479.586667pt;}
.y61{bottom:481.186667pt;}
.ye5{bottom:482.306667pt;}
.y8e{bottom:483.746667pt;}
.y32{bottom:484.866667pt;}
.y144{bottom:488.386667pt;}
.y170{bottom:491.106667pt;}
.yb5{bottom:494.946667pt;}
.y60{bottom:496.546667pt;}
.ye4{bottom:497.666667pt;}
.y31{bottom:498.786667pt;}
.y8d{bottom:498.946667pt;}
.y143{bottom:503.746667pt;}
.y16f{bottom:504.866667pt;}
.yb4{bottom:510.306667pt;}
.y5f{bottom:511.746667pt;}
.y30{bottom:512.546667pt;}
.y8c{bottom:514.306667pt;}
.y16e{bottom:518.626667pt;}
.y142{bottom:518.946667pt;}
.ye3{bottom:521.026667pt;}
.yb3{bottom:525.666667pt;}
.y2f{bottom:526.306667pt;}
.y5e{bottom:527.106667pt;}
.y8b{bottom:529.666667pt;}
.y16d{bottom:532.386667pt;}
.y141{bottom:534.306667pt;}
.y2e{bottom:540.066667pt;}
.yb2{bottom:540.706667pt;}
.y5d{bottom:542.466667pt;}
.ye2{bottom:544.386667pt;}
.y8a{bottom:545.026667pt;}
.y16c{bottom:546.306667pt;}
.y140{bottom:549.666667pt;}
.y2d{bottom:553.986667pt;}
.yb1{bottom:554.466667pt;}
.y5c{bottom:557.826667pt;}
.ye1{bottom:559.746667pt;}
.y16b{bottom:560.066667pt;}
.y89{bottom:560.386667pt;}
.y13f{bottom:565.053333pt;}
.y2c{bottom:567.773333pt;}
.yb0{bottom:568.253333pt;}
.y119{bottom:569.053333pt;}
.y5b{bottom:573.213333pt;}
.y16a{bottom:573.853333pt;}
.ye0{bottom:574.973333pt;}
.y88{bottom:575.773333pt;}
.y13e{bottom:580.413333pt;}
.y2b{bottom:581.533333pt;}
.yaf{bottom:582.013333pt;}
.y118{bottom:584.413333pt;}
.y169{bottom:587.613333pt;}
.y5a{bottom:588.573333pt;}
.ydf{bottom:590.333333pt;}
.y87{bottom:590.973333pt;}
.y2a{bottom:595.293333pt;}
.y13d{bottom:595.773333pt;}
.yae{bottom:596.093333pt;}
.y117{bottom:599.773333pt;}
.y168{bottom:601.533333pt;}
.y59{bottom:603.773333pt;}
.yde{bottom:605.693333pt;}
.y86{bottom:606.333333pt;}
.y29{bottom:609.213333pt;}
.y13c{bottom:610.973333pt;}
.yad{bottom:611.453333pt;}
.y116{bottom:615.133333pt;}
.y167{bottom:615.293333pt;}
.y58{bottom:619.133333pt;}
.ydd{bottom:621.053333pt;}
.y85{bottom:621.693333pt;}
.y28{bottom:622.973333pt;}
.y13b{bottom:626.333333pt;}
.yac{bottom:626.813333pt;}
.y166{bottom:629.053333pt;}
.y115{bottom:630.493333pt;}
.y57{bottom:634.493333pt;}
.ydc{bottom:636.413333pt;}
.y27{bottom:636.733333pt;}
.y84{bottom:637.053333pt;}
.y13a{bottom:641.693333pt;}
.yab{bottom:642.173333pt;}
.y165{bottom:642.813333pt;}
.y114{bottom:645.693333pt;}
.y56{bottom:649.853333pt;}
.y26{bottom:650.493333pt;}
.ydb{bottom:651.613333pt;}
.y83{bottom:652.413333pt;}
.y164{bottom:656.733333pt;}
.y139{bottom:657.053333pt;}
.yaa{bottom:657.533333pt;}
.y113{bottom:661.053333pt;}
.y25{bottom:664.413333pt;}
.y55{bottom:665.213333pt;}
.yda{bottom:666.973333pt;}
.y82{bottom:667.613333pt;}
.y163{bottom:670.493333pt;}
.y138{bottom:672.413333pt;}
.ya9{bottom:672.893333pt;}
.y112{bottom:676.413333pt;}
.y24{bottom:678.173333pt;}
.y54{bottom:680.413333pt;}
.yd9{bottom:682.333333pt;}
.y81{bottom:682.973333pt;}
.y162{bottom:684.253333pt;}
.ya8{bottom:688.093333pt;}
.y111{bottom:691.773333pt;}
.y23{bottom:691.933333pt;}
.y137{bottom:695.613333pt;}
.y53{bottom:695.773333pt;}
.yd8{bottom:697.693333pt;}
.y161{bottom:698.013333pt;}
.y80{bottom:698.333333pt;}
.ya7{bottom:703.453333pt;}
.y22{bottom:705.693333pt;}
.y110{bottom:707.133333pt;}
.y52{bottom:711.133333pt;}
.y160{bottom:711.933333pt;}
.yd7{bottom:713.053333pt;}
.y7f{bottom:713.693333pt;}
.ya6{bottom:718.813333pt;}
.y136{bottom:718.973333pt;}
.y21{bottom:719.613333pt;}
.y10f{bottom:722.493333pt;}
.y15f{bottom:725.693333pt;}
.y51{bottom:726.493333pt;}
.yd6{bottom:728.413333pt;}
.y7e{bottom:729.053333pt;}
.y20{bottom:733.373333pt;}
.ya5{bottom:734.813333pt;}
.y10e{bottom:737.693333pt;}
.y15e{bottom:739.453333pt;}
.y50{bottom:741.853333pt;}
.y135{bottom:742.333333pt;}
.yd5{bottom:743.613333pt;}
.y7d{bottom:744.413333pt;}
.y1f{bottom:747.133333pt;}
.ya4{bottom:752.253333pt;}
.y10d{bottom:753.053333pt;}
.y15d{bottom:753.213333pt;}
.y4f{bottom:757.213333pt;}
.y134{bottom:757.693333pt;}
.yd4{bottom:758.973333pt;}
.y7c{bottom:759.613333pt;}
.y1e{bottom:760.893333pt;}
.ya3{bottom:766.013333pt;}
.y15c{bottom:767.133333pt;}
.y10c{bottom:768.413333pt;}
.y4e{bottom:772.413333pt;}
.y133{bottom:773.053333pt;}
.yd3{bottom:774.333333pt;}
.y1d{bottom:774.813333pt;}
.y7b{bottom:774.973333pt;}
.ya2{bottom:779.933333pt;}
.y15b{bottom:780.893333pt;}
.y10b{bottom:783.773333pt;}
.y4d{bottom:787.813333pt;}
.y132{bottom:788.453333pt;}
.y1c{bottom:788.613333pt;}
.yd2{bottom:789.733333pt;}
.y7a{bottom:790.373333pt;}
.ya1{bottom:794.693333pt;}
.y10a{bottom:799.173333pt;}
.y1b{bottom:802.373333pt;}
.y4c{bottom:803.173333pt;}
.yd1{bottom:805.093333pt;}
.y79{bottom:805.733333pt;}
.y15a{bottom:808.453333pt;}
.y131{bottom:811.493333pt;}
.y109{bottom:814.373333pt;}
.y1a{bottom:816.133333pt;}
.y4b{bottom:818.533333pt;}
.ya0{bottom:820.453333pt;}
.y78{bottom:821.093333pt;}
.y159{bottom:822.373333pt;}
.y108{bottom:829.733333pt;}
.y19{bottom:829.893333pt;}
.y12d{bottom:831.333333pt;}
.y4a{bottom:833.893333pt;}
.y9f{bottom:835.653333pt;}
.y158{bottom:836.133333pt;}
.y77{bottom:836.453333pt;}
.y18{bottom:843.813333pt;}
.y107{bottom:845.093333pt;}
.y49{bottom:849.253333pt;}
.y157{bottom:849.893333pt;}
.yd0{bottom:851.013333pt;}
.y76{bottom:851.653333pt;}
.y17{bottom:857.573333pt;}
.y9e{bottom:859.013333pt;}
.y156{bottom:863.653333pt;}
.ycf{bottom:866.373333pt;}
.y75{bottom:867.013333pt;}
.y106{bottom:868.133333pt;}
.y16{bottom:871.333333pt;}
.y48{bottom:872.453333pt;}
.y180{bottom:873.893333pt;}
.y155{bottom:877.573333pt;}
.y74{bottom:882.373333pt;}
.y15{bottom:886.053333pt;}
.y101{bottom:887.973333pt;}
.yce{bottom:889.733333pt;}
.y154{bottom:891.333333pt;}
.y47{bottom:895.813333pt;}
.y73{bottom:897.733333pt;}
.y13{bottom:904.453333pt;}
.y153{bottom:905.093333pt;}
.y14{bottom:909.733333pt;}
.y72{bottom:913.093333pt;}
.y46{bottom:918.853333pt;}
.y12{bottom:922.853333pt;}
.y71{bottom:928.453333pt;}
.y45{bottom:932.773333pt;}
.y11{bottom:940.613333pt;}
.y70{bottom:943.653333pt;}
.y44{bottom:946.533333pt;}
.y10{bottom:956.613333pt;}
.y6f{bottom:959.013333pt;}
.y43{bottom:960.293333pt;}
.y3{bottom:1029.120000pt;}
.y2{bottom:1046.880000pt;}
.y1{bottom:1062.240000pt;}
.hc{height:30.982500pt;}
.h6{height:39.362500pt;}
.h5{height:43.031250pt;}
.ha{height:43.242188pt;}
.h18{height:44.039062pt;}
.h9{height:44.062500pt;}
.hd{height:47.180312pt;}
.h7{height:47.621250pt;}
.h2{height:47.854688pt;}
.he{height:48.736562pt;}
.h19{height:49.799063pt;}
.hb{height:52.296250pt;}
.h1a{height:52.999062pt;}
.h1c{height:53.639062pt;}
.hf{height:53.856562pt;}
.h1b{height:54.279062pt;}
.h13{height:55.136563pt;}
.h11{height:55.776563pt;}
.h20{height:56.843750pt;}
.h4{height:57.375000pt;}
.h3{height:57.656250pt;}
.h16{height:58.336563pt;}
.h8{height:58.750000pt;}
.h14{height:58.976563pt;}
.h12{height:59.616563pt;}
.h15{height:60.256563pt;}
.h10{height:62.176563pt;}
.h1d{height:82.880000pt;}
.h1f{height:124.160000pt;}
.h17{height:179.386667pt;}
.h1e{height:262.146667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:490.173333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:50.240000pt;}
.x1e{left:75.400000pt;}
.x1f{left:90.600000pt;}
.x2e{left:99.720000pt;}
.x3b{left:108.040000pt;}
.x2c{left:118.600000pt;}
.x5{left:151.226655pt;}
.xf{left:155.546655pt;}
.x45{left:168.040000pt;}
.x8{left:168.986655pt;}
.x11{left:170.106655pt;}
.x3d{left:173.480000pt;}
.x12{left:177.626655pt;}
.xc{left:179.866655pt;}
.x2a{left:183.560000pt;}
.x3e{left:185.000000pt;}
.x33{left:186.280000pt;}
.x6{left:188.666655pt;}
.x3a{left:190.440000pt;}
.x10{left:199.226655pt;}
.x28{left:201.640000pt;}
.x31{left:204.520000pt;}
.x3c{left:205.480000pt;}
.x27{left:208.040000pt;}
.x20{left:209.800000pt;}
.x39{left:211.400000pt;}
.x40{left:213.480000pt;}
.x2d{left:216.360000pt;}
.x21{left:220.040000pt;}
.x35{left:221.666667pt;}
.x2f{left:227.906667pt;}
.x26{left:233.666667pt;}
.x1d{left:234.626667pt;}
.x22{left:241.000000pt;}
.x29{left:242.626667pt;}
.x43{left:243.746667pt;}
.x30{left:247.426667pt;}
.x3f{left:248.386667pt;}
.x41{left:249.826667pt;}
.x42{left:252.866655pt;}
.x2b{left:254.626667pt;}
.x44{left:255.746667pt;}
.x37{left:263.586667pt;}
.x34{left:266.306655pt;}
.x2{left:271.106655pt;}
.x9{left:282.306655pt;}
.x38{left:288.866667pt;}
.x7{left:292.866655pt;}
.x1b{left:304.026655pt;}
.x23{left:308.200000pt;}
.x24{left:314.600000pt;}
.x36{left:327.906667pt;}
.xd{left:337.186655pt;}
.x1c{left:340.666655pt;}
.x25{left:360.680000pt;}
.x13{left:365.026655pt;}
.xe{left:380.733322pt;}
.x14{left:400.386655pt;}
.x3{left:403.613322pt;}
.x1{left:415.613322pt;}
.x1a{left:421.053322pt;}
.x15{left:460.226655pt;}
.x4{left:466.493322pt;}
.xa{left:506.013310pt;}
.xb{left:511.453322pt;}
.x16{left:520.066655pt;}
.x17{left:567.586655pt;}
.x18{left:580.453322pt;}
.x19{left:634.853322pt;}
}




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