
    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_5c759b940e1480275539c5b3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_ab308f30d1790d49f48ff836.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_eb48e122ce9eb3d725e6a496.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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_a98b6e4aac77bc3b05f74f84.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls2f{letter-spacing:-1.266000px;}
.ls30{letter-spacing:-0.960000px;}
.ls32{letter-spacing:-0.786000px;}
.ls12{letter-spacing:-0.660000px;}
.ls8{letter-spacing:-0.463800px;}
.lsd{letter-spacing:-0.272400px;}
.ls26{letter-spacing:-0.268800px;}
.ls31{letter-spacing:-0.240600px;}
.ls1e{letter-spacing:-0.214800px;}
.ls21{letter-spacing:-0.208800px;}
.ls7{letter-spacing:-0.132600px;}
.ls11{letter-spacing:-0.115800px;}
.ls28{letter-spacing:-0.069600px;}
.ls37{letter-spacing:-0.064800px;}
.lse{letter-spacing:-0.058320px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.038880px;}
.ls13{letter-spacing:0.060600px;}
.ls10{letter-spacing:0.066000px;}
.ls20{letter-spacing:0.067200px;}
.ls29{letter-spacing:0.093000px;}
.ls2c{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls9{letter-spacing:0.150000px;}
.ls4{letter-spacing:0.174000px;}
.lsf{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.186600px;}
.ls1{letter-spacing:0.269760px;}
.ls36{letter-spacing:0.306000px;}
.ls1f{letter-spacing:0.314400px;}
.ls27{letter-spacing:0.357000px;}
.lsc{letter-spacing:0.417000px;}
.ls35{letter-spacing:0.433440px;}
.ls2{letter-spacing:0.479520px;}
.lsb{letter-spacing:0.493800px;}
.ls15{letter-spacing:0.617760px;}
.ls38{letter-spacing:0.660000px;}
.lsa{letter-spacing:0.702000px;}
.ls22{letter-spacing:0.780000px;}
.ls1c{letter-spacing:0.894240px;}
.ls33{letter-spacing:1.026000px;}
.ls2b{letter-spacing:2.106720px;}
.ls25{letter-spacing:2.334240px;}
.ls19{letter-spacing:5.214240px;}
.ls2a{letter-spacing:5.706720px;}
.ls1a{letter-spacing:5.934240px;}
.ls1b{letter-spacing:15.786720px;}
.ls16{letter-spacing:17.226720px;}
.ls34{letter-spacing:19.530720px;}
.ls17{letter-spacing:20.106720px;}
.ls14{letter-spacing:21.546720px;}
.ls18{letter-spacing:22.266720px;}
.ls23{letter-spacing:24.426720px;}
.ls24{letter-spacing:25.866720px;}
.ls3{letter-spacing:38.106720px;}
.ls2e{letter-spacing:45.306720px;}
.ls2d{letter-spacing:46.026720px;}
.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:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws16{word-spacing:-14.165760px;}
.wsf{word-spacing:-13.862760px;}
.wsc{word-spacing:-13.820160px;}
.ws14{word-spacing:-13.811760px;}
.wsa{word-spacing:-13.692360px;}
.ws11{word-spacing:-13.598760px;}
.wsd{word-spacing:-13.572960px;}
.ws13{word-spacing:-13.566360px;}
.ws6{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.447440px;}
.ws15{word-spacing:-13.440960px;}
.ws10{word-spacing:-13.436160px;}
.ws8{word-spacing:-13.389960px;}
.wse{word-spacing:-13.296960px;}
.wsb{word-spacing:-13.290960px;}
.ws12{word-spacing:-13.236960px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws9{word-spacing:0.000000px;}
._1d{margin-left:-532.918560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._21{margin-left:-207.538560px;}
._f{margin-left:-203.010240px;}
._18{margin-left:-201.453120px;}
._17{margin-left:-200.226720px;}
._20{margin-left:-190.074240px;}
._25{margin-left:-179.841600px;}
._e{margin-left:-171.054720px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._10{margin-left:-152.558400px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._24{margin-left:-145.104000px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._23{margin-left:-109.410240px;}
._1c{margin-left:-102.529440px;}
._22{margin-left:-100.543680px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.123920px;}
._19{margin-left:-31.530240px;}
._3a{margin-left:-10.038240px;}
._37{margin-left:-4.541760px;}
._26{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._28{width:1.018560px;}
._29{width:2.050800px;}
._2d{width:3.150960px;}
._2e{width:4.302720px;}
._2f{width:5.973360px;}
._2c{width:7.467360px;}
._2b{width:8.665200px;}
._30{width:9.730800px;}
._31{width:10.799040px;}
._2a{width:11.925360px;}
._33{width:15.477840px;}
._32{width:16.673040px;}
._34{width:18.047520px;}
._39{width:21.492480px;}
._38{width:22.550640px;}
._3b{width:24.382080px;}
._35{width:27.439200px;}
._27{width:40.793760px;}
._36{width:79.182000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:6.480000px;}
.y98{bottom:6.660000px;}
.ye8{bottom:6.705000px;}
.yf2{bottom:7.020000px;}
.yef{bottom:7.200000px;}
.y31{bottom:7.380000px;}
.ye9{bottom:7.425000px;}
.y2d{bottom:7.560000px;}
.y36{bottom:7.605000px;}
.y34{bottom:8.640000px;}
.y2f{bottom:8.820000px;}
.ya7{bottom:17.100000px;}
.y9c{bottom:27.540000px;}
.ya0{bottom:27.720000px;}
.y9b{bottom:48.600000px;}
.ya2{bottom:48.780000px;}
.y6{bottom:61.416000px;}
.y9a{bottom:69.690000px;}
.y11e{bottom:92.196000px;}
.yaa{bottom:95.436000px;}
.y10e{bottom:96.876000px;}
.y2b{bottom:98.496000px;}
.y93{bottom:102.456000px;}
.yd2{bottom:105.876000px;}
.y65{bottom:107.316000px;}
.y11f{bottom:109.836000px;}
.y11d{bottom:113.256000px;}
.ya9{bottom:116.316000px;}
.y10d{bottom:117.936000px;}
.y2a{bottom:119.556000px;}
.y92{bottom:119.736000px;}
.yd1{bottom:126.936000px;}
.y64{bottom:128.376000px;}
.y11c{bottom:134.316000px;}
.ya8{bottom:137.376000px;}
.y10c{bottom:138.996000px;}
.y91{bottom:140.436000px;}
.y29{bottom:140.616000px;}
.yd0{bottom:147.996000px;}
.y63{bottom:149.436000px;}
.y11b{bottom:155.370000px;}
.ya6{bottom:159.330000px;}
.y10b{bottom:160.050000px;}
.y90{bottom:161.490000px;}
.y28{bottom:161.670000px;}
.ycf{bottom:169.050000px;}
.y62{bottom:170.490000px;}
.y11a{bottom:176.430000px;}
.y10a{bottom:181.110000px;}
.y8f{bottom:182.550000px;}
.y27{bottom:182.730000px;}
.yce{bottom:190.110000px;}
.y61{bottom:191.550000px;}
.y119{bottom:197.490000px;}
.y109{bottom:202.170000px;}
.y8e{bottom:203.610000px;}
.y26{bottom:203.790000px;}
.ycd{bottom:211.170000px;}
.y60{bottom:212.610000px;}
.y118{bottom:218.550000px;}
.y108{bottom:223.230000px;}
.y8d{bottom:224.670000px;}
.y25{bottom:224.850000px;}
.ycc{bottom:232.230000px;}
.y96{bottom:233.670000px;}
.y117{bottom:239.610000px;}
.y5f{bottom:242.670000px;}
.y107{bottom:244.110000px;}
.y8c{bottom:245.730000px;}
.y24{bottom:245.910000px;}
.ycb{bottom:253.290000px;}
.y95{bottom:254.730000px;}
.y116{bottom:260.670000px;}
.y5e{bottom:263.730000px;}
.y106{bottom:265.170000px;}
.y8b{bottom:266.790000px;}
.y23{bottom:266.970000px;}
.yca{bottom:268.410000px;}
.y94{bottom:275.790000px;}
.y115{bottom:281.730000px;}
.y5d{bottom:284.790000px;}
.y105{bottom:286.230000px;}
.y8a{bottom:287.850000px;}
.y22{bottom:288.030000px;}
.ya5{bottom:290.910000px;}
.y114{bottom:302.790000px;}
.y5c{bottom:305.850000px;}
.y104{bottom:307.290000px;}
.y89{bottom:308.910000px;}
.y21{bottom:309.090000px;}
.yc9{bottom:314.130000px;}
.y113{bottom:323.850000px;}
.y35{bottom:324.210000px;}
.y5b{bottom:326.910000px;}
.y103{bottom:328.395000px;}
.y88{bottom:330.015000px;}
.ya4{bottom:333.075000px;}
.yc8{bottom:344.235000px;}
.y112{bottom:344.955000px;}
.y33{bottom:346.215000px;}
.y5a{bottom:348.015000px;}
.y102{bottom:349.455000px;}
.y87{bottom:351.075000px;}
.yc7{bottom:365.295000px;}
.y111{bottom:366.015000px;}
.y59{bottom:369.075000px;}
.y32{bottom:369.255000px;}
.y101{bottom:370.515000px;}
.y86{bottom:372.135000px;}
.ya3{bottom:375.195000px;}
.yc6{bottom:386.355000px;}
.y110{bottom:387.075000px;}
.y58{bottom:390.135000px;}
.y100{bottom:391.575000px;}
.y30{bottom:392.475000px;}
.y85{bottom:402.195000px;}
.yc5{bottom:407.415000px;}
.y10f{bottom:408.135000px;}
.y57{bottom:411.195000px;}
.yff{bottom:412.635000px;}
.y2e{bottom:414.255000px;}
.ya1{bottom:417.315000px;}
.y84{bottom:423.255000px;}
.yc4{bottom:428.475000px;}
.y20{bottom:429.195000px;}
.yfe{bottom:433.695000px;}
.y2c{bottom:438.195000px;}
.y56{bottom:441.255000px;}
.y83{bottom:444.315000px;}
.yc3{bottom:449.535000px;}
.y1f{bottom:450.255000px;}
.yfd{bottom:454.755000px;}
.y55{bottom:462.315000px;}
.y82{bottom:465.375000px;}
.yc2{bottom:470.595000px;}
.y1e{bottom:471.315000px;}
.yfc{bottom:475.815000px;}
.y9f{bottom:480.495000px;}
.y54{bottom:483.375000px;}
.y81{bottom:486.435000px;}
.yc1{bottom:491.655000px;}
.y1d{bottom:492.375000px;}
.yfb{bottom:496.875000px;}
.y53{bottom:504.435000px;}
.y80{bottom:507.495000px;}
.yc0{bottom:512.715000px;}
.y1c{bottom:513.435000px;}
.yfa{bottom:517.935000px;}
.y9e{bottom:522.615000px;}
.y52{bottom:525.495000px;}
.y7f{bottom:528.555000px;}
.ybf{bottom:533.775000px;}
.y1b{bottom:534.495000px;}
.yf9{bottom:538.995000px;}
.y99{bottom:543.675000px;}
.y51{bottom:546.555000px;}
.y7e{bottom:549.615000px;}
.ybe{bottom:554.655000px;}
.y1a{bottom:555.555000px;}
.yf8{bottom:560.055000px;}
.y7d{bottom:570.675000px;}
.ybd{bottom:575.715000px;}
.y19{bottom:576.615000px;}
.yf7{bottom:581.115000px;}
.y7c{bottom:591.735000px;}
.ybc{bottom:596.805000px;}
.y18{bottom:597.705000px;}
.yf6{bottom:602.205000px;}
.ybb{bottom:617.865000px;}
.y17{bottom:618.765000px;}
.y7b{bottom:621.825000px;}
.yf5{bottom:623.265000px;}
.y97{bottom:628.665000px;}
.yf4{bottom:638.385000px;}
.yba{bottom:638.925000px;}
.y16{bottom:639.825000px;}
.y7a{bottom:642.885000px;}
.yb9{bottom:659.985000px;}
.yf3{bottom:660.165000px;}
.y15{bottom:660.705000px;}
.y50{bottom:660.885000px;}
.y79{bottom:663.945000px;}
.yb8{bottom:681.045000px;}
.y4f{bottom:681.945000px;}
.y78{bottom:685.005000px;}
.yb7{bottom:702.105000px;}
.y4e{bottom:703.005000px;}
.yf1{bottom:703.725000px;}
.y14{bottom:705.345000px;}
.y77{bottom:706.065000px;}
.yb6{bottom:723.165000px;}
.y4d{bottom:724.065000px;}
.yf0{bottom:725.505000px;}
.y76{bottom:727.125000px;}
.y13{bottom:735.225000px;}
.yb5{bottom:744.225000px;}
.y4c{bottom:745.125000px;}
.yee{bottom:747.285000px;}
.y75{bottom:748.005000px;}
.y12{bottom:756.285000px;}
.yb4{bottom:765.285000px;}
.y4b{bottom:766.005000px;}
.yed{bottom:768.885000px;}
.y74{bottom:769.065000px;}
.y11{bottom:777.345000px;}
.yb3{bottom:786.345000px;}
.y4a{bottom:787.065000px;}
.y73{bottom:790.125000px;}
.yec{bottom:790.665000px;}
.y10{bottom:798.405000px;}
.yb2{bottom:807.405000px;}
.y49{bottom:808.125000px;}
.y72{bottom:811.185000px;}
.yeb{bottom:812.445000px;}
.yf{bottom:819.465000px;}
.yb1{bottom:828.465000px;}
.y48{bottom:829.185000px;}
.yea{bottom:834.225000px;}
.ye{bottom:840.525000px;}
.y71{bottom:841.245000px;}
.yb0{bottom:849.525000px;}
.y47{bottom:850.245000px;}
.ye7{bottom:856.725000px;}
.yd{bottom:861.585000px;}
.y70{bottom:862.350000px;}
.yaf{bottom:870.630000px;}
.y46{bottom:871.350000px;}
.y6f{bottom:883.410000px;}
.yc{bottom:884.850000px;}
.ye6{bottom:885.930000px;}
.yae{bottom:891.690000px;}
.y45{bottom:892.410000px;}
.y6e{bottom:904.470000px;}
.ye5{bottom:906.990000px;}
.yb{bottom:911.130000px;}
.yad{bottom:912.750000px;}
.y44{bottom:913.470000px;}
.y6d{bottom:925.530000px;}
.ya{bottom:927.870000px;}
.ye4{bottom:928.050000px;}
.yac{bottom:933.810000px;}
.y43{bottom:934.530000px;}
.y6c{bottom:946.590000px;}
.ye3{bottom:949.110000px;}
.y9{bottom:950.190000px;}
.yab{bottom:954.870000px;}
.y42{bottom:955.590000px;}
.y6b{bottom:967.650000px;}
.ydb{bottom:969.990000px;}
.ye2{bottom:970.170000px;}
.y8{bottom:975.390000px;}
.y41{bottom:976.650000px;}
.y6a{bottom:988.710000px;}
.yda{bottom:991.050000px;}
.ye1{bottom:991.230000px;}
.y40{bottom:997.710000px;}
.y7{bottom:1009.050000px;}
.y69{bottom:1009.770000px;}
.yd9{bottom:1012.110000px;}
.ye0{bottom:1012.290000px;}
.y3f{bottom:1018.770000px;}
.y68{bottom:1030.830000px;}
.yd8{bottom:1033.170000px;}
.ydf{bottom:1033.350000px;}
.y3e{bottom:1039.830000px;}
.yde{bottom:1048.470000px;}
.y5{bottom:1049.190000px;}
.y67{bottom:1051.890000px;}
.yd7{bottom:1054.230000px;}
.y3d{bottom:1060.890000px;}
.ydd{bottom:1070.970000px;}
.y66{bottom:1072.950000px;}
.yd6{bottom:1075.290000px;}
.y4{bottom:1081.410000px;}
.y3c{bottom:1081.950000px;}
.ydc{bottom:1094.190000px;}
.yd5{bottom:1096.350000px;}
.y3b{bottom:1103.010000px;}
.y3{bottom:1113.630000px;}
.yd4{bottom:1117.410000px;}
.y3a{bottom:1124.070000px;}
.yd3{bottom:1138.500000px;}
.y39{bottom:1145.160000px;}
.y2{bottom:1145.700000px;}
.y38{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y37{bottom:1193.220000px;}
.h15{height:20.880000px;}
.h10{height:21.060000px;}
.h18{height:21.096000px;}
.h1a{height:21.600000px;}
.hc{height:21.780000px;}
.h19{height:21.816000px;}
.ha{height:21.960000px;}
.he{height:21.996000px;}
.h17{height:22.500000px;}
.h16{height:22.536000px;}
.hd{height:23.040000px;}
.hb{height:23.220000px;}
.h8{height:38.671172px;}
.hf{height:41.493516px;}
.h12{height:42.120000px;}
.h14{height:42.156000px;}
.h9{height:59.439023px;}
.h6{height:61.189805px;}
.h13{height:63.180000px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h4{height:83.787539px;}
.h11{height:84.096000px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:86.040000px;}
.wc{width:89.676000px;}
.wa{width:91.656000px;}
.w9{width:92.520000px;}
.w8{width:96.336000px;}
.wb{width:105.480000px;}
.wd{width:105.840000px;}
.we{width:106.236000px;}
.w15{width:116.820000px;}
.w14{width:117.036000px;}
.w16{width:127.656000px;}
.w5{width:170.130000px;}
.w7{width:191.370000px;}
.w3{width:319.710000px;}
.w11{width:324.435000px;}
.w13{width:330.555000px;}
.w10{width:335.370000px;}
.w4{width:358.815000px;}
.w12{width:363.450000px;}
.w6{width:404.175000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x15{left:-3.240000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x12{left:20.880000px;}
.x6{left:53.999987px;}
.x1c{left:59.039987px;}
.x13{left:62.100000px;}
.xf{left:63.180000px;}
.xe{left:70.199987px;}
.x7{left:75.599987px;}
.xa{left:86.039987px;}
.x26{left:96.515987px;}
.x20{left:99.576000px;}
.x9{left:104.975987px;}
.xb{left:106.776000px;}
.x1d{left:108.035987px;}
.x1e{left:116.676000px;}
.x14{left:158.430000px;}
.x5{left:181.469987px;}
.x22{left:228.630000px;}
.x10{left:233.310000px;}
.x16{left:250.950000px;}
.x3{left:286.634987px;}
.x17{left:342.615000px;}
.x23{left:345.675000px;}
.x2{left:350.534987px;}
.x4{left:419.114987px;}
.xd{left:426.495000px;}
.x18{left:448.095000px;}
.x1f{left:452.055000px;}
.x21{left:463.035000px;}
.x1{left:479.264987px;}
.x19{left:537.765000px;}
.x24{left:590.145000px;}
.x11{left:637.485000px;}
.x1a{left:643.605000px;}
.x25{left:717.810000px;}
.x1b{left:749.850000px;}
.x8{left:839.129987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2f{letter-spacing:-1.125333pt;}
.ls30{letter-spacing:-0.853333pt;}
.ls32{letter-spacing:-0.698667pt;}
.ls12{letter-spacing:-0.586667pt;}
.ls8{letter-spacing:-0.412267pt;}
.lsd{letter-spacing:-0.242133pt;}
.ls26{letter-spacing:-0.238933pt;}
.ls31{letter-spacing:-0.213867pt;}
.ls1e{letter-spacing:-0.190933pt;}
.ls21{letter-spacing:-0.185600pt;}
.ls7{letter-spacing:-0.117867pt;}
.ls11{letter-spacing:-0.102933pt;}
.ls28{letter-spacing:-0.061867pt;}
.ls37{letter-spacing:-0.057600pt;}
.lse{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.034560pt;}
.ls13{letter-spacing:0.053867pt;}
.ls10{letter-spacing:0.058667pt;}
.ls20{letter-spacing:0.059733pt;}
.ls29{letter-spacing:0.082667pt;}
.ls2c{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls9{letter-spacing:0.133333pt;}
.ls4{letter-spacing:0.154667pt;}
.lsf{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.165867pt;}
.ls1{letter-spacing:0.239787pt;}
.ls36{letter-spacing:0.272000pt;}
.ls1f{letter-spacing:0.279467pt;}
.ls27{letter-spacing:0.317333pt;}
.lsc{letter-spacing:0.370667pt;}
.ls35{letter-spacing:0.385280pt;}
.ls2{letter-spacing:0.426240pt;}
.lsb{letter-spacing:0.438933pt;}
.ls15{letter-spacing:0.549120pt;}
.ls38{letter-spacing:0.586667pt;}
.lsa{letter-spacing:0.624000pt;}
.ls22{letter-spacing:0.693333pt;}
.ls1c{letter-spacing:0.794880pt;}
.ls33{letter-spacing:0.912000pt;}
.ls2b{letter-spacing:1.872640pt;}
.ls25{letter-spacing:2.074880pt;}
.ls19{letter-spacing:4.634880pt;}
.ls2a{letter-spacing:5.072640pt;}
.ls1a{letter-spacing:5.274880pt;}
.ls1b{letter-spacing:14.032640pt;}
.ls16{letter-spacing:15.312640pt;}
.ls34{letter-spacing:17.360640pt;}
.ls17{letter-spacing:17.872640pt;}
.ls14{letter-spacing:19.152640pt;}
.ls18{letter-spacing:19.792640pt;}
.ls23{letter-spacing:21.712640pt;}
.ls24{letter-spacing:22.992640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls2e{letter-spacing:40.272640pt;}
.ls2d{letter-spacing:40.912640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws16{word-spacing:-12.591787pt;}
.wsf{word-spacing:-12.322453pt;}
.wsc{word-spacing:-12.284587pt;}
.ws14{word-spacing:-12.277120pt;}
.wsa{word-spacing:-12.170987pt;}
.ws11{word-spacing:-12.087787pt;}
.wsd{word-spacing:-12.064853pt;}
.ws13{word-spacing:-12.058987pt;}
.ws6{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.953280pt;}
.ws15{word-spacing:-11.947520pt;}
.ws10{word-spacing:-11.943253pt;}
.ws8{word-spacing:-11.902187pt;}
.wse{word-spacing:-11.819520pt;}
.wsb{word-spacing:-11.814187pt;}
.ws12{word-spacing:-11.766187pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws9{word-spacing:0.000000pt;}
._1d{margin-left:-473.705387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._21{margin-left:-184.478720pt;}
._f{margin-left:-180.453547pt;}
._18{margin-left:-179.069440pt;}
._17{margin-left:-177.979307pt;}
._20{margin-left:-168.954880pt;}
._25{margin-left:-159.859200pt;}
._e{margin-left:-152.048640pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._10{margin-left:-135.607467pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._24{margin-left:-128.981333pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._23{margin-left:-97.253547pt;}
._1c{margin-left:-91.137280pt;}
._22{margin-left:-89.372160pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.665707pt;}
._19{margin-left:-28.026880pt;}
._3a{margin-left:-8.922880pt;}
._37{margin-left:-4.037120pt;}
._26{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._28{width:0.905387pt;}
._29{width:1.822933pt;}
._2d{width:2.800853pt;}
._2e{width:3.824640pt;}
._2f{width:5.309653pt;}
._2c{width:6.637653pt;}
._2b{width:7.702400pt;}
._30{width:8.649600pt;}
._31{width:9.599147pt;}
._2a{width:10.600320pt;}
._33{width:13.758080pt;}
._32{width:14.820480pt;}
._34{width:16.042240pt;}
._39{width:19.104427pt;}
._38{width:20.045013pt;}
._3b{width:21.672960pt;}
._35{width:24.390400pt;}
._27{width:36.261120pt;}
._36{width:70.384000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:5.760000pt;}
.y98{bottom:5.920000pt;}
.ye8{bottom:5.960000pt;}
.yf2{bottom:6.240000pt;}
.yef{bottom:6.400000pt;}
.y31{bottom:6.560000pt;}
.ye9{bottom:6.600000pt;}
.y2d{bottom:6.720000pt;}
.y36{bottom:6.760000pt;}
.y34{bottom:7.680000pt;}
.y2f{bottom:7.840000pt;}
.ya7{bottom:15.200000pt;}
.y9c{bottom:24.480000pt;}
.ya0{bottom:24.640000pt;}
.y9b{bottom:43.200000pt;}
.ya2{bottom:43.360000pt;}
.y6{bottom:54.592000pt;}
.y9a{bottom:61.946667pt;}
.y11e{bottom:81.952000pt;}
.yaa{bottom:84.832000pt;}
.y10e{bottom:86.112000pt;}
.y2b{bottom:87.552000pt;}
.y93{bottom:91.072000pt;}
.yd2{bottom:94.112000pt;}
.y65{bottom:95.392000pt;}
.y11f{bottom:97.632000pt;}
.y11d{bottom:100.672000pt;}
.ya9{bottom:103.392000pt;}
.y10d{bottom:104.832000pt;}
.y2a{bottom:106.272000pt;}
.y92{bottom:106.432000pt;}
.yd1{bottom:112.832000pt;}
.y64{bottom:114.112000pt;}
.y11c{bottom:119.392000pt;}
.ya8{bottom:122.112000pt;}
.y10c{bottom:123.552000pt;}
.y91{bottom:124.832000pt;}
.y29{bottom:124.992000pt;}
.yd0{bottom:131.552000pt;}
.y63{bottom:132.832000pt;}
.y11b{bottom:138.106667pt;}
.ya6{bottom:141.626667pt;}
.y10b{bottom:142.266667pt;}
.y90{bottom:143.546667pt;}
.y28{bottom:143.706667pt;}
.ycf{bottom:150.266667pt;}
.y62{bottom:151.546667pt;}
.y11a{bottom:156.826667pt;}
.y10a{bottom:160.986667pt;}
.y8f{bottom:162.266667pt;}
.y27{bottom:162.426667pt;}
.yce{bottom:168.986667pt;}
.y61{bottom:170.266667pt;}
.y119{bottom:175.546667pt;}
.y109{bottom:179.706667pt;}
.y8e{bottom:180.986667pt;}
.y26{bottom:181.146667pt;}
.ycd{bottom:187.706667pt;}
.y60{bottom:188.986667pt;}
.y118{bottom:194.266667pt;}
.y108{bottom:198.426667pt;}
.y8d{bottom:199.706667pt;}
.y25{bottom:199.866667pt;}
.ycc{bottom:206.426667pt;}
.y96{bottom:207.706667pt;}
.y117{bottom:212.986667pt;}
.y5f{bottom:215.706667pt;}
.y107{bottom:216.986667pt;}
.y8c{bottom:218.426667pt;}
.y24{bottom:218.586667pt;}
.ycb{bottom:225.146667pt;}
.y95{bottom:226.426667pt;}
.y116{bottom:231.706667pt;}
.y5e{bottom:234.426667pt;}
.y106{bottom:235.706667pt;}
.y8b{bottom:237.146667pt;}
.y23{bottom:237.306667pt;}
.yca{bottom:238.586667pt;}
.y94{bottom:245.146667pt;}
.y115{bottom:250.426667pt;}
.y5d{bottom:253.146667pt;}
.y105{bottom:254.426667pt;}
.y8a{bottom:255.866667pt;}
.y22{bottom:256.026667pt;}
.ya5{bottom:258.586667pt;}
.y114{bottom:269.146667pt;}
.y5c{bottom:271.866667pt;}
.y104{bottom:273.146667pt;}
.y89{bottom:274.586667pt;}
.y21{bottom:274.746667pt;}
.yc9{bottom:279.226667pt;}
.y113{bottom:287.866667pt;}
.y35{bottom:288.186667pt;}
.y5b{bottom:290.586667pt;}
.y103{bottom:291.906667pt;}
.y88{bottom:293.346667pt;}
.ya4{bottom:296.066667pt;}
.yc8{bottom:305.986667pt;}
.y112{bottom:306.626667pt;}
.y33{bottom:307.746667pt;}
.y5a{bottom:309.346667pt;}
.y102{bottom:310.626667pt;}
.y87{bottom:312.066667pt;}
.yc7{bottom:324.706667pt;}
.y111{bottom:325.346667pt;}
.y59{bottom:328.066667pt;}
.y32{bottom:328.226667pt;}
.y101{bottom:329.346667pt;}
.y86{bottom:330.786667pt;}
.ya3{bottom:333.506667pt;}
.yc6{bottom:343.426667pt;}
.y110{bottom:344.066667pt;}
.y58{bottom:346.786667pt;}
.y100{bottom:348.066667pt;}
.y30{bottom:348.866667pt;}
.y85{bottom:357.506667pt;}
.yc5{bottom:362.146667pt;}
.y10f{bottom:362.786667pt;}
.y57{bottom:365.506667pt;}
.yff{bottom:366.786667pt;}
.y2e{bottom:368.226667pt;}
.ya1{bottom:370.946667pt;}
.y84{bottom:376.226667pt;}
.yc4{bottom:380.866667pt;}
.y20{bottom:381.506667pt;}
.yfe{bottom:385.506667pt;}
.y2c{bottom:389.506667pt;}
.y56{bottom:392.226667pt;}
.y83{bottom:394.946667pt;}
.yc3{bottom:399.586667pt;}
.y1f{bottom:400.226667pt;}
.yfd{bottom:404.226667pt;}
.y55{bottom:410.946667pt;}
.y82{bottom:413.666667pt;}
.yc2{bottom:418.306667pt;}
.y1e{bottom:418.946667pt;}
.yfc{bottom:422.946667pt;}
.y9f{bottom:427.106667pt;}
.y54{bottom:429.666667pt;}
.y81{bottom:432.386667pt;}
.yc1{bottom:437.026667pt;}
.y1d{bottom:437.666667pt;}
.yfb{bottom:441.666667pt;}
.y53{bottom:448.386667pt;}
.y80{bottom:451.106667pt;}
.yc0{bottom:455.746667pt;}
.y1c{bottom:456.386667pt;}
.yfa{bottom:460.386667pt;}
.y9e{bottom:464.546667pt;}
.y52{bottom:467.106667pt;}
.y7f{bottom:469.826667pt;}
.ybf{bottom:474.466667pt;}
.y1b{bottom:475.106667pt;}
.yf9{bottom:479.106667pt;}
.y99{bottom:483.266667pt;}
.y51{bottom:485.826667pt;}
.y7e{bottom:488.546667pt;}
.ybe{bottom:493.026667pt;}
.y1a{bottom:493.826667pt;}
.yf8{bottom:497.826667pt;}
.y7d{bottom:507.266667pt;}
.ybd{bottom:511.746667pt;}
.y19{bottom:512.546667pt;}
.yf7{bottom:516.546667pt;}
.y7c{bottom:525.986667pt;}
.ybc{bottom:530.493333pt;}
.y18{bottom:531.293333pt;}
.yf6{bottom:535.293333pt;}
.ybb{bottom:549.213333pt;}
.y17{bottom:550.013333pt;}
.y7b{bottom:552.733333pt;}
.yf5{bottom:554.013333pt;}
.y97{bottom:558.813333pt;}
.yf4{bottom:567.453333pt;}
.yba{bottom:567.933333pt;}
.y16{bottom:568.733333pt;}
.y7a{bottom:571.453333pt;}
.yb9{bottom:586.653333pt;}
.yf3{bottom:586.813333pt;}
.y15{bottom:587.293333pt;}
.y50{bottom:587.453333pt;}
.y79{bottom:590.173333pt;}
.yb8{bottom:605.373333pt;}
.y4f{bottom:606.173333pt;}
.y78{bottom:608.893333pt;}
.yb7{bottom:624.093333pt;}
.y4e{bottom:624.893333pt;}
.yf1{bottom:625.533333pt;}
.y14{bottom:626.973333pt;}
.y77{bottom:627.613333pt;}
.yb6{bottom:642.813333pt;}
.y4d{bottom:643.613333pt;}
.yf0{bottom:644.893333pt;}
.y76{bottom:646.333333pt;}
.y13{bottom:653.533333pt;}
.yb5{bottom:661.533333pt;}
.y4c{bottom:662.333333pt;}
.yee{bottom:664.253333pt;}
.y75{bottom:664.893333pt;}
.y12{bottom:672.253333pt;}
.yb4{bottom:680.253333pt;}
.y4b{bottom:680.893333pt;}
.yed{bottom:683.453333pt;}
.y74{bottom:683.613333pt;}
.y11{bottom:690.973333pt;}
.yb3{bottom:698.973333pt;}
.y4a{bottom:699.613333pt;}
.y73{bottom:702.333333pt;}
.yec{bottom:702.813333pt;}
.y10{bottom:709.693333pt;}
.yb2{bottom:717.693333pt;}
.y49{bottom:718.333333pt;}
.y72{bottom:721.053333pt;}
.yeb{bottom:722.173333pt;}
.yf{bottom:728.413333pt;}
.yb1{bottom:736.413333pt;}
.y48{bottom:737.053333pt;}
.yea{bottom:741.533333pt;}
.ye{bottom:747.133333pt;}
.y71{bottom:747.773333pt;}
.yb0{bottom:755.133333pt;}
.y47{bottom:755.773333pt;}
.ye7{bottom:761.533333pt;}
.yd{bottom:765.853333pt;}
.y70{bottom:766.533333pt;}
.yaf{bottom:773.893333pt;}
.y46{bottom:774.533333pt;}
.y6f{bottom:785.253333pt;}
.yc{bottom:786.533333pt;}
.ye6{bottom:787.493333pt;}
.yae{bottom:792.613333pt;}
.y45{bottom:793.253333pt;}
.y6e{bottom:803.973333pt;}
.ye5{bottom:806.213333pt;}
.yb{bottom:809.893333pt;}
.yad{bottom:811.333333pt;}
.y44{bottom:811.973333pt;}
.y6d{bottom:822.693333pt;}
.ya{bottom:824.773333pt;}
.ye4{bottom:824.933333pt;}
.yac{bottom:830.053333pt;}
.y43{bottom:830.693333pt;}
.y6c{bottom:841.413333pt;}
.ye3{bottom:843.653333pt;}
.y9{bottom:844.613333pt;}
.yab{bottom:848.773333pt;}
.y42{bottom:849.413333pt;}
.y6b{bottom:860.133333pt;}
.ydb{bottom:862.213333pt;}
.ye2{bottom:862.373333pt;}
.y8{bottom:867.013333pt;}
.y41{bottom:868.133333pt;}
.y6a{bottom:878.853333pt;}
.yda{bottom:880.933333pt;}
.ye1{bottom:881.093333pt;}
.y40{bottom:886.853333pt;}
.y7{bottom:896.933333pt;}
.y69{bottom:897.573333pt;}
.yd9{bottom:899.653333pt;}
.ye0{bottom:899.813333pt;}
.y3f{bottom:905.573333pt;}
.y68{bottom:916.293333pt;}
.yd8{bottom:918.373333pt;}
.ydf{bottom:918.533333pt;}
.y3e{bottom:924.293333pt;}
.yde{bottom:931.973333pt;}
.y5{bottom:932.613333pt;}
.y67{bottom:935.013333pt;}
.yd7{bottom:937.093333pt;}
.y3d{bottom:943.013333pt;}
.ydd{bottom:951.973333pt;}
.y66{bottom:953.733333pt;}
.yd6{bottom:955.813333pt;}
.y4{bottom:961.253333pt;}
.y3c{bottom:961.733333pt;}
.ydc{bottom:972.613333pt;}
.yd5{bottom:974.533333pt;}
.y3b{bottom:980.453333pt;}
.y3{bottom:989.893333pt;}
.yd4{bottom:993.253333pt;}
.y3a{bottom:999.173333pt;}
.yd3{bottom:1012.000000pt;}
.y39{bottom:1017.920000pt;}
.y2{bottom:1018.400000pt;}
.y38{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y37{bottom:1060.640000pt;}
.h15{height:18.560000pt;}
.h10{height:18.720000pt;}
.h18{height:18.752000pt;}
.h1a{height:19.200000pt;}
.hc{height:19.360000pt;}
.h19{height:19.392000pt;}
.ha{height:19.520000pt;}
.he{height:19.552000pt;}
.h17{height:20.000000pt;}
.h16{height:20.032000pt;}
.hd{height:20.480000pt;}
.hb{height:20.640000pt;}
.h8{height:34.374375pt;}
.hf{height:36.883125pt;}
.h12{height:37.440000pt;}
.h14{height:37.472000pt;}
.h9{height:52.834688pt;}
.h6{height:54.390938pt;}
.h13{height:56.160000pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h4{height:74.477812pt;}
.h11{height:74.752000pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:76.480000pt;}
.wc{width:79.712000pt;}
.wa{width:81.472000pt;}
.w9{width:82.240000pt;}
.w8{width:85.632000pt;}
.wb{width:93.760000pt;}
.wd{width:94.080000pt;}
.we{width:94.432000pt;}
.w15{width:103.840000pt;}
.w14{width:104.032000pt;}
.w16{width:113.472000pt;}
.w5{width:151.226667pt;}
.w7{width:170.106667pt;}
.w3{width:284.186667pt;}
.w11{width:288.386667pt;}
.w13{width:293.826667pt;}
.w10{width:298.106667pt;}
.w4{width:318.946667pt;}
.w12{width:323.066667pt;}
.w6{width:359.266667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x15{left:-2.880000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x12{left:18.560000pt;}
.x6{left:47.999988pt;}
.x1c{left:52.479988pt;}
.x13{left:55.200000pt;}
.xf{left:56.160000pt;}
.xe{left:62.399988pt;}
.x7{left:67.199988pt;}
.xa{left:76.479988pt;}
.x26{left:85.791988pt;}
.x20{left:88.512000pt;}
.x9{left:93.311988pt;}
.xb{left:94.912000pt;}
.x1d{left:96.031988pt;}
.x1e{left:103.712000pt;}
.x14{left:140.826667pt;}
.x5{left:161.306655pt;}
.x22{left:203.226667pt;}
.x10{left:207.386667pt;}
.x16{left:223.066667pt;}
.x3{left:254.786655pt;}
.x17{left:304.546667pt;}
.x23{left:307.266667pt;}
.x2{left:311.586655pt;}
.x4{left:372.546655pt;}
.xd{left:379.106667pt;}
.x18{left:398.306667pt;}
.x1f{left:401.826667pt;}
.x21{left:411.586667pt;}
.x1{left:426.013322pt;}
.x19{left:478.013333pt;}
.x24{left:524.573333pt;}
.x11{left:566.653333pt;}
.x1a{left:572.093333pt;}
.x25{left:638.053333pt;}
.x1b{left:666.533333pt;}
.x8{left:745.893322pt;}
}




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