
    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_8d6aa7d8425968064905aeee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.977051;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_1ca32333f79ff1614b29f0f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.173340;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_45bc416d3a9341ea41881c61.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133301;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_ff3c12d8478fc6e1462859c6.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_5f2262a81c68e0d19c6ab428.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_ee59a888c56353bf3aa63b17.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001953;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_1faeb9a85775981cc1e663d5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.772949;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_c57134b64a0dbf63ff7db496.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.173340;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);}
.m3{transform:matrix(0.285145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285145,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306071,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.320231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320231,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:96.300000px;}
.ls27{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.516600px;}
.ls1e{letter-spacing:-0.515400px;}
.ls15{letter-spacing:-0.443400px;}
.ls11{letter-spacing:-0.345600px;}
.lsf{letter-spacing:-0.312059px;}
.ls8{letter-spacing:-0.257079px;}
.ls9{letter-spacing:-0.204701px;}
.lsc{letter-spacing:-0.196439px;}
.ls25{letter-spacing:-0.172800px;}
.ls14{letter-spacing:-0.094800px;}
.ls0{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.023040px;}
.lse{letter-spacing:0.052877px;}
.ls23{letter-spacing:0.057600px;}
.ls19{letter-spacing:0.092400px;}
.lsb{letter-spacing:0.111811px;}
.ls7{letter-spacing:0.116514px;}
.ls18{letter-spacing:0.165600px;}
.lsd{letter-spacing:0.201848px;}
.lsa{letter-spacing:0.258499px;}
.ls6{letter-spacing:0.269372px;}
.ls2a{letter-spacing:0.282000px;}
.ls28{letter-spacing:0.345600px;}
.ls2e{letter-spacing:0.423600px;}
.ls24{letter-spacing:0.518400px;}
.ls2b{letter-spacing:0.541200px;}
.ls1f{letter-spacing:0.576000px;}
.ls22{letter-spacing:0.636000px;}
.ls21{letter-spacing:1.267200px;}
.ls20{letter-spacing:1.632960px;}
.ls2c{letter-spacing:1.722000px;}
.ls4{letter-spacing:1.753920px;}
.ls3{letter-spacing:13.917600px;}
.ls1{letter-spacing:13.968000px;}
.ls12{letter-spacing:15.933600px;}
.ls2{letter-spacing:15.984000px;}
.ls1a{letter-spacing:31.137600px;}
.ls29{letter-spacing:37.260000px;}
.ls17{letter-spacing:39.787200px;}
.ls26{letter-spacing:45.900000px;}
.ls1d{letter-spacing:48.640176px;}
.ls1b{letter-spacing:48.768480px;}
.ls1c{letter-spacing:52.617600px;}
.ls13{letter-spacing:55.440000px;}
.ls10{letter-spacing:106.077600px;}
.ls5{letter-spacing:106.128000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(47,43,32),0 0.015em rgb(47,43,32),0.015em 0 rgb(47,43,32),0 -0.015em  rgb(47,43,32);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(47,43,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-32.591640px;}
.ws1{word-spacing:-27.054720px;}
.wsc{word-spacing:-24.584083px;}
.wsd{word-spacing:-24.173874px;}
.wsb{word-spacing:-24.120997px;}
.ws22{word-spacing:-23.535120px;}
.ws10{word-spacing:-23.425920px;}
.ws12{word-spacing:-23.385600px;}
.ws11{word-spacing:-23.174928px;}
.wsf{word-spacing:-23.040000px;}
.ws18{word-spacing:-22.408800px;}
.ws21{word-spacing:-22.354320px;}
.ws19{word-spacing:-22.348800px;}
.ws1b{word-spacing:-22.291200px;}
.ws24{word-spacing:-22.236720px;}
.ws1f{word-spacing:-22.118400px;}
.ws20{word-spacing:-22.095120px;}
.ws23{word-spacing:-21.836160px;}
.ws1a{word-spacing:-21.830400px;}
.ws1e{word-spacing:-21.813120px;}
.ws1c{word-spacing:-21.600000px;}
.ws3{word-spacing:-21.280393px;}
.ws1d{word-spacing:-21.196800px;}
.ws4{word-spacing:-20.902417px;}
.ws2{word-spacing:-20.785903px;}
.ws8{word-spacing:-20.421455px;}
.ws9{word-spacing:-20.058735px;}
.ws7{word-spacing:-19.946924px;}
.wse{word-spacing:-19.367888px;}
.ws14{word-spacing:-18.064800px;}
.ws15{word-spacing:-18.024144px;}
.ws6{word-spacing:-16.754194px;}
.ws5{word-spacing:-16.701816px;}
.ws16{word-spacing:-16.272000px;}
.wsa{word-spacing:-16.077946px;}
.ws13{word-spacing:-11.064960px;}
.ws0{word-spacing:0.000000px;}
._b{margin-left:-6.728880px;}
._a{margin-left:-4.776912px;}
._3{margin-left:-3.558864px;}
._d{margin-left:-2.538864px;}
._0{margin-left:-1.533312px;}
._1{width:1.261776px;}
._2{width:2.301696px;}
._6{width:3.381312px;}
._4{width:4.404960px;}
._8{width:5.524320px;}
._7{width:7.157568px;}
._1e{width:10.368000px;}
._e{width:14.083200px;}
._f{width:15.118320px;}
._10{width:16.560000px;}
._1a{width:17.982672px;}
._1b{width:19.455648px;}
._19{width:30.319824px;}
._18{width:37.572000px;}
._16{width:42.566400px;}
._14{width:44.179200px;}
._1d{width:53.641776px;}
._1c{width:54.780480px;}
._15{width:56.913600px;}
._12{width:58.396800px;}
._11{width:59.784192px;}
._13{width:90.713760px;}
._17{width:121.310400px;}
._9{width:326.707200px;}
._5{width:405.075936px;}
._c{width:735.194544px;}
.fc9{color:rgb(103,94,71);}
.fc8{color:rgb(0,112,192);}
.fc7{color:rgb(192,0,0);}
.fc5{color:rgb(169,165,124);}
.fca{color:rgb(64,64,64);}
.fc6{color:rgb(0,0,0);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(66,66,66);}
.fcb{color:transparent;}
.fc2{color:rgb(28,27,13);}
.fc1{color:rgb(142,141,140);}
.fc0{color:rgb(47,43,32);}
.fs13{font-size:47.520000px;}
.fs18{font-size:48.960000px;}
.fs17{font-size:51.840000px;}
.fsf{font-size:56.623684px;}
.fsd{font-size:59.005309px;}
.fs16{font-size:63.360000px;}
.fs15{font-size:63.504000px;}
.fs11{font-size:68.504452px;}
.fs12{font-size:72.000000px;}
.fse{font-size:72.010555px;}
.fs14{font-size:72.144000px;}
.fsc{font-size:75.039360px;}
.fs4{font-size:77.760000px;}
.fs9{font-size:77.904000px;}
.fs1f{font-size:79.200000px;}
.fs20{font-size:79.344000px;}
.fs8{font-size:83.520000px;}
.fsa{font-size:83.664000px;}
.fs23{font-size:86.400000px;}
.fs10{font-size:87.079412px;}
.fs28{font-size:90.720000px;}
.fs29{font-size:90.864000px;}
.fs6{font-size:96.480000px;}
.fs7{font-size:96.624000px;}
.fs1b{font-size:100.800000px;}
.fs5{font-size:108.000000px;}
.fs24{font-size:113.760000px;}
.fs25{font-size:113.904000px;}
.fs2{font-size:119.520000px;}
.fs3{font-size:119.664000px;}
.fs1e{font-size:126.864000px;}
.fs1d{font-size:132.480000px;}
.fs1c{font-size:132.624000px;}
.fs1a{font-size:144.000000px;}
.fs19{font-size:144.144000px;}
.fs27{font-size:168.480000px;}
.fs26{font-size:168.624000px;}
.fs22{font-size:174.240000px;}
.fs21{font-size:174.384000px;}
.fs1{font-size:191.520000px;}
.fs0{font-size:191.664000px;}
.fsb{font-size:216.000000px;}
.fs2a{font-size:240.624000px;}
.y0{bottom:0.000000px;}
.y57{bottom:4.769930px;}
.y43{bottom:4.970556px;}
.y6a{bottom:5.750498px;}
.y5b{bottom:6.616354px;}
.y5f{bottom:10.616941px;}
.y47{bottom:10.742814px;}
.y6b{bottom:18.985157px;}
.y61{bottom:19.540882px;}
.y4d{bottom:20.203252px;}
.y67{bottom:21.398354px;}
.y45{bottom:22.126991px;}
.y6e{bottom:22.512851px;}
.y70{bottom:23.590323px;}
.y56{bottom:26.644931px;}
.y6f{bottom:26.791844px;}
.y5d{bottom:26.803929px;}
.y4b{bottom:27.738909px;}
.y42{bottom:27.778994px;}
.y49{bottom:27.899249px;}
.yb9{bottom:28.404000px;}
.y59{bottom:28.465711px;}
.y69{bottom:32.173378px;}
.y5e{bottom:32.497071px;}
.ye3{bottom:32.868000px;}
.y46{bottom:33.511167px;}
.yae{bottom:43.890000px;}
.y40{bottom:44.446390px;}
.y54{bottom:44.806567px;}
.y66{bottom:47.997696px;}
.y6c{bottom:49.112194px;}
.y5a{bottom:50.507403px;}
.y4a{bottom:50.699670px;}
.ye2{bottom:54.864000px;}
.yaa{bottom:56.196000px;}
.y53{bottom:66.809793px;}
.y62{bottom:67.322531px;}
.y3f{bottom:67.375083px;}
.y65{bottom:74.597039px;}
.y2b{bottom:75.132000px;}
.y6d{bottom:75.525787px;}
.yaf{bottom:76.215000px;}
.ye1{bottom:76.824000px;}
.ya9{bottom:87.156000px;}
.y52{bottom:88.843791px;}
.yd2{bottom:89.100000px;}
.y3e{bottom:90.303777px;}
.y11d{bottom:98.784000px;}
.y2a{bottom:100.368000px;}
.ya{bottom:100.692000px;}
.y64{bottom:101.196381px;}
.yd6{bottom:102.168000px;}
.yb0{bottom:108.510000px;}
.y51{bottom:110.841888px;}
.ya8{bottom:111.672000px;}
.y3d{bottom:113.259193px;}
.yad{bottom:121.320000px;}
.y11c{bottom:122.220000px;}
.y29{bottom:127.368000px;}
.y63{bottom:127.797271px;}
.y9{bottom:128.808000px;}
.ya7{bottom:131.832000px;}
.y50{bottom:132.883580px;}
.yf2{bottom:136.116000px;}
.y3c{bottom:136.187887px;}
.yb1{bottom:140.835000px;}
.y103{bottom:141.840000px;}
.ye0{bottom:142.056000px;}
.y11b{bottom:145.620000px;}
.yd0{bottom:146.055000px;}
.ya6{bottom:146.232000px;}
.ycc{bottom:146.445000px;}
.y28{bottom:152.565000px;}
.yd1{bottom:153.105000px;}
.y8{bottom:154.770000px;}
.y4f{bottom:154.886805px;}
.y3b{bottom:159.116580px;}
.y2e{bottom:159.990000px;}
.ybc{bottom:161.790000px;}
.ya5{bottom:162.795000px;}
.ydf{bottom:164.010000px;}
.yc9{bottom:164.805000px;}
.yf1{bottom:167.115000px;}
.y11a{bottom:169.020000px;}
.y102{bottom:170.670000px;}
.yb2{bottom:173.130000px;}
.y2d{bottom:177.270000px;}
.y27{bottom:177.765000px;}
.y68{bottom:181.149884px;}
.yde{bottom:185.295000px;}
.ya4{bottom:185.865000px;}
.y7{bottom:192.210000px;}
.y119{bottom:192.450000px;}
.y101{bottom:199.470000px;}
.yc8{bottom:200.490000px;}
.ya3{bottom:202.065000px;}
.y2c{bottom:202.470000px;}
.yf0{bottom:204.555000px;}
.yb3{bottom:205.455000px;}
.ydd{bottom:207.285000px;}
.ycd{bottom:213.660000px;}
.y118{bottom:215.850000px;}
.ybb{bottom:216.030000px;}
.y60{bottom:217.936604px;}
.y7f{bottom:219.780000px;}
.ya2{bottom:225.465000px;}
.ycf{bottom:227.370000px;}
.yd5{bottom:227.550000px;}
.y82{bottom:228.060000px;}
.y100{bottom:228.270000px;}
.y39{bottom:228.345000px;}
.ydc{bottom:229.245000px;}
.y6{bottom:235.440000px;}
.yef{bottom:235.545000px;}
.yb4{bottom:237.750000px;}
.y117{bottom:239.250000px;}
.yc7{bottom:244.050000px;}
.y7e{bottom:245.010000px;}
.yd4{bottom:247.710000px;}
.ya1{bottom:248.865000px;}
.ydb{bottom:251.205000px;}
.y26{bottom:251.430000px;}
.y4e{bottom:251.479539px;}
.y38{bottom:255.030000px;}
.yff{bottom:257.115000px;}
.y116{bottom:262.695000px;}
.yb5{bottom:270.030000px;}
.yba{bottom:270.330000px;}
.ya0{bottom:272.310000px;}
.yda{bottom:272.520000px;}
.yee{bottom:274.065000px;}
.yc{bottom:276.480000px;}
.y25{bottom:276.660000px;}
.yc6{bottom:279.720000px;}
.y5{bottom:281.235000px;}
.y37{bottom:281.310000px;}
.yfe{bottom:293.115000px;}
.y9f{bottom:293.910000px;}
.yd9{bottom:294.480000px;}
.y24{bottom:301.860000px;}
.yb6{bottom:302.370000px;}
.y5c{bottom:307.518522px;}
.yed{bottom:309.750000px;}
.y9e{bottom:310.470000px;}
.yb{bottom:313.950000px;}
.yc5{bottom:315.360000px;}
.yd8{bottom:316.440000px;}
.yfd{bottom:321.915000px;}
.y126{bottom:325.005000px;}
.y23{bottom:327.060000px;}
.y115{bottom:334.080000px;}
.yb7{bottom:334.650000px;}
.y9d{bottom:335.670000px;}
.yd7{bottom:338.430000px;}
.y4{bottom:347.505000px;}
.y124{bottom:348.915000px;}
.yfc{bottom:350.745000px;}
.yc4{bottom:351.030000px;}
.y58{bottom:352.012223px;}
.y22{bottom:352.290000px;}
.yec{bottom:353.310000px;}
.y114{bottom:357.510000px;}
.y9c{bottom:360.900000px;}
.yce{bottom:361.335000px;}
.yd3{bottom:363.270000px;}
.yb8{bottom:366.990000px;}
.y21{bottom:377.490000px;}
.yfb{bottom:379.545000px;}
.y113{bottom:380.910000px;}
.y14{bottom:381.810000px;}
.y123{bottom:384.915000px;}
.yc3{bottom:386.670000px;}
.yeb{bottom:388.980000px;}
.y11f{bottom:390.495000px;}
.y125{bottom:397.050000px;}
.y9b{bottom:399.060000px;}
.y90{bottom:399.780000px;}
.y20{bottom:402.690000px;}
.y36{bottom:403.710000px;}
.y112{bottom:404.310000px;}
.ycb{bottom:406.080000px;}
.y13{bottom:410.610000px;}
.y3{bottom:413.790000px;}
.yfa{bottom:415.590000px;}
.y122{bottom:420.915000px;}
.y55{bottom:422.060952px;}
.y9a{bottom:424.260000px;}
.y7d{bottom:424.440000px;}
.yea{bottom:424.620000px;}
.y8f{bottom:424.980000px;}
.y111{bottom:427.755000px;}
.y1f{bottom:427.935000px;}
.y35{bottom:430.020000px;}
.yc2{bottom:430.275000px;}
.y12{bottom:439.410000px;}
.yf9{bottom:442.950000px;}
.y81{bottom:447.270000px;}
.y99{bottom:449.460000px;}
.y7c{bottom:449.670000px;}
.y8e{bottom:450.210000px;}
.y110{bottom:451.155000px;}
.y1e{bottom:453.135000px;}
.y34{bottom:456.660000px;}
.y10a{bottom:462.855000px;}
.y4c{bottom:465.130585px;}
.yc1{bottom:465.915000px;}
.ye9{bottom:468.210000px;}
.y11{bottom:468.255000px;}
.y80{bottom:472.470000px;}
.y7b{bottom:472.710000px;}
.y10f{bottom:474.555000px;}
.y98{bottom:474.690000px;}
.y8d{bottom:475.410000px;}
.yf8{bottom:477.150000px;}
.y1d{bottom:478.335000px;}
.y2{bottom:480.060000px;}
.y33{bottom:482.940000px;}
.y109{bottom:486.255000px;}
.y7a{bottom:489.270000px;}
.y10{bottom:497.055000px;}
.y10e{bottom:497.985000px;}
.y97{bottom:499.890000px;}
.y3a{bottom:500.085164px;}
.y8c{bottom:500.610000px;}
.yc0{bottom:501.585000px;}
.y1c{bottom:503.565000px;}
.ye8{bottom:503.850000px;}
.yf7{bottom:504.540000px;}
.y32{bottom:509.610000px;}
.y108{bottom:509.655000px;}
.y79{bottom:514.515000px;}
.y10d{bottom:521.385000px;}
.y96{bottom:525.090000px;}
.y8b{bottom:525.855000px;}
.yf{bottom:525.885000px;}
.y1b{bottom:532.410000px;}
.y107{bottom:533.085000px;}
.y31{bottom:536.250000px;}
.y78{bottom:537.555000px;}
.yf6{bottom:538.740000px;}
.ye7{bottom:539.490000px;}
.y10c{bottom:544.785000px;}
.y1{bottom:546.300000px;}
.y95{bottom:550.335000px;}
.y8a{bottom:551.055000px;}
.y77{bottom:554.115000px;}
.ye{bottom:554.685000px;}
.y1a{bottom:555.840000px;}
.y106{bottom:556.485000px;}
.y72{bottom:560.160000px;}
.y121{bottom:561.855000px;}
.y30{bottom:562.530000px;}
.yca{bottom:563.295000px;}
.ybf{bottom:566.820000px;}
.y10b{bottom:568.185000px;}
.y48{bottom:569.223993px;}
.yac{bottom:569.700000px;}
.ye6{bottom:575.175000px;}
.y94{bottom:575.535000px;}
.y89{bottom:576.255000px;}
.y19{bottom:579.240000px;}
.y76{bottom:579.315000px;}
.y105{bottom:579.885000px;}
.y71{bottom:585.360000px;}
.yf5{bottom:589.755000px;}
.y120{bottom:590.685000px;}
.y93{bottom:600.735000px;}
.y88{bottom:601.485000px;}
.y75{bottom:602.385000px;}
.y18{bottom:602.640000px;}
.ybe{bottom:610.050000px;}
.y44{bottom:615.589124px;}
.y74{bottom:618.225000px;}
.ye5{bottom:624.165000px;}
.y92{bottom:625.965000px;}
.y17{bottom:626.070000px;}
.y87{bottom:626.685000px;}
.yab{bottom:627.330000px;}
.yf4{bottom:640.185000px;}
.y16{bottom:649.830000px;}
.y91{bottom:651.165000px;}
.y86{bottom:651.885000px;}
.ybd{bottom:653.250000px;}
.y41{bottom:673.311709px;}
.y15{bottom:675.030000px;}
.ye4{bottom:676.365000px;}
.y85{bottom:677.130000px;}
.y2f{bottom:677.370000px;}
.y11e{bottom:684.690000px;}
.yf3{bottom:690.585000px;}
.y84{bottom:702.330000px;}
.y83{bottom:727.530000px;}
.y73{bottom:761.295000px;}
.yd{bottom:763.950000px;}
.y104{bottom:764.175000px;}
.h3e{height:40.377656px;}
.h3d{height:42.752812px;}
.h21{height:43.729487px;}
.h25{height:43.883355px;}
.h36{height:43.969922px;}
.h28{height:45.232591px;}
.h16{height:45.568774px;}
.h1a{height:45.729114px;}
.h34{height:45.872578px;}
.h1d{height:47.135100px;}
.h3c{height:52.253437px;}
.h3b{height:52.372195px;}
.h2c{height:52.827186px;}
.h31{height:54.723283px;}
.h26{height:55.423508px;}
.h18{height:56.920882px;}
.h4c{height:57.515625px;}
.h24{height:57.524057px;}
.h22{height:59.387611px;}
.h19{height:59.943551px;}
.h17{height:61.885488px;}
.h47{height:65.316797px;}
.h4b{height:65.435555px;}
.h33{height:66.621094px;}
.h1f{height:66.630860px;}
.h1b{height:68.497467px;}
.h23{height:69.271692px;}
.h14{height:69.433392px;}
.h37{height:69.503906px;}
.h20{height:69.514095px;}
.h2f{height:69.561483px;}
.h2d{height:71.815003px;}
.h7{height:71.950781px;}
.hc{height:72.084023px;}
.h15{height:72.437898px;}
.h57{height:75.064219px;}
.h58{height:75.203227px;}
.hf{height:77.280469px;}
.h35{height:77.413711px;}
.h2a{height:80.573967px;}
.hb{height:80.624531px;}
.hd{height:80.763539px;}
.h2b{height:84.060545px;}
.h12{height:89.272266px;}
.h11{height:89.405508px;}
.h9{height:93.135234px;}
.ha{height:93.274242px;}
.h4{height:95.475937px;}
.h5{height:95.590969px;}
.h38{height:99.931641px;}
.h45{height:101.342531px;}
.h8{height:104.255859px;}
.h54{height:105.261328px;}
.h55{height:105.394570px;}
.h48{height:109.257187px;}
.h4a{height:109.375945px;}
.h4f{height:109.816172px;}
.h50{height:109.955180px;}
.h6{height:110.591016px;}
.h56{height:110.724258px;}
.h2e{height:112.898606px;}
.h32{height:115.376484px;}
.h59{height:115.515492px;}
.h42{height:122.582812px;}
.h41{height:122.716055px;}
.h43{height:127.887187px;}
.h44{height:128.026195px;}
.h40{height:133.242188px;}
.h3f{height:133.375430px;}
.h2{height:152.991562px;}
.h1{height:153.106594px;}
.h52{height:155.893359px;}
.h51{height:156.026602px;}
.h4e{height:161.223047px;}
.h4d{height:161.356289px;}
.h53{height:162.778148px;}
.h29{height:166.648348px;}
.he{height:173.713711px;}
.h39{height:177.345352px;}
.h3{height:185.019398px;}
.h10{height:199.863281px;}
.h30{height:208.109330px;}
.h1e{height:214.313464px;}
.h13{height:218.797991px;}
.h5a{height:222.647695px;}
.h27{height:248.618049px;}
.h1c{height:254.553925px;}
.h46{height:403.920000px;}
.h49{height:406.080000px;}
.h3a{height:414.360000px;}
.h0{height:810.000000px;}
.w2{width:176.116160px;}
.w9{width:176.826398px;}
.w1{width:180.827422px;}
.w8{width:181.556660px;}
.w10{width:190.075642px;}
.wf{width:195.213299px;}
.w4{width:196.335329px;}
.wb{width:197.176380px;}
.w3{width:206.199535px;}
.wa{width:206.981819px;}
.w5{width:267.053344px;}
.wc{width:268.130313px;}
.w6{width:312.399248px;}
.wd{width:313.659086px;}
.w11{width:380.680939px;}
.w14{width:499.680000px;}
.w15{width:580.320000px;}
.w7{width:765.023994px;}
.we{width:766.121803px;}
.w12{width:770.683813px;}
.w13{width:800.280000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x29{left:8.441012px;}
.x47{left:9.957520px;}
.x2b{left:11.581854px;}
.x30{left:16.489419px;}
.x45{left:17.796419px;}
.x2a{left:23.163708px;}
.x28{left:31.408418px;}
.x37{left:32.586234px;}
.x41{left:33.897941px;}
.x38{left:41.419851px;}
.x35{left:45.149601px;}
.x36{left:47.112627px;}
.x32{left:51.823889px;}
.x66{left:57.165000px;}
.x2d{left:59.087086px;}
.x2f{left:60.853810px;}
.x34{left:62.031625px;}
.x43{left:63.812874px;}
.x44{left:65.677261px;}
.x3e{left:71.397395px;}
.x65{left:73.155000px;}
.x7c{left:83.052000px;}
.x39{left:86.962057px;}
.x2c{left:90.338462px;}
.x3b{left:92.458530px;}
.x48{left:93.960000px;}
.x42{left:97.498953px;}
.xa{left:101.592000px;}
.x52{left:103.464000px;}
.x1a{left:105.120000px;}
.xe{left:106.272000px;}
.x3a{left:109.569574px;}
.xc{left:113.112000px;}
.x72{left:114.264000px;}
.x50{left:115.776000px;}
.xb{left:117.432000px;}
.x19{left:122.400000px;}
.x6d{left:123.984000px;}
.x61{left:125.316000px;}
.x62{left:126.756000px;}
.x18{left:133.560000px;}
.x69{left:136.656000px;}
.x49{left:138.600000px;}
.x51{left:140.616000px;}
.x6b{left:142.380000px;}
.xd{left:153.435000px;}
.x63{left:157.935000px;}
.x1{left:159.510000px;}
.x77{left:162.615000px;}
.x5a{left:163.950000px;}
.x74{left:165.495000px;}
.x58{left:166.830000px;}
.x70{left:167.910000px;}
.x40{left:169.882449px;}
.x27{left:174.410210px;}
.x79{left:177.300000px;}
.x67{left:186.810000px;}
.x9{left:196.950000px;}
.x83{left:198.285000px;}
.x64{left:205.095000px;}
.x57{left:208.230000px;}
.x7a{left:209.700000px;}
.x75{left:215.100000px;}
.x73{left:223.665000px;}
.x71{left:227.520000px;}
.x78{left:230.655000px;}
.x76{left:242.130000px;}
.x6e{left:248.145000px;}
.x84{left:253.905000px;}
.x6f{left:257.010000px;}
.x59{left:259.740000px;}
.x6c{left:281.010000px;}
.xf{left:295.740000px;}
.x10{left:306.540000px;}
.x5b{left:309.060000px;}
.x3{left:311.190000px;}
.x2{left:328.110000px;}
.x11{left:349.770000px;}
.x2e{left:356.071919px;}
.x1d{left:357.480000px;}
.x1b{left:359.355000px;}
.x12{left:360.570000px;}
.x5{left:362.310000px;}
.x1c{left:364.035000px;}
.x14{left:365.550000px;}
.x20{left:370.695000px;}
.x23{left:371.775000px;}
.x15{left:376.350000px;}
.x21{left:380.445000px;}
.x1f{left:383.685000px;}
.x5c{left:386.070000px;}
.x24{left:388.005000px;}
.x22{left:397.365000px;}
.x17{left:399.390000px;}
.x60{left:411.630000px;}
.x6a{left:436.290000px;}
.x5e{left:456.270000px;}
.x6{left:457.380000px;}
.x5d{left:459.510000px;}
.x4d{left:460.770000px;}
.x4e{left:465.915000px;}
.x25{left:488.805000px;}
.x4c{left:494.610000px;}
.x4f{left:499.755000px;}
.x7e{left:504.750000px;}
.x81{left:505.905000px;}
.x54{left:517.320000px;}
.x80{left:523.545000px;}
.x5f{left:528.300000px;}
.x31{left:532.973289px;}
.x3c{left:534.389613px;}
.x7{left:535.470000px;}
.x53{left:536.760000px;}
.x4{left:540.570000px;}
.x1e{left:545.550000px;}
.x16{left:550.620000px;}
.x46{left:556.866286px;}
.x4a{left:567.975000px;}
.x82{left:595.590000px;}
.x26{left:600.405000px;}
.x13{left:624.090000px;}
.x3f{left:625.677104px;}
.x7b{left:652.605000px;}
.x55{left:661.710000px;}
.x7f{left:664.485000px;}
.x68{left:696.030000px;}
.x7d{left:704.130000px;}
.x4b{left:713.190000px;}
.x33{left:739.958034px;}
.x3d{left:742.159810px;}
.x56{left:744.195000px;}
.x8{left:747.570000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:85.600000pt;}
.ls27{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.459200pt;}
.ls1e{letter-spacing:-0.458133pt;}
.ls15{letter-spacing:-0.394133pt;}
.ls11{letter-spacing:-0.307200pt;}
.lsf{letter-spacing:-0.277386pt;}
.ls8{letter-spacing:-0.228515pt;}
.ls9{letter-spacing:-0.181957pt;}
.lsc{letter-spacing:-0.174612pt;}
.ls25{letter-spacing:-0.153600pt;}
.ls14{letter-spacing:-0.084267pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.020480pt;}
.lse{letter-spacing:0.047002pt;}
.ls23{letter-spacing:0.051200pt;}
.ls19{letter-spacing:0.082133pt;}
.lsb{letter-spacing:0.099388pt;}
.ls7{letter-spacing:0.103568pt;}
.ls18{letter-spacing:0.147200pt;}
.lsd{letter-spacing:0.179420pt;}
.lsa{letter-spacing:0.229777pt;}
.ls6{letter-spacing:0.239442pt;}
.ls2a{letter-spacing:0.250667pt;}
.ls28{letter-spacing:0.307200pt;}
.ls2e{letter-spacing:0.376533pt;}
.ls24{letter-spacing:0.460800pt;}
.ls2b{letter-spacing:0.481067pt;}
.ls1f{letter-spacing:0.512000pt;}
.ls22{letter-spacing:0.565333pt;}
.ls21{letter-spacing:1.126400pt;}
.ls20{letter-spacing:1.451520pt;}
.ls2c{letter-spacing:1.530667pt;}
.ls4{letter-spacing:1.559040pt;}
.ls3{letter-spacing:12.371200pt;}
.ls1{letter-spacing:12.416000pt;}
.ls12{letter-spacing:14.163200pt;}
.ls2{letter-spacing:14.208000pt;}
.ls1a{letter-spacing:27.677867pt;}
.ls29{letter-spacing:33.120000pt;}
.ls17{letter-spacing:35.366400pt;}
.ls26{letter-spacing:40.800000pt;}
.ls1d{letter-spacing:43.235712pt;}
.ls1b{letter-spacing:43.349760pt;}
.ls1c{letter-spacing:46.771200pt;}
.ls13{letter-spacing:49.280000pt;}
.ls10{letter-spacing:94.291200pt;}
.ls5{letter-spacing:94.336000pt;}
.ws17{word-spacing:-28.970347pt;}
.ws1{word-spacing:-24.048640pt;}
.wsc{word-spacing:-21.852518pt;}
.wsd{word-spacing:-21.487888pt;}
.wsb{word-spacing:-21.440886pt;}
.ws22{word-spacing:-20.920107pt;}
.ws10{word-spacing:-20.823040pt;}
.ws12{word-spacing:-20.787200pt;}
.ws11{word-spacing:-20.599936pt;}
.wsf{word-spacing:-20.480000pt;}
.ws18{word-spacing:-19.918933pt;}
.ws21{word-spacing:-19.870507pt;}
.ws19{word-spacing:-19.865600pt;}
.ws1b{word-spacing:-19.814400pt;}
.ws24{word-spacing:-19.765973pt;}
.ws1f{word-spacing:-19.660800pt;}
.ws20{word-spacing:-19.640107pt;}
.ws23{word-spacing:-19.409920pt;}
.ws1a{word-spacing:-19.404800pt;}
.ws1e{word-spacing:-19.389440pt;}
.ws1c{word-spacing:-19.200000pt;}
.ws3{word-spacing:-18.915905pt;}
.ws1d{word-spacing:-18.841600pt;}
.ws4{word-spacing:-18.579926pt;}
.ws2{word-spacing:-18.476358pt;}
.ws8{word-spacing:-18.152404pt;}
.ws9{word-spacing:-17.829987pt;}
.ws7{word-spacing:-17.730599pt;}
.wse{word-spacing:-17.215900pt;}
.ws14{word-spacing:-16.057600pt;}
.ws15{word-spacing:-16.021461pt;}
.ws6{word-spacing:-14.892617pt;}
.ws5{word-spacing:-14.846059pt;}
.ws16{word-spacing:-14.464000pt;}
.wsa{word-spacing:-14.291508pt;}
.ws13{word-spacing:-9.835520pt;}
.ws0{word-spacing:0.000000pt;}
._b{margin-left:-5.981227pt;}
._a{margin-left:-4.246144pt;}
._3{margin-left:-3.163435pt;}
._d{margin-left:-2.256768pt;}
._0{margin-left:-1.362944pt;}
._1{width:1.121579pt;}
._2{width:2.045952pt;}
._6{width:3.005611pt;}
._4{width:3.915520pt;}
._8{width:4.910507pt;}
._7{width:6.362283pt;}
._1e{width:9.216000pt;}
._e{width:12.518400pt;}
._f{width:13.438507pt;}
._10{width:14.720000pt;}
._1a{width:15.984597pt;}
._1b{width:17.293909pt;}
._19{width:26.950955pt;}
._18{width:33.397333pt;}
._16{width:37.836800pt;}
._14{width:39.270400pt;}
._1d{width:47.681579pt;}
._1c{width:48.693760pt;}
._15{width:50.589867pt;}
._12{width:51.908267pt;}
._11{width:53.141504pt;}
._13{width:80.634453pt;}
._17{width:107.831467pt;}
._9{width:290.406400pt;}
._5{width:360.067499pt;}
._c{width:653.506261pt;}
.fs13{font-size:42.240000pt;}
.fs18{font-size:43.520000pt;}
.fs17{font-size:46.080000pt;}
.fsf{font-size:50.332164pt;}
.fsd{font-size:52.449163pt;}
.fs16{font-size:56.320000pt;}
.fs15{font-size:56.448000pt;}
.fs11{font-size:60.892846pt;}
.fs12{font-size:64.000000pt;}
.fse{font-size:64.009382pt;}
.fs14{font-size:64.128000pt;}
.fsc{font-size:66.701653pt;}
.fs4{font-size:69.120000pt;}
.fs9{font-size:69.248000pt;}
.fs1f{font-size:70.400000pt;}
.fs20{font-size:70.528000pt;}
.fs8{font-size:74.240000pt;}
.fsa{font-size:74.368000pt;}
.fs23{font-size:76.800000pt;}
.fs10{font-size:77.403921pt;}
.fs28{font-size:80.640000pt;}
.fs29{font-size:80.768000pt;}
.fs6{font-size:85.760000pt;}
.fs7{font-size:85.888000pt;}
.fs1b{font-size:89.600000pt;}
.fs5{font-size:96.000000pt;}
.fs24{font-size:101.120000pt;}
.fs25{font-size:101.248000pt;}
.fs2{font-size:106.240000pt;}
.fs3{font-size:106.368000pt;}
.fs1e{font-size:112.768000pt;}
.fs1d{font-size:117.760000pt;}
.fs1c{font-size:117.888000pt;}
.fs1a{font-size:128.000000pt;}
.fs19{font-size:128.128000pt;}
.fs27{font-size:149.760000pt;}
.fs26{font-size:149.888000pt;}
.fs22{font-size:154.880000pt;}
.fs21{font-size:155.008000pt;}
.fs1{font-size:170.240000pt;}
.fs0{font-size:170.368000pt;}
.fsb{font-size:192.000000pt;}
.fs2a{font-size:213.888000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:4.239938pt;}
.y43{bottom:4.418272pt;}
.y6a{bottom:5.111554pt;}
.y5b{bottom:5.881204pt;}
.y5f{bottom:9.437281pt;}
.y47{bottom:9.549168pt;}
.y6b{bottom:16.875695pt;}
.y61{bottom:17.369673pt;}
.y4d{bottom:17.958446pt;}
.y67{bottom:19.020759pt;}
.y45{bottom:19.668436pt;}
.y6e{bottom:20.011423pt;}
.y70{bottom:20.969176pt;}
.y56{bottom:23.684383pt;}
.y6f{bottom:23.814973pt;}
.y5d{bottom:23.825714pt;}
.y4b{bottom:24.656808pt;}
.y42{bottom:24.692439pt;}
.y49{bottom:24.799333pt;}
.yb9{bottom:25.248000pt;}
.y59{bottom:25.302854pt;}
.y69{bottom:28.598558pt;}
.y5e{bottom:28.886285pt;}
.ye3{bottom:29.216000pt;}
.y46{bottom:29.787704pt;}
.yae{bottom:39.013333pt;}
.y40{bottom:39.507902pt;}
.y54{bottom:39.828060pt;}
.y66{bottom:42.664619pt;}
.y6c{bottom:43.655283pt;}
.y5a{bottom:44.895469pt;}
.y4a{bottom:45.066373pt;}
.ye2{bottom:48.768000pt;}
.yaa{bottom:49.952000pt;}
.y53{bottom:59.386482pt;}
.y62{bottom:59.842249pt;}
.y3f{bottom:59.888963pt;}
.y65{bottom:66.308479pt;}
.y2b{bottom:66.784000pt;}
.y6d{bottom:67.134032pt;}
.yaf{bottom:67.746667pt;}
.ye1{bottom:68.288000pt;}
.ya9{bottom:77.472000pt;}
.y52{bottom:78.972259pt;}
.yd2{bottom:79.200000pt;}
.y3e{bottom:80.270024pt;}
.y11d{bottom:87.808000pt;}
.y2a{bottom:89.216000pt;}
.ya{bottom:89.504000pt;}
.y64{bottom:89.952339pt;}
.yd6{bottom:90.816000pt;}
.yb0{bottom:96.453333pt;}
.y51{bottom:98.526122pt;}
.ya8{bottom:99.264000pt;}
.y3d{bottom:100.674839pt;}
.yad{bottom:107.840000pt;}
.y11c{bottom:108.640000pt;}
.y29{bottom:113.216000pt;}
.y63{bottom:113.597575pt;}
.y9{bottom:114.496000pt;}
.ya7{bottom:117.184000pt;}
.y50{bottom:118.118738pt;}
.yf2{bottom:120.992000pt;}
.y3c{bottom:121.055899pt;}
.yb1{bottom:125.186667pt;}
.y103{bottom:126.080000pt;}
.ye0{bottom:126.272000pt;}
.y11b{bottom:129.440000pt;}
.yd0{bottom:129.826667pt;}
.ya6{bottom:129.984000pt;}
.ycc{bottom:130.173333pt;}
.y28{bottom:135.613333pt;}
.yd1{bottom:136.093333pt;}
.y8{bottom:137.573333pt;}
.y4f{bottom:137.677160pt;}
.y3b{bottom:141.436960pt;}
.y2e{bottom:142.213333pt;}
.ybc{bottom:143.813333pt;}
.ya5{bottom:144.706667pt;}
.ydf{bottom:145.786667pt;}
.yc9{bottom:146.493333pt;}
.yf1{bottom:148.546667pt;}
.y11a{bottom:150.240000pt;}
.y102{bottom:151.706667pt;}
.yb2{bottom:153.893333pt;}
.y2d{bottom:157.573333pt;}
.y27{bottom:158.013333pt;}
.y68{bottom:161.022119pt;}
.yde{bottom:164.706667pt;}
.ya4{bottom:165.213333pt;}
.y7{bottom:170.853333pt;}
.y119{bottom:171.066667pt;}
.y101{bottom:177.306667pt;}
.yc8{bottom:178.213333pt;}
.ya3{bottom:179.613333pt;}
.y2c{bottom:179.973333pt;}
.yf0{bottom:181.826667pt;}
.yb3{bottom:182.626667pt;}
.ydd{bottom:184.253333pt;}
.ycd{bottom:189.920000pt;}
.y118{bottom:191.866667pt;}
.ybb{bottom:192.026667pt;}
.y60{bottom:193.721426pt;}
.y7f{bottom:195.360000pt;}
.ya2{bottom:200.413333pt;}
.ycf{bottom:202.106667pt;}
.yd5{bottom:202.266667pt;}
.y82{bottom:202.720000pt;}
.y100{bottom:202.906667pt;}
.y39{bottom:202.973333pt;}
.ydc{bottom:203.773333pt;}
.y6{bottom:209.280000pt;}
.yef{bottom:209.373333pt;}
.yb4{bottom:211.333333pt;}
.y117{bottom:212.666667pt;}
.yc7{bottom:216.933333pt;}
.y7e{bottom:217.786667pt;}
.yd4{bottom:220.186667pt;}
.ya1{bottom:221.213333pt;}
.ydb{bottom:223.293333pt;}
.y26{bottom:223.493333pt;}
.y4e{bottom:223.537368pt;}
.y38{bottom:226.693333pt;}
.yff{bottom:228.546667pt;}
.y116{bottom:233.506667pt;}
.yb5{bottom:240.026667pt;}
.yba{bottom:240.293333pt;}
.ya0{bottom:242.053333pt;}
.yda{bottom:242.240000pt;}
.yee{bottom:243.613333pt;}
.yc{bottom:245.760000pt;}
.y25{bottom:245.920000pt;}
.yc6{bottom:248.640000pt;}
.y5{bottom:249.986667pt;}
.y37{bottom:250.053333pt;}
.yfe{bottom:260.546667pt;}
.y9f{bottom:261.253333pt;}
.yd9{bottom:261.760000pt;}
.y24{bottom:268.320000pt;}
.yb6{bottom:268.773333pt;}
.y5c{bottom:273.349797pt;}
.yed{bottom:275.333333pt;}
.y9e{bottom:275.973333pt;}
.yb{bottom:279.066667pt;}
.yc5{bottom:280.320000pt;}
.yd8{bottom:281.280000pt;}
.yfd{bottom:286.146667pt;}
.y126{bottom:288.893333pt;}
.y23{bottom:290.720000pt;}
.y115{bottom:296.960000pt;}
.yb7{bottom:297.466667pt;}
.y9d{bottom:298.373333pt;}
.yd7{bottom:300.826667pt;}
.y4{bottom:308.893333pt;}
.y124{bottom:310.146667pt;}
.yfc{bottom:311.773333pt;}
.yc4{bottom:312.026667pt;}
.y58{bottom:312.899754pt;}
.y22{bottom:313.146667pt;}
.yec{bottom:314.053333pt;}
.y114{bottom:317.786667pt;}
.y9c{bottom:320.800000pt;}
.yce{bottom:321.186667pt;}
.yd3{bottom:322.906667pt;}
.yb8{bottom:326.213333pt;}
.y21{bottom:335.546667pt;}
.yfb{bottom:337.373333pt;}
.y113{bottom:338.586667pt;}
.y14{bottom:339.386667pt;}
.y123{bottom:342.146667pt;}
.yc3{bottom:343.706667pt;}
.yeb{bottom:345.760000pt;}
.y11f{bottom:347.106667pt;}
.y125{bottom:352.933333pt;}
.y9b{bottom:354.720000pt;}
.y90{bottom:355.360000pt;}
.y20{bottom:357.946667pt;}
.y36{bottom:358.853333pt;}
.y112{bottom:359.386667pt;}
.ycb{bottom:360.960000pt;}
.y13{bottom:364.986667pt;}
.y3{bottom:367.813333pt;}
.yfa{bottom:369.413333pt;}
.y122{bottom:374.146667pt;}
.y55{bottom:375.165290pt;}
.y9a{bottom:377.120000pt;}
.y7d{bottom:377.280000pt;}
.yea{bottom:377.440000pt;}
.y8f{bottom:377.760000pt;}
.y111{bottom:380.226667pt;}
.y1f{bottom:380.386667pt;}
.y35{bottom:382.240000pt;}
.yc2{bottom:382.466667pt;}
.y12{bottom:390.586667pt;}
.yf9{bottom:393.733333pt;}
.y81{bottom:397.573333pt;}
.y99{bottom:399.520000pt;}
.y7c{bottom:399.706667pt;}
.y8e{bottom:400.186667pt;}
.y110{bottom:401.026667pt;}
.y1e{bottom:402.786667pt;}
.y34{bottom:405.920000pt;}
.y10a{bottom:411.426667pt;}
.y4c{bottom:413.449409pt;}
.yc1{bottom:414.146667pt;}
.ye9{bottom:416.186667pt;}
.y11{bottom:416.226667pt;}
.y80{bottom:419.973333pt;}
.y7b{bottom:420.186667pt;}
.y10f{bottom:421.826667pt;}
.y98{bottom:421.946667pt;}
.y8d{bottom:422.586667pt;}
.yf8{bottom:424.133333pt;}
.y1d{bottom:425.186667pt;}
.y2{bottom:426.720000pt;}
.y33{bottom:429.280000pt;}
.y109{bottom:432.226667pt;}
.y7a{bottom:434.906667pt;}
.y10{bottom:441.826667pt;}
.y10e{bottom:442.653333pt;}
.y97{bottom:444.346667pt;}
.y3a{bottom:444.520146pt;}
.y8c{bottom:444.986667pt;}
.yc0{bottom:445.853333pt;}
.y1c{bottom:447.613333pt;}
.ye8{bottom:447.866667pt;}
.yf7{bottom:448.480000pt;}
.y32{bottom:452.986667pt;}
.y108{bottom:453.026667pt;}
.y79{bottom:457.346667pt;}
.y10d{bottom:463.453333pt;}
.y96{bottom:466.746667pt;}
.y8b{bottom:467.426667pt;}
.yf{bottom:467.453333pt;}
.y1b{bottom:473.253333pt;}
.y107{bottom:473.853333pt;}
.y31{bottom:476.666667pt;}
.y78{bottom:477.826667pt;}
.yf6{bottom:478.880000pt;}
.ye7{bottom:479.546667pt;}
.y10c{bottom:484.253333pt;}
.y1{bottom:485.600000pt;}
.y95{bottom:489.186667pt;}
.y8a{bottom:489.826667pt;}
.y77{bottom:492.546667pt;}
.ye{bottom:493.053333pt;}
.y1a{bottom:494.080000pt;}
.y106{bottom:494.653333pt;}
.y72{bottom:497.920000pt;}
.y121{bottom:499.426667pt;}
.y30{bottom:500.026667pt;}
.yca{bottom:500.706667pt;}
.ybf{bottom:503.840000pt;}
.y10b{bottom:505.053333pt;}
.y48{bottom:505.976883pt;}
.yac{bottom:506.400000pt;}
.ye6{bottom:511.266667pt;}
.y94{bottom:511.586667pt;}
.y89{bottom:512.226667pt;}
.y19{bottom:514.880000pt;}
.y76{bottom:514.946667pt;}
.y105{bottom:515.453333pt;}
.y71{bottom:520.320000pt;}
.yf5{bottom:524.226667pt;}
.y120{bottom:525.053333pt;}
.y93{bottom:533.986667pt;}
.y88{bottom:534.653333pt;}
.y75{bottom:535.453333pt;}
.y18{bottom:535.680000pt;}
.ybe{bottom:542.266667pt;}
.y44{bottom:547.190333pt;}
.y74{bottom:549.533333pt;}
.ye5{bottom:554.813333pt;}
.y92{bottom:556.413333pt;}
.y17{bottom:556.506667pt;}
.y87{bottom:557.053333pt;}
.yab{bottom:557.626667pt;}
.yf4{bottom:569.053333pt;}
.y16{bottom:577.626667pt;}
.y91{bottom:578.813333pt;}
.y86{bottom:579.453333pt;}
.ybd{bottom:580.666667pt;}
.y41{bottom:598.499297pt;}
.y15{bottom:600.026667pt;}
.ye4{bottom:601.213333pt;}
.y85{bottom:601.893333pt;}
.y2f{bottom:602.106667pt;}
.y11e{bottom:608.613333pt;}
.yf3{bottom:613.853333pt;}
.y84{bottom:624.293333pt;}
.y83{bottom:646.693333pt;}
.y73{bottom:676.706667pt;}
.yd{bottom:679.066667pt;}
.y104{bottom:679.266667pt;}
.h3e{height:35.891250pt;}
.h3d{height:38.002500pt;}
.h21{height:38.870655pt;}
.h25{height:39.007427pt;}
.h36{height:39.084375pt;}
.h28{height:40.206748pt;}
.h16{height:40.505577pt;}
.h1a{height:40.648101pt;}
.h34{height:40.775625pt;}
.h1d{height:41.897867pt;}
.h3c{height:46.447500pt;}
.h3b{height:46.553062pt;}
.h2c{height:46.957498pt;}
.h31{height:48.642918pt;}
.h26{height:49.265341pt;}
.h18{height:50.596339pt;}
.h4c{height:51.125000pt;}
.h24{height:51.132495pt;}
.h22{height:52.788987pt;}
.h19{height:53.283157pt;}
.h17{height:55.009322pt;}
.h47{height:58.059375pt;}
.h4b{height:58.164938pt;}
.h33{height:59.218750pt;}
.h1f{height:59.227431pt;}
.h1b{height:60.886637pt;}
.h23{height:61.574837pt;}
.h14{height:61.718571pt;}
.h37{height:61.781250pt;}
.h20{height:61.790307pt;}
.h2f{height:61.832429pt;}
.h2d{height:63.835558pt;}
.h7{height:63.956250pt;}
.hc{height:64.074687pt;}
.h15{height:64.389242pt;}
.h57{height:66.723750pt;}
.h58{height:66.847312pt;}
.hf{height:68.693750pt;}
.h35{height:68.812187pt;}
.h2a{height:71.621304pt;}
.hb{height:71.666250pt;}
.hd{height:71.789812pt;}
.h2b{height:74.720485pt;}
.h12{height:79.353125pt;}
.h11{height:79.471563pt;}
.h9{height:82.786875pt;}
.ha{height:82.910438pt;}
.h4{height:84.867500pt;}
.h5{height:84.969750pt;}
.h38{height:88.828125pt;}
.h45{height:90.082250pt;}
.h8{height:92.671875pt;}
.h54{height:93.565625pt;}
.h55{height:93.684062pt;}
.h48{height:97.117500pt;}
.h4a{height:97.223063pt;}
.h4f{height:97.614375pt;}
.h50{height:97.737937pt;}
.h6{height:98.303125pt;}
.h56{height:98.421562pt;}
.h2e{height:100.354316pt;}
.h32{height:102.556875pt;}
.h59{height:102.680437pt;}
.h42{height:108.962500pt;}
.h41{height:109.080938pt;}
.h43{height:113.677500pt;}
.h44{height:113.801063pt;}
.h40{height:118.437500pt;}
.h3f{height:118.555937pt;}
.h2{height:135.992500pt;}
.h1{height:136.094750pt;}
.h52{height:138.571875pt;}
.h51{height:138.690313pt;}
.h4e{height:143.309375pt;}
.h4d{height:143.427813pt;}
.h53{height:144.691688pt;}
.h29{height:148.131865pt;}
.he{height:154.412187pt;}
.h39{height:157.640312pt;}
.h3{height:164.461687pt;}
.h10{height:177.656250pt;}
.h30{height:184.986071pt;}
.h1e{height:190.500857pt;}
.h13{height:194.487103pt;}
.h5a{height:197.909062pt;}
.h27{height:220.993821pt;}
.h1c{height:226.270156pt;}
.h46{height:359.040000pt;}
.h49{height:360.960000pt;}
.h3a{height:368.320000pt;}
.h0{height:720.000000pt;}
.w2{width:156.547697pt;}
.w9{width:157.179020pt;}
.w1{width:160.735486pt;}
.w8{width:161.383698pt;}
.w10{width:168.956126pt;}
.wf{width:173.522932pt;}
.w4{width:174.520292pt;}
.wb{width:175.267893pt;}
.w3{width:183.288475pt;}
.wa{width:183.983839pt;}
.w5{width:237.380751pt;}
.wc{width:238.338056pt;}
.w6{width:277.688220pt;}
.wd{width:278.808076pt;}
.w11{width:338.383057pt;}
.w14{width:444.160000pt;}
.w15{width:515.840000pt;}
.w7{width:680.021328pt;}
.we{width:680.997158pt;}
.w12{width:685.052278pt;}
.w13{width:711.360000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x29{left:7.503122pt;}
.x47{left:8.851129pt;}
.x2b{left:10.294981pt;}
.x30{left:14.657262pt;}
.x45{left:15.819039pt;}
.x2a{left:20.589963pt;}
.x28{left:27.918594pt;}
.x37{left:28.965541pt;}
.x41{left:30.131503pt;}
.x38{left:36.817645pt;}
.x35{left:40.132978pt;}
.x36{left:41.877890pt;}
.x32{left:46.065680pt;}
.x66{left:50.813333pt;}
.x2d{left:52.521854pt;}
.x2f{left:54.092275pt;}
.x34{left:55.139222pt;}
.x43{left:56.722555pt;}
.x44{left:58.379787pt;}
.x3e{left:63.464351pt;}
.x65{left:65.026667pt;}
.x7c{left:73.824000pt;}
.x39{left:77.299606pt;}
.x2c{left:80.300855pt;}
.x3b{left:82.185360pt;}
.x48{left:83.520000pt;}
.x42{left:86.665736pt;}
.xa{left:90.304000pt;}
.x52{left:91.968000pt;}
.x1a{left:93.440000pt;}
.xe{left:94.464000pt;}
.x3a{left:97.395177pt;}
.xc{left:100.544000pt;}
.x72{left:101.568000pt;}
.x50{left:102.912000pt;}
.xb{left:104.384000pt;}
.x19{left:108.800000pt;}
.x6d{left:110.208000pt;}
.x61{left:111.392000pt;}
.x62{left:112.672000pt;}
.x18{left:118.720000pt;}
.x69{left:121.472000pt;}
.x49{left:123.200000pt;}
.x51{left:124.992000pt;}
.x6b{left:126.560000pt;}
.xd{left:136.386667pt;}
.x63{left:140.386667pt;}
.x1{left:141.786667pt;}
.x77{left:144.546667pt;}
.x5a{left:145.733333pt;}
.x74{left:147.106667pt;}
.x58{left:148.293333pt;}
.x70{left:149.253333pt;}
.x40{left:151.006621pt;}
.x27{left:155.031298pt;}
.x79{left:157.600000pt;}
.x67{left:166.053333pt;}
.x9{left:175.066667pt;}
.x83{left:176.253333pt;}
.x64{left:182.306667pt;}
.x57{left:185.093333pt;}
.x7a{left:186.400000pt;}
.x75{left:191.200000pt;}
.x73{left:198.813333pt;}
.x71{left:202.240000pt;}
.x78{left:205.026667pt;}
.x76{left:215.226667pt;}
.x6e{left:220.573333pt;}
.x84{left:225.693333pt;}
.x6f{left:228.453333pt;}
.x59{left:230.880000pt;}
.x6c{left:249.786667pt;}
.xf{left:262.880000pt;}
.x10{left:272.480000pt;}
.x5b{left:274.720000pt;}
.x3{left:276.613333pt;}
.x2{left:291.653333pt;}
.x11{left:310.906667pt;}
.x2e{left:316.508372pt;}
.x1d{left:317.760000pt;}
.x1b{left:319.426667pt;}
.x12{left:320.506667pt;}
.x5{left:322.053333pt;}
.x1c{left:323.586667pt;}
.x14{left:324.933333pt;}
.x20{left:329.506667pt;}
.x23{left:330.466667pt;}
.x15{left:334.533333pt;}
.x21{left:338.173333pt;}
.x1f{left:341.053333pt;}
.x5c{left:343.173333pt;}
.x24{left:344.893333pt;}
.x22{left:353.213333pt;}
.x17{left:355.013333pt;}
.x60{left:365.893333pt;}
.x6a{left:387.813333pt;}
.x5e{left:405.573333pt;}
.x6{left:406.560000pt;}
.x5d{left:408.453333pt;}
.x4d{left:409.573333pt;}
.x4e{left:414.146667pt;}
.x25{left:434.493333pt;}
.x4c{left:439.653333pt;}
.x4f{left:444.226667pt;}
.x7e{left:448.666667pt;}
.x81{left:449.693333pt;}
.x54{left:459.840000pt;}
.x80{left:465.373333pt;}
.x5f{left:469.600000pt;}
.x31{left:473.754035pt;}
.x3c{left:475.012990pt;}
.x7{left:475.973333pt;}
.x53{left:477.120000pt;}
.x4{left:480.506667pt;}
.x1e{left:484.933333pt;}
.x16{left:489.440000pt;}
.x46{left:494.992255pt;}
.x4a{left:504.866667pt;}
.x82{left:529.413333pt;}
.x26{left:533.693333pt;}
.x13{left:554.746667pt;}
.x3f{left:556.157425pt;}
.x7b{left:580.093333pt;}
.x55{left:588.186667pt;}
.x7f{left:590.653333pt;}
.x68{left:618.693333pt;}
.x7d{left:625.893333pt;}
.x4b{left:633.946667pt;}
.x33{left:657.740475pt;}
.x3d{left:659.697609pt;}
.x56{left:661.506667pt;}
.x8{left:664.506667pt;}
}




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