
    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_9143f03746cb91da5edff2a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_8b8f2228858897ef61ed2bd7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_53babcea693d981b8630ac37.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966797;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_e5bb4bdf9f43025178f968e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_3f0823e8d48f8931619af148.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_90e4652013d039ee1732d582.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.752441;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_ef421b2a059b9c6dcfd5af01.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.966797;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_93747c12016b838e41945652.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_72b9246f3db6eb22500629e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e62ea8d2aba7b4d24679210f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919000;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:ffb;src:url('chunks/assets/font_a7597726c5080e936121f0b8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.923500;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:ffc;src:url('chunks/assets/font_91d3f04d2fdd2a5600b90cb7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.948500;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.m2{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);}
.v4{vertical-align:-3.180000px;}
.v1{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.220000px;}
.v3{vertical-align:27.360000px;}
.v2{vertical-align:36.000000px;}
.ls11{letter-spacing:-9.660000px;}
.ls23{letter-spacing:-9.600000px;}
.ls28{letter-spacing:-9.480000px;}
.ls5{letter-spacing:-0.333600px;}
.ls7{letter-spacing:-0.306600px;}
.ls1d{letter-spacing:-0.288000px;}
.ls29{letter-spacing:-0.270000px;}
.ls6{letter-spacing:-0.253200px;}
.lse{letter-spacing:-0.208200px;}
.ls31{letter-spacing:-0.189600px;}
.ls2b{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.053280px;}
.ls14{letter-spacing:-0.042600px;}
.ls12{letter-spacing:-0.021300px;}
.ls1e{letter-spacing:-0.011940px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.018720px;}
.ls1f{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.037440px;}
.ls18{letter-spacing:0.051840px;}
.ls2c{letter-spacing:0.054000px;}
.ls16{letter-spacing:0.112200px;}
.lsf{letter-spacing:0.164400px;}
.ls8{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.180288px;}
.ls20{letter-spacing:0.193800px;}
.ls2{letter-spacing:0.204480px;}
.ls1a{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.244800px;}
.ls17{letter-spacing:0.250800px;}
.ls32{letter-spacing:0.265200px;}
.ls27{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.324480px;}
.ls13{letter-spacing:0.341400px;}
.ls26{letter-spacing:0.360000px;}
.lsa{letter-spacing:9.360000px;}
.ls0{letter-spacing:9.504000px;}
.ls10{letter-spacing:17.928000px;}
.ls2d{letter-spacing:24.405120px;}
.ls15{letter-spacing:41.124096px;}
.lsb{letter-spacing:41.182560px;}
.ls24{letter-spacing:44.339616px;}
.ls25{letter-spacing:44.398080px;}
.ls30{letter-spacing:44.519616px;}
.ls2f{letter-spacing:44.578080px;}
.ls33{letter-spacing:47.844000px;}
.ls2e{letter-spacing:52.597440px;}
.ls1{letter-spacing:64.366560px;}
.ls19{letter-spacing:80.403840px;}
.ls1b{letter-spacing:97.560000px;}
.ls22{letter-spacing:101.844000px;}
.ls1c{letter-spacing:127.761600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3b{word-spacing:-60.048000px;}
.ws30{word-spacing:-50.448000px;}
.ws11{word-spacing:-50.428032px;}
.ws34{word-spacing:-43.962720px;}
.ws25{word-spacing:-33.466752px;}
.ws28{word-spacing:-33.426720px;}
.ws2d{word-spacing:-30.064032px;}
.ws2e{word-spacing:-30.060000px;}
.ws29{word-spacing:-30.024000px;}
.ws17{word-spacing:-26.773512px;}
.ws12{word-spacing:-26.661312px;}
.ws32{word-spacing:-26.658720px;}
.wsc{word-spacing:-26.621280px;}
.ws3c{word-spacing:-26.431680px;}
.ws6{word-spacing:-25.200000px;}
.ws22{word-spacing:-25.020000px;}
.ws38{word-spacing:-24.930000px;}
.ws36{word-spacing:-24.750000px;}
.ws35{word-spacing:-23.418720px;}
.ws15{word-spacing:-22.618080px;}
.ws3e{word-spacing:-20.844000px;}
.ws3d{word-spacing:-20.056032px;}
.ws21{word-spacing:-20.016000px;}
.ws3a{word-spacing:-18.454752px;}
.ws7{word-spacing:-16.560000px;}
.ws10{word-spacing:-12.784320px;}
.ws1{word-spacing:-10.008000px;}
.ws5{word-spacing:-5.004000px;}
.ws26{word-spacing:-2.453760px;}
.ws37{word-spacing:-2.250000px;}
.ws27{word-spacing:-1.733760px;}
.ws16{word-spacing:-1.127040px;}
.ws1a{word-spacing:-1.008000px;}
.ws2b{word-spacing:-0.972000px;}
.ws1b{word-spacing:-0.871296px;}
.ws40{word-spacing:-0.715920px;}
.ws18{word-spacing:-0.464400px;}
.ws23{word-spacing:-0.344880px;}
.ws1c{word-spacing:-0.330240px;}
.ws39{word-spacing:-0.252000px;}
.ws1d{word-spacing:-0.018720px;}
.ws9{word-spacing:0.000000px;}
.wse{word-spacing:0.005280px;}
.wsf{word-spacing:0.010800px;}
.ws14{word-spacing:0.021192px;}
.ws2a{word-spacing:0.072000px;}
.ws2c{word-spacing:0.140688px;}
.ws24{word-spacing:0.360000px;}
.ws31{word-spacing:0.389760px;}
.ws19{word-spacing:0.431760px;}
.ws1e{word-spacing:0.526320px;}
.ws1f{word-spacing:0.669120px;}
.ws3f{word-spacing:0.740640px;}
.ws20{word-spacing:0.835200px;}
.ws13{word-spacing:1.104240px;}
.ws33{word-spacing:1.349760px;}
.ws2f{word-spacing:2.517120px;}
.wsd{word-spacing:2.681760px;}
.wsb{word-spacing:2.808000px;}
.ws0{word-spacing:9.504000px;}
.wsa{word-spacing:10.512000px;}
.ws2{word-spacing:52.839840px;}
.ws4{word-spacing:53.379840px;}
.ws3{word-spacing:58.179840px;}
.ws8{word-spacing:635.576160px;}
._16{margin-left:-18.036000px;}
._e{margin-left:-12.228960px;}
._6{margin-left:-10.305360px;}
._5{margin-left:-9.248400px;}
._8{margin-left:-8.191440px;}
._12{margin-left:-6.907392px;}
._7{margin-left:-5.813280px;}
._11{margin-left:-4.737360px;}
._20{margin-left:-3.600000px;}
._9{margin-left:-2.445120px;}
._1{margin-left:-1.209600px;}
._0{width:1.044000px;}
._a{width:2.466720px;}
._15{width:3.543840px;}
._1b{width:4.785360px;}
._17{width:17.820000px;}
._18{width:18.954000px;}
._1e{width:20.034000px;}
._21{width:22.311120px;}
._1d{width:23.676000px;}
._13{width:27.786864px;}
._d{width:29.027040px;}
._f{width:30.949920px;}
._1c{width:36.626400px;}
._14{width:45.797760px;}
._3{width:63.826560px;}
._4{width:66.586560px;}
._2{width:68.026560px;}
._1a{width:617.010480px;}
._b{width:724.393440px;}
._19{width:3217.416000px;}
._1f{width:3589.260000px;}
._22{width:4144.596000px;}
._c{width:4353.540000px;}
._10{width:4493.076000px;}
.fc5{color:rgb(0,32,96);}
.fca{color:rgb(255,192,0);}
.fc4{color:rgb(88,101,137);}
.fcc{color:rgb(88,100,138);}
.fcb{color:rgb(90,102,127);}
.fc3{color:transparent;}
.fc7{color:rgb(0,83,254);}
.fc6{color:rgb(17,17,17);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc9{color:rgb(42,212,133);}
.fc8{color:rgb(15,31,88);}
.fc0{color:rgb(133,144,173);}
.fs4{font-size:18.000000px;}
.fs1{font-size:30.240000px;}
.fs2{font-size:30.384000px;}
.fs0{font-size:36.000000px;}
.fs3{font-size:36.144000px;}
.fsc{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fsd{font-size:63.360000px;}
.fs11{font-size:66.240000px;}
.fs1a{font-size:66.384000px;}
.fsb{font-size:72.000000px;}
.fs1f{font-size:72.144000px;}
.fs8{font-size:79.920000px;}
.fs13{font-size:81.360000px;}
.fs1c{font-size:84.240000px;}
.fs9{font-size:90.000000px;}
.fs16{font-size:90.144000px;}
.fsf{font-size:95.760000px;}
.fs10{font-size:95.904000px;}
.fs18{font-size:108.000000px;}
.fs19{font-size:108.144000px;}
.fs1e{font-size:112.320000px;}
.fs1d{font-size:112.464000px;}
.fs7{font-size:120.240000px;}
.fs15{font-size:120.384000px;}
.fs17{font-size:135.360000px;}
.fse{font-size:167.760000px;}
.fs1b{font-size:192.240000px;}
.fs14{font-size:216.000000px;}
.fs12{font-size:216.144000px;}
.fs5{font-size:264.240000px;}
.fs6{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.y1{bottom:10.944000px;}
.y39{bottom:12.276000px;}
.y23{bottom:31.500000px;}
.yf9{bottom:33.120000px;}
.yc3{bottom:39.456000px;}
.y8a{bottom:39.600000px;}
.y36{bottom:47.196000px;}
.y13f{bottom:52.992000px;}
.yc{bottom:55.908000px;}
.y5d{bottom:57.420000px;}
.y127{bottom:61.020000px;}
.yc2{bottom:61.056000px;}
.yb9{bottom:61.740000px;}
.y5f{bottom:68.976000px;}
.ye8{bottom:77.688000px;}
.yb{bottom:80.064000px;}
.y35{bottom:81.000000px;}
.y49{bottom:81.144000px;}
.yb8{bottom:81.576000px;}
.y13e{bottom:85.392000px;}
.y5c{bottom:86.220000px;}
.y126{bottom:88.020000px;}
.yf8{bottom:90.576000px;}
.y108{bottom:92.304000px;}
.y5e{bottom:93.276000px;}
.y7c{bottom:103.140000px;}
.ye7{bottom:104.688000px;}
.y2e{bottom:105.660000px;}
.y48{bottom:109.944000px;}
.y5b{bottom:115.020000px;}
.yf7{bottom:117.576000px;}
.y13d{bottom:117.792000px;}
.y37{bottom:119.268000px;}
.y107{bottom:119.340000px;}
.y122{bottom:129.708000px;}
.ye6{bottom:131.688000px;}
.y7b{bottom:131.940000px;}
.y4a{bottom:135.468000px;}
.y24{bottom:138.924000px;}
.y47{bottom:140.184000px;}
.y134{bottom:141.012000px;}
.y125{bottom:142.020000px;}
.y5a{bottom:145.260000px;}
.yf6{bottom:146.016000px;}
.y106{bottom:146.340000px;}
.y121{bottom:156.705000px;}
.ya3{bottom:159.150000px;}
.ye5{bottom:160.170000px;}
.y2c{bottom:162.030000px;}
.y7a{bottom:162.180000px;}
.yb0{bottom:166.110000px;}
.y46{bottom:169.020000px;}
.yd7{bottom:169.410000px;}
.y133{bottom:169.815000px;}
.yf5{bottom:173.010000px;}
.y105{bottom:173.340000px;}
.y59{bottom:174.090000px;}
.y13c{bottom:177.510000px;}
.y120{bottom:183.705000px;}
.y6e{bottom:186.045000px;}
.ye4{bottom:187.170000px;}
.y79{bottom:190.980000px;}
.yd3{bottom:191.670000px;}
.yd6{bottom:194.610000px;}
.ya2{bottom:195.195000px;}
.y124{bottom:196.020000px;}
.y45{bottom:197.820000px;}
.y1b{bottom:198.330000px;}
.yaf{bottom:198.510000px;}
.y132{bottom:198.645000px;}
.y16{bottom:199.005000px;}
.yf4{bottom:200.010000px;}
.y104{bottom:201.960000px;}
.y13b{bottom:202.710000px;}
.y58{bottom:202.890000px;}
.y6d{bottom:207.645000px;}
.y11f{bottom:210.750000px;}
.ye3{bottom:214.170000px;}
.yd2{bottom:216.870000px;}
.y78{bottom:221.220000px;}
.y15{bottom:222.270000px;}
.y1a{bottom:223.020000px;}
.y1e{bottom:224.670000px;}
.y44{bottom:228.060000px;}
.yf3{bottom:228.495000px;}
.y103{bottom:228.960000px;}
.yae{bottom:230.910000px;}
.ya1{bottom:231.195000px;}
.y57{bottom:231.690000px;}
.y123{bottom:232.020000px;}
.y11e{bottom:239.190000px;}
.ye2{bottom:242.790000px;}
.y14{bottom:246.450000px;}
.y131{bottom:247.065000px;}
.y38{bottom:247.860000px;}
.y19{bottom:247.935000px;}
.y43{bottom:256.860000px;}
.yf2{bottom:257.115000px;}
.y102{bottom:257.400000px;}
.y13a{bottom:258.450000px;}
.y56{bottom:261.930000px;}
.yad{bottom:263.310000px;}
.y11d{bottom:266.190000px;}
.ya0{bottom:267.195000px;}
.ye1{bottom:269.790000px;}
.y13{bottom:270.930000px;}
.y6b{bottom:271.155000px;}
.y18{bottom:272.415000px;}
.y130{bottom:275.865000px;}
.y77{bottom:281.910000px;}
.yd5{bottom:282.810000px;}
.yf1{bottom:284.115000px;}
.y112{bottom:286.890000px;}
.y42{bottom:287.280000px;}
.y17{bottom:293.115000px;}
.y11c{bottom:293.190000px;}
.y12{bottom:294.405000px;}
.y2b{bottom:294.915000px;}
.ye0{bottom:298.230000px;}
.y6a{bottom:299.955000px;}
.y34{bottom:300.210000px;}
.y92{bottom:301.650000px;}
.y9f{bottom:303.195000px;}
.y12f{bottom:304.665000px;}
.yd4{bottom:308.010000px;}
.y55{bottom:310.350000px;}
.y76{bottom:310.710000px;}
.yf0{bottom:312.555000px;}
.y139{bottom:313.200000px;}
.yac{bottom:313.740000px;}
.y111{bottom:313.890000px;}
.y101{bottom:314.490000px;}
.y2a{bottom:320.550000px;}
.y11b{bottom:321.810000px;}
.y14b{bottom:325.365000px;}
.y69{bottom:328.785000px;}
.y41{bottom:334.110000px;}
.y138{bottom:334.800000px;}
.y33{bottom:336.210000px;}
.y91{bottom:337.650000px;}
.y54{bottom:339.150000px;}
.y9e{bottom:339.195000px;}
.y75{bottom:339.510000px;}
.y110{bottom:340.890000px;}
.y100{bottom:341.490000px;}
.yab{bottom:346.140000px;}
.ydf{bottom:347.220000px;}
.y11a{bottom:348.810000px;}
.y11{bottom:350.970000px;}
.y8{bottom:352.470000px;}
.y12e{bottom:352.905000px;}
.y14a{bottom:354.165000px;}
.y137{bottom:356.400000px;}
.yef{bottom:358.995000px;}
.y40{bottom:362.910000px;}
.yd1{bottom:364.530000px;}
.y53{bottom:367.995000px;}
.y10f{bottom:369.540000px;}
.yff{bottom:369.930000px;}
.y1d{bottom:370.980000px;}
.y90{bottom:373.680000px;}
.yde{bottom:374.220000px;}
.y68{bottom:375.585000px;}
.y7{bottom:375.735000px;}
.y119{bottom:375.810000px;}
.y10{bottom:376.170000px;}
.yaa{bottom:378.540000px;}
.y12d{bottom:381.750000px;}
.y149{bottom:382.965000px;}
.yee{bottom:385.995000px;}
.yd0{bottom:387.720000px;}
.y3f{bottom:391.710000px;}
.y10e{bottom:396.540000px;}
.y52{bottom:396.795000px;}
.yfe{bottom:398.370000px;}
.y6{bottom:399.930000px;}
.y74{bottom:400.170000px;}
.yc1{bottom:400.785000px;}
.yf{bottom:401.070000px;}
.ydd{bottom:401.220000px;}
.y6c{bottom:402.765000px;}
.y118{bottom:402.840000px;}
.y67{bottom:404.385000px;}
.y12c{bottom:410.550000px;}
.ya9{bottom:410.940000px;}
.y9d{bottom:411.225000px;}
.y148{bottom:411.765000px;}
.ycf{bottom:412.920000px;}
.y98{bottom:414.465000px;}
.yed{bottom:414.645000px;}
.y89{bottom:415.470000px;}
.yca{bottom:419.040000px;}
.y3e{bottom:421.950000px;}
.y10d{bottom:423.540000px;}
.ye{bottom:424.005000px;}
.y32{bottom:424.110000px;}
.y5{bottom:424.410000px;}
.yb7{bottom:424.875000px;}
.yfd{bottom:425.370000px;}
.ydc{bottom:428.220000px;}
.y73{bottom:428.970000px;}
.yc0{bottom:429.585000px;}
.y117{bottom:431.280000px;}
.y66{bottom:433.185000px;}
.y20{bottom:440.715000px;}
.y147{bottom:441.285000px;}
.yec{bottom:441.645000px;}
.ya8{bottom:443.340000px;}
.y51{bottom:443.595000px;}
.y9c{bottom:447.225000px;}
.y4{bottom:447.870000px;}
.yd{bottom:449.355000px;}
.y97{bottom:450.465000px;}
.y3d{bottom:450.750000px;}
.y88{bottom:451.470000px;}
.y10c{bottom:451.980000px;}
.y7f{bottom:452.085000px;}
.yfc{bottom:453.990000px;}
.y8f{bottom:456.225000px;}
.ydb{bottom:456.660000px;}
.yb6{bottom:457.275000px;}
.y84{bottom:457.890000px;}
.y116{bottom:458.280000px;}
.y12b{bottom:458.790000px;}
.y72{bottom:459.255000px;}
.y65{bottom:461.985000px;}
.yeb{bottom:470.085000px;}
.y50{bottom:472.395000px;}
.y1c{bottom:473.730000px;}
.y10b{bottom:478.980000px;}
.y3c{bottom:480.990000px;}
.yce{bottom:481.350000px;}
.y9b{bottom:483.225000px;}
.yda{bottom:483.660000px;}
.y115{bottom:485.280000px;}
.yc9{bottom:485.670000px;}
.y96{bottom:486.510000px;}
.ybf{bottom:487.230000px;}
.y31{bottom:487.470000px;}
.y12a{bottom:487.590000px;}
.y71{bottom:488.055000px;}
.y1f{bottom:489.060000px;}
.yb5{bottom:489.675000px;}
.y146{bottom:491.010000px;}
.y64{bottom:492.225000px;}
.y8e{bottom:492.270000px;}
.ya7{bottom:493.770000px;}
.y83{bottom:493.920000px;}
.yea{bottom:497.085000px;}
.y4f{bottom:502.635000px;}
.ycd{bottom:502.995000px;}
.y10a{bottom:505.980000px;}
.yfb{bottom:509.475000px;}
.yd9{bottom:510.690000px;}
.y114{bottom:512.280000px;}
.yc8{bottom:514.470000px;}
.ybe{bottom:516.030000px;}
.y129{bottom:516.390000px;}
.y70{bottom:516.855000px;}
.y9a{bottom:519.225000px;}
.y145{bottom:519.810000px;}
.y63{bottom:521.070000px;}
.y95{bottom:522.510000px;}
.y87{bottom:523.470000px;}
.y7e{bottom:524.985000px;}
.ye9{bottom:525.525000px;}
.ya6{bottom:526.170000px;}
.y25{bottom:527.400000px;}
.ycc{bottom:528.195000px;}
.y8d{bottom:528.270000px;}
.y82{bottom:529.920000px;}
.yb4{bottom:531.075000px;}
.y4e{bottom:531.435000px;}
.y28{bottom:535.425000px;}
.yfa{bottom:537.915000px;}
.yd8{bottom:539.130000px;}
.y113{bottom:540.720000px;}
.yc7{bottom:543.270000px;}
.y109{bottom:543.450000px;}
.ybd{bottom:544.830000px;}
.y128{bottom:545.220000px;}
.y4b{bottom:546.120000px;}
.y6f{bottom:547.095000px;}
.y144{bottom:548.610000px;}
.y30{bottom:550.875000px;}
.y62{bottom:551.310000px;}
.y7d{bottom:552.030000px;}
.ya{bottom:552.420000px;}
.y99{bottom:555.270000px;}
.y94{bottom:558.510000px;}
.ya5{bottom:558.570000px;}
.y86{bottom:559.515000px;}
.y27{bottom:559.800000px;}
.y4d{bottom:561.705000px;}
.yb3{bottom:563.505000px;}
.y8c{bottom:564.270000px;}
.y81{bottom:565.920000px;}
.y9{bottom:576.030000px;}
.y143{bottom:577.410000px;}
.yc6{bottom:581.070000px;}
.y136{bottom:582.480000px;}
.ybc{bottom:582.630000px;}
.y26{bottom:583.770000px;}
.ya4{bottom:590.970000px;}
.y93{bottom:594.510000px;}
.y85{bottom:595.515000px;}
.y8b{bottom:600.270000px;}
.y29{bottom:601.635000px;}
.yb2{bottom:604.905000px;}
.y142{bottom:606.210000px;}
.y61{bottom:608.940000px;}
.yc5{bottom:609.915000px;}
.ycb{bottom:611.280000px;}
.ybb{bottom:611.430000px;}
.y3b{bottom:613.440000px;}
.y2f{bottom:614.235000px;}
.y4c{bottom:617.865000px;}
.y141{bottom:635.010000px;}
.y22{bottom:637.230000px;}
.yb1{bottom:637.305000px;}
.yc4{bottom:638.715000px;}
.y135{bottom:640.080000px;}
.yba{bottom:640.260000px;}
.y2d{bottom:663.870000px;}
.y140{bottom:664.560000px;}
.y3{bottom:698.220000px;}
.y80{bottom:699.810000px;}
.y60{bottom:714.135000px;}
.y3a{bottom:714.930000px;}
.y2{bottom:723.570000px;}
.y21{bottom:748.290000px;}
.h6{height:13.535156px;}
.h2{height:22.739063px;}
.h3{height:22.847344px;}
.h1{height:26.314453px;}
.hf{height:27.000000px;}
.h4{height:27.070312px;}
.h5{height:27.178594px;}
.h1d{height:39.471680px;}
.h10{height:43.133437px;}
.he{height:44.936719px;}
.h1a{height:46.313437px;}
.h33{height:48.418594px;}
.h31{height:48.523852px;}
.h29{height:48.871406px;}
.h28{height:48.977648px;}
.h17{height:50.541120px;}
.hd{height:52.628906px;}
.h34{height:53.227336px;}
.h1e{height:54.140625px;}
.h19{height:59.470664px;}
.h2b{height:61.575820px;}
.h35{height:62.151680px;}
.h2e{height:65.786133px;}
.h30{height:65.891391px;}
.hb{height:67.675781px;}
.h1f{height:67.784062px;}
.h14{height:69.996445px;}
.h15{height:70.101703px;}
.hc{height:71.041992px;}
.h12{height:72.007031px;}
.h16{height:72.115313px;}
.h39{height:73.064880px;}
.h3a{height:73.174752px;}
.h2c{height:75.795820px;}
.h25{height:78.943359px;}
.h37{height:79.542000px;}
.h36{height:80.244000px;}
.h26{height:81.210938px;}
.h27{height:81.319219px;}
.h32{height:82.101094px;}
.h3b{height:82.404000px;}
.h38{height:82.513872px;}
.h2f{height:83.143125px;}
.h2d{height:83.249719px;}
.h22{height:87.890273px;}
.h23{height:87.995531px;}
.h13{height:89.005781px;}
.h1c{height:89.112375px;}
.h20{height:90.414844px;}
.h21{height:90.523125px;}
.ha{height:94.418086px;}
.h9{height:96.096094px;}
.h24{height:100.198125px;}
.h11{height:126.147656px;}
.h2a{height:144.555469px;}
.h1b{height:162.421875px;}
.h18{height:162.530156px;}
.h7{height:198.696094px;}
.h8{height:198.804375px;}
.h0{height:810.000000px;}
.w1{width:1440.000000px;}
.w2{width:1440.179979px;}
.w0{width:1440.180000px;}
.x0{left:0.000000px;}
.x1{left:25.343979px;}
.x37{left:60.731979px;}
.x3c{left:87.695979px;}
.x38{left:94.571979px;}
.xa{left:112.283979px;}
.x12{left:113.975979px;}
.xb{left:117.035979px;}
.xc{left:134.783979px;}
.x13{left:145.835979px;}
.x39{left:148.031979px;}
.x50{left:162.209979px;}
.x4f{left:167.429979px;}
.x52{left:205.019979px;}
.x51{left:221.609979px;}
.x49{left:227.774979px;}
.x27{left:238.889979px;}
.x4a{left:250.274979px;}
.x26{left:264.449979px;}
.x3b{left:275.474979px;}
.x28{left:284.609979px;}
.x18{left:321.554979px;}
.x1a{left:333.434979px;}
.x1c{left:335.954979px;}
.x1f{left:367.634979px;}
.x17{left:370.874979px;}
.x19{left:380.054979px;}
.x1e{left:383.294979px;}
.x1b{left:420.014979px;}
.x1d{left:426.494979px;}
.x3a{left:477.464979px;}
.x53{left:479.159979px;}
.x55{left:489.029979px;}
.x54{left:499.859979px;}
.x56{left:509.369979px;}
.x20{left:549.254979px;}
.x4d{left:575.744979px;}
.x3d{left:614.054979px;}
.x45{left:616.574979px;}
.x4e{left:618.449979px;}
.x3e{left:619.814979px;}
.x46{left:645.554979px;}
.x29{left:651.029979px;}
.xe{left:730.979979px;}
.x10{left:751.349979px;}
.x11{left:773.849979px;}
.x41{left:784.259979px;}
.x57{left:790.409979px;}
.x48{left:798.404979px;}
.x40{left:803.879979px;}
.x16{left:808.229979px;}
.x47{left:811.904979px;}
.x58{left:835.409979px;}
.x4b{left:856.724979px;}
.x4c{left:879.269979px;}
.x42{left:884.489979px;}
.x22{left:931.499979px;}
.x23{left:948.239979px;}
.x14{left:953.849979px;}
.x21{left:955.439979px;}
.x24{left:966.419979px;}
.x25{left:1022.069979px;}
.x15{left:1028.954979px;}
.x3f{left:1096.124979px;}
.x2c{left:1112.189979px;}
.x2b{left:1119.569979px;}
.x2d{left:1128.029979px;}
.x36{left:1149.914979px;}
.x2e{left:1152.869979px;}
.xd{left:1156.469979px;}
.x30{left:1160.924979px;}
.x33{left:1171.724979px;}
.x34{left:1174.064979px;}
.x2f{left:1177.484979px;}
.x31{left:1179.464979px;}
.x35{left:1190.084979px;}
.x44{left:1202.504979px;}
.x32{left:1210.784979px;}
.x43{left:1225.184979px;}
.x2a{left:1344.344979px;}
.xf{left:1353.164979px;}
.x9{left:1445.579979px;}
.x8{left:1454.219979px;}
.x5{left:1455.509979px;}
.x3{left:1498.244979px;}
.x4{left:1500.734979px;}
.x2{left:1502.384979px;}
.x7{left:1593.644979px;}
.x6{left:1595.444979px;}
@media print{
.v4{vertical-align:-2.826667pt;}
.v1{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.640000pt;}
.v3{vertical-align:24.320000pt;}
.v2{vertical-align:32.000000pt;}
.ls11{letter-spacing:-8.586667pt;}
.ls23{letter-spacing:-8.533333pt;}
.ls28{letter-spacing:-8.426667pt;}
.ls5{letter-spacing:-0.296533pt;}
.ls7{letter-spacing:-0.272533pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls29{letter-spacing:-0.240000pt;}
.ls6{letter-spacing:-0.225067pt;}
.lse{letter-spacing:-0.185067pt;}
.ls31{letter-spacing:-0.168533pt;}
.ls2b{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls14{letter-spacing:-0.037867pt;}
.ls12{letter-spacing:-0.018933pt;}
.ls1e{letter-spacing:-0.010613pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.016640pt;}
.ls1f{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.033280pt;}
.ls18{letter-spacing:0.046080pt;}
.ls2c{letter-spacing:0.048000pt;}
.ls16{letter-spacing:0.099733pt;}
.lsf{letter-spacing:0.146133pt;}
.ls8{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.160256pt;}
.ls20{letter-spacing:0.172267pt;}
.ls2{letter-spacing:0.181760pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.217600pt;}
.ls17{letter-spacing:0.222933pt;}
.ls32{letter-spacing:0.235733pt;}
.ls27{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.288427pt;}
.ls13{letter-spacing:0.303467pt;}
.ls26{letter-spacing:0.320000pt;}
.lsa{letter-spacing:8.320000pt;}
.ls0{letter-spacing:8.448000pt;}
.ls10{letter-spacing:15.936000pt;}
.ls2d{letter-spacing:21.693440pt;}
.ls15{letter-spacing:36.554752pt;}
.lsb{letter-spacing:36.606720pt;}
.ls24{letter-spacing:39.412992pt;}
.ls25{letter-spacing:39.464960pt;}
.ls30{letter-spacing:39.572992pt;}
.ls2f{letter-spacing:39.624960pt;}
.ls33{letter-spacing:42.528000pt;}
.ls2e{letter-spacing:46.753280pt;}
.ls1{letter-spacing:57.214720pt;}
.ls19{letter-spacing:71.470080pt;}
.ls1b{letter-spacing:86.720000pt;}
.ls22{letter-spacing:90.528000pt;}
.ls1c{letter-spacing:113.565867pt;}
.ws3b{word-spacing:-53.376000pt;}
.ws30{word-spacing:-44.842667pt;}
.ws11{word-spacing:-44.824917pt;}
.ws34{word-spacing:-39.077973pt;}
.ws25{word-spacing:-29.748224pt;}
.ws28{word-spacing:-29.712640pt;}
.ws2d{word-spacing:-26.723584pt;}
.ws2e{word-spacing:-26.720000pt;}
.ws29{word-spacing:-26.688000pt;}
.ws17{word-spacing:-23.798677pt;}
.ws12{word-spacing:-23.698944pt;}
.ws32{word-spacing:-23.696640pt;}
.wsc{word-spacing:-23.663360pt;}
.ws3c{word-spacing:-23.494827pt;}
.ws6{word-spacing:-22.400000pt;}
.ws22{word-spacing:-22.240000pt;}
.ws38{word-spacing:-22.160000pt;}
.ws36{word-spacing:-22.000000pt;}
.ws35{word-spacing:-20.816640pt;}
.ws15{word-spacing:-20.104960pt;}
.ws3e{word-spacing:-18.528000pt;}
.ws3d{word-spacing:-17.827584pt;}
.ws21{word-spacing:-17.792000pt;}
.ws3a{word-spacing:-16.404224pt;}
.ws7{word-spacing:-14.720000pt;}
.ws10{word-spacing:-11.363840pt;}
.ws1{word-spacing:-8.896000pt;}
.ws5{word-spacing:-4.448000pt;}
.ws26{word-spacing:-2.181120pt;}
.ws37{word-spacing:-2.000000pt;}
.ws27{word-spacing:-1.541120pt;}
.ws16{word-spacing:-1.001813pt;}
.ws1a{word-spacing:-0.896000pt;}
.ws2b{word-spacing:-0.864000pt;}
.ws1b{word-spacing:-0.774485pt;}
.ws40{word-spacing:-0.636373pt;}
.ws18{word-spacing:-0.412800pt;}
.ws23{word-spacing:-0.306560pt;}
.ws1c{word-spacing:-0.293547pt;}
.ws39{word-spacing:-0.224000pt;}
.ws1d{word-spacing:-0.016640pt;}
.ws9{word-spacing:0.000000pt;}
.wse{word-spacing:0.004693pt;}
.wsf{word-spacing:0.009600pt;}
.ws14{word-spacing:0.018837pt;}
.ws2a{word-spacing:0.064000pt;}
.ws2c{word-spacing:0.125056pt;}
.ws24{word-spacing:0.320000pt;}
.ws31{word-spacing:0.346453pt;}
.ws19{word-spacing:0.383787pt;}
.ws1e{word-spacing:0.467840pt;}
.ws1f{word-spacing:0.594773pt;}
.ws3f{word-spacing:0.658347pt;}
.ws20{word-spacing:0.742400pt;}
.ws13{word-spacing:0.981547pt;}
.ws33{word-spacing:1.199787pt;}
.ws2f{word-spacing:2.237440pt;}
.wsd{word-spacing:2.383787pt;}
.wsb{word-spacing:2.496000pt;}
.ws0{word-spacing:8.448000pt;}
.wsa{word-spacing:9.344000pt;}
.ws2{word-spacing:46.968747pt;}
.ws4{word-spacing:47.448747pt;}
.ws3{word-spacing:51.715413pt;}
.ws8{word-spacing:564.956587pt;}
._16{margin-left:-16.032000pt;}
._e{margin-left:-10.870187pt;}
._6{margin-left:-9.160320pt;}
._5{margin-left:-8.220800pt;}
._8{margin-left:-7.281280pt;}
._12{margin-left:-6.139904pt;}
._7{margin-left:-5.167360pt;}
._11{margin-left:-4.210987pt;}
._20{margin-left:-3.200000pt;}
._9{margin-left:-2.173440pt;}
._1{margin-left:-1.075200pt;}
._0{width:0.928000pt;}
._a{width:2.192640pt;}
._15{width:3.150080pt;}
._1b{width:4.253653pt;}
._17{width:15.840000pt;}
._18{width:16.848000pt;}
._1e{width:17.808000pt;}
._21{width:19.832107pt;}
._1d{width:21.045333pt;}
._13{width:24.699435pt;}
._d{width:25.801813pt;}
._f{width:27.511040pt;}
._1c{width:32.556800pt;}
._14{width:40.709120pt;}
._3{width:56.734720pt;}
._4{width:59.188053pt;}
._2{width:60.468053pt;}
._1a{width:548.453760pt;}
._b{width:643.905280pt;}
._19{width:2859.925333pt;}
._1f{width:3190.453333pt;}
._22{width:3684.085333pt;}
._c{width:3869.813333pt;}
._10{width:3993.845333pt;}
.fs4{font-size:16.000000pt;}
.fs1{font-size:26.880000pt;}
.fs2{font-size:27.008000pt;}
.fs0{font-size:32.000000pt;}
.fs3{font-size:32.128000pt;}
.fsc{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fsd{font-size:56.320000pt;}
.fs11{font-size:58.880000pt;}
.fs1a{font-size:59.008000pt;}
.fsb{font-size:64.000000pt;}
.fs1f{font-size:64.128000pt;}
.fs8{font-size:71.040000pt;}
.fs13{font-size:72.320000pt;}
.fs1c{font-size:74.880000pt;}
.fs9{font-size:80.000000pt;}
.fs16{font-size:80.128000pt;}
.fsf{font-size:85.120000pt;}
.fs10{font-size:85.248000pt;}
.fs18{font-size:96.000000pt;}
.fs19{font-size:96.128000pt;}
.fs1e{font-size:99.840000pt;}
.fs1d{font-size:99.968000pt;}
.fs7{font-size:106.880000pt;}
.fs15{font-size:107.008000pt;}
.fs17{font-size:120.320000pt;}
.fse{font-size:149.120000pt;}
.fs1b{font-size:170.880000pt;}
.fs14{font-size:192.000000pt;}
.fs12{font-size:192.128000pt;}
.fs5{font-size:234.880000pt;}
.fs6{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:9.728000pt;}
.y39{bottom:10.912000pt;}
.y23{bottom:28.000000pt;}
.yf9{bottom:29.440000pt;}
.yc3{bottom:35.072000pt;}
.y8a{bottom:35.200000pt;}
.y36{bottom:41.952000pt;}
.y13f{bottom:47.104000pt;}
.yc{bottom:49.696000pt;}
.y5d{bottom:51.040000pt;}
.y127{bottom:54.240000pt;}
.yc2{bottom:54.272000pt;}
.yb9{bottom:54.880000pt;}
.y5f{bottom:61.312000pt;}
.ye8{bottom:69.056000pt;}
.yb{bottom:71.168000pt;}
.y35{bottom:72.000000pt;}
.y49{bottom:72.128000pt;}
.yb8{bottom:72.512000pt;}
.y13e{bottom:75.904000pt;}
.y5c{bottom:76.640000pt;}
.y126{bottom:78.240000pt;}
.yf8{bottom:80.512000pt;}
.y108{bottom:82.048000pt;}
.y5e{bottom:82.912000pt;}
.y7c{bottom:91.680000pt;}
.ye7{bottom:93.056000pt;}
.y2e{bottom:93.920000pt;}
.y48{bottom:97.728000pt;}
.y5b{bottom:102.240000pt;}
.yf7{bottom:104.512000pt;}
.y13d{bottom:104.704000pt;}
.y37{bottom:106.016000pt;}
.y107{bottom:106.080000pt;}
.y122{bottom:115.296000pt;}
.ye6{bottom:117.056000pt;}
.y7b{bottom:117.280000pt;}
.y4a{bottom:120.416000pt;}
.y24{bottom:123.488000pt;}
.y47{bottom:124.608000pt;}
.y134{bottom:125.344000pt;}
.y125{bottom:126.240000pt;}
.y5a{bottom:129.120000pt;}
.yf6{bottom:129.792000pt;}
.y106{bottom:130.080000pt;}
.y121{bottom:139.293333pt;}
.ya3{bottom:141.466667pt;}
.ye5{bottom:142.373333pt;}
.y2c{bottom:144.026667pt;}
.y7a{bottom:144.160000pt;}
.yb0{bottom:147.653333pt;}
.y46{bottom:150.240000pt;}
.yd7{bottom:150.586667pt;}
.y133{bottom:150.946667pt;}
.yf5{bottom:153.786667pt;}
.y105{bottom:154.080000pt;}
.y59{bottom:154.746667pt;}
.y13c{bottom:157.786667pt;}
.y120{bottom:163.293333pt;}
.y6e{bottom:165.373333pt;}
.ye4{bottom:166.373333pt;}
.y79{bottom:169.760000pt;}
.yd3{bottom:170.373333pt;}
.yd6{bottom:172.986667pt;}
.ya2{bottom:173.506667pt;}
.y124{bottom:174.240000pt;}
.y45{bottom:175.840000pt;}
.y1b{bottom:176.293333pt;}
.yaf{bottom:176.453333pt;}
.y132{bottom:176.573333pt;}
.y16{bottom:176.893333pt;}
.yf4{bottom:177.786667pt;}
.y104{bottom:179.520000pt;}
.y13b{bottom:180.186667pt;}
.y58{bottom:180.346667pt;}
.y6d{bottom:184.573333pt;}
.y11f{bottom:187.333333pt;}
.ye3{bottom:190.373333pt;}
.yd2{bottom:192.773333pt;}
.y78{bottom:196.640000pt;}
.y15{bottom:197.573333pt;}
.y1a{bottom:198.240000pt;}
.y1e{bottom:199.706667pt;}
.y44{bottom:202.720000pt;}
.yf3{bottom:203.106667pt;}
.y103{bottom:203.520000pt;}
.yae{bottom:205.253333pt;}
.ya1{bottom:205.506667pt;}
.y57{bottom:205.946667pt;}
.y123{bottom:206.240000pt;}
.y11e{bottom:212.613333pt;}
.ye2{bottom:215.813333pt;}
.y14{bottom:219.066667pt;}
.y131{bottom:219.613333pt;}
.y38{bottom:220.320000pt;}
.y19{bottom:220.386667pt;}
.y43{bottom:228.320000pt;}
.yf2{bottom:228.546667pt;}
.y102{bottom:228.800000pt;}
.y13a{bottom:229.733333pt;}
.y56{bottom:232.826667pt;}
.yad{bottom:234.053333pt;}
.y11d{bottom:236.613333pt;}
.ya0{bottom:237.506667pt;}
.ye1{bottom:239.813333pt;}
.y13{bottom:240.826667pt;}
.y6b{bottom:241.026667pt;}
.y18{bottom:242.146667pt;}
.y130{bottom:245.213333pt;}
.y77{bottom:250.586667pt;}
.yd5{bottom:251.386667pt;}
.yf1{bottom:252.546667pt;}
.y112{bottom:255.013333pt;}
.y42{bottom:255.360000pt;}
.y17{bottom:260.546667pt;}
.y11c{bottom:260.613333pt;}
.y12{bottom:261.693333pt;}
.y2b{bottom:262.146667pt;}
.ye0{bottom:265.093333pt;}
.y6a{bottom:266.626667pt;}
.y34{bottom:266.853333pt;}
.y92{bottom:268.133333pt;}
.y9f{bottom:269.506667pt;}
.y12f{bottom:270.813333pt;}
.yd4{bottom:273.786667pt;}
.y55{bottom:275.866667pt;}
.y76{bottom:276.186667pt;}
.yf0{bottom:277.826667pt;}
.y139{bottom:278.400000pt;}
.yac{bottom:278.880000pt;}
.y111{bottom:279.013333pt;}
.y101{bottom:279.546667pt;}
.y2a{bottom:284.933333pt;}
.y11b{bottom:286.053333pt;}
.y14b{bottom:289.213333pt;}
.y69{bottom:292.253333pt;}
.y41{bottom:296.986667pt;}
.y138{bottom:297.600000pt;}
.y33{bottom:298.853333pt;}
.y91{bottom:300.133333pt;}
.y54{bottom:301.466667pt;}
.y9e{bottom:301.506667pt;}
.y75{bottom:301.786667pt;}
.y110{bottom:303.013333pt;}
.y100{bottom:303.546667pt;}
.yab{bottom:307.680000pt;}
.ydf{bottom:308.640000pt;}
.y11a{bottom:310.053333pt;}
.y11{bottom:311.973333pt;}
.y8{bottom:313.306667pt;}
.y12e{bottom:313.693333pt;}
.y14a{bottom:314.813333pt;}
.y137{bottom:316.800000pt;}
.yef{bottom:319.106667pt;}
.y40{bottom:322.586667pt;}
.yd1{bottom:324.026667pt;}
.y53{bottom:327.106667pt;}
.y10f{bottom:328.480000pt;}
.yff{bottom:328.826667pt;}
.y1d{bottom:329.760000pt;}
.y90{bottom:332.160000pt;}
.yde{bottom:332.640000pt;}
.y68{bottom:333.853333pt;}
.y7{bottom:333.986667pt;}
.y119{bottom:334.053333pt;}
.y10{bottom:334.373333pt;}
.yaa{bottom:336.480000pt;}
.y12d{bottom:339.333333pt;}
.y149{bottom:340.413333pt;}
.yee{bottom:343.106667pt;}
.yd0{bottom:344.640000pt;}
.y3f{bottom:348.186667pt;}
.y10e{bottom:352.480000pt;}
.y52{bottom:352.706667pt;}
.yfe{bottom:354.106667pt;}
.y6{bottom:355.493333pt;}
.y74{bottom:355.706667pt;}
.yc1{bottom:356.253333pt;}
.yf{bottom:356.506667pt;}
.ydd{bottom:356.640000pt;}
.y6c{bottom:358.013333pt;}
.y118{bottom:358.080000pt;}
.y67{bottom:359.453333pt;}
.y12c{bottom:364.933333pt;}
.ya9{bottom:365.280000pt;}
.y9d{bottom:365.533333pt;}
.y148{bottom:366.013333pt;}
.ycf{bottom:367.040000pt;}
.y98{bottom:368.413333pt;}
.yed{bottom:368.573333pt;}
.y89{bottom:369.306667pt;}
.yca{bottom:372.480000pt;}
.y3e{bottom:375.066667pt;}
.y10d{bottom:376.480000pt;}
.ye{bottom:376.893333pt;}
.y32{bottom:376.986667pt;}
.y5{bottom:377.253333pt;}
.yb7{bottom:377.666667pt;}
.yfd{bottom:378.106667pt;}
.ydc{bottom:380.640000pt;}
.y73{bottom:381.306667pt;}
.yc0{bottom:381.853333pt;}
.y117{bottom:383.360000pt;}
.y66{bottom:385.053333pt;}
.y20{bottom:391.746667pt;}
.y147{bottom:392.253333pt;}
.yec{bottom:392.573333pt;}
.ya8{bottom:394.080000pt;}
.y51{bottom:394.306667pt;}
.y9c{bottom:397.533333pt;}
.y4{bottom:398.106667pt;}
.yd{bottom:399.426667pt;}
.y97{bottom:400.413333pt;}
.y3d{bottom:400.666667pt;}
.y88{bottom:401.306667pt;}
.y10c{bottom:401.760000pt;}
.y7f{bottom:401.853333pt;}
.yfc{bottom:403.546667pt;}
.y8f{bottom:405.533333pt;}
.ydb{bottom:405.920000pt;}
.yb6{bottom:406.466667pt;}
.y84{bottom:407.013333pt;}
.y116{bottom:407.360000pt;}
.y12b{bottom:407.813333pt;}
.y72{bottom:408.226667pt;}
.y65{bottom:410.653333pt;}
.yeb{bottom:417.853333pt;}
.y50{bottom:419.906667pt;}
.y1c{bottom:421.093333pt;}
.y10b{bottom:425.760000pt;}
.y3c{bottom:427.546667pt;}
.yce{bottom:427.866667pt;}
.y9b{bottom:429.533333pt;}
.yda{bottom:429.920000pt;}
.y115{bottom:431.360000pt;}
.yc9{bottom:431.706667pt;}
.y96{bottom:432.453333pt;}
.ybf{bottom:433.093333pt;}
.y31{bottom:433.306667pt;}
.y12a{bottom:433.413333pt;}
.y71{bottom:433.826667pt;}
.y1f{bottom:434.720000pt;}
.yb5{bottom:435.266667pt;}
.y146{bottom:436.453333pt;}
.y64{bottom:437.533333pt;}
.y8e{bottom:437.573333pt;}
.ya7{bottom:438.906667pt;}
.y83{bottom:439.040000pt;}
.yea{bottom:441.853333pt;}
.y4f{bottom:446.786667pt;}
.ycd{bottom:447.106667pt;}
.y10a{bottom:449.760000pt;}
.yfb{bottom:452.866667pt;}
.yd9{bottom:453.946667pt;}
.y114{bottom:455.360000pt;}
.yc8{bottom:457.306667pt;}
.ybe{bottom:458.693333pt;}
.y129{bottom:459.013333pt;}
.y70{bottom:459.426667pt;}
.y9a{bottom:461.533333pt;}
.y145{bottom:462.053333pt;}
.y63{bottom:463.173333pt;}
.y95{bottom:464.453333pt;}
.y87{bottom:465.306667pt;}
.y7e{bottom:466.653333pt;}
.ye9{bottom:467.133333pt;}
.ya6{bottom:467.706667pt;}
.y25{bottom:468.800000pt;}
.ycc{bottom:469.506667pt;}
.y8d{bottom:469.573333pt;}
.y82{bottom:471.040000pt;}
.yb4{bottom:472.066667pt;}
.y4e{bottom:472.386667pt;}
.y28{bottom:475.933333pt;}
.yfa{bottom:478.146667pt;}
.yd8{bottom:479.226667pt;}
.y113{bottom:480.640000pt;}
.yc7{bottom:482.906667pt;}
.y109{bottom:483.066667pt;}
.ybd{bottom:484.293333pt;}
.y128{bottom:484.640000pt;}
.y4b{bottom:485.440000pt;}
.y6f{bottom:486.306667pt;}
.y144{bottom:487.653333pt;}
.y30{bottom:489.666667pt;}
.y62{bottom:490.053333pt;}
.y7d{bottom:490.693333pt;}
.ya{bottom:491.040000pt;}
.y99{bottom:493.573333pt;}
.y94{bottom:496.453333pt;}
.ya5{bottom:496.506667pt;}
.y86{bottom:497.346667pt;}
.y27{bottom:497.600000pt;}
.y4d{bottom:499.293333pt;}
.yb3{bottom:500.893333pt;}
.y8c{bottom:501.573333pt;}
.y81{bottom:503.040000pt;}
.y9{bottom:512.026667pt;}
.y143{bottom:513.253333pt;}
.yc6{bottom:516.506667pt;}
.y136{bottom:517.760000pt;}
.ybc{bottom:517.893333pt;}
.y26{bottom:518.906667pt;}
.ya4{bottom:525.306667pt;}
.y93{bottom:528.453333pt;}
.y85{bottom:529.346667pt;}
.y8b{bottom:533.573333pt;}
.y29{bottom:534.786667pt;}
.yb2{bottom:537.693333pt;}
.y142{bottom:538.853333pt;}
.y61{bottom:541.280000pt;}
.yc5{bottom:542.146667pt;}
.ycb{bottom:543.360000pt;}
.ybb{bottom:543.493333pt;}
.y3b{bottom:545.280000pt;}
.y2f{bottom:545.986667pt;}
.y4c{bottom:549.213333pt;}
.y141{bottom:564.453333pt;}
.y22{bottom:566.426667pt;}
.yb1{bottom:566.493333pt;}
.yc4{bottom:567.746667pt;}
.y135{bottom:568.960000pt;}
.yba{bottom:569.120000pt;}
.y2d{bottom:590.106667pt;}
.y140{bottom:590.720000pt;}
.y3{bottom:620.640000pt;}
.y80{bottom:622.053333pt;}
.y60{bottom:634.786667pt;}
.y3a{bottom:635.493333pt;}
.y2{bottom:643.173333pt;}
.y21{bottom:665.146667pt;}
.h6{height:12.031250pt;}
.h2{height:20.212500pt;}
.h3{height:20.308750pt;}
.h1{height:23.390625pt;}
.hf{height:24.000000pt;}
.h4{height:24.062500pt;}
.h5{height:24.158750pt;}
.h1d{height:35.085938pt;}
.h10{height:38.340833pt;}
.he{height:39.943750pt;}
.h1a{height:41.167500pt;}
.h33{height:43.038750pt;}
.h31{height:43.132312pt;}
.h29{height:43.441250pt;}
.h28{height:43.535688pt;}
.h17{height:44.925440pt;}
.hd{height:46.781250pt;}
.h34{height:47.313187pt;}
.h1e{height:48.125000pt;}
.h19{height:52.862812pt;}
.h2b{height:54.734062pt;}
.h35{height:55.245937pt;}
.h2e{height:58.476562pt;}
.h30{height:58.570125pt;}
.hb{height:60.156250pt;}
.h1f{height:60.252500pt;}
.h14{height:62.219062pt;}
.h15{height:62.312625pt;}
.hc{height:63.148438pt;}
.h12{height:64.006250pt;}
.h16{height:64.102500pt;}
.h39{height:64.946560pt;}
.h3a{height:65.044224pt;}
.h2c{height:67.374062pt;}
.h25{height:70.171875pt;}
.h37{height:70.704000pt;}
.h36{height:71.328000pt;}
.h26{height:72.187500pt;}
.h27{height:72.283750pt;}
.h32{height:72.978750pt;}
.h3b{height:73.248000pt;}
.h38{height:73.345664pt;}
.h2f{height:73.905000pt;}
.h2d{height:73.999750pt;}
.h22{height:78.124687pt;}
.h23{height:78.218250pt;}
.h13{height:79.116250pt;}
.h1c{height:79.211000pt;}
.h20{height:80.368750pt;}
.h21{height:80.465000pt;}
.ha{height:83.927188pt;}
.h9{height:85.418750pt;}
.h24{height:89.065000pt;}
.h11{height:112.131250pt;}
.h2a{height:128.493750pt;}
.h1b{height:144.375000pt;}
.h18{height:144.471250pt;}
.h7{height:176.618750pt;}
.h8{height:176.715000pt;}
.h0{height:720.000000pt;}
.w1{width:1280.000000pt;}
.w2{width:1280.159981pt;}
.w0{width:1280.160000pt;}
.x0{left:0.000000pt;}
.x1{left:22.527981pt;}
.x37{left:53.983981pt;}
.x3c{left:77.951981pt;}
.x38{left:84.063981pt;}
.xa{left:99.807981pt;}
.x12{left:101.311981pt;}
.xb{left:104.031981pt;}
.xc{left:119.807981pt;}
.x13{left:129.631981pt;}
.x39{left:131.583981pt;}
.x50{left:144.186648pt;}
.x4f{left:148.826648pt;}
.x52{left:182.239981pt;}
.x51{left:196.986648pt;}
.x49{left:202.466648pt;}
.x27{left:212.346648pt;}
.x4a{left:222.466648pt;}
.x26{left:235.066648pt;}
.x3b{left:244.866648pt;}
.x28{left:252.986648pt;}
.x18{left:285.826648pt;}
.x1a{left:296.386648pt;}
.x1c{left:298.626648pt;}
.x1f{left:326.786648pt;}
.x17{left:329.666648pt;}
.x19{left:337.826648pt;}
.x1e{left:340.706648pt;}
.x1b{left:373.346648pt;}
.x1d{left:379.106648pt;}
.x3a{left:424.413314pt;}
.x53{left:425.919981pt;}
.x55{left:434.693314pt;}
.x54{left:444.319981pt;}
.x56{left:452.773314pt;}
.x20{left:488.226648pt;}
.x4d{left:511.773314pt;}
.x3d{left:545.826648pt;}
.x45{left:548.066648pt;}
.x4e{left:549.733314pt;}
.x3e{left:550.946648pt;}
.x46{left:573.826648pt;}
.x29{left:578.693314pt;}
.xe{left:649.759981pt;}
.x10{left:667.866648pt;}
.x11{left:687.866648pt;}
.x41{left:697.119981pt;}
.x57{left:702.586648pt;}
.x48{left:709.693314pt;}
.x40{left:714.559981pt;}
.x16{left:718.426648pt;}
.x47{left:721.693314pt;}
.x58{left:742.586648pt;}
.x4b{left:761.533314pt;}
.x4c{left:781.573314pt;}
.x42{left:786.213314pt;}
.x22{left:827.999981pt;}
.x23{left:842.879981pt;}
.x14{left:847.866648pt;}
.x21{left:849.279981pt;}
.x24{left:859.039981pt;}
.x25{left:908.506648pt;}
.x15{left:914.626648pt;}
.x3f{left:974.333314pt;}
.x2c{left:988.613314pt;}
.x2b{left:995.173314pt;}
.x2d{left:1002.693314pt;}
.x36{left:1022.146648pt;}
.x2e{left:1024.773314pt;}
.xd{left:1027.973314pt;}
.x30{left:1031.933314pt;}
.x33{left:1041.533314pt;}
.x34{left:1043.613314pt;}
.x2f{left:1046.653314pt;}
.x31{left:1048.413314pt;}
.x35{left:1057.853314pt;}
.x44{left:1068.893314pt;}
.x32{left:1076.253314pt;}
.x43{left:1089.053314pt;}
.x2a{left:1194.973314pt;}
.xf{left:1202.813314pt;}
.x9{left:1284.959981pt;}
.x8{left:1292.639981pt;}
.x5{left:1293.786648pt;}
.x3{left:1331.773314pt;}
.x4{left:1333.986648pt;}
.x2{left:1335.453314pt;}
.x7{left:1416.573314pt;}
.x6{left:1418.173314pt;}
}




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