
    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_2049d21d735fbf7d68b37e03.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_4f90bc9a3fd928436153ce20.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_02234ad56d7365c175f8d49d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.017090;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_bf7db9894ab4d25aef71aced.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;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_13afa6d3145cb7e525261bc4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.947266;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_b3e47ef4bd583de434fe25a0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;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_a5b96c4154fba8f9b868aed1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.105957;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_732cbfb1b1e6dd51d1dd05ee.woff')format("woff");}.ff8{font-family:ff8;line-height:0.871094;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_fdd4720dea045d6657b9ee26.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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);}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.206400px;}
.v1{vertical-align:16.755600px;}
.v4{vertical-align:21.029400px;}
.ls2c{letter-spacing:-4.968000px;}
.ls29{letter-spacing:-4.266000px;}
.ls39{letter-spacing:-3.564000px;}
.ls3a{letter-spacing:-3.132000px;}
.ls51{letter-spacing:-3.120000px;}
.ls2a{letter-spacing:-2.916000px;}
.ls26{letter-spacing:-2.214000px;}
.ls59{letter-spacing:-2.025000px;}
.ls52{letter-spacing:-1.860000px;}
.ls36{letter-spacing:-1.566000px;}
.ls49{letter-spacing:-1.539000px;}
.ls38{letter-spacing:-1.404000px;}
.ls4d{letter-spacing:-1.296000px;}
.ls1d{letter-spacing:-1.080000px;}
.ls35{letter-spacing:-0.972000px;}
.ls44{letter-spacing:-0.864000px;}
.lsc{letter-spacing:-0.855000px;}
.ls31{letter-spacing:-0.810000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls2f{letter-spacing:-0.702000px;}
.ls28{letter-spacing:-0.648000px;}
.ls48{letter-spacing:-0.627000px;}
.ls3b{letter-spacing:-0.594000px;}
.ls55{letter-spacing:-0.570000px;}
.ls37{letter-spacing:-0.540000px;}
.ls2b{letter-spacing:-0.486000px;}
.ls53{letter-spacing:-0.480000px;}
.ls2d{letter-spacing:-0.432000px;}
.ls33{letter-spacing:-0.378000px;}
.ls41{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.324000px;}
.ls23{letter-spacing:-0.216000px;}
.ls4c{letter-spacing:-0.171000px;}
.ls1f{letter-spacing:-0.162000px;}
.ls4b{letter-spacing:-0.150000px;}
.ls34{letter-spacing:-0.108000px;}
.ls20{letter-spacing:-0.054000px;}
.ls1{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.054000px;}
.ls10{letter-spacing:0.108000px;}
.ls21{letter-spacing:0.216000px;}
.ls40{letter-spacing:0.225000px;}
.ls30{letter-spacing:0.270000px;}
.ls43{letter-spacing:0.324000px;}
.ls27{letter-spacing:0.378000px;}
.ls22{letter-spacing:0.648000px;}
.lsf{letter-spacing:0.702000px;}
.ls9{letter-spacing:0.750000px;}
.lse{letter-spacing:0.756000px;}
.ls24{letter-spacing:0.810000px;}
.ls50{letter-spacing:0.825000px;}
.ls32{letter-spacing:0.972000px;}
.ls42{letter-spacing:1.026000px;}
.ls2e{letter-spacing:1.350000px;}
.lsa{letter-spacing:1.512000px;}
.ls45{letter-spacing:1.518000px;}
.ls2{letter-spacing:1.575000px;}
.ls5{letter-spacing:3.780000px;}
.ls8{letter-spacing:4.080000px;}
.ls7{letter-spacing:4.200000px;}
.lsb{letter-spacing:5.760000px;}
.ls4{letter-spacing:5.880000px;}
.ls3{letter-spacing:6.000000px;}
.ls57{letter-spacing:6.300000px;}
.ls56{letter-spacing:6.867000px;}
.ls11{letter-spacing:64.422000px;}
.ls3e{letter-spacing:64.854000px;}
.ls3f{letter-spacing:69.606000px;}
.ls12{letter-spacing:71.550000px;}
.ls14{letter-spacing:85.104000px;}
.ls15{letter-spacing:88.452000px;}
.ls17{letter-spacing:91.152000px;}
.ls1a{letter-spacing:94.662000px;}
.ls3d{letter-spacing:95.904000px;}
.ls46{letter-spacing:111.573000px;}
.ls18{letter-spacing:122.580000px;}
.ls13{letter-spacing:150.174000px;}
.ls1b{letter-spacing:153.846000px;}
.ls16{letter-spacing:157.950000px;}
.ls19{letter-spacing:180.468000px;}
.ls4f{letter-spacing:498.834000px;}
.ls58{letter-spacing:501.684000px;}
.ls6{letter-spacing:502.014000px;}
.ls3c{letter-spacing:502.539000px;}
.ls4a{letter-spacing:502.951800px;}
.ls4e{letter-spacing:990.022800px;}
.ls0{letter-spacing:990.517800px;}
.lsd{letter-spacing:993.142800px;}
.ls47{letter-spacing:997.192800px;}
.ls54{letter-spacing:999.172800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws59{word-spacing:-111.573000px;}
.ws6a{word-spacing:-24.570000px;}
.ws72{word-spacing:-22.860000px;}
.ws0{word-spacing:-22.740000px;}
.ws7{word-spacing:-22.620000px;}
.ws61{word-spacing:-21.900000px;}
.ws5{word-spacing:-21.825000px;}
.ws69{word-spacing:-21.789000px;}
.ws5f{word-spacing:-21.465000px;}
.ws39{word-spacing:-21.300000px;}
.ws5a{word-spacing:-21.222000px;}
.ws5d{word-spacing:-20.925000px;}
.ws8{word-spacing:-19.389000px;}
.ws6f{word-spacing:-19.050000px;}
.ws68{word-spacing:-18.630000px;}
.ws52{word-spacing:-18.561000px;}
.ws53{word-spacing:-17.043000px;}
.ws66{word-spacing:-16.860000px;}
.ws1c{word-spacing:-16.524000px;}
.ws65{word-spacing:-16.380000px;}
.ws22{word-spacing:-16.146000px;}
.ws70{word-spacing:-15.561000px;}
.ws14{word-spacing:-15.552000px;}
.wsf{word-spacing:-15.390000px;}
.ws10{word-spacing:-15.228000px;}
.wse{word-spacing:-15.120000px;}
.ws64{word-spacing:-15.000000px;}
.ws3b{word-spacing:-14.958000px;}
.ws1e{word-spacing:-14.850000px;}
.ws5e{word-spacing:-14.820000px;}
.ws12{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.364000px;}
.ws18{word-spacing:-14.094000px;}
.ws1d{word-spacing:-13.878000px;}
.ws28{word-spacing:-13.770000px;}
.ws51{word-spacing:-13.338000px;}
.ws6{word-spacing:-13.314000px;}
.ws20{word-spacing:-13.284000px;}
.ws42{word-spacing:-13.122000px;}
.ws63{word-spacing:-13.080000px;}
.ws4a{word-spacing:-12.798000px;}
.ws46{word-spacing:-12.528000px;}
.ws4e{word-spacing:-12.474000px;}
.ws13{word-spacing:-12.366000px;}
.ws17{word-spacing:-12.258000px;}
.ws26{word-spacing:-11.772000px;}
.ws9{word-spacing:-11.303787px;}
.ws71{word-spacing:-10.320849px;}
.ws15{word-spacing:-10.314000px;}
.ws58{word-spacing:-10.206000px;}
.ws4d{word-spacing:-9.774000px;}
.ws6e{word-spacing:-6.300000px;}
.ws3{word-spacing:-6.000000px;}
.wsb{word-spacing:-4.200000px;}
.wsa{word-spacing:-4.080000px;}
.ws4{word-spacing:-3.780000px;}
.ws5b{word-spacing:-2.691000px;}
.ws2{word-spacing:-1.575000px;}
.ws56{word-spacing:-1.026000px;}
.ws57{word-spacing:-0.324000px;}
.ws33{word-spacing:-0.216000px;}
.ws1{word-spacing:0.000000px;}
.ws31{word-spacing:0.162000px;}
.ws60{word-spacing:0.171000px;}
.ws35{word-spacing:0.216000px;}
.ws30{word-spacing:0.324000px;}
.ws55{word-spacing:0.360000px;}
.ws36{word-spacing:0.432000px;}
.ws37{word-spacing:0.486000px;}
.ws38{word-spacing:0.540000px;}
.ws6d{word-spacing:0.570000px;}
.ws5c{word-spacing:0.627000px;}
.ws34{word-spacing:0.648000px;}
.wsc{word-spacing:0.855000px;}
.ws32{word-spacing:2.214000px;}
.ws54{word-spacing:3.132000px;}
.ws6c{word-spacing:35.949000px;}
.wsd{word-spacing:44.269200px;}
.ws2b{word-spacing:55.085400px;}
.ws3f{word-spacing:61.057800px;}
.ws21{word-spacing:67.483800px;}
.ws27{word-spacing:77.387400px;}
.ws1a{word-spacing:88.689600px;}
.ws29{word-spacing:89.132400px;}
.ws3a{word-spacing:91.373400px;}
.ws1f{word-spacing:103.869000px;}
.ws25{word-spacing:106.844400px;}
.ws16{word-spacing:119.286000px;}
.ws3e{word-spacing:140.151600px;}
.ws2c{word-spacing:140.173200px;}
.ws2f{word-spacing:143.440200px;}
.ws19{word-spacing:145.065600px;}
.ws43{word-spacing:145.789200px;}
.ws1b{word-spacing:148.959000px;}
.ws47{word-spacing:153.802800px;}
.ws49{word-spacing:154.882800px;}
.ws6b{word-spacing:166.911000px;}
.ws45{word-spacing:167.383800px;}
.ws3c{word-spacing:169.727400px;}
.ws50{word-spacing:173.118600px;}
.ws40{word-spacing:175.321800px;}
.ws3d{word-spacing:187.741800px;}
.ws23{word-spacing:189.162000px;}
.ws2a{word-spacing:192.693600px;}
.ws41{word-spacing:194.410800px;}
.ws4b{word-spacing:196.738200px;}
.ws4c{word-spacing:198.622800px;}
.ws24{word-spacing:207.311400px;}
.ws48{word-spacing:208.585800px;}
.ws4f{word-spacing:215.244000px;}
.ws2e{word-spacing:220.249800px;}
.ws2d{word-spacing:221.356800px;}
.ws44{word-spacing:221.562000px;}
.ws67{word-spacing:378.876000px;}
.ws62{word-spacing:402.654000px;}
._2d{margin-left:-111.573000px;}
._32{margin-left:-22.761000px;}
._30{margin-left:-19.389000px;}
._33{margin-left:-7.411500px;}
._b{margin-left:-6.409200px;}
._3{margin-left:-5.014800px;}
._a{margin-left:-3.818100px;}
._2{margin-left:-1.997100px;}
._6{width:1.164000px;}
._1{width:2.400000px;}
._9{width:4.218000px;}
._5{width:5.400000px;}
._4{width:6.630000px;}
._7{width:7.818000px;}
._8{width:9.366000px;}
._11{width:10.585500px;}
._10{width:11.722200px;}
._3f{width:13.023600px;}
._3e{width:14.309400px;}
._d{width:15.689100px;}
._f{width:23.854200px;}
._3d{width:25.392600px;}
._31{width:26.711400px;}
._3b{width:29.739000px;}
._3a{width:36.846000px;}
._12{width:43.445160px;}
._19{width:54.204000px;}
._15{width:57.372000px;}
._2a{width:75.943200px;}
._20{width:79.982400px;}
._28{width:81.898200px;}
._e{width:85.554000px;}
._2b{width:96.686700px;}
._1f{width:101.476200px;}
._13{width:103.199100px;}
._26{width:104.236800px;}
._38{width:109.690500px;}
._2c{width:111.573000px;}
._29{width:115.134300px;}
._27{width:121.272000px;}
._25{width:123.364200px;}
._14{width:136.320000px;}
._1c{width:143.969100px;}
._39{width:157.596000px;}
._1d{width:162.377100px;}
._16{width:167.343600px;}
._17{width:182.063100px;}
._18{width:185.574000px;}
._34{width:188.880300px;}
._2f{width:191.985000px;}
._3c{width:195.753000px;}
._2e{width:197.563800px;}
._1e{width:201.420000px;}
._23{width:210.038700px;}
._1a{width:213.771600px;}
._1b{width:216.361800px;}
._22{width:226.014000px;}
._21{width:234.378600px;}
._24{width:249.962400px;}
._c{width:258.552000px;}
._37{width:539.014200px;}
._0{width:578.400000px;}
._36{width:905.528400px;}
._35{width:919.388400px;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:31.482000px;}
.fse{font-size:36.729000px;}
.fsb{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs9{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.yb0{bottom:106.260150px;}
.y8d{bottom:106.264800px;}
.yc0{bottom:106.293450px;}
.y40{bottom:106.296450px;}
.y1c{bottom:106.302600px;}
.y111{bottom:106.329900px;}
.yf3{bottom:106.348650px;}
.yc6{bottom:113.548950px;}
.ybf{bottom:123.546450px;}
.y110{bottom:126.279900px;}
.y3f{bottom:126.544950px;}
.yf2{bottom:126.603150px;}
.yaf{bottom:126.701400px;}
.y8c{bottom:126.999300px;}
.y1b{bottom:130.812600px;}
.yc5{bottom:133.798950px;}
.y5e{bottom:134.667600px;}
.ybe{bottom:143.794950px;}
.y10f{bottom:146.229900px;}
.yae{bottom:147.142650px;}
.y8b{bottom:147.733800px;}
.y1a{bottom:155.361300px;}
.yf1{bottom:155.362650px;}
.y5d{bottom:156.402600px;}
.y10e{bottom:166.179900px;}
.yad{bottom:167.583900px;}
.y8a{bottom:168.468300px;}
.y3e{bottom:170.618550px;}
.yf0{bottom:175.617150px;}
.y5c{bottom:178.137600px;}
.y19{bottom:178.371300px;}
.y10d{bottom:186.129900px;}
.yac{bottom:188.025150px;}
.y89{bottom:189.202800px;}
.y3d{bottom:191.301300px;}
.yd4{bottom:195.524550px;}
.y5b{bottom:199.872600px;}
.y18{bottom:201.381300px;}
.yef{bottom:204.376650px;}
.y10c{bottom:206.079900px;}
.yab{bottom:208.466400px;}
.y88{bottom:209.937300px;}
.ybd{bottom:210.693750px;}
.y3c{bottom:211.984050px;}
.y5a{bottom:221.607600px;}
.y17{bottom:224.391300px;}
.yee{bottom:224.631150px;}
.y10b{bottom:226.029900px;}
.yaa{bottom:228.907650px;}
.y87{bottom:230.671800px;}
.ybc{bottom:230.945250px;}
.y3b{bottom:232.666800px;}
.y59{bottom:243.342600px;}
.yed{bottom:244.885650px;}
.y10a{bottom:245.979900px;}
.y16{bottom:247.401300px;}
.ya9{bottom:249.348900px;}
.ybb{bottom:251.196750px;}
.y86{bottom:251.406300px;}
.y3a{bottom:253.349550px;}
.y58{bottom:265.077600px;}
.y109{bottom:265.929900px;}
.ya8{bottom:269.790150px;}
.y15{bottom:270.411300px;}
.yba{bottom:271.448250px;}
.y85{bottom:272.140800px;}
.yec{bottom:273.645150px;}
.y39{bottom:274.032300px;}
.y57{bottom:286.812600px;}
.ya7{bottom:290.231400px;}
.y84{bottom:292.875300px;}
.y14{bottom:293.421300px;}
.yeb{bottom:293.899650px;}
.y38{bottom:294.715050px;}
.y108{bottom:298.644900px;}
.y56{bottom:308.547600px;}
.ya6{bottom:310.672650px;}
.yb9{bottom:312.965550px;}
.y37{bottom:315.453150px;}
.y13{bottom:316.431300px;}
.yea{bottom:322.659150px;}
.y49{bottom:330.228600px;}
.y4c{bottom:330.242100px;}
.y4f{bottom:330.255600px;}
.y52{bottom:330.269100px;}
.y55{bottom:330.282600px;}
.y83{bottom:334.325400px;}
.y36{bottom:336.135900px;}
.yb8{bottom:336.961800px;}
.y12{bottom:339.441300px;}
.y48{bottom:348.224100px;}
.y4b{bottom:348.237600px;}
.y4e{bottom:348.251100px;}
.y51{bottom:348.264600px;}
.y54{bottom:348.278100px;}
.ya5{bottom:352.396350px;}
.y82{bottom:355.061400px;}
.y35{bottom:356.818650px;}
.y107{bottom:356.881800px;}
.yb7{bottom:360.958050px;}
.y11{bottom:362.451300px;}
.y47{bottom:366.219600px;}
.y4a{bottom:366.233100px;}
.y4d{bottom:366.246600px;}
.y50{bottom:366.260100px;}
.y53{bottom:366.273600px;}
.ye9{bottom:373.358700px;}
.ya4{bottom:376.574850px;}
.y34{bottom:377.501400px;}
.y81{bottom:382.547400px;}
.y106{bottom:384.328800px;}
.y10{bottom:385.461300px;}
.y46{bottom:387.954600px;}
.ye8{bottom:393.627450px;}
.y33{bottom:398.184150px;}
.ya3{bottom:400.753350px;}
.y80{bottom:404.282400px;}
.yf{bottom:408.471300px;}
.y105{bottom:411.775800px;}
.ye7{bottom:413.896200px;}
.y45{bottom:416.441550px;}
.y32{bottom:418.866900px;}
.ya2{bottom:424.931850px;}
.y7f{bottom:426.017400px;}
.yc4{bottom:430.201350px;}
.ye{bottom:431.481300px;}
.ye6{bottom:434.164950px;}
.y31{bottom:439.549650px;}
.yb6{bottom:443.475750px;}
.y7e{bottom:447.752400px;}
.ye5{bottom:454.433700px;}
.y30{bottom:460.232400px;}
.yb5{bottom:463.725750px;}
.yd{bottom:467.256300px;}
.y7d{bottom:469.487400px;}
.ye4{bottom:474.702450px;}
.y44{bottom:477.451350px;}
.ya1{bottom:487.320450px;}
.y7c{bottom:491.222400px;}
.ye3{bottom:494.971200px;}
.y2f{bottom:502.181850px;}
.y7b{bottom:507.719400px;}
.ya0{bottom:507.761700px;}
.ye2{bottom:515.239950px;}
.y104{bottom:517.694550px;}
.y2e{bottom:526.623600px;}
.y9f{bottom:528.202950px;}
.yc{bottom:528.538200px;}
.y7a{bottom:529.454400px;}
.ye1{bottom:535.508700px;}
.y103{bottom:538.405800px;}
.y9e{bottom:548.644200px;}
.ye0{bottom:555.777450px;}
.y79{bottom:558.421950px;}
.yb{bottom:559.051200px;}
.y102{bottom:559.111200px;}
.y9d{bottom:569.085450px;}
.y101{bottom:579.822450px;}
.y2d{bottom:589.337550px;}
.y9c{bottom:589.526700px;}
.ya{bottom:589.564200px;}
.ydf{bottom:597.297750px;}
.yd3{bottom:600.518550px;}
.y100{bottom:609.022950px;}
.y9b{bottom:609.967950px;}
.y2c{bottom:610.772550px;}
.y78{bottom:620.393100px;}
.yd2{bottom:620.770050px;}
.y11b{bottom:622.437750px;}
.yff{bottom:629.721600px;}
.y9a{bottom:630.409200px;}
.y2b{bottom:632.277750px;}
.yd1{bottom:641.021550px;}
.y9{bottom:641.314950px;}
.y11a{bottom:642.687750px;}
.y77{bottom:643.678200px;}
.yfe{bottom:650.432850px;}
.y99{bottom:650.850450px;}
.y2a{bottom:652.212750px;}
.yde{bottom:659.493600px;}
.yd0{bottom:661.273050px;}
.y119{bottom:662.937750px;}
.y76{bottom:665.413200px;}
.yfd{bottom:671.144100px;}
.y98{bottom:671.291700px;}
.y29{bottom:672.147750px;}
.y8{bottom:676.333950px;}
.ydd{bottom:679.762350px;}
.ycf{bottom:681.524550px;}
.y118{bottom:683.187750px;}
.y75{bottom:687.148200px;}
.y97{bottom:691.732950px;}
.y28{bottom:692.082750px;}
.ydc{bottom:700.031100px;}
.yfc{bottom:700.344600px;}
.y74{bottom:708.883200px;}
.y7{bottom:711.352950px;}
.y27{bottom:712.017750px;}
.y96{bottom:712.174200px;}
.y117{bottom:716.187750px;}
.yfb{bottom:720.998850px;}
.yce{bottom:729.813300px;}
.y73{bottom:730.618200px;}
.y26{bottom:731.952750px;}
.y95{bottom:732.615450px;}
.yc3{bottom:740.689350px;}
.yfa{bottom:741.710100px;}
.y6{bottom:746.371950px;}
.y25{bottom:751.887750px;}
.y72{bottom:752.353200px;}
.ycd{bottom:752.538300px;}
.y94{bottom:753.056700px;}
.ydb{bottom:760.820100px;}
.yc2{bottom:760.940850px;}
.yf9{bottom:762.421350px;}
.ycc{bottom:770.538300px;}
.y24{bottom:771.822750px;}
.y93{bottom:773.497950px;}
.y71{bottom:774.088200px;}
.yda{bottom:781.088850px;}
.yc1{bottom:781.192350px;}
.y5{bottom:781.390950px;}
.yf8{bottom:791.637600px;}
.y23{bottom:791.757750px;}
.ycb{bottom:793.263300px;}
.y92{bottom:793.939200px;}
.y70{bottom:795.823200px;}
.yd9{bottom:801.357600px;}
.yb4{bottom:801.443850px;}
.y116{bottom:806.697750px;}
.yca{bottom:811.263300px;}
.y22{bottom:811.692750px;}
.yf7{bottom:812.348850px;}
.y91{bottom:814.380450px;}
.y63{bottom:817.504200px;}
.y66{bottom:817.517700px;}
.y69{bottom:817.531200px;}
.y6c{bottom:817.544700px;}
.y6f{bottom:817.558200px;}
.yd8{bottom:821.626350px;}
.yb3{bottom:821.695350px;}
.y115{bottom:826.197750px;}
.y21{bottom:831.627750px;}
.yf6{bottom:833.060100px;}
.yc9{bottom:833.988300px;}
.y90{bottom:834.821700px;}
.y62{bottom:835.499700px;}
.y65{bottom:835.513200px;}
.y68{bottom:835.526700px;}
.y6b{bottom:835.540200px;}
.y6e{bottom:835.553700px;}
.yd7{bottom:841.895100px;}
.yb2{bottom:841.946850px;}
.y114{bottom:845.697750px;}
.y4{bottom:846.170550px;}
.y20{bottom:851.562750px;}
.yc8{bottom:851.988300px;}
.y61{bottom:853.495200px;}
.y64{bottom:853.508700px;}
.y67{bottom:853.522200px;}
.y6a{bottom:853.535700px;}
.y6d{bottom:853.549200px;}
.yd6{bottom:862.163850px;}
.yb1{bottom:862.198350px;}
.yf5{bottom:862.276350px;}
.y113{bottom:865.197750px;}
.y1f{bottom:871.497750px;}
.yc7{bottom:874.713300px;}
.y60{bottom:875.230200px;}
.y8f{bottom:876.527700px;}
.y3{bottom:879.185550px;}
.yd5{bottom:882.432600px;}
.y43{bottom:882.449850px;}
.yf4{bottom:882.987600px;}
.y112{bottom:884.697750px;}
.y8e{bottom:900.706200px;}
.y42{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y5f{bottom:904.193550px;}
.y1e{bottom:904.197750px;}
.y1d{bottom:948.189000px;}
.y41{bottom:966.189000px;}
.ha{height:33.870539px;}
.hc{height:38.416992px;}
.h7{height:40.757812px;}
.h11{height:42.685547px;}
.hb{height:45.852539px;}
.hd{height:46.696289px;}
.h12{height:49.088379px;}
.h4{height:50.947266px;}
.he{height:50.964066px;}
.h10{height:51.884766px;}
.h3{height:53.494629px;}
.h15{height:53.722629px;}
.h14{height:54.479004px;}
.h13{height:55.792969px;}
.h9{height:58.589355px;}
.hf{height:59.667480px;}
.h2{height:63.684082px;}
.h8{height:68.778809px;}
.h6{height:71.326172px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1f{left:81.432600px;}
.x7{left:83.760600px;}
.x1{left:85.039350px;}
.xa{left:89.215950px;}
.x29{left:103.977150px;}
.x5{left:105.030600px;}
.x6{left:106.365600px;}
.x24{left:112.277550px;}
.x28{left:113.687550px;}
.x26{left:114.872550px;}
.x13{left:118.720350px;}
.xb{left:188.886450px;}
.x15{left:202.072050px;}
.x14{left:203.449050px;}
.x8{left:212.664000px;}
.x4{left:230.857950px;}
.x3{left:232.730400px;}
.x2{left:233.797500px;}
.xc{left:236.662950px;}
.x16{left:272.393550px;}
.x17{left:284.759550px;}
.xd{left:289.528950px;}
.x25{left:323.372550px;}
.x23{left:324.437550px;}
.x18{left:340.204050px;}
.xe{left:353.694450px;}
.x9{left:357.096450px;}
.x20{left:364.455900px;}
.x22{left:369.976350px;}
.x21{left:372.251100px;}
.x19{left:423.701550px;}
.xf{left:434.005950px;}
.x1a{left:436.067550px;}
.x27{left:482.822550px;}
.x1b{left:491.080050px;}
.x1c{left:504.256050px;}
.x10{left:505.515450px;}
.x11{left:565.441950px;}
.x12{left:568.546950px;}
.x1d{left:574.577550px;}
.x1e{left:586.943550px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.516800pt;}
.v1{vertical-align:14.893867pt;}
.v4{vertical-align:18.692800pt;}
.ls2c{letter-spacing:-4.416000pt;}
.ls29{letter-spacing:-3.792000pt;}
.ls39{letter-spacing:-3.168000pt;}
.ls3a{letter-spacing:-2.784000pt;}
.ls51{letter-spacing:-2.773333pt;}
.ls2a{letter-spacing:-2.592000pt;}
.ls26{letter-spacing:-1.968000pt;}
.ls59{letter-spacing:-1.800000pt;}
.ls52{letter-spacing:-1.653333pt;}
.ls36{letter-spacing:-1.392000pt;}
.ls49{letter-spacing:-1.368000pt;}
.ls38{letter-spacing:-1.248000pt;}
.ls4d{letter-spacing:-1.152000pt;}
.ls1d{letter-spacing:-0.960000pt;}
.ls35{letter-spacing:-0.864000pt;}
.ls44{letter-spacing:-0.768000pt;}
.lsc{letter-spacing:-0.760000pt;}
.ls31{letter-spacing:-0.720000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls2f{letter-spacing:-0.624000pt;}
.ls28{letter-spacing:-0.576000pt;}
.ls48{letter-spacing:-0.557333pt;}
.ls3b{letter-spacing:-0.528000pt;}
.ls55{letter-spacing:-0.506667pt;}
.ls37{letter-spacing:-0.480000pt;}
.ls2b{letter-spacing:-0.432000pt;}
.ls53{letter-spacing:-0.426667pt;}
.ls2d{letter-spacing:-0.384000pt;}
.ls33{letter-spacing:-0.336000pt;}
.ls41{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.288000pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls4c{letter-spacing:-0.152000pt;}
.ls1f{letter-spacing:-0.144000pt;}
.ls4b{letter-spacing:-0.133333pt;}
.ls34{letter-spacing:-0.096000pt;}
.ls20{letter-spacing:-0.048000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.048000pt;}
.ls10{letter-spacing:0.096000pt;}
.ls21{letter-spacing:0.192000pt;}
.ls40{letter-spacing:0.200000pt;}
.ls30{letter-spacing:0.240000pt;}
.ls43{letter-spacing:0.288000pt;}
.ls27{letter-spacing:0.336000pt;}
.ls22{letter-spacing:0.576000pt;}
.lsf{letter-spacing:0.624000pt;}
.ls9{letter-spacing:0.666667pt;}
.lse{letter-spacing:0.672000pt;}
.ls24{letter-spacing:0.720000pt;}
.ls50{letter-spacing:0.733333pt;}
.ls32{letter-spacing:0.864000pt;}
.ls42{letter-spacing:0.912000pt;}
.ls2e{letter-spacing:1.200000pt;}
.lsa{letter-spacing:1.344000pt;}
.ls45{letter-spacing:1.349333pt;}
.ls2{letter-spacing:1.400000pt;}
.ls5{letter-spacing:3.360000pt;}
.ls8{letter-spacing:3.626667pt;}
.ls7{letter-spacing:3.733333pt;}
.lsb{letter-spacing:5.120000pt;}
.ls4{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.333333pt;}
.ls57{letter-spacing:5.600000pt;}
.ls56{letter-spacing:6.104000pt;}
.ls11{letter-spacing:57.264000pt;}
.ls3e{letter-spacing:57.648000pt;}
.ls3f{letter-spacing:61.872000pt;}
.ls12{letter-spacing:63.600000pt;}
.ls14{letter-spacing:75.648000pt;}
.ls15{letter-spacing:78.624000pt;}
.ls17{letter-spacing:81.024000pt;}
.ls1a{letter-spacing:84.144000pt;}
.ls3d{letter-spacing:85.248000pt;}
.ls46{letter-spacing:99.176000pt;}
.ls18{letter-spacing:108.960000pt;}
.ls13{letter-spacing:133.488000pt;}
.ls1b{letter-spacing:136.752000pt;}
.ls16{letter-spacing:140.400000pt;}
.ls19{letter-spacing:160.416000pt;}
.ls4f{letter-spacing:443.408000pt;}
.ls58{letter-spacing:445.941333pt;}
.ls6{letter-spacing:446.234667pt;}
.ls3c{letter-spacing:446.701333pt;}
.ls4a{letter-spacing:447.068267pt;}
.ls4e{letter-spacing:880.020267pt;}
.ls0{letter-spacing:880.460267pt;}
.lsd{letter-spacing:882.793600pt;}
.ls47{letter-spacing:886.393600pt;}
.ls54{letter-spacing:888.153600pt;}
.ws59{word-spacing:-99.176000pt;}
.ws6a{word-spacing:-21.840000pt;}
.ws72{word-spacing:-20.320000pt;}
.ws0{word-spacing:-20.213333pt;}
.ws7{word-spacing:-20.106667pt;}
.ws61{word-spacing:-19.466667pt;}
.ws5{word-spacing:-19.400000pt;}
.ws69{word-spacing:-19.368000pt;}
.ws5f{word-spacing:-19.080000pt;}
.ws39{word-spacing:-18.933333pt;}
.ws5a{word-spacing:-18.864000pt;}
.ws5d{word-spacing:-18.600000pt;}
.ws8{word-spacing:-17.234667pt;}
.ws6f{word-spacing:-16.933333pt;}
.ws68{word-spacing:-16.560000pt;}
.ws52{word-spacing:-16.498667pt;}
.ws53{word-spacing:-15.149333pt;}
.ws66{word-spacing:-14.986667pt;}
.ws1c{word-spacing:-14.688000pt;}
.ws65{word-spacing:-14.560000pt;}
.ws22{word-spacing:-14.352000pt;}
.ws70{word-spacing:-13.832000pt;}
.ws14{word-spacing:-13.824000pt;}
.wsf{word-spacing:-13.680000pt;}
.ws10{word-spacing:-13.536000pt;}
.wse{word-spacing:-13.440000pt;}
.ws64{word-spacing:-13.333333pt;}
.ws3b{word-spacing:-13.296000pt;}
.ws1e{word-spacing:-13.200000pt;}
.ws5e{word-spacing:-13.173333pt;}
.ws12{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.768000pt;}
.ws18{word-spacing:-12.528000pt;}
.ws1d{word-spacing:-12.336000pt;}
.ws28{word-spacing:-12.240000pt;}
.ws51{word-spacing:-11.856000pt;}
.ws6{word-spacing:-11.834667pt;}
.ws20{word-spacing:-11.808000pt;}
.ws42{word-spacing:-11.664000pt;}
.ws63{word-spacing:-11.626667pt;}
.ws4a{word-spacing:-11.376000pt;}
.ws46{word-spacing:-11.136000pt;}
.ws4e{word-spacing:-11.088000pt;}
.ws13{word-spacing:-10.992000pt;}
.ws17{word-spacing:-10.896000pt;}
.ws26{word-spacing:-10.464000pt;}
.ws9{word-spacing:-10.047811pt;}
.ws71{word-spacing:-9.174088pt;}
.ws15{word-spacing:-9.168000pt;}
.ws58{word-spacing:-9.072000pt;}
.ws4d{word-spacing:-8.688000pt;}
.ws6e{word-spacing:-5.600000pt;}
.ws3{word-spacing:-5.333333pt;}
.wsb{word-spacing:-3.733333pt;}
.wsa{word-spacing:-3.626667pt;}
.ws4{word-spacing:-3.360000pt;}
.ws5b{word-spacing:-2.392000pt;}
.ws2{word-spacing:-1.400000pt;}
.ws56{word-spacing:-0.912000pt;}
.ws57{word-spacing:-0.288000pt;}
.ws33{word-spacing:-0.192000pt;}
.ws1{word-spacing:0.000000pt;}
.ws31{word-spacing:0.144000pt;}
.ws60{word-spacing:0.152000pt;}
.ws35{word-spacing:0.192000pt;}
.ws30{word-spacing:0.288000pt;}
.ws55{word-spacing:0.320000pt;}
.ws36{word-spacing:0.384000pt;}
.ws37{word-spacing:0.432000pt;}
.ws38{word-spacing:0.480000pt;}
.ws6d{word-spacing:0.506667pt;}
.ws5c{word-spacing:0.557333pt;}
.ws34{word-spacing:0.576000pt;}
.wsc{word-spacing:0.760000pt;}
.ws32{word-spacing:1.968000pt;}
.ws54{word-spacing:2.784000pt;}
.ws6c{word-spacing:31.954667pt;}
.wsd{word-spacing:39.350400pt;}
.ws2b{word-spacing:48.964800pt;}
.ws3f{word-spacing:54.273600pt;}
.ws21{word-spacing:59.985600pt;}
.ws27{word-spacing:68.788800pt;}
.ws1a{word-spacing:78.835200pt;}
.ws29{word-spacing:79.228800pt;}
.ws3a{word-spacing:81.220800pt;}
.ws1f{word-spacing:92.328000pt;}
.ws25{word-spacing:94.972800pt;}
.ws16{word-spacing:106.032000pt;}
.ws3e{word-spacing:124.579200pt;}
.ws2c{word-spacing:124.598400pt;}
.ws2f{word-spacing:127.502400pt;}
.ws19{word-spacing:128.947200pt;}
.ws43{word-spacing:129.590400pt;}
.ws1b{word-spacing:132.408000pt;}
.ws47{word-spacing:136.713600pt;}
.ws49{word-spacing:137.673600pt;}
.ws6b{word-spacing:148.365333pt;}
.ws45{word-spacing:148.785600pt;}
.ws3c{word-spacing:150.868800pt;}
.ws50{word-spacing:153.883200pt;}
.ws40{word-spacing:155.841600pt;}
.ws3d{word-spacing:166.881600pt;}
.ws23{word-spacing:168.144000pt;}
.ws2a{word-spacing:171.283200pt;}
.ws41{word-spacing:172.809600pt;}
.ws4b{word-spacing:174.878400pt;}
.ws4c{word-spacing:176.553600pt;}
.ws24{word-spacing:184.276800pt;}
.ws48{word-spacing:185.409600pt;}
.ws4f{word-spacing:191.328000pt;}
.ws2e{word-spacing:195.777600pt;}
.ws2d{word-spacing:196.761600pt;}
.ws44{word-spacing:196.944000pt;}
.ws67{word-spacing:336.778667pt;}
.ws62{word-spacing:357.914667pt;}
._2d{margin-left:-99.176000pt;}
._32{margin-left:-20.232000pt;}
._30{margin-left:-17.234667pt;}
._33{margin-left:-6.588000pt;}
._b{margin-left:-5.697067pt;}
._3{margin-left:-4.457600pt;}
._a{margin-left:-3.393867pt;}
._2{margin-left:-1.775200pt;}
._6{width:1.034667pt;}
._1{width:2.133333pt;}
._9{width:3.749333pt;}
._5{width:4.800000pt;}
._4{width:5.893333pt;}
._7{width:6.949333pt;}
._8{width:8.325333pt;}
._11{width:9.409333pt;}
._10{width:10.419733pt;}
._3f{width:11.576533pt;}
._3e{width:12.719467pt;}
._d{width:13.945867pt;}
._f{width:21.203733pt;}
._3d{width:22.571200pt;}
._31{width:23.743467pt;}
._3b{width:26.434667pt;}
._3a{width:32.752000pt;}
._12{width:38.617920pt;}
._19{width:48.181333pt;}
._15{width:50.997333pt;}
._2a{width:67.505067pt;}
._20{width:71.095467pt;}
._28{width:72.798400pt;}
._e{width:76.048000pt;}
._2b{width:85.943733pt;}
._1f{width:90.201067pt;}
._13{width:91.732533pt;}
._26{width:92.654933pt;}
._38{width:97.502667pt;}
._2c{width:99.176000pt;}
._29{width:102.341600pt;}
._27{width:107.797333pt;}
._25{width:109.657067pt;}
._14{width:121.173333pt;}
._1c{width:127.972533pt;}
._39{width:140.085333pt;}
._1d{width:144.335200pt;}
._16{width:148.749867pt;}
._17{width:161.833867pt;}
._18{width:164.954667pt;}
._34{width:167.893600pt;}
._2f{width:170.653333pt;}
._3c{width:174.002667pt;}
._2e{width:175.612267pt;}
._1e{width:179.040000pt;}
._23{width:186.701067pt;}
._1a{width:190.019200pt;}
._1b{width:192.321600pt;}
._22{width:200.901333pt;}
._21{width:208.336533pt;}
._24{width:222.188800pt;}
._c{width:229.824000pt;}
._37{width:479.123733pt;}
._0{width:514.133333pt;}
._36{width:804.914133pt;}
._35{width:817.234133pt;}
.fsc{font-size:27.984000pt;}
.fse{font-size:32.648000pt;}
.fsb{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs9{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.yb0{bottom:94.453467pt;}
.y8d{bottom:94.457600pt;}
.yc0{bottom:94.483067pt;}
.y40{bottom:94.485733pt;}
.y1c{bottom:94.491200pt;}
.y111{bottom:94.515467pt;}
.yf3{bottom:94.532133pt;}
.yc6{bottom:100.932400pt;}
.ybf{bottom:109.819067pt;}
.y110{bottom:112.248800pt;}
.y3f{bottom:112.484400pt;}
.yf2{bottom:112.536133pt;}
.yaf{bottom:112.623467pt;}
.y8c{bottom:112.888267pt;}
.y1b{bottom:116.277867pt;}
.yc5{bottom:118.932400pt;}
.y5e{bottom:119.704533pt;}
.ybe{bottom:127.817733pt;}
.y10f{bottom:129.982133pt;}
.yae{bottom:130.793467pt;}
.y8b{bottom:131.318933pt;}
.y1a{bottom:138.098933pt;}
.yf1{bottom:138.100133pt;}
.y5d{bottom:139.024533pt;}
.y10e{bottom:147.715467pt;}
.yad{bottom:148.963467pt;}
.y8a{bottom:149.749600pt;}
.y3e{bottom:151.660933pt;}
.yf0{bottom:156.104133pt;}
.y5c{bottom:158.344533pt;}
.y19{bottom:158.552267pt;}
.y10d{bottom:165.448800pt;}
.yac{bottom:167.133467pt;}
.y89{bottom:168.180267pt;}
.y3d{bottom:170.045600pt;}
.yd4{bottom:173.799600pt;}
.y5b{bottom:177.664533pt;}
.y18{bottom:179.005600pt;}
.yef{bottom:181.668133pt;}
.y10c{bottom:183.182133pt;}
.yab{bottom:185.303467pt;}
.y88{bottom:186.610933pt;}
.ybd{bottom:187.283333pt;}
.y3c{bottom:188.430267pt;}
.y5a{bottom:196.984533pt;}
.y17{bottom:199.458933pt;}
.yee{bottom:199.672133pt;}
.y10b{bottom:200.915467pt;}
.yaa{bottom:203.473467pt;}
.y87{bottom:205.041600pt;}
.ybc{bottom:205.284667pt;}
.y3b{bottom:206.814933pt;}
.y59{bottom:216.304533pt;}
.yed{bottom:217.676133pt;}
.y10a{bottom:218.648800pt;}
.y16{bottom:219.912267pt;}
.ya9{bottom:221.643467pt;}
.ybb{bottom:223.286000pt;}
.y86{bottom:223.472267pt;}
.y3a{bottom:225.199600pt;}
.y58{bottom:235.624533pt;}
.y109{bottom:236.382133pt;}
.ya8{bottom:239.813467pt;}
.y15{bottom:240.365600pt;}
.yba{bottom:241.287333pt;}
.y85{bottom:241.902933pt;}
.yec{bottom:243.240133pt;}
.y39{bottom:243.584267pt;}
.y57{bottom:254.944533pt;}
.ya7{bottom:257.983467pt;}
.y84{bottom:260.333600pt;}
.y14{bottom:260.818933pt;}
.yeb{bottom:261.244133pt;}
.y38{bottom:261.968933pt;}
.y108{bottom:265.462133pt;}
.y56{bottom:274.264533pt;}
.ya6{bottom:276.153467pt;}
.yb9{bottom:278.191600pt;}
.y37{bottom:280.402800pt;}
.y13{bottom:281.272267pt;}
.yea{bottom:286.808133pt;}
.y49{bottom:293.536533pt;}
.y4c{bottom:293.548533pt;}
.y4f{bottom:293.560533pt;}
.y52{bottom:293.572533pt;}
.y55{bottom:293.584533pt;}
.y83{bottom:297.178133pt;}
.y36{bottom:298.787467pt;}
.yb8{bottom:299.521600pt;}
.y12{bottom:301.725600pt;}
.y48{bottom:309.532533pt;}
.y4b{bottom:309.544533pt;}
.y4e{bottom:309.556533pt;}
.y51{bottom:309.568533pt;}
.y54{bottom:309.580533pt;}
.ya5{bottom:313.241200pt;}
.y82{bottom:315.610133pt;}
.y35{bottom:317.172133pt;}
.y107{bottom:317.228267pt;}
.yb7{bottom:320.851600pt;}
.y11{bottom:322.178933pt;}
.y47{bottom:325.528533pt;}
.y4a{bottom:325.540533pt;}
.y4d{bottom:325.552533pt;}
.y50{bottom:325.564533pt;}
.y53{bottom:325.576533pt;}
.ye9{bottom:331.874400pt;}
.ya4{bottom:334.733200pt;}
.y34{bottom:335.556800pt;}
.y81{bottom:340.042133pt;}
.y106{bottom:341.625600pt;}
.y10{bottom:342.632267pt;}
.y46{bottom:344.848533pt;}
.ye8{bottom:349.891067pt;}
.y33{bottom:353.941467pt;}
.ya3{bottom:356.225200pt;}
.y80{bottom:359.362133pt;}
.yf{bottom:363.085600pt;}
.y105{bottom:366.022933pt;}
.ye7{bottom:367.907733pt;}
.y45{bottom:370.170267pt;}
.y32{bottom:372.326133pt;}
.ya2{bottom:377.717200pt;}
.y7f{bottom:378.682133pt;}
.yc4{bottom:382.401200pt;}
.ye{bottom:383.538933pt;}
.ye6{bottom:385.924400pt;}
.y31{bottom:390.710800pt;}
.yb6{bottom:394.200667pt;}
.y7e{bottom:398.002133pt;}
.ye5{bottom:403.941067pt;}
.y30{bottom:409.095467pt;}
.yb5{bottom:412.200667pt;}
.yd{bottom:415.338933pt;}
.y7d{bottom:417.322133pt;}
.ye4{bottom:421.957733pt;}
.y44{bottom:424.401200pt;}
.ya1{bottom:433.173733pt;}
.y7c{bottom:436.642133pt;}
.ye3{bottom:439.974400pt;}
.y2f{bottom:446.383867pt;}
.y7b{bottom:451.306133pt;}
.ya0{bottom:451.343733pt;}
.ye2{bottom:457.991067pt;}
.y104{bottom:460.172933pt;}
.y2e{bottom:468.109867pt;}
.y9f{bottom:469.513733pt;}
.yc{bottom:469.811733pt;}
.y7a{bottom:470.626133pt;}
.ye1{bottom:476.007733pt;}
.y103{bottom:478.582933pt;}
.y9e{bottom:487.683733pt;}
.ye0{bottom:494.024400pt;}
.y79{bottom:496.375067pt;}
.yb{bottom:496.934400pt;}
.y102{bottom:496.987733pt;}
.y9d{bottom:505.853733pt;}
.y101{bottom:515.397733pt;}
.y2d{bottom:523.855600pt;}
.y9c{bottom:524.023733pt;}
.ya{bottom:524.057067pt;}
.ydf{bottom:530.931333pt;}
.yd3{bottom:533.794267pt;}
.y100{bottom:541.353733pt;}
.y9b{bottom:542.193733pt;}
.y2c{bottom:542.908933pt;}
.y78{bottom:551.460533pt;}
.yd2{bottom:551.795600pt;}
.y11b{bottom:553.278000pt;}
.yff{bottom:559.752533pt;}
.y9a{bottom:560.363733pt;}
.y2b{bottom:562.024667pt;}
.yd1{bottom:569.796933pt;}
.y9{bottom:570.057733pt;}
.y11a{bottom:571.278000pt;}
.y77{bottom:572.158400pt;}
.yfe{bottom:578.162533pt;}
.y99{bottom:578.533733pt;}
.y2a{bottom:579.744667pt;}
.yde{bottom:586.216533pt;}
.yd0{bottom:587.798267pt;}
.y119{bottom:589.278000pt;}
.y76{bottom:591.478400pt;}
.yfd{bottom:596.572533pt;}
.y98{bottom:596.703733pt;}
.y29{bottom:597.464667pt;}
.y8{bottom:601.185733pt;}
.ydd{bottom:604.233200pt;}
.ycf{bottom:605.799600pt;}
.y118{bottom:607.278000pt;}
.y75{bottom:610.798400pt;}
.y97{bottom:614.873733pt;}
.y28{bottom:615.184667pt;}
.ydc{bottom:622.249867pt;}
.yfc{bottom:622.528533pt;}
.y74{bottom:630.118400pt;}
.y7{bottom:632.313733pt;}
.y27{bottom:632.904667pt;}
.y96{bottom:633.043733pt;}
.y117{bottom:636.611333pt;}
.yfb{bottom:640.887867pt;}
.yce{bottom:648.722933pt;}
.y73{bottom:649.438400pt;}
.y26{bottom:650.624667pt;}
.y95{bottom:651.213733pt;}
.yc3{bottom:658.390533pt;}
.yfa{bottom:659.297867pt;}
.y6{bottom:663.441733pt;}
.y25{bottom:668.344667pt;}
.y72{bottom:668.758400pt;}
.ycd{bottom:668.922933pt;}
.y94{bottom:669.383733pt;}
.ydb{bottom:676.284533pt;}
.yc2{bottom:676.391867pt;}
.yf9{bottom:677.707867pt;}
.ycc{bottom:684.922933pt;}
.y24{bottom:686.064667pt;}
.y93{bottom:687.553733pt;}
.y71{bottom:688.078400pt;}
.yda{bottom:694.301200pt;}
.yc1{bottom:694.393200pt;}
.y5{bottom:694.569733pt;}
.yf8{bottom:703.677867pt;}
.y23{bottom:703.784667pt;}
.ycb{bottom:705.122933pt;}
.y92{bottom:705.723733pt;}
.y70{bottom:707.398400pt;}
.yd9{bottom:712.317867pt;}
.yb4{bottom:712.394533pt;}
.y116{bottom:717.064667pt;}
.yca{bottom:721.122933pt;}
.y22{bottom:721.504667pt;}
.yf7{bottom:722.087867pt;}
.y91{bottom:723.893733pt;}
.y63{bottom:726.670400pt;}
.y66{bottom:726.682400pt;}
.y69{bottom:726.694400pt;}
.y6c{bottom:726.706400pt;}
.y6f{bottom:726.718400pt;}
.yd8{bottom:730.334533pt;}
.yb3{bottom:730.395867pt;}
.y115{bottom:734.398000pt;}
.y21{bottom:739.224667pt;}
.yf6{bottom:740.497867pt;}
.yc9{bottom:741.322933pt;}
.y90{bottom:742.063733pt;}
.y62{bottom:742.666400pt;}
.y65{bottom:742.678400pt;}
.y68{bottom:742.690400pt;}
.y6b{bottom:742.702400pt;}
.y6e{bottom:742.714400pt;}
.yd7{bottom:748.351200pt;}
.yb2{bottom:748.397200pt;}
.y114{bottom:751.731333pt;}
.y4{bottom:752.151600pt;}
.y20{bottom:756.944667pt;}
.yc8{bottom:757.322933pt;}
.y61{bottom:758.662400pt;}
.y64{bottom:758.674400pt;}
.y67{bottom:758.686400pt;}
.y6a{bottom:758.698400pt;}
.y6d{bottom:758.710400pt;}
.yd6{bottom:766.367867pt;}
.yb1{bottom:766.398533pt;}
.yf5{bottom:766.467867pt;}
.y113{bottom:769.064667pt;}
.y1f{bottom:774.664667pt;}
.yc7{bottom:777.522933pt;}
.y60{bottom:777.982400pt;}
.y8f{bottom:779.135733pt;}
.y3{bottom:781.498267pt;}
.yd5{bottom:784.384533pt;}
.y43{bottom:784.399867pt;}
.yf4{bottom:784.877867pt;}
.y112{bottom:786.398000pt;}
.y8e{bottom:800.627733pt;}
.y42{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y5f{bottom:803.727600pt;}
.y1e{bottom:803.731333pt;}
.y1d{bottom:842.834667pt;}
.y41{bottom:858.834667pt;}
.ha{height:30.107146pt;}
.hc{height:34.148438pt;}
.h7{height:36.229167pt;}
.h11{height:37.942708pt;}
.hb{height:40.757812pt;}
.hd{height:41.507812pt;}
.h12{height:43.634115pt;}
.h4{height:45.286458pt;}
.he{height:45.301392pt;}
.h10{height:46.119792pt;}
.h3{height:47.550781pt;}
.h15{height:47.753448pt;}
.h14{height:48.425781pt;}
.h13{height:49.593750pt;}
.h9{height:52.079427pt;}
.hf{height:53.037760pt;}
.h2{height:56.608073pt;}
.h8{height:61.136719pt;}
.h6{height:63.401042pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1f{left:72.384533pt;}
.x7{left:74.453867pt;}
.x1{left:75.590533pt;}
.xa{left:79.303067pt;}
.x29{left:92.424133pt;}
.x5{left:93.360533pt;}
.x6{left:94.547200pt;}
.x24{left:99.802267pt;}
.x28{left:101.055600pt;}
.x26{left:102.108933pt;}
.x13{left:105.529200pt;}
.xb{left:167.899067pt;}
.x15{left:179.619600pt;}
.x14{left:180.843600pt;}
.x8{left:189.034667pt;}
.x4{left:205.207067pt;}
.x3{left:206.871467pt;}
.x2{left:207.820000pt;}
.xc{left:210.367067pt;}
.x16{left:242.127600pt;}
.x17{left:253.119600pt;}
.xd{left:257.359067pt;}
.x25{left:287.442267pt;}
.x23{left:288.388933pt;}
.x18{left:302.403600pt;}
.xe{left:314.395067pt;}
.x9{left:317.419067pt;}
.x20{left:323.960800pt;}
.x22{left:328.867867pt;}
.x21{left:330.889867pt;}
.x19{left:376.623600pt;}
.xf{left:385.783067pt;}
.x1a{left:387.615600pt;}
.x27{left:429.175600pt;}
.x1b{left:436.515600pt;}
.x1c{left:448.227600pt;}
.x10{left:449.347067pt;}
.x11{left:502.615067pt;}
.x12{left:505.375067pt;}
.x1d{left:510.735600pt;}
.x1e{left:521.727600pt;}
}




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